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