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