Add CodingStyle document to tarball
[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"
f645cfa7 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 }
e6ea14c5
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) {
50be2fc4
MD
323 int sendret = 0;
324
381c0f1e 325 /* we also need to send the file descriptors. */
57773204 326 ret = ustcomm_send_fds_unix_sock(sock,
193183fb 327 &shm_fd, &shm_fd,
381c0f1e
MD
328 1, sizeof(int));
329 if (ret < 0) {
330 perror("send shm_fd");
50be2fc4 331 sendret = ret;
381c0f1e 332 }
50be2fc4
MD
333 /*
334 * The sessiond expects 2 file descriptors, even upon
335 * error.
336 */
57773204 337 ret = ustcomm_send_fds_unix_sock(sock,
193183fb 338 &wait_fd, &wait_fd,
381c0f1e
MD
339 1, sizeof(int));
340 if (ret < 0) {
341 perror("send wait_fd");
342 goto error;
343 }
50be2fc4
MD
344 if (sendret) {
345 ret = sendret;
346 goto error;
347 }
381c0f1e 348 }
ef9ff354
MD
349 /*
350 * We still have the memory map reference, and the fds have been
3ad5f707
MD
351 * sent to the sessiond. We can therefore close those fds. Note
352 * that we keep the write side of the wait_fd open, but close
353 * the read side.
ef9ff354
MD
354 */
355 if (lur.ret_code == USTCOMM_OK) {
356 switch (lum->cmd) {
357 case LTTNG_UST_STREAM:
358 if (shm_fd >= 0) {
359 ret = close(shm_fd);
360 if (ret) {
361 PERROR("Error closing stream shm_fd");
362 }
363 *args.stream.shm_fd = -1;
364 }
365 if (wait_fd >= 0) {
366 ret = close(wait_fd);
367 if (ret) {
368 PERROR("Error closing stream wait_fd");
369 }
370 *args.stream.wait_fd = -1;
371 }
372 break;
373 case LTTNG_UST_METADATA:
374 case LTTNG_UST_CHANNEL:
375 if (shm_fd >= 0) {
376 ret = close(shm_fd);
377 if (ret) {
378 PERROR("Error closing channel shm_fd");
379 }
380 *args.channel.shm_fd = -1;
381 }
382 if (wait_fd >= 0) {
383 ret = close(wait_fd);
384 if (ret) {
385 PERROR("Error closing channel wait_fd");
386 }
387 *args.channel.wait_fd = -1;
388 }
389 break;
390 }
391 }
392
381c0f1e 393error:
17dfb34b 394 ust_unlock();
1ea11eab 395 return ret;
d9e99d10
MD
396}
397
46050b1a 398static
efe0de09 399void cleanup_sock_info(struct sock_info *sock_info, int exiting)
46050b1a
MD
400{
401 int ret;
402
403 if (sock_info->socket != -1) {
e6973a89 404 ret = ustcomm_close_unix_sock(sock_info->socket);
46050b1a 405 if (ret) {
7fc90dca 406 ERR("Error closing apps socket");
46050b1a
MD
407 }
408 sock_info->socket = -1;
409 }
410 if (sock_info->root_handle != -1) {
d4419b81 411 ret = lttng_ust_objd_unref(sock_info->root_handle);
46050b1a
MD
412 if (ret) {
413 ERR("Error unref root handle");
414 }
415 sock_info->root_handle = -1;
416 }
318dfea9 417 sock_info->constructor_sem_posted = 0;
efe0de09
MD
418 /*
419 * wait_shm_mmap is used by listener threads outside of the
420 * ust lock, so we cannot tear it down ourselves, because we
421 * cannot join on these threads. Leave this task to the OS
422 * process exit.
423 */
424 if (!exiting && sock_info->wait_shm_mmap) {
7fc90dca
MD
425 ret = munmap(sock_info->wait_shm_mmap, sysconf(_SC_PAGE_SIZE));
426 if (ret) {
427 ERR("Error unmapping wait shm");
428 }
429 sock_info->wait_shm_mmap = NULL;
430 }
431}
432
58d4b2a2 433/*
33bbeb90
MD
434 * Using fork to set umask in the child process (not multi-thread safe).
435 * We deal with the shm_open vs ftruncate race (happening when the
436 * sessiond owns the shm and does not let everybody modify it, to ensure
437 * safety against shm_unlink) by simply letting the mmap fail and
438 * retrying after a few seconds.
439 * For global shm, everybody has rw access to it until the sessiond
440 * starts.
58d4b2a2 441 */
7fc90dca 442static
58d4b2a2 443int get_wait_shm(struct sock_info *sock_info, size_t mmap_size)
7fc90dca 444{
7fc90dca 445 int wait_shm_fd, ret;
58d4b2a2 446 pid_t pid;
44e073f5 447
58d4b2a2 448 /*
33bbeb90 449 * Try to open read-only.
58d4b2a2 450 */
33bbeb90 451 wait_shm_fd = shm_open(sock_info->wait_shm_path, O_RDONLY, 0);
58d4b2a2
MD
452 if (wait_shm_fd >= 0) {
453 goto end;
454 } else if (wait_shm_fd < 0 && errno != ENOENT) {
455 /*
33bbeb90
MD
456 * Real-only open did not work, and it's not because the
457 * entry was not present. It's a failure that prohibits
458 * using shm.
58d4b2a2 459 */
7fc90dca 460 ERR("Error opening shm %s", sock_info->wait_shm_path);
58d4b2a2 461 goto end;
7fc90dca
MD
462 }
463 /*
58d4b2a2
MD
464 * If the open failed because the file did not exist, try
465 * creating it ourself.
7fc90dca 466 */
58d4b2a2
MD
467 pid = fork();
468 if (pid > 0) {
469 int status;
470
471 /*
472 * Parent: wait for child to return, in which case the
473 * shared memory map will have been created.
474 */
475 pid = wait(&status);
b7d3cb32 476 if (pid < 0 || !WIFEXITED(status) || WEXITSTATUS(status) != 0) {
58d4b2a2
MD
477 wait_shm_fd = -1;
478 goto end;
7fc90dca 479 }
58d4b2a2
MD
480 /*
481 * Try to open read-only again after creation.
482 */
33bbeb90 483 wait_shm_fd = shm_open(sock_info->wait_shm_path, O_RDONLY, 0);
58d4b2a2
MD
484 if (wait_shm_fd < 0) {
485 /*
486 * Real-only open did not work. It's a failure
487 * that prohibits using shm.
488 */
489 ERR("Error opening shm %s", sock_info->wait_shm_path);
490 goto end;
491 }
492 goto end;
493 } else if (pid == 0) {
494 int create_mode;
495
496 /* Child */
33bbeb90 497 create_mode = S_IRUSR | S_IWUSR | S_IRGRP;
58d4b2a2 498 if (sock_info->global)
33bbeb90 499 create_mode |= S_IROTH | S_IWGRP | S_IWOTH;
58d4b2a2
MD
500 /*
501 * We're alone in a child process, so we can modify the
502 * process-wide umask.
503 */
33bbeb90 504 umask(~create_mode);
58d4b2a2 505 /*
33bbeb90
MD
506 * Try creating shm (or get rw access).
507 * We don't do an exclusive open, because we allow other
508 * processes to create+ftruncate it concurrently.
58d4b2a2
MD
509 */
510 wait_shm_fd = shm_open(sock_info->wait_shm_path,
511 O_RDWR | O_CREAT, create_mode);
512 if (wait_shm_fd >= 0) {
513 ret = ftruncate(wait_shm_fd, mmap_size);
514 if (ret) {
515 PERROR("ftruncate");
516 exit(EXIT_FAILURE);
517 }
58d4b2a2
MD
518 exit(EXIT_SUCCESS);
519 }
33bbeb90
MD
520 /*
521 * For local shm, we need to have rw access to accept
522 * opening it: this means the local sessiond will be
523 * able to wake us up. For global shm, we open it even
524 * if rw access is not granted, because the root.root
525 * sessiond will be able to override all rights and wake
526 * us up.
527 */
528 if (!sock_info->global && errno != EACCES) {
58d4b2a2
MD
529 ERR("Error opening shm %s", sock_info->wait_shm_path);
530 exit(EXIT_FAILURE);
531 }
532 /*
33bbeb90
MD
533 * The shm exists, but we cannot open it RW. Report
534 * success.
58d4b2a2
MD
535 */
536 exit(EXIT_SUCCESS);
537 } else {
538 return -1;
7fc90dca 539 }
58d4b2a2 540end:
33bbeb90
MD
541 if (wait_shm_fd >= 0 && !sock_info->global) {
542 struct stat statbuf;
543
544 /*
545 * Ensure that our user is the owner of the shm file for
546 * local shm. If we do not own the file, it means our
547 * sessiond will not have access to wake us up (there is
548 * probably a rogue process trying to fake our
549 * sessiond). Fallback to polling method in this case.
550 */
551 ret = fstat(wait_shm_fd, &statbuf);
552 if (ret) {
553 PERROR("fstat");
554 goto error_close;
555 }
556 if (statbuf.st_uid != getuid())
557 goto error_close;
558 }
58d4b2a2 559 return wait_shm_fd;
33bbeb90
MD
560
561error_close:
562 ret = close(wait_shm_fd);
563 if (ret) {
564 PERROR("Error closing fd");
565 }
566 return -1;
58d4b2a2
MD
567}
568
569static
570char *get_map_shm(struct sock_info *sock_info)
571{
572 size_t mmap_size = sysconf(_SC_PAGE_SIZE);
573 int wait_shm_fd, ret;
574 char *wait_shm_mmap;
575
576 wait_shm_fd = get_wait_shm(sock_info, mmap_size);
577 if (wait_shm_fd < 0) {
578 goto error;
44e073f5 579 }
7fc90dca
MD
580 wait_shm_mmap = mmap(NULL, mmap_size, PROT_READ,
581 MAP_SHARED, wait_shm_fd, 0);
7fc90dca
MD
582 /* close shm fd immediately after taking the mmap reference */
583 ret = close(wait_shm_fd);
584 if (ret) {
33bbeb90
MD
585 PERROR("Error closing fd");
586 }
587 if (wait_shm_mmap == MAP_FAILED) {
588 DBG("mmap error (can be caused by race with sessiond). Fallback to poll mode.");
589 goto error;
7fc90dca
MD
590 }
591 return wait_shm_mmap;
592
593error:
594 return NULL;
595}
596
597static
598void wait_for_sessiond(struct sock_info *sock_info)
599{
efe0de09 600 int ret;
80e2814b 601
7fc90dca
MD
602 ust_lock();
603 if (lttng_ust_comm_should_quit) {
604 goto quit;
605 }
37ed587a
MD
606 if (wait_poll_fallback) {
607 goto error;
608 }
7fc90dca
MD
609 if (!sock_info->wait_shm_mmap) {
610 sock_info->wait_shm_mmap = get_map_shm(sock_info);
611 if (!sock_info->wait_shm_mmap)
612 goto error;
613 }
614 ust_unlock();
615
616 DBG("Waiting for %s apps sessiond", sock_info->name);
80e2814b
MD
617 /* Wait for futex wakeup */
618 if (uatomic_read((int32_t *) sock_info->wait_shm_mmap) == 0) {
619 ret = futex_async((int32_t *) sock_info->wait_shm_mmap,
620 FUTEX_WAIT, 0, NULL, NULL, 0);
80e2814b 621 if (ret < 0) {
37ed587a
MD
622 if (errno == EFAULT) {
623 wait_poll_fallback = 1;
a8b870ad 624 DBG(
37ed587a
MD
625"Linux kernels 2.6.33 to 3.0 (with the exception of stable versions) "
626"do not support FUTEX_WAKE on read-only memory mappings correctly. "
627"Please upgrade your kernel "
628"(fix is commit 9ea71503a8ed9184d2d0b8ccc4d269d05f7940ae in Linux kernel "
629"mainline). LTTng-UST will use polling mode fallback.");
cd27263b
MD
630 if (ust_debug())
631 PERROR("futex");
37ed587a 632 }
80e2814b
MD
633 }
634 }
7fc90dca
MD
635 return;
636
637quit:
638 ust_unlock();
639 return;
640
641error:
642 ust_unlock();
7fc90dca 643 return;
46050b1a
MD
644}
645
1ea11eab
MD
646/*
647 * This thread does not allocate any resource, except within
648 * handle_message, within mutex protection. This mutex protects against
649 * fork and exit.
650 * The other moment it allocates resources is at socket connexion, which
651 * is also protected by the mutex.
652 */
d9e99d10
MD
653static
654void *ust_listener_thread(void *arg)
655{
1ea11eab 656 struct sock_info *sock_info = arg;
c0eedf81 657 int sock, ret, prev_connect_failed = 0, has_waited = 0;
d9e99d10 658
9eb62b9c
MD
659 /* Restart trying to connect to the session daemon */
660restart:
c0eedf81
MD
661 if (prev_connect_failed) {
662 /* Wait for sessiond availability with pipe */
663 wait_for_sessiond(sock_info);
664 if (has_waited) {
665 has_waited = 0;
666 /*
667 * Sleep for 5 seconds before retrying after a
668 * sequence of failure / wait / failure. This
669 * deals with a killed or broken session daemon.
670 */
671 sleep(5);
672 }
673 has_waited = 1;
674 prev_connect_failed = 0;
675 }
17dfb34b 676 ust_lock();
1ea11eab
MD
677
678 if (lttng_ust_comm_should_quit) {
17dfb34b 679 ust_unlock();
1ea11eab
MD
680 goto quit;
681 }
9eb62b9c 682
1ea11eab 683 if (sock_info->socket != -1) {
e6973a89 684 ret = ustcomm_close_unix_sock(sock_info->socket);
1ea11eab 685 if (ret) {
11ff9c7d 686 ERR("Error closing %s apps socket", sock_info->name);
1ea11eab
MD
687 }
688 sock_info->socket = -1;
689 }
46050b1a 690
9eb62b9c 691 /* Register */
57773204 692 ret = ustcomm_connect_unix_sock(sock_info->sock_path);
9eb62b9c 693 if (ret < 0) {
4d3c9523 694 DBG("Info: sessiond not accepting connections to %s apps socket", sock_info->name);
c0eedf81 695 prev_connect_failed = 1;
11ff9c7d
MD
696 /*
697 * If we cannot find the sessiond daemon, don't delay
698 * constructor execution.
699 */
edaa1431 700 ret = handle_register_done(sock_info);
11ff9c7d 701 assert(!ret);
17dfb34b 702 ust_unlock();
1ea11eab 703 goto restart;
46050b1a
MD
704 }
705
706 sock_info->socket = sock = ret;
707
708 /*
709 * Create only one root handle per listener thread for the whole
710 * process lifetime.
711 */
712 if (sock_info->root_handle == -1) {
713 ret = lttng_abi_create_root_handle();
a51070bb 714 if (ret < 0) {
46050b1a 715 ERR("Error creating root handle");
17dfb34b 716 ust_unlock();
46050b1a
MD
717 goto quit;
718 }
719 sock_info->root_handle = ret;
9eb62b9c 720 }
1ea11eab 721
9eb62b9c
MD
722 ret = register_app_to_sessiond(sock);
723 if (ret < 0) {
11ff9c7d 724 ERR("Error registering to %s apps socket", sock_info->name);
c0eedf81 725 prev_connect_failed = 1;
11ff9c7d
MD
726 /*
727 * If we cannot register to the sessiond daemon, don't
728 * delay constructor execution.
729 */
edaa1431 730 ret = handle_register_done(sock_info);
11ff9c7d 731 assert(!ret);
17dfb34b 732 ust_unlock();
9eb62b9c
MD
733 goto restart;
734 }
17dfb34b 735 ust_unlock();
46050b1a 736
d9e99d10
MD
737 for (;;) {
738 ssize_t len;
57773204 739 struct ustcomm_ust_msg lum;
d9e99d10 740
57773204 741 len = ustcomm_recv_unix_sock(sock, &lum, sizeof(lum));
d9e99d10
MD
742 switch (len) {
743 case 0: /* orderly shutdown */
11ff9c7d 744 DBG("%s ltt-sessiond has performed an orderly shutdown\n", sock_info->name);
8236ba10
MD
745 ust_lock();
746 /*
747 * Either sessiond has shutdown or refused us by closing the socket.
748 * In either case, we don't want to delay construction execution,
749 * and we need to wait before retry.
750 */
751 prev_connect_failed = 1;
752 /*
753 * If we cannot register to the sessiond daemon, don't
754 * delay constructor execution.
755 */
756 ret = handle_register_done(sock_info);
757 assert(!ret);
758 ust_unlock();
d9e99d10 759 goto end;
e7723462 760 case sizeof(lum):
d9e99d10 761 DBG("message received\n");
11ff9c7d 762 ret = handle_message(sock_info, sock, &lum);
2a80c9d8 763 if (ret < 0) {
11ff9c7d 764 ERR("Error handling message for %s socket", sock_info->name);
d9e99d10
MD
765 }
766 continue;
767 case -1:
8236ba10 768 DBG("Receive failed from lttng-sessiond with errno %d", errno);
d9e99d10 769 if (errno == ECONNRESET) {
11ff9c7d 770 ERR("%s remote end closed connection\n", sock_info->name);
d9e99d10
MD
771 goto end;
772 }
773 goto end;
774 default:
11ff9c7d 775 ERR("incorrect message size (%s socket): %zd\n", sock_info->name, len);
d9e99d10
MD
776 continue;
777 }
778
779 }
780end:
9eb62b9c 781 goto restart; /* try to reconnect */
1ea11eab 782quit:
d9e99d10
MD
783 return NULL;
784}
785
cf12a773
MD
786/*
787 * Return values: -1: don't wait. 0: wait forever. 1: timeout wait.
788 */
11ff9c7d
MD
789static
790int get_timeout(struct timespec *constructor_timeout)
791{
cf12a773
MD
792 long constructor_delay_ms = LTTNG_UST_DEFAULT_CONSTRUCTOR_TIMEOUT_MS;
793 char *str_delay;
11ff9c7d
MD
794 int ret;
795
69400ac4 796 str_delay = getenv("LTTNG_UST_REGISTER_TIMEOUT");
cf12a773
MD
797 if (str_delay) {
798 constructor_delay_ms = strtol(str_delay, NULL, 10);
799 }
800
801 switch (constructor_delay_ms) {
802 case -1:/* fall-through */
803 case 0:
804 return constructor_delay_ms;
805 default:
806 break;
807 }
808
809 /*
810 * If we are unable to find the current time, don't wait.
811 */
812 ret = clock_gettime(CLOCK_REALTIME, constructor_timeout);
813 if (ret) {
814 return -1;
815 }
95259bd0
MD
816 constructor_timeout->tv_sec += constructor_delay_ms / 1000UL;
817 constructor_timeout->tv_nsec +=
818 (constructor_delay_ms % 1000UL) * 1000000UL;
11ff9c7d
MD
819 if (constructor_timeout->tv_nsec >= 1000000000UL) {
820 constructor_timeout->tv_sec++;
821 constructor_timeout->tv_nsec -= 1000000000UL;
822 }
cf12a773 823 return 1;
11ff9c7d 824}
d9e99d10 825
2691221a
MD
826/*
827 * sessiond monitoring thread: monitor presence of global and per-user
828 * sessiond by polling the application common named pipe.
829 */
830/* TODO */
831
edaa1431 832void __attribute__((constructor)) lttng_ust_init(void)
2691221a 833{
11ff9c7d 834 struct timespec constructor_timeout;
cf12a773 835 int timeout_mode;
2691221a
MD
836 int ret;
837
edaa1431
MD
838 if (uatomic_xchg(&initialized, 1) == 1)
839 return;
840
eddd8d5d
MD
841 /*
842 * Fixup interdependency between TLS fixup mutex (which happens
843 * to be the dynamic linker mutex) and ust_lock, taken within
844 * the ust lock.
845 */
846 lttng_fixup_event_tls();
f645cfa7 847 lttng_fixup_ringbuffer_tls();
4158a15a 848 lttng_fixup_vtid_tls();
eddd8d5d 849
edaa1431
MD
850 /*
851 * We want precise control over the order in which we construct
852 * our sub-libraries vs starting to receive commands from
853 * sessiond (otherwise leading to errors when trying to create
854 * sessiond before the init functions are completed).
855 */
2691221a 856 init_usterr();
edaa1431
MD
857 init_tracepoint();
858 ltt_ring_buffer_metadata_client_init();
859 ltt_ring_buffer_client_overwrite_init();
860 ltt_ring_buffer_client_discard_init();
2691221a 861
cf12a773 862 timeout_mode = get_timeout(&constructor_timeout);
11ff9c7d 863
95259bd0 864 ret = sem_init(&constructor_wait, 0, 0);
11ff9c7d
MD
865 assert(!ret);
866
8d20bf54 867 ret = setup_local_apps();
2691221a 868 if (ret) {
8d20bf54 869 ERR("Error setting up to local apps");
2691221a 870 }
1ea11eab
MD
871 ret = pthread_create(&local_apps.ust_listener, NULL,
872 ust_listener_thread, &local_apps);
11ff9c7d 873
8d20bf54
MD
874 if (local_apps.allowed) {
875 ret = pthread_create(&global_apps.ust_listener, NULL,
876 ust_listener_thread, &global_apps);
877 } else {
878 handle_register_done(&local_apps);
879 }
880
cf12a773
MD
881 switch (timeout_mode) {
882 case 1: /* timeout wait */
95259bd0
MD
883 do {
884 ret = sem_timedwait(&constructor_wait,
885 &constructor_timeout);
886 } while (ret < 0 && errno == EINTR);
cf12a773
MD
887 if (ret < 0 && errno == ETIMEDOUT) {
888 ERR("Timed out waiting for ltt-sessiond");
889 } else {
890 assert(!ret);
891 }
892 break;
7b766b16 893 case -1:/* wait forever */
95259bd0
MD
894 do {
895 ret = sem_wait(&constructor_wait);
896 } while (ret < 0 && errno == EINTR);
11ff9c7d 897 assert(!ret);
cf12a773 898 break;
7b766b16 899 case 0: /* no timeout */
cf12a773 900 break;
11ff9c7d 901 }
2691221a
MD
902}
903
17dfb34b
MD
904static
905void lttng_ust_cleanup(int exiting)
906{
efe0de09 907 cleanup_sock_info(&global_apps, exiting);
17dfb34b 908 if (local_apps.allowed) {
efe0de09 909 cleanup_sock_info(&local_apps, exiting);
17dfb34b 910 }
efe0de09
MD
911 /*
912 * The teardown in this function all affect data structures
913 * accessed under the UST lock by the listener thread. This
914 * lock, along with the lttng_ust_comm_should_quit flag, ensure
915 * that none of these threads are accessing this data at this
916 * point.
917 */
17dfb34b 918 lttng_ust_abi_exit();
003fedf4 919 lttng_ust_events_exit();
17dfb34b
MD
920 ltt_ring_buffer_client_discard_exit();
921 ltt_ring_buffer_client_overwrite_exit();
922 ltt_ring_buffer_metadata_client_exit();
923 exit_tracepoint();
924 if (!exiting) {
925 /* Reinitialize values for fork */
926 sem_count = 2;
927 lttng_ust_comm_should_quit = 0;
928 initialized = 0;
929 }
930}
931
edaa1431 932void __attribute__((destructor)) lttng_ust_exit(void)
2691221a
MD
933{
934 int ret;
935
9eb62b9c
MD
936 /*
937 * Using pthread_cancel here because:
938 * A) we don't want to hang application teardown.
939 * B) the thread is not allocating any resource.
940 */
1ea11eab
MD
941
942 /*
943 * Require the communication thread to quit. Synchronize with
944 * mutexes to ensure it is not in a mutex critical section when
945 * pthread_cancel is later called.
946 */
17dfb34b 947 ust_lock();
1ea11eab 948 lttng_ust_comm_should_quit = 1;
17dfb34b 949 ust_unlock();
1ea11eab 950
f5f94532 951 /* cancel threads */
1ea11eab 952 ret = pthread_cancel(global_apps.ust_listener);
9eb62b9c
MD
953 if (ret) {
954 ERR("Error cancelling global ust listener thread");
2691221a 955 }
8d20bf54
MD
956 if (local_apps.allowed) {
957 ret = pthread_cancel(local_apps.ust_listener);
958 if (ret) {
959 ERR("Error cancelling local ust listener thread");
960 }
8d20bf54 961 }
efe0de09
MD
962 /*
963 * Do NOT join threads: use of sys_futex makes it impossible to
964 * join the threads without using async-cancel, but async-cancel
965 * is delivered by a signal, which could hit the target thread
966 * anywhere in its code path, including while the ust_lock() is
967 * held, causing a deadlock for the other thread. Let the OS
968 * cleanup the threads if there are stalled in a syscall.
969 */
17dfb34b 970 lttng_ust_cleanup(1);
2691221a 971}
e822f505
MD
972
973/*
974 * We exclude the worker threads across fork and clone (except
975 * CLONE_VM), because these system calls only keep the forking thread
976 * running in the child. Therefore, we don't want to call fork or clone
977 * in the middle of an tracepoint or ust tracing state modification.
978 * Holding this mutex protects these structures across fork and clone.
979 */
b728d87e 980void ust_before_fork(sigset_t *save_sigset)
e822f505
MD
981{
982 /*
983 * Disable signals. This is to avoid that the child intervenes
984 * before it is properly setup for tracing. It is safer to
985 * disable all signals, because then we know we are not breaking
986 * anything by restoring the original mask.
987 */
988 sigset_t all_sigs;
989 int ret;
990
991 /* Disable signals */
992 sigfillset(&all_sigs);
b728d87e 993 ret = sigprocmask(SIG_BLOCK, &all_sigs, save_sigset);
e822f505
MD
994 if (ret == -1) {
995 PERROR("sigprocmask");
996 }
17dfb34b 997 ust_lock();
e822f505
MD
998 rcu_bp_before_fork();
999}
1000
b728d87e 1001static void ust_after_fork_common(sigset_t *restore_sigset)
e822f505
MD
1002{
1003 int ret;
1004
17dfb34b
MD
1005 DBG("process %d", getpid());
1006 ust_unlock();
e822f505 1007 /* Restore signals */
23c8854a 1008 ret = sigprocmask(SIG_SETMASK, restore_sigset, NULL);
e822f505
MD
1009 if (ret == -1) {
1010 PERROR("sigprocmask");
1011 }
1012}
1013
b728d87e 1014void ust_after_fork_parent(sigset_t *restore_sigset)
e822f505 1015{
17dfb34b 1016 DBG("process %d", getpid());
e822f505
MD
1017 rcu_bp_after_fork_parent();
1018 /* Release mutexes and reenable signals */
b728d87e 1019 ust_after_fork_common(restore_sigset);
e822f505
MD
1020}
1021
17dfb34b
MD
1022/*
1023 * After fork, in the child, we need to cleanup all the leftover state,
1024 * except the worker thread which already magically disappeared thanks
1025 * to the weird Linux fork semantics. After tyding up, we call
1026 * lttng_ust_init() again to start over as a new PID.
1027 *
1028 * This is meant for forks() that have tracing in the child between the
1029 * fork and following exec call (if there is any).
1030 */
b728d87e 1031void ust_after_fork_child(sigset_t *restore_sigset)
e822f505 1032{
17dfb34b 1033 DBG("process %d", getpid());
e822f505
MD
1034 /* Release urcu mutexes */
1035 rcu_bp_after_fork_child();
17dfb34b 1036 lttng_ust_cleanup(0);
a93bfc45 1037 lttng_context_vtid_reset();
e822f505 1038 /* Release mutexes and reenable signals */
b728d87e 1039 ust_after_fork_common(restore_sigset);
318dfea9 1040 lttng_ust_init();
e822f505 1041}
This page took 0.077811 seconds and 4 git commands to generate.