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