On 18/06/10 19:55 +0200, Oleg Nesterov wrote: > On 06/18, Louis Rilling wrote: > > > @@ -74,7 +74,7 @@ static int proc_get_sb(struct file_syste > > > ei = PROC_I(sb->s_root->d_inode); > > > if (!ei->pid) { > > > rcu_read_lock(); > > > - ei->pid = get_pid(find_pid_ns(1, ns)); > > > + ei->pid = find_pid_ns(1, ns); > > > > I don't think that this is correct. IIUC, proc_delete_inode() calls put_pid() on > > ei->pid. > > Yes, > > > So either a special case is added in proc_delete_inode(), or we try to > > live with get_pid() here. I'm actually not sure that we can pretend that this > > pid remains valid if we don't get_pid() here. > > But please see another change below, > > > > +static void proc_mntput(struct work_struct *work) > > > { > > > + struct pid_namespace *ns = container_of(work, struct pid_namespace, proc_put); > > > + > > > + PROC_I(ns->proc_mnt->mnt_sb->s_root->d_inode)->pid = NULL; > > > mntput(ns->proc_mnt); > > > } > > it clears ei->pid. > > We are called from free_pid_ns() path, this ->pid must not have any reference. > Any get_pid() implies get_pid_ns(). > > What do you think? Hm, I didn't look close enough. Sorry about that. However, I'm still concerned with this since this pid can have been freed right after container init's release_task(), and I don't see how it is guaranteed that nobody still tries to access this proc_mnt. Thanks, Louis -- Dr Louis Rilling Kerlabs Skype: louis.rilling Batiment Germanium Phone: (+33|0) 6 80 89 08 23 80 avenue des Buttes de Coesmes http://www.kerlabs.com/ 35700 Rennes