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