this post was submitted on 20 Nov 2023
45 points (94.1% liked)

Linux

48157 readers
614 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
 

Hi guys!

I am currently trying Arch in a VM and I like it a lot. Wanted to try the hardened kernel all the time, but it has the problem of forbidding custom namespaces.

Tbh I dont even know what that is, but on arch, installing bubblewrap-suid fixes the flatpak problem.

I could not find such a package for Podman, which is used as backend (?) in Distrobox.

Is there a way to make Podman, Docker, Distrobox, Toolbox work on linux-hardened?

This is a big requirement for making a Fedora Atomic version using the hardened kernel, which sounds great, as they completely rely on these containers.

top 10 comments
sorted by: hot top controversial new old
[–] [email protected] 14 points 1 year ago (1 children)

Tools like Podman, Docker, Distrobox and Toolbox use custom uid namespaces. I don’t see how they could work with them disabled.

[–] [email protected] 2 points 1 year ago (1 children)

With a specific exception only for one software. I would be happy with Flatpak and Podman. Maybe Waydroid and wine too though?

[–] [email protected] 3 points 1 year ago (1 children)

Wine should just work.
Waydroid needs extra support from the kernel that linux-hardend has disabled at compile time. There's a DKMS solution however.

[–] [email protected] 2 points 11 months ago (1 children)

This one? it doesnt mention the hardened kernel at all, is this some obsolete modification not needed in modern Kernels?

[–] [email protected] 2 points 11 months ago* (last edited 11 months ago) (1 children)
[–] [email protected] 1 points 11 months ago (1 children)

Crazy that it just works on Fedora

[–] [email protected] 3 points 11 months ago

That just means they have the feature enabled at compile time. Linux-Zen is the only kernel that has it on Arch.

[–] [email protected] 12 points 1 year ago

Basically, you want to not disable kernel.unprivileged_userns_clone.

For a temporary solution that has to be redone after reboot, there is sysctl kernel.unprivileged_userns_clone=1.

For a lasting solution, consider echo kernel.unprivileged_userns_clone=1 | sudo tee /etc/sysctl.d/99-enable-unpriv-userns.conf.

In either case you're foregoing security for the sake of convenience/functionality, so I understand why you would rather not act upon either of them.

I don't know what the solution is that would be analogous to installing bubblewrap-suid. Perhaps, it's worth exploring the projects found within the github page of Awesome Fedora Security for some pointers.

[–] [email protected] 7 points 1 year ago (1 children)

If you are running things inside of containers you aren’t helping yourself by disabling unprivileged namespaces, you are actually just running more things as root. Inside the containers they generally block namespaces anyway.

TBH I’ve never heard anything positive about most of what hardened does.

[–] [email protected] 1 points 1 year ago

I guess I would just disable this one hardening setting like another person recommended.