Fix 32-bit compile type size warning
[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>
2629549e 25#include <sys/prctl.h>
7fc90dca
MD
26#include <sys/mman.h>
27#include <sys/stat.h>
58d4b2a2
MD
28#include <sys/types.h>
29#include <sys/wait.h>
7fc90dca 30#include <fcntl.h>
2691221a
MD
31#include <unistd.h>
32#include <errno.h>
d9e99d10 33#include <pthread.h>
11ff9c7d
MD
34#include <semaphore.h>
35#include <time.h>
1ea11eab 36#include <assert.h>
e822f505 37#include <signal.h>
95259bd0 38#include <urcu/uatomic.h>
80e2814b 39#include <urcu/futex.h>
c117fb1b 40#include <urcu/compiler.h>
1ea11eab 41
4318ae1b 42#include <lttng/ust-events.h>
4318ae1b 43#include <lttng/ust-abi.h>
4318ae1b 44#include <lttng/ust.h>
44c72f10
MD
45#include <ust-comm.h>
46#include <usterr-signal-safe.h>
47#include "tracepoint-internal.h"
b751f722 48#include "ltt-tracer-core.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;
2629549e 162 int prctl_ret;
2691221a 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;
2629549e
MD
181 prctl_ret = prctl(PR_GET_NAME, (unsigned long) reg_msg.name, 0, 0, 0);
182 if (prctl_ret) {
183 ERR("Error executing prctl");
184 return -errno;
185 }
2691221a 186
57773204 187 ret = ustcomm_send_unix_sock(socket, &reg_msg, sizeof(reg_msg));
2691221a
MD
188 if (ret >= 0 && ret != sizeof(reg_msg))
189 return -EIO;
190 return ret;
191}
192
d9e99d10 193static
57773204 194int send_reply(int sock, struct ustcomm_ust_reply *lur)
d9e99d10 195{
9eb62b9c 196 ssize_t len;
d3a492d1 197
57773204 198 len = ustcomm_send_unix_sock(sock, lur, sizeof(*lur));
d3a492d1 199 switch (len) {
a4be8962 200 case sizeof(*lur):
d3a492d1
MD
201 DBG("message successfully sent");
202 return 0;
203 case -1:
204 if (errno == ECONNRESET) {
205 printf("remote end closed connection\n");
206 return 0;
207 }
208 return -1;
209 default:
210 printf("incorrect message size: %zd\n", len);
211 return -1;
212 }
213}
214
215static
edaa1431 216int handle_register_done(struct sock_info *sock_info)
11ff9c7d
MD
217{
218 int ret;
219
edaa1431
MD
220 if (sock_info->constructor_sem_posted)
221 return 0;
222 sock_info->constructor_sem_posted = 1;
56cd7e2f
MD
223 if (uatomic_read(&sem_count) <= 0) {
224 return 0;
225 }
95259bd0
MD
226 ret = uatomic_add_return(&sem_count, -1);
227 if (ret == 0) {
228 ret = sem_post(&constructor_wait);
229 assert(!ret);
230 }
11ff9c7d
MD
231 return 0;
232}
233
234static
235int handle_message(struct sock_info *sock_info,
57773204 236 int sock, struct ustcomm_ust_msg *lum)
d3a492d1 237{
1ea11eab 238 int ret = 0;
b61ce3b2 239 const struct lttng_ust_objd_ops *ops;
57773204 240 struct ustcomm_ust_reply lur;
193183fb 241 int shm_fd, wait_fd;
1ea11eab 242
17dfb34b 243 ust_lock();
1ea11eab 244
46050b1a
MD
245 memset(&lur, 0, sizeof(lur));
246
1ea11eab 247 if (lttng_ust_comm_should_quit) {
46050b1a 248 ret = -EPERM;
1ea11eab
MD
249 goto end;
250 }
9eb62b9c 251
46050b1a
MD
252 ops = objd_ops(lum->handle);
253 if (!ops) {
254 ret = -ENOENT;
255 goto end;
1ea11eab 256 }
46050b1a
MD
257
258 switch (lum->cmd) {
11ff9c7d
MD
259 case LTTNG_UST_REGISTER_DONE:
260 if (lum->handle == LTTNG_UST_ROOT_HANDLE)
edaa1431 261 ret = handle_register_done(sock_info);
11ff9c7d
MD
262 else
263 ret = -EINVAL;
264 break;
46050b1a
MD
265 case LTTNG_UST_RELEASE:
266 if (lum->handle == LTTNG_UST_ROOT_HANDLE)
267 ret = -EPERM;
268 else
d4419b81 269 ret = lttng_ust_objd_unref(lum->handle);
d9e99d10
MD
270 break;
271 default:
46050b1a
MD
272 if (ops->cmd)
273 ret = ops->cmd(lum->handle, lum->cmd,
274 (unsigned long) &lum->u);
275 else
276 ret = -ENOSYS;
277 break;
d9e99d10 278 }
46050b1a 279
1ea11eab 280end:
46050b1a
MD
281 lur.handle = lum->handle;
282 lur.cmd = lum->cmd;
283 lur.ret_val = ret;
284 if (ret >= 0) {
57773204 285 lur.ret_code = USTCOMM_OK;
46050b1a 286 } else {
57773204 287 //lur.ret_code = USTCOMM_SESSION_FAIL;
193183fb 288 lur.ret_code = ret;
46050b1a 289 }
193183fb
MD
290 switch (lum->cmd) {
291 case LTTNG_UST_STREAM:
381c0f1e
MD
292 /*
293 * Special-case reply to send stream info.
294 * Use lum.u output.
295 */
296 lur.u.stream.memory_map_size = lum->u.stream.memory_map_size;
193183fb
MD
297 shm_fd = lum->u.stream.shm_fd;
298 wait_fd = lum->u.stream.wait_fd;
299 break;
824f40b8 300 case LTTNG_UST_METADATA:
193183fb
MD
301 case LTTNG_UST_CHANNEL:
302 lur.u.channel.memory_map_size = lum->u.channel.memory_map_size;
303 shm_fd = lum->u.channel.shm_fd;
304 wait_fd = lum->u.channel.wait_fd;
305 break;
23c8854a 306 case LTTNG_UST_TRACER_VERSION:
57773204
MD
307 lur.u.version = lum->u.version;
308 break;
b115631f
MD
309 case LTTNG_UST_TRACEPOINT_LIST_GET:
310 memcpy(lur.u.tracepoint_list_entry,
311 lum->u.tracepoint_list_entry,
312 LTTNG_UST_SYM_NAME_LEN);
313 break;
381c0f1e 314 }
46050b1a 315 ret = send_reply(sock, &lur);
193183fb
MD
316 if (ret < 0) {
317 perror("error sending reply");
318 goto error;
319 }
46050b1a 320
824f40b8
MD
321 if ((lum->cmd == LTTNG_UST_STREAM
322 || lum->cmd == LTTNG_UST_CHANNEL
323 || lum->cmd == LTTNG_UST_METADATA)
57773204 324 && lur.ret_code == USTCOMM_OK) {
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");
331 goto error;
332 }
57773204 333 ret = ustcomm_send_fds_unix_sock(sock,
193183fb 334 &wait_fd, &wait_fd,
381c0f1e
MD
335 1, sizeof(int));
336 if (ret < 0) {
337 perror("send wait_fd");
338 goto error;
339 }
340 }
341error:
17dfb34b 342 ust_unlock();
1ea11eab 343 return ret;
d9e99d10
MD
344}
345
46050b1a
MD
346static
347void cleanup_sock_info(struct sock_info *sock_info)
348{
349 int ret;
350
351 if (sock_info->socket != -1) {
352 ret = close(sock_info->socket);
353 if (ret) {
7fc90dca 354 ERR("Error closing apps socket");
46050b1a
MD
355 }
356 sock_info->socket = -1;
357 }
358 if (sock_info->root_handle != -1) {
d4419b81 359 ret = lttng_ust_objd_unref(sock_info->root_handle);
46050b1a
MD
360 if (ret) {
361 ERR("Error unref root handle");
362 }
363 sock_info->root_handle = -1;
364 }
318dfea9 365 sock_info->constructor_sem_posted = 0;
7fc90dca
MD
366 if (sock_info->wait_shm_mmap) {
367 ret = munmap(sock_info->wait_shm_mmap, sysconf(_SC_PAGE_SIZE));
368 if (ret) {
369 ERR("Error unmapping wait shm");
370 }
371 sock_info->wait_shm_mmap = NULL;
372 }
373}
374
58d4b2a2 375/*
33bbeb90
MD
376 * Using fork to set umask in the child process (not multi-thread safe).
377 * We deal with the shm_open vs ftruncate race (happening when the
378 * sessiond owns the shm and does not let everybody modify it, to ensure
379 * safety against shm_unlink) by simply letting the mmap fail and
380 * retrying after a few seconds.
381 * For global shm, everybody has rw access to it until the sessiond
382 * starts.
58d4b2a2 383 */
7fc90dca 384static
58d4b2a2 385int get_wait_shm(struct sock_info *sock_info, size_t mmap_size)
7fc90dca 386{
7fc90dca 387 int wait_shm_fd, ret;
58d4b2a2 388 pid_t pid;
44e073f5 389
58d4b2a2 390 /*
33bbeb90 391 * Try to open read-only.
58d4b2a2 392 */
33bbeb90 393 wait_shm_fd = shm_open(sock_info->wait_shm_path, O_RDONLY, 0);
58d4b2a2
MD
394 if (wait_shm_fd >= 0) {
395 goto end;
396 } else if (wait_shm_fd < 0 && errno != ENOENT) {
397 /*
33bbeb90
MD
398 * Real-only open did not work, and it's not because the
399 * entry was not present. It's a failure that prohibits
400 * using shm.
58d4b2a2 401 */
7fc90dca 402 ERR("Error opening shm %s", sock_info->wait_shm_path);
58d4b2a2 403 goto end;
7fc90dca
MD
404 }
405 /*
58d4b2a2
MD
406 * If the open failed because the file did not exist, try
407 * creating it ourself.
7fc90dca 408 */
58d4b2a2
MD
409 pid = fork();
410 if (pid > 0) {
411 int status;
412
413 /*
414 * Parent: wait for child to return, in which case the
415 * shared memory map will have been created.
416 */
417 pid = wait(&status);
418 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
419 wait_shm_fd = -1;
420 goto end;
7fc90dca 421 }
58d4b2a2
MD
422 /*
423 * Try to open read-only again after creation.
424 */
33bbeb90 425 wait_shm_fd = shm_open(sock_info->wait_shm_path, O_RDONLY, 0);
58d4b2a2
MD
426 if (wait_shm_fd < 0) {
427 /*
428 * Real-only open did not work. It's a failure
429 * that prohibits using shm.
430 */
431 ERR("Error opening shm %s", sock_info->wait_shm_path);
432 goto end;
433 }
434 goto end;
435 } else if (pid == 0) {
436 int create_mode;
437
438 /* Child */
33bbeb90 439 create_mode = S_IRUSR | S_IWUSR | S_IRGRP;
58d4b2a2 440 if (sock_info->global)
33bbeb90 441 create_mode |= S_IROTH | S_IWGRP | S_IWOTH;
58d4b2a2
MD
442 /*
443 * We're alone in a child process, so we can modify the
444 * process-wide umask.
445 */
33bbeb90 446 umask(~create_mode);
58d4b2a2 447 /*
33bbeb90
MD
448 * Try creating shm (or get rw access).
449 * We don't do an exclusive open, because we allow other
450 * processes to create+ftruncate it concurrently.
58d4b2a2
MD
451 */
452 wait_shm_fd = shm_open(sock_info->wait_shm_path,
453 O_RDWR | O_CREAT, create_mode);
454 if (wait_shm_fd >= 0) {
455 ret = ftruncate(wait_shm_fd, mmap_size);
456 if (ret) {
457 PERROR("ftruncate");
458 exit(EXIT_FAILURE);
459 }
58d4b2a2
MD
460 exit(EXIT_SUCCESS);
461 }
33bbeb90
MD
462 /*
463 * For local shm, we need to have rw access to accept
464 * opening it: this means the local sessiond will be
465 * able to wake us up. For global shm, we open it even
466 * if rw access is not granted, because the root.root
467 * sessiond will be able to override all rights and wake
468 * us up.
469 */
470 if (!sock_info->global && errno != EACCES) {
58d4b2a2
MD
471 ERR("Error opening shm %s", sock_info->wait_shm_path);
472 exit(EXIT_FAILURE);
473 }
474 /*
33bbeb90
MD
475 * The shm exists, but we cannot open it RW. Report
476 * success.
58d4b2a2
MD
477 */
478 exit(EXIT_SUCCESS);
479 } else {
480 return -1;
7fc90dca 481 }
58d4b2a2 482end:
33bbeb90
MD
483 if (wait_shm_fd >= 0 && !sock_info->global) {
484 struct stat statbuf;
485
486 /*
487 * Ensure that our user is the owner of the shm file for
488 * local shm. If we do not own the file, it means our
489 * sessiond will not have access to wake us up (there is
490 * probably a rogue process trying to fake our
491 * sessiond). Fallback to polling method in this case.
492 */
493 ret = fstat(wait_shm_fd, &statbuf);
494 if (ret) {
495 PERROR("fstat");
496 goto error_close;
497 }
498 if (statbuf.st_uid != getuid())
499 goto error_close;
500 }
58d4b2a2 501 return wait_shm_fd;
33bbeb90
MD
502
503error_close:
504 ret = close(wait_shm_fd);
505 if (ret) {
506 PERROR("Error closing fd");
507 }
508 return -1;
58d4b2a2
MD
509}
510
511static
512char *get_map_shm(struct sock_info *sock_info)
513{
514 size_t mmap_size = sysconf(_SC_PAGE_SIZE);
515 int wait_shm_fd, ret;
516 char *wait_shm_mmap;
517
518 wait_shm_fd = get_wait_shm(sock_info, mmap_size);
519 if (wait_shm_fd < 0) {
520 goto error;
44e073f5 521 }
7fc90dca
MD
522 wait_shm_mmap = mmap(NULL, mmap_size, PROT_READ,
523 MAP_SHARED, wait_shm_fd, 0);
7fc90dca
MD
524 /* close shm fd immediately after taking the mmap reference */
525 ret = close(wait_shm_fd);
526 if (ret) {
33bbeb90
MD
527 PERROR("Error closing fd");
528 }
529 if (wait_shm_mmap == MAP_FAILED) {
530 DBG("mmap error (can be caused by race with sessiond). Fallback to poll mode.");
531 goto error;
7fc90dca
MD
532 }
533 return wait_shm_mmap;
534
535error:
536 return NULL;
537}
538
539static
540void wait_for_sessiond(struct sock_info *sock_info)
541{
80e2814b
MD
542 int ret;
543
7fc90dca
MD
544 ust_lock();
545 if (lttng_ust_comm_should_quit) {
546 goto quit;
547 }
37ed587a
MD
548 if (wait_poll_fallback) {
549 goto error;
550 }
7fc90dca
MD
551 if (!sock_info->wait_shm_mmap) {
552 sock_info->wait_shm_mmap = get_map_shm(sock_info);
553 if (!sock_info->wait_shm_mmap)
554 goto error;
555 }
556 ust_unlock();
557
558 DBG("Waiting for %s apps sessiond", sock_info->name);
80e2814b
MD
559 /* Wait for futex wakeup */
560 if (uatomic_read((int32_t *) sock_info->wait_shm_mmap) == 0) {
561 ret = futex_async((int32_t *) sock_info->wait_shm_mmap,
562 FUTEX_WAIT, 0, NULL, NULL, 0);
80e2814b 563 if (ret < 0) {
37ed587a
MD
564 if (errno == EFAULT) {
565 wait_poll_fallback = 1;
f0d03086 566 WARN(
37ed587a
MD
567"Linux kernels 2.6.33 to 3.0 (with the exception of stable versions) "
568"do not support FUTEX_WAKE on read-only memory mappings correctly. "
569"Please upgrade your kernel "
570"(fix is commit 9ea71503a8ed9184d2d0b8ccc4d269d05f7940ae in Linux kernel "
571"mainline). LTTng-UST will use polling mode fallback.");
572 }
80e2814b 573 PERROR("futex");
80e2814b
MD
574 }
575 }
7fc90dca
MD
576 return;
577
578quit:
579 ust_unlock();
580 return;
581
582error:
583 ust_unlock();
7fc90dca 584 return;
46050b1a
MD
585}
586
1ea11eab
MD
587/*
588 * This thread does not allocate any resource, except within
589 * handle_message, within mutex protection. This mutex protects against
590 * fork and exit.
591 * The other moment it allocates resources is at socket connexion, which
592 * is also protected by the mutex.
593 */
d9e99d10
MD
594static
595void *ust_listener_thread(void *arg)
596{
1ea11eab 597 struct sock_info *sock_info = arg;
c0eedf81 598 int sock, ret, prev_connect_failed = 0, has_waited = 0;
d9e99d10 599
9eb62b9c
MD
600 /* Restart trying to connect to the session daemon */
601restart:
c0eedf81
MD
602 if (prev_connect_failed) {
603 /* Wait for sessiond availability with pipe */
604 wait_for_sessiond(sock_info);
605 if (has_waited) {
606 has_waited = 0;
607 /*
608 * Sleep for 5 seconds before retrying after a
609 * sequence of failure / wait / failure. This
610 * deals with a killed or broken session daemon.
611 */
612 sleep(5);
613 }
614 has_waited = 1;
615 prev_connect_failed = 0;
616 }
17dfb34b 617 ust_lock();
1ea11eab
MD
618
619 if (lttng_ust_comm_should_quit) {
17dfb34b 620 ust_unlock();
1ea11eab
MD
621 goto quit;
622 }
9eb62b9c 623
1ea11eab
MD
624 if (sock_info->socket != -1) {
625 ret = close(sock_info->socket);
626 if (ret) {
11ff9c7d 627 ERR("Error closing %s apps socket", sock_info->name);
1ea11eab
MD
628 }
629 sock_info->socket = -1;
630 }
46050b1a 631
9eb62b9c 632 /* Register */
57773204 633 ret = ustcomm_connect_unix_sock(sock_info->sock_path);
9eb62b9c 634 if (ret < 0) {
4d3c9523 635 DBG("Info: sessiond not accepting connections to %s apps socket", sock_info->name);
c0eedf81 636 prev_connect_failed = 1;
11ff9c7d
MD
637 /*
638 * If we cannot find the sessiond daemon, don't delay
639 * constructor execution.
640 */
edaa1431 641 ret = handle_register_done(sock_info);
11ff9c7d 642 assert(!ret);
17dfb34b 643 ust_unlock();
1ea11eab 644 goto restart;
46050b1a
MD
645 }
646
647 sock_info->socket = sock = ret;
648
649 /*
650 * Create only one root handle per listener thread for the whole
651 * process lifetime.
652 */
653 if (sock_info->root_handle == -1) {
654 ret = lttng_abi_create_root_handle();
a51070bb 655 if (ret < 0) {
46050b1a 656 ERR("Error creating root handle");
17dfb34b 657 ust_unlock();
46050b1a
MD
658 goto quit;
659 }
660 sock_info->root_handle = ret;
9eb62b9c 661 }
1ea11eab 662
9eb62b9c
MD
663 ret = register_app_to_sessiond(sock);
664 if (ret < 0) {
11ff9c7d 665 ERR("Error registering to %s apps socket", sock_info->name);
c0eedf81 666 prev_connect_failed = 1;
11ff9c7d
MD
667 /*
668 * If we cannot register to the sessiond daemon, don't
669 * delay constructor execution.
670 */
edaa1431 671 ret = handle_register_done(sock_info);
11ff9c7d 672 assert(!ret);
17dfb34b 673 ust_unlock();
9eb62b9c
MD
674 goto restart;
675 }
17dfb34b 676 ust_unlock();
46050b1a 677
d9e99d10
MD
678 for (;;) {
679 ssize_t len;
57773204 680 struct ustcomm_ust_msg lum;
d9e99d10 681
57773204 682 len = ustcomm_recv_unix_sock(sock, &lum, sizeof(lum));
d9e99d10
MD
683 switch (len) {
684 case 0: /* orderly shutdown */
11ff9c7d 685 DBG("%s ltt-sessiond has performed an orderly shutdown\n", sock_info->name);
d9e99d10 686 goto end;
e7723462 687 case sizeof(lum):
d9e99d10 688 DBG("message received\n");
11ff9c7d 689 ret = handle_message(sock_info, sock, &lum);
2a80c9d8 690 if (ret < 0) {
11ff9c7d 691 ERR("Error handling message for %s socket", sock_info->name);
d9e99d10
MD
692 }
693 continue;
694 case -1:
695 if (errno == ECONNRESET) {
11ff9c7d 696 ERR("%s remote end closed connection\n", sock_info->name);
d9e99d10
MD
697 goto end;
698 }
699 goto end;
700 default:
11ff9c7d 701 ERR("incorrect message size (%s socket): %zd\n", sock_info->name, len);
d9e99d10
MD
702 continue;
703 }
704
705 }
706end:
9eb62b9c 707 goto restart; /* try to reconnect */
1ea11eab 708quit:
d9e99d10
MD
709 return NULL;
710}
711
cf12a773
MD
712/*
713 * Return values: -1: don't wait. 0: wait forever. 1: timeout wait.
714 */
11ff9c7d
MD
715static
716int get_timeout(struct timespec *constructor_timeout)
717{
cf12a773
MD
718 long constructor_delay_ms = LTTNG_UST_DEFAULT_CONSTRUCTOR_TIMEOUT_MS;
719 char *str_delay;
11ff9c7d
MD
720 int ret;
721
69400ac4 722 str_delay = getenv("LTTNG_UST_REGISTER_TIMEOUT");
cf12a773
MD
723 if (str_delay) {
724 constructor_delay_ms = strtol(str_delay, NULL, 10);
725 }
726
727 switch (constructor_delay_ms) {
728 case -1:/* fall-through */
729 case 0:
730 return constructor_delay_ms;
731 default:
732 break;
733 }
734
735 /*
736 * If we are unable to find the current time, don't wait.
737 */
738 ret = clock_gettime(CLOCK_REALTIME, constructor_timeout);
739 if (ret) {
740 return -1;
741 }
95259bd0
MD
742 constructor_timeout->tv_sec += constructor_delay_ms / 1000UL;
743 constructor_timeout->tv_nsec +=
744 (constructor_delay_ms % 1000UL) * 1000000UL;
11ff9c7d
MD
745 if (constructor_timeout->tv_nsec >= 1000000000UL) {
746 constructor_timeout->tv_sec++;
747 constructor_timeout->tv_nsec -= 1000000000UL;
748 }
cf12a773 749 return 1;
11ff9c7d 750}
d9e99d10 751
2691221a
MD
752/*
753 * sessiond monitoring thread: monitor presence of global and per-user
754 * sessiond by polling the application common named pipe.
755 */
756/* TODO */
757
edaa1431 758void __attribute__((constructor)) lttng_ust_init(void)
2691221a 759{
11ff9c7d 760 struct timespec constructor_timeout;
cf12a773 761 int timeout_mode;
2691221a
MD
762 int ret;
763
edaa1431
MD
764 if (uatomic_xchg(&initialized, 1) == 1)
765 return;
766
767 /*
768 * We want precise control over the order in which we construct
769 * our sub-libraries vs starting to receive commands from
770 * sessiond (otherwise leading to errors when trying to create
771 * sessiond before the init functions are completed).
772 */
2691221a 773 init_usterr();
edaa1431
MD
774 init_tracepoint();
775 ltt_ring_buffer_metadata_client_init();
776 ltt_ring_buffer_client_overwrite_init();
777 ltt_ring_buffer_client_discard_init();
2691221a 778
cf12a773 779 timeout_mode = get_timeout(&constructor_timeout);
11ff9c7d 780
95259bd0 781 ret = sem_init(&constructor_wait, 0, 0);
11ff9c7d
MD
782 assert(!ret);
783
8d20bf54 784 ret = setup_local_apps();
2691221a 785 if (ret) {
8d20bf54 786 ERR("Error setting up to local apps");
2691221a 787 }
1ea11eab
MD
788 ret = pthread_create(&local_apps.ust_listener, NULL,
789 ust_listener_thread, &local_apps);
11ff9c7d 790
8d20bf54
MD
791 if (local_apps.allowed) {
792 ret = pthread_create(&global_apps.ust_listener, NULL,
793 ust_listener_thread, &global_apps);
794 } else {
795 handle_register_done(&local_apps);
796 }
797
cf12a773
MD
798 switch (timeout_mode) {
799 case 1: /* timeout wait */
95259bd0
MD
800 do {
801 ret = sem_timedwait(&constructor_wait,
802 &constructor_timeout);
803 } while (ret < 0 && errno == EINTR);
cf12a773
MD
804 if (ret < 0 && errno == ETIMEDOUT) {
805 ERR("Timed out waiting for ltt-sessiond");
806 } else {
807 assert(!ret);
808 }
809 break;
7b766b16 810 case -1:/* wait forever */
95259bd0
MD
811 do {
812 ret = sem_wait(&constructor_wait);
813 } while (ret < 0 && errno == EINTR);
11ff9c7d 814 assert(!ret);
cf12a773 815 break;
7b766b16 816 case 0: /* no timeout */
cf12a773 817 break;
11ff9c7d 818 }
2691221a
MD
819}
820
17dfb34b
MD
821static
822void lttng_ust_cleanup(int exiting)
823{
824 cleanup_sock_info(&global_apps);
825 if (local_apps.allowed) {
826 cleanup_sock_info(&local_apps);
827 }
828 lttng_ust_abi_exit();
003fedf4 829 lttng_ust_events_exit();
17dfb34b
MD
830 ltt_ring_buffer_client_discard_exit();
831 ltt_ring_buffer_client_overwrite_exit();
832 ltt_ring_buffer_metadata_client_exit();
833 exit_tracepoint();
834 if (!exiting) {
835 /* Reinitialize values for fork */
836 sem_count = 2;
837 lttng_ust_comm_should_quit = 0;
838 initialized = 0;
839 }
840}
841
edaa1431 842void __attribute__((destructor)) lttng_ust_exit(void)
2691221a
MD
843{
844 int ret;
845
9eb62b9c
MD
846 /*
847 * Using pthread_cancel here because:
848 * A) we don't want to hang application teardown.
849 * B) the thread is not allocating any resource.
850 */
1ea11eab
MD
851
852 /*
853 * Require the communication thread to quit. Synchronize with
854 * mutexes to ensure it is not in a mutex critical section when
855 * pthread_cancel is later called.
856 */
17dfb34b 857 ust_lock();
1ea11eab 858 lttng_ust_comm_should_quit = 1;
17dfb34b 859 ust_unlock();
1ea11eab 860
1ea11eab 861 ret = pthread_cancel(global_apps.ust_listener);
9eb62b9c
MD
862 if (ret) {
863 ERR("Error cancelling global ust listener thread");
2691221a 864 }
8d20bf54
MD
865 if (local_apps.allowed) {
866 ret = pthread_cancel(local_apps.ust_listener);
867 if (ret) {
868 ERR("Error cancelling local ust listener thread");
869 }
8d20bf54 870 }
17dfb34b 871 lttng_ust_cleanup(1);
2691221a 872}
e822f505
MD
873
874/*
875 * We exclude the worker threads across fork and clone (except
876 * CLONE_VM), because these system calls only keep the forking thread
877 * running in the child. Therefore, we don't want to call fork or clone
878 * in the middle of an tracepoint or ust tracing state modification.
879 * Holding this mutex protects these structures across fork and clone.
880 */
b728d87e 881void ust_before_fork(sigset_t *save_sigset)
e822f505
MD
882{
883 /*
884 * Disable signals. This is to avoid that the child intervenes
885 * before it is properly setup for tracing. It is safer to
886 * disable all signals, because then we know we are not breaking
887 * anything by restoring the original mask.
888 */
889 sigset_t all_sigs;
890 int ret;
891
892 /* Disable signals */
893 sigfillset(&all_sigs);
b728d87e 894 ret = sigprocmask(SIG_BLOCK, &all_sigs, save_sigset);
e822f505
MD
895 if (ret == -1) {
896 PERROR("sigprocmask");
897 }
17dfb34b 898 ust_lock();
e822f505
MD
899 rcu_bp_before_fork();
900}
901
b728d87e 902static void ust_after_fork_common(sigset_t *restore_sigset)
e822f505
MD
903{
904 int ret;
905
17dfb34b
MD
906 DBG("process %d", getpid());
907 ust_unlock();
e822f505 908 /* Restore signals */
23c8854a 909 ret = sigprocmask(SIG_SETMASK, restore_sigset, NULL);
e822f505
MD
910 if (ret == -1) {
911 PERROR("sigprocmask");
912 }
913}
914
b728d87e 915void ust_after_fork_parent(sigset_t *restore_sigset)
e822f505 916{
17dfb34b 917 DBG("process %d", getpid());
e822f505
MD
918 rcu_bp_after_fork_parent();
919 /* Release mutexes and reenable signals */
b728d87e 920 ust_after_fork_common(restore_sigset);
e822f505
MD
921}
922
17dfb34b
MD
923/*
924 * After fork, in the child, we need to cleanup all the leftover state,
925 * except the worker thread which already magically disappeared thanks
926 * to the weird Linux fork semantics. After tyding up, we call
927 * lttng_ust_init() again to start over as a new PID.
928 *
929 * This is meant for forks() that have tracing in the child between the
930 * fork and following exec call (if there is any).
931 */
b728d87e 932void ust_after_fork_child(sigset_t *restore_sigset)
e822f505 933{
17dfb34b 934 DBG("process %d", getpid());
e822f505
MD
935 /* Release urcu mutexes */
936 rcu_bp_after_fork_child();
17dfb34b 937 lttng_ust_cleanup(0);
a93bfc45 938 lttng_context_vtid_reset();
e822f505 939 /* Release mutexes and reenable signals */
b728d87e 940 ust_after_fork_common(restore_sigset);
318dfea9 941 lttng_ust_init();
e822f505 942}
This page took 0.071262 seconds and 4 git commands to generate.