298
submitted 3 months ago by joojmachine@lemmy.ml to c/linux@lemmy.ml
you are viewing a single comment's thread
view the rest of the comments
[-] stuckgum@lemmy.ml 40 points 3 months ago

Yet another security issue that Rust would solve.

[-] veniasilente@lemm.ee 67 points 3 months ago

Oh, we heard, Rust is the greatest invention since sliced bread. We heard it already. Like 65534 times.

[-] Zucca@sopuli.xyz 58 points 3 months ago

Like 65534 times.

So close to full 16-bit max. So close...

[-] phoenixz@lemmy.ca 16 points 3 months ago

Yeah I figured he was going purposely for a memory overflow

[-] veniasilente@lemm.ee 10 points 3 months ago

Yeah we only need 2 brainRusts more to start seeing some fun.

[-] Zucca@sopuli.xyz 2 points 3 months ago

Gah. I should have stated "I see what you did there." instead. ;)

[-] urska@lemmy.ca 27 points 3 months ago

Aviation, Health, Space and Car industry have only 3 certified languages that they use. Ada, C and C++. Ada is dying because there are way less young engineers who want to invest their future learning it. Then there is C and C++ but they dont offer memory safety and its really hard to master and its really hard and long (thats what she said) to certify the code when being audited for safety by a tier company.

Rust solves by default (no need to review) like 2/3 of the standard requirements those industries have and are that found in C and C++. Rust will soon be approved in this group by the car industry.

Im not a rust fan, but I have 3 things to say about rust.

  • Its fun to program like C++ having the peace of mind knowing the compiler is there helping.
  • You dont feel like youre defusing a bomb like when writing C.
  • Even though its a fun language to write, its also really hard to master, itd say 2 years to be really proficient with it. There is just so much knowledge.
[-] anton@lemmy.blahaj.zone 14 points 3 months ago

Aviation, Health, Space and Car industry have only 3 certified languages that they use. Ada, C and C++.

Rust is automotive certified since over half a year. https://ferrous-systems.com/blog/officially-qualified-ferrocene

[-] caseyweederman@lemmy.ca 4 points 3 months ago

Could you explain the "no need to review" part? I do keep hearing good things about Rust.

[-] urska@lemmy.ca 5 points 3 months ago* (last edited 3 months ago)

These industries hire third parties to review c and c++ line per line to make sure it's memory safe. Rust by default forces you to write memory safe code, otherwise it won't even compile. The rust compiler tells where is the problem and what it expects. No only for basic Type errors but also for concurrent code.

load more comments (2 replies)
load more comments (3 replies)
[-] drwho@beehaw.org 18 points 3 months ago

I wonder how many folks are just refusing to use Rust to spite the Rust Evangelism Strike Team.

[-] Templa@beehaw.org 8 points 3 months ago

Rustaceans 🤝 Vegans

[-] delirious_owl@discuss.online 2 points 3 months ago

I wait until cargo is actually secure.

load more comments (3 replies)
load more comments (4 replies)
[-] doona@aussie.zone 13 points 3 months ago

I hate it when people talk about new technologies 🤬

[-] veniasilente@lemm.ee 10 points 3 months ago

Same. We should head back to ICQ!

[-] leopold@lemmy.kde.social 8 points 3 months ago

eh, still beats Discord as far as I'm concerned

[-] VerseAndVermin@lemmy.world 4 points 3 months ago

Yeah, but no one will hop on irc or mumble to hang out these days.

load more comments (2 replies)
[-] corsicanguppy@lemmy.ca 33 points 3 months ago

Yet another problem that actually updating your shit - which is trivially easy on enterprise Linux - would fix.

It's part of the 95% of problems solved by actually updating your enterprise Linux host.

[-] delirious_owl@discuss.online 7 points 3 months ago

unattended-upgrades and forget about it

[-] KISSmyOSFeddit@lemmy.world 5 points 3 months ago

oops, our third party application broke again

[-] delirious_owl@discuss.online 5 points 3 months ago

Never happened to me when set to security.

[-] iegod@lemm.ee 2 points 3 months ago

Tell me more (for real, I'm unfamiliar).

[-] delirious_owl@discuss.online 3 points 3 months ago* (last edited 3 months ago)

Its a Debian package that automatically upgraded packages (if they have pending security updates)

[-] iegod@lemm.ee 3 points 3 months ago

I run mine manually, good to know. Will check it out.

load more comments (4 replies)
[-] the_doktor@lemmy.zip 12 points 3 months ago

Any software can have security issues, including ones written in rust. Just because C/C++ allows one to shoot oneself in the foot doesn't mean it's something that's commonly allowed by anyone with any skill, it's just a bug like anything else. I swear, people advocating rust believe that it's something intrinsic in C/C++ that allows such a thing regardless of what a developer does, and it's getting tiresome.

[-] ProgrammingSocks@pawb.social 10 points 3 months ago

Of course a good developer can avoid these problems for the most part. The point is that we want the bad developers to be forced to do things a safe way by default.

[-] pathief@lemmy.world 7 points 3 months ago

Even good developers make mistakes. It's really nice to catch these mistakes at compile time.

[-] Miaou@jlai.lu 4 points 3 months ago

But it is, do you not understand what rust brings compared to these two languages ?

load more comments (3 replies)
[-] GolfNovemberUniform@lemmy.ml 7 points 3 months ago

There are still slight advantages to C that probably will make some devs stick to it in specific cases

[-] gravitas_deficiency@sh.itjust.works 15 points 3 months ago

But this isn’t one of them

[-] DacoTaco@lemmy.world 6 points 3 months ago

Serious question, how would using rust avoid this? Rust still has reference types in the background, right? Still has a way to put stuff on the heap too? Those are the only 2 requirements for reusing memory bugs

[-] sleep_deprived@lemmy.world 32 points 3 months ago

This is a use-after-free, which should be impossible in safe Rust due to the borrow checker. The only way for this to happen would be incorrect unsafe code (still possible, but dramatically reduced code surface to worry about) or a compiler bug. To allocate heap space in safe Rust, you have to use types provided by the language like Box, Rc, Vec, etc. To free that space (in Rust terminology, dropping it by using drop() or letting it go out of scope) you must be the owner of it and there may be current borrows (i.e. no references may exist). Once the variable is droped, the variable is dead so accessing it is a compiler error, and the compiler/std handles freeing the memory.

There's some extra semantics to some of that but that's pretty much it. These kind of memory bugs are basically Rust's raison d'etre - it's been carefully designed to make most memory bugs impossible without using unsafe. If you'd like more information I'd be happy to provide!

load more comments (13 replies)
[-] possiblylinux127@lemmy.zip 5 points 3 months ago

The problem is bad programmers. You can write good C code but it takes more effort and security checking. You also can write vulnerable and sloppy Rust code.

load more comments (3 replies)
this post was submitted on 31 May 2024
298 points (98.4% liked)

Linux

47344 readers
1372 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS