• doona@aussie.zone
    link
    fedilink
    arrow-up
    15
    ·
    5 days ago

    I really don’t get why an alias to something that would be in systemd anyway (that’s all run0 is, an alias to systemd-run) would be an issue. Is systemd-run problematic or something?

    • pivot_root@lemmy.world
      link
      fedilink
      arrow-up
      5
      arrow-down
      2
      ·
      5 days ago

      The problem is that they’re trying to frame it as a better replacement for sudo when it’s really not.

      In some respects, it’s safer by not using a setuid binary. In other respects, it massively increases the surface area by relying on the correctness of three separate daemons: systemd, dbus, and polkitd. If any one of those components are misconfigured, you risk an unauthorized user gaining root privileges.

      With sudo, the main concern is the sudo process being exploited through memory safety bugs since it runs at root automatically.

      Don’t get me wrong, sudo has a lot of stupid decisions and problems. There’s a ton of code in sudo for features that almost nobody uses, and there’s bound to be bugs in there somewhere. It needs to be replaced with something simpler, but run0 is not that.

      • dino@discuss.tchncs.de
        link
        fedilink
        English
        arrow-up
        3
        ·
        4 days ago

        systemd, dbus, and polkitd. If any one of those components are misconfigured, you risk an unauthorized user gaining root privileges.

        Just for my own understanding, if any of those are misconfigured, do you not anyway have a big security problem already, regardless of run0?

      • doona@aussie.zone
        link
        fedilink
        arrow-up
        3
        ·
        4 days ago

        Thank you for a non-hand-wavy response! I’m not entirely sure I agree, depending on more libraries doesn’t have to be an issue if they’re well designed and frequently used elsewhere, no? Is the implication here that systemd isn’t well designed?

        In any case, would you say sudo is the best we have for temporary root elevation at the moment? I haven’t really heard of an alternative apart from doas.

    • kbal@fedia.io
      link
      fedilink
      arrow-up
      6
      arrow-down
      18
      ·
      5 days ago

      Sure, the project is already bloated with so much complexity that what’s the harm in adding a little more? If you’re genuinely confused about it, see the entire rest of the Internet for details.