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