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