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