• nick@campfyre.nickwebster.dev
      link
      fedilink
      arrow-up
      13
      ·
      4 个月前

      A crash is different to a SEGFAULT. I’d be very surprised to see a safe rust program segfault unless it was actively exploiting a compiler bug.

      • Sure. I haven’t seen a proper segfault from any modern, post-C/C++ language in ages. I’ve never seen a Go program segfault, or a Nim one (although, there are comparatively few of those as a sample size).

        So, it seems to me that - purely from the perspective of a user of programs - Rust still seems about as safe as any other modern language - since I’ve seen no other modern (say, created in the past decade) compiled language segfault. Even the C segfaults seem to be largely becoming rare occurrences, which I have to chalk up to better tooling, because I highly doubt that there’s been some magical increase in general C programmer quality in the intervening years.

        • apt_install_coffee@lemmy.ml
          link
          fedilink
          arrow-up
          2
          ·
          edit-2
          4 个月前

          Yes, the problems rust is solving are already solved under different constraints. This is not a spicy take.

          The world isn’t clamoring to turn a go app into rust specifically for the memory safety they both enjoy.

          Systems applications are still almost exclusively written in C & C++, and they absolutely do run into memory bugs. All the time. I work with C almost exclusively for my day job (with shell and rust interspersed), and while tried and tested C programs have far fewer memory bugs than when they were first made, that means the bugs you do find are by their nature more painful to diagnose. Eliminating a whole class of problems in-language is absolutely worth the hype.

        • nick@campfyre.nickwebster.dev
          link
          fedilink
          arrow-up
          1
          ·
          3 个月前

          Go, Java, and Nim (in most cases) are all memory safe but are generally slower than C or C++ due to the ways they achieve memory safety.

          Rust’s memory safety approach is zero-cost performance wise, which makes it practical for low level, high throughput, and low latency applications.

          • Everything is slower than C (I haven’t seen a benchmark yet where a language bests C; even hand-crafted ASM ceded the high ground decades ago when compilers got better than human assembly programmers), but then, C compiler technology has had literally 40+ years to mature.

            Go and Java (once warm) do pretty well, but absolutely give up execution speed for coding simplicity and (in Go’s case, anyway) speed. Nim is young; I’m curious to see how it matures. They’re having a bit of a performance crisis at the moment, but assuming they get past that it seems like a fair middle ground between Go’s simplicity and Rust’s bare-metal performance. Then again, manual memory management was absolutely my least favorite thing about C and is what eventually drove me away; worst. Boilerplate. Ever. Even worse than Go’s error handling (which they almost fixed and looks like will be addressed within the next free releases). Anyhoo, going back to that shit is going to be a hard pill to swallow.

            Rust is still having its honeymoon, and is the hip language of the decade now. We’ll see!

      • TechNom (nobody)@programming.dev
        link
        fedilink
        English
        arrow-up
        13
        ·
        edit-2
        4 个月前

        That’s misinformation. There’s no overestimation. The problem is so bad that even the US government advocates the use of memory safe languages (including GC languages).

        I have used C and C++. You need laser sharp focus to avoid memory safety errors even after you learn what causes them and how to avoid them. It’s significantly easier to write programs in Rust because any lapse in care to avoid memory safety bugs are caught by the compiler.

        • magic_lobster_party@kbin.run
          link
          fedilink
          arrow-up
          1
          arrow-down
          2
          ·
          4 个月前

          What I mean is that even if you use GC languages like Java or Go you will still encounter annoying bugs. I’m not saying that memory safety isn’t important.

          • TechNom (nobody)@programming.dev
            link
            fedilink
            English
            arrow-up
            6
            ·
            4 个月前

            You said bugs caused by ‘memory problems’. And that Rust programmers vastly overestimate them. Those aren’t generic logical bugs that you get in Go or Java. And Rust never claimed to solve logical bugs.

            • magic_lobster_party@kbin.run
              link
              fedilink
              arrow-up
              1
              ·
              4 个月前

              I’m more poking fun at Rust enthusiasts who make it seem like programs are automatically bug free just because they’re written in Rust.

              Haskell enthusiasts made similar claims as well.

      • CanadaPlus@lemmy.sdf.org
        link
        fedilink
        arrow-up
        2
        ·
        4 个月前

        I don’t know, I’ve caused a whole lot in C/C++. I haven’t actually written anything in Rust either, so I’m somewhat unbiased.

      • MajorHavoc@programming.dev
        link
        fedilink
        arrow-up
        7
        arrow-down
        7
        ·
        edit-2
        4 个月前

        Yeah. The verdict is still out on whether having a deeply surly compiler will help me focus on iterating and understanding the client’s needs.

        I run Python CICD controls on main with at least the same level of prissiness (as Rust comes with), but at least Python knows how to shut up and let me prototype.

        I’m currently not convinced that Rust’s opinionated design hits a useable long term sweet spot.

        But I think if Rust adds a debug flag --fuck-off-i-need-to-try-something, it could genuinely become the next Python, and the world would be better for it.

        Edit: And if I just missed the --fuck-off-i-need-to-try-something Rust flag, someone point me at it, and I’ll gladly give Rust another run.

        • Fal@yiffit.net
          link
          fedilink
          English
          arrow-up
          11
          arrow-down
          1
          ·
          4 个月前

          Once you get the hang of rust you don’t ever need to ask it to do unsafe things. It’s not really any faster to do things unsafe

          • MajorHavoc@programming.dev
            link
            fedilink
            arrow-up
            2
            arrow-down
            6
            ·
            edit-2
            3 个月前

            It’s not really any faster to do things unsafe

            Yeah. Which is how I roll with Python now, as a Python Zen master. But Python was a little charmer when I was learning it to replace my Perl scripts.

            In contrast, Rust would not shut up the last time I was trying to do an unsafe local bubble sort, just to get to know it. What I got to know was that I was working with a language that was going to go out of it’s way to get in my, each time way I wanted to do something it didn’t like.

            Rust was easily the worst first date with a programming language I have had in a long time, and I can code in both varieties of ‘Pikachu’.

            Again, it’s just my first impression, not the last word on the language. But I have enough tools in my belt that I didn’t need to add Rust.

            I’ll try that ‘unsafe’ flag next time, and we will see if it can sort my local music files by artist name without having a security fit.

            Edit: Responses here have convinced me not to give Rust another shot. Reeks of the Java community. If that’s what’s happening here, the Java devs can have this one to themselves. They’ll probably fill it with XML again. I didn’t want to like Rust anyway. And everyone needs to get off my lawn.

            • Fal@yiffit.net
              link
              fedilink
              English
              arrow-up
              6
              arrow-down
              1
              ·
              edit-2
              4 个月前

              You’re missing the point. Tools are different. Trying to learn and use rust by writing unsafe bubble sort is pointless. Use it to actually accomplish something and you’ll find out just how amazing it is.

              Using the ecosystem that exists to be productive and not have to think at all about whether what you’re doing is correct is the point. It catches the subtle errors for you and lets you use the powerful libraries like clap for command line parsing, tokio, etc.

              • MajorHavoc@programming.dev
                link
                fedilink
                arrow-up
                1
                arrow-down
                2
                ·
                edit-2
                3 个月前

                I wasn’t being that picky, and I was using the ecosystem. Rust just has lousy compiler warnings.

                I know dozens of languages, so I don’t mind risking looking dumb when I say “this tool isn’t very good yet”.

                Rust’s compiler, considering what it asks for, isn’t good enough at guiding the developer toward those asks. It actively wastes the one crucial low-supply computing resource: developer time.

                I could have figured it out, if I had to. But I didn’t have to. I moved on to the next interesting language to try out. It was goLang, and it had isn’t own bullshit, but it wasn’t as bad as Rust.

                I’ve written in Haskell and Brainfuck. I don’t mind esoteric languages.

                But Rust presents itself as a solid general purpose pragmatic development tool, which is great to strive for, but it wasn’t there yet, last time I gave it a chance.

                I want Rust to succeed in replacing Python, because the world would be better off with better security defaults. But Rust had not, last I checked, attracted the necessary usability specialist contributors, to have any chance at that goal.

                Edit: I no longer want Rust to replace Python. Y’all got a problem presenting yourselves, kids. It’s going to hurt your language adoption rate.

                Edit 2: And get off my lawn!

                • Fal@yiffit.net
                  link
                  fedilink
                  English
                  arrow-up
                  3
                  arrow-down
                  2
                  ·
                  4 个月前

                  Rust just has lousy compiler warnings.

                  You’re the only person I’ve ever heard this from. Rust’s compiler warnings are amazing. Like 2nd to none

                  • MajorHavoc@programming.dev
                    link
                    fedilink
                    arrow-up
                    1
                    arrow-down
                    1
                    ·
                    4 个月前

                    It’s very possible it’s improved since I tried it last. I’ll put it back on my list to give it another go.

              • MajorHavoc@programming.dev
                link
                fedilink
                arrow-up
                1
                arrow-down
                1
                ·
                edit-2
                3 个月前

                Thanks. I found and tried that, but what I really needed was a useful compiler error, which Rust did not provide.

                Rust desperately needed a usability makeover, last time I tried it.

                It amuses me that my fellow security gurus push Rust hard, because we sit in the same policy-pushers conferences as the usability specialists, but we don’t always learn enough from them.

                Edit: The responses here are quite revealing. I’m not seeing any of my usability mentors in the Rust diehard fan mix.

                None of this has convinced me to give Rust another go. Its community, did not present well here.

                • force@lemmy.world
                  link
                  fedilink
                  arrow-up
                  1
                  arrow-down
                  1
                  ·
                  edit-2
                  4 个月前

                  Sorry what? Rust has literally been known for having some of the most useful compiler warnings imaginable. It’s like, a huge selling point. Misleading warnings are far and few, and usually it’ll literally point you at the exact tokens that caused an error and gives you a solution to fix it.

                  Are you sure that your inability to write Rust isn’t caused by a lack of understanding of the language’s pointer/ownership/lifetime rules, or the type system? I would be inclined to believe that someone who mainly just uses Python (or any other GC’d language really, but especially extremely high-level/“low-code” dynamically-typed languages like Python/Lua/JavaScript) wouldn’t exactly be too good at those concepts, but they’re pretty important in the context of languages like Rust.

                  • MajorHavoc@programming.dev
                    link
                    fedilink
                    arrow-up
                    1
                    ·
                    4 个月前

                    Sorry what? Rust has literally been known for having some of the most useful compiler warnings imaginable. It’s like, a huge selling point

                    And yet, that was not my experience.

                    Are you sure that your inability to write Rust isn’t caused by a lack of understanding of the language’s pointer/ownership/lifetime rules, or the type system?

                    I’m sure it is. I’m an old man who codes proficiently in dozens of languages.

                    Rust isn’t some messianic message I need to forget everything I previously learned for.

                    I’m happy to adapt. I let Python have it’s goddamned four spaces, even.

                    But Rust couldn’t be arsed, at the time, to tell me what it wanted in terms clear to someone only proficient in dozens of other languages.

                    So Rust can either up it’s ‘here’s what you need to know’ game, or it can continue to get off my damn lawn.

                    It’s possible, even hopeful, that Rust has massively improved since I gave it a test run. It would be hard for it have gotten worse, frankly.

                    Your tone, here, comes across like the folks who denied that Java had a serious community culture problem while the rest of us quietly moved on to Python.

                    If you’re confident it’s better now, you can simply say, “I think it’s a lot better now, you might like it.”

        • nick@campfyre.nickwebster.dev
          link
          fedilink
          arrow-up
          6
          ·
          edit-2
          4 个月前

          That flag exists, it’s called unsafe for if you need to tell the borrow checker to trust you or unwrap if you don’t want to deal with handling errors on most ADTs.

          You can always cast anything to an unmanaged pointer type and use it in unsafe code.

    • TechNom (nobody)@programming.dev
      link
      fedilink
      English
      arrow-up
      9
      ·
      4 个月前

      I don’t know if you’re talking about panics and abort or about crashes caused by memory safety errors. The latter class is very unlikely in safe rust, other than as rare compiler bugs. Panics and aborts are your call. You can easily write code that doesn’t panic or abort.

      • 𝕽𝖚𝖆𝖎𝖉𝖍𝖗𝖎𝖌𝖍@midwest.social
        link
        fedilink
        arrow-up
        4
        arrow-down
        1
        ·
        4 个月前

        As a user. I don’t write Rust, but lots of programs I use do and, as I said, they seem to crash about as much as any other compiled language tools I use are written in. I almost never see segfaults; I can’t say I’ve ever seen one in a Go program, and I use a bunch on those.

        If we’re only talking about segfaults, the only language I can remember seeing doing that has been C, or C++. If not doing segfaults is what makes a language “safe,” then it seems to me most modern languages are as safe as Rust. If we include crashes, then as I said, I see Rust programs crashing about as much as any other proglang.

        • TechNom (nobody)@programming.dev
          link
          fedilink
          English
          arrow-up
          3
          ·
          4 个月前

          This is definitely into the territory of misinformation.

          I don’t write Rust, but lots of programs I use do and, as I said, they seem to crash about as much as any other compiled language tools I use are written in

          I already addressed this before. Regular crashes are almost always (I can’t remember any exceptions) due to panics or aborts chosen by the user - especially due to unwraps. Using that to equate Rust programs’ stability to ‘any other compiled language tools I use are written in’ is very disingenuous - because it’s just as easy to handle those errors and prevent a crash at all.

          If not doing segfaults is what makes a language “safe,” then it seems to me most modern languages are as safe as Rust

          You are unnecessarily conflating issues here. ‘Most modern languages’ are not a replacement for what C, C++ and Rust can do. Go most famously had to retract their ‘systems programming language’ tag, for example. If a GC language meets your requirements - then by all means, use it. But it’s not without reason that many companies have rewritten even their web backends in Rust. Memory safety without GC is a very big feature that a lot of professionals care about. It’s not something to dismiss as trivial.

          And while at it, you neglecting what segfaults represent. It’s just a benign example of memory safety bug. It’s benign because it gets caught causes the program to crash. There are a whole lot of them that causes the program to continue running - causing serious vulnerabilities. This is why even the US government and agencies recommend memory safety languages and especially Rust if performance and other limitations matter.

          If we include crashes, then as I said, I see Rust programs crashing about as much as any other proglang.

          I really don’t want to repeat the reason twice in a single comment and 3 times including in my previous comment. But the only way you are going to make Rust crash as much as ‘any other prolang’ is to neglect idiomatic Rust. That isn’t surprising because crashing anything is possible if that’s your intention.

          • 𝕽𝖚𝖆𝖎𝖉𝖍𝖗𝖎𝖌𝖍@midwest.social
            link
            fedilink
            arrow-up
            2
            arrow-down
            1
            ·
            4 个月前

            I think you’re missing the point where I said I don’t write Rust. I’m merely making an observation - as a user who’s more than usual, probably, aware of which language any given tool is written in, of what I observe.

            I know I’ve seen a Rust program segfault, and I’m certain that I saw this only once. I’m equally confident that almost every other segfault has been from C/C++ code, but not other languages.

            What I’m hearing you say is that crashes aren’t a risk, per se, as long as they aren’t memory related and so the crashes I see from Rust programs don’t count because they aren’t segmentation faults. Did I read that right? And I also hear you claiming that, e.g., NPEs are security issues, even if the runtime catches them and safely exits the program in a controlled manner (“crashing out” safely) - is that right?

    • paholg@lemm.ee
      link
      fedilink
      English
      arrow-up
      6
      ·
      4 个月前

      I’m sorry to hear that. I think at one point in my past, about half my job was tracking down nil dereference errors in Ruby. And probably a quarter was writing tests for things a good type system would catch at compile time.

      • And I’m sorry to hear about that Ruby experience. I authored one of the Ruby stdlibs, and similar issues with the language, and the inevitable encroachment of Rails into every project, eventually drove me away from it.

        I was, however, excluding interpreted languages from my comparison. Dynamically typed languages are a different matter and can’t hope to be any kind of safe - but that’s not the game where they excel.