Fix: abort on decrement_sem_count during concurrent tracing start and teardown
[lttng-ust.git] / liblttng-ust / lttng-ust-comm.c
1 /*
2 * lttng-ust-comm.c
3 *
4 * Copyright (C) 2011 David Goulet <david.goulet@polymtl.ca>
5 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6 *
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.
11 *
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.
16 *
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
20 */
21
22 #define _LGPL_SOURCE
23 #define _GNU_SOURCE
24 #include <sys/types.h>
25 #include <sys/socket.h>
26 #include <sys/mman.h>
27 #include <sys/stat.h>
28 #include <sys/types.h>
29 #include <sys/wait.h>
30 #include <dlfcn.h>
31 #include <fcntl.h>
32 #include <unistd.h>
33 #include <errno.h>
34 #include <pthread.h>
35 #include <semaphore.h>
36 #include <time.h>
37 #include <assert.h>
38 #include <signal.h>
39 #include <limits.h>
40 #include <urcu/uatomic.h>
41 #include <urcu/futex.h>
42 #include <urcu/compiler.h>
43
44 #include <lttng/ust-events.h>
45 #include <lttng/ust-abi.h>
46 #include <lttng/ust.h>
47 #include <lttng/ust-error.h>
48 #include <lttng/ust-ctl.h>
49 #include <urcu/tls-compat.h>
50 #include <ust-comm.h>
51 #include <ust-fd.h>
52 #include <usterr-signal-safe.h>
53 #include <helper.h>
54 #include "tracepoint-internal.h"
55 #include "lttng-tracer-core.h"
56 #include "compat.h"
57 #include "../libringbuffer/rb-init.h"
58 #include "lttng-ust-statedump.h"
59 #include "clock.h"
60 #include "../libringbuffer/getcpu.h"
61 #include "getenv.h"
62
63 /* Concatenate lttng ust shared library name with its major version number. */
64 #define LTTNG_UST_LIB_SO_NAME "liblttng-ust.so." __ust_stringify(CONFIG_LTTNG_UST_LIBRARY_VERSION_MAJOR)
65
66 /*
67 * Has lttng ust comm constructor been called ?
68 */
69 static int initialized;
70
71 /*
72 * The ust_lock/ust_unlock lock is used as a communication thread mutex.
73 * Held when handling a command, also held by fork() to deal with
74 * removal of threads, and by exit path.
75 *
76 * The UST lock is the centralized mutex across UST tracing control and
77 * probe registration.
78 *
79 * ust_exit_mutex must never nest in ust_mutex.
80 *
81 * ust_fork_mutex must never nest in ust_mutex.
82 *
83 * ust_mutex_nest is a per-thread nesting counter, allowing the perf
84 * counter lazy initialization called by events within the statedump,
85 * which traces while the ust_mutex is held.
86 *
87 * ust_lock nests within the dynamic loader lock (within glibc) because
88 * it is taken within the library constructor.
89 *
90 * The ust fd tracker lock nests within the ust_mutex.
91 */
92 static pthread_mutex_t ust_mutex = PTHREAD_MUTEX_INITIALIZER;
93
94 /* Allow nesting the ust_mutex within the same thread. */
95 static DEFINE_URCU_TLS(int, ust_mutex_nest);
96
97 /*
98 * ust_exit_mutex protects thread_active variable wrt thread exit. It
99 * cannot be done by ust_mutex because pthread_cancel(), which takes an
100 * internal libc lock, cannot nest within ust_mutex.
101 *
102 * It never nests within a ust_mutex.
103 */
104 static pthread_mutex_t ust_exit_mutex = PTHREAD_MUTEX_INITIALIZER;
105
106 /*
107 * ust_fork_mutex protects base address statedump tracing against forks. It
108 * prevents the dynamic loader lock to be taken (by base address statedump
109 * tracing) while a fork is happening, thus preventing deadlock issues with
110 * the dynamic loader lock.
111 */
112 static pthread_mutex_t ust_fork_mutex = PTHREAD_MUTEX_INITIALIZER;
113
114 /* Should the ust comm thread quit ? */
115 static int lttng_ust_comm_should_quit;
116
117 /*
118 * This variable can be tested by applications to check whether
119 * lttng-ust is loaded. They simply have to define their own
120 * "lttng_ust_loaded" weak symbol, and test it. It is set to 1 by the
121 * library constructor.
122 */
123 int lttng_ust_loaded __attribute__((weak));
124
125 /*
126 * Return 0 on success, -1 if should quit.
127 * The lock is taken in both cases.
128 * Signal-safe.
129 */
130 int ust_lock(void)
131 {
132 sigset_t sig_all_blocked, orig_mask;
133 int ret, oldstate;
134
135 ret = pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &oldstate);
136 if (ret) {
137 ERR("pthread_setcancelstate: %s", strerror(ret));
138 }
139 if (oldstate != PTHREAD_CANCEL_ENABLE) {
140 ERR("pthread_setcancelstate: unexpected oldstate");
141 }
142 sigfillset(&sig_all_blocked);
143 ret = pthread_sigmask(SIG_SETMASK, &sig_all_blocked, &orig_mask);
144 if (ret) {
145 ERR("pthread_sigmask: %s", strerror(ret));
146 }
147 if (!URCU_TLS(ust_mutex_nest)++)
148 pthread_mutex_lock(&ust_mutex);
149 ret = pthread_sigmask(SIG_SETMASK, &orig_mask, NULL);
150 if (ret) {
151 ERR("pthread_sigmask: %s", strerror(ret));
152 }
153 if (lttng_ust_comm_should_quit) {
154 return -1;
155 } else {
156 return 0;
157 }
158 }
159
160 /*
161 * ust_lock_nocheck() can be used in constructors/destructors, because
162 * they are already nested within the dynamic loader lock, and therefore
163 * have exclusive access against execution of liblttng-ust destructor.
164 * Signal-safe.
165 */
166 void ust_lock_nocheck(void)
167 {
168 sigset_t sig_all_blocked, orig_mask;
169 int ret, oldstate;
170
171 ret = pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &oldstate);
172 if (ret) {
173 ERR("pthread_setcancelstate: %s", strerror(ret));
174 }
175 if (oldstate != PTHREAD_CANCEL_ENABLE) {
176 ERR("pthread_setcancelstate: unexpected oldstate");
177 }
178 sigfillset(&sig_all_blocked);
179 ret = pthread_sigmask(SIG_SETMASK, &sig_all_blocked, &orig_mask);
180 if (ret) {
181 ERR("pthread_sigmask: %s", strerror(ret));
182 }
183 if (!URCU_TLS(ust_mutex_nest)++)
184 pthread_mutex_lock(&ust_mutex);
185 ret = pthread_sigmask(SIG_SETMASK, &orig_mask, NULL);
186 if (ret) {
187 ERR("pthread_sigmask: %s", strerror(ret));
188 }
189 }
190
191 /*
192 * Signal-safe.
193 */
194 void ust_unlock(void)
195 {
196 sigset_t sig_all_blocked, orig_mask;
197 int ret, oldstate;
198
199 sigfillset(&sig_all_blocked);
200 ret = pthread_sigmask(SIG_SETMASK, &sig_all_blocked, &orig_mask);
201 if (ret) {
202 ERR("pthread_sigmask: %s", strerror(ret));
203 }
204 if (!--URCU_TLS(ust_mutex_nest))
205 pthread_mutex_unlock(&ust_mutex);
206 ret = pthread_sigmask(SIG_SETMASK, &orig_mask, NULL);
207 if (ret) {
208 ERR("pthread_sigmask: %s", strerror(ret));
209 }
210 ret = pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, &oldstate);
211 if (ret) {
212 ERR("pthread_setcancelstate: %s", strerror(ret));
213 }
214 if (oldstate != PTHREAD_CANCEL_DISABLE) {
215 ERR("pthread_setcancelstate: unexpected oldstate");
216 }
217 }
218
219 /*
220 * Wait for either of these before continuing to the main
221 * program:
222 * - the register_done message from sessiond daemon
223 * (will let the sessiond daemon enable sessions before main
224 * starts.)
225 * - sessiond daemon is not reachable.
226 * - timeout (ensuring applications are resilient to session
227 * daemon problems).
228 */
229 static sem_t constructor_wait;
230 /*
231 * Doing this for both the global and local sessiond.
232 */
233 enum {
234 sem_count_initial_value = 4,
235 };
236
237 static int sem_count = sem_count_initial_value;
238
239 /*
240 * Counting nesting within lttng-ust. Used to ensure that calling fork()
241 * from liblttng-ust does not execute the pre/post fork handlers.
242 */
243 static DEFINE_URCU_TLS(int, lttng_ust_nest_count);
244
245 /*
246 * Info about socket and associated listener thread.
247 */
248 struct sock_info {
249 const char *name;
250 pthread_t ust_listener; /* listener thread */
251 int root_handle;
252 int registration_done;
253 int allowed;
254 int global;
255 int thread_active;
256
257 char sock_path[PATH_MAX];
258 int socket;
259 int notify_socket;
260
261 char wait_shm_path[PATH_MAX];
262 char *wait_shm_mmap;
263 /* Keep track of lazy state dump not performed yet. */
264 int statedump_pending;
265 int initial_statedump_done;
266 /* Keep procname for statedump */
267 char procname[LTTNG_UST_PROCNAME_LEN];
268 };
269
270 /* Socket from app (connect) to session daemon (listen) for communication */
271 struct sock_info global_apps = {
272 .name = "global",
273 .global = 1,
274
275 .root_handle = -1,
276 .registration_done = 0,
277 .allowed = 0,
278 .thread_active = 0,
279
280 .sock_path = LTTNG_DEFAULT_RUNDIR "/" LTTNG_UST_SOCK_FILENAME,
281 .socket = -1,
282 .notify_socket = -1,
283
284 .wait_shm_path = "/" LTTNG_UST_WAIT_FILENAME,
285
286 .statedump_pending = 0,
287 .initial_statedump_done = 0,
288 .procname[0] = '\0'
289 };
290
291 /* TODO: allow global_apps_sock_path override */
292
293 struct sock_info local_apps = {
294 .name = "local",
295 .global = 0,
296 .root_handle = -1,
297 .registration_done = 0,
298 .allowed = 0, /* Check setuid bit first */
299 .thread_active = 0,
300
301 .socket = -1,
302 .notify_socket = -1,
303
304 .statedump_pending = 0,
305 .initial_statedump_done = 0,
306 .procname[0] = '\0'
307 };
308
309 static int wait_poll_fallback;
310
311 static const char *cmd_name_mapping[] = {
312 [ LTTNG_UST_RELEASE ] = "Release",
313 [ LTTNG_UST_SESSION ] = "Create Session",
314 [ LTTNG_UST_TRACER_VERSION ] = "Get Tracer Version",
315
316 [ LTTNG_UST_TRACEPOINT_LIST ] = "Create Tracepoint List",
317 [ LTTNG_UST_WAIT_QUIESCENT ] = "Wait for Quiescent State",
318 [ LTTNG_UST_REGISTER_DONE ] = "Registration Done",
319 [ LTTNG_UST_TRACEPOINT_FIELD_LIST ] = "Create Tracepoint Field List",
320
321 /* Session FD commands */
322 [ LTTNG_UST_CHANNEL ] = "Create Channel",
323 [ LTTNG_UST_SESSION_START ] = "Start Session",
324 [ LTTNG_UST_SESSION_STOP ] = "Stop Session",
325
326 /* Channel FD commands */
327 [ LTTNG_UST_STREAM ] = "Create Stream",
328 [ LTTNG_UST_EVENT ] = "Create Event",
329
330 /* Event and Channel FD commands */
331 [ LTTNG_UST_CONTEXT ] = "Create Context",
332 [ LTTNG_UST_FLUSH_BUFFER ] = "Flush Buffer",
333
334 /* Event, Channel and Session commands */
335 [ LTTNG_UST_ENABLE ] = "Enable",
336 [ LTTNG_UST_DISABLE ] = "Disable",
337
338 /* Tracepoint list commands */
339 [ LTTNG_UST_TRACEPOINT_LIST_GET ] = "List Next Tracepoint",
340 [ LTTNG_UST_TRACEPOINT_FIELD_LIST_GET ] = "List Next Tracepoint Field",
341
342 /* Event FD commands */
343 [ LTTNG_UST_FILTER ] = "Create Filter",
344 [ LTTNG_UST_EXCLUSION ] = "Add exclusions to event",
345 };
346
347 static const char *str_timeout;
348 static int got_timeout_env;
349
350 extern void lttng_ring_buffer_client_overwrite_init(void);
351 extern void lttng_ring_buffer_client_overwrite_rt_init(void);
352 extern void lttng_ring_buffer_client_discard_init(void);
353 extern void lttng_ring_buffer_client_discard_rt_init(void);
354 extern void lttng_ring_buffer_metadata_client_init(void);
355 extern void lttng_ring_buffer_client_overwrite_exit(void);
356 extern void lttng_ring_buffer_client_overwrite_rt_exit(void);
357 extern void lttng_ring_buffer_client_discard_exit(void);
358 extern void lttng_ring_buffer_client_discard_rt_exit(void);
359 extern void lttng_ring_buffer_metadata_client_exit(void);
360
361 static char *get_map_shm(struct sock_info *sock_info);
362
363 ssize_t lttng_ust_read(int fd, void *buf, size_t len)
364 {
365 ssize_t ret;
366 size_t copied = 0, to_copy = len;
367
368 do {
369 ret = read(fd, buf + copied, to_copy);
370 if (ret > 0) {
371 copied += ret;
372 to_copy -= ret;
373 }
374 } while ((ret > 0 && to_copy > 0)
375 || (ret < 0 && errno == EINTR));
376 if (ret > 0) {
377 ret = copied;
378 }
379 return ret;
380 }
381 /*
382 * Returns the HOME directory path. Caller MUST NOT free(3) the returned
383 * pointer.
384 */
385 static
386 const char *get_lttng_home_dir(void)
387 {
388 const char *val;
389
390 val = (const char *) lttng_getenv("LTTNG_HOME");
391 if (val != NULL) {
392 return val;
393 }
394 return (const char *) lttng_getenv("HOME");
395 }
396
397 /*
398 * Force a read (imply TLS fixup for dlopen) of TLS variables.
399 */
400 static
401 void lttng_fixup_nest_count_tls(void)
402 {
403 asm volatile ("" : : "m" (URCU_TLS(lttng_ust_nest_count)));
404 }
405
406 static
407 void lttng_fixup_ust_mutex_nest_tls(void)
408 {
409 asm volatile ("" : : "m" (URCU_TLS(ust_mutex_nest)));
410 }
411
412 /*
413 * Fixup urcu bp TLS.
414 */
415 static
416 void lttng_fixup_urcu_bp_tls(void)
417 {
418 rcu_read_lock();
419 rcu_read_unlock();
420 }
421
422 void lttng_ust_fixup_tls(void)
423 {
424 lttng_fixup_urcu_bp_tls();
425 lttng_fixup_ringbuffer_tls();
426 lttng_fixup_vtid_tls();
427 lttng_fixup_nest_count_tls();
428 lttng_fixup_procname_tls();
429 lttng_fixup_ust_mutex_nest_tls();
430 lttng_ust_fixup_perf_counter_tls();
431 lttng_ust_fixup_fd_tracker_tls();
432 lttng_fixup_cgroup_ns_tls();
433 lttng_fixup_ipc_ns_tls();
434 lttng_fixup_net_ns_tls();
435 lttng_fixup_uts_ns_tls();
436 }
437
438 int lttng_get_notify_socket(void *owner)
439 {
440 struct sock_info *info = owner;
441
442 return info->notify_socket;
443 }
444
445
446 LTTNG_HIDDEN
447 char* lttng_ust_sockinfo_get_procname(void *owner)
448 {
449 struct sock_info *info = owner;
450
451 return info->procname;
452 }
453
454 static
455 void print_cmd(int cmd, int handle)
456 {
457 const char *cmd_name = "Unknown";
458
459 if (cmd >= 0 && cmd < LTTNG_ARRAY_SIZE(cmd_name_mapping)
460 && cmd_name_mapping[cmd]) {
461 cmd_name = cmd_name_mapping[cmd];
462 }
463 DBG("Message Received \"%s\" (%d), Handle \"%s\" (%d)",
464 cmd_name, cmd,
465 lttng_ust_obj_get_name(handle), handle);
466 }
467
468 static
469 int setup_global_apps(void)
470 {
471 int ret = 0;
472 assert(!global_apps.wait_shm_mmap);
473
474 global_apps.wait_shm_mmap = get_map_shm(&global_apps);
475 if (!global_apps.wait_shm_mmap) {
476 WARN("Unable to get map shm for global apps. Disabling LTTng-UST global tracing.");
477 global_apps.allowed = 0;
478 ret = -EIO;
479 goto error;
480 }
481
482 global_apps.allowed = 1;
483 lttng_ust_getprocname(global_apps.procname);
484 error:
485 return ret;
486 }
487 static
488 int setup_local_apps(void)
489 {
490 int ret = 0;
491 const char *home_dir;
492 uid_t uid;
493
494 assert(!local_apps.wait_shm_mmap);
495
496 uid = getuid();
497 /*
498 * Disallow per-user tracing for setuid binaries.
499 */
500 if (uid != geteuid()) {
501 assert(local_apps.allowed == 0);
502 ret = 0;
503 goto end;
504 }
505 home_dir = get_lttng_home_dir();
506 if (!home_dir) {
507 WARN("HOME environment variable not set. Disabling LTTng-UST per-user tracing.");
508 assert(local_apps.allowed == 0);
509 ret = -ENOENT;
510 goto end;
511 }
512 local_apps.allowed = 1;
513 snprintf(local_apps.sock_path, PATH_MAX, "%s/%s/%s",
514 home_dir,
515 LTTNG_DEFAULT_HOME_RUNDIR,
516 LTTNG_UST_SOCK_FILENAME);
517 snprintf(local_apps.wait_shm_path, PATH_MAX, "/%s-%u",
518 LTTNG_UST_WAIT_FILENAME,
519 uid);
520
521 local_apps.wait_shm_mmap = get_map_shm(&local_apps);
522 if (!local_apps.wait_shm_mmap) {
523 WARN("Unable to get map shm for local apps. Disabling LTTng-UST per-user tracing.");
524 local_apps.allowed = 0;
525 ret = -EIO;
526 goto end;
527 }
528
529 lttng_ust_getprocname(local_apps.procname);
530 end:
531 return ret;
532 }
533
534 /*
535 * Get socket timeout, in ms.
536 * -1: wait forever. 0: don't wait. >0: timeout, in ms.
537 */
538 static
539 long get_timeout(void)
540 {
541 long constructor_delay_ms = LTTNG_UST_DEFAULT_CONSTRUCTOR_TIMEOUT_MS;
542
543 if (!got_timeout_env) {
544 str_timeout = lttng_getenv("LTTNG_UST_REGISTER_TIMEOUT");
545 got_timeout_env = 1;
546 }
547 if (str_timeout)
548 constructor_delay_ms = strtol(str_timeout, NULL, 10);
549 /* All negative values are considered as "-1". */
550 if (constructor_delay_ms < -1)
551 constructor_delay_ms = -1;
552 return constructor_delay_ms;
553 }
554
555 /* Timeout for notify socket send and recv. */
556 static
557 long get_notify_sock_timeout(void)
558 {
559 return get_timeout();
560 }
561
562 /* Timeout for connecting to cmd and notify sockets. */
563 static
564 long get_connect_sock_timeout(void)
565 {
566 return get_timeout();
567 }
568
569 /*
570 * Return values: -1: wait forever. 0: don't wait. 1: timeout wait.
571 */
572 static
573 int get_constructor_timeout(struct timespec *constructor_timeout)
574 {
575 long constructor_delay_ms;
576 int ret;
577
578 constructor_delay_ms = get_timeout();
579
580 switch (constructor_delay_ms) {
581 case -1:/* fall-through */
582 case 0:
583 return constructor_delay_ms;
584 default:
585 break;
586 }
587
588 /*
589 * If we are unable to find the current time, don't wait.
590 */
591 ret = clock_gettime(CLOCK_REALTIME, constructor_timeout);
592 if (ret) {
593 /* Don't wait. */
594 return 0;
595 }
596 constructor_timeout->tv_sec += constructor_delay_ms / 1000UL;
597 constructor_timeout->tv_nsec +=
598 (constructor_delay_ms % 1000UL) * 1000000UL;
599 if (constructor_timeout->tv_nsec >= 1000000000UL) {
600 constructor_timeout->tv_sec++;
601 constructor_timeout->tv_nsec -= 1000000000UL;
602 }
603 /* Timeout wait (constructor_delay_ms). */
604 return 1;
605 }
606
607 static
608 void get_allow_blocking(void)
609 {
610 const char *str_allow_blocking =
611 lttng_getenv("LTTNG_UST_ALLOW_BLOCKING");
612
613 if (str_allow_blocking) {
614 DBG("%s environment variable is set",
615 "LTTNG_UST_ALLOW_BLOCKING");
616 lttng_ust_ringbuffer_set_allow_blocking();
617 }
618 }
619
620 static
621 int register_to_sessiond(int socket, enum ustctl_socket_type type)
622 {
623 return ustcomm_send_reg_msg(socket,
624 type,
625 CAA_BITS_PER_LONG,
626 lttng_alignof(uint8_t) * CHAR_BIT,
627 lttng_alignof(uint16_t) * CHAR_BIT,
628 lttng_alignof(uint32_t) * CHAR_BIT,
629 lttng_alignof(uint64_t) * CHAR_BIT,
630 lttng_alignof(unsigned long) * CHAR_BIT);
631 }
632
633 static
634 int send_reply(int sock, struct ustcomm_ust_reply *lur)
635 {
636 ssize_t len;
637
638 len = ustcomm_send_unix_sock(sock, lur, sizeof(*lur));
639 switch (len) {
640 case sizeof(*lur):
641 DBG("message successfully sent");
642 return 0;
643 default:
644 if (len == -ECONNRESET) {
645 DBG("remote end closed connection");
646 return 0;
647 }
648 if (len < 0)
649 return len;
650 DBG("incorrect message size: %zd", len);
651 return -EINVAL;
652 }
653 }
654
655 static
656 void decrement_sem_count(unsigned int count)
657 {
658 int ret;
659
660 assert(uatomic_read(&sem_count) >= count);
661
662 if (uatomic_read(&sem_count) <= 0) {
663 return;
664 }
665
666 ret = uatomic_add_return(&sem_count, -count);
667 if (ret == 0) {
668 ret = sem_post(&constructor_wait);
669 assert(!ret);
670 }
671 }
672
673 static
674 int handle_register_done(struct sock_info *sock_info)
675 {
676 if (sock_info->registration_done)
677 return 0;
678 sock_info->registration_done = 1;
679
680 decrement_sem_count(1);
681 if (!sock_info->statedump_pending) {
682 sock_info->initial_statedump_done = 1;
683 decrement_sem_count(1);
684 }
685
686 return 0;
687 }
688
689 static
690 int handle_register_failed(struct sock_info *sock_info)
691 {
692 if (sock_info->registration_done)
693 return 0;
694 sock_info->registration_done = 1;
695 sock_info->initial_statedump_done = 1;
696
697 decrement_sem_count(2);
698
699 return 0;
700 }
701
702 /*
703 * Only execute pending statedump after the constructor semaphore has
704 * been posted by the current listener thread. This means statedump will
705 * only be performed after the "registration done" command is received
706 * from this thread's session daemon.
707 *
708 * This ensures we don't run into deadlock issues with the dynamic
709 * loader mutex, which is held while the constructor is called and
710 * waiting on the constructor semaphore. All operations requiring this
711 * dynamic loader lock need to be postponed using this mechanism.
712 *
713 * In a scenario with two session daemons connected to the application,
714 * it is possible that the first listener thread which receives the
715 * registration done command issues its statedump while the dynamic
716 * loader lock is still held by the application constructor waiting on
717 * the semaphore. It will however be allowed to proceed when the
718 * second session daemon sends the registration done command to the
719 * second listener thread. This situation therefore does not produce
720 * a deadlock.
721 */
722 static
723 void handle_pending_statedump(struct sock_info *sock_info)
724 {
725 if (sock_info->registration_done && sock_info->statedump_pending) {
726 sock_info->statedump_pending = 0;
727 pthread_mutex_lock(&ust_fork_mutex);
728 lttng_handle_pending_statedump(sock_info);
729 pthread_mutex_unlock(&ust_fork_mutex);
730
731 if (!sock_info->initial_statedump_done) {
732 sock_info->initial_statedump_done = 1;
733 decrement_sem_count(1);
734 }
735 }
736 }
737
738 static
739 int handle_message(struct sock_info *sock_info,
740 int sock, struct ustcomm_ust_msg *lum)
741 {
742 int ret = 0;
743 const struct lttng_ust_objd_ops *ops;
744 struct ustcomm_ust_reply lur;
745 union ust_args args;
746 char ctxstr[LTTNG_UST_SYM_NAME_LEN]; /* App context string. */
747 ssize_t len;
748
749 memset(&lur, 0, sizeof(lur));
750
751 if (ust_lock()) {
752 ret = -LTTNG_UST_ERR_EXITING;
753 goto error;
754 }
755
756 ops = objd_ops(lum->handle);
757 if (!ops) {
758 ret = -ENOENT;
759 goto error;
760 }
761
762 switch (lum->cmd) {
763 case LTTNG_UST_REGISTER_DONE:
764 if (lum->handle == LTTNG_UST_ROOT_HANDLE)
765 ret = handle_register_done(sock_info);
766 else
767 ret = -EINVAL;
768 break;
769 case LTTNG_UST_RELEASE:
770 if (lum->handle == LTTNG_UST_ROOT_HANDLE)
771 ret = -EPERM;
772 else
773 ret = lttng_ust_objd_unref(lum->handle, 1);
774 break;
775 case LTTNG_UST_FILTER:
776 {
777 /* Receive filter data */
778 struct lttng_ust_filter_bytecode_node *bytecode;
779
780 if (lum->u.filter.data_size > FILTER_BYTECODE_MAX_LEN) {
781 ERR("Filter data size is too large: %u bytes",
782 lum->u.filter.data_size);
783 ret = -EINVAL;
784 goto error;
785 }
786
787 if (lum->u.filter.reloc_offset > lum->u.filter.data_size) {
788 ERR("Filter reloc offset %u is not within data",
789 lum->u.filter.reloc_offset);
790 ret = -EINVAL;
791 goto error;
792 }
793
794 bytecode = zmalloc(sizeof(*bytecode) + lum->u.filter.data_size);
795 if (!bytecode) {
796 ret = -ENOMEM;
797 goto error;
798 }
799 len = ustcomm_recv_unix_sock(sock, bytecode->bc.data,
800 lum->u.filter.data_size);
801 switch (len) {
802 case 0: /* orderly shutdown */
803 ret = 0;
804 free(bytecode);
805 goto error;
806 default:
807 if (len == lum->u.filter.data_size) {
808 DBG("filter data received");
809 break;
810 } else if (len < 0) {
811 DBG("Receive failed from lttng-sessiond with errno %d", (int) -len);
812 if (len == -ECONNRESET) {
813 ERR("%s remote end closed connection", sock_info->name);
814 ret = len;
815 free(bytecode);
816 goto error;
817 }
818 ret = len;
819 free(bytecode);
820 goto error;
821 } else {
822 DBG("incorrect filter data message size: %zd", len);
823 ret = -EINVAL;
824 free(bytecode);
825 goto error;
826 }
827 }
828 bytecode->bc.len = lum->u.filter.data_size;
829 bytecode->bc.reloc_offset = lum->u.filter.reloc_offset;
830 bytecode->bc.seqnum = lum->u.filter.seqnum;
831 if (ops->cmd) {
832 ret = ops->cmd(lum->handle, lum->cmd,
833 (unsigned long) bytecode,
834 &args, sock_info);
835 if (ret) {
836 free(bytecode);
837 }
838 /* don't free bytecode if everything went fine. */
839 } else {
840 ret = -ENOSYS;
841 free(bytecode);
842 }
843 break;
844 }
845 case LTTNG_UST_EXCLUSION:
846 {
847 /* Receive exclusion names */
848 struct lttng_ust_excluder_node *node;
849 unsigned int count;
850
851 count = lum->u.exclusion.count;
852 if (count == 0) {
853 /* There are no names to read */
854 ret = 0;
855 goto error;
856 }
857 node = zmalloc(sizeof(*node) +
858 count * LTTNG_UST_SYM_NAME_LEN);
859 if (!node) {
860 ret = -ENOMEM;
861 goto error;
862 }
863 node->excluder.count = count;
864 len = ustcomm_recv_unix_sock(sock, node->excluder.names,
865 count * LTTNG_UST_SYM_NAME_LEN);
866 switch (len) {
867 case 0: /* orderly shutdown */
868 ret = 0;
869 free(node);
870 goto error;
871 default:
872 if (len == count * LTTNG_UST_SYM_NAME_LEN) {
873 DBG("Exclusion data received");
874 break;
875 } else if (len < 0) {
876 DBG("Receive failed from lttng-sessiond with errno %d", (int) -len);
877 if (len == -ECONNRESET) {
878 ERR("%s remote end closed connection", sock_info->name);
879 ret = len;
880 free(node);
881 goto error;
882 }
883 ret = len;
884 free(node);
885 goto error;
886 } else {
887 DBG("Incorrect exclusion data message size: %zd", len);
888 ret = -EINVAL;
889 free(node);
890 goto error;
891 }
892 }
893 if (ops->cmd) {
894 ret = ops->cmd(lum->handle, lum->cmd,
895 (unsigned long) node,
896 &args, sock_info);
897 if (ret) {
898 free(node);
899 }
900 /* Don't free exclusion data if everything went fine. */
901 } else {
902 ret = -ENOSYS;
903 free(node);
904 }
905 break;
906 }
907 case LTTNG_UST_CHANNEL:
908 {
909 void *chan_data;
910 int wakeup_fd;
911
912 len = ustcomm_recv_channel_from_sessiond(sock,
913 &chan_data, lum->u.channel.len,
914 &wakeup_fd);
915 switch (len) {
916 case 0: /* orderly shutdown */
917 ret = 0;
918 goto error;
919 default:
920 if (len == lum->u.channel.len) {
921 DBG("channel data received");
922 break;
923 } else if (len < 0) {
924 DBG("Receive failed from lttng-sessiond with errno %d", (int) -len);
925 if (len == -ECONNRESET) {
926 ERR("%s remote end closed connection", sock_info->name);
927 ret = len;
928 goto error;
929 }
930 ret = len;
931 goto error;
932 } else {
933 DBG("incorrect channel data message size: %zd", len);
934 ret = -EINVAL;
935 goto error;
936 }
937 }
938 args.channel.chan_data = chan_data;
939 args.channel.wakeup_fd = wakeup_fd;
940 if (ops->cmd)
941 ret = ops->cmd(lum->handle, lum->cmd,
942 (unsigned long) &lum->u,
943 &args, sock_info);
944 else
945 ret = -ENOSYS;
946 if (args.channel.wakeup_fd >= 0) {
947 int close_ret;
948
949 lttng_ust_lock_fd_tracker();
950 close_ret = close(args.channel.wakeup_fd);
951 lttng_ust_unlock_fd_tracker();
952 args.channel.wakeup_fd = -1;
953 if (close_ret)
954 PERROR("close");
955 }
956 free(args.channel.chan_data);
957 break;
958 }
959 case LTTNG_UST_STREAM:
960 {
961 int close_ret;
962
963 /* Receive shm_fd, wakeup_fd */
964 ret = ustcomm_recv_stream_from_sessiond(sock,
965 NULL,
966 &args.stream.shm_fd,
967 &args.stream.wakeup_fd);
968 if (ret) {
969 goto error;
970 }
971
972 if (ops->cmd)
973 ret = ops->cmd(lum->handle, lum->cmd,
974 (unsigned long) &lum->u,
975 &args, sock_info);
976 else
977 ret = -ENOSYS;
978 if (args.stream.shm_fd >= 0) {
979 lttng_ust_lock_fd_tracker();
980 close_ret = close(args.stream.shm_fd);
981 lttng_ust_unlock_fd_tracker();
982 args.stream.shm_fd = -1;
983 if (close_ret)
984 PERROR("close");
985 }
986 if (args.stream.wakeup_fd >= 0) {
987 lttng_ust_lock_fd_tracker();
988 close_ret = close(args.stream.wakeup_fd);
989 lttng_ust_unlock_fd_tracker();
990 args.stream.wakeup_fd = -1;
991 if (close_ret)
992 PERROR("close");
993 }
994 break;
995 }
996 case LTTNG_UST_CONTEXT:
997 switch (lum->u.context.ctx) {
998 case LTTNG_UST_CONTEXT_APP_CONTEXT:
999 {
1000 char *p;
1001 size_t ctxlen, recvlen;
1002
1003 ctxlen = strlen("$app.") + lum->u.context.u.app_ctx.provider_name_len - 1
1004 + strlen(":") + lum->u.context.u.app_ctx.ctx_name_len;
1005 if (ctxlen >= LTTNG_UST_SYM_NAME_LEN) {
1006 ERR("Application context string length size is too large: %zu bytes",
1007 ctxlen);
1008 ret = -EINVAL;
1009 goto error;
1010 }
1011 strcpy(ctxstr, "$app.");
1012 p = &ctxstr[strlen("$app.")];
1013 recvlen = ctxlen - strlen("$app.");
1014 len = ustcomm_recv_unix_sock(sock, p, recvlen);
1015 switch (len) {
1016 case 0: /* orderly shutdown */
1017 ret = 0;
1018 goto error;
1019 default:
1020 if (len == recvlen) {
1021 DBG("app context data received");
1022 break;
1023 } else if (len < 0) {
1024 DBG("Receive failed from lttng-sessiond with errno %d", (int) -len);
1025 if (len == -ECONNRESET) {
1026 ERR("%s remote end closed connection", sock_info->name);
1027 ret = len;
1028 goto error;
1029 }
1030 ret = len;
1031 goto error;
1032 } else {
1033 DBG("incorrect app context data message size: %zd", len);
1034 ret = -EINVAL;
1035 goto error;
1036 }
1037 }
1038 /* Put : between provider and ctxname. */
1039 p[lum->u.context.u.app_ctx.provider_name_len - 1] = ':';
1040 args.app_context.ctxname = ctxstr;
1041 break;
1042 }
1043 default:
1044 break;
1045 }
1046 if (ops->cmd) {
1047 ret = ops->cmd(lum->handle, lum->cmd,
1048 (unsigned long) &lum->u,
1049 &args, sock_info);
1050 } else {
1051 ret = -ENOSYS;
1052 }
1053 break;
1054 default:
1055 if (ops->cmd)
1056 ret = ops->cmd(lum->handle, lum->cmd,
1057 (unsigned long) &lum->u,
1058 &args, sock_info);
1059 else
1060 ret = -ENOSYS;
1061 break;
1062 }
1063
1064 lur.handle = lum->handle;
1065 lur.cmd = lum->cmd;
1066 lur.ret_val = ret;
1067 if (ret >= 0) {
1068 lur.ret_code = LTTNG_UST_OK;
1069 } else {
1070 /*
1071 * Use -LTTNG_UST_ERR as wildcard for UST internal
1072 * error that are not caused by the transport, except if
1073 * we already have a more precise error message to
1074 * report.
1075 */
1076 if (ret > -LTTNG_UST_ERR) {
1077 /* Translate code to UST error. */
1078 switch (ret) {
1079 case -EEXIST:
1080 lur.ret_code = -LTTNG_UST_ERR_EXIST;
1081 break;
1082 case -EINVAL:
1083 lur.ret_code = -LTTNG_UST_ERR_INVAL;
1084 break;
1085 case -ENOENT:
1086 lur.ret_code = -LTTNG_UST_ERR_NOENT;
1087 break;
1088 case -EPERM:
1089 lur.ret_code = -LTTNG_UST_ERR_PERM;
1090 break;
1091 case -ENOSYS:
1092 lur.ret_code = -LTTNG_UST_ERR_NOSYS;
1093 break;
1094 default:
1095 lur.ret_code = -LTTNG_UST_ERR;
1096 break;
1097 }
1098 } else {
1099 lur.ret_code = ret;
1100 }
1101 }
1102 if (ret >= 0) {
1103 switch (lum->cmd) {
1104 case LTTNG_UST_TRACER_VERSION:
1105 lur.u.version = lum->u.version;
1106 break;
1107 case LTTNG_UST_TRACEPOINT_LIST_GET:
1108 memcpy(&lur.u.tracepoint, &lum->u.tracepoint, sizeof(lur.u.tracepoint));
1109 break;
1110 }
1111 }
1112 DBG("Return value: %d", lur.ret_val);
1113
1114 ust_unlock();
1115
1116 /*
1117 * Performed delayed statedump operations outside of the UST
1118 * lock. We need to take the dynamic loader lock before we take
1119 * the UST lock internally within handle_pending_statedump().
1120 */
1121 handle_pending_statedump(sock_info);
1122
1123 if (ust_lock()) {
1124 ret = -LTTNG_UST_ERR_EXITING;
1125 goto error;
1126 }
1127
1128 ret = send_reply(sock, &lur);
1129 if (ret < 0) {
1130 DBG("error sending reply");
1131 goto error;
1132 }
1133
1134 /*
1135 * LTTNG_UST_TRACEPOINT_FIELD_LIST_GET needs to send the field
1136 * after the reply.
1137 */
1138 if (lur.ret_code == LTTNG_UST_OK) {
1139 switch (lum->cmd) {
1140 case LTTNG_UST_TRACEPOINT_FIELD_LIST_GET:
1141 len = ustcomm_send_unix_sock(sock,
1142 &args.field_list.entry,
1143 sizeof(args.field_list.entry));
1144 if (len < 0) {
1145 ret = len;
1146 goto error;
1147 }
1148 if (len != sizeof(args.field_list.entry)) {
1149 ret = -EINVAL;
1150 goto error;
1151 }
1152 }
1153 }
1154
1155 error:
1156 ust_unlock();
1157
1158 return ret;
1159 }
1160
1161 static
1162 void cleanup_sock_info(struct sock_info *sock_info, int exiting)
1163 {
1164 int ret;
1165
1166 if (sock_info->root_handle != -1) {
1167 ret = lttng_ust_objd_unref(sock_info->root_handle, 1);
1168 if (ret) {
1169 ERR("Error unref root handle");
1170 }
1171 sock_info->root_handle = -1;
1172 }
1173
1174
1175 /*
1176 * wait_shm_mmap, socket and notify socket are used by listener
1177 * threads outside of the ust lock, so we cannot tear them down
1178 * ourselves, because we cannot join on these threads. Leave
1179 * responsibility of cleaning up these resources to the OS
1180 * process exit.
1181 */
1182 if (exiting)
1183 return;
1184
1185 sock_info->registration_done = 0;
1186 sock_info->initial_statedump_done = 0;
1187
1188 if (sock_info->socket != -1) {
1189 ret = ustcomm_close_unix_sock(sock_info->socket);
1190 if (ret) {
1191 ERR("Error closing ust cmd socket");
1192 }
1193 sock_info->socket = -1;
1194 }
1195 if (sock_info->notify_socket != -1) {
1196 ret = ustcomm_close_unix_sock(sock_info->notify_socket);
1197 if (ret) {
1198 ERR("Error closing ust notify socket");
1199 }
1200 sock_info->notify_socket = -1;
1201 }
1202 if (sock_info->wait_shm_mmap) {
1203 long page_size;
1204
1205 page_size = sysconf(_SC_PAGE_SIZE);
1206 if (page_size <= 0) {
1207 if (!page_size) {
1208 errno = EINVAL;
1209 }
1210 PERROR("Error in sysconf(_SC_PAGE_SIZE)");
1211 } else {
1212 ret = munmap(sock_info->wait_shm_mmap, page_size);
1213 if (ret) {
1214 ERR("Error unmapping wait shm");
1215 }
1216 }
1217 sock_info->wait_shm_mmap = NULL;
1218 }
1219 }
1220
1221 /*
1222 * Using fork to set umask in the child process (not multi-thread safe).
1223 * We deal with the shm_open vs ftruncate race (happening when the
1224 * sessiond owns the shm and does not let everybody modify it, to ensure
1225 * safety against shm_unlink) by simply letting the mmap fail and
1226 * retrying after a few seconds.
1227 * For global shm, everybody has rw access to it until the sessiond
1228 * starts.
1229 */
1230 static
1231 int get_wait_shm(struct sock_info *sock_info, size_t mmap_size)
1232 {
1233 int wait_shm_fd, ret;
1234 pid_t pid;
1235
1236 /*
1237 * Try to open read-only.
1238 */
1239 wait_shm_fd = shm_open(sock_info->wait_shm_path, O_RDONLY, 0);
1240 if (wait_shm_fd >= 0) {
1241 int32_t tmp_read;
1242 ssize_t len;
1243 size_t bytes_read = 0;
1244
1245 /*
1246 * Try to read the fd. If unable to do so, try opening
1247 * it in write mode.
1248 */
1249 do {
1250 len = read(wait_shm_fd,
1251 &((char *) &tmp_read)[bytes_read],
1252 sizeof(tmp_read) - bytes_read);
1253 if (len > 0) {
1254 bytes_read += len;
1255 }
1256 } while ((len < 0 && errno == EINTR)
1257 || (len > 0 && bytes_read < sizeof(tmp_read)));
1258 if (bytes_read != sizeof(tmp_read)) {
1259 ret = close(wait_shm_fd);
1260 if (ret) {
1261 ERR("close wait_shm_fd");
1262 }
1263 goto open_write;
1264 }
1265 goto end;
1266 } else if (wait_shm_fd < 0 && errno != ENOENT) {
1267 /*
1268 * Real-only open did not work, and it's not because the
1269 * entry was not present. It's a failure that prohibits
1270 * using shm.
1271 */
1272 ERR("Error opening shm %s", sock_info->wait_shm_path);
1273 goto end;
1274 }
1275
1276 open_write:
1277 /*
1278 * If the open failed because the file did not exist, or because
1279 * the file was not truncated yet, try creating it ourself.
1280 */
1281 URCU_TLS(lttng_ust_nest_count)++;
1282 pid = fork();
1283 URCU_TLS(lttng_ust_nest_count)--;
1284 if (pid > 0) {
1285 int status;
1286
1287 /*
1288 * Parent: wait for child to return, in which case the
1289 * shared memory map will have been created.
1290 */
1291 pid = wait(&status);
1292 if (pid < 0 || !WIFEXITED(status) || WEXITSTATUS(status) != 0) {
1293 wait_shm_fd = -1;
1294 goto end;
1295 }
1296 /*
1297 * Try to open read-only again after creation.
1298 */
1299 wait_shm_fd = shm_open(sock_info->wait_shm_path, O_RDONLY, 0);
1300 if (wait_shm_fd < 0) {
1301 /*
1302 * Real-only open did not work. It's a failure
1303 * that prohibits using shm.
1304 */
1305 ERR("Error opening shm %s", sock_info->wait_shm_path);
1306 goto end;
1307 }
1308 goto end;
1309 } else if (pid == 0) {
1310 int create_mode;
1311
1312 /* Child */
1313 create_mode = S_IRUSR | S_IWUSR | S_IRGRP;
1314 if (sock_info->global)
1315 create_mode |= S_IROTH | S_IWGRP | S_IWOTH;
1316 /*
1317 * We're alone in a child process, so we can modify the
1318 * process-wide umask.
1319 */
1320 umask(~create_mode);
1321 /*
1322 * Try creating shm (or get rw access).
1323 * We don't do an exclusive open, because we allow other
1324 * processes to create+ftruncate it concurrently.
1325 */
1326 wait_shm_fd = shm_open(sock_info->wait_shm_path,
1327 O_RDWR | O_CREAT, create_mode);
1328 if (wait_shm_fd >= 0) {
1329 ret = ftruncate(wait_shm_fd, mmap_size);
1330 if (ret) {
1331 PERROR("ftruncate");
1332 _exit(EXIT_FAILURE);
1333 }
1334 _exit(EXIT_SUCCESS);
1335 }
1336 /*
1337 * For local shm, we need to have rw access to accept
1338 * opening it: this means the local sessiond will be
1339 * able to wake us up. For global shm, we open it even
1340 * if rw access is not granted, because the root.root
1341 * sessiond will be able to override all rights and wake
1342 * us up.
1343 */
1344 if (!sock_info->global && errno != EACCES) {
1345 ERR("Error opening shm %s", sock_info->wait_shm_path);
1346 _exit(EXIT_FAILURE);
1347 }
1348 /*
1349 * The shm exists, but we cannot open it RW. Report
1350 * success.
1351 */
1352 _exit(EXIT_SUCCESS);
1353 } else {
1354 return -1;
1355 }
1356 end:
1357 if (wait_shm_fd >= 0 && !sock_info->global) {
1358 struct stat statbuf;
1359
1360 /*
1361 * Ensure that our user is the owner of the shm file for
1362 * local shm. If we do not own the file, it means our
1363 * sessiond will not have access to wake us up (there is
1364 * probably a rogue process trying to fake our
1365 * sessiond). Fallback to polling method in this case.
1366 */
1367 ret = fstat(wait_shm_fd, &statbuf);
1368 if (ret) {
1369 PERROR("fstat");
1370 goto error_close;
1371 }
1372 if (statbuf.st_uid != getuid())
1373 goto error_close;
1374 }
1375 return wait_shm_fd;
1376
1377 error_close:
1378 ret = close(wait_shm_fd);
1379 if (ret) {
1380 PERROR("Error closing fd");
1381 }
1382 return -1;
1383 }
1384
1385 static
1386 char *get_map_shm(struct sock_info *sock_info)
1387 {
1388 long page_size;
1389 int wait_shm_fd, ret;
1390 char *wait_shm_mmap;
1391
1392 page_size = sysconf(_SC_PAGE_SIZE);
1393 if (page_size <= 0) {
1394 if (!page_size) {
1395 errno = EINVAL;
1396 }
1397 PERROR("Error in sysconf(_SC_PAGE_SIZE)");
1398 goto error;
1399 }
1400
1401 lttng_ust_lock_fd_tracker();
1402 wait_shm_fd = get_wait_shm(sock_info, page_size);
1403 if (wait_shm_fd < 0) {
1404 lttng_ust_unlock_fd_tracker();
1405 goto error;
1406 }
1407
1408 ret = lttng_ust_add_fd_to_tracker(wait_shm_fd);
1409 if (ret < 0) {
1410 ret = close(wait_shm_fd);
1411 if (!ret) {
1412 PERROR("Error closing fd");
1413 }
1414 lttng_ust_unlock_fd_tracker();
1415 goto error;
1416 }
1417
1418 wait_shm_fd = ret;
1419 lttng_ust_unlock_fd_tracker();
1420
1421 wait_shm_mmap = mmap(NULL, page_size, PROT_READ,
1422 MAP_SHARED, wait_shm_fd, 0);
1423
1424 /* close shm fd immediately after taking the mmap reference */
1425 lttng_ust_lock_fd_tracker();
1426 ret = close(wait_shm_fd);
1427 if (!ret) {
1428 lttng_ust_delete_fd_from_tracker(wait_shm_fd);
1429 } else {
1430 PERROR("Error closing fd");
1431 }
1432 lttng_ust_unlock_fd_tracker();
1433
1434 if (wait_shm_mmap == MAP_FAILED) {
1435 DBG("mmap error (can be caused by race with sessiond). Fallback to poll mode.");
1436 goto error;
1437 }
1438 return wait_shm_mmap;
1439
1440 error:
1441 return NULL;
1442 }
1443
1444 static
1445 void wait_for_sessiond(struct sock_info *sock_info)
1446 {
1447 /* Use ust_lock to check if we should quit. */
1448 if (ust_lock()) {
1449 goto quit;
1450 }
1451 if (wait_poll_fallback) {
1452 goto error;
1453 }
1454 ust_unlock();
1455
1456 assert(sock_info->wait_shm_mmap);
1457
1458 DBG("Waiting for %s apps sessiond", sock_info->name);
1459 /* Wait for futex wakeup */
1460 if (uatomic_read((int32_t *) sock_info->wait_shm_mmap))
1461 goto end_wait;
1462
1463 while (futex_async((int32_t *) sock_info->wait_shm_mmap,
1464 FUTEX_WAIT, 0, NULL, NULL, 0)) {
1465 switch (errno) {
1466 case EWOULDBLOCK:
1467 /* Value already changed. */
1468 goto end_wait;
1469 case EINTR:
1470 /* Retry if interrupted by signal. */
1471 break; /* Get out of switch. */
1472 case EFAULT:
1473 wait_poll_fallback = 1;
1474 DBG(
1475 "Linux kernels 2.6.33 to 3.0 (with the exception of stable versions) "
1476 "do not support FUTEX_WAKE on read-only memory mappings correctly. "
1477 "Please upgrade your kernel "
1478 "(fix is commit 9ea71503a8ed9184d2d0b8ccc4d269d05f7940ae in Linux kernel "
1479 "mainline). LTTng-UST will use polling mode fallback.");
1480 if (ust_debug())
1481 PERROR("futex");
1482 goto end_wait;
1483 }
1484 }
1485 end_wait:
1486 return;
1487
1488 quit:
1489 ust_unlock();
1490 return;
1491
1492 error:
1493 ust_unlock();
1494 return;
1495 }
1496
1497 /*
1498 * This thread does not allocate any resource, except within
1499 * handle_message, within mutex protection. This mutex protects against
1500 * fork and exit.
1501 * The other moment it allocates resources is at socket connection, which
1502 * is also protected by the mutex.
1503 */
1504 static
1505 void *ust_listener_thread(void *arg)
1506 {
1507 struct sock_info *sock_info = arg;
1508 int sock, ret, prev_connect_failed = 0, has_waited = 0, fd;
1509 long timeout;
1510
1511 lttng_ust_fixup_tls();
1512 /*
1513 * If available, add '-ust' to the end of this thread's
1514 * process name
1515 */
1516 ret = lttng_ust_setustprocname();
1517 if (ret) {
1518 ERR("Unable to set UST process name");
1519 }
1520
1521 /* Restart trying to connect to the session daemon */
1522 restart:
1523 if (prev_connect_failed) {
1524 /* Wait for sessiond availability with pipe */
1525 wait_for_sessiond(sock_info);
1526 if (has_waited) {
1527 has_waited = 0;
1528 /*
1529 * Sleep for 5 seconds before retrying after a
1530 * sequence of failure / wait / failure. This
1531 * deals with a killed or broken session daemon.
1532 */
1533 sleep(5);
1534 } else {
1535 has_waited = 1;
1536 }
1537 prev_connect_failed = 0;
1538 }
1539
1540 if (ust_lock()) {
1541 goto quit;
1542 }
1543
1544 if (sock_info->socket != -1) {
1545 /* FD tracker is updated by ustcomm_close_unix_sock() */
1546 ret = ustcomm_close_unix_sock(sock_info->socket);
1547 if (ret) {
1548 ERR("Error closing %s ust cmd socket",
1549 sock_info->name);
1550 }
1551 sock_info->socket = -1;
1552 }
1553 if (sock_info->notify_socket != -1) {
1554 /* FD tracker is updated by ustcomm_close_unix_sock() */
1555 ret = ustcomm_close_unix_sock(sock_info->notify_socket);
1556 if (ret) {
1557 ERR("Error closing %s ust notify socket",
1558 sock_info->name);
1559 }
1560 sock_info->notify_socket = -1;
1561 }
1562
1563
1564 /*
1565 * Register. We need to perform both connect and sending
1566 * registration message before doing the next connect otherwise
1567 * we may reach unix socket connect queue max limits and block
1568 * on the 2nd connect while the session daemon is awaiting the
1569 * first connect registration message.
1570 */
1571 /* Connect cmd socket */
1572 lttng_ust_lock_fd_tracker();
1573 ret = ustcomm_connect_unix_sock(sock_info->sock_path,
1574 get_connect_sock_timeout());
1575 if (ret < 0) {
1576 lttng_ust_unlock_fd_tracker();
1577 DBG("Info: sessiond not accepting connections to %s apps socket", sock_info->name);
1578 prev_connect_failed = 1;
1579
1580 /*
1581 * If we cannot find the sessiond daemon, don't delay
1582 * constructor execution.
1583 */
1584 ret = handle_register_failed(sock_info);
1585 assert(!ret);
1586 ust_unlock();
1587 goto restart;
1588 }
1589 fd = ret;
1590 ret = lttng_ust_add_fd_to_tracker(fd);
1591 if (ret < 0) {
1592 ret = close(fd);
1593 if (ret) {
1594 PERROR("close on sock_info->socket");
1595 }
1596 ret = -1;
1597 lttng_ust_unlock_fd_tracker();
1598 ust_unlock();
1599 goto quit;
1600 }
1601
1602 sock_info->socket = ret;
1603 lttng_ust_unlock_fd_tracker();
1604
1605 ust_unlock();
1606 /*
1607 * Unlock/relock ust lock because connect is blocking (with
1608 * timeout). Don't delay constructors on the ust lock for too
1609 * long.
1610 */
1611 if (ust_lock()) {
1612 goto quit;
1613 }
1614
1615 /*
1616 * Create only one root handle per listener thread for the whole
1617 * process lifetime, so we ensure we get ID which is statically
1618 * assigned to the root handle.
1619 */
1620 if (sock_info->root_handle == -1) {
1621 ret = lttng_abi_create_root_handle();
1622 if (ret < 0) {
1623 ERR("Error creating root handle");
1624 goto quit;
1625 }
1626 sock_info->root_handle = ret;
1627 }
1628
1629 ret = register_to_sessiond(sock_info->socket, USTCTL_SOCKET_CMD);
1630 if (ret < 0) {
1631 ERR("Error registering to %s ust cmd socket",
1632 sock_info->name);
1633 prev_connect_failed = 1;
1634 /*
1635 * If we cannot register to the sessiond daemon, don't
1636 * delay constructor execution.
1637 */
1638 ret = handle_register_failed(sock_info);
1639 assert(!ret);
1640 ust_unlock();
1641 goto restart;
1642 }
1643
1644 ust_unlock();
1645 /*
1646 * Unlock/relock ust lock because connect is blocking (with
1647 * timeout). Don't delay constructors on the ust lock for too
1648 * long.
1649 */
1650 if (ust_lock()) {
1651 goto quit;
1652 }
1653
1654 /* Connect notify socket */
1655 lttng_ust_lock_fd_tracker();
1656 ret = ustcomm_connect_unix_sock(sock_info->sock_path,
1657 get_connect_sock_timeout());
1658 if (ret < 0) {
1659 lttng_ust_unlock_fd_tracker();
1660 DBG("Info: sessiond not accepting connections to %s apps socket", sock_info->name);
1661 prev_connect_failed = 1;
1662
1663 /*
1664 * If we cannot find the sessiond daemon, don't delay
1665 * constructor execution.
1666 */
1667 ret = handle_register_failed(sock_info);
1668 assert(!ret);
1669 ust_unlock();
1670 goto restart;
1671 }
1672
1673 fd = ret;
1674 ret = lttng_ust_add_fd_to_tracker(fd);
1675 if (ret < 0) {
1676 ret = close(fd);
1677 if (ret) {
1678 PERROR("close on sock_info->notify_socket");
1679 }
1680 ret = -1;
1681 lttng_ust_unlock_fd_tracker();
1682 ust_unlock();
1683 goto quit;
1684 }
1685
1686 sock_info->notify_socket = ret;
1687 lttng_ust_unlock_fd_tracker();
1688
1689 ust_unlock();
1690 /*
1691 * Unlock/relock ust lock because connect is blocking (with
1692 * timeout). Don't delay constructors on the ust lock for too
1693 * long.
1694 */
1695 if (ust_lock()) {
1696 goto quit;
1697 }
1698
1699 timeout = get_notify_sock_timeout();
1700 if (timeout >= 0) {
1701 /*
1702 * Give at least 10ms to sessiond to reply to
1703 * notifications.
1704 */
1705 if (timeout < 10)
1706 timeout = 10;
1707 ret = ustcomm_setsockopt_rcv_timeout(sock_info->notify_socket,
1708 timeout);
1709 if (ret < 0) {
1710 WARN("Error setting socket receive timeout");
1711 }
1712 ret = ustcomm_setsockopt_snd_timeout(sock_info->notify_socket,
1713 timeout);
1714 if (ret < 0) {
1715 WARN("Error setting socket send timeout");
1716 }
1717 } else if (timeout < -1) {
1718 WARN("Unsupported timeout value %ld", timeout);
1719 }
1720
1721 ret = register_to_sessiond(sock_info->notify_socket,
1722 USTCTL_SOCKET_NOTIFY);
1723 if (ret < 0) {
1724 ERR("Error registering to %s ust notify socket",
1725 sock_info->name);
1726 prev_connect_failed = 1;
1727 /*
1728 * If we cannot register to the sessiond daemon, don't
1729 * delay constructor execution.
1730 */
1731 ret = handle_register_failed(sock_info);
1732 assert(!ret);
1733 ust_unlock();
1734 goto restart;
1735 }
1736 sock = sock_info->socket;
1737
1738 ust_unlock();
1739
1740 for (;;) {
1741 ssize_t len;
1742 struct ustcomm_ust_msg lum;
1743
1744 len = ustcomm_recv_unix_sock(sock, &lum, sizeof(lum));
1745 switch (len) {
1746 case 0: /* orderly shutdown */
1747 DBG("%s lttng-sessiond has performed an orderly shutdown", sock_info->name);
1748 if (ust_lock()) {
1749 goto quit;
1750 }
1751 /*
1752 * Either sessiond has shutdown or refused us by closing the socket.
1753 * In either case, we don't want to delay construction execution,
1754 * and we need to wait before retry.
1755 */
1756 prev_connect_failed = 1;
1757 /*
1758 * If we cannot register to the sessiond daemon, don't
1759 * delay constructor execution.
1760 */
1761 ret = handle_register_failed(sock_info);
1762 assert(!ret);
1763 ust_unlock();
1764 goto end;
1765 case sizeof(lum):
1766 print_cmd(lum.cmd, lum.handle);
1767 ret = handle_message(sock_info, sock, &lum);
1768 if (ret) {
1769 ERR("Error handling message for %s socket",
1770 sock_info->name);
1771 /*
1772 * Close socket if protocol error is
1773 * detected.
1774 */
1775 goto end;
1776 }
1777 continue;
1778 default:
1779 if (len < 0) {
1780 DBG("Receive failed from lttng-sessiond with errno %d", (int) -len);
1781 } else {
1782 DBG("incorrect message size (%s socket): %zd", sock_info->name, len);
1783 }
1784 if (len == -ECONNRESET) {
1785 DBG("%s remote end closed connection", sock_info->name);
1786 goto end;
1787 }
1788 goto end;
1789 }
1790
1791 }
1792 end:
1793 if (ust_lock()) {
1794 goto quit;
1795 }
1796 /* Cleanup socket handles before trying to reconnect */
1797 lttng_ust_objd_table_owner_cleanup(sock_info);
1798 ust_unlock();
1799 goto restart; /* try to reconnect */
1800
1801 quit:
1802 ust_unlock();
1803
1804 pthread_mutex_lock(&ust_exit_mutex);
1805 sock_info->thread_active = 0;
1806 pthread_mutex_unlock(&ust_exit_mutex);
1807 return NULL;
1808 }
1809
1810 /*
1811 * Weak symbol to call when the ust malloc wrapper is not loaded.
1812 */
1813 __attribute__((weak))
1814 void lttng_ust_malloc_wrapper_init(void)
1815 {
1816 }
1817
1818 /*
1819 * sessiond monitoring thread: monitor presence of global and per-user
1820 * sessiond by polling the application common named pipe.
1821 */
1822 void __attribute__((constructor)) lttng_ust_init(void)
1823 {
1824 struct timespec constructor_timeout;
1825 sigset_t sig_all_blocked, orig_parent_mask;
1826 pthread_attr_t thread_attr;
1827 int timeout_mode;
1828 int ret;
1829 void *handle;
1830
1831 if (uatomic_xchg(&initialized, 1) == 1)
1832 return;
1833
1834 /*
1835 * Fixup interdependency between TLS fixup mutex (which happens
1836 * to be the dynamic linker mutex) and ust_lock, taken within
1837 * the ust lock.
1838 */
1839 lttng_ust_fixup_tls();
1840
1841 lttng_ust_loaded = 1;
1842
1843 /*
1844 * We need to ensure that the liblttng-ust library is not unloaded to avoid
1845 * the unloading of code used by the ust_listener_threads as we can not
1846 * reliably know when they exited. To do that, manually load
1847 * liblttng-ust.so to increment the dynamic loader's internal refcount for
1848 * this library so it never becomes zero, thus never gets unloaded from the
1849 * address space of the process. Since we are already running in the
1850 * constructor of the LTTNG_UST_LIB_SO_NAME library, calling dlopen will
1851 * simply increment the refcount and no additionnal work is needed by the
1852 * dynamic loader as the shared library is already loaded in the address
1853 * space. As a safe guard, we use the RTLD_NODELETE flag to prevent
1854 * unloading of the UST library if its refcount becomes zero (which should
1855 * never happen). Do the return value check but discard the handle at the
1856 * end of the function as it's not needed.
1857 */
1858 handle = dlopen(LTTNG_UST_LIB_SO_NAME, RTLD_LAZY | RTLD_NODELETE);
1859 if (!handle) {
1860 ERR("dlopen of liblttng-ust shared library (%s).", LTTNG_UST_LIB_SO_NAME);
1861 }
1862
1863 /*
1864 * We want precise control over the order in which we construct
1865 * our sub-libraries vs starting to receive commands from
1866 * sessiond (otherwise leading to errors when trying to create
1867 * sessiond before the init functions are completed).
1868 */
1869 init_usterr();
1870 lttng_ust_getenv_init(); /* Needs init_usterr() to be completed. */
1871 init_tracepoint();
1872 lttng_ust_init_fd_tracker();
1873 lttng_ust_clock_init();
1874 lttng_ust_getcpu_init();
1875 lttng_ust_statedump_init();
1876 lttng_ring_buffer_metadata_client_init();
1877 lttng_ring_buffer_client_overwrite_init();
1878 lttng_ring_buffer_client_overwrite_rt_init();
1879 lttng_ring_buffer_client_discard_init();
1880 lttng_ring_buffer_client_discard_rt_init();
1881 lttng_perf_counter_init();
1882 /*
1883 * Invoke ust malloc wrapper init before starting other threads.
1884 */
1885 lttng_ust_malloc_wrapper_init();
1886
1887 timeout_mode = get_constructor_timeout(&constructor_timeout);
1888
1889 get_allow_blocking();
1890
1891 ret = sem_init(&constructor_wait, 0, 0);
1892 if (ret) {
1893 PERROR("sem_init");
1894 }
1895
1896 ret = setup_global_apps();
1897 if (ret) {
1898 assert(global_apps.allowed == 0);
1899 DBG("global apps setup returned %d", ret);
1900 }
1901
1902 ret = setup_local_apps();
1903 if (ret) {
1904 assert(local_apps.allowed == 0);
1905 DBG("local apps setup returned %d", ret);
1906 }
1907
1908 /* A new thread created by pthread_create inherits the signal mask
1909 * from the parent. To avoid any signal being received by the
1910 * listener thread, we block all signals temporarily in the parent,
1911 * while we create the listener thread.
1912 */
1913 sigfillset(&sig_all_blocked);
1914 ret = pthread_sigmask(SIG_SETMASK, &sig_all_blocked, &orig_parent_mask);
1915 if (ret) {
1916 ERR("pthread_sigmask: %s", strerror(ret));
1917 }
1918
1919 ret = pthread_attr_init(&thread_attr);
1920 if (ret) {
1921 ERR("pthread_attr_init: %s", strerror(ret));
1922 }
1923 ret = pthread_attr_setdetachstate(&thread_attr, PTHREAD_CREATE_DETACHED);
1924 if (ret) {
1925 ERR("pthread_attr_setdetachstate: %s", strerror(ret));
1926 }
1927
1928 if (global_apps.allowed) {
1929 pthread_mutex_lock(&ust_exit_mutex);
1930 ret = pthread_create(&global_apps.ust_listener, &thread_attr,
1931 ust_listener_thread, &global_apps);
1932 if (ret) {
1933 ERR("pthread_create global: %s", strerror(ret));
1934 }
1935 global_apps.thread_active = 1;
1936 pthread_mutex_unlock(&ust_exit_mutex);
1937 } else {
1938 handle_register_done(&global_apps);
1939 }
1940
1941 if (local_apps.allowed) {
1942 pthread_mutex_lock(&ust_exit_mutex);
1943 ret = pthread_create(&local_apps.ust_listener, &thread_attr,
1944 ust_listener_thread, &local_apps);
1945 if (ret) {
1946 ERR("pthread_create local: %s", strerror(ret));
1947 }
1948 local_apps.thread_active = 1;
1949 pthread_mutex_unlock(&ust_exit_mutex);
1950 } else {
1951 handle_register_done(&local_apps);
1952 }
1953 ret = pthread_attr_destroy(&thread_attr);
1954 if (ret) {
1955 ERR("pthread_attr_destroy: %s", strerror(ret));
1956 }
1957
1958 /* Restore original signal mask in parent */
1959 ret = pthread_sigmask(SIG_SETMASK, &orig_parent_mask, NULL);
1960 if (ret) {
1961 ERR("pthread_sigmask: %s", strerror(ret));
1962 }
1963
1964 switch (timeout_mode) {
1965 case 1: /* timeout wait */
1966 do {
1967 ret = sem_timedwait(&constructor_wait,
1968 &constructor_timeout);
1969 } while (ret < 0 && errno == EINTR);
1970 if (ret < 0) {
1971 switch (errno) {
1972 case ETIMEDOUT:
1973 ERR("Timed out waiting for lttng-sessiond");
1974 break;
1975 case EINVAL:
1976 PERROR("sem_timedwait");
1977 break;
1978 default:
1979 ERR("Unexpected error \"%s\" returned by sem_timedwait",
1980 strerror(errno));
1981 }
1982 }
1983 break;
1984 case -1:/* wait forever */
1985 do {
1986 ret = sem_wait(&constructor_wait);
1987 } while (ret < 0 && errno == EINTR);
1988 if (ret < 0) {
1989 switch (errno) {
1990 case EINVAL:
1991 PERROR("sem_wait");
1992 break;
1993 default:
1994 ERR("Unexpected error \"%s\" returned by sem_wait",
1995 strerror(errno));
1996 }
1997 }
1998 break;
1999 case 0: /* no timeout */
2000 break;
2001 }
2002 }
2003
2004 static
2005 void lttng_ust_cleanup(int exiting)
2006 {
2007 cleanup_sock_info(&global_apps, exiting);
2008 cleanup_sock_info(&local_apps, exiting);
2009 local_apps.allowed = 0;
2010 global_apps.allowed = 0;
2011 /*
2012 * The teardown in this function all affect data structures
2013 * accessed under the UST lock by the listener thread. This
2014 * lock, along with the lttng_ust_comm_should_quit flag, ensure
2015 * that none of these threads are accessing this data at this
2016 * point.
2017 */
2018 lttng_ust_abi_exit();
2019 lttng_ust_events_exit();
2020 lttng_perf_counter_exit();
2021 lttng_ring_buffer_client_discard_rt_exit();
2022 lttng_ring_buffer_client_discard_exit();
2023 lttng_ring_buffer_client_overwrite_rt_exit();
2024 lttng_ring_buffer_client_overwrite_exit();
2025 lttng_ring_buffer_metadata_client_exit();
2026 lttng_ust_statedump_destroy();
2027 exit_tracepoint();
2028 if (!exiting) {
2029 /* Reinitialize values for fork */
2030 sem_count = sem_count_initial_value;
2031 lttng_ust_comm_should_quit = 0;
2032 initialized = 0;
2033 }
2034 }
2035
2036 void __attribute__((destructor)) lttng_ust_exit(void)
2037 {
2038 int ret;
2039
2040 /*
2041 * Using pthread_cancel here because:
2042 * A) we don't want to hang application teardown.
2043 * B) the thread is not allocating any resource.
2044 */
2045
2046 /*
2047 * Require the communication thread to quit. Synchronize with
2048 * mutexes to ensure it is not in a mutex critical section when
2049 * pthread_cancel is later called.
2050 */
2051 ust_lock_nocheck();
2052 lttng_ust_comm_should_quit = 1;
2053 ust_unlock();
2054
2055 pthread_mutex_lock(&ust_exit_mutex);
2056 /* cancel threads */
2057 if (global_apps.thread_active) {
2058 ret = pthread_cancel(global_apps.ust_listener);
2059 if (ret) {
2060 ERR("Error cancelling global ust listener thread: %s",
2061 strerror(ret));
2062 } else {
2063 global_apps.thread_active = 0;
2064 }
2065 }
2066 if (local_apps.thread_active) {
2067 ret = pthread_cancel(local_apps.ust_listener);
2068 if (ret) {
2069 ERR("Error cancelling local ust listener thread: %s",
2070 strerror(ret));
2071 } else {
2072 local_apps.thread_active = 0;
2073 }
2074 }
2075 pthread_mutex_unlock(&ust_exit_mutex);
2076
2077 /*
2078 * Do NOT join threads: use of sys_futex makes it impossible to
2079 * join the threads without using async-cancel, but async-cancel
2080 * is delivered by a signal, which could hit the target thread
2081 * anywhere in its code path, including while the ust_lock() is
2082 * held, causing a deadlock for the other thread. Let the OS
2083 * cleanup the threads if there are stalled in a syscall.
2084 */
2085 lttng_ust_cleanup(1);
2086 }
2087
2088 static
2089 void ust_context_ns_reset(void)
2090 {
2091 lttng_context_pid_ns_reset();
2092 lttng_context_cgroup_ns_reset();
2093 lttng_context_ipc_ns_reset();
2094 lttng_context_mnt_ns_reset();
2095 lttng_context_net_ns_reset();
2096 lttng_context_user_ns_reset();
2097 lttng_context_uts_ns_reset();
2098 }
2099
2100 static
2101 void ust_context_vuids_reset(void)
2102 {
2103 lttng_context_vuid_reset();
2104 lttng_context_veuid_reset();
2105 lttng_context_vsuid_reset();
2106 }
2107
2108 static
2109 void ust_context_vgids_reset(void)
2110 {
2111 lttng_context_vgid_reset();
2112 lttng_context_vegid_reset();
2113 lttng_context_vsgid_reset();
2114 }
2115
2116 /*
2117 * We exclude the worker threads across fork and clone (except
2118 * CLONE_VM), because these system calls only keep the forking thread
2119 * running in the child. Therefore, we don't want to call fork or clone
2120 * in the middle of an tracepoint or ust tracing state modification.
2121 * Holding this mutex protects these structures across fork and clone.
2122 */
2123 void ust_before_fork(sigset_t *save_sigset)
2124 {
2125 /*
2126 * Disable signals. This is to avoid that the child intervenes
2127 * before it is properly setup for tracing. It is safer to
2128 * disable all signals, because then we know we are not breaking
2129 * anything by restoring the original mask.
2130 */
2131 sigset_t all_sigs;
2132 int ret;
2133
2134 /* Fixup lttng-ust TLS. */
2135 lttng_ust_fixup_tls();
2136
2137 if (URCU_TLS(lttng_ust_nest_count))
2138 return;
2139 /* Disable signals */
2140 sigfillset(&all_sigs);
2141 ret = sigprocmask(SIG_BLOCK, &all_sigs, save_sigset);
2142 if (ret == -1) {
2143 PERROR("sigprocmask");
2144 }
2145
2146 pthread_mutex_lock(&ust_fork_mutex);
2147
2148 ust_lock_nocheck();
2149 urcu_bp_before_fork();
2150 lttng_ust_lock_fd_tracker();
2151 lttng_perf_lock();
2152 }
2153
2154 static void ust_after_fork_common(sigset_t *restore_sigset)
2155 {
2156 int ret;
2157
2158 DBG("process %d", getpid());
2159 lttng_perf_unlock();
2160 lttng_ust_unlock_fd_tracker();
2161 ust_unlock();
2162
2163 pthread_mutex_unlock(&ust_fork_mutex);
2164
2165 /* Restore signals */
2166 ret = sigprocmask(SIG_SETMASK, restore_sigset, NULL);
2167 if (ret == -1) {
2168 PERROR("sigprocmask");
2169 }
2170 }
2171
2172 void ust_after_fork_parent(sigset_t *restore_sigset)
2173 {
2174 if (URCU_TLS(lttng_ust_nest_count))
2175 return;
2176 DBG("process %d", getpid());
2177 urcu_bp_after_fork_parent();
2178 /* Release mutexes and reenable signals */
2179 ust_after_fork_common(restore_sigset);
2180 }
2181
2182 /*
2183 * After fork, in the child, we need to cleanup all the leftover state,
2184 * except the worker thread which already magically disappeared thanks
2185 * to the weird Linux fork semantics. After tyding up, we call
2186 * lttng_ust_init() again to start over as a new PID.
2187 *
2188 * This is meant for forks() that have tracing in the child between the
2189 * fork and following exec call (if there is any).
2190 */
2191 void ust_after_fork_child(sigset_t *restore_sigset)
2192 {
2193 if (URCU_TLS(lttng_ust_nest_count))
2194 return;
2195 lttng_context_vpid_reset();
2196 lttng_context_vtid_reset();
2197 lttng_context_procname_reset();
2198 ust_context_ns_reset();
2199 ust_context_vuids_reset();
2200 ust_context_vgids_reset();
2201 DBG("process %d", getpid());
2202 /* Release urcu mutexes */
2203 urcu_bp_after_fork_child();
2204 lttng_ust_cleanup(0);
2205 /* Release mutexes and reenable signals */
2206 ust_after_fork_common(restore_sigset);
2207 lttng_ust_init();
2208 }
2209
2210 void ust_after_setns(void)
2211 {
2212 ust_context_ns_reset();
2213 ust_context_vuids_reset();
2214 ust_context_vgids_reset();
2215 }
2216
2217 void ust_after_unshare(void)
2218 {
2219 ust_context_ns_reset();
2220 ust_context_vuids_reset();
2221 ust_context_vgids_reset();
2222 }
2223
2224 void ust_after_setuid(void)
2225 {
2226 ust_context_vuids_reset();
2227 }
2228
2229 void ust_after_seteuid(void)
2230 {
2231 ust_context_vuids_reset();
2232 }
2233
2234 void ust_after_setreuid(void)
2235 {
2236 ust_context_vuids_reset();
2237 }
2238
2239 void ust_after_setresuid(void)
2240 {
2241 ust_context_vuids_reset();
2242 }
2243
2244 void ust_after_setgid(void)
2245 {
2246 ust_context_vgids_reset();
2247 }
2248
2249 void ust_after_setegid(void)
2250 {
2251 ust_context_vgids_reset();
2252 }
2253
2254 void ust_after_setregid(void)
2255 {
2256 ust_context_vgids_reset();
2257 }
2258
2259 void ust_after_setresgid(void)
2260 {
2261 ust_context_vgids_reset();
2262 }
2263
2264 void lttng_ust_sockinfo_session_enabled(void *owner)
2265 {
2266 struct sock_info *sock_info = owner;
2267 sock_info->statedump_pending = 1;
2268 }
This page took 0.077362 seconds and 5 git commands to generate.