From: Anthony Liguori <aliguori@us.ibm.com>
To: Ewan Mellor <ewan@xensource.com>
Cc: xen-devel@lists.xensource.com
Subject: Re: Re: [Xen-changelog] Detach Xend from terminal, courtesy of Horms <horms@verge.net.au>.
Date: Fri, 09 Dec 2005 15:35:27 -0600 [thread overview]
Message-ID: <4399F89F.1090006@us.ibm.com> (raw)
In-Reply-To: <20051209211622.GA12700@leeni.uk.xensource.com>
[-- Attachment #1: Type: text/plain, Size: 1199 bytes --]
Ewan Mellor wrote:
>>I don't quite understand why two fork()s would be required to properly
>>daemonize. I don't know of any other daemons that do that (certainly,
>>xenstored and xenconsoled don't).
>>
>>
>
>It's a standard technique on Unixen. You need to fork before calling setsid
>to ensure that you are not a process group leader, then afterwards to ensure
>that children cannot regain the terminal. See
>
>
I see, I've only ever needed this behavior once and did something
embarrassingly more complex to achieve it :-) While not necessary for
xenconsoled and xenstored, it certainly doesn't hurt.
>http://www.erlenstar.demon.co.uk/unix/faq_2.html#SEC16
>
>(If xenstored and xenconsoled aren't doing this, then they ought to.)
>
>
Patch is attached.
>We have preserved the behaviour whereby the Xend process does not exit until it
>is ready to accept connections -- it's just one fork further on (and there's
>a patch with another fork on its way, for your amusement, but that's a different
>story ;-)
>
>
So that Xend can restart itself? Yeah, I saw that one :-) I'll reserve
a commen there. Thanks for the explaination!
Regards,
Anthony Liguori
>Ewan.
>
>
>
[-- Attachment #2: 8312_setsid_fork.diff --]
[-- Type: text/plain, Size: 1302 bytes --]
# HG changeset patch
# User Anthony Liguori <anthony@codemonkey.ws>
# Node ID e55633c669d11b48cf16d0ddaebbb836d7b3f5f6
# Parent 53cff3f88e45cb5230da39f86d84b6606da0cdbb
Make sure to fork again after setsid() so that child cannot regain CTTY.
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
diff -r 53cff3f88e45 -r e55633c669d1 tools/console/daemon/utils.c
--- a/tools/console/daemon/utils.c Fri Dec 9 11:05:06 2005 +0000
+++ b/tools/console/daemon/utils.c Fri Dec 9 16:33:01 2005 -0500
@@ -90,6 +90,12 @@
setsid();
+ if ((pid = fork()) > 0) {
+ exit(0);
+ } else if (pid == -1) {
+ err(errno, "fork() failed");
+ }
+
/* redirect fd 0,1,2 to /dev/null */
if ((fd = open("/dev/null",O_RDWR)) == -1) {
exit(1);
diff -r 53cff3f88e45 -r e55633c669d1 tools/xenstore/xenstored_core.c
--- a/tools/xenstore/xenstored_core.c Fri Dec 9 11:05:06 2005 +0000
+++ b/tools/xenstore/xenstored_core.c Fri Dec 9 16:33:01 2005 -0500
@@ -1491,6 +1491,13 @@
/* Session leader so ^C doesn't whack us. */
setsid();
+
+ /* Let session leader exit so child cannot regain CTTY */
+ if ((pid = fork()) < 0)
+ barf_perror("Failed to fork daemon");
+ if (pid != 0)
+ exit(0);
+
#ifndef TESTING /* Relative paths for socket names */
/* Move off any mount points we might be in. */
chdir("/");
[-- Attachment #3: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
next prev parent reply other threads:[~2005-12-09 21:35 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <E1EkjTm-0004PC-NQ@xenbits.xensource.com>
2005-12-09 20:47 ` [Xen-changelog] Detach Xend from terminal, courtesy of Horms <horms@verge.net.au> Anthony Liguori
2005-12-09 21:15 ` Kip Macy
2005-12-09 21:16 ` Ewan Mellor
2005-12-09 21:35 ` Anthony Liguori [this message]
2005-12-12 15:12 ` Ewan Mellor
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=4399F89F.1090006@us.ibm.com \
--to=aliguori@us.ibm.com \
--cc=ewan@xensource.com \
--cc=xen-devel@lists.xensource.com \
/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 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.