fbdee7d3af8ea0d8d122ab3e4b3bb8a251ccc9a0
[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/mman.h>
26 #include <sys/stat.h>
27 #include <sys/types.h>
28 #include <sys/wait.h>
29 #include <fcntl.h>
30 #include <unistd.h>
31 #include <errno.h>
32 #include <pthread.h>
33 #include <semaphore.h>
34 #include <time.h>
35 #include <assert.h>
36 #include <signal.h>
37 #include <urcu/uatomic.h>
38 #include <urcu/futex.h>
39 #include <urcu/compiler.h>
40
41 #include <lttng/ust-events.h>
42 #include <lttng/ust-abi.h>
43 #include <lttng/ust.h>
44 #include <lttng/ust-error.h>
45 #include <lttng/ust-ctl.h>
46 #include <urcu/tls-compat.h>
47 #include <ust-comm.h>
48 #include <usterr-signal-safe.h>
49 #include <helper.h>
50 #include "tracepoint-internal.h"
51 #include "lttng-tracer-core.h"
52 #include "compat.h"
53 #include "../libringbuffer/tlsfixup.h"
54 #include "lttng-ust-baddr.h"
55 #include "getenv.h"
56
57 /*
58 * Has lttng ust comm constructor been called ?
59 */
60 static int initialized;
61
62 /*
63 * The ust_lock/ust_unlock lock is used as a communication thread mutex.
64 * Held when handling a command, also held by fork() to deal with
65 * removal of threads, and by exit path.
66 *
67 * The UST lock is the centralized mutex across UST tracing control and
68 * probe registration.
69 *
70 * ust_exit_mutex must never nest in ust_mutex.
71 *
72 * ust_fork_mutex must never nest in ust_mutex.
73 *
74 * ust_mutex_nest is a per-thread nesting counter, allowing the perf
75 * counter lazy initialization called by events within the statedump,
76 * which traces while the ust_mutex is held.
77 *
78 * ust_lock nests within the dynamic loader lock (within glibc) because
79 * it is taken within the library constructor.
80 */
81 static pthread_mutex_t ust_mutex = PTHREAD_MUTEX_INITIALIZER;
82
83 /* Allow nesting the ust_mutex within the same thread. */
84 static DEFINE_URCU_TLS(int, ust_mutex_nest);
85
86 /*
87 * ust_exit_mutex protects thread_active variable wrt thread exit. It
88 * cannot be done by ust_mutex because pthread_cancel(), which takes an
89 * internal libc lock, cannot nest within ust_mutex.
90 *
91 * It never nests within a ust_mutex.
92 */
93 static pthread_mutex_t ust_exit_mutex = PTHREAD_MUTEX_INITIALIZER;
94
95 /*
96 * ust_fork_mutex protects base address statedump tracing against forks. It
97 * prevents the dynamic loader lock to be taken (by base address statedump
98 * tracing) while a fork is happening, thus preventing deadlock issues with
99 * the dynamic loader lock.
100 */
101 static pthread_mutex_t ust_fork_mutex = PTHREAD_MUTEX_INITIALIZER;
102
103 /* Should the ust comm thread quit ? */
104 static int lttng_ust_comm_should_quit;
105
106 /*
107 * Return 0 on success, -1 if should quit.
108 * The lock is taken in both cases.
109 * Signal-safe.
110 */
111 int ust_lock(void)
112 {
113 sigset_t sig_all_blocked, orig_mask;
114 int ret, oldstate;
115
116 ret = pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &oldstate);
117 if (ret) {
118 ERR("pthread_setcancelstate: %s", strerror(ret));
119 }
120 if (oldstate != PTHREAD_CANCEL_ENABLE) {
121 ERR("pthread_setcancelstate: unexpected oldstate");
122 }
123 sigfillset(&sig_all_blocked);
124 ret = pthread_sigmask(SIG_SETMASK, &sig_all_blocked, &orig_mask);
125 if (ret) {
126 ERR("pthread_sigmask: %s", strerror(ret));
127 }
128 if (!URCU_TLS(ust_mutex_nest)++)
129 pthread_mutex_lock(&ust_mutex);
130 ret = pthread_sigmask(SIG_SETMASK, &orig_mask, NULL);
131 if (ret) {
132 ERR("pthread_sigmask: %s", strerror(ret));
133 }
134 if (lttng_ust_comm_should_quit) {
135 return -1;
136 } else {
137 return 0;
138 }
139 }
140
141 /*
142 * ust_lock_nocheck() can be used in constructors/destructors, because
143 * they are already nested within the dynamic loader lock, and therefore
144 * have exclusive access against execution of liblttng-ust destructor.
145 * Signal-safe.
146 */
147 void ust_lock_nocheck(void)
148 {
149 sigset_t sig_all_blocked, orig_mask;
150 int ret, oldstate;
151
152 ret = pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &oldstate);
153 if (ret) {
154 ERR("pthread_setcancelstate: %s", strerror(ret));
155 }
156 if (oldstate != PTHREAD_CANCEL_ENABLE) {
157 ERR("pthread_setcancelstate: unexpected oldstate");
158 }
159 sigfillset(&sig_all_blocked);
160 ret = pthread_sigmask(SIG_SETMASK, &sig_all_blocked, &orig_mask);
161 if (ret) {
162 ERR("pthread_sigmask: %s", strerror(ret));
163 }
164 if (!URCU_TLS(ust_mutex_nest)++)
165 pthread_mutex_lock(&ust_mutex);
166 ret = pthread_sigmask(SIG_SETMASK, &orig_mask, NULL);
167 if (ret) {
168 ERR("pthread_sigmask: %s", strerror(ret));
169 }
170 }
171
172 /*
173 * Signal-safe.
174 */
175 void ust_unlock(void)
176 {
177 sigset_t sig_all_blocked, orig_mask;
178 int ret, oldstate;
179
180 sigfillset(&sig_all_blocked);
181 ret = pthread_sigmask(SIG_SETMASK, &sig_all_blocked, &orig_mask);
182 if (ret) {
183 ERR("pthread_sigmask: %s", strerror(ret));
184 }
185 if (!--URCU_TLS(ust_mutex_nest))
186 pthread_mutex_unlock(&ust_mutex);
187 ret = pthread_sigmask(SIG_SETMASK, &orig_mask, NULL);
188 if (ret) {
189 ERR("pthread_sigmask: %s", strerror(ret));
190 }
191 ret = pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, &oldstate);
192 if (ret) {
193 ERR("pthread_setcancelstate: %s", strerror(ret));
194 }
195 if (oldstate != PTHREAD_CANCEL_DISABLE) {
196 ERR("pthread_setcancelstate: unexpected oldstate");
197 }
198 }
199
200 /*
201 * Wait for either of these before continuing to the main
202 * program:
203 * - the register_done message from sessiond daemon
204 * (will let the sessiond daemon enable sessions before main
205 * starts.)
206 * - sessiond daemon is not reachable.
207 * - timeout (ensuring applications are resilient to session
208 * daemon problems).
209 */
210 static sem_t constructor_wait;
211 /*
212 * Doing this for both the global and local sessiond.
213 */
214 static int sem_count = { 2 };
215
216 /*
217 * Counting nesting within lttng-ust. Used to ensure that calling fork()
218 * from liblttng-ust does not execute the pre/post fork handlers.
219 */
220 static DEFINE_URCU_TLS(int, lttng_ust_nest_count);
221
222 /*
223 * Info about socket and associated listener thread.
224 */
225 struct sock_info {
226 const char *name;
227 pthread_t ust_listener; /* listener thread */
228 int root_handle;
229 int constructor_sem_posted;
230 int allowed;
231 int global;
232 int thread_active;
233
234 char sock_path[PATH_MAX];
235 int socket;
236 int notify_socket;
237
238 char wait_shm_path[PATH_MAX];
239 char *wait_shm_mmap;
240 /* Keep track of lazy state dump not performed yet. */
241 int statedump_pending;
242 };
243
244 /* Socket from app (connect) to session daemon (listen) for communication */
245 struct sock_info global_apps = {
246 .name = "global",
247 .global = 1,
248
249 .root_handle = -1,
250 .allowed = 1,
251 .thread_active = 0,
252
253 .sock_path = LTTNG_DEFAULT_RUNDIR "/" LTTNG_UST_SOCK_FILENAME,
254 .socket = -1,
255 .notify_socket = -1,
256
257 .wait_shm_path = "/" LTTNG_UST_WAIT_FILENAME,
258
259 .statedump_pending = 0,
260 };
261
262 /* TODO: allow global_apps_sock_path override */
263
264 struct sock_info local_apps = {
265 .name = "local",
266 .global = 0,
267 .root_handle = -1,
268 .allowed = 0, /* Check setuid bit first */
269 .thread_active = 0,
270
271 .socket = -1,
272 .notify_socket = -1,
273
274 .statedump_pending = 0,
275 };
276
277 static int wait_poll_fallback;
278
279 static const char *cmd_name_mapping[] = {
280 [ LTTNG_UST_RELEASE ] = "Release",
281 [ LTTNG_UST_SESSION ] = "Create Session",
282 [ LTTNG_UST_TRACER_VERSION ] = "Get Tracer Version",
283
284 [ LTTNG_UST_TRACEPOINT_LIST ] = "Create Tracepoint List",
285 [ LTTNG_UST_WAIT_QUIESCENT ] = "Wait for Quiescent State",
286 [ LTTNG_UST_REGISTER_DONE ] = "Registration Done",
287 [ LTTNG_UST_TRACEPOINT_FIELD_LIST ] = "Create Tracepoint Field List",
288
289 /* Session FD commands */
290 [ LTTNG_UST_CHANNEL ] = "Create Channel",
291 [ LTTNG_UST_SESSION_START ] = "Start Session",
292 [ LTTNG_UST_SESSION_STOP ] = "Stop Session",
293
294 /* Channel FD commands */
295 [ LTTNG_UST_STREAM ] = "Create Stream",
296 [ LTTNG_UST_EVENT ] = "Create Event",
297
298 /* Event and Channel FD commands */
299 [ LTTNG_UST_CONTEXT ] = "Create Context",
300 [ LTTNG_UST_FLUSH_BUFFER ] = "Flush Buffer",
301
302 /* Event, Channel and Session commands */
303 [ LTTNG_UST_ENABLE ] = "Enable",
304 [ LTTNG_UST_DISABLE ] = "Disable",
305
306 /* Tracepoint list commands */
307 [ LTTNG_UST_TRACEPOINT_LIST_GET ] = "List Next Tracepoint",
308 [ LTTNG_UST_TRACEPOINT_FIELD_LIST_GET ] = "List Next Tracepoint Field",
309
310 /* Event FD commands */
311 [ LTTNG_UST_FILTER ] = "Create Filter",
312 [ LTTNG_UST_EXCLUSION ] = "Add exclusions to event",
313 };
314
315 static const char *str_timeout;
316 static int got_timeout_env;
317
318 extern void lttng_ring_buffer_client_overwrite_init(void);
319 extern void lttng_ring_buffer_client_overwrite_rt_init(void);
320 extern void lttng_ring_buffer_client_discard_init(void);
321 extern void lttng_ring_buffer_client_discard_rt_init(void);
322 extern void lttng_ring_buffer_metadata_client_init(void);
323 extern void lttng_ring_buffer_client_overwrite_exit(void);
324 extern void lttng_ring_buffer_client_overwrite_rt_exit(void);
325 extern void lttng_ring_buffer_client_discard_exit(void);
326 extern void lttng_ring_buffer_client_discard_rt_exit(void);
327 extern void lttng_ring_buffer_metadata_client_exit(void);
328
329 /*
330 * Returns the HOME directory path. Caller MUST NOT free(3) the returned
331 * pointer.
332 */
333 static
334 const char *get_lttng_home_dir(void)
335 {
336 const char *val;
337
338 val = (const char *) lttng_secure_getenv("LTTNG_HOME");
339 if (val != NULL) {
340 return val;
341 }
342 return (const char *) lttng_secure_getenv("HOME");
343 }
344
345 /*
346 * Force a read (imply TLS fixup for dlopen) of TLS variables.
347 */
348 static
349 void lttng_fixup_nest_count_tls(void)
350 {
351 asm volatile ("" : : "m" (URCU_TLS(lttng_ust_nest_count)));
352 }
353
354 static
355 void lttng_fixup_ust_mutex_nest_tls(void)
356 {
357 asm volatile ("" : : "m" (URCU_TLS(ust_mutex_nest)));
358 }
359
360 /*
361 * Fixup urcu bp TLS.
362 */
363 static
364 void lttng_fixup_urcu_bp_tls(void)
365 {
366 rcu_read_lock();
367 rcu_read_unlock();
368 }
369
370 int lttng_get_notify_socket(void *owner)
371 {
372 struct sock_info *info = owner;
373
374 return info->notify_socket;
375 }
376
377 static
378 void print_cmd(int cmd, int handle)
379 {
380 const char *cmd_name = "Unknown";
381
382 if (cmd >= 0 && cmd < LTTNG_ARRAY_SIZE(cmd_name_mapping)
383 && cmd_name_mapping[cmd]) {
384 cmd_name = cmd_name_mapping[cmd];
385 }
386 DBG("Message Received \"%s\" (%d), Handle \"%s\" (%d)",
387 cmd_name, cmd,
388 lttng_ust_obj_get_name(handle), handle);
389 }
390
391 static
392 int setup_local_apps(void)
393 {
394 const char *home_dir;
395 uid_t uid;
396
397 uid = getuid();
398 /*
399 * Disallow per-user tracing for setuid binaries.
400 */
401 if (uid != geteuid()) {
402 assert(local_apps.allowed == 0);
403 return 0;
404 }
405 home_dir = get_lttng_home_dir();
406 if (!home_dir) {
407 WARN("HOME environment variable not set. Disabling LTTng-UST per-user tracing.");
408 assert(local_apps.allowed == 0);
409 return -ENOENT;
410 }
411 local_apps.allowed = 1;
412 snprintf(local_apps.sock_path, PATH_MAX, "%s/%s/%s",
413 home_dir,
414 LTTNG_DEFAULT_HOME_RUNDIR,
415 LTTNG_UST_SOCK_FILENAME);
416 snprintf(local_apps.wait_shm_path, PATH_MAX, "/%s-%u",
417 LTTNG_UST_WAIT_FILENAME,
418 uid);
419 return 0;
420 }
421
422 /*
423 * Get notify_sock timeout, in ms.
424 * -1: wait forever. 0: don't wait. >0: timeout, in ms.
425 */
426 static
427 long get_timeout(void)
428 {
429 long constructor_delay_ms = LTTNG_UST_DEFAULT_CONSTRUCTOR_TIMEOUT_MS;
430
431 if (!got_timeout_env) {
432 str_timeout = getenv("LTTNG_UST_REGISTER_TIMEOUT");
433 got_timeout_env = 1;
434 }
435 if (str_timeout)
436 constructor_delay_ms = strtol(str_timeout, NULL, 10);
437 return constructor_delay_ms;
438 }
439
440 static
441 long get_notify_sock_timeout(void)
442 {
443 return get_timeout();
444 }
445
446 /*
447 * Return values: -1: wait forever. 0: don't wait. 1: timeout wait.
448 */
449 static
450 int get_constructor_timeout(struct timespec *constructor_timeout)
451 {
452 long constructor_delay_ms;
453 int ret;
454
455 constructor_delay_ms = get_timeout();
456
457 switch (constructor_delay_ms) {
458 case -1:/* fall-through */
459 case 0:
460 return constructor_delay_ms;
461 default:
462 break;
463 }
464
465 /*
466 * If we are unable to find the current time, don't wait.
467 */
468 ret = clock_gettime(CLOCK_REALTIME, constructor_timeout);
469 if (ret) {
470 /* Don't wait. */
471 return 0;
472 }
473 constructor_timeout->tv_sec += constructor_delay_ms / 1000UL;
474 constructor_timeout->tv_nsec +=
475 (constructor_delay_ms % 1000UL) * 1000000UL;
476 if (constructor_timeout->tv_nsec >= 1000000000UL) {
477 constructor_timeout->tv_sec++;
478 constructor_timeout->tv_nsec -= 1000000000UL;
479 }
480 /* Timeout wait (constructor_delay_ms). */
481 return 1;
482 }
483
484 static
485 int register_to_sessiond(int socket, enum ustctl_socket_type type)
486 {
487 return ustcomm_send_reg_msg(socket,
488 type,
489 CAA_BITS_PER_LONG,
490 lttng_alignof(uint8_t) * CHAR_BIT,
491 lttng_alignof(uint16_t) * CHAR_BIT,
492 lttng_alignof(uint32_t) * CHAR_BIT,
493 lttng_alignof(uint64_t) * CHAR_BIT,
494 lttng_alignof(unsigned long) * CHAR_BIT);
495 }
496
497 static
498 int send_reply(int sock, struct ustcomm_ust_reply *lur)
499 {
500 ssize_t len;
501
502 len = ustcomm_send_unix_sock(sock, lur, sizeof(*lur));
503 switch (len) {
504 case sizeof(*lur):
505 DBG("message successfully sent");
506 return 0;
507 default:
508 if (len == -ECONNRESET) {
509 DBG("remote end closed connection");
510 return 0;
511 }
512 if (len < 0)
513 return len;
514 DBG("incorrect message size: %zd", len);
515 return -EINVAL;
516 }
517 }
518
519 static
520 int handle_register_done(struct sock_info *sock_info)
521 {
522 int ret;
523
524 if (sock_info->constructor_sem_posted)
525 return 0;
526 sock_info->constructor_sem_posted = 1;
527 if (uatomic_read(&sem_count) <= 0) {
528 return 0;
529 }
530 ret = uatomic_add_return(&sem_count, -1);
531 if (ret == 0) {
532 ret = sem_post(&constructor_wait);
533 assert(!ret);
534 }
535 return 0;
536 }
537
538 /*
539 * Only execute pending statedump after the constructor semaphore has
540 * been posted by each listener thread. This means statedump will only
541 * be performed after the "registration done" command is received from
542 * each session daemon the application is connected to.
543 *
544 * This ensures we don't run into deadlock issues with the dynamic
545 * loader mutex, which is held while the constructor is called and
546 * waiting on the constructor semaphore. All operations requiring this
547 * dynamic loader lock need to be postponed using this mechanism.
548 */
549 static
550 void handle_pending_statedump(struct sock_info *sock_info)
551 {
552 int ctor_passed = sock_info->constructor_sem_posted;
553
554 if (ctor_passed && sock_info->statedump_pending) {
555 sock_info->statedump_pending = 0;
556 pthread_mutex_lock(&ust_fork_mutex);
557 lttng_handle_pending_statedump(sock_info);
558 pthread_mutex_unlock(&ust_fork_mutex);
559 }
560 }
561
562 static
563 int handle_message(struct sock_info *sock_info,
564 int sock, struct ustcomm_ust_msg *lum)
565 {
566 int ret = 0;
567 const struct lttng_ust_objd_ops *ops;
568 struct ustcomm_ust_reply lur;
569 union ust_args args;
570 ssize_t len;
571
572 memset(&lur, 0, sizeof(lur));
573
574 if (ust_lock()) {
575 ret = -LTTNG_UST_ERR_EXITING;
576 goto error;
577 }
578
579 ops = objd_ops(lum->handle);
580 if (!ops) {
581 ret = -ENOENT;
582 goto error;
583 }
584
585 switch (lum->cmd) {
586 case LTTNG_UST_REGISTER_DONE:
587 if (lum->handle == LTTNG_UST_ROOT_HANDLE)
588 ret = handle_register_done(sock_info);
589 else
590 ret = -EINVAL;
591 break;
592 case LTTNG_UST_RELEASE:
593 if (lum->handle == LTTNG_UST_ROOT_HANDLE)
594 ret = -EPERM;
595 else
596 ret = lttng_ust_objd_unref(lum->handle, 1);
597 break;
598 case LTTNG_UST_FILTER:
599 {
600 /* Receive filter data */
601 struct lttng_ust_filter_bytecode_node *bytecode;
602
603 if (lum->u.filter.data_size > FILTER_BYTECODE_MAX_LEN) {
604 ERR("Filter data size is too large: %u bytes",
605 lum->u.filter.data_size);
606 ret = -EINVAL;
607 goto error;
608 }
609
610 if (lum->u.filter.reloc_offset > lum->u.filter.data_size) {
611 ERR("Filter reloc offset %u is not within data",
612 lum->u.filter.reloc_offset);
613 ret = -EINVAL;
614 goto error;
615 }
616
617 bytecode = zmalloc(sizeof(*bytecode) + lum->u.filter.data_size);
618 if (!bytecode) {
619 ret = -ENOMEM;
620 goto error;
621 }
622 len = ustcomm_recv_unix_sock(sock, bytecode->bc.data,
623 lum->u.filter.data_size);
624 switch (len) {
625 case 0: /* orderly shutdown */
626 ret = 0;
627 free(bytecode);
628 goto error;
629 default:
630 if (len == lum->u.filter.data_size) {
631 DBG("filter data received");
632 break;
633 } else if (len < 0) {
634 DBG("Receive failed from lttng-sessiond with errno %d", (int) -len);
635 if (len == -ECONNRESET) {
636 ERR("%s remote end closed connection", sock_info->name);
637 ret = len;
638 free(bytecode);
639 goto error;
640 }
641 ret = len;
642 free(bytecode);
643 goto error;
644 } else {
645 DBG("incorrect filter data message size: %zd", len);
646 ret = -EINVAL;
647 free(bytecode);
648 goto error;
649 }
650 }
651 bytecode->bc.len = lum->u.filter.data_size;
652 bytecode->bc.reloc_offset = lum->u.filter.reloc_offset;
653 bytecode->bc.seqnum = lum->u.filter.seqnum;
654 if (ops->cmd) {
655 ret = ops->cmd(lum->handle, lum->cmd,
656 (unsigned long) bytecode,
657 &args, sock_info);
658 if (ret) {
659 free(bytecode);
660 }
661 /* don't free bytecode if everything went fine. */
662 } else {
663 ret = -ENOSYS;
664 free(bytecode);
665 }
666 break;
667 }
668 case LTTNG_UST_EXCLUSION:
669 {
670 /* Receive exclusion names */
671 struct lttng_ust_excluder_node *node;
672 unsigned int count;
673
674 count = lum->u.exclusion.count;
675 if (count == 0) {
676 /* There are no names to read */
677 ret = 0;
678 goto error;
679 }
680 node = zmalloc(sizeof(*node) +
681 count * LTTNG_UST_SYM_NAME_LEN);
682 if (!node) {
683 ret = -ENOMEM;
684 goto error;
685 }
686 node->excluder.count = count;
687 len = ustcomm_recv_unix_sock(sock, node->excluder.names,
688 count * LTTNG_UST_SYM_NAME_LEN);
689 switch (len) {
690 case 0: /* orderly shutdown */
691 ret = 0;
692 free(node);
693 goto error;
694 default:
695 if (len == count * LTTNG_UST_SYM_NAME_LEN) {
696 DBG("Exclusion data received");
697 break;
698 } else if (len < 0) {
699 DBG("Receive failed from lttng-sessiond with errno %d", (int) -len);
700 if (len == -ECONNRESET) {
701 ERR("%s remote end closed connection", sock_info->name);
702 ret = len;
703 free(node);
704 goto error;
705 }
706 ret = len;
707 free(node);
708 goto error;
709 } else {
710 DBG("Incorrect exclusion data message size: %zd", len);
711 ret = -EINVAL;
712 free(node);
713 goto error;
714 }
715 }
716 if (ops->cmd) {
717 ret = ops->cmd(lum->handle, lum->cmd,
718 (unsigned long) node,
719 &args, sock_info);
720 if (ret) {
721 free(node);
722 }
723 /* Don't free exclusion data if everything went fine. */
724 } else {
725 ret = -ENOSYS;
726 free(node);
727 }
728 break;
729 }
730 case LTTNG_UST_CHANNEL:
731 {
732 void *chan_data;
733 int wakeup_fd;
734
735 len = ustcomm_recv_channel_from_sessiond(sock,
736 &chan_data, lum->u.channel.len,
737 &wakeup_fd);
738 switch (len) {
739 case 0: /* orderly shutdown */
740 ret = 0;
741 goto error;
742 default:
743 if (len == lum->u.channel.len) {
744 DBG("channel data received");
745 break;
746 } else if (len < 0) {
747 DBG("Receive failed from lttng-sessiond with errno %d", (int) -len);
748 if (len == -ECONNRESET) {
749 ERR("%s remote end closed connection", sock_info->name);
750 ret = len;
751 goto error;
752 }
753 ret = len;
754 goto error;
755 } else {
756 DBG("incorrect channel data message size: %zd", len);
757 ret = -EINVAL;
758 goto error;
759 }
760 }
761 args.channel.chan_data = chan_data;
762 args.channel.wakeup_fd = wakeup_fd;
763 if (ops->cmd)
764 ret = ops->cmd(lum->handle, lum->cmd,
765 (unsigned long) &lum->u,
766 &args, sock_info);
767 else
768 ret = -ENOSYS;
769 break;
770 }
771 case LTTNG_UST_STREAM:
772 {
773 /* Receive shm_fd, wakeup_fd */
774 ret = ustcomm_recv_stream_from_sessiond(sock,
775 &lum->u.stream.len,
776 &args.stream.shm_fd,
777 &args.stream.wakeup_fd);
778 if (ret) {
779 goto error;
780 }
781 if (ops->cmd)
782 ret = ops->cmd(lum->handle, lum->cmd,
783 (unsigned long) &lum->u,
784 &args, sock_info);
785 else
786 ret = -ENOSYS;
787 break;
788 }
789 default:
790 if (ops->cmd)
791 ret = ops->cmd(lum->handle, lum->cmd,
792 (unsigned long) &lum->u,
793 &args, sock_info);
794 else
795 ret = -ENOSYS;
796 break;
797 }
798
799 lur.handle = lum->handle;
800 lur.cmd = lum->cmd;
801 lur.ret_val = ret;
802 if (ret >= 0) {
803 lur.ret_code = LTTNG_UST_OK;
804 } else {
805 /*
806 * Use -LTTNG_UST_ERR as wildcard for UST internal
807 * error that are not caused by the transport, except if
808 * we already have a more precise error message to
809 * report.
810 */
811 if (ret > -LTTNG_UST_ERR) {
812 /* Translate code to UST error. */
813 switch (ret) {
814 case -EEXIST:
815 lur.ret_code = -LTTNG_UST_ERR_EXIST;
816 break;
817 case -EINVAL:
818 lur.ret_code = -LTTNG_UST_ERR_INVAL;
819 break;
820 case -ENOENT:
821 lur.ret_code = -LTTNG_UST_ERR_NOENT;
822 break;
823 case -EPERM:
824 lur.ret_code = -LTTNG_UST_ERR_PERM;
825 break;
826 case -ENOSYS:
827 lur.ret_code = -LTTNG_UST_ERR_NOSYS;
828 break;
829 default:
830 lur.ret_code = -LTTNG_UST_ERR;
831 break;
832 }
833 } else {
834 lur.ret_code = ret;
835 }
836 }
837 if (ret >= 0) {
838 switch (lum->cmd) {
839 case LTTNG_UST_TRACER_VERSION:
840 lur.u.version = lum->u.version;
841 break;
842 case LTTNG_UST_TRACEPOINT_LIST_GET:
843 memcpy(&lur.u.tracepoint, &lum->u.tracepoint, sizeof(lur.u.tracepoint));
844 break;
845 }
846 }
847 DBG("Return value: %d", lur.ret_val);
848 ret = send_reply(sock, &lur);
849 if (ret < 0) {
850 DBG("error sending reply");
851 goto error;
852 }
853
854 /*
855 * LTTNG_UST_TRACEPOINT_FIELD_LIST_GET needs to send the field
856 * after the reply.
857 */
858 if (lur.ret_code == LTTNG_UST_OK) {
859 switch (lum->cmd) {
860 case LTTNG_UST_TRACEPOINT_FIELD_LIST_GET:
861 len = ustcomm_send_unix_sock(sock,
862 &args.field_list.entry,
863 sizeof(args.field_list.entry));
864 if (len < 0) {
865 ret = len;
866 goto error;
867 }
868 if (len != sizeof(args.field_list.entry)) {
869 ret = -EINVAL;
870 goto error;
871 }
872 }
873 }
874
875 error:
876 ust_unlock();
877
878 /*
879 * Performed delayed statedump operations outside of the UST
880 * lock. We need to take the dynamic loader lock before we take
881 * the UST lock internally within handle_pending_statedump().
882 */
883 handle_pending_statedump(sock_info);
884
885 return ret;
886 }
887
888 static
889 void cleanup_sock_info(struct sock_info *sock_info, int exiting)
890 {
891 int ret;
892
893 if (sock_info->root_handle != -1) {
894 ret = lttng_ust_objd_unref(sock_info->root_handle, 1);
895 if (ret) {
896 ERR("Error unref root handle");
897 }
898 sock_info->root_handle = -1;
899 }
900 sock_info->constructor_sem_posted = 0;
901
902 /*
903 * wait_shm_mmap, socket and notify socket are used by listener
904 * threads outside of the ust lock, so we cannot tear them down
905 * ourselves, because we cannot join on these threads. Leave
906 * responsibility of cleaning up these resources to the OS
907 * process exit.
908 */
909 if (exiting)
910 return;
911
912 if (sock_info->socket != -1) {
913 ret = ustcomm_close_unix_sock(sock_info->socket);
914 if (ret) {
915 ERR("Error closing ust cmd socket");
916 }
917 sock_info->socket = -1;
918 }
919 if (sock_info->notify_socket != -1) {
920 ret = ustcomm_close_unix_sock(sock_info->notify_socket);
921 if (ret) {
922 ERR("Error closing ust notify socket");
923 }
924 sock_info->notify_socket = -1;
925 }
926 if (sock_info->wait_shm_mmap) {
927 long page_size;
928
929 page_size = sysconf(_SC_PAGE_SIZE);
930 if (page_size > 0) {
931 ret = munmap(sock_info->wait_shm_mmap, page_size);
932 if (ret) {
933 ERR("Error unmapping wait shm");
934 }
935 }
936 sock_info->wait_shm_mmap = NULL;
937 }
938 }
939
940 /*
941 * Using fork to set umask in the child process (not multi-thread safe).
942 * We deal with the shm_open vs ftruncate race (happening when the
943 * sessiond owns the shm and does not let everybody modify it, to ensure
944 * safety against shm_unlink) by simply letting the mmap fail and
945 * retrying after a few seconds.
946 * For global shm, everybody has rw access to it until the sessiond
947 * starts.
948 */
949 static
950 int get_wait_shm(struct sock_info *sock_info, size_t mmap_size)
951 {
952 int wait_shm_fd, ret;
953 pid_t pid;
954
955 /*
956 * Try to open read-only.
957 */
958 wait_shm_fd = shm_open(sock_info->wait_shm_path, O_RDONLY, 0);
959 if (wait_shm_fd >= 0) {
960 int32_t tmp_read;
961 ssize_t len;
962 size_t bytes_read = 0;
963
964 /*
965 * Try to read the fd. If unable to do so, try opening
966 * it in write mode.
967 */
968 do {
969 len = read(wait_shm_fd,
970 &((char *) &tmp_read)[bytes_read],
971 sizeof(tmp_read) - bytes_read);
972 if (len > 0) {
973 bytes_read += len;
974 }
975 } while ((len < 0 && errno == EINTR)
976 || (len > 0 && bytes_read < sizeof(tmp_read)));
977 if (bytes_read != sizeof(tmp_read)) {
978 ret = close(wait_shm_fd);
979 if (ret) {
980 ERR("close wait_shm_fd");
981 }
982 goto open_write;
983 }
984 goto end;
985 } else if (wait_shm_fd < 0 && errno != ENOENT) {
986 /*
987 * Real-only open did not work, and it's not because the
988 * entry was not present. It's a failure that prohibits
989 * using shm.
990 */
991 ERR("Error opening shm %s", sock_info->wait_shm_path);
992 goto end;
993 }
994
995 open_write:
996 /*
997 * If the open failed because the file did not exist, or because
998 * the file was not truncated yet, try creating it ourself.
999 */
1000 URCU_TLS(lttng_ust_nest_count)++;
1001 pid = fork();
1002 URCU_TLS(lttng_ust_nest_count)--;
1003 if (pid > 0) {
1004 int status;
1005
1006 /*
1007 * Parent: wait for child to return, in which case the
1008 * shared memory map will have been created.
1009 */
1010 pid = wait(&status);
1011 if (pid < 0 || !WIFEXITED(status) || WEXITSTATUS(status) != 0) {
1012 wait_shm_fd = -1;
1013 goto end;
1014 }
1015 /*
1016 * Try to open read-only again after creation.
1017 */
1018 wait_shm_fd = shm_open(sock_info->wait_shm_path, O_RDONLY, 0);
1019 if (wait_shm_fd < 0) {
1020 /*
1021 * Real-only open did not work. It's a failure
1022 * that prohibits using shm.
1023 */
1024 ERR("Error opening shm %s", sock_info->wait_shm_path);
1025 goto end;
1026 }
1027 goto end;
1028 } else if (pid == 0) {
1029 int create_mode;
1030
1031 /* Child */
1032 create_mode = S_IRUSR | S_IWUSR | S_IRGRP;
1033 if (sock_info->global)
1034 create_mode |= S_IROTH | S_IWGRP | S_IWOTH;
1035 /*
1036 * We're alone in a child process, so we can modify the
1037 * process-wide umask.
1038 */
1039 umask(~create_mode);
1040 /*
1041 * Try creating shm (or get rw access).
1042 * We don't do an exclusive open, because we allow other
1043 * processes to create+ftruncate it concurrently.
1044 */
1045 wait_shm_fd = shm_open(sock_info->wait_shm_path,
1046 O_RDWR | O_CREAT, create_mode);
1047 if (wait_shm_fd >= 0) {
1048 ret = ftruncate(wait_shm_fd, mmap_size);
1049 if (ret) {
1050 PERROR("ftruncate");
1051 _exit(EXIT_FAILURE);
1052 }
1053 _exit(EXIT_SUCCESS);
1054 }
1055 /*
1056 * For local shm, we need to have rw access to accept
1057 * opening it: this means the local sessiond will be
1058 * able to wake us up. For global shm, we open it even
1059 * if rw access is not granted, because the root.root
1060 * sessiond will be able to override all rights and wake
1061 * us up.
1062 */
1063 if (!sock_info->global && errno != EACCES) {
1064 ERR("Error opening shm %s", sock_info->wait_shm_path);
1065 _exit(EXIT_FAILURE);
1066 }
1067 /*
1068 * The shm exists, but we cannot open it RW. Report
1069 * success.
1070 */
1071 _exit(EXIT_SUCCESS);
1072 } else {
1073 return -1;
1074 }
1075 end:
1076 if (wait_shm_fd >= 0 && !sock_info->global) {
1077 struct stat statbuf;
1078
1079 /*
1080 * Ensure that our user is the owner of the shm file for
1081 * local shm. If we do not own the file, it means our
1082 * sessiond will not have access to wake us up (there is
1083 * probably a rogue process trying to fake our
1084 * sessiond). Fallback to polling method in this case.
1085 */
1086 ret = fstat(wait_shm_fd, &statbuf);
1087 if (ret) {
1088 PERROR("fstat");
1089 goto error_close;
1090 }
1091 if (statbuf.st_uid != getuid())
1092 goto error_close;
1093 }
1094 return wait_shm_fd;
1095
1096 error_close:
1097 ret = close(wait_shm_fd);
1098 if (ret) {
1099 PERROR("Error closing fd");
1100 }
1101 return -1;
1102 }
1103
1104 static
1105 char *get_map_shm(struct sock_info *sock_info)
1106 {
1107 long page_size;
1108 int wait_shm_fd, ret;
1109 char *wait_shm_mmap;
1110
1111 page_size = sysconf(_SC_PAGE_SIZE);
1112 if (page_size < 0) {
1113 goto error;
1114 }
1115
1116 wait_shm_fd = get_wait_shm(sock_info, page_size);
1117 if (wait_shm_fd < 0) {
1118 goto error;
1119 }
1120 wait_shm_mmap = mmap(NULL, page_size, PROT_READ,
1121 MAP_SHARED, wait_shm_fd, 0);
1122 /* close shm fd immediately after taking the mmap reference */
1123 ret = close(wait_shm_fd);
1124 if (ret) {
1125 PERROR("Error closing fd");
1126 }
1127 if (wait_shm_mmap == MAP_FAILED) {
1128 DBG("mmap error (can be caused by race with sessiond). Fallback to poll mode.");
1129 goto error;
1130 }
1131 return wait_shm_mmap;
1132
1133 error:
1134 return NULL;
1135 }
1136
1137 static
1138 void wait_for_sessiond(struct sock_info *sock_info)
1139 {
1140 if (ust_lock()) {
1141 goto quit;
1142 }
1143 if (wait_poll_fallback) {
1144 goto error;
1145 }
1146 if (!sock_info->wait_shm_mmap) {
1147 sock_info->wait_shm_mmap = get_map_shm(sock_info);
1148 if (!sock_info->wait_shm_mmap)
1149 goto error;
1150 }
1151 ust_unlock();
1152
1153 DBG("Waiting for %s apps sessiond", sock_info->name);
1154 /* Wait for futex wakeup */
1155 if (uatomic_read((int32_t *) sock_info->wait_shm_mmap))
1156 goto end_wait;
1157
1158 while (futex_async((int32_t *) sock_info->wait_shm_mmap,
1159 FUTEX_WAIT, 0, NULL, NULL, 0)) {
1160 switch (errno) {
1161 case EWOULDBLOCK:
1162 /* Value already changed. */
1163 goto end_wait;
1164 case EINTR:
1165 /* Retry if interrupted by signal. */
1166 break; /* Get out of switch. */
1167 case EFAULT:
1168 wait_poll_fallback = 1;
1169 DBG(
1170 "Linux kernels 2.6.33 to 3.0 (with the exception of stable versions) "
1171 "do not support FUTEX_WAKE on read-only memory mappings correctly. "
1172 "Please upgrade your kernel "
1173 "(fix is commit 9ea71503a8ed9184d2d0b8ccc4d269d05f7940ae in Linux kernel "
1174 "mainline). LTTng-UST will use polling mode fallback.");
1175 if (ust_debug())
1176 PERROR("futex");
1177 goto end_wait;
1178 }
1179 }
1180 end_wait:
1181 return;
1182
1183 quit:
1184 ust_unlock();
1185 return;
1186
1187 error:
1188 ust_unlock();
1189 return;
1190 }
1191
1192 /*
1193 * This thread does not allocate any resource, except within
1194 * handle_message, within mutex protection. This mutex protects against
1195 * fork and exit.
1196 * The other moment it allocates resources is at socket connection, which
1197 * is also protected by the mutex.
1198 */
1199 static
1200 void *ust_listener_thread(void *arg)
1201 {
1202 struct sock_info *sock_info = arg;
1203 int sock, ret, prev_connect_failed = 0, has_waited = 0;
1204 long timeout;
1205
1206 /* Restart trying to connect to the session daemon */
1207 restart:
1208 if (prev_connect_failed) {
1209 /* Wait for sessiond availability with pipe */
1210 wait_for_sessiond(sock_info);
1211 if (has_waited) {
1212 has_waited = 0;
1213 /*
1214 * Sleep for 5 seconds before retrying after a
1215 * sequence of failure / wait / failure. This
1216 * deals with a killed or broken session daemon.
1217 */
1218 sleep(5);
1219 }
1220 has_waited = 1;
1221 prev_connect_failed = 0;
1222 }
1223
1224 if (sock_info->socket != -1) {
1225 ret = ustcomm_close_unix_sock(sock_info->socket);
1226 if (ret) {
1227 ERR("Error closing %s ust cmd socket",
1228 sock_info->name);
1229 }
1230 sock_info->socket = -1;
1231 }
1232 if (sock_info->notify_socket != -1) {
1233 ret = ustcomm_close_unix_sock(sock_info->notify_socket);
1234 if (ret) {
1235 ERR("Error closing %s ust notify socket",
1236 sock_info->name);
1237 }
1238 sock_info->notify_socket = -1;
1239 }
1240
1241 /*
1242 * Register. We need to perform both connect and sending
1243 * registration message before doing the next connect otherwise
1244 * we may reach unix socket connect queue max limits and block
1245 * on the 2nd connect while the session daemon is awaiting the
1246 * first connect registration message.
1247 */
1248 /* Connect cmd socket */
1249 ret = ustcomm_connect_unix_sock(sock_info->sock_path);
1250 if (ret < 0) {
1251 DBG("Info: sessiond not accepting connections to %s apps socket", sock_info->name);
1252 prev_connect_failed = 1;
1253
1254 if (ust_lock()) {
1255 goto quit;
1256 }
1257
1258 /*
1259 * If we cannot find the sessiond daemon, don't delay
1260 * constructor execution.
1261 */
1262 ret = handle_register_done(sock_info);
1263 assert(!ret);
1264 ust_unlock();
1265 goto restart;
1266 }
1267 sock_info->socket = ret;
1268
1269 if (ust_lock()) {
1270 goto quit;
1271 }
1272
1273 /*
1274 * Create only one root handle per listener thread for the whole
1275 * process lifetime, so we ensure we get ID which is statically
1276 * assigned to the root handle.
1277 */
1278 if (sock_info->root_handle == -1) {
1279 ret = lttng_abi_create_root_handle();
1280 if (ret < 0) {
1281 ERR("Error creating root handle");
1282 goto quit;
1283 }
1284 sock_info->root_handle = ret;
1285 }
1286
1287 ret = register_to_sessiond(sock_info->socket, USTCTL_SOCKET_CMD);
1288 if (ret < 0) {
1289 ERR("Error registering to %s ust cmd socket",
1290 sock_info->name);
1291 prev_connect_failed = 1;
1292 /*
1293 * If we cannot register to the sessiond daemon, don't
1294 * delay constructor execution.
1295 */
1296 ret = handle_register_done(sock_info);
1297 assert(!ret);
1298 ust_unlock();
1299 goto restart;
1300 }
1301
1302 ust_unlock();
1303
1304 /* Connect notify socket */
1305 ret = ustcomm_connect_unix_sock(sock_info->sock_path);
1306 if (ret < 0) {
1307 DBG("Info: sessiond not accepting connections to %s apps socket", sock_info->name);
1308 prev_connect_failed = 1;
1309
1310 if (ust_lock()) {
1311 goto quit;
1312 }
1313
1314 /*
1315 * If we cannot find the sessiond daemon, don't delay
1316 * constructor execution.
1317 */
1318 ret = handle_register_done(sock_info);
1319 assert(!ret);
1320 ust_unlock();
1321 goto restart;
1322 }
1323 sock_info->notify_socket = ret;
1324
1325 timeout = get_notify_sock_timeout();
1326 if (timeout >= 0) {
1327 /*
1328 * Give at least 10ms to sessiond to reply to
1329 * notifications.
1330 */
1331 if (timeout < 10)
1332 timeout = 10;
1333 ret = ustcomm_setsockopt_rcv_timeout(sock_info->notify_socket,
1334 timeout);
1335 if (ret < 0) {
1336 WARN("Error setting socket receive timeout");
1337 }
1338 ret = ustcomm_setsockopt_snd_timeout(sock_info->notify_socket,
1339 timeout);
1340 if (ret < 0) {
1341 WARN("Error setting socket send timeout");
1342 }
1343 } else if (timeout < -1) {
1344 WARN("Unsupported timeout value %ld", timeout);
1345 }
1346
1347 if (ust_lock()) {
1348 goto quit;
1349 }
1350
1351 ret = register_to_sessiond(sock_info->notify_socket,
1352 USTCTL_SOCKET_NOTIFY);
1353 if (ret < 0) {
1354 ERR("Error registering to %s ust notify socket",
1355 sock_info->name);
1356 prev_connect_failed = 1;
1357 /*
1358 * If we cannot register to the sessiond daemon, don't
1359 * delay constructor execution.
1360 */
1361 ret = handle_register_done(sock_info);
1362 assert(!ret);
1363 ust_unlock();
1364 goto restart;
1365 }
1366 sock = sock_info->socket;
1367
1368 ust_unlock();
1369
1370 for (;;) {
1371 ssize_t len;
1372 struct ustcomm_ust_msg lum;
1373
1374 len = ustcomm_recv_unix_sock(sock, &lum, sizeof(lum));
1375 switch (len) {
1376 case 0: /* orderly shutdown */
1377 DBG("%s lttng-sessiond has performed an orderly shutdown", sock_info->name);
1378 if (ust_lock()) {
1379 goto quit;
1380 }
1381 /*
1382 * Either sessiond has shutdown or refused us by closing the socket.
1383 * In either case, we don't want to delay construction execution,
1384 * and we need to wait before retry.
1385 */
1386 prev_connect_failed = 1;
1387 /*
1388 * If we cannot register to the sessiond daemon, don't
1389 * delay constructor execution.
1390 */
1391 ret = handle_register_done(sock_info);
1392 assert(!ret);
1393 ust_unlock();
1394 goto end;
1395 case sizeof(lum):
1396 print_cmd(lum.cmd, lum.handle);
1397 ret = handle_message(sock_info, sock, &lum);
1398 if (ret) {
1399 ERR("Error handling message for %s socket",
1400 sock_info->name);
1401 /*
1402 * Close socket if protocol error is
1403 * detected.
1404 */
1405 goto end;
1406 }
1407 continue;
1408 default:
1409 if (len < 0) {
1410 DBG("Receive failed from lttng-sessiond with errno %d", (int) -len);
1411 } else {
1412 DBG("incorrect message size (%s socket): %zd", sock_info->name, len);
1413 }
1414 if (len == -ECONNRESET) {
1415 DBG("%s remote end closed connection", sock_info->name);
1416 goto end;
1417 }
1418 goto end;
1419 }
1420
1421 }
1422 end:
1423 if (ust_lock()) {
1424 goto quit;
1425 }
1426 /* Cleanup socket handles before trying to reconnect */
1427 lttng_ust_objd_table_owner_cleanup(sock_info);
1428 ust_unlock();
1429 goto restart; /* try to reconnect */
1430
1431 quit:
1432 ust_unlock();
1433
1434 pthread_mutex_lock(&ust_exit_mutex);
1435 sock_info->thread_active = 0;
1436 pthread_mutex_unlock(&ust_exit_mutex);
1437 return NULL;
1438 }
1439
1440 /*
1441 * Weak symbol to call when the ust malloc wrapper is not loaded.
1442 */
1443 __attribute__((weak))
1444 void lttng_ust_malloc_wrapper_init(void)
1445 {
1446 }
1447
1448 /*
1449 * sessiond monitoring thread: monitor presence of global and per-user
1450 * sessiond by polling the application common named pipe.
1451 */
1452 void __attribute__((constructor)) lttng_ust_init(void)
1453 {
1454 struct timespec constructor_timeout;
1455 sigset_t sig_all_blocked, orig_parent_mask;
1456 pthread_attr_t thread_attr;
1457 int timeout_mode;
1458 int ret;
1459
1460 if (uatomic_xchg(&initialized, 1) == 1)
1461 return;
1462
1463 /*
1464 * Fixup interdependency between TLS fixup mutex (which happens
1465 * to be the dynamic linker mutex) and ust_lock, taken within
1466 * the ust lock.
1467 */
1468 lttng_fixup_urcu_bp_tls();
1469 lttng_fixup_ringbuffer_tls();
1470 lttng_fixup_vtid_tls();
1471 lttng_fixup_nest_count_tls();
1472 lttng_fixup_procname_tls();
1473 lttng_fixup_ust_mutex_nest_tls();
1474
1475 /*
1476 * We want precise control over the order in which we construct
1477 * our sub-libraries vs starting to receive commands from
1478 * sessiond (otherwise leading to errors when trying to create
1479 * sessiond before the init functions are completed).
1480 */
1481 init_usterr();
1482 init_tracepoint();
1483 lttng_ust_baddr_statedump_init();
1484 lttng_ring_buffer_metadata_client_init();
1485 lttng_ring_buffer_client_overwrite_init();
1486 lttng_ring_buffer_client_overwrite_rt_init();
1487 lttng_ring_buffer_client_discard_init();
1488 lttng_ring_buffer_client_discard_rt_init();
1489 lttng_perf_counter_init();
1490 lttng_context_init();
1491 /*
1492 * Invoke ust malloc wrapper init before starting other threads.
1493 */
1494 lttng_ust_malloc_wrapper_init();
1495
1496 timeout_mode = get_constructor_timeout(&constructor_timeout);
1497
1498 ret = sem_init(&constructor_wait, 0, 0);
1499 assert(!ret);
1500
1501 ret = setup_local_apps();
1502 if (ret) {
1503 DBG("local apps setup returned %d", ret);
1504 }
1505
1506 /* A new thread created by pthread_create inherits the signal mask
1507 * from the parent. To avoid any signal being received by the
1508 * listener thread, we block all signals temporarily in the parent,
1509 * while we create the listener thread.
1510 */
1511 sigfillset(&sig_all_blocked);
1512 ret = pthread_sigmask(SIG_SETMASK, &sig_all_blocked, &orig_parent_mask);
1513 if (ret) {
1514 ERR("pthread_sigmask: %s", strerror(ret));
1515 }
1516
1517 ret = pthread_attr_init(&thread_attr);
1518 if (ret) {
1519 ERR("pthread_attr_init: %s", strerror(ret));
1520 }
1521 ret = pthread_attr_setdetachstate(&thread_attr, PTHREAD_CREATE_DETACHED);
1522 if (ret) {
1523 ERR("pthread_attr_setdetachstate: %s", strerror(ret));
1524 }
1525
1526 pthread_mutex_lock(&ust_exit_mutex);
1527 ret = pthread_create(&global_apps.ust_listener, &thread_attr,
1528 ust_listener_thread, &global_apps);
1529 if (ret) {
1530 ERR("pthread_create global: %s", strerror(ret));
1531 }
1532 global_apps.thread_active = 1;
1533 pthread_mutex_unlock(&ust_exit_mutex);
1534
1535 if (local_apps.allowed) {
1536 pthread_mutex_lock(&ust_exit_mutex);
1537 ret = pthread_create(&local_apps.ust_listener, &thread_attr,
1538 ust_listener_thread, &local_apps);
1539 if (ret) {
1540 ERR("pthread_create local: %s", strerror(ret));
1541 }
1542 local_apps.thread_active = 1;
1543 pthread_mutex_unlock(&ust_exit_mutex);
1544 } else {
1545 handle_register_done(&local_apps);
1546 }
1547 ret = pthread_attr_destroy(&thread_attr);
1548 if (ret) {
1549 ERR("pthread_attr_destroy: %s", strerror(ret));
1550 }
1551
1552 /* Restore original signal mask in parent */
1553 ret = pthread_sigmask(SIG_SETMASK, &orig_parent_mask, NULL);
1554 if (ret) {
1555 ERR("pthread_sigmask: %s", strerror(ret));
1556 }
1557
1558 switch (timeout_mode) {
1559 case 1: /* timeout wait */
1560 do {
1561 ret = sem_timedwait(&constructor_wait,
1562 &constructor_timeout);
1563 } while (ret < 0 && errno == EINTR);
1564 if (ret < 0 && errno == ETIMEDOUT) {
1565 ERR("Timed out waiting for lttng-sessiond");
1566 } else {
1567 assert(!ret);
1568 }
1569 break;
1570 case -1:/* wait forever */
1571 do {
1572 ret = sem_wait(&constructor_wait);
1573 } while (ret < 0 && errno == EINTR);
1574 assert(!ret);
1575 break;
1576 case 0: /* no timeout */
1577 break;
1578 }
1579 }
1580
1581 static
1582 void lttng_ust_cleanup(int exiting)
1583 {
1584 cleanup_sock_info(&global_apps, exiting);
1585 cleanup_sock_info(&local_apps, exiting);
1586 /*
1587 * The teardown in this function all affect data structures
1588 * accessed under the UST lock by the listener thread. This
1589 * lock, along with the lttng_ust_comm_should_quit flag, ensure
1590 * that none of these threads are accessing this data at this
1591 * point.
1592 */
1593 lttng_ust_abi_exit();
1594 lttng_ust_events_exit();
1595 lttng_context_exit();
1596 lttng_perf_counter_exit();
1597 lttng_ring_buffer_client_discard_rt_exit();
1598 lttng_ring_buffer_client_discard_exit();
1599 lttng_ring_buffer_client_overwrite_rt_exit();
1600 lttng_ring_buffer_client_overwrite_exit();
1601 lttng_ring_buffer_metadata_client_exit();
1602 lttng_ust_baddr_statedump_destroy();
1603 exit_tracepoint();
1604 if (!exiting) {
1605 /* Reinitialize values for fork */
1606 sem_count = 2;
1607 lttng_ust_comm_should_quit = 0;
1608 initialized = 0;
1609 }
1610 }
1611
1612 void __attribute__((destructor)) lttng_ust_exit(void)
1613 {
1614 int ret;
1615
1616 /*
1617 * Using pthread_cancel here because:
1618 * A) we don't want to hang application teardown.
1619 * B) the thread is not allocating any resource.
1620 */
1621
1622 /*
1623 * Require the communication thread to quit. Synchronize with
1624 * mutexes to ensure it is not in a mutex critical section when
1625 * pthread_cancel is later called.
1626 */
1627 ust_lock_nocheck();
1628 lttng_ust_comm_should_quit = 1;
1629 ust_unlock();
1630
1631 pthread_mutex_lock(&ust_exit_mutex);
1632 /* cancel threads */
1633 if (global_apps.thread_active) {
1634 ret = pthread_cancel(global_apps.ust_listener);
1635 if (ret) {
1636 ERR("Error cancelling global ust listener thread: %s",
1637 strerror(ret));
1638 } else {
1639 global_apps.thread_active = 0;
1640 }
1641 }
1642 if (local_apps.thread_active) {
1643 ret = pthread_cancel(local_apps.ust_listener);
1644 if (ret) {
1645 ERR("Error cancelling local ust listener thread: %s",
1646 strerror(ret));
1647 } else {
1648 local_apps.thread_active = 0;
1649 }
1650 }
1651 pthread_mutex_unlock(&ust_exit_mutex);
1652
1653 /*
1654 * Do NOT join threads: use of sys_futex makes it impossible to
1655 * join the threads without using async-cancel, but async-cancel
1656 * is delivered by a signal, which could hit the target thread
1657 * anywhere in its code path, including while the ust_lock() is
1658 * held, causing a deadlock for the other thread. Let the OS
1659 * cleanup the threads if there are stalled in a syscall.
1660 */
1661 lttng_ust_cleanup(1);
1662 }
1663
1664 /*
1665 * We exclude the worker threads across fork and clone (except
1666 * CLONE_VM), because these system calls only keep the forking thread
1667 * running in the child. Therefore, we don't want to call fork or clone
1668 * in the middle of an tracepoint or ust tracing state modification.
1669 * Holding this mutex protects these structures across fork and clone.
1670 */
1671 void ust_before_fork(sigset_t *save_sigset)
1672 {
1673 /*
1674 * Disable signals. This is to avoid that the child intervenes
1675 * before it is properly setup for tracing. It is safer to
1676 * disable all signals, because then we know we are not breaking
1677 * anything by restoring the original mask.
1678 */
1679 sigset_t all_sigs;
1680 int ret;
1681
1682 if (URCU_TLS(lttng_ust_nest_count))
1683 return;
1684 /* Disable signals */
1685 sigfillset(&all_sigs);
1686 ret = sigprocmask(SIG_BLOCK, &all_sigs, save_sigset);
1687 if (ret == -1) {
1688 PERROR("sigprocmask");
1689 }
1690
1691 pthread_mutex_lock(&ust_fork_mutex);
1692
1693 ust_lock_nocheck();
1694 rcu_bp_before_fork();
1695 }
1696
1697 static void ust_after_fork_common(sigset_t *restore_sigset)
1698 {
1699 int ret;
1700
1701 DBG("process %d", getpid());
1702 ust_unlock();
1703
1704 pthread_mutex_unlock(&ust_fork_mutex);
1705
1706 /* Restore signals */
1707 ret = sigprocmask(SIG_SETMASK, restore_sigset, NULL);
1708 if (ret == -1) {
1709 PERROR("sigprocmask");
1710 }
1711 }
1712
1713 void ust_after_fork_parent(sigset_t *restore_sigset)
1714 {
1715 if (URCU_TLS(lttng_ust_nest_count))
1716 return;
1717 DBG("process %d", getpid());
1718 rcu_bp_after_fork_parent();
1719 /* Release mutexes and reenable signals */
1720 ust_after_fork_common(restore_sigset);
1721 }
1722
1723 /*
1724 * After fork, in the child, we need to cleanup all the leftover state,
1725 * except the worker thread which already magically disappeared thanks
1726 * to the weird Linux fork semantics. After tyding up, we call
1727 * lttng_ust_init() again to start over as a new PID.
1728 *
1729 * This is meant for forks() that have tracing in the child between the
1730 * fork and following exec call (if there is any).
1731 */
1732 void ust_after_fork_child(sigset_t *restore_sigset)
1733 {
1734 if (URCU_TLS(lttng_ust_nest_count))
1735 return;
1736 DBG("process %d", getpid());
1737 /* Release urcu mutexes */
1738 rcu_bp_after_fork_child();
1739 lttng_ust_cleanup(0);
1740 lttng_context_vtid_reset();
1741 /* Release mutexes and reenable signals */
1742 ust_after_fork_common(restore_sigset);
1743 lttng_ust_init();
1744 }
1745
1746 void lttng_ust_sockinfo_session_enabled(void *owner)
1747 {
1748 struct sock_info *sock_info = owner;
1749 sock_info->statedump_pending = 1;
1750 }
This page took 0.104043 seconds and 3 git commands to generate.