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