Add compilation support for Tile architectures
[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
2691221a
MD
23#include <sys/types.h>
24#include <sys/socket.h>
7fc90dca
MD
25#include <sys/mman.h>
26#include <sys/stat.h>
58d4b2a2
MD
27#include <sys/types.h>
28#include <sys/wait.h>
7fc90dca 29#include <fcntl.h>
2691221a
MD
30#include <unistd.h>
31#include <errno.h>
d9e99d10 32#include <pthread.h>
11ff9c7d
MD
33#include <semaphore.h>
34#include <time.h>
1ea11eab 35#include <assert.h>
e822f505 36#include <signal.h>
95259bd0 37#include <urcu/uatomic.h>
80e2814b 38#include <urcu/futex.h>
c117fb1b 39#include <urcu/compiler.h>
1ea11eab 40
4318ae1b 41#include <lttng/ust-events.h>
4318ae1b 42#include <lttng/ust-abi.h>
4318ae1b 43#include <lttng/ust.h>
7bc53e94 44#include <lttng/ust-error.h>
44c72f10
MD
45#include <ust-comm.h>
46#include <usterr-signal-safe.h>
cd54f6d9 47#include <helper.h>
44c72f10 48#include "tracepoint-internal.h"
7dd08bec 49#include "lttng-tracer-core.h"
08114193 50#include "compat.h"
f645cfa7 51#include "../libringbuffer/tlsfixup.h"
edaa1431
MD
52
53/*
54 * Has lttng ust comm constructor been called ?
55 */
56static int initialized;
57
1ea11eab 58/*
17dfb34b
MD
59 * The ust_lock/ust_unlock lock is used as a communication thread mutex.
60 * Held when handling a command, also held by fork() to deal with
61 * removal of threads, and by exit path.
1ea11eab 62 */
1ea11eab
MD
63
64/* Should the ust comm thread quit ? */
65static int lttng_ust_comm_should_quit;
66
11ff9c7d
MD
67/*
68 * Wait for either of these before continuing to the main
69 * program:
70 * - the register_done message from sessiond daemon
71 * (will let the sessiond daemon enable sessions before main
72 * starts.)
73 * - sessiond daemon is not reachable.
74 * - timeout (ensuring applications are resilient to session
75 * daemon problems).
76 */
77static sem_t constructor_wait;
950aab0c
MD
78/*
79 * Doing this for both the global and local sessiond.
80 */
95259bd0 81static int sem_count = { 2 };
11ff9c7d 82
e8508a49
MD
83/*
84 * Counting nesting within lttng-ust. Used to ensure that calling fork()
85 * from liblttng-ust does not execute the pre/post fork handlers.
86 */
87static int __thread lttng_ust_nest_count;
88
1ea11eab
MD
89/*
90 * Info about socket and associated listener thread.
91 */
92struct sock_info {
11ff9c7d 93 const char *name;
1ea11eab 94 pthread_t ust_listener; /* listener thread */
46050b1a 95 int root_handle;
8d20bf54
MD
96 int constructor_sem_posted;
97 int allowed;
44e073f5 98 int global;
7fc90dca
MD
99
100 char sock_path[PATH_MAX];
101 int socket;
102
103 char wait_shm_path[PATH_MAX];
104 char *wait_shm_mmap;
1ea11eab 105};
2691221a
MD
106
107/* Socket from app (connect) to session daemon (listen) for communication */
1ea11eab 108struct sock_info global_apps = {
11ff9c7d 109 .name = "global",
44e073f5 110 .global = 1,
7fc90dca 111
46050b1a 112 .root_handle = -1,
8d20bf54 113 .allowed = 1,
7fc90dca
MD
114
115 .sock_path = DEFAULT_GLOBAL_APPS_UNIX_SOCK,
116 .socket = -1,
117
118 .wait_shm_path = DEFAULT_GLOBAL_APPS_WAIT_SHM_PATH,
1ea11eab 119};
2691221a
MD
120
121/* TODO: allow global_apps_sock_path override */
122
1ea11eab 123struct sock_info local_apps = {
11ff9c7d 124 .name = "local",
44e073f5 125 .global = 0,
46050b1a 126 .root_handle = -1,
8d20bf54 127 .allowed = 0, /* Check setuid bit first */
7fc90dca
MD
128
129 .socket = -1,
1ea11eab 130};
2691221a 131
37ed587a
MD
132static int wait_poll_fallback;
133
7dd08bec
MD
134extern void lttng_ring_buffer_client_overwrite_init(void);
135extern void lttng_ring_buffer_client_discard_init(void);
136extern void lttng_ring_buffer_metadata_client_init(void);
137extern void lttng_ring_buffer_client_overwrite_exit(void);
138extern void lttng_ring_buffer_client_discard_exit(void);
139extern void lttng_ring_buffer_metadata_client_exit(void);
edaa1431 140
a903623f
MD
141/*
142 * Force a read (imply TLS fixup for dlopen) of TLS variables.
143 */
144static
145void lttng_fixup_nest_count_tls(void)
146{
147 asm volatile ("" : : "m" (lttng_ust_nest_count));
148}
149
2691221a 150static
8d20bf54 151int setup_local_apps(void)
2691221a
MD
152{
153 const char *home_dir;
7fc90dca 154 uid_t uid;
2691221a 155
7fc90dca 156 uid = getuid();
8d20bf54
MD
157 /*
158 * Disallow per-user tracing for setuid binaries.
159 */
7fc90dca 160 if (uid != geteuid()) {
9ec6895c 161 assert(local_apps.allowed == 0);
d0a1ae63 162 return 0;
8d20bf54 163 }
2691221a 164 home_dir = (const char *) getenv("HOME");
9ec6895c
MD
165 if (!home_dir) {
166 WARN("HOME environment variable not set. Disabling LTTng-UST per-user tracing.");
167 assert(local_apps.allowed == 0);
2691221a 168 return -ENOENT;
9ec6895c
MD
169 }
170 local_apps.allowed = 1;
1ea11eab 171 snprintf(local_apps.sock_path, PATH_MAX,
2691221a 172 DEFAULT_HOME_APPS_UNIX_SOCK, home_dir);
7fc90dca
MD
173 snprintf(local_apps.wait_shm_path, PATH_MAX,
174 DEFAULT_HOME_APPS_WAIT_SHM_PATH, uid);
2691221a
MD
175 return 0;
176}
177
178static
179int register_app_to_sessiond(int socket)
180{
181 ssize_t ret;
182 struct {
e44418f3
MD
183 uint32_t major;
184 uint32_t minor;
2691221a 185 pid_t pid;
5c33bde8 186 pid_t ppid;
2691221a 187 uid_t uid;
83610856 188 gid_t gid;
c117fb1b 189 uint32_t bits_per_long;
2629549e 190 char name[16]; /* process name */
2691221a
MD
191 } reg_msg;
192
e44418f3
MD
193 reg_msg.major = LTTNG_UST_COMM_VERSION_MAJOR;
194 reg_msg.minor = LTTNG_UST_COMM_VERSION_MINOR;
2691221a 195 reg_msg.pid = getpid();
5c33bde8 196 reg_msg.ppid = getppid();
2691221a 197 reg_msg.uid = getuid();
83610856 198 reg_msg.gid = getgid();
c117fb1b 199 reg_msg.bits_per_long = CAA_BITS_PER_LONG;
08114193 200 lttng_ust_getprocname(reg_msg.name);
2691221a 201
57773204 202 ret = ustcomm_send_unix_sock(socket, &reg_msg, sizeof(reg_msg));
2691221a
MD
203 if (ret >= 0 && ret != sizeof(reg_msg))
204 return -EIO;
205 return ret;
206}
207
d9e99d10 208static
57773204 209int send_reply(int sock, struct ustcomm_ust_reply *lur)
d9e99d10 210{
9eb62b9c 211 ssize_t len;
d3a492d1 212
57773204 213 len = ustcomm_send_unix_sock(sock, lur, sizeof(*lur));
d3a492d1 214 switch (len) {
a4be8962 215 case sizeof(*lur):
d3a492d1
MD
216 DBG("message successfully sent");
217 return 0;
7bc53e94
MD
218 default:
219 if (len == -ECONNRESET) {
220 DBG("remote end closed connection");
d3a492d1
MD
221 return 0;
222 }
7bc53e94
MD
223 if (len < 0)
224 return len;
225 DBG("incorrect message size: %zd", len);
226 return -EINVAL;
d3a492d1
MD
227 }
228}
229
230static
edaa1431 231int handle_register_done(struct sock_info *sock_info)
11ff9c7d
MD
232{
233 int ret;
234
edaa1431
MD
235 if (sock_info->constructor_sem_posted)
236 return 0;
237 sock_info->constructor_sem_posted = 1;
56cd7e2f
MD
238 if (uatomic_read(&sem_count) <= 0) {
239 return 0;
240 }
95259bd0
MD
241 ret = uatomic_add_return(&sem_count, -1);
242 if (ret == 0) {
243 ret = sem_post(&constructor_wait);
244 assert(!ret);
245 }
11ff9c7d
MD
246 return 0;
247}
248
249static
250int handle_message(struct sock_info *sock_info,
57773204 251 int sock, struct ustcomm_ust_msg *lum)
d3a492d1 252{
1ea11eab 253 int ret = 0;
b61ce3b2 254 const struct lttng_ust_objd_ops *ops;
57773204 255 struct ustcomm_ust_reply lur;
193183fb 256 int shm_fd, wait_fd;
ef9ff354 257 union ust_args args;
40003310 258 ssize_t len;
1ea11eab 259
17dfb34b 260 ust_lock();
1ea11eab 261
46050b1a
MD
262 memset(&lur, 0, sizeof(lur));
263
1ea11eab 264 if (lttng_ust_comm_should_quit) {
46050b1a 265 ret = -EPERM;
1ea11eab
MD
266 goto end;
267 }
9eb62b9c 268
46050b1a
MD
269 ops = objd_ops(lum->handle);
270 if (!ops) {
271 ret = -ENOENT;
272 goto end;
1ea11eab 273 }
46050b1a
MD
274
275 switch (lum->cmd) {
11ff9c7d
MD
276 case LTTNG_UST_REGISTER_DONE:
277 if (lum->handle == LTTNG_UST_ROOT_HANDLE)
edaa1431 278 ret = handle_register_done(sock_info);
11ff9c7d
MD
279 else
280 ret = -EINVAL;
281 break;
46050b1a
MD
282 case LTTNG_UST_RELEASE:
283 if (lum->handle == LTTNG_UST_ROOT_HANDLE)
284 ret = -EPERM;
285 else
d4419b81 286 ret = lttng_ust_objd_unref(lum->handle);
d9e99d10 287 break;
2d78951a
MD
288 case LTTNG_UST_FILTER:
289 {
290 /* Receive filter data */
f488575f 291 struct lttng_ust_filter_bytecode_node *bytecode;
2d78951a 292
cd54f6d9 293 if (lum->u.filter.data_size > FILTER_BYTECODE_MAX_LEN) {
7bc53e94 294 ERR("Filter data size is too large: %u bytes",
2d78951a
MD
295 lum->u.filter.data_size);
296 ret = -EINVAL;
297 goto error;
298 }
2734ca65 299
885b1dfd 300 if (lum->u.filter.reloc_offset > lum->u.filter.data_size) {
7bc53e94 301 ERR("Filter reloc offset %u is not within data",
2734ca65
CB
302 lum->u.filter.reloc_offset);
303 ret = -EINVAL;
304 goto error;
305 }
306
cd54f6d9
MD
307 bytecode = zmalloc(sizeof(*bytecode) + lum->u.filter.data_size);
308 if (!bytecode) {
309 ret = -ENOMEM;
310 goto error;
311 }
f488575f 312 len = ustcomm_recv_unix_sock(sock, bytecode->bc.data,
2d78951a
MD
313 lum->u.filter.data_size);
314 switch (len) {
315 case 0: /* orderly shutdown */
316 ret = 0;
cd54f6d9 317 free(bytecode);
2d78951a 318 goto error;
2d78951a
MD
319 default:
320 if (len == lum->u.filter.data_size) {
7bc53e94 321 DBG("filter data received");
2d78951a 322 break;
7bc53e94
MD
323 } else if (len < 0) {
324 DBG("Receive failed from lttng-sessiond with errno %d", (int) -len);
325 if (len == -ECONNRESET) {
326 ERR("%s remote end closed connection", sock_info->name);
327 ret = len;
328 free(bytecode);
329 goto error;
330 }
331 ret = len;
332 goto end;
2d78951a 333 } else {
7bc53e94 334 DBG("incorrect filter data message size: %zd", len);
2d78951a 335 ret = -EINVAL;
cd54f6d9 336 free(bytecode);
2d78951a
MD
337 goto end;
338 }
339 }
f488575f
MD
340 bytecode->bc.len = lum->u.filter.data_size;
341 bytecode->bc.reloc_offset = lum->u.filter.reloc_offset;
3f6fd224 342 bytecode->bc.seqnum = lum->u.filter.seqnum;
cd54f6d9 343 if (ops->cmd) {
2d78951a 344 ret = ops->cmd(lum->handle, lum->cmd,
cd54f6d9 345 (unsigned long) bytecode,
f59ed768 346 &args, sock_info);
cd54f6d9
MD
347 if (ret) {
348 free(bytecode);
349 }
350 /* don't free bytecode if everything went fine. */
351 } else {
2d78951a 352 ret = -ENOSYS;
cd54f6d9
MD
353 free(bytecode);
354 }
2d78951a
MD
355 break;
356 }
d9e99d10 357 default:
46050b1a
MD
358 if (ops->cmd)
359 ret = ops->cmd(lum->handle, lum->cmd,
ef9ff354 360 (unsigned long) &lum->u,
f59ed768 361 &args, sock_info);
46050b1a
MD
362 else
363 ret = -ENOSYS;
364 break;
d9e99d10 365 }
46050b1a 366
1ea11eab 367end:
46050b1a
MD
368 lur.handle = lum->handle;
369 lur.cmd = lum->cmd;
370 lur.ret_val = ret;
371 if (ret >= 0) {
7bc53e94 372 lur.ret_code = LTTNG_UST_OK;
46050b1a 373 } else {
7bc53e94
MD
374 /*
375 * Use -LTTNG_UST_ERR as wildcard for UST internal
376 * error that are not caused by the transport, except if
377 * we already have a more precise error message to
378 * report.
379 */
64b2564e
DG
380 if (ret > -LTTNG_UST_ERR) {
381 /* Translate code to UST error. */
382 switch (ret) {
383 case -EEXIST:
384 lur.ret_code = -LTTNG_UST_ERR_EXIST;
385 break;
386 case -EINVAL:
387 lur.ret_code = -LTTNG_UST_ERR_INVAL;
388 break;
389 case -ENOENT:
390 lur.ret_code = -LTTNG_UST_ERR_NOENT;
391 break;
392 case -EPERM:
393 lur.ret_code = -LTTNG_UST_ERR_PERM;
394 break;
395 case -ENOSYS:
396 lur.ret_code = -LTTNG_UST_ERR_NOSYS;
397 break;
398 default:
399 lur.ret_code = -LTTNG_UST_ERR;
400 break;
401 }
402 } else {
7bc53e94 403 lur.ret_code = ret;
64b2564e 404 }
46050b1a 405 }
e6ea14c5
MD
406 if (ret >= 0) {
407 switch (lum->cmd) {
408 case LTTNG_UST_STREAM:
409 /*
410 * Special-case reply to send stream info.
411 * Use lum.u output.
412 */
413 lur.u.stream.memory_map_size = *args.stream.memory_map_size;
414 shm_fd = *args.stream.shm_fd;
415 wait_fd = *args.stream.wait_fd;
416 break;
417 case LTTNG_UST_METADATA:
418 case LTTNG_UST_CHANNEL:
419 lur.u.channel.memory_map_size = *args.channel.memory_map_size;
420 shm_fd = *args.channel.shm_fd;
421 wait_fd = *args.channel.wait_fd;
422 break;
423 case LTTNG_UST_TRACER_VERSION:
424 lur.u.version = lum->u.version;
425 break;
426 case LTTNG_UST_TRACEPOINT_LIST_GET:
427 memcpy(&lur.u.tracepoint, &lum->u.tracepoint, sizeof(lur.u.tracepoint));
428 break;
429 }
381c0f1e 430 }
46050b1a 431 ret = send_reply(sock, &lur);
193183fb 432 if (ret < 0) {
7bc53e94 433 DBG("error sending reply");
193183fb
MD
434 goto error;
435 }
46050b1a 436
824f40b8
MD
437 if ((lum->cmd == LTTNG_UST_STREAM
438 || lum->cmd == LTTNG_UST_CHANNEL
439 || lum->cmd == LTTNG_UST_METADATA)
7bc53e94 440 && lur.ret_code == LTTNG_UST_OK) {
50be2fc4
MD
441 int sendret = 0;
442
381c0f1e 443 /* we also need to send the file descriptors. */
57773204 444 ret = ustcomm_send_fds_unix_sock(sock,
193183fb 445 &shm_fd, &shm_fd,
381c0f1e
MD
446 1, sizeof(int));
447 if (ret < 0) {
7bc53e94 448 ERR("send shm_fd");
50be2fc4 449 sendret = ret;
381c0f1e 450 }
50be2fc4
MD
451 /*
452 * The sessiond expects 2 file descriptors, even upon
453 * error.
454 */
57773204 455 ret = ustcomm_send_fds_unix_sock(sock,
193183fb 456 &wait_fd, &wait_fd,
381c0f1e
MD
457 1, sizeof(int));
458 if (ret < 0) {
459 perror("send wait_fd");
460 goto error;
461 }
50be2fc4
MD
462 if (sendret) {
463 ret = sendret;
464 goto error;
465 }
381c0f1e 466 }
40003310
MD
467 /*
468 * LTTNG_UST_TRACEPOINT_FIELD_LIST_GET needs to send the field
469 * after the reply.
470 */
7bc53e94 471 if (lur.ret_code == LTTNG_UST_OK) {
40003310
MD
472 switch (lum->cmd) {
473 case LTTNG_UST_TRACEPOINT_FIELD_LIST_GET:
474 len = ustcomm_send_unix_sock(sock,
475 &args.field_list.entry,
476 sizeof(args.field_list.entry));
7bc53e94
MD
477 if (len < 0) {
478 ret = len;
479 goto error;
480 }
40003310 481 if (len != sizeof(args.field_list.entry)) {
7bc53e94 482 ret = -EINVAL;
40003310
MD
483 goto error;
484 }
485 }
486 }
ef9ff354
MD
487 /*
488 * We still have the memory map reference, and the fds have been
3ad5f707
MD
489 * sent to the sessiond. We can therefore close those fds. Note
490 * that we keep the write side of the wait_fd open, but close
491 * the read side.
ef9ff354 492 */
7bc53e94 493 if (lur.ret_code == LTTNG_UST_OK) {
ef9ff354
MD
494 switch (lum->cmd) {
495 case LTTNG_UST_STREAM:
496 if (shm_fd >= 0) {
497 ret = close(shm_fd);
498 if (ret) {
499 PERROR("Error closing stream shm_fd");
500 }
501 *args.stream.shm_fd = -1;
502 }
503 if (wait_fd >= 0) {
504 ret = close(wait_fd);
505 if (ret) {
506 PERROR("Error closing stream wait_fd");
507 }
508 *args.stream.wait_fd = -1;
509 }
510 break;
511 case LTTNG_UST_METADATA:
512 case LTTNG_UST_CHANNEL:
513 if (shm_fd >= 0) {
514 ret = close(shm_fd);
515 if (ret) {
516 PERROR("Error closing channel shm_fd");
517 }
518 *args.channel.shm_fd = -1;
519 }
520 if (wait_fd >= 0) {
521 ret = close(wait_fd);
522 if (ret) {
523 PERROR("Error closing channel wait_fd");
524 }
525 *args.channel.wait_fd = -1;
526 }
527 break;
528 }
529 }
530
381c0f1e 531error:
17dfb34b 532 ust_unlock();
1ea11eab 533 return ret;
d9e99d10
MD
534}
535
46050b1a 536static
efe0de09 537void cleanup_sock_info(struct sock_info *sock_info, int exiting)
46050b1a
MD
538{
539 int ret;
540
541 if (sock_info->socket != -1) {
e6973a89 542 ret = ustcomm_close_unix_sock(sock_info->socket);
46050b1a 543 if (ret) {
7fc90dca 544 ERR("Error closing apps socket");
46050b1a
MD
545 }
546 sock_info->socket = -1;
547 }
548 if (sock_info->root_handle != -1) {
d4419b81 549 ret = lttng_ust_objd_unref(sock_info->root_handle);
46050b1a
MD
550 if (ret) {
551 ERR("Error unref root handle");
552 }
553 sock_info->root_handle = -1;
554 }
318dfea9 555 sock_info->constructor_sem_posted = 0;
efe0de09
MD
556 /*
557 * wait_shm_mmap is used by listener threads outside of the
558 * ust lock, so we cannot tear it down ourselves, because we
559 * cannot join on these threads. Leave this task to the OS
560 * process exit.
561 */
562 if (!exiting && sock_info->wait_shm_mmap) {
7fc90dca
MD
563 ret = munmap(sock_info->wait_shm_mmap, sysconf(_SC_PAGE_SIZE));
564 if (ret) {
565 ERR("Error unmapping wait shm");
566 }
567 sock_info->wait_shm_mmap = NULL;
568 }
569}
570
58d4b2a2 571/*
33bbeb90
MD
572 * Using fork to set umask in the child process (not multi-thread safe).
573 * We deal with the shm_open vs ftruncate race (happening when the
574 * sessiond owns the shm and does not let everybody modify it, to ensure
575 * safety against shm_unlink) by simply letting the mmap fail and
576 * retrying after a few seconds.
577 * For global shm, everybody has rw access to it until the sessiond
578 * starts.
58d4b2a2 579 */
7fc90dca 580static
58d4b2a2 581int get_wait_shm(struct sock_info *sock_info, size_t mmap_size)
7fc90dca 582{
7fc90dca 583 int wait_shm_fd, ret;
58d4b2a2 584 pid_t pid;
44e073f5 585
58d4b2a2 586 /*
33bbeb90 587 * Try to open read-only.
58d4b2a2 588 */
33bbeb90 589 wait_shm_fd = shm_open(sock_info->wait_shm_path, O_RDONLY, 0);
58d4b2a2
MD
590 if (wait_shm_fd >= 0) {
591 goto end;
592 } else if (wait_shm_fd < 0 && errno != ENOENT) {
593 /*
33bbeb90
MD
594 * Real-only open did not work, and it's not because the
595 * entry was not present. It's a failure that prohibits
596 * using shm.
58d4b2a2 597 */
7fc90dca 598 ERR("Error opening shm %s", sock_info->wait_shm_path);
58d4b2a2 599 goto end;
7fc90dca
MD
600 }
601 /*
58d4b2a2
MD
602 * If the open failed because the file did not exist, try
603 * creating it ourself.
7fc90dca 604 */
e8508a49 605 lttng_ust_nest_count++;
58d4b2a2 606 pid = fork();
e8508a49 607 lttng_ust_nest_count--;
58d4b2a2
MD
608 if (pid > 0) {
609 int status;
610
611 /*
612 * Parent: wait for child to return, in which case the
613 * shared memory map will have been created.
614 */
615 pid = wait(&status);
b7d3cb32 616 if (pid < 0 || !WIFEXITED(status) || WEXITSTATUS(status) != 0) {
58d4b2a2
MD
617 wait_shm_fd = -1;
618 goto end;
7fc90dca 619 }
58d4b2a2
MD
620 /*
621 * Try to open read-only again after creation.
622 */
33bbeb90 623 wait_shm_fd = shm_open(sock_info->wait_shm_path, O_RDONLY, 0);
58d4b2a2
MD
624 if (wait_shm_fd < 0) {
625 /*
626 * Real-only open did not work. It's a failure
627 * that prohibits using shm.
628 */
629 ERR("Error opening shm %s", sock_info->wait_shm_path);
630 goto end;
631 }
632 goto end;
633 } else if (pid == 0) {
634 int create_mode;
635
636 /* Child */
33bbeb90 637 create_mode = S_IRUSR | S_IWUSR | S_IRGRP;
58d4b2a2 638 if (sock_info->global)
33bbeb90 639 create_mode |= S_IROTH | S_IWGRP | S_IWOTH;
58d4b2a2
MD
640 /*
641 * We're alone in a child process, so we can modify the
642 * process-wide umask.
643 */
33bbeb90 644 umask(~create_mode);
58d4b2a2 645 /*
33bbeb90
MD
646 * Try creating shm (or get rw access).
647 * We don't do an exclusive open, because we allow other
648 * processes to create+ftruncate it concurrently.
58d4b2a2
MD
649 */
650 wait_shm_fd = shm_open(sock_info->wait_shm_path,
651 O_RDWR | O_CREAT, create_mode);
652 if (wait_shm_fd >= 0) {
653 ret = ftruncate(wait_shm_fd, mmap_size);
654 if (ret) {
655 PERROR("ftruncate");
b0c1425d 656 _exit(EXIT_FAILURE);
58d4b2a2 657 }
b0c1425d 658 _exit(EXIT_SUCCESS);
58d4b2a2 659 }
33bbeb90
MD
660 /*
661 * For local shm, we need to have rw access to accept
662 * opening it: this means the local sessiond will be
663 * able to wake us up. For global shm, we open it even
664 * if rw access is not granted, because the root.root
665 * sessiond will be able to override all rights and wake
666 * us up.
667 */
668 if (!sock_info->global && errno != EACCES) {
58d4b2a2 669 ERR("Error opening shm %s", sock_info->wait_shm_path);
5d3bc5ed 670 _exit(EXIT_FAILURE);
58d4b2a2
MD
671 }
672 /*
33bbeb90
MD
673 * The shm exists, but we cannot open it RW. Report
674 * success.
58d4b2a2 675 */
5d3bc5ed 676 _exit(EXIT_SUCCESS);
58d4b2a2
MD
677 } else {
678 return -1;
7fc90dca 679 }
58d4b2a2 680end:
33bbeb90
MD
681 if (wait_shm_fd >= 0 && !sock_info->global) {
682 struct stat statbuf;
683
684 /*
685 * Ensure that our user is the owner of the shm file for
686 * local shm. If we do not own the file, it means our
687 * sessiond will not have access to wake us up (there is
688 * probably a rogue process trying to fake our
689 * sessiond). Fallback to polling method in this case.
690 */
691 ret = fstat(wait_shm_fd, &statbuf);
692 if (ret) {
693 PERROR("fstat");
694 goto error_close;
695 }
696 if (statbuf.st_uid != getuid())
697 goto error_close;
698 }
58d4b2a2 699 return wait_shm_fd;
33bbeb90
MD
700
701error_close:
702 ret = close(wait_shm_fd);
703 if (ret) {
704 PERROR("Error closing fd");
705 }
706 return -1;
58d4b2a2
MD
707}
708
709static
710char *get_map_shm(struct sock_info *sock_info)
711{
712 size_t mmap_size = sysconf(_SC_PAGE_SIZE);
713 int wait_shm_fd, ret;
714 char *wait_shm_mmap;
715
716 wait_shm_fd = get_wait_shm(sock_info, mmap_size);
717 if (wait_shm_fd < 0) {
718 goto error;
44e073f5 719 }
7fc90dca
MD
720 wait_shm_mmap = mmap(NULL, mmap_size, PROT_READ,
721 MAP_SHARED, wait_shm_fd, 0);
7fc90dca
MD
722 /* close shm fd immediately after taking the mmap reference */
723 ret = close(wait_shm_fd);
724 if (ret) {
33bbeb90
MD
725 PERROR("Error closing fd");
726 }
727 if (wait_shm_mmap == MAP_FAILED) {
728 DBG("mmap error (can be caused by race with sessiond). Fallback to poll mode.");
729 goto error;
7fc90dca
MD
730 }
731 return wait_shm_mmap;
732
733error:
734 return NULL;
735}
736
737static
738void wait_for_sessiond(struct sock_info *sock_info)
739{
efe0de09 740 int ret;
80e2814b 741
7fc90dca
MD
742 ust_lock();
743 if (lttng_ust_comm_should_quit) {
744 goto quit;
745 }
37ed587a
MD
746 if (wait_poll_fallback) {
747 goto error;
748 }
7fc90dca
MD
749 if (!sock_info->wait_shm_mmap) {
750 sock_info->wait_shm_mmap = get_map_shm(sock_info);
751 if (!sock_info->wait_shm_mmap)
752 goto error;
753 }
754 ust_unlock();
755
756 DBG("Waiting for %s apps sessiond", sock_info->name);
80e2814b
MD
757 /* Wait for futex wakeup */
758 if (uatomic_read((int32_t *) sock_info->wait_shm_mmap) == 0) {
759 ret = futex_async((int32_t *) sock_info->wait_shm_mmap,
760 FUTEX_WAIT, 0, NULL, NULL, 0);
80e2814b 761 if (ret < 0) {
37ed587a
MD
762 if (errno == EFAULT) {
763 wait_poll_fallback = 1;
a8b870ad 764 DBG(
37ed587a
MD
765"Linux kernels 2.6.33 to 3.0 (with the exception of stable versions) "
766"do not support FUTEX_WAKE on read-only memory mappings correctly. "
767"Please upgrade your kernel "
768"(fix is commit 9ea71503a8ed9184d2d0b8ccc4d269d05f7940ae in Linux kernel "
769"mainline). LTTng-UST will use polling mode fallback.");
cd27263b
MD
770 if (ust_debug())
771 PERROR("futex");
37ed587a 772 }
80e2814b
MD
773 }
774 }
7fc90dca
MD
775 return;
776
777quit:
778 ust_unlock();
779 return;
780
781error:
782 ust_unlock();
7fc90dca 783 return;
46050b1a
MD
784}
785
1ea11eab
MD
786/*
787 * This thread does not allocate any resource, except within
788 * handle_message, within mutex protection. This mutex protects against
789 * fork and exit.
98bf993f 790 * The other moment it allocates resources is at socket connection, which
1ea11eab
MD
791 * is also protected by the mutex.
792 */
d9e99d10
MD
793static
794void *ust_listener_thread(void *arg)
795{
1ea11eab 796 struct sock_info *sock_info = arg;
c0eedf81 797 int sock, ret, prev_connect_failed = 0, has_waited = 0;
d9e99d10 798
9eb62b9c
MD
799 /* Restart trying to connect to the session daemon */
800restart:
c0eedf81
MD
801 if (prev_connect_failed) {
802 /* Wait for sessiond availability with pipe */
803 wait_for_sessiond(sock_info);
804 if (has_waited) {
805 has_waited = 0;
806 /*
807 * Sleep for 5 seconds before retrying after a
808 * sequence of failure / wait / failure. This
809 * deals with a killed or broken session daemon.
810 */
811 sleep(5);
812 }
813 has_waited = 1;
814 prev_connect_failed = 0;
815 }
17dfb34b 816 ust_lock();
1ea11eab
MD
817
818 if (lttng_ust_comm_should_quit) {
17dfb34b 819 ust_unlock();
1ea11eab
MD
820 goto quit;
821 }
9eb62b9c 822
1ea11eab 823 if (sock_info->socket != -1) {
e6973a89 824 ret = ustcomm_close_unix_sock(sock_info->socket);
1ea11eab 825 if (ret) {
11ff9c7d 826 ERR("Error closing %s apps socket", sock_info->name);
1ea11eab
MD
827 }
828 sock_info->socket = -1;
829 }
46050b1a 830
9eb62b9c 831 /* Register */
57773204 832 ret = ustcomm_connect_unix_sock(sock_info->sock_path);
9eb62b9c 833 if (ret < 0) {
4d3c9523 834 DBG("Info: sessiond not accepting connections to %s apps socket", sock_info->name);
c0eedf81 835 prev_connect_failed = 1;
11ff9c7d
MD
836 /*
837 * If we cannot find the sessiond daemon, don't delay
838 * constructor execution.
839 */
edaa1431 840 ret = handle_register_done(sock_info);
11ff9c7d 841 assert(!ret);
17dfb34b 842 ust_unlock();
1ea11eab 843 goto restart;
46050b1a
MD
844 }
845
846 sock_info->socket = sock = ret;
847
848 /*
849 * Create only one root handle per listener thread for the whole
f59ed768
MD
850 * process lifetime, so we ensure we get ID which is statically
851 * assigned to the root handle.
46050b1a
MD
852 */
853 if (sock_info->root_handle == -1) {
854 ret = lttng_abi_create_root_handle();
a51070bb 855 if (ret < 0) {
46050b1a 856 ERR("Error creating root handle");
17dfb34b 857 ust_unlock();
46050b1a
MD
858 goto quit;
859 }
860 sock_info->root_handle = ret;
9eb62b9c 861 }
1ea11eab 862
9eb62b9c
MD
863 ret = register_app_to_sessiond(sock);
864 if (ret < 0) {
11ff9c7d 865 ERR("Error registering to %s apps socket", sock_info->name);
c0eedf81 866 prev_connect_failed = 1;
11ff9c7d
MD
867 /*
868 * If we cannot register to the sessiond daemon, don't
869 * delay constructor execution.
870 */
edaa1431 871 ret = handle_register_done(sock_info);
11ff9c7d 872 assert(!ret);
17dfb34b 873 ust_unlock();
9eb62b9c
MD
874 goto restart;
875 }
17dfb34b 876 ust_unlock();
46050b1a 877
d9e99d10
MD
878 for (;;) {
879 ssize_t len;
57773204 880 struct ustcomm_ust_msg lum;
d9e99d10 881
57773204 882 len = ustcomm_recv_unix_sock(sock, &lum, sizeof(lum));
d9e99d10
MD
883 switch (len) {
884 case 0: /* orderly shutdown */
7dd08bec 885 DBG("%s lttng-sessiond has performed an orderly shutdown", sock_info->name);
8236ba10
MD
886 ust_lock();
887 /*
888 * Either sessiond has shutdown or refused us by closing the socket.
889 * In either case, we don't want to delay construction execution,
890 * and we need to wait before retry.
891 */
892 prev_connect_failed = 1;
893 /*
894 * If we cannot register to the sessiond daemon, don't
895 * delay constructor execution.
896 */
897 ret = handle_register_done(sock_info);
898 assert(!ret);
899 ust_unlock();
d9e99d10 900 goto end;
e7723462 901 case sizeof(lum):
7bc53e94 902 DBG("message received");
11ff9c7d 903 ret = handle_message(sock_info, sock, &lum);
7bc53e94 904 if (ret) {
11ff9c7d 905 ERR("Error handling message for %s socket", sock_info->name);
d9e99d10
MD
906 }
907 continue;
7bc53e94
MD
908 default:
909 if (len < 0) {
910 DBG("Receive failed from lttng-sessiond with errno %d", (int) -len);
911 } else {
912 DBG("incorrect message size (%s socket): %zd", sock_info->name, len);
913 }
914 if (len == -ECONNRESET) {
915 DBG("%s remote end closed connection", sock_info->name);
d9e99d10
MD
916 goto end;
917 }
918 goto end;
d9e99d10
MD
919 }
920
921 }
922end:
f59ed768
MD
923 ust_lock();
924 /* Cleanup socket handles before trying to reconnect */
925 lttng_ust_objd_table_owner_cleanup(sock_info);
926 ust_unlock();
9eb62b9c 927 goto restart; /* try to reconnect */
1ea11eab 928quit:
d9e99d10
MD
929 return NULL;
930}
931
cf12a773
MD
932/*
933 * Return values: -1: don't wait. 0: wait forever. 1: timeout wait.
934 */
11ff9c7d
MD
935static
936int get_timeout(struct timespec *constructor_timeout)
937{
cf12a773
MD
938 long constructor_delay_ms = LTTNG_UST_DEFAULT_CONSTRUCTOR_TIMEOUT_MS;
939 char *str_delay;
11ff9c7d
MD
940 int ret;
941
69400ac4 942 str_delay = getenv("LTTNG_UST_REGISTER_TIMEOUT");
cf12a773
MD
943 if (str_delay) {
944 constructor_delay_ms = strtol(str_delay, NULL, 10);
945 }
946
947 switch (constructor_delay_ms) {
948 case -1:/* fall-through */
949 case 0:
950 return constructor_delay_ms;
951 default:
952 break;
953 }
954
955 /*
956 * If we are unable to find the current time, don't wait.
957 */
958 ret = clock_gettime(CLOCK_REALTIME, constructor_timeout);
959 if (ret) {
960 return -1;
961 }
95259bd0
MD
962 constructor_timeout->tv_sec += constructor_delay_ms / 1000UL;
963 constructor_timeout->tv_nsec +=
964 (constructor_delay_ms % 1000UL) * 1000000UL;
11ff9c7d
MD
965 if (constructor_timeout->tv_nsec >= 1000000000UL) {
966 constructor_timeout->tv_sec++;
967 constructor_timeout->tv_nsec -= 1000000000UL;
968 }
cf12a773 969 return 1;
11ff9c7d 970}
d9e99d10 971
2691221a
MD
972/*
973 * sessiond monitoring thread: monitor presence of global and per-user
974 * sessiond by polling the application common named pipe.
975 */
edaa1431 976void __attribute__((constructor)) lttng_ust_init(void)
2691221a 977{
11ff9c7d 978 struct timespec constructor_timeout;
ae6a58bf 979 sigset_t sig_all_blocked, orig_parent_mask;
1879f67f 980 pthread_attr_t thread_attr;
cf12a773 981 int timeout_mode;
2691221a
MD
982 int ret;
983
edaa1431
MD
984 if (uatomic_xchg(&initialized, 1) == 1)
985 return;
986
eddd8d5d
MD
987 /*
988 * Fixup interdependency between TLS fixup mutex (which happens
989 * to be the dynamic linker mutex) and ust_lock, taken within
990 * the ust lock.
991 */
992 lttng_fixup_event_tls();
f645cfa7 993 lttng_fixup_ringbuffer_tls();
4158a15a 994 lttng_fixup_vtid_tls();
a903623f 995 lttng_fixup_nest_count_tls();
009745db 996 lttng_fixup_procname_tls();
eddd8d5d 997
edaa1431
MD
998 /*
999 * We want precise control over the order in which we construct
1000 * our sub-libraries vs starting to receive commands from
1001 * sessiond (otherwise leading to errors when trying to create
1002 * sessiond before the init functions are completed).
1003 */
2691221a 1004 init_usterr();
edaa1431 1005 init_tracepoint();
7dd08bec
MD
1006 lttng_ring_buffer_metadata_client_init();
1007 lttng_ring_buffer_client_overwrite_init();
1008 lttng_ring_buffer_client_discard_init();
2691221a 1009
cf12a773 1010 timeout_mode = get_timeout(&constructor_timeout);
11ff9c7d 1011
95259bd0 1012 ret = sem_init(&constructor_wait, 0, 0);
11ff9c7d
MD
1013 assert(!ret);
1014
8d20bf54 1015 ret = setup_local_apps();
2691221a 1016 if (ret) {
9ec6895c 1017 DBG("local apps setup returned %d", ret);
2691221a 1018 }
ae6a58bf
WP
1019
1020 /* A new thread created by pthread_create inherits the signal mask
1021 * from the parent. To avoid any signal being received by the
1022 * listener thread, we block all signals temporarily in the parent,
1023 * while we create the listener thread.
1024 */
1025 sigfillset(&sig_all_blocked);
1026 ret = pthread_sigmask(SIG_SETMASK, &sig_all_blocked, &orig_parent_mask);
1027 if (ret) {
d94d802c 1028 ERR("pthread_sigmask: %s", strerror(ret));
ae6a58bf
WP
1029 }
1030
1879f67f
MG
1031 ret = pthread_attr_init(&thread_attr);
1032 if (ret) {
1033 ERR("pthread_attr_init: %s", strerror(ret));
1034 }
1035 ret = pthread_attr_setdetachstate(&thread_attr, PTHREAD_CREATE_DETACHED);
1036 if (ret) {
1037 ERR("pthread_attr_setdetachstate: %s", strerror(ret));
1038 }
1039
1040 ret = pthread_create(&global_apps.ust_listener, &thread_attr,
dde70ea0 1041 ust_listener_thread, &global_apps);
d94d802c
MD
1042 if (ret) {
1043 ERR("pthread_create global: %s", strerror(ret));
1044 }
8d20bf54 1045 if (local_apps.allowed) {
1879f67f 1046 ret = pthread_create(&local_apps.ust_listener, &thread_attr,
dde70ea0 1047 ust_listener_thread, &local_apps);
d94d802c
MD
1048 if (ret) {
1049 ERR("pthread_create local: %s", strerror(ret));
1050 }
8d20bf54
MD
1051 } else {
1052 handle_register_done(&local_apps);
1053 }
1879f67f
MG
1054 ret = pthread_attr_destroy(&thread_attr);
1055 if (ret) {
1056 ERR("pthread_attr_destroy: %s", strerror(ret));
1057 }
8d20bf54 1058
ae6a58bf
WP
1059 /* Restore original signal mask in parent */
1060 ret = pthread_sigmask(SIG_SETMASK, &orig_parent_mask, NULL);
1061 if (ret) {
d94d802c 1062 ERR("pthread_sigmask: %s", strerror(ret));
ae6a58bf
WP
1063 }
1064
cf12a773
MD
1065 switch (timeout_mode) {
1066 case 1: /* timeout wait */
95259bd0
MD
1067 do {
1068 ret = sem_timedwait(&constructor_wait,
1069 &constructor_timeout);
1070 } while (ret < 0 && errno == EINTR);
cf12a773 1071 if (ret < 0 && errno == ETIMEDOUT) {
7dd08bec 1072 ERR("Timed out waiting for lttng-sessiond");
cf12a773
MD
1073 } else {
1074 assert(!ret);
1075 }
1076 break;
7b766b16 1077 case -1:/* wait forever */
95259bd0
MD
1078 do {
1079 ret = sem_wait(&constructor_wait);
1080 } while (ret < 0 && errno == EINTR);
11ff9c7d 1081 assert(!ret);
cf12a773 1082 break;
7b766b16 1083 case 0: /* no timeout */
cf12a773 1084 break;
11ff9c7d 1085 }
2691221a
MD
1086}
1087
17dfb34b
MD
1088static
1089void lttng_ust_cleanup(int exiting)
1090{
efe0de09 1091 cleanup_sock_info(&global_apps, exiting);
17dfb34b 1092 if (local_apps.allowed) {
efe0de09 1093 cleanup_sock_info(&local_apps, exiting);
17dfb34b 1094 }
efe0de09
MD
1095 /*
1096 * The teardown in this function all affect data structures
1097 * accessed under the UST lock by the listener thread. This
1098 * lock, along with the lttng_ust_comm_should_quit flag, ensure
1099 * that none of these threads are accessing this data at this
1100 * point.
1101 */
17dfb34b 1102 lttng_ust_abi_exit();
003fedf4 1103 lttng_ust_events_exit();
7dd08bec
MD
1104 lttng_ring_buffer_client_discard_exit();
1105 lttng_ring_buffer_client_overwrite_exit();
1106 lttng_ring_buffer_metadata_client_exit();
17dfb34b
MD
1107 exit_tracepoint();
1108 if (!exiting) {
1109 /* Reinitialize values for fork */
1110 sem_count = 2;
1111 lttng_ust_comm_should_quit = 0;
1112 initialized = 0;
1113 }
1114}
1115
edaa1431 1116void __attribute__((destructor)) lttng_ust_exit(void)
2691221a
MD
1117{
1118 int ret;
1119
9eb62b9c
MD
1120 /*
1121 * Using pthread_cancel here because:
1122 * A) we don't want to hang application teardown.
1123 * B) the thread is not allocating any resource.
1124 */
1ea11eab
MD
1125
1126 /*
1127 * Require the communication thread to quit. Synchronize with
1128 * mutexes to ensure it is not in a mutex critical section when
1129 * pthread_cancel is later called.
1130 */
17dfb34b 1131 ust_lock();
1ea11eab 1132 lttng_ust_comm_should_quit = 1;
17dfb34b 1133 ust_unlock();
1ea11eab 1134
f5f94532 1135 /* cancel threads */
1ea11eab 1136 ret = pthread_cancel(global_apps.ust_listener);
9eb62b9c 1137 if (ret) {
d94d802c
MD
1138 ERR("Error cancelling global ust listener thread: %s",
1139 strerror(ret));
2691221a 1140 }
8d20bf54
MD
1141 if (local_apps.allowed) {
1142 ret = pthread_cancel(local_apps.ust_listener);
1143 if (ret) {
d94d802c
MD
1144 ERR("Error cancelling local ust listener thread: %s",
1145 strerror(ret));
8d20bf54 1146 }
8d20bf54 1147 }
efe0de09
MD
1148 /*
1149 * Do NOT join threads: use of sys_futex makes it impossible to
1150 * join the threads without using async-cancel, but async-cancel
1151 * is delivered by a signal, which could hit the target thread
1152 * anywhere in its code path, including while the ust_lock() is
1153 * held, causing a deadlock for the other thread. Let the OS
1154 * cleanup the threads if there are stalled in a syscall.
1155 */
17dfb34b 1156 lttng_ust_cleanup(1);
2691221a 1157}
e822f505
MD
1158
1159/*
1160 * We exclude the worker threads across fork and clone (except
1161 * CLONE_VM), because these system calls only keep the forking thread
1162 * running in the child. Therefore, we don't want to call fork or clone
1163 * in the middle of an tracepoint or ust tracing state modification.
1164 * Holding this mutex protects these structures across fork and clone.
1165 */
b728d87e 1166void ust_before_fork(sigset_t *save_sigset)
e822f505
MD
1167{
1168 /*
1169 * Disable signals. This is to avoid that the child intervenes
1170 * before it is properly setup for tracing. It is safer to
1171 * disable all signals, because then we know we are not breaking
1172 * anything by restoring the original mask.
1173 */
1174 sigset_t all_sigs;
1175 int ret;
1176
e8508a49
MD
1177 if (lttng_ust_nest_count)
1178 return;
e822f505
MD
1179 /* Disable signals */
1180 sigfillset(&all_sigs);
b728d87e 1181 ret = sigprocmask(SIG_BLOCK, &all_sigs, save_sigset);
e822f505
MD
1182 if (ret == -1) {
1183 PERROR("sigprocmask");
1184 }
17dfb34b 1185 ust_lock();
e822f505
MD
1186 rcu_bp_before_fork();
1187}
1188
b728d87e 1189static void ust_after_fork_common(sigset_t *restore_sigset)
e822f505
MD
1190{
1191 int ret;
1192
17dfb34b
MD
1193 DBG("process %d", getpid());
1194 ust_unlock();
e822f505 1195 /* Restore signals */
23c8854a 1196 ret = sigprocmask(SIG_SETMASK, restore_sigset, NULL);
e822f505
MD
1197 if (ret == -1) {
1198 PERROR("sigprocmask");
1199 }
1200}
1201
b728d87e 1202void ust_after_fork_parent(sigset_t *restore_sigset)
e822f505 1203{
e8508a49
MD
1204 if (lttng_ust_nest_count)
1205 return;
17dfb34b 1206 DBG("process %d", getpid());
e822f505
MD
1207 rcu_bp_after_fork_parent();
1208 /* Release mutexes and reenable signals */
b728d87e 1209 ust_after_fork_common(restore_sigset);
e822f505
MD
1210}
1211
17dfb34b
MD
1212/*
1213 * After fork, in the child, we need to cleanup all the leftover state,
1214 * except the worker thread which already magically disappeared thanks
1215 * to the weird Linux fork semantics. After tyding up, we call
1216 * lttng_ust_init() again to start over as a new PID.
1217 *
1218 * This is meant for forks() that have tracing in the child between the
1219 * fork and following exec call (if there is any).
1220 */
b728d87e 1221void ust_after_fork_child(sigset_t *restore_sigset)
e822f505 1222{
e8508a49
MD
1223 if (lttng_ust_nest_count)
1224 return;
17dfb34b 1225 DBG("process %d", getpid());
e822f505
MD
1226 /* Release urcu mutexes */
1227 rcu_bp_after_fork_child();
17dfb34b 1228 lttng_ust_cleanup(0);
a93bfc45 1229 lttng_context_vtid_reset();
e822f505 1230 /* Release mutexes and reenable signals */
b728d87e 1231 ust_after_fork_common(restore_sigset);
318dfea9 1232 lttng_ust_init();
e822f505 1233}
This page took 0.094271 seconds and 4 git commands to generate.