X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=liblttng-ust-fork%2Fustfork.c;h=34f674c3c765a13d3dadc3908f765d0caada8d0f;hb=c0bbbd5af5c91c2f7b7b23fcc860b3e48754c059;hp=cc6963b344419beaec236b24bc0831847e29103d;hpb=3678c8aaf5e2691aaeab0fe15430767138f245d9;p=lttng-ust.git diff --git a/liblttng-ust-fork/ustfork.c b/liblttng-ust-fork/ustfork.c index cc6963b3..34f674c3 100644 --- a/liblttng-ust-fork/ustfork.c +++ b/liblttng-ust-fork/ustfork.c @@ -55,6 +55,34 @@ pid_t fork(void) return retval; } +int daemon(int nochdir, int noclose) +{ + static int (*plibc_func)(int nochdir, int noclose) = NULL; + sigset_t sigset; + int retval; + + if (plibc_func == NULL) { + plibc_func = dlsym(RTLD_NEXT, "daemon"); + if (plibc_func == NULL) { + fprintf(stderr, "libustfork: unable to find \"daemon\" symbol\n"); + errno = ENOSYS; + return -1; + } + } + + ust_before_fork(&sigset); + /* Do the real daemon call */ + retval = plibc_func(nochdir, noclose); + if (retval == 0) { + /* child, parent called _exit() directly */ + ust_after_fork_child(&sigset); + } else { + /* on error in the parent */ + ust_after_fork_parent(&sigset); + } + return retval; +} + #ifdef __linux__ struct user_desc; @@ -111,7 +139,7 @@ int clone(int (*fn)(void *), void *child_stack, int flags, void *arg, ...) tls, ctid); } else { /* Creating a real process, we need to intervene. */ - struct ustfork_clone_info info = { fn = fn, arg = arg }; + struct ustfork_clone_info info = { .fn = fn, .arg = arg }; ust_before_fork(&info.sigset); retval = plibc_func(clone_fn, child_stack, flags, &info,