Commit | Line | Data |
---|---|---|
826d496d MD |
1 | /* |
2 | * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca> | |
0fdd1e2c | 3 | * Mathieu Desnoyers <mathieu.desnoyers@efficios.com> |
26296c48 | 4 | * 2013 - Jérémie Galarneau <jeremie.galarneau@efficios.com> |
fac6795d | 5 | * |
d14d33bf AM |
6 | * This program is free software; you can redistribute it and/or modify |
7 | * it under the terms of the GNU General Public License, version 2 only, | |
8 | * as published by the Free Software Foundation. | |
91d76f53 | 9 | * |
d14d33bf AM |
10 | * This program is distributed in the hope that it will be useful, |
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | * GNU General Public License for more details. | |
91d76f53 | 14 | * |
d14d33bf AM |
15 | * You should have received a copy of the GNU General Public License along |
16 | * with this program; if not, write to the Free Software Foundation, Inc., | |
17 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
fac6795d DG |
18 | */ |
19 | ||
20 | #define _GNU_SOURCE | |
6c1c0768 | 21 | #define _LGPL_SOURCE |
fac6795d DG |
22 | #include <getopt.h> |
23 | #include <grp.h> | |
24 | #include <limits.h> | |
0bb7724a | 25 | #include <paths.h> |
fac6795d DG |
26 | #include <pthread.h> |
27 | #include <signal.h> | |
28 | #include <stdio.h> | |
29 | #include <stdlib.h> | |
30 | #include <string.h> | |
331744e3 | 31 | #include <inttypes.h> |
0fdd1e2c | 32 | #include <sys/mman.h> |
b73401da | 33 | #include <sys/mount.h> |
1e307fab | 34 | #include <sys/resource.h> |
fac6795d DG |
35 | #include <sys/socket.h> |
36 | #include <sys/stat.h> | |
37 | #include <sys/types.h> | |
0fdd1e2c | 38 | #include <sys/wait.h> |
5c827ce0 | 39 | #include <urcu/uatomic.h> |
fac6795d | 40 | #include <unistd.h> |
3bd1e081 | 41 | #include <config.h> |
fac6795d | 42 | |
990570ed | 43 | #include <common/common.h> |
d27c42b8 | 44 | #include <common/compat/socket.h> |
e8fa9fb0 | 45 | #include <common/compat/getenv.h> |
db758600 DG |
46 | #include <common/defaults.h> |
47 | #include <common/kernel-consumer/kernel-consumer.h> | |
50c8f484 | 48 | #include <common/futex.h> |
00e2e675 | 49 | #include <common/relayd/relayd.h> |
81b86775 | 50 | #include <common/utils.h> |
3ccdf997 | 51 | #include <common/daemonize.h> |
26296c48 | 52 | #include <common/config/config.h> |
fac6795d | 53 | |
10a8a223 | 54 | #include "lttng-sessiond.h" |
7972aab2 | 55 | #include "buffer-registry.h" |
54d01ffb | 56 | #include "channel.h" |
2f77fc4b | 57 | #include "cmd.h" |
00e2e675 | 58 | #include "consumer.h" |
099e26bd | 59 | #include "context.h" |
54d01ffb | 60 | #include "event.h" |
4771f025 | 61 | #include "kernel.h" |
f1e16794 | 62 | #include "kernel-consumer.h" |
096102bd | 63 | #include "modprobe.h" |
0fdd1e2c | 64 | #include "shm.h" |
1e307fab | 65 | #include "ust-ctl.h" |
00e2e675 | 66 | #include "ust-consumer.h" |
8e68d1c8 | 67 | #include "utils.h" |
4063050c | 68 | #include "fd-limit.h" |
8782cc74 | 69 | #include "health-sessiond.h" |
8ac94142 | 70 | #include "testpoint.h" |
d0b96690 | 71 | #include "ust-thread.h" |
022d91ba | 72 | #include "agent-thread.h" |
fb198a11 | 73 | #include "save.h" |
ef367a93 | 74 | #include "load-session-thread.h" |
834978fd | 75 | #include "syscall.h" |
7c1d2758 | 76 | #include "agent.h" |
fac6795d | 77 | |
ebaeda94 MD |
78 | #define CONSUMERD_FILE "lttng-consumerd" |
79 | ||
fac6795d | 80 | const char *progname; |
6c71277b | 81 | static const char *tracing_group_name = DEFAULT_TRACING_GROUP; |
26296c48 JG |
82 | static int tracing_group_name_override; |
83 | static char *opt_pidfile; | |
5b8719f5 | 84 | static int opt_sig_parent; |
97e19046 | 85 | static int opt_verbose_consumer; |
72dd7491 | 86 | static int opt_daemon, opt_background; |
4fba7219 | 87 | static int opt_no_kernel; |
ef367a93 | 88 | static char *opt_load_session_path; |
1d4b027a | 89 | static pid_t ppid; /* Parent PID for --sig-parent option */ |
0bb7724a | 90 | static pid_t child_ppid; /* Internal parent PID use with daemonize. */ |
67e40797 | 91 | static char *rundir; |
c9cb3e7d | 92 | static int lockfile_fd = -1; |
3bd1e081 | 93 | |
0bb7724a DG |
94 | /* Set to 1 when a SIGUSR1 signal is received. */ |
95 | static int recv_child_signal; | |
96 | ||
a23ec3a7 DG |
97 | /* |
98 | * Consumer daemon specific control data. Every value not initialized here is | |
99 | * set to 0 by the static definition. | |
100 | */ | |
3bd1e081 MD |
101 | static struct consumer_data kconsumer_data = { |
102 | .type = LTTNG_CONSUMER_KERNEL, | |
60922cb0 DG |
103 | .err_unix_sock_path = DEFAULT_KCONSUMERD_ERR_SOCK_PATH, |
104 | .cmd_unix_sock_path = DEFAULT_KCONSUMERD_CMD_SOCK_PATH, | |
03550b58 MD |
105 | .err_sock = -1, |
106 | .cmd_sock = -1, | |
173af62f DG |
107 | .pid_mutex = PTHREAD_MUTEX_INITIALIZER, |
108 | .lock = PTHREAD_MUTEX_INITIALIZER, | |
a23ec3a7 DG |
109 | .cond = PTHREAD_COND_INITIALIZER, |
110 | .cond_mutex = PTHREAD_MUTEX_INITIALIZER, | |
3bd1e081 | 111 | }; |
7753dea8 MD |
112 | static struct consumer_data ustconsumer64_data = { |
113 | .type = LTTNG_CONSUMER64_UST, | |
60922cb0 DG |
114 | .err_unix_sock_path = DEFAULT_USTCONSUMERD64_ERR_SOCK_PATH, |
115 | .cmd_unix_sock_path = DEFAULT_USTCONSUMERD64_CMD_SOCK_PATH, | |
03550b58 MD |
116 | .err_sock = -1, |
117 | .cmd_sock = -1, | |
173af62f DG |
118 | .pid_mutex = PTHREAD_MUTEX_INITIALIZER, |
119 | .lock = PTHREAD_MUTEX_INITIALIZER, | |
a23ec3a7 DG |
120 | .cond = PTHREAD_COND_INITIALIZER, |
121 | .cond_mutex = PTHREAD_MUTEX_INITIALIZER, | |
7753dea8 MD |
122 | }; |
123 | static struct consumer_data ustconsumer32_data = { | |
124 | .type = LTTNG_CONSUMER32_UST, | |
60922cb0 DG |
125 | .err_unix_sock_path = DEFAULT_USTCONSUMERD32_ERR_SOCK_PATH, |
126 | .cmd_unix_sock_path = DEFAULT_USTCONSUMERD32_CMD_SOCK_PATH, | |
03550b58 MD |
127 | .err_sock = -1, |
128 | .cmd_sock = -1, | |
173af62f DG |
129 | .pid_mutex = PTHREAD_MUTEX_INITIALIZER, |
130 | .lock = PTHREAD_MUTEX_INITIALIZER, | |
a23ec3a7 DG |
131 | .cond = PTHREAD_COND_INITIALIZER, |
132 | .cond_mutex = PTHREAD_MUTEX_INITIALIZER, | |
3bd1e081 MD |
133 | }; |
134 | ||
26296c48 JG |
135 | /* Command line options */ |
136 | static const struct option long_options[] = { | |
0f5ea17c JG |
137 | { "client-sock", required_argument, 0, 'c' }, |
138 | { "apps-sock", required_argument, 0, 'a' }, | |
139 | { "kconsumerd-cmd-sock", required_argument, 0, '\0' }, | |
140 | { "kconsumerd-err-sock", required_argument, 0, '\0' }, | |
141 | { "ustconsumerd32-cmd-sock", required_argument, 0, '\0' }, | |
142 | { "ustconsumerd32-err-sock", required_argument, 0, '\0' }, | |
143 | { "ustconsumerd64-cmd-sock", required_argument, 0, '\0' }, | |
144 | { "ustconsumerd64-err-sock", required_argument, 0, '\0' }, | |
145 | { "consumerd32-path", required_argument, 0, '\0' }, | |
146 | { "consumerd32-libdir", required_argument, 0, '\0' }, | |
147 | { "consumerd64-path", required_argument, 0, '\0' }, | |
148 | { "consumerd64-libdir", required_argument, 0, '\0' }, | |
149 | { "daemonize", no_argument, 0, 'd' }, | |
150 | { "background", no_argument, 0, 'b' }, | |
151 | { "sig-parent", no_argument, 0, 'S' }, | |
152 | { "help", no_argument, 0, 'h' }, | |
153 | { "group", required_argument, 0, 'g' }, | |
154 | { "version", no_argument, 0, 'V' }, | |
155 | { "quiet", no_argument, 0, 'q' }, | |
156 | { "verbose", no_argument, 0, 'v' }, | |
157 | { "verbose-consumer", no_argument, 0, '\0' }, | |
158 | { "no-kernel", no_argument, 0, '\0' }, | |
159 | { "pidfile", required_argument, 0, 'p' }, | |
160 | { "agent-tcp-port", required_argument, 0, '\0' }, | |
161 | { "config", required_argument, 0, 'f' }, | |
162 | { "load", required_argument, 0, 'l' }, | |
163 | { "kmod-probes", required_argument, 0, '\0' }, | |
164 | { "extra-kmod-probes", required_argument, 0, '\0' }, | |
26296c48 JG |
165 | { NULL, 0, 0, 0 } |
166 | }; | |
167 | ||
168 | /* Command line options to ignore from configuration file */ | |
169 | static const char *config_ignore_options[] = { "help", "version", "config" }; | |
170 | ||
26c9d55e | 171 | /* Shared between threads */ |
099e26bd | 172 | static int dispatch_thread_exit; |
fac6795d | 173 | |
54d01ffb DG |
174 | /* Global application Unix socket path */ |
175 | static char apps_unix_sock_path[PATH_MAX]; | |
176 | /* Global client Unix socket path */ | |
177 | static char client_unix_sock_path[PATH_MAX]; | |
54d01ffb DG |
178 | /* global wait shm path for UST */ |
179 | static char wait_shm_path[PATH_MAX]; | |
44a5e5eb DG |
180 | /* Global health check unix path */ |
181 | static char health_unix_sock_path[PATH_MAX]; | |
fac6795d | 182 | |
1d4b027a | 183 | /* Sockets and FDs */ |
a4b35e07 MD |
184 | static int client_sock = -1; |
185 | static int apps_sock = -1; | |
2f77fc4b | 186 | int kernel_tracer_fd = -1; |
76d7553f | 187 | static int kernel_poll_pipe[2] = { -1, -1 }; |
1d4b027a | 188 | |
273ea72c DG |
189 | /* |
190 | * Quit pipe for all threads. This permits a single cancellation point | |
191 | * for all threads when receiving an event on the pipe. | |
192 | */ | |
76d7553f | 193 | static int thread_quit_pipe[2] = { -1, -1 }; |
4a15001e | 194 | static int ht_cleanup_quit_pipe[2] = { -1, -1 }; |
273ea72c | 195 | |
099e26bd DG |
196 | /* |
197 | * This pipe is used to inform the thread managing application communication | |
198 | * that a command is queued and ready to be processed. | |
199 | */ | |
76d7553f | 200 | static int apps_cmd_pipe[2] = { -1, -1 }; |
099e26bd | 201 | |
d0b96690 DG |
202 | int apps_cmd_notify_pipe[2] = { -1, -1 }; |
203 | ||
1d4b027a | 204 | /* Pthread, Mutexes and Semaphores */ |
1d4b027a | 205 | static pthread_t apps_thread; |
d0b96690 | 206 | static pthread_t apps_notify_thread; |
099e26bd | 207 | static pthread_t reg_apps_thread; |
1d4b027a | 208 | static pthread_t client_thread; |
7a485870 | 209 | static pthread_t kernel_thread; |
099e26bd | 210 | static pthread_t dispatch_thread; |
44a5e5eb | 211 | static pthread_t health_thread; |
0b2dc8df | 212 | static pthread_t ht_cleanup_thread; |
022d91ba | 213 | static pthread_t agent_reg_thread; |
ef367a93 | 214 | static pthread_t load_session_thread; |
5eb91c98 | 215 | |
099e26bd DG |
216 | /* |
217 | * UST registration command queue. This queue is tied with a futex and uses a N | |
218 | * wakers / 1 waiter implemented and detailed in futex.c/.h | |
219 | * | |
b22c5da8 DG |
220 | * The thread_registration_apps and thread_dispatch_ust_registration uses this |
221 | * queue along with the wait/wake scheme. The thread_manage_apps receives down | |
222 | * the line new application socket and monitors it for any I/O error or clean | |
223 | * close that triggers an unregistration of the application. | |
099e26bd DG |
224 | */ |
225 | static struct ust_cmd_queue ust_cmd_queue; | |
226 | ||
b5541356 DG |
227 | /* |
228 | * Pointer initialized before thread creation. | |
229 | * | |
230 | * This points to the tracing session list containing the session count and a | |
231 | * mutex lock. The lock MUST be taken if you iterate over the list. The lock | |
232 | * MUST NOT be taken if you call a public function in session.c. | |
04ea676f | 233 | * |
d063d709 | 234 | * The lock is nested inside the structure: session_list_ptr->lock. Please use |
54d01ffb | 235 | * session_lock_list and session_unlock_list for lock acquisition. |
b5541356 DG |
236 | */ |
237 | static struct ltt_session_list *session_list_ptr; | |
238 | ||
7753dea8 MD |
239 | int ust_consumerd64_fd = -1; |
240 | int ust_consumerd32_fd = -1; | |
241 | ||
fb6f1fa2 YB |
242 | static const char *consumerd32_bin = CONFIG_CONSUMERD32_BIN; |
243 | static const char *consumerd64_bin = CONFIG_CONSUMERD64_BIN; | |
244 | static const char *consumerd32_libdir = CONFIG_CONSUMERD32_LIBDIR; | |
245 | static const char *consumerd64_libdir = CONFIG_CONSUMERD64_LIBDIR; | |
26296c48 JG |
246 | static int consumerd32_bin_override; |
247 | static int consumerd64_bin_override; | |
248 | static int consumerd32_libdir_override; | |
249 | static int consumerd64_libdir_override; | |
fb09408a | 250 | |
2f77fc4b DG |
251 | static const char *module_proc_lttng = "/proc/lttng"; |
252 | ||
5c827ce0 DG |
253 | /* |
254 | * Consumer daemon state which is changed when spawning it, killing it or in | |
255 | * case of a fatal error. | |
256 | */ | |
257 | enum consumerd_state { | |
258 | CONSUMER_STARTED = 1, | |
259 | CONSUMER_STOPPED = 2, | |
260 | CONSUMER_ERROR = 3, | |
261 | }; | |
262 | ||
263 | /* | |
264 | * This consumer daemon state is used to validate if a client command will be | |
265 | * able to reach the consumer. If not, the client is informed. For instance, | |
266 | * doing a "lttng start" when the consumer state is set to ERROR will return an | |
267 | * error to the client. | |
268 | * | |
269 | * The following example shows a possible race condition of this scheme: | |
270 | * | |
271 | * consumer thread error happens | |
272 | * client cmd arrives | |
273 | * client cmd checks state -> still OK | |
274 | * consumer thread exit, sets error | |
275 | * client cmd try to talk to consumer | |
276 | * ... | |
277 | * | |
278 | * However, since the consumer is a different daemon, we have no way of making | |
279 | * sure the command will reach it safely even with this state flag. This is why | |
280 | * we consider that up to the state validation during command processing, the | |
281 | * command is safe. After that, we can not guarantee the correctness of the | |
282 | * client request vis-a-vis the consumer. | |
283 | */ | |
284 | static enum consumerd_state ust_consumerd_state; | |
285 | static enum consumerd_state kernel_consumerd_state; | |
286 | ||
ae9e45b3 DG |
287 | /* |
288 | * Socket timeout for receiving and sending in seconds. | |
289 | */ | |
290 | static int app_socket_timeout; | |
291 | ||
12744796 DG |
292 | /* Set in main() with the current page size. */ |
293 | long page_size; | |
294 | ||
8782cc74 MD |
295 | /* Application health monitoring */ |
296 | struct health_app *health_sessiond; | |
297 | ||
022d91ba DG |
298 | /* Agent TCP port for registration. Used by the agent thread. */ |
299 | unsigned int agent_tcp_port = DEFAULT_AGENT_TCP_PORT; | |
4d076222 | 300 | |
f43f95a9 DG |
301 | /* Am I root or not. */ |
302 | int is_root; /* Set to 1 if the daemon is running as root */ | |
303 | ||
26296c48 JG |
304 | const char * const config_section_name = "sessiond"; |
305 | ||
ef367a93 JG |
306 | /* Load session thread information to operate. */ |
307 | struct load_session_thread_data *load_info; | |
308 | ||
7c1d2758 JG |
309 | /* Global hash tables */ |
310 | struct lttng_ht *agent_apps_ht_by_sock = NULL; | |
311 | ||
97bc1426 MD |
312 | /* |
313 | * Whether sessiond is ready for commands/health check requests. | |
314 | * NR_LTTNG_SESSIOND_READY must match the number of calls to | |
ef367a93 | 315 | * sessiond_notify_ready(). |
97bc1426 | 316 | */ |
ef367a93 | 317 | #define NR_LTTNG_SESSIOND_READY 3 |
97bc1426 MD |
318 | int lttng_sessiond_ready = NR_LTTNG_SESSIOND_READY; |
319 | ||
320 | /* Notify parents that we are ready for cmd and health check */ | |
ef367a93 JG |
321 | LTTNG_HIDDEN |
322 | void sessiond_notify_ready(void) | |
97bc1426 MD |
323 | { |
324 | if (uatomic_sub_return(<tng_sessiond_ready, 1) == 0) { | |
325 | /* | |
326 | * Notify parent pid that we are ready to accept command | |
327 | * for client side. This ppid is the one from the | |
328 | * external process that spawned us. | |
329 | */ | |
330 | if (opt_sig_parent) { | |
331 | kill(ppid, SIGUSR1); | |
332 | } | |
333 | ||
334 | /* | |
335 | * Notify the parent of the fork() process that we are | |
336 | * ready. | |
337 | */ | |
72dd7491 | 338 | if (opt_daemon || opt_background) { |
97bc1426 MD |
339 | kill(child_ppid, SIGUSR1); |
340 | } | |
341 | } | |
342 | } | |
343 | ||
fb09408a | 344 | static |
7753dea8 | 345 | void setup_consumerd_path(void) |
fb09408a | 346 | { |
fc7a59ce | 347 | const char *bin, *libdir; |
fb09408a | 348 | |
7753dea8 MD |
349 | /* |
350 | * Allow INSTALL_BIN_PATH to be used as a target path for the | |
ebaeda94 MD |
351 | * native architecture size consumer if CONFIG_CONSUMER*_PATH |
352 | * has not been defined. | |
7753dea8 | 353 | */ |
ebaeda94 | 354 | #if (CAA_BITS_PER_LONG == 32) |
fc7a59ce AM |
355 | if (!consumerd32_bin[0]) { |
356 | consumerd32_bin = INSTALL_BIN_PATH "/" CONSUMERD_FILE; | |
ebaeda94 MD |
357 | } |
358 | if (!consumerd32_libdir[0]) { | |
359 | consumerd32_libdir = INSTALL_LIB_PATH; | |
360 | } | |
361 | #elif (CAA_BITS_PER_LONG == 64) | |
fc7a59ce AM |
362 | if (!consumerd64_bin[0]) { |
363 | consumerd64_bin = INSTALL_BIN_PATH "/" CONSUMERD_FILE; | |
7753dea8 | 364 | } |
ebaeda94 MD |
365 | if (!consumerd64_libdir[0]) { |
366 | consumerd64_libdir = INSTALL_LIB_PATH; | |
7753dea8 MD |
367 | } |
368 | #else | |
369 | #error "Unknown bitness" | |
370 | #endif | |
371 | ||
fb09408a MD |
372 | /* |
373 | * runtime env. var. overrides the build default. | |
374 | */ | |
e8fa9fb0 | 375 | bin = lttng_secure_getenv("LTTNG_CONSUMERD32_BIN"); |
fc7a59ce AM |
376 | if (bin) { |
377 | consumerd32_bin = bin; | |
7753dea8 | 378 | } |
e8fa9fb0 | 379 | bin = lttng_secure_getenv("LTTNG_CONSUMERD64_BIN"); |
fc7a59ce AM |
380 | if (bin) { |
381 | consumerd64_bin = bin; | |
ebaeda94 | 382 | } |
e8fa9fb0 | 383 | libdir = lttng_secure_getenv("LTTNG_CONSUMERD32_LIBDIR"); |
ebaeda94 MD |
384 | if (libdir) { |
385 | consumerd32_libdir = libdir; | |
386 | } | |
e8fa9fb0 | 387 | libdir = lttng_secure_getenv("LTTNG_CONSUMERD64_LIBDIR"); |
ebaeda94 MD |
388 | if (libdir) { |
389 | consumerd64_libdir = libdir; | |
fb09408a MD |
390 | } |
391 | } | |
392 | ||
4a15001e MD |
393 | static |
394 | int __sessiond_set_thread_pollset(struct lttng_poll_event *events, size_t size, | |
395 | int *a_pipe) | |
5eb91c98 DG |
396 | { |
397 | int ret; | |
398 | ||
d0b96690 | 399 | assert(events); |
5eb91c98 DG |
400 | |
401 | ret = lttng_poll_create(events, size, LTTNG_CLOEXEC); | |
402 | if (ret < 0) { | |
403 | goto error; | |
404 | } | |
405 | ||
406 | /* Add quit pipe */ | |
4a15001e | 407 | ret = lttng_poll_add(events, a_pipe[0], LPOLLIN | LPOLLERR); |
5eb91c98 DG |
408 | if (ret < 0) { |
409 | goto error; | |
410 | } | |
411 | ||
412 | return 0; | |
413 | ||
414 | error: | |
415 | return ret; | |
416 | } | |
417 | ||
4a15001e MD |
418 | /* |
419 | * Create a poll set with O_CLOEXEC and add the thread quit pipe to the set. | |
420 | */ | |
421 | int sessiond_set_thread_pollset(struct lttng_poll_event *events, size_t size) | |
422 | { | |
423 | return __sessiond_set_thread_pollset(events, size, thread_quit_pipe); | |
424 | } | |
425 | ||
426 | /* | |
427 | * Create a poll set with O_CLOEXEC and add the thread quit pipe to the set. | |
428 | */ | |
429 | int sessiond_set_ht_cleanup_thread_pollset(struct lttng_poll_event *events, | |
430 | size_t size) | |
431 | { | |
432 | return __sessiond_set_thread_pollset(events, size, | |
433 | ht_cleanup_quit_pipe); | |
434 | } | |
435 | ||
436 | static | |
437 | int __sessiond_check_thread_quit_pipe(int fd, uint32_t events, int a_pipe) | |
438 | { | |
439 | if (fd == a_pipe && (events & LPOLLIN)) { | |
440 | return 1; | |
441 | } | |
442 | return 0; | |
443 | } | |
444 | ||
5eb91c98 DG |
445 | /* |
446 | * Check if the thread quit pipe was triggered. | |
447 | * | |
448 | * Return 1 if it was triggered else 0; | |
449 | */ | |
d0b96690 | 450 | int sessiond_check_thread_quit_pipe(int fd, uint32_t events) |
5eb91c98 | 451 | { |
4a15001e MD |
452 | return __sessiond_check_thread_quit_pipe(fd, events, |
453 | thread_quit_pipe[0]); | |
454 | } | |
5eb91c98 | 455 | |
4a15001e MD |
456 | /* |
457 | * Check if the ht_cleanup thread quit pipe was triggered. | |
458 | * | |
459 | * Return 1 if it was triggered else 0; | |
460 | */ | |
461 | int sessiond_check_ht_cleanup_quit(int fd, uint32_t events) | |
462 | { | |
463 | return __sessiond_check_thread_quit_pipe(fd, events, | |
464 | ht_cleanup_quit_pipe[0]); | |
5eb91c98 DG |
465 | } |
466 | ||
273ea72c | 467 | /* |
5eb91c98 | 468 | * Init thread quit pipe. |
273ea72c DG |
469 | * |
470 | * Return -1 on error or 0 if all pipes are created. | |
471 | */ | |
4a15001e | 472 | static int __init_thread_quit_pipe(int *a_pipe) |
273ea72c | 473 | { |
730389d9 | 474 | int ret, i; |
273ea72c | 475 | |
4a15001e | 476 | ret = pipe(a_pipe); |
273ea72c | 477 | if (ret < 0) { |
730389d9 | 478 | PERROR("thread quit pipe"); |
273ea72c DG |
479 | goto error; |
480 | } | |
481 | ||
730389d9 | 482 | for (i = 0; i < 2; i++) { |
4a15001e | 483 | ret = fcntl(a_pipe[i], F_SETFD, FD_CLOEXEC); |
730389d9 DG |
484 | if (ret < 0) { |
485 | PERROR("fcntl"); | |
486 | goto error; | |
487 | } | |
488 | } | |
489 | ||
273ea72c DG |
490 | error: |
491 | return ret; | |
492 | } | |
493 | ||
4a15001e MD |
494 | static int init_thread_quit_pipe(void) |
495 | { | |
496 | return __init_thread_quit_pipe(thread_quit_pipe); | |
497 | } | |
498 | ||
499 | static int init_ht_cleanup_quit_pipe(void) | |
500 | { | |
501 | return __init_thread_quit_pipe(ht_cleanup_quit_pipe); | |
502 | } | |
503 | ||
099e26bd DG |
504 | /* |
505 | * Stop all threads by closing the thread quit pipe. | |
506 | */ | |
cf3af59e MD |
507 | static void stop_threads(void) |
508 | { | |
5eb91c98 DG |
509 | int ret; |
510 | ||
cf3af59e MD |
511 | /* Stopping all threads */ |
512 | DBG("Terminating all threads"); | |
54d01ffb | 513 | ret = notify_thread_pipe(thread_quit_pipe[1]); |
5eb91c98 DG |
514 | if (ret < 0) { |
515 | ERR("write error on thread quit pipe"); | |
516 | } | |
517 | ||
099e26bd | 518 | /* Dispatch thread */ |
26c9d55e | 519 | CMM_STORE_SHARED(dispatch_thread_exit, 1); |
099e26bd | 520 | futex_nto1_wake(&ust_cmd_queue.futex); |
cf3af59e MD |
521 | } |
522 | ||
e975f9f8 DG |
523 | /* |
524 | * Close every consumer sockets. | |
525 | */ | |
526 | static void close_consumer_sockets(void) | |
527 | { | |
528 | int ret; | |
529 | ||
530 | if (kconsumer_data.err_sock >= 0) { | |
531 | ret = close(kconsumer_data.err_sock); | |
532 | if (ret < 0) { | |
533 | PERROR("kernel consumer err_sock close"); | |
534 | } | |
535 | } | |
536 | if (ustconsumer32_data.err_sock >= 0) { | |
537 | ret = close(ustconsumer32_data.err_sock); | |
538 | if (ret < 0) { | |
a76cbd9f | 539 | PERROR("UST consumerd32 err_sock close"); |
e975f9f8 DG |
540 | } |
541 | } | |
542 | if (ustconsumer64_data.err_sock >= 0) { | |
543 | ret = close(ustconsumer64_data.err_sock); | |
544 | if (ret < 0) { | |
a76cbd9f | 545 | PERROR("UST consumerd64 err_sock close"); |
e975f9f8 DG |
546 | } |
547 | } | |
548 | if (kconsumer_data.cmd_sock >= 0) { | |
549 | ret = close(kconsumer_data.cmd_sock); | |
550 | if (ret < 0) { | |
551 | PERROR("kernel consumer cmd_sock close"); | |
552 | } | |
553 | } | |
554 | if (ustconsumer32_data.cmd_sock >= 0) { | |
555 | ret = close(ustconsumer32_data.cmd_sock); | |
556 | if (ret < 0) { | |
a76cbd9f | 557 | PERROR("UST consumerd32 cmd_sock close"); |
e975f9f8 DG |
558 | } |
559 | } | |
560 | if (ustconsumer64_data.cmd_sock >= 0) { | |
561 | ret = close(ustconsumer64_data.cmd_sock); | |
562 | if (ret < 0) { | |
a76cbd9f | 563 | PERROR("UST consumerd64 cmd_sock close"); |
e975f9f8 DG |
564 | } |
565 | } | |
566 | } | |
567 | ||
c9cb3e7d JG |
568 | /* |
569 | * Generate the full lock file path using the rundir. | |
570 | * | |
571 | * Return the snprintf() return value thus a negative value is an error. | |
572 | */ | |
573 | static int generate_lock_file_path(char *path, size_t len) | |
574 | { | |
575 | int ret; | |
576 | ||
577 | assert(path); | |
578 | assert(rundir); | |
579 | ||
580 | /* Build lockfile path from rundir. */ | |
581 | ret = snprintf(path, len, "%s/" DEFAULT_LTTNG_SESSIOND_LOCKFILE, rundir); | |
582 | if (ret < 0) { | |
583 | PERROR("snprintf lockfile path"); | |
584 | } | |
585 | ||
586 | return ret; | |
587 | } | |
588 | ||
fac6795d | 589 | /* |
4a15001e | 590 | * Cleanup the session daemon's data structures. |
fac6795d | 591 | */ |
4a15001e | 592 | static void sessiond_cleanup(void) |
fac6795d | 593 | { |
ef599319 | 594 | int ret; |
af9737e9 | 595 | struct ltt_session *sess, *stmp; |
8c6c56c2 | 596 | char path[PATH_MAX]; |
fac6795d | 597 | |
4a15001e | 598 | DBG("Cleanup sessiond"); |
e07ae692 | 599 | |
4e449f3f MD |
600 | /* |
601 | * Close the thread quit pipe. It has already done its job, | |
602 | * since we are now called. | |
603 | */ | |
2f77fc4b DG |
604 | utils_close_pipe(thread_quit_pipe); |
605 | ||
35f90c40 DG |
606 | /* |
607 | * If opt_pidfile is undefined, the default file will be wiped when | |
608 | * removing the rundir. | |
609 | */ | |
610 | if (opt_pidfile) { | |
611 | ret = remove(opt_pidfile); | |
612 | if (ret < 0) { | |
613 | PERROR("remove pidfile %s", opt_pidfile); | |
614 | } | |
615 | } | |
616 | ||
8c6c56c2 MD |
617 | DBG("Removing sessiond and consumerd content of directory %s", rundir); |
618 | ||
619 | /* sessiond */ | |
620 | snprintf(path, PATH_MAX, | |
621 | "%s/%s", | |
622 | rundir, DEFAULT_LTTNG_SESSIOND_PIDFILE); | |
623 | DBG("Removing %s", path); | |
624 | (void) unlink(path); | |
625 | ||
cd9290dd | 626 | snprintf(path, PATH_MAX, "%s/%s", rundir, |
022d91ba | 627 | DEFAULT_LTTNG_SESSIOND_AGENTPORT_FILE); |
cd9290dd DG |
628 | DBG("Removing %s", path); |
629 | (void) unlink(path); | |
630 | ||
8c6c56c2 MD |
631 | /* kconsumerd */ |
632 | snprintf(path, PATH_MAX, | |
633 | DEFAULT_KCONSUMERD_ERR_SOCK_PATH, | |
634 | rundir); | |
635 | DBG("Removing %s", path); | |
636 | (void) unlink(path); | |
637 | ||
638 | snprintf(path, PATH_MAX, | |
639 | DEFAULT_KCONSUMERD_PATH, | |
640 | rundir); | |
641 | DBG("Removing directory %s", path); | |
642 | (void) rmdir(path); | |
643 | ||
644 | /* ust consumerd 32 */ | |
645 | snprintf(path, PATH_MAX, | |
646 | DEFAULT_USTCONSUMERD32_ERR_SOCK_PATH, | |
647 | rundir); | |
648 | DBG("Removing %s", path); | |
649 | (void) unlink(path); | |
650 | ||
651 | snprintf(path, PATH_MAX, | |
652 | DEFAULT_USTCONSUMERD32_PATH, | |
653 | rundir); | |
654 | DBG("Removing directory %s", path); | |
655 | (void) rmdir(path); | |
656 | ||
657 | /* ust consumerd 64 */ | |
658 | snprintf(path, PATH_MAX, | |
659 | DEFAULT_USTCONSUMERD64_ERR_SOCK_PATH, | |
660 | rundir); | |
661 | DBG("Removing %s", path); | |
662 | (void) unlink(path); | |
663 | ||
664 | snprintf(path, PATH_MAX, | |
665 | DEFAULT_USTCONSUMERD64_PATH, | |
666 | rundir); | |
667 | DBG("Removing directory %s", path); | |
668 | (void) rmdir(path); | |
5461b305 | 669 | |
99bab54f | 670 | DBG("Cleaning up all sessions"); |
fac6795d | 671 | |
b5541356 | 672 | /* Destroy session list mutex */ |
273ea72c DG |
673 | if (session_list_ptr != NULL) { |
674 | pthread_mutex_destroy(&session_list_ptr->lock); | |
675 | ||
676 | /* Cleanup ALL session */ | |
54d01ffb DG |
677 | cds_list_for_each_entry_safe(sess, stmp, |
678 | &session_list_ptr->head, list) { | |
2f77fc4b | 679 | cmd_destroy_session(sess, kernel_poll_pipe[1]); |
273ea72c DG |
680 | } |
681 | } | |
682 | ||
6a4e4039 JG |
683 | DBG("Cleaning up all agent apps"); |
684 | agent_app_ht_clean(); | |
685 | ||
099e26bd | 686 | DBG("Closing all UST sockets"); |
56fff090 | 687 | ust_app_clean_list(); |
7972aab2 | 688 | buffer_reg_destroy_registries(); |
099e26bd | 689 | |
4fba7219 DG |
690 | if (is_root && !opt_no_kernel) { |
691 | DBG2("Closing kernel fd"); | |
a4b35e07 | 692 | if (kernel_tracer_fd >= 0) { |
76d7553f MD |
693 | ret = close(kernel_tracer_fd); |
694 | if (ret) { | |
695 | PERROR("close"); | |
696 | } | |
a4b35e07 | 697 | } |
2f50c8a3 | 698 | DBG("Unloading kernel modules"); |
096102bd | 699 | modprobe_remove_lttng_all(); |
834978fd | 700 | free(syscall_table); |
2f50c8a3 | 701 | } |
2f77fc4b | 702 | |
e975f9f8 DG |
703 | close_consumer_sockets(); |
704 | ||
ef367a93 JG |
705 | if (load_info) { |
706 | load_session_destroy_data(load_info); | |
707 | free(load_info); | |
708 | } | |
709 | ||
c9cb3e7d JG |
710 | /* |
711 | * Cleanup lock file by deleting it and finaly closing it which will | |
712 | * release the file system lock. | |
713 | */ | |
714 | if (lockfile_fd >= 0) { | |
715 | char lockfile_path[PATH_MAX]; | |
716 | ||
4a15001e MD |
717 | ret = generate_lock_file_path(lockfile_path, |
718 | sizeof(lockfile_path)); | |
c9cb3e7d JG |
719 | if (ret > 0) { |
720 | ret = remove(lockfile_path); | |
721 | if (ret < 0) { | |
722 | PERROR("remove lock file"); | |
723 | } | |
724 | ret = close(lockfile_fd); | |
725 | if (ret < 0) { | |
726 | PERROR("close lock file"); | |
727 | } | |
728 | } | |
729 | } | |
730 | ||
731 | /* | |
732 | * We do NOT rmdir rundir because there are other processes | |
733 | * using it, for instance lttng-relayd, which can start in | |
734 | * parallel with this teardown. | |
735 | */ | |
736 | ||
737 | free(rundir); | |
4a15001e MD |
738 | } |
739 | ||
740 | /* | |
741 | * Cleanup the daemon's option data structures. | |
742 | */ | |
743 | static void sessiond_cleanup_options(void) | |
744 | { | |
745 | DBG("Cleaning up options"); | |
746 | ||
747 | /* | |
748 | * If the override option is set, the pointer points to a *non* const | |
749 | * thus freeing it even though the variable type is set to const. | |
750 | */ | |
751 | if (tracing_group_name_override) { | |
752 | free((void *) tracing_group_name); | |
753 | } | |
754 | if (consumerd32_bin_override) { | |
755 | free((void *) consumerd32_bin); | |
756 | } | |
757 | if (consumerd64_bin_override) { | |
758 | free((void *) consumerd64_bin); | |
759 | } | |
760 | if (consumerd32_libdir_override) { | |
761 | free((void *) consumerd32_libdir); | |
762 | } | |
763 | if (consumerd64_libdir_override) { | |
764 | free((void *) consumerd64_libdir); | |
765 | } | |
766 | ||
767 | free(opt_pidfile); | |
768 | free(opt_load_session_path); | |
769 | free(kmod_probes_list); | |
770 | free(kmod_extra_probes_list); | |
c9cb3e7d | 771 | |
421cb601 | 772 | /* <fun> */ |
f56a39af | 773 | DBG("%c[%d;%dm*** assert failed :-) *** ==> %c[%dm%c[%d;%dm" |
421cb601 DG |
774 | "Matthew, BEET driven development works!%c[%dm", |
775 | 27, 1, 31, 27, 0, 27, 1, 33, 27, 0); | |
776 | /* </fun> */ | |
fac6795d DG |
777 | } |
778 | ||
e065084a | 779 | /* |
d063d709 | 780 | * Send data on a unix socket using the liblttsessiondcomm API. |
e065084a | 781 | * |
d063d709 | 782 | * Return lttcomm error code. |
e065084a DG |
783 | */ |
784 | static int send_unix_sock(int sock, void *buf, size_t len) | |
785 | { | |
786 | /* Check valid length */ | |
c617c0c6 | 787 | if (len == 0) { |
e065084a DG |
788 | return -1; |
789 | } | |
790 | ||
791 | return lttcomm_send_unix_sock(sock, buf, len); | |
792 | } | |
793 | ||
5461b305 | 794 | /* |
d063d709 | 795 | * Free memory of a command context structure. |
5461b305 | 796 | */ |
a2fb29a5 | 797 | static void clean_command_ctx(struct command_ctx **cmd_ctx) |
5461b305 | 798 | { |
a2fb29a5 DG |
799 | DBG("Clean command context structure"); |
800 | if (*cmd_ctx) { | |
801 | if ((*cmd_ctx)->llm) { | |
802 | free((*cmd_ctx)->llm); | |
5461b305 | 803 | } |
a2fb29a5 DG |
804 | if ((*cmd_ctx)->lsm) { |
805 | free((*cmd_ctx)->lsm); | |
5461b305 | 806 | } |
a2fb29a5 DG |
807 | free(*cmd_ctx); |
808 | *cmd_ctx = NULL; | |
5461b305 DG |
809 | } |
810 | } | |
811 | ||
fac6795d | 812 | /* |
0fdd1e2c | 813 | * Notify UST applications using the shm mmap futex. |
fac6795d | 814 | */ |
0fdd1e2c | 815 | static int notify_ust_apps(int active) |
fac6795d | 816 | { |
0fdd1e2c | 817 | char *wait_shm_mmap; |
fac6795d | 818 | |
0fdd1e2c | 819 | DBG("Notifying applications of session daemon state: %d", active); |
e07ae692 | 820 | |
0fdd1e2c DG |
821 | /* See shm.c for this call implying mmap, shm and futex calls */ |
822 | wait_shm_mmap = shm_ust_get_mmap(wait_shm_path, is_root); | |
823 | if (wait_shm_mmap == NULL) { | |
fac6795d DG |
824 | goto error; |
825 | } | |
826 | ||
0fdd1e2c DG |
827 | /* Wake waiting process */ |
828 | futex_wait_update((int32_t *) wait_shm_mmap, active); | |
829 | ||
830 | /* Apps notified successfully */ | |
831 | return 0; | |
fac6795d DG |
832 | |
833 | error: | |
0fdd1e2c | 834 | return -1; |
fac6795d DG |
835 | } |
836 | ||
e065084a | 837 | /* |
d063d709 DG |
838 | * Setup the outgoing data buffer for the response (llm) by allocating the |
839 | * right amount of memory and copying the original information from the lsm | |
840 | * structure. | |
ca95a216 | 841 | * |
d063d709 | 842 | * Return total size of the buffer pointed by buf. |
ca95a216 | 843 | */ |
5461b305 | 844 | static int setup_lttng_msg(struct command_ctx *cmd_ctx, size_t size) |
ca95a216 | 845 | { |
f3ed775e | 846 | int ret, buf_size; |
ca95a216 | 847 | |
f3ed775e | 848 | buf_size = size; |
5461b305 | 849 | |
ba7f0ae5 | 850 | cmd_ctx->llm = zmalloc(sizeof(struct lttcomm_lttng_msg) + buf_size); |
5461b305 | 851 | if (cmd_ctx->llm == NULL) { |
76d7553f | 852 | PERROR("zmalloc"); |
5461b305 | 853 | ret = -ENOMEM; |
ca95a216 DG |
854 | goto error; |
855 | } | |
856 | ||
5461b305 DG |
857 | /* Copy common data */ |
858 | cmd_ctx->llm->cmd_type = cmd_ctx->lsm->cmd_type; | |
9f19cc17 | 859 | cmd_ctx->llm->pid = cmd_ctx->lsm->domain.attr.pid; |
5461b305 | 860 | |
5461b305 DG |
861 | cmd_ctx->llm->data_size = size; |
862 | cmd_ctx->lttng_msg_size = sizeof(struct lttcomm_lttng_msg) + buf_size; | |
863 | ||
ca95a216 DG |
864 | return buf_size; |
865 | ||
866 | error: | |
867 | return ret; | |
868 | } | |
869 | ||
7a485870 | 870 | /* |
5eb91c98 | 871 | * Update the kernel poll set of all channel fd available over all tracing |
d063d709 | 872 | * session. Add the wakeup pipe at the end of the set. |
7a485870 | 873 | */ |
5eb91c98 | 874 | static int update_kernel_poll(struct lttng_poll_event *events) |
7a485870 | 875 | { |
5eb91c98 | 876 | int ret; |
7a485870 DG |
877 | struct ltt_session *session; |
878 | struct ltt_kernel_channel *channel; | |
879 | ||
5eb91c98 | 880 | DBG("Updating kernel poll set"); |
7a485870 | 881 | |
54d01ffb | 882 | session_lock_list(); |
b5541356 | 883 | cds_list_for_each_entry(session, &session_list_ptr->head, list) { |
54d01ffb | 884 | session_lock(session); |
7a485870 | 885 | if (session->kernel_session == NULL) { |
54d01ffb | 886 | session_unlock(session); |
7a485870 DG |
887 | continue; |
888 | } | |
7a485870 | 889 | |
54d01ffb DG |
890 | cds_list_for_each_entry(channel, |
891 | &session->kernel_session->channel_list.head, list) { | |
5eb91c98 DG |
892 | /* Add channel fd to the kernel poll set */ |
893 | ret = lttng_poll_add(events, channel->fd, LPOLLIN | LPOLLRDNORM); | |
894 | if (ret < 0) { | |
54d01ffb | 895 | session_unlock(session); |
5eb91c98 DG |
896 | goto error; |
897 | } | |
898 | DBG("Channel fd %d added to kernel set", channel->fd); | |
7a485870 | 899 | } |
54d01ffb | 900 | session_unlock(session); |
7a485870 | 901 | } |
54d01ffb | 902 | session_unlock_list(); |
7a485870 | 903 | |
5eb91c98 | 904 | return 0; |
7a485870 DG |
905 | |
906 | error: | |
54d01ffb | 907 | session_unlock_list(); |
7a485870 DG |
908 | return -1; |
909 | } | |
910 | ||
911 | /* | |
54d01ffb | 912 | * Find the channel fd from 'fd' over all tracing session. When found, check |
d063d709 | 913 | * for new channel stream and send those stream fds to the kernel consumer. |
7a485870 | 914 | * |
d063d709 | 915 | * Useful for CPU hotplug feature. |
7a485870 | 916 | */ |
2bdd86d4 | 917 | static int update_kernel_stream(struct consumer_data *consumer_data, int fd) |
7a485870 DG |
918 | { |
919 | int ret = 0; | |
920 | struct ltt_session *session; | |
173af62f | 921 | struct ltt_kernel_session *ksess; |
7a485870 DG |
922 | struct ltt_kernel_channel *channel; |
923 | ||
924 | DBG("Updating kernel streams for channel fd %d", fd); | |
925 | ||
54d01ffb | 926 | session_lock_list(); |
b5541356 | 927 | cds_list_for_each_entry(session, &session_list_ptr->head, list) { |
54d01ffb | 928 | session_lock(session); |
7a485870 | 929 | if (session->kernel_session == NULL) { |
54d01ffb | 930 | session_unlock(session); |
7a485870 DG |
931 | continue; |
932 | } | |
173af62f | 933 | ksess = session->kernel_session; |
d9800920 | 934 | |
4a15001e MD |
935 | cds_list_for_each_entry(channel, |
936 | &ksess->channel_list.head, list) { | |
937 | struct lttng_ht_iter iter; | |
938 | struct consumer_socket *socket; | |
d9800920 | 939 | |
4a15001e MD |
940 | if (channel->fd != fd) { |
941 | continue; | |
942 | } | |
943 | DBG("Channel found, updating kernel streams"); | |
944 | ret = kernel_open_channel_stream(channel); | |
945 | if (ret < 0) { | |
946 | goto error; | |
947 | } | |
948 | /* Update the stream global counter */ | |
949 | ksess->stream_count_global += ret; | |
950 | ||
951 | /* | |
952 | * Have we already sent fds to the consumer? If yes, it | |
953 | * means that tracing is started so it is safe to send | |
954 | * our updated stream fds. | |
955 | */ | |
956 | if (ksess->consumer_fds_sent != 1 | |
957 | || ksess->consumer == NULL) { | |
958 | ret = -1; | |
959 | goto error; | |
960 | } | |
961 | ||
962 | rcu_read_lock(); | |
963 | cds_lfht_for_each_entry(ksess->consumer->socks->ht, | |
964 | &iter.iter, socket, node.node) { | |
965 | pthread_mutex_lock(socket->lock); | |
966 | ret = kernel_consumer_send_channel_stream(socket, | |
967 | channel, ksess, | |
968 | session->output_traces ? 1 : 0); | |
969 | pthread_mutex_unlock(socket->lock); | |
970 | if (ret < 0) { | |
e7fe706f | 971 | rcu_read_unlock(); |
4a15001e | 972 | goto error; |
7a485870 | 973 | } |
7a485870 | 974 | } |
4a15001e | 975 | rcu_read_unlock(); |
7a485870 | 976 | } |
54d01ffb | 977 | session_unlock(session); |
7a485870 | 978 | } |
54d01ffb | 979 | session_unlock_list(); |
b3c750d2 | 980 | return ret; |
7a485870 | 981 | |
b3c750d2 | 982 | error: |
54d01ffb DG |
983 | session_unlock(session); |
984 | session_unlock_list(); | |
7a485870 DG |
985 | return ret; |
986 | } | |
987 | ||
487cf67c | 988 | /* |
ffe60014 DG |
989 | * For each tracing session, update newly registered apps. The session list |
990 | * lock MUST be acquired before calling this. | |
487cf67c DG |
991 | */ |
992 | static void update_ust_app(int app_sock) | |
993 | { | |
994 | struct ltt_session *sess, *stmp; | |
995 | ||
fdadac08 DG |
996 | /* Consumer is in an ERROR state. Stop any application update. */ |
997 | if (uatomic_read(&ust_consumerd_state) == CONSUMER_ERROR) { | |
998 | /* Stop the update process since the consumer is dead. */ | |
999 | return; | |
1000 | } | |
1001 | ||
487cf67c DG |
1002 | /* For all tracing session(s) */ |
1003 | cds_list_for_each_entry_safe(sess, stmp, &session_list_ptr->head, list) { | |
a9ad0c8f MD |
1004 | struct ust_app *app; |
1005 | ||
4ee14516 | 1006 | session_lock(sess); |
a9ad0c8f MD |
1007 | if (!sess->ust_session) { |
1008 | goto unlock_session; | |
1009 | } | |
1010 | ||
1011 | rcu_read_lock(); | |
1012 | assert(app_sock >= 0); | |
1013 | app = ust_app_find_by_sock(app_sock); | |
1014 | if (app == NULL) { | |
1015 | /* | |
1016 | * Application can be unregistered before so | |
1017 | * this is possible hence simply stopping the | |
1018 | * update. | |
1019 | */ | |
1020 | DBG3("UST app update failed to find app sock %d", | |
1021 | app_sock); | |
1022 | goto unlock_rcu; | |
421cb601 | 1023 | } |
a9ad0c8f MD |
1024 | ust_app_global_update(sess->ust_session, app); |
1025 | unlock_rcu: | |
1026 | rcu_read_unlock(); | |
1027 | unlock_session: | |
4ee14516 | 1028 | session_unlock(sess); |
487cf67c DG |
1029 | } |
1030 | } | |
1031 | ||
7a485870 | 1032 | /* |
d063d709 | 1033 | * This thread manage event coming from the kernel. |
7a485870 | 1034 | * |
d063d709 DG |
1035 | * Features supported in this thread: |
1036 | * -) CPU Hotplug | |
7a485870 DG |
1037 | */ |
1038 | static void *thread_manage_kernel(void *data) | |
1039 | { | |
139ac872 | 1040 | int ret, i, pollfd, update_poll_flag = 1, err = -1; |
5eb91c98 | 1041 | uint32_t revents, nb_fd; |
7a485870 | 1042 | char tmp; |
5eb91c98 | 1043 | struct lttng_poll_event events; |
7a485870 | 1044 | |
6993eeb3 | 1045 | DBG("[thread] Thread manage kernel started"); |
7a485870 | 1046 | |
6c71277b | 1047 | health_register(health_sessiond, HEALTH_SESSIOND_TYPE_KERNEL); |
927ca06a | 1048 | |
d5d63bf1 DG |
1049 | /* |
1050 | * This first step of the while is to clean this structure which could free | |
6d737ce4 | 1051 | * non NULL pointers so initialize it before the loop. |
d5d63bf1 | 1052 | */ |
6d737ce4 | 1053 | lttng_poll_init(&events); |
d5d63bf1 | 1054 | |
e547b070 | 1055 | if (testpoint(sessiond_thread_manage_kernel)) { |
6993eeb3 CB |
1056 | goto error_testpoint; |
1057 | } | |
8ac94142 | 1058 | |
840cb59c | 1059 | health_code_update(); |
44a5e5eb | 1060 | |
e547b070 | 1061 | if (testpoint(sessiond_thread_manage_kernel_before_loop)) { |
d21b0d71 | 1062 | goto error_testpoint; |
6993eeb3 CB |
1063 | } |
1064 | ||
7a485870 | 1065 | while (1) { |
840cb59c | 1066 | health_code_update(); |
44a5e5eb | 1067 | |
7a485870 | 1068 | if (update_poll_flag == 1) { |
d21b0d71 DG |
1069 | /* Clean events object. We are about to populate it again. */ |
1070 | lttng_poll_clean(&events); | |
1071 | ||
d0b96690 | 1072 | ret = sessiond_set_thread_pollset(&events, 2); |
d21b0d71 DG |
1073 | if (ret < 0) { |
1074 | goto error_poll_create; | |
1075 | } | |
1076 | ||
1077 | ret = lttng_poll_add(&events, kernel_poll_pipe[0], LPOLLIN); | |
1078 | if (ret < 0) { | |
1079 | goto error; | |
1080 | } | |
5f822d0a | 1081 | |
d21b0d71 | 1082 | /* This will add the available kernel channel if any. */ |
5eb91c98 DG |
1083 | ret = update_kernel_poll(&events); |
1084 | if (ret < 0) { | |
7a485870 DG |
1085 | goto error; |
1086 | } | |
1087 | update_poll_flag = 0; | |
1088 | } | |
1089 | ||
7fa2082e | 1090 | DBG("Thread kernel polling"); |
7a485870 DG |
1091 | |
1092 | /* Poll infinite value of time */ | |
88f2b785 | 1093 | restart: |
a78af745 | 1094 | health_poll_entry(); |
5eb91c98 | 1095 | ret = lttng_poll_wait(&events, -1); |
7fa2082e MD |
1096 | DBG("Thread kernel return from poll on %d fds", |
1097 | LTTNG_POLL_GETNB(&events)); | |
a78af745 | 1098 | health_poll_exit(); |
7a485870 | 1099 | if (ret < 0) { |
88f2b785 MD |
1100 | /* |
1101 | * Restart interrupted system call. | |
1102 | */ | |
1103 | if (errno == EINTR) { | |
1104 | goto restart; | |
1105 | } | |
7a485870 DG |
1106 | goto error; |
1107 | } else if (ret == 0) { | |
1108 | /* Should not happen since timeout is infinite */ | |
85611738 DG |
1109 | ERR("Return value of poll is 0 with an infinite timeout.\n" |
1110 | "This should not have happened! Continuing..."); | |
7a485870 DG |
1111 | continue; |
1112 | } | |
1113 | ||
0d9c5d77 DG |
1114 | nb_fd = ret; |
1115 | ||
5eb91c98 DG |
1116 | for (i = 0; i < nb_fd; i++) { |
1117 | /* Fetch once the poll data */ | |
1118 | revents = LTTNG_POLL_GETEV(&events, i); | |
1119 | pollfd = LTTNG_POLL_GETFD(&events, i); | |
7a485870 | 1120 | |
840cb59c | 1121 | health_code_update(); |
44a5e5eb | 1122 | |
fd20dac9 MD |
1123 | if (!revents) { |
1124 | /* No activity for this FD (poll implementation). */ | |
1125 | continue; | |
1126 | } | |
1127 | ||
5eb91c98 | 1128 | /* Thread quit pipe has been closed. Killing thread. */ |
d0b96690 | 1129 | ret = sessiond_check_thread_quit_pipe(pollfd, revents); |
5eb91c98 | 1130 | if (ret) { |
139ac872 MD |
1131 | err = 0; |
1132 | goto exit; | |
5eb91c98 | 1133 | } |
7a485870 | 1134 | |
5eb91c98 DG |
1135 | /* Check for data on kernel pipe */ |
1136 | if (pollfd == kernel_poll_pipe[0] && (revents & LPOLLIN)) { | |
6cd525e8 MD |
1137 | (void) lttng_read(kernel_poll_pipe[0], |
1138 | &tmp, 1); | |
f921c78f DG |
1139 | /* |
1140 | * Ret value is useless here, if this pipe gets any actions an | |
1141 | * update is required anyway. | |
1142 | */ | |
5eb91c98 DG |
1143 | update_poll_flag = 1; |
1144 | continue; | |
1145 | } else { | |
1146 | /* | |
1147 | * New CPU detected by the kernel. Adding kernel stream to | |
1148 | * kernel session and updating the kernel consumer | |
1149 | */ | |
1150 | if (revents & LPOLLIN) { | |
2bdd86d4 | 1151 | ret = update_kernel_stream(&kconsumer_data, pollfd); |
5eb91c98 DG |
1152 | if (ret < 0) { |
1153 | continue; | |
1154 | } | |
1155 | break; | |
1156 | /* | |
1157 | * TODO: We might want to handle the LPOLLERR | LPOLLHUP | |
1158 | * and unregister kernel stream at this point. | |
1159 | */ | |
7a485870 | 1160 | } |
7a485870 DG |
1161 | } |
1162 | } | |
1163 | } | |
1164 | ||
139ac872 | 1165 | exit: |
7a485870 | 1166 | error: |
5eb91c98 | 1167 | lttng_poll_clean(&events); |
76d7553f | 1168 | error_poll_create: |
6993eeb3 | 1169 | error_testpoint: |
6620da75 DG |
1170 | utils_close_pipe(kernel_poll_pipe); |
1171 | kernel_poll_pipe[0] = kernel_poll_pipe[1] = -1; | |
139ac872 | 1172 | if (err) { |
840cb59c | 1173 | health_error(); |
139ac872 | 1174 | ERR("Health error occurred in %s", __func__); |
6620da75 DG |
1175 | WARN("Kernel thread died unexpectedly. " |
1176 | "Kernel tracing can continue but CPU hotplug is disabled."); | |
139ac872 | 1177 | } |
8782cc74 | 1178 | health_unregister(health_sessiond); |
76d7553f | 1179 | DBG("Kernel thread dying"); |
7a485870 DG |
1180 | return NULL; |
1181 | } | |
1182 | ||
a23ec3a7 DG |
1183 | /* |
1184 | * Signal pthread condition of the consumer data that the thread. | |
1185 | */ | |
1186 | static void signal_consumer_condition(struct consumer_data *data, int state) | |
1187 | { | |
1188 | pthread_mutex_lock(&data->cond_mutex); | |
1189 | ||
1190 | /* | |
1191 | * The state is set before signaling. It can be any value, it's the waiter | |
1192 | * job to correctly interpret this condition variable associated to the | |
1193 | * consumer pthread_cond. | |
1194 | * | |
1195 | * A value of 0 means that the corresponding thread of the consumer data | |
1196 | * was not started. 1 indicates that the thread has started and is ready | |
1197 | * for action. A negative value means that there was an error during the | |
1198 | * thread bootstrap. | |
1199 | */ | |
1200 | data->consumer_thread_is_ready = state; | |
1201 | (void) pthread_cond_signal(&data->cond); | |
1202 | ||
1203 | pthread_mutex_unlock(&data->cond_mutex); | |
1204 | } | |
1205 | ||
1d4b027a | 1206 | /* |
3bd1e081 | 1207 | * This thread manage the consumer error sent back to the session daemon. |
1d4b027a | 1208 | */ |
3bd1e081 | 1209 | static void *thread_manage_consumer(void *data) |
1d4b027a | 1210 | { |
42fc1d0b | 1211 | int sock = -1, i, ret, pollfd, err = -1, should_quit = 0; |
5eb91c98 | 1212 | uint32_t revents, nb_fd; |
1d4b027a | 1213 | enum lttcomm_return_code code; |
5eb91c98 | 1214 | struct lttng_poll_event events; |
3bd1e081 | 1215 | struct consumer_data *consumer_data = data; |
1d4b027a | 1216 | |
3bd1e081 | 1217 | DBG("[thread] Manage consumer started"); |
1d4b027a | 1218 | |
6c71277b | 1219 | health_register(health_sessiond, HEALTH_SESSIOND_TYPE_CONSUMER); |
927ca06a | 1220 | |
855060f8 | 1221 | health_code_update(); |
9449cc75 | 1222 | |
5eb91c98 | 1223 | /* |
331744e3 JD |
1224 | * Pass 3 as size here for the thread quit pipe, consumerd_err_sock and the |
1225 | * metadata_sock. Nothing more will be added to this poll set. | |
5eb91c98 | 1226 | */ |
331744e3 | 1227 | ret = sessiond_set_thread_pollset(&events, 3); |
5eb91c98 | 1228 | if (ret < 0) { |
76d7553f | 1229 | goto error_poll; |
5eb91c98 | 1230 | } |
273ea72c | 1231 | |
edb8b045 DG |
1232 | /* |
1233 | * The error socket here is already in a listening state which was done | |
1234 | * just before spawning this thread to avoid a race between the consumer | |
1235 | * daemon exec trying to connect and the listen() call. | |
1236 | */ | |
3bd1e081 | 1237 | ret = lttng_poll_add(&events, consumer_data->err_sock, LPOLLIN | LPOLLRDHUP); |
5eb91c98 DG |
1238 | if (ret < 0) { |
1239 | goto error; | |
1240 | } | |
1241 | ||
840cb59c | 1242 | health_code_update(); |
44a5e5eb | 1243 | |
331744e3 | 1244 | /* Infinite blocking call, waiting for transmission */ |
88f2b785 | 1245 | restart: |
a78af745 | 1246 | health_poll_entry(); |
8ac94142 | 1247 | |
e547b070 | 1248 | if (testpoint(sessiond_thread_manage_consumer)) { |
6993eeb3 CB |
1249 | goto error; |
1250 | } | |
8ac94142 | 1251 | |
5eb91c98 | 1252 | ret = lttng_poll_wait(&events, -1); |
a78af745 | 1253 | health_poll_exit(); |
273ea72c | 1254 | if (ret < 0) { |
88f2b785 MD |
1255 | /* |
1256 | * Restart interrupted system call. | |
1257 | */ | |
1258 | if (errno == EINTR) { | |
1259 | goto restart; | |
1260 | } | |
273ea72c DG |
1261 | goto error; |
1262 | } | |
1263 | ||
0d9c5d77 DG |
1264 | nb_fd = ret; |
1265 | ||
5eb91c98 DG |
1266 | for (i = 0; i < nb_fd; i++) { |
1267 | /* Fetch once the poll data */ | |
1268 | revents = LTTNG_POLL_GETEV(&events, i); | |
1269 | pollfd = LTTNG_POLL_GETFD(&events, i); | |
1270 | ||
840cb59c | 1271 | health_code_update(); |
44a5e5eb | 1272 | |
fd20dac9 MD |
1273 | if (!revents) { |
1274 | /* No activity for this FD (poll implementation). */ | |
1275 | continue; | |
1276 | } | |
1277 | ||
5eb91c98 | 1278 | /* Thread quit pipe has been closed. Killing thread. */ |
d0b96690 | 1279 | ret = sessiond_check_thread_quit_pipe(pollfd, revents); |
5eb91c98 | 1280 | if (ret) { |
139ac872 MD |
1281 | err = 0; |
1282 | goto exit; | |
5eb91c98 DG |
1283 | } |
1284 | ||
1285 | /* Event on the registration socket */ | |
3bd1e081 | 1286 | if (pollfd == consumer_data->err_sock) { |
5eb91c98 | 1287 | if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) { |
3bd1e081 | 1288 | ERR("consumer err socket poll error"); |
5eb91c98 DG |
1289 | goto error; |
1290 | } | |
1291 | } | |
273ea72c DG |
1292 | } |
1293 | ||
3bd1e081 | 1294 | sock = lttcomm_accept_unix_sock(consumer_data->err_sock); |
1d4b027a DG |
1295 | if (sock < 0) { |
1296 | goto error; | |
1297 | } | |
1298 | ||
b662582b DG |
1299 | /* |
1300 | * Set the CLOEXEC flag. Return code is useless because either way, the | |
1301 | * show must go on. | |
1302 | */ | |
1303 | (void) utils_set_fd_cloexec(sock); | |
1304 | ||
840cb59c | 1305 | health_code_update(); |
44a5e5eb | 1306 | |
3bd1e081 | 1307 | DBG2("Receiving code from consumer err_sock"); |
ee0b0061 | 1308 | |
712ea556 | 1309 | /* Getting status code from kconsumerd */ |
54d01ffb DG |
1310 | ret = lttcomm_recv_unix_sock(sock, &code, |
1311 | sizeof(enum lttcomm_return_code)); | |
1d4b027a DG |
1312 | if (ret <= 0) { |
1313 | goto error; | |
1314 | } | |
1315 | ||
840cb59c | 1316 | health_code_update(); |
f73fabfd | 1317 | if (code == LTTCOMM_CONSUMERD_COMMAND_SOCK_READY) { |
331744e3 | 1318 | /* Connect both socket, command and metadata. */ |
3bd1e081 MD |
1319 | consumer_data->cmd_sock = |
1320 | lttcomm_connect_unix_sock(consumer_data->cmd_unix_sock_path); | |
4ce514c4 | 1321 | consumer_data->metadata_fd = |
331744e3 | 1322 | lttcomm_connect_unix_sock(consumer_data->cmd_unix_sock_path); |
92db7cdc DG |
1323 | if (consumer_data->cmd_sock < 0 |
1324 | || consumer_data->metadata_fd < 0) { | |
331744e3 | 1325 | PERROR("consumer connect cmd socket"); |
a23ec3a7 DG |
1326 | /* On error, signal condition and quit. */ |
1327 | signal_consumer_condition(consumer_data, -1); | |
1d4b027a DG |
1328 | goto error; |
1329 | } | |
9363801e | 1330 | consumer_data->metadata_sock.fd_ptr = &consumer_data->metadata_fd; |
331744e3 JD |
1331 | /* Create metadata socket lock. */ |
1332 | consumer_data->metadata_sock.lock = zmalloc(sizeof(pthread_mutex_t)); | |
1333 | if (consumer_data->metadata_sock.lock == NULL) { | |
1334 | PERROR("zmalloc pthread mutex"); | |
1335 | ret = -1; | |
1336 | goto error; | |
1337 | } | |
1338 | pthread_mutex_init(consumer_data->metadata_sock.lock, NULL); | |
1339 | ||
a23ec3a7 | 1340 | signal_consumer_condition(consumer_data, 1); |
331744e3 JD |
1341 | DBG("Consumer command socket ready (fd: %d", consumer_data->cmd_sock); |
1342 | DBG("Consumer metadata socket ready (fd: %d)", | |
4ce514c4 | 1343 | consumer_data->metadata_fd); |
1d4b027a | 1344 | } else { |
3bd1e081 | 1345 | ERR("consumer error when waiting for SOCK_READY : %s", |
1d4b027a DG |
1346 | lttcomm_get_readable_code(-code)); |
1347 | goto error; | |
1348 | } | |
1349 | ||
331744e3 | 1350 | /* Remove the consumerd error sock since we've established a connexion */ |
3bd1e081 | 1351 | ret = lttng_poll_del(&events, consumer_data->err_sock); |
72079cae | 1352 | if (ret < 0) { |
72079cae DG |
1353 | goto error; |
1354 | } | |
1355 | ||
331744e3 | 1356 | /* Add new accepted error socket. */ |
5eb91c98 DG |
1357 | ret = lttng_poll_add(&events, sock, LPOLLIN | LPOLLRDHUP); |
1358 | if (ret < 0) { | |
72079cae | 1359 | goto error; |
5eb91c98 DG |
1360 | } |
1361 | ||
331744e3 | 1362 | /* Add metadata socket that is successfully connected. */ |
4ce514c4 | 1363 | ret = lttng_poll_add(&events, consumer_data->metadata_fd, |
331744e3 JD |
1364 | LPOLLIN | LPOLLRDHUP); |
1365 | if (ret < 0) { | |
1366 | goto error; | |
1367 | } | |
1368 | ||
840cb59c | 1369 | health_code_update(); |
44a5e5eb | 1370 | |
331744e3 | 1371 | /* Infinite blocking call, waiting for transmission */ |
88f2b785 | 1372 | restart_poll: |
331744e3 | 1373 | while (1) { |
42fc1d0b DG |
1374 | health_code_update(); |
1375 | ||
1376 | /* Exit the thread because the thread quit pipe has been triggered. */ | |
1377 | if (should_quit) { | |
1378 | /* Not a health error. */ | |
1379 | err = 0; | |
1380 | goto exit; | |
1381 | } | |
1382 | ||
331744e3 JD |
1383 | health_poll_entry(); |
1384 | ret = lttng_poll_wait(&events, -1); | |
1385 | health_poll_exit(); | |
1386 | if (ret < 0) { | |
1387 | /* | |
1388 | * Restart interrupted system call. | |
1389 | */ | |
1390 | if (errno == EINTR) { | |
1391 | goto restart_poll; | |
1392 | } | |
1393 | goto error; | |
88f2b785 | 1394 | } |
72079cae | 1395 | |
331744e3 | 1396 | nb_fd = ret; |
0d9c5d77 | 1397 | |
331744e3 JD |
1398 | for (i = 0; i < nb_fd; i++) { |
1399 | /* Fetch once the poll data */ | |
1400 | revents = LTTNG_POLL_GETEV(&events, i); | |
1401 | pollfd = LTTNG_POLL_GETFD(&events, i); | |
5eb91c98 | 1402 | |
331744e3 | 1403 | health_code_update(); |
44a5e5eb | 1404 | |
fd20dac9 MD |
1405 | if (!revents) { |
1406 | /* No activity for this FD (poll implementation). */ | |
1407 | continue; | |
1408 | } | |
1409 | ||
42fc1d0b DG |
1410 | /* |
1411 | * Thread quit pipe has been triggered, flag that we should stop | |
1412 | * but continue the current loop to handle potential data from | |
1413 | * consumer. | |
1414 | */ | |
1415 | should_quit = sessiond_check_thread_quit_pipe(pollfd, revents); | |
5eb91c98 | 1416 | |
331744e3 JD |
1417 | if (pollfd == sock) { |
1418 | /* Event on the consumerd socket */ | |
1419 | if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) { | |
1420 | ERR("consumer err socket second poll error"); | |
1421 | goto error; | |
1422 | } | |
1423 | health_code_update(); | |
1424 | /* Wait for any kconsumerd error */ | |
1425 | ret = lttcomm_recv_unix_sock(sock, &code, | |
1426 | sizeof(enum lttcomm_return_code)); | |
1427 | if (ret <= 0) { | |
1428 | ERR("consumer closed the command socket"); | |
1429 | goto error; | |
1430 | } | |
1431 | ||
1432 | ERR("consumer return code : %s", | |
1433 | lttcomm_get_readable_code(-code)); | |
1434 | ||
1435 | goto exit; | |
4ce514c4 | 1436 | } else if (pollfd == consumer_data->metadata_fd) { |
331744e3 JD |
1437 | /* UST metadata requests */ |
1438 | ret = ust_consumer_metadata_request( | |
1439 | &consumer_data->metadata_sock); | |
1440 | if (ret < 0) { | |
1441 | ERR("Handling metadata request"); | |
1442 | goto error; | |
1443 | } | |
5eb91c98 | 1444 | } |
42fc1d0b | 1445 | /* No need for an else branch all FDs are tested prior. */ |
5eb91c98 | 1446 | } |
331744e3 | 1447 | health_code_update(); |
5eb91c98 DG |
1448 | } |
1449 | ||
139ac872 | 1450 | exit: |
1d4b027a | 1451 | error: |
fdadac08 DG |
1452 | /* |
1453 | * We lock here because we are about to close the sockets and some other | |
92db7cdc DG |
1454 | * thread might be using them so get exclusive access which will abort all |
1455 | * other consumer command by other threads. | |
fdadac08 DG |
1456 | */ |
1457 | pthread_mutex_lock(&consumer_data->lock); | |
1458 | ||
5c827ce0 DG |
1459 | /* Immediately set the consumerd state to stopped */ |
1460 | if (consumer_data->type == LTTNG_CONSUMER_KERNEL) { | |
1461 | uatomic_set(&kernel_consumerd_state, CONSUMER_ERROR); | |
1462 | } else if (consumer_data->type == LTTNG_CONSUMER64_UST || | |
1463 | consumer_data->type == LTTNG_CONSUMER32_UST) { | |
1464 | uatomic_set(&ust_consumerd_state, CONSUMER_ERROR); | |
1465 | } else { | |
1466 | /* Code flow error... */ | |
1467 | assert(0); | |
1468 | } | |
1469 | ||
76d7553f MD |
1470 | if (consumer_data->err_sock >= 0) { |
1471 | ret = close(consumer_data->err_sock); | |
1472 | if (ret) { | |
1473 | PERROR("close"); | |
1474 | } | |
a76cbd9f | 1475 | consumer_data->err_sock = -1; |
76d7553f MD |
1476 | } |
1477 | if (consumer_data->cmd_sock >= 0) { | |
1478 | ret = close(consumer_data->cmd_sock); | |
1479 | if (ret) { | |
1480 | PERROR("close"); | |
1481 | } | |
a76cbd9f | 1482 | consumer_data->cmd_sock = -1; |
76d7553f | 1483 | } |
96544455 SS |
1484 | if (consumer_data->metadata_sock.fd_ptr && |
1485 | *consumer_data->metadata_sock.fd_ptr >= 0) { | |
9363801e | 1486 | ret = close(*consumer_data->metadata_sock.fd_ptr); |
331744e3 JD |
1487 | if (ret) { |
1488 | PERROR("close"); | |
1489 | } | |
1490 | } | |
76d7553f MD |
1491 | if (sock >= 0) { |
1492 | ret = close(sock); | |
1493 | if (ret) { | |
1494 | PERROR("close"); | |
1495 | } | |
1496 | } | |
273ea72c | 1497 | |
3bd1e081 MD |
1498 | unlink(consumer_data->err_unix_sock_path); |
1499 | unlink(consumer_data->cmd_unix_sock_path); | |
1500 | consumer_data->pid = 0; | |
fdadac08 | 1501 | pthread_mutex_unlock(&consumer_data->lock); |
92db7cdc | 1502 | |
fdadac08 | 1503 | /* Cleanup metadata socket mutex. */ |
96544455 SS |
1504 | if (consumer_data->metadata_sock.lock) { |
1505 | pthread_mutex_destroy(consumer_data->metadata_sock.lock); | |
1506 | free(consumer_data->metadata_sock.lock); | |
1507 | } | |
5eb91c98 | 1508 | lttng_poll_clean(&events); |
76d7553f | 1509 | error_poll: |
139ac872 | 1510 | if (err) { |
840cb59c | 1511 | health_error(); |
139ac872 MD |
1512 | ERR("Health error occurred in %s", __func__); |
1513 | } | |
8782cc74 | 1514 | health_unregister(health_sessiond); |
76d7553f | 1515 | DBG("consumer thread cleanup completed"); |
0177d773 | 1516 | |
5eb91c98 | 1517 | return NULL; |
099e26bd DG |
1518 | } |
1519 | ||
099e26bd DG |
1520 | /* |
1521 | * This thread manage application communication. | |
1d4b027a DG |
1522 | */ |
1523 | static void *thread_manage_apps(void *data) | |
099e26bd | 1524 | { |
139ac872 | 1525 | int i, ret, pollfd, err = -1; |
6cd525e8 | 1526 | ssize_t size_ret; |
5eb91c98 | 1527 | uint32_t revents, nb_fd; |
5eb91c98 | 1528 | struct lttng_poll_event events; |
099e26bd DG |
1529 | |
1530 | DBG("[thread] Manage application started"); | |
1531 | ||
f6a9efaa DG |
1532 | rcu_register_thread(); |
1533 | rcu_thread_online(); | |
1534 | ||
6c71277b | 1535 | health_register(health_sessiond, HEALTH_SESSIOND_TYPE_APP_MANAGE); |
927ca06a | 1536 | |
e547b070 | 1537 | if (testpoint(sessiond_thread_manage_apps)) { |
6993eeb3 CB |
1538 | goto error_testpoint; |
1539 | } | |
1540 | ||
840cb59c | 1541 | health_code_update(); |
44a5e5eb | 1542 | |
d0b96690 | 1543 | ret = sessiond_set_thread_pollset(&events, 2); |
5eb91c98 | 1544 | if (ret < 0) { |
76d7553f | 1545 | goto error_poll_create; |
5eb91c98 | 1546 | } |
099e26bd | 1547 | |
5eb91c98 DG |
1548 | ret = lttng_poll_add(&events, apps_cmd_pipe[0], LPOLLIN | LPOLLRDHUP); |
1549 | if (ret < 0) { | |
1550 | goto error; | |
1551 | } | |
099e26bd | 1552 | |
e547b070 | 1553 | if (testpoint(sessiond_thread_manage_apps_before_loop)) { |
6993eeb3 CB |
1554 | goto error; |
1555 | } | |
8ac94142 | 1556 | |
840cb59c | 1557 | health_code_update(); |
44a5e5eb | 1558 | |
5eb91c98 | 1559 | while (1) { |
7fa2082e | 1560 | DBG("Apps thread polling"); |
099e26bd DG |
1561 | |
1562 | /* Inifinite blocking call, waiting for transmission */ | |
88f2b785 | 1563 | restart: |
a78af745 | 1564 | health_poll_entry(); |
5eb91c98 | 1565 | ret = lttng_poll_wait(&events, -1); |
7fa2082e MD |
1566 | DBG("Apps thread return from poll on %d fds", |
1567 | LTTNG_POLL_GETNB(&events)); | |
a78af745 | 1568 | health_poll_exit(); |
099e26bd | 1569 | if (ret < 0) { |
88f2b785 MD |
1570 | /* |
1571 | * Restart interrupted system call. | |
1572 | */ | |
1573 | if (errno == EINTR) { | |
1574 | goto restart; | |
1575 | } | |
099e26bd DG |
1576 | goto error; |
1577 | } | |
1578 | ||
0d9c5d77 DG |
1579 | nb_fd = ret; |
1580 | ||
5eb91c98 DG |
1581 | for (i = 0; i < nb_fd; i++) { |
1582 | /* Fetch once the poll data */ | |
1583 | revents = LTTNG_POLL_GETEV(&events, i); | |
1584 | pollfd = LTTNG_POLL_GETFD(&events, i); | |
1585 | ||
840cb59c | 1586 | health_code_update(); |
44a5e5eb | 1587 | |
fd20dac9 MD |
1588 | if (!revents) { |
1589 | /* No activity for this FD (poll implementation). */ | |
1590 | continue; | |
1591 | } | |
1592 | ||
5eb91c98 | 1593 | /* Thread quit pipe has been closed. Killing thread. */ |
d0b96690 | 1594 | ret = sessiond_check_thread_quit_pipe(pollfd, revents); |
5eb91c98 | 1595 | if (ret) { |
139ac872 MD |
1596 | err = 0; |
1597 | goto exit; | |
5eb91c98 | 1598 | } |
099e26bd | 1599 | |
5eb91c98 DG |
1600 | /* Inspect the apps cmd pipe */ |
1601 | if (pollfd == apps_cmd_pipe[0]) { | |
1602 | if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) { | |
1603 | ERR("Apps command pipe error"); | |
0177d773 | 1604 | goto error; |
5eb91c98 | 1605 | } else if (revents & LPOLLIN) { |
d0b96690 DG |
1606 | int sock; |
1607 | ||
5eb91c98 | 1608 | /* Empty pipe */ |
6cd525e8 MD |
1609 | size_ret = lttng_read(apps_cmd_pipe[0], &sock, sizeof(sock)); |
1610 | if (size_ret < sizeof(sock)) { | |
76d7553f | 1611 | PERROR("read apps cmd pipe"); |
5eb91c98 DG |
1612 | goto error; |
1613 | } | |
099e26bd | 1614 | |
840cb59c | 1615 | health_code_update(); |
44a5e5eb | 1616 | |
ffe60014 | 1617 | /* |
d0b96690 DG |
1618 | * We only monitor the error events of the socket. This |
1619 | * thread does not handle any incoming data from UST | |
1620 | * (POLLIN). | |
ffe60014 | 1621 | */ |
d0b96690 DG |
1622 | ret = lttng_poll_add(&events, sock, |
1623 | LPOLLERR | LPOLLHUP | LPOLLRDHUP); | |
1624 | if (ret < 0) { | |
5eb91c98 | 1625 | goto error; |
e0c7ec2b | 1626 | } |
acc7b41b | 1627 | |
d0b96690 | 1628 | DBG("Apps with sock %d added to poll set", sock); |
0177d773 | 1629 | } |
5eb91c98 DG |
1630 | } else { |
1631 | /* | |
54d01ffb DG |
1632 | * At this point, we know that a registered application made |
1633 | * the event at poll_wait. | |
5eb91c98 DG |
1634 | */ |
1635 | if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) { | |
1636 | /* Removing from the poll set */ | |
1637 | ret = lttng_poll_del(&events, pollfd); | |
1638 | if (ret < 0) { | |
1639 | goto error; | |
1640 | } | |
099e26bd | 1641 | |
b9d9b220 | 1642 | /* Socket closed on remote end. */ |
56fff090 | 1643 | ust_app_unregister(pollfd); |
5eb91c98 | 1644 | } |
099e26bd | 1645 | } |
44a5e5eb | 1646 | |
840cb59c | 1647 | health_code_update(); |
099e26bd | 1648 | } |
099e26bd DG |
1649 | } |
1650 | ||
139ac872 | 1651 | exit: |
099e26bd | 1652 | error: |
5eb91c98 | 1653 | lttng_poll_clean(&events); |
76d7553f | 1654 | error_poll_create: |
6993eeb3 | 1655 | error_testpoint: |
6620da75 DG |
1656 | utils_close_pipe(apps_cmd_pipe); |
1657 | apps_cmd_pipe[0] = apps_cmd_pipe[1] = -1; | |
1658 | ||
1659 | /* | |
1660 | * We don't clean the UST app hash table here since already registered | |
1661 | * applications can still be controlled so let them be until the session | |
1662 | * daemon dies or the applications stop. | |
1663 | */ | |
1664 | ||
139ac872 | 1665 | if (err) { |
840cb59c | 1666 | health_error(); |
139ac872 MD |
1667 | ERR("Health error occurred in %s", __func__); |
1668 | } | |
8782cc74 | 1669 | health_unregister(health_sessiond); |
76d7553f | 1670 | DBG("Application communication apps thread cleanup complete"); |
f6a9efaa DG |
1671 | rcu_thread_offline(); |
1672 | rcu_unregister_thread(); | |
099e26bd DG |
1673 | return NULL; |
1674 | } | |
1675 | ||
d0b96690 | 1676 | /* |
d88aee68 DG |
1677 | * Send a socket to a thread This is called from the dispatch UST registration |
1678 | * thread once all sockets are set for the application. | |
d0b96690 | 1679 | * |
b85dc84c DG |
1680 | * The sock value can be invalid, we don't really care, the thread will handle |
1681 | * it and make the necessary cleanup if so. | |
1682 | * | |
d0b96690 DG |
1683 | * On success, return 0 else a negative value being the errno message of the |
1684 | * write(). | |
1685 | */ | |
d88aee68 | 1686 | static int send_socket_to_thread(int fd, int sock) |
d0b96690 | 1687 | { |
6cd525e8 | 1688 | ssize_t ret; |
d0b96690 | 1689 | |
b85dc84c DG |
1690 | /* |
1691 | * It's possible that the FD is set as invalid with -1 concurrently just | |
1692 | * before calling this function being a shutdown state of the thread. | |
1693 | */ | |
1694 | if (fd < 0) { | |
1695 | ret = -EBADF; | |
1696 | goto error; | |
1697 | } | |
d0b96690 | 1698 | |
6cd525e8 MD |
1699 | ret = lttng_write(fd, &sock, sizeof(sock)); |
1700 | if (ret < sizeof(sock)) { | |
d88aee68 | 1701 | PERROR("write apps pipe %d", fd); |
d0b96690 DG |
1702 | if (ret < 0) { |
1703 | ret = -errno; | |
1704 | } | |
1705 | goto error; | |
1706 | } | |
1707 | ||
1708 | /* All good. Don't send back the write positive ret value. */ | |
1709 | ret = 0; | |
1710 | error: | |
6cd525e8 | 1711 | return (int) ret; |
d0b96690 DG |
1712 | } |
1713 | ||
f45e313d DG |
1714 | /* |
1715 | * Sanitize the wait queue of the dispatch registration thread meaning removing | |
1716 | * invalid nodes from it. This is to avoid memory leaks for the case the UST | |
1717 | * notify socket is never received. | |
1718 | */ | |
1719 | static void sanitize_wait_queue(struct ust_reg_wait_queue *wait_queue) | |
1720 | { | |
1721 | int ret, nb_fd = 0, i; | |
1722 | unsigned int fd_added = 0; | |
1723 | struct lttng_poll_event events; | |
1724 | struct ust_reg_wait_node *wait_node = NULL, *tmp_wait_node; | |
1725 | ||
1726 | assert(wait_queue); | |
1727 | ||
1728 | lttng_poll_init(&events); | |
1729 | ||
1730 | /* Just skip everything for an empty queue. */ | |
1731 | if (!wait_queue->count) { | |
1732 | goto end; | |
1733 | } | |
1734 | ||
1735 | ret = lttng_poll_create(&events, wait_queue->count, LTTNG_CLOEXEC); | |
1736 | if (ret < 0) { | |
1737 | goto error_create; | |
1738 | } | |
1739 | ||
1740 | cds_list_for_each_entry_safe(wait_node, tmp_wait_node, | |
1741 | &wait_queue->head, head) { | |
1742 | assert(wait_node->app); | |
1743 | ret = lttng_poll_add(&events, wait_node->app->sock, | |
1744 | LPOLLHUP | LPOLLERR); | |
1745 | if (ret < 0) { | |
1746 | goto error; | |
1747 | } | |
1748 | ||
1749 | fd_added = 1; | |
1750 | } | |
1751 | ||
1752 | if (!fd_added) { | |
1753 | goto end; | |
1754 | } | |
1755 | ||
1756 | /* | |
1757 | * Poll but don't block so we can quickly identify the faulty events and | |
1758 | * clean them afterwards from the wait queue. | |
1759 | */ | |
1760 | ret = lttng_poll_wait(&events, 0); | |
1761 | if (ret < 0) { | |
1762 | goto error; | |
1763 | } | |
1764 | nb_fd = ret; | |
1765 | ||
1766 | for (i = 0; i < nb_fd; i++) { | |
1767 | /* Get faulty FD. */ | |
1768 | uint32_t revents = LTTNG_POLL_GETEV(&events, i); | |
1769 | int pollfd = LTTNG_POLL_GETFD(&events, i); | |
1770 | ||
fd20dac9 MD |
1771 | if (!revents) { |
1772 | /* No activity for this FD (poll implementation). */ | |
1773 | continue; | |
1774 | } | |
1775 | ||
f45e313d DG |
1776 | cds_list_for_each_entry_safe(wait_node, tmp_wait_node, |
1777 | &wait_queue->head, head) { | |
1778 | if (pollfd == wait_node->app->sock && | |
1779 | (revents & (LPOLLHUP | LPOLLERR))) { | |
1780 | cds_list_del(&wait_node->head); | |
1781 | wait_queue->count--; | |
1782 | ust_app_destroy(wait_node->app); | |
1783 | free(wait_node); | |
1784 | break; | |
1785 | } | |
1786 | } | |
1787 | } | |
1788 | ||
1789 | if (nb_fd > 0) { | |
1790 | DBG("Wait queue sanitized, %d node were cleaned up", nb_fd); | |
1791 | } | |
1792 | ||
1793 | end: | |
1794 | lttng_poll_clean(&events); | |
1795 | return; | |
1796 | ||
1797 | error: | |
1798 | lttng_poll_clean(&events); | |
1799 | error_create: | |
1800 | ERR("Unable to sanitize wait queue"); | |
1801 | return; | |
1802 | } | |
1803 | ||
099e26bd DG |
1804 | /* |
1805 | * Dispatch request from the registration threads to the application | |
1806 | * communication thread. | |
1807 | */ | |
1808 | static void *thread_dispatch_ust_registration(void *data) | |
1809 | { | |
12e2b881 | 1810 | int ret, err = -1; |
8bdee6e2 | 1811 | struct cds_wfcq_node *node; |
099e26bd | 1812 | struct ust_command *ust_cmd = NULL; |
f45e313d DG |
1813 | struct ust_reg_wait_node *wait_node = NULL, *tmp_wait_node; |
1814 | struct ust_reg_wait_queue wait_queue = { | |
1815 | .count = 0, | |
1816 | }; | |
d0b96690 | 1817 | |
6c71277b | 1818 | health_register(health_sessiond, HEALTH_SESSIOND_TYPE_APP_REG_DISPATCH); |
12e2b881 | 1819 | |
9ad42ec1 MD |
1820 | if (testpoint(sessiond_thread_app_reg_dispatch)) { |
1821 | goto error_testpoint; | |
1822 | } | |
1823 | ||
12e2b881 MD |
1824 | health_code_update(); |
1825 | ||
f45e313d | 1826 | CDS_INIT_LIST_HEAD(&wait_queue.head); |
099e26bd DG |
1827 | |
1828 | DBG("[thread] Dispatch UST command started"); | |
1829 | ||
26c9d55e | 1830 | while (!CMM_LOAD_SHARED(dispatch_thread_exit)) { |
12e2b881 MD |
1831 | health_code_update(); |
1832 | ||
099e26bd DG |
1833 | /* Atomically prepare the queue futex */ |
1834 | futex_nto1_prepare(&ust_cmd_queue.futex); | |
1835 | ||
1836 | do { | |
d0b96690 | 1837 | struct ust_app *app = NULL; |
7972aab2 | 1838 | ust_cmd = NULL; |
d0b96690 | 1839 | |
f45e313d DG |
1840 | /* |
1841 | * Make sure we don't have node(s) that have hung up before receiving | |
1842 | * the notify socket. This is to clean the list in order to avoid | |
1843 | * memory leaks from notify socket that are never seen. | |
1844 | */ | |
1845 | sanitize_wait_queue(&wait_queue); | |
1846 | ||
12e2b881 | 1847 | health_code_update(); |
099e26bd | 1848 | /* Dequeue command for registration */ |
8bdee6e2 | 1849 | node = cds_wfcq_dequeue_blocking(&ust_cmd_queue.head, &ust_cmd_queue.tail); |
099e26bd | 1850 | if (node == NULL) { |
00a17c97 | 1851 | DBG("Woken up but nothing in the UST command queue"); |
099e26bd DG |
1852 | /* Continue thread execution */ |
1853 | break; | |
1854 | } | |
1855 | ||
1856 | ust_cmd = caa_container_of(node, struct ust_command, node); | |
1857 | ||
2f50c8a3 DG |
1858 | DBG("Dispatching UST registration pid:%d ppid:%d uid:%d" |
1859 | " gid:%d sock:%d name:%s (version %d.%d)", | |
1860 | ust_cmd->reg_msg.pid, ust_cmd->reg_msg.ppid, | |
1861 | ust_cmd->reg_msg.uid, ust_cmd->reg_msg.gid, | |
1862 | ust_cmd->sock, ust_cmd->reg_msg.name, | |
1863 | ust_cmd->reg_msg.major, ust_cmd->reg_msg.minor); | |
d0b96690 DG |
1864 | |
1865 | if (ust_cmd->reg_msg.type == USTCTL_SOCKET_CMD) { | |
1866 | wait_node = zmalloc(sizeof(*wait_node)); | |
1867 | if (!wait_node) { | |
1868 | PERROR("zmalloc wait_node dispatch"); | |
020d7f60 DG |
1869 | ret = close(ust_cmd->sock); |
1870 | if (ret < 0) { | |
1871 | PERROR("close ust sock dispatch %d", ust_cmd->sock); | |
1872 | } | |
51dec90d | 1873 | lttng_fd_put(LTTNG_FD_APPS, 1); |
7972aab2 | 1874 | free(ust_cmd); |
d0b96690 DG |
1875 | goto error; |
1876 | } | |
1877 | CDS_INIT_LIST_HEAD(&wait_node->head); | |
1878 | ||
1879 | /* Create application object if socket is CMD. */ | |
1880 | wait_node->app = ust_app_create(&ust_cmd->reg_msg, | |
1881 | ust_cmd->sock); | |
1882 | if (!wait_node->app) { | |
1883 | ret = close(ust_cmd->sock); | |
1884 | if (ret < 0) { | |
1885 | PERROR("close ust sock dispatch %d", ust_cmd->sock); | |
6620da75 | 1886 | } |
51dec90d | 1887 | lttng_fd_put(LTTNG_FD_APPS, 1); |
d88aee68 | 1888 | free(wait_node); |
7972aab2 | 1889 | free(ust_cmd); |
d0b96690 DG |
1890 | continue; |
1891 | } | |
1892 | /* | |
1893 | * Add application to the wait queue so we can set the notify | |
1894 | * socket before putting this object in the global ht. | |
1895 | */ | |
f45e313d DG |
1896 | cds_list_add(&wait_node->head, &wait_queue.head); |
1897 | wait_queue.count++; | |
d0b96690 | 1898 | |
7972aab2 | 1899 | free(ust_cmd); |
d0b96690 DG |
1900 | /* |
1901 | * We have to continue here since we don't have the notify | |
1902 | * socket and the application MUST be added to the hash table | |
1903 | * only at that moment. | |
1904 | */ | |
1905 | continue; | |
1906 | } else { | |
1907 | /* | |
1908 | * Look for the application in the local wait queue and set the | |
1909 | * notify socket if found. | |
1910 | */ | |
d88aee68 | 1911 | cds_list_for_each_entry_safe(wait_node, tmp_wait_node, |
f45e313d | 1912 | &wait_queue.head, head) { |
12e2b881 | 1913 | health_code_update(); |
d0b96690 DG |
1914 | if (wait_node->app->pid == ust_cmd->reg_msg.pid) { |
1915 | wait_node->app->notify_sock = ust_cmd->sock; | |
1916 | cds_list_del(&wait_node->head); | |
f45e313d | 1917 | wait_queue.count--; |
d0b96690 DG |
1918 | app = wait_node->app; |
1919 | free(wait_node); | |
1920 | DBG3("UST app notify socket %d is set", ust_cmd->sock); | |
1921 | break; | |
1922 | } | |
1923 | } | |
020d7f60 DG |
1924 | |
1925 | /* | |
1926 | * With no application at this stage the received socket is | |
1927 | * basically useless so close it before we free the cmd data | |
1928 | * structure for good. | |
1929 | */ | |
1930 | if (!app) { | |
1931 | ret = close(ust_cmd->sock); | |
1932 | if (ret < 0) { | |
1933 | PERROR("close ust sock dispatch %d", ust_cmd->sock); | |
1934 | } | |
51dec90d | 1935 | lttng_fd_put(LTTNG_FD_APPS, 1); |
020d7f60 | 1936 | } |
7972aab2 | 1937 | free(ust_cmd); |
d0b96690 DG |
1938 | } |
1939 | ||
1940 | if (app) { | |
d0b96690 DG |
1941 | /* |
1942 | * @session_lock_list | |
1943 | * | |
1944 | * Lock the global session list so from the register up to the | |
1945 | * registration done message, no thread can see the application | |
1946 | * and change its state. | |
1947 | */ | |
1948 | session_lock_list(); | |
1949 | rcu_read_lock(); | |
d88aee68 | 1950 | |
d0b96690 DG |
1951 | /* |
1952 | * Add application to the global hash table. This needs to be | |
1953 | * done before the update to the UST registry can locate the | |
1954 | * application. | |
1955 | */ | |
1956 | ust_app_add(app); | |
d88aee68 DG |
1957 | |
1958 | /* Set app version. This call will print an error if needed. */ | |
1959 | (void) ust_app_version(app); | |
1960 | ||
1961 | /* Send notify socket through the notify pipe. */ | |
1962 | ret = send_socket_to_thread(apps_cmd_notify_pipe[1], | |
1963 | app->notify_sock); | |
1964 | if (ret < 0) { | |
1965 | rcu_read_unlock(); | |
1966 | session_unlock_list(); | |
b85dc84c DG |
1967 | /* |
1968 | * No notify thread, stop the UST tracing. However, this is | |
1969 | * not an internal error of the this thread thus setting | |
1970 | * the health error code to a normal exit. | |
1971 | */ | |
1972 | err = 0; | |
d88aee68 | 1973 | goto error; |
6620da75 | 1974 | } |
d88aee68 | 1975 | |
d0b96690 DG |
1976 | /* |
1977 | * Update newly registered application with the tracing | |
1978 | * registry info already enabled information. | |
1979 | */ | |
1980 | update_ust_app(app->sock); | |
d88aee68 DG |
1981 | |
1982 | /* | |
1983 | * Don't care about return value. Let the manage apps threads | |
1984 | * handle app unregistration upon socket close. | |
1985 | */ | |
1986 | (void) ust_app_register_done(app->sock); | |
1987 | ||
1988 | /* | |
1989 | * Even if the application socket has been closed, send the app | |
1990 | * to the thread and unregistration will take place at that | |
1991 | * place. | |
1992 | */ | |
1993 | ret = send_socket_to_thread(apps_cmd_pipe[1], app->sock); | |
d0b96690 | 1994 | if (ret < 0) { |
d88aee68 DG |
1995 | rcu_read_unlock(); |
1996 | session_unlock_list(); | |
b85dc84c DG |
1997 | /* |
1998 | * No apps. thread, stop the UST tracing. However, this is | |
1999 | * not an internal error of the this thread thus setting | |
2000 | * the health error code to a normal exit. | |
2001 | */ | |
2002 | err = 0; | |
d88aee68 | 2003 | goto error; |
d0b96690 | 2004 | } |
d88aee68 | 2005 | |
d0b96690 DG |
2006 | rcu_read_unlock(); |
2007 | session_unlock_list(); | |
099e26bd | 2008 | } |
099e26bd DG |
2009 | } while (node != NULL); |
2010 | ||
12e2b881 | 2011 | health_poll_entry(); |
099e26bd DG |
2012 | /* Futex wait on queue. Blocking call on futex() */ |
2013 | futex_nto1_wait(&ust_cmd_queue.futex); | |
12e2b881 | 2014 | health_poll_exit(); |
099e26bd | 2015 | } |
12e2b881 MD |
2016 | /* Normal exit, no error */ |
2017 | err = 0; | |
099e26bd DG |
2018 | |
2019 | error: | |
d88aee68 DG |
2020 | /* Clean up wait queue. */ |
2021 | cds_list_for_each_entry_safe(wait_node, tmp_wait_node, | |
f45e313d | 2022 | &wait_queue.head, head) { |
d88aee68 | 2023 | cds_list_del(&wait_node->head); |
f45e313d | 2024 | wait_queue.count--; |
d88aee68 DG |
2025 | free(wait_node); |
2026 | } | |
2027 | ||
9ad42ec1 | 2028 | error_testpoint: |
099e26bd | 2029 | DBG("Dispatch thread dying"); |
12e2b881 MD |
2030 | if (err) { |
2031 | health_error(); | |
2032 | ERR("Health error occurred in %s", __func__); | |
2033 | } | |
8782cc74 | 2034 | health_unregister(health_sessiond); |
099e26bd DG |
2035 | return NULL; |
2036 | } | |
2037 | ||
2038 | /* | |
2039 | * This thread manage application registration. | |
2040 | */ | |
2041 | static void *thread_registration_apps(void *data) | |
1d4b027a | 2042 | { |
139ac872 | 2043 | int sock = -1, i, ret, pollfd, err = -1; |
5eb91c98 DG |
2044 | uint32_t revents, nb_fd; |
2045 | struct lttng_poll_event events; | |
099e26bd DG |
2046 | /* |
2047 | * Get allocated in this thread, enqueued to a global queue, dequeued and | |
2048 | * freed in the manage apps thread. | |
2049 | */ | |
2050 | struct ust_command *ust_cmd = NULL; | |
1d4b027a | 2051 | |
099e26bd | 2052 | DBG("[thread] Manage application registration started"); |
1d4b027a | 2053 | |
6c71277b | 2054 | health_register(health_sessiond, HEALTH_SESSIOND_TYPE_APP_REG); |
927ca06a | 2055 | |
e547b070 | 2056 | if (testpoint(sessiond_thread_registration_apps)) { |
6993eeb3 CB |
2057 | goto error_testpoint; |
2058 | } | |
8ac94142 | 2059 | |
1d4b027a DG |
2060 | ret = lttcomm_listen_unix_sock(apps_sock); |
2061 | if (ret < 0) { | |
76d7553f | 2062 | goto error_listen; |
1d4b027a DG |
2063 | } |
2064 | ||
5eb91c98 DG |
2065 | /* |
2066 | * Pass 2 as size here for the thread quit pipe and apps socket. Nothing | |
2067 | * more will be added to this poll set. | |
2068 | */ | |
d0b96690 | 2069 | ret = sessiond_set_thread_pollset(&events, 2); |
5eb91c98 | 2070 | if (ret < 0) { |
76d7553f | 2071 | goto error_create_poll; |
5eb91c98 | 2072 | } |
273ea72c | 2073 | |
5eb91c98 DG |
2074 | /* Add the application registration socket */ |
2075 | ret = lttng_poll_add(&events, apps_sock, LPOLLIN | LPOLLRDHUP); | |
2076 | if (ret < 0) { | |
76d7553f | 2077 | goto error_poll_add; |
5eb91c98 | 2078 | } |
273ea72c | 2079 | |
1d4b027a | 2080 | /* Notify all applications to register */ |
0fdd1e2c DG |
2081 | ret = notify_ust_apps(1); |
2082 | if (ret < 0) { | |
2083 | ERR("Failed to notify applications or create the wait shared memory.\n" | |
54d01ffb DG |
2084 | "Execution continues but there might be problem for already\n" |
2085 | "running applications that wishes to register."); | |
0fdd1e2c | 2086 | } |
1d4b027a DG |
2087 | |
2088 | while (1) { | |
2089 | DBG("Accepting application registration"); | |
273ea72c DG |
2090 | |
2091 | /* Inifinite blocking call, waiting for transmission */ | |
88f2b785 | 2092 | restart: |
a78af745 | 2093 | health_poll_entry(); |
5eb91c98 | 2094 | ret = lttng_poll_wait(&events, -1); |
a78af745 | 2095 | health_poll_exit(); |
273ea72c | 2096 | if (ret < 0) { |
88f2b785 MD |
2097 | /* |
2098 | * Restart interrupted system call. | |
2099 | */ | |
2100 | if (errno == EINTR) { | |
2101 | goto restart; | |
2102 | } | |
273ea72c DG |
2103 | goto error; |
2104 | } | |
2105 | ||
0d9c5d77 DG |
2106 | nb_fd = ret; |
2107 | ||
5eb91c98 | 2108 | for (i = 0; i < nb_fd; i++) { |
840cb59c | 2109 | health_code_update(); |
139ac872 | 2110 | |
5eb91c98 DG |
2111 | /* Fetch once the poll data */ |
2112 | revents = LTTNG_POLL_GETEV(&events, i); | |
2113 | pollfd = LTTNG_POLL_GETFD(&events, i); | |
273ea72c | 2114 | |
fd20dac9 MD |
2115 | if (!revents) { |
2116 | /* No activity for this FD (poll implementation). */ | |
2117 | continue; | |
2118 | } | |
2119 | ||
5eb91c98 | 2120 | /* Thread quit pipe has been closed. Killing thread. */ |
d0b96690 | 2121 | ret = sessiond_check_thread_quit_pipe(pollfd, revents); |
5eb91c98 | 2122 | if (ret) { |
139ac872 MD |
2123 | err = 0; |
2124 | goto exit; | |
90014c57 | 2125 | } |
1d4b027a | 2126 | |
5eb91c98 DG |
2127 | /* Event on the registration socket */ |
2128 | if (pollfd == apps_sock) { | |
2129 | if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) { | |
2130 | ERR("Register apps socket poll error"); | |
2131 | goto error; | |
2132 | } else if (revents & LPOLLIN) { | |
2133 | sock = lttcomm_accept_unix_sock(apps_sock); | |
2134 | if (sock < 0) { | |
2135 | goto error; | |
2136 | } | |
099e26bd | 2137 | |
16c5c8fa DG |
2138 | /* |
2139 | * Set socket timeout for both receiving and ending. | |
2140 | * app_socket_timeout is in seconds, whereas | |
2141 | * lttcomm_setsockopt_rcv_timeout and | |
2142 | * lttcomm_setsockopt_snd_timeout expect msec as | |
2143 | * parameter. | |
2144 | */ | |
2145 | (void) lttcomm_setsockopt_rcv_timeout(sock, | |
2146 | app_socket_timeout * 1000); | |
2147 | (void) lttcomm_setsockopt_snd_timeout(sock, | |
2148 | app_socket_timeout * 1000); | |
2149 | ||
b662582b DG |
2150 | /* |
2151 | * Set the CLOEXEC flag. Return code is useless because | |
2152 | * either way, the show must go on. | |
2153 | */ | |
2154 | (void) utils_set_fd_cloexec(sock); | |
2155 | ||
5eb91c98 | 2156 | /* Create UST registration command for enqueuing */ |
ba7f0ae5 | 2157 | ust_cmd = zmalloc(sizeof(struct ust_command)); |
5eb91c98 | 2158 | if (ust_cmd == NULL) { |
76d7553f | 2159 | PERROR("ust command zmalloc"); |
5eb91c98 DG |
2160 | goto error; |
2161 | } | |
1d4b027a | 2162 | |
5eb91c98 DG |
2163 | /* |
2164 | * Using message-based transmissions to ensure we don't | |
2165 | * have to deal with partially received messages. | |
2166 | */ | |
4063050c MD |
2167 | ret = lttng_fd_get(LTTNG_FD_APPS, 1); |
2168 | if (ret < 0) { | |
2169 | ERR("Exhausted file descriptors allowed for applications."); | |
2170 | free(ust_cmd); | |
2171 | ret = close(sock); | |
2172 | if (ret) { | |
2173 | PERROR("close"); | |
2174 | } | |
2175 | sock = -1; | |
2176 | continue; | |
2177 | } | |
d88aee68 | 2178 | |
840cb59c | 2179 | health_code_update(); |
d0b96690 DG |
2180 | ret = ust_app_recv_registration(sock, &ust_cmd->reg_msg); |
2181 | if (ret < 0) { | |
5eb91c98 | 2182 | free(ust_cmd); |
d0b96690 | 2183 | /* Close socket of the application. */ |
76d7553f MD |
2184 | ret = close(sock); |
2185 | if (ret) { | |
2186 | PERROR("close"); | |
2187 | } | |
4063050c | 2188 | lttng_fd_put(LTTNG_FD_APPS, 1); |
76d7553f | 2189 | sock = -1; |
5eb91c98 DG |
2190 | continue; |
2191 | } | |
840cb59c | 2192 | health_code_update(); |
099e26bd | 2193 | |
5eb91c98 | 2194 | ust_cmd->sock = sock; |
34a2494f | 2195 | sock = -1; |
099e26bd | 2196 | |
5eb91c98 DG |
2197 | DBG("UST registration received with pid:%d ppid:%d uid:%d" |
2198 | " gid:%d sock:%d name:%s (version %d.%d)", | |
2199 | ust_cmd->reg_msg.pid, ust_cmd->reg_msg.ppid, | |
2200 | ust_cmd->reg_msg.uid, ust_cmd->reg_msg.gid, | |
2201 | ust_cmd->sock, ust_cmd->reg_msg.name, | |
2202 | ust_cmd->reg_msg.major, ust_cmd->reg_msg.minor); | |
54d01ffb | 2203 | |
5eb91c98 DG |
2204 | /* |
2205 | * Lock free enqueue the registration request. The red pill | |
54d01ffb | 2206 | * has been taken! This apps will be part of the *system*. |
5eb91c98 | 2207 | */ |
8bdee6e2 | 2208 | cds_wfcq_enqueue(&ust_cmd_queue.head, &ust_cmd_queue.tail, &ust_cmd->node); |
5eb91c98 DG |
2209 | |
2210 | /* | |
2211 | * Wake the registration queue futex. Implicit memory | |
8bdee6e2 | 2212 | * barrier with the exchange in cds_wfcq_enqueue. |
5eb91c98 DG |
2213 | */ |
2214 | futex_nto1_wake(&ust_cmd_queue.futex); | |
2215 | } | |
2216 | } | |
90014c57 | 2217 | } |
1d4b027a DG |
2218 | } |
2219 | ||
139ac872 | 2220 | exit: |
1d4b027a | 2221 | error: |
0fdd1e2c DG |
2222 | /* Notify that the registration thread is gone */ |
2223 | notify_ust_apps(0); | |
2224 | ||
a4b35e07 | 2225 | if (apps_sock >= 0) { |
76d7553f MD |
2226 | ret = close(apps_sock); |
2227 | if (ret) { | |
2228 | PERROR("close"); | |
2229 | } | |
a4b35e07 | 2230 | } |
46c3f085 | 2231 | if (sock >= 0) { |
76d7553f MD |
2232 | ret = close(sock); |
2233 | if (ret) { | |
2234 | PERROR("close"); | |
2235 | } | |
4063050c | 2236 | lttng_fd_put(LTTNG_FD_APPS, 1); |
a4b35e07 | 2237 | } |
273ea72c | 2238 | unlink(apps_unix_sock_path); |
0fdd1e2c | 2239 | |
76d7553f | 2240 | error_poll_add: |
5eb91c98 | 2241 | lttng_poll_clean(&events); |
76d7553f MD |
2242 | error_listen: |
2243 | error_create_poll: | |
6993eeb3 | 2244 | error_testpoint: |
76d7553f | 2245 | DBG("UST Registration thread cleanup complete"); |
9ad42ec1 MD |
2246 | if (err) { |
2247 | health_error(); | |
2248 | ERR("Health error occurred in %s", __func__); | |
2249 | } | |
8782cc74 | 2250 | health_unregister(health_sessiond); |
5eb91c98 | 2251 | |
1d4b027a DG |
2252 | return NULL; |
2253 | } | |
2254 | ||
8c0faa1d | 2255 | /* |
3bd1e081 | 2256 | * Start the thread_manage_consumer. This must be done after a lttng-consumerd |
d063d709 | 2257 | * exec or it will fails. |
8c0faa1d | 2258 | */ |
3bd1e081 | 2259 | static int spawn_consumer_thread(struct consumer_data *consumer_data) |
8c0faa1d | 2260 | { |
a23ec3a7 | 2261 | int ret, clock_ret; |
ee0b0061 DG |
2262 | struct timespec timeout; |
2263 | ||
a23ec3a7 DG |
2264 | /* Make sure we set the readiness flag to 0 because we are NOT ready */ |
2265 | consumer_data->consumer_thread_is_ready = 0; | |
8c0faa1d | 2266 | |
a23ec3a7 DG |
2267 | /* Setup pthread condition */ |
2268 | ret = pthread_condattr_init(&consumer_data->condattr); | |
4a15001e | 2269 | if (ret) { |
a23ec3a7 DG |
2270 | errno = ret; |
2271 | PERROR("pthread_condattr_init consumer data"); | |
2272 | goto error; | |
2273 | } | |
2274 | ||
2275 | /* | |
2276 | * Set the monotonic clock in order to make sure we DO NOT jump in time | |
2277 | * between the clock_gettime() call and the timedwait call. See bug #324 | |
2278 | * for a more details and how we noticed it. | |
2279 | */ | |
2280 | ret = pthread_condattr_setclock(&consumer_data->condattr, CLOCK_MONOTONIC); | |
4a15001e | 2281 | if (ret) { |
a23ec3a7 DG |
2282 | errno = ret; |
2283 | PERROR("pthread_condattr_setclock consumer data"); | |
ee0b0061 DG |
2284 | goto error; |
2285 | } | |
8c0faa1d | 2286 | |
a23ec3a7 | 2287 | ret = pthread_cond_init(&consumer_data->cond, &consumer_data->condattr); |
4a15001e | 2288 | if (ret) { |
a23ec3a7 DG |
2289 | errno = ret; |
2290 | PERROR("pthread_cond_init consumer data"); | |
2291 | goto error; | |
2292 | } | |
2293 | ||
2294 | ret = pthread_create(&consumer_data->thread, NULL, thread_manage_consumer, | |
2295 | consumer_data); | |
4a15001e MD |
2296 | if (ret) { |
2297 | errno = ret; | |
3bd1e081 | 2298 | PERROR("pthread_create consumer"); |
ee0b0061 | 2299 | ret = -1; |
8c0faa1d DG |
2300 | goto error; |
2301 | } | |
2302 | ||
a23ec3a7 DG |
2303 | /* We are about to wait on a pthread condition */ |
2304 | pthread_mutex_lock(&consumer_data->cond_mutex); | |
2305 | ||
ee0b0061 | 2306 | /* Get time for sem_timedwait absolute timeout */ |
a23ec3a7 DG |
2307 | clock_ret = clock_gettime(CLOCK_MONOTONIC, &timeout); |
2308 | /* | |
2309 | * Set the timeout for the condition timed wait even if the clock gettime | |
2310 | * call fails since we might loop on that call and we want to avoid to | |
2311 | * increment the timeout too many times. | |
2312 | */ | |
2313 | timeout.tv_sec += DEFAULT_SEM_WAIT_TIMEOUT; | |
2314 | ||
2315 | /* | |
2316 | * The following loop COULD be skipped in some conditions so this is why we | |
2317 | * set ret to 0 in order to make sure at least one round of the loop is | |
2318 | * done. | |
2319 | */ | |
2320 | ret = 0; | |
2321 | ||
2322 | /* | |
2323 | * Loop until the condition is reached or when a timeout is reached. Note | |
2324 | * that the pthread_cond_timedwait(P) man page specifies that EINTR can NOT | |
2325 | * be returned but the pthread_cond(3), from the glibc-doc, says that it is | |
2326 | * possible. This loop does not take any chances and works with both of | |
2327 | * them. | |
2328 | */ | |
2329 | while (!consumer_data->consumer_thread_is_ready && ret != ETIMEDOUT) { | |
2330 | if (clock_ret < 0) { | |
2331 | PERROR("clock_gettime spawn consumer"); | |
2332 | /* Infinite wait for the consumerd thread to be ready */ | |
2333 | ret = pthread_cond_wait(&consumer_data->cond, | |
2334 | &consumer_data->cond_mutex); | |
2335 | } else { | |
2336 | ret = pthread_cond_timedwait(&consumer_data->cond, | |
2337 | &consumer_data->cond_mutex, &timeout); | |
2338 | } | |
ee0b0061 | 2339 | } |
8c0faa1d | 2340 | |
a23ec3a7 DG |
2341 | /* Release the pthread condition */ |
2342 | pthread_mutex_unlock(&consumer_data->cond_mutex); | |
2343 | ||
2344 | if (ret != 0) { | |
2345 | errno = ret; | |
2346 | if (ret == ETIMEDOUT) { | |
4282f9a3 DG |
2347 | int pth_ret; |
2348 | ||
ee0b0061 DG |
2349 | /* |
2350 | * Call has timed out so we kill the kconsumerd_thread and return | |
2351 | * an error. | |
2352 | */ | |
a23ec3a7 DG |
2353 | ERR("Condition timed out. The consumer thread was never ready." |
2354 | " Killing it"); | |
4282f9a3 DG |
2355 | pth_ret = pthread_cancel(consumer_data->thread); |
2356 | if (pth_ret < 0) { | |
3bd1e081 | 2357 | PERROR("pthread_cancel consumer thread"); |
ee0b0061 DG |
2358 | } |
2359 | } else { | |
a23ec3a7 | 2360 | PERROR("pthread_cond_wait failed consumer thread"); |
ee0b0061 | 2361 | } |
4282f9a3 DG |
2362 | /* Caller is expecting a negative value on failure. */ |
2363 | ret = -1; | |
ee0b0061 DG |
2364 | goto error; |
2365 | } | |
2366 | ||
3bd1e081 MD |
2367 | pthread_mutex_lock(&consumer_data->pid_mutex); |
2368 | if (consumer_data->pid == 0) { | |
a23ec3a7 | 2369 | ERR("Consumerd did not start"); |
3bd1e081 | 2370 | pthread_mutex_unlock(&consumer_data->pid_mutex); |
712ea556 DG |
2371 | goto error; |
2372 | } | |
3bd1e081 | 2373 | pthread_mutex_unlock(&consumer_data->pid_mutex); |
712ea556 | 2374 | |
8c0faa1d DG |
2375 | return 0; |
2376 | ||
2377 | error: | |
2378 | return ret; | |
2379 | } | |
2380 | ||
d9800920 | 2381 | /* |
3bd1e081 | 2382 | * Join consumer thread |
d9800920 | 2383 | */ |
3bd1e081 | 2384 | static int join_consumer_thread(struct consumer_data *consumer_data) |
cf3af59e MD |
2385 | { |
2386 | void *status; | |
cf3af59e | 2387 | |
e8209f6b DG |
2388 | /* Consumer pid must be a real one. */ |
2389 | if (consumer_data->pid > 0) { | |
c617c0c6 | 2390 | int ret; |
3bd1e081 | 2391 | ret = kill(consumer_data->pid, SIGTERM); |
cf3af59e | 2392 | if (ret) { |
4a15001e | 2393 | PERROR("Error killing consumer daemon"); |
cf3af59e MD |
2394 | return ret; |
2395 | } | |
3bd1e081 | 2396 | return pthread_join(consumer_data->thread, &status); |
cf3af59e MD |
2397 | } else { |
2398 | return 0; | |
2399 | } | |
2400 | } | |
2401 | ||
8c0faa1d | 2402 | /* |
3bd1e081 | 2403 | * Fork and exec a consumer daemon (consumerd). |
8c0faa1d | 2404 | * |
d063d709 | 2405 | * Return pid if successful else -1. |
8c0faa1d | 2406 | */ |
3bd1e081 | 2407 | static pid_t spawn_consumerd(struct consumer_data *consumer_data) |
8c0faa1d DG |
2408 | { |
2409 | int ret; | |
2410 | pid_t pid; | |
94c55f17 | 2411 | const char *consumer_to_use; |
53086306 | 2412 | const char *verbosity; |
94c55f17 | 2413 | struct stat st; |
8c0faa1d | 2414 | |
3bd1e081 | 2415 | DBG("Spawning consumerd"); |
c49dc785 | 2416 | |
8c0faa1d DG |
2417 | pid = fork(); |
2418 | if (pid == 0) { | |
2419 | /* | |
3bd1e081 | 2420 | * Exec consumerd. |
8c0faa1d | 2421 | */ |
daee5345 | 2422 | if (opt_verbose_consumer) { |
53086306 | 2423 | verbosity = "--verbose"; |
4421f712 | 2424 | } else if (lttng_opt_quiet) { |
53086306 | 2425 | verbosity = "--quiet"; |
4421f712 DG |
2426 | } else { |
2427 | verbosity = ""; | |
53086306 | 2428 | } |
4421f712 | 2429 | |
3bd1e081 MD |
2430 | switch (consumer_data->type) { |
2431 | case LTTNG_CONSUMER_KERNEL: | |
94c55f17 | 2432 | /* |
c7704d57 DG |
2433 | * Find out which consumerd to execute. We will first try the |
2434 | * 64-bit path, then the sessiond's installation directory, and | |
2435 | * fallback on the 32-bit one, | |
94c55f17 | 2436 | */ |
63a799e8 AM |
2437 | DBG3("Looking for a kernel consumer at these locations:"); |
2438 | DBG3(" 1) %s", consumerd64_bin); | |
2439 | DBG3(" 2) %s/%s", INSTALL_BIN_PATH, CONSUMERD_FILE); | |
2440 | DBG3(" 3) %s", consumerd32_bin); | |
94c55f17 | 2441 | if (stat(consumerd64_bin, &st) == 0) { |
63a799e8 | 2442 | DBG3("Found location #1"); |
94c55f17 | 2443 | consumer_to_use = consumerd64_bin; |
94c55f17 | 2444 | } else if (stat(INSTALL_BIN_PATH "/" CONSUMERD_FILE, &st) == 0) { |
63a799e8 | 2445 | DBG3("Found location #2"); |
94c55f17 | 2446 | consumer_to_use = INSTALL_BIN_PATH "/" CONSUMERD_FILE; |
eb1e0bd4 | 2447 | } else if (stat(consumerd32_bin, &st) == 0) { |
63a799e8 | 2448 | DBG3("Found location #3"); |
eb1e0bd4 | 2449 | consumer_to_use = consumerd32_bin; |
94c55f17 | 2450 | } else { |
63a799e8 | 2451 | DBG("Could not find any valid consumerd executable"); |
4282f9a3 | 2452 | ret = -EINVAL; |
94c55f17 AM |
2453 | break; |
2454 | } | |
2455 | DBG("Using kernel consumer at: %s", consumer_to_use); | |
4282f9a3 | 2456 | ret = execl(consumer_to_use, |
94c55f17 AM |
2457 | "lttng-consumerd", verbosity, "-k", |
2458 | "--consumerd-cmd-sock", consumer_data->cmd_unix_sock_path, | |
2459 | "--consumerd-err-sock", consumer_data->err_unix_sock_path, | |
6c71277b | 2460 | "--group", tracing_group_name, |
94c55f17 | 2461 | NULL); |
3bd1e081 | 2462 | break; |
7753dea8 MD |
2463 | case LTTNG_CONSUMER64_UST: |
2464 | { | |
b1e0b6b6 | 2465 | char *tmpnew = NULL; |
8f4905da MD |
2466 | |
2467 | if (consumerd64_libdir[0] != '\0') { | |
2468 | char *tmp; | |
2469 | size_t tmplen; | |
2470 | ||
e8fa9fb0 | 2471 | tmp = lttng_secure_getenv("LD_LIBRARY_PATH"); |
8f4905da MD |
2472 | if (!tmp) { |
2473 | tmp = ""; | |
2474 | } | |
2475 | tmplen = strlen("LD_LIBRARY_PATH=") | |
2476 | + strlen(consumerd64_libdir) + 1 /* : */ + strlen(tmp); | |
2477 | tmpnew = zmalloc(tmplen + 1 /* \0 */); | |
2478 | if (!tmpnew) { | |
2479 | ret = -ENOMEM; | |
2480 | goto error; | |
2481 | } | |
2482 | strcpy(tmpnew, "LD_LIBRARY_PATH="); | |
2483 | strcat(tmpnew, consumerd64_libdir); | |
2484 | if (tmp[0] != '\0') { | |
2485 | strcat(tmpnew, ":"); | |
2486 | strcat(tmpnew, tmp); | |
2487 | } | |
2488 | ret = putenv(tmpnew); | |
2489 | if (ret) { | |
2490 | ret = -errno; | |
c6f76da9 | 2491 | free(tmpnew); |
8f4905da MD |
2492 | goto error; |
2493 | } | |
2494 | } | |
94c55f17 | 2495 | DBG("Using 64-bit UST consumer at: %s", consumerd64_bin); |
a5a6aff3 | 2496 | ret = execl(consumerd64_bin, "lttng-consumerd", verbosity, "-u", |
7753dea8 MD |
2497 | "--consumerd-cmd-sock", consumer_data->cmd_unix_sock_path, |
2498 | "--consumerd-err-sock", consumer_data->err_unix_sock_path, | |
6c71277b | 2499 | "--group", tracing_group_name, |
7753dea8 | 2500 | NULL); |
8f4905da MD |
2501 | if (consumerd64_libdir[0] != '\0') { |
2502 | free(tmpnew); | |
2503 | } | |
3bd1e081 | 2504 | break; |
7753dea8 MD |
2505 | } |
2506 | case LTTNG_CONSUMER32_UST: | |
2507 | { | |
937dde8e | 2508 | char *tmpnew = NULL; |
8f4905da MD |
2509 | |
2510 | if (consumerd32_libdir[0] != '\0') { | |
2511 | char *tmp; | |
2512 | size_t tmplen; | |
2513 | ||
e8fa9fb0 | 2514 | tmp = lttng_secure_getenv("LD_LIBRARY_PATH"); |
8f4905da MD |
2515 | if (!tmp) { |
2516 | tmp = ""; | |
2517 | } | |
2518 | tmplen = strlen("LD_LIBRARY_PATH=") | |
2519 | + strlen(consumerd32_libdir) + 1 /* : */ + strlen(tmp); | |
2520 | tmpnew = zmalloc(tmplen + 1 /* \0 */); | |
2521 | if (!tmpnew) { | |
2522 | ret = -ENOMEM; | |
2523 | goto error; | |
2524 | } | |
2525 | strcpy(tmpnew, "LD_LIBRARY_PATH="); | |
2526 | strcat(tmpnew, consumerd32_libdir); | |
2527 | if (tmp[0] != '\0') { | |
2528 | strcat(tmpnew, ":"); | |
2529 | strcat(tmpnew, tmp); | |
2530 | } | |
2531 | ret = putenv(tmpnew); | |
2532 | if (ret) { | |
2533 | ret = -errno; | |
c6f76da9 | 2534 | free(tmpnew); |
8f4905da MD |
2535 | goto error; |
2536 | } | |
2537 | } | |
94c55f17 | 2538 | DBG("Using 32-bit UST consumer at: %s", consumerd32_bin); |
a5a6aff3 | 2539 | ret = execl(consumerd32_bin, "lttng-consumerd", verbosity, "-u", |
7753dea8 MD |
2540 | "--consumerd-cmd-sock", consumer_data->cmd_unix_sock_path, |
2541 | "--consumerd-err-sock", consumer_data->err_unix_sock_path, | |
6c71277b | 2542 | "--group", tracing_group_name, |
7753dea8 | 2543 | NULL); |
8f4905da MD |
2544 | if (consumerd32_libdir[0] != '\0') { |
2545 | free(tmpnew); | |
2546 | } | |
7753dea8 MD |
2547 | break; |
2548 | } | |
3bd1e081 | 2549 | default: |
76d7553f | 2550 | PERROR("unknown consumer type"); |
3bd1e081 MD |
2551 | exit(EXIT_FAILURE); |
2552 | } | |
8c0faa1d | 2553 | if (errno != 0) { |
4282f9a3 | 2554 | PERROR("Consumer execl()"); |
8c0faa1d | 2555 | } |
4282f9a3 | 2556 | /* Reaching this point, we got a failure on our execl(). */ |
8c0faa1d DG |
2557 | exit(EXIT_FAILURE); |
2558 | } else if (pid > 0) { | |
2559 | ret = pid; | |
8c0faa1d | 2560 | } else { |
76d7553f | 2561 | PERROR("start consumer fork"); |
8c0faa1d | 2562 | ret = -errno; |
8c0faa1d | 2563 | } |
8f4905da | 2564 | error: |
8c0faa1d DG |
2565 | return ret; |
2566 | } | |
2567 | ||
693bd40b | 2568 | /* |
3bd1e081 | 2569 | * Spawn the consumerd daemon and session daemon thread. |
693bd40b | 2570 | */ |
3bd1e081 | 2571 | static int start_consumerd(struct consumer_data *consumer_data) |
693bd40b | 2572 | { |
c617c0c6 | 2573 | int ret; |
edb8b045 DG |
2574 | |
2575 | /* | |
2576 | * Set the listen() state on the socket since there is a possible race | |
2577 | * between the exec() of the consumer daemon and this call if place in the | |
2578 | * consumer thread. See bug #366 for more details. | |
2579 | */ | |
2580 | ret = lttcomm_listen_unix_sock(consumer_data->err_sock); | |
2581 | if (ret < 0) { | |
2582 | goto error; | |
2583 | } | |
693bd40b | 2584 | |
3bd1e081 MD |
2585 | pthread_mutex_lock(&consumer_data->pid_mutex); |
2586 | if (consumer_data->pid != 0) { | |
2587 | pthread_mutex_unlock(&consumer_data->pid_mutex); | |
c49dc785 DG |
2588 | goto end; |
2589 | } | |
693bd40b | 2590 | |
3bd1e081 | 2591 | ret = spawn_consumerd(consumer_data); |
c49dc785 | 2592 | if (ret < 0) { |
3bd1e081 MD |
2593 | ERR("Spawning consumerd failed"); |
2594 | pthread_mutex_unlock(&consumer_data->pid_mutex); | |
c49dc785 | 2595 | goto error; |
693bd40b | 2596 | } |
c49dc785 | 2597 | |
3bd1e081 MD |
2598 | /* Setting up the consumer_data pid */ |
2599 | consumer_data->pid = ret; | |
48842b30 | 2600 | DBG2("Consumer pid %d", consumer_data->pid); |
3bd1e081 | 2601 | pthread_mutex_unlock(&consumer_data->pid_mutex); |
693bd40b | 2602 | |
3bd1e081 MD |
2603 | DBG2("Spawning consumer control thread"); |
2604 | ret = spawn_consumer_thread(consumer_data); | |
693bd40b | 2605 | if (ret < 0) { |
3bd1e081 | 2606 | ERR("Fatal error spawning consumer control thread"); |
693bd40b DG |
2607 | goto error; |
2608 | } | |
2609 | ||
c49dc785 | 2610 | end: |
693bd40b DG |
2611 | return 0; |
2612 | ||
2613 | error: | |
331744e3 | 2614 | /* Cleanup already created sockets on error. */ |
edb8b045 | 2615 | if (consumer_data->err_sock >= 0) { |
c617c0c6 MD |
2616 | int err; |
2617 | ||
edb8b045 DG |
2618 | err = close(consumer_data->err_sock); |
2619 | if (err < 0) { | |
2620 | PERROR("close consumer data error socket"); | |
2621 | } | |
2622 | } | |
693bd40b DG |
2623 | return ret; |
2624 | } | |
2625 | ||
b73401da | 2626 | /* |
096102bd | 2627 | * Setup necessary data for kernel tracer action. |
b73401da | 2628 | */ |
096102bd | 2629 | static int init_kernel_tracer(void) |
b73401da DG |
2630 | { |
2631 | int ret; | |
b73401da | 2632 | |
096102bd DG |
2633 | /* Modprobe lttng kernel modules */ |
2634 | ret = modprobe_lttng_control(); | |
b73401da | 2635 | if (ret < 0) { |
b73401da DG |
2636 | goto error; |
2637 | } | |
2638 | ||
096102bd DG |
2639 | /* Open debugfs lttng */ |
2640 | kernel_tracer_fd = open(module_proc_lttng, O_RDWR); | |
2641 | if (kernel_tracer_fd < 0) { | |
2642 | DBG("Failed to open %s", module_proc_lttng); | |
2f77fc4b DG |
2643 | ret = -1; |
2644 | goto error_open; | |
54d01ffb DG |
2645 | } |
2646 | ||
2f77fc4b DG |
2647 | /* Validate kernel version */ |
2648 | ret = kernel_validate_version(kernel_tracer_fd); | |
2649 | if (ret < 0) { | |
2650 | goto error_version; | |
b551a063 | 2651 | } |
54d01ffb | 2652 | |
2f77fc4b DG |
2653 | ret = modprobe_lttng_data(); |
2654 | if (ret < 0) { | |
2655 | goto error_modules; | |
54d01ffb DG |
2656 | } |
2657 | ||
2f77fc4b DG |
2658 | DBG("Kernel tracer fd %d", kernel_tracer_fd); |
2659 | return 0; | |
2660 | ||
2661 | error_version: | |
2662 | modprobe_remove_lttng_control(); | |
2663 | ret = close(kernel_tracer_fd); | |
2664 | if (ret) { | |
2665 | PERROR("close"); | |
b551a063 | 2666 | } |
2f77fc4b | 2667 | kernel_tracer_fd = -1; |
f73fabfd | 2668 | return LTTNG_ERR_KERN_VERSION; |
b551a063 | 2669 | |
2f77fc4b DG |
2670 | error_modules: |
2671 | ret = close(kernel_tracer_fd); | |
2672 | if (ret) { | |
2673 | PERROR("close"); | |
b551a063 | 2674 | } |
54d01ffb | 2675 | |
2f77fc4b DG |
2676 | error_open: |
2677 | modprobe_remove_lttng_control(); | |
54d01ffb DG |
2678 | |
2679 | error: | |
2f77fc4b DG |
2680 | WARN("No kernel tracer available"); |
2681 | kernel_tracer_fd = -1; | |
2682 | if (!is_root) { | |
f73fabfd | 2683 | return LTTNG_ERR_NEED_ROOT_SESSIOND; |
2f77fc4b | 2684 | } else { |
f73fabfd | 2685 | return LTTNG_ERR_KERN_NA; |
2f77fc4b | 2686 | } |
54d01ffb DG |
2687 | } |
2688 | ||
2f77fc4b | 2689 | |
54d01ffb | 2690 | /* |
2f77fc4b DG |
2691 | * Copy consumer output from the tracing session to the domain session. The |
2692 | * function also applies the right modification on a per domain basis for the | |
2693 | * trace files destination directory. | |
36b588ed MD |
2694 | * |
2695 | * Should *NOT* be called with RCU read-side lock held. | |
54d01ffb | 2696 | */ |
2f77fc4b | 2697 | static int copy_session_consumer(int domain, struct ltt_session *session) |
54d01ffb DG |
2698 | { |
2699 | int ret; | |
2f77fc4b DG |
2700 | const char *dir_name; |
2701 | struct consumer_output *consumer; | |
2702 | ||
2703 | assert(session); | |
2704 | assert(session->consumer); | |
54d01ffb | 2705 | |
b551a063 DG |
2706 | switch (domain) { |
2707 | case LTTNG_DOMAIN_KERNEL: | |
2f77fc4b | 2708 | DBG3("Copying tracing session consumer output in kernel session"); |
09a90bcd DG |
2709 | /* |
2710 | * XXX: We should audit the session creation and what this function | |
2711 | * does "extra" in order to avoid a destroy since this function is used | |
2712 | * in the domain session creation (kernel and ust) only. Same for UST | |
2713 | * domain. | |
2714 | */ | |
2715 | if (session->kernel_session->consumer) { | |
2716 | consumer_destroy_output(session->kernel_session->consumer); | |
2717 | } | |
2f77fc4b DG |
2718 | session->kernel_session->consumer = |
2719 | consumer_copy_output(session->consumer); | |
2720 | /* Ease our life a bit for the next part */ | |
2721 | consumer = session->kernel_session->consumer; | |
2722 | dir_name = DEFAULT_KERNEL_TRACE_DIR; | |
b551a063 | 2723 | break; |
f20baf8e | 2724 | case LTTNG_DOMAIN_JUL: |
5cdb6027 | 2725 | case LTTNG_DOMAIN_LOG4J: |
0e115563 | 2726 | case LTTNG_DOMAIN_PYTHON: |
b551a063 | 2727 | case LTTNG_DOMAIN_UST: |
2f77fc4b | 2728 | DBG3("Copying tracing session consumer output in UST session"); |
09a90bcd DG |
2729 | if (session->ust_session->consumer) { |
2730 | consumer_destroy_output(session->ust_session->consumer); | |
2731 | } | |
2f77fc4b DG |
2732 | session->ust_session->consumer = |
2733 | consumer_copy_output(session->consumer); | |
2734 | /* Ease our life a bit for the next part */ | |
2735 | consumer = session->ust_session->consumer; | |
2736 | dir_name = DEFAULT_UST_TRACE_DIR; | |
b551a063 DG |
2737 | break; |
2738 | default: | |
f73fabfd | 2739 | ret = LTTNG_ERR_UNKNOWN_DOMAIN; |
54d01ffb DG |
2740 | goto error; |
2741 | } | |
2742 | ||
2f77fc4b | 2743 | /* Append correct directory to subdir */ |
c30ce0b3 CB |
2744 | strncat(consumer->subdir, dir_name, |
2745 | sizeof(consumer->subdir) - strlen(consumer->subdir) - 1); | |
2f77fc4b DG |
2746 | DBG3("Copy session consumer subdir %s", consumer->subdir); |
2747 | ||
f73fabfd | 2748 | ret = LTTNG_OK; |
54d01ffb DG |
2749 | |
2750 | error: | |
2751 | return ret; | |
2752 | } | |
2753 | ||
00e2e675 | 2754 | /* |
2f77fc4b | 2755 | * Create an UST session and add it to the session ust list. |
36b588ed MD |
2756 | * |
2757 | * Should *NOT* be called with RCU read-side lock held. | |
00e2e675 | 2758 | */ |
2f77fc4b DG |
2759 | static int create_ust_session(struct ltt_session *session, |
2760 | struct lttng_domain *domain) | |
00e2e675 DG |
2761 | { |
2762 | int ret; | |
2f77fc4b | 2763 | struct ltt_ust_session *lus = NULL; |
00e2e675 | 2764 | |
a4b92340 | 2765 | assert(session); |
2f77fc4b DG |
2766 | assert(domain); |
2767 | assert(session->consumer); | |
a4b92340 | 2768 | |
2f77fc4b | 2769 | switch (domain->type) { |
f20baf8e | 2770 | case LTTNG_DOMAIN_JUL: |
5cdb6027 | 2771 | case LTTNG_DOMAIN_LOG4J: |
0e115563 | 2772 | case LTTNG_DOMAIN_PYTHON: |
2f77fc4b DG |
2773 | case LTTNG_DOMAIN_UST: |
2774 | break; | |
2775 | default: | |
2776 | ERR("Unknown UST domain on create session %d", domain->type); | |
f73fabfd | 2777 | ret = LTTNG_ERR_UNKNOWN_DOMAIN; |
00e2e675 DG |
2778 | goto error; |
2779 | } | |
2780 | ||
2f77fc4b DG |
2781 | DBG("Creating UST session"); |
2782 | ||
dec56f6c | 2783 | lus = trace_ust_create_session(session->id); |
2f77fc4b | 2784 | if (lus == NULL) { |
f73fabfd | 2785 | ret = LTTNG_ERR_UST_SESS_FAIL; |
a4b92340 DG |
2786 | goto error; |
2787 | } | |
2788 | ||
2f77fc4b DG |
2789 | lus->uid = session->uid; |
2790 | lus->gid = session->gid; | |
2bba9e53 | 2791 | lus->output_traces = session->output_traces; |
27babd3a | 2792 | lus->snapshot_mode = session->snapshot_mode; |
ecc48a90 | 2793 | lus->live_timer_interval = session->live_timer; |
2f77fc4b | 2794 | session->ust_session = lus; |
d7ba1388 | 2795 | if (session->shm_path[0]) { |
3d071855 MD |
2796 | strncpy(lus->root_shm_path, session->shm_path, |
2797 | sizeof(lus->root_shm_path)); | |
2798 | lus->root_shm_path[sizeof(lus->root_shm_path) - 1] = '\0'; | |
d7ba1388 MD |
2799 | strncpy(lus->shm_path, session->shm_path, |
2800 | sizeof(lus->shm_path)); | |
2801 | lus->shm_path[sizeof(lus->shm_path) - 1] = '\0'; | |
2802 | strncat(lus->shm_path, "/ust", | |
2803 | sizeof(lus->shm_path) - strlen(lus->shm_path) - 1); | |
2804 | } | |
2f77fc4b DG |
2805 | /* Copy session output to the newly created UST session */ |
2806 | ret = copy_session_consumer(domain->type, session); | |
f73fabfd | 2807 | if (ret != LTTNG_OK) { |
00e2e675 DG |
2808 | goto error; |
2809 | } | |
2810 | ||
f73fabfd | 2811 | return LTTNG_OK; |
00e2e675 DG |
2812 | |
2813 | error: | |
2f77fc4b DG |
2814 | free(lus); |
2815 | session->ust_session = NULL; | |
00e2e675 DG |
2816 | return ret; |
2817 | } | |
2818 | ||
2819 | /* | |
2f77fc4b | 2820 | * Create a kernel tracer session then create the default channel. |
00e2e675 | 2821 | */ |
2f77fc4b | 2822 | static int create_kernel_session(struct ltt_session *session) |
00e2e675 DG |
2823 | { |
2824 | int ret; | |
a4b92340 | 2825 | |
2f77fc4b | 2826 | DBG("Creating kernel session"); |
00e2e675 | 2827 | |
2f77fc4b DG |
2828 | ret = kernel_create_session(session, kernel_tracer_fd); |
2829 | if (ret < 0) { | |
f73fabfd | 2830 | ret = LTTNG_ERR_KERN_SESS_FAIL; |
00e2e675 DG |
2831 | goto error; |
2832 | } | |
2833 | ||
2f77fc4b DG |
2834 | /* Code flow safety */ |
2835 | assert(session->kernel_session); | |
2836 | ||
2837 | /* Copy session output to the newly created Kernel session */ | |
2838 | ret = copy_session_consumer(LTTNG_DOMAIN_KERNEL, session); | |
f73fabfd | 2839 | if (ret != LTTNG_OK) { |
a4b92340 DG |
2840 | goto error; |
2841 | } | |
2842 | ||
2f77fc4b DG |
2843 | /* Create directory(ies) on local filesystem. */ |
2844 | if (session->kernel_session->consumer->type == CONSUMER_DST_LOCAL && | |
2845 | strlen(session->kernel_session->consumer->dst.trace_path) > 0) { | |
2846 | ret = run_as_mkdir_recursive( | |
2847 | session->kernel_session->consumer->dst.trace_path, | |
2848 | S_IRWXU | S_IRWXG, session->uid, session->gid); | |
2849 | if (ret < 0) { | |
2850 | if (ret != -EEXIST) { | |
2851 | ERR("Trace directory creation error"); | |
00e2e675 DG |
2852 | goto error; |
2853 | } | |
00e2e675 | 2854 | } |
2f77fc4b | 2855 | } |
00e2e675 | 2856 | |
2f77fc4b DG |
2857 | session->kernel_session->uid = session->uid; |
2858 | session->kernel_session->gid = session->gid; | |
2bba9e53 | 2859 | session->kernel_session->output_traces = session->output_traces; |
27babd3a | 2860 | session->kernel_session->snapshot_mode = session->snapshot_mode; |
00e2e675 | 2861 | |
f73fabfd | 2862 | return LTTNG_OK; |
00e2e675 | 2863 | |
2f77fc4b DG |
2864 | error: |
2865 | trace_kernel_destroy_session(session->kernel_session); | |
2866 | session->kernel_session = NULL; | |
2867 | return ret; | |
2868 | } | |
00e2e675 | 2869 | |
2f77fc4b DG |
2870 | /* |
2871 | * Count number of session permitted by uid/gid. | |
2872 | */ | |
2873 | static unsigned int lttng_sessions_count(uid_t uid, gid_t gid) | |
2874 | { | |
2875 | unsigned int i = 0; | |
2876 | struct ltt_session *session; | |
07424f16 | 2877 | |
2f77fc4b DG |
2878 | DBG("Counting number of available session for UID %d GID %d", |
2879 | uid, gid); | |
2880 | cds_list_for_each_entry(session, &session_list_ptr->head, list) { | |
00e2e675 | 2881 | /* |
2f77fc4b | 2882 | * Only list the sessions the user can control. |
00e2e675 | 2883 | */ |
2f77fc4b DG |
2884 | if (!session_access_ok(session, uid, gid)) { |
2885 | continue; | |
2886 | } | |
2887 | i++; | |
a4b92340 | 2888 | } |
2f77fc4b | 2889 | return i; |
00e2e675 DG |
2890 | } |
2891 | ||
54d01ffb DG |
2892 | /* |
2893 | * Process the command requested by the lttng client within the command | |
2894 | * context structure. This function make sure that the return structure (llm) | |
2895 | * is set and ready for transmission before returning. | |
2896 | * | |
2897 | * Return any error encountered or 0 for success. | |
53a80697 MD |
2898 | * |
2899 | * "sock" is only used for special-case var. len data. | |
36b588ed MD |
2900 | * |
2901 | * Should *NOT* be called with RCU read-side lock held. | |
54d01ffb | 2902 | */ |
53a80697 MD |
2903 | static int process_client_msg(struct command_ctx *cmd_ctx, int sock, |
2904 | int *sock_error) | |
54d01ffb | 2905 | { |
f73fabfd | 2906 | int ret = LTTNG_OK; |
44d3bd01 | 2907 | int need_tracing_session = 1; |
2e09ba09 | 2908 | int need_domain; |
54d01ffb DG |
2909 | |
2910 | DBG("Processing client command %d", cmd_ctx->lsm->cmd_type); | |
2911 | ||
53a80697 MD |
2912 | *sock_error = 0; |
2913 | ||
2e09ba09 MD |
2914 | switch (cmd_ctx->lsm->cmd_type) { |
2915 | case LTTNG_CREATE_SESSION: | |
27babd3a | 2916 | case LTTNG_CREATE_SESSION_SNAPSHOT: |
ecc48a90 | 2917 | case LTTNG_CREATE_SESSION_LIVE: |
2e09ba09 MD |
2918 | case LTTNG_DESTROY_SESSION: |
2919 | case LTTNG_LIST_SESSIONS: | |
2920 | case LTTNG_LIST_DOMAINS: | |
2921 | case LTTNG_START_TRACE: | |
2922 | case LTTNG_STOP_TRACE: | |
6d805429 | 2923 | case LTTNG_DATA_PENDING: |
da3c9ec1 DG |
2924 | case LTTNG_SNAPSHOT_ADD_OUTPUT: |
2925 | case LTTNG_SNAPSHOT_DEL_OUTPUT: | |
2926 | case LTTNG_SNAPSHOT_LIST_OUTPUT: | |
2927 | case LTTNG_SNAPSHOT_RECORD: | |
fb198a11 | 2928 | case LTTNG_SAVE_SESSION: |
d7ba1388 | 2929 | case LTTNG_SET_SESSION_SHM_PATH: |
2e09ba09 | 2930 | need_domain = 0; |
3aace903 | 2931 | break; |
2e09ba09 MD |
2932 | default: |
2933 | need_domain = 1; | |
2934 | } | |
2935 | ||
2936 | if (opt_no_kernel && need_domain | |
2937 | && cmd_ctx->lsm->domain.type == LTTNG_DOMAIN_KERNEL) { | |
531d29f9 | 2938 | if (!is_root) { |
f73fabfd | 2939 | ret = LTTNG_ERR_NEED_ROOT_SESSIOND; |
531d29f9 | 2940 | } else { |
f73fabfd | 2941 | ret = LTTNG_ERR_KERN_NA; |
531d29f9 | 2942 | } |
4fba7219 DG |
2943 | goto error; |
2944 | } | |
2945 | ||
8d3113b2 DG |
2946 | /* Deny register consumer if we already have a spawned consumer. */ |
2947 | if (cmd_ctx->lsm->cmd_type == LTTNG_REGISTER_CONSUMER) { | |
2948 | pthread_mutex_lock(&kconsumer_data.pid_mutex); | |
2949 | if (kconsumer_data.pid > 0) { | |
f73fabfd | 2950 | ret = LTTNG_ERR_KERN_CONSUMER_FAIL; |
fa317f24 | 2951 | pthread_mutex_unlock(&kconsumer_data.pid_mutex); |
8d3113b2 DG |
2952 | goto error; |
2953 | } | |
2954 | pthread_mutex_unlock(&kconsumer_data.pid_mutex); | |
2955 | } | |
2956 | ||
54d01ffb DG |
2957 | /* |
2958 | * Check for command that don't needs to allocate a returned payload. We do | |
44d3bd01 | 2959 | * this here so we don't have to make the call for no payload at each |
54d01ffb DG |
2960 | * command. |
2961 | */ | |
2962 | switch(cmd_ctx->lsm->cmd_type) { | |
2963 | case LTTNG_LIST_SESSIONS: | |
2964 | case LTTNG_LIST_TRACEPOINTS: | |
f37d259d | 2965 | case LTTNG_LIST_TRACEPOINT_FIELDS: |
54d01ffb DG |
2966 | case LTTNG_LIST_DOMAINS: |
2967 | case LTTNG_LIST_CHANNELS: | |
2968 | case LTTNG_LIST_EVENTS: | |
834978fd | 2969 | case LTTNG_LIST_SYSCALLS: |
a5dfbb9d | 2970 | case LTTNG_LIST_TRACKER_PIDS: |
54d01ffb DG |
2971 | break; |
2972 | default: | |
2973 | /* Setup lttng message with no payload */ | |
2974 | ret = setup_lttng_msg(cmd_ctx, 0); | |
2975 | if (ret < 0) { | |
2976 | /* This label does not try to unlock the session */ | |
2977 | goto init_setup_error; | |
2978 | } | |
2979 | } | |
2980 | ||
2981 | /* Commands that DO NOT need a session. */ | |
2982 | switch (cmd_ctx->lsm->cmd_type) { | |
54d01ffb | 2983 | case LTTNG_CREATE_SESSION: |
27babd3a | 2984 | case LTTNG_CREATE_SESSION_SNAPSHOT: |
ecc48a90 | 2985 | case LTTNG_CREATE_SESSION_LIVE: |
2e09ba09 | 2986 | case LTTNG_CALIBRATE: |
54d01ffb DG |
2987 | case LTTNG_LIST_SESSIONS: |
2988 | case LTTNG_LIST_TRACEPOINTS: | |
834978fd | 2989 | case LTTNG_LIST_SYSCALLS: |
f37d259d | 2990 | case LTTNG_LIST_TRACEPOINT_FIELDS: |
fb198a11 | 2991 | case LTTNG_SAVE_SESSION: |
44d3bd01 | 2992 | need_tracing_session = 0; |
54d01ffb DG |
2993 | break; |
2994 | default: | |
2995 | DBG("Getting session %s by name", cmd_ctx->lsm->session.name); | |
256a5576 MD |
2996 | /* |
2997 | * We keep the session list lock across _all_ commands | |
2998 | * for now, because the per-session lock does not | |
2999 | * handle teardown properly. | |
3000 | */ | |
74babd95 | 3001 | session_lock_list(); |
54d01ffb DG |
3002 | cmd_ctx->session = session_find_by_name(cmd_ctx->lsm->session.name); |
3003 | if (cmd_ctx->session == NULL) { | |
bba2d65f | 3004 | ret = LTTNG_ERR_SESS_NOT_FOUND; |
54d01ffb DG |
3005 | goto error; |
3006 | } else { | |
3007 | /* Acquire lock for the session */ | |
3008 | session_lock(cmd_ctx->session); | |
3009 | } | |
3010 | break; | |
3011 | } | |
b389abbe | 3012 | |
5f3ecf22 DG |
3013 | /* |
3014 | * Commands that need a valid session but should NOT create one if none | |
3015 | * exists. Instead of creating one and destroying it when the command is | |
3016 | * handled, process that right before so we save some round trip in useless | |
3017 | * code path. | |
3018 | */ | |
3019 | switch (cmd_ctx->lsm->cmd_type) { | |
3020 | case LTTNG_DISABLE_CHANNEL: | |
3021 | case LTTNG_DISABLE_EVENT: | |
5f3ecf22 DG |
3022 | switch (cmd_ctx->lsm->domain.type) { |
3023 | case LTTNG_DOMAIN_KERNEL: | |
3024 | if (!cmd_ctx->session->kernel_session) { | |
3025 | ret = LTTNG_ERR_NO_CHANNEL; | |
3026 | goto error; | |
3027 | } | |
3028 | break; | |
3029 | case LTTNG_DOMAIN_JUL: | |
5cdb6027 | 3030 | case LTTNG_DOMAIN_LOG4J: |
0e115563 | 3031 | case LTTNG_DOMAIN_PYTHON: |
5f3ecf22 DG |
3032 | case LTTNG_DOMAIN_UST: |
3033 | if (!cmd_ctx->session->ust_session) { | |
3034 | ret = LTTNG_ERR_NO_CHANNEL; | |
3035 | goto error; | |
3036 | } | |
3037 | break; | |
3038 | default: | |
3039 | ret = LTTNG_ERR_UNKNOWN_DOMAIN; | |
3040 | goto error; | |
3041 | } | |
3042 | default: | |
3043 | break; | |
3044 | } | |
3045 | ||
2e09ba09 MD |
3046 | if (!need_domain) { |
3047 | goto skip_domain; | |
3048 | } | |
a4b92340 | 3049 | |
54d01ffb DG |
3050 | /* |
3051 | * Check domain type for specific "pre-action". | |
3052 | */ | |
3053 | switch (cmd_ctx->lsm->domain.type) { | |
3054 | case LTTNG_DOMAIN_KERNEL: | |
d1f1c568 | 3055 | if (!is_root) { |
f73fabfd | 3056 | ret = LTTNG_ERR_NEED_ROOT_SESSIOND; |
d1f1c568 DG |
3057 | goto error; |
3058 | } | |
3059 | ||
54d01ffb | 3060 | /* Kernel tracer check */ |
a4b35e07 | 3061 | if (kernel_tracer_fd == -1) { |
54d01ffb | 3062 | /* Basically, load kernel tracer modules */ |
096102bd DG |
3063 | ret = init_kernel_tracer(); |
3064 | if (ret != 0) { | |
54d01ffb DG |
3065 | goto error; |
3066 | } | |
3067 | } | |
5eb91c98 | 3068 | |
5c827ce0 DG |
3069 | /* Consumer is in an ERROR state. Report back to client */ |
3070 | if (uatomic_read(&kernel_consumerd_state) == CONSUMER_ERROR) { | |
f73fabfd | 3071 | ret = LTTNG_ERR_NO_KERNCONSUMERD; |
5c827ce0 DG |
3072 | goto error; |
3073 | } | |
3074 | ||
54d01ffb | 3075 | /* Need a session for kernel command */ |
44d3bd01 | 3076 | if (need_tracing_session) { |
54d01ffb | 3077 | if (cmd_ctx->session->kernel_session == NULL) { |
6df2e2c9 | 3078 | ret = create_kernel_session(cmd_ctx->session); |
5eb91c98 | 3079 | if (ret < 0) { |
f73fabfd | 3080 | ret = LTTNG_ERR_KERN_SESS_FAIL; |
5eb91c98 DG |
3081 | goto error; |
3082 | } | |
b389abbe | 3083 | } |
7d29a247 | 3084 | |
54d01ffb | 3085 | /* Start the kernel consumer daemon */ |
3bd1e081 MD |
3086 | pthread_mutex_lock(&kconsumer_data.pid_mutex); |
3087 | if (kconsumer_data.pid == 0 && | |
785d2d0d | 3088 | cmd_ctx->lsm->cmd_type != LTTNG_REGISTER_CONSUMER) { |
3bd1e081 MD |
3089 | pthread_mutex_unlock(&kconsumer_data.pid_mutex); |
3090 | ret = start_consumerd(&kconsumer_data); | |
7d29a247 | 3091 | if (ret < 0) { |
f73fabfd | 3092 | ret = LTTNG_ERR_KERN_CONSUMER_FAIL; |
54d01ffb | 3093 | goto error; |
950131af | 3094 | } |
5c827ce0 | 3095 | uatomic_set(&kernel_consumerd_state, CONSUMER_STARTED); |
3ff2ecac MD |
3096 | } else { |
3097 | pthread_mutex_unlock(&kconsumer_data.pid_mutex); | |
33a2b854 | 3098 | } |
173af62f | 3099 | |
a4b92340 DG |
3100 | /* |
3101 | * The consumer was just spawned so we need to add the socket to | |
3102 | * the consumer output of the session if exist. | |
3103 | */ | |
3104 | ret = consumer_create_socket(&kconsumer_data, | |
3105 | cmd_ctx->session->kernel_session->consumer); | |
3106 | if (ret < 0) { | |
3107 | goto error; | |
173af62f | 3108 | } |
0d0c377a | 3109 | } |
5c827ce0 | 3110 | |
54d01ffb | 3111 | break; |
b9dfb167 | 3112 | case LTTNG_DOMAIN_JUL: |
5cdb6027 | 3113 | case LTTNG_DOMAIN_LOG4J: |
0e115563 | 3114 | case LTTNG_DOMAIN_PYTHON: |
2bdd86d4 | 3115 | case LTTNG_DOMAIN_UST: |
44d3bd01 | 3116 | { |
b51ec5b4 MD |
3117 | if (!ust_app_supported()) { |
3118 | ret = LTTNG_ERR_NO_UST; | |
3119 | goto error; | |
3120 | } | |
5c827ce0 DG |
3121 | /* Consumer is in an ERROR state. Report back to client */ |
3122 | if (uatomic_read(&ust_consumerd_state) == CONSUMER_ERROR) { | |
f73fabfd | 3123 | ret = LTTNG_ERR_NO_USTCONSUMERD; |
5c827ce0 DG |
3124 | goto error; |
3125 | } | |
3126 | ||
44d3bd01 | 3127 | if (need_tracing_session) { |
a4b92340 | 3128 | /* Create UST session if none exist. */ |
f6a9efaa | 3129 | if (cmd_ctx->session->ust_session == NULL) { |
44d3bd01 | 3130 | ret = create_ust_session(cmd_ctx->session, |
6df2e2c9 | 3131 | &cmd_ctx->lsm->domain); |
f73fabfd | 3132 | if (ret != LTTNG_OK) { |
44d3bd01 DG |
3133 | goto error; |
3134 | } | |
3135 | } | |
00e2e675 | 3136 | |
7753dea8 MD |
3137 | /* Start the UST consumer daemons */ |
3138 | /* 64-bit */ | |
3139 | pthread_mutex_lock(&ustconsumer64_data.pid_mutex); | |
fc7a59ce | 3140 | if (consumerd64_bin[0] != '\0' && |
7753dea8 | 3141 | ustconsumer64_data.pid == 0 && |
785d2d0d | 3142 | cmd_ctx->lsm->cmd_type != LTTNG_REGISTER_CONSUMER) { |
7753dea8 MD |
3143 | pthread_mutex_unlock(&ustconsumer64_data.pid_mutex); |
3144 | ret = start_consumerd(&ustconsumer64_data); | |
2bdd86d4 | 3145 | if (ret < 0) { |
f73fabfd | 3146 | ret = LTTNG_ERR_UST_CONSUMER64_FAIL; |
173af62f | 3147 | uatomic_set(&ust_consumerd64_fd, -EINVAL); |
2bdd86d4 MD |
3148 | goto error; |
3149 | } | |
48842b30 | 3150 | |
173af62f | 3151 | uatomic_set(&ust_consumerd64_fd, ustconsumer64_data.cmd_sock); |
5c827ce0 | 3152 | uatomic_set(&ust_consumerd_state, CONSUMER_STARTED); |
3ff2ecac | 3153 | } else { |
7753dea8 MD |
3154 | pthread_mutex_unlock(&ustconsumer64_data.pid_mutex); |
3155 | } | |
173af62f DG |
3156 | |
3157 | /* | |
3158 | * Setup socket for consumer 64 bit. No need for atomic access | |
3159 | * since it was set above and can ONLY be set in this thread. | |
3160 | */ | |
a4b92340 DG |
3161 | ret = consumer_create_socket(&ustconsumer64_data, |
3162 | cmd_ctx->session->ust_session->consumer); | |
3163 | if (ret < 0) { | |
3164 | goto error; | |
173af62f DG |
3165 | } |
3166 | ||
7753dea8 | 3167 | /* 32-bit */ |
385b881b | 3168 | pthread_mutex_lock(&ustconsumer32_data.pid_mutex); |
fc7a59ce | 3169 | if (consumerd32_bin[0] != '\0' && |
7753dea8 | 3170 | ustconsumer32_data.pid == 0 && |
785d2d0d | 3171 | cmd_ctx->lsm->cmd_type != LTTNG_REGISTER_CONSUMER) { |
7753dea8 MD |
3172 | pthread_mutex_unlock(&ustconsumer32_data.pid_mutex); |
3173 | ret = start_consumerd(&ustconsumer32_data); | |
3174 | if (ret < 0) { | |
f73fabfd | 3175 | ret = LTTNG_ERR_UST_CONSUMER32_FAIL; |
173af62f | 3176 | uatomic_set(&ust_consumerd32_fd, -EINVAL); |
7753dea8 MD |
3177 | goto error; |
3178 | } | |
5c827ce0 | 3179 | |
173af62f | 3180 | uatomic_set(&ust_consumerd32_fd, ustconsumer32_data.cmd_sock); |
5c827ce0 | 3181 | uatomic_set(&ust_consumerd_state, CONSUMER_STARTED); |
7753dea8 MD |
3182 | } else { |
3183 | pthread_mutex_unlock(&ustconsumer32_data.pid_mutex); | |
2bdd86d4 | 3184 | } |
173af62f DG |
3185 | |
3186 | /* | |
3187 | * Setup socket for consumer 64 bit. No need for atomic access | |
3188 | * since it was set above and can ONLY be set in this thread. | |
3189 | */ | |
a4b92340 DG |
3190 | ret = consumer_create_socket(&ustconsumer32_data, |
3191 | cmd_ctx->session->ust_session->consumer); | |
3192 | if (ret < 0) { | |
3193 | goto error; | |
173af62f | 3194 | } |
44d3bd01 DG |
3195 | } |
3196 | break; | |
48842b30 | 3197 | } |
54d01ffb | 3198 | default: |
54d01ffb DG |
3199 | break; |
3200 | } | |
2e09ba09 | 3201 | skip_domain: |
33a2b854 | 3202 | |
5c827ce0 DG |
3203 | /* Validate consumer daemon state when start/stop trace command */ |
3204 | if (cmd_ctx->lsm->cmd_type == LTTNG_START_TRACE || | |
3205 | cmd_ctx->lsm->cmd_type == LTTNG_STOP_TRACE) { | |
3206 | switch (cmd_ctx->lsm->domain.type) { | |
b9dfb167 | 3207 | case LTTNG_DOMAIN_JUL: |
5cdb6027 | 3208 | case LTTNG_DOMAIN_LOG4J: |
0e115563 | 3209 | case LTTNG_DOMAIN_PYTHON: |
5c827ce0 DG |
3210 | case LTTNG_DOMAIN_UST: |
3211 | if (uatomic_read(&ust_consumerd_state) != CONSUMER_STARTED) { | |
f73fabfd | 3212 | ret = LTTNG_ERR_NO_USTCONSUMERD; |
5c827ce0 DG |
3213 | goto error; |
3214 | } | |
3215 | break; | |
3216 | case LTTNG_DOMAIN_KERNEL: | |
3217 | if (uatomic_read(&kernel_consumerd_state) != CONSUMER_STARTED) { | |
f73fabfd | 3218 | ret = LTTNG_ERR_NO_KERNCONSUMERD; |
5c827ce0 DG |
3219 | goto error; |
3220 | } | |
3221 | break; | |
3222 | } | |
3223 | } | |
3224 | ||
8e0af1b4 MD |
3225 | /* |
3226 | * Check that the UID or GID match that of the tracing session. | |
3227 | * The root user can interact with all sessions. | |
3228 | */ | |
3229 | if (need_tracing_session) { | |
3230 | if (!session_access_ok(cmd_ctx->session, | |
730389d9 DG |
3231 | LTTNG_SOCK_GET_UID_CRED(&cmd_ctx->creds), |
3232 | LTTNG_SOCK_GET_GID_CRED(&cmd_ctx->creds))) { | |
f73fabfd | 3233 | ret = LTTNG_ERR_EPERM; |
8e0af1b4 MD |
3234 | goto error; |
3235 | } | |
3236 | } | |
3237 | ||
ffe60014 DG |
3238 | /* |
3239 | * Send relayd information to consumer as soon as we have a domain and a | |
3240 | * session defined. | |
3241 | */ | |
3242 | if (cmd_ctx->session && need_domain) { | |
3243 | /* | |
3244 | * Setup relayd if not done yet. If the relayd information was already | |
3245 | * sent to the consumer, this call will gracefully return. | |
3246 | */ | |
3247 | ret = cmd_setup_relayd(cmd_ctx->session); | |
3248 | if (ret != LTTNG_OK) { | |
3249 | goto error; | |
3250 | } | |
3251 | } | |
3252 | ||
54d01ffb DG |
3253 | /* Process by command type */ |
3254 | switch (cmd_ctx->lsm->cmd_type) { | |
3255 | case LTTNG_ADD_CONTEXT: | |
3256 | { | |
3257 | ret = cmd_add_context(cmd_ctx->session, cmd_ctx->lsm->domain.type, | |
3258 | cmd_ctx->lsm->u.context.channel_name, | |
979e618e | 3259 | &cmd_ctx->lsm->u.context.ctx, kernel_poll_pipe[1]); |
54d01ffb DG |
3260 | break; |
3261 | } | |
3262 | case LTTNG_DISABLE_CHANNEL: | |
3263 | { | |
3264 | ret = cmd_disable_channel(cmd_ctx->session, cmd_ctx->lsm->domain.type, | |
3265 | cmd_ctx->lsm->u.disable.channel_name); | |
3266 | break; | |
3267 | } | |
3268 | case LTTNG_DISABLE_EVENT: | |
3269 | { | |
6e911cad MD |
3270 | /* FIXME: passing packed structure to non-packed pointer */ |
3271 | /* TODO: handle filter */ | |
54d01ffb DG |
3272 | ret = cmd_disable_event(cmd_ctx->session, cmd_ctx->lsm->domain.type, |
3273 | cmd_ctx->lsm->u.disable.channel_name, | |
6e911cad | 3274 | &cmd_ctx->lsm->u.disable.event); |
33a2b854 DG |
3275 | break; |
3276 | } | |
54d01ffb DG |
3277 | case LTTNG_ENABLE_CHANNEL: |
3278 | { | |
7972aab2 | 3279 | ret = cmd_enable_channel(cmd_ctx->session, &cmd_ctx->lsm->domain, |
2f77fc4b | 3280 | &cmd_ctx->lsm->u.channel.chan, kernel_poll_pipe[1]); |
54d01ffb DG |
3281 | break; |
3282 | } | |
ccf10263 MD |
3283 | case LTTNG_TRACK_PID: |
3284 | { | |
3285 | ret = cmd_track_pid(cmd_ctx->session, | |
3286 | cmd_ctx->lsm->domain.type, | |
3287 | cmd_ctx->lsm->u.pid_tracker.pid); | |
3288 | break; | |
3289 | } | |
3290 | case LTTNG_UNTRACK_PID: | |
3291 | { | |
3292 | ret = cmd_untrack_pid(cmd_ctx->session, | |
3293 | cmd_ctx->lsm->domain.type, | |
3294 | cmd_ctx->lsm->u.pid_tracker.pid); | |
3295 | break; | |
3296 | } | |
54d01ffb DG |
3297 | case LTTNG_ENABLE_EVENT: |
3298 | { | |
882ef835 JI |
3299 | struct lttng_event_exclusion *exclusion = NULL; |
3300 | struct lttng_filter_bytecode *bytecode = NULL; | |
6b453b5e | 3301 | char *filter_expression = NULL; |
882ef835 | 3302 | |
67676bd8 DG |
3303 | /* Handle exclusion events and receive it from the client. */ |
3304 | if (cmd_ctx->lsm->u.enable.exclusion_count > 0) { | |
3305 | size_t count = cmd_ctx->lsm->u.enable.exclusion_count; | |
3306 | ||
3307 | exclusion = zmalloc(sizeof(struct lttng_event_exclusion) + | |
3308 | (count * LTTNG_SYMBOL_NAME_LEN)); | |
3309 | if (!exclusion) { | |
3310 | ret = LTTNG_ERR_EXCLUSION_NOMEM; | |
3311 | goto error; | |
882ef835 | 3312 | } |
882ef835 | 3313 | |
67676bd8 DG |
3314 | DBG("Receiving var len exclusion event list from client ..."); |
3315 | exclusion->count = count; | |
3316 | ret = lttcomm_recv_unix_sock(sock, exclusion->names, | |
3317 | count * LTTNG_SYMBOL_NAME_LEN); | |
3318 | if (ret <= 0) { | |
3319 | DBG("Nothing recv() from client var len data... continuing"); | |
3320 | *sock_error = 1; | |
3321 | free(exclusion); | |
3322 | ret = LTTNG_ERR_EXCLUSION_INVAL; | |
3323 | goto error; | |
3324 | } | |
3325 | } | |
3326 | ||
6b453b5e JG |
3327 | /* Get filter expression from client. */ |
3328 | if (cmd_ctx->lsm->u.enable.expression_len > 0) { | |
3329 | size_t expression_len = | |
3330 | cmd_ctx->lsm->u.enable.expression_len; | |
3331 | ||
3332 | if (expression_len > LTTNG_FILTER_MAX_LEN) { | |
3333 | ret = LTTNG_ERR_FILTER_INVAL; | |
3334 | free(exclusion); | |
3335 | goto error; | |
3336 | } | |
3337 | ||
3338 | filter_expression = zmalloc(expression_len); | |
3339 | if (!filter_expression) { | |
3340 | free(exclusion); | |
3341 | ret = LTTNG_ERR_FILTER_NOMEM; | |
3342 | goto error; | |
3343 | } | |
3344 | ||
3345 | /* Receive var. len. data */ | |
3346 | DBG("Receiving var len filter's expression from client ..."); | |
3347 | ret = lttcomm_recv_unix_sock(sock, filter_expression, | |
3348 | expression_len); | |
3349 | if (ret <= 0) { | |
3350 | DBG("Nothing recv() from client car len data... continuing"); | |
3351 | *sock_error = 1; | |
3352 | free(filter_expression); | |
3353 | free(exclusion); | |
3354 | ret = LTTNG_ERR_FILTER_INVAL; | |
3355 | goto error; | |
3356 | } | |
3357 | } | |
3358 | ||
67676bd8 DG |
3359 | /* Handle filter and get bytecode from client. */ |
3360 | if (cmd_ctx->lsm->u.enable.bytecode_len > 0) { | |
3361 | size_t bytecode_len = cmd_ctx->lsm->u.enable.bytecode_len; | |
3362 | ||
3363 | if (bytecode_len > LTTNG_FILTER_MAX_LEN) { | |
3364 | ret = LTTNG_ERR_FILTER_INVAL; | |
49d21f93 | 3365 | free(filter_expression); |
67676bd8 DG |
3366 | free(exclusion); |
3367 | goto error; | |
3368 | } | |
3369 | ||
3370 | bytecode = zmalloc(bytecode_len); | |
3371 | if (!bytecode) { | |
49d21f93 | 3372 | free(filter_expression); |
67676bd8 DG |
3373 | free(exclusion); |
3374 | ret = LTTNG_ERR_FILTER_NOMEM; | |
3375 | goto error; | |
882ef835 JI |
3376 | } |
3377 | ||
67676bd8 DG |
3378 | /* Receive var. len. data */ |
3379 | DBG("Receiving var len filter's bytecode from client ..."); | |
3380 | ret = lttcomm_recv_unix_sock(sock, bytecode, bytecode_len); | |
3381 | if (ret <= 0) { | |
3382 | DBG("Nothing recv() from client car len data... continuing"); | |
3383 | *sock_error = 1; | |
49d21f93 | 3384 | free(filter_expression); |
67676bd8 DG |
3385 | free(bytecode); |
3386 | free(exclusion); | |
3387 | ret = LTTNG_ERR_FILTER_INVAL; | |
3388 | goto error; | |
3389 | } | |
3390 | ||
3391 | if ((bytecode->len + sizeof(*bytecode)) != bytecode_len) { | |
49d21f93 | 3392 | free(filter_expression); |
67676bd8 DG |
3393 | free(bytecode); |
3394 | free(exclusion); | |
3395 | ret = LTTNG_ERR_FILTER_INVAL; | |
3396 | goto error; | |
3397 | } | |
882ef835 | 3398 | } |
67676bd8 DG |
3399 | |
3400 | ret = cmd_enable_event(cmd_ctx->session, &cmd_ctx->lsm->domain, | |
3401 | cmd_ctx->lsm->u.enable.channel_name, | |
6b453b5e JG |
3402 | &cmd_ctx->lsm->u.enable.event, |
3403 | filter_expression, bytecode, exclusion, | |
67676bd8 | 3404 | kernel_poll_pipe[1]); |
54d01ffb DG |
3405 | break; |
3406 | } | |
052da939 | 3407 | case LTTNG_LIST_TRACEPOINTS: |
2ef84c95 | 3408 | { |
9f19cc17 | 3409 | struct lttng_event *events; |
54d01ffb | 3410 | ssize_t nb_events; |
052da939 | 3411 | |
0845bbfa | 3412 | session_lock_list(); |
54d01ffb | 3413 | nb_events = cmd_list_tracepoints(cmd_ctx->lsm->domain.type, &events); |
0845bbfa | 3414 | session_unlock_list(); |
54d01ffb | 3415 | if (nb_events < 0) { |
f73fabfd | 3416 | /* Return value is a negative lttng_error_code. */ |
54d01ffb DG |
3417 | ret = -nb_events; |
3418 | goto error; | |
2ef84c95 DG |
3419 | } |
3420 | ||
3421 | /* | |
3422 | * Setup lttng message with payload size set to the event list size in | |
3423 | * bytes and then copy list into the llm payload. | |
3424 | */ | |
052da939 | 3425 | ret = setup_lttng_msg(cmd_ctx, sizeof(struct lttng_event) * nb_events); |
2ef84c95 | 3426 | if (ret < 0) { |
052da939 | 3427 | free(events); |
2ef84c95 DG |
3428 | goto setup_error; |
3429 | } | |
3430 | ||
3431 | /* Copy event list into message payload */ | |
9f19cc17 | 3432 | memcpy(cmd_ctx->llm->payload, events, |
052da939 | 3433 | sizeof(struct lttng_event) * nb_events); |
2ef84c95 | 3434 | |
9f19cc17 | 3435 | free(events); |
2ef84c95 | 3436 | |
f73fabfd | 3437 | ret = LTTNG_OK; |
2ef84c95 DG |
3438 | break; |
3439 | } | |
f37d259d MD |
3440 | case LTTNG_LIST_TRACEPOINT_FIELDS: |
3441 | { | |
3442 | struct lttng_event_field *fields; | |
3443 | ssize_t nb_fields; | |
3444 | ||
0845bbfa | 3445 | session_lock_list(); |
a4b92340 DG |
3446 | nb_fields = cmd_list_tracepoint_fields(cmd_ctx->lsm->domain.type, |
3447 | &fields); | |
0845bbfa | 3448 | session_unlock_list(); |
f37d259d | 3449 | if (nb_fields < 0) { |
f73fabfd | 3450 | /* Return value is a negative lttng_error_code. */ |
f37d259d MD |
3451 | ret = -nb_fields; |
3452 | goto error; | |
3453 | } | |
3454 | ||
3455 | /* | |
3456 | * Setup lttng message with payload size set to the event list size in | |
3457 | * bytes and then copy list into the llm payload. | |
3458 | */ | |
a4b92340 DG |
3459 | ret = setup_lttng_msg(cmd_ctx, |
3460 | sizeof(struct lttng_event_field) * nb_fields); | |
f37d259d MD |
3461 | if (ret < 0) { |
3462 | free(fields); | |
3463 | goto setup_error; | |
3464 | } | |
3465 | ||
3466 | /* Copy event list into message payload */ | |
3467 | memcpy(cmd_ctx->llm->payload, fields, | |
3468 | sizeof(struct lttng_event_field) * nb_fields); | |
3469 | ||
3470 | free(fields); | |
3471 | ||
f73fabfd | 3472 | ret = LTTNG_OK; |
f37d259d MD |
3473 | break; |
3474 | } | |
834978fd DG |
3475 | case LTTNG_LIST_SYSCALLS: |
3476 | { | |
3477 | struct lttng_event *events; | |
3478 | ssize_t nb_events; | |
3479 | ||
3480 | nb_events = cmd_list_syscalls(&events); | |
3481 | if (nb_events < 0) { | |
3482 | /* Return value is a negative lttng_error_code. */ | |
3483 | ret = -nb_events; | |
3484 | goto error; | |
3485 | } | |
3486 | ||
3487 | /* | |
3488 | * Setup lttng message with payload size set to the event list size in | |
3489 | * bytes and then copy list into the llm payload. | |
3490 | */ | |
3491 | ret = setup_lttng_msg(cmd_ctx, sizeof(struct lttng_event) * nb_events); | |
3492 | if (ret < 0) { | |
3493 | free(events); | |
3494 | goto setup_error; | |
3495 | } | |
3496 | ||
3497 | /* Copy event list into message payload */ | |
3498 | memcpy(cmd_ctx->llm->payload, events, | |
3499 | sizeof(struct lttng_event) * nb_events); | |
3500 | ||
3501 | free(events); | |
3502 | ||
3503 | ret = LTTNG_OK; | |
3504 | break; | |
3505 | } | |
a5dfbb9d MD |
3506 | case LTTNG_LIST_TRACKER_PIDS: |
3507 | { | |
3508 | int32_t *pids = NULL; | |
3509 | ssize_t nr_pids; | |
3510 | ||
3511 | nr_pids = cmd_list_tracker_pids(cmd_ctx->session, | |
3512 | cmd_ctx->lsm->domain.type, &pids); | |
3513 | if (nr_pids < 0) { | |
3514 | /* Return value is a negative lttng_error_code. */ | |
3515 | ret = -nr_pids; | |
3516 | goto error; | |
3517 | } | |
3518 | ||
3519 | /* | |
3520 | * Setup lttng message with payload size set to the event list size in | |
3521 | * bytes and then copy list into the llm payload. | |
3522 | */ | |
3523 | ret = setup_lttng_msg(cmd_ctx, sizeof(int32_t) * nr_pids); | |
3524 | if (ret < 0) { | |
3525 | free(pids); | |
3526 | goto setup_error; | |
3527 | } | |
3528 | ||
3529 | /* Copy event list into message payload */ | |
3530 | memcpy(cmd_ctx->llm->payload, pids, | |
3531 | sizeof(int) * nr_pids); | |
3532 | ||
3533 | free(pids); | |
3534 | ||
3535 | ret = LTTNG_OK; | |
3536 | break; | |
3537 | } | |
00e2e675 DG |
3538 | case LTTNG_SET_CONSUMER_URI: |
3539 | { | |
a4b92340 DG |
3540 | size_t nb_uri, len; |
3541 | struct lttng_uri *uris; | |
3542 | ||
3543 | nb_uri = cmd_ctx->lsm->u.uri.size; | |
3544 | len = nb_uri * sizeof(struct lttng_uri); | |
3545 | ||
3546 | if (nb_uri == 0) { | |
f73fabfd | 3547 | ret = LTTNG_ERR_INVALID; |
a4b92340 DG |
3548 | goto error; |
3549 | } | |
3550 | ||
3551 | uris = zmalloc(len); | |
3552 | if (uris == NULL) { | |
f73fabfd | 3553 | ret = LTTNG_ERR_FATAL; |
a4b92340 DG |
3554 | goto error; |
3555 | } | |
3556 | ||
3557 | /* Receive variable len data */ | |
77c7c900 | 3558 | DBG("Receiving %zu URI(s) from client ...", nb_uri); |
a4b92340 DG |
3559 | ret = lttcomm_recv_unix_sock(sock, uris, len); |
3560 | if (ret <= 0) { | |
3561 | DBG("No URIs received from client... continuing"); | |
3562 | *sock_error = 1; | |
f73fabfd | 3563 | ret = LTTNG_ERR_SESSION_FAIL; |
b1d41407 | 3564 | free(uris); |
a4b92340 DG |
3565 | goto error; |
3566 | } | |
3567 | ||
bda32d56 JG |
3568 | ret = cmd_set_consumer_uri(cmd_ctx->session, nb_uri, uris); |
3569 | free(uris); | |
f73fabfd | 3570 | if (ret != LTTNG_OK) { |
a4b92340 DG |
3571 | goto error; |
3572 | } | |
3573 | ||
b1d41407 | 3574 | |
00e2e675 DG |
3575 | break; |
3576 | } | |
f3ed775e | 3577 | case LTTNG_START_TRACE: |
8c0faa1d | 3578 | { |
54d01ffb | 3579 | ret = cmd_start_trace(cmd_ctx->session); |
8c0faa1d DG |
3580 | break; |
3581 | } | |
f3ed775e | 3582 | case LTTNG_STOP_TRACE: |
8c0faa1d | 3583 | { |
54d01ffb | 3584 | ret = cmd_stop_trace(cmd_ctx->session); |
8c0faa1d DG |
3585 | break; |
3586 | } | |
5e16da05 MD |
3587 | case LTTNG_CREATE_SESSION: |
3588 | { | |
a4b92340 DG |
3589 | size_t nb_uri, len; |
3590 | struct lttng_uri *uris = NULL; | |
3591 | ||
3592 | nb_uri = cmd_ctx->lsm->u.uri.size; | |
3593 | len = nb_uri * sizeof(struct lttng_uri); | |
3594 | ||
3595 | if (nb_uri > 0) { | |
3596 | uris = zmalloc(len); | |
3597 | if (uris == NULL) { | |
f73fabfd | 3598 | ret = LTTNG_ERR_FATAL; |
a4b92340 DG |
3599 | goto error; |
3600 | } | |
3601 | ||
3602 | /* Receive variable len data */ | |
77c7c900 | 3603 | DBG("Waiting for %zu URIs from client ...", nb_uri); |
a4b92340 DG |
3604 | ret = lttcomm_recv_unix_sock(sock, uris, len); |
3605 | if (ret <= 0) { | |
3606 | DBG("No URIs received from client... continuing"); | |
3607 | *sock_error = 1; | |
f73fabfd | 3608 | ret = LTTNG_ERR_SESSION_FAIL; |
b1d41407 | 3609 | free(uris); |
a4b92340 DG |
3610 | goto error; |
3611 | } | |
3612 | ||
3613 | if (nb_uri == 1 && uris[0].dtype != LTTNG_DST_PATH) { | |
3614 | DBG("Creating session with ONE network URI is a bad call"); | |
f73fabfd | 3615 | ret = LTTNG_ERR_SESSION_FAIL; |
b1d41407 | 3616 | free(uris); |
a4b92340 DG |
3617 | goto error; |
3618 | } | |
3619 | } | |
3620 | ||
3621 | ret = cmd_create_session_uri(cmd_ctx->lsm->session.name, uris, nb_uri, | |
ecc48a90 | 3622 | &cmd_ctx->creds, 0); |
a4b92340 | 3623 | |
b1d41407 DG |
3624 | free(uris); |
3625 | ||
00e2e675 DG |
3626 | break; |
3627 | } | |
5e16da05 MD |
3628 | case LTTNG_DESTROY_SESSION: |
3629 | { | |
2f77fc4b | 3630 | ret = cmd_destroy_session(cmd_ctx->session, kernel_poll_pipe[1]); |
a4b92340 DG |
3631 | |
3632 | /* Set session to NULL so we do not unlock it after free. */ | |
256a5576 | 3633 | cmd_ctx->session = NULL; |
5461b305 | 3634 | break; |
5e16da05 | 3635 | } |
9f19cc17 | 3636 | case LTTNG_LIST_DOMAINS: |
5e16da05 | 3637 | { |
54d01ffb | 3638 | ssize_t nb_dom; |
fa64dfb4 | 3639 | struct lttng_domain *domains = NULL; |
5461b305 | 3640 | |
54d01ffb DG |
3641 | nb_dom = cmd_list_domains(cmd_ctx->session, &domains); |
3642 | if (nb_dom < 0) { | |
f73fabfd | 3643 | /* Return value is a negative lttng_error_code. */ |
54d01ffb DG |
3644 | ret = -nb_dom; |
3645 | goto error; | |
ce3d728c | 3646 | } |
520ff687 | 3647 | |
54d01ffb | 3648 | ret = setup_lttng_msg(cmd_ctx, nb_dom * sizeof(struct lttng_domain)); |
5461b305 | 3649 | if (ret < 0) { |
ae9c20bc | 3650 | free(domains); |
5461b305 | 3651 | goto setup_error; |
520ff687 | 3652 | } |
57167058 | 3653 | |
54d01ffb DG |
3654 | /* Copy event list into message payload */ |
3655 | memcpy(cmd_ctx->llm->payload, domains, | |
3656 | nb_dom * sizeof(struct lttng_domain)); | |
3657 | ||
3658 | free(domains); | |
5e16da05 | 3659 | |
f73fabfd | 3660 | ret = LTTNG_OK; |
5e16da05 MD |
3661 | break; |
3662 | } | |
9f19cc17 | 3663 | case LTTNG_LIST_CHANNELS: |
5e16da05 | 3664 | { |
6775595e | 3665 | int nb_chan; |
ade7ce52 | 3666 | struct lttng_channel *channels = NULL; |
54d01ffb | 3667 | |
b551a063 DG |
3668 | nb_chan = cmd_list_channels(cmd_ctx->lsm->domain.type, |
3669 | cmd_ctx->session, &channels); | |
54d01ffb | 3670 | if (nb_chan < 0) { |
f73fabfd | 3671 | /* Return value is a negative lttng_error_code. */ |
54d01ffb DG |
3672 | ret = -nb_chan; |
3673 | goto error; | |
5461b305 | 3674 | } |
ca95a216 | 3675 | |
54d01ffb | 3676 | ret = setup_lttng_msg(cmd_ctx, nb_chan * sizeof(struct lttng_channel)); |
5461b305 | 3677 | if (ret < 0) { |
ae9c20bc | 3678 | free(channels); |
5461b305 DG |
3679 | goto setup_error; |
3680 | } | |
9f19cc17 | 3681 | |
54d01ffb DG |
3682 | /* Copy event list into message payload */ |
3683 | memcpy(cmd_ctx->llm->payload, channels, | |
3684 | nb_chan * sizeof(struct lttng_channel)); | |
3685 | ||
3686 | free(channels); | |
9f19cc17 | 3687 | |
f73fabfd | 3688 | ret = LTTNG_OK; |
5461b305 | 3689 | break; |
5e16da05 | 3690 | } |
9f19cc17 | 3691 | case LTTNG_LIST_EVENTS: |
5e16da05 | 3692 | { |
b551a063 | 3693 | ssize_t nb_event; |
684d34d2 | 3694 | struct lttng_event *events = NULL; |
9f19cc17 | 3695 | |
b551a063 | 3696 | nb_event = cmd_list_events(cmd_ctx->lsm->domain.type, cmd_ctx->session, |
54d01ffb DG |
3697 | cmd_ctx->lsm->u.list.channel_name, &events); |
3698 | if (nb_event < 0) { | |
f73fabfd | 3699 | /* Return value is a negative lttng_error_code. */ |
54d01ffb DG |
3700 | ret = -nb_event; |
3701 | goto error; | |
5461b305 | 3702 | } |
ca95a216 | 3703 | |
54d01ffb | 3704 | ret = setup_lttng_msg(cmd_ctx, nb_event * sizeof(struct lttng_event)); |
5461b305 | 3705 | if (ret < 0) { |
ae9c20bc | 3706 | free(events); |
5461b305 DG |
3707 | goto setup_error; |
3708 | } | |
9f19cc17 | 3709 | |
54d01ffb DG |
3710 | /* Copy event list into message payload */ |
3711 | memcpy(cmd_ctx->llm->payload, events, | |
3712 | nb_event * sizeof(struct lttng_event)); | |
9f19cc17 | 3713 | |
54d01ffb | 3714 | free(events); |
9f19cc17 | 3715 | |
f73fabfd | 3716 | ret = LTTNG_OK; |
5461b305 | 3717 | break; |
5e16da05 MD |
3718 | } |
3719 | case LTTNG_LIST_SESSIONS: | |
3720 | { | |
8e0af1b4 | 3721 | unsigned int nr_sessions; |
5461b305 | 3722 | |
8e0af1b4 | 3723 | session_lock_list(); |
730389d9 DG |
3724 | nr_sessions = lttng_sessions_count( |
3725 | LTTNG_SOCK_GET_UID_CRED(&cmd_ctx->creds), | |
3726 | LTTNG_SOCK_GET_GID_CRED(&cmd_ctx->creds)); | |
d32fb093 | 3727 | |
8e0af1b4 | 3728 | ret = setup_lttng_msg(cmd_ctx, sizeof(struct lttng_session) * nr_sessions); |
5461b305 | 3729 | if (ret < 0) { |
54d01ffb | 3730 | session_unlock_list(); |
5461b305 | 3731 | goto setup_error; |
e065084a | 3732 | } |
5e16da05 | 3733 | |
6c9cc2ab | 3734 | /* Filled the session array */ |
2f77fc4b | 3735 | cmd_list_lttng_sessions((struct lttng_session *)(cmd_ctx->llm->payload), |
730389d9 DG |
3736 | LTTNG_SOCK_GET_UID_CRED(&cmd_ctx->creds), |
3737 | LTTNG_SOCK_GET_GID_CRED(&cmd_ctx->creds)); | |
6c9cc2ab | 3738 | |
54d01ffb | 3739 | session_unlock_list(); |
5e16da05 | 3740 | |
f73fabfd | 3741 | ret = LTTNG_OK; |
5e16da05 MD |
3742 | break; |
3743 | } | |
d0254c7c MD |
3744 | case LTTNG_CALIBRATE: |
3745 | { | |
54d01ffb DG |
3746 | ret = cmd_calibrate(cmd_ctx->lsm->domain.type, |
3747 | &cmd_ctx->lsm->u.calibrate); | |
d0254c7c MD |
3748 | break; |
3749 | } | |
d9800920 DG |
3750 | case LTTNG_REGISTER_CONSUMER: |
3751 | { | |
2f77fc4b DG |
3752 | struct consumer_data *cdata; |
3753 | ||
3754 | switch (cmd_ctx->lsm->domain.type) { | |
3755 | case LTTNG_DOMAIN_KERNEL: | |
3756 | cdata = &kconsumer_data; | |
3757 | break; | |
3758 | default: | |
f73fabfd | 3759 | ret = LTTNG_ERR_UND; |
2f77fc4b DG |
3760 | goto error; |
3761 | } | |
3762 | ||
54d01ffb | 3763 | ret = cmd_register_consumer(cmd_ctx->session, cmd_ctx->lsm->domain.type, |
2f77fc4b | 3764 | cmd_ctx->lsm->u.reg.path, cdata); |
d9800920 DG |
3765 | break; |
3766 | } | |
6d805429 | 3767 | case LTTNG_DATA_PENDING: |
806e2684 | 3768 | { |
6d805429 | 3769 | ret = cmd_data_pending(cmd_ctx->session); |
806e2684 DG |
3770 | break; |
3771 | } | |
da3c9ec1 DG |
3772 | case LTTNG_SNAPSHOT_ADD_OUTPUT: |
3773 | { | |
6dc3064a DG |
3774 | struct lttcomm_lttng_output_id reply; |
3775 | ||
3776 | ret = cmd_snapshot_add_output(cmd_ctx->session, | |
3777 | &cmd_ctx->lsm->u.snapshot_output.output, &reply.id); | |
3778 | if (ret != LTTNG_OK) { | |
3779 | goto error; | |
3780 | } | |
3781 | ||
3782 | ret = setup_lttng_msg(cmd_ctx, sizeof(reply)); | |
3783 | if (ret < 0) { | |
3784 | goto setup_error; | |
3785 | } | |
3786 | ||
3787 | /* Copy output list into message payload */ | |
3788 | memcpy(cmd_ctx->llm->payload, &reply, sizeof(reply)); | |
3789 | ret = LTTNG_OK; | |
da3c9ec1 DG |
3790 | break; |
3791 | } | |
3792 | case LTTNG_SNAPSHOT_DEL_OUTPUT: | |
3793 | { | |
6dc3064a DG |
3794 | ret = cmd_snapshot_del_output(cmd_ctx->session, |
3795 | &cmd_ctx->lsm->u.snapshot_output.output); | |
da3c9ec1 DG |
3796 | break; |
3797 | } | |
3798 | case LTTNG_SNAPSHOT_LIST_OUTPUT: | |
3799 | { | |
6dc3064a DG |
3800 | ssize_t nb_output; |
3801 | struct lttng_snapshot_output *outputs = NULL; | |
3802 | ||
3803 | nb_output = cmd_snapshot_list_outputs(cmd_ctx->session, &outputs); | |
3804 | if (nb_output < 0) { | |
3805 | ret = -nb_output; | |
3806 | goto error; | |
3807 | } | |
3808 | ||
3809 | ret = setup_lttng_msg(cmd_ctx, | |
3810 | nb_output * sizeof(struct lttng_snapshot_output)); | |
3811 | if (ret < 0) { | |
3812 | free(outputs); | |
3813 | goto setup_error; | |
3814 | } | |
3815 | ||
3816 | if (outputs) { | |
3817 | /* Copy output list into message payload */ | |
3818 | memcpy(cmd_ctx->llm->payload, outputs, | |
3819 | nb_output * sizeof(struct lttng_snapshot_output)); | |
3820 | free(outputs); | |
3821 | } | |
3822 | ||
3823 | ret = LTTNG_OK; | |
da3c9ec1 DG |
3824 | break; |
3825 | } | |
3826 | case LTTNG_SNAPSHOT_RECORD: | |
3827 | { | |
6dc3064a DG |
3828 | ret = cmd_snapshot_record(cmd_ctx->session, |
3829 | &cmd_ctx->lsm->u.snapshot_record.output, | |
3830 | cmd_ctx->lsm->u.snapshot_record.wait); | |
da3c9ec1 DG |
3831 | break; |
3832 | } | |
27babd3a DG |
3833 | case LTTNG_CREATE_SESSION_SNAPSHOT: |
3834 | { | |
3835 | size_t nb_uri, len; | |
3836 | struct lttng_uri *uris = NULL; | |
3837 | ||
3838 | nb_uri = cmd_ctx->lsm->u.uri.size; | |
3839 | len = nb_uri * sizeof(struct lttng_uri); | |
3840 | ||
3841 | if (nb_uri > 0) { | |
3842 | uris = zmalloc(len); | |
3843 | if (uris == NULL) { | |
3844 | ret = LTTNG_ERR_FATAL; | |
3845 | goto error; | |
3846 | } | |
3847 | ||
3848 | /* Receive variable len data */ | |
3849 | DBG("Waiting for %zu URIs from client ...", nb_uri); | |
3850 | ret = lttcomm_recv_unix_sock(sock, uris, len); | |
3851 | if (ret <= 0) { | |
3852 | DBG("No URIs received from client... continuing"); | |
3853 | *sock_error = 1; | |
3854 | ret = LTTNG_ERR_SESSION_FAIL; | |
3855 | free(uris); | |
3856 | goto error; | |
3857 | } | |
3858 | ||
3859 | if (nb_uri == 1 && uris[0].dtype != LTTNG_DST_PATH) { | |
3860 | DBG("Creating session with ONE network URI is a bad call"); | |
3861 | ret = LTTNG_ERR_SESSION_FAIL; | |
3862 | free(uris); | |
3863 | goto error; | |
3864 | } | |
3865 | } | |
3866 | ||
3867 | ret = cmd_create_session_snapshot(cmd_ctx->lsm->session.name, uris, | |
3868 | nb_uri, &cmd_ctx->creds); | |
3869 | free(uris); | |
3870 | break; | |
3871 | } | |
ecc48a90 JD |
3872 | case LTTNG_CREATE_SESSION_LIVE: |
3873 | { | |
3874 | size_t nb_uri, len; | |
3875 | struct lttng_uri *uris = NULL; | |
3876 | ||
3877 | nb_uri = cmd_ctx->lsm->u.uri.size; | |
3878 | len = nb_uri * sizeof(struct lttng_uri); | |
3879 | ||
3880 | if (nb_uri > 0) { | |
3881 | uris = zmalloc(len); | |
3882 | if (uris == NULL) { | |
3883 | ret = LTTNG_ERR_FATAL; | |
3884 | goto error; | |
3885 | } | |
3886 | ||
3887 | /* Receive variable len data */ | |
3888 | DBG("Waiting for %zu URIs from client ...", nb_uri); | |
3889 | ret = lttcomm_recv_unix_sock(sock, uris, len); | |
3890 | if (ret <= 0) { | |
3891 | DBG("No URIs received from client... continuing"); | |
3892 | *sock_error = 1; | |
3893 | ret = LTTNG_ERR_SESSION_FAIL; | |
3894 | free(uris); | |
3895 | goto error; | |
3896 | } | |
3897 | ||
3898 | if (nb_uri == 1 && uris[0].dtype != LTTNG_DST_PATH) { | |
3899 | DBG("Creating session with ONE network URI is a bad call"); | |
3900 | ret = LTTNG_ERR_SESSION_FAIL; | |
3901 | free(uris); | |
3902 | goto error; | |
3903 | } | |
3904 | } | |
3905 | ||
3906 | ret = cmd_create_session_uri(cmd_ctx->lsm->session.name, uris, | |
3907 | nb_uri, &cmd_ctx->creds, cmd_ctx->lsm->u.session_live.timer_interval); | |
3908 | free(uris); | |
3909 | break; | |
3910 | } | |
fb198a11 JG |
3911 | case LTTNG_SAVE_SESSION: |
3912 | { | |
3913 | ret = cmd_save_sessions(&cmd_ctx->lsm->u.save_session.attr, | |
3914 | &cmd_ctx->creds); | |
3915 | break; | |
3916 | } | |
d7ba1388 MD |
3917 | case LTTNG_SET_SESSION_SHM_PATH: |
3918 | { | |
3919 | ret = cmd_set_session_shm_path(cmd_ctx->session, | |
3920 | cmd_ctx->lsm->u.set_shm_path.shm_path); | |
3921 | break; | |
3922 | } | |
5e16da05 | 3923 | default: |
f73fabfd | 3924 | ret = LTTNG_ERR_UND; |
5461b305 | 3925 | break; |
fac6795d DG |
3926 | } |
3927 | ||
5461b305 | 3928 | error: |
5461b305 DG |
3929 | if (cmd_ctx->llm == NULL) { |
3930 | DBG("Missing llm structure. Allocating one."); | |
894be886 | 3931 | if (setup_lttng_msg(cmd_ctx, 0) < 0) { |
5461b305 DG |
3932 | goto setup_error; |
3933 | } | |
3934 | } | |
54d01ffb | 3935 | /* Set return code */ |
5461b305 | 3936 | cmd_ctx->llm->ret_code = ret; |
5461b305 | 3937 | setup_error: |
b5541356 | 3938 | if (cmd_ctx->session) { |
54d01ffb | 3939 | session_unlock(cmd_ctx->session); |
b5541356 | 3940 | } |
256a5576 MD |
3941 | if (need_tracing_session) { |
3942 | session_unlock_list(); | |
3943 | } | |
54d01ffb | 3944 | init_setup_error: |
8028d920 | 3945 | return ret; |
fac6795d DG |
3946 | } |
3947 | ||
44a5e5eb DG |
3948 | /* |
3949 | * Thread managing health check socket. | |
3950 | */ | |
3951 | static void *thread_manage_health(void *data) | |
3952 | { | |
eb4a2943 | 3953 | int sock = -1, new_sock = -1, ret, i, pollfd, err = -1; |
44a5e5eb DG |
3954 | uint32_t revents, nb_fd; |
3955 | struct lttng_poll_event events; | |
0c89d795 MD |
3956 | struct health_comm_msg msg; |
3957 | struct health_comm_reply reply; | |
44a5e5eb DG |
3958 | |
3959 | DBG("[thread] Manage health check started"); | |
3960 | ||
3961 | rcu_register_thread(); | |
3962 | ||
6d737ce4 DG |
3963 | /* We might hit an error path before this is created. */ |
3964 | lttng_poll_init(&events); | |
3cc04881 | 3965 | |
44a5e5eb DG |
3966 | /* Create unix socket */ |
3967 | sock = lttcomm_create_unix_sock(health_unix_sock_path); | |
3968 | if (sock < 0) { | |
3969 | ERR("Unable to create health check Unix socket"); | |
3970 | ret = -1; | |
3971 | goto error; | |
3972 | } | |
3973 | ||
6c71277b MD |
3974 | if (is_root) { |
3975 | /* lttng health client socket path permissions */ | |
3976 | ret = chown(health_unix_sock_path, 0, | |
3977 | utils_get_group_id(tracing_group_name)); | |
3978 | if (ret < 0) { | |
3979 | ERR("Unable to set group on %s", health_unix_sock_path); | |
3980 | PERROR("chown"); | |
3981 | ret = -1; | |
3982 | goto error; | |
3983 | } | |
3984 | ||
3985 | ret = chmod(health_unix_sock_path, | |
3986 | S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP); | |
3987 | if (ret < 0) { | |
3988 | ERR("Unable to set permissions on %s", health_unix_sock_path); | |
3989 | PERROR("chmod"); | |
3990 | ret = -1; | |
3991 | goto error; | |
3992 | } | |
3993 | } | |
3994 | ||
b662582b DG |
3995 | /* |
3996 | * Set the CLOEXEC flag. Return code is useless because either way, the | |
3997 | * show must go on. | |
3998 | */ | |
3999 | (void) utils_set_fd_cloexec(sock); | |
4000 | ||
44a5e5eb DG |
4001 | ret = lttcomm_listen_unix_sock(sock); |
4002 | if (ret < 0) { | |
4003 | goto error; | |
4004 | } | |
4005 | ||
4006 | /* | |
4007 | * Pass 2 as size here for the thread quit pipe and client_sock. Nothing | |
4008 | * more will be added to this poll set. | |
4009 | */ | |
d0b96690 | 4010 | ret = sessiond_set_thread_pollset(&events, 2); |
44a5e5eb DG |
4011 | if (ret < 0) { |
4012 | goto error; | |
4013 | } | |
4014 | ||
4015 | /* Add the application registration socket */ | |
4016 | ret = lttng_poll_add(&events, sock, LPOLLIN | LPOLLPRI); | |
4017 | if (ret < 0) { | |
4018 | goto error; | |
4019 | } | |
4020 | ||
ef367a93 | 4021 | sessiond_notify_ready(); |
97bc1426 | 4022 | |
44a5e5eb DG |
4023 | while (1) { |
4024 | DBG("Health check ready"); | |
4025 | ||
44a5e5eb DG |
4026 | /* Inifinite blocking call, waiting for transmission */ |
4027 | restart: | |
4028 | ret = lttng_poll_wait(&events, -1); | |
4029 | if (ret < 0) { | |
4030 | /* | |
4031 | * Restart interrupted system call. | |
4032 | */ | |
4033 | if (errno == EINTR) { | |
4034 | goto restart; | |
4035 | } | |
4036 | goto error; | |
4037 | } | |
4038 | ||
0d9c5d77 DG |
4039 | nb_fd = ret; |
4040 | ||
44a5e5eb DG |
4041 | for (i = 0; i < nb_fd; i++) { |
4042 | /* Fetch once the poll data */ | |
4043 | revents = LTTNG_POLL_GETEV(&events, i); | |
4044 | pollfd = LTTNG_POLL_GETFD(&events, i); | |
4045 | ||
fd20dac9 MD |
4046 | if (!revents) { |
4047 | /* No activity for this FD (poll implementation). */ | |
4048 | continue; | |
4049 | } | |
4050 | ||
44a5e5eb | 4051 | /* Thread quit pipe has been closed. Killing thread. */ |
d0b96690 | 4052 | ret = sessiond_check_thread_quit_pipe(pollfd, revents); |
44a5e5eb | 4053 | if (ret) { |
139ac872 MD |
4054 | err = 0; |
4055 | goto exit; | |
44a5e5eb DG |
4056 | } |
4057 | ||
4058 | /* Event on the registration socket */ | |
4059 | if (pollfd == sock) { | |
4060 | if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) { | |
4061 | ERR("Health socket poll error"); | |
4062 | goto error; | |
4063 | } | |
4064 | } | |
4065 | } | |
4066 | ||
4067 | new_sock = lttcomm_accept_unix_sock(sock); | |
4068 | if (new_sock < 0) { | |
4069 | goto error; | |
4070 | } | |
4071 | ||
b662582b DG |
4072 | /* |
4073 | * Set the CLOEXEC flag. Return code is useless because either way, the | |
4074 | * show must go on. | |
4075 | */ | |
4076 | (void) utils_set_fd_cloexec(new_sock); | |
4077 | ||
44a5e5eb DG |
4078 | DBG("Receiving data from client for health..."); |
4079 | ret = lttcomm_recv_unix_sock(new_sock, (void *)&msg, sizeof(msg)); | |
4080 | if (ret <= 0) { | |
4081 | DBG("Nothing recv() from client... continuing"); | |
4082 | ret = close(new_sock); | |
4083 | if (ret) { | |
4084 | PERROR("close"); | |
4085 | } | |
4086 | new_sock = -1; | |
4087 | continue; | |
4088 | } | |
4089 | ||
4090 | rcu_thread_online(); | |
4091 | ||
53efb85a | 4092 | memset(&reply, 0, sizeof(reply)); |
6c71277b MD |
4093 | for (i = 0; i < NR_HEALTH_SESSIOND_TYPES; i++) { |
4094 | /* | |
4095 | * health_check_state returns 0 if health is | |
4096 | * bad. | |
4097 | */ | |
4098 | if (!health_check_state(health_sessiond, i)) { | |
4099 | reply.ret_code |= 1ULL << i; | |
4100 | } | |
44a5e5eb DG |
4101 | } |
4102 | ||
6c71277b | 4103 | DBG2("Health check return value %" PRIx64, reply.ret_code); |
44a5e5eb DG |
4104 | |
4105 | ret = send_unix_sock(new_sock, (void *) &reply, sizeof(reply)); | |
4106 | if (ret < 0) { | |
4107 | ERR("Failed to send health data back to client"); | |
4108 | } | |
4109 | ||
4110 | /* End of transmission */ | |
4111 | ret = close(new_sock); | |
4112 | if (ret) { | |
4113 | PERROR("close"); | |
4114 | } | |
4115 | new_sock = -1; | |
4116 | } | |
4117 | ||
139ac872 | 4118 | exit: |
44a5e5eb | 4119 | error: |
139ac872 MD |
4120 | if (err) { |
4121 | ERR("Health error occurred in %s", __func__); | |
4122 | } | |
44a5e5eb DG |
4123 | DBG("Health check thread dying"); |
4124 | unlink(health_unix_sock_path); | |
4125 | if (sock >= 0) { | |
4126 | ret = close(sock); | |
4127 | if (ret) { | |
4128 | PERROR("close"); | |
4129 | } | |
4130 | } | |
44a5e5eb DG |
4131 | |
4132 | lttng_poll_clean(&events); | |
4133 | ||
4134 | rcu_unregister_thread(); | |
4135 | return NULL; | |
4136 | } | |
4137 | ||
1d4b027a | 4138 | /* |
d063d709 DG |
4139 | * This thread manage all clients request using the unix client socket for |
4140 | * communication. | |
1d4b027a DG |
4141 | */ |
4142 | static void *thread_manage_clients(void *data) | |
4143 | { | |
139ac872 | 4144 | int sock = -1, ret, i, pollfd, err = -1; |
53a80697 | 4145 | int sock_error; |
5eb91c98 | 4146 | uint32_t revents, nb_fd; |
273ea72c | 4147 | struct command_ctx *cmd_ctx = NULL; |
5eb91c98 | 4148 | struct lttng_poll_event events; |
1d4b027a DG |
4149 | |
4150 | DBG("[thread] Manage client started"); | |
4151 | ||
f6a9efaa DG |
4152 | rcu_register_thread(); |
4153 | ||
6c71277b | 4154 | health_register(health_sessiond, HEALTH_SESSIOND_TYPE_CMD); |
927ca06a | 4155 | |
840cb59c | 4156 | health_code_update(); |
44a5e5eb | 4157 | |
1d4b027a DG |
4158 | ret = lttcomm_listen_unix_sock(client_sock); |
4159 | if (ret < 0) { | |
35df2755 | 4160 | goto error_listen; |
1d4b027a DG |
4161 | } |
4162 | ||
5eb91c98 DG |
4163 | /* |
4164 | * Pass 2 as size here for the thread quit pipe and client_sock. Nothing | |
4165 | * more will be added to this poll set. | |
4166 | */ | |
d0b96690 | 4167 | ret = sessiond_set_thread_pollset(&events, 2); |
5eb91c98 | 4168 | if (ret < 0) { |
35df2755 | 4169 | goto error_create_poll; |
5eb91c98 | 4170 | } |
273ea72c | 4171 | |
5eb91c98 DG |
4172 | /* Add the application registration socket */ |
4173 | ret = lttng_poll_add(&events, client_sock, LPOLLIN | LPOLLPRI); | |
4174 | if (ret < 0) { | |
4175 | goto error; | |
4176 | } | |
273ea72c | 4177 | |
ef367a93 JG |
4178 | sessiond_notify_ready(); |
4179 | ret = sem_post(&load_info->message_thread_ready); | |
4180 | if (ret) { | |
4181 | PERROR("sem_post message_thread_ready"); | |
4182 | goto error; | |
4183 | } | |
0bb7724a | 4184 | |
72453c8c MD |
4185 | /* This testpoint is after we signal readiness to the parent. */ |
4186 | if (testpoint(sessiond_thread_manage_clients)) { | |
4187 | goto error; | |
4188 | } | |
4189 | ||
e547b070 | 4190 | if (testpoint(sessiond_thread_manage_clients_before_loop)) { |
6993eeb3 CB |
4191 | goto error; |
4192 | } | |
8ac94142 | 4193 | |
840cb59c | 4194 | health_code_update(); |
44a5e5eb | 4195 | |
1d4b027a | 4196 | while (1) { |
1d4b027a | 4197 | DBG("Accepting client command ..."); |
273ea72c DG |
4198 | |
4199 | /* Inifinite blocking call, waiting for transmission */ | |
88f2b785 | 4200 | restart: |
a78af745 | 4201 | health_poll_entry(); |
5eb91c98 | 4202 | ret = lttng_poll_wait(&events, -1); |
a78af745 | 4203 | health_poll_exit(); |
273ea72c | 4204 | if (ret < 0) { |
88f2b785 MD |
4205 | /* |
4206 | * Restart interrupted system call. | |
4207 | */ | |
4208 | if (errno == EINTR) { | |
4209 | goto restart; | |
4210 | } | |
273ea72c DG |
4211 | goto error; |
4212 | } | |
4213 | ||
0d9c5d77 DG |
4214 | nb_fd = ret; |
4215 | ||
5eb91c98 DG |
4216 | for (i = 0; i < nb_fd; i++) { |
4217 | /* Fetch once the poll data */ | |
4218 | revents = LTTNG_POLL_GETEV(&events, i); | |
4219 | pollfd = LTTNG_POLL_GETFD(&events, i); | |
4220 | ||
840cb59c | 4221 | health_code_update(); |
44a5e5eb | 4222 | |
fd20dac9 MD |
4223 | if (!revents) { |
4224 | /* No activity for this FD (poll implementation). */ | |
4225 | continue; | |
4226 | } | |
4227 | ||
5eb91c98 | 4228 | /* Thread quit pipe has been closed. Killing thread. */ |
d0b96690 | 4229 | ret = sessiond_check_thread_quit_pipe(pollfd, revents); |
5eb91c98 | 4230 | if (ret) { |
139ac872 MD |
4231 | err = 0; |
4232 | goto exit; | |
5eb91c98 DG |
4233 | } |
4234 | ||
4235 | /* Event on the registration socket */ | |
4236 | if (pollfd == client_sock) { | |
4237 | if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) { | |
4238 | ERR("Client socket poll error"); | |
4239 | goto error; | |
4240 | } | |
4241 | } | |
4242 | } | |
4243 | ||
4244 | DBG("Wait for client response"); | |
4245 | ||
840cb59c | 4246 | health_code_update(); |
44a5e5eb | 4247 | |
5eb91c98 DG |
4248 | sock = lttcomm_accept_unix_sock(client_sock); |
4249 | if (sock < 0) { | |
273ea72c | 4250 | goto error; |
273ea72c DG |
4251 | } |
4252 | ||
b662582b DG |
4253 | /* |
4254 | * Set the CLOEXEC flag. Return code is useless because either way, the | |
4255 | * show must go on. | |
4256 | */ | |
4257 | (void) utils_set_fd_cloexec(sock); | |
4258 | ||
be040666 DG |
4259 | /* Set socket option for credentials retrieval */ |
4260 | ret = lttcomm_setsockopt_creds_unix_sock(sock); | |
4261 | if (ret < 0) { | |
4262 | goto error; | |
4263 | } | |
4264 | ||
5eb91c98 | 4265 | /* Allocate context command to process the client request */ |
ba7f0ae5 | 4266 | cmd_ctx = zmalloc(sizeof(struct command_ctx)); |
5eb91c98 | 4267 | if (cmd_ctx == NULL) { |
76d7553f | 4268 | PERROR("zmalloc cmd_ctx"); |
1d4b027a | 4269 | goto error; |
5eb91c98 | 4270 | } |
1d4b027a | 4271 | |
5eb91c98 | 4272 | /* Allocate data buffer for reception */ |
ba7f0ae5 | 4273 | cmd_ctx->lsm = zmalloc(sizeof(struct lttcomm_session_msg)); |
5eb91c98 | 4274 | if (cmd_ctx->lsm == NULL) { |
76d7553f | 4275 | PERROR("zmalloc cmd_ctx->lsm"); |
5eb91c98 DG |
4276 | goto error; |
4277 | } | |
1d4b027a | 4278 | |
5eb91c98 DG |
4279 | cmd_ctx->llm = NULL; |
4280 | cmd_ctx->session = NULL; | |
1d4b027a | 4281 | |
840cb59c | 4282 | health_code_update(); |
44a5e5eb | 4283 | |
5eb91c98 DG |
4284 | /* |
4285 | * Data is received from the lttng client. The struct | |
4286 | * lttcomm_session_msg (lsm) contains the command and data request of | |
4287 | * the client. | |
4288 | */ | |
4289 | DBG("Receiving data from client ..."); | |
be040666 DG |
4290 | ret = lttcomm_recv_creds_unix_sock(sock, cmd_ctx->lsm, |
4291 | sizeof(struct lttcomm_session_msg), &cmd_ctx->creds); | |
5eb91c98 DG |
4292 | if (ret <= 0) { |
4293 | DBG("Nothing recv() from client... continuing"); | |
76d7553f MD |
4294 | ret = close(sock); |
4295 | if (ret) { | |
4296 | PERROR("close"); | |
4297 | } | |
4298 | sock = -1; | |
a2c0da86 | 4299 | clean_command_ctx(&cmd_ctx); |
5eb91c98 DG |
4300 | continue; |
4301 | } | |
1d4b027a | 4302 | |
840cb59c | 4303 | health_code_update(); |
44a5e5eb | 4304 | |
5eb91c98 DG |
4305 | // TODO: Validate cmd_ctx including sanity check for |
4306 | // security purpose. | |
f7776ea7 | 4307 | |
f6a9efaa | 4308 | rcu_thread_online(); |
5eb91c98 DG |
4309 | /* |
4310 | * This function dispatch the work to the kernel or userspace tracer | |
4311 | * libs and fill the lttcomm_lttng_msg data structure of all the needed | |
4312 | * informations for the client. The command context struct contains | |
4313 | * everything this function may needs. | |
4314 | */ | |
53a80697 | 4315 | ret = process_client_msg(cmd_ctx, sock, &sock_error); |
f6a9efaa | 4316 | rcu_thread_offline(); |
5eb91c98 | 4317 | if (ret < 0) { |
36134aa1 DG |
4318 | ret = close(sock); |
4319 | if (ret) { | |
4320 | PERROR("close"); | |
53a80697 | 4321 | } |
36134aa1 | 4322 | sock = -1; |
bbd973c2 | 4323 | /* |
5eb91c98 | 4324 | * TODO: Inform client somehow of the fatal error. At |
ba7f0ae5 | 4325 | * this point, ret < 0 means that a zmalloc failed |
53a80697 MD |
4326 | * (ENOMEM). Error detected but still accept |
4327 | * command, unless a socket error has been | |
4328 | * detected. | |
bbd973c2 | 4329 | */ |
bbd973c2 | 4330 | clean_command_ctx(&cmd_ctx); |
5eb91c98 DG |
4331 | continue; |
4332 | } | |
d6e4fca4 | 4333 | |
840cb59c | 4334 | health_code_update(); |
44a5e5eb | 4335 | |
54d01ffb DG |
4336 | DBG("Sending response (size: %d, retcode: %s)", |
4337 | cmd_ctx->lttng_msg_size, | |
9a745bc7 | 4338 | lttng_strerror(-cmd_ctx->llm->ret_code)); |
54d01ffb | 4339 | ret = send_unix_sock(sock, cmd_ctx->llm, cmd_ctx->lttng_msg_size); |
5eb91c98 DG |
4340 | if (ret < 0) { |
4341 | ERR("Failed to send data back to client"); | |
bbd973c2 | 4342 | } |
1d4b027a | 4343 | |
5eb91c98 | 4344 | /* End of transmission */ |
76d7553f MD |
4345 | ret = close(sock); |
4346 | if (ret) { | |
4347 | PERROR("close"); | |
4348 | } | |
4349 | sock = -1; | |
be040666 DG |
4350 | |
4351 | clean_command_ctx(&cmd_ctx); | |
44a5e5eb | 4352 | |
840cb59c | 4353 | health_code_update(); |
273ea72c DG |
4354 | } |
4355 | ||
139ac872 | 4356 | exit: |
5eb91c98 | 4357 | error: |
35df2755 CB |
4358 | if (sock >= 0) { |
4359 | ret = close(sock); | |
4360 | if (ret) { | |
4361 | PERROR("close"); | |
4362 | } | |
139ac872 | 4363 | } |
44a5e5eb | 4364 | |
35df2755 CB |
4365 | lttng_poll_clean(&events); |
4366 | clean_command_ctx(&cmd_ctx); | |
4367 | ||
4368 | error_listen: | |
4369 | error_create_poll: | |
273ea72c | 4370 | unlink(client_unix_sock_path); |
76d7553f MD |
4371 | if (client_sock >= 0) { |
4372 | ret = close(client_sock); | |
4373 | if (ret) { | |
4374 | PERROR("close"); | |
4375 | } | |
a4b35e07 | 4376 | } |
35df2755 CB |
4377 | |
4378 | if (err) { | |
840cb59c | 4379 | health_error(); |
35df2755 | 4380 | ERR("Health error occurred in %s", __func__); |
a4b35e07 | 4381 | } |
273ea72c | 4382 | |
8782cc74 | 4383 | health_unregister(health_sessiond); |
35df2755 CB |
4384 | |
4385 | DBG("Client thread dying"); | |
f6a9efaa DG |
4386 | |
4387 | rcu_unregister_thread(); | |
4a15001e MD |
4388 | |
4389 | /* | |
4390 | * Since we are creating the consumer threads, we own them, so we need | |
4391 | * to join them before our thread exits. | |
4392 | */ | |
4393 | ret = join_consumer_thread(&kconsumer_data); | |
4394 | if (ret) { | |
4395 | errno = ret; | |
4396 | PERROR("join_consumer"); | |
4397 | } | |
4398 | ||
4399 | ret = join_consumer_thread(&ustconsumer32_data); | |
4400 | if (ret) { | |
4401 | errno = ret; | |
4402 | PERROR("join_consumer ust32"); | |
4403 | } | |
4404 | ||
4405 | ret = join_consumer_thread(&ustconsumer64_data); | |
4406 | if (ret) { | |
4407 | errno = ret; | |
4408 | PERROR("join_consumer ust64"); | |
4409 | } | |
1d4b027a DG |
4410 | return NULL; |
4411 | } | |
4412 | ||
4413 | ||
fac6795d DG |
4414 | /* |
4415 | * usage function on stderr | |
4416 | */ | |
4417 | static void usage(void) | |
4418 | { | |
b716ce68 | 4419 | fprintf(stderr, "Usage: %s OPTIONS\n\nOptions:\n", progname); |
d6f42150 DG |
4420 | fprintf(stderr, " -h, --help Display this usage.\n"); |
4421 | fprintf(stderr, " -c, --client-sock PATH Specify path for the client unix socket\n"); | |
4422 | fprintf(stderr, " -a, --apps-sock PATH Specify path for apps unix socket\n"); | |
4423 | fprintf(stderr, " --kconsumerd-err-sock PATH Specify path for the kernel consumer error socket\n"); | |
4424 | fprintf(stderr, " --kconsumerd-cmd-sock PATH Specify path for the kernel consumer command socket\n"); | |
7753dea8 MD |
4425 | fprintf(stderr, " --ustconsumerd32-err-sock PATH Specify path for the 32-bit UST consumer error socket\n"); |
4426 | fprintf(stderr, " --ustconsumerd64-err-sock PATH Specify path for the 64-bit UST consumer error socket\n"); | |
4427 | fprintf(stderr, " --ustconsumerd32-cmd-sock PATH Specify path for the 32-bit UST consumer command socket\n"); | |
4428 | fprintf(stderr, " --ustconsumerd64-cmd-sock PATH Specify path for the 64-bit UST consumer command socket\n"); | |
ebaeda94 MD |
4429 | fprintf(stderr, " --consumerd32-path PATH Specify path for the 32-bit UST consumer daemon binary\n"); |
4430 | fprintf(stderr, " --consumerd32-libdir PATH Specify path for the 32-bit UST consumer daemon libraries\n"); | |
4431 | fprintf(stderr, " --consumerd64-path PATH Specify path for the 64-bit UST consumer daemon binary\n"); | |
4432 | fprintf(stderr, " --consumerd64-libdir PATH Specify path for the 64-bit UST consumer daemon libraries\n"); | |
d6f42150 | 4433 | fprintf(stderr, " -d, --daemonize Start as a daemon.\n"); |
72dd7491 | 4434 | fprintf(stderr, " -b, --background Start as a daemon, keeping console open.\n"); |
d6f42150 DG |
4435 | fprintf(stderr, " -g, --group NAME Specify the tracing group name. (default: tracing)\n"); |
4436 | fprintf(stderr, " -V, --version Show version number.\n"); | |
7fe6d2c5 | 4437 | fprintf(stderr, " -S, --sig-parent Send SIGUSR1 to parent pid to notify readiness.\n"); |
d6f42150 DG |
4438 | fprintf(stderr, " -q, --quiet No output at all.\n"); |
4439 | fprintf(stderr, " -v, --verbose Verbose mode. Activate DBG() macro.\n"); | |
35f90c40 | 4440 | fprintf(stderr, " -p, --pidfile FILE Write a pid to FILE name overriding the default value.\n"); |
3bd1e081 | 4441 | fprintf(stderr, " --verbose-consumer Verbose mode for consumer. Activate DBG() macro.\n"); |
4fba7219 | 4442 | fprintf(stderr, " --no-kernel Disable kernel tracer\n"); |
1b2ef7fe | 4443 | fprintf(stderr, " --agent-tcp-port Agent registration TCP port\n"); |
76d01ebb | 4444 | fprintf(stderr, " -f --config PATH Load daemon configuration file\n"); |
ef367a93 | 4445 | fprintf(stderr, " -l --load PATH Load session configuration\n"); |
fbb9748b | 4446 | fprintf(stderr, " --kmod-probes Specify kernel module probes to load\n"); |
c9d42407 | 4447 | fprintf(stderr, " --extra-kmod-probes Specify extra kernel module probes to load\n"); |
fac6795d DG |
4448 | } |
4449 | ||
c0232ea5 JG |
4450 | static int string_match(const char *str1, const char *str2) |
4451 | { | |
4452 | return (str1 && str2) && !strcmp(str1, str2); | |
4453 | } | |
4454 | ||
fac6795d | 4455 | /* |
26296c48 JG |
4456 | * Take an option from the getopt output and set it in the right variable to be |
4457 | * used later. | |
4458 | * | |
4459 | * Return 0 on success else a negative value. | |
fac6795d | 4460 | */ |
26296c48 | 4461 | static int set_option(int opt, const char *arg, const char *optname) |
fac6795d | 4462 | { |
26296c48 | 4463 | int ret = 0; |
fac6795d | 4464 | |
c5d350b2 JG |
4465 | if (arg && arg[0] == '\0') { |
4466 | /* | |
4467 | * This only happens if the value is read from daemon config | |
4468 | * file. This means the option requires an argument and the | |
4469 | * configuration file contains a line such as: | |
4470 | * my_option = | |
4471 | */ | |
4472 | ret = -EINVAL; | |
4473 | goto end; | |
4474 | } | |
4475 | ||
c0232ea5 | 4476 | if (string_match(optname, "client-sock") || opt == 'c') { |
e8fa9fb0 MD |
4477 | if (lttng_is_setuid_setgid()) { |
4478 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
4479 | "-c, --client-sock"); | |
4480 | } else { | |
4481 | snprintf(client_unix_sock_path, PATH_MAX, "%s", arg); | |
4482 | } | |
c0232ea5 | 4483 | } else if (string_match(optname, "apps-sock") || opt == 'a') { |
e8fa9fb0 MD |
4484 | if (lttng_is_setuid_setgid()) { |
4485 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
4486 | "-a, --apps-sock"); | |
4487 | } else { | |
4488 | snprintf(apps_unix_sock_path, PATH_MAX, "%s", arg); | |
4489 | } | |
c0232ea5 | 4490 | } else if (string_match(optname, "daemonize") || opt == 'd') { |
26296c48 | 4491 | opt_daemon = 1; |
c0232ea5 | 4492 | } else if (string_match(optname, "background") || opt == 'b') { |
72dd7491 | 4493 | opt_background = 1; |
c0232ea5 | 4494 | } else if (string_match(optname, "group") || opt == 'g') { |
e8fa9fb0 MD |
4495 | if (lttng_is_setuid_setgid()) { |
4496 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
4497 | "-g, --group"); | |
4498 | } else { | |
4499 | /* | |
4500 | * If the override option is set, the pointer points to a | |
4501 | * *non* const thus freeing it even though the variable type is | |
4502 | * set to const. | |
4503 | */ | |
4504 | if (tracing_group_name_override) { | |
4505 | free((void *) tracing_group_name); | |
4506 | } | |
4507 | tracing_group_name = strdup(arg); | |
4508 | if (!tracing_group_name) { | |
4509 | PERROR("strdup"); | |
4510 | ret = -ENOMEM; | |
4511 | } | |
4512 | tracing_group_name_override = 1; | |
db322c4d | 4513 | } |
c0232ea5 | 4514 | } else if (string_match(optname, "help") || opt == 'h') { |
26296c48 | 4515 | usage(); |
4a15001e | 4516 | exit(EXIT_SUCCESS); |
c0232ea5 | 4517 | } else if (string_match(optname, "version") || opt == 'V') { |
26296c48 JG |
4518 | fprintf(stdout, "%s\n", VERSION); |
4519 | exit(EXIT_SUCCESS); | |
c0232ea5 | 4520 | } else if (string_match(optname, "sig-parent") || opt == 'S') { |
26296c48 | 4521 | opt_sig_parent = 1; |
c0232ea5 | 4522 | } else if (string_match(optname, "kconsumerd-err-sock")) { |
e8fa9fb0 MD |
4523 | if (lttng_is_setuid_setgid()) { |
4524 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
4525 | "--kconsumerd-err-sock"); | |
4526 | } else { | |
4527 | snprintf(kconsumer_data.err_unix_sock_path, PATH_MAX, "%s", arg); | |
4528 | } | |
c0232ea5 | 4529 | } else if (string_match(optname, "kconsumerd-cmd-sock")) { |
e8fa9fb0 MD |
4530 | if (lttng_is_setuid_setgid()) { |
4531 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
4532 | "--kconsumerd-cmd-sock"); | |
4533 | } else { | |
4534 | snprintf(kconsumer_data.cmd_unix_sock_path, PATH_MAX, "%s", arg); | |
4535 | } | |
c0232ea5 | 4536 | } else if (string_match(optname, "ustconsumerd64-err-sock")) { |
e8fa9fb0 MD |
4537 | if (lttng_is_setuid_setgid()) { |
4538 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
4539 | "--ustconsumerd64-err-sock"); | |
4540 | } else { | |
4541 | snprintf(ustconsumer64_data.err_unix_sock_path, PATH_MAX, "%s", arg); | |
4542 | } | |
c0232ea5 | 4543 | } else if (string_match(optname, "ustconsumerd64-cmd-sock")) { |
e8fa9fb0 MD |
4544 | if (lttng_is_setuid_setgid()) { |
4545 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
4546 | "--ustconsumerd64-cmd-sock"); | |
4547 | } else { | |
4548 | snprintf(ustconsumer64_data.cmd_unix_sock_path, PATH_MAX, "%s", arg); | |
4549 | } | |
c0232ea5 | 4550 | } else if (string_match(optname, "ustconsumerd32-err-sock")) { |
e8fa9fb0 MD |
4551 | if (lttng_is_setuid_setgid()) { |
4552 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
4553 | "--ustconsumerd32-err-sock"); | |
4554 | } else { | |
4555 | snprintf(ustconsumer32_data.err_unix_sock_path, PATH_MAX, "%s", arg); | |
4556 | } | |
c0232ea5 | 4557 | } else if (string_match(optname, "ustconsumerd32-cmd-sock")) { |
e8fa9fb0 MD |
4558 | if (lttng_is_setuid_setgid()) { |
4559 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
4560 | "--ustconsumerd32-cmd-sock"); | |
4561 | } else { | |
4562 | snprintf(ustconsumer32_data.cmd_unix_sock_path, PATH_MAX, "%s", arg); | |
4563 | } | |
c0232ea5 | 4564 | } else if (string_match(optname, "no-kernel")) { |
26296c48 | 4565 | opt_no_kernel = 1; |
c0232ea5 | 4566 | } else if (string_match(optname, "quiet") || opt == 'q') { |
26296c48 | 4567 | lttng_opt_quiet = 1; |
c0232ea5 | 4568 | } else if (string_match(optname, "verbose") || opt == 'v') { |
26296c48 JG |
4569 | /* Verbose level can increase using multiple -v */ |
4570 | if (arg) { | |
13755a18 | 4571 | /* Value obtained from config file */ |
26296c48 JG |
4572 | lttng_opt_verbose = config_parse_value(arg); |
4573 | } else { | |
13755a18 JG |
4574 | /* -v used on command line */ |
4575 | lttng_opt_verbose++; | |
26296c48 | 4576 | } |
13755a18 JG |
4577 | /* Clamp value to [0, 3] */ |
4578 | lttng_opt_verbose = lttng_opt_verbose < 0 ? 0 : | |
4579 | (lttng_opt_verbose <= 3 ? lttng_opt_verbose : 3); | |
c0232ea5 | 4580 | } else if (string_match(optname, "verbose-consumer")) { |
26296c48 JG |
4581 | if (arg) { |
4582 | opt_verbose_consumer = config_parse_value(arg); | |
4583 | } else { | |
3bd1e081 | 4584 | opt_verbose_consumer += 1; |
26296c48 | 4585 | } |
c0232ea5 | 4586 | } else if (string_match(optname, "consumerd32-path")) { |
e8fa9fb0 MD |
4587 | if (lttng_is_setuid_setgid()) { |
4588 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
4589 | "--consumerd32-path"); | |
4590 | } else { | |
4591 | if (consumerd32_bin_override) { | |
4592 | free((void *) consumerd32_bin); | |
4593 | } | |
4594 | consumerd32_bin = strdup(arg); | |
4595 | if (!consumerd32_bin) { | |
4596 | PERROR("strdup"); | |
4597 | ret = -ENOMEM; | |
4598 | } | |
4599 | consumerd32_bin_override = 1; | |
db322c4d | 4600 | } |
c0232ea5 | 4601 | } else if (string_match(optname, "consumerd32-libdir")) { |
e8fa9fb0 MD |
4602 | if (lttng_is_setuid_setgid()) { |
4603 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
4604 | "--consumerd32-libdir"); | |
4605 | } else { | |
4606 | if (consumerd32_libdir_override) { | |
4607 | free((void *) consumerd32_libdir); | |
4608 | } | |
4609 | consumerd32_libdir = strdup(arg); | |
4610 | if (!consumerd32_libdir) { | |
4611 | PERROR("strdup"); | |
4612 | ret = -ENOMEM; | |
4613 | } | |
4614 | consumerd32_libdir_override = 1; | |
db322c4d | 4615 | } |
c0232ea5 | 4616 | } else if (string_match(optname, "consumerd64-path")) { |
e8fa9fb0 MD |
4617 | if (lttng_is_setuid_setgid()) { |
4618 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
4619 | "--consumerd64-path"); | |
4620 | } else { | |
4621 | if (consumerd64_bin_override) { | |
4622 | free((void *) consumerd64_bin); | |
4623 | } | |
4624 | consumerd64_bin = strdup(arg); | |
4625 | if (!consumerd64_bin) { | |
4626 | PERROR("strdup"); | |
4627 | ret = -ENOMEM; | |
4628 | } | |
4629 | consumerd64_bin_override = 1; | |
db322c4d | 4630 | } |
c0232ea5 | 4631 | } else if (string_match(optname, "consumerd64-libdir")) { |
e8fa9fb0 MD |
4632 | if (lttng_is_setuid_setgid()) { |
4633 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
4634 | "--consumerd64-libdir"); | |
4635 | } else { | |
4636 | if (consumerd64_libdir_override) { | |
4637 | free((void *) consumerd64_libdir); | |
4638 | } | |
4639 | consumerd64_libdir = strdup(arg); | |
4640 | if (!consumerd64_libdir) { | |
4641 | PERROR("strdup"); | |
4642 | ret = -ENOMEM; | |
4643 | } | |
4644 | consumerd64_libdir_override = 1; | |
db322c4d | 4645 | } |
c0232ea5 | 4646 | } else if (string_match(optname, "pidfile") || opt == 'p') { |
e8fa9fb0 MD |
4647 | if (lttng_is_setuid_setgid()) { |
4648 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
4649 | "-p, --pidfile"); | |
4650 | } else { | |
4651 | free(opt_pidfile); | |
4652 | opt_pidfile = strdup(arg); | |
4653 | if (!opt_pidfile) { | |
4654 | PERROR("strdup"); | |
4655 | ret = -ENOMEM; | |
4656 | } | |
db322c4d | 4657 | } |
c0232ea5 | 4658 | } else if (string_match(optname, "agent-tcp-port")) { |
e8fa9fb0 MD |
4659 | if (lttng_is_setuid_setgid()) { |
4660 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
4661 | "--agent-tcp-port"); | |
4662 | } else { | |
4663 | unsigned long v; | |
4d076222 | 4664 | |
e04aa23e JG |
4665 | if (!arg) { |
4666 | ret = -EINVAL; | |
4667 | goto end; | |
4668 | } | |
e8fa9fb0 MD |
4669 | errno = 0; |
4670 | v = strtoul(arg, NULL, 0); | |
4671 | if (errno != 0 || !isdigit(arg[0])) { | |
4672 | ERR("Wrong value in --agent-tcp-port parameter: %s", arg); | |
4673 | return -1; | |
4674 | } | |
4675 | if (v == 0 || v >= 65535) { | |
4676 | ERR("Port overflow in --agent-tcp-port parameter: %s", arg); | |
4677 | return -1; | |
4678 | } | |
4679 | agent_tcp_port = (uint32_t) v; | |
4680 | DBG3("Agent TCP port set to non default: %u", agent_tcp_port); | |
26296c48 | 4681 | } |
c0232ea5 | 4682 | } else if (string_match(optname, "load") || opt == 'l') { |
e8fa9fb0 MD |
4683 | if (lttng_is_setuid_setgid()) { |
4684 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
4685 | "-l, --load"); | |
4686 | } else { | |
4687 | free(opt_load_session_path); | |
4688 | opt_load_session_path = strdup(arg); | |
4689 | if (!opt_load_session_path) { | |
4690 | PERROR("strdup"); | |
4691 | ret = -ENOMEM; | |
4692 | } | |
ef367a93 | 4693 | } |
c0232ea5 | 4694 | } else if (string_match(optname, "kmod-probes")) { |
e8fa9fb0 MD |
4695 | if (lttng_is_setuid_setgid()) { |
4696 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
4697 | "--kmod-probes"); | |
4698 | } else { | |
4699 | free(kmod_probes_list); | |
4700 | kmod_probes_list = strdup(arg); | |
4701 | if (!kmod_probes_list) { | |
4702 | PERROR("strdup"); | |
4703 | ret = -ENOMEM; | |
4704 | } | |
c9d42407 | 4705 | } |
c0232ea5 | 4706 | } else if (string_match(optname, "extra-kmod-probes")) { |
e8fa9fb0 MD |
4707 | if (lttng_is_setuid_setgid()) { |
4708 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
4709 | "--extra-kmod-probes"); | |
4710 | } else { | |
4711 | free(kmod_extra_probes_list); | |
4712 | kmod_extra_probes_list = strdup(arg); | |
4713 | if (!kmod_extra_probes_list) { | |
4714 | PERROR("strdup"); | |
4715 | ret = -ENOMEM; | |
4716 | } | |
db322c4d | 4717 | } |
c0232ea5 JG |
4718 | } else if (string_match(optname, "config") || opt == 'f') { |
4719 | /* This is handled in set_options() thus silent skip. */ | |
4720 | goto end; | |
4721 | } else { | |
26296c48 JG |
4722 | /* Unknown option or other error. |
4723 | * Error is printed by getopt, just return */ | |
4724 | ret = -1; | |
4725 | } | |
4726 | ||
f3dd7ce7 | 4727 | end: |
c5d350b2 JG |
4728 | if (ret == -EINVAL) { |
4729 | const char *opt_name = "unknown"; | |
4730 | int i; | |
4731 | ||
4732 | for (i = 0; i < sizeof(long_options) / sizeof(struct option); | |
4733 | i++) { | |
4734 | if (opt == long_options[i].val) { | |
4735 | opt_name = long_options[i].name; | |
4736 | break; | |
4737 | } | |
4738 | } | |
4739 | ||
4740 | WARN("Invalid argument provided for option \"%s\", using default value.", | |
4741 | opt_name); | |
4742 | } | |
f3dd7ce7 | 4743 | |
26296c48 JG |
4744 | return ret; |
4745 | } | |
4746 | ||
4747 | /* | |
4748 | * config_entry_handler_cb used to handle options read from a config file. | |
4749 | * See config_entry_handler_cb comment in common/config/config.h for the | |
4750 | * return value conventions. | |
4751 | */ | |
4752 | static int config_entry_handler(const struct config_entry *entry, void *unused) | |
4753 | { | |
4754 | int ret = 0, i; | |
4755 | ||
4756 | if (!entry || !entry->name || !entry->value) { | |
4757 | ret = -EINVAL; | |
4758 | goto end; | |
4759 | } | |
4760 | ||
4761 | /* Check if the option is to be ignored */ | |
4762 | for (i = 0; i < sizeof(config_ignore_options) / sizeof(char *); i++) { | |
4763 | if (!strcmp(entry->name, config_ignore_options[i])) { | |
4764 | goto end; | |
4765 | } | |
4766 | } | |
4767 | ||
4768 | for (i = 0; i < (sizeof(long_options) / sizeof(struct option)) - 1; | |
4769 | i++) { | |
4770 | ||
4771 | /* Ignore if not fully matched. */ | |
4772 | if (strcmp(entry->name, long_options[i].name)) { | |
4773 | continue; | |
4774 | } | |
4775 | ||
4776 | /* | |
4777 | * If the option takes no argument on the command line, we have to | |
4778 | * check if the value is "true". We support non-zero numeric values, | |
4779 | * true, on and yes. | |
4780 | */ | |
4781 | if (!long_options[i].has_arg) { | |
4782 | ret = config_parse_value(entry->value); | |
4783 | if (ret <= 0) { | |
4784 | if (ret) { | |
4785 | WARN("Invalid configuration value \"%s\" for option %s", | |
4786 | entry->value, entry->name); | |
4787 | } | |
4788 | /* False, skip boolean config option. */ | |
4789 | goto end; | |
4d076222 | 4790 | } |
26296c48 JG |
4791 | } |
4792 | ||
4793 | ret = set_option(long_options[i].val, entry->value, entry->name); | |
4794 | goto end; | |
4795 | } | |
4796 | ||
4797 | WARN("Unrecognized option \"%s\" in daemon configuration file.", entry->name); | |
4798 | ||
4799 | end: | |
4800 | return ret; | |
4801 | } | |
4802 | ||
4803 | /* | |
4804 | * daemon configuration loading and argument parsing | |
4805 | */ | |
4806 | static int set_options(int argc, char **argv) | |
4807 | { | |
4808 | int ret = 0, c = 0, option_index = 0; | |
4809 | int orig_optopt = optopt, orig_optind = optind; | |
4810 | char *optstring; | |
4811 | const char *config_path = NULL; | |
4812 | ||
4813 | optstring = utils_generate_optstring(long_options, | |
4814 | sizeof(long_options) / sizeof(struct option)); | |
4815 | if (!optstring) { | |
4816 | ret = -ENOMEM; | |
4817 | goto end; | |
4818 | } | |
4819 | ||
4820 | /* Check for the --config option */ | |
4821 | while ((c = getopt_long(argc, argv, optstring, long_options, | |
4822 | &option_index)) != -1) { | |
4823 | if (c == '?') { | |
4824 | ret = -EINVAL; | |
4825 | goto end; | |
4826 | } else if (c != 'f') { | |
4827 | /* if not equal to --config option. */ | |
4828 | continue; | |
4829 | } | |
4830 | ||
e8fa9fb0 MD |
4831 | if (lttng_is_setuid_setgid()) { |
4832 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
4833 | "-f, --config"); | |
4834 | } else { | |
4835 | config_path = utils_expand_path(optarg); | |
4836 | if (!config_path) { | |
4837 | ERR("Failed to resolve path: %s", optarg); | |
4838 | } | |
26296c48 JG |
4839 | } |
4840 | } | |
4841 | ||
4842 | ret = config_get_section_entries(config_path, config_section_name, | |
4843 | config_entry_handler, NULL); | |
4844 | if (ret) { | |
4845 | if (ret > 0) { | |
4846 | ERR("Invalid configuration option at line %i", ret); | |
4847 | ret = -1; | |
4848 | } | |
4849 | goto end; | |
4850 | } | |
4851 | ||
4852 | /* Reset getopt's global state */ | |
4853 | optopt = orig_optopt; | |
4854 | optind = orig_optind; | |
4855 | while (1) { | |
c0232ea5 JG |
4856 | option_index = -1; |
4857 | /* | |
4858 | * getopt_long() will not set option_index if it encounters a | |
4859 | * short option. | |
4860 | */ | |
4861 | c = getopt_long(argc, argv, optstring, long_options, | |
4862 | &option_index); | |
26296c48 | 4863 | if (c == -1) { |
4d076222 DG |
4864 | break; |
4865 | } | |
26296c48 | 4866 | |
c0232ea5 JG |
4867 | /* |
4868 | * Pass NULL as the long option name if popt left the index | |
4869 | * unset. | |
4870 | */ | |
4871 | ret = set_option(c, optarg, | |
4872 | option_index < 0 ? NULL : | |
4873 | long_options[option_index].name); | |
26296c48 JG |
4874 | if (ret < 0) { |
4875 | break; | |
fac6795d DG |
4876 | } |
4877 | } | |
4878 | ||
26296c48 JG |
4879 | end: |
4880 | free(optstring); | |
4881 | return ret; | |
fac6795d DG |
4882 | } |
4883 | ||
4884 | /* | |
d063d709 | 4885 | * Creates the two needed socket by the daemon. |
d6f42150 DG |
4886 | * apps_sock - The communication socket for all UST apps. |
4887 | * client_sock - The communication of the cli tool (lttng). | |
fac6795d | 4888 | */ |
cf3af59e | 4889 | static int init_daemon_socket(void) |
fac6795d DG |
4890 | { |
4891 | int ret = 0; | |
4892 | mode_t old_umask; | |
4893 | ||
4894 | old_umask = umask(0); | |
4895 | ||
4896 | /* Create client tool unix socket */ | |
d6f42150 DG |
4897 | client_sock = lttcomm_create_unix_sock(client_unix_sock_path); |
4898 | if (client_sock < 0) { | |
4899 | ERR("Create unix sock failed: %s", client_unix_sock_path); | |
fac6795d DG |
4900 | ret = -1; |
4901 | goto end; | |
4902 | } | |
4903 | ||
b662582b DG |
4904 | /* Set the cloexec flag */ |
4905 | ret = utils_set_fd_cloexec(client_sock); | |
4906 | if (ret < 0) { | |
4907 | ERR("Unable to set CLOEXEC flag to the client Unix socket (fd: %d). " | |
4908 | "Continuing but note that the consumer daemon will have a " | |
4909 | "reference to this socket on exec()", client_sock); | |
4910 | } | |
4911 | ||
fac6795d DG |
4912 | /* File permission MUST be 660 */ |
4913 | ret = chmod(client_unix_sock_path, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP); | |
4914 | if (ret < 0) { | |
d6f42150 | 4915 | ERR("Set file permissions failed: %s", client_unix_sock_path); |
76d7553f | 4916 | PERROR("chmod"); |
fac6795d DG |
4917 | goto end; |
4918 | } | |
4919 | ||
4920 | /* Create the application unix socket */ | |
d6f42150 DG |
4921 | apps_sock = lttcomm_create_unix_sock(apps_unix_sock_path); |
4922 | if (apps_sock < 0) { | |
4923 | ERR("Create unix sock failed: %s", apps_unix_sock_path); | |
fac6795d DG |
4924 | ret = -1; |
4925 | goto end; | |
4926 | } | |
4927 | ||
b662582b DG |
4928 | /* Set the cloexec flag */ |
4929 | ret = utils_set_fd_cloexec(apps_sock); | |
4930 | if (ret < 0) { | |
4931 | ERR("Unable to set CLOEXEC flag to the app Unix socket (fd: %d). " | |
4932 | "Continuing but note that the consumer daemon will have a " | |
4933 | "reference to this socket on exec()", apps_sock); | |
4934 | } | |
4935 | ||
d6f42150 | 4936 | /* File permission MUST be 666 */ |
54d01ffb DG |
4937 | ret = chmod(apps_unix_sock_path, |
4938 | S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH); | |
fac6795d | 4939 | if (ret < 0) { |
d6f42150 | 4940 | ERR("Set file permissions failed: %s", apps_unix_sock_path); |
76d7553f | 4941 | PERROR("chmod"); |
fac6795d DG |
4942 | goto end; |
4943 | } | |
4944 | ||
b662582b DG |
4945 | DBG3("Session daemon client socket %d and application socket %d created", |
4946 | client_sock, apps_sock); | |
4947 | ||
fac6795d DG |
4948 | end: |
4949 | umask(old_umask); | |
4950 | return ret; | |
4951 | } | |
4952 | ||
4953 | /* | |
54d01ffb DG |
4954 | * Check if the global socket is available, and if a daemon is answering at the |
4955 | * other side. If yes, error is returned. | |
fac6795d | 4956 | */ |
cf3af59e | 4957 | static int check_existing_daemon(void) |
fac6795d | 4958 | { |
7d8234d9 | 4959 | /* Is there anybody out there ? */ |
099e26bd | 4960 | if (lttng_session_daemon_alive()) { |
7d8234d9 | 4961 | return -EEXIST; |
099e26bd | 4962 | } |
b09c7c76 DG |
4963 | |
4964 | return 0; | |
fac6795d DG |
4965 | } |
4966 | ||
fac6795d | 4967 | /* |
d063d709 | 4968 | * Set the tracing group gid onto the client socket. |
5e16da05 | 4969 | * |
d063d709 | 4970 | * Race window between mkdir and chown is OK because we are going from more |
d1613cf5 | 4971 | * permissive (root.root) to less permissive (root.tracing). |
fac6795d | 4972 | */ |
be040666 | 4973 | static int set_permissions(char *rundir) |
fac6795d DG |
4974 | { |
4975 | int ret; | |
996b65c8 | 4976 | gid_t gid; |
fac6795d | 4977 | |
6c71277b | 4978 | gid = utils_get_group_id(tracing_group_name); |
fac6795d | 4979 | |
d6f42150 | 4980 | /* Set lttng run dir */ |
be040666 | 4981 | ret = chown(rundir, 0, gid); |
d6f42150 | 4982 | if (ret < 0) { |
be040666 | 4983 | ERR("Unable to set group on %s", rundir); |
76d7553f | 4984 | PERROR("chown"); |
d6f42150 DG |
4985 | } |
4986 | ||
6c71277b MD |
4987 | /* |
4988 | * Ensure all applications and tracing group can search the run | |
4989 | * dir. Allow everyone to read the directory, since it does not | |
4990 | * buy us anything to hide its content. | |
4991 | */ | |
4992 | ret = chmod(rundir, S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH); | |
d1613cf5 JN |
4993 | if (ret < 0) { |
4994 | ERR("Unable to set permissions on %s", rundir); | |
76d7553f | 4995 | PERROR("chmod"); |
d1613cf5 JN |
4996 | } |
4997 | ||
d6f42150 | 4998 | /* lttng client socket path */ |
996b65c8 | 4999 | ret = chown(client_unix_sock_path, 0, gid); |
fac6795d | 5000 | if (ret < 0) { |
d6f42150 | 5001 | ERR("Unable to set group on %s", client_unix_sock_path); |
76d7553f | 5002 | PERROR("chown"); |
d6f42150 DG |
5003 | } |
5004 | ||
3bd1e081 | 5005 | /* kconsumer error socket path */ |
6c71277b | 5006 | ret = chown(kconsumer_data.err_unix_sock_path, 0, 0); |
d6f42150 | 5007 | if (ret < 0) { |
3bd1e081 | 5008 | ERR("Unable to set group on %s", kconsumer_data.err_unix_sock_path); |
76d7553f | 5009 | PERROR("chown"); |
3bd1e081 MD |
5010 | } |
5011 | ||
7753dea8 | 5012 | /* 64-bit ustconsumer error socket path */ |
6c71277b | 5013 | ret = chown(ustconsumer64_data.err_unix_sock_path, 0, 0); |
7753dea8 MD |
5014 | if (ret < 0) { |
5015 | ERR("Unable to set group on %s", ustconsumer64_data.err_unix_sock_path); | |
76d7553f | 5016 | PERROR("chown"); |
7753dea8 MD |
5017 | } |
5018 | ||
5019 | /* 32-bit ustconsumer compat32 error socket path */ | |
6c71277b | 5020 | ret = chown(ustconsumer32_data.err_unix_sock_path, 0, 0); |
3bd1e081 | 5021 | if (ret < 0) { |
7753dea8 | 5022 | ERR("Unable to set group on %s", ustconsumer32_data.err_unix_sock_path); |
76d7553f | 5023 | PERROR("chown"); |
fac6795d DG |
5024 | } |
5025 | ||
d6f42150 | 5026 | DBG("All permissions are set"); |
e07ae692 | 5027 | |
fac6795d DG |
5028 | return ret; |
5029 | } | |
5030 | ||
d6f42150 | 5031 | /* |
d063d709 | 5032 | * Create the lttng run directory needed for all global sockets and pipe. |
d6f42150 | 5033 | */ |
67e40797 | 5034 | static int create_lttng_rundir(const char *rundir) |
d6f42150 DG |
5035 | { |
5036 | int ret; | |
5037 | ||
67e40797 DG |
5038 | DBG3("Creating LTTng run directory: %s", rundir); |
5039 | ||
d1613cf5 | 5040 | ret = mkdir(rundir, S_IRWXU); |
d6f42150 | 5041 | if (ret < 0) { |
b1f11e69 | 5042 | if (errno != EEXIST) { |
67e40797 | 5043 | ERR("Unable to create %s", rundir); |
b1f11e69 DG |
5044 | goto error; |
5045 | } else { | |
5046 | ret = 0; | |
5047 | } | |
d6f42150 DG |
5048 | } |
5049 | ||
5050 | error: | |
5051 | return ret; | |
5052 | } | |
5053 | ||
5054 | /* | |
d063d709 DG |
5055 | * Setup sockets and directory needed by the kconsumerd communication with the |
5056 | * session daemon. | |
d6f42150 | 5057 | */ |
67e40797 DG |
5058 | static int set_consumer_sockets(struct consumer_data *consumer_data, |
5059 | const char *rundir) | |
d6f42150 DG |
5060 | { |
5061 | int ret; | |
67e40797 | 5062 | char path[PATH_MAX]; |
d6f42150 | 5063 | |
6c71277b | 5064 | switch (consumer_data->type) { |
7753dea8 | 5065 | case LTTNG_CONSUMER_KERNEL: |
60922cb0 | 5066 | snprintf(path, PATH_MAX, DEFAULT_KCONSUMERD_PATH, rundir); |
7753dea8 MD |
5067 | break; |
5068 | case LTTNG_CONSUMER64_UST: | |
60922cb0 | 5069 | snprintf(path, PATH_MAX, DEFAULT_USTCONSUMERD64_PATH, rundir); |
7753dea8 MD |
5070 | break; |
5071 | case LTTNG_CONSUMER32_UST: | |
60922cb0 | 5072 | snprintf(path, PATH_MAX, DEFAULT_USTCONSUMERD32_PATH, rundir); |
7753dea8 MD |
5073 | break; |
5074 | default: | |
5075 | ERR("Consumer type unknown"); | |
5076 | ret = -EINVAL; | |
5077 | goto error; | |
d6f42150 DG |
5078 | } |
5079 | ||
67e40797 DG |
5080 | DBG2("Creating consumer directory: %s", path); |
5081 | ||
6c71277b | 5082 | ret = mkdir(path, S_IRWXU | S_IRGRP | S_IXGRP); |
d6f42150 | 5083 | if (ret < 0) { |
6beb2242 | 5084 | if (errno != EEXIST) { |
f11e84c2 | 5085 | PERROR("mkdir"); |
3bd1e081 | 5086 | ERR("Failed to create %s", path); |
6beb2242 DG |
5087 | goto error; |
5088 | } | |
f11e84c2 | 5089 | ret = -1; |
d6f42150 | 5090 | } |
6c71277b MD |
5091 | if (is_root) { |
5092 | ret = chown(path, 0, utils_get_group_id(tracing_group_name)); | |
5093 | if (ret < 0) { | |
5094 | ERR("Unable to set group on %s", path); | |
5095 | PERROR("chown"); | |
5096 | goto error; | |
5097 | } | |
5098 | } | |
d6f42150 DG |
5099 | |
5100 | /* Create the kconsumerd error unix socket */ | |
3bd1e081 MD |
5101 | consumer_data->err_sock = |
5102 | lttcomm_create_unix_sock(consumer_data->err_unix_sock_path); | |
5103 | if (consumer_data->err_sock < 0) { | |
5104 | ERR("Create unix sock failed: %s", consumer_data->err_unix_sock_path); | |
d6f42150 DG |
5105 | ret = -1; |
5106 | goto error; | |
5107 | } | |
5108 | ||
a24f05ab MD |
5109 | /* |
5110 | * Set the CLOEXEC flag. Return code is useless because either way, the | |
5111 | * show must go on. | |
5112 | */ | |
5113 | ret = utils_set_fd_cloexec(consumer_data->err_sock); | |
5114 | if (ret < 0) { | |
5115 | PERROR("utils_set_fd_cloexec"); | |
5116 | /* continue anyway */ | |
5117 | } | |
5118 | ||
d6f42150 | 5119 | /* File permission MUST be 660 */ |
3bd1e081 | 5120 | ret = chmod(consumer_data->err_unix_sock_path, |
54d01ffb | 5121 | S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP); |
d6f42150 | 5122 | if (ret < 0) { |
3bd1e081 | 5123 | ERR("Set file permissions failed: %s", consumer_data->err_unix_sock_path); |
67e40797 | 5124 | PERROR("chmod"); |
d6f42150 DG |
5125 | goto error; |
5126 | } | |
5127 | ||
5128 | error: | |
5129 | return ret; | |
5130 | } | |
5131 | ||
fac6795d | 5132 | /* |
d063d709 | 5133 | * Signal handler for the daemon |
cf3af59e | 5134 | * |
54d01ffb DG |
5135 | * Simply stop all worker threads, leaving main() return gracefully after |
5136 | * joining all threads and calling cleanup(). | |
fac6795d DG |
5137 | */ |
5138 | static void sighandler(int sig) | |
5139 | { | |
5140 | switch (sig) { | |
cf3af59e | 5141 | case SIGPIPE: |
af87c45a | 5142 | DBG("SIGPIPE caught"); |
cf3af59e MD |
5143 | return; |
5144 | case SIGINT: | |
af87c45a | 5145 | DBG("SIGINT caught"); |
cf3af59e MD |
5146 | stop_threads(); |
5147 | break; | |
5148 | case SIGTERM: | |
af87c45a | 5149 | DBG("SIGTERM caught"); |
cf3af59e MD |
5150 | stop_threads(); |
5151 | break; | |
0bb7724a DG |
5152 | case SIGUSR1: |
5153 | CMM_STORE_SHARED(recv_child_signal, 1); | |
5154 | break; | |
cf3af59e MD |
5155 | default: |
5156 | break; | |
fac6795d | 5157 | } |
fac6795d DG |
5158 | } |
5159 | ||
5160 | /* | |
d063d709 | 5161 | * Setup signal handler for : |
1d4b027a | 5162 | * SIGINT, SIGTERM, SIGPIPE |
fac6795d | 5163 | */ |
1d4b027a | 5164 | static int set_signal_handler(void) |
fac6795d | 5165 | { |
1d4b027a DG |
5166 | int ret = 0; |
5167 | struct sigaction sa; | |
5168 | sigset_t sigset; | |
fac6795d | 5169 | |
1d4b027a | 5170 | if ((ret = sigemptyset(&sigset)) < 0) { |
76d7553f | 5171 | PERROR("sigemptyset"); |
1d4b027a DG |
5172 | return ret; |
5173 | } | |
d6f42150 | 5174 | |
1d4b027a DG |
5175 | sa.sa_handler = sighandler; |
5176 | sa.sa_mask = sigset; | |
5177 | sa.sa_flags = 0; | |
5178 | if ((ret = sigaction(SIGTERM, &sa, NULL)) < 0) { | |
76d7553f | 5179 | PERROR("sigaction"); |
1d4b027a | 5180 | return ret; |
d6f42150 DG |
5181 | } |
5182 | ||
1d4b027a | 5183 | if ((ret = sigaction(SIGINT, &sa, NULL)) < 0) { |
76d7553f | 5184 | PERROR("sigaction"); |
1d4b027a | 5185 | return ret; |
d6f42150 | 5186 | } |
aaf26714 | 5187 | |
1d4b027a | 5188 | if ((ret = sigaction(SIGPIPE, &sa, NULL)) < 0) { |
76d7553f | 5189 | PERROR("sigaction"); |
1d4b027a | 5190 | return ret; |
8c0faa1d DG |
5191 | } |
5192 | ||
0bb7724a DG |
5193 | if ((ret = sigaction(SIGUSR1, &sa, NULL)) < 0) { |
5194 | PERROR("sigaction"); | |
5195 | return ret; | |
5196 | } | |
5197 | ||
5198 | DBG("Signal handler set for SIGTERM, SIGUSR1, SIGPIPE and SIGINT"); | |
1d4b027a DG |
5199 | |
5200 | return ret; | |
fac6795d DG |
5201 | } |
5202 | ||
f3ed775e | 5203 | /* |
d063d709 DG |
5204 | * Set open files limit to unlimited. This daemon can open a large number of |
5205 | * file descriptors in order to consumer multiple kernel traces. | |
f3ed775e DG |
5206 | */ |
5207 | static void set_ulimit(void) | |
5208 | { | |
5209 | int ret; | |
5210 | struct rlimit lim; | |
5211 | ||
a88df331 | 5212 | /* The kernel does not allowed an infinite limit for open files */ |
f3ed775e DG |
5213 | lim.rlim_cur = 65535; |
5214 | lim.rlim_max = 65535; | |
5215 | ||
5216 | ret = setrlimit(RLIMIT_NOFILE, &lim); | |
5217 | if (ret < 0) { | |
76d7553f | 5218 | PERROR("failed to set open files limit"); |
f3ed775e DG |
5219 | } |
5220 | } | |
5221 | ||
35f90c40 DG |
5222 | /* |
5223 | * Write pidfile using the rundir and opt_pidfile. | |
5224 | */ | |
4a15001e | 5225 | static int write_pidfile(void) |
35f90c40 DG |
5226 | { |
5227 | int ret; | |
5228 | char pidfile_path[PATH_MAX]; | |
5229 | ||
5230 | assert(rundir); | |
5231 | ||
5232 | if (opt_pidfile) { | |
5233 | strncpy(pidfile_path, opt_pidfile, sizeof(pidfile_path)); | |
5234 | } else { | |
5235 | /* Build pidfile path from rundir and opt_pidfile. */ | |
5236 | ret = snprintf(pidfile_path, sizeof(pidfile_path), "%s/" | |
5237 | DEFAULT_LTTNG_SESSIOND_PIDFILE, rundir); | |
5238 | if (ret < 0) { | |
5239 | PERROR("snprintf pidfile path"); | |
5240 | goto error; | |
5241 | } | |
5242 | } | |
5243 | ||
5244 | /* | |
4a15001e | 5245 | * Create pid file in rundir. |
35f90c40 | 5246 | */ |
4a15001e | 5247 | ret = utils_create_pid_file(getpid(), pidfile_path); |
35f90c40 | 5248 | error: |
4a15001e | 5249 | return ret; |
35f90c40 DG |
5250 | } |
5251 | ||
c9cb3e7d JG |
5252 | /* |
5253 | * Create lockfile using the rundir and return its fd. | |
5254 | */ | |
5255 | static int create_lockfile(void) | |
5256 | { | |
5257 | int ret; | |
5258 | char lockfile_path[PATH_MAX]; | |
5259 | ||
5260 | ret = generate_lock_file_path(lockfile_path, sizeof(lockfile_path)); | |
5261 | if (ret < 0) { | |
5262 | goto error; | |
5263 | } | |
5264 | ||
5265 | ret = utils_create_lock_file(lockfile_path); | |
5266 | error: | |
5267 | return ret; | |
5268 | } | |
5269 | ||
cd9290dd | 5270 | /* |
022d91ba | 5271 | * Write agent TCP port using the rundir. |
cd9290dd | 5272 | */ |
4a15001e | 5273 | static int write_agent_port(void) |
cd9290dd DG |
5274 | { |
5275 | int ret; | |
5276 | char path[PATH_MAX]; | |
5277 | ||
5278 | assert(rundir); | |
5279 | ||
5280 | ret = snprintf(path, sizeof(path), "%s/" | |
022d91ba | 5281 | DEFAULT_LTTNG_SESSIOND_AGENTPORT_FILE, rundir); |
cd9290dd | 5282 | if (ret < 0) { |
022d91ba | 5283 | PERROR("snprintf agent port path"); |
cd9290dd DG |
5284 | goto error; |
5285 | } | |
5286 | ||
5287 | /* | |
4a15001e | 5288 | * Create TCP agent port file in rundir. |
cd9290dd | 5289 | */ |
4a15001e | 5290 | ret = utils_create_pid_file(agent_tcp_port, path); |
cd9290dd DG |
5291 | |
5292 | error: | |
4a15001e | 5293 | return ret; |
ef367a93 JG |
5294 | } |
5295 | ||
fac6795d DG |
5296 | /* |
5297 | * main | |
5298 | */ | |
5299 | int main(int argc, char **argv) | |
5300 | { | |
4a15001e | 5301 | int ret = 0, retval = 0; |
fac6795d | 5302 | void *status; |
ae9e45b3 | 5303 | const char *home_path, *env_app_timeout; |
fac6795d | 5304 | |
335a95b7 MD |
5305 | init_kernel_workarounds(); |
5306 | ||
f6a9efaa DG |
5307 | rcu_register_thread(); |
5308 | ||
4a15001e MD |
5309 | if (set_signal_handler()) { |
5310 | retval = -1; | |
5311 | goto exit_set_signal_handler; | |
0bb7724a DG |
5312 | } |
5313 | ||
7753dea8 | 5314 | setup_consumerd_path(); |
fb09408a | 5315 | |
12744796 DG |
5316 | page_size = sysconf(_SC_PAGESIZE); |
5317 | if (page_size < 0) { | |
5318 | PERROR("sysconf _SC_PAGESIZE"); | |
5319 | page_size = LONG_MAX; | |
5320 | WARN("Fallback page size to %ld", page_size); | |
5321 | } | |
5322 | ||
4a15001e MD |
5323 | /* |
5324 | * Parse arguments and load the daemon configuration file. | |
5325 | * | |
5326 | * We have an exit_options exit path to free memory reserved by | |
5327 | * set_options. This is needed because the rest of sessiond_cleanup() | |
5328 | * depends on ht_cleanup_thread, which depends on lttng_daemonize, which | |
5329 | * depends on set_options. | |
5330 | */ | |
fac6795d | 5331 | progname = argv[0]; |
4a15001e MD |
5332 | if (set_options(argc, argv)) { |
5333 | retval = -1; | |
5334 | goto exit_options; | |
fac6795d DG |
5335 | } |
5336 | ||
5337 | /* Daemonize */ | |
72dd7491 | 5338 | if (opt_daemon || opt_background) { |
ceed52b5 MD |
5339 | int i; |
5340 | ||
72dd7491 MD |
5341 | ret = lttng_daemonize(&child_ppid, &recv_child_signal, |
5342 | !opt_background); | |
53094c05 | 5343 | if (ret < 0) { |
4a15001e MD |
5344 | retval = -1; |
5345 | goto exit_options; | |
53094c05 | 5346 | } |
0bb7724a | 5347 | |
ceed52b5 | 5348 | /* |
0bb7724a | 5349 | * We are in the child. Make sure all other file descriptors are |
4a15001e MD |
5350 | * closed, in case we are called with more opened file |
5351 | * descriptors than the standard ones. | |
ceed52b5 MD |
5352 | */ |
5353 | for (i = 3; i < sysconf(_SC_OPEN_MAX); i++) { | |
5354 | (void) close(i); | |
5355 | } | |
5356 | } | |
5357 | ||
4a15001e MD |
5358 | /* |
5359 | * Starting from here, we can create threads. This needs to be after | |
5360 | * lttng_daemonize due to RCU. | |
5361 | */ | |
5362 | ||
5363 | /* | |
5364 | * Initialize the health check subsystem. This call should set the | |
5365 | * appropriate time values. | |
5366 | */ | |
5367 | health_sessiond = health_app_create(NR_HEALTH_SESSIOND_TYPES); | |
5368 | if (!health_sessiond) { | |
5369 | PERROR("health_app_create error"); | |
5370 | retval = -1; | |
5371 | goto exit_health_sessiond_cleanup; | |
5372 | } | |
5373 | ||
5374 | if (init_ht_cleanup_quit_pipe()) { | |
5375 | retval = -1; | |
5376 | goto exit_ht_cleanup_quit_pipe; | |
5377 | } | |
5378 | ||
5379 | /* Setup the thread ht_cleanup communication pipe. */ | |
5380 | if (utils_create_pipe_cloexec(ht_cleanup_pipe)) { | |
5381 | retval = -1; | |
5382 | goto exit_ht_cleanup_pipe; | |
5383 | } | |
5384 | ||
25b397f9 MD |
5385 | /* Set up max poll set size */ |
5386 | if (lttng_poll_set_max_size()) { | |
5387 | retval = -1; | |
5388 | goto exit_set_max_size; | |
5389 | } | |
5390 | ||
4a15001e MD |
5391 | /* Create thread to clean up RCU hash tables */ |
5392 | ret = pthread_create(&ht_cleanup_thread, NULL, | |
5393 | thread_ht_cleanup, (void *) NULL); | |
5394 | if (ret) { | |
5395 | errno = ret; | |
5396 | PERROR("pthread_create ht_cleanup"); | |
5397 | retval = -1; | |
5398 | goto exit_ht_cleanup; | |
5399 | } | |
5400 | ||
ceed52b5 | 5401 | /* Create thread quit pipe */ |
4a15001e MD |
5402 | if (init_thread_quit_pipe()) { |
5403 | retval = -1; | |
5404 | goto exit_init_data; | |
fac6795d DG |
5405 | } |
5406 | ||
5407 | /* Check if daemon is UID = 0 */ | |
5408 | is_root = !getuid(); | |
5409 | ||
fac6795d | 5410 | if (is_root) { |
990570ed | 5411 | rundir = strdup(DEFAULT_LTTNG_RUNDIR); |
4ea184d1 | 5412 | if (!rundir) { |
4a15001e MD |
5413 | retval = -1; |
5414 | goto exit_init_data; | |
4ea184d1 | 5415 | } |
67e40797 DG |
5416 | |
5417 | /* Create global run dir with root access */ | |
4a15001e MD |
5418 | if (create_lttng_rundir(rundir)) { |
5419 | retval = -1; | |
5420 | goto exit_init_data; | |
d6f42150 DG |
5421 | } |
5422 | ||
fac6795d | 5423 | if (strlen(apps_unix_sock_path) == 0) { |
4a15001e | 5424 | ret = snprintf(apps_unix_sock_path, PATH_MAX, |
d6f42150 | 5425 | DEFAULT_GLOBAL_APPS_UNIX_SOCK); |
4a15001e MD |
5426 | if (ret < 0) { |
5427 | retval = -1; | |
5428 | goto exit_init_data; | |
5429 | } | |
fac6795d DG |
5430 | } |
5431 | ||
5432 | if (strlen(client_unix_sock_path) == 0) { | |
4a15001e | 5433 | ret = snprintf(client_unix_sock_path, PATH_MAX, |
d6f42150 | 5434 | DEFAULT_GLOBAL_CLIENT_UNIX_SOCK); |
4a15001e MD |
5435 | if (ret < 0) { |
5436 | retval = -1; | |
5437 | goto exit_init_data; | |
5438 | } | |
d6f42150 | 5439 | } |
0fdd1e2c DG |
5440 | |
5441 | /* Set global SHM for ust */ | |
5442 | if (strlen(wait_shm_path) == 0) { | |
4a15001e | 5443 | ret = snprintf(wait_shm_path, PATH_MAX, |
0fdd1e2c | 5444 | DEFAULT_GLOBAL_APPS_WAIT_SHM_PATH); |
4a15001e MD |
5445 | if (ret < 0) { |
5446 | retval = -1; | |
5447 | goto exit_init_data; | |
5448 | } | |
0fdd1e2c | 5449 | } |
67e40797 | 5450 | |
44a5e5eb | 5451 | if (strlen(health_unix_sock_path) == 0) { |
4a15001e MD |
5452 | ret = snprintf(health_unix_sock_path, |
5453 | sizeof(health_unix_sock_path), | |
44a5e5eb | 5454 | DEFAULT_GLOBAL_HEALTH_UNIX_SOCK); |
4a15001e MD |
5455 | if (ret < 0) { |
5456 | retval = -1; | |
5457 | goto exit_init_data; | |
5458 | } | |
44a5e5eb DG |
5459 | } |
5460 | ||
67e40797 | 5461 | /* Setup kernel consumerd path */ |
4a15001e | 5462 | ret = snprintf(kconsumer_data.err_unix_sock_path, PATH_MAX, |
60922cb0 | 5463 | DEFAULT_KCONSUMERD_ERR_SOCK_PATH, rundir); |
4a15001e MD |
5464 | if (ret < 0) { |
5465 | retval = -1; | |
5466 | goto exit_init_data; | |
5467 | } | |
5468 | ret = snprintf(kconsumer_data.cmd_unix_sock_path, PATH_MAX, | |
60922cb0 | 5469 | DEFAULT_KCONSUMERD_CMD_SOCK_PATH, rundir); |
4a15001e MD |
5470 | if (ret < 0) { |
5471 | retval = -1; | |
5472 | goto exit_init_data; | |
5473 | } | |
67e40797 DG |
5474 | |
5475 | DBG2("Kernel consumer err path: %s", | |
5476 | kconsumer_data.err_unix_sock_path); | |
5477 | DBG2("Kernel consumer cmd path: %s", | |
5478 | kconsumer_data.cmd_unix_sock_path); | |
fac6795d | 5479 | } else { |
feb0f3e5 | 5480 | home_path = utils_get_home_dir(); |
b082db07 | 5481 | if (home_path == NULL) { |
273ea72c DG |
5482 | /* TODO: Add --socket PATH option */ |
5483 | ERR("Can't get HOME directory for sockets creation."); | |
4a15001e MD |
5484 | retval = -1; |
5485 | goto exit_init_data; | |
b082db07 DG |
5486 | } |
5487 | ||
67e40797 DG |
5488 | /* |
5489 | * Create rundir from home path. This will create something like | |
5490 | * $HOME/.lttng | |
5491 | */ | |
990570ed | 5492 | ret = asprintf(&rundir, DEFAULT_LTTNG_HOME_RUNDIR, home_path); |
67e40797 | 5493 | if (ret < 0) { |
4a15001e MD |
5494 | retval = -1; |
5495 | goto exit_init_data; | |
67e40797 DG |
5496 | } |
5497 | ||
4a15001e MD |
5498 | if (create_lttng_rundir(rundir)) { |
5499 | retval = -1; | |
5500 | goto exit_init_data; | |
67e40797 DG |
5501 | } |
5502 | ||
fac6795d | 5503 | if (strlen(apps_unix_sock_path) == 0) { |
4a15001e MD |
5504 | ret = snprintf(apps_unix_sock_path, PATH_MAX, |
5505 | DEFAULT_HOME_APPS_UNIX_SOCK, | |
5506 | home_path); | |
5507 | if (ret < 0) { | |
5508 | retval = -1; | |
5509 | goto exit_init_data; | |
5510 | } | |
fac6795d DG |
5511 | } |
5512 | ||
5513 | /* Set the cli tool unix socket path */ | |
5514 | if (strlen(client_unix_sock_path) == 0) { | |
4a15001e MD |
5515 | ret = snprintf(client_unix_sock_path, PATH_MAX, |
5516 | DEFAULT_HOME_CLIENT_UNIX_SOCK, | |
5517 | home_path); | |
5518 | if (ret < 0) { | |
5519 | retval = -1; | |
5520 | goto exit_init_data; | |
5521 | } | |
fac6795d | 5522 | } |
0fdd1e2c DG |
5523 | |
5524 | /* Set global SHM for ust */ | |
5525 | if (strlen(wait_shm_path) == 0) { | |
4a15001e MD |
5526 | ret = snprintf(wait_shm_path, PATH_MAX, |
5527 | DEFAULT_HOME_APPS_WAIT_SHM_PATH, | |
5528 | getuid()); | |
5529 | if (ret < 0) { | |
5530 | retval = -1; | |
5531 | goto exit_init_data; | |
5532 | } | |
0fdd1e2c | 5533 | } |
44a5e5eb DG |
5534 | |
5535 | /* Set health check Unix path */ | |
5536 | if (strlen(health_unix_sock_path) == 0) { | |
4a15001e MD |
5537 | ret = snprintf(health_unix_sock_path, |
5538 | sizeof(health_unix_sock_path), | |
5539 | DEFAULT_HOME_HEALTH_UNIX_SOCK, | |
5540 | home_path); | |
5541 | if (ret < 0) { | |
5542 | retval = -1; | |
5543 | goto exit_init_data; | |
5544 | } | |
44a5e5eb | 5545 | } |
fac6795d DG |
5546 | } |
5547 | ||
c9cb3e7d JG |
5548 | lockfile_fd = create_lockfile(); |
5549 | if (lockfile_fd < 0) { | |
4a15001e MD |
5550 | retval = -1; |
5551 | goto exit_init_data; | |
c9cb3e7d JG |
5552 | } |
5553 | ||
5c827ce0 DG |
5554 | /* Set consumer initial state */ |
5555 | kernel_consumerd_state = CONSUMER_STOPPED; | |
5556 | ust_consumerd_state = CONSUMER_STOPPED; | |
5557 | ||
847177cd DG |
5558 | DBG("Client socket path %s", client_unix_sock_path); |
5559 | DBG("Application socket path %s", apps_unix_sock_path); | |
d0b96690 | 5560 | DBG("Application wait path %s", wait_shm_path); |
67e40797 DG |
5561 | DBG("LTTng run directory path: %s", rundir); |
5562 | ||
5563 | /* 32 bits consumerd path setup */ | |
4a15001e | 5564 | ret = snprintf(ustconsumer32_data.err_unix_sock_path, PATH_MAX, |
60922cb0 | 5565 | DEFAULT_USTCONSUMERD32_ERR_SOCK_PATH, rundir); |
4a15001e MD |
5566 | if (ret < 0) { |
5567 | PERROR("snprintf 32-bit consumer error socket path"); | |
5568 | retval = -1; | |
5569 | goto exit_init_data; | |
5570 | } | |
5571 | ret = snprintf(ustconsumer32_data.cmd_unix_sock_path, PATH_MAX, | |
60922cb0 | 5572 | DEFAULT_USTCONSUMERD32_CMD_SOCK_PATH, rundir); |
4a15001e MD |
5573 | if (ret < 0) { |
5574 | PERROR("snprintf 32-bit consumer command socket path"); | |
5575 | retval = -1; | |
5576 | goto exit_init_data; | |
5577 | } | |
67e40797 DG |
5578 | |
5579 | DBG2("UST consumer 32 bits err path: %s", | |
5580 | ustconsumer32_data.err_unix_sock_path); | |
5581 | DBG2("UST consumer 32 bits cmd path: %s", | |
5582 | ustconsumer32_data.cmd_unix_sock_path); | |
5583 | ||
5584 | /* 64 bits consumerd path setup */ | |
4a15001e | 5585 | ret = snprintf(ustconsumer64_data.err_unix_sock_path, PATH_MAX, |
60922cb0 | 5586 | DEFAULT_USTCONSUMERD64_ERR_SOCK_PATH, rundir); |
4a15001e MD |
5587 | if (ret < 0) { |
5588 | PERROR("snprintf 64-bit consumer error socket path"); | |
5589 | retval = -1; | |
5590 | goto exit_init_data; | |
5591 | } | |
5592 | ret = snprintf(ustconsumer64_data.cmd_unix_sock_path, PATH_MAX, | |
60922cb0 | 5593 | DEFAULT_USTCONSUMERD64_CMD_SOCK_PATH, rundir); |
4a15001e MD |
5594 | if (ret < 0) { |
5595 | PERROR("snprintf 64-bit consumer command socket path"); | |
5596 | retval = -1; | |
5597 | goto exit_init_data; | |
5598 | } | |
67e40797 DG |
5599 | |
5600 | DBG2("UST consumer 64 bits err path: %s", | |
5601 | ustconsumer64_data.err_unix_sock_path); | |
5602 | DBG2("UST consumer 64 bits cmd path: %s", | |
5603 | ustconsumer64_data.cmd_unix_sock_path); | |
847177cd | 5604 | |
273ea72c | 5605 | /* |
7d8234d9 | 5606 | * See if daemon already exist. |
fac6795d | 5607 | */ |
4a15001e | 5608 | if (check_existing_daemon()) { |
75462a81 | 5609 | ERR("Already running daemon.\n"); |
273ea72c | 5610 | /* |
cf3af59e MD |
5611 | * We do not goto exit because we must not cleanup() |
5612 | * because a daemon is already running. | |
ab118b20 | 5613 | */ |
4a15001e MD |
5614 | retval = -1; |
5615 | goto exit_init_data; | |
a88df331 DG |
5616 | } |
5617 | ||
1427f9b2 DG |
5618 | /* |
5619 | * Init UST app hash table. Alloc hash table before this point since | |
5620 | * cleanup() can get called after that point. | |
5621 | */ | |
4a15001e | 5622 | if (ust_app_ht_alloc()) { |
ddbeb0f6 | 5623 | ERR("Failed to allocate UST app hash table"); |
4a15001e MD |
5624 | retval = -1; |
5625 | goto exit_init_data; | |
5626 | } | |
1427f9b2 | 5627 | |
6a4e4039 JG |
5628 | /* |
5629 | * Initialize agent app hash table. We allocate the hash table here | |
5630 | * since cleanup() can get called after this point. | |
5631 | */ | |
5632 | if (agent_app_ht_alloc()) { | |
5633 | ERR("Failed to allocate Agent app hash table"); | |
4a15001e MD |
5634 | retval = -1; |
5635 | goto exit_init_data; | |
f20baf8e DG |
5636 | } |
5637 | ||
a88df331 DG |
5638 | /* |
5639 | * These actions must be executed as root. We do that *after* setting up | |
5640 | * the sockets path because we MUST make the check for another daemon using | |
5641 | * those paths *before* trying to set the kernel consumer sockets and init | |
5642 | * kernel tracer. | |
5643 | */ | |
5644 | if (is_root) { | |
4a15001e MD |
5645 | if (set_consumer_sockets(&kconsumer_data, rundir)) { |
5646 | retval = -1; | |
5647 | goto exit_init_data; | |
7753dea8 MD |
5648 | } |
5649 | ||
a88df331 | 5650 | /* Setup kernel tracer */ |
4fba7219 DG |
5651 | if (!opt_no_kernel) { |
5652 | init_kernel_tracer(); | |
89588270 DG |
5653 | if (kernel_tracer_fd >= 0) { |
5654 | ret = syscall_init_table(); | |
5655 | if (ret < 0) { | |
4a15001e MD |
5656 | ERR("Unable to populate syscall table. " |
5657 | "Syscall tracing won't work " | |
5658 | "for this session daemon."); | |
89588270 | 5659 | } |
834978fd | 5660 | } |
4fba7219 | 5661 | } |
a88df331 DG |
5662 | |
5663 | /* Set ulimit for open files */ | |
5664 | set_ulimit(); | |
fac6795d | 5665 | } |
4063050c MD |
5666 | /* init lttng_fd tracking must be done after set_ulimit. */ |
5667 | lttng_fd_init(); | |
fac6795d | 5668 | |
4a15001e MD |
5669 | if (set_consumer_sockets(&ustconsumer64_data, rundir)) { |
5670 | retval = -1; | |
5671 | goto exit_init_data; | |
67e40797 DG |
5672 | } |
5673 | ||
4a15001e MD |
5674 | if (set_consumer_sockets(&ustconsumer32_data, rundir)) { |
5675 | retval = -1; | |
5676 | goto exit_init_data; | |
67e40797 DG |
5677 | } |
5678 | ||
d6f42150 | 5679 | /* Setup the needed unix socket */ |
4a15001e MD |
5680 | if (init_daemon_socket()) { |
5681 | retval = -1; | |
5682 | goto exit_init_data; | |
fac6795d DG |
5683 | } |
5684 | ||
5685 | /* Set credentials to socket */ | |
4a15001e MD |
5686 | if (is_root && set_permissions(rundir)) { |
5687 | retval = -1; | |
5688 | goto exit_init_data; | |
fac6795d DG |
5689 | } |
5690 | ||
5b8719f5 DG |
5691 | /* Get parent pid if -S, --sig-parent is specified. */ |
5692 | if (opt_sig_parent) { | |
5693 | ppid = getppid(); | |
5694 | } | |
5695 | ||
7a485870 | 5696 | /* Setup the kernel pipe for waking up the kernel thread */ |
6620da75 | 5697 | if (is_root && !opt_no_kernel) { |
4a15001e MD |
5698 | if (utils_create_pipe_cloexec(kernel_poll_pipe)) { |
5699 | retval = -1; | |
5700 | goto exit_init_data; | |
6620da75 | 5701 | } |
7a485870 DG |
5702 | } |
5703 | ||
099e26bd | 5704 | /* Setup the thread apps communication pipe. */ |
4a15001e MD |
5705 | if (utils_create_pipe_cloexec(apps_cmd_pipe)) { |
5706 | retval = -1; | |
5707 | goto exit_init_data; | |
099e26bd DG |
5708 | } |
5709 | ||
d0b96690 | 5710 | /* Setup the thread apps notify communication pipe. */ |
4a15001e MD |
5711 | if (utils_create_pipe_cloexec(apps_cmd_notify_pipe)) { |
5712 | retval = -1; | |
5713 | goto exit_init_data; | |
d0b96690 DG |
5714 | } |
5715 | ||
7972aab2 DG |
5716 | /* Initialize global buffer per UID and PID registry. */ |
5717 | buffer_reg_init_uid_registry(); | |
5718 | buffer_reg_init_pid_registry(); | |
5719 | ||
099e26bd | 5720 | /* Init UST command queue. */ |
8bdee6e2 | 5721 | cds_wfcq_init(&ust_cmd_queue.head, &ust_cmd_queue.tail); |
099e26bd | 5722 | |
273ea72c | 5723 | /* |
4a15001e MD |
5724 | * Get session list pointer. This pointer MUST NOT be free'd. This list |
5725 | * is statically declared in session.c | |
273ea72c | 5726 | */ |
54d01ffb | 5727 | session_list_ptr = session_get_list(); |
b5541356 | 5728 | |
2f77fc4b | 5729 | cmd_init(); |
00e2e675 | 5730 | |
ae9e45b3 DG |
5731 | /* Check for the application socket timeout env variable. */ |
5732 | env_app_timeout = getenv(DEFAULT_APP_SOCKET_TIMEOUT_ENV); | |
5733 | if (env_app_timeout) { | |
5734 | app_socket_timeout = atoi(env_app_timeout); | |
5735 | } else { | |
5736 | app_socket_timeout = DEFAULT_APP_SOCKET_RW_TIMEOUT; | |
5737 | } | |
5738 | ||
4a15001e MD |
5739 | ret = write_pidfile(); |
5740 | if (ret) { | |
5741 | ERR("Error in write_pidfile"); | |
5742 | retval = -1; | |
5743 | goto exit_init_data; | |
5744 | } | |
5745 | ret = write_agent_port(); | |
5746 | if (ret) { | |
5747 | ERR("Error in write_agent_port"); | |
5748 | retval = -1; | |
5749 | goto exit_init_data; | |
5750 | } | |
35f90c40 | 5751 | |
554831e7 MD |
5752 | /* Initialize communication library */ |
5753 | lttcomm_init(); | |
4a15001e | 5754 | /* Initialize TCP timeout values */ |
d831c249 | 5755 | lttcomm_inet_init(); |
554831e7 | 5756 | |
ef367a93 | 5757 | if (load_session_init_data(&load_info) < 0) { |
4a15001e MD |
5758 | retval = -1; |
5759 | goto exit_init_data; | |
ef367a93 JG |
5760 | } |
5761 | load_info->path = opt_load_session_path; | |
5762 | ||
d5b9fd2f | 5763 | /* Create health-check thread */ |
44a5e5eb DG |
5764 | ret = pthread_create(&health_thread, NULL, |
5765 | thread_manage_health, (void *) NULL); | |
4a15001e MD |
5766 | if (ret) { |
5767 | errno = ret; | |
44a5e5eb | 5768 | PERROR("pthread_create health"); |
4a15001e | 5769 | retval = -1; |
44a5e5eb DG |
5770 | goto exit_health; |
5771 | } | |
5772 | ||
cf3af59e | 5773 | /* Create thread to manage the client socket */ |
099e26bd DG |
5774 | ret = pthread_create(&client_thread, NULL, |
5775 | thread_manage_clients, (void *) NULL); | |
4a15001e MD |
5776 | if (ret) { |
5777 | errno = ret; | |
76d7553f | 5778 | PERROR("pthread_create clients"); |
4a15001e | 5779 | retval = -1; |
cf3af59e MD |
5780 | goto exit_client; |
5781 | } | |
fac6795d | 5782 | |
099e26bd DG |
5783 | /* Create thread to dispatch registration */ |
5784 | ret = pthread_create(&dispatch_thread, NULL, | |
5785 | thread_dispatch_ust_registration, (void *) NULL); | |
4a15001e MD |
5786 | if (ret) { |
5787 | errno = ret; | |
76d7553f | 5788 | PERROR("pthread_create dispatch"); |
4a15001e | 5789 | retval = -1; |
099e26bd DG |
5790 | goto exit_dispatch; |
5791 | } | |
5792 | ||
5793 | /* Create thread to manage application registration. */ | |
5794 | ret = pthread_create(®_apps_thread, NULL, | |
5795 | thread_registration_apps, (void *) NULL); | |
4a15001e MD |
5796 | if (ret) { |
5797 | errno = ret; | |
76d7553f | 5798 | PERROR("pthread_create registration"); |
4a15001e | 5799 | retval = -1; |
099e26bd DG |
5800 | goto exit_reg_apps; |
5801 | } | |
5802 | ||
cf3af59e | 5803 | /* Create thread to manage application socket */ |
54d01ffb DG |
5804 | ret = pthread_create(&apps_thread, NULL, |
5805 | thread_manage_apps, (void *) NULL); | |
4a15001e MD |
5806 | if (ret) { |
5807 | errno = ret; | |
d0b96690 | 5808 | PERROR("pthread_create apps"); |
4a15001e | 5809 | retval = -1; |
d0b96690 DG |
5810 | goto exit_apps; |
5811 | } | |
5812 | ||
5813 | /* Create thread to manage application notify socket */ | |
5814 | ret = pthread_create(&apps_notify_thread, NULL, | |
5815 | ust_thread_manage_notify, (void *) NULL); | |
4a15001e MD |
5816 | if (ret) { |
5817 | errno = ret; | |
f5c32ef1 | 5818 | PERROR("pthread_create notify"); |
4a15001e | 5819 | retval = -1; |
9563b0ad | 5820 | goto exit_apps_notify; |
cf3af59e | 5821 | } |
fac6795d | 5822 | |
022d91ba DG |
5823 | /* Create agent registration thread. */ |
5824 | ret = pthread_create(&agent_reg_thread, NULL, | |
5825 | agent_thread_manage_registration, (void *) NULL); | |
4a15001e MD |
5826 | if (ret) { |
5827 | errno = ret; | |
022d91ba | 5828 | PERROR("pthread_create agent"); |
4a15001e | 5829 | retval = -1; |
022d91ba | 5830 | goto exit_agent_reg; |
4d076222 DG |
5831 | } |
5832 | ||
6620da75 DG |
5833 | /* Don't start this thread if kernel tracing is not requested nor root */ |
5834 | if (is_root && !opt_no_kernel) { | |
5835 | /* Create kernel thread to manage kernel event */ | |
5836 | ret = pthread_create(&kernel_thread, NULL, | |
5837 | thread_manage_kernel, (void *) NULL); | |
4a15001e MD |
5838 | if (ret) { |
5839 | errno = ret; | |
6620da75 | 5840 | PERROR("pthread_create kernel"); |
4a15001e | 5841 | retval = -1; |
6620da75 DG |
5842 | goto exit_kernel; |
5843 | } | |
ef367a93 | 5844 | } |
7a485870 | 5845 | |
4a15001e MD |
5846 | /* Create session loading thread. */ |
5847 | ret = pthread_create(&load_session_thread, NULL, thread_load_session, | |
5848 | load_info); | |
5849 | if (ret) { | |
5850 | errno = ret; | |
5851 | PERROR("pthread_create load_session_thread"); | |
5852 | retval = -1; | |
5853 | goto exit_load_session; | |
5854 | } | |
5855 | ||
5856 | /* | |
5857 | * This is where we start awaiting program completion (e.g. through | |
5858 | * signal that asks threads to teardown). | |
5859 | */ | |
5860 | ||
5861 | ret = pthread_join(load_session_thread, &status); | |
5862 | if (ret) { | |
5863 | errno = ret; | |
5864 | PERROR("pthread_join load_session_thread"); | |
5865 | retval = -1; | |
5866 | } | |
5867 | exit_load_session: | |
ef367a93 JG |
5868 | |
5869 | if (is_root && !opt_no_kernel) { | |
6620da75 | 5870 | ret = pthread_join(kernel_thread, &status); |
4a15001e MD |
5871 | if (ret) { |
5872 | errno = ret; | |
6620da75 | 5873 | PERROR("pthread_join"); |
4a15001e | 5874 | retval = -1; |
6620da75 | 5875 | } |
fac6795d | 5876 | } |
cf3af59e | 5877 | exit_kernel: |
4a15001e | 5878 | |
022d91ba | 5879 | ret = pthread_join(agent_reg_thread, &status); |
4a15001e MD |
5880 | if (ret) { |
5881 | errno = ret; | |
022d91ba | 5882 | PERROR("pthread_join agent"); |
4a15001e | 5883 | retval = -1; |
4d076222 | 5884 | } |
022d91ba | 5885 | exit_agent_reg: |
4a15001e | 5886 | |
9563b0ad | 5887 | ret = pthread_join(apps_notify_thread, &status); |
4a15001e MD |
5888 | if (ret) { |
5889 | errno = ret; | |
9563b0ad | 5890 | PERROR("pthread_join apps notify"); |
4a15001e | 5891 | retval = -1; |
9563b0ad | 5892 | } |
9563b0ad | 5893 | exit_apps_notify: |
4a15001e | 5894 | |
cf3af59e | 5895 | ret = pthread_join(apps_thread, &status); |
4a15001e MD |
5896 | if (ret) { |
5897 | errno = ret; | |
9563b0ad | 5898 | PERROR("pthread_join apps"); |
4a15001e | 5899 | retval = -1; |
cf3af59e | 5900 | } |
cf3af59e | 5901 | exit_apps: |
4a15001e | 5902 | |
099e26bd | 5903 | ret = pthread_join(reg_apps_thread, &status); |
4a15001e MD |
5904 | if (ret) { |
5905 | errno = ret; | |
76d7553f | 5906 | PERROR("pthread_join"); |
4a15001e | 5907 | retval = -1; |
099e26bd | 5908 | } |
099e26bd | 5909 | exit_reg_apps: |
4a15001e | 5910 | |
099e26bd | 5911 | ret = pthread_join(dispatch_thread, &status); |
4a15001e MD |
5912 | if (ret) { |
5913 | errno = ret; | |
76d7553f | 5914 | PERROR("pthread_join"); |
4a15001e | 5915 | retval = -1; |
099e26bd | 5916 | } |
099e26bd | 5917 | exit_dispatch: |
4a15001e | 5918 | |
cf3af59e | 5919 | ret = pthread_join(client_thread, &status); |
4a15001e MD |
5920 | if (ret) { |
5921 | errno = ret; | |
76d7553f | 5922 | PERROR("pthread_join"); |
4a15001e | 5923 | retval = -1; |
cf3af59e | 5924 | } |
4a15001e | 5925 | exit_client: |
a88df331 | 5926 | |
4a15001e MD |
5927 | ret = pthread_join(health_thread, &status); |
5928 | if (ret) { | |
5929 | errno = ret; | |
5930 | PERROR("pthread_join health thread"); | |
5931 | retval = -1; | |
06f525de | 5932 | } |
4a15001e | 5933 | exit_health: |
06f525de | 5934 | |
4a15001e MD |
5935 | exit_init_data: |
5936 | /* | |
5937 | * sessiond_cleanup() is called when no other thread is running, except | |
5938 | * the ht_cleanup thread, which is needed to destroy the hash tables. | |
5939 | */ | |
5940 | rcu_thread_online(); | |
5941 | sessiond_cleanup(); | |
5942 | rcu_thread_offline(); | |
5943 | rcu_unregister_thread(); | |
06f525de | 5944 | |
4a15001e MD |
5945 | ret = notify_thread_pipe(ht_cleanup_quit_pipe[1]); |
5946 | if (ret < 0) { | |
5947 | ERR("write error on ht_cleanup quit pipe"); | |
5948 | retval = -1; | |
06f525de DG |
5949 | } |
5950 | ||
0b2dc8df | 5951 | ret = pthread_join(ht_cleanup_thread, &status); |
4a15001e MD |
5952 | if (ret) { |
5953 | errno = ret; | |
0b2dc8df | 5954 | PERROR("pthread_join ht cleanup thread"); |
4a15001e | 5955 | retval = -1; |
0b2dc8df MD |
5956 | } |
5957 | exit_ht_cleanup: | |
25b397f9 | 5958 | exit_set_max_size: |
4a15001e MD |
5959 | |
5960 | utils_close_pipe(ht_cleanup_pipe); | |
5961 | exit_ht_cleanup_pipe: | |
5962 | ||
cf3af59e | 5963 | /* |
4a15001e | 5964 | * Close the ht_cleanup quit pipe. |
cf3af59e | 5965 | */ |
4a15001e MD |
5966 | utils_close_pipe(ht_cleanup_quit_pipe); |
5967 | exit_ht_cleanup_quit_pipe: | |
5968 | ||
5969 | health_app_destroy(health_sessiond); | |
5970 | exit_health_sessiond_cleanup: | |
5971 | ||
5972 | exit_options: | |
5973 | sessiond_cleanup_options(); | |
5974 | ||
5975 | exit_set_signal_handler: | |
5976 | if (!retval) { | |
cf3af59e | 5977 | exit(EXIT_SUCCESS); |
4a15001e MD |
5978 | } else { |
5979 | exit(EXIT_FAILURE); | |
67e40797 | 5980 | } |
fac6795d | 5981 | } |