OpenVZ Forum


Home » Mailing lists » Devel » [PATCH 19/20] Changes to show virtual ids to user
Re: [PATCH 19/20] Changes to show virtual ids to user [message #15828 is a reply to message #15734] Tue, 14 August 2007 20:12 Go to previous messageGo to previous message
Andrew Morton is currently offline  Andrew Morton
Messages: 127
Registered: December 2005
Senior Member
On Fri, 10 Aug 2007 15:48:28 +0400
xemul@openvz.org wrote:

> This is the largest patch in the set. Make all (I hope) the places where
> the pid is shown to or get from user operate on the virtual pids.
> 
> The idea is:
>  - all in-kernel data structures must store either struct pid itself
>    or the pid's global nr, obtained with pid_nr() call;
>  - when seeking the task from kernel code with the stored id one
>    should use find_task_by_pid() call that works with global pids;
>  - when showing pid's numerical value to the user the virtual one
>    should be used, but however when one shows task's pid outside this
>    task's namespace the global one is to be used;
>  - when getting the pid from userspace one need to consider this as
>    the virtual one and use appropriate task/pid-searching functions.
> 
> ...
>
> -	si.si_pid = current->pid;
> +	si.si_pid = task_pid_vnr(current);

This is going to be an ongoing maintenance problem: people will sneak
new references to current->pid into the tree and nobody will notice.

It'd be best to rename task_struct.pid to something else to catch such
problems and to force people to use the right accessors.  Is that feasible?

Generally this is a tactic which should be used whenever things like this
are virtualised.
 
Read Message
Read Message
Read Message
Previous Topic: Re: user namespaces config option
Next Topic: [PATCH] Fix check for return value of create_pid_namespace
Goto Forum:
  


Current Time: Sat Aug 30 07:09:40 GMT 2025

Total time taken to generate the page: 0.07010 seconds