lkml.org 
[lkml]   [2022]   [Sep]   [19]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    /
    Date
    From
    SubjectRe: [PATCH v9 12/27] rust: add `kernel` crate
    On Mon, Sep 19, 2022 at 04:58:06PM -0700, Linus Torvalds wrote:
    > On Mon, Sep 19, 2022 at 4:50 PM Alex Gaynor <alex.gaynor@gmail.com> wrote:
    > >
    > > Rust's rules are that a function that's safe must not exhibit UB, no
    > > matter what arguments they're called with. This can be done with
    > > static checking or dynamic checking, with obvious trade offs between
    > > the two.
    >
    > I think you are missing just how many things are "unsafe" in certain
    > contexts and *cannot* be validated.
    >
    > This is not some kind of "a few special things".
    >
    > This is things like absolutely _anything_ that allocates memory, or
    > takes a lock, or does a number of other things.
    >
    > Those things are simply not "safe" if you hold a spinlock, or if you
    > are in a RCU read-locked region.
    >
    > And there is literally no way to check for it in certain configurations. None.
    >
    > So are you going to mark every single function that takes a mutex as
    > being "unsafe"?
    >

    In this early experiment stage, if something is unsafe per Rust safety
    requirements, maybe we should mark it as "unsafe"? Not because Rust
    safety needs trump kernel needs, but because we need showcases to the
    Rust langauge people the things that are not working very well in Rust
    today.

    I definitely agree that we CANNOT change kernel behaviors to solely
    fulfil Rust safety requirements, we (Rust-for-Linux people) should
    either find a way to check in compiler time or just mark it as "unsafe".

    Maybe I'm naive ;-) But keeping Rust safety requirements as they are
    helps communication with the people on the other side (Rust
    langauge/compiler): "Hey, I did everything per your safety requirements,
    and it ends like this, I'm not happy about it, could you figure out
    something helpful? After all, Rust is a *system programming" language,
    it should be able to handle things like these".

    Or we want to say "kernel is special, so please give me a option so that
    I don't need to worry about these UBs and deal with my real problems"?
    I don't have the first hand experience, but seems this is what we have
    been doing with C for many years. Do we want to try a new strategy? ;-)
    But perhaps it's not new, maybe it's done a few times already but didn't
    end well..

    Anyway, if I really want to teach Rust language/compiler people "I know
    what I'm doing, the problem is that the language is not ready". What
    should I do?

    Regards,
    Boqun

    > Or are you just going to accept and understand that "hey, exactly like
    > with integer overflows, sometimes it will be checked, and sometimes it
    > just won't be".
    >
    > Because that is literally the reality of the kernel. Sometimes you
    > WILL NOT have the checks, and you literally CANNOT have the checks.
    >
    > This is just how reality is. You don't get to choose the universe you live in.
    >
    > Linus

    \
     
     \ /
      Last update: 2022-09-20 02:41    [W:2.461 / U:0.008 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site