From: Chris Wright <chrisw@osdl.org>
To: "Milton D. Miller II" <miltonm@realtime.net>
Cc: Andrew Morton <akpm@osdl.org>,
Rusty Russell <rusty@rustcorp.com.au>,
Omen Wild <Omen.Wild@Dartmouth.EDU>,
linux-kernel@vger.kernel.org
Subject: Re: call_usermodehelper does not report exit status?
Date: Thu, 25 Sep 2003 11:41:50 -0700 [thread overview]
Message-ID: <20030925114150.A18074@osdlab.pdx.osdl.net> (raw)
In-Reply-To: <200309201855.h8KItHuf000466@sullivan.realtime.net>; from miltonm@realtime.net on Sat, Sep 20, 2003 at 01:55:17PM -0500
* Milton D. Miller II (miltonm@realtime.net) wrote:
> Andrew Morton <akpm@osdl.org> wrote:
> > This might fix it.
>
> I think you missed the why behind the comment just above your first change.
Anything wrong with just setting a SIG_DFL handler? W.R.T. the kernel
pointer, either Andrew's patch which does put_user/__put_user depending
on context, or some ugly set_fs() should work. This simplistic approach
works for me, thoughts?
thanks,
-chris
--
Linux Security Modules http://lsm.immunix.org http://lsm.bkbits.net
--- linux-2.6.0-test5-mm4/kernel/kmod.c 2003-09-08 12:49:59.000000000 -0700
+++ 2.6.0-test5-mm4/kernel/kmod.c 2003-09-25 11:34:59.000000000 -0700
@@ -181,16 +181,24 @@
{
struct subprocess_info *sub_info = data;
pid_t pid;
+ struct k_sigaction sa;
+
+ sa.sa.sa_handler = SIG_DFL;
+ sa.sa.sa_flags = 0;
+ siginitset(&sa.sa.sa_mask, sigmask(SIGCHLD));
+ do_sigaction(SIGCHLD, &sa, (struct k_sigaction *)0);
sub_info->retval = 0;
pid = kernel_thread(____call_usermodehelper, sub_info, SIGCHLD);
if (pid < 0)
sub_info->retval = pid;
- else
- /* We don't have a SIGCHLD signal handler, so this
- * always returns -ECHILD, but the important thing is
- * that it blocks. */
- sys_wait4(pid, NULL, 0, NULL);
+ else {
+ mm_segment_t old_fs;
+ old_fs = get_fs();
+ set_fs(KERNEL_DS);
+ sys_wait4(pid, &sub_info->retval, 0, NULL);
+ set_fs(old_fs);
+ }
complete(sub_info->complete);
return 0;
next prev parent reply other threads:[~2003-09-25 18:42 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-09-19 16:24 Omen Wild
2003-09-19 18:21 ` Andrew Morton
2003-09-19 19:51 ` Omen Wild
2003-09-19 19:42 ` Andrew Morton
2003-09-20 18:55 ` Milton D. Miller II
2003-09-25 18:41 ` Chris Wright [this message]
2003-09-25 19:05 ` Andrew Morton
2003-09-25 19:38 ` Chris Wright
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20030925114150.A18074@osdlab.pdx.osdl.net \
--to=chrisw@osdl.org \
--cc=Omen.Wild@Dartmouth.EDU \
--cc=akpm@osdl.org \
--cc=linux-kernel@vger.kernel.org \
--cc=miltonm@realtime.net \
--cc=rusty@rustcorp.com.au \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®