4 * Copyright (C) 2011 David Goulet <david.goulet@polymtl.ca>
5 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; only
10 * version 2.1 of the License.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 #include <sys/types.h>
24 #include <sys/socket.h>
27 #include <sys/types.h>
33 #include <semaphore.h>
37 #include <urcu/uatomic.h>
38 #include <urcu/futex.h>
39 #include <urcu/compiler.h>
41 #include <lttng/ust-events.h>
42 #include <lttng/ust-abi.h>
43 #include <lttng/ust.h>
45 #include <usterr-signal-safe.h>
46 #include "tracepoint-internal.h"
47 #include "ltt-tracer-core.h"
49 #include "../libringbuffer/tlsfixup.h"
52 * Has lttng ust comm constructor been called ?
54 static int initialized
;
57 * The ust_lock/ust_unlock lock is used as a communication thread mutex.
58 * Held when handling a command, also held by fork() to deal with
59 * removal of threads, and by exit path.
62 /* Should the ust comm thread quit ? */
63 static int lttng_ust_comm_should_quit
;
66 * Wait for either of these before continuing to the main
68 * - the register_done message from sessiond daemon
69 * (will let the sessiond daemon enable sessions before main
71 * - sessiond daemon is not reachable.
72 * - timeout (ensuring applications are resilient to session
75 static sem_t constructor_wait
;
77 * Doing this for both the global and local sessiond.
79 static int sem_count
= { 2 };
82 * Counting nesting within lttng-ust. Used to ensure that calling fork()
83 * from liblttng-ust does not execute the pre/post fork handlers.
85 static int __thread lttng_ust_nest_count
;
88 * Info about socket and associated listener thread.
92 pthread_t ust_listener
; /* listener thread */
94 int constructor_sem_posted
;
98 char sock_path
[PATH_MAX
];
101 char wait_shm_path
[PATH_MAX
];
105 /* Socket from app (connect) to session daemon (listen) for communication */
106 struct sock_info global_apps
= {
113 .sock_path
= DEFAULT_GLOBAL_APPS_UNIX_SOCK
,
116 .wait_shm_path
= DEFAULT_GLOBAL_APPS_WAIT_SHM_PATH
,
119 /* TODO: allow global_apps_sock_path override */
121 struct sock_info local_apps
= {
125 .allowed
= 0, /* Check setuid bit first */
130 static int wait_poll_fallback
;
132 extern void ltt_ring_buffer_client_overwrite_init(void);
133 extern void ltt_ring_buffer_client_discard_init(void);
134 extern void ltt_ring_buffer_metadata_client_init(void);
135 extern void ltt_ring_buffer_client_overwrite_exit(void);
136 extern void ltt_ring_buffer_client_discard_exit(void);
137 extern void ltt_ring_buffer_metadata_client_exit(void);
140 * Force a read (imply TLS fixup for dlopen) of TLS variables.
143 void lttng_fixup_nest_count_tls(void)
145 asm volatile ("" : : "m" (lttng_ust_nest_count
));
149 int setup_local_apps(void)
151 const char *home_dir
;
156 * Disallow per-user tracing for setuid binaries.
158 if (uid
!= geteuid()) {
159 local_apps
.allowed
= 0;
162 local_apps
.allowed
= 1;
164 home_dir
= (const char *) getenv("HOME");
167 snprintf(local_apps
.sock_path
, PATH_MAX
,
168 DEFAULT_HOME_APPS_UNIX_SOCK
, home_dir
);
169 snprintf(local_apps
.wait_shm_path
, PATH_MAX
,
170 DEFAULT_HOME_APPS_WAIT_SHM_PATH
, uid
);
175 int register_app_to_sessiond(int socket
)
185 uint32_t bits_per_long
;
186 char name
[16]; /* process name */
189 reg_msg
.major
= LTTNG_UST_COMM_VERSION_MAJOR
;
190 reg_msg
.minor
= LTTNG_UST_COMM_VERSION_MINOR
;
191 reg_msg
.pid
= getpid();
192 reg_msg
.ppid
= getppid();
193 reg_msg
.uid
= getuid();
194 reg_msg
.gid
= getgid();
195 reg_msg
.bits_per_long
= CAA_BITS_PER_LONG
;
196 lttng_ust_getprocname(reg_msg
.name
);
198 ret
= ustcomm_send_unix_sock(socket
, ®_msg
, sizeof(reg_msg
));
199 if (ret
>= 0 && ret
!= sizeof(reg_msg
))
205 int send_reply(int sock
, struct ustcomm_ust_reply
*lur
)
209 len
= ustcomm_send_unix_sock(sock
, lur
, sizeof(*lur
));
212 DBG("message successfully sent");
215 if (errno
== ECONNRESET
) {
216 printf("remote end closed connection\n");
221 printf("incorrect message size: %zd\n", len
);
227 int handle_register_done(struct sock_info
*sock_info
)
231 if (sock_info
->constructor_sem_posted
)
233 sock_info
->constructor_sem_posted
= 1;
234 if (uatomic_read(&sem_count
) <= 0) {
237 ret
= uatomic_add_return(&sem_count
, -1);
239 ret
= sem_post(&constructor_wait
);
246 int handle_message(struct sock_info
*sock_info
,
247 int sock
, struct ustcomm_ust_msg
*lum
)
250 const struct lttng_ust_objd_ops
*ops
;
251 struct ustcomm_ust_reply lur
;
258 memset(&lur
, 0, sizeof(lur
));
260 if (lttng_ust_comm_should_quit
) {
265 ops
= objd_ops(lum
->handle
);
272 case LTTNG_UST_REGISTER_DONE
:
273 if (lum
->handle
== LTTNG_UST_ROOT_HANDLE
)
274 ret
= handle_register_done(sock_info
);
278 case LTTNG_UST_RELEASE
:
279 if (lum
->handle
== LTTNG_UST_ROOT_HANDLE
)
282 ret
= lttng_ust_objd_unref(lum
->handle
);
286 ret
= ops
->cmd(lum
->handle
, lum
->cmd
,
287 (unsigned long) &lum
->u
,
295 lur
.handle
= lum
->handle
;
299 lur
.ret_code
= USTCOMM_OK
;
301 //lur.ret_code = USTCOMM_SESSION_FAIL;
306 case LTTNG_UST_STREAM
:
308 * Special-case reply to send stream info.
311 lur
.u
.stream
.memory_map_size
= *args
.stream
.memory_map_size
;
312 shm_fd
= *args
.stream
.shm_fd
;
313 wait_fd
= *args
.stream
.wait_fd
;
315 case LTTNG_UST_METADATA
:
316 case LTTNG_UST_CHANNEL
:
317 lur
.u
.channel
.memory_map_size
= *args
.channel
.memory_map_size
;
318 shm_fd
= *args
.channel
.shm_fd
;
319 wait_fd
= *args
.channel
.wait_fd
;
321 case LTTNG_UST_TRACER_VERSION
:
322 lur
.u
.version
= lum
->u
.version
;
324 case LTTNG_UST_TRACEPOINT_LIST_GET
:
325 memcpy(&lur
.u
.tracepoint
, &lum
->u
.tracepoint
, sizeof(lur
.u
.tracepoint
));
329 ret
= send_reply(sock
, &lur
);
331 perror("error sending reply");
335 if ((lum
->cmd
== LTTNG_UST_STREAM
336 || lum
->cmd
== LTTNG_UST_CHANNEL
337 || lum
->cmd
== LTTNG_UST_METADATA
)
338 && lur
.ret_code
== USTCOMM_OK
) {
341 /* we also need to send the file descriptors. */
342 ret
= ustcomm_send_fds_unix_sock(sock
,
346 perror("send shm_fd");
350 * The sessiond expects 2 file descriptors, even upon
353 ret
= ustcomm_send_fds_unix_sock(sock
,
357 perror("send wait_fd");
366 * LTTNG_UST_TRACEPOINT_FIELD_LIST_GET needs to send the field
369 if (lur
.ret_code
== USTCOMM_OK
) {
371 case LTTNG_UST_TRACEPOINT_FIELD_LIST_GET
:
372 len
= ustcomm_send_unix_sock(sock
,
373 &args
.field_list
.entry
,
374 sizeof(args
.field_list
.entry
));
375 if (len
!= sizeof(args
.field_list
.entry
)) {
382 * We still have the memory map reference, and the fds have been
383 * sent to the sessiond. We can therefore close those fds. Note
384 * that we keep the write side of the wait_fd open, but close
387 if (lur
.ret_code
== USTCOMM_OK
) {
389 case LTTNG_UST_STREAM
:
393 PERROR("Error closing stream shm_fd");
395 *args
.stream
.shm_fd
= -1;
398 ret
= close(wait_fd
);
400 PERROR("Error closing stream wait_fd");
402 *args
.stream
.wait_fd
= -1;
405 case LTTNG_UST_METADATA
:
406 case LTTNG_UST_CHANNEL
:
410 PERROR("Error closing channel shm_fd");
412 *args
.channel
.shm_fd
= -1;
415 ret
= close(wait_fd
);
417 PERROR("Error closing channel wait_fd");
419 *args
.channel
.wait_fd
= -1;
431 void cleanup_sock_info(struct sock_info
*sock_info
, int exiting
)
435 if (sock_info
->socket
!= -1) {
436 ret
= ustcomm_close_unix_sock(sock_info
->socket
);
438 ERR("Error closing apps socket");
440 sock_info
->socket
= -1;
442 if (sock_info
->root_handle
!= -1) {
443 ret
= lttng_ust_objd_unref(sock_info
->root_handle
);
445 ERR("Error unref root handle");
447 sock_info
->root_handle
= -1;
449 sock_info
->constructor_sem_posted
= 0;
451 * wait_shm_mmap is used by listener threads outside of the
452 * ust lock, so we cannot tear it down ourselves, because we
453 * cannot join on these threads. Leave this task to the OS
456 if (!exiting
&& sock_info
->wait_shm_mmap
) {
457 ret
= munmap(sock_info
->wait_shm_mmap
, sysconf(_SC_PAGE_SIZE
));
459 ERR("Error unmapping wait shm");
461 sock_info
->wait_shm_mmap
= NULL
;
466 * Using fork to set umask in the child process (not multi-thread safe).
467 * We deal with the shm_open vs ftruncate race (happening when the
468 * sessiond owns the shm and does not let everybody modify it, to ensure
469 * safety against shm_unlink) by simply letting the mmap fail and
470 * retrying after a few seconds.
471 * For global shm, everybody has rw access to it until the sessiond
475 int get_wait_shm(struct sock_info
*sock_info
, size_t mmap_size
)
477 int wait_shm_fd
, ret
;
481 * Try to open read-only.
483 wait_shm_fd
= shm_open(sock_info
->wait_shm_path
, O_RDONLY
, 0);
484 if (wait_shm_fd
>= 0) {
486 } else if (wait_shm_fd
< 0 && errno
!= ENOENT
) {
488 * Real-only open did not work, and it's not because the
489 * entry was not present. It's a failure that prohibits
492 ERR("Error opening shm %s", sock_info
->wait_shm_path
);
496 * If the open failed because the file did not exist, try
497 * creating it ourself.
499 lttng_ust_nest_count
++;
501 lttng_ust_nest_count
--;
506 * Parent: wait for child to return, in which case the
507 * shared memory map will have been created.
510 if (pid
< 0 || !WIFEXITED(status
) || WEXITSTATUS(status
) != 0) {
515 * Try to open read-only again after creation.
517 wait_shm_fd
= shm_open(sock_info
->wait_shm_path
, O_RDONLY
, 0);
518 if (wait_shm_fd
< 0) {
520 * Real-only open did not work. It's a failure
521 * that prohibits using shm.
523 ERR("Error opening shm %s", sock_info
->wait_shm_path
);
527 } else if (pid
== 0) {
531 create_mode
= S_IRUSR
| S_IWUSR
| S_IRGRP
;
532 if (sock_info
->global
)
533 create_mode
|= S_IROTH
| S_IWGRP
| S_IWOTH
;
535 * We're alone in a child process, so we can modify the
536 * process-wide umask.
540 * Try creating shm (or get rw access).
541 * We don't do an exclusive open, because we allow other
542 * processes to create+ftruncate it concurrently.
544 wait_shm_fd
= shm_open(sock_info
->wait_shm_path
,
545 O_RDWR
| O_CREAT
, create_mode
);
546 if (wait_shm_fd
>= 0) {
547 ret
= ftruncate(wait_shm_fd
, mmap_size
);
555 * For local shm, we need to have rw access to accept
556 * opening it: this means the local sessiond will be
557 * able to wake us up. For global shm, we open it even
558 * if rw access is not granted, because the root.root
559 * sessiond will be able to override all rights and wake
562 if (!sock_info
->global
&& errno
!= EACCES
) {
563 ERR("Error opening shm %s", sock_info
->wait_shm_path
);
567 * The shm exists, but we cannot open it RW. Report
575 if (wait_shm_fd
>= 0 && !sock_info
->global
) {
579 * Ensure that our user is the owner of the shm file for
580 * local shm. If we do not own the file, it means our
581 * sessiond will not have access to wake us up (there is
582 * probably a rogue process trying to fake our
583 * sessiond). Fallback to polling method in this case.
585 ret
= fstat(wait_shm_fd
, &statbuf
);
590 if (statbuf
.st_uid
!= getuid())
596 ret
= close(wait_shm_fd
);
598 PERROR("Error closing fd");
604 char *get_map_shm(struct sock_info
*sock_info
)
606 size_t mmap_size
= sysconf(_SC_PAGE_SIZE
);
607 int wait_shm_fd
, ret
;
610 wait_shm_fd
= get_wait_shm(sock_info
, mmap_size
);
611 if (wait_shm_fd
< 0) {
614 wait_shm_mmap
= mmap(NULL
, mmap_size
, PROT_READ
,
615 MAP_SHARED
, wait_shm_fd
, 0);
616 /* close shm fd immediately after taking the mmap reference */
617 ret
= close(wait_shm_fd
);
619 PERROR("Error closing fd");
621 if (wait_shm_mmap
== MAP_FAILED
) {
622 DBG("mmap error (can be caused by race with sessiond). Fallback to poll mode.");
625 return wait_shm_mmap
;
632 void wait_for_sessiond(struct sock_info
*sock_info
)
637 if (lttng_ust_comm_should_quit
) {
640 if (wait_poll_fallback
) {
643 if (!sock_info
->wait_shm_mmap
) {
644 sock_info
->wait_shm_mmap
= get_map_shm(sock_info
);
645 if (!sock_info
->wait_shm_mmap
)
650 DBG("Waiting for %s apps sessiond", sock_info
->name
);
651 /* Wait for futex wakeup */
652 if (uatomic_read((int32_t *) sock_info
->wait_shm_mmap
) == 0) {
653 ret
= futex_async((int32_t *) sock_info
->wait_shm_mmap
,
654 FUTEX_WAIT
, 0, NULL
, NULL
, 0);
656 if (errno
== EFAULT
) {
657 wait_poll_fallback
= 1;
659 "Linux kernels 2.6.33 to 3.0 (with the exception of stable versions) "
660 "do not support FUTEX_WAKE on read-only memory mappings correctly. "
661 "Please upgrade your kernel "
662 "(fix is commit 9ea71503a8ed9184d2d0b8ccc4d269d05f7940ae in Linux kernel "
663 "mainline). LTTng-UST will use polling mode fallback.");
681 * This thread does not allocate any resource, except within
682 * handle_message, within mutex protection. This mutex protects against
684 * The other moment it allocates resources is at socket connexion, which
685 * is also protected by the mutex.
688 void *ust_listener_thread(void *arg
)
690 struct sock_info
*sock_info
= arg
;
691 int sock
, ret
, prev_connect_failed
= 0, has_waited
= 0;
693 /* Restart trying to connect to the session daemon */
695 if (prev_connect_failed
) {
696 /* Wait for sessiond availability with pipe */
697 wait_for_sessiond(sock_info
);
701 * Sleep for 5 seconds before retrying after a
702 * sequence of failure / wait / failure. This
703 * deals with a killed or broken session daemon.
708 prev_connect_failed
= 0;
712 if (lttng_ust_comm_should_quit
) {
717 if (sock_info
->socket
!= -1) {
718 ret
= ustcomm_close_unix_sock(sock_info
->socket
);
720 ERR("Error closing %s apps socket", sock_info
->name
);
722 sock_info
->socket
= -1;
726 ret
= ustcomm_connect_unix_sock(sock_info
->sock_path
);
728 DBG("Info: sessiond not accepting connections to %s apps socket", sock_info
->name
);
729 prev_connect_failed
= 1;
731 * If we cannot find the sessiond daemon, don't delay
732 * constructor execution.
734 ret
= handle_register_done(sock_info
);
740 sock_info
->socket
= sock
= ret
;
743 * Create only one root handle per listener thread for the whole
746 if (sock_info
->root_handle
== -1) {
747 ret
= lttng_abi_create_root_handle();
749 ERR("Error creating root handle");
753 sock_info
->root_handle
= ret
;
756 ret
= register_app_to_sessiond(sock
);
758 ERR("Error registering to %s apps socket", sock_info
->name
);
759 prev_connect_failed
= 1;
761 * If we cannot register to the sessiond daemon, don't
762 * delay constructor execution.
764 ret
= handle_register_done(sock_info
);
773 struct ustcomm_ust_msg lum
;
775 len
= ustcomm_recv_unix_sock(sock
, &lum
, sizeof(lum
));
777 case 0: /* orderly shutdown */
778 DBG("%s ltt-sessiond has performed an orderly shutdown\n", sock_info
->name
);
781 * Either sessiond has shutdown or refused us by closing the socket.
782 * In either case, we don't want to delay construction execution,
783 * and we need to wait before retry.
785 prev_connect_failed
= 1;
787 * If we cannot register to the sessiond daemon, don't
788 * delay constructor execution.
790 ret
= handle_register_done(sock_info
);
795 DBG("message received\n");
796 ret
= handle_message(sock_info
, sock
, &lum
);
798 ERR("Error handling message for %s socket", sock_info
->name
);
802 DBG("Receive failed from lttng-sessiond with errno %d", errno
);
803 if (errno
== ECONNRESET
) {
804 ERR("%s remote end closed connection\n", sock_info
->name
);
809 ERR("incorrect message size (%s socket): %zd\n", sock_info
->name
, len
);
815 goto restart
; /* try to reconnect */
821 * Return values: -1: don't wait. 0: wait forever. 1: timeout wait.
824 int get_timeout(struct timespec
*constructor_timeout
)
826 long constructor_delay_ms
= LTTNG_UST_DEFAULT_CONSTRUCTOR_TIMEOUT_MS
;
830 str_delay
= getenv("LTTNG_UST_REGISTER_TIMEOUT");
832 constructor_delay_ms
= strtol(str_delay
, NULL
, 10);
835 switch (constructor_delay_ms
) {
836 case -1:/* fall-through */
838 return constructor_delay_ms
;
844 * If we are unable to find the current time, don't wait.
846 ret
= clock_gettime(CLOCK_REALTIME
, constructor_timeout
);
850 constructor_timeout
->tv_sec
+= constructor_delay_ms
/ 1000UL;
851 constructor_timeout
->tv_nsec
+=
852 (constructor_delay_ms
% 1000UL) * 1000000UL;
853 if (constructor_timeout
->tv_nsec
>= 1000000000UL) {
854 constructor_timeout
->tv_sec
++;
855 constructor_timeout
->tv_nsec
-= 1000000000UL;
861 * sessiond monitoring thread: monitor presence of global and per-user
862 * sessiond by polling the application common named pipe.
866 void __attribute__((constructor
)) lttng_ust_init(void)
868 struct timespec constructor_timeout
;
869 sigset_t sig_all_blocked
, orig_parent_mask
;
873 if (uatomic_xchg(&initialized
, 1) == 1)
877 * Fixup interdependency between TLS fixup mutex (which happens
878 * to be the dynamic linker mutex) and ust_lock, taken within
881 lttng_fixup_event_tls();
882 lttng_fixup_ringbuffer_tls();
883 lttng_fixup_vtid_tls();
884 lttng_fixup_nest_count_tls();
887 * We want precise control over the order in which we construct
888 * our sub-libraries vs starting to receive commands from
889 * sessiond (otherwise leading to errors when trying to create
890 * sessiond before the init functions are completed).
894 ltt_ring_buffer_metadata_client_init();
895 ltt_ring_buffer_client_overwrite_init();
896 ltt_ring_buffer_client_discard_init();
898 timeout_mode
= get_timeout(&constructor_timeout
);
900 ret
= sem_init(&constructor_wait
, 0, 0);
903 ret
= setup_local_apps();
905 ERR("Error setting up to local apps");
908 /* A new thread created by pthread_create inherits the signal mask
909 * from the parent. To avoid any signal being received by the
910 * listener thread, we block all signals temporarily in the parent,
911 * while we create the listener thread.
913 sigfillset(&sig_all_blocked
);
914 ret
= pthread_sigmask(SIG_SETMASK
, &sig_all_blocked
, &orig_parent_mask
);
916 ERR("pthread_sigmask: %s", strerror(ret
));
919 ret
= pthread_create(&global_apps
.ust_listener
, NULL
,
920 ust_listener_thread
, &global_apps
);
922 ERR("pthread_create global: %s", strerror(ret
));
924 if (local_apps
.allowed
) {
925 ret
= pthread_create(&local_apps
.ust_listener
, NULL
,
926 ust_listener_thread
, &local_apps
);
928 ERR("pthread_create local: %s", strerror(ret
));
931 handle_register_done(&local_apps
);
934 /* Restore original signal mask in parent */
935 ret
= pthread_sigmask(SIG_SETMASK
, &orig_parent_mask
, NULL
);
937 ERR("pthread_sigmask: %s", strerror(ret
));
940 switch (timeout_mode
) {
941 case 1: /* timeout wait */
943 ret
= sem_timedwait(&constructor_wait
,
944 &constructor_timeout
);
945 } while (ret
< 0 && errno
== EINTR
);
946 if (ret
< 0 && errno
== ETIMEDOUT
) {
947 ERR("Timed out waiting for ltt-sessiond");
952 case -1:/* wait forever */
954 ret
= sem_wait(&constructor_wait
);
955 } while (ret
< 0 && errno
== EINTR
);
958 case 0: /* no timeout */
964 void lttng_ust_cleanup(int exiting
)
966 cleanup_sock_info(&global_apps
, exiting
);
967 if (local_apps
.allowed
) {
968 cleanup_sock_info(&local_apps
, exiting
);
971 * The teardown in this function all affect data structures
972 * accessed under the UST lock by the listener thread. This
973 * lock, along with the lttng_ust_comm_should_quit flag, ensure
974 * that none of these threads are accessing this data at this
977 lttng_ust_abi_exit();
978 lttng_ust_events_exit();
979 ltt_ring_buffer_client_discard_exit();
980 ltt_ring_buffer_client_overwrite_exit();
981 ltt_ring_buffer_metadata_client_exit();
984 /* Reinitialize values for fork */
986 lttng_ust_comm_should_quit
= 0;
991 void __attribute__((destructor
)) lttng_ust_exit(void)
996 * Using pthread_cancel here because:
997 * A) we don't want to hang application teardown.
998 * B) the thread is not allocating any resource.
1002 * Require the communication thread to quit. Synchronize with
1003 * mutexes to ensure it is not in a mutex critical section when
1004 * pthread_cancel is later called.
1007 lttng_ust_comm_should_quit
= 1;
1010 /* cancel threads */
1011 ret
= pthread_cancel(global_apps
.ust_listener
);
1013 ERR("Error cancelling global ust listener thread: %s",
1016 if (local_apps
.allowed
) {
1017 ret
= pthread_cancel(local_apps
.ust_listener
);
1019 ERR("Error cancelling local ust listener thread: %s",
1024 * Do NOT join threads: use of sys_futex makes it impossible to
1025 * join the threads without using async-cancel, but async-cancel
1026 * is delivered by a signal, which could hit the target thread
1027 * anywhere in its code path, including while the ust_lock() is
1028 * held, causing a deadlock for the other thread. Let the OS
1029 * cleanup the threads if there are stalled in a syscall.
1031 lttng_ust_cleanup(1);
1035 * We exclude the worker threads across fork and clone (except
1036 * CLONE_VM), because these system calls only keep the forking thread
1037 * running in the child. Therefore, we don't want to call fork or clone
1038 * in the middle of an tracepoint or ust tracing state modification.
1039 * Holding this mutex protects these structures across fork and clone.
1041 void ust_before_fork(sigset_t
*save_sigset
)
1044 * Disable signals. This is to avoid that the child intervenes
1045 * before it is properly setup for tracing. It is safer to
1046 * disable all signals, because then we know we are not breaking
1047 * anything by restoring the original mask.
1052 if (lttng_ust_nest_count
)
1054 /* Disable signals */
1055 sigfillset(&all_sigs
);
1056 ret
= sigprocmask(SIG_BLOCK
, &all_sigs
, save_sigset
);
1058 PERROR("sigprocmask");
1061 rcu_bp_before_fork();
1064 static void ust_after_fork_common(sigset_t
*restore_sigset
)
1068 DBG("process %d", getpid());
1070 /* Restore signals */
1071 ret
= sigprocmask(SIG_SETMASK
, restore_sigset
, NULL
);
1073 PERROR("sigprocmask");
1077 void ust_after_fork_parent(sigset_t
*restore_sigset
)
1079 if (lttng_ust_nest_count
)
1081 DBG("process %d", getpid());
1082 rcu_bp_after_fork_parent();
1083 /* Release mutexes and reenable signals */
1084 ust_after_fork_common(restore_sigset
);
1088 * After fork, in the child, we need to cleanup all the leftover state,
1089 * except the worker thread which already magically disappeared thanks
1090 * to the weird Linux fork semantics. After tyding up, we call
1091 * lttng_ust_init() again to start over as a new PID.
1093 * This is meant for forks() that have tracing in the child between the
1094 * fork and following exec call (if there is any).
1096 void ust_after_fork_child(sigset_t
*restore_sigset
)
1098 if (lttng_ust_nest_count
)
1100 DBG("process %d", getpid());
1101 /* Release urcu mutexes */
1102 rcu_bp_after_fork_child();
1103 lttng_ust_cleanup(0);
1104 lttng_context_vtid_reset();
1105 /* Release mutexes and reenable signals */
1106 ust_after_fork_common(restore_sigset
);