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