Commit | Line | Data |
---|---|---|
826d496d MD |
1 | /* |
2 | * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca> | |
0fdd1e2c | 3 | * Mathieu Desnoyers <mathieu.desnoyers@efficios.com> |
fac6795d | 4 | * |
d14d33bf AM |
5 | * This program is free software; you can redistribute it and/or modify |
6 | * it under the terms of the GNU General Public License, version 2 only, | |
7 | * as published by the Free Software Foundation. | |
91d76f53 | 8 | * |
d14d33bf AM |
9 | * This program is distributed in the hope that it will be useful, |
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | * GNU General Public License for more details. | |
91d76f53 | 13 | * |
d14d33bf AM |
14 | * You should have received a copy of the GNU General Public License along |
15 | * with this program; if not, write to the Free Software Foundation, Inc., | |
16 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
fac6795d DG |
17 | */ |
18 | ||
19 | #define _GNU_SOURCE | |
fac6795d DG |
20 | #include <getopt.h> |
21 | #include <grp.h> | |
22 | #include <limits.h> | |
23 | #include <pthread.h> | |
24 | #include <signal.h> | |
25 | #include <stdio.h> | |
26 | #include <stdlib.h> | |
27 | #include <string.h> | |
0fdd1e2c | 28 | #include <sys/mman.h> |
b73401da | 29 | #include <sys/mount.h> |
1e307fab | 30 | #include <sys/resource.h> |
fac6795d DG |
31 | #include <sys/socket.h> |
32 | #include <sys/stat.h> | |
33 | #include <sys/types.h> | |
0fdd1e2c | 34 | #include <sys/wait.h> |
5c827ce0 | 35 | #include <urcu/uatomic.h> |
fac6795d | 36 | #include <unistd.h> |
3bd1e081 | 37 | #include <config.h> |
fac6795d | 38 | |
990570ed | 39 | #include <common/common.h> |
0ba98ebc | 40 | #include <common/compat/poll.h> |
d27c42b8 | 41 | #include <common/compat/socket.h> |
db758600 DG |
42 | #include <common/defaults.h> |
43 | #include <common/kernel-consumer/kernel-consumer.h> | |
50c8f484 | 44 | #include <common/futex.h> |
00e2e675 | 45 | #include <common/relayd/relayd.h> |
81b86775 | 46 | #include <common/utils.h> |
fac6795d | 47 | |
10a8a223 | 48 | #include "lttng-sessiond.h" |
54d01ffb | 49 | #include "channel.h" |
2f77fc4b | 50 | #include "cmd.h" |
00e2e675 | 51 | #include "consumer.h" |
099e26bd | 52 | #include "context.h" |
54d01ffb | 53 | #include "event.h" |
4771f025 | 54 | #include "kernel.h" |
f1e16794 | 55 | #include "kernel-consumer.h" |
096102bd | 56 | #include "modprobe.h" |
0fdd1e2c | 57 | #include "shm.h" |
1e307fab | 58 | #include "ust-ctl.h" |
00e2e675 | 59 | #include "ust-consumer.h" |
8e68d1c8 | 60 | #include "utils.h" |
4063050c | 61 | #include "fd-limit.h" |
44a5e5eb | 62 | #include "health.h" |
8ac94142 | 63 | #include "testpoint.h" |
fac6795d | 64 | |
ebaeda94 MD |
65 | #define CONSUMERD_FILE "lttng-consumerd" |
66 | ||
75462a81 | 67 | /* Const values */ |
686204ab | 68 | const char default_home_dir[] = DEFAULT_HOME_DIR; |
bbccc3d2 | 69 | const char default_tracing_group[] = DEFAULT_TRACING_GROUP; |
686204ab MD |
70 | const char default_ust_sock_dir[] = DEFAULT_UST_SOCK_DIR; |
71 | const char default_global_apps_pipe[] = DEFAULT_GLOBAL_APPS_PIPE; | |
72 | ||
fac6795d DG |
73 | const char *progname; |
74 | const char *opt_tracing_group; | |
5b8719f5 | 75 | static int opt_sig_parent; |
97e19046 | 76 | static int opt_verbose_consumer; |
fac6795d | 77 | static int opt_daemon; |
4fba7219 | 78 | static int opt_no_kernel; |
fac6795d | 79 | static int is_root; /* Set to 1 if the daemon is running as root */ |
1d4b027a | 80 | static pid_t ppid; /* Parent PID for --sig-parent option */ |
67e40797 | 81 | static char *rundir; |
3bd1e081 | 82 | |
a23ec3a7 DG |
83 | /* |
84 | * Consumer daemon specific control data. Every value not initialized here is | |
85 | * set to 0 by the static definition. | |
86 | */ | |
3bd1e081 MD |
87 | static struct consumer_data kconsumer_data = { |
88 | .type = LTTNG_CONSUMER_KERNEL, | |
60922cb0 DG |
89 | .err_unix_sock_path = DEFAULT_KCONSUMERD_ERR_SOCK_PATH, |
90 | .cmd_unix_sock_path = DEFAULT_KCONSUMERD_CMD_SOCK_PATH, | |
03550b58 MD |
91 | .err_sock = -1, |
92 | .cmd_sock = -1, | |
173af62f DG |
93 | .pid_mutex = PTHREAD_MUTEX_INITIALIZER, |
94 | .lock = PTHREAD_MUTEX_INITIALIZER, | |
a23ec3a7 DG |
95 | .cond = PTHREAD_COND_INITIALIZER, |
96 | .cond_mutex = PTHREAD_MUTEX_INITIALIZER, | |
3bd1e081 | 97 | }; |
7753dea8 MD |
98 | static struct consumer_data ustconsumer64_data = { |
99 | .type = LTTNG_CONSUMER64_UST, | |
60922cb0 DG |
100 | .err_unix_sock_path = DEFAULT_USTCONSUMERD64_ERR_SOCK_PATH, |
101 | .cmd_unix_sock_path = DEFAULT_USTCONSUMERD64_CMD_SOCK_PATH, | |
03550b58 MD |
102 | .err_sock = -1, |
103 | .cmd_sock = -1, | |
173af62f DG |
104 | .pid_mutex = PTHREAD_MUTEX_INITIALIZER, |
105 | .lock = PTHREAD_MUTEX_INITIALIZER, | |
a23ec3a7 DG |
106 | .cond = PTHREAD_COND_INITIALIZER, |
107 | .cond_mutex = PTHREAD_MUTEX_INITIALIZER, | |
7753dea8 MD |
108 | }; |
109 | static struct consumer_data ustconsumer32_data = { | |
110 | .type = LTTNG_CONSUMER32_UST, | |
60922cb0 DG |
111 | .err_unix_sock_path = DEFAULT_USTCONSUMERD32_ERR_SOCK_PATH, |
112 | .cmd_unix_sock_path = DEFAULT_USTCONSUMERD32_CMD_SOCK_PATH, | |
03550b58 MD |
113 | .err_sock = -1, |
114 | .cmd_sock = -1, | |
173af62f DG |
115 | .pid_mutex = PTHREAD_MUTEX_INITIALIZER, |
116 | .lock = PTHREAD_MUTEX_INITIALIZER, | |
a23ec3a7 DG |
117 | .cond = PTHREAD_COND_INITIALIZER, |
118 | .cond_mutex = PTHREAD_MUTEX_INITIALIZER, | |
3bd1e081 MD |
119 | }; |
120 | ||
26c9d55e | 121 | /* Shared between threads */ |
099e26bd | 122 | static int dispatch_thread_exit; |
fac6795d | 123 | |
54d01ffb DG |
124 | /* Global application Unix socket path */ |
125 | static char apps_unix_sock_path[PATH_MAX]; | |
126 | /* Global client Unix socket path */ | |
127 | static char client_unix_sock_path[PATH_MAX]; | |
54d01ffb DG |
128 | /* global wait shm path for UST */ |
129 | static char wait_shm_path[PATH_MAX]; | |
44a5e5eb DG |
130 | /* Global health check unix path */ |
131 | static char health_unix_sock_path[PATH_MAX]; | |
fac6795d | 132 | |
1d4b027a | 133 | /* Sockets and FDs */ |
a4b35e07 MD |
134 | static int client_sock = -1; |
135 | static int apps_sock = -1; | |
2f77fc4b | 136 | int kernel_tracer_fd = -1; |
76d7553f | 137 | static int kernel_poll_pipe[2] = { -1, -1 }; |
1d4b027a | 138 | |
273ea72c DG |
139 | /* |
140 | * Quit pipe for all threads. This permits a single cancellation point | |
141 | * for all threads when receiving an event on the pipe. | |
142 | */ | |
76d7553f | 143 | static int thread_quit_pipe[2] = { -1, -1 }; |
273ea72c | 144 | |
099e26bd DG |
145 | /* |
146 | * This pipe is used to inform the thread managing application communication | |
147 | * that a command is queued and ready to be processed. | |
148 | */ | |
76d7553f | 149 | static int apps_cmd_pipe[2] = { -1, -1 }; |
099e26bd | 150 | |
1d4b027a | 151 | /* Pthread, Mutexes and Semaphores */ |
1d4b027a | 152 | static pthread_t apps_thread; |
099e26bd | 153 | static pthread_t reg_apps_thread; |
1d4b027a | 154 | static pthread_t client_thread; |
7a485870 | 155 | static pthread_t kernel_thread; |
099e26bd | 156 | static pthread_t dispatch_thread; |
44a5e5eb | 157 | static pthread_t health_thread; |
5eb91c98 | 158 | |
099e26bd DG |
159 | /* |
160 | * UST registration command queue. This queue is tied with a futex and uses a N | |
161 | * wakers / 1 waiter implemented and detailed in futex.c/.h | |
162 | * | |
163 | * The thread_manage_apps and thread_dispatch_ust_registration interact with | |
164 | * this queue and the wait/wake scheme. | |
165 | */ | |
166 | static struct ust_cmd_queue ust_cmd_queue; | |
167 | ||
b5541356 DG |
168 | /* |
169 | * Pointer initialized before thread creation. | |
170 | * | |
171 | * This points to the tracing session list containing the session count and a | |
172 | * mutex lock. The lock MUST be taken if you iterate over the list. The lock | |
173 | * MUST NOT be taken if you call a public function in session.c. | |
04ea676f | 174 | * |
d063d709 | 175 | * The lock is nested inside the structure: session_list_ptr->lock. Please use |
54d01ffb | 176 | * session_lock_list and session_unlock_list for lock acquisition. |
b5541356 DG |
177 | */ |
178 | static struct ltt_session_list *session_list_ptr; | |
179 | ||
7753dea8 MD |
180 | int ust_consumerd64_fd = -1; |
181 | int ust_consumerd32_fd = -1; | |
182 | ||
fb6f1fa2 YB |
183 | static const char *consumerd32_bin = CONFIG_CONSUMERD32_BIN; |
184 | static const char *consumerd64_bin = CONFIG_CONSUMERD64_BIN; | |
185 | static const char *consumerd32_libdir = CONFIG_CONSUMERD32_LIBDIR; | |
186 | static const char *consumerd64_libdir = CONFIG_CONSUMERD64_LIBDIR; | |
fb09408a | 187 | |
2f77fc4b DG |
188 | static const char *module_proc_lttng = "/proc/lttng"; |
189 | ||
5c827ce0 DG |
190 | /* |
191 | * Consumer daemon state which is changed when spawning it, killing it or in | |
192 | * case of a fatal error. | |
193 | */ | |
194 | enum consumerd_state { | |
195 | CONSUMER_STARTED = 1, | |
196 | CONSUMER_STOPPED = 2, | |
197 | CONSUMER_ERROR = 3, | |
198 | }; | |
199 | ||
200 | /* | |
201 | * This consumer daemon state is used to validate if a client command will be | |
202 | * able to reach the consumer. If not, the client is informed. For instance, | |
203 | * doing a "lttng start" when the consumer state is set to ERROR will return an | |
204 | * error to the client. | |
205 | * | |
206 | * The following example shows a possible race condition of this scheme: | |
207 | * | |
208 | * consumer thread error happens | |
209 | * client cmd arrives | |
210 | * client cmd checks state -> still OK | |
211 | * consumer thread exit, sets error | |
212 | * client cmd try to talk to consumer | |
213 | * ... | |
214 | * | |
215 | * However, since the consumer is a different daemon, we have no way of making | |
216 | * sure the command will reach it safely even with this state flag. This is why | |
217 | * we consider that up to the state validation during command processing, the | |
218 | * command is safe. After that, we can not guarantee the correctness of the | |
219 | * client request vis-a-vis the consumer. | |
220 | */ | |
221 | static enum consumerd_state ust_consumerd_state; | |
222 | static enum consumerd_state kernel_consumerd_state; | |
223 | ||
44a5e5eb DG |
224 | /* Used for the health monitoring of the session daemon. See health.h */ |
225 | struct health_state health_thread_cmd; | |
139ac872 | 226 | struct health_state health_thread_app_manage; |
44a5e5eb DG |
227 | struct health_state health_thread_app_reg; |
228 | struct health_state health_thread_kernel; | |
229 | ||
ae9e45b3 DG |
230 | /* |
231 | * Socket timeout for receiving and sending in seconds. | |
232 | */ | |
233 | static int app_socket_timeout; | |
234 | ||
fb09408a | 235 | static |
7753dea8 | 236 | void setup_consumerd_path(void) |
fb09408a | 237 | { |
fc7a59ce | 238 | const char *bin, *libdir; |
fb09408a | 239 | |
7753dea8 MD |
240 | /* |
241 | * Allow INSTALL_BIN_PATH to be used as a target path for the | |
ebaeda94 MD |
242 | * native architecture size consumer if CONFIG_CONSUMER*_PATH |
243 | * has not been defined. | |
7753dea8 | 244 | */ |
ebaeda94 | 245 | #if (CAA_BITS_PER_LONG == 32) |
fc7a59ce AM |
246 | if (!consumerd32_bin[0]) { |
247 | consumerd32_bin = INSTALL_BIN_PATH "/" CONSUMERD_FILE; | |
ebaeda94 MD |
248 | } |
249 | if (!consumerd32_libdir[0]) { | |
250 | consumerd32_libdir = INSTALL_LIB_PATH; | |
251 | } | |
252 | #elif (CAA_BITS_PER_LONG == 64) | |
fc7a59ce AM |
253 | if (!consumerd64_bin[0]) { |
254 | consumerd64_bin = INSTALL_BIN_PATH "/" CONSUMERD_FILE; | |
7753dea8 | 255 | } |
ebaeda94 MD |
256 | if (!consumerd64_libdir[0]) { |
257 | consumerd64_libdir = INSTALL_LIB_PATH; | |
7753dea8 MD |
258 | } |
259 | #else | |
260 | #error "Unknown bitness" | |
261 | #endif | |
262 | ||
fb09408a MD |
263 | /* |
264 | * runtime env. var. overrides the build default. | |
265 | */ | |
fc7a59ce AM |
266 | bin = getenv("LTTNG_CONSUMERD32_BIN"); |
267 | if (bin) { | |
268 | consumerd32_bin = bin; | |
7753dea8 | 269 | } |
fc7a59ce AM |
270 | bin = getenv("LTTNG_CONSUMERD64_BIN"); |
271 | if (bin) { | |
272 | consumerd64_bin = bin; | |
ebaeda94 | 273 | } |
72f579ee | 274 | libdir = getenv("LTTNG_CONSUMERD32_LIBDIR"); |
ebaeda94 MD |
275 | if (libdir) { |
276 | consumerd32_libdir = libdir; | |
277 | } | |
72f579ee | 278 | libdir = getenv("LTTNG_CONSUMERD64_LIBDIR"); |
ebaeda94 MD |
279 | if (libdir) { |
280 | consumerd64_libdir = libdir; | |
fb09408a MD |
281 | } |
282 | } | |
283 | ||
5eb91c98 DG |
284 | /* |
285 | * Create a poll set with O_CLOEXEC and add the thread quit pipe to the set. | |
286 | */ | |
287 | static int create_thread_poll_set(struct lttng_poll_event *events, | |
288 | unsigned int size) | |
289 | { | |
290 | int ret; | |
291 | ||
292 | if (events == NULL || size == 0) { | |
293 | ret = -1; | |
294 | goto error; | |
295 | } | |
296 | ||
297 | ret = lttng_poll_create(events, size, LTTNG_CLOEXEC); | |
298 | if (ret < 0) { | |
299 | goto error; | |
300 | } | |
301 | ||
302 | /* Add quit pipe */ | |
303 | ret = lttng_poll_add(events, thread_quit_pipe[0], LPOLLIN); | |
304 | if (ret < 0) { | |
305 | goto error; | |
306 | } | |
307 | ||
308 | return 0; | |
309 | ||
310 | error: | |
311 | return ret; | |
312 | } | |
313 | ||
314 | /* | |
315 | * Check if the thread quit pipe was triggered. | |
316 | * | |
317 | * Return 1 if it was triggered else 0; | |
318 | */ | |
319 | static int check_thread_quit_pipe(int fd, uint32_t events) | |
320 | { | |
321 | if (fd == thread_quit_pipe[0] && (events & LPOLLIN)) { | |
322 | return 1; | |
323 | } | |
324 | ||
325 | return 0; | |
326 | } | |
327 | ||
0fdd1e2c DG |
328 | /* |
329 | * Return group ID of the tracing group or -1 if not found. | |
330 | */ | |
996b65c8 MD |
331 | static gid_t allowed_group(void) |
332 | { | |
333 | struct group *grp; | |
334 | ||
274e143b MD |
335 | if (opt_tracing_group) { |
336 | grp = getgrnam(opt_tracing_group); | |
337 | } else { | |
338 | grp = getgrnam(default_tracing_group); | |
339 | } | |
996b65c8 MD |
340 | if (!grp) { |
341 | return -1; | |
342 | } else { | |
343 | return grp->gr_gid; | |
344 | } | |
345 | } | |
346 | ||
273ea72c | 347 | /* |
5eb91c98 | 348 | * Init thread quit pipe. |
273ea72c DG |
349 | * |
350 | * Return -1 on error or 0 if all pipes are created. | |
351 | */ | |
352 | static int init_thread_quit_pipe(void) | |
353 | { | |
730389d9 | 354 | int ret, i; |
273ea72c | 355 | |
730389d9 | 356 | ret = pipe(thread_quit_pipe); |
273ea72c | 357 | if (ret < 0) { |
730389d9 | 358 | PERROR("thread quit pipe"); |
273ea72c DG |
359 | goto error; |
360 | } | |
361 | ||
730389d9 DG |
362 | for (i = 0; i < 2; i++) { |
363 | ret = fcntl(thread_quit_pipe[i], F_SETFD, FD_CLOEXEC); | |
364 | if (ret < 0) { | |
365 | PERROR("fcntl"); | |
366 | goto error; | |
367 | } | |
368 | } | |
369 | ||
273ea72c DG |
370 | error: |
371 | return ret; | |
372 | } | |
373 | ||
099e26bd DG |
374 | /* |
375 | * Stop all threads by closing the thread quit pipe. | |
376 | */ | |
cf3af59e MD |
377 | static void stop_threads(void) |
378 | { | |
5eb91c98 DG |
379 | int ret; |
380 | ||
cf3af59e MD |
381 | /* Stopping all threads */ |
382 | DBG("Terminating all threads"); | |
54d01ffb | 383 | ret = notify_thread_pipe(thread_quit_pipe[1]); |
5eb91c98 DG |
384 | if (ret < 0) { |
385 | ERR("write error on thread quit pipe"); | |
386 | } | |
387 | ||
099e26bd | 388 | /* Dispatch thread */ |
26c9d55e | 389 | CMM_STORE_SHARED(dispatch_thread_exit, 1); |
099e26bd | 390 | futex_nto1_wake(&ust_cmd_queue.futex); |
cf3af59e MD |
391 | } |
392 | ||
fac6795d | 393 | /* |
d063d709 | 394 | * Cleanup the daemon |
fac6795d | 395 | */ |
cf3af59e | 396 | static void cleanup(void) |
fac6795d | 397 | { |
ef599319 | 398 | int ret; |
6620da75 | 399 | char *cmd = NULL; |
af9737e9 | 400 | struct ltt_session *sess, *stmp; |
fac6795d | 401 | |
1d4b027a | 402 | DBG("Cleaning up"); |
e07ae692 | 403 | |
2f77fc4b DG |
404 | /* First thing first, stop all threads */ |
405 | utils_close_pipe(thread_quit_pipe); | |
406 | ||
67e40797 DG |
407 | DBG("Removing %s directory", rundir); |
408 | ret = asprintf(&cmd, "rm -rf %s", rundir); | |
409 | if (ret < 0) { | |
410 | ERR("asprintf failed. Something is really wrong!"); | |
411 | } | |
5461b305 | 412 | |
67e40797 DG |
413 | /* Remove lttng run directory */ |
414 | ret = system(cmd); | |
415 | if (ret < 0) { | |
416 | ERR("Unable to clean %s", rundir); | |
1d4b027a | 417 | } |
67e40797 | 418 | free(cmd); |
bd69add2 | 419 | free(rundir); |
5461b305 | 420 | |
99bab54f | 421 | DBG("Cleaning up all sessions"); |
fac6795d | 422 | |
b5541356 | 423 | /* Destroy session list mutex */ |
273ea72c DG |
424 | if (session_list_ptr != NULL) { |
425 | pthread_mutex_destroy(&session_list_ptr->lock); | |
426 | ||
427 | /* Cleanup ALL session */ | |
54d01ffb DG |
428 | cds_list_for_each_entry_safe(sess, stmp, |
429 | &session_list_ptr->head, list) { | |
2f77fc4b | 430 | cmd_destroy_session(sess, kernel_poll_pipe[1]); |
273ea72c DG |
431 | } |
432 | } | |
433 | ||
099e26bd | 434 | DBG("Closing all UST sockets"); |
56fff090 | 435 | ust_app_clean_list(); |
099e26bd | 436 | |
4fba7219 DG |
437 | if (is_root && !opt_no_kernel) { |
438 | DBG2("Closing kernel fd"); | |
a4b35e07 | 439 | if (kernel_tracer_fd >= 0) { |
76d7553f MD |
440 | ret = close(kernel_tracer_fd); |
441 | if (ret) { | |
442 | PERROR("close"); | |
443 | } | |
a4b35e07 | 444 | } |
2f50c8a3 | 445 | DBG("Unloading kernel modules"); |
096102bd | 446 | modprobe_remove_lttng_all(); |
2f50c8a3 | 447 | } |
2f77fc4b | 448 | |
421cb601 | 449 | /* <fun> */ |
f56a39af | 450 | DBG("%c[%d;%dm*** assert failed :-) *** ==> %c[%dm%c[%d;%dm" |
421cb601 DG |
451 | "Matthew, BEET driven development works!%c[%dm", |
452 | 27, 1, 31, 27, 0, 27, 1, 33, 27, 0); | |
453 | /* </fun> */ | |
fac6795d DG |
454 | } |
455 | ||
e065084a | 456 | /* |
d063d709 | 457 | * Send data on a unix socket using the liblttsessiondcomm API. |
e065084a | 458 | * |
d063d709 | 459 | * Return lttcomm error code. |
e065084a DG |
460 | */ |
461 | static int send_unix_sock(int sock, void *buf, size_t len) | |
462 | { | |
463 | /* Check valid length */ | |
464 | if (len <= 0) { | |
465 | return -1; | |
466 | } | |
467 | ||
468 | return lttcomm_send_unix_sock(sock, buf, len); | |
469 | } | |
470 | ||
5461b305 | 471 | /* |
d063d709 | 472 | * Free memory of a command context structure. |
5461b305 | 473 | */ |
a2fb29a5 | 474 | static void clean_command_ctx(struct command_ctx **cmd_ctx) |
5461b305 | 475 | { |
a2fb29a5 DG |
476 | DBG("Clean command context structure"); |
477 | if (*cmd_ctx) { | |
478 | if ((*cmd_ctx)->llm) { | |
479 | free((*cmd_ctx)->llm); | |
5461b305 | 480 | } |
a2fb29a5 DG |
481 | if ((*cmd_ctx)->lsm) { |
482 | free((*cmd_ctx)->lsm); | |
5461b305 | 483 | } |
a2fb29a5 DG |
484 | free(*cmd_ctx); |
485 | *cmd_ctx = NULL; | |
5461b305 DG |
486 | } |
487 | } | |
488 | ||
fac6795d | 489 | /* |
0fdd1e2c | 490 | * Notify UST applications using the shm mmap futex. |
fac6795d | 491 | */ |
0fdd1e2c | 492 | static int notify_ust_apps(int active) |
fac6795d | 493 | { |
0fdd1e2c | 494 | char *wait_shm_mmap; |
fac6795d | 495 | |
0fdd1e2c | 496 | DBG("Notifying applications of session daemon state: %d", active); |
e07ae692 | 497 | |
0fdd1e2c DG |
498 | /* See shm.c for this call implying mmap, shm and futex calls */ |
499 | wait_shm_mmap = shm_ust_get_mmap(wait_shm_path, is_root); | |
500 | if (wait_shm_mmap == NULL) { | |
fac6795d DG |
501 | goto error; |
502 | } | |
503 | ||
0fdd1e2c DG |
504 | /* Wake waiting process */ |
505 | futex_wait_update((int32_t *) wait_shm_mmap, active); | |
506 | ||
507 | /* Apps notified successfully */ | |
508 | return 0; | |
fac6795d DG |
509 | |
510 | error: | |
0fdd1e2c | 511 | return -1; |
fac6795d DG |
512 | } |
513 | ||
e065084a | 514 | /* |
d063d709 DG |
515 | * Setup the outgoing data buffer for the response (llm) by allocating the |
516 | * right amount of memory and copying the original information from the lsm | |
517 | * structure. | |
ca95a216 | 518 | * |
d063d709 | 519 | * Return total size of the buffer pointed by buf. |
ca95a216 | 520 | */ |
5461b305 | 521 | static int setup_lttng_msg(struct command_ctx *cmd_ctx, size_t size) |
ca95a216 | 522 | { |
f3ed775e | 523 | int ret, buf_size; |
ca95a216 | 524 | |
f3ed775e | 525 | buf_size = size; |
5461b305 | 526 | |
ba7f0ae5 | 527 | cmd_ctx->llm = zmalloc(sizeof(struct lttcomm_lttng_msg) + buf_size); |
5461b305 | 528 | if (cmd_ctx->llm == NULL) { |
76d7553f | 529 | PERROR("zmalloc"); |
5461b305 | 530 | ret = -ENOMEM; |
ca95a216 DG |
531 | goto error; |
532 | } | |
533 | ||
5461b305 DG |
534 | /* Copy common data */ |
535 | cmd_ctx->llm->cmd_type = cmd_ctx->lsm->cmd_type; | |
9f19cc17 | 536 | cmd_ctx->llm->pid = cmd_ctx->lsm->domain.attr.pid; |
5461b305 | 537 | |
5461b305 DG |
538 | cmd_ctx->llm->data_size = size; |
539 | cmd_ctx->lttng_msg_size = sizeof(struct lttcomm_lttng_msg) + buf_size; | |
540 | ||
ca95a216 DG |
541 | return buf_size; |
542 | ||
543 | error: | |
544 | return ret; | |
545 | } | |
546 | ||
7a485870 | 547 | /* |
5eb91c98 | 548 | * Update the kernel poll set of all channel fd available over all tracing |
d063d709 | 549 | * session. Add the wakeup pipe at the end of the set. |
7a485870 | 550 | */ |
5eb91c98 | 551 | static int update_kernel_poll(struct lttng_poll_event *events) |
7a485870 | 552 | { |
5eb91c98 | 553 | int ret; |
7a485870 DG |
554 | struct ltt_session *session; |
555 | struct ltt_kernel_channel *channel; | |
556 | ||
5eb91c98 | 557 | DBG("Updating kernel poll set"); |
7a485870 | 558 | |
54d01ffb | 559 | session_lock_list(); |
b5541356 | 560 | cds_list_for_each_entry(session, &session_list_ptr->head, list) { |
54d01ffb | 561 | session_lock(session); |
7a485870 | 562 | if (session->kernel_session == NULL) { |
54d01ffb | 563 | session_unlock(session); |
7a485870 DG |
564 | continue; |
565 | } | |
7a485870 | 566 | |
54d01ffb DG |
567 | cds_list_for_each_entry(channel, |
568 | &session->kernel_session->channel_list.head, list) { | |
5eb91c98 DG |
569 | /* Add channel fd to the kernel poll set */ |
570 | ret = lttng_poll_add(events, channel->fd, LPOLLIN | LPOLLRDNORM); | |
571 | if (ret < 0) { | |
54d01ffb | 572 | session_unlock(session); |
5eb91c98 DG |
573 | goto error; |
574 | } | |
575 | DBG("Channel fd %d added to kernel set", channel->fd); | |
7a485870 | 576 | } |
54d01ffb | 577 | session_unlock(session); |
7a485870 | 578 | } |
54d01ffb | 579 | session_unlock_list(); |
7a485870 | 580 | |
5eb91c98 | 581 | return 0; |
7a485870 DG |
582 | |
583 | error: | |
54d01ffb | 584 | session_unlock_list(); |
7a485870 DG |
585 | return -1; |
586 | } | |
587 | ||
588 | /* | |
54d01ffb | 589 | * Find the channel fd from 'fd' over all tracing session. When found, check |
d063d709 | 590 | * for new channel stream and send those stream fds to the kernel consumer. |
7a485870 | 591 | * |
d063d709 | 592 | * Useful for CPU hotplug feature. |
7a485870 | 593 | */ |
2bdd86d4 | 594 | static int update_kernel_stream(struct consumer_data *consumer_data, int fd) |
7a485870 DG |
595 | { |
596 | int ret = 0; | |
597 | struct ltt_session *session; | |
173af62f | 598 | struct ltt_kernel_session *ksess; |
7a485870 DG |
599 | struct ltt_kernel_channel *channel; |
600 | ||
601 | DBG("Updating kernel streams for channel fd %d", fd); | |
602 | ||
54d01ffb | 603 | session_lock_list(); |
b5541356 | 604 | cds_list_for_each_entry(session, &session_list_ptr->head, list) { |
54d01ffb | 605 | session_lock(session); |
7a485870 | 606 | if (session->kernel_session == NULL) { |
54d01ffb | 607 | session_unlock(session); |
7a485870 DG |
608 | continue; |
609 | } | |
173af62f | 610 | ksess = session->kernel_session; |
d9800920 | 611 | |
173af62f | 612 | cds_list_for_each_entry(channel, &ksess->channel_list.head, list) { |
7a485870 DG |
613 | if (channel->fd == fd) { |
614 | DBG("Channel found, updating kernel streams"); | |
615 | ret = kernel_open_channel_stream(channel); | |
616 | if (ret < 0) { | |
b3c750d2 | 617 | goto error; |
7a485870 | 618 | } |
d9800920 | 619 | |
7a485870 | 620 | /* |
5eb91c98 DG |
621 | * Have we already sent fds to the consumer? If yes, it means |
622 | * that tracing is started so it is safe to send our updated | |
623 | * stream fds. | |
7a485870 | 624 | */ |
173af62f DG |
625 | if (ksess->consumer_fds_sent == 1 && ksess->consumer != NULL) { |
626 | struct lttng_ht_iter iter; | |
627 | struct consumer_socket *socket; | |
628 | ||
629 | ||
630 | cds_lfht_for_each_entry(ksess->consumer->socks->ht, | |
631 | &iter.iter, socket, node.node) { | |
632 | /* Code flow error */ | |
633 | assert(socket->fd >= 0); | |
634 | ||
635 | pthread_mutex_lock(socket->lock); | |
636 | ret = kernel_consumer_send_channel_stream(socket->fd, | |
637 | channel, ksess); | |
638 | pthread_mutex_unlock(socket->lock); | |
639 | if (ret < 0) { | |
640 | goto error; | |
641 | } | |
7a485870 DG |
642 | } |
643 | } | |
b3c750d2 | 644 | goto error; |
7a485870 DG |
645 | } |
646 | } | |
54d01ffb | 647 | session_unlock(session); |
7a485870 | 648 | } |
54d01ffb | 649 | session_unlock_list(); |
b3c750d2 | 650 | return ret; |
7a485870 | 651 | |
b3c750d2 | 652 | error: |
54d01ffb DG |
653 | session_unlock(session); |
654 | session_unlock_list(); | |
7a485870 DG |
655 | return ret; |
656 | } | |
657 | ||
487cf67c DG |
658 | /* |
659 | * For each tracing session, update newly registered apps. | |
660 | */ | |
661 | static void update_ust_app(int app_sock) | |
662 | { | |
663 | struct ltt_session *sess, *stmp; | |
664 | ||
4ee14516 DG |
665 | session_lock_list(); |
666 | ||
487cf67c DG |
667 | /* For all tracing session(s) */ |
668 | cds_list_for_each_entry_safe(sess, stmp, &session_list_ptr->head, list) { | |
4ee14516 | 669 | session_lock(sess); |
421cb601 DG |
670 | if (sess->ust_session) { |
671 | ust_app_global_update(sess->ust_session, app_sock); | |
672 | } | |
4ee14516 | 673 | session_unlock(sess); |
487cf67c | 674 | } |
4ee14516 DG |
675 | |
676 | session_unlock_list(); | |
487cf67c DG |
677 | } |
678 | ||
7a485870 | 679 | /* |
d063d709 | 680 | * This thread manage event coming from the kernel. |
7a485870 | 681 | * |
d063d709 DG |
682 | * Features supported in this thread: |
683 | * -) CPU Hotplug | |
7a485870 DG |
684 | */ |
685 | static void *thread_manage_kernel(void *data) | |
686 | { | |
139ac872 | 687 | int ret, i, pollfd, update_poll_flag = 1, err = -1; |
5eb91c98 | 688 | uint32_t revents, nb_fd; |
7a485870 | 689 | char tmp; |
5eb91c98 | 690 | struct lttng_poll_event events; |
7a485870 DG |
691 | |
692 | DBG("Thread manage kernel started"); | |
693 | ||
8ac94142 CB |
694 | testpoint(thread_manage_kernel); |
695 | ||
44a5e5eb DG |
696 | health_code_update(&health_thread_kernel); |
697 | ||
8ac94142 CB |
698 | testpoint(thread_manage_kernel_before_loop); |
699 | ||
5eb91c98 DG |
700 | ret = create_thread_poll_set(&events, 2); |
701 | if (ret < 0) { | |
76d7553f | 702 | goto error_poll_create; |
5eb91c98 DG |
703 | } |
704 | ||
705 | ret = lttng_poll_add(&events, kernel_poll_pipe[0], LPOLLIN); | |
706 | if (ret < 0) { | |
707 | goto error; | |
708 | } | |
709 | ||
7a485870 | 710 | while (1) { |
44a5e5eb DG |
711 | health_code_update(&health_thread_kernel); |
712 | ||
7a485870 | 713 | if (update_poll_flag == 1) { |
5f822d0a DG |
714 | /* |
715 | * Reset number of fd in the poll set. Always 2 since there is the thread | |
716 | * quit pipe and the kernel pipe. | |
717 | */ | |
718 | events.nb_fd = 2; | |
719 | ||
5eb91c98 DG |
720 | ret = update_kernel_poll(&events); |
721 | if (ret < 0) { | |
7a485870 DG |
722 | goto error; |
723 | } | |
724 | update_poll_flag = 0; | |
725 | } | |
726 | ||
5eb91c98 DG |
727 | nb_fd = LTTNG_POLL_GETNB(&events); |
728 | ||
729 | DBG("Thread kernel polling on %d fds", nb_fd); | |
730 | ||
731 | /* Zeroed the poll events */ | |
732 | lttng_poll_reset(&events); | |
7a485870 DG |
733 | |
734 | /* Poll infinite value of time */ | |
88f2b785 | 735 | restart: |
44a5e5eb | 736 | health_poll_update(&health_thread_kernel); |
5eb91c98 | 737 | ret = lttng_poll_wait(&events, -1); |
44a5e5eb | 738 | health_poll_update(&health_thread_kernel); |
7a485870 | 739 | if (ret < 0) { |
88f2b785 MD |
740 | /* |
741 | * Restart interrupted system call. | |
742 | */ | |
743 | if (errno == EINTR) { | |
744 | goto restart; | |
745 | } | |
7a485870 DG |
746 | goto error; |
747 | } else if (ret == 0) { | |
748 | /* Should not happen since timeout is infinite */ | |
85611738 DG |
749 | ERR("Return value of poll is 0 with an infinite timeout.\n" |
750 | "This should not have happened! Continuing..."); | |
7a485870 DG |
751 | continue; |
752 | } | |
753 | ||
5eb91c98 DG |
754 | for (i = 0; i < nb_fd; i++) { |
755 | /* Fetch once the poll data */ | |
756 | revents = LTTNG_POLL_GETEV(&events, i); | |
757 | pollfd = LTTNG_POLL_GETFD(&events, i); | |
7a485870 | 758 | |
44a5e5eb DG |
759 | health_code_update(&health_thread_kernel); |
760 | ||
5eb91c98 DG |
761 | /* Thread quit pipe has been closed. Killing thread. */ |
762 | ret = check_thread_quit_pipe(pollfd, revents); | |
763 | if (ret) { | |
139ac872 MD |
764 | err = 0; |
765 | goto exit; | |
5eb91c98 | 766 | } |
7a485870 | 767 | |
5eb91c98 DG |
768 | /* Check for data on kernel pipe */ |
769 | if (pollfd == kernel_poll_pipe[0] && (revents & LPOLLIN)) { | |
770 | ret = read(kernel_poll_pipe[0], &tmp, 1); | |
771 | update_poll_flag = 1; | |
772 | continue; | |
773 | } else { | |
774 | /* | |
775 | * New CPU detected by the kernel. Adding kernel stream to | |
776 | * kernel session and updating the kernel consumer | |
777 | */ | |
778 | if (revents & LPOLLIN) { | |
2bdd86d4 | 779 | ret = update_kernel_stream(&kconsumer_data, pollfd); |
5eb91c98 DG |
780 | if (ret < 0) { |
781 | continue; | |
782 | } | |
783 | break; | |
784 | /* | |
785 | * TODO: We might want to handle the LPOLLERR | LPOLLHUP | |
786 | * and unregister kernel stream at this point. | |
787 | */ | |
7a485870 | 788 | } |
7a485870 DG |
789 | } |
790 | } | |
791 | } | |
792 | ||
139ac872 | 793 | exit: |
7a485870 | 794 | error: |
5eb91c98 | 795 | lttng_poll_clean(&events); |
76d7553f | 796 | error_poll_create: |
6620da75 DG |
797 | utils_close_pipe(kernel_poll_pipe); |
798 | kernel_poll_pipe[0] = kernel_poll_pipe[1] = -1; | |
139ac872 MD |
799 | if (err) { |
800 | health_error(&health_thread_kernel); | |
801 | ERR("Health error occurred in %s", __func__); | |
6620da75 DG |
802 | WARN("Kernel thread died unexpectedly. " |
803 | "Kernel tracing can continue but CPU hotplug is disabled."); | |
139ac872 MD |
804 | } |
805 | health_exit(&health_thread_kernel); | |
76d7553f | 806 | DBG("Kernel thread dying"); |
7a485870 DG |
807 | return NULL; |
808 | } | |
809 | ||
a23ec3a7 DG |
810 | /* |
811 | * Signal pthread condition of the consumer data that the thread. | |
812 | */ | |
813 | static void signal_consumer_condition(struct consumer_data *data, int state) | |
814 | { | |
815 | pthread_mutex_lock(&data->cond_mutex); | |
816 | ||
817 | /* | |
818 | * The state is set before signaling. It can be any value, it's the waiter | |
819 | * job to correctly interpret this condition variable associated to the | |
820 | * consumer pthread_cond. | |
821 | * | |
822 | * A value of 0 means that the corresponding thread of the consumer data | |
823 | * was not started. 1 indicates that the thread has started and is ready | |
824 | * for action. A negative value means that there was an error during the | |
825 | * thread bootstrap. | |
826 | */ | |
827 | data->consumer_thread_is_ready = state; | |
828 | (void) pthread_cond_signal(&data->cond); | |
829 | ||
830 | pthread_mutex_unlock(&data->cond_mutex); | |
831 | } | |
832 | ||
1d4b027a | 833 | /* |
3bd1e081 | 834 | * This thread manage the consumer error sent back to the session daemon. |
1d4b027a | 835 | */ |
3bd1e081 | 836 | static void *thread_manage_consumer(void *data) |
1d4b027a | 837 | { |
139ac872 | 838 | int sock = -1, i, ret, pollfd, err = -1; |
5eb91c98 | 839 | uint32_t revents, nb_fd; |
1d4b027a | 840 | enum lttcomm_return_code code; |
5eb91c98 | 841 | struct lttng_poll_event events; |
3bd1e081 | 842 | struct consumer_data *consumer_data = data; |
1d4b027a | 843 | |
3bd1e081 | 844 | DBG("[thread] Manage consumer started"); |
1d4b027a | 845 | |
9449cc75 DG |
846 | /* |
847 | * Since the consumer thread can be spawned at any moment in time, we init | |
848 | * the health to a poll status (1, which is a valid health over time). | |
849 | * When the thread starts, we update here the health to a "code" path being | |
850 | * an even value so this thread, when reaching a poll wait, does not | |
851 | * trigger an error with an even value. | |
852 | * | |
853 | * Here is the use case we avoid. | |
854 | * | |
855 | * +1: the first poll update during initialization (main()) | |
856 | * +2 * x: multiple code update once in this thread. | |
857 | * +1: poll wait in this thread (being a good health state). | |
858 | * == even number which after the wait period shows as a bad health. | |
859 | * | |
860 | * In a nutshell, the following poll update to the health state brings back | |
861 | * the state to an even value meaning a code path. | |
862 | */ | |
863 | health_poll_update(&consumer_data->health); | |
864 | ||
5eb91c98 DG |
865 | /* |
866 | * Pass 2 as size here for the thread quit pipe and kconsumerd_err_sock. | |
867 | * Nothing more will be added to this poll set. | |
868 | */ | |
869 | ret = create_thread_poll_set(&events, 2); | |
870 | if (ret < 0) { | |
76d7553f | 871 | goto error_poll; |
5eb91c98 | 872 | } |
273ea72c | 873 | |
edb8b045 DG |
874 | /* |
875 | * The error socket here is already in a listening state which was done | |
876 | * just before spawning this thread to avoid a race between the consumer | |
877 | * daemon exec trying to connect and the listen() call. | |
878 | */ | |
3bd1e081 | 879 | ret = lttng_poll_add(&events, consumer_data->err_sock, LPOLLIN | LPOLLRDHUP); |
5eb91c98 DG |
880 | if (ret < 0) { |
881 | goto error; | |
882 | } | |
883 | ||
884 | nb_fd = LTTNG_POLL_GETNB(&events); | |
273ea72c | 885 | |
44a5e5eb DG |
886 | health_code_update(&consumer_data->health); |
887 | ||
273ea72c | 888 | /* Inifinite blocking call, waiting for transmission */ |
88f2b785 | 889 | restart: |
44a5e5eb | 890 | health_poll_update(&consumer_data->health); |
8ac94142 CB |
891 | |
892 | testpoint(thread_manage_consumer); | |
893 | ||
5eb91c98 | 894 | ret = lttng_poll_wait(&events, -1); |
44a5e5eb | 895 | health_poll_update(&consumer_data->health); |
273ea72c | 896 | if (ret < 0) { |
88f2b785 MD |
897 | /* |
898 | * Restart interrupted system call. | |
899 | */ | |
900 | if (errno == EINTR) { | |
901 | goto restart; | |
902 | } | |
273ea72c DG |
903 | goto error; |
904 | } | |
905 | ||
5eb91c98 DG |
906 | for (i = 0; i < nb_fd; i++) { |
907 | /* Fetch once the poll data */ | |
908 | revents = LTTNG_POLL_GETEV(&events, i); | |
909 | pollfd = LTTNG_POLL_GETFD(&events, i); | |
910 | ||
44a5e5eb DG |
911 | health_code_update(&consumer_data->health); |
912 | ||
5eb91c98 DG |
913 | /* Thread quit pipe has been closed. Killing thread. */ |
914 | ret = check_thread_quit_pipe(pollfd, revents); | |
915 | if (ret) { | |
139ac872 MD |
916 | err = 0; |
917 | goto exit; | |
5eb91c98 DG |
918 | } |
919 | ||
920 | /* Event on the registration socket */ | |
3bd1e081 | 921 | if (pollfd == consumer_data->err_sock) { |
5eb91c98 | 922 | if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) { |
3bd1e081 | 923 | ERR("consumer err socket poll error"); |
5eb91c98 DG |
924 | goto error; |
925 | } | |
926 | } | |
273ea72c DG |
927 | } |
928 | ||
3bd1e081 | 929 | sock = lttcomm_accept_unix_sock(consumer_data->err_sock); |
1d4b027a DG |
930 | if (sock < 0) { |
931 | goto error; | |
932 | } | |
933 | ||
b662582b DG |
934 | /* |
935 | * Set the CLOEXEC flag. Return code is useless because either way, the | |
936 | * show must go on. | |
937 | */ | |
938 | (void) utils_set_fd_cloexec(sock); | |
939 | ||
44a5e5eb DG |
940 | health_code_update(&consumer_data->health); |
941 | ||
3bd1e081 | 942 | DBG2("Receiving code from consumer err_sock"); |
ee0b0061 | 943 | |
712ea556 | 944 | /* Getting status code from kconsumerd */ |
54d01ffb DG |
945 | ret = lttcomm_recv_unix_sock(sock, &code, |
946 | sizeof(enum lttcomm_return_code)); | |
1d4b027a DG |
947 | if (ret <= 0) { |
948 | goto error; | |
949 | } | |
950 | ||
44a5e5eb DG |
951 | health_code_update(&consumer_data->health); |
952 | ||
f73fabfd | 953 | if (code == LTTCOMM_CONSUMERD_COMMAND_SOCK_READY) { |
3bd1e081 MD |
954 | consumer_data->cmd_sock = |
955 | lttcomm_connect_unix_sock(consumer_data->cmd_unix_sock_path); | |
956 | if (consumer_data->cmd_sock < 0) { | |
a23ec3a7 DG |
957 | /* On error, signal condition and quit. */ |
958 | signal_consumer_condition(consumer_data, -1); | |
48842b30 | 959 | PERROR("consumer connect"); |
1d4b027a DG |
960 | goto error; |
961 | } | |
a23ec3a7 DG |
962 | signal_consumer_condition(consumer_data, 1); |
963 | DBG("Consumer command socket ready"); | |
1d4b027a | 964 | } else { |
3bd1e081 | 965 | ERR("consumer error when waiting for SOCK_READY : %s", |
1d4b027a DG |
966 | lttcomm_get_readable_code(-code)); |
967 | goto error; | |
968 | } | |
969 | ||
54d01ffb | 970 | /* Remove the kconsumerd error sock since we've established a connexion */ |
3bd1e081 | 971 | ret = lttng_poll_del(&events, consumer_data->err_sock); |
72079cae | 972 | if (ret < 0) { |
72079cae DG |
973 | goto error; |
974 | } | |
975 | ||
5eb91c98 DG |
976 | ret = lttng_poll_add(&events, sock, LPOLLIN | LPOLLRDHUP); |
977 | if (ret < 0) { | |
72079cae | 978 | goto error; |
5eb91c98 DG |
979 | } |
980 | ||
44a5e5eb DG |
981 | health_code_update(&consumer_data->health); |
982 | ||
5eb91c98 DG |
983 | /* Update number of fd */ |
984 | nb_fd = LTTNG_POLL_GETNB(&events); | |
985 | ||
986 | /* Inifinite blocking call, waiting for transmission */ | |
88f2b785 | 987 | restart_poll: |
44a5e5eb | 988 | health_poll_update(&consumer_data->health); |
5eb91c98 | 989 | ret = lttng_poll_wait(&events, -1); |
44a5e5eb | 990 | health_poll_update(&consumer_data->health); |
5eb91c98 | 991 | if (ret < 0) { |
88f2b785 MD |
992 | /* |
993 | * Restart interrupted system call. | |
994 | */ | |
995 | if (errno == EINTR) { | |
996 | goto restart_poll; | |
997 | } | |
72079cae DG |
998 | goto error; |
999 | } | |
1000 | ||
5eb91c98 DG |
1001 | for (i = 0; i < nb_fd; i++) { |
1002 | /* Fetch once the poll data */ | |
1003 | revents = LTTNG_POLL_GETEV(&events, i); | |
1004 | pollfd = LTTNG_POLL_GETFD(&events, i); | |
1005 | ||
44a5e5eb DG |
1006 | health_code_update(&consumer_data->health); |
1007 | ||
5eb91c98 DG |
1008 | /* Thread quit pipe has been closed. Killing thread. */ |
1009 | ret = check_thread_quit_pipe(pollfd, revents); | |
1010 | if (ret) { | |
139ac872 MD |
1011 | err = 0; |
1012 | goto exit; | |
5eb91c98 DG |
1013 | } |
1014 | ||
1015 | /* Event on the kconsumerd socket */ | |
1016 | if (pollfd == sock) { | |
1017 | if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) { | |
3bd1e081 | 1018 | ERR("consumer err socket second poll error"); |
5eb91c98 DG |
1019 | goto error; |
1020 | } | |
1021 | } | |
1022 | } | |
1023 | ||
44a5e5eb DG |
1024 | health_code_update(&consumer_data->health); |
1025 | ||
712ea556 | 1026 | /* Wait for any kconsumerd error */ |
54d01ffb DG |
1027 | ret = lttcomm_recv_unix_sock(sock, &code, |
1028 | sizeof(enum lttcomm_return_code)); | |
712ea556 | 1029 | if (ret <= 0) { |
3bd1e081 | 1030 | ERR("consumer closed the command socket"); |
712ea556 | 1031 | goto error; |
6f61d021 | 1032 | } |
1d4b027a | 1033 | |
3bd1e081 | 1034 | ERR("consumer return code : %s", lttcomm_get_readable_code(-code)); |
712ea556 | 1035 | |
139ac872 | 1036 | exit: |
1d4b027a | 1037 | error: |
5c827ce0 DG |
1038 | /* Immediately set the consumerd state to stopped */ |
1039 | if (consumer_data->type == LTTNG_CONSUMER_KERNEL) { | |
1040 | uatomic_set(&kernel_consumerd_state, CONSUMER_ERROR); | |
1041 | } else if (consumer_data->type == LTTNG_CONSUMER64_UST || | |
1042 | consumer_data->type == LTTNG_CONSUMER32_UST) { | |
1043 | uatomic_set(&ust_consumerd_state, CONSUMER_ERROR); | |
1044 | } else { | |
1045 | /* Code flow error... */ | |
1046 | assert(0); | |
1047 | } | |
1048 | ||
76d7553f MD |
1049 | if (consumer_data->err_sock >= 0) { |
1050 | ret = close(consumer_data->err_sock); | |
1051 | if (ret) { | |
1052 | PERROR("close"); | |
1053 | } | |
1054 | } | |
1055 | if (consumer_data->cmd_sock >= 0) { | |
1056 | ret = close(consumer_data->cmd_sock); | |
1057 | if (ret) { | |
1058 | PERROR("close"); | |
1059 | } | |
1060 | } | |
1061 | if (sock >= 0) { | |
1062 | ret = close(sock); | |
1063 | if (ret) { | |
1064 | PERROR("close"); | |
1065 | } | |
1066 | } | |
273ea72c | 1067 | |
3bd1e081 MD |
1068 | unlink(consumer_data->err_unix_sock_path); |
1069 | unlink(consumer_data->cmd_unix_sock_path); | |
1070 | consumer_data->pid = 0; | |
1d4b027a | 1071 | |
5eb91c98 | 1072 | lttng_poll_clean(&events); |
76d7553f | 1073 | error_poll: |
139ac872 MD |
1074 | if (err) { |
1075 | health_error(&consumer_data->health); | |
1076 | ERR("Health error occurred in %s", __func__); | |
1077 | } | |
1078 | health_exit(&consumer_data->health); | |
76d7553f | 1079 | DBG("consumer thread cleanup completed"); |
0177d773 | 1080 | |
5eb91c98 | 1081 | return NULL; |
099e26bd DG |
1082 | } |
1083 | ||
099e26bd DG |
1084 | /* |
1085 | * This thread manage application communication. | |
1d4b027a DG |
1086 | */ |
1087 | static void *thread_manage_apps(void *data) | |
099e26bd | 1088 | { |
139ac872 | 1089 | int i, ret, pollfd, err = -1; |
5eb91c98 | 1090 | uint32_t revents, nb_fd; |
099e26bd | 1091 | struct ust_command ust_cmd; |
5eb91c98 | 1092 | struct lttng_poll_event events; |
099e26bd DG |
1093 | |
1094 | DBG("[thread] Manage application started"); | |
1095 | ||
8ac94142 CB |
1096 | testpoint(thread_manage_apps); |
1097 | ||
f6a9efaa DG |
1098 | rcu_register_thread(); |
1099 | rcu_thread_online(); | |
1100 | ||
139ac872 | 1101 | health_code_update(&health_thread_app_manage); |
44a5e5eb | 1102 | |
5eb91c98 DG |
1103 | ret = create_thread_poll_set(&events, 2); |
1104 | if (ret < 0) { | |
76d7553f | 1105 | goto error_poll_create; |
5eb91c98 | 1106 | } |
099e26bd | 1107 | |
5eb91c98 DG |
1108 | ret = lttng_poll_add(&events, apps_cmd_pipe[0], LPOLLIN | LPOLLRDHUP); |
1109 | if (ret < 0) { | |
1110 | goto error; | |
1111 | } | |
099e26bd | 1112 | |
8ac94142 CB |
1113 | testpoint(thread_manage_apps_before_loop); |
1114 | ||
139ac872 | 1115 | health_code_update(&health_thread_app_manage); |
44a5e5eb | 1116 | |
5eb91c98 DG |
1117 | while (1) { |
1118 | /* Zeroed the events structure */ | |
1119 | lttng_poll_reset(&events); | |
0177d773 | 1120 | |
5eb91c98 | 1121 | nb_fd = LTTNG_POLL_GETNB(&events); |
099e26bd DG |
1122 | |
1123 | DBG("Apps thread polling on %d fds", nb_fd); | |
1124 | ||
1125 | /* Inifinite blocking call, waiting for transmission */ | |
88f2b785 | 1126 | restart: |
139ac872 | 1127 | health_poll_update(&health_thread_app_manage); |
5eb91c98 | 1128 | ret = lttng_poll_wait(&events, -1); |
139ac872 | 1129 | health_poll_update(&health_thread_app_manage); |
099e26bd | 1130 | if (ret < 0) { |
88f2b785 MD |
1131 | /* |
1132 | * Restart interrupted system call. | |
1133 | */ | |
1134 | if (errno == EINTR) { | |
1135 | goto restart; | |
1136 | } | |
099e26bd DG |
1137 | goto error; |
1138 | } | |
1139 | ||
5eb91c98 DG |
1140 | for (i = 0; i < nb_fd; i++) { |
1141 | /* Fetch once the poll data */ | |
1142 | revents = LTTNG_POLL_GETEV(&events, i); | |
1143 | pollfd = LTTNG_POLL_GETFD(&events, i); | |
1144 | ||
139ac872 | 1145 | health_code_update(&health_thread_app_manage); |
44a5e5eb | 1146 | |
5eb91c98 DG |
1147 | /* Thread quit pipe has been closed. Killing thread. */ |
1148 | ret = check_thread_quit_pipe(pollfd, revents); | |
1149 | if (ret) { | |
139ac872 MD |
1150 | err = 0; |
1151 | goto exit; | |
5eb91c98 | 1152 | } |
099e26bd | 1153 | |
5eb91c98 DG |
1154 | /* Inspect the apps cmd pipe */ |
1155 | if (pollfd == apps_cmd_pipe[0]) { | |
1156 | if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) { | |
1157 | ERR("Apps command pipe error"); | |
0177d773 | 1158 | goto error; |
5eb91c98 DG |
1159 | } else if (revents & LPOLLIN) { |
1160 | /* Empty pipe */ | |
1161 | ret = read(apps_cmd_pipe[0], &ust_cmd, sizeof(ust_cmd)); | |
1162 | if (ret < 0 || ret < sizeof(ust_cmd)) { | |
76d7553f | 1163 | PERROR("read apps cmd pipe"); |
5eb91c98 DG |
1164 | goto error; |
1165 | } | |
099e26bd | 1166 | |
139ac872 | 1167 | health_code_update(&health_thread_app_manage); |
44a5e5eb | 1168 | |
5eb91c98 | 1169 | /* Register applicaton to the session daemon */ |
56fff090 | 1170 | ret = ust_app_register(&ust_cmd.reg_msg, |
54d01ffb | 1171 | ust_cmd.sock); |
88ff5b7f | 1172 | if (ret == -ENOMEM) { |
5eb91c98 | 1173 | goto error; |
88ff5b7f MD |
1174 | } else if (ret < 0) { |
1175 | break; | |
5eb91c98 DG |
1176 | } |
1177 | ||
139ac872 | 1178 | health_code_update(&health_thread_app_manage); |
44a5e5eb | 1179 | |
acc7b41b | 1180 | /* |
e0c7ec2b | 1181 | * Validate UST version compatibility. |
acc7b41b | 1182 | */ |
e0c7ec2b DG |
1183 | ret = ust_app_validate_version(ust_cmd.sock); |
1184 | if (ret >= 0) { | |
1185 | /* | |
1186 | * Add channel(s) and event(s) to newly registered apps | |
1187 | * from lttng global UST domain. | |
1188 | */ | |
1189 | update_ust_app(ust_cmd.sock); | |
1190 | } | |
acc7b41b | 1191 | |
139ac872 | 1192 | health_code_update(&health_thread_app_manage); |
44a5e5eb | 1193 | |
f2ca2e25 | 1194 | ret = ust_app_register_done(ust_cmd.sock); |
5eb91c98 DG |
1195 | if (ret < 0) { |
1196 | /* | |
1197 | * If the registration is not possible, we simply | |
1198 | * unregister the apps and continue | |
1199 | */ | |
56fff090 | 1200 | ust_app_unregister(ust_cmd.sock); |
5eb91c98 DG |
1201 | } else { |
1202 | /* | |
622c9ecf DG |
1203 | * We only monitor the error events of the socket. This |
1204 | * thread does not handle any incoming data from UST | |
1205 | * (POLLIN). | |
5eb91c98 | 1206 | */ |
622c9ecf DG |
1207 | ret = lttng_poll_add(&events, ust_cmd.sock, |
1208 | LPOLLERR & LPOLLHUP & LPOLLRDHUP); | |
5eb91c98 DG |
1209 | if (ret < 0) { |
1210 | goto error; | |
1211 | } | |
1212 | ||
ae9e45b3 DG |
1213 | /* Set socket timeout for both receiving and ending */ |
1214 | (void) lttcomm_setsockopt_rcv_timeout(ust_cmd.sock, | |
1215 | app_socket_timeout); | |
1216 | (void) lttcomm_setsockopt_snd_timeout(ust_cmd.sock, | |
1217 | app_socket_timeout); | |
1218 | ||
54d01ffb DG |
1219 | DBG("Apps with sock %d added to poll set", |
1220 | ust_cmd.sock); | |
5eb91c98 | 1221 | } |
487cf67c | 1222 | |
139ac872 | 1223 | health_code_update(&health_thread_app_manage); |
44a5e5eb | 1224 | |
5eb91c98 | 1225 | break; |
0177d773 | 1226 | } |
5eb91c98 DG |
1227 | } else { |
1228 | /* | |
54d01ffb DG |
1229 | * At this point, we know that a registered application made |
1230 | * the event at poll_wait. | |
5eb91c98 DG |
1231 | */ |
1232 | if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) { | |
1233 | /* Removing from the poll set */ | |
1234 | ret = lttng_poll_del(&events, pollfd); | |
1235 | if (ret < 0) { | |
1236 | goto error; | |
1237 | } | |
099e26bd | 1238 | |
b9d9b220 | 1239 | /* Socket closed on remote end. */ |
56fff090 | 1240 | ust_app_unregister(pollfd); |
5eb91c98 DG |
1241 | break; |
1242 | } | |
099e26bd | 1243 | } |
44a5e5eb | 1244 | |
139ac872 | 1245 | health_code_update(&health_thread_app_manage); |
099e26bd | 1246 | } |
099e26bd DG |
1247 | } |
1248 | ||
139ac872 | 1249 | exit: |
099e26bd | 1250 | error: |
5eb91c98 | 1251 | lttng_poll_clean(&events); |
76d7553f | 1252 | error_poll_create: |
6620da75 DG |
1253 | utils_close_pipe(apps_cmd_pipe); |
1254 | apps_cmd_pipe[0] = apps_cmd_pipe[1] = -1; | |
1255 | ||
1256 | /* | |
1257 | * We don't clean the UST app hash table here since already registered | |
1258 | * applications can still be controlled so let them be until the session | |
1259 | * daemon dies or the applications stop. | |
1260 | */ | |
1261 | ||
139ac872 MD |
1262 | if (err) { |
1263 | health_error(&health_thread_app_manage); | |
1264 | ERR("Health error occurred in %s", __func__); | |
1265 | } | |
1266 | health_exit(&health_thread_app_manage); | |
76d7553f | 1267 | DBG("Application communication apps thread cleanup complete"); |
f6a9efaa DG |
1268 | rcu_thread_offline(); |
1269 | rcu_unregister_thread(); | |
099e26bd DG |
1270 | return NULL; |
1271 | } | |
1272 | ||
1273 | /* | |
1274 | * Dispatch request from the registration threads to the application | |
1275 | * communication thread. | |
1276 | */ | |
1277 | static void *thread_dispatch_ust_registration(void *data) | |
1278 | { | |
1279 | int ret; | |
1280 | struct cds_wfq_node *node; | |
1281 | struct ust_command *ust_cmd = NULL; | |
1282 | ||
1283 | DBG("[thread] Dispatch UST command started"); | |
1284 | ||
26c9d55e | 1285 | while (!CMM_LOAD_SHARED(dispatch_thread_exit)) { |
099e26bd DG |
1286 | /* Atomically prepare the queue futex */ |
1287 | futex_nto1_prepare(&ust_cmd_queue.futex); | |
1288 | ||
1289 | do { | |
1290 | /* Dequeue command for registration */ | |
1291 | node = cds_wfq_dequeue_blocking(&ust_cmd_queue.queue); | |
1292 | if (node == NULL) { | |
00a17c97 | 1293 | DBG("Woken up but nothing in the UST command queue"); |
099e26bd DG |
1294 | /* Continue thread execution */ |
1295 | break; | |
1296 | } | |
1297 | ||
1298 | ust_cmd = caa_container_of(node, struct ust_command, node); | |
1299 | ||
2f50c8a3 DG |
1300 | DBG("Dispatching UST registration pid:%d ppid:%d uid:%d" |
1301 | " gid:%d sock:%d name:%s (version %d.%d)", | |
1302 | ust_cmd->reg_msg.pid, ust_cmd->reg_msg.ppid, | |
1303 | ust_cmd->reg_msg.uid, ust_cmd->reg_msg.gid, | |
1304 | ust_cmd->sock, ust_cmd->reg_msg.name, | |
1305 | ust_cmd->reg_msg.major, ust_cmd->reg_msg.minor); | |
099e26bd DG |
1306 | /* |
1307 | * Inform apps thread of the new application registration. This | |
1308 | * call is blocking so we can be assured that the data will be read | |
1309 | * at some point in time or wait to the end of the world :) | |
1310 | */ | |
6620da75 DG |
1311 | if (apps_cmd_pipe[1] >= 0) { |
1312 | ret = write(apps_cmd_pipe[1], ust_cmd, | |
1313 | sizeof(struct ust_command)); | |
1314 | if (ret < 0) { | |
1315 | PERROR("write apps cmd pipe"); | |
1316 | if (errno == EBADF) { | |
1317 | /* | |
1318 | * We can't inform the application thread to process | |
1319 | * registration. We will exit or else application | |
1320 | * registration will not occur and tracing will never | |
1321 | * start. | |
1322 | */ | |
1323 | goto error; | |
1324 | } | |
1325 | } | |
1326 | } else { | |
1327 | /* Application manager thread is not available. */ | |
1328 | ret = close(ust_cmd->sock); | |
1329 | if (ret < 0) { | |
1330 | PERROR("close ust_cmd sock"); | |
099e26bd DG |
1331 | } |
1332 | } | |
1333 | free(ust_cmd); | |
1334 | } while (node != NULL); | |
1335 | ||
1336 | /* Futex wait on queue. Blocking call on futex() */ | |
1337 | futex_nto1_wait(&ust_cmd_queue.futex); | |
1338 | } | |
1339 | ||
1340 | error: | |
1341 | DBG("Dispatch thread dying"); | |
1342 | return NULL; | |
1343 | } | |
1344 | ||
1345 | /* | |
1346 | * This thread manage application registration. | |
1347 | */ | |
1348 | static void *thread_registration_apps(void *data) | |
1d4b027a | 1349 | { |
139ac872 | 1350 | int sock = -1, i, ret, pollfd, err = -1; |
5eb91c98 DG |
1351 | uint32_t revents, nb_fd; |
1352 | struct lttng_poll_event events; | |
099e26bd DG |
1353 | /* |
1354 | * Get allocated in this thread, enqueued to a global queue, dequeued and | |
1355 | * freed in the manage apps thread. | |
1356 | */ | |
1357 | struct ust_command *ust_cmd = NULL; | |
1d4b027a | 1358 | |
099e26bd | 1359 | DBG("[thread] Manage application registration started"); |
1d4b027a | 1360 | |
8ac94142 CB |
1361 | testpoint(thread_registration_apps); |
1362 | ||
1d4b027a DG |
1363 | ret = lttcomm_listen_unix_sock(apps_sock); |
1364 | if (ret < 0) { | |
76d7553f | 1365 | goto error_listen; |
1d4b027a DG |
1366 | } |
1367 | ||
5eb91c98 DG |
1368 | /* |
1369 | * Pass 2 as size here for the thread quit pipe and apps socket. Nothing | |
1370 | * more will be added to this poll set. | |
1371 | */ | |
1372 | ret = create_thread_poll_set(&events, 2); | |
1373 | if (ret < 0) { | |
76d7553f | 1374 | goto error_create_poll; |
5eb91c98 | 1375 | } |
273ea72c | 1376 | |
5eb91c98 DG |
1377 | /* Add the application registration socket */ |
1378 | ret = lttng_poll_add(&events, apps_sock, LPOLLIN | LPOLLRDHUP); | |
1379 | if (ret < 0) { | |
76d7553f | 1380 | goto error_poll_add; |
5eb91c98 | 1381 | } |
273ea72c | 1382 | |
1d4b027a | 1383 | /* Notify all applications to register */ |
0fdd1e2c DG |
1384 | ret = notify_ust_apps(1); |
1385 | if (ret < 0) { | |
1386 | ERR("Failed to notify applications or create the wait shared memory.\n" | |
54d01ffb DG |
1387 | "Execution continues but there might be problem for already\n" |
1388 | "running applications that wishes to register."); | |
0fdd1e2c | 1389 | } |
1d4b027a DG |
1390 | |
1391 | while (1) { | |
1392 | DBG("Accepting application registration"); | |
273ea72c | 1393 | |
5eb91c98 DG |
1394 | nb_fd = LTTNG_POLL_GETNB(&events); |
1395 | ||
273ea72c | 1396 | /* Inifinite blocking call, waiting for transmission */ |
88f2b785 | 1397 | restart: |
139ac872 | 1398 | health_poll_update(&health_thread_app_reg); |
5eb91c98 | 1399 | ret = lttng_poll_wait(&events, -1); |
139ac872 | 1400 | health_poll_update(&health_thread_app_reg); |
273ea72c | 1401 | if (ret < 0) { |
88f2b785 MD |
1402 | /* |
1403 | * Restart interrupted system call. | |
1404 | */ | |
1405 | if (errno == EINTR) { | |
1406 | goto restart; | |
1407 | } | |
273ea72c DG |
1408 | goto error; |
1409 | } | |
1410 | ||
5eb91c98 | 1411 | for (i = 0; i < nb_fd; i++) { |
139ac872 MD |
1412 | health_code_update(&health_thread_app_reg); |
1413 | ||
5eb91c98 DG |
1414 | /* Fetch once the poll data */ |
1415 | revents = LTTNG_POLL_GETEV(&events, i); | |
1416 | pollfd = LTTNG_POLL_GETFD(&events, i); | |
273ea72c | 1417 | |
5eb91c98 DG |
1418 | /* Thread quit pipe has been closed. Killing thread. */ |
1419 | ret = check_thread_quit_pipe(pollfd, revents); | |
1420 | if (ret) { | |
139ac872 MD |
1421 | err = 0; |
1422 | goto exit; | |
90014c57 | 1423 | } |
1d4b027a | 1424 | |
5eb91c98 DG |
1425 | /* Event on the registration socket */ |
1426 | if (pollfd == apps_sock) { | |
1427 | if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) { | |
1428 | ERR("Register apps socket poll error"); | |
1429 | goto error; | |
1430 | } else if (revents & LPOLLIN) { | |
1431 | sock = lttcomm_accept_unix_sock(apps_sock); | |
1432 | if (sock < 0) { | |
1433 | goto error; | |
1434 | } | |
099e26bd | 1435 | |
b662582b DG |
1436 | /* |
1437 | * Set the CLOEXEC flag. Return code is useless because | |
1438 | * either way, the show must go on. | |
1439 | */ | |
1440 | (void) utils_set_fd_cloexec(sock); | |
1441 | ||
5eb91c98 | 1442 | /* Create UST registration command for enqueuing */ |
ba7f0ae5 | 1443 | ust_cmd = zmalloc(sizeof(struct ust_command)); |
5eb91c98 | 1444 | if (ust_cmd == NULL) { |
76d7553f | 1445 | PERROR("ust command zmalloc"); |
5eb91c98 DG |
1446 | goto error; |
1447 | } | |
1d4b027a | 1448 | |
5eb91c98 DG |
1449 | /* |
1450 | * Using message-based transmissions to ensure we don't | |
1451 | * have to deal with partially received messages. | |
1452 | */ | |
4063050c MD |
1453 | ret = lttng_fd_get(LTTNG_FD_APPS, 1); |
1454 | if (ret < 0) { | |
1455 | ERR("Exhausted file descriptors allowed for applications."); | |
1456 | free(ust_cmd); | |
1457 | ret = close(sock); | |
1458 | if (ret) { | |
1459 | PERROR("close"); | |
1460 | } | |
1461 | sock = -1; | |
1462 | continue; | |
1463 | } | |
139ac872 | 1464 | health_code_update(&health_thread_app_reg); |
5eb91c98 DG |
1465 | ret = lttcomm_recv_unix_sock(sock, &ust_cmd->reg_msg, |
1466 | sizeof(struct ust_register_msg)); | |
1467 | if (ret < 0 || ret < sizeof(struct ust_register_msg)) { | |
1468 | if (ret < 0) { | |
76d7553f | 1469 | PERROR("lttcomm_recv_unix_sock register apps"); |
5eb91c98 DG |
1470 | } else { |
1471 | ERR("Wrong size received on apps register"); | |
1472 | } | |
1473 | free(ust_cmd); | |
76d7553f MD |
1474 | ret = close(sock); |
1475 | if (ret) { | |
1476 | PERROR("close"); | |
1477 | } | |
4063050c | 1478 | lttng_fd_put(LTTNG_FD_APPS, 1); |
76d7553f | 1479 | sock = -1; |
5eb91c98 DG |
1480 | continue; |
1481 | } | |
139ac872 | 1482 | health_code_update(&health_thread_app_reg); |
099e26bd | 1483 | |
5eb91c98 | 1484 | ust_cmd->sock = sock; |
34a2494f | 1485 | sock = -1; |
099e26bd | 1486 | |
5eb91c98 DG |
1487 | DBG("UST registration received with pid:%d ppid:%d uid:%d" |
1488 | " gid:%d sock:%d name:%s (version %d.%d)", | |
1489 | ust_cmd->reg_msg.pid, ust_cmd->reg_msg.ppid, | |
1490 | ust_cmd->reg_msg.uid, ust_cmd->reg_msg.gid, | |
1491 | ust_cmd->sock, ust_cmd->reg_msg.name, | |
1492 | ust_cmd->reg_msg.major, ust_cmd->reg_msg.minor); | |
54d01ffb | 1493 | |
5eb91c98 DG |
1494 | /* |
1495 | * Lock free enqueue the registration request. The red pill | |
54d01ffb | 1496 | * has been taken! This apps will be part of the *system*. |
5eb91c98 DG |
1497 | */ |
1498 | cds_wfq_enqueue(&ust_cmd_queue.queue, &ust_cmd->node); | |
1499 | ||
1500 | /* | |
1501 | * Wake the registration queue futex. Implicit memory | |
1502 | * barrier with the exchange in cds_wfq_enqueue. | |
1503 | */ | |
1504 | futex_nto1_wake(&ust_cmd_queue.futex); | |
1505 | } | |
1506 | } | |
90014c57 | 1507 | } |
1d4b027a DG |
1508 | } |
1509 | ||
139ac872 | 1510 | exit: |
1d4b027a | 1511 | error: |
139ac872 MD |
1512 | if (err) { |
1513 | health_error(&health_thread_app_reg); | |
1514 | ERR("Health error occurred in %s", __func__); | |
1515 | } | |
1516 | health_exit(&health_thread_app_reg); | |
1517 | ||
0fdd1e2c DG |
1518 | /* Notify that the registration thread is gone */ |
1519 | notify_ust_apps(0); | |
1520 | ||
a4b35e07 | 1521 | if (apps_sock >= 0) { |
76d7553f MD |
1522 | ret = close(apps_sock); |
1523 | if (ret) { | |
1524 | PERROR("close"); | |
1525 | } | |
a4b35e07 | 1526 | } |
46c3f085 | 1527 | if (sock >= 0) { |
76d7553f MD |
1528 | ret = close(sock); |
1529 | if (ret) { | |
1530 | PERROR("close"); | |
1531 | } | |
4063050c | 1532 | lttng_fd_put(LTTNG_FD_APPS, 1); |
a4b35e07 | 1533 | } |
273ea72c | 1534 | unlink(apps_unix_sock_path); |
0fdd1e2c | 1535 | |
76d7553f | 1536 | error_poll_add: |
5eb91c98 | 1537 | lttng_poll_clean(&events); |
76d7553f MD |
1538 | error_listen: |
1539 | error_create_poll: | |
1540 | DBG("UST Registration thread cleanup complete"); | |
5eb91c98 | 1541 | |
1d4b027a DG |
1542 | return NULL; |
1543 | } | |
1544 | ||
8c0faa1d | 1545 | /* |
3bd1e081 | 1546 | * Start the thread_manage_consumer. This must be done after a lttng-consumerd |
d063d709 | 1547 | * exec or it will fails. |
8c0faa1d | 1548 | */ |
3bd1e081 | 1549 | static int spawn_consumer_thread(struct consumer_data *consumer_data) |
8c0faa1d | 1550 | { |
a23ec3a7 | 1551 | int ret, clock_ret; |
ee0b0061 DG |
1552 | struct timespec timeout; |
1553 | ||
a23ec3a7 DG |
1554 | /* Make sure we set the readiness flag to 0 because we are NOT ready */ |
1555 | consumer_data->consumer_thread_is_ready = 0; | |
8c0faa1d | 1556 | |
a23ec3a7 DG |
1557 | /* Setup pthread condition */ |
1558 | ret = pthread_condattr_init(&consumer_data->condattr); | |
1559 | if (ret != 0) { | |
1560 | errno = ret; | |
1561 | PERROR("pthread_condattr_init consumer data"); | |
1562 | goto error; | |
1563 | } | |
1564 | ||
1565 | /* | |
1566 | * Set the monotonic clock in order to make sure we DO NOT jump in time | |
1567 | * between the clock_gettime() call and the timedwait call. See bug #324 | |
1568 | * for a more details and how we noticed it. | |
1569 | */ | |
1570 | ret = pthread_condattr_setclock(&consumer_data->condattr, CLOCK_MONOTONIC); | |
1571 | if (ret != 0) { | |
1572 | errno = ret; | |
1573 | PERROR("pthread_condattr_setclock consumer data"); | |
ee0b0061 DG |
1574 | goto error; |
1575 | } | |
8c0faa1d | 1576 | |
a23ec3a7 DG |
1577 | ret = pthread_cond_init(&consumer_data->cond, &consumer_data->condattr); |
1578 | if (ret != 0) { | |
1579 | errno = ret; | |
1580 | PERROR("pthread_cond_init consumer data"); | |
1581 | goto error; | |
1582 | } | |
1583 | ||
1584 | ret = pthread_create(&consumer_data->thread, NULL, thread_manage_consumer, | |
1585 | consumer_data); | |
8c0faa1d | 1586 | if (ret != 0) { |
3bd1e081 | 1587 | PERROR("pthread_create consumer"); |
ee0b0061 | 1588 | ret = -1; |
8c0faa1d DG |
1589 | goto error; |
1590 | } | |
1591 | ||
a23ec3a7 DG |
1592 | /* We are about to wait on a pthread condition */ |
1593 | pthread_mutex_lock(&consumer_data->cond_mutex); | |
1594 | ||
ee0b0061 | 1595 | /* Get time for sem_timedwait absolute timeout */ |
a23ec3a7 DG |
1596 | clock_ret = clock_gettime(CLOCK_MONOTONIC, &timeout); |
1597 | /* | |
1598 | * Set the timeout for the condition timed wait even if the clock gettime | |
1599 | * call fails since we might loop on that call and we want to avoid to | |
1600 | * increment the timeout too many times. | |
1601 | */ | |
1602 | timeout.tv_sec += DEFAULT_SEM_WAIT_TIMEOUT; | |
1603 | ||
1604 | /* | |
1605 | * The following loop COULD be skipped in some conditions so this is why we | |
1606 | * set ret to 0 in order to make sure at least one round of the loop is | |
1607 | * done. | |
1608 | */ | |
1609 | ret = 0; | |
1610 | ||
1611 | /* | |
1612 | * Loop until the condition is reached or when a timeout is reached. Note | |
1613 | * that the pthread_cond_timedwait(P) man page specifies that EINTR can NOT | |
1614 | * be returned but the pthread_cond(3), from the glibc-doc, says that it is | |
1615 | * possible. This loop does not take any chances and works with both of | |
1616 | * them. | |
1617 | */ | |
1618 | while (!consumer_data->consumer_thread_is_ready && ret != ETIMEDOUT) { | |
1619 | if (clock_ret < 0) { | |
1620 | PERROR("clock_gettime spawn consumer"); | |
1621 | /* Infinite wait for the consumerd thread to be ready */ | |
1622 | ret = pthread_cond_wait(&consumer_data->cond, | |
1623 | &consumer_data->cond_mutex); | |
1624 | } else { | |
1625 | ret = pthread_cond_timedwait(&consumer_data->cond, | |
1626 | &consumer_data->cond_mutex, &timeout); | |
1627 | } | |
ee0b0061 | 1628 | } |
8c0faa1d | 1629 | |
a23ec3a7 DG |
1630 | /* Release the pthread condition */ |
1631 | pthread_mutex_unlock(&consumer_data->cond_mutex); | |
1632 | ||
1633 | if (ret != 0) { | |
1634 | errno = ret; | |
1635 | if (ret == ETIMEDOUT) { | |
ee0b0061 DG |
1636 | /* |
1637 | * Call has timed out so we kill the kconsumerd_thread and return | |
1638 | * an error. | |
1639 | */ | |
a23ec3a7 DG |
1640 | ERR("Condition timed out. The consumer thread was never ready." |
1641 | " Killing it"); | |
3bd1e081 | 1642 | ret = pthread_cancel(consumer_data->thread); |
ee0b0061 | 1643 | if (ret < 0) { |
3bd1e081 | 1644 | PERROR("pthread_cancel consumer thread"); |
ee0b0061 DG |
1645 | } |
1646 | } else { | |
a23ec3a7 | 1647 | PERROR("pthread_cond_wait failed consumer thread"); |
ee0b0061 DG |
1648 | } |
1649 | goto error; | |
1650 | } | |
1651 | ||
3bd1e081 MD |
1652 | pthread_mutex_lock(&consumer_data->pid_mutex); |
1653 | if (consumer_data->pid == 0) { | |
a23ec3a7 | 1654 | ERR("Consumerd did not start"); |
3bd1e081 | 1655 | pthread_mutex_unlock(&consumer_data->pid_mutex); |
712ea556 DG |
1656 | goto error; |
1657 | } | |
3bd1e081 | 1658 | pthread_mutex_unlock(&consumer_data->pid_mutex); |
712ea556 | 1659 | |
8c0faa1d DG |
1660 | return 0; |
1661 | ||
1662 | error: | |
1663 | return ret; | |
1664 | } | |
1665 | ||
d9800920 | 1666 | /* |
3bd1e081 | 1667 | * Join consumer thread |
d9800920 | 1668 | */ |
3bd1e081 | 1669 | static int join_consumer_thread(struct consumer_data *consumer_data) |
cf3af59e MD |
1670 | { |
1671 | void *status; | |
1672 | int ret; | |
1673 | ||
e8209f6b DG |
1674 | /* Consumer pid must be a real one. */ |
1675 | if (consumer_data->pid > 0) { | |
3bd1e081 | 1676 | ret = kill(consumer_data->pid, SIGTERM); |
cf3af59e | 1677 | if (ret) { |
3bd1e081 | 1678 | ERR("Error killing consumer daemon"); |
cf3af59e MD |
1679 | return ret; |
1680 | } | |
3bd1e081 | 1681 | return pthread_join(consumer_data->thread, &status); |
cf3af59e MD |
1682 | } else { |
1683 | return 0; | |
1684 | } | |
1685 | } | |
1686 | ||
8c0faa1d | 1687 | /* |
3bd1e081 | 1688 | * Fork and exec a consumer daemon (consumerd). |
8c0faa1d | 1689 | * |
d063d709 | 1690 | * Return pid if successful else -1. |
8c0faa1d | 1691 | */ |
3bd1e081 | 1692 | static pid_t spawn_consumerd(struct consumer_data *consumer_data) |
8c0faa1d DG |
1693 | { |
1694 | int ret; | |
1695 | pid_t pid; | |
94c55f17 | 1696 | const char *consumer_to_use; |
53086306 | 1697 | const char *verbosity; |
94c55f17 | 1698 | struct stat st; |
8c0faa1d | 1699 | |
3bd1e081 | 1700 | DBG("Spawning consumerd"); |
c49dc785 | 1701 | |
8c0faa1d DG |
1702 | pid = fork(); |
1703 | if (pid == 0) { | |
1704 | /* | |
3bd1e081 | 1705 | * Exec consumerd. |
8c0faa1d | 1706 | */ |
daee5345 | 1707 | if (opt_verbose_consumer) { |
53086306 DG |
1708 | verbosity = "--verbose"; |
1709 | } else { | |
1710 | verbosity = "--quiet"; | |
1711 | } | |
3bd1e081 MD |
1712 | switch (consumer_data->type) { |
1713 | case LTTNG_CONSUMER_KERNEL: | |
94c55f17 | 1714 | /* |
c7704d57 DG |
1715 | * Find out which consumerd to execute. We will first try the |
1716 | * 64-bit path, then the sessiond's installation directory, and | |
1717 | * fallback on the 32-bit one, | |
94c55f17 | 1718 | */ |
63a799e8 AM |
1719 | DBG3("Looking for a kernel consumer at these locations:"); |
1720 | DBG3(" 1) %s", consumerd64_bin); | |
1721 | DBG3(" 2) %s/%s", INSTALL_BIN_PATH, CONSUMERD_FILE); | |
1722 | DBG3(" 3) %s", consumerd32_bin); | |
94c55f17 | 1723 | if (stat(consumerd64_bin, &st) == 0) { |
63a799e8 | 1724 | DBG3("Found location #1"); |
94c55f17 | 1725 | consumer_to_use = consumerd64_bin; |
94c55f17 | 1726 | } else if (stat(INSTALL_BIN_PATH "/" CONSUMERD_FILE, &st) == 0) { |
63a799e8 | 1727 | DBG3("Found location #2"); |
94c55f17 | 1728 | consumer_to_use = INSTALL_BIN_PATH "/" CONSUMERD_FILE; |
eb1e0bd4 | 1729 | } else if (stat(consumerd32_bin, &st) == 0) { |
63a799e8 | 1730 | DBG3("Found location #3"); |
eb1e0bd4 | 1731 | consumer_to_use = consumerd32_bin; |
94c55f17 | 1732 | } else { |
63a799e8 | 1733 | DBG("Could not find any valid consumerd executable"); |
94c55f17 AM |
1734 | break; |
1735 | } | |
1736 | DBG("Using kernel consumer at: %s", consumer_to_use); | |
1737 | execl(consumer_to_use, | |
1738 | "lttng-consumerd", verbosity, "-k", | |
1739 | "--consumerd-cmd-sock", consumer_data->cmd_unix_sock_path, | |
1740 | "--consumerd-err-sock", consumer_data->err_unix_sock_path, | |
1741 | NULL); | |
3bd1e081 | 1742 | break; |
7753dea8 MD |
1743 | case LTTNG_CONSUMER64_UST: |
1744 | { | |
b1e0b6b6 | 1745 | char *tmpnew = NULL; |
8f4905da MD |
1746 | |
1747 | if (consumerd64_libdir[0] != '\0') { | |
1748 | char *tmp; | |
1749 | size_t tmplen; | |
1750 | ||
1751 | tmp = getenv("LD_LIBRARY_PATH"); | |
1752 | if (!tmp) { | |
1753 | tmp = ""; | |
1754 | } | |
1755 | tmplen = strlen("LD_LIBRARY_PATH=") | |
1756 | + strlen(consumerd64_libdir) + 1 /* : */ + strlen(tmp); | |
1757 | tmpnew = zmalloc(tmplen + 1 /* \0 */); | |
1758 | if (!tmpnew) { | |
1759 | ret = -ENOMEM; | |
1760 | goto error; | |
1761 | } | |
1762 | strcpy(tmpnew, "LD_LIBRARY_PATH="); | |
1763 | strcat(tmpnew, consumerd64_libdir); | |
1764 | if (tmp[0] != '\0') { | |
1765 | strcat(tmpnew, ":"); | |
1766 | strcat(tmpnew, tmp); | |
1767 | } | |
1768 | ret = putenv(tmpnew); | |
1769 | if (ret) { | |
1770 | ret = -errno; | |
1771 | goto error; | |
1772 | } | |
1773 | } | |
94c55f17 | 1774 | DBG("Using 64-bit UST consumer at: %s", consumerd64_bin); |
a5a6aff3 | 1775 | ret = execl(consumerd64_bin, "lttng-consumerd", verbosity, "-u", |
7753dea8 MD |
1776 | "--consumerd-cmd-sock", consumer_data->cmd_unix_sock_path, |
1777 | "--consumerd-err-sock", consumer_data->err_unix_sock_path, | |
1778 | NULL); | |
8f4905da MD |
1779 | if (consumerd64_libdir[0] != '\0') { |
1780 | free(tmpnew); | |
1781 | } | |
1782 | if (ret) { | |
1783 | goto error; | |
1784 | } | |
3bd1e081 | 1785 | break; |
7753dea8 MD |
1786 | } |
1787 | case LTTNG_CONSUMER32_UST: | |
1788 | { | |
937dde8e | 1789 | char *tmpnew = NULL; |
8f4905da MD |
1790 | |
1791 | if (consumerd32_libdir[0] != '\0') { | |
1792 | char *tmp; | |
1793 | size_t tmplen; | |
1794 | ||
1795 | tmp = getenv("LD_LIBRARY_PATH"); | |
1796 | if (!tmp) { | |
1797 | tmp = ""; | |
1798 | } | |
1799 | tmplen = strlen("LD_LIBRARY_PATH=") | |
1800 | + strlen(consumerd32_libdir) + 1 /* : */ + strlen(tmp); | |
1801 | tmpnew = zmalloc(tmplen + 1 /* \0 */); | |
1802 | if (!tmpnew) { | |
1803 | ret = -ENOMEM; | |
1804 | goto error; | |
1805 | } | |
1806 | strcpy(tmpnew, "LD_LIBRARY_PATH="); | |
1807 | strcat(tmpnew, consumerd32_libdir); | |
1808 | if (tmp[0] != '\0') { | |
1809 | strcat(tmpnew, ":"); | |
1810 | strcat(tmpnew, tmp); | |
1811 | } | |
1812 | ret = putenv(tmpnew); | |
1813 | if (ret) { | |
1814 | ret = -errno; | |
1815 | goto error; | |
1816 | } | |
1817 | } | |
94c55f17 | 1818 | DBG("Using 32-bit UST consumer at: %s", consumerd32_bin); |
a5a6aff3 | 1819 | ret = execl(consumerd32_bin, "lttng-consumerd", verbosity, "-u", |
7753dea8 MD |
1820 | "--consumerd-cmd-sock", consumer_data->cmd_unix_sock_path, |
1821 | "--consumerd-err-sock", consumer_data->err_unix_sock_path, | |
1822 | NULL); | |
8f4905da MD |
1823 | if (consumerd32_libdir[0] != '\0') { |
1824 | free(tmpnew); | |
1825 | } | |
1826 | if (ret) { | |
1827 | goto error; | |
1828 | } | |
7753dea8 MD |
1829 | break; |
1830 | } | |
3bd1e081 | 1831 | default: |
76d7553f | 1832 | PERROR("unknown consumer type"); |
3bd1e081 MD |
1833 | exit(EXIT_FAILURE); |
1834 | } | |
8c0faa1d | 1835 | if (errno != 0) { |
76d7553f | 1836 | PERROR("kernel start consumer exec"); |
8c0faa1d DG |
1837 | } |
1838 | exit(EXIT_FAILURE); | |
1839 | } else if (pid > 0) { | |
1840 | ret = pid; | |
8c0faa1d | 1841 | } else { |
76d7553f | 1842 | PERROR("start consumer fork"); |
8c0faa1d | 1843 | ret = -errno; |
8c0faa1d | 1844 | } |
8f4905da | 1845 | error: |
8c0faa1d DG |
1846 | return ret; |
1847 | } | |
1848 | ||
693bd40b | 1849 | /* |
3bd1e081 | 1850 | * Spawn the consumerd daemon and session daemon thread. |
693bd40b | 1851 | */ |
3bd1e081 | 1852 | static int start_consumerd(struct consumer_data *consumer_data) |
693bd40b | 1853 | { |
edb8b045 DG |
1854 | int ret, err; |
1855 | ||
1856 | /* | |
1857 | * Set the listen() state on the socket since there is a possible race | |
1858 | * between the exec() of the consumer daemon and this call if place in the | |
1859 | * consumer thread. See bug #366 for more details. | |
1860 | */ | |
1861 | ret = lttcomm_listen_unix_sock(consumer_data->err_sock); | |
1862 | if (ret < 0) { | |
1863 | goto error; | |
1864 | } | |
693bd40b | 1865 | |
3bd1e081 MD |
1866 | pthread_mutex_lock(&consumer_data->pid_mutex); |
1867 | if (consumer_data->pid != 0) { | |
1868 | pthread_mutex_unlock(&consumer_data->pid_mutex); | |
c49dc785 DG |
1869 | goto end; |
1870 | } | |
693bd40b | 1871 | |
3bd1e081 | 1872 | ret = spawn_consumerd(consumer_data); |
c49dc785 | 1873 | if (ret < 0) { |
3bd1e081 MD |
1874 | ERR("Spawning consumerd failed"); |
1875 | pthread_mutex_unlock(&consumer_data->pid_mutex); | |
c49dc785 | 1876 | goto error; |
693bd40b | 1877 | } |
c49dc785 | 1878 | |
3bd1e081 MD |
1879 | /* Setting up the consumer_data pid */ |
1880 | consumer_data->pid = ret; | |
48842b30 | 1881 | DBG2("Consumer pid %d", consumer_data->pid); |
3bd1e081 | 1882 | pthread_mutex_unlock(&consumer_data->pid_mutex); |
693bd40b | 1883 | |
3bd1e081 MD |
1884 | DBG2("Spawning consumer control thread"); |
1885 | ret = spawn_consumer_thread(consumer_data); | |
693bd40b | 1886 | if (ret < 0) { |
3bd1e081 | 1887 | ERR("Fatal error spawning consumer control thread"); |
693bd40b DG |
1888 | goto error; |
1889 | } | |
1890 | ||
c49dc785 | 1891 | end: |
693bd40b DG |
1892 | return 0; |
1893 | ||
1894 | error: | |
edb8b045 DG |
1895 | /* Cleanup already created socket on error. */ |
1896 | if (consumer_data->err_sock >= 0) { | |
1897 | err = close(consumer_data->err_sock); | |
1898 | if (err < 0) { | |
1899 | PERROR("close consumer data error socket"); | |
1900 | } | |
1901 | } | |
693bd40b DG |
1902 | return ret; |
1903 | } | |
1904 | ||
44a5e5eb | 1905 | /* |
139ac872 MD |
1906 | * Compute health status of each consumer. If one of them is zero (bad |
1907 | * state), we return 0. | |
44a5e5eb DG |
1908 | */ |
1909 | static int check_consumer_health(void) | |
1910 | { | |
1911 | int ret; | |
1912 | ||
139ac872 MD |
1913 | ret = health_check_state(&kconsumer_data.health) && |
1914 | health_check_state(&ustconsumer32_data.health) && | |
44a5e5eb DG |
1915 | health_check_state(&ustconsumer64_data.health); |
1916 | ||
1917 | DBG3("Health consumer check %d", ret); | |
1918 | ||
1919 | return ret; | |
1920 | } | |
1921 | ||
b73401da | 1922 | /* |
096102bd | 1923 | * Setup necessary data for kernel tracer action. |
b73401da | 1924 | */ |
096102bd | 1925 | static int init_kernel_tracer(void) |
b73401da DG |
1926 | { |
1927 | int ret; | |
b73401da | 1928 | |
096102bd DG |
1929 | /* Modprobe lttng kernel modules */ |
1930 | ret = modprobe_lttng_control(); | |
b73401da | 1931 | if (ret < 0) { |
b73401da DG |
1932 | goto error; |
1933 | } | |
1934 | ||
096102bd DG |
1935 | /* Open debugfs lttng */ |
1936 | kernel_tracer_fd = open(module_proc_lttng, O_RDWR); | |
1937 | if (kernel_tracer_fd < 0) { | |
1938 | DBG("Failed to open %s", module_proc_lttng); | |
2f77fc4b DG |
1939 | ret = -1; |
1940 | goto error_open; | |
54d01ffb DG |
1941 | } |
1942 | ||
2f77fc4b DG |
1943 | /* Validate kernel version */ |
1944 | ret = kernel_validate_version(kernel_tracer_fd); | |
1945 | if (ret < 0) { | |
1946 | goto error_version; | |
b551a063 | 1947 | } |
54d01ffb | 1948 | |
2f77fc4b DG |
1949 | ret = modprobe_lttng_data(); |
1950 | if (ret < 0) { | |
1951 | goto error_modules; | |
54d01ffb DG |
1952 | } |
1953 | ||
2f77fc4b DG |
1954 | DBG("Kernel tracer fd %d", kernel_tracer_fd); |
1955 | return 0; | |
1956 | ||
1957 | error_version: | |
1958 | modprobe_remove_lttng_control(); | |
1959 | ret = close(kernel_tracer_fd); | |
1960 | if (ret) { | |
1961 | PERROR("close"); | |
b551a063 | 1962 | } |
2f77fc4b | 1963 | kernel_tracer_fd = -1; |
f73fabfd | 1964 | return LTTNG_ERR_KERN_VERSION; |
b551a063 | 1965 | |
2f77fc4b DG |
1966 | error_modules: |
1967 | ret = close(kernel_tracer_fd); | |
1968 | if (ret) { | |
1969 | PERROR("close"); | |
b551a063 | 1970 | } |
54d01ffb | 1971 | |
2f77fc4b DG |
1972 | error_open: |
1973 | modprobe_remove_lttng_control(); | |
54d01ffb DG |
1974 | |
1975 | error: | |
2f77fc4b DG |
1976 | WARN("No kernel tracer available"); |
1977 | kernel_tracer_fd = -1; | |
1978 | if (!is_root) { | |
f73fabfd | 1979 | return LTTNG_ERR_NEED_ROOT_SESSIOND; |
2f77fc4b | 1980 | } else { |
f73fabfd | 1981 | return LTTNG_ERR_KERN_NA; |
2f77fc4b | 1982 | } |
54d01ffb DG |
1983 | } |
1984 | ||
2f77fc4b | 1985 | |
54d01ffb | 1986 | /* |
2f77fc4b DG |
1987 | * Copy consumer output from the tracing session to the domain session. The |
1988 | * function also applies the right modification on a per domain basis for the | |
1989 | * trace files destination directory. | |
54d01ffb | 1990 | */ |
2f77fc4b | 1991 | static int copy_session_consumer(int domain, struct ltt_session *session) |
54d01ffb DG |
1992 | { |
1993 | int ret; | |
2f77fc4b DG |
1994 | const char *dir_name; |
1995 | struct consumer_output *consumer; | |
1996 | ||
1997 | assert(session); | |
1998 | assert(session->consumer); | |
54d01ffb | 1999 | |
b551a063 DG |
2000 | switch (domain) { |
2001 | case LTTNG_DOMAIN_KERNEL: | |
2f77fc4b | 2002 | DBG3("Copying tracing session consumer output in kernel session"); |
09a90bcd DG |
2003 | /* |
2004 | * XXX: We should audit the session creation and what this function | |
2005 | * does "extra" in order to avoid a destroy since this function is used | |
2006 | * in the domain session creation (kernel and ust) only. Same for UST | |
2007 | * domain. | |
2008 | */ | |
2009 | if (session->kernel_session->consumer) { | |
2010 | consumer_destroy_output(session->kernel_session->consumer); | |
2011 | } | |
2f77fc4b DG |
2012 | session->kernel_session->consumer = |
2013 | consumer_copy_output(session->consumer); | |
2014 | /* Ease our life a bit for the next part */ | |
2015 | consumer = session->kernel_session->consumer; | |
2016 | dir_name = DEFAULT_KERNEL_TRACE_DIR; | |
b551a063 DG |
2017 | break; |
2018 | case LTTNG_DOMAIN_UST: | |
2f77fc4b | 2019 | DBG3("Copying tracing session consumer output in UST session"); |
09a90bcd DG |
2020 | if (session->ust_session->consumer) { |
2021 | consumer_destroy_output(session->ust_session->consumer); | |
2022 | } | |
2f77fc4b DG |
2023 | session->ust_session->consumer = |
2024 | consumer_copy_output(session->consumer); | |
2025 | /* Ease our life a bit for the next part */ | |
2026 | consumer = session->ust_session->consumer; | |
2027 | dir_name = DEFAULT_UST_TRACE_DIR; | |
b551a063 DG |
2028 | break; |
2029 | default: | |
f73fabfd | 2030 | ret = LTTNG_ERR_UNKNOWN_DOMAIN; |
54d01ffb DG |
2031 | goto error; |
2032 | } | |
2033 | ||
2f77fc4b | 2034 | /* Append correct directory to subdir */ |
c30ce0b3 CB |
2035 | strncat(consumer->subdir, dir_name, |
2036 | sizeof(consumer->subdir) - strlen(consumer->subdir) - 1); | |
2f77fc4b DG |
2037 | DBG3("Copy session consumer subdir %s", consumer->subdir); |
2038 | ||
f73fabfd | 2039 | ret = LTTNG_OK; |
54d01ffb DG |
2040 | |
2041 | error: | |
2042 | return ret; | |
2043 | } | |
2044 | ||
00e2e675 | 2045 | /* |
2f77fc4b | 2046 | * Create an UST session and add it to the session ust list. |
00e2e675 | 2047 | */ |
2f77fc4b DG |
2048 | static int create_ust_session(struct ltt_session *session, |
2049 | struct lttng_domain *domain) | |
00e2e675 DG |
2050 | { |
2051 | int ret; | |
2f77fc4b | 2052 | struct ltt_ust_session *lus = NULL; |
00e2e675 | 2053 | |
a4b92340 | 2054 | assert(session); |
2f77fc4b DG |
2055 | assert(domain); |
2056 | assert(session->consumer); | |
a4b92340 | 2057 | |
2f77fc4b DG |
2058 | switch (domain->type) { |
2059 | case LTTNG_DOMAIN_UST: | |
2060 | break; | |
2061 | default: | |
2062 | ERR("Unknown UST domain on create session %d", domain->type); | |
f73fabfd | 2063 | ret = LTTNG_ERR_UNKNOWN_DOMAIN; |
00e2e675 DG |
2064 | goto error; |
2065 | } | |
2066 | ||
2f77fc4b DG |
2067 | DBG("Creating UST session"); |
2068 | ||
2069 | lus = trace_ust_create_session(session->path, session->id, domain); | |
2070 | if (lus == NULL) { | |
f73fabfd | 2071 | ret = LTTNG_ERR_UST_SESS_FAIL; |
a4b92340 DG |
2072 | goto error; |
2073 | } | |
2074 | ||
2f77fc4b DG |
2075 | lus->uid = session->uid; |
2076 | lus->gid = session->gid; | |
2077 | session->ust_session = lus; | |
00e2e675 | 2078 | |
2f77fc4b DG |
2079 | /* Copy session output to the newly created UST session */ |
2080 | ret = copy_session_consumer(domain->type, session); | |
f73fabfd | 2081 | if (ret != LTTNG_OK) { |
00e2e675 DG |
2082 | goto error; |
2083 | } | |
2084 | ||
f73fabfd | 2085 | return LTTNG_OK; |
00e2e675 DG |
2086 | |
2087 | error: | |
2f77fc4b DG |
2088 | free(lus); |
2089 | session->ust_session = NULL; | |
00e2e675 DG |
2090 | return ret; |
2091 | } | |
2092 | ||
2093 | /* | |
2f77fc4b | 2094 | * Create a kernel tracer session then create the default channel. |
00e2e675 | 2095 | */ |
2f77fc4b | 2096 | static int create_kernel_session(struct ltt_session *session) |
00e2e675 DG |
2097 | { |
2098 | int ret; | |
a4b92340 | 2099 | |
2f77fc4b | 2100 | DBG("Creating kernel session"); |
00e2e675 | 2101 | |
2f77fc4b DG |
2102 | ret = kernel_create_session(session, kernel_tracer_fd); |
2103 | if (ret < 0) { | |
f73fabfd | 2104 | ret = LTTNG_ERR_KERN_SESS_FAIL; |
00e2e675 DG |
2105 | goto error; |
2106 | } | |
2107 | ||
2f77fc4b DG |
2108 | /* Code flow safety */ |
2109 | assert(session->kernel_session); | |
2110 | ||
2111 | /* Copy session output to the newly created Kernel session */ | |
2112 | ret = copy_session_consumer(LTTNG_DOMAIN_KERNEL, session); | |
f73fabfd | 2113 | if (ret != LTTNG_OK) { |
a4b92340 DG |
2114 | goto error; |
2115 | } | |
2116 | ||
2f77fc4b DG |
2117 | /* Create directory(ies) on local filesystem. */ |
2118 | if (session->kernel_session->consumer->type == CONSUMER_DST_LOCAL && | |
2119 | strlen(session->kernel_session->consumer->dst.trace_path) > 0) { | |
2120 | ret = run_as_mkdir_recursive( | |
2121 | session->kernel_session->consumer->dst.trace_path, | |
2122 | S_IRWXU | S_IRWXG, session->uid, session->gid); | |
2123 | if (ret < 0) { | |
2124 | if (ret != -EEXIST) { | |
2125 | ERR("Trace directory creation error"); | |
00e2e675 DG |
2126 | goto error; |
2127 | } | |
00e2e675 | 2128 | } |
2f77fc4b | 2129 | } |
00e2e675 | 2130 | |
2f77fc4b DG |
2131 | session->kernel_session->uid = session->uid; |
2132 | session->kernel_session->gid = session->gid; | |
00e2e675 | 2133 | |
f73fabfd | 2134 | return LTTNG_OK; |
00e2e675 | 2135 | |
2f77fc4b DG |
2136 | error: |
2137 | trace_kernel_destroy_session(session->kernel_session); | |
2138 | session->kernel_session = NULL; | |
2139 | return ret; | |
2140 | } | |
00e2e675 | 2141 | |
2f77fc4b DG |
2142 | /* |
2143 | * Count number of session permitted by uid/gid. | |
2144 | */ | |
2145 | static unsigned int lttng_sessions_count(uid_t uid, gid_t gid) | |
2146 | { | |
2147 | unsigned int i = 0; | |
2148 | struct ltt_session *session; | |
07424f16 | 2149 | |
2f77fc4b DG |
2150 | DBG("Counting number of available session for UID %d GID %d", |
2151 | uid, gid); | |
2152 | cds_list_for_each_entry(session, &session_list_ptr->head, list) { | |
00e2e675 | 2153 | /* |
2f77fc4b | 2154 | * Only list the sessions the user can control. |
00e2e675 | 2155 | */ |
2f77fc4b DG |
2156 | if (!session_access_ok(session, uid, gid)) { |
2157 | continue; | |
2158 | } | |
2159 | i++; | |
a4b92340 | 2160 | } |
2f77fc4b | 2161 | return i; |
00e2e675 DG |
2162 | } |
2163 | ||
54d01ffb DG |
2164 | /* |
2165 | * Process the command requested by the lttng client within the command | |
2166 | * context structure. This function make sure that the return structure (llm) | |
2167 | * is set and ready for transmission before returning. | |
2168 | * | |
2169 | * Return any error encountered or 0 for success. | |
53a80697 MD |
2170 | * |
2171 | * "sock" is only used for special-case var. len data. | |
54d01ffb | 2172 | */ |
53a80697 MD |
2173 | static int process_client_msg(struct command_ctx *cmd_ctx, int sock, |
2174 | int *sock_error) | |
54d01ffb | 2175 | { |
f73fabfd | 2176 | int ret = LTTNG_OK; |
44d3bd01 | 2177 | int need_tracing_session = 1; |
2e09ba09 | 2178 | int need_domain; |
54d01ffb DG |
2179 | |
2180 | DBG("Processing client command %d", cmd_ctx->lsm->cmd_type); | |
2181 | ||
53a80697 MD |
2182 | *sock_error = 0; |
2183 | ||
2e09ba09 MD |
2184 | switch (cmd_ctx->lsm->cmd_type) { |
2185 | case LTTNG_CREATE_SESSION: | |
2186 | case LTTNG_DESTROY_SESSION: | |
2187 | case LTTNG_LIST_SESSIONS: | |
2188 | case LTTNG_LIST_DOMAINS: | |
2189 | case LTTNG_START_TRACE: | |
2190 | case LTTNG_STOP_TRACE: | |
6d805429 | 2191 | case LTTNG_DATA_PENDING: |
2e09ba09 | 2192 | need_domain = 0; |
3aace903 | 2193 | break; |
2e09ba09 MD |
2194 | default: |
2195 | need_domain = 1; | |
2196 | } | |
2197 | ||
2198 | if (opt_no_kernel && need_domain | |
2199 | && cmd_ctx->lsm->domain.type == LTTNG_DOMAIN_KERNEL) { | |
531d29f9 | 2200 | if (!is_root) { |
f73fabfd | 2201 | ret = LTTNG_ERR_NEED_ROOT_SESSIOND; |
531d29f9 | 2202 | } else { |
f73fabfd | 2203 | ret = LTTNG_ERR_KERN_NA; |
531d29f9 | 2204 | } |
4fba7219 DG |
2205 | goto error; |
2206 | } | |
2207 | ||
8d3113b2 DG |
2208 | /* Deny register consumer if we already have a spawned consumer. */ |
2209 | if (cmd_ctx->lsm->cmd_type == LTTNG_REGISTER_CONSUMER) { | |
2210 | pthread_mutex_lock(&kconsumer_data.pid_mutex); | |
2211 | if (kconsumer_data.pid > 0) { | |
f73fabfd | 2212 | ret = LTTNG_ERR_KERN_CONSUMER_FAIL; |
fa317f24 | 2213 | pthread_mutex_unlock(&kconsumer_data.pid_mutex); |
8d3113b2 DG |
2214 | goto error; |
2215 | } | |
2216 | pthread_mutex_unlock(&kconsumer_data.pid_mutex); | |
2217 | } | |
2218 | ||
54d01ffb DG |
2219 | /* |
2220 | * Check for command that don't needs to allocate a returned payload. We do | |
44d3bd01 | 2221 | * this here so we don't have to make the call for no payload at each |
54d01ffb DG |
2222 | * command. |
2223 | */ | |
2224 | switch(cmd_ctx->lsm->cmd_type) { | |
2225 | case LTTNG_LIST_SESSIONS: | |
2226 | case LTTNG_LIST_TRACEPOINTS: | |
f37d259d | 2227 | case LTTNG_LIST_TRACEPOINT_FIELDS: |
54d01ffb DG |
2228 | case LTTNG_LIST_DOMAINS: |
2229 | case LTTNG_LIST_CHANNELS: | |
2230 | case LTTNG_LIST_EVENTS: | |
2231 | break; | |
2232 | default: | |
2233 | /* Setup lttng message with no payload */ | |
2234 | ret = setup_lttng_msg(cmd_ctx, 0); | |
2235 | if (ret < 0) { | |
2236 | /* This label does not try to unlock the session */ | |
2237 | goto init_setup_error; | |
2238 | } | |
2239 | } | |
2240 | ||
2241 | /* Commands that DO NOT need a session. */ | |
2242 | switch (cmd_ctx->lsm->cmd_type) { | |
54d01ffb | 2243 | case LTTNG_CREATE_SESSION: |
2e09ba09 | 2244 | case LTTNG_CALIBRATE: |
54d01ffb DG |
2245 | case LTTNG_LIST_SESSIONS: |
2246 | case LTTNG_LIST_TRACEPOINTS: | |
f37d259d | 2247 | case LTTNG_LIST_TRACEPOINT_FIELDS: |
44d3bd01 | 2248 | need_tracing_session = 0; |
54d01ffb DG |
2249 | break; |
2250 | default: | |
2251 | DBG("Getting session %s by name", cmd_ctx->lsm->session.name); | |
256a5576 MD |
2252 | /* |
2253 | * We keep the session list lock across _all_ commands | |
2254 | * for now, because the per-session lock does not | |
2255 | * handle teardown properly. | |
2256 | */ | |
74babd95 | 2257 | session_lock_list(); |
54d01ffb DG |
2258 | cmd_ctx->session = session_find_by_name(cmd_ctx->lsm->session.name); |
2259 | if (cmd_ctx->session == NULL) { | |
2260 | if (cmd_ctx->lsm->session.name != NULL) { | |
f73fabfd | 2261 | ret = LTTNG_ERR_SESS_NOT_FOUND; |
54d01ffb DG |
2262 | } else { |
2263 | /* If no session name specified */ | |
f73fabfd | 2264 | ret = LTTNG_ERR_SELECT_SESS; |
54d01ffb DG |
2265 | } |
2266 | goto error; | |
2267 | } else { | |
2268 | /* Acquire lock for the session */ | |
2269 | session_lock(cmd_ctx->session); | |
2270 | } | |
2271 | break; | |
2272 | } | |
b389abbe | 2273 | |
2e09ba09 MD |
2274 | if (!need_domain) { |
2275 | goto skip_domain; | |
2276 | } | |
a4b92340 | 2277 | |
54d01ffb DG |
2278 | /* |
2279 | * Check domain type for specific "pre-action". | |
2280 | */ | |
2281 | switch (cmd_ctx->lsm->domain.type) { | |
2282 | case LTTNG_DOMAIN_KERNEL: | |
d1f1c568 | 2283 | if (!is_root) { |
f73fabfd | 2284 | ret = LTTNG_ERR_NEED_ROOT_SESSIOND; |
d1f1c568 DG |
2285 | goto error; |
2286 | } | |
2287 | ||
54d01ffb | 2288 | /* Kernel tracer check */ |
a4b35e07 | 2289 | if (kernel_tracer_fd == -1) { |
54d01ffb | 2290 | /* Basically, load kernel tracer modules */ |
096102bd DG |
2291 | ret = init_kernel_tracer(); |
2292 | if (ret != 0) { | |
54d01ffb DG |
2293 | goto error; |
2294 | } | |
2295 | } | |
5eb91c98 | 2296 | |
5c827ce0 DG |
2297 | /* Consumer is in an ERROR state. Report back to client */ |
2298 | if (uatomic_read(&kernel_consumerd_state) == CONSUMER_ERROR) { | |
f73fabfd | 2299 | ret = LTTNG_ERR_NO_KERNCONSUMERD; |
5c827ce0 DG |
2300 | goto error; |
2301 | } | |
2302 | ||
54d01ffb | 2303 | /* Need a session for kernel command */ |
44d3bd01 | 2304 | if (need_tracing_session) { |
54d01ffb | 2305 | if (cmd_ctx->session->kernel_session == NULL) { |
6df2e2c9 | 2306 | ret = create_kernel_session(cmd_ctx->session); |
5eb91c98 | 2307 | if (ret < 0) { |
f73fabfd | 2308 | ret = LTTNG_ERR_KERN_SESS_FAIL; |
5eb91c98 DG |
2309 | goto error; |
2310 | } | |
b389abbe | 2311 | } |
7d29a247 | 2312 | |
54d01ffb | 2313 | /* Start the kernel consumer daemon */ |
3bd1e081 MD |
2314 | pthread_mutex_lock(&kconsumer_data.pid_mutex); |
2315 | if (kconsumer_data.pid == 0 && | |
a4b92340 DG |
2316 | cmd_ctx->lsm->cmd_type != LTTNG_REGISTER_CONSUMER && |
2317 | cmd_ctx->session->start_consumer) { | |
3bd1e081 MD |
2318 | pthread_mutex_unlock(&kconsumer_data.pid_mutex); |
2319 | ret = start_consumerd(&kconsumer_data); | |
7d29a247 | 2320 | if (ret < 0) { |
f73fabfd | 2321 | ret = LTTNG_ERR_KERN_CONSUMER_FAIL; |
54d01ffb | 2322 | goto error; |
950131af | 2323 | } |
5c827ce0 | 2324 | uatomic_set(&kernel_consumerd_state, CONSUMER_STARTED); |
3ff2ecac MD |
2325 | } else { |
2326 | pthread_mutex_unlock(&kconsumer_data.pid_mutex); | |
33a2b854 | 2327 | } |
173af62f | 2328 | |
a4b92340 DG |
2329 | /* |
2330 | * The consumer was just spawned so we need to add the socket to | |
2331 | * the consumer output of the session if exist. | |
2332 | */ | |
2333 | ret = consumer_create_socket(&kconsumer_data, | |
2334 | cmd_ctx->session->kernel_session->consumer); | |
2335 | if (ret < 0) { | |
2336 | goto error; | |
173af62f | 2337 | } |
0d0c377a | 2338 | } |
5c827ce0 | 2339 | |
54d01ffb | 2340 | break; |
2bdd86d4 | 2341 | case LTTNG_DOMAIN_UST: |
44d3bd01 | 2342 | { |
5c827ce0 DG |
2343 | /* Consumer is in an ERROR state. Report back to client */ |
2344 | if (uatomic_read(&ust_consumerd_state) == CONSUMER_ERROR) { | |
f73fabfd | 2345 | ret = LTTNG_ERR_NO_USTCONSUMERD; |
5c827ce0 DG |
2346 | goto error; |
2347 | } | |
2348 | ||
44d3bd01 | 2349 | if (need_tracing_session) { |
a4b92340 | 2350 | /* Create UST session if none exist. */ |
f6a9efaa | 2351 | if (cmd_ctx->session->ust_session == NULL) { |
44d3bd01 | 2352 | ret = create_ust_session(cmd_ctx->session, |
6df2e2c9 | 2353 | &cmd_ctx->lsm->domain); |
f73fabfd | 2354 | if (ret != LTTNG_OK) { |
44d3bd01 DG |
2355 | goto error; |
2356 | } | |
2357 | } | |
00e2e675 | 2358 | |
7753dea8 MD |
2359 | /* Start the UST consumer daemons */ |
2360 | /* 64-bit */ | |
2361 | pthread_mutex_lock(&ustconsumer64_data.pid_mutex); | |
fc7a59ce | 2362 | if (consumerd64_bin[0] != '\0' && |
7753dea8 | 2363 | ustconsumer64_data.pid == 0 && |
a4b92340 DG |
2364 | cmd_ctx->lsm->cmd_type != LTTNG_REGISTER_CONSUMER && |
2365 | cmd_ctx->session->start_consumer) { | |
7753dea8 MD |
2366 | pthread_mutex_unlock(&ustconsumer64_data.pid_mutex); |
2367 | ret = start_consumerd(&ustconsumer64_data); | |
2bdd86d4 | 2368 | if (ret < 0) { |
f73fabfd | 2369 | ret = LTTNG_ERR_UST_CONSUMER64_FAIL; |
173af62f | 2370 | uatomic_set(&ust_consumerd64_fd, -EINVAL); |
2bdd86d4 MD |
2371 | goto error; |
2372 | } | |
48842b30 | 2373 | |
173af62f | 2374 | uatomic_set(&ust_consumerd64_fd, ustconsumer64_data.cmd_sock); |
5c827ce0 | 2375 | uatomic_set(&ust_consumerd_state, CONSUMER_STARTED); |
3ff2ecac | 2376 | } else { |
7753dea8 MD |
2377 | pthread_mutex_unlock(&ustconsumer64_data.pid_mutex); |
2378 | } | |
173af62f DG |
2379 | |
2380 | /* | |
2381 | * Setup socket for consumer 64 bit. No need for atomic access | |
2382 | * since it was set above and can ONLY be set in this thread. | |
2383 | */ | |
a4b92340 DG |
2384 | ret = consumer_create_socket(&ustconsumer64_data, |
2385 | cmd_ctx->session->ust_session->consumer); | |
2386 | if (ret < 0) { | |
2387 | goto error; | |
173af62f DG |
2388 | } |
2389 | ||
7753dea8 | 2390 | /* 32-bit */ |
fc7a59ce | 2391 | if (consumerd32_bin[0] != '\0' && |
7753dea8 | 2392 | ustconsumer32_data.pid == 0 && |
a4b92340 DG |
2393 | cmd_ctx->lsm->cmd_type != LTTNG_REGISTER_CONSUMER && |
2394 | cmd_ctx->session->start_consumer) { | |
7753dea8 MD |
2395 | pthread_mutex_unlock(&ustconsumer32_data.pid_mutex); |
2396 | ret = start_consumerd(&ustconsumer32_data); | |
2397 | if (ret < 0) { | |
f73fabfd | 2398 | ret = LTTNG_ERR_UST_CONSUMER32_FAIL; |
173af62f | 2399 | uatomic_set(&ust_consumerd32_fd, -EINVAL); |
7753dea8 MD |
2400 | goto error; |
2401 | } | |
5c827ce0 | 2402 | |
173af62f | 2403 | uatomic_set(&ust_consumerd32_fd, ustconsumer32_data.cmd_sock); |
5c827ce0 | 2404 | uatomic_set(&ust_consumerd_state, CONSUMER_STARTED); |
7753dea8 MD |
2405 | } else { |
2406 | pthread_mutex_unlock(&ustconsumer32_data.pid_mutex); | |
2bdd86d4 | 2407 | } |
173af62f DG |
2408 | |
2409 | /* | |
2410 | * Setup socket for consumer 64 bit. No need for atomic access | |
2411 | * since it was set above and can ONLY be set in this thread. | |
2412 | */ | |
a4b92340 DG |
2413 | ret = consumer_create_socket(&ustconsumer32_data, |
2414 | cmd_ctx->session->ust_session->consumer); | |
2415 | if (ret < 0) { | |
2416 | goto error; | |
173af62f | 2417 | } |
44d3bd01 DG |
2418 | } |
2419 | break; | |
48842b30 | 2420 | } |
54d01ffb | 2421 | default: |
54d01ffb DG |
2422 | break; |
2423 | } | |
2e09ba09 | 2424 | skip_domain: |
33a2b854 | 2425 | |
5c827ce0 DG |
2426 | /* Validate consumer daemon state when start/stop trace command */ |
2427 | if (cmd_ctx->lsm->cmd_type == LTTNG_START_TRACE || | |
2428 | cmd_ctx->lsm->cmd_type == LTTNG_STOP_TRACE) { | |
2429 | switch (cmd_ctx->lsm->domain.type) { | |
2430 | case LTTNG_DOMAIN_UST: | |
2431 | if (uatomic_read(&ust_consumerd_state) != CONSUMER_STARTED) { | |
f73fabfd | 2432 | ret = LTTNG_ERR_NO_USTCONSUMERD; |
5c827ce0 DG |
2433 | goto error; |
2434 | } | |
2435 | break; | |
2436 | case LTTNG_DOMAIN_KERNEL: | |
2437 | if (uatomic_read(&kernel_consumerd_state) != CONSUMER_STARTED) { | |
f73fabfd | 2438 | ret = LTTNG_ERR_NO_KERNCONSUMERD; |
5c827ce0 DG |
2439 | goto error; |
2440 | } | |
2441 | break; | |
2442 | } | |
2443 | } | |
2444 | ||
8e0af1b4 MD |
2445 | /* |
2446 | * Check that the UID or GID match that of the tracing session. | |
2447 | * The root user can interact with all sessions. | |
2448 | */ | |
2449 | if (need_tracing_session) { | |
2450 | if (!session_access_ok(cmd_ctx->session, | |
730389d9 DG |
2451 | LTTNG_SOCK_GET_UID_CRED(&cmd_ctx->creds), |
2452 | LTTNG_SOCK_GET_GID_CRED(&cmd_ctx->creds))) { | |
f73fabfd | 2453 | ret = LTTNG_ERR_EPERM; |
8e0af1b4 MD |
2454 | goto error; |
2455 | } | |
2456 | } | |
2457 | ||
54d01ffb DG |
2458 | /* Process by command type */ |
2459 | switch (cmd_ctx->lsm->cmd_type) { | |
2460 | case LTTNG_ADD_CONTEXT: | |
2461 | { | |
2462 | ret = cmd_add_context(cmd_ctx->session, cmd_ctx->lsm->domain.type, | |
2463 | cmd_ctx->lsm->u.context.channel_name, | |
979e618e | 2464 | &cmd_ctx->lsm->u.context.ctx, kernel_poll_pipe[1]); |
54d01ffb DG |
2465 | break; |
2466 | } | |
2467 | case LTTNG_DISABLE_CHANNEL: | |
2468 | { | |
2469 | ret = cmd_disable_channel(cmd_ctx->session, cmd_ctx->lsm->domain.type, | |
2470 | cmd_ctx->lsm->u.disable.channel_name); | |
2471 | break; | |
2472 | } | |
2473 | case LTTNG_DISABLE_EVENT: | |
2474 | { | |
2475 | ret = cmd_disable_event(cmd_ctx->session, cmd_ctx->lsm->domain.type, | |
2476 | cmd_ctx->lsm->u.disable.channel_name, | |
2477 | cmd_ctx->lsm->u.disable.name); | |
33a2b854 DG |
2478 | break; |
2479 | } | |
54d01ffb DG |
2480 | case LTTNG_DISABLE_ALL_EVENT: |
2481 | { | |
2bdd86d4 | 2482 | DBG("Disabling all events"); |
54d01ffb DG |
2483 | |
2484 | ret = cmd_disable_event_all(cmd_ctx->session, cmd_ctx->lsm->domain.type, | |
2485 | cmd_ctx->lsm->u.disable.channel_name); | |
2486 | break; | |
2487 | } | |
00e2e675 DG |
2488 | case LTTNG_DISABLE_CONSUMER: |
2489 | { | |
2490 | ret = cmd_disable_consumer(cmd_ctx->lsm->domain.type, cmd_ctx->session); | |
2491 | break; | |
2492 | } | |
54d01ffb DG |
2493 | case LTTNG_ENABLE_CHANNEL: |
2494 | { | |
aea829b3 | 2495 | ret = cmd_enable_channel(cmd_ctx->session, cmd_ctx->lsm->domain.type, |
2f77fc4b | 2496 | &cmd_ctx->lsm->u.channel.chan, kernel_poll_pipe[1]); |
54d01ffb DG |
2497 | break; |
2498 | } | |
00e2e675 DG |
2499 | case LTTNG_ENABLE_CONSUMER: |
2500 | { | |
a4b92340 DG |
2501 | /* |
2502 | * XXX: 0 means that this URI should be applied on the session. Should | |
2503 | * be a DOMAIN enuam. | |
2504 | */ | |
00e2e675 | 2505 | ret = cmd_enable_consumer(cmd_ctx->lsm->domain.type, cmd_ctx->session); |
f73fabfd | 2506 | if (ret != LTTNG_OK) { |
a4b92340 DG |
2507 | goto error; |
2508 | } | |
2509 | ||
2510 | if (cmd_ctx->lsm->domain.type == 0) { | |
2511 | /* Add the URI for the UST session if a consumer is present. */ | |
2512 | if (cmd_ctx->session->ust_session && | |
2513 | cmd_ctx->session->ust_session->consumer) { | |
2514 | ret = cmd_enable_consumer(LTTNG_DOMAIN_UST, cmd_ctx->session); | |
2515 | } else if (cmd_ctx->session->kernel_session && | |
2516 | cmd_ctx->session->kernel_session->consumer) { | |
2517 | ret = cmd_enable_consumer(LTTNG_DOMAIN_KERNEL, | |
2518 | cmd_ctx->session); | |
2519 | } | |
2520 | } | |
00e2e675 DG |
2521 | break; |
2522 | } | |
54d01ffb DG |
2523 | case LTTNG_ENABLE_EVENT: |
2524 | { | |
2525 | ret = cmd_enable_event(cmd_ctx->session, cmd_ctx->lsm->domain.type, | |
2526 | cmd_ctx->lsm->u.enable.channel_name, | |
025faf73 | 2527 | &cmd_ctx->lsm->u.enable.event, NULL, kernel_poll_pipe[1]); |
54d01ffb DG |
2528 | break; |
2529 | } | |
2530 | case LTTNG_ENABLE_ALL_EVENT: | |
2531 | { | |
2bdd86d4 | 2532 | DBG("Enabling all events"); |
54d01ffb DG |
2533 | |
2534 | ret = cmd_enable_event_all(cmd_ctx->session, cmd_ctx->lsm->domain.type, | |
8c9ae521 | 2535 | cmd_ctx->lsm->u.enable.channel_name, |
025faf73 | 2536 | cmd_ctx->lsm->u.enable.event.type, NULL, kernel_poll_pipe[1]); |
54d01ffb DG |
2537 | break; |
2538 | } | |
052da939 | 2539 | case LTTNG_LIST_TRACEPOINTS: |
2ef84c95 | 2540 | { |
9f19cc17 | 2541 | struct lttng_event *events; |
54d01ffb | 2542 | ssize_t nb_events; |
052da939 | 2543 | |
54d01ffb DG |
2544 | nb_events = cmd_list_tracepoints(cmd_ctx->lsm->domain.type, &events); |
2545 | if (nb_events < 0) { | |
f73fabfd | 2546 | /* Return value is a negative lttng_error_code. */ |
54d01ffb DG |
2547 | ret = -nb_events; |
2548 | goto error; | |
2ef84c95 DG |
2549 | } |
2550 | ||
2551 | /* | |
2552 | * Setup lttng message with payload size set to the event list size in | |
2553 | * bytes and then copy list into the llm payload. | |
2554 | */ | |
052da939 | 2555 | ret = setup_lttng_msg(cmd_ctx, sizeof(struct lttng_event) * nb_events); |
2ef84c95 | 2556 | if (ret < 0) { |
052da939 | 2557 | free(events); |
2ef84c95 DG |
2558 | goto setup_error; |
2559 | } | |
2560 | ||
2561 | /* Copy event list into message payload */ | |
9f19cc17 | 2562 | memcpy(cmd_ctx->llm->payload, events, |
052da939 | 2563 | sizeof(struct lttng_event) * nb_events); |
2ef84c95 | 2564 | |
9f19cc17 | 2565 | free(events); |
2ef84c95 | 2566 | |
f73fabfd | 2567 | ret = LTTNG_OK; |
2ef84c95 DG |
2568 | break; |
2569 | } | |
f37d259d MD |
2570 | case LTTNG_LIST_TRACEPOINT_FIELDS: |
2571 | { | |
2572 | struct lttng_event_field *fields; | |
2573 | ssize_t nb_fields; | |
2574 | ||
a4b92340 DG |
2575 | nb_fields = cmd_list_tracepoint_fields(cmd_ctx->lsm->domain.type, |
2576 | &fields); | |
f37d259d | 2577 | if (nb_fields < 0) { |
f73fabfd | 2578 | /* Return value is a negative lttng_error_code. */ |
f37d259d MD |
2579 | ret = -nb_fields; |
2580 | goto error; | |
2581 | } | |
2582 | ||
2583 | /* | |
2584 | * Setup lttng message with payload size set to the event list size in | |
2585 | * bytes and then copy list into the llm payload. | |
2586 | */ | |
a4b92340 DG |
2587 | ret = setup_lttng_msg(cmd_ctx, |
2588 | sizeof(struct lttng_event_field) * nb_fields); | |
f37d259d MD |
2589 | if (ret < 0) { |
2590 | free(fields); | |
2591 | goto setup_error; | |
2592 | } | |
2593 | ||
2594 | /* Copy event list into message payload */ | |
2595 | memcpy(cmd_ctx->llm->payload, fields, | |
2596 | sizeof(struct lttng_event_field) * nb_fields); | |
2597 | ||
2598 | free(fields); | |
2599 | ||
f73fabfd | 2600 | ret = LTTNG_OK; |
f37d259d MD |
2601 | break; |
2602 | } | |
00e2e675 DG |
2603 | case LTTNG_SET_CONSUMER_URI: |
2604 | { | |
a4b92340 DG |
2605 | size_t nb_uri, len; |
2606 | struct lttng_uri *uris; | |
2607 | ||
2608 | nb_uri = cmd_ctx->lsm->u.uri.size; | |
2609 | len = nb_uri * sizeof(struct lttng_uri); | |
2610 | ||
2611 | if (nb_uri == 0) { | |
f73fabfd | 2612 | ret = LTTNG_ERR_INVALID; |
a4b92340 DG |
2613 | goto error; |
2614 | } | |
2615 | ||
2616 | uris = zmalloc(len); | |
2617 | if (uris == NULL) { | |
f73fabfd | 2618 | ret = LTTNG_ERR_FATAL; |
a4b92340 DG |
2619 | goto error; |
2620 | } | |
2621 | ||
2622 | /* Receive variable len data */ | |
77c7c900 | 2623 | DBG("Receiving %zu URI(s) from client ...", nb_uri); |
a4b92340 DG |
2624 | ret = lttcomm_recv_unix_sock(sock, uris, len); |
2625 | if (ret <= 0) { | |
2626 | DBG("No URIs received from client... continuing"); | |
2627 | *sock_error = 1; | |
f73fabfd | 2628 | ret = LTTNG_ERR_SESSION_FAIL; |
b1d41407 | 2629 | free(uris); |
a4b92340 DG |
2630 | goto error; |
2631 | } | |
2632 | ||
00e2e675 | 2633 | ret = cmd_set_consumer_uri(cmd_ctx->lsm->domain.type, cmd_ctx->session, |
a4b92340 | 2634 | nb_uri, uris); |
f73fabfd | 2635 | if (ret != LTTNG_OK) { |
b1d41407 | 2636 | free(uris); |
a4b92340 DG |
2637 | goto error; |
2638 | } | |
2639 | ||
2640 | /* | |
2641 | * XXX: 0 means that this URI should be applied on the session. Should | |
2642 | * be a DOMAIN enuam. | |
2643 | */ | |
2644 | if (cmd_ctx->lsm->domain.type == 0) { | |
2645 | /* Add the URI for the UST session if a consumer is present. */ | |
2646 | if (cmd_ctx->session->ust_session && | |
2647 | cmd_ctx->session->ust_session->consumer) { | |
2648 | ret = cmd_set_consumer_uri(LTTNG_DOMAIN_UST, cmd_ctx->session, | |
2649 | nb_uri, uris); | |
2650 | } else if (cmd_ctx->session->kernel_session && | |
2651 | cmd_ctx->session->kernel_session->consumer) { | |
2652 | ret = cmd_set_consumer_uri(LTTNG_DOMAIN_KERNEL, | |
2653 | cmd_ctx->session, nb_uri, uris); | |
2654 | } | |
2655 | } | |
2656 | ||
b1d41407 DG |
2657 | free(uris); |
2658 | ||
00e2e675 DG |
2659 | break; |
2660 | } | |
f3ed775e | 2661 | case LTTNG_START_TRACE: |
8c0faa1d | 2662 | { |
54d01ffb | 2663 | ret = cmd_start_trace(cmd_ctx->session); |
8c0faa1d DG |
2664 | break; |
2665 | } | |
f3ed775e | 2666 | case LTTNG_STOP_TRACE: |
8c0faa1d | 2667 | { |
54d01ffb | 2668 | ret = cmd_stop_trace(cmd_ctx->session); |
8c0faa1d DG |
2669 | break; |
2670 | } | |
5e16da05 MD |
2671 | case LTTNG_CREATE_SESSION: |
2672 | { | |
a4b92340 DG |
2673 | size_t nb_uri, len; |
2674 | struct lttng_uri *uris = NULL; | |
2675 | ||
2676 | nb_uri = cmd_ctx->lsm->u.uri.size; | |
2677 | len = nb_uri * sizeof(struct lttng_uri); | |
2678 | ||
2679 | if (nb_uri > 0) { | |
2680 | uris = zmalloc(len); | |
2681 | if (uris == NULL) { | |
f73fabfd | 2682 | ret = LTTNG_ERR_FATAL; |
a4b92340 DG |
2683 | goto error; |
2684 | } | |
2685 | ||
2686 | /* Receive variable len data */ | |
77c7c900 | 2687 | DBG("Waiting for %zu URIs from client ...", nb_uri); |
a4b92340 DG |
2688 | ret = lttcomm_recv_unix_sock(sock, uris, len); |
2689 | if (ret <= 0) { | |
2690 | DBG("No URIs received from client... continuing"); | |
2691 | *sock_error = 1; | |
f73fabfd | 2692 | ret = LTTNG_ERR_SESSION_FAIL; |
b1d41407 | 2693 | free(uris); |
a4b92340 DG |
2694 | goto error; |
2695 | } | |
2696 | ||
2697 | if (nb_uri == 1 && uris[0].dtype != LTTNG_DST_PATH) { | |
2698 | DBG("Creating session with ONE network URI is a bad call"); | |
f73fabfd | 2699 | ret = LTTNG_ERR_SESSION_FAIL; |
b1d41407 | 2700 | free(uris); |
a4b92340 DG |
2701 | goto error; |
2702 | } | |
2703 | } | |
2704 | ||
2705 | ret = cmd_create_session_uri(cmd_ctx->lsm->session.name, uris, nb_uri, | |
2706 | &cmd_ctx->creds); | |
2707 | ||
b1d41407 DG |
2708 | free(uris); |
2709 | ||
00e2e675 DG |
2710 | break; |
2711 | } | |
5e16da05 MD |
2712 | case LTTNG_DESTROY_SESSION: |
2713 | { | |
2f77fc4b | 2714 | ret = cmd_destroy_session(cmd_ctx->session, kernel_poll_pipe[1]); |
a4b92340 DG |
2715 | |
2716 | /* Set session to NULL so we do not unlock it after free. */ | |
256a5576 | 2717 | cmd_ctx->session = NULL; |
5461b305 | 2718 | break; |
5e16da05 | 2719 | } |
9f19cc17 | 2720 | case LTTNG_LIST_DOMAINS: |
5e16da05 | 2721 | { |
54d01ffb DG |
2722 | ssize_t nb_dom; |
2723 | struct lttng_domain *domains; | |
5461b305 | 2724 | |
54d01ffb DG |
2725 | nb_dom = cmd_list_domains(cmd_ctx->session, &domains); |
2726 | if (nb_dom < 0) { | |
f73fabfd | 2727 | /* Return value is a negative lttng_error_code. */ |
54d01ffb DG |
2728 | ret = -nb_dom; |
2729 | goto error; | |
ce3d728c | 2730 | } |
520ff687 | 2731 | |
54d01ffb | 2732 | ret = setup_lttng_msg(cmd_ctx, nb_dom * sizeof(struct lttng_domain)); |
5461b305 DG |
2733 | if (ret < 0) { |
2734 | goto setup_error; | |
520ff687 | 2735 | } |
57167058 | 2736 | |
54d01ffb DG |
2737 | /* Copy event list into message payload */ |
2738 | memcpy(cmd_ctx->llm->payload, domains, | |
2739 | nb_dom * sizeof(struct lttng_domain)); | |
2740 | ||
2741 | free(domains); | |
5e16da05 | 2742 | |
f73fabfd | 2743 | ret = LTTNG_OK; |
5e16da05 MD |
2744 | break; |
2745 | } | |
9f19cc17 | 2746 | case LTTNG_LIST_CHANNELS: |
5e16da05 | 2747 | { |
6775595e | 2748 | int nb_chan; |
54d01ffb DG |
2749 | struct lttng_channel *channels; |
2750 | ||
b551a063 DG |
2751 | nb_chan = cmd_list_channels(cmd_ctx->lsm->domain.type, |
2752 | cmd_ctx->session, &channels); | |
54d01ffb | 2753 | if (nb_chan < 0) { |
f73fabfd | 2754 | /* Return value is a negative lttng_error_code. */ |
54d01ffb DG |
2755 | ret = -nb_chan; |
2756 | goto error; | |
5461b305 | 2757 | } |
ca95a216 | 2758 | |
54d01ffb | 2759 | ret = setup_lttng_msg(cmd_ctx, nb_chan * sizeof(struct lttng_channel)); |
5461b305 DG |
2760 | if (ret < 0) { |
2761 | goto setup_error; | |
2762 | } | |
9f19cc17 | 2763 | |
54d01ffb DG |
2764 | /* Copy event list into message payload */ |
2765 | memcpy(cmd_ctx->llm->payload, channels, | |
2766 | nb_chan * sizeof(struct lttng_channel)); | |
2767 | ||
2768 | free(channels); | |
9f19cc17 | 2769 | |
f73fabfd | 2770 | ret = LTTNG_OK; |
5461b305 | 2771 | break; |
5e16da05 | 2772 | } |
9f19cc17 | 2773 | case LTTNG_LIST_EVENTS: |
5e16da05 | 2774 | { |
b551a063 | 2775 | ssize_t nb_event; |
684d34d2 | 2776 | struct lttng_event *events = NULL; |
9f19cc17 | 2777 | |
b551a063 | 2778 | nb_event = cmd_list_events(cmd_ctx->lsm->domain.type, cmd_ctx->session, |
54d01ffb DG |
2779 | cmd_ctx->lsm->u.list.channel_name, &events); |
2780 | if (nb_event < 0) { | |
f73fabfd | 2781 | /* Return value is a negative lttng_error_code. */ |
54d01ffb DG |
2782 | ret = -nb_event; |
2783 | goto error; | |
5461b305 | 2784 | } |
ca95a216 | 2785 | |
54d01ffb | 2786 | ret = setup_lttng_msg(cmd_ctx, nb_event * sizeof(struct lttng_event)); |
5461b305 DG |
2787 | if (ret < 0) { |
2788 | goto setup_error; | |
2789 | } | |
9f19cc17 | 2790 | |
54d01ffb DG |
2791 | /* Copy event list into message payload */ |
2792 | memcpy(cmd_ctx->llm->payload, events, | |
2793 | nb_event * sizeof(struct lttng_event)); | |
9f19cc17 | 2794 | |
54d01ffb | 2795 | free(events); |
9f19cc17 | 2796 | |
f73fabfd | 2797 | ret = LTTNG_OK; |
5461b305 | 2798 | break; |
5e16da05 MD |
2799 | } |
2800 | case LTTNG_LIST_SESSIONS: | |
2801 | { | |
8e0af1b4 | 2802 | unsigned int nr_sessions; |
5461b305 | 2803 | |
8e0af1b4 | 2804 | session_lock_list(); |
730389d9 DG |
2805 | nr_sessions = lttng_sessions_count( |
2806 | LTTNG_SOCK_GET_UID_CRED(&cmd_ctx->creds), | |
2807 | LTTNG_SOCK_GET_GID_CRED(&cmd_ctx->creds)); | |
d32fb093 | 2808 | |
8e0af1b4 | 2809 | ret = setup_lttng_msg(cmd_ctx, sizeof(struct lttng_session) * nr_sessions); |
5461b305 | 2810 | if (ret < 0) { |
54d01ffb | 2811 | session_unlock_list(); |
5461b305 | 2812 | goto setup_error; |
e065084a | 2813 | } |
5e16da05 | 2814 | |
6c9cc2ab | 2815 | /* Filled the session array */ |
2f77fc4b | 2816 | cmd_list_lttng_sessions((struct lttng_session *)(cmd_ctx->llm->payload), |
730389d9 DG |
2817 | LTTNG_SOCK_GET_UID_CRED(&cmd_ctx->creds), |
2818 | LTTNG_SOCK_GET_GID_CRED(&cmd_ctx->creds)); | |
6c9cc2ab | 2819 | |
54d01ffb | 2820 | session_unlock_list(); |
5e16da05 | 2821 | |
f73fabfd | 2822 | ret = LTTNG_OK; |
5e16da05 MD |
2823 | break; |
2824 | } | |
d0254c7c MD |
2825 | case LTTNG_CALIBRATE: |
2826 | { | |
54d01ffb DG |
2827 | ret = cmd_calibrate(cmd_ctx->lsm->domain.type, |
2828 | &cmd_ctx->lsm->u.calibrate); | |
d0254c7c MD |
2829 | break; |
2830 | } | |
d9800920 DG |
2831 | case LTTNG_REGISTER_CONSUMER: |
2832 | { | |
2f77fc4b DG |
2833 | struct consumer_data *cdata; |
2834 | ||
2835 | switch (cmd_ctx->lsm->domain.type) { | |
2836 | case LTTNG_DOMAIN_KERNEL: | |
2837 | cdata = &kconsumer_data; | |
2838 | break; | |
2839 | default: | |
f73fabfd | 2840 | ret = LTTNG_ERR_UND; |
2f77fc4b DG |
2841 | goto error; |
2842 | } | |
2843 | ||
54d01ffb | 2844 | ret = cmd_register_consumer(cmd_ctx->session, cmd_ctx->lsm->domain.type, |
2f77fc4b | 2845 | cmd_ctx->lsm->u.reg.path, cdata); |
d9800920 DG |
2846 | break; |
2847 | } | |
025faf73 | 2848 | case LTTNG_ENABLE_EVENT_WITH_FILTER: |
53a80697 MD |
2849 | { |
2850 | struct lttng_filter_bytecode *bytecode; | |
2851 | ||
025faf73 | 2852 | if (cmd_ctx->lsm->u.enable.bytecode_len > LTTNG_FILTER_MAX_LEN) { |
f73fabfd | 2853 | ret = LTTNG_ERR_FILTER_INVAL; |
53a80697 MD |
2854 | goto error; |
2855 | } | |
025faf73 | 2856 | bytecode = zmalloc(cmd_ctx->lsm->u.enable.bytecode_len); |
53a80697 | 2857 | if (!bytecode) { |
f73fabfd | 2858 | ret = LTTNG_ERR_FILTER_NOMEM; |
53a80697 MD |
2859 | goto error; |
2860 | } | |
2861 | /* Receive var. len. data */ | |
2862 | DBG("Receiving var len data from client ..."); | |
2863 | ret = lttcomm_recv_unix_sock(sock, bytecode, | |
025faf73 | 2864 | cmd_ctx->lsm->u.enable.bytecode_len); |
53a80697 MD |
2865 | if (ret <= 0) { |
2866 | DBG("Nothing recv() from client var len data... continuing"); | |
2867 | *sock_error = 1; | |
f73fabfd | 2868 | ret = LTTNG_ERR_FILTER_INVAL; |
53a80697 MD |
2869 | goto error; |
2870 | } | |
2871 | ||
2872 | if (bytecode->len + sizeof(*bytecode) | |
025faf73 | 2873 | != cmd_ctx->lsm->u.enable.bytecode_len) { |
53a80697 | 2874 | free(bytecode); |
f73fabfd | 2875 | ret = LTTNG_ERR_FILTER_INVAL; |
53a80697 MD |
2876 | goto error; |
2877 | } | |
2878 | ||
025faf73 DG |
2879 | ret = cmd_enable_event(cmd_ctx->session, cmd_ctx->lsm->domain.type, |
2880 | cmd_ctx->lsm->u.enable.channel_name, | |
2881 | &cmd_ctx->lsm->u.enable.event, bytecode, kernel_poll_pipe[1]); | |
53a80697 MD |
2882 | break; |
2883 | } | |
6d805429 | 2884 | case LTTNG_DATA_PENDING: |
806e2684 | 2885 | { |
6d805429 | 2886 | ret = cmd_data_pending(cmd_ctx->session); |
806e2684 DG |
2887 | break; |
2888 | } | |
5e16da05 | 2889 | default: |
f73fabfd | 2890 | ret = LTTNG_ERR_UND; |
5461b305 | 2891 | break; |
fac6795d DG |
2892 | } |
2893 | ||
5461b305 | 2894 | error: |
5461b305 DG |
2895 | if (cmd_ctx->llm == NULL) { |
2896 | DBG("Missing llm structure. Allocating one."); | |
894be886 | 2897 | if (setup_lttng_msg(cmd_ctx, 0) < 0) { |
5461b305 DG |
2898 | goto setup_error; |
2899 | } | |
2900 | } | |
54d01ffb | 2901 | /* Set return code */ |
5461b305 | 2902 | cmd_ctx->llm->ret_code = ret; |
5461b305 | 2903 | setup_error: |
b5541356 | 2904 | if (cmd_ctx->session) { |
54d01ffb | 2905 | session_unlock(cmd_ctx->session); |
b5541356 | 2906 | } |
256a5576 MD |
2907 | if (need_tracing_session) { |
2908 | session_unlock_list(); | |
2909 | } | |
54d01ffb | 2910 | init_setup_error: |
8028d920 | 2911 | return ret; |
fac6795d DG |
2912 | } |
2913 | ||
44a5e5eb DG |
2914 | /* |
2915 | * Thread managing health check socket. | |
2916 | */ | |
2917 | static void *thread_manage_health(void *data) | |
2918 | { | |
eb4a2943 | 2919 | int sock = -1, new_sock = -1, ret, i, pollfd, err = -1; |
44a5e5eb DG |
2920 | uint32_t revents, nb_fd; |
2921 | struct lttng_poll_event events; | |
2922 | struct lttcomm_health_msg msg; | |
2923 | struct lttcomm_health_data reply; | |
2924 | ||
2925 | DBG("[thread] Manage health check started"); | |
2926 | ||
2927 | rcu_register_thread(); | |
2928 | ||
2929 | /* Create unix socket */ | |
2930 | sock = lttcomm_create_unix_sock(health_unix_sock_path); | |
2931 | if (sock < 0) { | |
2932 | ERR("Unable to create health check Unix socket"); | |
2933 | ret = -1; | |
2934 | goto error; | |
2935 | } | |
2936 | ||
b662582b DG |
2937 | /* |
2938 | * Set the CLOEXEC flag. Return code is useless because either way, the | |
2939 | * show must go on. | |
2940 | */ | |
2941 | (void) utils_set_fd_cloexec(sock); | |
2942 | ||
44a5e5eb DG |
2943 | ret = lttcomm_listen_unix_sock(sock); |
2944 | if (ret < 0) { | |
2945 | goto error; | |
2946 | } | |
2947 | ||
2948 | /* | |
2949 | * Pass 2 as size here for the thread quit pipe and client_sock. Nothing | |
2950 | * more will be added to this poll set. | |
2951 | */ | |
2952 | ret = create_thread_poll_set(&events, 2); | |
2953 | if (ret < 0) { | |
2954 | goto error; | |
2955 | } | |
2956 | ||
2957 | /* Add the application registration socket */ | |
2958 | ret = lttng_poll_add(&events, sock, LPOLLIN | LPOLLPRI); | |
2959 | if (ret < 0) { | |
2960 | goto error; | |
2961 | } | |
2962 | ||
2963 | while (1) { | |
2964 | DBG("Health check ready"); | |
2965 | ||
2966 | nb_fd = LTTNG_POLL_GETNB(&events); | |
2967 | ||
2968 | /* Inifinite blocking call, waiting for transmission */ | |
2969 | restart: | |
2970 | ret = lttng_poll_wait(&events, -1); | |
2971 | if (ret < 0) { | |
2972 | /* | |
2973 | * Restart interrupted system call. | |
2974 | */ | |
2975 | if (errno == EINTR) { | |
2976 | goto restart; | |
2977 | } | |
2978 | goto error; | |
2979 | } | |
2980 | ||
2981 | for (i = 0; i < nb_fd; i++) { | |
2982 | /* Fetch once the poll data */ | |
2983 | revents = LTTNG_POLL_GETEV(&events, i); | |
2984 | pollfd = LTTNG_POLL_GETFD(&events, i); | |
2985 | ||
2986 | /* Thread quit pipe has been closed. Killing thread. */ | |
2987 | ret = check_thread_quit_pipe(pollfd, revents); | |
2988 | if (ret) { | |
139ac872 MD |
2989 | err = 0; |
2990 | goto exit; | |
44a5e5eb DG |
2991 | } |
2992 | ||
2993 | /* Event on the registration socket */ | |
2994 | if (pollfd == sock) { | |
2995 | if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) { | |
2996 | ERR("Health socket poll error"); | |
2997 | goto error; | |
2998 | } | |
2999 | } | |
3000 | } | |
3001 | ||
3002 | new_sock = lttcomm_accept_unix_sock(sock); | |
3003 | if (new_sock < 0) { | |
3004 | goto error; | |
3005 | } | |
3006 | ||
b662582b DG |
3007 | /* |
3008 | * Set the CLOEXEC flag. Return code is useless because either way, the | |
3009 | * show must go on. | |
3010 | */ | |
3011 | (void) utils_set_fd_cloexec(new_sock); | |
3012 | ||
44a5e5eb DG |
3013 | DBG("Receiving data from client for health..."); |
3014 | ret = lttcomm_recv_unix_sock(new_sock, (void *)&msg, sizeof(msg)); | |
3015 | if (ret <= 0) { | |
3016 | DBG("Nothing recv() from client... continuing"); | |
3017 | ret = close(new_sock); | |
3018 | if (ret) { | |
3019 | PERROR("close"); | |
3020 | } | |
3021 | new_sock = -1; | |
3022 | continue; | |
3023 | } | |
3024 | ||
3025 | rcu_thread_online(); | |
3026 | ||
3027 | switch (msg.component) { | |
3028 | case LTTNG_HEALTH_CMD: | |
3029 | reply.ret_code = health_check_state(&health_thread_cmd); | |
3030 | break; | |
139ac872 MD |
3031 | case LTTNG_HEALTH_APP_MANAGE: |
3032 | reply.ret_code = health_check_state(&health_thread_app_manage); | |
3033 | break; | |
44a5e5eb DG |
3034 | case LTTNG_HEALTH_APP_REG: |
3035 | reply.ret_code = health_check_state(&health_thread_app_reg); | |
3036 | break; | |
3037 | case LTTNG_HEALTH_KERNEL: | |
3038 | reply.ret_code = health_check_state(&health_thread_kernel); | |
3039 | break; | |
3040 | case LTTNG_HEALTH_CONSUMER: | |
3041 | reply.ret_code = check_consumer_health(); | |
3042 | break; | |
3043 | case LTTNG_HEALTH_ALL: | |
44a5e5eb | 3044 | reply.ret_code = |
139ac872 MD |
3045 | health_check_state(&health_thread_app_manage) && |
3046 | health_check_state(&health_thread_app_reg) && | |
3047 | health_check_state(&health_thread_cmd) && | |
3048 | health_check_state(&health_thread_kernel) && | |
3049 | check_consumer_health(); | |
44a5e5eb DG |
3050 | break; |
3051 | default: | |
f73fabfd | 3052 | reply.ret_code = LTTNG_ERR_UND; |
44a5e5eb DG |
3053 | break; |
3054 | } | |
3055 | ||
3056 | /* | |
3057 | * Flip ret value since 0 is a success and 1 indicates a bad health for | |
3058 | * the client where in the sessiond it is the opposite. Again, this is | |
3059 | * just to make things easier for us poor developer which enjoy a lot | |
3060 | * lazyness. | |
3061 | */ | |
3062 | if (reply.ret_code == 0 || reply.ret_code == 1) { | |
3063 | reply.ret_code = !reply.ret_code; | |
3064 | } | |
3065 | ||
3066 | DBG2("Health check return value %d", reply.ret_code); | |
3067 | ||
3068 | ret = send_unix_sock(new_sock, (void *) &reply, sizeof(reply)); | |
3069 | if (ret < 0) { | |
3070 | ERR("Failed to send health data back to client"); | |
3071 | } | |
3072 | ||
3073 | /* End of transmission */ | |
3074 | ret = close(new_sock); | |
3075 | if (ret) { | |
3076 | PERROR("close"); | |
3077 | } | |
3078 | new_sock = -1; | |
3079 | } | |
3080 | ||
139ac872 | 3081 | exit: |
44a5e5eb | 3082 | error: |
139ac872 MD |
3083 | if (err) { |
3084 | ERR("Health error occurred in %s", __func__); | |
3085 | } | |
44a5e5eb DG |
3086 | DBG("Health check thread dying"); |
3087 | unlink(health_unix_sock_path); | |
3088 | if (sock >= 0) { | |
3089 | ret = close(sock); | |
3090 | if (ret) { | |
3091 | PERROR("close"); | |
3092 | } | |
3093 | } | |
3094 | if (new_sock >= 0) { | |
3095 | ret = close(new_sock); | |
3096 | if (ret) { | |
3097 | PERROR("close"); | |
3098 | } | |
3099 | } | |
3100 | ||
3101 | lttng_poll_clean(&events); | |
3102 | ||
3103 | rcu_unregister_thread(); | |
3104 | return NULL; | |
3105 | } | |
3106 | ||
1d4b027a | 3107 | /* |
d063d709 DG |
3108 | * This thread manage all clients request using the unix client socket for |
3109 | * communication. | |
1d4b027a DG |
3110 | */ |
3111 | static void *thread_manage_clients(void *data) | |
3112 | { | |
139ac872 | 3113 | int sock = -1, ret, i, pollfd, err = -1; |
53a80697 | 3114 | int sock_error; |
5eb91c98 | 3115 | uint32_t revents, nb_fd; |
273ea72c | 3116 | struct command_ctx *cmd_ctx = NULL; |
5eb91c98 | 3117 | struct lttng_poll_event events; |
1d4b027a DG |
3118 | |
3119 | DBG("[thread] Manage client started"); | |
3120 | ||
8ac94142 CB |
3121 | testpoint(thread_manage_clients); |
3122 | ||
f6a9efaa DG |
3123 | rcu_register_thread(); |
3124 | ||
44a5e5eb DG |
3125 | health_code_update(&health_thread_cmd); |
3126 | ||
1d4b027a DG |
3127 | ret = lttcomm_listen_unix_sock(client_sock); |
3128 | if (ret < 0) { | |
35df2755 | 3129 | goto error_listen; |
1d4b027a DG |
3130 | } |
3131 | ||
5eb91c98 DG |
3132 | /* |
3133 | * Pass 2 as size here for the thread quit pipe and client_sock. Nothing | |
3134 | * more will be added to this poll set. | |
3135 | */ | |
3136 | ret = create_thread_poll_set(&events, 2); | |
3137 | if (ret < 0) { | |
35df2755 | 3138 | goto error_create_poll; |
5eb91c98 | 3139 | } |
273ea72c | 3140 | |
5eb91c98 DG |
3141 | /* Add the application registration socket */ |
3142 | ret = lttng_poll_add(&events, client_sock, LPOLLIN | LPOLLPRI); | |
3143 | if (ret < 0) { | |
3144 | goto error; | |
3145 | } | |
273ea72c | 3146 | |
bbd973c2 DG |
3147 | /* |
3148 | * Notify parent pid that we are ready to accept command for client side. | |
1d4b027a DG |
3149 | */ |
3150 | if (opt_sig_parent) { | |
8db8d1dc | 3151 | kill(ppid, SIGUSR1); |
1d4b027a DG |
3152 | } |
3153 | ||
8ac94142 CB |
3154 | testpoint(thread_manage_clients_before_loop); |
3155 | ||
44a5e5eb DG |
3156 | health_code_update(&health_thread_cmd); |
3157 | ||
1d4b027a | 3158 | while (1) { |
1d4b027a | 3159 | DBG("Accepting client command ..."); |
273ea72c | 3160 | |
5eb91c98 DG |
3161 | nb_fd = LTTNG_POLL_GETNB(&events); |
3162 | ||
273ea72c | 3163 | /* Inifinite blocking call, waiting for transmission */ |
88f2b785 | 3164 | restart: |
44a5e5eb | 3165 | health_poll_update(&health_thread_cmd); |
5eb91c98 | 3166 | ret = lttng_poll_wait(&events, -1); |
44a5e5eb | 3167 | health_poll_update(&health_thread_cmd); |
273ea72c | 3168 | if (ret < 0) { |
88f2b785 MD |
3169 | /* |
3170 | * Restart interrupted system call. | |
3171 | */ | |
3172 | if (errno == EINTR) { | |
3173 | goto restart; | |
3174 | } | |
273ea72c DG |
3175 | goto error; |
3176 | } | |
3177 | ||
5eb91c98 DG |
3178 | for (i = 0; i < nb_fd; i++) { |
3179 | /* Fetch once the poll data */ | |
3180 | revents = LTTNG_POLL_GETEV(&events, i); | |
3181 | pollfd = LTTNG_POLL_GETFD(&events, i); | |
3182 | ||
44a5e5eb DG |
3183 | health_code_update(&health_thread_cmd); |
3184 | ||
5eb91c98 DG |
3185 | /* Thread quit pipe has been closed. Killing thread. */ |
3186 | ret = check_thread_quit_pipe(pollfd, revents); | |
3187 | if (ret) { | |
139ac872 MD |
3188 | err = 0; |
3189 | goto exit; | |
5eb91c98 DG |
3190 | } |
3191 | ||
3192 | /* Event on the registration socket */ | |
3193 | if (pollfd == client_sock) { | |
3194 | if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) { | |
3195 | ERR("Client socket poll error"); | |
3196 | goto error; | |
3197 | } | |
3198 | } | |
3199 | } | |
3200 | ||
3201 | DBG("Wait for client response"); | |
3202 | ||
44a5e5eb DG |
3203 | health_code_update(&health_thread_cmd); |
3204 | ||
5eb91c98 DG |
3205 | sock = lttcomm_accept_unix_sock(client_sock); |
3206 | if (sock < 0) { | |
273ea72c | 3207 | goto error; |
273ea72c DG |
3208 | } |
3209 | ||
b662582b DG |
3210 | /* |
3211 | * Set the CLOEXEC flag. Return code is useless because either way, the | |
3212 | * show must go on. | |
3213 | */ | |
3214 | (void) utils_set_fd_cloexec(sock); | |
3215 | ||
be040666 DG |
3216 | /* Set socket option for credentials retrieval */ |
3217 | ret = lttcomm_setsockopt_creds_unix_sock(sock); | |
3218 | if (ret < 0) { | |
3219 | goto error; | |
3220 | } | |
3221 | ||
5eb91c98 | 3222 | /* Allocate context command to process the client request */ |
ba7f0ae5 | 3223 | cmd_ctx = zmalloc(sizeof(struct command_ctx)); |
5eb91c98 | 3224 | if (cmd_ctx == NULL) { |
76d7553f | 3225 | PERROR("zmalloc cmd_ctx"); |
1d4b027a | 3226 | goto error; |
5eb91c98 | 3227 | } |
1d4b027a | 3228 | |
5eb91c98 | 3229 | /* Allocate data buffer for reception */ |
ba7f0ae5 | 3230 | cmd_ctx->lsm = zmalloc(sizeof(struct lttcomm_session_msg)); |
5eb91c98 | 3231 | if (cmd_ctx->lsm == NULL) { |
76d7553f | 3232 | PERROR("zmalloc cmd_ctx->lsm"); |
5eb91c98 DG |
3233 | goto error; |
3234 | } | |
1d4b027a | 3235 | |
5eb91c98 DG |
3236 | cmd_ctx->llm = NULL; |
3237 | cmd_ctx->session = NULL; | |
1d4b027a | 3238 | |
44a5e5eb DG |
3239 | health_code_update(&health_thread_cmd); |
3240 | ||
5eb91c98 DG |
3241 | /* |
3242 | * Data is received from the lttng client. The struct | |
3243 | * lttcomm_session_msg (lsm) contains the command and data request of | |
3244 | * the client. | |
3245 | */ | |
3246 | DBG("Receiving data from client ..."); | |
be040666 DG |
3247 | ret = lttcomm_recv_creds_unix_sock(sock, cmd_ctx->lsm, |
3248 | sizeof(struct lttcomm_session_msg), &cmd_ctx->creds); | |
5eb91c98 DG |
3249 | if (ret <= 0) { |
3250 | DBG("Nothing recv() from client... continuing"); | |
76d7553f MD |
3251 | ret = close(sock); |
3252 | if (ret) { | |
3253 | PERROR("close"); | |
3254 | } | |
3255 | sock = -1; | |
a2c0da86 | 3256 | clean_command_ctx(&cmd_ctx); |
5eb91c98 DG |
3257 | continue; |
3258 | } | |
1d4b027a | 3259 | |
44a5e5eb DG |
3260 | health_code_update(&health_thread_cmd); |
3261 | ||
5eb91c98 DG |
3262 | // TODO: Validate cmd_ctx including sanity check for |
3263 | // security purpose. | |
f7776ea7 | 3264 | |
f6a9efaa | 3265 | rcu_thread_online(); |
5eb91c98 DG |
3266 | /* |
3267 | * This function dispatch the work to the kernel or userspace tracer | |
3268 | * libs and fill the lttcomm_lttng_msg data structure of all the needed | |
3269 | * informations for the client. The command context struct contains | |
3270 | * everything this function may needs. | |
3271 | */ | |
53a80697 | 3272 | ret = process_client_msg(cmd_ctx, sock, &sock_error); |
f6a9efaa | 3273 | rcu_thread_offline(); |
5eb91c98 | 3274 | if (ret < 0) { |
53a80697 MD |
3275 | if (sock_error) { |
3276 | ret = close(sock); | |
3277 | if (ret) { | |
3278 | PERROR("close"); | |
3279 | } | |
3280 | sock = -1; | |
3281 | } | |
bbd973c2 | 3282 | /* |
5eb91c98 | 3283 | * TODO: Inform client somehow of the fatal error. At |
ba7f0ae5 | 3284 | * this point, ret < 0 means that a zmalloc failed |
53a80697 MD |
3285 | * (ENOMEM). Error detected but still accept |
3286 | * command, unless a socket error has been | |
3287 | * detected. | |
bbd973c2 | 3288 | */ |
bbd973c2 | 3289 | clean_command_ctx(&cmd_ctx); |
5eb91c98 DG |
3290 | continue; |
3291 | } | |
d6e4fca4 | 3292 | |
44a5e5eb DG |
3293 | health_code_update(&health_thread_cmd); |
3294 | ||
54d01ffb DG |
3295 | DBG("Sending response (size: %d, retcode: %s)", |
3296 | cmd_ctx->lttng_msg_size, | |
9a745bc7 | 3297 | lttng_strerror(-cmd_ctx->llm->ret_code)); |
54d01ffb | 3298 | ret = send_unix_sock(sock, cmd_ctx->llm, cmd_ctx->lttng_msg_size); |
5eb91c98 DG |
3299 | if (ret < 0) { |
3300 | ERR("Failed to send data back to client"); | |
bbd973c2 | 3301 | } |
1d4b027a | 3302 | |
5eb91c98 | 3303 | /* End of transmission */ |
76d7553f MD |
3304 | ret = close(sock); |
3305 | if (ret) { | |
3306 | PERROR("close"); | |
3307 | } | |
3308 | sock = -1; | |
be040666 DG |
3309 | |
3310 | clean_command_ctx(&cmd_ctx); | |
44a5e5eb DG |
3311 | |
3312 | health_code_update(&health_thread_cmd); | |
273ea72c DG |
3313 | } |
3314 | ||
139ac872 | 3315 | exit: |
5eb91c98 | 3316 | error: |
35df2755 CB |
3317 | if (sock >= 0) { |
3318 | ret = close(sock); | |
3319 | if (ret) { | |
3320 | PERROR("close"); | |
3321 | } | |
139ac872 | 3322 | } |
44a5e5eb | 3323 | |
35df2755 CB |
3324 | lttng_poll_clean(&events); |
3325 | clean_command_ctx(&cmd_ctx); | |
3326 | ||
3327 | error_listen: | |
3328 | error_create_poll: | |
273ea72c | 3329 | unlink(client_unix_sock_path); |
76d7553f MD |
3330 | if (client_sock >= 0) { |
3331 | ret = close(client_sock); | |
3332 | if (ret) { | |
3333 | PERROR("close"); | |
3334 | } | |
a4b35e07 | 3335 | } |
35df2755 CB |
3336 | |
3337 | if (err) { | |
3338 | health_error(&health_thread_cmd); | |
3339 | ERR("Health error occurred in %s", __func__); | |
a4b35e07 | 3340 | } |
273ea72c | 3341 | |
35df2755 CB |
3342 | health_exit(&health_thread_cmd); |
3343 | ||
3344 | DBG("Client thread dying"); | |
f6a9efaa DG |
3345 | |
3346 | rcu_unregister_thread(); | |
1d4b027a DG |
3347 | return NULL; |
3348 | } | |
3349 | ||
3350 | ||
fac6795d DG |
3351 | /* |
3352 | * usage function on stderr | |
3353 | */ | |
3354 | static void usage(void) | |
3355 | { | |
b716ce68 | 3356 | fprintf(stderr, "Usage: %s OPTIONS\n\nOptions:\n", progname); |
d6f42150 DG |
3357 | fprintf(stderr, " -h, --help Display this usage.\n"); |
3358 | fprintf(stderr, " -c, --client-sock PATH Specify path for the client unix socket\n"); | |
3359 | fprintf(stderr, " -a, --apps-sock PATH Specify path for apps unix socket\n"); | |
3360 | fprintf(stderr, " --kconsumerd-err-sock PATH Specify path for the kernel consumer error socket\n"); | |
3361 | fprintf(stderr, " --kconsumerd-cmd-sock PATH Specify path for the kernel consumer command socket\n"); | |
7753dea8 MD |
3362 | fprintf(stderr, " --ustconsumerd32-err-sock PATH Specify path for the 32-bit UST consumer error socket\n"); |
3363 | fprintf(stderr, " --ustconsumerd64-err-sock PATH Specify path for the 64-bit UST consumer error socket\n"); | |
3364 | fprintf(stderr, " --ustconsumerd32-cmd-sock PATH Specify path for the 32-bit UST consumer command socket\n"); | |
3365 | fprintf(stderr, " --ustconsumerd64-cmd-sock PATH Specify path for the 64-bit UST consumer command socket\n"); | |
ebaeda94 MD |
3366 | fprintf(stderr, " --consumerd32-path PATH Specify path for the 32-bit UST consumer daemon binary\n"); |
3367 | fprintf(stderr, " --consumerd32-libdir PATH Specify path for the 32-bit UST consumer daemon libraries\n"); | |
3368 | fprintf(stderr, " --consumerd64-path PATH Specify path for the 64-bit UST consumer daemon binary\n"); | |
3369 | fprintf(stderr, " --consumerd64-libdir PATH Specify path for the 64-bit UST consumer daemon libraries\n"); | |
d6f42150 DG |
3370 | fprintf(stderr, " -d, --daemonize Start as a daemon.\n"); |
3371 | fprintf(stderr, " -g, --group NAME Specify the tracing group name. (default: tracing)\n"); | |
3372 | fprintf(stderr, " -V, --version Show version number.\n"); | |
3373 | fprintf(stderr, " -S, --sig-parent Send SIGCHLD to parent pid to notify readiness.\n"); | |
3374 | fprintf(stderr, " -q, --quiet No output at all.\n"); | |
3375 | fprintf(stderr, " -v, --verbose Verbose mode. Activate DBG() macro.\n"); | |
3bd1e081 | 3376 | fprintf(stderr, " --verbose-consumer Verbose mode for consumer. Activate DBG() macro.\n"); |
4fba7219 | 3377 | fprintf(stderr, " --no-kernel Disable kernel tracer\n"); |
fac6795d DG |
3378 | } |
3379 | ||
3380 | /* | |
3381 | * daemon argument parsing | |
3382 | */ | |
3383 | static int parse_args(int argc, char **argv) | |
3384 | { | |
3385 | int c; | |
3386 | ||
3387 | static struct option long_options[] = { | |
3388 | { "client-sock", 1, 0, 'c' }, | |
3389 | { "apps-sock", 1, 0, 'a' }, | |
3bd1e081 MD |
3390 | { "kconsumerd-cmd-sock", 1, 0, 'C' }, |
3391 | { "kconsumerd-err-sock", 1, 0, 'E' }, | |
7753dea8 MD |
3392 | { "ustconsumerd32-cmd-sock", 1, 0, 'G' }, |
3393 | { "ustconsumerd32-err-sock", 1, 0, 'H' }, | |
ebaeda94 MD |
3394 | { "ustconsumerd64-cmd-sock", 1, 0, 'D' }, |
3395 | { "ustconsumerd64-err-sock", 1, 0, 'F' }, | |
3396 | { "consumerd32-path", 1, 0, 'u' }, | |
3397 | { "consumerd32-libdir", 1, 0, 'U' }, | |
3398 | { "consumerd64-path", 1, 0, 't' }, | |
3399 | { "consumerd64-libdir", 1, 0, 'T' }, | |
fac6795d | 3400 | { "daemonize", 0, 0, 'd' }, |
5b8719f5 | 3401 | { "sig-parent", 0, 0, 'S' }, |
fac6795d DG |
3402 | { "help", 0, 0, 'h' }, |
3403 | { "group", 1, 0, 'g' }, | |
3404 | { "version", 0, 0, 'V' }, | |
75462a81 | 3405 | { "quiet", 0, 0, 'q' }, |
3f9947db | 3406 | { "verbose", 0, 0, 'v' }, |
3bd1e081 | 3407 | { "verbose-consumer", 0, 0, 'Z' }, |
4fba7219 | 3408 | { "no-kernel", 0, 0, 'N' }, |
fac6795d DG |
3409 | { NULL, 0, 0, 0 } |
3410 | }; | |
3411 | ||
3412 | while (1) { | |
3413 | int option_index = 0; | |
4fba7219 | 3414 | c = getopt_long(argc, argv, "dhqvVSN" "a:c:g:s:C:E:D:F:Z:u:t", |
54d01ffb | 3415 | long_options, &option_index); |
fac6795d DG |
3416 | if (c == -1) { |
3417 | break; | |
3418 | } | |
3419 | ||
3420 | switch (c) { | |
3421 | case 0: | |
3422 | fprintf(stderr, "option %s", long_options[option_index].name); | |
3423 | if (optarg) { | |
3424 | fprintf(stderr, " with arg %s\n", optarg); | |
3425 | } | |
3426 | break; | |
b716ce68 | 3427 | case 'c': |
fac6795d DG |
3428 | snprintf(client_unix_sock_path, PATH_MAX, "%s", optarg); |
3429 | break; | |
3430 | case 'a': | |
3431 | snprintf(apps_unix_sock_path, PATH_MAX, "%s", optarg); | |
3432 | break; | |
3433 | case 'd': | |
3434 | opt_daemon = 1; | |
3435 | break; | |
3436 | case 'g': | |
fb09408a | 3437 | opt_tracing_group = optarg; |
fac6795d DG |
3438 | break; |
3439 | case 'h': | |
3440 | usage(); | |
3441 | exit(EXIT_FAILURE); | |
3442 | case 'V': | |
3443 | fprintf(stdout, "%s\n", VERSION); | |
3444 | exit(EXIT_SUCCESS); | |
5b8719f5 DG |
3445 | case 'S': |
3446 | opt_sig_parent = 1; | |
3447 | break; | |
d6f42150 | 3448 | case 'E': |
3bd1e081 | 3449 | snprintf(kconsumer_data.err_unix_sock_path, PATH_MAX, "%s", optarg); |
d6f42150 DG |
3450 | break; |
3451 | case 'C': | |
3bd1e081 MD |
3452 | snprintf(kconsumer_data.cmd_unix_sock_path, PATH_MAX, "%s", optarg); |
3453 | break; | |
3454 | case 'F': | |
7753dea8 | 3455 | snprintf(ustconsumer64_data.err_unix_sock_path, PATH_MAX, "%s", optarg); |
3bd1e081 MD |
3456 | break; |
3457 | case 'D': | |
7753dea8 MD |
3458 | snprintf(ustconsumer64_data.cmd_unix_sock_path, PATH_MAX, "%s", optarg); |
3459 | break; | |
3460 | case 'H': | |
3461 | snprintf(ustconsumer32_data.err_unix_sock_path, PATH_MAX, "%s", optarg); | |
3462 | break; | |
3463 | case 'G': | |
3464 | snprintf(ustconsumer32_data.cmd_unix_sock_path, PATH_MAX, "%s", optarg); | |
d6f42150 | 3465 | break; |
4fba7219 DG |
3466 | case 'N': |
3467 | opt_no_kernel = 1; | |
3468 | break; | |
75462a81 | 3469 | case 'q': |
97e19046 | 3470 | lttng_opt_quiet = 1; |
75462a81 | 3471 | break; |
3f9947db | 3472 | case 'v': |
53086306 | 3473 | /* Verbose level can increase using multiple -v */ |
97e19046 | 3474 | lttng_opt_verbose += 1; |
3f9947db | 3475 | break; |
31f73cc9 | 3476 | case 'Z': |
3bd1e081 | 3477 | opt_verbose_consumer += 1; |
31f73cc9 | 3478 | break; |
fb09408a | 3479 | case 'u': |
fc7a59ce | 3480 | consumerd32_bin= optarg; |
ebaeda94 MD |
3481 | break; |
3482 | case 'U': | |
3483 | consumerd32_libdir = optarg; | |
7753dea8 MD |
3484 | break; |
3485 | case 't': | |
fc7a59ce | 3486 | consumerd64_bin = optarg; |
ebaeda94 MD |
3487 | break; |
3488 | case 'T': | |
3489 | consumerd64_libdir = optarg; | |
fb09408a | 3490 | break; |
fac6795d DG |
3491 | default: |
3492 | /* Unknown option or other error. | |
3493 | * Error is printed by getopt, just return */ | |
3494 | return -1; | |
3495 | } | |
3496 | } | |
3497 | ||
3498 | return 0; | |
3499 | } | |
3500 | ||
3501 | /* | |
d063d709 | 3502 | * Creates the two needed socket by the daemon. |
d6f42150 DG |
3503 | * apps_sock - The communication socket for all UST apps. |
3504 | * client_sock - The communication of the cli tool (lttng). | |
fac6795d | 3505 | */ |
cf3af59e | 3506 | static int init_daemon_socket(void) |
fac6795d DG |
3507 | { |
3508 | int ret = 0; | |
3509 | mode_t old_umask; | |
3510 | ||
3511 | old_umask = umask(0); | |
3512 | ||
3513 | /* Create client tool unix socket */ | |
d6f42150 DG |
3514 | client_sock = lttcomm_create_unix_sock(client_unix_sock_path); |
3515 | if (client_sock < 0) { | |
3516 | ERR("Create unix sock failed: %s", client_unix_sock_path); | |
fac6795d DG |
3517 | ret = -1; |
3518 | goto end; | |
3519 | } | |
3520 | ||
b662582b DG |
3521 | /* Set the cloexec flag */ |
3522 | ret = utils_set_fd_cloexec(client_sock); | |
3523 | if (ret < 0) { | |
3524 | ERR("Unable to set CLOEXEC flag to the client Unix socket (fd: %d). " | |
3525 | "Continuing but note that the consumer daemon will have a " | |
3526 | "reference to this socket on exec()", client_sock); | |
3527 | } | |
3528 | ||
fac6795d DG |
3529 | /* File permission MUST be 660 */ |
3530 | ret = chmod(client_unix_sock_path, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP); | |
3531 | if (ret < 0) { | |
d6f42150 | 3532 | ERR("Set file permissions failed: %s", client_unix_sock_path); |
76d7553f | 3533 | PERROR("chmod"); |
fac6795d DG |
3534 | goto end; |
3535 | } | |
3536 | ||
3537 | /* Create the application unix socket */ | |
d6f42150 DG |
3538 | apps_sock = lttcomm_create_unix_sock(apps_unix_sock_path); |
3539 | if (apps_sock < 0) { | |
3540 | ERR("Create unix sock failed: %s", apps_unix_sock_path); | |
fac6795d DG |
3541 | ret = -1; |
3542 | goto end; | |
3543 | } | |
3544 | ||
b662582b DG |
3545 | /* Set the cloexec flag */ |
3546 | ret = utils_set_fd_cloexec(apps_sock); | |
3547 | if (ret < 0) { | |
3548 | ERR("Unable to set CLOEXEC flag to the app Unix socket (fd: %d). " | |
3549 | "Continuing but note that the consumer daemon will have a " | |
3550 | "reference to this socket on exec()", apps_sock); | |
3551 | } | |
3552 | ||
d6f42150 | 3553 | /* File permission MUST be 666 */ |
54d01ffb DG |
3554 | ret = chmod(apps_unix_sock_path, |
3555 | S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH); | |
fac6795d | 3556 | if (ret < 0) { |
d6f42150 | 3557 | ERR("Set file permissions failed: %s", apps_unix_sock_path); |
76d7553f | 3558 | PERROR("chmod"); |
fac6795d DG |
3559 | goto end; |
3560 | } | |
3561 | ||
b662582b DG |
3562 | DBG3("Session daemon client socket %d and application socket %d created", |
3563 | client_sock, apps_sock); | |
3564 | ||
fac6795d DG |
3565 | end: |
3566 | umask(old_umask); | |
3567 | return ret; | |
3568 | } | |
3569 | ||
3570 | /* | |
54d01ffb DG |
3571 | * Check if the global socket is available, and if a daemon is answering at the |
3572 | * other side. If yes, error is returned. | |
fac6795d | 3573 | */ |
cf3af59e | 3574 | static int check_existing_daemon(void) |
fac6795d | 3575 | { |
7d8234d9 | 3576 | /* Is there anybody out there ? */ |
099e26bd | 3577 | if (lttng_session_daemon_alive()) { |
7d8234d9 | 3578 | return -EEXIST; |
099e26bd | 3579 | } |
b09c7c76 DG |
3580 | |
3581 | return 0; | |
fac6795d DG |
3582 | } |
3583 | ||
fac6795d | 3584 | /* |
d063d709 | 3585 | * Set the tracing group gid onto the client socket. |
5e16da05 | 3586 | * |
d063d709 | 3587 | * Race window between mkdir and chown is OK because we are going from more |
d1613cf5 | 3588 | * permissive (root.root) to less permissive (root.tracing). |
fac6795d | 3589 | */ |
be040666 | 3590 | static int set_permissions(char *rundir) |
fac6795d DG |
3591 | { |
3592 | int ret; | |
996b65c8 | 3593 | gid_t gid; |
fac6795d | 3594 | |
6775595e DG |
3595 | ret = allowed_group(); |
3596 | if (ret < 0) { | |
be040666 DG |
3597 | WARN("No tracing group detected"); |
3598 | ret = 0; | |
fac6795d DG |
3599 | goto end; |
3600 | } | |
3601 | ||
6775595e DG |
3602 | gid = ret; |
3603 | ||
d6f42150 | 3604 | /* Set lttng run dir */ |
be040666 | 3605 | ret = chown(rundir, 0, gid); |
d6f42150 | 3606 | if (ret < 0) { |
be040666 | 3607 | ERR("Unable to set group on %s", rundir); |
76d7553f | 3608 | PERROR("chown"); |
d6f42150 DG |
3609 | } |
3610 | ||
d1613cf5 | 3611 | /* Ensure tracing group can search the run dir */ |
61076f74 | 3612 | ret = chmod(rundir, S_IRWXU | S_IXGRP | S_IXOTH); |
d1613cf5 JN |
3613 | if (ret < 0) { |
3614 | ERR("Unable to set permissions on %s", rundir); | |
76d7553f | 3615 | PERROR("chmod"); |
d1613cf5 JN |
3616 | } |
3617 | ||
d6f42150 | 3618 | /* lttng client socket path */ |
996b65c8 | 3619 | ret = chown(client_unix_sock_path, 0, gid); |
fac6795d | 3620 | if (ret < 0) { |
d6f42150 | 3621 | ERR("Unable to set group on %s", client_unix_sock_path); |
76d7553f | 3622 | PERROR("chown"); |
d6f42150 DG |
3623 | } |
3624 | ||
3bd1e081 MD |
3625 | /* kconsumer error socket path */ |
3626 | ret = chown(kconsumer_data.err_unix_sock_path, 0, gid); | |
d6f42150 | 3627 | if (ret < 0) { |
3bd1e081 | 3628 | ERR("Unable to set group on %s", kconsumer_data.err_unix_sock_path); |
76d7553f | 3629 | PERROR("chown"); |
3bd1e081 MD |
3630 | } |
3631 | ||
7753dea8 MD |
3632 | /* 64-bit ustconsumer error socket path */ |
3633 | ret = chown(ustconsumer64_data.err_unix_sock_path, 0, gid); | |
3634 | if (ret < 0) { | |
3635 | ERR("Unable to set group on %s", ustconsumer64_data.err_unix_sock_path); | |
76d7553f | 3636 | PERROR("chown"); |
7753dea8 MD |
3637 | } |
3638 | ||
3639 | /* 32-bit ustconsumer compat32 error socket path */ | |
3640 | ret = chown(ustconsumer32_data.err_unix_sock_path, 0, gid); | |
3bd1e081 | 3641 | if (ret < 0) { |
7753dea8 | 3642 | ERR("Unable to set group on %s", ustconsumer32_data.err_unix_sock_path); |
76d7553f | 3643 | PERROR("chown"); |
fac6795d DG |
3644 | } |
3645 | ||
d6f42150 | 3646 | DBG("All permissions are set"); |
e07ae692 | 3647 | |
fac6795d DG |
3648 | end: |
3649 | return ret; | |
3650 | } | |
3651 | ||
d6f42150 | 3652 | /* |
d063d709 | 3653 | * Create the lttng run directory needed for all global sockets and pipe. |
d6f42150 | 3654 | */ |
67e40797 | 3655 | static int create_lttng_rundir(const char *rundir) |
d6f42150 DG |
3656 | { |
3657 | int ret; | |
3658 | ||
67e40797 DG |
3659 | DBG3("Creating LTTng run directory: %s", rundir); |
3660 | ||
d1613cf5 | 3661 | ret = mkdir(rundir, S_IRWXU); |
d6f42150 | 3662 | if (ret < 0) { |
b1f11e69 | 3663 | if (errno != EEXIST) { |
67e40797 | 3664 | ERR("Unable to create %s", rundir); |
b1f11e69 DG |
3665 | goto error; |
3666 | } else { | |
3667 | ret = 0; | |
3668 | } | |
d6f42150 DG |
3669 | } |
3670 | ||
3671 | error: | |
3672 | return ret; | |
3673 | } | |
3674 | ||
3675 | /* | |
d063d709 DG |
3676 | * Setup sockets and directory needed by the kconsumerd communication with the |
3677 | * session daemon. | |
d6f42150 | 3678 | */ |
67e40797 DG |
3679 | static int set_consumer_sockets(struct consumer_data *consumer_data, |
3680 | const char *rundir) | |
d6f42150 DG |
3681 | { |
3682 | int ret; | |
67e40797 | 3683 | char path[PATH_MAX]; |
d6f42150 | 3684 | |
67e40797 | 3685 | switch (consumer_data->type) { |
7753dea8 | 3686 | case LTTNG_CONSUMER_KERNEL: |
60922cb0 | 3687 | snprintf(path, PATH_MAX, DEFAULT_KCONSUMERD_PATH, rundir); |
7753dea8 MD |
3688 | break; |
3689 | case LTTNG_CONSUMER64_UST: | |
60922cb0 | 3690 | snprintf(path, PATH_MAX, DEFAULT_USTCONSUMERD64_PATH, rundir); |
7753dea8 MD |
3691 | break; |
3692 | case LTTNG_CONSUMER32_UST: | |
60922cb0 | 3693 | snprintf(path, PATH_MAX, DEFAULT_USTCONSUMERD32_PATH, rundir); |
7753dea8 MD |
3694 | break; |
3695 | default: | |
3696 | ERR("Consumer type unknown"); | |
3697 | ret = -EINVAL; | |
3698 | goto error; | |
d6f42150 DG |
3699 | } |
3700 | ||
67e40797 DG |
3701 | DBG2("Creating consumer directory: %s", path); |
3702 | ||
d1613cf5 | 3703 | ret = mkdir(path, S_IRWXU); |
d6f42150 | 3704 | if (ret < 0) { |
6beb2242 | 3705 | if (errno != EEXIST) { |
f11e84c2 | 3706 | PERROR("mkdir"); |
3bd1e081 | 3707 | ERR("Failed to create %s", path); |
6beb2242 DG |
3708 | goto error; |
3709 | } | |
f11e84c2 | 3710 | ret = -1; |
d6f42150 DG |
3711 | } |
3712 | ||
3713 | /* Create the kconsumerd error unix socket */ | |
3bd1e081 MD |
3714 | consumer_data->err_sock = |
3715 | lttcomm_create_unix_sock(consumer_data->err_unix_sock_path); | |
3716 | if (consumer_data->err_sock < 0) { | |
3717 | ERR("Create unix sock failed: %s", consumer_data->err_unix_sock_path); | |
d6f42150 DG |
3718 | ret = -1; |
3719 | goto error; | |
3720 | } | |
3721 | ||
3722 | /* File permission MUST be 660 */ | |
3bd1e081 | 3723 | ret = chmod(consumer_data->err_unix_sock_path, |
54d01ffb | 3724 | S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP); |
d6f42150 | 3725 | if (ret < 0) { |
3bd1e081 | 3726 | ERR("Set file permissions failed: %s", consumer_data->err_unix_sock_path); |
67e40797 | 3727 | PERROR("chmod"); |
d6f42150 DG |
3728 | goto error; |
3729 | } | |
3730 | ||
3731 | error: | |
3732 | return ret; | |
3733 | } | |
3734 | ||
fac6795d | 3735 | /* |
d063d709 | 3736 | * Signal handler for the daemon |
cf3af59e | 3737 | * |
54d01ffb DG |
3738 | * Simply stop all worker threads, leaving main() return gracefully after |
3739 | * joining all threads and calling cleanup(). | |
fac6795d DG |
3740 | */ |
3741 | static void sighandler(int sig) | |
3742 | { | |
3743 | switch (sig) { | |
cf3af59e | 3744 | case SIGPIPE: |
af87c45a | 3745 | DBG("SIGPIPE caught"); |
cf3af59e MD |
3746 | return; |
3747 | case SIGINT: | |
af87c45a | 3748 | DBG("SIGINT caught"); |
cf3af59e MD |
3749 | stop_threads(); |
3750 | break; | |
3751 | case SIGTERM: | |
af87c45a | 3752 | DBG("SIGTERM caught"); |
cf3af59e MD |
3753 | stop_threads(); |
3754 | break; | |
3755 | default: | |
3756 | break; | |
fac6795d | 3757 | } |
fac6795d DG |
3758 | } |
3759 | ||
3760 | /* | |
d063d709 | 3761 | * Setup signal handler for : |
1d4b027a | 3762 | * SIGINT, SIGTERM, SIGPIPE |
fac6795d | 3763 | */ |
1d4b027a | 3764 | static int set_signal_handler(void) |
fac6795d | 3765 | { |
1d4b027a DG |
3766 | int ret = 0; |
3767 | struct sigaction sa; | |
3768 | sigset_t sigset; | |
fac6795d | 3769 | |
1d4b027a | 3770 | if ((ret = sigemptyset(&sigset)) < 0) { |
76d7553f | 3771 | PERROR("sigemptyset"); |
1d4b027a DG |
3772 | return ret; |
3773 | } | |
d6f42150 | 3774 | |
1d4b027a DG |
3775 | sa.sa_handler = sighandler; |
3776 | sa.sa_mask = sigset; | |
3777 | sa.sa_flags = 0; | |
3778 | if ((ret = sigaction(SIGTERM, &sa, NULL)) < 0) { | |
76d7553f | 3779 | PERROR("sigaction"); |
1d4b027a | 3780 | return ret; |
d6f42150 DG |
3781 | } |
3782 | ||
1d4b027a | 3783 | if ((ret = sigaction(SIGINT, &sa, NULL)) < 0) { |
76d7553f | 3784 | PERROR("sigaction"); |
1d4b027a | 3785 | return ret; |
d6f42150 | 3786 | } |
aaf26714 | 3787 | |
1d4b027a | 3788 | if ((ret = sigaction(SIGPIPE, &sa, NULL)) < 0) { |
76d7553f | 3789 | PERROR("sigaction"); |
1d4b027a | 3790 | return ret; |
8c0faa1d DG |
3791 | } |
3792 | ||
1d4b027a DG |
3793 | DBG("Signal handler set for SIGTERM, SIGPIPE and SIGINT"); |
3794 | ||
3795 | return ret; | |
fac6795d DG |
3796 | } |
3797 | ||
f3ed775e | 3798 | /* |
d063d709 DG |
3799 | * Set open files limit to unlimited. This daemon can open a large number of |
3800 | * file descriptors in order to consumer multiple kernel traces. | |
f3ed775e DG |
3801 | */ |
3802 | static void set_ulimit(void) | |
3803 | { | |
3804 | int ret; | |
3805 | struct rlimit lim; | |
3806 | ||
a88df331 | 3807 | /* The kernel does not allowed an infinite limit for open files */ |
f3ed775e DG |
3808 | lim.rlim_cur = 65535; |
3809 | lim.rlim_max = 65535; | |
3810 | ||
3811 | ret = setrlimit(RLIMIT_NOFILE, &lim); | |
3812 | if (ret < 0) { | |
76d7553f | 3813 | PERROR("failed to set open files limit"); |
f3ed775e DG |
3814 | } |
3815 | } | |
3816 | ||
fac6795d DG |
3817 | /* |
3818 | * main | |
3819 | */ | |
3820 | int main(int argc, char **argv) | |
3821 | { | |
fac6795d DG |
3822 | int ret = 0; |
3823 | void *status; | |
ae9e45b3 | 3824 | const char *home_path, *env_app_timeout; |
fac6795d | 3825 | |
335a95b7 MD |
3826 | init_kernel_workarounds(); |
3827 | ||
f6a9efaa DG |
3828 | rcu_register_thread(); |
3829 | ||
7753dea8 | 3830 | setup_consumerd_path(); |
fb09408a | 3831 | |
fac6795d DG |
3832 | /* Parse arguments */ |
3833 | progname = argv[0]; | |
3834 | if ((ret = parse_args(argc, argv) < 0)) { | |
cf3af59e | 3835 | goto error; |
fac6795d DG |
3836 | } |
3837 | ||
3838 | /* Daemonize */ | |
3839 | if (opt_daemon) { | |
ceed52b5 MD |
3840 | int i; |
3841 | ||
3842 | /* | |
3843 | * fork | |
3844 | * child: setsid, close FD 0, 1, 2, chdir / | |
3845 | * parent: exit (if fork is successful) | |
3846 | */ | |
53094c05 DG |
3847 | ret = daemon(0, 0); |
3848 | if (ret < 0) { | |
76d7553f | 3849 | PERROR("daemon"); |
cf3af59e | 3850 | goto error; |
53094c05 | 3851 | } |
ceed52b5 MD |
3852 | /* |
3853 | * We are in the child. Make sure all other file | |
3854 | * descriptors are closed, in case we are called with | |
3855 | * more opened file descriptors than the standard ones. | |
3856 | */ | |
3857 | for (i = 3; i < sysconf(_SC_OPEN_MAX); i++) { | |
3858 | (void) close(i); | |
3859 | } | |
3860 | } | |
3861 | ||
3862 | /* Create thread quit pipe */ | |
3863 | if ((ret = init_thread_quit_pipe()) < 0) { | |
3864 | goto error; | |
fac6795d DG |
3865 | } |
3866 | ||
3867 | /* Check if daemon is UID = 0 */ | |
3868 | is_root = !getuid(); | |
3869 | ||
fac6795d | 3870 | if (is_root) { |
990570ed | 3871 | rundir = strdup(DEFAULT_LTTNG_RUNDIR); |
67e40797 DG |
3872 | |
3873 | /* Create global run dir with root access */ | |
3874 | ret = create_lttng_rundir(rundir); | |
d6f42150 | 3875 | if (ret < 0) { |
cf3af59e | 3876 | goto error; |
d6f42150 DG |
3877 | } |
3878 | ||
fac6795d | 3879 | if (strlen(apps_unix_sock_path) == 0) { |
d6f42150 DG |
3880 | snprintf(apps_unix_sock_path, PATH_MAX, |
3881 | DEFAULT_GLOBAL_APPS_UNIX_SOCK); | |
fac6795d DG |
3882 | } |
3883 | ||
3884 | if (strlen(client_unix_sock_path) == 0) { | |
d6f42150 DG |
3885 | snprintf(client_unix_sock_path, PATH_MAX, |
3886 | DEFAULT_GLOBAL_CLIENT_UNIX_SOCK); | |
3887 | } | |
0fdd1e2c DG |
3888 | |
3889 | /* Set global SHM for ust */ | |
3890 | if (strlen(wait_shm_path) == 0) { | |
3891 | snprintf(wait_shm_path, PATH_MAX, | |
3892 | DEFAULT_GLOBAL_APPS_WAIT_SHM_PATH); | |
3893 | } | |
67e40797 | 3894 | |
44a5e5eb DG |
3895 | if (strlen(health_unix_sock_path) == 0) { |
3896 | snprintf(health_unix_sock_path, sizeof(health_unix_sock_path), | |
3897 | DEFAULT_GLOBAL_HEALTH_UNIX_SOCK); | |
3898 | } | |
3899 | ||
67e40797 DG |
3900 | /* Setup kernel consumerd path */ |
3901 | snprintf(kconsumer_data.err_unix_sock_path, PATH_MAX, | |
60922cb0 | 3902 | DEFAULT_KCONSUMERD_ERR_SOCK_PATH, rundir); |
67e40797 | 3903 | snprintf(kconsumer_data.cmd_unix_sock_path, PATH_MAX, |
60922cb0 | 3904 | DEFAULT_KCONSUMERD_CMD_SOCK_PATH, rundir); |
67e40797 DG |
3905 | |
3906 | DBG2("Kernel consumer err path: %s", | |
3907 | kconsumer_data.err_unix_sock_path); | |
3908 | DBG2("Kernel consumer cmd path: %s", | |
3909 | kconsumer_data.cmd_unix_sock_path); | |
fac6795d | 3910 | } else { |
b082db07 DG |
3911 | home_path = get_home_dir(); |
3912 | if (home_path == NULL) { | |
273ea72c DG |
3913 | /* TODO: Add --socket PATH option */ |
3914 | ERR("Can't get HOME directory for sockets creation."); | |
cf3af59e MD |
3915 | ret = -EPERM; |
3916 | goto error; | |
b082db07 DG |
3917 | } |
3918 | ||
67e40797 DG |
3919 | /* |
3920 | * Create rundir from home path. This will create something like | |
3921 | * $HOME/.lttng | |
3922 | */ | |
990570ed | 3923 | ret = asprintf(&rundir, DEFAULT_LTTNG_HOME_RUNDIR, home_path); |
67e40797 DG |
3924 | if (ret < 0) { |
3925 | ret = -ENOMEM; | |
3926 | goto error; | |
3927 | } | |
3928 | ||
3929 | ret = create_lttng_rundir(rundir); | |
3930 | if (ret < 0) { | |
3931 | goto error; | |
3932 | } | |
3933 | ||
fac6795d | 3934 | if (strlen(apps_unix_sock_path) == 0) { |
d6f42150 | 3935 | snprintf(apps_unix_sock_path, PATH_MAX, |
b082db07 | 3936 | DEFAULT_HOME_APPS_UNIX_SOCK, home_path); |
fac6795d DG |
3937 | } |
3938 | ||
3939 | /* Set the cli tool unix socket path */ | |
3940 | if (strlen(client_unix_sock_path) == 0) { | |
d6f42150 | 3941 | snprintf(client_unix_sock_path, PATH_MAX, |
b082db07 | 3942 | DEFAULT_HOME_CLIENT_UNIX_SOCK, home_path); |
fac6795d | 3943 | } |
0fdd1e2c DG |
3944 | |
3945 | /* Set global SHM for ust */ | |
3946 | if (strlen(wait_shm_path) == 0) { | |
3947 | snprintf(wait_shm_path, PATH_MAX, | |
3948 | DEFAULT_HOME_APPS_WAIT_SHM_PATH, geteuid()); | |
3949 | } | |
44a5e5eb DG |
3950 | |
3951 | /* Set health check Unix path */ | |
3952 | if (strlen(health_unix_sock_path) == 0) { | |
3953 | snprintf(health_unix_sock_path, sizeof(health_unix_sock_path), | |
3954 | DEFAULT_HOME_HEALTH_UNIX_SOCK, home_path); | |
3955 | } | |
fac6795d DG |
3956 | } |
3957 | ||
5c827ce0 DG |
3958 | /* Set consumer initial state */ |
3959 | kernel_consumerd_state = CONSUMER_STOPPED; | |
3960 | ust_consumerd_state = CONSUMER_STOPPED; | |
3961 | ||
847177cd DG |
3962 | DBG("Client socket path %s", client_unix_sock_path); |
3963 | DBG("Application socket path %s", apps_unix_sock_path); | |
67e40797 DG |
3964 | DBG("LTTng run directory path: %s", rundir); |
3965 | ||
3966 | /* 32 bits consumerd path setup */ | |
3967 | snprintf(ustconsumer32_data.err_unix_sock_path, PATH_MAX, | |
60922cb0 | 3968 | DEFAULT_USTCONSUMERD32_ERR_SOCK_PATH, rundir); |
67e40797 | 3969 | snprintf(ustconsumer32_data.cmd_unix_sock_path, PATH_MAX, |
60922cb0 | 3970 | DEFAULT_USTCONSUMERD32_CMD_SOCK_PATH, rundir); |
67e40797 DG |
3971 | |
3972 | DBG2("UST consumer 32 bits err path: %s", | |
3973 | ustconsumer32_data.err_unix_sock_path); | |
3974 | DBG2("UST consumer 32 bits cmd path: %s", | |
3975 | ustconsumer32_data.cmd_unix_sock_path); | |
3976 | ||
3977 | /* 64 bits consumerd path setup */ | |
3978 | snprintf(ustconsumer64_data.err_unix_sock_path, PATH_MAX, | |
60922cb0 | 3979 | DEFAULT_USTCONSUMERD64_ERR_SOCK_PATH, rundir); |
67e40797 | 3980 | snprintf(ustconsumer64_data.cmd_unix_sock_path, PATH_MAX, |
60922cb0 | 3981 | DEFAULT_USTCONSUMERD64_CMD_SOCK_PATH, rundir); |
67e40797 DG |
3982 | |
3983 | DBG2("UST consumer 64 bits err path: %s", | |
3984 | ustconsumer64_data.err_unix_sock_path); | |
3985 | DBG2("UST consumer 64 bits cmd path: %s", | |
3986 | ustconsumer64_data.cmd_unix_sock_path); | |
847177cd | 3987 | |
273ea72c | 3988 | /* |
7d8234d9 | 3989 | * See if daemon already exist. |
fac6795d | 3990 | */ |
7d8234d9 | 3991 | if ((ret = check_existing_daemon()) < 0) { |
75462a81 | 3992 | ERR("Already running daemon.\n"); |
273ea72c | 3993 | /* |
cf3af59e MD |
3994 | * We do not goto exit because we must not cleanup() |
3995 | * because a daemon is already running. | |
ab118b20 | 3996 | */ |
cf3af59e | 3997 | goto error; |
a88df331 DG |
3998 | } |
3999 | ||
1427f9b2 DG |
4000 | /* |
4001 | * Init UST app hash table. Alloc hash table before this point since | |
4002 | * cleanup() can get called after that point. | |
4003 | */ | |
4004 | ust_app_ht_alloc(); | |
4005 | ||
54d01ffb | 4006 | /* After this point, we can safely call cleanup() with "goto exit" */ |
a88df331 DG |
4007 | |
4008 | /* | |
4009 | * These actions must be executed as root. We do that *after* setting up | |
4010 | * the sockets path because we MUST make the check for another daemon using | |
4011 | * those paths *before* trying to set the kernel consumer sockets and init | |
4012 | * kernel tracer. | |
4013 | */ | |
4014 | if (is_root) { | |
67e40797 | 4015 | ret = set_consumer_sockets(&kconsumer_data, rundir); |
7753dea8 MD |
4016 | if (ret < 0) { |
4017 | goto exit; | |
4018 | } | |
4019 | ||
a88df331 | 4020 | /* Setup kernel tracer */ |
4fba7219 DG |
4021 | if (!opt_no_kernel) { |
4022 | init_kernel_tracer(); | |
4023 | } | |
a88df331 DG |
4024 | |
4025 | /* Set ulimit for open files */ | |
4026 | set_ulimit(); | |
fac6795d | 4027 | } |
4063050c MD |
4028 | /* init lttng_fd tracking must be done after set_ulimit. */ |
4029 | lttng_fd_init(); | |
fac6795d | 4030 | |
67e40797 DG |
4031 | ret = set_consumer_sockets(&ustconsumer64_data, rundir); |
4032 | if (ret < 0) { | |
4033 | goto exit; | |
4034 | } | |
4035 | ||
4036 | ret = set_consumer_sockets(&ustconsumer32_data, rundir); | |
4037 | if (ret < 0) { | |
4038 | goto exit; | |
4039 | } | |
4040 | ||
cf3af59e MD |
4041 | if ((ret = set_signal_handler()) < 0) { |
4042 | goto exit; | |
fac6795d DG |
4043 | } |
4044 | ||
d6f42150 | 4045 | /* Setup the needed unix socket */ |
cf3af59e MD |
4046 | if ((ret = init_daemon_socket()) < 0) { |
4047 | goto exit; | |
fac6795d DG |
4048 | } |
4049 | ||
4050 | /* Set credentials to socket */ | |
be040666 | 4051 | if (is_root && ((ret = set_permissions(rundir)) < 0)) { |
cf3af59e | 4052 | goto exit; |
fac6795d DG |
4053 | } |
4054 | ||
5b8719f5 DG |
4055 | /* Get parent pid if -S, --sig-parent is specified. */ |
4056 | if (opt_sig_parent) { | |
4057 | ppid = getppid(); | |
4058 | } | |
4059 | ||
7a485870 | 4060 | /* Setup the kernel pipe for waking up the kernel thread */ |
6620da75 DG |
4061 | if (is_root && !opt_no_kernel) { |
4062 | if ((ret = utils_create_pipe_cloexec(kernel_poll_pipe)) < 0) { | |
4063 | goto exit; | |
4064 | } | |
7a485870 DG |
4065 | } |
4066 | ||
099e26bd | 4067 | /* Setup the thread apps communication pipe. */ |
ef599319 | 4068 | if ((ret = utils_create_pipe_cloexec(apps_cmd_pipe)) < 0) { |
099e26bd DG |
4069 | goto exit; |
4070 | } | |
4071 | ||
4072 | /* Init UST command queue. */ | |
4073 | cds_wfq_init(&ust_cmd_queue.queue); | |
4074 | ||
273ea72c | 4075 | /* |
54d01ffb DG |
4076 | * Get session list pointer. This pointer MUST NOT be free(). This list is |
4077 | * statically declared in session.c | |
273ea72c | 4078 | */ |
54d01ffb | 4079 | session_list_ptr = session_get_list(); |
b5541356 | 4080 | |
5eb91c98 DG |
4081 | /* Set up max poll set size */ |
4082 | lttng_poll_set_max_size(); | |
4083 | ||
2f77fc4b | 4084 | cmd_init(); |
00e2e675 | 4085 | |
44a5e5eb DG |
4086 | /* Init all health thread counters. */ |
4087 | health_init(&health_thread_cmd); | |
4088 | health_init(&health_thread_kernel); | |
139ac872 | 4089 | health_init(&health_thread_app_manage); |
44a5e5eb DG |
4090 | health_init(&health_thread_app_reg); |
4091 | ||
4092 | /* | |
4093 | * Init health counters of the consumer thread. We do a quick hack here to | |
4094 | * the state of the consumer health is fine even if the thread is not | |
9449cc75 DG |
4095 | * started. Once the thread starts, the health state is updated with a poll |
4096 | * value to set a health code path. This is simply to ease our life and has | |
4097 | * no cost what so ever. | |
44a5e5eb DG |
4098 | */ |
4099 | health_init(&kconsumer_data.health); | |
4100 | health_poll_update(&kconsumer_data.health); | |
4101 | health_init(&ustconsumer32_data.health); | |
4102 | health_poll_update(&ustconsumer32_data.health); | |
4103 | health_init(&ustconsumer64_data.health); | |
4104 | health_poll_update(&ustconsumer64_data.health); | |
4105 | ||
ae9e45b3 DG |
4106 | /* Check for the application socket timeout env variable. */ |
4107 | env_app_timeout = getenv(DEFAULT_APP_SOCKET_TIMEOUT_ENV); | |
4108 | if (env_app_timeout) { | |
4109 | app_socket_timeout = atoi(env_app_timeout); | |
4110 | } else { | |
4111 | app_socket_timeout = DEFAULT_APP_SOCKET_RW_TIMEOUT; | |
4112 | } | |
4113 | ||
44a5e5eb DG |
4114 | /* Create thread to manage the client socket */ |
4115 | ret = pthread_create(&health_thread, NULL, | |
4116 | thread_manage_health, (void *) NULL); | |
4117 | if (ret != 0) { | |
4118 | PERROR("pthread_create health"); | |
4119 | goto exit_health; | |
4120 | } | |
4121 | ||
cf3af59e | 4122 | /* Create thread to manage the client socket */ |
099e26bd DG |
4123 | ret = pthread_create(&client_thread, NULL, |
4124 | thread_manage_clients, (void *) NULL); | |
cf3af59e | 4125 | if (ret != 0) { |
76d7553f | 4126 | PERROR("pthread_create clients"); |
cf3af59e MD |
4127 | goto exit_client; |
4128 | } | |
fac6795d | 4129 | |
099e26bd DG |
4130 | /* Create thread to dispatch registration */ |
4131 | ret = pthread_create(&dispatch_thread, NULL, | |
4132 | thread_dispatch_ust_registration, (void *) NULL); | |
4133 | if (ret != 0) { | |
76d7553f | 4134 | PERROR("pthread_create dispatch"); |
099e26bd DG |
4135 | goto exit_dispatch; |
4136 | } | |
4137 | ||
4138 | /* Create thread to manage application registration. */ | |
4139 | ret = pthread_create(®_apps_thread, NULL, | |
4140 | thread_registration_apps, (void *) NULL); | |
4141 | if (ret != 0) { | |
76d7553f | 4142 | PERROR("pthread_create registration"); |
099e26bd DG |
4143 | goto exit_reg_apps; |
4144 | } | |
4145 | ||
cf3af59e | 4146 | /* Create thread to manage application socket */ |
54d01ffb DG |
4147 | ret = pthread_create(&apps_thread, NULL, |
4148 | thread_manage_apps, (void *) NULL); | |
cf3af59e | 4149 | if (ret != 0) { |
76d7553f | 4150 | PERROR("pthread_create apps"); |
cf3af59e MD |
4151 | goto exit_apps; |
4152 | } | |
fac6795d | 4153 | |
6620da75 DG |
4154 | /* Don't start this thread if kernel tracing is not requested nor root */ |
4155 | if (is_root && !opt_no_kernel) { | |
4156 | /* Create kernel thread to manage kernel event */ | |
4157 | ret = pthread_create(&kernel_thread, NULL, | |
4158 | thread_manage_kernel, (void *) NULL); | |
4159 | if (ret != 0) { | |
4160 | PERROR("pthread_create kernel"); | |
4161 | goto exit_kernel; | |
4162 | } | |
7a485870 | 4163 | |
6620da75 DG |
4164 | ret = pthread_join(kernel_thread, &status); |
4165 | if (ret != 0) { | |
4166 | PERROR("pthread_join"); | |
4167 | goto error; /* join error, exit without cleanup */ | |
4168 | } | |
fac6795d DG |
4169 | } |
4170 | ||
cf3af59e MD |
4171 | exit_kernel: |
4172 | ret = pthread_join(apps_thread, &status); | |
4173 | if (ret != 0) { | |
76d7553f | 4174 | PERROR("pthread_join"); |
cf3af59e MD |
4175 | goto error; /* join error, exit without cleanup */ |
4176 | } | |
fac6795d | 4177 | |
cf3af59e | 4178 | exit_apps: |
099e26bd DG |
4179 | ret = pthread_join(reg_apps_thread, &status); |
4180 | if (ret != 0) { | |
76d7553f | 4181 | PERROR("pthread_join"); |
099e26bd DG |
4182 | goto error; /* join error, exit without cleanup */ |
4183 | } | |
4184 | ||
4185 | exit_reg_apps: | |
4186 | ret = pthread_join(dispatch_thread, &status); | |
4187 | if (ret != 0) { | |
76d7553f | 4188 | PERROR("pthread_join"); |
099e26bd DG |
4189 | goto error; /* join error, exit without cleanup */ |
4190 | } | |
4191 | ||
4192 | exit_dispatch: | |
cf3af59e MD |
4193 | ret = pthread_join(client_thread, &status); |
4194 | if (ret != 0) { | |
76d7553f | 4195 | PERROR("pthread_join"); |
cf3af59e MD |
4196 | goto error; /* join error, exit without cleanup */ |
4197 | } | |
4198 | ||
3bd1e081 | 4199 | ret = join_consumer_thread(&kconsumer_data); |
cf3af59e | 4200 | if (ret != 0) { |
76d7553f | 4201 | PERROR("join_consumer"); |
cf3af59e MD |
4202 | goto error; /* join error, exit without cleanup */ |
4203 | } | |
a88df331 | 4204 | |
06f525de DG |
4205 | ret = join_consumer_thread(&ustconsumer32_data); |
4206 | if (ret != 0) { | |
4207 | PERROR("join_consumer ust32"); | |
4208 | goto error; /* join error, exit without cleanup */ | |
4209 | } | |
4210 | ||
4211 | ret = join_consumer_thread(&ustconsumer64_data); | |
4212 | if (ret != 0) { | |
4213 | PERROR("join_consumer ust64"); | |
4214 | goto error; /* join error, exit without cleanup */ | |
4215 | } | |
4216 | ||
cf3af59e | 4217 | exit_client: |
06f525de DG |
4218 | ret = pthread_join(health_thread, &status); |
4219 | if (ret != 0) { | |
4220 | PERROR("pthread_join health thread"); | |
4221 | goto error; /* join error, exit without cleanup */ | |
4222 | } | |
4223 | ||
44a5e5eb | 4224 | exit_health: |
a88df331 | 4225 | exit: |
cf3af59e MD |
4226 | /* |
4227 | * cleanup() is called when no other thread is running. | |
4228 | */ | |
f6a9efaa | 4229 | rcu_thread_online(); |
cf3af59e | 4230 | cleanup(); |
f6a9efaa DG |
4231 | rcu_thread_offline(); |
4232 | rcu_unregister_thread(); | |
67e40797 | 4233 | if (!ret) { |
cf3af59e | 4234 | exit(EXIT_SUCCESS); |
67e40797 | 4235 | } |
cf3af59e | 4236 | error: |
5e16da05 | 4237 | exit(EXIT_FAILURE); |
fac6795d | 4238 | } |