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