multiple boot modes for better security: persistent user | live user | persistent secureadmin | persistent superadmin | persistent recovery mode

I will use the following file names.

/etc/grub.d/10_linux                         PERSISTENT mode USER
/etc/grub.d/11_linux_live                    LIVE mode USER
/etc/grub.d/12_linux_admin                   PERSISTENT mode ADMIN
/etc/grub.d/13_linux_admin_live              LIVE mode ADMIN
/etc/grub.d/14_linux_superadmin              PERSISTENT mode SUPERADMIN
/etc/grub.d/15_linux_superadmin_live         LIVE mode SUPERADMIN
/etc/grub.d/16_linux_recovery_mode           PERSISTENT mode SUPERADMIN
/etc/grub.d/17_linux_recovery_mode_live      Recovery LIVE mode SUPERADMIN

Should stay below /etc/grub.d/20_ because that is already used by an existing script.

Note: some files will not be created in the first iteration (and not sure ever) - those listed in chapter Boot modes considered too unimportant to be added to grub default boot menu: in my post above.

2 Likes

These grub default menu entries were implemented.

Next step, things that need to be implemented:

  • when kernel parameter rootmode is set → boot/login into user admin
  • when kernel parameter superroot is set → boot/login into user admin
  • otherwise boot/login into user user
2 Likes

I will add a safety feature. Copy /boot/grub/grub.cfg to a temporary location, then use /usr/bin/grub-script-check to check the temporary file is valid before actually installing it to real location /boot/grub/grub.cfg.

2 Likes
2 Likes

“boot into user”, “boot into admin” and “boot into superadmin” should probably be all separate users. (user, admin, superadmin)

Also need to get the terminology right superadmin vs superroot. I guess when booting it will be user superadmin which is a limited user which can use unrestricted sudo which we will then call superroot.

1 Like

I am wondering if when booting into admin or superadmin mode, if as few services as possible should be load. That is because when for example a compromised web server is running under a limited user, user admin or superadmin is more in danger as if no such services were started. Ideally no malware running under limited user accounts would be running during maintenance, admin and superadmin mode. That could be too difficult. Can be future work. Might be hard to whitelist which services should run (Tor, debian-tor, …) vs which ones should not. Also when booting into admin mode to install lets say a web server then the admin might want to fully set it up which wouldn’t work if service starting was restricted. Perhaps it is possible to use no-autostart at boot but regular autostart after package installation.

From SUID Disabler and Permission Hardener - #55 by Patrick

1 Like

Maybe add another boot mode with most services disabled? Doing it as the default might annoy some users.

1 Like

I guess with 5 boot modes (as per this post) we already found an “ideal” number of boot modes. It’s already pushing it. 3 different security levels (user, admin, superadmin), live and recovery mode. Splitting up these security levels is always possible in theory by concept but I guess will confuse users too much. We will have the most sophisticated security focused boot menu.

Splitting boot into admin mode into services enabled and services whitelist only… Probably not.

1 Like

Sure, it might be a lot but I don’t see how else we can do this without annoying users.

Sounds like an achievement.

1 Like

If he is the (super)admin then he should be able to start the service himself.

What can you do with admin mode that requires root. Only upgrade packages?

Does not really show a difference in the description between admin and superadmin mode. Both say “for software installation” but when should you choose admin or superadmin?

2 Likes

Any ordinary administration tasks e.g. editing config files.

Admin is still restricted under the default apparmor policy. Superadmin (or superroot) has its own, more permissive policy.

Currently, it just has access to sysctls and doesn’t include the dangerous-files abstraction.

2 Likes

I am copying over the conceptual notes to a wiki page and refining the concept. Please check:

What would probably cause chaos is to have sometimes 1 word and sometimes 2 words.

  • root
  • super root

also

  • admin
  • super admin

“But I used root.” “You need super root.” “I mean, I used super root.”

Therefore I think single words should be avoided. Documentation should introduce and consistently use two words. Which ones?

  • limited admin / limited root
  • super root / super root

But limited not sound good. What about “daily admin”? Also not good, because we already say user “user” is for daily activities. The word needs to be more encouraging, positive than “limited” but less exiting than “daily”. What about “normal admin”, “normal root”? Not good because “normal”, the norm, what most do is trusted root by default. Also word “untrusted” in “untrusted admin” seems confusing.

Any better suggestions thans limited admin / limited root?

restricted admin /restricted root ?

1 Like

HulaHoop via Whonix Forum:

restricted admin /restricted root ?

Technically correct but sounds so negative, sounds so not worth
bothering with. Maybe there’s no better alternative. Let’s see. Other ideas?

Secure admin / secure root?

1 Like

Using that for now until/if there are better suggestions.

Secure is also not too great since that somewhat suggests “secure, use
all the time”.

1 Like

how about inert or neutral root?

1 Like

One thing hasn’t been considered yet at all: server support. grub boot menu isn’t easily accessible for many/most servers. How would these various boot modes be available for servers?

Live mode: that probably makes little sense on servers.

Persistent user / secureadmin / superadmin however might make sense?
Even if the webapp (ruining as non-root, user) this is catastrophic but if breaking out from a VM to the host is avoided (thanks to restricted root), that’s very worthwhile. Any way to let servers securely toggle these boot options?

This is a deal breaker for installation by default.
(At least as long there’s no different meta packages for desktop use case and server use case. And that I would like to avoid for simplicity. Better solving server support.)

1 Like

Question, does “PERSISTENT mode USER” allow for a separate partitioned FDE storage of the persistent data, that would otherwise be independent and inaccessible from a partition loaded under “LIVE mode USER”

If so, is there any documentation outlining how to do this?
Thanks in advance I look forward to using Whonix

No. That would be far more complex that the current design.

Not that I am aware. Also Self Support First Policy for Whonix applies.