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