Print appropriate error on FUTEX_WAIT efault for RO shm
[lttng-ust.git] / libust / 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>
2629549e 25#include <sys/prctl.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>
1ea11eab 40
edaa1431
MD
41#include <lttng-ust-comm.h>
42#include <ust/usterr-signal-safe.h>
43#include <ust/lttng-ust-abi.h>
44#include <ust/tracepoint.h>
d0a1ae63 45#include <ust/tracepoint-internal.h>
e822f505 46#include <ust/ust.h>
b751f722 47#include "ltt-tracer-core.h"
edaa1431
MD
48
49/*
50 * Has lttng ust comm constructor been called ?
51 */
52static int initialized;
53
1ea11eab 54/*
17dfb34b
MD
55 * The ust_lock/ust_unlock lock is used as a communication thread mutex.
56 * Held when handling a command, also held by fork() to deal with
57 * removal of threads, and by exit path.
1ea11eab 58 */
1ea11eab
MD
59
60/* Should the ust comm thread quit ? */
61static int lttng_ust_comm_should_quit;
62
11ff9c7d
MD
63/*
64 * Wait for either of these before continuing to the main
65 * program:
66 * - the register_done message from sessiond daemon
67 * (will let the sessiond daemon enable sessions before main
68 * starts.)
69 * - sessiond daemon is not reachable.
70 * - timeout (ensuring applications are resilient to session
71 * daemon problems).
72 */
73static sem_t constructor_wait;
950aab0c
MD
74/*
75 * Doing this for both the global and local sessiond.
76 */
95259bd0 77static int sem_count = { 2 };
11ff9c7d 78
1ea11eab
MD
79/*
80 * Info about socket and associated listener thread.
81 */
82struct sock_info {
11ff9c7d 83 const char *name;
1ea11eab 84 pthread_t ust_listener; /* listener thread */
46050b1a 85 int root_handle;
8d20bf54
MD
86 int constructor_sem_posted;
87 int allowed;
44e073f5 88 int global;
7fc90dca
MD
89
90 char sock_path[PATH_MAX];
91 int socket;
92
93 char wait_shm_path[PATH_MAX];
94 char *wait_shm_mmap;
1ea11eab 95};
2691221a
MD
96
97/* Socket from app (connect) to session daemon (listen) for communication */
1ea11eab 98struct sock_info global_apps = {
11ff9c7d 99 .name = "global",
44e073f5 100 .global = 1,
7fc90dca 101
46050b1a 102 .root_handle = -1,
8d20bf54 103 .allowed = 1,
7fc90dca
MD
104
105 .sock_path = DEFAULT_GLOBAL_APPS_UNIX_SOCK,
106 .socket = -1,
107
108 .wait_shm_path = DEFAULT_GLOBAL_APPS_WAIT_SHM_PATH,
1ea11eab 109};
2691221a
MD
110
111/* TODO: allow global_apps_sock_path override */
112
1ea11eab 113struct sock_info local_apps = {
11ff9c7d 114 .name = "local",
44e073f5 115 .global = 0,
46050b1a 116 .root_handle = -1,
8d20bf54 117 .allowed = 0, /* Check setuid bit first */
7fc90dca
MD
118
119 .socket = -1,
1ea11eab 120};
2691221a 121
37ed587a
MD
122static int wait_poll_fallback;
123
edaa1431
MD
124extern void ltt_ring_buffer_client_overwrite_init(void);
125extern void ltt_ring_buffer_client_discard_init(void);
126extern void ltt_ring_buffer_metadata_client_init(void);
127extern void ltt_ring_buffer_client_overwrite_exit(void);
128extern void ltt_ring_buffer_client_discard_exit(void);
129extern void ltt_ring_buffer_metadata_client_exit(void);
130
2691221a 131static
8d20bf54 132int setup_local_apps(void)
2691221a
MD
133{
134 const char *home_dir;
7fc90dca 135 uid_t uid;
2691221a 136
7fc90dca 137 uid = getuid();
8d20bf54
MD
138 /*
139 * Disallow per-user tracing for setuid binaries.
140 */
7fc90dca 141 if (uid != geteuid()) {
8d20bf54 142 local_apps.allowed = 0;
d0a1ae63 143 return 0;
8d20bf54
MD
144 } else {
145 local_apps.allowed = 1;
146 }
2691221a
MD
147 home_dir = (const char *) getenv("HOME");
148 if (!home_dir)
149 return -ENOENT;
1ea11eab 150 snprintf(local_apps.sock_path, PATH_MAX,
2691221a 151 DEFAULT_HOME_APPS_UNIX_SOCK, home_dir);
7fc90dca
MD
152 snprintf(local_apps.wait_shm_path, PATH_MAX,
153 DEFAULT_HOME_APPS_WAIT_SHM_PATH, uid);
2691221a
MD
154 return 0;
155}
156
157static
158int register_app_to_sessiond(int socket)
159{
160 ssize_t ret;
2629549e 161 int prctl_ret;
2691221a 162 struct {
e44418f3
MD
163 uint32_t major;
164 uint32_t minor;
2691221a 165 pid_t pid;
5c33bde8 166 pid_t ppid;
2691221a 167 uid_t uid;
83610856 168 gid_t gid;
2629549e 169 char name[16]; /* process name */
2691221a
MD
170 } reg_msg;
171
e44418f3
MD
172 reg_msg.major = LTTNG_UST_COMM_VERSION_MAJOR;
173 reg_msg.minor = LTTNG_UST_COMM_VERSION_MINOR;
2691221a 174 reg_msg.pid = getpid();
5c33bde8 175 reg_msg.ppid = getppid();
2691221a 176 reg_msg.uid = getuid();
83610856 177 reg_msg.gid = getgid();
2629549e
MD
178 prctl_ret = prctl(PR_GET_NAME, (unsigned long) reg_msg.name, 0, 0, 0);
179 if (prctl_ret) {
180 ERR("Error executing prctl");
181 return -errno;
182 }
2691221a
MD
183
184 ret = lttcomm_send_unix_sock(socket, &reg_msg, sizeof(reg_msg));
185 if (ret >= 0 && ret != sizeof(reg_msg))
186 return -EIO;
187 return ret;
188}
189
d9e99d10 190static
d3a492d1 191int send_reply(int sock, struct lttcomm_ust_reply *lur)
d9e99d10 192{
9eb62b9c 193 ssize_t len;
d3a492d1 194
a4be8962 195 len = lttcomm_send_unix_sock(sock, lur, sizeof(*lur));
d3a492d1 196 switch (len) {
a4be8962 197 case sizeof(*lur):
d3a492d1
MD
198 DBG("message successfully sent");
199 return 0;
200 case -1:
201 if (errno == ECONNRESET) {
202 printf("remote end closed connection\n");
203 return 0;
204 }
205 return -1;
206 default:
207 printf("incorrect message size: %zd\n", len);
208 return -1;
209 }
210}
211
212static
edaa1431 213int handle_register_done(struct sock_info *sock_info)
11ff9c7d
MD
214{
215 int ret;
216
edaa1431
MD
217 if (sock_info->constructor_sem_posted)
218 return 0;
219 sock_info->constructor_sem_posted = 1;
95259bd0
MD
220 ret = uatomic_add_return(&sem_count, -1);
221 if (ret == 0) {
222 ret = sem_post(&constructor_wait);
223 assert(!ret);
224 }
11ff9c7d
MD
225 return 0;
226}
227
228static
229int handle_message(struct sock_info *sock_info,
230 int sock, struct lttcomm_ust_msg *lum)
d3a492d1 231{
1ea11eab 232 int ret = 0;
46050b1a
MD
233 const struct objd_ops *ops;
234 struct lttcomm_ust_reply lur;
1ea11eab 235
17dfb34b 236 ust_lock();
1ea11eab 237
46050b1a
MD
238 memset(&lur, 0, sizeof(lur));
239
1ea11eab 240 if (lttng_ust_comm_should_quit) {
46050b1a 241 ret = -EPERM;
1ea11eab
MD
242 goto end;
243 }
9eb62b9c 244
46050b1a
MD
245 ops = objd_ops(lum->handle);
246 if (!ops) {
247 ret = -ENOENT;
248 goto end;
1ea11eab 249 }
46050b1a
MD
250
251 switch (lum->cmd) {
11ff9c7d
MD
252 case LTTNG_UST_REGISTER_DONE:
253 if (lum->handle == LTTNG_UST_ROOT_HANDLE)
edaa1431 254 ret = handle_register_done(sock_info);
11ff9c7d
MD
255 else
256 ret = -EINVAL;
257 break;
46050b1a
MD
258 case LTTNG_UST_RELEASE:
259 if (lum->handle == LTTNG_UST_ROOT_HANDLE)
260 ret = -EPERM;
261 else
262 ret = objd_unref(lum->handle);
d9e99d10
MD
263 break;
264 default:
46050b1a
MD
265 if (ops->cmd)
266 ret = ops->cmd(lum->handle, lum->cmd,
267 (unsigned long) &lum->u);
268 else
269 ret = -ENOSYS;
270 break;
d9e99d10 271 }
46050b1a 272
1ea11eab 273end:
46050b1a
MD
274 lur.handle = lum->handle;
275 lur.cmd = lum->cmd;
276 lur.ret_val = ret;
277 if (ret >= 0) {
278 lur.ret_code = LTTCOMM_OK;
279 } else {
280 lur.ret_code = LTTCOMM_SESSION_FAIL;
281 }
282 ret = send_reply(sock, &lur);
283
17dfb34b 284 ust_unlock();
1ea11eab 285 return ret;
d9e99d10
MD
286}
287
46050b1a
MD
288static
289void cleanup_sock_info(struct sock_info *sock_info)
290{
291 int ret;
292
293 if (sock_info->socket != -1) {
294 ret = close(sock_info->socket);
295 if (ret) {
7fc90dca 296 ERR("Error closing apps socket");
46050b1a
MD
297 }
298 sock_info->socket = -1;
299 }
300 if (sock_info->root_handle != -1) {
301 ret = objd_unref(sock_info->root_handle);
302 if (ret) {
303 ERR("Error unref root handle");
304 }
305 sock_info->root_handle = -1;
306 }
318dfea9 307 sock_info->constructor_sem_posted = 0;
7fc90dca
MD
308 if (sock_info->wait_shm_mmap) {
309 ret = munmap(sock_info->wait_shm_mmap, sysconf(_SC_PAGE_SIZE));
310 if (ret) {
311 ERR("Error unmapping wait shm");
312 }
313 sock_info->wait_shm_mmap = NULL;
314 }
315}
316
58d4b2a2 317/*
33bbeb90
MD
318 * Using fork to set umask in the child process (not multi-thread safe).
319 * We deal with the shm_open vs ftruncate race (happening when the
320 * sessiond owns the shm and does not let everybody modify it, to ensure
321 * safety against shm_unlink) by simply letting the mmap fail and
322 * retrying after a few seconds.
323 * For global shm, everybody has rw access to it until the sessiond
324 * starts.
58d4b2a2 325 */
7fc90dca 326static
58d4b2a2 327int get_wait_shm(struct sock_info *sock_info, size_t mmap_size)
7fc90dca 328{
7fc90dca 329 int wait_shm_fd, ret;
58d4b2a2 330 pid_t pid;
44e073f5 331
58d4b2a2 332 /*
33bbeb90 333 * Try to open read-only.
58d4b2a2 334 */
33bbeb90 335 wait_shm_fd = shm_open(sock_info->wait_shm_path, O_RDONLY, 0);
58d4b2a2
MD
336 if (wait_shm_fd >= 0) {
337 goto end;
338 } else if (wait_shm_fd < 0 && errno != ENOENT) {
339 /*
33bbeb90
MD
340 * Real-only open did not work, and it's not because the
341 * entry was not present. It's a failure that prohibits
342 * using shm.
58d4b2a2 343 */
7fc90dca 344 ERR("Error opening shm %s", sock_info->wait_shm_path);
58d4b2a2 345 goto end;
7fc90dca
MD
346 }
347 /*
58d4b2a2
MD
348 * If the open failed because the file did not exist, try
349 * creating it ourself.
7fc90dca 350 */
58d4b2a2
MD
351 pid = fork();
352 if (pid > 0) {
353 int status;
354
355 /*
356 * Parent: wait for child to return, in which case the
357 * shared memory map will have been created.
358 */
359 pid = wait(&status);
360 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
361 wait_shm_fd = -1;
362 goto end;
7fc90dca 363 }
58d4b2a2
MD
364 /*
365 * Try to open read-only again after creation.
366 */
33bbeb90 367 wait_shm_fd = shm_open(sock_info->wait_shm_path, O_RDONLY, 0);
58d4b2a2
MD
368 if (wait_shm_fd < 0) {
369 /*
370 * Real-only open did not work. It's a failure
371 * that prohibits using shm.
372 */
373 ERR("Error opening shm %s", sock_info->wait_shm_path);
374 goto end;
375 }
376 goto end;
377 } else if (pid == 0) {
378 int create_mode;
379
380 /* Child */
33bbeb90 381 create_mode = S_IRUSR | S_IWUSR | S_IRGRP;
58d4b2a2 382 if (sock_info->global)
33bbeb90 383 create_mode |= S_IROTH | S_IWGRP | S_IWOTH;
58d4b2a2
MD
384 /*
385 * We're alone in a child process, so we can modify the
386 * process-wide umask.
387 */
33bbeb90 388 umask(~create_mode);
58d4b2a2 389 /*
33bbeb90
MD
390 * Try creating shm (or get rw access).
391 * We don't do an exclusive open, because we allow other
392 * processes to create+ftruncate it concurrently.
58d4b2a2
MD
393 */
394 wait_shm_fd = shm_open(sock_info->wait_shm_path,
395 O_RDWR | O_CREAT, create_mode);
396 if (wait_shm_fd >= 0) {
397 ret = ftruncate(wait_shm_fd, mmap_size);
398 if (ret) {
399 PERROR("ftruncate");
400 exit(EXIT_FAILURE);
401 }
58d4b2a2
MD
402 exit(EXIT_SUCCESS);
403 }
33bbeb90
MD
404 /*
405 * For local shm, we need to have rw access to accept
406 * opening it: this means the local sessiond will be
407 * able to wake us up. For global shm, we open it even
408 * if rw access is not granted, because the root.root
409 * sessiond will be able to override all rights and wake
410 * us up.
411 */
412 if (!sock_info->global && errno != EACCES) {
58d4b2a2
MD
413 ERR("Error opening shm %s", sock_info->wait_shm_path);
414 exit(EXIT_FAILURE);
415 }
416 /*
33bbeb90
MD
417 * The shm exists, but we cannot open it RW. Report
418 * success.
58d4b2a2
MD
419 */
420 exit(EXIT_SUCCESS);
421 } else {
422 return -1;
7fc90dca 423 }
58d4b2a2 424end:
33bbeb90
MD
425 if (wait_shm_fd >= 0 && !sock_info->global) {
426 struct stat statbuf;
427
428 /*
429 * Ensure that our user is the owner of the shm file for
430 * local shm. If we do not own the file, it means our
431 * sessiond will not have access to wake us up (there is
432 * probably a rogue process trying to fake our
433 * sessiond). Fallback to polling method in this case.
434 */
435 ret = fstat(wait_shm_fd, &statbuf);
436 if (ret) {
437 PERROR("fstat");
438 goto error_close;
439 }
440 if (statbuf.st_uid != getuid())
441 goto error_close;
442 }
58d4b2a2 443 return wait_shm_fd;
33bbeb90
MD
444
445error_close:
446 ret = close(wait_shm_fd);
447 if (ret) {
448 PERROR("Error closing fd");
449 }
450 return -1;
58d4b2a2
MD
451}
452
453static
454char *get_map_shm(struct sock_info *sock_info)
455{
456 size_t mmap_size = sysconf(_SC_PAGE_SIZE);
457 int wait_shm_fd, ret;
458 char *wait_shm_mmap;
459
460 wait_shm_fd = get_wait_shm(sock_info, mmap_size);
461 if (wait_shm_fd < 0) {
462 goto error;
44e073f5 463 }
7fc90dca
MD
464 wait_shm_mmap = mmap(NULL, mmap_size, PROT_READ,
465 MAP_SHARED, wait_shm_fd, 0);
7fc90dca
MD
466 /* close shm fd immediately after taking the mmap reference */
467 ret = close(wait_shm_fd);
468 if (ret) {
33bbeb90
MD
469 PERROR("Error closing fd");
470 }
471 if (wait_shm_mmap == MAP_FAILED) {
472 DBG("mmap error (can be caused by race with sessiond). Fallback to poll mode.");
473 goto error;
7fc90dca
MD
474 }
475 return wait_shm_mmap;
476
477error:
478 return NULL;
479}
480
481static
482void wait_for_sessiond(struct sock_info *sock_info)
483{
80e2814b
MD
484 int ret;
485
7fc90dca
MD
486 ust_lock();
487 if (lttng_ust_comm_should_quit) {
488 goto quit;
489 }
37ed587a
MD
490 if (wait_poll_fallback) {
491 goto error;
492 }
7fc90dca
MD
493 if (!sock_info->wait_shm_mmap) {
494 sock_info->wait_shm_mmap = get_map_shm(sock_info);
495 if (!sock_info->wait_shm_mmap)
496 goto error;
497 }
498 ust_unlock();
499
500 DBG("Waiting for %s apps sessiond", sock_info->name);
80e2814b
MD
501 /* Wait for futex wakeup */
502 if (uatomic_read((int32_t *) sock_info->wait_shm_mmap) == 0) {
503 ret = futex_async((int32_t *) sock_info->wait_shm_mmap,
504 FUTEX_WAIT, 0, NULL, NULL, 0);
80e2814b 505 if (ret < 0) {
37ed587a
MD
506 if (errno == EFAULT) {
507 wait_poll_fallback = 1;
508 ERR(
509"Linux kernels 2.6.33 to 3.0 (with the exception of stable versions) "
510"do not support FUTEX_WAKE on read-only memory mappings correctly. "
511"Please upgrade your kernel "
512"(fix is commit 9ea71503a8ed9184d2d0b8ccc4d269d05f7940ae in Linux kernel "
513"mainline). LTTng-UST will use polling mode fallback.");
514 }
80e2814b
MD
515 PERROR("futex");
516 sleep(5);
517 }
518 }
7fc90dca
MD
519 return;
520
521quit:
522 ust_unlock();
523 return;
524
525error:
526 ust_unlock();
527 /* Error handling: fallback on a 5 seconds sleep. */
528 sleep(5);
529 return;
46050b1a
MD
530}
531
1ea11eab
MD
532/*
533 * This thread does not allocate any resource, except within
534 * handle_message, within mutex protection. This mutex protects against
535 * fork and exit.
536 * The other moment it allocates resources is at socket connexion, which
537 * is also protected by the mutex.
538 */
d9e99d10
MD
539static
540void *ust_listener_thread(void *arg)
541{
1ea11eab
MD
542 struct sock_info *sock_info = arg;
543 int sock, ret;
d9e99d10 544
9eb62b9c
MD
545 /* Restart trying to connect to the session daemon */
546restart:
17dfb34b 547 ust_lock();
1ea11eab
MD
548
549 if (lttng_ust_comm_should_quit) {
17dfb34b 550 ust_unlock();
1ea11eab
MD
551 goto quit;
552 }
9eb62b9c 553
1ea11eab
MD
554 if (sock_info->socket != -1) {
555 ret = close(sock_info->socket);
556 if (ret) {
11ff9c7d 557 ERR("Error closing %s apps socket", sock_info->name);
1ea11eab
MD
558 }
559 sock_info->socket = -1;
560 }
46050b1a 561
9eb62b9c 562 /* Register */
1ea11eab 563 ret = lttcomm_connect_unix_sock(sock_info->sock_path);
9eb62b9c 564 if (ret < 0) {
11ff9c7d
MD
565 ERR("Error connecting to %s apps socket", sock_info->name);
566 /*
567 * If we cannot find the sessiond daemon, don't delay
568 * constructor execution.
569 */
edaa1431 570 ret = handle_register_done(sock_info);
11ff9c7d 571 assert(!ret);
17dfb34b 572 ust_unlock();
7fc90dca
MD
573
574 /* Wait for sessiond availability with pipe */
575 wait_for_sessiond(sock_info);
1ea11eab 576 goto restart;
46050b1a
MD
577 }
578
579 sock_info->socket = sock = ret;
580
581 /*
582 * Create only one root handle per listener thread for the whole
583 * process lifetime.
584 */
585 if (sock_info->root_handle == -1) {
586 ret = lttng_abi_create_root_handle();
587 if (ret) {
588 ERR("Error creating root handle");
17dfb34b 589 ust_unlock();
46050b1a
MD
590 goto quit;
591 }
592 sock_info->root_handle = ret;
9eb62b9c 593 }
1ea11eab 594
9eb62b9c
MD
595 ret = register_app_to_sessiond(sock);
596 if (ret < 0) {
11ff9c7d
MD
597 ERR("Error registering to %s apps socket", sock_info->name);
598 /*
599 * If we cannot register to the sessiond daemon, don't
600 * delay constructor execution.
601 */
edaa1431 602 ret = handle_register_done(sock_info);
11ff9c7d 603 assert(!ret);
17dfb34b 604 ust_unlock();
7fc90dca 605 wait_for_sessiond(sock_info);
9eb62b9c
MD
606 goto restart;
607 }
17dfb34b 608 ust_unlock();
46050b1a 609
d9e99d10
MD
610 for (;;) {
611 ssize_t len;
e7723462 612 struct lttcomm_ust_msg lum;
d9e99d10 613
e7723462 614 len = lttcomm_recv_unix_sock(sock, &lum, sizeof(lum));
d9e99d10
MD
615 switch (len) {
616 case 0: /* orderly shutdown */
11ff9c7d 617 DBG("%s ltt-sessiond has performed an orderly shutdown\n", sock_info->name);
d9e99d10 618 goto end;
e7723462 619 case sizeof(lum):
d9e99d10 620 DBG("message received\n");
11ff9c7d 621 ret = handle_message(sock_info, sock, &lum);
2a80c9d8 622 if (ret < 0) {
11ff9c7d 623 ERR("Error handling message for %s socket", sock_info->name);
d9e99d10
MD
624 }
625 continue;
626 case -1:
627 if (errno == ECONNRESET) {
11ff9c7d 628 ERR("%s remote end closed connection\n", sock_info->name);
d9e99d10
MD
629 goto end;
630 }
631 goto end;
632 default:
11ff9c7d 633 ERR("incorrect message size (%s socket): %zd\n", sock_info->name, len);
d9e99d10
MD
634 continue;
635 }
636
637 }
638end:
9eb62b9c 639 goto restart; /* try to reconnect */
1ea11eab 640quit:
d9e99d10
MD
641 return NULL;
642}
643
cf12a773
MD
644/*
645 * Return values: -1: don't wait. 0: wait forever. 1: timeout wait.
646 */
11ff9c7d
MD
647static
648int get_timeout(struct timespec *constructor_timeout)
649{
cf12a773
MD
650 long constructor_delay_ms = LTTNG_UST_DEFAULT_CONSTRUCTOR_TIMEOUT_MS;
651 char *str_delay;
11ff9c7d
MD
652 int ret;
653
cf12a773
MD
654 str_delay = getenv("UST_REGISTER_TIMEOUT");
655 if (str_delay) {
656 constructor_delay_ms = strtol(str_delay, NULL, 10);
657 }
658
659 switch (constructor_delay_ms) {
660 case -1:/* fall-through */
661 case 0:
662 return constructor_delay_ms;
663 default:
664 break;
665 }
666
667 /*
668 * If we are unable to find the current time, don't wait.
669 */
670 ret = clock_gettime(CLOCK_REALTIME, constructor_timeout);
671 if (ret) {
672 return -1;
673 }
95259bd0
MD
674 constructor_timeout->tv_sec += constructor_delay_ms / 1000UL;
675 constructor_timeout->tv_nsec +=
676 (constructor_delay_ms % 1000UL) * 1000000UL;
11ff9c7d
MD
677 if (constructor_timeout->tv_nsec >= 1000000000UL) {
678 constructor_timeout->tv_sec++;
679 constructor_timeout->tv_nsec -= 1000000000UL;
680 }
cf12a773 681 return 1;
11ff9c7d 682}
d9e99d10 683
2691221a
MD
684/*
685 * sessiond monitoring thread: monitor presence of global and per-user
686 * sessiond by polling the application common named pipe.
687 */
688/* TODO */
689
edaa1431 690void __attribute__((constructor)) lttng_ust_init(void)
2691221a 691{
11ff9c7d 692 struct timespec constructor_timeout;
cf12a773 693 int timeout_mode;
2691221a
MD
694 int ret;
695
edaa1431
MD
696 if (uatomic_xchg(&initialized, 1) == 1)
697 return;
698
699 /*
700 * We want precise control over the order in which we construct
701 * our sub-libraries vs starting to receive commands from
702 * sessiond (otherwise leading to errors when trying to create
703 * sessiond before the init functions are completed).
704 */
2691221a 705 init_usterr();
edaa1431
MD
706 init_tracepoint();
707 ltt_ring_buffer_metadata_client_init();
708 ltt_ring_buffer_client_overwrite_init();
709 ltt_ring_buffer_client_discard_init();
2691221a 710
cf12a773 711 timeout_mode = get_timeout(&constructor_timeout);
11ff9c7d 712
95259bd0 713 ret = sem_init(&constructor_wait, 0, 0);
11ff9c7d
MD
714 assert(!ret);
715
8d20bf54 716 ret = setup_local_apps();
2691221a 717 if (ret) {
8d20bf54 718 ERR("Error setting up to local apps");
2691221a 719 }
1ea11eab
MD
720 ret = pthread_create(&local_apps.ust_listener, NULL,
721 ust_listener_thread, &local_apps);
11ff9c7d 722
8d20bf54
MD
723 if (local_apps.allowed) {
724 ret = pthread_create(&global_apps.ust_listener, NULL,
725 ust_listener_thread, &global_apps);
726 } else {
727 handle_register_done(&local_apps);
728 }
729
cf12a773
MD
730 switch (timeout_mode) {
731 case 1: /* timeout wait */
95259bd0
MD
732 do {
733 ret = sem_timedwait(&constructor_wait,
734 &constructor_timeout);
735 } while (ret < 0 && errno == EINTR);
cf12a773
MD
736 if (ret < 0 && errno == ETIMEDOUT) {
737 ERR("Timed out waiting for ltt-sessiond");
738 } else {
739 assert(!ret);
740 }
741 break;
7b766b16 742 case -1:/* wait forever */
95259bd0
MD
743 do {
744 ret = sem_wait(&constructor_wait);
745 } while (ret < 0 && errno == EINTR);
11ff9c7d 746 assert(!ret);
cf12a773 747 break;
7b766b16 748 case 0: /* no timeout */
cf12a773 749 break;
11ff9c7d 750 }
2691221a
MD
751}
752
17dfb34b
MD
753static
754void lttng_ust_cleanup(int exiting)
755{
756 cleanup_sock_info(&global_apps);
757 if (local_apps.allowed) {
758 cleanup_sock_info(&local_apps);
759 }
760 lttng_ust_abi_exit();
761 ltt_events_exit();
762 ltt_ring_buffer_client_discard_exit();
763 ltt_ring_buffer_client_overwrite_exit();
764 ltt_ring_buffer_metadata_client_exit();
765 exit_tracepoint();
766 if (!exiting) {
767 /* Reinitialize values for fork */
768 sem_count = 2;
769 lttng_ust_comm_should_quit = 0;
770 initialized = 0;
771 }
772}
773
edaa1431 774void __attribute__((destructor)) lttng_ust_exit(void)
2691221a
MD
775{
776 int ret;
777
9eb62b9c
MD
778 /*
779 * Using pthread_cancel here because:
780 * A) we don't want to hang application teardown.
781 * B) the thread is not allocating any resource.
782 */
1ea11eab
MD
783
784 /*
785 * Require the communication thread to quit. Synchronize with
786 * mutexes to ensure it is not in a mutex critical section when
787 * pthread_cancel is later called.
788 */
17dfb34b 789 ust_lock();
1ea11eab 790 lttng_ust_comm_should_quit = 1;
17dfb34b 791 ust_unlock();
1ea11eab 792
1ea11eab 793 ret = pthread_cancel(global_apps.ust_listener);
9eb62b9c
MD
794 if (ret) {
795 ERR("Error cancelling global ust listener thread");
2691221a 796 }
8d20bf54
MD
797 if (local_apps.allowed) {
798 ret = pthread_cancel(local_apps.ust_listener);
799 if (ret) {
800 ERR("Error cancelling local ust listener thread");
801 }
8d20bf54 802 }
17dfb34b 803 lttng_ust_cleanup(1);
2691221a 804}
e822f505
MD
805
806/*
807 * We exclude the worker threads across fork and clone (except
808 * CLONE_VM), because these system calls only keep the forking thread
809 * running in the child. Therefore, we don't want to call fork or clone
810 * in the middle of an tracepoint or ust tracing state modification.
811 * Holding this mutex protects these structures across fork and clone.
812 */
813void ust_before_fork(ust_fork_info_t *fork_info)
814{
815 /*
816 * Disable signals. This is to avoid that the child intervenes
817 * before it is properly setup for tracing. It is safer to
818 * disable all signals, because then we know we are not breaking
819 * anything by restoring the original mask.
820 */
821 sigset_t all_sigs;
822 int ret;
823
824 /* Disable signals */
825 sigfillset(&all_sigs);
826 ret = sigprocmask(SIG_BLOCK, &all_sigs, &fork_info->orig_sigs);
827 if (ret == -1) {
828 PERROR("sigprocmask");
829 }
17dfb34b 830 ust_lock();
e822f505
MD
831 rcu_bp_before_fork();
832}
833
834static void ust_after_fork_common(ust_fork_info_t *fork_info)
835{
836 int ret;
837
17dfb34b
MD
838 DBG("process %d", getpid());
839 ust_unlock();
e822f505
MD
840 /* Restore signals */
841 ret = sigprocmask(SIG_SETMASK, &fork_info->orig_sigs, NULL);
842 if (ret == -1) {
843 PERROR("sigprocmask");
844 }
845}
846
847void ust_after_fork_parent(ust_fork_info_t *fork_info)
848{
17dfb34b 849 DBG("process %d", getpid());
e822f505
MD
850 rcu_bp_after_fork_parent();
851 /* Release mutexes and reenable signals */
852 ust_after_fork_common(fork_info);
853}
854
17dfb34b
MD
855/*
856 * After fork, in the child, we need to cleanup all the leftover state,
857 * except the worker thread which already magically disappeared thanks
858 * to the weird Linux fork semantics. After tyding up, we call
859 * lttng_ust_init() again to start over as a new PID.
860 *
861 * This is meant for forks() that have tracing in the child between the
862 * fork and following exec call (if there is any).
863 */
e822f505
MD
864void ust_after_fork_child(ust_fork_info_t *fork_info)
865{
17dfb34b 866 DBG("process %d", getpid());
e822f505
MD
867 /* Release urcu mutexes */
868 rcu_bp_after_fork_child();
17dfb34b 869 lttng_ust_cleanup(0);
e822f505
MD
870 /* Release mutexes and reenable signals */
871 ust_after_fork_common(fork_info);
318dfea9 872 lttng_ust_init();
e822f505 873}
This page took 0.065525 seconds and 4 git commands to generate.