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