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