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