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