Add disable kernel event support
[lttng-tools.git] / ltt-sessiond / main.c
CommitLineData
826d496d 1/*
f3ed775e
DG
2 DBG("Creating kernel event %s for channel %s.",
3 cmd_ctx->lsm->u.enable.event.name, cmd_ctx->lsm->u.enable.channel_name);
4
826d496d 5 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
fac6795d
DG
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
91d76f53 11 *
fac6795d
DG
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
91d76f53 16 *
fac6795d
DG
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
fac6795d
DG
20 */
21
22#define _GNU_SOURCE
23#include <fcntl.h>
24#include <getopt.h>
25#include <grp.h>
26#include <limits.h>
27#include <pthread.h>
8c0faa1d 28#include <semaphore.h>
fac6795d
DG
29#include <signal.h>
30#include <stdio.h>
31#include <stdlib.h>
32#include <string.h>
33#include <sys/ipc.h>
34#include <sys/shm.h>
35#include <sys/socket.h>
36#include <sys/stat.h>
37#include <sys/types.h>
f3ed775e
DG
38#include <sys/time.h>
39#include <sys/resource.h>
fac6795d
DG
40#include <unistd.h>
41
42#include <urcu/list.h> /* URCU list library (-lurcu) */
5b97ec60 43#include <lttng/lttng.h>
fac6795d
DG
44
45#include "liblttsessiondcomm.h"
46#include "ltt-sessiond.h"
75462a81 47#include "lttngerr.h"
20fe2104 48#include "kernel-ctl.h"
9e78d6ae 49#include "ust-ctl.h"
5b74c7b1 50#include "session.h"
91d76f53 51#include "traceable-app.h"
5dc18550 52#include "lttng-kconsumerd.h"
62d3069f 53#include "libustctl.h"
fac6795d 54
5e16da05
MD
55/*
56 * TODO:
57 * teardown: signal SIGTERM handler -> write into pipe. Threads waits
58 * with epoll on pipe and on other pipes/sockets for commands. Main
59 * simply waits on pthread join.
60 */
61
75462a81 62/* Const values */
686204ab 63const char default_home_dir[] = DEFAULT_HOME_DIR;
64a23ac4 64const char default_tracing_group[] = LTTNG_DEFAULT_TRACING_GROUP;
686204ab
MD
65const char default_ust_sock_dir[] = DEFAULT_UST_SOCK_DIR;
66const char default_global_apps_pipe[] = DEFAULT_GLOBAL_APPS_PIPE;
67
fac6795d 68/* Variables */
1d4b027a
DG
69int opt_verbose; /* Not static for lttngerr.h */
70int opt_quiet; /* Not static for lttngerr.h */
fac6795d
DG
71const char *progname;
72const char *opt_tracing_group;
5b8719f5 73static int opt_sig_parent;
fac6795d
DG
74static int opt_daemon;
75static int is_root; /* Set to 1 if the daemon is running as root */
1d4b027a
DG
76static pid_t ppid; /* Parent PID for --sig-parent option */
77static pid_t kconsumerd_pid;
fac6795d 78
d6f42150
DG
79static char apps_unix_sock_path[PATH_MAX]; /* Global application Unix socket path */
80static char client_unix_sock_path[PATH_MAX]; /* Global client Unix socket path */
81static char kconsumerd_err_unix_sock_path[PATH_MAX]; /* kconsumerd error Unix socket path */
82static char kconsumerd_cmd_unix_sock_path[PATH_MAX]; /* kconsumerd command Unix socket path */
fac6795d 83
1d4b027a 84/* Sockets and FDs */
d6f42150
DG
85static int client_sock;
86static int apps_sock;
87static int kconsumerd_err_sock;
8c0faa1d 88static int kconsumerd_cmd_sock;
20fe2104 89static int kernel_tracer_fd;
1d4b027a
DG
90
91/* Pthread, Mutexes and Semaphores */
8c0faa1d 92static pthread_t kconsumerd_thread;
1d4b027a
DG
93static pthread_t apps_thread;
94static pthread_t client_thread;
8c0faa1d
DG
95static sem_t kconsumerd_sem;
96
1d4b027a 97static pthread_mutex_t kconsumerd_pid_mutex; /* Mutex to control kconsumerd pid assignation */
fac6795d 98
fac6795d 99/*
1d4b027a 100 * teardown_kernel_session
fac6795d 101 *
1d4b027a
DG
102 * Complete teardown of a kernel session. This free all data structure
103 * related to a kernel session and update counter.
fac6795d 104 */
1d4b027a 105static void teardown_kernel_session(struct ltt_session *session)
fac6795d 106{
1d4b027a
DG
107 if (session->kernel_session != NULL) {
108 DBG("Tearing down kernel session");
c363b55d 109 trace_destroy_kernel_session(session->kernel_session);
1d4b027a
DG
110 /* Extra precaution */
111 session->kernel_session = NULL;
112 /* Decrement session count */
113 session->kern_session_count--;
fac6795d 114 }
fac6795d
DG
115}
116
117/*
1d4b027a 118 * cleanup
fac6795d 119 *
1d4b027a 120 * Cleanup the daemon on exit
fac6795d 121 */
1d4b027a 122static void cleanup()
fac6795d 123{
1d4b027a
DG
124 int ret;
125 char *cmd;
126 struct ltt_session *sess;
fac6795d 127
1d4b027a 128 DBG("Cleaning up");
e07ae692 129
1d4b027a
DG
130 /* <fun> */
131 MSG("\n%c[%d;%dm*** assert failed *** ==> %c[%dm", 27,1,31,27,0);
132 MSG("%c[%d;%dmMatthew, BEET driven development works!%c[%dm",27,1,33,27,0);
133 /* </fun> */
fac6795d 134
1d4b027a
DG
135 /* Stopping all threads */
136 DBG("Terminating all threads");
137 pthread_cancel(client_thread);
138 pthread_cancel(apps_thread);
139 if (kconsumerd_pid != 0) {
140 pthread_cancel(kconsumerd_thread);
5b8719f5
DG
141 }
142
1d4b027a
DG
143 DBG("Unlinking all unix socket");
144 unlink(client_unix_sock_path);
145 unlink(apps_unix_sock_path);
146 unlink(kconsumerd_err_unix_sock_path);
fac6795d 147
1d4b027a
DG
148 DBG("Removing %s directory", LTTNG_RUNDIR);
149 ret = asprintf(&cmd, "rm -rf " LTTNG_RUNDIR);
150 if (ret < 0) {
151 ERR("asprintf failed. Something is really wrong!");
152 }
5461b305 153
1d4b027a
DG
154 /* Remove lttng run directory */
155 ret = system(cmd);
156 if (ret < 0) {
157 ERR("Unable to clean " LTTNG_RUNDIR);
158 }
5461b305 159
1d4b027a
DG
160 DBG("Cleaning up all session");
161 /* Cleanup ALL session */
162 cds_list_for_each_entry(sess, &ltt_session_list.head, list) {
163 teardown_kernel_session(sess);
164 // TODO complete session cleanup (including UST)
fac6795d
DG
165 }
166
f3ed775e 167 DBG("Closing kernel fd");
1d4b027a 168 close(kernel_tracer_fd);
fac6795d
DG
169}
170
e065084a
DG
171/*
172 * send_unix_sock
173 *
174 * Send data on a unix socket using the liblttsessiondcomm API.
175 *
176 * Return lttcomm error code.
177 */
178static int send_unix_sock(int sock, void *buf, size_t len)
179{
180 /* Check valid length */
181 if (len <= 0) {
182 return -1;
183 }
184
185 return lttcomm_send_unix_sock(sock, buf, len);
186}
187
5461b305
DG
188/*
189 * clean_command_ctx
190 *
191 * Free memory of a command context structure.
192 */
193static void clean_command_ctx(struct command_ctx *cmd_ctx)
194{
195 DBG("Clean command context structure %p", cmd_ctx);
196 if (cmd_ctx) {
197 if (cmd_ctx->llm) {
198 free(cmd_ctx->llm);
199 }
200 if (cmd_ctx->lsm) {
201 free(cmd_ctx->lsm);
202 }
203 free(cmd_ctx);
204 cmd_ctx = NULL;
205 }
206}
207
f3ed775e
DG
208/*
209 * send_kconsumerd_fds
210 *
211 * Send all stream fds of the kernel session to the consumer.
212 */
213static int send_kconsumerd_fds(int sock, struct ltt_kernel_session *session)
214{
215 int ret;
216 size_t nb_fd;
217 struct ltt_kernel_stream *stream;
218 struct ltt_kernel_channel *chan;
219 struct lttcomm_kconsumerd_header lkh;
220 struct lttcomm_kconsumerd_msg lkm;
221
222 nb_fd = session->stream_count_global;
223
224 /* Setup header */
225 lkh.payload_size = (nb_fd + 1) * sizeof(struct lttcomm_kconsumerd_msg);
226 lkh.cmd_type = ADD_STREAM;
227
228 DBG("Sending kconsumerd header");
229
230 ret = lttcomm_send_unix_sock(sock, &lkh, sizeof(struct lttcomm_kconsumerd_header));
231 if (ret < 0) {
232 perror("send kconsumerd header");
233 goto error;
234 }
235
236 DBG("Sending metadata stream fd");
237
238 /* Send metadata stream fd first */
239 lkm.fd = session->metadata_stream_fd;
240 lkm.state = ACTIVE_FD;
241 lkm.max_sb_size = session->metadata->conf->attr.subbuf_size;
242 strncpy(lkm.path_name, session->metadata->pathname, PATH_MAX);
243
244 ret = lttcomm_send_fds_unix_sock(sock, &lkm, &lkm.fd, 1, sizeof(lkm));
245 if (ret < 0) {
246 perror("send kconsumerd fd");
247 goto error;
248 }
249
250 cds_list_for_each_entry(chan, &session->channel_list.head, list) {
251 cds_list_for_each_entry(stream, &chan->stream_list.head, list) {
252 lkm.fd = stream->fd;
253 lkm.state = stream->state;
254 lkm.max_sb_size = chan->channel->attr.subbuf_size;
255 strncpy(lkm.path_name, stream->pathname, PATH_MAX);
256
257 DBG("Sending fd %d to kconsumerd", lkm.fd);
258
259 ret = lttcomm_send_fds_unix_sock(sock, &lkm, &lkm.fd, 1, sizeof(lkm));
260 if (ret < 0) {
261 perror("send kconsumerd fd");
262 goto error;
263 }
264 }
265 }
266
267 DBG("Kconsumerd fds sent");
268
269 return 0;
270
271error:
272 return ret;
273}
274
275/*
276 * create_trace_dir
277 *
278 * Create the trace output directory.
279 */
280static int create_trace_dir(struct ltt_kernel_session *session)
281{
282 int ret;
283 struct ltt_kernel_channel *chan;
284
285 /* Create all channel directories */
286 cds_list_for_each_entry(chan, &session->channel_list.head, list) {
287 DBG("Creating trace directory at %s", chan->pathname);
288 // TODO: recursive create dir
289 ret = mkdir(chan->pathname, S_IRWXU | S_IRWXG );
290 if (ret < 0) {
291 if (ret != EEXIST) {
292 perror("mkdir trace path");
293 ret = -errno;
294 goto error;
295 }
296 }
297 }
298
299 return 0;
300
301error:
302 return ret;
303}
304
fac6795d 305/*
471d1693 306 * ust_connect_app
fac6795d
DG
307 *
308 * Return a socket connected to the libust communication socket
309 * of the application identified by the pid.
379473d2
DG
310 *
311 * If the pid is not found in the traceable list,
312 * return -1 to indicate error.
fac6795d 313 */
471d1693 314static int ust_connect_app(pid_t pid)
fac6795d 315{
91d76f53
DG
316 int sock;
317 struct ltt_traceable_app *lta;
379473d2 318
e07ae692
DG
319 DBG("Connect to application pid %d", pid);
320
91d76f53
DG
321 lta = find_app_by_pid(pid);
322 if (lta == NULL) {
323 /* App not found */
7442b2ba 324 DBG("Application pid %d not found", pid);
379473d2
DG
325 return -1;
326 }
fac6795d 327
91d76f53 328 sock = ustctl_connect_pid(lta->pid);
fac6795d 329 if (sock < 0) {
62d3069f 330 ERR("Fail connecting to the PID %d", pid);
fac6795d
DG
331 }
332
333 return sock;
334}
335
336/*
337 * notify_apps
338 *
339 * Notify apps by writing 42 to a named pipe using name.
340 * Every applications waiting for a ltt-sessiond will be notified
341 * and re-register automatically to the session daemon.
342 *
343 * Return open or write error value.
344 */
345static int notify_apps(const char *name)
346{
347 int fd;
348 int ret = -1;
349
e07ae692
DG
350 DBG("Notify the global application pipe");
351
fac6795d
DG
352 /* Try opening the global pipe */
353 fd = open(name, O_WRONLY);
354 if (fd < 0) {
355 goto error;
356 }
357
358 /* Notify by writing on the pipe */
359 ret = write(fd, "42", 2);
360 if (ret < 0) {
361 perror("write");
362 }
363
364error:
365 return ret;
366}
367
e065084a 368/*
5461b305 369 * setup_lttng_msg
ca95a216 370 *
5461b305
DG
371 * Setup the outgoing data buffer for the response (llm) by allocating the
372 * right amount of memory and copying the original information from the lsm
373 * structure.
ca95a216
DG
374 *
375 * Return total size of the buffer pointed by buf.
376 */
5461b305 377static int setup_lttng_msg(struct command_ctx *cmd_ctx, size_t size)
ca95a216 378{
f3ed775e 379 int ret, buf_size;
ca95a216 380
f3ed775e 381 buf_size = size;
5461b305
DG
382
383 cmd_ctx->llm = malloc(sizeof(struct lttcomm_lttng_msg) + buf_size);
384 if (cmd_ctx->llm == NULL) {
ca95a216 385 perror("malloc");
5461b305 386 ret = -ENOMEM;
ca95a216
DG
387 goto error;
388 }
389
5461b305
DG
390 /* Copy common data */
391 cmd_ctx->llm->cmd_type = cmd_ctx->lsm->cmd_type;
392 cmd_ctx->llm->pid = cmd_ctx->lsm->pid;
5461b305 393
5461b305
DG
394 cmd_ctx->llm->data_size = size;
395 cmd_ctx->lttng_msg_size = sizeof(struct lttcomm_lttng_msg) + buf_size;
396
ca95a216
DG
397 return buf_size;
398
399error:
400 return ret;
401}
402
1d4b027a
DG
403/*
404 * thread_manage_kconsumerd
405 *
406 * This thread manage the kconsumerd error sent
407 * back to the session daemon.
408 */
409static void *thread_manage_kconsumerd(void *data)
410{
411 int sock, ret;
412 enum lttcomm_return_code code;
413
414 DBG("[thread] Manage kconsumerd started");
415
416 ret = lttcomm_listen_unix_sock(kconsumerd_err_sock);
417 if (ret < 0) {
418 goto error;
419 }
420
421 sock = lttcomm_accept_unix_sock(kconsumerd_err_sock);
422 if (sock < 0) {
423 goto error;
424 }
425
712ea556 426 /* Getting status code from kconsumerd */
1d4b027a
DG
427 ret = lttcomm_recv_unix_sock(sock, &code, sizeof(enum lttcomm_return_code));
428 if (ret <= 0) {
429 goto error;
430 }
431
432 if (code == KCONSUMERD_COMMAND_SOCK_READY) {
433 kconsumerd_cmd_sock = lttcomm_connect_unix_sock(kconsumerd_cmd_unix_sock_path);
434 if (kconsumerd_cmd_sock < 0) {
712ea556 435 sem_post(&kconsumerd_sem);
1d4b027a
DG
436 perror("kconsumerd connect");
437 goto error;
438 }
439 /* Signal condition to tell that the kconsumerd is ready */
440 sem_post(&kconsumerd_sem);
441 DBG("Kconsumerd command socket ready");
442 } else {
6f61d021 443 DBG("Kconsumerd error when waiting for SOCK_READY : %s",
1d4b027a
DG
444 lttcomm_get_readable_code(-code));
445 goto error;
446 }
447
712ea556
DG
448 /* Wait for any kconsumerd error */
449 ret = lttcomm_recv_unix_sock(sock, &code, sizeof(enum lttcomm_return_code));
450 if (ret <= 0) {
451 ERR("Kconsumerd closed the command socket");
452 goto error;
6f61d021 453 }
1d4b027a 454
712ea556
DG
455 ERR("Kconsumerd return code : %s", lttcomm_get_readable_code(-code));
456
1d4b027a
DG
457error:
458 kconsumerd_pid = 0;
6f61d021 459 DBG("Kconsumerd thread dying");
1d4b027a
DG
460 return NULL;
461}
462
463/*
464 * thread_manage_apps
465 *
466 * This thread manage the application socket communication
467 */
468static void *thread_manage_apps(void *data)
469{
470 int sock, ret;
471
472 /* TODO: Something more elegant is needed but fine for now */
473 /* FIXME: change all types to either uint8_t, uint32_t, uint64_t
474 * for 32-bit vs 64-bit compat processes. */
475 /* replicate in ust with version number */
476 struct {
477 int reg; /* 1:register, 0:unregister */
478 pid_t pid;
479 uid_t uid;
480 } reg_msg;
481
482 DBG("[thread] Manage apps started");
483
484 ret = lttcomm_listen_unix_sock(apps_sock);
485 if (ret < 0) {
486 goto error;
487 }
488
489 /* Notify all applications to register */
490 notify_apps(default_global_apps_pipe);
491
492 while (1) {
493 DBG("Accepting application registration");
494 /* Blocking call, waiting for transmission */
495 sock = lttcomm_accept_unix_sock(apps_sock);
496 if (sock < 0) {
497 goto error;
498 }
499
500 /* Basic recv here to handle the very simple data
501 * that the libust send to register (reg_msg).
502 */
503 ret = recv(sock, &reg_msg, sizeof(reg_msg), 0);
504 if (ret < 0) {
505 perror("recv");
506 continue;
507 }
508
509 /* Add application to the global traceable list */
510 if (reg_msg.reg == 1) {
511 /* Registering */
512 ret = register_traceable_app(reg_msg.pid, reg_msg.uid);
513 if (ret < 0) {
514 /* register_traceable_app only return an error with
515 * ENOMEM. At this point, we better stop everything.
516 */
517 goto error;
518 }
519 } else {
520 /* Unregistering */
521 unregister_traceable_app(reg_msg.pid);
522 }
523 }
524
525error:
526
527 return NULL;
528}
529
8c0faa1d 530/*
693bd40b 531 * spawn_kconsumerd_thread
8c0faa1d
DG
532 *
533 * Start the thread_manage_kconsumerd. This must be done after a kconsumerd
534 * exec or it will fails.
535 */
693bd40b 536static int spawn_kconsumerd_thread(void)
8c0faa1d
DG
537{
538 int ret;
539
540 /* Setup semaphore */
541 sem_init(&kconsumerd_sem, 0, 0);
542
1d4b027a 543 ret = pthread_create(&kconsumerd_thread, NULL, thread_manage_kconsumerd, (void *) NULL);
8c0faa1d
DG
544 if (ret != 0) {
545 perror("pthread_create kconsumerd");
546 goto error;
547 }
548
693bd40b 549 /* Wait for the kconsumerd thread to be ready */
8c0faa1d
DG
550 sem_wait(&kconsumerd_sem);
551
712ea556
DG
552 if (kconsumerd_pid == 0) {
553 ERR("Kconsumerd did not start");
554 goto error;
555 }
556
8c0faa1d
DG
557 return 0;
558
559error:
712ea556 560 ret = LTTCOMM_KERN_CONSUMER_FAIL;
8c0faa1d
DG
561 return ret;
562}
563
564/*
693bd40b 565 * spawn_kconsumerd
8c0faa1d 566 *
693bd40b
DG
567 * Fork and exec a kernel consumer daemon (kconsumerd).
568 *
569 * NOTE: It is very important to fork a kconsumerd BEFORE opening any kernel
570 * file descriptor using the libkernelctl or kernel-ctl functions. So, a
571 * kernel consumer MUST only be spawned before creating a kernel session.
8c0faa1d
DG
572 *
573 * Return pid if successful else -1.
574 */
693bd40b 575static pid_t spawn_kconsumerd(void)
8c0faa1d
DG
576{
577 int ret;
578 pid_t pid;
579
c49dc785
DG
580 DBG("Spawning kconsumerd");
581
8c0faa1d
DG
582 pid = fork();
583 if (pid == 0) {
584 /*
585 * Exec kconsumerd.
586 */
f57244de 587 execlp("kconsumerd", "kconsumerd", "--verbose", NULL);
8c0faa1d
DG
588 if (errno != 0) {
589 perror("kernel start consumer exec");
590 }
591 exit(EXIT_FAILURE);
592 } else if (pid > 0) {
593 ret = pid;
594 goto error;
595 } else {
596 perror("kernel start consumer fork");
597 ret = -errno;
598 goto error;
599 }
600
601error:
602 return ret;
603}
604
693bd40b
DG
605/*
606 * start_kconsumerd
607 *
608 * Spawn the kconsumerd daemon and session daemon thread.
609 */
610static int start_kconsumerd(void)
611{
612 int ret;
613
693bd40b 614 pthread_mutex_lock(&kconsumerd_pid_mutex);
c49dc785
DG
615 if (kconsumerd_pid != 0) {
616 goto end;
617 }
693bd40b 618
c49dc785
DG
619 ret = spawn_kconsumerd();
620 if (ret < 0) {
621 ERR("Spawning kconsumerd failed");
622 ret = LTTCOMM_KERN_CONSUMER_FAIL;
623 pthread_mutex_unlock(&kconsumerd_pid_mutex);
624 goto error;
693bd40b 625 }
c49dc785
DG
626
627 /* Setting up the global kconsumerd_pid */
628 kconsumerd_pid = ret;
693bd40b
DG
629 pthread_mutex_unlock(&kconsumerd_pid_mutex);
630
6f61d021
DG
631 DBG("Kconsumerd pid %d", ret);
632
693bd40b 633 DBG("Spawning kconsumerd thread");
693bd40b
DG
634 ret = spawn_kconsumerd_thread();
635 if (ret < 0) {
636 ERR("Fatal error spawning kconsumerd thread");
693bd40b
DG
637 goto error;
638 }
639
c49dc785
DG
640end:
641 pthread_mutex_unlock(&kconsumerd_pid_mutex);
693bd40b
DG
642 return 0;
643
644error:
645 return ret;
646}
647
8c0faa1d 648/*
f3ed775e 649 * init_kernel_tracer
8c0faa1d 650 *
f3ed775e 651 * Setup necessary data for kernel tracer action.
8c0faa1d 652 */
f3ed775e 653static void init_kernel_tracer(void)
8c0faa1d 654{
f3ed775e
DG
655 /* Set the global kernel tracer fd */
656 kernel_tracer_fd = open(DEFAULT_KERNEL_TRACER_PATH, O_RDWR);
657 if (kernel_tracer_fd < 0) {
658 WARN("No kernel tracer available");
659 kernel_tracer_fd = 0;
8c0faa1d
DG
660 }
661
f3ed775e
DG
662 DBG("Kernel tracer fd %d", kernel_tracer_fd);
663}
33a2b854 664
f3ed775e
DG
665/*
666 * start_kernel_trace
667 *
668 * Start tracing by creating trace directory and sending FDs to the kernel
669 * consumer.
670 */
671static int start_kernel_trace(struct ltt_kernel_session *session)
672{
673 int ret;
8c0faa1d 674
f3ed775e
DG
675 /* Create trace directory */
676 ret = create_trace_dir(session);
1d4b027a 677 if (ret < 0) {
f3ed775e
DG
678 if (ret == -EEXIST) {
679 ret = LTTCOMM_KERN_DIR_EXIST;
680 } else {
681 ret = LTTCOMM_KERN_DIR_FAIL;
682 goto error;
33a2b854
DG
683 }
684 }
685
f3ed775e
DG
686 if (session->kconsumer_fds_sent == 0) {
687 ret = send_kconsumerd_fds(kconsumerd_cmd_sock, session);
688 if (ret < 0) {
689 ERR("Send kconsumerd fds failed");
690 ret = LTTCOMM_KERN_CONSUMER_FAIL;
691 goto error;
692 }
1d4b027a 693
f3ed775e
DG
694 session->kconsumer_fds_sent = 1;
695 }
1d4b027a
DG
696
697error:
698 return ret;
8c0faa1d
DG
699}
700
701/*
f3ed775e 702 * init_default_channel
8c0faa1d 703 *
f3ed775e 704 * Allocate a channel structure and fill it.
8c0faa1d 705 */
f3ed775e 706static struct lttng_channel *init_default_channel(void)
8c0faa1d 707{
f3ed775e 708 struct lttng_channel *chan;
1d4b027a 709
f3ed775e
DG
710 chan = malloc(sizeof(struct lttng_channel));
711 if (chan == NULL) {
712 perror("init channel malloc");
713 goto error;
8c0faa1d 714 }
1d4b027a 715
f3ed775e
DG
716 if (snprintf(chan->name, NAME_MAX, DEFAULT_CHANNEL_NAME) < 0) {
717 perror("snprintf defautl channel name");
718 return NULL;
719 }
720
721 chan->attr.overwrite = DEFAULT_CHANNEL_OVERWRITE;
722 chan->attr.subbuf_size = DEFAULT_CHANNEL_SUBBUF_SIZE;
723 chan->attr.num_subbuf = DEFAULT_CHANNEL_SUBBUF_NUM;
724 chan->attr.switch_timer_interval = DEFAULT_CHANNEL_SWITCH_TIMER;
725 chan->attr.read_timer_interval = DEFAULT_CHANNEL_READ_TIMER;
1d4b027a
DG
726
727error:
f3ed775e 728 return chan;
8c0faa1d
DG
729}
730
333f285e 731/*
f3ed775e 732 * create_kernel_session
333f285e 733 *
f3ed775e 734 * Create a kernel tracer session then create the default channel.
333f285e 735 */
f3ed775e 736static int create_kernel_session(struct ltt_session *session)
333f285e 737{
f3ed775e
DG
738 int ret;
739 struct lttng_channel *chan;
740
741 DBG("Creating kernel session");
742
743 ret = kernel_create_session(session, kernel_tracer_fd);
744 if (ret < 0) {
745 ret = LTTCOMM_KERN_SESS_FAIL;
746 goto error;
333f285e
DG
747 }
748
f3ed775e
DG
749 chan = init_default_channel();
750 if (chan == NULL) {
751 ret = LTTCOMM_FATAL;
752 goto error;
753 }
754
755 DBG("Creating default kernel channel %s", DEFAULT_CHANNEL_NAME);
756
757 ret = kernel_create_channel(session->kernel_session, chan);
758 if (ret < 0) {
759 ret = LTTCOMM_KERN_CHAN_FAIL;
760 goto error;
761 }
762
763error:
764 return ret;
333f285e
DG
765}
766
fac6795d
DG
767/*
768 * process_client_msg
769 *
5461b305
DG
770 * Process the command requested by the lttng client within the command
771 * context structure. This function make sure that the return structure (llm)
772 * is set and ready for transmission before returning.
fac6795d 773 *
e065084a 774 * Return any error encountered or 0 for success.
fac6795d 775 */
5461b305 776static int process_client_msg(struct command_ctx *cmd_ctx)
fac6795d 777{
5461b305 778 int ret;
fac6795d 779
5461b305 780 DBG("Processing client command %d", cmd_ctx->lsm->cmd_type);
fac6795d 781
f3ed775e 782 /* Listing commands don't need a session */
5461b305 783 switch (cmd_ctx->lsm->cmd_type) {
5e16da05
MD
784 case LTTNG_CREATE_SESSION:
785 case LTTNG_LIST_SESSIONS:
f3ed775e
DG
786 case LTTNG_LIST_EVENTS:
787 case LTTNG_KERNEL_LIST_EVENTS:
788 case LTTNG_LIST_TRACEABLE_APPS:
5e16da05
MD
789 break;
790 default:
f3ed775e
DG
791 DBG("Getting session %s by name", cmd_ctx->lsm->session_name);
792 cmd_ctx->session = find_session_by_name(cmd_ctx->lsm->session_name);
5461b305 793 if (cmd_ctx->session == NULL) {
f3ed775e
DG
794 /* If session name not found */
795 if (cmd_ctx->lsm->session_name != NULL) {
796 ret = LTTCOMM_SESS_NOT_FOUND;
797 } else { /* If no session name specified */
798 ret = LTTCOMM_SELECT_SESS;
799 }
5461b305 800 goto error;
379473d2 801 }
5e16da05 802 break;
379473d2
DG
803 }
804
f3ed775e
DG
805 /*
806 * Check kernel command for kernel session.
807 */
20fe2104 808 switch (cmd_ctx->lsm->cmd_type) {
f3ed775e
DG
809 case LTTNG_KERNEL_CREATE_CHANNEL:
810 case LTTNG_KERNEL_DISABLE_ALL_EVENT:
811 case LTTNG_KERNEL_DISABLE_CHANNEL:
812 case LTTNG_KERNEL_DISABLE_EVENT:
813 case LTTNG_KERNEL_ENABLE_ALL_EVENT:
814 case LTTNG_KERNEL_ENABLE_CHANNEL:
815 case LTTNG_KERNEL_ENABLE_EVENT:
816 case LTTNG_KERNEL_LIST_EVENTS:
333f285e 817 /* Kernel tracer check */
20fe2104 818 if (kernel_tracer_fd == 0) {
333f285e
DG
819 init_kernel_tracer();
820 if (kernel_tracer_fd == 0) {
821 ret = LTTCOMM_KERN_NA;
822 goto error;
823 }
20fe2104 824 }
f3ed775e
DG
825
826 /* Need a session for kernel command */
827 if (cmd_ctx->lsm->cmd_type != LTTNG_KERNEL_LIST_EVENTS &&
828 cmd_ctx->session->kernel_session == NULL) {
7b395890 829
f3ed775e
DG
830 ret = create_kernel_session(cmd_ctx->session);
831 if (ret < 0) {
832 ret = LTTCOMM_KERN_SESS_FAIL;
833 goto error;
834 }
835
7b395890 836 /* Start the kernel consumer daemon */
f3ed775e
DG
837 if (kconsumerd_pid == 0) {
838 ret = start_kconsumerd();
839 if (ret < 0) {
840 goto error;
841 }
842 }
843 }
20fe2104
DG
844 }
845
471d1693 846 /* Connect to ust apps if available pid */
5461b305 847 if (cmd_ctx->lsm->pid > 0) {
471d1693 848 /* Connect to app using ustctl API */
5461b305
DG
849 cmd_ctx->ust_sock = ust_connect_app(cmd_ctx->lsm->pid);
850 if (cmd_ctx->ust_sock < 0) {
471d1693 851 ret = LTTCOMM_NO_TRACEABLE;
5461b305 852 goto error;
471d1693
DG
853 }
854 }
855
fac6795d 856 /* Process by command type */
5461b305 857 switch (cmd_ctx->lsm->cmd_type) {
f3ed775e 858 case LTTNG_KERNEL_CREATE_CHANNEL:
20fe2104 859 {
f3ed775e 860 /* Setup lttng message with no payload */
20fe2104
DG
861 ret = setup_lttng_msg(cmd_ctx, 0);
862 if (ret < 0) {
863 goto setup_error;
864 }
865
f3ed775e 866 /* Kernel tracer */
8c0faa1d
DG
867 DBG("Creating kernel channel");
868
f3ed775e
DG
869 ret = kernel_create_channel(cmd_ctx->session->kernel_session,
870 &cmd_ctx->lsm->u.channel.chan);
20fe2104
DG
871 if (ret < 0) {
872 ret = LTTCOMM_KERN_CHAN_FAIL;
873 goto error;
874 }
875
876 ret = LTTCOMM_OK;
877 break;
878 }
e953ef25
DG
879 case LTTNG_KERNEL_DISABLE_EVENT:
880 {
881 int found = 0;
882 struct ltt_kernel_channel *chan;
883
884 /* Setup lttng message with no payload */
885 ret = setup_lttng_msg(cmd_ctx, 0);
886 if (ret < 0) {
887 goto setup_error;
888 }
889
890 /* Get channel by name and create event for that channel */
891 cds_list_for_each_entry(chan, &cmd_ctx->session->kernel_session->channel_list.head, list) {
892 if (strcmp(cmd_ctx->lsm->u.disable.channel_name, chan->channel->name) == 0) {
893 DBG("Disabling kernel event %s for channel %s.",
894 cmd_ctx->lsm->u.disable.name, cmd_ctx->lsm->u.disable.channel_name);
895
896 ret = kernel_disable_event(cmd_ctx->lsm->u.disable.name, chan);
897 if (ret < 0) {
898 ret = LTTCOMM_KERN_DISABLE_FAIL;
899 goto error;
900 }
901 found = 1;
902 break;
903 }
904 }
905
906 if (!found) {
907 ret = LTTCOMM_KERN_CHAN_NOT_FOUND;
908 } else {
909 kernel_wait_quiescent(kernel_tracer_fd);
910 ret = LTTCOMM_OK;
911 }
912 break;
913 }
f3ed775e 914 case LTTNG_KERNEL_ENABLE_EVENT:
894be886 915 {
f3ed775e
DG
916 int found = 0;
917 struct ltt_kernel_channel *chan;
918
894be886
DG
919 /* Setup lttng message with no payload */
920 ret = setup_lttng_msg(cmd_ctx, 0);
921 if (ret < 0) {
922 goto setup_error;
923 }
924
f3ed775e
DG
925 /* Get channel by name and create event for that channel */
926 cds_list_for_each_entry(chan, &cmd_ctx->session->kernel_session->channel_list.head, list) {
927 if (strcmp(cmd_ctx->lsm->u.enable.channel_name, chan->channel->name) == 0) {
928 DBG("Creating kernel event %s for channel %s.",
929 cmd_ctx->lsm->u.enable.event.name, cmd_ctx->lsm->u.enable.channel_name);
930
931 ret = kernel_create_event(chan, &cmd_ctx->lsm->u.enable.event);
932 if (ret < 0) {
933 ret = LTTCOMM_KERN_ENABLE_FAIL;
934 goto error;
935 }
936 found = 1;
937 break;
938 }
f34daff7
DG
939 }
940
f3ed775e
DG
941 if (!found) {
942 ret = LTTCOMM_KERN_CHAN_NOT_FOUND;
943 } else {
944 kernel_wait_quiescent(kernel_tracer_fd);
945 ret = LTTCOMM_OK;
946 }
894be886
DG
947 break;
948 }
f3ed775e 949 case LTTNG_KERNEL_ENABLE_ALL_EVENT:
33a2b854 950 {
f3ed775e 951 int pos, size, found;
33a2b854 952 char *event_list, *event, *ptr;
f3ed775e
DG
953 struct ltt_kernel_channel *chan;
954 struct lttng_event ev;
33a2b854
DG
955
956 /* Setup lttng message with no payload */
957 ret = setup_lttng_msg(cmd_ctx, 0);
958 if (ret < 0) {
959 goto setup_error;
960 }
961
962 DBG("Enabling all kernel event");
963
964 size = kernel_list_events(kernel_tracer_fd, &event_list);
965 if (size < 0) {
966 ret = LTTCOMM_KERN_LIST_FAIL;
967 goto error;
968 }
969
f3ed775e
DG
970 /* Get channel by name and create event for that channel */
971 cds_list_for_each_entry(chan, &cmd_ctx->session->kernel_session->channel_list.head, list) {
972 if (strcmp(cmd_ctx->lsm->u.enable.channel_name, chan->channel->name) == 0) {
973 found = 1;
974 break;
975 }
976 }
977
978 if (!found) {
979 ret = LTTCOMM_KERN_CHAN_NOT_FOUND;
980 goto error;
981 }
982
33a2b854
DG
983 ptr = event_list;
984 while ((size = sscanf(ptr, "event { name = %m[^;]; };%n\n", &event, &pos)) == 1) {
f3ed775e
DG
985 strncpy(ev.name, event, LTTNG_SYM_NAME_LEN);
986 /* Default event type for enable all */
987 ev.type = LTTNG_EVENT_TRACEPOINTS;
988 /* Enable each single tracepoint event */
989 ret = kernel_create_event(chan, &ev);
33a2b854
DG
990 if (ret < 0) {
991 ret = LTTCOMM_KERN_ENABLE_FAIL;
992 goto error;
993 }
994 /* Move pointer to the next line */
995 ptr += pos + 1;
996 free(event);
997 }
998
999 free(event_list);
1000
f3ed775e
DG
1001 /* Quiescent wait after event enable */
1002 kernel_wait_quiescent(kernel_tracer_fd);
33a2b854
DG
1003 ret = LTTCOMM_OK;
1004 break;
1005 }
f3ed775e 1006 case LTTNG_KERNEL_LIST_EVENTS:
2ef84c95
DG
1007 {
1008 char *event_list;
f3ed775e
DG
1009 ssize_t size = 0;
1010
1011 DBG("Listing kernel events");
2ef84c95
DG
1012
1013 size = kernel_list_events(kernel_tracer_fd, &event_list);
1014 if (size < 0) {
1015 ret = LTTCOMM_KERN_LIST_FAIL;
1016 goto error;
1017 }
1018
1019 /*
1020 * Setup lttng message with payload size set to the event list size in
1021 * bytes and then copy list into the llm payload.
1022 */
1023 ret = setup_lttng_msg(cmd_ctx, size);
1024 if (ret < 0) {
1025 goto setup_error;
1026 }
1027
1028 /* Copy event list into message payload */
1029 memcpy(cmd_ctx->llm->payload, event_list, size);
1030
1031 free(event_list);
1032
1033 ret = LTTCOMM_OK;
1034 break;
1035 }
f3ed775e 1036 case LTTNG_START_TRACE:
8c0faa1d
DG
1037 {
1038 struct ltt_kernel_channel *chan;
f3ed775e 1039
8c0faa1d
DG
1040 /* Setup lttng message with no payload */
1041 ret = setup_lttng_msg(cmd_ctx, 0);
1042 if (ret < 0) {
1043 goto setup_error;
1044 }
1045
f3ed775e
DG
1046 /* Kernel tracing */
1047 if (cmd_ctx->session->kernel_session != NULL) {
1048 if (cmd_ctx->session->kernel_session->metadata == NULL) {
1049 DBG("Open kernel metadata");
1050 ret = kernel_open_metadata(cmd_ctx->session->kernel_session);
1051 if (ret < 0) {
1052 ret = LTTCOMM_KERN_META_FAIL;
1053 goto error;
1054 }
1055 }
8c0faa1d 1056
f3ed775e
DG
1057 if (cmd_ctx->session->kernel_session->metadata_stream_fd == 0) {
1058 DBG("Opening kernel metadata stream");
1059 if (cmd_ctx->session->kernel_session->metadata_stream_fd == 0) {
1060 ret = kernel_open_metadata_stream(cmd_ctx->session->kernel_session);
1061 if (ret < 0) {
1062 ERR("Kernel create metadata stream failed");
1063 ret = LTTCOMM_KERN_STREAM_FAIL;
1064 goto error;
1065 }
1066 }
1067 }
8c0faa1d 1068
f3ed775e
DG
1069 /* For each channel */
1070 cds_list_for_each_entry(chan, &cmd_ctx->session->kernel_session->channel_list.head, list) {
1071 if (chan->stream_count == 0) {
1072 ret = kernel_open_channel_stream(chan);
1073 if (ret < 0) {
1074 ERR("Kernel create channel stream failed");
1075 ret = LTTCOMM_KERN_STREAM_FAIL;
1076 goto error;
1077 }
1078 /* Update the stream global counter */
1079 cmd_ctx->session->kernel_session->stream_count_global += ret;
1080 }
1081 }
1082
1083 DBG("Start kernel tracing");
1084 ret = kernel_start_session(cmd_ctx->session->kernel_session);
8c0faa1d 1085 if (ret < 0) {
f3ed775e
DG
1086 ERR("Kernel start session failed");
1087 ret = LTTCOMM_KERN_START_FAIL;
8c0faa1d
DG
1088 goto error;
1089 }
8c0faa1d 1090
f3ed775e
DG
1091 ret = start_kernel_trace(cmd_ctx->session->kernel_session);
1092 if (ret < 0) {
1093 ret = LTTCOMM_KERN_START_FAIL;
8c0faa1d
DG
1094 goto error;
1095 }
8c0faa1d 1096
f3ed775e
DG
1097 /* Quiescent wait after starting trace */
1098 kernel_wait_quiescent(kernel_tracer_fd);
8c0faa1d
DG
1099 }
1100
f3ed775e 1101 /* TODO: Start all UST traces */
8c0faa1d
DG
1102
1103 ret = LTTCOMM_OK;
1104 break;
1105 }
f3ed775e 1106 case LTTNG_STOP_TRACE:
8c0faa1d 1107 {
f3ed775e 1108 struct ltt_kernel_channel *chan;
8c0faa1d
DG
1109 /* Setup lttng message with no payload */
1110 ret = setup_lttng_msg(cmd_ctx, 0);
1111 if (ret < 0) {
1112 goto setup_error;
1113 }
1114
f3ed775e
DG
1115 /* Kernel tracer */
1116 if (cmd_ctx->session->kernel_session != NULL) {
1117 DBG("Stop kernel tracing");
84291629 1118
f3ed775e
DG
1119 ret = kernel_metadata_flush_buffer(cmd_ctx->session->kernel_session->metadata_stream_fd);
1120 if (ret < 0) {
1121 ERR("Kernel metadata flush failed");
1122 }
8c0faa1d 1123
f3ed775e
DG
1124 cds_list_for_each_entry(chan, &cmd_ctx->session->kernel_session->channel_list.head, list) {
1125 ret = kernel_flush_buffer(chan);
1126 if (ret < 0) {
1127 ERR("Kernel flush buffer error");
1128 }
1129 }
1130
1131 ret = kernel_stop_session(cmd_ctx->session->kernel_session);
1132 if (ret < 0) {
1133 ERR("Kernel stop session failed");
1134 ret = LTTCOMM_KERN_STOP_FAIL;
1135 goto error;
1136 }
1137
1138 /* Quiescent wait after stopping trace */
1139 kernel_wait_quiescent(kernel_tracer_fd);
8c0faa1d
DG
1140 }
1141
f3ed775e 1142 /* TODO : User-space tracer */
8c0faa1d
DG
1143
1144 ret = LTTCOMM_OK;
1145 break;
1146 }
5e16da05
MD
1147 case LTTNG_CREATE_SESSION:
1148 {
5461b305
DG
1149 /* Setup lttng message with no payload */
1150 ret = setup_lttng_msg(cmd_ctx, 0);
1151 if (ret < 0) {
1152 goto setup_error;
1153 }
1154
f3ed775e 1155 ret = create_session(cmd_ctx->lsm->session_name, cmd_ctx->lsm->path);
5e16da05 1156 if (ret < 0) {
f3ed775e 1157 if (ret == -EEXIST) {
5e16da05
MD
1158 ret = LTTCOMM_EXIST_SESS;
1159 } else {
aaf97519 1160 ret = LTTCOMM_FATAL;
aaf97519 1161 }
5461b305 1162 goto error;
8028d920 1163 }
1657e9bb 1164
5461b305 1165 ret = LTTCOMM_OK;
5e16da05
MD
1166 break;
1167 }
1168 case LTTNG_DESTROY_SESSION:
1169 {
5461b305
DG
1170 /* Setup lttng message with no payload */
1171 ret = setup_lttng_msg(cmd_ctx, 0);
1172 if (ret < 0) {
1173 goto setup_error;
1174 }
1175
f3ed775e
DG
1176 /* Clean kernel session teardown */
1177 teardown_kernel_session(cmd_ctx->session);
1178
1179 ret = destroy_session(cmd_ctx->lsm->session_name);
5e16da05 1180 if (ret < 0) {
f3ed775e 1181 ret = LTTCOMM_FATAL;
5461b305 1182 goto error;
5e16da05 1183 }
1657e9bb 1184
5461b305
DG
1185 ret = LTTCOMM_OK;
1186 break;
5e16da05 1187 }
f3ed775e 1188 /*
5e16da05
MD
1189 case LTTNG_LIST_TRACES:
1190 {
5461b305 1191 unsigned int trace_count;
1657e9bb 1192
5461b305 1193 trace_count = get_trace_count_per_session(cmd_ctx->session);
5e16da05
MD
1194 if (trace_count == 0) {
1195 ret = LTTCOMM_NO_TRACE;
5461b305 1196 goto error;
1657e9bb 1197 }
df0da139 1198
5461b305
DG
1199 ret = setup_lttng_msg(cmd_ctx, sizeof(struct lttng_trace) * trace_count);
1200 if (ret < 0) {
1201 goto setup_error;
df0da139 1202 }
ca95a216 1203
5461b305
DG
1204 get_traces_per_session(cmd_ctx->session,
1205 (struct lttng_trace *)(cmd_ctx->llm->payload));
1206
1207 ret = LTTCOMM_OK;
5e16da05
MD
1208 break;
1209 }
f3ed775e
DG
1210 */
1211 /*
5e16da05
MD
1212 case UST_CREATE_TRACE:
1213 {
5461b305 1214 ret = setup_lttng_msg(cmd_ctx, 0);
5e16da05 1215 if (ret < 0) {
5461b305 1216 goto setup_error;
fac6795d 1217 }
ce3d728c 1218
5461b305
DG
1219 ret = ust_create_trace(cmd_ctx);
1220 if (ret < 0) {
f3ed775e 1221 goto error;
5461b305
DG
1222 }
1223 break;
5e16da05 1224 }
f3ed775e
DG
1225 */
1226 case LTTNG_LIST_TRACEABLE_APPS:
5e16da05 1227 {
5461b305
DG
1228 unsigned int app_count;
1229
1230 app_count = get_app_count();
1231 DBG("Traceable application count : %d", app_count);
5e16da05
MD
1232 if (app_count == 0) {
1233 ret = LTTCOMM_NO_APPS;
5461b305 1234 goto error;
ce3d728c 1235 }
520ff687 1236
5461b305
DG
1237 ret = setup_lttng_msg(cmd_ctx, sizeof(pid_t) * app_count);
1238 if (ret < 0) {
1239 goto setup_error;
520ff687 1240 }
57167058 1241
5461b305 1242 get_app_list_pids((pid_t *)(cmd_ctx->llm->payload));
5e16da05 1243
5461b305 1244 ret = LTTCOMM_OK;
5e16da05
MD
1245 break;
1246 }
f3ed775e 1247 /*
5e16da05
MD
1248 case UST_START_TRACE:
1249 {
5461b305
DG
1250 ret = setup_lttng_msg(cmd_ctx, 0);
1251 if (ret < 0) {
1252 goto setup_error;
1253 }
ca95a216 1254
5461b305
DG
1255 ret = ust_start_trace(cmd_ctx);
1256 if (ret < 0) {
1257 goto setup_error;
1258 }
1259 break;
5e16da05
MD
1260 }
1261 case UST_STOP_TRACE:
1262 {
5461b305
DG
1263 ret = setup_lttng_msg(cmd_ctx, 0);
1264 if (ret < 0) {
1265 goto setup_error;
1266 }
ca95a216 1267
5461b305
DG
1268 ret = ust_stop_trace(cmd_ctx);
1269 if (ret < 0) {
1270 goto setup_error;
1271 }
1272 break;
5e16da05 1273 }
f3ed775e 1274 */
5e16da05
MD
1275 case LTTNG_LIST_SESSIONS:
1276 {
5461b305
DG
1277 unsigned int session_count;
1278
1279 session_count = get_session_count();
5e16da05 1280 if (session_count == 0) {
f3ed775e 1281 ret = LTTCOMM_NO_SESSION;
5461b305 1282 goto error;
57167058 1283 }
5e16da05 1284
5461b305
DG
1285 ret = setup_lttng_msg(cmd_ctx, sizeof(struct lttng_session) * session_count);
1286 if (ret < 0) {
1287 goto setup_error;
e065084a 1288 }
5e16da05 1289
5461b305 1290 get_lttng_session((struct lttng_session *)(cmd_ctx->llm->payload));
5e16da05 1291
5461b305 1292 ret = LTTCOMM_OK;
5e16da05
MD
1293 break;
1294 }
1295 default:
1296 /* Undefined command */
5461b305
DG
1297 ret = setup_lttng_msg(cmd_ctx, 0);
1298 if (ret < 0) {
1299 goto setup_error;
1300 }
1301
5e16da05 1302 ret = LTTCOMM_UND;
5461b305 1303 break;
fac6795d
DG
1304 }
1305
5461b305
DG
1306 /* Set return code */
1307 cmd_ctx->llm->ret_code = ret;
ca95a216 1308
e065084a
DG
1309 return ret;
1310
5461b305 1311error:
5461b305
DG
1312 if (cmd_ctx->llm == NULL) {
1313 DBG("Missing llm structure. Allocating one.");
894be886 1314 if (setup_lttng_msg(cmd_ctx, 0) < 0) {
5461b305
DG
1315 goto setup_error;
1316 }
1317 }
e065084a 1318 /* Notify client of error */
5461b305 1319 cmd_ctx->llm->ret_code = ret;
e065084a 1320
5461b305 1321setup_error:
8028d920 1322 return ret;
fac6795d
DG
1323}
1324
1d4b027a
DG
1325/*
1326 * thread_manage_clients
1327 *
1328 * This thread manage all clients request using the unix
1329 * client socket for communication.
1330 */
1331static void *thread_manage_clients(void *data)
1332{
1333 int sock, ret;
1334 struct command_ctx *cmd_ctx;
1335
1336 DBG("[thread] Manage client started");
1337
1338 ret = lttcomm_listen_unix_sock(client_sock);
1339 if (ret < 0) {
1340 goto error;
1341 }
1342
1343 /* Notify parent pid that we are ready
1344 * to accept command for client side.
1345 */
1346 if (opt_sig_parent) {
1347 kill(ppid, SIGCHLD);
1348 }
1349
1350 while (1) {
1351 /* Blocking call, waiting for transmission */
1352 DBG("Accepting client command ...");
1353 sock = lttcomm_accept_unix_sock(client_sock);
1354 if (sock < 0) {
1355 goto error;
1356 }
1357
1358 /* Allocate context command to process the client request */
1359 cmd_ctx = malloc(sizeof(struct command_ctx));
1360
1361 /* Allocate data buffer for reception */
1362 cmd_ctx->lsm = malloc(sizeof(struct lttcomm_session_msg));
1363 cmd_ctx->llm = NULL;
1364 cmd_ctx->session = NULL;
1365
1366 /*
1367 * Data is received from the lttng client. The struct
1368 * lttcomm_session_msg (lsm) contains the command and data request of
1369 * the client.
1370 */
1371 DBG("Receiving data from client ...");
1372 ret = lttcomm_recv_unix_sock(sock, cmd_ctx->lsm, sizeof(struct lttcomm_session_msg));
1373 if (ret <= 0) {
1374 continue;
1375 }
1376
f7776ea7
DG
1377 // TODO: Validate cmd_ctx including sanity check for security purpose.
1378
1d4b027a
DG
1379 /*
1380 * This function dispatch the work to the kernel or userspace tracer
1381 * libs and fill the lttcomm_lttng_msg data structure of all the needed
1382 * informations for the client. The command context struct contains
1383 * everything this function may needs.
1384 */
1385 ret = process_client_msg(cmd_ctx);
1386 if (ret < 0) {
1387 /* TODO: Inform client somehow of the fatal error. At this point,
1388 * ret < 0 means that a malloc failed (ENOMEM). */
1389 /* Error detected but still accept command */
1390 clean_command_ctx(cmd_ctx);
1391 continue;
1392 }
1393
1394 DBG("Sending response (size: %d, retcode: %d)",
1395 cmd_ctx->lttng_msg_size, cmd_ctx->llm->ret_code);
1396 ret = send_unix_sock(sock, cmd_ctx->llm, cmd_ctx->lttng_msg_size);
1397 if (ret < 0) {
1398 ERR("Failed to send data back to client");
1399 }
1400
1401 clean_command_ctx(cmd_ctx);
d6e4fca4
DG
1402
1403 /* End of transmission */
1404 close(sock);
1d4b027a
DG
1405 }
1406
1407error:
1408 return NULL;
1409}
1410
1411
fac6795d
DG
1412/*
1413 * usage function on stderr
1414 */
1415static void usage(void)
1416{
b716ce68 1417 fprintf(stderr, "Usage: %s OPTIONS\n\nOptions:\n", progname);
d6f42150
DG
1418 fprintf(stderr, " -h, --help Display this usage.\n");
1419 fprintf(stderr, " -c, --client-sock PATH Specify path for the client unix socket\n");
1420 fprintf(stderr, " -a, --apps-sock PATH Specify path for apps unix socket\n");
1421 fprintf(stderr, " --kconsumerd-err-sock PATH Specify path for the kernel consumer error socket\n");
1422 fprintf(stderr, " --kconsumerd-cmd-sock PATH Specify path for the kernel consumer command socket\n");
1423 fprintf(stderr, " -d, --daemonize Start as a daemon.\n");
1424 fprintf(stderr, " -g, --group NAME Specify the tracing group name. (default: tracing)\n");
1425 fprintf(stderr, " -V, --version Show version number.\n");
1426 fprintf(stderr, " -S, --sig-parent Send SIGCHLD to parent pid to notify readiness.\n");
1427 fprintf(stderr, " -q, --quiet No output at all.\n");
1428 fprintf(stderr, " -v, --verbose Verbose mode. Activate DBG() macro.\n");
fac6795d
DG
1429}
1430
1431/*
1432 * daemon argument parsing
1433 */
1434static int parse_args(int argc, char **argv)
1435{
1436 int c;
1437
1438 static struct option long_options[] = {
1439 { "client-sock", 1, 0, 'c' },
1440 { "apps-sock", 1, 0, 'a' },
d6f42150
DG
1441 { "kconsumerd-cmd-sock", 1, 0, 0 },
1442 { "kconsumerd-err-sock", 1, 0, 0 },
fac6795d 1443 { "daemonize", 0, 0, 'd' },
5b8719f5 1444 { "sig-parent", 0, 0, 'S' },
fac6795d
DG
1445 { "help", 0, 0, 'h' },
1446 { "group", 1, 0, 'g' },
1447 { "version", 0, 0, 'V' },
75462a81 1448 { "quiet", 0, 0, 'q' },
3f9947db 1449 { "verbose", 0, 0, 'v' },
fac6795d
DG
1450 { NULL, 0, 0, 0 }
1451 };
1452
1453 while (1) {
1454 int option_index = 0;
d6f42150 1455 c = getopt_long(argc, argv, "dhqvVS" "a:c:g:s:E:C:", long_options, &option_index);
fac6795d
DG
1456 if (c == -1) {
1457 break;
1458 }
1459
1460 switch (c) {
1461 case 0:
1462 fprintf(stderr, "option %s", long_options[option_index].name);
1463 if (optarg) {
1464 fprintf(stderr, " with arg %s\n", optarg);
1465 }
1466 break;
b716ce68 1467 case 'c':
fac6795d
DG
1468 snprintf(client_unix_sock_path, PATH_MAX, "%s", optarg);
1469 break;
1470 case 'a':
1471 snprintf(apps_unix_sock_path, PATH_MAX, "%s", optarg);
1472 break;
1473 case 'd':
1474 opt_daemon = 1;
1475 break;
1476 case 'g':
1477 opt_tracing_group = strdup(optarg);
1478 break;
1479 case 'h':
1480 usage();
1481 exit(EXIT_FAILURE);
1482 case 'V':
1483 fprintf(stdout, "%s\n", VERSION);
1484 exit(EXIT_SUCCESS);
5b8719f5
DG
1485 case 'S':
1486 opt_sig_parent = 1;
1487 break;
d6f42150
DG
1488 case 'E':
1489 snprintf(kconsumerd_err_unix_sock_path, PATH_MAX, "%s", optarg);
1490 break;
1491 case 'C':
1492 snprintf(kconsumerd_cmd_unix_sock_path, PATH_MAX, "%s", optarg);
1493 break;
75462a81
DG
1494 case 'q':
1495 opt_quiet = 1;
1496 break;
3f9947db
DG
1497 case 'v':
1498 opt_verbose = 1;
1499 break;
fac6795d
DG
1500 default:
1501 /* Unknown option or other error.
1502 * Error is printed by getopt, just return */
1503 return -1;
1504 }
1505 }
1506
1507 return 0;
1508}
1509
1510/*
1511 * init_daemon_socket
1512 *
1513 * Creates the two needed socket by the daemon.
d6f42150
DG
1514 * apps_sock - The communication socket for all UST apps.
1515 * client_sock - The communication of the cli tool (lttng).
fac6795d
DG
1516 */
1517static int init_daemon_socket()
1518{
1519 int ret = 0;
1520 mode_t old_umask;
1521
1522 old_umask = umask(0);
1523
1524 /* Create client tool unix socket */
d6f42150
DG
1525 client_sock = lttcomm_create_unix_sock(client_unix_sock_path);
1526 if (client_sock < 0) {
1527 ERR("Create unix sock failed: %s", client_unix_sock_path);
fac6795d
DG
1528 ret = -1;
1529 goto end;
1530 }
1531
1532 /* File permission MUST be 660 */
1533 ret = chmod(client_unix_sock_path, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP);
1534 if (ret < 0) {
d6f42150 1535 ERR("Set file permissions failed: %s", client_unix_sock_path);
fac6795d
DG
1536 perror("chmod");
1537 goto end;
1538 }
1539
1540 /* Create the application unix socket */
d6f42150
DG
1541 apps_sock = lttcomm_create_unix_sock(apps_unix_sock_path);
1542 if (apps_sock < 0) {
1543 ERR("Create unix sock failed: %s", apps_unix_sock_path);
fac6795d
DG
1544 ret = -1;
1545 goto end;
1546 }
1547
d6f42150 1548 /* File permission MUST be 666 */
fac6795d
DG
1549 ret = chmod(apps_unix_sock_path, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
1550 if (ret < 0) {
d6f42150 1551 ERR("Set file permissions failed: %s", apps_unix_sock_path);
fac6795d
DG
1552 perror("chmod");
1553 goto end;
1554 }
1555
1556end:
1557 umask(old_umask);
1558 return ret;
1559}
1560
1561/*
1562 * check_existing_daemon
1563 *
1564 * Check if the global socket is available.
62bd06d8 1565 * If yes, error is returned.
fac6795d
DG
1566 */
1567static int check_existing_daemon()
1568{
1569 int ret;
1570
1571 ret = access(client_unix_sock_path, F_OK);
1572 if (ret == 0) {
1573 ret = access(apps_unix_sock_path, F_OK);
1574 }
1575
1576 return ret;
1577}
1578
1579/*
62bd06d8 1580 * get_home_dir
fac6795d 1581 *
62bd06d8
DG
1582 * Return pointer to home directory path using
1583 * the env variable HOME.
fac6795d 1584 *
62bd06d8 1585 * Default : /tmp
fac6795d
DG
1586 */
1587static const char *get_home_dir(void)
1588{
1589 const char *home_path;
1590
686204ab 1591 if ((home_path = (const char *) getenv("HOME")) == NULL) {
fac6795d
DG
1592 home_path = default_home_dir;
1593 }
1594
1595 return home_path;
1596}
1597
1598/*
d6f42150 1599 * set_permissions
fac6795d 1600 *
5e16da05
MD
1601 * Set the tracing group gid onto the client socket.
1602 *
1603 * Race window between mkdir and chown is OK because we are going from
1604 * less permissive (root.root) to more permissive (root.tracing).
fac6795d 1605 */
d6f42150 1606static int set_permissions(void)
fac6795d
DG
1607{
1608 int ret;
1609 struct group *grp;
1610
1611 /* Decide which group name to use */
1612 (opt_tracing_group != NULL) ?
1613 (grp = getgrnam(opt_tracing_group)) :
1614 (grp = getgrnam(default_tracing_group));
1615
1616 if (grp == NULL) {
75462a81 1617 ERR("Missing tracing group. Aborting execution.\n");
fac6795d
DG
1618 ret = -1;
1619 goto end;
1620 }
1621
d6f42150
DG
1622 /* Set lttng run dir */
1623 ret = chown(LTTNG_RUNDIR, 0, grp->gr_gid);
1624 if (ret < 0) {
1625 ERR("Unable to set group on " LTTNG_RUNDIR);
1626 perror("chown");
1627 }
1628
1629 /* lttng client socket path */
fac6795d
DG
1630 ret = chown(client_unix_sock_path, 0, grp->gr_gid);
1631 if (ret < 0) {
d6f42150
DG
1632 ERR("Unable to set group on %s", client_unix_sock_path);
1633 perror("chown");
1634 }
1635
1636 /* kconsumerd error socket path */
1637 ret = chown(kconsumerd_err_unix_sock_path, 0, grp->gr_gid);
1638 if (ret < 0) {
1639 ERR("Unable to set group on %s", kconsumerd_err_unix_sock_path);
fac6795d
DG
1640 perror("chown");
1641 }
1642
d6f42150 1643 DBG("All permissions are set");
e07ae692 1644
fac6795d
DG
1645end:
1646 return ret;
1647}
1648
d6f42150
DG
1649/*
1650 * create_lttng_rundir
1651 *
1652 * Create the lttng run directory needed for all
1653 * global sockets and pipe.
1654 */
1655static int create_lttng_rundir(void)
1656{
1657 int ret;
1658
1659 ret = mkdir(LTTNG_RUNDIR, S_IRWXU | S_IRWXG );
1660 if (ret < 0) {
b1f11e69
DG
1661 if (errno != EEXIST) {
1662 ERR("Unable to create " LTTNG_RUNDIR);
1663 goto error;
1664 } else {
1665 ret = 0;
1666 }
d6f42150
DG
1667 }
1668
1669error:
1670 return ret;
1671}
1672
1673/*
1674 * set_kconsumerd_sockets
1675 *
1676 * Setup sockets and directory needed by the kconsumerd
1677 * communication with the session daemon.
1678 */
1679static int set_kconsumerd_sockets(void)
1680{
1681 int ret;
1682
1683 if (strlen(kconsumerd_err_unix_sock_path) == 0) {
1684 snprintf(kconsumerd_err_unix_sock_path, PATH_MAX, KCONSUMERD_ERR_SOCK_PATH);
1685 }
1686
1687 if (strlen(kconsumerd_cmd_unix_sock_path) == 0) {
1688 snprintf(kconsumerd_cmd_unix_sock_path, PATH_MAX, KCONSUMERD_CMD_SOCK_PATH);
1689 }
1690
1691 ret = mkdir(KCONSUMERD_PATH, S_IRWXU | S_IRWXG);
1692 if (ret < 0) {
6beb2242
DG
1693 if (errno != EEXIST) {
1694 ERR("Failed to create " KCONSUMERD_PATH);
1695 goto error;
1696 }
1697 ret = 0;
d6f42150
DG
1698 }
1699
1700 /* Create the kconsumerd error unix socket */
1701 kconsumerd_err_sock = lttcomm_create_unix_sock(kconsumerd_err_unix_sock_path);
1702 if (kconsumerd_err_sock < 0) {
1703 ERR("Create unix sock failed: %s", kconsumerd_err_unix_sock_path);
1704 ret = -1;
1705 goto error;
1706 }
1707
1708 /* File permission MUST be 660 */
1709 ret = chmod(kconsumerd_err_unix_sock_path, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP);
1710 if (ret < 0) {
1711 ERR("Set file permissions failed: %s", kconsumerd_err_unix_sock_path);
1712 perror("chmod");
1713 goto error;
1714 }
1715
1716error:
1717 return ret;
1718}
1719
fac6795d 1720/*
62bd06d8 1721 * sighandler
fac6795d 1722 *
62bd06d8 1723 * Signal handler for the daemon
fac6795d
DG
1724 */
1725static void sighandler(int sig)
1726{
1727 switch (sig) {
1728 case SIGPIPE:
e07ae692 1729 DBG("SIGPIPE catched");
87378cf5 1730 return;
fac6795d 1731 case SIGINT:
e07ae692
DG
1732 DBG("SIGINT catched");
1733 cleanup();
1734 break;
fac6795d 1735 case SIGTERM:
e07ae692 1736 DBG("SIGTERM catched");
fac6795d 1737 cleanup();
686204ab 1738 break;
fac6795d
DG
1739 default:
1740 break;
1741 }
1742
1743 exit(EXIT_SUCCESS);
1744}
1745
1746/*
1d4b027a 1747 * set_signal_handler
fac6795d 1748 *
1d4b027a
DG
1749 * Setup signal handler for :
1750 * SIGINT, SIGTERM, SIGPIPE
fac6795d 1751 */
1d4b027a 1752static int set_signal_handler(void)
fac6795d 1753{
1d4b027a
DG
1754 int ret = 0;
1755 struct sigaction sa;
1756 sigset_t sigset;
fac6795d 1757
1d4b027a
DG
1758 if ((ret = sigemptyset(&sigset)) < 0) {
1759 perror("sigemptyset");
1760 return ret;
1761 }
d6f42150 1762
1d4b027a
DG
1763 sa.sa_handler = sighandler;
1764 sa.sa_mask = sigset;
1765 sa.sa_flags = 0;
1766 if ((ret = sigaction(SIGTERM, &sa, NULL)) < 0) {
1767 perror("sigaction");
1768 return ret;
d6f42150
DG
1769 }
1770
1d4b027a
DG
1771 if ((ret = sigaction(SIGINT, &sa, NULL)) < 0) {
1772 perror("sigaction");
1773 return ret;
d6f42150 1774 }
aaf26714 1775
1d4b027a
DG
1776 if ((ret = sigaction(SIGPIPE, &sa, NULL)) < 0) {
1777 perror("sigaction");
1778 return ret;
8c0faa1d
DG
1779 }
1780
1d4b027a
DG
1781 DBG("Signal handler set for SIGTERM, SIGPIPE and SIGINT");
1782
1783 return ret;
fac6795d
DG
1784}
1785
f3ed775e
DG
1786/*
1787 * set_ulimit
1788 *
1789 * Set open files limit to unlimited. This daemon can open a large number of
1790 * file descriptors in order to consumer multiple kernel traces.
1791 */
1792static void set_ulimit(void)
1793{
1794 int ret;
1795 struct rlimit lim;
1796
1797 lim.rlim_cur = 65535;
1798 lim.rlim_max = 65535;
1799
1800 ret = setrlimit(RLIMIT_NOFILE, &lim);
1801 if (ret < 0) {
1802 perror("failed to set open files limit");
1803 }
1804}
1805
fac6795d
DG
1806/*
1807 * main
1808 */
1809int main(int argc, char **argv)
1810{
fac6795d
DG
1811 int ret = 0;
1812 void *status;
fac6795d
DG
1813
1814 /* Parse arguments */
1815 progname = argv[0];
1816 if ((ret = parse_args(argc, argv) < 0)) {
1817 goto error;
1818 }
1819
1820 /* Daemonize */
1821 if (opt_daemon) {
53094c05
DG
1822 ret = daemon(0, 0);
1823 if (ret < 0) {
1824 perror("daemon");
1825 goto error;
1826 }
fac6795d
DG
1827 }
1828
1829 /* Check if daemon is UID = 0 */
1830 is_root = !getuid();
1831
1832 /* Set all sockets path */
1833 if (is_root) {
d6f42150
DG
1834 ret = create_lttng_rundir();
1835 if (ret < 0) {
1836 goto error;
1837 }
1838
fac6795d 1839 if (strlen(apps_unix_sock_path) == 0) {
d6f42150
DG
1840 snprintf(apps_unix_sock_path, PATH_MAX,
1841 DEFAULT_GLOBAL_APPS_UNIX_SOCK);
fac6795d
DG
1842 }
1843
1844 if (strlen(client_unix_sock_path) == 0) {
d6f42150
DG
1845 snprintf(client_unix_sock_path, PATH_MAX,
1846 DEFAULT_GLOBAL_CLIENT_UNIX_SOCK);
1847 }
1848
1849 ret = set_kconsumerd_sockets();
1850 if (ret < 0) {
1851 goto error;
fac6795d 1852 }
20fe2104
DG
1853
1854 /* Setup kernel tracer */
1855 init_kernel_tracer();
f3ed775e
DG
1856
1857 /* Set ulimit for open files */
1858 set_ulimit();
fac6795d
DG
1859 } else {
1860 if (strlen(apps_unix_sock_path) == 0) {
d6f42150
DG
1861 snprintf(apps_unix_sock_path, PATH_MAX,
1862 DEFAULT_HOME_APPS_UNIX_SOCK, get_home_dir());
fac6795d
DG
1863 }
1864
1865 /* Set the cli tool unix socket path */
1866 if (strlen(client_unix_sock_path) == 0) {
d6f42150
DG
1867 snprintf(client_unix_sock_path, PATH_MAX,
1868 DEFAULT_HOME_CLIENT_UNIX_SOCK, get_home_dir());
fac6795d
DG
1869 }
1870 }
1871
847177cd
DG
1872 DBG("Client socket path %s", client_unix_sock_path);
1873 DBG("Application socket path %s", apps_unix_sock_path);
1874
fac6795d
DG
1875 /* See if daemon already exist. If any of the two
1876 * socket needed by the daemon are present, this test fails
1877 */
1878 if ((ret = check_existing_daemon()) == 0) {
75462a81 1879 ERR("Already running daemon.\n");
ab118b20 1880 /* We do not goto error because we must not
d6f42150 1881 * cleanup() because a daemon is already running.
ab118b20 1882 */
5e16da05 1883 exit(EXIT_FAILURE);
fac6795d
DG
1884 }
1885
1886 if (set_signal_handler() < 0) {
1887 goto error;
1888 }
1889
d6f42150 1890 /* Setup the needed unix socket */
fac6795d
DG
1891 if (init_daemon_socket() < 0) {
1892 goto error;
1893 }
1894
1895 /* Set credentials to socket */
d6f42150 1896 if (is_root && (set_permissions() < 0)) {
fac6795d
DG
1897 goto error;
1898 }
1899
5b8719f5
DG
1900 /* Get parent pid if -S, --sig-parent is specified. */
1901 if (opt_sig_parent) {
1902 ppid = getppid();
1903 }
1904
fac6795d
DG
1905 while (1) {
1906 /* Create thread to manage the client socket */
1d4b027a 1907 ret = pthread_create(&client_thread, NULL, thread_manage_clients, (void *) NULL);
fac6795d
DG
1908 if (ret != 0) {
1909 perror("pthread_create");
1910 goto error;
1911 }
1912
1913 /* Create thread to manage application socket */
1d4b027a 1914 ret = pthread_create(&apps_thread, NULL, thread_manage_apps, (void *) NULL);
fac6795d
DG
1915 if (ret != 0) {
1916 perror("pthread_create");
1917 goto error;
1918 }
1919
1d4b027a
DG
1920 ret = pthread_join(client_thread, &status);
1921 if (ret != 0) {
1922 perror("pthread_join");
1923 goto error;
fac6795d
DG
1924 }
1925 }
1926
1927 cleanup();
5e16da05 1928 exit(EXIT_SUCCESS);
fac6795d
DG
1929
1930error:
1931 cleanup();
5e16da05 1932 exit(EXIT_FAILURE);
fac6795d 1933}
This page took 0.126558 seconds and 5 git commands to generate.