Perhaps what you should to be arguing then that the default
permissions of the cgroup directories need to be all rwx for
everyone and then your patch becomes unnecessary?
I don't think that would be the nicest way of dealing with this (then
a process can make very large numbers of cgroups all over the tree,
which might not cause huge issues but would still be a pain for
administrators and systemds alike).
Beware of what you cite as a problem. Any user can enter a user
namespace and then unshare a cgroup namespace. This means that what
you seem to want is equivalent to any user at all being able to create
a cgroup hierarchy.
[...] This means that either it is a problem, and the
cgroup namespace will have to be restricted in some way over how it can
create subordinate cgroups or it's not a problem and we might as well
just see what happens if any old user can do it.
Alternatively, if the desire is fully to virtualize /sys/fs/cgroups
, then I think we have to decide how that would happen. I think
the default requirements would be that a pid namespace be
established (so only the tasks in that pid namespace would be able
to be controlled by the cgroup namespace. That, I think requires
that any given cgroup namespace "own" a pid namespace (being the
one present when it was created) but that it only gets a new
virtual set of directories owned by the userns owner if there's a
pid namespace established for the cgroup and cgroup->user_ns ==
pid_ns->user_ns (meaning we established a user ns then a pid one
then a cgroup one, so it's now safe to treat root in the user_ns as
owning the virtualized cgroup directories).
I know this is probably a stupid question, but why couldn't we just
compare the user_ns with the tcred->user_ns?
If any old user namespace can unshare a cgroup namespace and manipulate
the tree, then that condition is just fine. If we're going to require
they have to create a pid namespace as well, then you need a more
elaborate condition.
Or are you worried about a process in a cgroup namespace moving
processes to a subtree that isn't in the same pid namespace (even
though they're in the same user namespace)?
The corner case I'm worrying about is what happens to a process owned
by the user that gets moved by the administrator to a more confining
cgroup after the establishment of the cgroup namespace? If we allow
too much capability to the user_ns->owner, then they could just take it
out again. The semantics of who can do what after the namespace is
established seem to need better definition. One answer might be that
after the cgroup namespace is established, the real admin can't safely
move the processes, which is why they should be better confined (say
within a pid namespace) so it's not *all* processes owned by this user
that can escape control, merely ones that the user has declared a
desire to control the cgroups for).