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