“Anything that can be written in Rust will eventually be written in Rust”

  • radiant_bloom@lemm.ee
    link
    fedilink
    arrow-up
    3
    ·
    edit-2
    3 months ago

    Someone has to explain how rm, which doesn’t allocate any memory (as far as I can tell), isn’t memory safe ?

  • merthyr1831@lemmy.world
    cake
    link
    fedilink
    arrow-up
    2
    ·
    3 months ago

    To think that something i used to completely nuke my homeserver one time can be written in 112 lines of rust. thats the power of linux right there

    • devraza@lemmy.mlOP
      link
      fedilink
      arrow-up
      1
      ·
      3 months ago

      Well, I’m not sure how many lines of C rm is written in but I think that rm being only around 4kb (iirc) is something to consider.

      But still, storage probably matters least in this day and age. Oh, and…

      something I used to completely nuke my home server

      If I’m reading this right, then I hope you had backups ready :)

      • merthyr1831@lemmy.world
        cake
        link
        fedilink
        arrow-up
        1
        ·
        3 months ago

        Lol thankfully i stopped before it ate any important info, but now I finally have all of that vital stuff being backed up to a hetzner storage box weekly now :)

  • adr1an@programming.dev
    link
    fedilink
    arrow-up
    1
    ·
    3 months ago

    Can you share what would be a concrete example of the risk taken by running a RM program with a memory leak or dangling pointers? I fail to see, by my own ignorance, the benefit of memory safety everywhere. But I do enjoy the rust rewrites of shell tools because of the ergonomics, speed, and new functionalities. I’m asking because the first thing you mentioned as a benefit was memory safety.

    • Lodra@programming.dev
      link
      fedilink
      English
      arrow-up
      1
      ·
      3 months ago

      Unfortunately, I don’t remember the source so we may need to go digging. But I recall reading that something like 1/3 of all bugs are related to memory safety. And those bugs translate to things like buffer overflow and privilege escalation attacks.

      The proclaimed advantage is that by making the entirety of Rust memory safe, that entire class of bugs simply won’t exist for projects written in Rust. When they do happen, the bugs will be addressed by the language rather than many thousands of downstream projects. It should be an enormous gain in development performance for the world.

      I think the idea makes sense. Time will tell us how well that works.