mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] exec: Cleanup exec from a non thread group leader.
@ 2006-01-29  6:23 Eric W. Biederman
  0 siblings, 0 replies; 7+ messages in thread
From: Eric W. Biederman @ 2006-01-29  6:23 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel


This patch modifies switch_exec_pids so that it uses the
normal attach_pid/detach_pid functions.  This makes
the code more maintainable and it removes a race
where find_pid could fail to find a thread group or
a process id that currently exists.

We also now preserve the exit_signal of our thread group
leader when we call exec (when we take over the thread
group leaders identity).

And for good measure we set the thread group leaders
exit_signal to -1 so it will self reap.  We are actually
past the point where that matters but it can't hurt, and
it might help someday.

Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>


---

 fs/exec.c    |    3 ++-
 kernel/pid.c |   33 +++++++++++++--------------------
 2 files changed, 15 insertions(+), 21 deletions(-)

dab45943cf60c11f4432d6fdd26d68eb7092b8dd
diff --git a/fs/exec.c b/fs/exec.c
index c9d8e31..922dbee 100644
--- a/fs/exec.c
+++ b/fs/exec.c
@@ -721,10 +721,11 @@ static int de_thread(struct task_struct 
 
 		list_del(&current->tasks);
 		list_add_tail(&current->tasks, &init_task.tasks);
-		current->exit_signal = SIGCHLD;
+		current->exit_signal = leader->exit_signal;
 
 		BUG_ON(leader->exit_state != EXIT_ZOMBIE);
 		leader->exit_state = EXIT_DEAD;
+		leader->exit_signal = -1;
 
 		write_unlock_irq(&tasklist_lock);
 		spin_unlock(&leader->proc_lock);
diff --git a/kernel/pid.c b/kernel/pid.c
index 1acc072..d2247dc 100644
--- a/kernel/pid.c
+++ b/kernel/pid.c
@@ -220,31 +220,24 @@ EXPORT_SYMBOL(find_task_by_pid_type);
 /*
  * This function switches the PIDs if a non-leader thread calls
  * sys_execve() - this must be done without releasing the PID.
- * (which a detach_pid() would eventually do.)
+ *
+ * The attach and detach operations have been carefully
+ * ordered so there is never an instant that pids that will
+ * survive are absent from the hash table.  This ensures
+ * that we don't release pids we mean to keep.
  */
 void switch_exec_pids(task_t *leader, task_t *thread)
 {
-	__detach_pid(leader, PIDTYPE_PID);
-	__detach_pid(leader, PIDTYPE_TGID);
-	__detach_pid(leader, PIDTYPE_PGID);
-	__detach_pid(leader, PIDTYPE_SID);
-
-	__detach_pid(thread, PIDTYPE_PID);
-	__detach_pid(thread, PIDTYPE_TGID);
-
-	leader->pid = leader->tgid = thread->pid;
-	thread->pid = thread->tgid;
-
-	attach_pid(thread, PIDTYPE_PID, thread->pid);
-	attach_pid(thread, PIDTYPE_TGID, thread->tgid);
+	detach_pid(thread, PIDTYPE_PID);
+	thread->pid = leader->pid;
+	attach_pid(thread, PIDTYPE_PID,  thread->pid);
 	attach_pid(thread, PIDTYPE_PGID, thread->signal->pgrp);
-	attach_pid(thread, PIDTYPE_SID, thread->signal->session);
-	list_add_tail(&thread->tasks, &init_task.tasks);
+	attach_pid(thread, PIDTYPE_SID,  thread->signal->session);
 
-	attach_pid(leader, PIDTYPE_PID, leader->pid);
-	attach_pid(leader, PIDTYPE_TGID, leader->tgid);
-	attach_pid(leader, PIDTYPE_PGID, leader->signal->pgrp);
-	attach_pid(leader, PIDTYPE_SID, leader->signal->session);
+	detach_pid(leader, PIDTYPE_PID);
+	detach_pid(leader, PIDTYPE_TGID);
+	detach_pid(leader, PIDTYPE_PGID);
+	detach_pid(leader, PIDTYPE_SID);
 }
 
 /*
-- 
1.1.5.g3480


^ permalink raw reply	[flat|nested] 7+ messages in thread
* Re: [PATCH] exec: Cleanup exec from a non thread group leader.
@ 2006-01-30 11:52 Oleg Nesterov
  2006-01-30 14:48 ` Oleg Nesterov
  2006-01-30 20:27 ` Eric W. Biederman
  0 siblings, 2 replies; 7+ messages in thread
From: Oleg Nesterov @ 2006-01-30 11:52 UTC (permalink / raw)
  To: Eric W. Biederman; +Cc: Andrew Morton, linux-kernel

Eric W. Biederman wrote:
>
> And for good measure we set the thread group leaders
> exit_signal to -1 so it will self reap.  We are actually
> past the point where that matters but it can't hurt, and
> it might help someday.
> ...
>               leader->exit_state = EXIT_DEAD;
> +             leader->exit_signal = -1;

I disagree. The leader is already practically reaped, it is EXIT_DEAD.
I think this change will confuse the reader who will try to understand
why do we need this subtle assignment.

>  void switch_exec_pids(task_t *leader, task_t *thread)
>  {
> -	__detach_pid(leader, PIDTYPE_PID);
> -	__detach_pid(leader, PIDTYPE_TGID);
> -	__detach_pid(leader, PIDTYPE_PGID);
> -	__detach_pid(leader, PIDTYPE_SID);
> -
> -	__detach_pid(thread, PIDTYPE_PID);
> -	__detach_pid(thread, PIDTYPE_TGID);
> -
> -	leader->pid = leader->tgid = thread->pid;
> -	thread->pid = thread->tgid;
> -
> -	attach_pid(thread, PIDTYPE_PID, thread->pid);
> -	attach_pid(thread, PIDTYPE_TGID, thread->tgid);
> +	detach_pid(thread, PIDTYPE_PID);
> +	thread->pid = leader->pid;
> +	attach_pid(thread, PIDTYPE_PID,  thread->pid);
>  	attach_pid(thread, PIDTYPE_PGID, thread->signal->pgrp);
> -	attach_pid(thread, PIDTYPE_SID, thread->signal->session);
> -	list_add_tail(&thread->tasks, &init_task.tasks);

The last deletion is wrong, I beleive.

> +	attach_pid(thread, PIDTYPE_SID,  thread->signal->session);
>  
> -	attach_pid(leader, PIDTYPE_PID, leader->pid);
> -	attach_pid(leader, PIDTYPE_TGID, leader->tgid);
> -	attach_pid(leader, PIDTYPE_PGID, leader->signal->pgrp);
> -	attach_pid(leader, PIDTYPE_SID, leader->signal->session);
> +	detach_pid(leader, PIDTYPE_PID);
> +	detach_pid(leader, PIDTYPE_TGID);
> +	detach_pid(leader, PIDTYPE_PGID);
> +	detach_pid(leader, PIDTYPE_SID);
>  }

I think most of detach_pid()s could be replaced with __detach_pid(),
this will save unneccesary pid_hash scanning

Oleg.

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2006-01-31 15:36 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-01-29  6:23 [PATCH] exec: Cleanup exec from a non thread group leader Eric W. Biederman
2006-01-30 11:52 Oleg Nesterov
2006-01-30 14:48 ` Oleg Nesterov
2006-01-30 20:33   ` Eric W. Biederman
2006-01-31 10:07     ` Oleg Nesterov
2006-01-31 15:35       ` Eric W. Biederman
2006-01-30 20:27 ` Eric W. Biederman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome