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