this post was submitted on 02 Sep 2025
132 points (99.3% liked)

Linux

9289 readers
552 users here now

A community for everything relating to the GNU/Linux operating system (except the memes!)

Also, check out:

Original icon base courtesy of lewing@isc.tamu.edu and The GIMP

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] chronicledmonocle@lemmy.world 22 points 3 days ago* (last edited 3 days ago) (4 children)

Was sudo broken in some way that makes rewriting it in rust appealing? Genuinely curious.

[–] Lem453@lemmy.ca 23 points 3 days ago (1 children)

Everyone is focusing on the fact that this us C vs rust. The original sudo has issues on its own. Its a large code base that does lots of things and has inherent security vulnerabilities.

Sudo is worth redoing regardless of language.

https://linuxsecurity.com/news/security-vulnerabilities/sudo-flaws-linux-privilege-at-risk

[–] The_Decryptor@aussie.zone 18 points 3 days ago* (last edited 3 days ago)

Sudo is worth redoing regardless of language.

Or move away from it entirely, e.g. to something like doas which OpenBSD migrated to a decade ago.

[–] badbytes@lemmy.world 22 points 3 days ago (1 children)

Its a big debate/ discussion lately, as rust has some safety bits built-in that make it safer than C. So tools are getting ported.

[–] chronicledmonocle@lemmy.world 17 points 3 days ago (2 children)

I mean....sounds fine. Why is it "controversial"?

[–] Lehmanator@programming.dev 40 points 3 days ago (5 children)

Few reasons, some less valid than others.

  • replaces GPL license with more permissive one
  • wasnt broke dont fix
  • missing some configuration features of base sudo
  • C people feeling threatened by rust
  • people hate rust's overzealous stans
  • rust community is pretty queer, so being anti-rust is a nice proxy for anti-lgbtq
[–] InternetCitizen2@lemmy.world 28 points 3 days ago (1 children)

replaces GPL license with more permissive one

Honestly I think this is a rather big deal. It leaves our project open to just being made closed source / justifies not contributing back from big companies.

[–] lengau@midwest.social 6 points 3 days ago

The original Sudo is licensed under a complex web of MIT-like licenses. sudo-rs is dual-licensed under the MIT license and Apache 2.

[–] 8uurg@lemmy.world 13 points 3 days ago
  • wasnt broke dont fix

Sadly, security issues are still being found in sudo, so wasn't broke isn't entirely true. Though, whether or not Rust prevents a given security issue is strongly dependent on the kind of issue. Security issues arising from logical errors usually don't get caught, there is only a guarantee for memory management issues.

  • missing some configuration features of base sudo

One of the things sudo-rs does is implement only a subset of features to decrease the attack surface. A recent security issue did not affect sudo-rs because they simply did not implement the feature that had the (logic) bug. As with many things this is a trade-off.

[–] Sxan@piefed.zip 1 points 3 days ago (2 children)

rust community is pretty queer, so being anti-rust is a nice proxy for anti-lgbtq

New to me; is þis recent? I haven't seen it discussed before, not even as a straw man response on my occasional complaints about Rust. Is þe Rust community demonstrably more queer þan oþer PL communities? Are þere anti-queer PL's?

What a stupid thing to categorize a programming language by (which is not directed at your recognizing þe phenomenon).

[–] irelephant@lemmy.dbzer0.com 10 points 3 days ago

It is very popular with queer people. The chuds who still use Twitter have called it woke for making a bluesky and mastodon account

[–] pohart@programming.dev 5 points 3 days ago

It's not new and it doesn't have a lot to do with rust really. Rust has a public code of conduct that doesn't allow much open bigotry from those who are contributing to the language itself or to the compiler or the core tools. Some people really hate this.

[–] badbytes@lemmy.world 5 points 3 days ago

Just GreyBeards having discussions, sometimes heated. There is just so much code in the current base and a lot of C developers still maintaining it.

[–] TeddE@lemmy.world 10 points 3 days ago

Honestly - even if there were no other practical benefit to the code base - having a new language to recode everything in is healthy for programmers - it gets newer engineers excited.

[–] khleedril@cyberplace.social 8 points 3 days ago (2 children)

@chronicledmonocle @cm0002 The real answer is that some people just want something to do.

The more philosophical answer is that after C (circa 1960) there have been lots of developments in programming languages, both translated and compiled. Rust is epochal in that it takes all the best features and has the right defaults based on 50 years experience. Most notably it is the first language which understands the code it is compiling, and is thus able to see errors and make deep optimizations...

[–] khleedril@cyberplace.social 5 points 3 days ago

@chronicledmonocle @cm0002 ... given all that, it just makes sense to systematically rewrite everything that exists in C as Rust. Nothing to lose, everything to gain.

Most notably it is the first language which understands the code it is compiling

wat