On Mon, Aug 25, 2008 at 05:54:39PM -0700, Paul Menage wrote:
Once ftpd does seteuid() or setreuid() again to switch effective user to
"root", it will be moved back to original group (root's group).
So basic question is if a program changes its effective user id temporarily
to user B than all the resource consumption should take place from the
resources of user B or should continue to take place from original cgroup.
I would think that we should move the task temporarily to B's cgroup and
bring back again upon identity change.
At the same time I can also understand that this behavior can probably
be considered over-intrusive and some people might want to avoid that.
Two things come to my mind.
- Users who find it too intrusive, can just shut down the rules based
daemon.
- Or, we can implement selective movement of tasks by daemon as suggested by
you. This will make system more complex but provides more flexibility
in the sense users can keep daemon running at the same time control
movement of certain tasks.
So there can be two kind of controls.
- Create a per cgroup file say "group_pinned", where if 1 is written to
"group_pinned" that means daemon will not move tasks from this cgroup upon
effective uid/gid changes.
- Provide more fine grained control where task movement is not controlled
per cgroup, rather per thread id. In that case every cgroup will contain
another file "tasks_pinned" which will contain all the tids which cannot
be moved from this cgroup by daemon. By default this file will be empty
and all the tids are movable.
I think initially we can keep things simple and implement "group_pinned"
which provides coarse control on the whole group and pins all the tasks
in that cgroup.
Thoughts?
Thanks
Vivek
--