1 /* Copyright (C) 2009 Pierre-Marc Fournier
3 * This library is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Lesser General Public
5 * License as published by the Free Software Foundation; either
6 * version 2.1 of the License, or (at your option) any later version.
8 * This library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
25 extern void ust_fork(void);
26 extern void ust_potential_exec(void);
30 static pid_t (*plibc_func
)(void) = NULL
;
38 if(plibc_func
== NULL
) {
39 plibc_func
= dlsym(RTLD_NEXT
, "fork");
40 if(plibc_func
== NULL
) {
41 fprintf(stderr
, "libcwrap: unable to find fork\n");
46 /* Disable interrupts. This is to avoid that the child
47 * intervenes before it is properly setup for tracing. It is
48 * safer to disable all signals, because then we know we are not
49 * breaking anything by restoring the original mask.
53 - only do this if tracing is active
57 sigfillset(&all_sigs
);
58 result
= sigprocmask(SIG_BLOCK
, &all_sigs
, &orig_sigs
);
60 PERROR("sigprocmask");
64 /* Do the real fork */
65 retval
= plibc_func();
73 result
= sigprocmask(SIG_BLOCK
, &orig_sigs
, NULL
);
75 PERROR("sigprocmask");
82 int execve(const char *filename
, char *const argv
[], char *const envp
[])
84 static int (*plibc_func
)(const char *filename
, char *const argv
[], char *const envp
[]) = NULL
;
88 if(plibc_func
== NULL
) {
89 plibc_func
= dlsym(RTLD_NEXT
, "execve");
90 if(plibc_func
== NULL
) {
91 fprintf(stderr
, "libcwrap: unable to find execve\n");
98 retval
= plibc_func(filename
, argv
, envp
);
This page took 0.043923 seconds and 5 git commands to generate.