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 | * |
54d01ffb DG |
5 | * This program is free software; you can redistribute it and/or modify it |
6 | * under the terms of the GNU General Public License as published by the Free | |
7 | * Software Foundation; only version 2 of the License. | |
91d76f53 | 8 | * |
54d01ffb DG |
9 | * This program is distributed in the hope that it will be useful, but WITHOUT |
10 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
11 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | |
12 | * more details. | |
91d76f53 | 13 | * |
54d01ffb DG |
14 | * You should have received a copy of the GNU General Public License along with |
15 | * this program; if not, write to the Free Software Foundation, Inc., 59 Temple | |
16 | * Place - Suite 330, Boston, MA 02111-1307, USA. | |
fac6795d DG |
17 | */ |
18 | ||
19 | #define _GNU_SOURCE | |
20 | #include <fcntl.h> | |
21 | #include <getopt.h> | |
22 | #include <grp.h> | |
23 | #include <limits.h> | |
24 | #include <pthread.h> | |
8c0faa1d | 25 | #include <semaphore.h> |
fac6795d DG |
26 | #include <signal.h> |
27 | #include <stdio.h> | |
28 | #include <stdlib.h> | |
29 | #include <string.h> | |
0fdd1e2c | 30 | #include <sys/mman.h> |
b73401da | 31 | #include <sys/mount.h> |
1e307fab | 32 | #include <sys/resource.h> |
fac6795d DG |
33 | #include <sys/socket.h> |
34 | #include <sys/stat.h> | |
35 | #include <sys/types.h> | |
0fdd1e2c DG |
36 | #include <sys/wait.h> |
37 | #include <urcu/futex.h> | |
fac6795d | 38 | #include <unistd.h> |
3bd1e081 | 39 | #include <config.h> |
fac6795d | 40 | |
3bd1e081 | 41 | #include <lttng-consumerd.h> |
e88129fc | 42 | #include <lttng-sessiond-comm.h> |
3bd1e081 | 43 | #include <lttng/lttng-consumer.h> |
2bdd86d4 | 44 | |
1e307fab | 45 | #include <lttngerr.h> |
fac6795d | 46 | |
54d01ffb | 47 | #include "channel.h" |
5eb91c98 | 48 | #include "compat/poll.h" |
099e26bd | 49 | #include "context.h" |
54d01ffb | 50 | #include "event.h" |
099e26bd | 51 | #include "futex.h" |
f6a9efaa | 52 | #include "hashtable.h" |
20fe2104 | 53 | #include "kernel-ctl.h" |
32258573 | 54 | #include "lttng-sessiond.h" |
0fdd1e2c | 55 | #include "shm.h" |
56fff090 | 56 | #include "ust-app.h" |
1e307fab | 57 | #include "ust-ctl.h" |
8e68d1c8 | 58 | #include "utils.h" |
fac6795d | 59 | |
3bd1e081 MD |
60 | struct consumer_data { |
61 | enum lttng_consumer_type type; | |
62 | ||
63 | pthread_t thread; /* Worker thread interacting with the consumer */ | |
64 | sem_t sem; | |
65 | ||
66 | /* Mutex to control consumerd pid assignation */ | |
67 | pthread_mutex_t pid_mutex; | |
68 | pid_t pid; | |
69 | ||
70 | int err_sock; | |
71 | int cmd_sock; | |
72 | ||
73 | /* consumer error and command Unix socket path */ | |
74 | char err_unix_sock_path[PATH_MAX]; | |
75 | char cmd_unix_sock_path[PATH_MAX]; | |
76 | }; | |
77 | ||
75462a81 | 78 | /* Const values */ |
686204ab | 79 | const char default_home_dir[] = DEFAULT_HOME_DIR; |
64a23ac4 | 80 | const char default_tracing_group[] = LTTNG_DEFAULT_TRACING_GROUP; |
686204ab MD |
81 | const char default_ust_sock_dir[] = DEFAULT_UST_SOCK_DIR; |
82 | const char default_global_apps_pipe[] = DEFAULT_GLOBAL_APPS_PIPE; | |
83 | ||
fac6795d | 84 | /* Variables */ |
1d4b027a | 85 | int opt_verbose; /* Not static for lttngerr.h */ |
3bd1e081 | 86 | int opt_verbose_consumer; /* Not static for lttngerr.h */ |
1d4b027a | 87 | int opt_quiet; /* Not static for lttngerr.h */ |
d063d709 | 88 | |
fac6795d DG |
89 | const char *progname; |
90 | const char *opt_tracing_group; | |
5b8719f5 | 91 | static int opt_sig_parent; |
fac6795d DG |
92 | static int opt_daemon; |
93 | static int is_root; /* Set to 1 if the daemon is running as root */ | |
1d4b027a | 94 | static pid_t ppid; /* Parent PID for --sig-parent option */ |
3bd1e081 MD |
95 | |
96 | /* Consumer daemon specific control data */ | |
97 | static struct consumer_data kconsumer_data = { | |
98 | .type = LTTNG_CONSUMER_KERNEL, | |
99 | }; | |
100 | static struct consumer_data ustconsumer_data = { | |
101 | .type = LTTNG_CONSUMER_UST, | |
102 | }; | |
103 | ||
099e26bd | 104 | static int dispatch_thread_exit; |
fac6795d | 105 | |
54d01ffb DG |
106 | /* Global application Unix socket path */ |
107 | static char apps_unix_sock_path[PATH_MAX]; | |
108 | /* Global client Unix socket path */ | |
109 | static char client_unix_sock_path[PATH_MAX]; | |
54d01ffb DG |
110 | /* global wait shm path for UST */ |
111 | static char wait_shm_path[PATH_MAX]; | |
fac6795d | 112 | |
1d4b027a | 113 | /* Sockets and FDs */ |
d6f42150 DG |
114 | static int client_sock; |
115 | static int apps_sock; | |
20fe2104 | 116 | static int kernel_tracer_fd; |
7a485870 | 117 | static int kernel_poll_pipe[2]; |
1d4b027a | 118 | |
273ea72c DG |
119 | /* |
120 | * Quit pipe for all threads. This permits a single cancellation point | |
121 | * for all threads when receiving an event on the pipe. | |
122 | */ | |
123 | static int thread_quit_pipe[2]; | |
124 | ||
099e26bd DG |
125 | /* |
126 | * This pipe is used to inform the thread managing application communication | |
127 | * that a command is queued and ready to be processed. | |
128 | */ | |
129 | static int apps_cmd_pipe[2]; | |
130 | ||
1d4b027a | 131 | /* Pthread, Mutexes and Semaphores */ |
1d4b027a | 132 | static pthread_t apps_thread; |
099e26bd | 133 | static pthread_t reg_apps_thread; |
1d4b027a | 134 | static pthread_t client_thread; |
7a485870 | 135 | static pthread_t kernel_thread; |
099e26bd | 136 | static pthread_t dispatch_thread; |
5eb91c98 | 137 | |
fac6795d | 138 | |
099e26bd DG |
139 | /* |
140 | * UST registration command queue. This queue is tied with a futex and uses a N | |
141 | * wakers / 1 waiter implemented and detailed in futex.c/.h | |
142 | * | |
143 | * The thread_manage_apps and thread_dispatch_ust_registration interact with | |
144 | * this queue and the wait/wake scheme. | |
145 | */ | |
146 | static struct ust_cmd_queue ust_cmd_queue; | |
147 | ||
b5541356 DG |
148 | /* |
149 | * Pointer initialized before thread creation. | |
150 | * | |
151 | * This points to the tracing session list containing the session count and a | |
152 | * mutex lock. The lock MUST be taken if you iterate over the list. The lock | |
153 | * MUST NOT be taken if you call a public function in session.c. | |
04ea676f | 154 | * |
d063d709 | 155 | * The lock is nested inside the structure: session_list_ptr->lock. Please use |
54d01ffb | 156 | * session_lock_list and session_unlock_list for lock acquisition. |
b5541356 DG |
157 | */ |
158 | static struct ltt_session_list *session_list_ptr; | |
159 | ||
ba5d816e MD |
160 | int ust_consumer_fd; |
161 | ||
fb09408a MD |
162 | static const char *compat32_consumer_bindir = |
163 | __stringify(CONFIG_COMPAT_BIN_DIR); | |
164 | static const char *compat32_consumer_prog = "lttng-consumerd"; | |
165 | ||
166 | static | |
167 | void setup_compat32_consumer(void) | |
168 | { | |
169 | const char *bindir; | |
170 | ||
171 | /* | |
172 | * runtime env. var. overrides the build default. | |
173 | */ | |
174 | bindir = getenv("LTTNG_TOOLS_COMPAT_BIN_DIR"); | |
175 | if (bindir) { | |
176 | compat32_consumer_bindir = bindir; | |
177 | } | |
178 | } | |
179 | ||
5eb91c98 DG |
180 | /* |
181 | * Create a poll set with O_CLOEXEC and add the thread quit pipe to the set. | |
182 | */ | |
183 | static int create_thread_poll_set(struct lttng_poll_event *events, | |
184 | unsigned int size) | |
185 | { | |
186 | int ret; | |
187 | ||
188 | if (events == NULL || size == 0) { | |
189 | ret = -1; | |
190 | goto error; | |
191 | } | |
192 | ||
193 | ret = lttng_poll_create(events, size, LTTNG_CLOEXEC); | |
194 | if (ret < 0) { | |
195 | goto error; | |
196 | } | |
197 | ||
198 | /* Add quit pipe */ | |
199 | ret = lttng_poll_add(events, thread_quit_pipe[0], LPOLLIN); | |
200 | if (ret < 0) { | |
201 | goto error; | |
202 | } | |
203 | ||
204 | return 0; | |
205 | ||
206 | error: | |
207 | return ret; | |
208 | } | |
209 | ||
210 | /* | |
211 | * Check if the thread quit pipe was triggered. | |
212 | * | |
213 | * Return 1 if it was triggered else 0; | |
214 | */ | |
215 | static int check_thread_quit_pipe(int fd, uint32_t events) | |
216 | { | |
217 | if (fd == thread_quit_pipe[0] && (events & LPOLLIN)) { | |
218 | return 1; | |
219 | } | |
220 | ||
221 | return 0; | |
222 | } | |
223 | ||
0fdd1e2c DG |
224 | /* |
225 | * Remove modules in reverse load order. | |
226 | */ | |
227 | static int modprobe_remove_kernel_modules(void) | |
228 | { | |
229 | int ret = 0, i; | |
230 | char modprobe[256]; | |
231 | ||
232 | for (i = ARRAY_SIZE(kernel_modules_list) - 1; i >= 0; i--) { | |
233 | ret = snprintf(modprobe, sizeof(modprobe), | |
24b487b8 | 234 | "/sbin/modprobe -r -q %s", |
0fdd1e2c DG |
235 | kernel_modules_list[i].name); |
236 | if (ret < 0) { | |
24b487b8 | 237 | perror("snprintf modprobe -r"); |
0fdd1e2c DG |
238 | goto error; |
239 | } | |
240 | modprobe[sizeof(modprobe) - 1] = '\0'; | |
241 | ret = system(modprobe); | |
242 | if (ret == -1) { | |
24b487b8 | 243 | ERR("Unable to launch modprobe -r for module %s", |
0fdd1e2c DG |
244 | kernel_modules_list[i].name); |
245 | } else if (kernel_modules_list[i].required | |
246 | && WEXITSTATUS(ret) != 0) { | |
247 | ERR("Unable to remove module %s", | |
248 | kernel_modules_list[i].name); | |
249 | } else { | |
250 | DBG("Modprobe removal successful %s", | |
251 | kernel_modules_list[i].name); | |
252 | } | |
253 | } | |
254 | ||
255 | error: | |
256 | return ret; | |
257 | } | |
258 | ||
259 | /* | |
260 | * Return group ID of the tracing group or -1 if not found. | |
261 | */ | |
996b65c8 MD |
262 | static gid_t allowed_group(void) |
263 | { | |
264 | struct group *grp; | |
265 | ||
274e143b MD |
266 | if (opt_tracing_group) { |
267 | grp = getgrnam(opt_tracing_group); | |
268 | } else { | |
269 | grp = getgrnam(default_tracing_group); | |
270 | } | |
996b65c8 MD |
271 | if (!grp) { |
272 | return -1; | |
273 | } else { | |
274 | return grp->gr_gid; | |
275 | } | |
276 | } | |
277 | ||
273ea72c | 278 | /* |
5eb91c98 | 279 | * Init thread quit pipe. |
273ea72c DG |
280 | * |
281 | * Return -1 on error or 0 if all pipes are created. | |
282 | */ | |
283 | static int init_thread_quit_pipe(void) | |
284 | { | |
285 | int ret; | |
286 | ||
287 | ret = pipe2(thread_quit_pipe, O_CLOEXEC); | |
288 | if (ret < 0) { | |
289 | perror("thread quit pipe"); | |
290 | goto error; | |
291 | } | |
292 | ||
293 | error: | |
294 | return ret; | |
295 | } | |
296 | ||
fac6795d | 297 | /* |
d063d709 DG |
298 | * Complete teardown of a kernel session. This free all data structure related |
299 | * to a kernel session and update counter. | |
fac6795d | 300 | */ |
1d4b027a | 301 | static void teardown_kernel_session(struct ltt_session *session) |
fac6795d | 302 | { |
1d4b027a DG |
303 | if (session->kernel_session != NULL) { |
304 | DBG("Tearing down kernel session"); | |
d9800920 DG |
305 | |
306 | /* | |
307 | * If a custom kernel consumer was registered, close the socket before | |
308 | * tearing down the complete kernel session structure | |
309 | */ | |
3bd1e081 | 310 | if (session->kernel_session->consumer_fd != kconsumer_data.cmd_sock) { |
d9800920 DG |
311 | lttcomm_close_unix_sock(session->kernel_session->consumer_fd); |
312 | } | |
313 | ||
62499ad6 | 314 | trace_kernel_destroy_session(session->kernel_session); |
1d4b027a DG |
315 | /* Extra precaution */ |
316 | session->kernel_session = NULL; | |
fac6795d | 317 | } |
fac6795d DG |
318 | } |
319 | ||
f6a9efaa DG |
320 | /* |
321 | * Complete teardown of all UST sessions. This will free everything on his path | |
322 | * and destroy the core essence of all ust sessions :) | |
323 | */ | |
324 | static void teardown_ust_session(struct ltt_session *session) | |
325 | { | |
84cd17c6 MD |
326 | int ret; |
327 | ||
f6a9efaa DG |
328 | DBG("Tearing down UST session(s)"); |
329 | ||
84cd17c6 MD |
330 | ret = ust_app_destroy_trace_all(session->ust_session); |
331 | if (ret) { | |
332 | ERR("Error in ust_app_destroy_trace_all"); | |
333 | } | |
f6a9efaa DG |
334 | trace_ust_destroy_session(session->ust_session); |
335 | } | |
336 | ||
099e26bd DG |
337 | /* |
338 | * Stop all threads by closing the thread quit pipe. | |
339 | */ | |
cf3af59e MD |
340 | static void stop_threads(void) |
341 | { | |
5eb91c98 DG |
342 | int ret; |
343 | ||
cf3af59e MD |
344 | /* Stopping all threads */ |
345 | DBG("Terminating all threads"); | |
54d01ffb | 346 | ret = notify_thread_pipe(thread_quit_pipe[1]); |
5eb91c98 DG |
347 | if (ret < 0) { |
348 | ERR("write error on thread quit pipe"); | |
349 | } | |
350 | ||
099e26bd DG |
351 | /* Dispatch thread */ |
352 | dispatch_thread_exit = 1; | |
353 | futex_nto1_wake(&ust_cmd_queue.futex); | |
cf3af59e MD |
354 | } |
355 | ||
fac6795d | 356 | /* |
d063d709 | 357 | * Cleanup the daemon |
fac6795d | 358 | */ |
cf3af59e | 359 | static void cleanup(void) |
fac6795d | 360 | { |
1d4b027a DG |
361 | int ret; |
362 | char *cmd; | |
af9737e9 | 363 | struct ltt_session *sess, *stmp; |
fac6795d | 364 | |
1d4b027a | 365 | DBG("Cleaning up"); |
e07ae692 | 366 | |
5eb91c98 DG |
367 | if (is_root) { |
368 | DBG("Removing %s directory", LTTNG_RUNDIR); | |
369 | ret = asprintf(&cmd, "rm -rf " LTTNG_RUNDIR); | |
370 | if (ret < 0) { | |
371 | ERR("asprintf failed. Something is really wrong!"); | |
372 | } | |
5461b305 | 373 | |
5eb91c98 DG |
374 | /* Remove lttng run directory */ |
375 | ret = system(cmd); | |
376 | if (ret < 0) { | |
377 | ERR("Unable to clean " LTTNG_RUNDIR); | |
378 | } | |
1d4b027a | 379 | } |
5461b305 | 380 | |
1d4b027a | 381 | DBG("Cleaning up all session"); |
fac6795d | 382 | |
b5541356 | 383 | /* Destroy session list mutex */ |
273ea72c DG |
384 | if (session_list_ptr != NULL) { |
385 | pthread_mutex_destroy(&session_list_ptr->lock); | |
386 | ||
387 | /* Cleanup ALL session */ | |
54d01ffb DG |
388 | cds_list_for_each_entry_safe(sess, stmp, |
389 | &session_list_ptr->head, list) { | |
273ea72c | 390 | teardown_kernel_session(sess); |
f6a9efaa DG |
391 | teardown_ust_session(sess); |
392 | free(sess); | |
273ea72c DG |
393 | } |
394 | } | |
395 | ||
099e26bd | 396 | DBG("Closing all UST sockets"); |
56fff090 | 397 | ust_app_clean_list(); |
099e26bd | 398 | |
3bd1e081 | 399 | pthread_mutex_destroy(&kconsumer_data.pid_mutex); |
b5541356 | 400 | |
f3ed775e | 401 | DBG("Closing kernel fd"); |
1d4b027a | 402 | close(kernel_tracer_fd); |
ab147185 | 403 | |
2f50c8a3 DG |
404 | if (is_root) { |
405 | DBG("Unloading kernel modules"); | |
406 | modprobe_remove_kernel_modules(); | |
407 | } | |
5eb91c98 DG |
408 | |
409 | close(thread_quit_pipe[0]); | |
410 | close(thread_quit_pipe[1]); | |
421cb601 DG |
411 | |
412 | /* <fun> */ | |
413 | MSG("%c[%d;%dm*** assert failed :-) *** ==> %c[%dm%c[%d;%dm" | |
414 | "Matthew, BEET driven development works!%c[%dm", | |
415 | 27, 1, 31, 27, 0, 27, 1, 33, 27, 0); | |
416 | /* </fun> */ | |
fac6795d DG |
417 | } |
418 | ||
e065084a | 419 | /* |
d063d709 | 420 | * Send data on a unix socket using the liblttsessiondcomm API. |
e065084a | 421 | * |
d063d709 | 422 | * Return lttcomm error code. |
e065084a DG |
423 | */ |
424 | static int send_unix_sock(int sock, void *buf, size_t len) | |
425 | { | |
426 | /* Check valid length */ | |
427 | if (len <= 0) { | |
428 | return -1; | |
429 | } | |
430 | ||
431 | return lttcomm_send_unix_sock(sock, buf, len); | |
432 | } | |
433 | ||
5461b305 | 434 | /* |
d063d709 | 435 | * Free memory of a command context structure. |
5461b305 | 436 | */ |
a2fb29a5 | 437 | static void clean_command_ctx(struct command_ctx **cmd_ctx) |
5461b305 | 438 | { |
a2fb29a5 DG |
439 | DBG("Clean command context structure"); |
440 | if (*cmd_ctx) { | |
441 | if ((*cmd_ctx)->llm) { | |
442 | free((*cmd_ctx)->llm); | |
5461b305 | 443 | } |
a2fb29a5 DG |
444 | if ((*cmd_ctx)->lsm) { |
445 | free((*cmd_ctx)->lsm); | |
5461b305 | 446 | } |
a2fb29a5 DG |
447 | free(*cmd_ctx); |
448 | *cmd_ctx = NULL; | |
5461b305 DG |
449 | } |
450 | } | |
451 | ||
f3ed775e | 452 | /* |
d063d709 | 453 | * Send all stream fds of kernel channel to the consumer. |
f3ed775e | 454 | */ |
2bdd86d4 | 455 | static int send_kconsumer_channel_streams(struct consumer_data *consumer_data, |
3bd1e081 | 456 | int sock, struct ltt_kernel_channel *channel) |
f3ed775e DG |
457 | { |
458 | int ret; | |
f3ed775e | 459 | struct ltt_kernel_stream *stream; |
3bd1e081 | 460 | struct lttcomm_consumer_msg lkm; |
f3ed775e | 461 | |
3bd1e081 | 462 | DBG("Sending streams of channel %s to kernel consumer", |
54d01ffb | 463 | channel->channel->name); |
f3ed775e | 464 | |
3bd1e081 MD |
465 | /* Send channel */ |
466 | lkm.cmd_type = LTTNG_CONSUMER_ADD_CHANNEL; | |
467 | lkm.u.channel.channel_key = channel->fd; | |
468 | lkm.u.channel.max_sb_size = channel->channel->attr.subbuf_size; | |
469 | lkm.u.channel.mmap_len = 0; /* for kernel */ | |
2bdd86d4 | 470 | DBG("Sending channel %d to consumer", lkm.u.channel.channel_key); |
3bd1e081 | 471 | ret = lttcomm_send_unix_sock(sock, &lkm, sizeof(lkm)); |
f3ed775e | 472 | if (ret < 0) { |
3bd1e081 | 473 | perror("send consumer channel"); |
f3ed775e DG |
474 | goto error; |
475 | } | |
476 | ||
3bd1e081 | 477 | /* Send streams */ |
7a485870 | 478 | cds_list_for_each_entry(stream, &channel->stream_list.head, list) { |
3bd1e081 MD |
479 | if (!stream->fd) { |
480 | continue; | |
481 | } | |
482 | lkm.cmd_type = LTTNG_CONSUMER_ADD_STREAM; | |
483 | lkm.u.stream.channel_key = channel->fd; | |
484 | lkm.u.stream.stream_key = stream->fd; | |
485 | lkm.u.stream.state = stream->state; | |
486 | lkm.u.stream.output = channel->channel->attr.output; | |
487 | lkm.u.stream.mmap_len = 0; /* for kernel */ | |
488 | strncpy(lkm.u.stream.path_name, stream->pathname, PATH_MAX - 1); | |
489 | lkm.u.stream.path_name[PATH_MAX - 1] = '\0'; | |
490 | DBG("Sending stream %d to consumer", lkm.u.stream.stream_key); | |
491 | ret = lttcomm_send_unix_sock(sock, &lkm, sizeof(lkm)); | |
492 | if (ret < 0) { | |
493 | perror("send consumer stream"); | |
494 | goto error; | |
495 | } | |
496 | ret = lttcomm_send_fds_unix_sock(sock, &stream->fd, 1); | |
497 | if (ret < 0) { | |
498 | perror("send consumer stream ancillary data"); | |
499 | goto error; | |
f3ed775e DG |
500 | } |
501 | } | |
502 | ||
3bd1e081 | 503 | DBG("consumer channel streams sent"); |
f3ed775e DG |
504 | |
505 | return 0; | |
506 | ||
507 | error: | |
508 | return ret; | |
509 | } | |
510 | ||
511 | /* | |
d063d709 | 512 | * Send all stream fds of the kernel session to the consumer. |
f3ed775e | 513 | */ |
2bdd86d4 | 514 | static int send_kconsumer_session_streams(struct consumer_data *consumer_data, |
3bd1e081 | 515 | struct ltt_kernel_session *session) |
f3ed775e DG |
516 | { |
517 | int ret; | |
518 | struct ltt_kernel_channel *chan; | |
3bd1e081 MD |
519 | struct lttcomm_consumer_msg lkm; |
520 | int sock = session->consumer_fd; | |
7a485870 DG |
521 | |
522 | DBG("Sending metadata stream fd"); | |
523 | ||
2bdd86d4 | 524 | /* Extra protection. It's NOT supposed to be set to 0 at this point */ |
d9800920 | 525 | if (session->consumer_fd == 0) { |
3bd1e081 | 526 | session->consumer_fd = consumer_data->cmd_sock; |
d9800920 DG |
527 | } |
528 | ||
7a485870 | 529 | if (session->metadata_stream_fd != 0) { |
3bd1e081 MD |
530 | /* Send metadata channel fd */ |
531 | lkm.cmd_type = LTTNG_CONSUMER_ADD_CHANNEL; | |
532 | lkm.u.channel.channel_key = session->metadata->fd; | |
533 | lkm.u.channel.max_sb_size = session->metadata->conf->attr.subbuf_size; | |
534 | lkm.u.channel.mmap_len = 0; /* for kernel */ | |
535 | DBG("Sending metadata channel %d to consumer", lkm.u.stream.stream_key); | |
536 | ret = lttcomm_send_unix_sock(sock, &lkm, sizeof(lkm)); | |
537 | if (ret < 0) { | |
538 | perror("send consumer channel"); | |
539 | goto error; | |
540 | } | |
541 | ||
542 | /* Send metadata stream fd */ | |
543 | lkm.cmd_type = LTTNG_CONSUMER_ADD_STREAM; | |
544 | lkm.u.stream.channel_key = session->metadata->fd; | |
545 | lkm.u.stream.stream_key = session->metadata_stream_fd; | |
546 | lkm.u.stream.state = LTTNG_CONSUMER_ACTIVE_STREAM; | |
547 | lkm.u.stream.output = DEFAULT_KERNEL_CHANNEL_OUTPUT; | |
548 | lkm.u.stream.mmap_len = 0; /* for kernel */ | |
549 | strncpy(lkm.u.stream.path_name, session->metadata->pathname, PATH_MAX - 1); | |
550 | lkm.u.stream.path_name[PATH_MAX - 1] = '\0'; | |
551 | DBG("Sending metadata stream %d to consumer", lkm.u.stream.stream_key); | |
552 | ret = lttcomm_send_unix_sock(sock, &lkm, sizeof(lkm)); | |
553 | if (ret < 0) { | |
554 | perror("send consumer stream"); | |
555 | goto error; | |
556 | } | |
557 | ret = lttcomm_send_fds_unix_sock(sock, &session->metadata_stream_fd, 1); | |
7a485870 | 558 | if (ret < 0) { |
3bd1e081 | 559 | perror("send consumer stream"); |
7a485870 DG |
560 | goto error; |
561 | } | |
562 | } | |
f3ed775e | 563 | |
f3ed775e | 564 | cds_list_for_each_entry(chan, &session->channel_list.head, list) { |
2bdd86d4 MD |
565 | ret = send_kconsumer_channel_streams(consumer_data, sock, chan); |
566 | if (ret < 0) { | |
567 | goto error; | |
568 | } | |
569 | } | |
570 | ||
571 | DBG("consumer fds (metadata and channel streams) sent"); | |
572 | ||
573 | return 0; | |
574 | ||
575 | error: | |
576 | return ret; | |
577 | } | |
578 | ||
fac6795d | 579 | /* |
0fdd1e2c | 580 | * Notify UST applications using the shm mmap futex. |
fac6795d | 581 | */ |
0fdd1e2c | 582 | static int notify_ust_apps(int active) |
fac6795d | 583 | { |
0fdd1e2c | 584 | char *wait_shm_mmap; |
fac6795d | 585 | |
0fdd1e2c | 586 | DBG("Notifying applications of session daemon state: %d", active); |
e07ae692 | 587 | |
0fdd1e2c DG |
588 | /* See shm.c for this call implying mmap, shm and futex calls */ |
589 | wait_shm_mmap = shm_ust_get_mmap(wait_shm_path, is_root); | |
590 | if (wait_shm_mmap == NULL) { | |
fac6795d DG |
591 | goto error; |
592 | } | |
593 | ||
0fdd1e2c DG |
594 | /* Wake waiting process */ |
595 | futex_wait_update((int32_t *) wait_shm_mmap, active); | |
596 | ||
597 | /* Apps notified successfully */ | |
598 | return 0; | |
fac6795d DG |
599 | |
600 | error: | |
0fdd1e2c | 601 | return -1; |
fac6795d DG |
602 | } |
603 | ||
e065084a | 604 | /* |
d063d709 DG |
605 | * Setup the outgoing data buffer for the response (llm) by allocating the |
606 | * right amount of memory and copying the original information from the lsm | |
607 | * structure. | |
ca95a216 | 608 | * |
d063d709 | 609 | * Return total size of the buffer pointed by buf. |
ca95a216 | 610 | */ |
5461b305 | 611 | static int setup_lttng_msg(struct command_ctx *cmd_ctx, size_t size) |
ca95a216 | 612 | { |
f3ed775e | 613 | int ret, buf_size; |
ca95a216 | 614 | |
f3ed775e | 615 | buf_size = size; |
5461b305 | 616 | |
ba7f0ae5 | 617 | cmd_ctx->llm = zmalloc(sizeof(struct lttcomm_lttng_msg) + buf_size); |
5461b305 | 618 | if (cmd_ctx->llm == NULL) { |
ba7f0ae5 | 619 | perror("zmalloc"); |
5461b305 | 620 | ret = -ENOMEM; |
ca95a216 DG |
621 | goto error; |
622 | } | |
623 | ||
5461b305 DG |
624 | /* Copy common data */ |
625 | cmd_ctx->llm->cmd_type = cmd_ctx->lsm->cmd_type; | |
9f19cc17 | 626 | cmd_ctx->llm->pid = cmd_ctx->lsm->domain.attr.pid; |
5461b305 | 627 | |
5461b305 DG |
628 | cmd_ctx->llm->data_size = size; |
629 | cmd_ctx->lttng_msg_size = sizeof(struct lttcomm_lttng_msg) + buf_size; | |
630 | ||
ca95a216 DG |
631 | return buf_size; |
632 | ||
633 | error: | |
634 | return ret; | |
635 | } | |
636 | ||
7a485870 | 637 | /* |
5eb91c98 | 638 | * Update the kernel poll set of all channel fd available over all tracing |
d063d709 | 639 | * session. Add the wakeup pipe at the end of the set. |
7a485870 | 640 | */ |
5eb91c98 | 641 | static int update_kernel_poll(struct lttng_poll_event *events) |
7a485870 | 642 | { |
5eb91c98 | 643 | int ret; |
7a485870 DG |
644 | struct ltt_session *session; |
645 | struct ltt_kernel_channel *channel; | |
646 | ||
5eb91c98 | 647 | DBG("Updating kernel poll set"); |
7a485870 | 648 | |
54d01ffb | 649 | session_lock_list(); |
b5541356 | 650 | cds_list_for_each_entry(session, &session_list_ptr->head, list) { |
54d01ffb | 651 | session_lock(session); |
7a485870 | 652 | if (session->kernel_session == NULL) { |
54d01ffb | 653 | session_unlock(session); |
7a485870 DG |
654 | continue; |
655 | } | |
7a485870 | 656 | |
54d01ffb DG |
657 | cds_list_for_each_entry(channel, |
658 | &session->kernel_session->channel_list.head, list) { | |
5eb91c98 DG |
659 | /* Add channel fd to the kernel poll set */ |
660 | ret = lttng_poll_add(events, channel->fd, LPOLLIN | LPOLLRDNORM); | |
661 | if (ret < 0) { | |
54d01ffb | 662 | session_unlock(session); |
5eb91c98 DG |
663 | goto error; |
664 | } | |
665 | DBG("Channel fd %d added to kernel set", channel->fd); | |
7a485870 | 666 | } |
54d01ffb | 667 | session_unlock(session); |
7a485870 | 668 | } |
54d01ffb | 669 | session_unlock_list(); |
7a485870 | 670 | |
5eb91c98 | 671 | return 0; |
7a485870 DG |
672 | |
673 | error: | |
54d01ffb | 674 | session_unlock_list(); |
7a485870 DG |
675 | return -1; |
676 | } | |
677 | ||
678 | /* | |
54d01ffb | 679 | * Find the channel fd from 'fd' over all tracing session. When found, check |
d063d709 | 680 | * for new channel stream and send those stream fds to the kernel consumer. |
7a485870 | 681 | * |
d063d709 | 682 | * Useful for CPU hotplug feature. |
7a485870 | 683 | */ |
2bdd86d4 | 684 | static int update_kernel_stream(struct consumer_data *consumer_data, int fd) |
7a485870 DG |
685 | { |
686 | int ret = 0; | |
687 | struct ltt_session *session; | |
688 | struct ltt_kernel_channel *channel; | |
689 | ||
690 | DBG("Updating kernel streams for channel fd %d", fd); | |
691 | ||
54d01ffb | 692 | session_lock_list(); |
b5541356 | 693 | cds_list_for_each_entry(session, &session_list_ptr->head, list) { |
54d01ffb | 694 | session_lock(session); |
7a485870 | 695 | if (session->kernel_session == NULL) { |
54d01ffb | 696 | session_unlock(session); |
7a485870 DG |
697 | continue; |
698 | } | |
d9800920 DG |
699 | |
700 | /* This is not suppose to be 0 but this is an extra security check */ | |
701 | if (session->kernel_session->consumer_fd == 0) { | |
3bd1e081 | 702 | session->kernel_session->consumer_fd = consumer_data->cmd_sock; |
d9800920 DG |
703 | } |
704 | ||
5eb91c98 DG |
705 | cds_list_for_each_entry(channel, |
706 | &session->kernel_session->channel_list.head, list) { | |
7a485870 DG |
707 | if (channel->fd == fd) { |
708 | DBG("Channel found, updating kernel streams"); | |
709 | ret = kernel_open_channel_stream(channel); | |
710 | if (ret < 0) { | |
b3c750d2 | 711 | goto error; |
7a485870 | 712 | } |
d9800920 | 713 | |
7a485870 | 714 | /* |
5eb91c98 DG |
715 | * Have we already sent fds to the consumer? If yes, it means |
716 | * that tracing is started so it is safe to send our updated | |
717 | * stream fds. | |
7a485870 | 718 | */ |
3bd1e081 | 719 | if (session->kernel_session->consumer_fds_sent == 1) { |
2bdd86d4 | 720 | ret = send_kconsumer_channel_streams(consumer_data, |
5eb91c98 | 721 | session->kernel_session->consumer_fd, channel); |
7a485870 | 722 | if (ret < 0) { |
b3c750d2 | 723 | goto error; |
7a485870 DG |
724 | } |
725 | } | |
b3c750d2 | 726 | goto error; |
7a485870 DG |
727 | } |
728 | } | |
54d01ffb | 729 | session_unlock(session); |
7a485870 | 730 | } |
54d01ffb | 731 | session_unlock_list(); |
b3c750d2 | 732 | return ret; |
7a485870 | 733 | |
b3c750d2 | 734 | error: |
54d01ffb DG |
735 | session_unlock(session); |
736 | session_unlock_list(); | |
7a485870 DG |
737 | return ret; |
738 | } | |
739 | ||
487cf67c DG |
740 | /* |
741 | * For each tracing session, update newly registered apps. | |
742 | */ | |
743 | static void update_ust_app(int app_sock) | |
744 | { | |
745 | struct ltt_session *sess, *stmp; | |
746 | ||
747 | /* For all tracing session(s) */ | |
748 | cds_list_for_each_entry_safe(sess, stmp, &session_list_ptr->head, list) { | |
421cb601 DG |
749 | if (sess->ust_session) { |
750 | ust_app_global_update(sess->ust_session, app_sock); | |
751 | } | |
487cf67c DG |
752 | } |
753 | } | |
754 | ||
7a485870 | 755 | /* |
d063d709 | 756 | * This thread manage event coming from the kernel. |
7a485870 | 757 | * |
d063d709 DG |
758 | * Features supported in this thread: |
759 | * -) CPU Hotplug | |
7a485870 DG |
760 | */ |
761 | static void *thread_manage_kernel(void *data) | |
762 | { | |
5eb91c98 DG |
763 | int ret, i, pollfd, update_poll_flag = 1; |
764 | uint32_t revents, nb_fd; | |
7a485870 | 765 | char tmp; |
5eb91c98 | 766 | struct lttng_poll_event events; |
7a485870 DG |
767 | |
768 | DBG("Thread manage kernel started"); | |
769 | ||
5eb91c98 DG |
770 | ret = create_thread_poll_set(&events, 2); |
771 | if (ret < 0) { | |
772 | goto error; | |
773 | } | |
774 | ||
775 | ret = lttng_poll_add(&events, kernel_poll_pipe[0], LPOLLIN); | |
776 | if (ret < 0) { | |
777 | goto error; | |
778 | } | |
779 | ||
7a485870 DG |
780 | while (1) { |
781 | if (update_poll_flag == 1) { | |
5f822d0a DG |
782 | /* |
783 | * Reset number of fd in the poll set. Always 2 since there is the thread | |
784 | * quit pipe and the kernel pipe. | |
785 | */ | |
786 | events.nb_fd = 2; | |
787 | ||
5eb91c98 DG |
788 | ret = update_kernel_poll(&events); |
789 | if (ret < 0) { | |
7a485870 DG |
790 | goto error; |
791 | } | |
792 | update_poll_flag = 0; | |
793 | } | |
794 | ||
5eb91c98 DG |
795 | nb_fd = LTTNG_POLL_GETNB(&events); |
796 | ||
797 | DBG("Thread kernel polling on %d fds", nb_fd); | |
798 | ||
799 | /* Zeroed the poll events */ | |
800 | lttng_poll_reset(&events); | |
7a485870 DG |
801 | |
802 | /* Poll infinite value of time */ | |
5eb91c98 | 803 | ret = lttng_poll_wait(&events, -1); |
7a485870 | 804 | if (ret < 0) { |
7a485870 DG |
805 | goto error; |
806 | } else if (ret == 0) { | |
807 | /* Should not happen since timeout is infinite */ | |
85611738 DG |
808 | ERR("Return value of poll is 0 with an infinite timeout.\n" |
809 | "This should not have happened! Continuing..."); | |
7a485870 DG |
810 | continue; |
811 | } | |
812 | ||
5eb91c98 DG |
813 | for (i = 0; i < nb_fd; i++) { |
814 | /* Fetch once the poll data */ | |
815 | revents = LTTNG_POLL_GETEV(&events, i); | |
816 | pollfd = LTTNG_POLL_GETFD(&events, i); | |
7a485870 | 817 | |
5eb91c98 DG |
818 | /* Thread quit pipe has been closed. Killing thread. */ |
819 | ret = check_thread_quit_pipe(pollfd, revents); | |
820 | if (ret) { | |
821 | goto error; | |
822 | } | |
7a485870 | 823 | |
5eb91c98 DG |
824 | /* Check for data on kernel pipe */ |
825 | if (pollfd == kernel_poll_pipe[0] && (revents & LPOLLIN)) { | |
826 | ret = read(kernel_poll_pipe[0], &tmp, 1); | |
827 | update_poll_flag = 1; | |
828 | continue; | |
829 | } else { | |
830 | /* | |
831 | * New CPU detected by the kernel. Adding kernel stream to | |
832 | * kernel session and updating the kernel consumer | |
833 | */ | |
834 | if (revents & LPOLLIN) { | |
2bdd86d4 | 835 | ret = update_kernel_stream(&kconsumer_data, pollfd); |
5eb91c98 DG |
836 | if (ret < 0) { |
837 | continue; | |
838 | } | |
839 | break; | |
840 | /* | |
841 | * TODO: We might want to handle the LPOLLERR | LPOLLHUP | |
842 | * and unregister kernel stream at this point. | |
843 | */ | |
7a485870 | 844 | } |
7a485870 DG |
845 | } |
846 | } | |
847 | } | |
848 | ||
849 | error: | |
850 | DBG("Kernel thread dying"); | |
273ea72c DG |
851 | close(kernel_poll_pipe[0]); |
852 | close(kernel_poll_pipe[1]); | |
5eb91c98 DG |
853 | |
854 | lttng_poll_clean(&events); | |
855 | ||
7a485870 DG |
856 | return NULL; |
857 | } | |
858 | ||
1d4b027a | 859 | /* |
3bd1e081 | 860 | * This thread manage the consumer error sent back to the session daemon. |
1d4b027a | 861 | */ |
3bd1e081 | 862 | static void *thread_manage_consumer(void *data) |
1d4b027a | 863 | { |
5eb91c98 DG |
864 | int sock = 0, i, ret, pollfd; |
865 | uint32_t revents, nb_fd; | |
1d4b027a | 866 | enum lttcomm_return_code code; |
5eb91c98 | 867 | struct lttng_poll_event events; |
3bd1e081 | 868 | struct consumer_data *consumer_data = data; |
1d4b027a | 869 | |
3bd1e081 | 870 | DBG("[thread] Manage consumer started"); |
1d4b027a | 871 | |
3bd1e081 | 872 | ret = lttcomm_listen_unix_sock(consumer_data->err_sock); |
1d4b027a DG |
873 | if (ret < 0) { |
874 | goto error; | |
875 | } | |
876 | ||
5eb91c98 DG |
877 | /* |
878 | * Pass 2 as size here for the thread quit pipe and kconsumerd_err_sock. | |
879 | * Nothing more will be added to this poll set. | |
880 | */ | |
881 | ret = create_thread_poll_set(&events, 2); | |
882 | if (ret < 0) { | |
883 | goto error; | |
884 | } | |
273ea72c | 885 | |
3bd1e081 | 886 | ret = lttng_poll_add(&events, consumer_data->err_sock, LPOLLIN | LPOLLRDHUP); |
5eb91c98 DG |
887 | if (ret < 0) { |
888 | goto error; | |
889 | } | |
890 | ||
891 | nb_fd = LTTNG_POLL_GETNB(&events); | |
273ea72c DG |
892 | |
893 | /* Inifinite blocking call, waiting for transmission */ | |
5eb91c98 | 894 | ret = lttng_poll_wait(&events, -1); |
273ea72c | 895 | if (ret < 0) { |
273ea72c DG |
896 | goto error; |
897 | } | |
898 | ||
5eb91c98 DG |
899 | for (i = 0; i < nb_fd; i++) { |
900 | /* Fetch once the poll data */ | |
901 | revents = LTTNG_POLL_GETEV(&events, i); | |
902 | pollfd = LTTNG_POLL_GETFD(&events, i); | |
903 | ||
904 | /* Thread quit pipe has been closed. Killing thread. */ | |
905 | ret = check_thread_quit_pipe(pollfd, revents); | |
906 | if (ret) { | |
907 | goto error; | |
908 | } | |
909 | ||
910 | /* Event on the registration socket */ | |
3bd1e081 | 911 | if (pollfd == consumer_data->err_sock) { |
5eb91c98 | 912 | if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) { |
3bd1e081 | 913 | ERR("consumer err socket poll error"); |
5eb91c98 DG |
914 | goto error; |
915 | } | |
916 | } | |
273ea72c DG |
917 | } |
918 | ||
3bd1e081 | 919 | sock = lttcomm_accept_unix_sock(consumer_data->err_sock); |
1d4b027a DG |
920 | if (sock < 0) { |
921 | goto error; | |
922 | } | |
923 | ||
3bd1e081 | 924 | DBG2("Receiving code from consumer err_sock"); |
ee0b0061 | 925 | |
712ea556 | 926 | /* Getting status code from kconsumerd */ |
54d01ffb DG |
927 | ret = lttcomm_recv_unix_sock(sock, &code, |
928 | sizeof(enum lttcomm_return_code)); | |
1d4b027a DG |
929 | if (ret <= 0) { |
930 | goto error; | |
931 | } | |
932 | ||
3bd1e081 MD |
933 | if (code == CONSUMERD_COMMAND_SOCK_READY) { |
934 | consumer_data->cmd_sock = | |
935 | lttcomm_connect_unix_sock(consumer_data->cmd_unix_sock_path); | |
936 | if (consumer_data->cmd_sock < 0) { | |
937 | sem_post(&consumer_data->sem); | |
48842b30 | 938 | PERROR("consumer connect"); |
1d4b027a DG |
939 | goto error; |
940 | } | |
941 | /* Signal condition to tell that the kconsumerd is ready */ | |
3bd1e081 MD |
942 | sem_post(&consumer_data->sem); |
943 | DBG("consumer command socket ready"); | |
1d4b027a | 944 | } else { |
3bd1e081 | 945 | ERR("consumer error when waiting for SOCK_READY : %s", |
1d4b027a DG |
946 | lttcomm_get_readable_code(-code)); |
947 | goto error; | |
948 | } | |
949 | ||
54d01ffb | 950 | /* Remove the kconsumerd error sock since we've established a connexion */ |
3bd1e081 | 951 | ret = lttng_poll_del(&events, consumer_data->err_sock); |
72079cae | 952 | if (ret < 0) { |
72079cae DG |
953 | goto error; |
954 | } | |
955 | ||
5eb91c98 DG |
956 | ret = lttng_poll_add(&events, sock, LPOLLIN | LPOLLRDHUP); |
957 | if (ret < 0) { | |
72079cae | 958 | goto error; |
5eb91c98 DG |
959 | } |
960 | ||
961 | /* Update number of fd */ | |
962 | nb_fd = LTTNG_POLL_GETNB(&events); | |
963 | ||
964 | /* Inifinite blocking call, waiting for transmission */ | |
965 | ret = lttng_poll_wait(&events, -1); | |
966 | if (ret < 0) { | |
72079cae DG |
967 | goto error; |
968 | } | |
969 | ||
5eb91c98 DG |
970 | for (i = 0; i < nb_fd; i++) { |
971 | /* Fetch once the poll data */ | |
972 | revents = LTTNG_POLL_GETEV(&events, i); | |
973 | pollfd = LTTNG_POLL_GETFD(&events, i); | |
974 | ||
975 | /* Thread quit pipe has been closed. Killing thread. */ | |
976 | ret = check_thread_quit_pipe(pollfd, revents); | |
977 | if (ret) { | |
978 | goto error; | |
979 | } | |
980 | ||
981 | /* Event on the kconsumerd socket */ | |
982 | if (pollfd == sock) { | |
983 | if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) { | |
3bd1e081 | 984 | ERR("consumer err socket second poll error"); |
5eb91c98 DG |
985 | goto error; |
986 | } | |
987 | } | |
988 | } | |
989 | ||
712ea556 | 990 | /* Wait for any kconsumerd error */ |
54d01ffb DG |
991 | ret = lttcomm_recv_unix_sock(sock, &code, |
992 | sizeof(enum lttcomm_return_code)); | |
712ea556 | 993 | if (ret <= 0) { |
3bd1e081 | 994 | ERR("consumer closed the command socket"); |
712ea556 | 995 | goto error; |
6f61d021 | 996 | } |
1d4b027a | 997 | |
3bd1e081 | 998 | ERR("consumer return code : %s", lttcomm_get_readable_code(-code)); |
712ea556 | 999 | |
1d4b027a | 1000 | error: |
3bd1e081 MD |
1001 | DBG("consumer thread dying"); |
1002 | close(consumer_data->err_sock); | |
1003 | close(consumer_data->cmd_sock); | |
5eb91c98 | 1004 | close(sock); |
273ea72c | 1005 | |
3bd1e081 MD |
1006 | unlink(consumer_data->err_unix_sock_path); |
1007 | unlink(consumer_data->cmd_unix_sock_path); | |
1008 | consumer_data->pid = 0; | |
1d4b027a | 1009 | |
5eb91c98 | 1010 | lttng_poll_clean(&events); |
0177d773 | 1011 | |
5eb91c98 | 1012 | return NULL; |
099e26bd DG |
1013 | } |
1014 | ||
099e26bd DG |
1015 | /* |
1016 | * This thread manage application communication. | |
1d4b027a DG |
1017 | */ |
1018 | static void *thread_manage_apps(void *data) | |
099e26bd | 1019 | { |
5eb91c98 DG |
1020 | int i, ret, pollfd; |
1021 | uint32_t revents, nb_fd; | |
099e26bd | 1022 | struct ust_command ust_cmd; |
5eb91c98 | 1023 | struct lttng_poll_event events; |
099e26bd DG |
1024 | |
1025 | DBG("[thread] Manage application started"); | |
1026 | ||
f6a9efaa DG |
1027 | rcu_register_thread(); |
1028 | rcu_thread_online(); | |
1029 | ||
5eb91c98 DG |
1030 | ret = create_thread_poll_set(&events, 2); |
1031 | if (ret < 0) { | |
1032 | goto error; | |
1033 | } | |
099e26bd | 1034 | |
5eb91c98 DG |
1035 | ret = lttng_poll_add(&events, apps_cmd_pipe[0], LPOLLIN | LPOLLRDHUP); |
1036 | if (ret < 0) { | |
1037 | goto error; | |
1038 | } | |
099e26bd | 1039 | |
5eb91c98 DG |
1040 | while (1) { |
1041 | /* Zeroed the events structure */ | |
1042 | lttng_poll_reset(&events); | |
0177d773 | 1043 | |
5eb91c98 | 1044 | nb_fd = LTTNG_POLL_GETNB(&events); |
099e26bd DG |
1045 | |
1046 | DBG("Apps thread polling on %d fds", nb_fd); | |
1047 | ||
1048 | /* Inifinite blocking call, waiting for transmission */ | |
5eb91c98 | 1049 | ret = lttng_poll_wait(&events, -1); |
099e26bd | 1050 | if (ret < 0) { |
099e26bd DG |
1051 | goto error; |
1052 | } | |
1053 | ||
5eb91c98 DG |
1054 | for (i = 0; i < nb_fd; i++) { |
1055 | /* Fetch once the poll data */ | |
1056 | revents = LTTNG_POLL_GETEV(&events, i); | |
1057 | pollfd = LTTNG_POLL_GETFD(&events, i); | |
1058 | ||
1059 | /* Thread quit pipe has been closed. Killing thread. */ | |
1060 | ret = check_thread_quit_pipe(pollfd, revents); | |
1061 | if (ret) { | |
099e26bd | 1062 | goto error; |
5eb91c98 | 1063 | } |
099e26bd | 1064 | |
5eb91c98 DG |
1065 | /* Inspect the apps cmd pipe */ |
1066 | if (pollfd == apps_cmd_pipe[0]) { | |
1067 | if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) { | |
1068 | ERR("Apps command pipe error"); | |
0177d773 | 1069 | goto error; |
5eb91c98 DG |
1070 | } else if (revents & LPOLLIN) { |
1071 | /* Empty pipe */ | |
1072 | ret = read(apps_cmd_pipe[0], &ust_cmd, sizeof(ust_cmd)); | |
1073 | if (ret < 0 || ret < sizeof(ust_cmd)) { | |
1074 | perror("read apps cmd pipe"); | |
1075 | goto error; | |
1076 | } | |
099e26bd | 1077 | |
5eb91c98 | 1078 | /* Register applicaton to the session daemon */ |
56fff090 | 1079 | ret = ust_app_register(&ust_cmd.reg_msg, |
54d01ffb | 1080 | ust_cmd.sock); |
88ff5b7f | 1081 | if (ret == -ENOMEM) { |
5eb91c98 | 1082 | goto error; |
88ff5b7f MD |
1083 | } else if (ret < 0) { |
1084 | break; | |
5eb91c98 DG |
1085 | } |
1086 | ||
acc7b41b MD |
1087 | /* |
1088 | * Add channel(s) and event(s) to newly registered apps | |
1089 | * from lttng global UST domain. | |
1090 | */ | |
1091 | update_ust_app(ust_cmd.sock); | |
1092 | ||
5eb91c98 DG |
1093 | ret = ustctl_register_done(ust_cmd.sock); |
1094 | if (ret < 0) { | |
1095 | /* | |
1096 | * If the registration is not possible, we simply | |
1097 | * unregister the apps and continue | |
1098 | */ | |
56fff090 | 1099 | ust_app_unregister(ust_cmd.sock); |
5eb91c98 DG |
1100 | } else { |
1101 | /* | |
1102 | * We just need here to monitor the close of the UST | |
1103 | * socket and poll set monitor those by default. | |
1104 | */ | |
1105 | ret = lttng_poll_add(&events, ust_cmd.sock, 0); | |
1106 | if (ret < 0) { | |
1107 | goto error; | |
1108 | } | |
1109 | ||
54d01ffb DG |
1110 | DBG("Apps with sock %d added to poll set", |
1111 | ust_cmd.sock); | |
5eb91c98 | 1112 | } |
487cf67c | 1113 | |
5eb91c98 | 1114 | break; |
0177d773 | 1115 | } |
5eb91c98 DG |
1116 | } else { |
1117 | /* | |
54d01ffb DG |
1118 | * At this point, we know that a registered application made |
1119 | * the event at poll_wait. | |
5eb91c98 DG |
1120 | */ |
1121 | if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) { | |
1122 | /* Removing from the poll set */ | |
1123 | ret = lttng_poll_del(&events, pollfd); | |
1124 | if (ret < 0) { | |
1125 | goto error; | |
1126 | } | |
099e26bd | 1127 | |
b9d9b220 | 1128 | /* Socket closed on remote end. */ |
56fff090 | 1129 | ust_app_unregister(pollfd); |
5eb91c98 DG |
1130 | break; |
1131 | } | |
099e26bd DG |
1132 | } |
1133 | } | |
099e26bd DG |
1134 | } |
1135 | ||
1136 | error: | |
1137 | DBG("Application communication apps dying"); | |
1138 | close(apps_cmd_pipe[0]); | |
1139 | close(apps_cmd_pipe[1]); | |
1140 | ||
5eb91c98 | 1141 | lttng_poll_clean(&events); |
099e26bd | 1142 | |
f6a9efaa DG |
1143 | rcu_thread_offline(); |
1144 | rcu_unregister_thread(); | |
099e26bd DG |
1145 | return NULL; |
1146 | } | |
1147 | ||
1148 | /* | |
1149 | * Dispatch request from the registration threads to the application | |
1150 | * communication thread. | |
1151 | */ | |
1152 | static void *thread_dispatch_ust_registration(void *data) | |
1153 | { | |
1154 | int ret; | |
1155 | struct cds_wfq_node *node; | |
1156 | struct ust_command *ust_cmd = NULL; | |
1157 | ||
1158 | DBG("[thread] Dispatch UST command started"); | |
1159 | ||
1160 | while (!dispatch_thread_exit) { | |
1161 | /* Atomically prepare the queue futex */ | |
1162 | futex_nto1_prepare(&ust_cmd_queue.futex); | |
1163 | ||
1164 | do { | |
1165 | /* Dequeue command for registration */ | |
1166 | node = cds_wfq_dequeue_blocking(&ust_cmd_queue.queue); | |
1167 | if (node == NULL) { | |
00a17c97 | 1168 | DBG("Woken up but nothing in the UST command queue"); |
099e26bd DG |
1169 | /* Continue thread execution */ |
1170 | break; | |
1171 | } | |
1172 | ||
1173 | ust_cmd = caa_container_of(node, struct ust_command, node); | |
1174 | ||
2f50c8a3 DG |
1175 | DBG("Dispatching UST registration pid:%d ppid:%d uid:%d" |
1176 | " gid:%d sock:%d name:%s (version %d.%d)", | |
1177 | ust_cmd->reg_msg.pid, ust_cmd->reg_msg.ppid, | |
1178 | ust_cmd->reg_msg.uid, ust_cmd->reg_msg.gid, | |
1179 | ust_cmd->sock, ust_cmd->reg_msg.name, | |
1180 | ust_cmd->reg_msg.major, ust_cmd->reg_msg.minor); | |
099e26bd DG |
1181 | /* |
1182 | * Inform apps thread of the new application registration. This | |
1183 | * call is blocking so we can be assured that the data will be read | |
1184 | * at some point in time or wait to the end of the world :) | |
1185 | */ | |
1186 | ret = write(apps_cmd_pipe[1], ust_cmd, | |
1187 | sizeof(struct ust_command)); | |
1188 | if (ret < 0) { | |
1189 | perror("write apps cmd pipe"); | |
1190 | if (errno == EBADF) { | |
1191 | /* | |
1192 | * We can't inform the application thread to process | |
1193 | * registration. We will exit or else application | |
1194 | * registration will not occur and tracing will never | |
1195 | * start. | |
1196 | */ | |
1197 | goto error; | |
1198 | } | |
1199 | } | |
1200 | free(ust_cmd); | |
1201 | } while (node != NULL); | |
1202 | ||
1203 | /* Futex wait on queue. Blocking call on futex() */ | |
1204 | futex_nto1_wait(&ust_cmd_queue.futex); | |
1205 | } | |
1206 | ||
1207 | error: | |
1208 | DBG("Dispatch thread dying"); | |
1209 | return NULL; | |
1210 | } | |
1211 | ||
1212 | /* | |
1213 | * This thread manage application registration. | |
1214 | */ | |
1215 | static void *thread_registration_apps(void *data) | |
1d4b027a | 1216 | { |
5eb91c98 DG |
1217 | int sock = 0, i, ret, pollfd; |
1218 | uint32_t revents, nb_fd; | |
1219 | struct lttng_poll_event events; | |
099e26bd DG |
1220 | /* |
1221 | * Get allocated in this thread, enqueued to a global queue, dequeued and | |
1222 | * freed in the manage apps thread. | |
1223 | */ | |
1224 | struct ust_command *ust_cmd = NULL; | |
1d4b027a | 1225 | |
099e26bd | 1226 | DBG("[thread] Manage application registration started"); |
1d4b027a DG |
1227 | |
1228 | ret = lttcomm_listen_unix_sock(apps_sock); | |
1229 | if (ret < 0) { | |
1230 | goto error; | |
1231 | } | |
1232 | ||
5eb91c98 DG |
1233 | /* |
1234 | * Pass 2 as size here for the thread quit pipe and apps socket. Nothing | |
1235 | * more will be added to this poll set. | |
1236 | */ | |
1237 | ret = create_thread_poll_set(&events, 2); | |
1238 | if (ret < 0) { | |
1239 | goto error; | |
1240 | } | |
273ea72c | 1241 | |
5eb91c98 DG |
1242 | /* Add the application registration socket */ |
1243 | ret = lttng_poll_add(&events, apps_sock, LPOLLIN | LPOLLRDHUP); | |
1244 | if (ret < 0) { | |
1245 | goto error; | |
1246 | } | |
273ea72c | 1247 | |
1d4b027a | 1248 | /* Notify all applications to register */ |
0fdd1e2c DG |
1249 | ret = notify_ust_apps(1); |
1250 | if (ret < 0) { | |
1251 | ERR("Failed to notify applications or create the wait shared memory.\n" | |
54d01ffb DG |
1252 | "Execution continues but there might be problem for already\n" |
1253 | "running applications that wishes to register."); | |
0fdd1e2c | 1254 | } |
1d4b027a DG |
1255 | |
1256 | while (1) { | |
1257 | DBG("Accepting application registration"); | |
273ea72c | 1258 | |
5eb91c98 DG |
1259 | nb_fd = LTTNG_POLL_GETNB(&events); |
1260 | ||
273ea72c | 1261 | /* Inifinite blocking call, waiting for transmission */ |
5eb91c98 | 1262 | ret = lttng_poll_wait(&events, -1); |
273ea72c | 1263 | if (ret < 0) { |
273ea72c DG |
1264 | goto error; |
1265 | } | |
1266 | ||
5eb91c98 DG |
1267 | for (i = 0; i < nb_fd; i++) { |
1268 | /* Fetch once the poll data */ | |
1269 | revents = LTTNG_POLL_GETEV(&events, i); | |
1270 | pollfd = LTTNG_POLL_GETFD(&events, i); | |
273ea72c | 1271 | |
5eb91c98 DG |
1272 | /* Thread quit pipe has been closed. Killing thread. */ |
1273 | ret = check_thread_quit_pipe(pollfd, revents); | |
1274 | if (ret) { | |
90014c57 DG |
1275 | goto error; |
1276 | } | |
1d4b027a | 1277 | |
5eb91c98 DG |
1278 | /* Event on the registration socket */ |
1279 | if (pollfd == apps_sock) { | |
1280 | if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) { | |
1281 | ERR("Register apps socket poll error"); | |
1282 | goto error; | |
1283 | } else if (revents & LPOLLIN) { | |
1284 | sock = lttcomm_accept_unix_sock(apps_sock); | |
1285 | if (sock < 0) { | |
1286 | goto error; | |
1287 | } | |
099e26bd | 1288 | |
5eb91c98 | 1289 | /* Create UST registration command for enqueuing */ |
ba7f0ae5 | 1290 | ust_cmd = zmalloc(sizeof(struct ust_command)); |
5eb91c98 | 1291 | if (ust_cmd == NULL) { |
ba7f0ae5 | 1292 | perror("ust command zmalloc"); |
5eb91c98 DG |
1293 | goto error; |
1294 | } | |
1d4b027a | 1295 | |
5eb91c98 DG |
1296 | /* |
1297 | * Using message-based transmissions to ensure we don't | |
1298 | * have to deal with partially received messages. | |
1299 | */ | |
1300 | ret = lttcomm_recv_unix_sock(sock, &ust_cmd->reg_msg, | |
1301 | sizeof(struct ust_register_msg)); | |
1302 | if (ret < 0 || ret < sizeof(struct ust_register_msg)) { | |
1303 | if (ret < 0) { | |
1304 | perror("lttcomm_recv_unix_sock register apps"); | |
1305 | } else { | |
1306 | ERR("Wrong size received on apps register"); | |
1307 | } | |
1308 | free(ust_cmd); | |
1309 | close(sock); | |
1310 | continue; | |
1311 | } | |
099e26bd | 1312 | |
5eb91c98 | 1313 | ust_cmd->sock = sock; |
099e26bd | 1314 | |
5eb91c98 DG |
1315 | DBG("UST registration received with pid:%d ppid:%d uid:%d" |
1316 | " gid:%d sock:%d name:%s (version %d.%d)", | |
1317 | ust_cmd->reg_msg.pid, ust_cmd->reg_msg.ppid, | |
1318 | ust_cmd->reg_msg.uid, ust_cmd->reg_msg.gid, | |
1319 | ust_cmd->sock, ust_cmd->reg_msg.name, | |
1320 | ust_cmd->reg_msg.major, ust_cmd->reg_msg.minor); | |
54d01ffb | 1321 | |
5eb91c98 DG |
1322 | /* |
1323 | * Lock free enqueue the registration request. The red pill | |
54d01ffb | 1324 | * has been taken! This apps will be part of the *system*. |
5eb91c98 DG |
1325 | */ |
1326 | cds_wfq_enqueue(&ust_cmd_queue.queue, &ust_cmd->node); | |
1327 | ||
1328 | /* | |
1329 | * Wake the registration queue futex. Implicit memory | |
1330 | * barrier with the exchange in cds_wfq_enqueue. | |
1331 | */ | |
1332 | futex_nto1_wake(&ust_cmd_queue.futex); | |
1333 | } | |
1334 | } | |
90014c57 | 1335 | } |
1d4b027a DG |
1336 | } |
1337 | ||
1338 | error: | |
0fdd1e2c DG |
1339 | DBG("UST Registration thread dying"); |
1340 | ||
1341 | /* Notify that the registration thread is gone */ | |
1342 | notify_ust_apps(0); | |
1343 | ||
1344 | close(apps_sock); | |
1345 | close(sock); | |
273ea72c | 1346 | unlink(apps_unix_sock_path); |
0fdd1e2c | 1347 | |
5eb91c98 DG |
1348 | lttng_poll_clean(&events); |
1349 | ||
1d4b027a DG |
1350 | return NULL; |
1351 | } | |
1352 | ||
8c0faa1d | 1353 | /* |
3bd1e081 | 1354 | * Start the thread_manage_consumer. This must be done after a lttng-consumerd |
d063d709 | 1355 | * exec or it will fails. |
8c0faa1d | 1356 | */ |
3bd1e081 | 1357 | static int spawn_consumer_thread(struct consumer_data *consumer_data) |
8c0faa1d DG |
1358 | { |
1359 | int ret; | |
ee0b0061 DG |
1360 | struct timespec timeout; |
1361 | ||
1362 | timeout.tv_sec = DEFAULT_SEM_WAIT_TIMEOUT; | |
1363 | timeout.tv_nsec = 0; | |
8c0faa1d DG |
1364 | |
1365 | /* Setup semaphore */ | |
3bd1e081 | 1366 | ret = sem_init(&consumer_data->sem, 0, 0); |
ee0b0061 | 1367 | if (ret < 0) { |
3bd1e081 | 1368 | PERROR("sem_init consumer semaphore"); |
ee0b0061 DG |
1369 | goto error; |
1370 | } | |
8c0faa1d | 1371 | |
3bd1e081 MD |
1372 | ret = pthread_create(&consumer_data->thread, NULL, |
1373 | thread_manage_consumer, consumer_data); | |
8c0faa1d | 1374 | if (ret != 0) { |
3bd1e081 | 1375 | PERROR("pthread_create consumer"); |
ee0b0061 | 1376 | ret = -1; |
8c0faa1d DG |
1377 | goto error; |
1378 | } | |
1379 | ||
ee0b0061 DG |
1380 | /* Get time for sem_timedwait absolute timeout */ |
1381 | ret = clock_gettime(CLOCK_REALTIME, &timeout); | |
1382 | if (ret < 0) { | |
3bd1e081 | 1383 | PERROR("clock_gettime spawn consumer"); |
ee0b0061 | 1384 | /* Infinite wait for the kconsumerd thread to be ready */ |
3bd1e081 | 1385 | ret = sem_wait(&consumer_data->sem); |
ee0b0061 DG |
1386 | } else { |
1387 | /* Normal timeout if the gettime was successful */ | |
1388 | timeout.tv_sec += DEFAULT_SEM_WAIT_TIMEOUT; | |
3bd1e081 | 1389 | ret = sem_timedwait(&consumer_data->sem, &timeout); |
ee0b0061 | 1390 | } |
8c0faa1d | 1391 | |
ee0b0061 DG |
1392 | if (ret < 0) { |
1393 | if (errno == ETIMEDOUT) { | |
1394 | /* | |
1395 | * Call has timed out so we kill the kconsumerd_thread and return | |
1396 | * an error. | |
1397 | */ | |
3bd1e081 MD |
1398 | ERR("The consumer thread was never ready. Killing it"); |
1399 | ret = pthread_cancel(consumer_data->thread); | |
ee0b0061 | 1400 | if (ret < 0) { |
3bd1e081 | 1401 | PERROR("pthread_cancel consumer thread"); |
ee0b0061 DG |
1402 | } |
1403 | } else { | |
3bd1e081 | 1404 | PERROR("semaphore wait failed consumer thread"); |
ee0b0061 DG |
1405 | } |
1406 | goto error; | |
1407 | } | |
1408 | ||
3bd1e081 MD |
1409 | pthread_mutex_lock(&consumer_data->pid_mutex); |
1410 | if (consumer_data->pid == 0) { | |
712ea556 | 1411 | ERR("Kconsumerd did not start"); |
3bd1e081 | 1412 | pthread_mutex_unlock(&consumer_data->pid_mutex); |
712ea556 DG |
1413 | goto error; |
1414 | } | |
3bd1e081 | 1415 | pthread_mutex_unlock(&consumer_data->pid_mutex); |
712ea556 | 1416 | |
8c0faa1d DG |
1417 | return 0; |
1418 | ||
1419 | error: | |
1420 | return ret; | |
1421 | } | |
1422 | ||
d9800920 | 1423 | /* |
3bd1e081 | 1424 | * Join consumer thread |
d9800920 | 1425 | */ |
3bd1e081 | 1426 | static int join_consumer_thread(struct consumer_data *consumer_data) |
cf3af59e MD |
1427 | { |
1428 | void *status; | |
1429 | int ret; | |
1430 | ||
3bd1e081 MD |
1431 | if (consumer_data->pid != 0) { |
1432 | ret = kill(consumer_data->pid, SIGTERM); | |
cf3af59e | 1433 | if (ret) { |
3bd1e081 | 1434 | ERR("Error killing consumer daemon"); |
cf3af59e MD |
1435 | return ret; |
1436 | } | |
3bd1e081 | 1437 | return pthread_join(consumer_data->thread, &status); |
cf3af59e MD |
1438 | } else { |
1439 | return 0; | |
1440 | } | |
1441 | } | |
1442 | ||
8c0faa1d | 1443 | /* |
3bd1e081 | 1444 | * Fork and exec a consumer daemon (consumerd). |
8c0faa1d | 1445 | * |
d063d709 | 1446 | * Return pid if successful else -1. |
8c0faa1d | 1447 | */ |
3bd1e081 | 1448 | static pid_t spawn_consumerd(struct consumer_data *consumer_data) |
8c0faa1d DG |
1449 | { |
1450 | int ret; | |
1451 | pid_t pid; | |
53086306 | 1452 | const char *verbosity; |
8c0faa1d | 1453 | |
3bd1e081 | 1454 | DBG("Spawning consumerd"); |
c49dc785 | 1455 | |
8c0faa1d DG |
1456 | pid = fork(); |
1457 | if (pid == 0) { | |
1458 | /* | |
3bd1e081 | 1459 | * Exec consumerd. |
8c0faa1d | 1460 | */ |
3bd1e081 | 1461 | if (opt_verbose > 1 || opt_verbose_consumer) { |
53086306 DG |
1462 | verbosity = "--verbose"; |
1463 | } else { | |
1464 | verbosity = "--quiet"; | |
1465 | } | |
3bd1e081 MD |
1466 | switch (consumer_data->type) { |
1467 | case LTTNG_CONSUMER_KERNEL: | |
1468 | execl(INSTALL_BIN_PATH "/lttng-consumerd", | |
1469 | "lttng-consumerd", verbosity, "-k", NULL); | |
1470 | break; | |
1471 | case LTTNG_CONSUMER_UST: | |
1472 | execl(INSTALL_BIN_PATH "/lttng-consumerd", | |
1473 | "lttng-consumerd", verbosity, "-u", NULL); | |
1474 | break; | |
1475 | default: | |
1476 | perror("unknown consumer type"); | |
1477 | exit(EXIT_FAILURE); | |
1478 | } | |
8c0faa1d DG |
1479 | if (errno != 0) { |
1480 | perror("kernel start consumer exec"); | |
1481 | } | |
1482 | exit(EXIT_FAILURE); | |
1483 | } else if (pid > 0) { | |
1484 | ret = pid; | |
8c0faa1d | 1485 | } else { |
3bd1e081 | 1486 | perror("start consumer fork"); |
8c0faa1d | 1487 | ret = -errno; |
8c0faa1d | 1488 | } |
8c0faa1d DG |
1489 | return ret; |
1490 | } | |
1491 | ||
693bd40b | 1492 | /* |
3bd1e081 | 1493 | * Spawn the consumerd daemon and session daemon thread. |
693bd40b | 1494 | */ |
3bd1e081 | 1495 | static int start_consumerd(struct consumer_data *consumer_data) |
693bd40b DG |
1496 | { |
1497 | int ret; | |
1498 | ||
3bd1e081 MD |
1499 | pthread_mutex_lock(&consumer_data->pid_mutex); |
1500 | if (consumer_data->pid != 0) { | |
1501 | pthread_mutex_unlock(&consumer_data->pid_mutex); | |
c49dc785 DG |
1502 | goto end; |
1503 | } | |
693bd40b | 1504 | |
3bd1e081 | 1505 | ret = spawn_consumerd(consumer_data); |
c49dc785 | 1506 | if (ret < 0) { |
3bd1e081 MD |
1507 | ERR("Spawning consumerd failed"); |
1508 | pthread_mutex_unlock(&consumer_data->pid_mutex); | |
c49dc785 | 1509 | goto error; |
693bd40b | 1510 | } |
c49dc785 | 1511 | |
3bd1e081 MD |
1512 | /* Setting up the consumer_data pid */ |
1513 | consumer_data->pid = ret; | |
48842b30 | 1514 | DBG2("Consumer pid %d", consumer_data->pid); |
3bd1e081 | 1515 | pthread_mutex_unlock(&consumer_data->pid_mutex); |
693bd40b | 1516 | |
3bd1e081 MD |
1517 | DBG2("Spawning consumer control thread"); |
1518 | ret = spawn_consumer_thread(consumer_data); | |
693bd40b | 1519 | if (ret < 0) { |
3bd1e081 | 1520 | ERR("Fatal error spawning consumer control thread"); |
693bd40b DG |
1521 | goto error; |
1522 | } | |
1523 | ||
c49dc785 | 1524 | end: |
693bd40b DG |
1525 | return 0; |
1526 | ||
1527 | error: | |
1528 | return ret; | |
1529 | } | |
1530 | ||
b73401da | 1531 | /* |
d063d709 | 1532 | * modprobe_kernel_modules |
b73401da DG |
1533 | */ |
1534 | static int modprobe_kernel_modules(void) | |
1535 | { | |
ab147185 | 1536 | int ret = 0, i; |
b73401da DG |
1537 | char modprobe[256]; |
1538 | ||
ab147185 MD |
1539 | for (i = 0; i < ARRAY_SIZE(kernel_modules_list); i++) { |
1540 | ret = snprintf(modprobe, sizeof(modprobe), | |
1541 | "/sbin/modprobe %s%s", | |
24b487b8 | 1542 | kernel_modules_list[i].required ? "" : "-q ", |
ab147185 | 1543 | kernel_modules_list[i].name); |
b73401da DG |
1544 | if (ret < 0) { |
1545 | perror("snprintf modprobe"); | |
1546 | goto error; | |
1547 | } | |
ab147185 | 1548 | modprobe[sizeof(modprobe) - 1] = '\0'; |
b73401da | 1549 | ret = system(modprobe); |
ab147185 MD |
1550 | if (ret == -1) { |
1551 | ERR("Unable to launch modprobe for module %s", | |
1552 | kernel_modules_list[i].name); | |
1553 | } else if (kernel_modules_list[i].required | |
d9800920 | 1554 | && WEXITSTATUS(ret) != 0) { |
ab147185 MD |
1555 | ERR("Unable to load module %s", |
1556 | kernel_modules_list[i].name); | |
1557 | } else { | |
1558 | DBG("Modprobe successfully %s", | |
1559 | kernel_modules_list[i].name); | |
1560 | } | |
1561 | } | |
1562 | ||
1563 | error: | |
1564 | return ret; | |
1565 | } | |
1566 | ||
b73401da | 1567 | /* |
d063d709 | 1568 | * mount_debugfs |
b73401da DG |
1569 | */ |
1570 | static int mount_debugfs(char *path) | |
1571 | { | |
1572 | int ret; | |
1573 | char *type = "debugfs"; | |
1574 | ||
996b65c8 | 1575 | ret = mkdir_recursive(path, S_IRWXU | S_IRWXG, geteuid(), getegid()); |
b73401da | 1576 | if (ret < 0) { |
7272acf5 | 1577 | PERROR("Cannot create debugfs path"); |
b73401da DG |
1578 | goto error; |
1579 | } | |
1580 | ||
1581 | ret = mount(type, path, type, 0, NULL); | |
1582 | if (ret < 0) { | |
7272acf5 | 1583 | PERROR("Cannot mount debugfs"); |
b73401da DG |
1584 | goto error; |
1585 | } | |
1586 | ||
1587 | DBG("Mounted debugfs successfully at %s", path); | |
1588 | ||
1589 | error: | |
1590 | return ret; | |
1591 | } | |
1592 | ||
8c0faa1d | 1593 | /* |
d063d709 | 1594 | * Setup necessary data for kernel tracer action. |
8c0faa1d | 1595 | */ |
f3ed775e | 1596 | static void init_kernel_tracer(void) |
8c0faa1d | 1597 | { |
b73401da DG |
1598 | int ret; |
1599 | char *proc_mounts = "/proc/mounts"; | |
1600 | char line[256]; | |
684d34d2 | 1601 | char *debugfs_path = NULL, *lttng_path = NULL; |
b73401da DG |
1602 | FILE *fp; |
1603 | ||
1604 | /* Detect debugfs */ | |
1605 | fp = fopen(proc_mounts, "r"); | |
1606 | if (fp == NULL) { | |
1607 | ERR("Unable to probe %s", proc_mounts); | |
1608 | goto error; | |
1609 | } | |
1610 | ||
1611 | while (fgets(line, sizeof(line), fp) != NULL) { | |
1612 | if (strstr(line, "debugfs") != NULL) { | |
1613 | /* Remove first string */ | |
1614 | strtok(line, " "); | |
1615 | /* Dup string here so we can reuse line later on */ | |
1616 | debugfs_path = strdup(strtok(NULL, " ")); | |
1617 | DBG("Got debugfs path : %s", debugfs_path); | |
1618 | break; | |
1619 | } | |
1620 | } | |
1621 | ||
1622 | fclose(fp); | |
1623 | ||
1624 | /* Mount debugfs if needded */ | |
1625 | if (debugfs_path == NULL) { | |
1626 | ret = asprintf(&debugfs_path, "/mnt/debugfs"); | |
1627 | if (ret < 0) { | |
1628 | perror("asprintf debugfs path"); | |
1629 | goto error; | |
1630 | } | |
1631 | ret = mount_debugfs(debugfs_path); | |
1632 | if (ret < 0) { | |
7272acf5 | 1633 | perror("Cannot mount debugfs"); |
b73401da DG |
1634 | goto error; |
1635 | } | |
1636 | } | |
1637 | ||
1638 | /* Modprobe lttng kernel modules */ | |
1639 | ret = modprobe_kernel_modules(); | |
1640 | if (ret < 0) { | |
1641 | goto error; | |
1642 | } | |
1643 | ||
1644 | /* Setup lttng kernel path */ | |
1645 | ret = asprintf(<tng_path, "%s/lttng", debugfs_path); | |
1646 | if (ret < 0) { | |
1647 | perror("asprintf lttng path"); | |
1648 | goto error; | |
1649 | } | |
1650 | ||
1651 | /* Open debugfs lttng */ | |
1652 | kernel_tracer_fd = open(lttng_path, O_RDWR); | |
f3ed775e | 1653 | if (kernel_tracer_fd < 0) { |
b73401da DG |
1654 | DBG("Failed to open %s", lttng_path); |
1655 | goto error; | |
8c0faa1d DG |
1656 | } |
1657 | ||
b73401da DG |
1658 | free(lttng_path); |
1659 | free(debugfs_path); | |
f3ed775e | 1660 | DBG("Kernel tracer fd %d", kernel_tracer_fd); |
b73401da DG |
1661 | return; |
1662 | ||
1663 | error: | |
1664 | if (lttng_path) { | |
1665 | free(lttng_path); | |
1666 | } | |
1667 | if (debugfs_path) { | |
1668 | free(debugfs_path); | |
1669 | } | |
1670 | WARN("No kernel tracer available"); | |
1671 | kernel_tracer_fd = 0; | |
1672 | return; | |
f3ed775e | 1673 | } |
33a2b854 | 1674 | |
f3ed775e | 1675 | /* |
54d01ffb | 1676 | * Init tracing by creating trace directory and sending fds kernel consumer. |
f3ed775e | 1677 | */ |
54d01ffb | 1678 | static int init_kernel_tracing(struct ltt_kernel_session *session) |
f3ed775e | 1679 | { |
f40799e8 | 1680 | int ret = 0; |
8c0faa1d | 1681 | |
3bd1e081 | 1682 | if (session->consumer_fds_sent == 0) { |
d9800920 | 1683 | /* |
54d01ffb DG |
1684 | * Assign default kernel consumer socket if no consumer assigned to the |
1685 | * kernel session. At this point, it's NOT suppose to be 0 but this is | |
1686 | * an extra security check. | |
d9800920 DG |
1687 | */ |
1688 | if (session->consumer_fd == 0) { | |
3bd1e081 | 1689 | session->consumer_fd = kconsumer_data.cmd_sock; |
d9800920 DG |
1690 | } |
1691 | ||
2bdd86d4 | 1692 | ret = send_kconsumer_session_streams(&kconsumer_data, session); |
f3ed775e | 1693 | if (ret < 0) { |
f3ed775e DG |
1694 | ret = LTTCOMM_KERN_CONSUMER_FAIL; |
1695 | goto error; | |
1696 | } | |
1d4b027a | 1697 | |
3bd1e081 | 1698 | session->consumer_fds_sent = 1; |
f3ed775e | 1699 | } |
1d4b027a DG |
1700 | |
1701 | error: | |
1702 | return ret; | |
8c0faa1d DG |
1703 | } |
1704 | ||
0177d773 DG |
1705 | /* |
1706 | * Create an UST session and add it to the session ust list. | |
1707 | */ | |
44d3bd01 DG |
1708 | static int create_ust_session(struct ltt_session *session, |
1709 | struct lttng_domain *domain) | |
0177d773 | 1710 | { |
44d3bd01 | 1711 | int ret; |
48842b30 | 1712 | unsigned int uid; |
13384287 | 1713 | struct ltt_ust_session *lus = NULL; |
44d3bd01 DG |
1714 | |
1715 | switch (domain->type) { | |
48842b30 | 1716 | case LTTNG_DOMAIN_UST: |
44d3bd01 DG |
1717 | break; |
1718 | default: | |
13384287 | 1719 | ret = LTTCOMM_UNKNOWN_DOMAIN; |
44d3bd01 DG |
1720 | goto error; |
1721 | } | |
0177d773 DG |
1722 | |
1723 | DBG("Creating UST session"); | |
1724 | ||
48842b30 DG |
1725 | session_lock_list(); |
1726 | uid = session_list_ptr->count; | |
1727 | session_unlock_list(); | |
1728 | ||
1729 | lus = trace_ust_create_session(session->path, uid, domain); | |
0177d773 | 1730 | if (lus == NULL) { |
44d3bd01 | 1731 | ret = LTTCOMM_UST_SESS_FAIL; |
0177d773 DG |
1732 | goto error; |
1733 | } | |
1734 | ||
48842b30 | 1735 | ret = mkdir_recursive(lus->pathname, S_IRWXU | S_IRWXG, |
0177d773 DG |
1736 | geteuid(), allowed_group()); |
1737 | if (ret < 0) { | |
1738 | if (ret != -EEXIST) { | |
1739 | ERR("Trace directory creation error"); | |
44d3bd01 | 1740 | ret = LTTCOMM_UST_SESS_FAIL; |
0177d773 DG |
1741 | goto error; |
1742 | } | |
1743 | } | |
1744 | ||
f6a9efaa DG |
1745 | /* The domain type dictate different actions on session creation */ |
1746 | switch (domain->type) { | |
48842b30 DG |
1747 | case LTTNG_DOMAIN_UST: |
1748 | /* No ustctl for the global UST domain */ | |
1749 | break; | |
1750 | default: | |
36dc12cc | 1751 | ERR("Unknown UST domain on create session %d", domain->type); |
48842b30 | 1752 | goto error; |
0177d773 | 1753 | } |
f6a9efaa | 1754 | session->ust_session = lus; |
44d3bd01 DG |
1755 | |
1756 | return LTTCOMM_OK; | |
0177d773 DG |
1757 | |
1758 | error: | |
1759 | free(lus); | |
1760 | return ret; | |
1761 | } | |
1762 | ||
333f285e | 1763 | /* |
d063d709 | 1764 | * Create a kernel tracer session then create the default channel. |
333f285e | 1765 | */ |
f3ed775e | 1766 | static int create_kernel_session(struct ltt_session *session) |
333f285e | 1767 | { |
f3ed775e | 1768 | int ret; |
f3ed775e DG |
1769 | |
1770 | DBG("Creating kernel session"); | |
1771 | ||
1772 | ret = kernel_create_session(session, kernel_tracer_fd); | |
1773 | if (ret < 0) { | |
1774 | ret = LTTCOMM_KERN_SESS_FAIL; | |
1775 | goto error; | |
333f285e DG |
1776 | } |
1777 | ||
d9800920 | 1778 | /* Set kernel consumer socket fd */ |
3bd1e081 MD |
1779 | if (kconsumer_data.cmd_sock) { |
1780 | session->kernel_session->consumer_fd = kconsumer_data.cmd_sock; | |
d9800920 DG |
1781 | } |
1782 | ||
63053e7c DG |
1783 | ret = mkdir_recursive(session->kernel_session->trace_path, |
1784 | S_IRWXU | S_IRWXG, geteuid(), allowed_group()); | |
7a485870 | 1785 | if (ret < 0) { |
996b65c8 | 1786 | if (ret != -EEXIST) { |
7a485870 DG |
1787 | ERR("Trace directory creation error"); |
1788 | goto error; | |
1789 | } | |
1790 | } | |
1791 | ||
f3ed775e DG |
1792 | error: |
1793 | return ret; | |
333f285e DG |
1794 | } |
1795 | ||
6c9cc2ab DG |
1796 | /* |
1797 | * Using the session list, filled a lttng_session array to send back to the | |
1798 | * client for session listing. | |
1799 | * | |
1800 | * The session list lock MUST be acquired before calling this function. Use | |
54d01ffb | 1801 | * session_lock_list() and session_unlock_list(). |
6c9cc2ab DG |
1802 | */ |
1803 | static void list_lttng_sessions(struct lttng_session *sessions) | |
1804 | { | |
1805 | int i = 0; | |
1806 | struct ltt_session *session; | |
1807 | ||
1808 | DBG("Getting all available session"); | |
1809 | /* | |
1810 | * Iterate over session list and append data after the control struct in | |
1811 | * the buffer. | |
1812 | */ | |
1813 | cds_list_for_each_entry(session, &session_list_ptr->head, list) { | |
1814 | strncpy(sessions[i].path, session->path, PATH_MAX); | |
99497cd0 | 1815 | sessions[i].path[PATH_MAX - 1] = '\0'; |
6c9cc2ab | 1816 | strncpy(sessions[i].name, session->name, NAME_MAX); |
99497cd0 | 1817 | sessions[i].name[NAME_MAX - 1] = '\0'; |
464dd62d | 1818 | sessions[i].enabled = session->enabled; |
6c9cc2ab DG |
1819 | i++; |
1820 | } | |
1821 | } | |
1822 | ||
9f19cc17 DG |
1823 | /* |
1824 | * Fill lttng_channel array of all channels. | |
1825 | */ | |
b551a063 | 1826 | static void list_lttng_channels(int domain, struct ltt_session *session, |
9f19cc17 DG |
1827 | struct lttng_channel *channels) |
1828 | { | |
1829 | int i = 0; | |
1830 | struct ltt_kernel_channel *kchan; | |
1831 | ||
1832 | DBG("Listing channels for session %s", session->name); | |
1833 | ||
b551a063 DG |
1834 | switch (domain) { |
1835 | case LTTNG_DOMAIN_KERNEL: | |
1836 | /* Kernel channels */ | |
1837 | if (session->kernel_session != NULL) { | |
1838 | cds_list_for_each_entry(kchan, | |
1839 | &session->kernel_session->channel_list.head, list) { | |
1840 | /* Copy lttng_channel struct to array */ | |
1841 | memcpy(&channels[i], kchan->channel, sizeof(struct lttng_channel)); | |
1842 | channels[i].enabled = kchan->enabled; | |
1843 | i++; | |
1844 | } | |
1845 | } | |
1846 | break; | |
1847 | case LTTNG_DOMAIN_UST: | |
1848 | { | |
1849 | struct cds_lfht_iter iter; | |
1850 | struct ltt_ust_channel *uchan; | |
1851 | ||
1852 | cds_lfht_for_each_entry(session->ust_session->domain_global.channels, | |
1853 | &iter, uchan, node) { | |
1854 | strncpy(channels[i].name, uchan->name, LTTNG_SYMBOL_NAME_LEN); | |
1855 | channels[i].attr.overwrite = uchan->attr.overwrite; | |
1856 | channels[i].attr.subbuf_size = uchan->attr.subbuf_size; | |
1857 | channels[i].attr.num_subbuf = uchan->attr.num_subbuf; | |
1858 | channels[i].attr.switch_timer_interval = | |
1859 | uchan->attr.switch_timer_interval; | |
1860 | channels[i].attr.read_timer_interval = | |
1861 | uchan->attr.read_timer_interval; | |
1862 | channels[i].attr.output = uchan->attr.output; | |
1863 | } | |
1864 | break; | |
1865 | } | |
1866 | default: | |
1867 | break; | |
1868 | } | |
1869 | } | |
1870 | ||
1871 | /* | |
1872 | * Create a list of ust global domain events. | |
1873 | */ | |
1874 | static int list_lttng_ust_global_events(char *channel_name, | |
1875 | struct ltt_ust_domain_global *ust_global, struct lttng_event **events) | |
1876 | { | |
1877 | int i = 0, ret = 0; | |
1878 | unsigned int nb_event = 0; | |
1879 | struct cds_lfht_iter iter; | |
1880 | struct ltt_ust_channel *uchan; | |
1881 | struct ltt_ust_event *uevent; | |
1882 | struct lttng_event *tmp; | |
1883 | ||
1884 | DBG("Listing UST global events for channel %s", channel_name); | |
1885 | ||
1886 | rcu_read_lock(); | |
1887 | ||
1888 | /* Count events in all channels */ | |
1889 | cds_lfht_for_each_entry(ust_global->channels, &iter, uchan, node) { | |
1890 | nb_event += hashtable_get_count(uchan->events); | |
1891 | } | |
1892 | ||
1893 | if (nb_event == 0) { | |
1894 | ret = nb_event; | |
1895 | goto error; | |
1896 | } | |
1897 | ||
1898 | DBG3("Listing UST global %d events", nb_event); | |
1899 | ||
1900 | tmp = zmalloc(nb_event * sizeof(struct lttng_event)); | |
1901 | if (tmp == NULL) { | |
1902 | ret = -LTTCOMM_FATAL; | |
1903 | goto error; | |
1904 | } | |
1905 | ||
1906 | cds_lfht_for_each_entry(ust_global->channels, &iter, uchan, node) { | |
1907 | cds_lfht_for_each_entry(uchan->events, &iter, uevent, node) { | |
1908 | strncpy(tmp[i].name, uevent->attr.name, LTTNG_SYMBOL_NAME_LEN); | |
1909 | tmp[i].name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0'; | |
37357452 | 1910 | tmp[i].enabled = uevent->enabled; |
b551a063 DG |
1911 | switch (uevent->attr.instrumentation) { |
1912 | case LTTNG_UST_TRACEPOINT: | |
1913 | tmp[i].type = LTTNG_EVENT_TRACEPOINT; | |
1914 | break; | |
1915 | case LTTNG_UST_PROBE: | |
1916 | tmp[i].type = LTTNG_EVENT_PROBE; | |
1917 | break; | |
1918 | case LTTNG_UST_FUNCTION: | |
1919 | tmp[i].type = LTTNG_EVENT_FUNCTION; | |
1920 | break; | |
1921 | } | |
9f19cc17 DG |
1922 | i++; |
1923 | } | |
1924 | } | |
1925 | ||
b551a063 DG |
1926 | ret = nb_event; |
1927 | *events = tmp; | |
1928 | ||
1929 | error: | |
1930 | rcu_read_unlock(); | |
1931 | return ret; | |
9f19cc17 DG |
1932 | } |
1933 | ||
1934 | /* | |
b551a063 | 1935 | * Fill lttng_event array of all kernel events in the channel. |
9f19cc17 | 1936 | */ |
b551a063 DG |
1937 | static int list_lttng_kernel_events(char *channel_name, |
1938 | struct ltt_kernel_session *kernel_session, struct lttng_event **events) | |
9f19cc17 | 1939 | { |
b551a063 DG |
1940 | int i = 0, ret; |
1941 | unsigned int nb_event; | |
9f19cc17 | 1942 | struct ltt_kernel_event *event; |
b551a063 DG |
1943 | struct ltt_kernel_channel *kchan; |
1944 | ||
1945 | kchan = trace_kernel_get_channel_by_name(channel_name, kernel_session); | |
1946 | if (kchan == NULL) { | |
1947 | ret = LTTCOMM_KERN_CHAN_NOT_FOUND; | |
1948 | goto error; | |
1949 | } | |
1950 | ||
1951 | nb_event = kchan->event_count; | |
9f19cc17 DG |
1952 | |
1953 | DBG("Listing events for channel %s", kchan->channel->name); | |
1954 | ||
b551a063 DG |
1955 | if (nb_event == 0) { |
1956 | ret = nb_event; | |
1957 | goto error; | |
1958 | } | |
1959 | ||
1960 | *events = zmalloc(nb_event * sizeof(struct lttng_event)); | |
1961 | if (*events == NULL) { | |
1962 | ret = LTTCOMM_FATAL; | |
1963 | goto error; | |
1964 | } | |
1965 | ||
9f19cc17 DG |
1966 | /* Kernel channels */ |
1967 | cds_list_for_each_entry(event, &kchan->events_list.head , list) { | |
b551a063 DG |
1968 | strncpy((*events)[i].name, event->event->name, LTTNG_SYMBOL_NAME_LEN); |
1969 | (*events)[i].name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0'; | |
1970 | (*events)[i].enabled = event->enabled; | |
9f19cc17 DG |
1971 | switch (event->event->instrumentation) { |
1972 | case LTTNG_KERNEL_TRACEPOINT: | |
b551a063 | 1973 | (*events)[i].type = LTTNG_EVENT_TRACEPOINT; |
9f19cc17 DG |
1974 | break; |
1975 | case LTTNG_KERNEL_KPROBE: | |
1976 | case LTTNG_KERNEL_KRETPROBE: | |
b551a063 DG |
1977 | (*events)[i].type = LTTNG_EVENT_PROBE; |
1978 | memcpy(&(*events)[i].attr.probe, &event->event->u.kprobe, | |
9f19cc17 DG |
1979 | sizeof(struct lttng_kernel_kprobe)); |
1980 | break; | |
1981 | case LTTNG_KERNEL_FUNCTION: | |
b551a063 DG |
1982 | (*events)[i].type = LTTNG_EVENT_FUNCTION; |
1983 | memcpy(&((*events)[i].attr.ftrace), &event->event->u.ftrace, | |
9f19cc17 DG |
1984 | sizeof(struct lttng_kernel_function)); |
1985 | break; | |
0133c199 | 1986 | case LTTNG_KERNEL_NOOP: |
b551a063 | 1987 | (*events)[i].type = LTTNG_EVENT_NOOP; |
0133c199 | 1988 | break; |
a54bd42d | 1989 | case LTTNG_KERNEL_SYSCALL: |
b551a063 | 1990 | (*events)[i].type = LTTNG_EVENT_SYSCALL; |
0133c199 | 1991 | break; |
7a3d1328 MD |
1992 | case LTTNG_KERNEL_ALL: |
1993 | assert(0); | |
1994 | break; | |
9f19cc17 DG |
1995 | } |
1996 | i++; | |
1997 | } | |
b551a063 DG |
1998 | |
1999 | return nb_event; | |
2000 | ||
2001 | error: | |
2002 | return ret; | |
9f19cc17 DG |
2003 | } |
2004 | ||
fac6795d | 2005 | /* |
54d01ffb | 2006 | * Command LTTNG_DISABLE_CHANNEL processed by the client thread. |
fac6795d | 2007 | */ |
54d01ffb DG |
2008 | static int cmd_disable_channel(struct ltt_session *session, |
2009 | int domain, char *channel_name) | |
fac6795d | 2010 | { |
54d01ffb | 2011 | int ret; |
379473d2 | 2012 | |
54d01ffb DG |
2013 | switch (domain) { |
2014 | case LTTNG_DOMAIN_KERNEL: | |
2015 | ret = channel_kernel_disable(session->kernel_session, | |
2016 | channel_name); | |
2017 | if (ret != LTTCOMM_OK) { | |
333f285e DG |
2018 | goto error; |
2019 | } | |
54d01ffb DG |
2020 | |
2021 | kernel_wait_quiescent(kernel_tracer_fd); | |
d0254c7c | 2022 | break; |
44d3bd01 DG |
2023 | case LTTNG_DOMAIN_UST_PID: |
2024 | break; | |
d0254c7c | 2025 | default: |
44d3bd01 | 2026 | ret = LTTCOMM_UNKNOWN_DOMAIN; |
54d01ffb | 2027 | goto error; |
20fe2104 DG |
2028 | } |
2029 | ||
54d01ffb | 2030 | ret = LTTCOMM_OK; |
d65106b1 | 2031 | |
54d01ffb DG |
2032 | error: |
2033 | return ret; | |
2034 | } | |
2035 | ||
56fff090 DG |
2036 | /* |
2037 | * Copy channel from attributes and set it in the application channel list. | |
2038 | */ | |
f6a9efaa | 2039 | /* |
56fff090 DG |
2040 | static int copy_ust_channel_to_app(struct ltt_ust_session *usess, |
2041 | struct lttng_channel *attr, struct ust_app *app) | |
2042 | { | |
2043 | int ret; | |
2044 | struct ltt_ust_channel *uchan, *new_chan; | |
2045 | ||
f6a9efaa | 2046 | uchan = trace_ust_get_channel_by_key(usess->channels, attr->name); |
56fff090 DG |
2047 | if (uchan == NULL) { |
2048 | ret = LTTCOMM_FATAL; | |
2049 | goto error; | |
2050 | } | |
2051 | ||
2052 | new_chan = trace_ust_create_channel(attr, usess->path); | |
2053 | if (new_chan == NULL) { | |
2054 | PERROR("malloc ltt_ust_channel"); | |
2055 | ret = LTTCOMM_FATAL; | |
2056 | goto error; | |
2057 | } | |
2058 | ||
2059 | ret = channel_ust_copy(new_chan, uchan); | |
2060 | if (ret < 0) { | |
2061 | ret = LTTCOMM_FATAL; | |
2062 | goto error; | |
2063 | } | |
2064 | ||
56fff090 DG |
2065 | error: |
2066 | return ret; | |
2067 | } | |
f6a9efaa | 2068 | */ |
56fff090 | 2069 | |
54d01ffb DG |
2070 | /* |
2071 | * Command LTTNG_ENABLE_CHANNEL processed by the client thread. | |
2072 | */ | |
44d3bd01 DG |
2073 | static int cmd_enable_channel(struct ltt_session *session, |
2074 | struct lttng_domain *domain, struct lttng_channel *attr) | |
54d01ffb DG |
2075 | { |
2076 | int ret; | |
f6a9efaa DG |
2077 | struct ltt_ust_session *usess = session->ust_session; |
2078 | ||
5d56b5aa | 2079 | DBG("Enabling channel %s for session %s", attr->name, session->name); |
d65106b1 | 2080 | |
44d3bd01 DG |
2081 | switch (domain->type) { |
2082 | case LTTNG_DOMAIN_KERNEL: | |
2083 | { | |
2084 | struct ltt_kernel_channel *kchan; | |
54d01ffb | 2085 | |
44d3bd01 DG |
2086 | kchan = trace_kernel_get_channel_by_name(attr->name, |
2087 | session->kernel_session); | |
2088 | if (kchan == NULL) { | |
2089 | ret = channel_kernel_create(session->kernel_session, | |
2090 | attr, kernel_poll_pipe[1]); | |
2091 | } else { | |
2092 | ret = channel_kernel_enable(session->kernel_session, kchan); | |
2093 | } | |
2094 | ||
2095 | if (ret != LTTCOMM_OK) { | |
2096 | goto error; | |
2097 | } | |
2098 | ||
2099 | kernel_wait_quiescent(kernel_tracer_fd); | |
2100 | break; | |
2101 | } | |
f6a9efaa DG |
2102 | case LTTNG_DOMAIN_UST: |
2103 | { | |
2104 | struct ltt_ust_channel *uchan; | |
2105 | ||
48842b30 | 2106 | DBG2("Enabling channel for LTTNG_DOMAIN_UST"); |
f6a9efaa | 2107 | |
48842b30 | 2108 | /* Get channel in global UST domain HT */ |
f6a9efaa DG |
2109 | uchan = trace_ust_find_channel_by_name(usess->domain_global.channels, |
2110 | attr->name); | |
2111 | if (uchan == NULL) { | |
48842b30 | 2112 | uchan = trace_ust_create_channel(attr, usess->pathname); |
f6a9efaa DG |
2113 | if (uchan == NULL) { |
2114 | ret = LTTCOMM_UST_CHAN_FAIL; | |
2115 | goto error; | |
2116 | } | |
d5cd1f34 | 2117 | |
f6a9efaa DG |
2118 | rcu_read_lock(); |
2119 | hashtable_add_unique(usess->domain_global.channels, &uchan->node); | |
2120 | rcu_read_unlock(); | |
48842b30 | 2121 | DBG2("UST channel %s added to global domain HT", attr->name); |
f6a9efaa DG |
2122 | } else { |
2123 | ret = LTTCOMM_UST_CHAN_EXIST; | |
2124 | goto error; | |
2125 | } | |
2126 | ||
421cb601 | 2127 | /* Add channel to all registered applications */ |
5b4a0ec0 | 2128 | ret = ust_app_create_channel_all(usess, uchan); |
509cbaf8 | 2129 | if (ret != 0) { |
48842b30 DG |
2130 | goto error; |
2131 | } | |
f6a9efaa | 2132 | |
37357452 DG |
2133 | uchan->enabled = 1; |
2134 | ||
f6a9efaa DG |
2135 | break; |
2136 | } | |
44d3bd01 DG |
2137 | case LTTNG_DOMAIN_UST_PID: |
2138 | { | |
f6a9efaa | 2139 | /* |
56fff090 DG |
2140 | int sock; |
2141 | struct ltt_ust_channel *uchan; | |
44d3bd01 | 2142 | struct ltt_ust_session *usess; |
56fff090 | 2143 | struct ust_app *app; |
44d3bd01 DG |
2144 | |
2145 | usess = trace_ust_get_session_by_pid(&session->ust_session_list, | |
2146 | domain->attr.pid); | |
2147 | if (usess == NULL) { | |
2148 | ret = LTTCOMM_UST_CHAN_NOT_FOUND; | |
2149 | goto error; | |
2150 | } | |
2151 | ||
56fff090 | 2152 | app = ust_app_get_by_pid(domain->attr.pid); |
44d3bd01 DG |
2153 | if (app == NULL) { |
2154 | ret = LTTCOMM_APP_NOT_FOUND; | |
2155 | goto error; | |
2156 | } | |
56fff090 | 2157 | sock = app->sock; |
44d3bd01 DG |
2158 | |
2159 | uchan = trace_ust_get_channel_by_name(attr->name, usess); | |
2160 | if (uchan == NULL) { | |
56fff090 | 2161 | ret = channel_ust_create(usess, attr, sock); |
44d3bd01 | 2162 | } else { |
56fff090 | 2163 | ret = channel_ust_enable(usess, uchan, sock); |
44d3bd01 DG |
2164 | } |
2165 | ||
2166 | if (ret != LTTCOMM_OK) { | |
2167 | goto error; | |
2168 | } | |
2169 | ||
56fff090 DG |
2170 | ret = copy_ust_channel_to_app(usess, attr, app); |
2171 | if (ret != LTTCOMM_OK) { | |
44d3bd01 DG |
2172 | goto error; |
2173 | } | |
2174 | ||
44d3bd01 DG |
2175 | DBG("UST channel %s created for app sock %d with pid %d", |
2176 | attr->name, app->sock, domain->attr.pid); | |
f6a9efaa DG |
2177 | */ |
2178 | ret = LTTCOMM_NOT_IMPLEMENTED; | |
2179 | goto error; | |
44d3bd01 DG |
2180 | } |
2181 | default: | |
2182 | ret = LTTCOMM_UNKNOWN_DOMAIN; | |
2183 | goto error; | |
54d01ffb DG |
2184 | } |
2185 | ||
2186 | ret = LTTCOMM_OK; | |
2187 | ||
2188 | error: | |
2189 | return ret; | |
2190 | } | |
2191 | ||
2192 | /* | |
2193 | * Command LTTNG_DISABLE_EVENT processed by the client thread. | |
2194 | */ | |
2195 | static int cmd_disable_event(struct ltt_session *session, int domain, | |
2196 | char *channel_name, char *event_name) | |
2197 | { | |
2198 | int ret; | |
54d01ffb DG |
2199 | |
2200 | switch (domain) { | |
2201 | case LTTNG_DOMAIN_KERNEL: | |
2bdd86d4 MD |
2202 | { |
2203 | struct ltt_kernel_channel *kchan; | |
2204 | ||
54d01ffb DG |
2205 | kchan = trace_kernel_get_channel_by_name(channel_name, |
2206 | session->kernel_session); | |
2207 | if (kchan == NULL) { | |
2208 | ret = LTTCOMM_KERN_CHAN_NOT_FOUND; | |
2209 | goto error; | |
d65106b1 DG |
2210 | } |
2211 | ||
7a3d1328 | 2212 | ret = event_kernel_disable_tracepoint(session->kernel_session, kchan, event_name); |
54d01ffb DG |
2213 | if (ret != LTTCOMM_OK) { |
2214 | goto error; | |
2215 | } | |
2216 | ||
2217 | kernel_wait_quiescent(kernel_tracer_fd); | |
d65106b1 | 2218 | break; |
2bdd86d4 MD |
2219 | } |
2220 | case LTTNG_DOMAIN_UST: | |
2bdd86d4 MD |
2221 | case LTTNG_DOMAIN_UST_EXEC_NAME: |
2222 | case LTTNG_DOMAIN_UST_PID: | |
2223 | case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN: | |
54d01ffb | 2224 | default: |
2bdd86d4 | 2225 | /* TODO: Other UST domains */ |
54d01ffb DG |
2226 | ret = LTTCOMM_NOT_IMPLEMENTED; |
2227 | goto error; | |
d65106b1 | 2228 | } |
26cc6b4e | 2229 | |
54d01ffb DG |
2230 | ret = LTTCOMM_OK; |
2231 | ||
2232 | error: | |
2233 | return ret; | |
2234 | } | |
2235 | ||
2236 | /* | |
2237 | * Command LTTNG_DISABLE_ALL_EVENT processed by the client thread. | |
2238 | */ | |
2239 | static int cmd_disable_event_all(struct ltt_session *session, int domain, | |
2240 | char *channel_name) | |
2241 | { | |
2242 | int ret; | |
2243 | struct ltt_kernel_channel *kchan; | |
2244 | ||
2245 | switch (domain) { | |
2246 | case LTTNG_DOMAIN_KERNEL: | |
2247 | kchan = trace_kernel_get_channel_by_name(channel_name, | |
2248 | session->kernel_session); | |
2249 | if (kchan == NULL) { | |
2250 | ret = LTTCOMM_KERN_CHAN_NOT_FOUND; | |
2251 | goto error; | |
26cc6b4e DG |
2252 | } |
2253 | ||
54d01ffb DG |
2254 | ret = event_kernel_disable_all(session->kernel_session, kchan); |
2255 | if (ret != LTTCOMM_OK) { | |
0b97ec54 | 2256 | goto error; |
26cc6b4e DG |
2257 | } |
2258 | ||
54d01ffb | 2259 | kernel_wait_quiescent(kernel_tracer_fd); |
26cc6b4e | 2260 | break; |
54d01ffb DG |
2261 | default: |
2262 | /* TODO: Userspace tracing */ | |
2263 | ret = LTTCOMM_NOT_IMPLEMENTED; | |
2264 | goto error; | |
26cc6b4e | 2265 | } |
e953ef25 | 2266 | |
54d01ffb | 2267 | ret = LTTCOMM_OK; |
e953ef25 | 2268 | |
54d01ffb DG |
2269 | error: |
2270 | return ret; | |
2271 | } | |
f5177a38 | 2272 | |
54d01ffb DG |
2273 | /* |
2274 | * Command LTTNG_ADD_CONTEXT processed by the client thread. | |
2275 | */ | |
2276 | static int cmd_add_context(struct ltt_session *session, int domain, | |
2277 | char *channel_name, char *event_name, struct lttng_event_context *ctx) | |
2278 | { | |
2279 | int ret; | |
f5177a38 | 2280 | |
54d01ffb DG |
2281 | switch (domain) { |
2282 | case LTTNG_DOMAIN_KERNEL: | |
2283 | /* Add kernel context to kernel tracer */ | |
2284 | ret = context_kernel_add(session->kernel_session, ctx, | |
2285 | event_name, channel_name); | |
2286 | if (ret != LTTCOMM_OK) { | |
f5177a38 | 2287 | goto error; |
e953ef25 | 2288 | } |
2bdd86d4 MD |
2289 | break; |
2290 | case LTTNG_DOMAIN_UST: | |
2291 | { | |
48842b30 DG |
2292 | /* |
2293 | struct ltt_ust_session *usess; | |
e953ef25 | 2294 | |
48842b30 DG |
2295 | cds_list_for_each_entry(usess, &session->ust_session_list.head, list) { |
2296 | ret = context_ust_add(usess, ctx, | |
2297 | event_name, channel_name, domain); | |
2bdd86d4 MD |
2298 | if (ret != LTTCOMM_OK) { |
2299 | goto error; | |
2300 | } | |
2301 | } | |
e953ef25 | 2302 | break; |
48842b30 | 2303 | */ |
2bdd86d4 | 2304 | } |
54d01ffb | 2305 | default: |
2bdd86d4 | 2306 | /* TODO: UST other domains */ |
54d01ffb DG |
2307 | ret = LTTCOMM_NOT_IMPLEMENTED; |
2308 | goto error; | |
e953ef25 | 2309 | } |
950131af | 2310 | |
54d01ffb | 2311 | ret = LTTCOMM_OK; |
950131af | 2312 | |
54d01ffb DG |
2313 | error: |
2314 | return ret; | |
2315 | } | |
2316 | ||
2317 | /* | |
2318 | * Command LTTNG_ENABLE_EVENT processed by the client thread. | |
2319 | */ | |
2320 | static int cmd_enable_event(struct ltt_session *session, int domain, | |
2321 | char *channel_name, struct lttng_event *event) | |
2322 | { | |
2323 | int ret; | |
f6cd6b0f | 2324 | struct lttng_channel *attr; |
48842b30 | 2325 | struct ltt_ust_session *usess = session->ust_session; |
54d01ffb DG |
2326 | |
2327 | switch (domain) { | |
2328 | case LTTNG_DOMAIN_KERNEL: | |
2bdd86d4 MD |
2329 | { |
2330 | struct ltt_kernel_channel *kchan; | |
2331 | ||
54d01ffb DG |
2332 | kchan = trace_kernel_get_channel_by_name(channel_name, |
2333 | session->kernel_session); | |
2334 | if (kchan == NULL) { | |
f6cd6b0f DG |
2335 | attr = channel_new_default_attr(domain); |
2336 | if (attr == NULL) { | |
2337 | ret = LTTCOMM_FATAL; | |
2338 | goto error; | |
2339 | } | |
2340 | snprintf(attr->name, NAME_MAX, "%s", channel_name); | |
2341 | ||
54d01ffb | 2342 | /* This call will notify the kernel thread */ |
44d3bd01 | 2343 | ret = channel_kernel_create(session->kernel_session, |
f6cd6b0f | 2344 | attr, kernel_poll_pipe[1]); |
54d01ffb | 2345 | if (ret != LTTCOMM_OK) { |
f5177a38 DG |
2346 | goto error; |
2347 | } | |
54d01ffb | 2348 | } |
950131af | 2349 | |
54d01ffb DG |
2350 | /* Get the newly created kernel channel pointer */ |
2351 | kchan = trace_kernel_get_channel_by_name(channel_name, | |
2352 | session->kernel_session); | |
2353 | if (kchan == NULL) { | |
2354 | /* This sould not happen... */ | |
2355 | ret = LTTCOMM_FATAL; | |
2356 | goto error; | |
2357 | } | |
f5177a38 | 2358 | |
48842b30 DG |
2359 | ret = event_kernel_enable_tracepoint(session->kernel_session, kchan, |
2360 | event); | |
54d01ffb | 2361 | if (ret != LTTCOMM_OK) { |
f5177a38 | 2362 | goto error; |
950131af DG |
2363 | } |
2364 | ||
54d01ffb | 2365 | kernel_wait_quiescent(kernel_tracer_fd); |
950131af | 2366 | break; |
2bdd86d4 MD |
2367 | } |
2368 | case LTTNG_DOMAIN_UST: | |
2369 | { | |
48842b30 DG |
2370 | struct ltt_ust_channel *uchan; |
2371 | struct ltt_ust_event *uevent; | |
2bdd86d4 | 2372 | |
48842b30 DG |
2373 | uchan = trace_ust_find_channel_by_name(usess->domain_global.channels, |
2374 | channel_name); | |
2375 | if (uchan == NULL) { | |
2376 | /* TODO: Create default channel */ | |
2377 | ret = LTTCOMM_UST_CHAN_NOT_FOUND; | |
2378 | goto error; | |
2379 | } | |
2bdd86d4 | 2380 | |
48842b30 DG |
2381 | uevent = trace_ust_find_event_by_name(uchan->events, event->name); |
2382 | if (uevent == NULL) { | |
2383 | uevent = trace_ust_create_event(event); | |
2384 | if (uevent == NULL) { | |
2bdd86d4 MD |
2385 | ret = LTTCOMM_FATAL; |
2386 | goto error; | |
2387 | } | |
d5cd1f34 | 2388 | |
48842b30 | 2389 | } |
2bdd86d4 | 2390 | |
5b4a0ec0 | 2391 | ret = ust_app_create_event_all(usess, uchan, uevent); |
48842b30 DG |
2392 | if (ret < 0) { |
2393 | ret = LTTCOMM_UST_ENABLE_FAIL; | |
2394 | goto error; | |
2bdd86d4 | 2395 | } |
487cf67c | 2396 | |
d5cd1f34 | 2397 | /* Add ltt ust event to channel */ |
487cf67c DG |
2398 | rcu_read_lock(); |
2399 | hashtable_add_unique(uchan->events, &uevent->node); | |
2400 | rcu_read_unlock(); | |
d5cd1f34 | 2401 | |
37357452 DG |
2402 | uevent->enabled = 1; |
2403 | ||
d5cd1f34 DG |
2404 | DBG3("UST ltt event %s added to channel %s", uevent->attr.name, |
2405 | uchan->name); | |
2bdd86d4 MD |
2406 | break; |
2407 | } | |
2408 | case LTTNG_DOMAIN_UST_EXEC_NAME: | |
2409 | case LTTNG_DOMAIN_UST_PID: | |
2410 | case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN: | |
54d01ffb | 2411 | default: |
54d01ffb DG |
2412 | ret = LTTCOMM_NOT_IMPLEMENTED; |
2413 | goto error; | |
950131af | 2414 | } |
d36b8583 | 2415 | |
54d01ffb | 2416 | ret = LTTCOMM_OK; |
d36b8583 | 2417 | |
54d01ffb DG |
2418 | error: |
2419 | return ret; | |
2420 | } | |
7d29a247 | 2421 | |
54d01ffb DG |
2422 | /* |
2423 | * Command LTTNG_ENABLE_ALL_EVENT processed by the client thread. | |
2424 | */ | |
2425 | static int cmd_enable_event_all(struct ltt_session *session, int domain, | |
8c9ae521 | 2426 | char *channel_name, int event_type) |
54d01ffb DG |
2427 | { |
2428 | int ret; | |
2429 | struct ltt_kernel_channel *kchan; | |
7d29a247 | 2430 | |
54d01ffb DG |
2431 | switch (domain) { |
2432 | case LTTNG_DOMAIN_KERNEL: | |
2433 | kchan = trace_kernel_get_channel_by_name(channel_name, | |
2434 | session->kernel_session); | |
2435 | if (kchan == NULL) { | |
2436 | /* This call will notify the kernel thread */ | |
44d3bd01 DG |
2437 | ret = channel_kernel_create(session->kernel_session, NULL, |
2438 | kernel_poll_pipe[1]); | |
54d01ffb DG |
2439 | if (ret != LTTCOMM_OK) { |
2440 | goto error; | |
d36b8583 | 2441 | } |
54d01ffb | 2442 | } |
0d0c377a | 2443 | |
54d01ffb DG |
2444 | /* Get the newly created kernel channel pointer */ |
2445 | kchan = trace_kernel_get_channel_by_name(channel_name, | |
2446 | session->kernel_session); | |
2447 | if (kchan == NULL) { | |
2448 | /* This sould not happen... */ | |
2449 | ret = LTTCOMM_FATAL; | |
2450 | goto error; | |
2451 | } | |
0fdd1e2c | 2452 | |
7a3d1328 MD |
2453 | switch (event_type) { |
2454 | case LTTNG_KERNEL_SYSCALL: | |
2455 | ret = event_kernel_enable_all_syscalls(session->kernel_session, | |
8c9ae521 | 2456 | kchan, kernel_tracer_fd); |
7a3d1328 MD |
2457 | break; |
2458 | case LTTNG_KERNEL_TRACEPOINT: | |
8c9ae521 | 2459 | /* |
7a3d1328 MD |
2460 | * This call enables all LTTNG_KERNEL_TRACEPOINTS and |
2461 | * events already registered to the channel. | |
8c9ae521 | 2462 | */ |
7a3d1328 MD |
2463 | ret = event_kernel_enable_all_tracepoints(session->kernel_session, |
2464 | kchan, kernel_tracer_fd); | |
2465 | break; | |
2466 | case LTTNG_KERNEL_ALL: | |
2467 | /* Enable syscalls and tracepoints */ | |
8c9ae521 DG |
2468 | ret = event_kernel_enable_all(session->kernel_session, |
2469 | kchan, kernel_tracer_fd); | |
7a3d1328 MD |
2470 | break; |
2471 | default: | |
2472 | ret = LTTCOMM_KERN_ENABLE_FAIL; | |
2473 | goto error; | |
8c9ae521 | 2474 | } |
54d01ffb | 2475 | if (ret != LTTCOMM_OK) { |
0d0c377a | 2476 | goto error; |
d36b8583 DG |
2477 | } |
2478 | ||
54d01ffb | 2479 | kernel_wait_quiescent(kernel_tracer_fd); |
d36b8583 | 2480 | break; |
54d01ffb DG |
2481 | default: |
2482 | /* TODO: Userspace tracing */ | |
2483 | ret = LTTCOMM_NOT_IMPLEMENTED; | |
2484 | goto error; | |
d36b8583 | 2485 | } |
f3ed775e | 2486 | |
54d01ffb DG |
2487 | ret = LTTCOMM_OK; |
2488 | ||
2489 | error: | |
2490 | return ret; | |
2491 | } | |
2492 | ||
2493 | /* | |
2494 | * Command LTTNG_LIST_TRACEPOINTS processed by the client thread. | |
2495 | */ | |
2496 | static ssize_t cmd_list_tracepoints(int domain, struct lttng_event **events) | |
2497 | { | |
2498 | int ret; | |
2499 | ssize_t nb_events = 0; | |
2500 | ||
2501 | switch (domain) { | |
2502 | case LTTNG_DOMAIN_KERNEL: | |
2503 | nb_events = kernel_list_events(kernel_tracer_fd, events); | |
2504 | if (nb_events < 0) { | |
2505 | ret = LTTCOMM_KERN_LIST_FAIL; | |
2506 | goto error; | |
894be886 | 2507 | } |
54d01ffb | 2508 | break; |
b551a063 DG |
2509 | case LTTNG_DOMAIN_UST: |
2510 | nb_events = ust_app_list_events(events); | |
2511 | if (nb_events < 0) { | |
2512 | ret = LTTCOMM_UST_LIST_FAIL; | |
2513 | goto error; | |
2514 | } | |
2515 | break; | |
54d01ffb | 2516 | default: |
54d01ffb DG |
2517 | ret = LTTCOMM_NOT_IMPLEMENTED; |
2518 | goto error; | |
2519 | } | |
894be886 | 2520 | |
54d01ffb | 2521 | return nb_events; |
7d29a247 | 2522 | |
54d01ffb DG |
2523 | error: |
2524 | /* Return negative value to differentiate return code */ | |
2525 | return -ret; | |
2526 | } | |
b389abbe | 2527 | |
54d01ffb DG |
2528 | /* |
2529 | * Command LTTNG_START_TRACE processed by the client thread. | |
2530 | */ | |
2531 | static int cmd_start_trace(struct ltt_session *session) | |
2532 | { | |
2533 | int ret; | |
54d01ffb | 2534 | struct ltt_kernel_session *ksession; |
b9d9b220 | 2535 | struct ltt_ust_session *usess; |
b389abbe | 2536 | |
54d01ffb DG |
2537 | /* Short cut */ |
2538 | ksession = session->kernel_session; | |
b9d9b220 | 2539 | usess = session->ust_session; |
5eb91c98 | 2540 | |
464dd62d MD |
2541 | if (session->enabled) |
2542 | return LTTCOMM_UST_START_FAIL; | |
2543 | session->enabled = 1; | |
2544 | ||
54d01ffb DG |
2545 | /* Kernel tracing */ |
2546 | if (ksession != NULL) { | |
2bdd86d4 MD |
2547 | struct ltt_kernel_channel *kchan; |
2548 | ||
54d01ffb DG |
2549 | /* Open kernel metadata */ |
2550 | if (ksession->metadata == NULL) { | |
2551 | ret = kernel_open_metadata(ksession, ksession->trace_path); | |
2552 | if (ret < 0) { | |
2553 | ret = LTTCOMM_KERN_META_FAIL; | |
2554 | goto error; | |
b389abbe | 2555 | } |
54d01ffb | 2556 | } |
7d29a247 | 2557 | |
54d01ffb DG |
2558 | /* Open kernel metadata stream */ |
2559 | if (ksession->metadata_stream_fd == 0) { | |
2560 | ret = kernel_open_metadata_stream(ksession); | |
2561 | if (ret < 0) { | |
2562 | ERR("Kernel create metadata stream failed"); | |
2563 | ret = LTTCOMM_KERN_STREAM_FAIL; | |
2564 | goto error; | |
2565 | } | |
2566 | } | |
2567 | ||
2568 | /* For each channel */ | |
2569 | cds_list_for_each_entry(kchan, &ksession->channel_list.head, list) { | |
2570 | if (kchan->stream_count == 0) { | |
2571 | ret = kernel_open_channel_stream(kchan); | |
2572 | if (ret < 0) { | |
2573 | ret = LTTCOMM_KERN_STREAM_FAIL; | |
7d29a247 DG |
2574 | goto error; |
2575 | } | |
54d01ffb DG |
2576 | /* Update the stream global counter */ |
2577 | ksession->stream_count_global += ret; | |
7d29a247 | 2578 | } |
54d01ffb DG |
2579 | } |
2580 | ||
2581 | /* Setup kernel consumer socket and send fds to it */ | |
2582 | ret = init_kernel_tracing(ksession); | |
2583 | if (ret < 0) { | |
2584 | ret = LTTCOMM_KERN_START_FAIL; | |
2585 | goto error; | |
2586 | } | |
2587 | ||
2588 | /* This start the kernel tracing */ | |
2589 | ret = kernel_start_session(ksession); | |
2590 | if (ret < 0) { | |
2591 | ret = LTTCOMM_KERN_START_FAIL; | |
2592 | goto error; | |
2593 | } | |
2594 | ||
2595 | /* Quiescent wait after starting trace */ | |
2596 | kernel_wait_quiescent(kernel_tracer_fd); | |
2597 | } | |
2598 | ||
36dc12cc | 2599 | /* Flag session that trace should start automatically */ |
b9d9b220 DG |
2600 | if (usess) { |
2601 | usess->start_trace = 1; | |
36dc12cc | 2602 | |
b9d9b220 DG |
2603 | ret = ust_app_start_trace_all(usess); |
2604 | if (ret < 0) { | |
2605 | ret = LTTCOMM_UST_START_FAIL; | |
2606 | goto error; | |
2607 | } | |
2bdd86d4 | 2608 | } |
54d01ffb DG |
2609 | |
2610 | ret = LTTCOMM_OK; | |
2611 | ||
2612 | error: | |
2613 | return ret; | |
2614 | } | |
2615 | ||
2616 | /* | |
2617 | * Command LTTNG_STOP_TRACE processed by the client thread. | |
2618 | */ | |
2619 | static int cmd_stop_trace(struct ltt_session *session) | |
2620 | { | |
2621 | int ret; | |
2622 | struct ltt_kernel_channel *kchan; | |
2623 | struct ltt_kernel_session *ksession; | |
8be98f9a | 2624 | struct ltt_ust_session *usess; |
54d01ffb DG |
2625 | |
2626 | /* Short cut */ | |
2627 | ksession = session->kernel_session; | |
8be98f9a | 2628 | usess = session->ust_session; |
54d01ffb | 2629 | |
464dd62d MD |
2630 | if (!session->enabled) |
2631 | return LTTCOMM_UST_START_FAIL; | |
2632 | session->enabled = 0; | |
2633 | ||
54d01ffb DG |
2634 | /* Kernel tracer */ |
2635 | if (ksession != NULL) { | |
2636 | DBG("Stop kernel tracing"); | |
2637 | ||
2638 | /* Flush all buffers before stopping */ | |
2639 | ret = kernel_metadata_flush_buffer(ksession->metadata_stream_fd); | |
2640 | if (ret < 0) { | |
2641 | ERR("Kernel metadata flush failed"); | |
2642 | } | |
f34daff7 | 2643 | |
54d01ffb DG |
2644 | cds_list_for_each_entry(kchan, &ksession->channel_list.head, list) { |
2645 | ret = kernel_flush_buffer(kchan); | |
0d0c377a | 2646 | if (ret < 0) { |
54d01ffb | 2647 | ERR("Kernel flush buffer error"); |
7d29a247 | 2648 | } |
54d01ffb | 2649 | } |
19e70852 | 2650 | |
54d01ffb DG |
2651 | ret = kernel_stop_session(ksession); |
2652 | if (ret < 0) { | |
2653 | ret = LTTCOMM_KERN_STOP_FAIL; | |
19e70852 | 2654 | goto error; |
f3ed775e | 2655 | } |
54d01ffb DG |
2656 | |
2657 | kernel_wait_quiescent(kernel_tracer_fd); | |
894be886 | 2658 | } |
54d01ffb | 2659 | |
8be98f9a MD |
2660 | /* Flag session that trace should start automatically */ |
2661 | if (usess) { | |
2662 | usess->start_trace = 0; | |
2bdd86d4 | 2663 | |
8be98f9a | 2664 | ret = ust_app_stop_trace_all(usess); |
2bdd86d4 | 2665 | if (ret < 0) { |
8be98f9a | 2666 | ret = LTTCOMM_UST_START_FAIL; |
2bdd86d4 MD |
2667 | goto error; |
2668 | } | |
2bdd86d4 | 2669 | } |
54d01ffb DG |
2670 | |
2671 | ret = LTTCOMM_OK; | |
2672 | ||
2673 | error: | |
2674 | return ret; | |
2675 | } | |
2676 | ||
2677 | /* | |
2678 | * Command LTTNG_CREATE_SESSION processed by the client thread. | |
2679 | */ | |
2680 | static int cmd_create_session(char *name, char *path) | |
2681 | { | |
2682 | int ret; | |
2683 | ||
2684 | ret = session_create(name, path); | |
2685 | if (ret != LTTCOMM_OK) { | |
2686 | goto error; | |
2687 | } | |
2688 | ||
2689 | ret = LTTCOMM_OK; | |
2690 | ||
2691 | error: | |
2692 | return ret; | |
2693 | } | |
2694 | ||
2695 | /* | |
2696 | * Command LTTNG_DESTROY_SESSION processed by the client thread. | |
2697 | */ | |
2698 | static int cmd_destroy_session(struct ltt_session *session, char *name) | |
2699 | { | |
2700 | int ret; | |
2701 | ||
2702 | /* Clean kernel session teardown */ | |
2703 | teardown_kernel_session(session); | |
84cd17c6 MD |
2704 | /* UST session teardown */ |
2705 | teardown_ust_session(session); | |
54d01ffb DG |
2706 | |
2707 | /* | |
2708 | * Must notify the kernel thread here to update it's poll setin order | |
2709 | * to remove the channel(s)' fd just destroyed. | |
2710 | */ | |
2711 | ret = notify_thread_pipe(kernel_poll_pipe[1]); | |
2712 | if (ret < 0) { | |
2713 | perror("write kernel poll pipe"); | |
2714 | } | |
2715 | ||
271933a4 | 2716 | ret = session_destroy(session); |
54d01ffb DG |
2717 | |
2718 | return ret; | |
2719 | } | |
2720 | ||
2721 | /* | |
2722 | * Command LTTNG_CALIBRATE processed by the client thread. | |
2723 | */ | |
2724 | static int cmd_calibrate(int domain, struct lttng_calibrate *calibrate) | |
2725 | { | |
2726 | int ret; | |
2727 | ||
2728 | switch (domain) { | |
2729 | case LTTNG_DOMAIN_KERNEL: | |
33a2b854 | 2730 | { |
54d01ffb | 2731 | struct lttng_kernel_calibrate kcalibrate; |
33a2b854 | 2732 | |
54d01ffb DG |
2733 | kcalibrate.type = calibrate->type; |
2734 | ret = kernel_calibrate(kernel_tracer_fd, &kcalibrate); | |
33a2b854 | 2735 | if (ret < 0) { |
54d01ffb DG |
2736 | ret = LTTCOMM_KERN_ENABLE_FAIL; |
2737 | goto error; | |
33a2b854 | 2738 | } |
54d01ffb DG |
2739 | break; |
2740 | } | |
2741 | default: | |
2742 | /* TODO: Userspace tracing */ | |
2743 | ret = LTTCOMM_NOT_IMPLEMENTED; | |
2744 | goto error; | |
2745 | } | |
33a2b854 | 2746 | |
54d01ffb | 2747 | ret = LTTCOMM_OK; |
33a2b854 | 2748 | |
54d01ffb DG |
2749 | error: |
2750 | return ret; | |
2751 | } | |
7d29a247 | 2752 | |
54d01ffb DG |
2753 | /* |
2754 | * Command LTTNG_REGISTER_CONSUMER processed by the client thread. | |
2755 | */ | |
2756 | static int cmd_register_consumer(struct ltt_session *session, int domain, | |
2757 | char *sock_path) | |
2758 | { | |
2759 | int ret, sock; | |
b389abbe | 2760 | |
54d01ffb DG |
2761 | switch (domain) { |
2762 | case LTTNG_DOMAIN_KERNEL: | |
2763 | /* Can't register a consumer if there is already one */ | |
2764 | if (session->kernel_session->consumer_fd != 0) { | |
2765 | ret = LTTCOMM_KERN_CONSUMER_FAIL; | |
2766 | goto error; | |
2767 | } | |
2768 | ||
2769 | sock = lttcomm_connect_unix_sock(sock_path); | |
2770 | if (sock < 0) { | |
2771 | ret = LTTCOMM_CONNECT_FAIL; | |
2772 | goto error; | |
2773 | } | |
2774 | ||
2775 | session->kernel_session->consumer_fd = sock; | |
2776 | break; | |
2777 | default: | |
2778 | /* TODO: Userspace tracing */ | |
2779 | ret = LTTCOMM_NOT_IMPLEMENTED; | |
2780 | goto error; | |
2781 | } | |
2782 | ||
2783 | ret = LTTCOMM_OK; | |
2784 | ||
2785 | error: | |
2786 | return ret; | |
2787 | } | |
2788 | ||
2789 | /* | |
2790 | * Command LTTNG_LIST_DOMAINS processed by the client thread. | |
2791 | */ | |
2792 | static ssize_t cmd_list_domains(struct ltt_session *session, | |
2793 | struct lttng_domain **domains) | |
2794 | { | |
b551a063 | 2795 | int ret, index = 0; |
54d01ffb DG |
2796 | ssize_t nb_dom = 0; |
2797 | ||
2798 | if (session->kernel_session != NULL) { | |
b551a063 | 2799 | DBG3("Listing domains found kernel domain"); |
54d01ffb DG |
2800 | nb_dom++; |
2801 | } | |
2802 | ||
b551a063 DG |
2803 | if (session->ust_session != NULL) { |
2804 | DBG3("Listing domains found UST global domain"); | |
2805 | nb_dom++; | |
2806 | } | |
54d01ffb | 2807 | |
b551a063 | 2808 | *domains = zmalloc(nb_dom * sizeof(struct lttng_domain)); |
54d01ffb DG |
2809 | if (*domains == NULL) { |
2810 | ret = -LTTCOMM_FATAL; | |
2811 | goto error; | |
2812 | } | |
2813 | ||
b551a063 DG |
2814 | if (session->kernel_session != NULL) { |
2815 | (*domains)[index].type = LTTNG_DOMAIN_KERNEL; | |
2816 | index++; | |
2817 | } | |
2818 | ||
2819 | if (session->ust_session != NULL) { | |
2820 | (*domains)[index].type = LTTNG_DOMAIN_UST; | |
2821 | index++; | |
2822 | } | |
54d01ffb | 2823 | |
54d01ffb DG |
2824 | return nb_dom; |
2825 | ||
2826 | error: | |
2827 | return ret; | |
2828 | } | |
2829 | ||
2830 | /* | |
2831 | * Command LTTNG_LIST_CHANNELS processed by the client thread. | |
2832 | */ | |
b551a063 | 2833 | static ssize_t cmd_list_channels(int domain, struct ltt_session *session, |
54d01ffb DG |
2834 | struct lttng_channel **channels) |
2835 | { | |
2836 | int ret; | |
2837 | ssize_t nb_chan = 0; | |
2838 | ||
b551a063 DG |
2839 | switch (domain) { |
2840 | case LTTNG_DOMAIN_KERNEL: | |
2841 | if (session->kernel_session != NULL) { | |
2842 | nb_chan = session->kernel_session->channel_count; | |
2843 | } | |
0df502fd | 2844 | DBG3("Number of kernel channels %zd", nb_chan); |
b551a063 DG |
2845 | break; |
2846 | case LTTNG_DOMAIN_UST: | |
2847 | if (session->ust_session != NULL) { | |
2848 | nb_chan = hashtable_get_count( | |
2849 | session->ust_session->domain_global.channels); | |
2850 | } | |
0df502fd | 2851 | DBG3("Number of UST global channels %zd", nb_chan); |
b551a063 DG |
2852 | break; |
2853 | default: | |
2854 | *channels = NULL; | |
2855 | ret = -LTTCOMM_NOT_IMPLEMENTED; | |
54d01ffb DG |
2856 | goto error; |
2857 | } | |
2858 | ||
b551a063 DG |
2859 | if (nb_chan > 0) { |
2860 | *channels = zmalloc(nb_chan * sizeof(struct lttng_channel)); | |
2861 | if (*channels == NULL) { | |
2862 | ret = -LTTCOMM_FATAL; | |
2863 | goto error; | |
2864 | } | |
54d01ffb | 2865 | |
b551a063 DG |
2866 | list_lttng_channels(domain, session, *channels); |
2867 | } else { | |
2868 | *channels = NULL; | |
2869 | } | |
2bdd86d4 | 2870 | |
54d01ffb DG |
2871 | return nb_chan; |
2872 | ||
2873 | error: | |
2874 | return ret; | |
2875 | } | |
2876 | ||
2877 | /* | |
2878 | * Command LTTNG_LIST_EVENTS processed by the client thread. | |
2879 | */ | |
b551a063 | 2880 | static ssize_t cmd_list_events(int domain, struct ltt_session *session, |
54d01ffb DG |
2881 | char *channel_name, struct lttng_event **events) |
2882 | { | |
b551a063 | 2883 | int ret = 0; |
54d01ffb | 2884 | ssize_t nb_event = 0; |
54d01ffb | 2885 | |
b551a063 DG |
2886 | switch (domain) { |
2887 | case LTTNG_DOMAIN_KERNEL: | |
2888 | if (session->kernel_session != NULL) { | |
2889 | nb_event = list_lttng_kernel_events(channel_name, | |
2890 | session->kernel_session, events); | |
54d01ffb | 2891 | } |
b551a063 DG |
2892 | break; |
2893 | case LTTNG_DOMAIN_UST: | |
2894 | { | |
2895 | if (session->ust_session != NULL) { | |
2896 | nb_event = list_lttng_ust_global_events(channel_name, | |
2897 | &session->ust_session->domain_global, events); | |
2898 | } | |
2899 | break; | |
54d01ffb | 2900 | } |
b551a063 DG |
2901 | default: |
2902 | ret = -LTTCOMM_NOT_IMPLEMENTED; | |
54d01ffb DG |
2903 | goto error; |
2904 | } | |
2905 | ||
b551a063 | 2906 | ret = nb_event; |
54d01ffb DG |
2907 | |
2908 | error: | |
2909 | return ret; | |
2910 | } | |
2911 | ||
2912 | /* | |
2913 | * Process the command requested by the lttng client within the command | |
2914 | * context structure. This function make sure that the return structure (llm) | |
2915 | * is set and ready for transmission before returning. | |
2916 | * | |
2917 | * Return any error encountered or 0 for success. | |
2918 | */ | |
2919 | static int process_client_msg(struct command_ctx *cmd_ctx) | |
2920 | { | |
2921 | int ret = LTTCOMM_OK; | |
44d3bd01 | 2922 | int need_tracing_session = 1; |
54d01ffb DG |
2923 | |
2924 | DBG("Processing client command %d", cmd_ctx->lsm->cmd_type); | |
2925 | ||
2926 | /* | |
2927 | * Check for command that don't needs to allocate a returned payload. We do | |
44d3bd01 | 2928 | * this here so we don't have to make the call for no payload at each |
54d01ffb DG |
2929 | * command. |
2930 | */ | |
2931 | switch(cmd_ctx->lsm->cmd_type) { | |
2932 | case LTTNG_LIST_SESSIONS: | |
2933 | case LTTNG_LIST_TRACEPOINTS: | |
2934 | case LTTNG_LIST_DOMAINS: | |
2935 | case LTTNG_LIST_CHANNELS: | |
2936 | case LTTNG_LIST_EVENTS: | |
2937 | break; | |
2938 | default: | |
2939 | /* Setup lttng message with no payload */ | |
2940 | ret = setup_lttng_msg(cmd_ctx, 0); | |
2941 | if (ret < 0) { | |
2942 | /* This label does not try to unlock the session */ | |
2943 | goto init_setup_error; | |
2944 | } | |
2945 | } | |
2946 | ||
2947 | /* Commands that DO NOT need a session. */ | |
2948 | switch (cmd_ctx->lsm->cmd_type) { | |
2949 | case LTTNG_CALIBRATE: | |
2950 | case LTTNG_CREATE_SESSION: | |
2951 | case LTTNG_LIST_SESSIONS: | |
2952 | case LTTNG_LIST_TRACEPOINTS: | |
44d3bd01 | 2953 | need_tracing_session = 0; |
54d01ffb DG |
2954 | break; |
2955 | default: | |
2956 | DBG("Getting session %s by name", cmd_ctx->lsm->session.name); | |
74babd95 | 2957 | session_lock_list(); |
54d01ffb | 2958 | cmd_ctx->session = session_find_by_name(cmd_ctx->lsm->session.name); |
74babd95 | 2959 | session_unlock_list(); |
54d01ffb DG |
2960 | if (cmd_ctx->session == NULL) { |
2961 | if (cmd_ctx->lsm->session.name != NULL) { | |
2962 | ret = LTTCOMM_SESS_NOT_FOUND; | |
2963 | } else { | |
2964 | /* If no session name specified */ | |
2965 | ret = LTTCOMM_SELECT_SESS; | |
2966 | } | |
2967 | goto error; | |
2968 | } else { | |
2969 | /* Acquire lock for the session */ | |
2970 | session_lock(cmd_ctx->session); | |
2971 | } | |
2972 | break; | |
2973 | } | |
b389abbe | 2974 | |
54d01ffb DG |
2975 | /* |
2976 | * Check domain type for specific "pre-action". | |
2977 | */ | |
2978 | switch (cmd_ctx->lsm->domain.type) { | |
2979 | case LTTNG_DOMAIN_KERNEL: | |
2980 | /* Kernel tracer check */ | |
2981 | if (kernel_tracer_fd == 0) { | |
2982 | /* Basically, load kernel tracer modules */ | |
2983 | init_kernel_tracer(); | |
2984 | if (kernel_tracer_fd == 0) { | |
2985 | ret = LTTCOMM_KERN_NA; | |
2986 | goto error; | |
2987 | } | |
2988 | } | |
5eb91c98 | 2989 | |
54d01ffb | 2990 | /* Need a session for kernel command */ |
44d3bd01 | 2991 | if (need_tracing_session) { |
54d01ffb DG |
2992 | if (cmd_ctx->session->kernel_session == NULL) { |
2993 | ret = create_kernel_session(cmd_ctx->session); | |
5eb91c98 | 2994 | if (ret < 0) { |
54d01ffb | 2995 | ret = LTTCOMM_KERN_SESS_FAIL; |
5eb91c98 DG |
2996 | goto error; |
2997 | } | |
b389abbe | 2998 | } |
7d29a247 | 2999 | |
54d01ffb | 3000 | /* Start the kernel consumer daemon */ |
3bd1e081 MD |
3001 | pthread_mutex_lock(&kconsumer_data.pid_mutex); |
3002 | if (kconsumer_data.pid == 0 && | |
54d01ffb | 3003 | cmd_ctx->lsm->cmd_type != LTTNG_REGISTER_CONSUMER) { |
3bd1e081 MD |
3004 | pthread_mutex_unlock(&kconsumer_data.pid_mutex); |
3005 | ret = start_consumerd(&kconsumer_data); | |
7d29a247 | 3006 | if (ret < 0) { |
54d01ffb DG |
3007 | ret = LTTCOMM_KERN_CONSUMER_FAIL; |
3008 | goto error; | |
950131af | 3009 | } |
3ff2ecac MD |
3010 | } else { |
3011 | pthread_mutex_unlock(&kconsumer_data.pid_mutex); | |
33a2b854 | 3012 | } |
0d0c377a | 3013 | } |
54d01ffb | 3014 | break; |
2bdd86d4 | 3015 | case LTTNG_DOMAIN_UST: |
44d3bd01 | 3016 | { |
44d3bd01 | 3017 | if (need_tracing_session) { |
f6a9efaa | 3018 | if (cmd_ctx->session->ust_session == NULL) { |
44d3bd01 DG |
3019 | ret = create_ust_session(cmd_ctx->session, |
3020 | &cmd_ctx->lsm->domain); | |
3021 | if (ret != LTTCOMM_OK) { | |
3022 | goto error; | |
3023 | } | |
3024 | } | |
2bdd86d4 MD |
3025 | /* Start the kernel consumer daemon */ |
3026 | pthread_mutex_lock(&ustconsumer_data.pid_mutex); | |
3027 | if (ustconsumer_data.pid == 0 && | |
3028 | cmd_ctx->lsm->cmd_type != LTTNG_REGISTER_CONSUMER) { | |
3029 | pthread_mutex_unlock(&ustconsumer_data.pid_mutex); | |
3030 | ret = start_consumerd(&ustconsumer_data); | |
3031 | if (ret < 0) { | |
3032 | ret = LTTCOMM_KERN_CONSUMER_FAIL; | |
3033 | goto error; | |
3034 | } | |
48842b30 | 3035 | |
ba5d816e | 3036 | ust_consumer_fd = ustconsumer_data.cmd_sock; |
3ff2ecac MD |
3037 | } else { |
3038 | pthread_mutex_unlock(&ustconsumer_data.pid_mutex); | |
2bdd86d4 | 3039 | } |
44d3bd01 DG |
3040 | } |
3041 | break; | |
48842b30 | 3042 | } |
54d01ffb | 3043 | default: |
54d01ffb DG |
3044 | break; |
3045 | } | |
33a2b854 | 3046 | |
54d01ffb DG |
3047 | /* Process by command type */ |
3048 | switch (cmd_ctx->lsm->cmd_type) { | |
3049 | case LTTNG_ADD_CONTEXT: | |
3050 | { | |
3051 | ret = cmd_add_context(cmd_ctx->session, cmd_ctx->lsm->domain.type, | |
3052 | cmd_ctx->lsm->u.context.channel_name, | |
3053 | cmd_ctx->lsm->u.context.event_name, | |
3054 | &cmd_ctx->lsm->u.context.ctx); | |
3055 | break; | |
3056 | } | |
3057 | case LTTNG_DISABLE_CHANNEL: | |
3058 | { | |
3059 | ret = cmd_disable_channel(cmd_ctx->session, cmd_ctx->lsm->domain.type, | |
3060 | cmd_ctx->lsm->u.disable.channel_name); | |
3061 | break; | |
3062 | } | |
3063 | case LTTNG_DISABLE_EVENT: | |
3064 | { | |
3065 | ret = cmd_disable_event(cmd_ctx->session, cmd_ctx->lsm->domain.type, | |
3066 | cmd_ctx->lsm->u.disable.channel_name, | |
3067 | cmd_ctx->lsm->u.disable.name); | |
33a2b854 DG |
3068 | ret = LTTCOMM_OK; |
3069 | break; | |
3070 | } | |
54d01ffb DG |
3071 | case LTTNG_DISABLE_ALL_EVENT: |
3072 | { | |
2bdd86d4 | 3073 | DBG("Disabling all events"); |
54d01ffb DG |
3074 | |
3075 | ret = cmd_disable_event_all(cmd_ctx->session, cmd_ctx->lsm->domain.type, | |
3076 | cmd_ctx->lsm->u.disable.channel_name); | |
3077 | break; | |
3078 | } | |
3079 | case LTTNG_ENABLE_CHANNEL: | |
3080 | { | |
44d3bd01 | 3081 | ret = cmd_enable_channel(cmd_ctx->session, &cmd_ctx->lsm->domain, |
54d01ffb DG |
3082 | &cmd_ctx->lsm->u.channel.chan); |
3083 | break; | |
3084 | } | |
3085 | case LTTNG_ENABLE_EVENT: | |
3086 | { | |
3087 | ret = cmd_enable_event(cmd_ctx->session, cmd_ctx->lsm->domain.type, | |
3088 | cmd_ctx->lsm->u.enable.channel_name, | |
3089 | &cmd_ctx->lsm->u.enable.event); | |
3090 | break; | |
3091 | } | |
3092 | case LTTNG_ENABLE_ALL_EVENT: | |
3093 | { | |
2bdd86d4 | 3094 | DBG("Enabling all events"); |
54d01ffb DG |
3095 | |
3096 | ret = cmd_enable_event_all(cmd_ctx->session, cmd_ctx->lsm->domain.type, | |
8c9ae521 DG |
3097 | cmd_ctx->lsm->u.enable.channel_name, |
3098 | cmd_ctx->lsm->u.enable.event.type); | |
54d01ffb DG |
3099 | break; |
3100 | } | |
052da939 | 3101 | case LTTNG_LIST_TRACEPOINTS: |
2ef84c95 | 3102 | { |
9f19cc17 | 3103 | struct lttng_event *events; |
54d01ffb | 3104 | ssize_t nb_events; |
052da939 | 3105 | |
54d01ffb DG |
3106 | nb_events = cmd_list_tracepoints(cmd_ctx->lsm->domain.type, &events); |
3107 | if (nb_events < 0) { | |
3108 | ret = -nb_events; | |
3109 | goto error; | |
2ef84c95 DG |
3110 | } |
3111 | ||
3112 | /* | |
3113 | * Setup lttng message with payload size set to the event list size in | |
3114 | * bytes and then copy list into the llm payload. | |
3115 | */ | |
052da939 | 3116 | ret = setup_lttng_msg(cmd_ctx, sizeof(struct lttng_event) * nb_events); |
2ef84c95 | 3117 | if (ret < 0) { |
052da939 | 3118 | free(events); |
2ef84c95 DG |
3119 | goto setup_error; |
3120 | } | |
3121 | ||
3122 | /* Copy event list into message payload */ | |
9f19cc17 | 3123 | memcpy(cmd_ctx->llm->payload, events, |
052da939 | 3124 | sizeof(struct lttng_event) * nb_events); |
2ef84c95 | 3125 | |
9f19cc17 | 3126 | free(events); |
2ef84c95 DG |
3127 | |
3128 | ret = LTTCOMM_OK; | |
3129 | break; | |
3130 | } | |
f3ed775e | 3131 | case LTTNG_START_TRACE: |
8c0faa1d | 3132 | { |
54d01ffb | 3133 | ret = cmd_start_trace(cmd_ctx->session); |
8c0faa1d DG |
3134 | break; |
3135 | } | |
f3ed775e | 3136 | case LTTNG_STOP_TRACE: |
8c0faa1d | 3137 | { |
54d01ffb | 3138 | ret = cmd_stop_trace(cmd_ctx->session); |
8c0faa1d DG |
3139 | break; |
3140 | } | |
5e16da05 MD |
3141 | case LTTNG_CREATE_SESSION: |
3142 | { | |
54d01ffb DG |
3143 | ret = cmd_create_session(cmd_ctx->lsm->session.name, |
3144 | cmd_ctx->lsm->session.path); | |
5e16da05 MD |
3145 | break; |
3146 | } | |
3147 | case LTTNG_DESTROY_SESSION: | |
3148 | { | |
54d01ffb DG |
3149 | ret = cmd_destroy_session(cmd_ctx->session, |
3150 | cmd_ctx->lsm->session.name); | |
5461b305 | 3151 | break; |
5e16da05 | 3152 | } |
9f19cc17 | 3153 | case LTTNG_LIST_DOMAINS: |
5e16da05 | 3154 | { |
54d01ffb DG |
3155 | ssize_t nb_dom; |
3156 | struct lttng_domain *domains; | |
5461b305 | 3157 | |
54d01ffb DG |
3158 | nb_dom = cmd_list_domains(cmd_ctx->session, &domains); |
3159 | if (nb_dom < 0) { | |
3160 | ret = -nb_dom; | |
3161 | goto error; | |
ce3d728c | 3162 | } |
520ff687 | 3163 | |
54d01ffb | 3164 | ret = setup_lttng_msg(cmd_ctx, nb_dom * sizeof(struct lttng_domain)); |
5461b305 DG |
3165 | if (ret < 0) { |
3166 | goto setup_error; | |
520ff687 | 3167 | } |
57167058 | 3168 | |
54d01ffb DG |
3169 | /* Copy event list into message payload */ |
3170 | memcpy(cmd_ctx->llm->payload, domains, | |
3171 | nb_dom * sizeof(struct lttng_domain)); | |
3172 | ||
3173 | free(domains); | |
5e16da05 | 3174 | |
5461b305 | 3175 | ret = LTTCOMM_OK; |
5e16da05 MD |
3176 | break; |
3177 | } | |
9f19cc17 | 3178 | case LTTNG_LIST_CHANNELS: |
5e16da05 | 3179 | { |
54d01ffb DG |
3180 | size_t nb_chan; |
3181 | struct lttng_channel *channels; | |
3182 | ||
b551a063 DG |
3183 | nb_chan = cmd_list_channels(cmd_ctx->lsm->domain.type, |
3184 | cmd_ctx->session, &channels); | |
54d01ffb DG |
3185 | if (nb_chan < 0) { |
3186 | ret = -nb_chan; | |
3187 | goto error; | |
5461b305 | 3188 | } |
ca95a216 | 3189 | |
54d01ffb | 3190 | ret = setup_lttng_msg(cmd_ctx, nb_chan * sizeof(struct lttng_channel)); |
5461b305 DG |
3191 | if (ret < 0) { |
3192 | goto setup_error; | |
3193 | } | |
9f19cc17 | 3194 | |
54d01ffb DG |
3195 | /* Copy event list into message payload */ |
3196 | memcpy(cmd_ctx->llm->payload, channels, | |
3197 | nb_chan * sizeof(struct lttng_channel)); | |
3198 | ||
3199 | free(channels); | |
9f19cc17 DG |
3200 | |
3201 | ret = LTTCOMM_OK; | |
5461b305 | 3202 | break; |
5e16da05 | 3203 | } |
9f19cc17 | 3204 | case LTTNG_LIST_EVENTS: |
5e16da05 | 3205 | { |
b551a063 | 3206 | ssize_t nb_event; |
684d34d2 | 3207 | struct lttng_event *events = NULL; |
9f19cc17 | 3208 | |
b551a063 | 3209 | nb_event = cmd_list_events(cmd_ctx->lsm->domain.type, cmd_ctx->session, |
54d01ffb DG |
3210 | cmd_ctx->lsm->u.list.channel_name, &events); |
3211 | if (nb_event < 0) { | |
3212 | ret = -nb_event; | |
3213 | goto error; | |
5461b305 | 3214 | } |
ca95a216 | 3215 | |
54d01ffb | 3216 | ret = setup_lttng_msg(cmd_ctx, nb_event * sizeof(struct lttng_event)); |
5461b305 DG |
3217 | if (ret < 0) { |
3218 | goto setup_error; | |
3219 | } | |
9f19cc17 | 3220 | |
54d01ffb DG |
3221 | /* Copy event list into message payload */ |
3222 | memcpy(cmd_ctx->llm->payload, events, | |
3223 | nb_event * sizeof(struct lttng_event)); | |
9f19cc17 | 3224 | |
54d01ffb | 3225 | free(events); |
9f19cc17 DG |
3226 | |
3227 | ret = LTTCOMM_OK; | |
5461b305 | 3228 | break; |
5e16da05 MD |
3229 | } |
3230 | case LTTNG_LIST_SESSIONS: | |
3231 | { | |
54d01ffb | 3232 | session_lock_list(); |
5461b305 | 3233 | |
6c9cc2ab | 3234 | if (session_list_ptr->count == 0) { |
f3ed775e | 3235 | ret = LTTCOMM_NO_SESSION; |
54d01ffb | 3236 | session_unlock_list(); |
5461b305 | 3237 | goto error; |
57167058 | 3238 | } |
5e16da05 | 3239 | |
6c9cc2ab DG |
3240 | ret = setup_lttng_msg(cmd_ctx, sizeof(struct lttng_session) * |
3241 | session_list_ptr->count); | |
5461b305 | 3242 | if (ret < 0) { |
54d01ffb | 3243 | session_unlock_list(); |
5461b305 | 3244 | goto setup_error; |
e065084a | 3245 | } |
5e16da05 | 3246 | |
6c9cc2ab DG |
3247 | /* Filled the session array */ |
3248 | list_lttng_sessions((struct lttng_session *)(cmd_ctx->llm->payload)); | |
3249 | ||
54d01ffb | 3250 | session_unlock_list(); |
5e16da05 | 3251 | |
5461b305 | 3252 | ret = LTTCOMM_OK; |
5e16da05 MD |
3253 | break; |
3254 | } | |
d0254c7c MD |
3255 | case LTTNG_CALIBRATE: |
3256 | { | |
54d01ffb DG |
3257 | ret = cmd_calibrate(cmd_ctx->lsm->domain.type, |
3258 | &cmd_ctx->lsm->u.calibrate); | |
d0254c7c MD |
3259 | break; |
3260 | } | |
d9800920 DG |
3261 | case LTTNG_REGISTER_CONSUMER: |
3262 | { | |
54d01ffb DG |
3263 | ret = cmd_register_consumer(cmd_ctx->session, cmd_ctx->lsm->domain.type, |
3264 | cmd_ctx->lsm->u.reg.path); | |
d9800920 DG |
3265 | break; |
3266 | } | |
5e16da05 | 3267 | default: |
5e16da05 | 3268 | ret = LTTCOMM_UND; |
5461b305 | 3269 | break; |
fac6795d DG |
3270 | } |
3271 | ||
5461b305 | 3272 | error: |
5461b305 DG |
3273 | if (cmd_ctx->llm == NULL) { |
3274 | DBG("Missing llm structure. Allocating one."); | |
894be886 | 3275 | if (setup_lttng_msg(cmd_ctx, 0) < 0) { |
5461b305 DG |
3276 | goto setup_error; |
3277 | } | |
3278 | } | |
54d01ffb | 3279 | /* Set return code */ |
5461b305 | 3280 | cmd_ctx->llm->ret_code = ret; |
5461b305 | 3281 | setup_error: |
b5541356 | 3282 | if (cmd_ctx->session) { |
54d01ffb | 3283 | session_unlock(cmd_ctx->session); |
b5541356 | 3284 | } |
54d01ffb | 3285 | init_setup_error: |
8028d920 | 3286 | return ret; |
fac6795d DG |
3287 | } |
3288 | ||
1d4b027a | 3289 | /* |
d063d709 DG |
3290 | * This thread manage all clients request using the unix client socket for |
3291 | * communication. | |
1d4b027a DG |
3292 | */ |
3293 | static void *thread_manage_clients(void *data) | |
3294 | { | |
5eb91c98 DG |
3295 | int sock = 0, ret, i, pollfd; |
3296 | uint32_t revents, nb_fd; | |
273ea72c | 3297 | struct command_ctx *cmd_ctx = NULL; |
5eb91c98 | 3298 | struct lttng_poll_event events; |
1d4b027a DG |
3299 | |
3300 | DBG("[thread] Manage client started"); | |
3301 | ||
f6a9efaa DG |
3302 | rcu_register_thread(); |
3303 | ||
1d4b027a DG |
3304 | ret = lttcomm_listen_unix_sock(client_sock); |
3305 | if (ret < 0) { | |
3306 | goto error; | |
3307 | } | |
3308 | ||
5eb91c98 DG |
3309 | /* |
3310 | * Pass 2 as size here for the thread quit pipe and client_sock. Nothing | |
3311 | * more will be added to this poll set. | |
3312 | */ | |
3313 | ret = create_thread_poll_set(&events, 2); | |
3314 | if (ret < 0) { | |
3315 | goto error; | |
3316 | } | |
273ea72c | 3317 | |
5eb91c98 DG |
3318 | /* Add the application registration socket */ |
3319 | ret = lttng_poll_add(&events, client_sock, LPOLLIN | LPOLLPRI); | |
3320 | if (ret < 0) { | |
3321 | goto error; | |
3322 | } | |
273ea72c | 3323 | |
bbd973c2 DG |
3324 | /* |
3325 | * Notify parent pid that we are ready to accept command for client side. | |
1d4b027a DG |
3326 | */ |
3327 | if (opt_sig_parent) { | |
3328 | kill(ppid, SIGCHLD); | |
3329 | } | |
3330 | ||
3331 | while (1) { | |