* [RFC][PATCH] SEND_SIG_NOINFO: Set si_pid to tgid instead of pid
@ 2008-12-17 2:06 ` Sukadev Bhattiprolu
0 siblings, 0 replies; 7+ messages in thread
From: Sukadev Bhattiprolu @ 2008-12-17 2:06 UTC (permalink / raw)
To: oleg-H+wXaHxf7aLQT0dZR+AlfA, ebiederm-aS9lmoZGLiVWk0Htik3J/w,
roland-H+wXaHxf7aLQT0dZR+AlfA
Cc: containers-qjLDD68F18O7TbgM5vRIOg,
linux-kernel-u79uwXL29TY76Z2rM5mHXA,
bastian-yyjItF7Rl6lg9hUCZPvPmw, xemul-GEFAQzZX7r8dnm+yROfE0A
From: Sukadev Bhattiprolu <sukadev-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
Date: Tue, 16 Dec 2008 17:07:17 -0800
Subject: [PATCH] SEND_SIG_NOINFO: Set si_pid to tgid instead of pid
POSIX requires the si_pid to be the process id of the sender, so ->si_pid
should really be set to 'tgid'. This change does have following changes
in behavior:
- When sending pdeath_signal on re-parent to a sub-thread, ->si_pid
cannot be used to identify the thread that did the re-parent since
it will now show the tgid instead of thread id.
- A multi-threaded application that expects to find the specific
thread that encountered a SIGPIPE using the ->si_pid will now
break.
Signed-off-by: Sukadev Bhattiprolu <sukadev-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
---
kernel/signal.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/kernel/signal.c b/kernel/signal.c
index d11e5f8..700d767 100644
--- a/kernel/signal.c
+++ b/kernel/signal.c
@@ -856,7 +856,7 @@ static int send_signal(int sig, struct siginfo *info, struct task_struct *t,
q->info.si_signo = sig;
q->info.si_errno = 0;
q->info.si_code = SI_USER;
- q->info.si_pid = task_pid_nr_ns(current,
+ q->info.si_pid = task_tgid_nr_ns(current,
task_active_pid_ns(t));
q->info.si_uid = current_uid();
break;
--
1.5.2.5
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [RFC][PATCH] SEND_SIG_NOINFO: Set si_pid to tgid instead of pid
@ 2008-12-17 2:06 ` Sukadev Bhattiprolu
0 siblings, 0 replies; 7+ messages in thread
From: Sukadev Bhattiprolu @ 2008-12-17 2:06 UTC (permalink / raw)
To: oleg, ebiederm, roland; +Cc: daniel, bastian, xemul, containers, linux-kernel
From: Sukadev Bhattiprolu <sukadev@linux.vnet.ibm.com>
Date: Tue, 16 Dec 2008 17:07:17 -0800
Subject: [PATCH] SEND_SIG_NOINFO: Set si_pid to tgid instead of pid
POSIX requires the si_pid to be the process id of the sender, so ->si_pid
should really be set to 'tgid'. This change does have following changes
in behavior:
- When sending pdeath_signal on re-parent to a sub-thread, ->si_pid
cannot be used to identify the thread that did the re-parent since
it will now show the tgid instead of thread id.
- A multi-threaded application that expects to find the specific
thread that encountered a SIGPIPE using the ->si_pid will now
break.
Signed-off-by: Sukadev Bhattiprolu <sukadev@linux.vnet.ibm.com>
---
kernel/signal.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/kernel/signal.c b/kernel/signal.c
index d11e5f8..700d767 100644
--- a/kernel/signal.c
+++ b/kernel/signal.c
@@ -856,7 +856,7 @@ static int send_signal(int sig, struct siginfo *info, struct task_struct *t,
q->info.si_signo = sig;
q->info.si_errno = 0;
q->info.si_code = SI_USER;
- q->info.si_pid = task_pid_nr_ns(current,
+ q->info.si_pid = task_tgid_nr_ns(current,
task_active_pid_ns(t));
q->info.si_uid = current_uid();
break;
--
1.5.2.5
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [RFC][PATCH] SEND_SIG_NOINFO: Set si_pid to tgid instead of pid
2008-12-17 2:06 ` Sukadev Bhattiprolu
(?)
@ 2008-12-17 3:17 ` Roland McGrath
2008-12-17 3:20 ` Roland McGrath
-1 siblings, 1 reply; 7+ messages in thread
From: Roland McGrath @ 2008-12-17 3:17 UTC (permalink / raw)
To: Sukadev Bhattiprolu
Cc: oleg, ebiederm, daniel, bastian, xemul, containers, linux-kernel
Acked-By: Roland McGrath <roland@redhat.com>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [RFC][PATCH] SEND_SIG_NOINFO: Set si_pid to tgid instead of pid
2008-12-17 3:17 ` Roland McGrath
@ 2008-12-17 3:20 ` Roland McGrath
0 siblings, 0 replies; 7+ messages in thread
From: Roland McGrath @ 2008-12-17 3:20 UTC (permalink / raw)
To: Sukadev Bhattiprolu, oleg, ebiederm, daniel, bastian, xemul,
containers, linux-ke
Arguably these deserve a heads-up to linux-abi, not that whether si_pid was
tid or tgid was probably actually documented before (and I presume the
wrong-namespace issue just doesn't need to be).
Thanks,
Roland
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [RFC][PATCH] SEND_SIG_NOINFO: Set si_pid to tgid instead of pid
@ 2008-12-17 3:20 ` Roland McGrath
0 siblings, 0 replies; 7+ messages in thread
From: Roland McGrath @ 2008-12-17 3:20 UTC (permalink / raw)
To: Sukadev Bhattiprolu, oleg, ebiederm, daniel, bastian, xemul,
containers, linux-kernel
Arguably these deserve a heads-up to linux-abi, not that whether si_pid was
tid or tgid was probably actually documented before (and I presume the
wrong-namespace issue just doesn't need to be).
Thanks,
Roland
^ permalink raw reply [flat|nested] 7+ messages in thread
[parent not found: <20081217020601.GB2866-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>]
* Re: [RFC][PATCH] SEND_SIG_NOINFO: Set si_pid to tgid instead of pid
2008-12-17 2:06 ` Sukadev Bhattiprolu
@ 2008-12-18 3:58 ` Sukadev Bhattiprolu
-1 siblings, 0 replies; 7+ messages in thread
From: Sukadev Bhattiprolu @ 2008-12-18 3:58 UTC (permalink / raw)
To: oleg-H+wXaHxf7aLQT0dZR+AlfA, ebiederm-aS9lmoZGLiVWk0Htik3J/w,
roland-H+wXaHxf7aLQT0dZR+AlfA
Cc: daniel-nym3zxDgnZcAvxtiuMwx3w, bastian-yyjItF7Rl6lg9hUCZPvPmw,
xemul-GEFAQzZX7r8dnm+yROfE0A, containers-qjLDD68F18O7TbgM5vRIOg,
linux-kernel-u79uwXL29TY76Z2rM5mHXA,
linux-api-u79uwXL29TY76Z2rM5mHXA
Ccing linux-api for the user-visible changes per Roland's suggestion.
Not sure if the current behavior is documented somewhere. but should
the new behavior be documented in pipe(7) and prctl(2) ?
This patch was recently added to -mm tree.
Sukadev
Sukadev Bhattiprolu [sukadev-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org] wrote:
|
| From: Sukadev Bhattiprolu <sukadev-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
| Date: Tue, 16 Dec 2008 17:07:17 -0800
| Subject: [PATCH] SEND_SIG_NOINFO: Set si_pid to tgid instead of pid
|
| POSIX requires the si_pid to be the process id of the sender, so ->si_pid
| should really be set to 'tgid'. This change does have following changes
| in behavior:
|
| - When sending pdeath_signal on re-parent to a sub-thread, ->si_pid
| cannot be used to identify the thread that did the re-parent since
| it will now show the tgid instead of thread id.
|
| - A multi-threaded application that expects to find the specific
| thread that encountered a SIGPIPE using the ->si_pid will now
| break.
|
| Signed-off-by: Sukadev Bhattiprolu <sukadev-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
| ---
| kernel/signal.c | 2 +-
| 1 files changed, 1 insertions(+), 1 deletions(-)
|
| diff --git a/kernel/signal.c b/kernel/signal.c
| index d11e5f8..700d767 100644
| --- a/kernel/signal.c
| +++ b/kernel/signal.c
| @@ -856,7 +856,7 @@ static int send_signal(int sig, struct siginfo *info, struct task_struct *t,
| q->info.si_signo = sig;
| q->info.si_errno = 0;
| q->info.si_code = SI_USER;
| - q->info.si_pid = task_pid_nr_ns(current,
| + q->info.si_pid = task_tgid_nr_ns(current,
| task_active_pid_ns(t));
| q->info.si_uid = current_uid();
| break;
| --
| 1.5.2.5
|
| --
| To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
| the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
| More majordomo info at http://vger.kernel.org/majordomo-info.html
| Please read the FAQ at http://www.tux.org/lkml/
--
To unsubscribe from this list: send the line "unsubscribe linux-api" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [RFC][PATCH] SEND_SIG_NOINFO: Set si_pid to tgid instead of pid
@ 2008-12-18 3:58 ` Sukadev Bhattiprolu
0 siblings, 0 replies; 7+ messages in thread
From: Sukadev Bhattiprolu @ 2008-12-18 3:58 UTC (permalink / raw)
To: oleg, ebiederm, roland
Cc: daniel, bastian, xemul, containers, linux-kernel, linux-api
Ccing linux-api for the user-visible changes per Roland's suggestion.
Not sure if the current behavior is documented somewhere. but should
the new behavior be documented in pipe(7) and prctl(2) ?
This patch was recently added to -mm tree.
Sukadev
Sukadev Bhattiprolu [sukadev@linux.vnet.ibm.com] wrote:
|
| From: Sukadev Bhattiprolu <sukadev@linux.vnet.ibm.com>
| Date: Tue, 16 Dec 2008 17:07:17 -0800
| Subject: [PATCH] SEND_SIG_NOINFO: Set si_pid to tgid instead of pid
|
| POSIX requires the si_pid to be the process id of the sender, so ->si_pid
| should really be set to 'tgid'. This change does have following changes
| in behavior:
|
| - When sending pdeath_signal on re-parent to a sub-thread, ->si_pid
| cannot be used to identify the thread that did the re-parent since
| it will now show the tgid instead of thread id.
|
| - A multi-threaded application that expects to find the specific
| thread that encountered a SIGPIPE using the ->si_pid will now
| break.
|
| Signed-off-by: Sukadev Bhattiprolu <sukadev@linux.vnet.ibm.com>
| ---
| kernel/signal.c | 2 +-
| 1 files changed, 1 insertions(+), 1 deletions(-)
|
| diff --git a/kernel/signal.c b/kernel/signal.c
| index d11e5f8..700d767 100644
| --- a/kernel/signal.c
| +++ b/kernel/signal.c
| @@ -856,7 +856,7 @@ static int send_signal(int sig, struct siginfo *info, struct task_struct *t,
| q->info.si_signo = sig;
| q->info.si_errno = 0;
| q->info.si_code = SI_USER;
| - q->info.si_pid = task_pid_nr_ns(current,
| + q->info.si_pid = task_tgid_nr_ns(current,
| task_active_pid_ns(t));
| q->info.si_uid = current_uid();
| break;
| --
| 1.5.2.5
|
| --
| To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
| the body of a message to majordomo@vger.kernel.org
| More majordomo info at http://vger.kernel.org/majordomo-info.html
| Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2008-12-18 3:59 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-12-17 2:06 [RFC][PATCH] SEND_SIG_NOINFO: Set si_pid to tgid instead of pid Sukadev Bhattiprolu
2008-12-17 2:06 ` Sukadev Bhattiprolu
2008-12-17 3:17 ` Roland McGrath
2008-12-17 3:20 ` Roland McGrath
2008-12-17 3:20 ` Roland McGrath
[not found] ` <20081217020601.GB2866-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2008-12-18 3:58 ` Sukadev Bhattiprolu
2008-12-18 3:58 ` Sukadev Bhattiprolu
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.