Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×
Programming Linux

Linux Developers Continue Evaluating The Path To Adding Rust Code To The Kernel (phoronix.com) 79

Phoronix reports: As mentioned back in July, upstream Linux developers have been working to figure out a path for adding Rust code to the Linux kernel. That topic is now being further explored at this week's virtual Linux Plumbers Conference...

To be clear though, these Rust Linux kernel plans do not involve rewriting large parts of the kernel in Rust (at least for the foreseeable future...), there would be caveats on the extent to which Rust code could be used and what functionality, and the Rust support would be optional when building the Linux kernel. C would remain the dominant language of the kernel and then it's just a matter of what new functionality gets added around Rust if concerned by memory safety, concurrency, and other areas where Rust is popular with developers. Various upstream developers have been interested in Rust for those language benefits around memory safety and security as well as its syntax being close to C. There would be a to-be-determined subset of Rust to be supported by the Linux kernel.... While the Rust code would be optional, the developers do acknowledge there are limitations on where Rust is supported due to the LLVM compiler back-ends. But at least for x86/x86_64, ARM/ARM64, POWER, and other prominent targets there is support along with the likes of RISC-V.

Nothing firm has been determined yet but it's a topic that is still being discussed at the virtual LPC this week and surely over the weeks/months ahead on the kernel mailing list. There is Rust-For-Linux on GitHub with a prototype kernel module implementation. There is also the PDF slides from Thursday's talk on the matter.

It's not clear to me that this is a done deal. But the article argues that "it's still looking like it will happen, it's just a matter of when the initial infrastructure will be in place and how slowly the rollout will be..."
This discussion has been archived. No new comments can be posted.

Linux Developers Continue Evaluating The Path To Adding Rust Code To The Kernel

Comments Filter:
  • Now we know... (Score:2, Insightful)

    by CHR$(36) ( 7184430 )
    Now we know the real reasons behind the change in the Linux Kernel Code of Conduct---to keep Linus from attacking everyone and everything not "C".
    • Re: (Score:2, Offtopic)

      by Truekaiser ( 724672 )

      Not to mention that their CoC makes commenting on someone's 'skill' and offence. The majority of comments I've seen about the plus's of rust are 'the compiler and the tool chain handle 'that''

  • Q: Is REALLY so EASY to write a kernel that they can spend SO MANY time looking for a way to make it FUC***G complex, forcing the developers to:

    a) Use multiple debuggers (C debugger, C++ debugger, Rust debugger, etc.)

    b) having to know different programming languages

    etc.?

  • Then Rust comes by itself.

  • by PPH ( 736903 )

    Another bullshit toolchain I'll have to install for only one purpose (building the kernel). And then it sits, unmaintained for months or years until I've got to build it again.

    Any chance that we can get a Rust to C translator built?

    • Re: (Score:3, Insightful)

      by guruevi ( 827432 )

      The problem will rear its ugly head in about 2 years when Rust has changed so much, it won't be able to compile the old code, the problem will be who will maintain all that code every year as features and requirements in Rust change seemingly every day.

  • i love rust however (Score:5, Interesting)

    by Don Bright ( 6770394 ) on Sunday August 30, 2020 @12:05PM (#60455376)

    i have many questions regaring making the linux kernel wholly dependent on LLVM (since that is what would happen if you had Rust inside of it)

    in order to compile the kernel you traditionally only needed to get the gcc toolchain working.

    if you add rust, then you will need to compile llvm and its attendant toolchain, and then rust as well. and will you also need cargo? (rusts package manager... so much of rust is in packages that its kind of required even to do a lot of basic stuff). now, i will admit that building llvm / rust is relatively easy on mainstream platforms, but i wonder if it is as easy on weird platforms?

    i am not sure how this would impact people trying to do experiments or weird ports with the linux kernel.

    i also wonder how this would affect people trying to cross compile the kernel. it seems to me like llvm and gcc would both have to support the target you are going to build for, whereas before you only needed gcc to support the target.

    • by bsane ( 148894 )

      This is the biggest problem I think.

    • Re: (Score:2, Informative)

      Back in the 90's we had to compile GCC three times and then build the kernel, sometimes fixing type bugs along the way. It was a solid day's work, maybe letting the compiles run overnight.

      There doesn't seem to be much with this proposal that can't be scripted. For truly new ISA's, adding an LLVM backend is actually easier than GCC.

      • by AmiMoJo ( 196126 ) on Sunday August 30, 2020 @02:19PM (#60455758) Homepage Journal

        My concern is more to do with having LLVM be a mandatory requirement to build the kernel. At the moment you at least have a choice of GCC or LLVM.

        LLVM is Apache License with various LLVM specific exceptions. GCC is full GPL v3 with the runtime library exception. It might seem like a trivial distinction to some but it's actually very important that Linux can always be built with a GPL licensed compiler suite.

      • For truly new ISA's, adding an LLVM backend is actually easier than GCC.

        Getting the backend accepted upstream is a different story though. LLVM rejected a patch to add an m68k (Motorola 68000 family) backend because no one stepped up to maintain it for the next ten years. From a post to the mailing list by Simon Pilgrim in May 2019 [llvm.org]:

        AFAICT the problem has always been code ownership - we would need people with some knowledge of both m68k and llvm to be willing to actively support the target: steering it through the setup/experimental target stages, providing (and maintaining) tes

    • FreeBSD uses LLVM for the BSD licensed OS, but almost all FreeBSD systems also have gcc and at many ports are compiled by gcc. It does mean that you must have both sets of compiler libraries, but it is mostly transparent to porters. I'll also note that for a fair time while the OS was transitioned to clang/LLVM, systems were built using both compilers. (I believe that this only applied to the development branch, not released versions.)
    • by Anonymous Coward

      i have many questions regaring making the linux kernel wholly dependent on LLVM (since that is what would happen if you had Rust inside of it)

      LLVM is the future. GCC itself limited its future by insisting that it could not be allowed to be extended easily via plugins or access to intermediate code or libraries. Those choices certainly won some of the philosophical battles, but they may have lost the long term war. GCC is certainly not dead, and it will continue, but the real money is currently being directed towards LLVM, and in the end, money (and therefore developer resources) matter.

    • Re: (Score:3, Interesting)

      by Anonymous Coward

      LLVM is not easy to get working on "weird" platforms. Further, to get patches upstreamed for these platforms, one must provided a dedicated server for their testing needs. So you have server cost + any issues they have with your patches. It's not pleasant.

      As for rust, since it depends on LLVM you have double the hoops to go through. The source includes a modified version of LLVM. If it doesn't have upstream patches for your OS, you get to port LLVM a second time, then rust and keep doing it with each new

    • by stikves ( 127823 )

      It is possible to compile the entire kernel in LLVM:
      https://www.kernel.org/doc/htm... [kernel.org]

      But that of course many obscure platforms only supported by gcc but not supported on llvm.

      Given it is unlikely Rust will be rewritten in gcc, nor Linux would drop many smaller platforms, I am not sure how this will work.

  • by stabiesoft ( 733417 ) on Sunday August 30, 2020 @12:08PM (#60455386) Homepage
    a rust unix, then let them build Runix and leave Linux in C.
  • by gweihir ( 88907 ) on Sunday August 30, 2020 @12:20PM (#60455432)

    When a crappy, unfinished language with grande claims and shaky support gets seriously considered for use, then sanity has left the building.

    • I wish i could mod this comment up...
      From what i see on the outside in, but a linux user for many years, it's a fad language. Like java and dozens of others.

      • A bit of a stretch to call Java a fad, after 22 years. I'm sure you could have come up with a better example. Python, maybe?

    • by Fly Swatter ( 30498 ) on Sunday August 30, 2020 @12:39PM (#60455508) Homepage
      Rust sounds like a haven for lazy and sloppy coders. 'Let the compiler clean up my mess'. Restrict this to optional drivers and modules. Linux proper should never require this.

      -Is it worse to be off-by-one or off-by-unkown?
      • by gweihir ( 88907 )

        Rust sounds like a haven for lazy and sloppy coders. 'Let the compiler clean up my mess'. Restrict this to optional drivers and modules. Linux proper should never require this.

        Indeed. Incompetents finally hoping to create good code without having to fix their incompetence. Of course, that cannot work.

        • > Incompetents finally hoping to create good code without having to fix their incompetence.

          Are you calling the linux devs who have let exploits slip past them "incompetents"?

          Because that'd be most of the names you know.

          • by gweihir ( 88907 ) on Sunday August 30, 2020 @02:01PM (#60455720)

            > Incompetents finally hoping to create good code without having to fix their incompetence.

            Are you calling the linux devs who have let exploits slip past them "incompetents"?

            Because that'd be most of the names you know.

            Commend made in bad faith is comment made in bad faith. Alternatively, maybe you are one of the incompetents? Because nobody competent would ever believe that "incompetent" refers to "have let a relatively low number of bugs slipped past or made a relatively low number of mistakes". Quite obviously. Everybody makes mistakes. The difference is in the frequency and the quality of the mistakes.

            • by dow ( 7718 )

              Errare humanum est. It seems the fad of Rust is the ability to quickly produce code that by language design has restricted the frequency and quality of errors. Obviously making something foolproof we can expect to introduce a better fool.

              • by gweihir ( 88907 )

                Indeed. Also, Rust can do nothing about logic errors, bad design, lack of understanding how a technology works, etc. And these are the real killers, because there often is no simple fix. For example, the classical buffer overflow and friends is easy to find and easy to avoid, no Rust required for that, just competent testing and coding. In fact, the very fact that they are easy to find is what makes them dangerous. Fro race conditions, somebody that cannot competently avoid races is likely to cause lockups,

                • by Bengie ( 1121981 )
                  It's not one or the other, we can have both, ignoring the issues of tool chains people brought up. I read a blog from a C kernel developer that there are some datastructures that cannot be used safely in kernel C because they don't do well in the required functional styling. And this person said they were able to use Rust just fine because even when using object oriented patterns, it had the performance of C and he could interface with C to this code. Got something like a 20% performance gain because of a m
          • by guruevi ( 827432 )

            Do you really think that you can't compile in exploits in Rust? https://medium.com/@shnatsel/h... [medium.com]

      • by phantomfive ( 622387 ) on Sunday August 30, 2020 @02:05PM (#60455734) Journal

        Restrict this to optional drivers and modules.

        Based on comments made earlier by Linus, he seems to agree with you.

      • by AmiMoJo ( 196126 )

        When you say "sounds like" it suggests you have never actually learned or used Rust. It's nothing like what you describe.

      • by grub ( 11606 )
        Damn I wish I had mod points for you.
      • Or, "let the compiler tell me where I screwed up, BEFORE it will compile, so I can fix it, and learn to do a better job next time." That's the intent anyway.
    • by antdude ( 79039 )

      If that happens, then fork the Kernel without Rust. It's open source and free as beer. :P

  • I am waiting for the Scooby Doo style reveal to find out that Graydon Hoare is really Steve Ballmer. "I would have ruined Linux if it were not for those meddling kids..."
  • by devslash0 ( 4203435 ) on Sunday August 30, 2020 @01:54PM (#60455704)
    In other words, don't try to fix something that isn't broken. If you are concerned about memory safety then you should go and work on improving your own programming skills and writing better code rather than jump to another set of tools. Remember that no programming language is free of problems. At least with C, which has been around for a while, those issues are better understood and have known working solutions. In my opinion adding and pushing for Rust in the kernel is only going to frustrate and drive away experienced developers, and work against the quality of the kernel in a long term.
    • by gweihir ( 88907 ) on Sunday August 30, 2020 @02:04PM (#60455730)

      Indeed. Very much this. "If it is not broken, do not fix it" is one of the very base rules of all good engineering. Developers from the "young, dynamic, clueless" camp violate this time and again, to the detriment of everybody. The kernel is not broken and neither is its development approach. These people need to stay the hell away from it!

      • by Bengie ( 1121981 )
        "If it is not broken, do not fix it" depends greatly on the reasoning behind it. Coal power companies are still saying that in denial of their outdatedness. If Rust is better at somethings, then use the best tool for the job where practical. I've read plenty of blogs from C kernel developers to know that there are real benefits from Rust over C for certain use cases. I wouldn't advocate to re-write in rust, but Rust was specifically designed to be usable piecemeal in a C system.

        In my professional experien
    • by molarmass192 ( 608071 ) on Sunday August 30, 2020 @02:54PM (#60455872) Homepage Journal

      Totally agree, if they can't figure out memory safety in C, then they shouldn't be touching kernel code. C is about as straightforward as it gets wrt memory safety. There are no classes to hide allocations and create hard to trace leaks. There's basically malloc / free and alloca. So long as your code isn't peppered in casts, in which case put down the compiler now, it's not that hard. Know what a pointer is (reference / dereference), limit casting, be careful with string termination, and the rest should be easy.

      • by Mr MW ( 4278811 )

        And should real programmers turn off all compiler warnings too? After all, for a careful programmer they're unnecessary also. Have no memory safety bugs made it into the kernel recently? Rust may or may not be the solution, but denying there is an issue isn't the solution either.

      • People are imperfect and C is a non-safe language which allows the programmer to f-up without ever realising he/she has done so. Even experienced C-programmers make mistakes that have have more serious consequences than if the code had been written in a different language. That is why we are seeing serious bugs that have gone undetected for years and sometimes decades Raw pointers, variable arguments without type safety, nul-terminated strings and no bounds checking is a recipe for disaster. The saddest t
    • But stainless does rust. It's only less reactive than non-stainless.

      Why yes, I am fun at parties.

      Rust in the kernel is a bad idea, though. Jokes aside, even if it's used only for optional components it's still going to increase requirements for many users.

    • Stainless steel does indeed rust: you just need to contaminate it with some free iron. Of course, that's a hardware problem.
  • It's a slippery slope. Either you like it, or you don't.

    The question is if said liking correlates with it actually being good for everyone (or even anyone) affected by it.
    Or if it is just a fashion or a cult.

    I can't judge that yet, and neither can probably the vast majority of people that are arguing about it.
    I like the parts of Rust. But dislike others. Mainly because it feels half-assed and far from perfect due to C cultism and thinking inside the C box. But ... as I said ... I can't judge that *yet*. I'm

  • Rust is based entirely upon RAII which cannot directly coexist with non-RAII code without wrapping everything it touches in an RAII interface.

    Memory related programming errors can be largely mitigated by imposition of constraints and static analysis. It is not necessary to invent a new language or impose RAII.

  • It offers much more than memory safety, it's better defined and tested and you only need gcc).
  • It's so obvious that SystemD is the preferred solution.

  • Might as well add GW-Basic and Turbo-Pascal into the mix. I mean, the goal of adding RUST to Linux is to fuck things up, isn't it?

  • by Lost Race ( 681080 ) on Monday August 31, 2020 @11:22AM (#60458764)

    This opens the door for getting my Javascript process scheduler into the kernel!

He has not acquired a fortune; the fortune has acquired him. -- Bion

Working...