Commit | Line | Data |
---|---|---|
826d496d | 1 | /* |
ab5be9fa MJ |
2 | * Copyright (C) 2011 David Goulet <david.goulet@polymtl.ca> |
3 | * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
4 | * Copyright (C) 2013 Jérémie Galarneau <jeremie.galarneau@efficios.com> | |
fac6795d | 5 | * |
ab5be9fa | 6 | * SPDX-License-Identifier: GPL-2.0-only |
91d76f53 | 7 | * |
fac6795d DG |
8 | */ |
9 | ||
6c1c0768 | 10 | #define _LGPL_SOURCE |
fac6795d DG |
11 | #include <getopt.h> |
12 | #include <grp.h> | |
13 | #include <limits.h> | |
0bb7724a | 14 | #include <paths.h> |
fac6795d DG |
15 | #include <pthread.h> |
16 | #include <signal.h> | |
17 | #include <stdio.h> | |
18 | #include <stdlib.h> | |
19 | #include <string.h> | |
331744e3 | 20 | #include <inttypes.h> |
0fdd1e2c | 21 | #include <sys/mman.h> |
b73401da | 22 | #include <sys/mount.h> |
1e307fab | 23 | #include <sys/resource.h> |
fac6795d DG |
24 | #include <sys/socket.h> |
25 | #include <sys/stat.h> | |
26 | #include <sys/types.h> | |
0fdd1e2c | 27 | #include <sys/wait.h> |
5c827ce0 | 28 | #include <urcu/uatomic.h> |
fac6795d | 29 | #include <unistd.h> |
4f0b90ee | 30 | #include <ctype.h> |
fac6795d | 31 | |
990570ed | 32 | #include <common/common.h> |
d27c42b8 | 33 | #include <common/compat/socket.h> |
e8fa9fb0 | 34 | #include <common/compat/getenv.h> |
db758600 DG |
35 | #include <common/defaults.h> |
36 | #include <common/kernel-consumer/kernel-consumer.h> | |
50c8f484 | 37 | #include <common/futex.h> |
00e2e675 | 38 | #include <common/relayd/relayd.h> |
81b86775 | 39 | #include <common/utils.h> |
3ccdf997 | 40 | #include <common/daemonize.h> |
f40ef1d5 | 41 | #include <common/config/session-config.h> |
dcabc190 | 42 | #include <common/dynamic-buffer.h> |
76fcf151 | 43 | #include <lttng/event-internal.h> |
fac6795d | 44 | |
10a8a223 | 45 | #include "lttng-sessiond.h" |
7972aab2 | 46 | #include "buffer-registry.h" |
54d01ffb | 47 | #include "channel.h" |
2f77fc4b | 48 | #include "cmd.h" |
00e2e675 | 49 | #include "consumer.h" |
099e26bd | 50 | #include "context.h" |
54d01ffb | 51 | #include "event.h" |
90aa04a1 | 52 | #include "event-notifier-error-accounting.h" |
4771f025 | 53 | #include "kernel.h" |
f1e16794 | 54 | #include "kernel-consumer.h" |
75018ab6 | 55 | #include "lttng-ust-ctl.h" |
00e2e675 | 56 | #include "ust-consumer.h" |
8e68d1c8 | 57 | #include "utils.h" |
4063050c | 58 | #include "fd-limit.h" |
8782cc74 | 59 | #include "health-sessiond.h" |
8ac94142 | 60 | #include "testpoint.h" |
f9d2ba6a | 61 | #include "notify-apps.h" |
022d91ba | 62 | #include "agent-thread.h" |
fb198a11 | 63 | #include "save.h" |
b3530820 JG |
64 | #include "notification-thread.h" |
65 | #include "notification-thread-commands.h" | |
db66e574 | 66 | #include "rotation-thread.h" |
7c1d2758 | 67 | #include "agent.h" |
5e97de00 | 68 | #include "ht-cleanup.h" |
e6142f2e | 69 | #include "sessiond-config.h" |
8e319828 | 70 | #include "timer.h" |
a3707772 | 71 | #include "thread.h" |
917a718d | 72 | #include "client.h" |
5d1b0219 | 73 | #include "dispatch.h" |
1785d7f2 | 74 | #include "register.h" |
7649924e | 75 | #include "manage-apps.h" |
5b093681 | 76 | #include "manage-kernel.h" |
1d25334c | 77 | #include "modprobe.h" |
ebaeda94 | 78 | |
4fc83d94 PP |
79 | static const char *help_msg = |
80 | #ifdef LTTNG_EMBED_HELP | |
81 | #include <lttng-sessiond.8.h> | |
82 | #else | |
83 | NULL | |
84 | #endif | |
85 | ; | |
86 | ||
90aa04a1 | 87 | #define EVENT_NOTIFIER_ERROR_COUNTER_NUMBER_OF_BUCKET_MAX 65535 |
761ffce2 FD |
88 | #define EVENT_NOTIFIER_ERROR_BUFFER_SIZE_BASE_OPTION_STR \ |
89 | "event-notifier-error-buffer-size" | |
90 | #define EVENT_NOTIFIER_ERROR_BUFFER_SIZE_KERNEL_OPTION_STR \ | |
91 | EVENT_NOTIFIER_ERROR_BUFFER_SIZE_BASE_OPTION_STR "-kernel" | |
92 | #define EVENT_NOTIFIER_ERROR_BUFFER_SIZE_USERSPACE_OPTION_STR \ | |
93 | EVENT_NOTIFIER_ERROR_BUFFER_SIZE_BASE_OPTION_STR "-userspace" | |
94 | ||
90aa04a1 | 95 | |
fac6795d | 96 | const char *progname; |
c9cb3e7d | 97 | static int lockfile_fd = -1; |
a3bc3918 | 98 | static int opt_print_version; |
3bd1e081 | 99 | |
0bb7724a DG |
100 | /* Set to 1 when a SIGUSR1 signal is received. */ |
101 | static int recv_child_signal; | |
102 | ||
26296c48 JG |
103 | /* Command line options */ |
104 | static const struct option long_options[] = { | |
0f5ea17c JG |
105 | { "client-sock", required_argument, 0, 'c' }, |
106 | { "apps-sock", required_argument, 0, 'a' }, | |
107 | { "kconsumerd-cmd-sock", required_argument, 0, '\0' }, | |
108 | { "kconsumerd-err-sock", required_argument, 0, '\0' }, | |
109 | { "ustconsumerd32-cmd-sock", required_argument, 0, '\0' }, | |
110 | { "ustconsumerd32-err-sock", required_argument, 0, '\0' }, | |
111 | { "ustconsumerd64-cmd-sock", required_argument, 0, '\0' }, | |
112 | { "ustconsumerd64-err-sock", required_argument, 0, '\0' }, | |
113 | { "consumerd32-path", required_argument, 0, '\0' }, | |
114 | { "consumerd32-libdir", required_argument, 0, '\0' }, | |
115 | { "consumerd64-path", required_argument, 0, '\0' }, | |
116 | { "consumerd64-libdir", required_argument, 0, '\0' }, | |
117 | { "daemonize", no_argument, 0, 'd' }, | |
118 | { "background", no_argument, 0, 'b' }, | |
119 | { "sig-parent", no_argument, 0, 'S' }, | |
120 | { "help", no_argument, 0, 'h' }, | |
121 | { "group", required_argument, 0, 'g' }, | |
122 | { "version", no_argument, 0, 'V' }, | |
123 | { "quiet", no_argument, 0, 'q' }, | |
124 | { "verbose", no_argument, 0, 'v' }, | |
125 | { "verbose-consumer", no_argument, 0, '\0' }, | |
126 | { "no-kernel", no_argument, 0, '\0' }, | |
127 | { "pidfile", required_argument, 0, 'p' }, | |
128 | { "agent-tcp-port", required_argument, 0, '\0' }, | |
129 | { "config", required_argument, 0, 'f' }, | |
130 | { "load", required_argument, 0, 'l' }, | |
131 | { "kmod-probes", required_argument, 0, '\0' }, | |
132 | { "extra-kmod-probes", required_argument, 0, '\0' }, | |
761ffce2 FD |
133 | { EVENT_NOTIFIER_ERROR_BUFFER_SIZE_KERNEL_OPTION_STR, required_argument, 0, '\0' }, |
134 | { EVENT_NOTIFIER_ERROR_BUFFER_SIZE_USERSPACE_OPTION_STR, required_argument, 0, '\0' }, | |
26296c48 JG |
135 | { NULL, 0, 0, 0 } |
136 | }; | |
137 | ||
138 | /* Command line options to ignore from configuration file */ | |
139 | static const char *config_ignore_options[] = { "help", "version", "config" }; | |
1d4b027a | 140 | |
099e26bd DG |
141 | /* |
142 | * This pipe is used to inform the thread managing application communication | |
143 | * that a command is queued and ready to be processed. | |
144 | */ | |
76d7553f | 145 | static int apps_cmd_pipe[2] = { -1, -1 }; |
971a61c6 | 146 | static int apps_cmd_notify_pipe[2] = { -1, -1 }; |
099e26bd | 147 | |
099e26bd DG |
148 | /* |
149 | * UST registration command queue. This queue is tied with a futex and uses a N | |
150 | * wakers / 1 waiter implemented and detailed in futex.c/.h | |
151 | * | |
b22c5da8 DG |
152 | * The thread_registration_apps and thread_dispatch_ust_registration uses this |
153 | * queue along with the wait/wake scheme. The thread_manage_apps receives down | |
154 | * the line new application socket and monitors it for any I/O error or clean | |
155 | * close that triggers an unregistration of the application. | |
099e26bd DG |
156 | */ |
157 | static struct ust_cmd_queue ust_cmd_queue; | |
158 | ||
97bc1426 | 159 | /* |
a7333da7 | 160 | * Section name to look for in the daemon configuration file. |
97bc1426 | 161 | */ |
a7333da7 | 162 | static const char * const config_section_name = "sessiond"; |
5e97de00 | 163 | |
a7333da7 JG |
164 | /* Am I root or not. Set to 1 if the daemon is running as root */ |
165 | static int is_root; | |
5eb91c98 | 166 | |
099e26bd DG |
167 | /* |
168 | * Stop all threads by closing the thread quit pipe. | |
169 | */ | |
cf3af59e MD |
170 | static void stop_threads(void) |
171 | { | |
5eb91c98 DG |
172 | int ret; |
173 | ||
cf3af59e MD |
174 | /* Stopping all threads */ |
175 | DBG("Terminating all threads"); | |
a7333da7 | 176 | ret = sessiond_notify_quit_pipe(); |
5eb91c98 DG |
177 | if (ret < 0) { |
178 | ERR("write error on thread quit pipe"); | |
179 | } | |
cf3af59e MD |
180 | } |
181 | ||
e975f9f8 DG |
182 | /* |
183 | * Close every consumer sockets. | |
184 | */ | |
185 | static void close_consumer_sockets(void) | |
186 | { | |
187 | int ret; | |
188 | ||
412d7227 SM |
189 | if (the_kconsumer_data.err_sock >= 0) { |
190 | ret = close(the_kconsumer_data.err_sock); | |
e975f9f8 DG |
191 | if (ret < 0) { |
192 | PERROR("kernel consumer err_sock close"); | |
193 | } | |
194 | } | |
412d7227 SM |
195 | if (the_ustconsumer32_data.err_sock >= 0) { |
196 | ret = close(the_ustconsumer32_data.err_sock); | |
e975f9f8 | 197 | if (ret < 0) { |
a76cbd9f | 198 | PERROR("UST consumerd32 err_sock close"); |
e975f9f8 DG |
199 | } |
200 | } | |
412d7227 SM |
201 | if (the_ustconsumer64_data.err_sock >= 0) { |
202 | ret = close(the_ustconsumer64_data.err_sock); | |
e975f9f8 | 203 | if (ret < 0) { |
a76cbd9f | 204 | PERROR("UST consumerd64 err_sock close"); |
e975f9f8 DG |
205 | } |
206 | } | |
412d7227 SM |
207 | if (the_kconsumer_data.cmd_sock >= 0) { |
208 | ret = close(the_kconsumer_data.cmd_sock); | |
e975f9f8 DG |
209 | if (ret < 0) { |
210 | PERROR("kernel consumer cmd_sock close"); | |
211 | } | |
212 | } | |
412d7227 SM |
213 | if (the_ustconsumer32_data.cmd_sock >= 0) { |
214 | ret = close(the_ustconsumer32_data.cmd_sock); | |
e975f9f8 | 215 | if (ret < 0) { |
a76cbd9f | 216 | PERROR("UST consumerd32 cmd_sock close"); |
e975f9f8 DG |
217 | } |
218 | } | |
412d7227 SM |
219 | if (the_ustconsumer64_data.cmd_sock >= 0) { |
220 | ret = close(the_ustconsumer64_data.cmd_sock); | |
e975f9f8 | 221 | if (ret < 0) { |
a76cbd9f | 222 | PERROR("UST consumerd64 cmd_sock close"); |
e975f9f8 DG |
223 | } |
224 | } | |
412d7227 SM |
225 | if (the_kconsumer_data.channel_monitor_pipe >= 0) { |
226 | ret = close(the_kconsumer_data.channel_monitor_pipe); | |
b3530820 JG |
227 | if (ret < 0) { |
228 | PERROR("kernel consumer channel monitor pipe close"); | |
229 | } | |
230 | } | |
412d7227 SM |
231 | if (the_ustconsumer32_data.channel_monitor_pipe >= 0) { |
232 | ret = close(the_ustconsumer32_data.channel_monitor_pipe); | |
b3530820 JG |
233 | if (ret < 0) { |
234 | PERROR("UST consumerd32 channel monitor pipe close"); | |
235 | } | |
236 | } | |
412d7227 SM |
237 | if (the_ustconsumer64_data.channel_monitor_pipe >= 0) { |
238 | ret = close(the_ustconsumer64_data.channel_monitor_pipe); | |
b3530820 JG |
239 | if (ret < 0) { |
240 | PERROR("UST consumerd64 channel monitor pipe close"); | |
241 | } | |
242 | } | |
e975f9f8 DG |
243 | } |
244 | ||
4e4714cb JR |
245 | /* |
246 | * Wait on consumer process termination. | |
247 | * | |
248 | * Need to be called with the consumer data lock held or from a context | |
249 | * ensuring no concurrent access to data (e.g: cleanup). | |
250 | */ | |
251 | static void wait_consumer(struct consumer_data *consumer_data) | |
252 | { | |
253 | pid_t ret; | |
254 | int status; | |
255 | ||
256 | if (consumer_data->pid <= 0) { | |
257 | return; | |
258 | } | |
259 | ||
260 | DBG("Waiting for complete teardown of consumerd (PID: %d)", | |
261 | consumer_data->pid); | |
262 | ret = waitpid(consumer_data->pid, &status, 0); | |
263 | if (ret == -1) { | |
264 | PERROR("consumerd waitpid pid: %d", consumer_data->pid) | |
1640c24c | 265 | } else if (!WIFEXITED(status)) { |
4e4714cb JR |
266 | ERR("consumerd termination with error: %d", |
267 | WEXITSTATUS(ret)); | |
268 | } | |
269 | consumer_data->pid = 0; | |
270 | } | |
271 | ||
fac6795d | 272 | /* |
4a15001e | 273 | * Cleanup the session daemon's data structures. |
fac6795d | 274 | */ |
4a15001e | 275 | static void sessiond_cleanup(void) |
fac6795d | 276 | { |
ef599319 | 277 | int ret; |
e32d7f27 | 278 | struct ltt_session_list *session_list = session_get_list(); |
fac6795d | 279 | |
4a15001e | 280 | DBG("Cleanup sessiond"); |
e07ae692 | 281 | |
4e449f3f MD |
282 | /* |
283 | * Close the thread quit pipe. It has already done its job, | |
284 | * since we are now called. | |
285 | */ | |
a7333da7 | 286 | sessiond_close_quit_pipe(); |
971a61c6 JG |
287 | utils_close_pipe(apps_cmd_pipe); |
288 | utils_close_pipe(apps_cmd_notify_pipe); | |
412d7227 | 289 | utils_close_pipe(the_kernel_poll_pipe); |
2f77fc4b | 290 | |
412d7227 | 291 | ret = remove(the_config.pid_file_path.value); |
c9a2957d | 292 | if (ret < 0) { |
412d7227 | 293 | PERROR("remove pidfile %s", the_config.pid_file_path.value); |
35f90c40 DG |
294 | } |
295 | ||
e6142f2e | 296 | DBG("Removing sessiond and consumerd content of directory %s", |
412d7227 | 297 | the_config.rundir.value); |
8c6c56c2 MD |
298 | |
299 | /* sessiond */ | |
412d7227 SM |
300 | DBG("Removing %s", the_config.pid_file_path.value); |
301 | (void) unlink(the_config.pid_file_path.value); | |
8c6c56c2 | 302 | |
412d7227 SM |
303 | DBG("Removing %s", the_config.agent_port_file_path.value); |
304 | (void) unlink(the_config.agent_port_file_path.value); | |
cd9290dd | 305 | |
8c6c56c2 | 306 | /* kconsumerd */ |
412d7227 SM |
307 | DBG("Removing %s", the_kconsumer_data.err_unix_sock_path); |
308 | (void) unlink(the_kconsumer_data.err_unix_sock_path); | |
e6142f2e | 309 | |
412d7227 SM |
310 | DBG("Removing directory %s", the_config.kconsumerd_path.value); |
311 | (void) rmdir(the_config.kconsumerd_path.value); | |
8c6c56c2 MD |
312 | |
313 | /* ust consumerd 32 */ | |
412d7227 SM |
314 | DBG("Removing %s", the_config.consumerd32_err_unix_sock_path.value); |
315 | (void) unlink(the_config.consumerd32_err_unix_sock_path.value); | |
e6142f2e | 316 | |
412d7227 SM |
317 | DBG("Removing directory %s", the_config.consumerd32_path.value); |
318 | (void) rmdir(the_config.consumerd32_path.value); | |
8c6c56c2 MD |
319 | |
320 | /* ust consumerd 64 */ | |
412d7227 SM |
321 | DBG("Removing %s", the_config.consumerd64_err_unix_sock_path.value); |
322 | (void) unlink(the_config.consumerd64_err_unix_sock_path.value); | |
e6142f2e | 323 | |
412d7227 SM |
324 | DBG("Removing directory %s", the_config.consumerd64_path.value); |
325 | (void) rmdir(the_config.consumerd64_path.value); | |
5461b305 | 326 | |
99d688f2 | 327 | pthread_mutex_destroy(&session_list->lock); |
273ea72c | 328 | |
44760c20 JR |
329 | DBG("Cleaning up all per-event notifier domain agents"); |
330 | agent_by_event_notifier_domain_ht_destroy(); | |
331 | ||
6a4e4039 JG |
332 | DBG("Cleaning up all agent apps"); |
333 | agent_app_ht_clean(); | |
099e26bd | 334 | DBG("Closing all UST sockets"); |
56fff090 | 335 | ust_app_clean_list(); |
7972aab2 | 336 | buffer_reg_destroy_registries(); |
099e26bd | 337 | |
0787fc4b MD |
338 | close_consumer_sockets(); |
339 | ||
412d7227 SM |
340 | wait_consumer(&the_kconsumer_data); |
341 | wait_consumer(&the_ustconsumer64_data); | |
342 | wait_consumer(&the_ustconsumer32_data); | |
0787fc4b | 343 | |
412d7227 | 344 | if (is_root && !the_config.no_kernel) { |
7d268848 | 345 | cleanup_kernel_tracer(); |
2f50c8a3 | 346 | } |
2f77fc4b | 347 | |
c9cb3e7d JG |
348 | /* |
349 | * We do NOT rmdir rundir because there are other processes | |
350 | * using it, for instance lttng-relayd, which can start in | |
351 | * parallel with this teardown. | |
352 | */ | |
4a15001e MD |
353 | } |
354 | ||
355 | /* | |
356 | * Cleanup the daemon's option data structures. | |
357 | */ | |
358 | static void sessiond_cleanup_options(void) | |
359 | { | |
360 | DBG("Cleaning up options"); | |
361 | ||
412d7227 | 362 | sessiond_config_fini(&the_config); |
c9cb3e7d | 363 | |
7567352f | 364 | run_as_destroy_worker(); |
fac6795d DG |
365 | } |
366 | ||
917a718d | 367 | static int string_match(const char *str1, const char *str2) |
54d01ffb | 368 | { |
917a718d | 369 | return (str1 && str2) && !strcmp(str1, str2); |
54d01ffb DG |
370 | } |
371 | ||
00e2e675 | 372 | /* |
917a718d JG |
373 | * Take an option from the getopt output and set it in the right variable to be |
374 | * used later. | |
36b588ed | 375 | * |
917a718d | 376 | * Return 0 on success else a negative value. |
00e2e675 | 377 | */ |
917a718d | 378 | static int set_option(int opt, const char *arg, const char *optname) |
00e2e675 | 379 | { |
917a718d | 380 | int ret = 0; |
fac6795d | 381 | |
c0232ea5 | 382 | if (string_match(optname, "client-sock") || opt == 'c') { |
66b2ce8e JG |
383 | if (!arg || *arg == '\0') { |
384 | ret = -EINVAL; | |
385 | goto end; | |
386 | } | |
e8fa9fb0 MD |
387 | if (lttng_is_setuid_setgid()) { |
388 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
389 | "-c, --client-sock"); | |
390 | } else { | |
412d7227 | 391 | config_string_set(&the_config.client_unix_sock_path, |
e6142f2e | 392 | strdup(arg)); |
412d7227 | 393 | if (!the_config.client_unix_sock_path.value) { |
e6142f2e JG |
394 | ret = -ENOMEM; |
395 | PERROR("strdup"); | |
396 | } | |
e8fa9fb0 | 397 | } |
c0232ea5 | 398 | } else if (string_match(optname, "apps-sock") || opt == 'a') { |
66b2ce8e JG |
399 | if (!arg || *arg == '\0') { |
400 | ret = -EINVAL; | |
401 | goto end; | |
402 | } | |
e8fa9fb0 MD |
403 | if (lttng_is_setuid_setgid()) { |
404 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
405 | "-a, --apps-sock"); | |
406 | } else { | |
412d7227 | 407 | config_string_set(&the_config.apps_unix_sock_path, |
e6142f2e | 408 | strdup(arg)); |
412d7227 | 409 | if (!the_config.apps_unix_sock_path.value) { |
e6142f2e JG |
410 | ret = -ENOMEM; |
411 | PERROR("strdup"); | |
412 | } | |
e8fa9fb0 | 413 | } |
c0232ea5 | 414 | } else if (string_match(optname, "daemonize") || opt == 'd') { |
412d7227 | 415 | the_config.daemonize = true; |
c0232ea5 | 416 | } else if (string_match(optname, "background") || opt == 'b') { |
412d7227 | 417 | the_config.background = true; |
c0232ea5 | 418 | } else if (string_match(optname, "group") || opt == 'g') { |
66b2ce8e JG |
419 | if (!arg || *arg == '\0') { |
420 | ret = -EINVAL; | |
421 | goto end; | |
422 | } | |
e8fa9fb0 MD |
423 | if (lttng_is_setuid_setgid()) { |
424 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
425 | "-g, --group"); | |
426 | } else { | |
412d7227 | 427 | config_string_set(&the_config.tracing_group_name, |
e6142f2e | 428 | strdup(arg)); |
412d7227 | 429 | if (!the_config.tracing_group_name.value) { |
e8fa9fb0 | 430 | ret = -ENOMEM; |
e6142f2e | 431 | PERROR("strdup"); |
e8fa9fb0 | 432 | } |
db322c4d | 433 | } |
c0232ea5 | 434 | } else if (string_match(optname, "help") || opt == 'h') { |
4fc83d94 | 435 | ret = utils_show_help(8, "lttng-sessiond", help_msg); |
8190767e | 436 | if (ret) { |
4fc83d94 | 437 | ERR("Cannot show --help for `lttng-sessiond`"); |
8190767e PP |
438 | perror("exec"); |
439 | } | |
440 | exit(ret ? EXIT_FAILURE : EXIT_SUCCESS); | |
c0232ea5 | 441 | } else if (string_match(optname, "version") || opt == 'V') { |
a3bc3918 | 442 | opt_print_version = 1; |
c0232ea5 | 443 | } else if (string_match(optname, "sig-parent") || opt == 'S') { |
412d7227 | 444 | the_config.sig_parent = true; |
c0232ea5 | 445 | } else if (string_match(optname, "kconsumerd-err-sock")) { |
66b2ce8e JG |
446 | if (!arg || *arg == '\0') { |
447 | ret = -EINVAL; | |
448 | goto end; | |
449 | } | |
e8fa9fb0 MD |
450 | if (lttng_is_setuid_setgid()) { |
451 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
452 | "--kconsumerd-err-sock"); | |
453 | } else { | |
412d7227 SM |
454 | config_string_set( |
455 | &the_config.kconsumerd_err_unix_sock_path, | |
e6142f2e | 456 | strdup(arg)); |
412d7227 | 457 | if (!the_config.kconsumerd_err_unix_sock_path.value) { |
e6142f2e JG |
458 | ret = -ENOMEM; |
459 | PERROR("strdup"); | |
460 | } | |
e8fa9fb0 | 461 | } |
c0232ea5 | 462 | } else if (string_match(optname, "kconsumerd-cmd-sock")) { |
66b2ce8e JG |
463 | if (!arg || *arg == '\0') { |
464 | ret = -EINVAL; | |
465 | goto end; | |
466 | } | |
e8fa9fb0 MD |
467 | if (lttng_is_setuid_setgid()) { |
468 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
469 | "--kconsumerd-cmd-sock"); | |
470 | } else { | |
412d7227 SM |
471 | config_string_set( |
472 | &the_config.kconsumerd_cmd_unix_sock_path, | |
e6142f2e | 473 | strdup(arg)); |
412d7227 | 474 | if (!the_config.kconsumerd_cmd_unix_sock_path.value) { |
e6142f2e JG |
475 | ret = -ENOMEM; |
476 | PERROR("strdup"); | |
477 | } | |
e8fa9fb0 | 478 | } |
c0232ea5 | 479 | } else if (string_match(optname, "ustconsumerd64-err-sock")) { |
66b2ce8e JG |
480 | if (!arg || *arg == '\0') { |
481 | ret = -EINVAL; | |
482 | goto end; | |
483 | } | |
e8fa9fb0 MD |
484 | if (lttng_is_setuid_setgid()) { |
485 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
486 | "--ustconsumerd64-err-sock"); | |
487 | } else { | |
412d7227 SM |
488 | config_string_set( |
489 | &the_config.consumerd64_err_unix_sock_path, | |
e6142f2e | 490 | strdup(arg)); |
412d7227 | 491 | if (!the_config.consumerd64_err_unix_sock_path.value) { |
e6142f2e JG |
492 | ret = -ENOMEM; |
493 | PERROR("strdup"); | |
494 | } | |
e8fa9fb0 | 495 | } |
c0232ea5 | 496 | } else if (string_match(optname, "ustconsumerd64-cmd-sock")) { |
66b2ce8e JG |
497 | if (!arg || *arg == '\0') { |
498 | ret = -EINVAL; | |
499 | goto end; | |
500 | } | |
e8fa9fb0 MD |
501 | if (lttng_is_setuid_setgid()) { |
502 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
503 | "--ustconsumerd64-cmd-sock"); | |
504 | } else { | |
412d7227 SM |
505 | config_string_set( |
506 | &the_config.consumerd64_cmd_unix_sock_path, | |
e6142f2e | 507 | strdup(arg)); |
412d7227 | 508 | if (!the_config.consumerd64_cmd_unix_sock_path.value) { |
e6142f2e JG |
509 | ret = -ENOMEM; |
510 | PERROR("strdup"); | |
511 | } | |
e8fa9fb0 | 512 | } |
c0232ea5 | 513 | } else if (string_match(optname, "ustconsumerd32-err-sock")) { |
66b2ce8e JG |
514 | if (!arg || *arg == '\0') { |
515 | ret = -EINVAL; | |
516 | goto end; | |
517 | } | |
e8fa9fb0 MD |
518 | if (lttng_is_setuid_setgid()) { |
519 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
520 | "--ustconsumerd32-err-sock"); | |
521 | } else { | |
412d7227 SM |
522 | config_string_set( |
523 | &the_config.consumerd32_err_unix_sock_path, | |
e6142f2e | 524 | strdup(arg)); |
412d7227 | 525 | if (!the_config.consumerd32_err_unix_sock_path.value) { |
e6142f2e JG |
526 | ret = -ENOMEM; |
527 | PERROR("strdup"); | |
528 | } | |
e8fa9fb0 | 529 | } |
c0232ea5 | 530 | } else if (string_match(optname, "ustconsumerd32-cmd-sock")) { |
66b2ce8e JG |
531 | if (!arg || *arg == '\0') { |
532 | ret = -EINVAL; | |
533 | goto end; | |
534 | } | |
e8fa9fb0 MD |
535 | if (lttng_is_setuid_setgid()) { |
536 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
537 | "--ustconsumerd32-cmd-sock"); | |
538 | } else { | |
412d7227 SM |
539 | config_string_set( |
540 | &the_config.consumerd32_cmd_unix_sock_path, | |
e6142f2e | 541 | strdup(arg)); |
412d7227 | 542 | if (!the_config.consumerd32_cmd_unix_sock_path.value) { |
e6142f2e JG |
543 | ret = -ENOMEM; |
544 | PERROR("strdup"); | |
545 | } | |
e8fa9fb0 | 546 | } |
c0232ea5 | 547 | } else if (string_match(optname, "no-kernel")) { |
412d7227 | 548 | the_config.no_kernel = true; |
c0232ea5 | 549 | } else if (string_match(optname, "quiet") || opt == 'q') { |
412d7227 | 550 | the_config.quiet = true; |
c0232ea5 | 551 | } else if (string_match(optname, "verbose") || opt == 'v') { |
26296c48 JG |
552 | /* Verbose level can increase using multiple -v */ |
553 | if (arg) { | |
13755a18 | 554 | /* Value obtained from config file */ |
412d7227 | 555 | the_config.verbose = config_parse_value(arg); |
26296c48 | 556 | } else { |
13755a18 | 557 | /* -v used on command line */ |
412d7227 | 558 | the_config.verbose++; |
26296c48 | 559 | } |
13755a18 | 560 | /* Clamp value to [0, 3] */ |
412d7227 SM |
561 | the_config.verbose = the_config.verbose < 0 ? |
562 | 0 : | |
563 | (the_config.verbose <= 3 ? the_config.verbose : | |
564 | 3); | |
c0232ea5 | 565 | } else if (string_match(optname, "verbose-consumer")) { |
26296c48 | 566 | if (arg) { |
412d7227 | 567 | the_config.verbose_consumer = config_parse_value(arg); |
26296c48 | 568 | } else { |
412d7227 | 569 | the_config.verbose_consumer++; |
26296c48 | 570 | } |
c0232ea5 | 571 | } else if (string_match(optname, "consumerd32-path")) { |
66b2ce8e JG |
572 | if (!arg || *arg == '\0') { |
573 | ret = -EINVAL; | |
574 | goto end; | |
575 | } | |
e8fa9fb0 MD |
576 | if (lttng_is_setuid_setgid()) { |
577 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
578 | "--consumerd32-path"); | |
579 | } else { | |
412d7227 | 580 | config_string_set(&the_config.consumerd32_bin_path, |
e6142f2e | 581 | strdup(arg)); |
412d7227 | 582 | if (!the_config.consumerd32_bin_path.value) { |
e8fa9fb0 MD |
583 | PERROR("strdup"); |
584 | ret = -ENOMEM; | |
585 | } | |
db322c4d | 586 | } |
c0232ea5 | 587 | } else if (string_match(optname, "consumerd32-libdir")) { |
66b2ce8e JG |
588 | if (!arg || *arg == '\0') { |
589 | ret = -EINVAL; | |
590 | goto end; | |
591 | } | |
e8fa9fb0 MD |
592 | if (lttng_is_setuid_setgid()) { |
593 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
594 | "--consumerd32-libdir"); | |
595 | } else { | |
412d7227 | 596 | config_string_set(&the_config.consumerd32_lib_dir, |
e6142f2e | 597 | strdup(arg)); |
412d7227 | 598 | if (!the_config.consumerd32_lib_dir.value) { |
e8fa9fb0 MD |
599 | PERROR("strdup"); |
600 | ret = -ENOMEM; | |
601 | } | |
db322c4d | 602 | } |
c0232ea5 | 603 | } else if (string_match(optname, "consumerd64-path")) { |
66b2ce8e JG |
604 | if (!arg || *arg == '\0') { |
605 | ret = -EINVAL; | |
606 | goto end; | |
607 | } | |
e8fa9fb0 MD |
608 | if (lttng_is_setuid_setgid()) { |
609 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
610 | "--consumerd64-path"); | |
611 | } else { | |
412d7227 | 612 | config_string_set(&the_config.consumerd64_bin_path, |
e6142f2e | 613 | strdup(arg)); |
412d7227 | 614 | if (!the_config.consumerd64_bin_path.value) { |
e8fa9fb0 MD |
615 | PERROR("strdup"); |
616 | ret = -ENOMEM; | |
617 | } | |
db322c4d | 618 | } |
c0232ea5 | 619 | } else if (string_match(optname, "consumerd64-libdir")) { |
66b2ce8e JG |
620 | if (!arg || *arg == '\0') { |
621 | ret = -EINVAL; | |
622 | goto end; | |
623 | } | |
e8fa9fb0 MD |
624 | if (lttng_is_setuid_setgid()) { |
625 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
626 | "--consumerd64-libdir"); | |
627 | } else { | |
412d7227 | 628 | config_string_set(&the_config.consumerd64_lib_dir, |
e6142f2e | 629 | strdup(arg)); |
412d7227 | 630 | if (!the_config.consumerd64_lib_dir.value) { |
e8fa9fb0 MD |
631 | PERROR("strdup"); |
632 | ret = -ENOMEM; | |
633 | } | |
db322c4d | 634 | } |
c0232ea5 | 635 | } else if (string_match(optname, "pidfile") || opt == 'p') { |
66b2ce8e JG |
636 | if (!arg || *arg == '\0') { |
637 | ret = -EINVAL; | |
638 | goto end; | |
639 | } | |
e8fa9fb0 MD |
640 | if (lttng_is_setuid_setgid()) { |
641 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
642 | "-p, --pidfile"); | |
643 | } else { | |
412d7227 SM |
644 | config_string_set( |
645 | &the_config.pid_file_path, strdup(arg)); | |
646 | if (!the_config.pid_file_path.value) { | |
e8fa9fb0 MD |
647 | PERROR("strdup"); |
648 | ret = -ENOMEM; | |
649 | } | |
db322c4d | 650 | } |
c0232ea5 | 651 | } else if (string_match(optname, "agent-tcp-port")) { |
66b2ce8e JG |
652 | if (!arg || *arg == '\0') { |
653 | ret = -EINVAL; | |
654 | goto end; | |
655 | } | |
e8fa9fb0 MD |
656 | if (lttng_is_setuid_setgid()) { |
657 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
658 | "--agent-tcp-port"); | |
659 | } else { | |
660 | unsigned long v; | |
4d076222 | 661 | |
e8fa9fb0 MD |
662 | errno = 0; |
663 | v = strtoul(arg, NULL, 0); | |
664 | if (errno != 0 || !isdigit(arg[0])) { | |
665 | ERR("Wrong value in --agent-tcp-port parameter: %s", arg); | |
666 | return -1; | |
667 | } | |
668 | if (v == 0 || v >= 65535) { | |
669 | ERR("Port overflow in --agent-tcp-port parameter: %s", arg); | |
670 | return -1; | |
671 | } | |
412d7227 SM |
672 | the_config.agent_tcp_port.begin = |
673 | the_config.agent_tcp_port.end = (int) v; | |
2288467f | 674 | DBG3("Agent TCP port set to non default: %i", (int) v); |
26296c48 | 675 | } |
c0232ea5 | 676 | } else if (string_match(optname, "load") || opt == 'l') { |
66b2ce8e JG |
677 | if (!arg || *arg == '\0') { |
678 | ret = -EINVAL; | |
679 | goto end; | |
680 | } | |
e8fa9fb0 MD |
681 | if (lttng_is_setuid_setgid()) { |
682 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
683 | "-l, --load"); | |
684 | } else { | |
412d7227 SM |
685 | config_string_set(&the_config.load_session_path, |
686 | strdup(arg)); | |
687 | if (!the_config.load_session_path.value) { | |
e8fa9fb0 MD |
688 | PERROR("strdup"); |
689 | ret = -ENOMEM; | |
690 | } | |
ef367a93 | 691 | } |
c0232ea5 | 692 | } else if (string_match(optname, "kmod-probes")) { |
66b2ce8e JG |
693 | if (!arg || *arg == '\0') { |
694 | ret = -EINVAL; | |
695 | goto end; | |
696 | } | |
e8fa9fb0 MD |
697 | if (lttng_is_setuid_setgid()) { |
698 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
699 | "--kmod-probes"); | |
700 | } else { | |
412d7227 SM |
701 | config_string_set(&the_config.kmod_probes_list, |
702 | strdup(arg)); | |
703 | if (!the_config.kmod_probes_list.value) { | |
e8fa9fb0 MD |
704 | PERROR("strdup"); |
705 | ret = -ENOMEM; | |
706 | } | |
c9d42407 | 707 | } |
c0232ea5 | 708 | } else if (string_match(optname, "extra-kmod-probes")) { |
66b2ce8e JG |
709 | if (!arg || *arg == '\0') { |
710 | ret = -EINVAL; | |
711 | goto end; | |
712 | } | |
e8fa9fb0 MD |
713 | if (lttng_is_setuid_setgid()) { |
714 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
715 | "--extra-kmod-probes"); | |
716 | } else { | |
412d7227 | 717 | config_string_set(&the_config.kmod_extra_probes_list, |
e6142f2e | 718 | strdup(arg)); |
412d7227 | 719 | if (!the_config.kmod_extra_probes_list.value) { |
e8fa9fb0 MD |
720 | PERROR("strdup"); |
721 | ret = -ENOMEM; | |
722 | } | |
db322c4d | 723 | } |
761ffce2 | 724 | } else if (string_match(optname, EVENT_NOTIFIER_ERROR_BUFFER_SIZE_KERNEL_OPTION_STR)) { |
90aa04a1 FD |
725 | unsigned long v; |
726 | ||
727 | errno = 0; | |
728 | v = strtoul(arg, NULL, 0); | |
729 | if (errno != 0 || !isdigit(arg[0])) { | |
761ffce2 FD |
730 | ERR("Wrong value in --%s parameter: %s", |
731 | EVENT_NOTIFIER_ERROR_BUFFER_SIZE_KERNEL_OPTION_STR, arg); | |
90aa04a1 FD |
732 | return -1; |
733 | } | |
734 | if (v == 0 || v >= EVENT_NOTIFIER_ERROR_COUNTER_NUMBER_OF_BUCKET_MAX) { | |
761ffce2 FD |
735 | ERR("Value out of range for --%s parameter: %s", |
736 | EVENT_NOTIFIER_ERROR_BUFFER_SIZE_KERNEL_OPTION_STR, arg); | |
90aa04a1 FD |
737 | return -1; |
738 | } | |
761ffce2 FD |
739 | the_config.event_notifier_buffer_size_kernel = (int) v; |
740 | DBG3("Number of event notifier error buffer kernel size to non default: %i", | |
741 | the_config.event_notifier_buffer_size_kernel); | |
742 | goto end; | |
743 | } else if (string_match(optname, EVENT_NOTIFIER_ERROR_BUFFER_SIZE_USERSPACE_OPTION_STR)) { | |
744 | unsigned long v; | |
745 | ||
746 | errno = 0; | |
747 | v = strtoul(arg, NULL, 0); | |
748 | if (errno != 0 || !isdigit(arg[0])) { | |
749 | ERR("Wrong value in --%s parameter: %s", | |
750 | EVENT_NOTIFIER_ERROR_BUFFER_SIZE_USERSPACE_OPTION_STR, arg); | |
751 | return -1; | |
752 | } | |
753 | if (v == 0 || v >= EVENT_NOTIFIER_ERROR_COUNTER_NUMBER_OF_BUCKET_MAX) { | |
754 | ERR("Value out of range for --%s parameter: %s", | |
755 | EVENT_NOTIFIER_ERROR_BUFFER_SIZE_USERSPACE_OPTION_STR, arg); | |
756 | return -1; | |
757 | } | |
758 | the_config.event_notifier_buffer_size_userspace = (int) v; | |
759 | DBG3("Number of event notifier error buffer userspace size to non default: %i", | |
760 | the_config.event_notifier_buffer_size_userspace); | |
90aa04a1 | 761 | goto end; |
c0232ea5 JG |
762 | } else if (string_match(optname, "config") || opt == 'f') { |
763 | /* This is handled in set_options() thus silent skip. */ | |
764 | goto end; | |
765 | } else { | |
26296c48 JG |
766 | /* Unknown option or other error. |
767 | * Error is printed by getopt, just return */ | |
768 | ret = -1; | |
769 | } | |
770 | ||
f3dd7ce7 | 771 | end: |
c5d350b2 JG |
772 | if (ret == -EINVAL) { |
773 | const char *opt_name = "unknown"; | |
774 | int i; | |
775 | ||
776 | for (i = 0; i < sizeof(long_options) / sizeof(struct option); | |
777 | i++) { | |
778 | if (opt == long_options[i].val) { | |
779 | opt_name = long_options[i].name; | |
780 | break; | |
781 | } | |
782 | } | |
783 | ||
784 | WARN("Invalid argument provided for option \"%s\", using default value.", | |
785 | opt_name); | |
786 | } | |
f3dd7ce7 | 787 | |
26296c48 JG |
788 | return ret; |
789 | } | |
790 | ||
791 | /* | |
792 | * config_entry_handler_cb used to handle options read from a config file. | |
f40ef1d5 | 793 | * See config_entry_handler_cb comment in common/config/session-config.h for the |
26296c48 JG |
794 | * return value conventions. |
795 | */ | |
796 | static int config_entry_handler(const struct config_entry *entry, void *unused) | |
797 | { | |
798 | int ret = 0, i; | |
799 | ||
800 | if (!entry || !entry->name || !entry->value) { | |
801 | ret = -EINVAL; | |
802 | goto end; | |
803 | } | |
804 | ||
805 | /* Check if the option is to be ignored */ | |
806 | for (i = 0; i < sizeof(config_ignore_options) / sizeof(char *); i++) { | |
807 | if (!strcmp(entry->name, config_ignore_options[i])) { | |
808 | goto end; | |
809 | } | |
810 | } | |
811 | ||
812 | for (i = 0; i < (sizeof(long_options) / sizeof(struct option)) - 1; | |
813 | i++) { | |
814 | ||
815 | /* Ignore if not fully matched. */ | |
816 | if (strcmp(entry->name, long_options[i].name)) { | |
817 | continue; | |
818 | } | |
819 | ||
820 | /* | |
821 | * If the option takes no argument on the command line, we have to | |
822 | * check if the value is "true". We support non-zero numeric values, | |
823 | * true, on and yes. | |
824 | */ | |
825 | if (!long_options[i].has_arg) { | |
826 | ret = config_parse_value(entry->value); | |
827 | if (ret <= 0) { | |
828 | if (ret) { | |
829 | WARN("Invalid configuration value \"%s\" for option %s", | |
830 | entry->value, entry->name); | |
831 | } | |
832 | /* False, skip boolean config option. */ | |
833 | goto end; | |
4d076222 | 834 | } |
26296c48 JG |
835 | } |
836 | ||
837 | ret = set_option(long_options[i].val, entry->value, entry->name); | |
838 | goto end; | |
839 | } | |
840 | ||
841 | WARN("Unrecognized option \"%s\" in daemon configuration file.", entry->name); | |
842 | ||
843 | end: | |
844 | return ret; | |
845 | } | |
846 | ||
a3bc3918 JR |
847 | static void print_version(void) { |
848 | fprintf(stdout, "%s\n", VERSION); | |
849 | } | |
850 | ||
26296c48 JG |
851 | /* |
852 | * daemon configuration loading and argument parsing | |
853 | */ | |
854 | static int set_options(int argc, char **argv) | |
855 | { | |
856 | int ret = 0, c = 0, option_index = 0; | |
857 | int orig_optopt = optopt, orig_optind = optind; | |
858 | char *optstring; | |
859 | const char *config_path = NULL; | |
860 | ||
861 | optstring = utils_generate_optstring(long_options, | |
862 | sizeof(long_options) / sizeof(struct option)); | |
863 | if (!optstring) { | |
864 | ret = -ENOMEM; | |
865 | goto end; | |
866 | } | |
867 | ||
868 | /* Check for the --config option */ | |
869 | while ((c = getopt_long(argc, argv, optstring, long_options, | |
870 | &option_index)) != -1) { | |
871 | if (c == '?') { | |
872 | ret = -EINVAL; | |
873 | goto end; | |
874 | } else if (c != 'f') { | |
875 | /* if not equal to --config option. */ | |
876 | continue; | |
877 | } | |
878 | ||
e8fa9fb0 MD |
879 | if (lttng_is_setuid_setgid()) { |
880 | WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.", | |
881 | "-f, --config"); | |
882 | } else { | |
883 | config_path = utils_expand_path(optarg); | |
884 | if (!config_path) { | |
885 | ERR("Failed to resolve path: %s", optarg); | |
886 | } | |
26296c48 JG |
887 | } |
888 | } | |
889 | ||
890 | ret = config_get_section_entries(config_path, config_section_name, | |
891 | config_entry_handler, NULL); | |
892 | if (ret) { | |
893 | if (ret > 0) { | |
894 | ERR("Invalid configuration option at line %i", ret); | |
895 | ret = -1; | |
896 | } | |
897 | goto end; | |
898 | } | |
899 | ||
900 | /* Reset getopt's global state */ | |
901 | optopt = orig_optopt; | |
902 | optind = orig_optind; | |
903 | while (1) { | |
c0232ea5 JG |
904 | option_index = -1; |
905 | /* | |
906 | * getopt_long() will not set option_index if it encounters a | |
907 | * short option. | |
908 | */ | |
909 | c = getopt_long(argc, argv, optstring, long_options, | |
910 | &option_index); | |
26296c48 | 911 | if (c == -1) { |
4d076222 DG |
912 | break; |
913 | } | |
26296c48 | 914 | |
c0232ea5 JG |
915 | /* |
916 | * Pass NULL as the long option name if popt left the index | |
917 | * unset. | |
918 | */ | |
919 | ret = set_option(c, optarg, | |
920 | option_index < 0 ? NULL : | |
921 | long_options[option_index].name); | |
26296c48 JG |
922 | if (ret < 0) { |
923 | break; | |
fac6795d DG |
924 | } |
925 | } | |
926 | ||
26296c48 JG |
927 | end: |
928 | free(optstring); | |
929 | return ret; | |
fac6795d DG |
930 | } |
931 | ||
f472090a JG |
932 | /* |
933 | * Create lockfile using the rundir and return its fd. | |
934 | */ | |
935 | static int create_lockfile(void) | |
936 | { | |
412d7227 | 937 | return utils_create_lock_file(the_config.lock_file_path.value); |
f472090a JG |
938 | } |
939 | ||
fac6795d | 940 | /* |
54d01ffb DG |
941 | * Check if the global socket is available, and if a daemon is answering at the |
942 | * other side. If yes, error is returned. | |
f472090a JG |
943 | * |
944 | * Also attempts to create and hold the lock file. | |
fac6795d | 945 | */ |
cf3af59e | 946 | static int check_existing_daemon(void) |
fac6795d | 947 | { |
f472090a JG |
948 | int ret = 0; |
949 | ||
7d8234d9 | 950 | /* Is there anybody out there ? */ |
099e26bd | 951 | if (lttng_session_daemon_alive()) { |
f472090a JG |
952 | ret = -EEXIST; |
953 | goto end; | |
099e26bd | 954 | } |
b09c7c76 | 955 | |
f472090a JG |
956 | lockfile_fd = create_lockfile(); |
957 | if (lockfile_fd < 0) { | |
958 | ret = -EEXIST; | |
959 | goto end; | |
960 | } | |
961 | end: | |
962 | return ret; | |
963 | } | |
964 | ||
965 | static void sessiond_cleanup_lock_file(void) | |
966 | { | |
967 | int ret; | |
968 | ||
969 | /* | |
970 | * Cleanup lock file by deleting it and finaly closing it which will | |
971 | * release the file system lock. | |
972 | */ | |
973 | if (lockfile_fd >= 0) { | |
412d7227 | 974 | ret = remove(the_config.lock_file_path.value); |
f472090a JG |
975 | if (ret < 0) { |
976 | PERROR("remove lock file"); | |
977 | } | |
978 | ret = close(lockfile_fd); | |
979 | if (ret < 0) { | |
980 | PERROR("close lock file"); | |
981 | } | |
982 | } | |
fac6795d DG |
983 | } |
984 | ||
fac6795d | 985 | /* |
d063d709 | 986 | * Set the tracing group gid onto the client socket. |
5e16da05 | 987 | * |
d063d709 | 988 | * Race window between mkdir and chown is OK because we are going from more |
d1613cf5 | 989 | * permissive (root.root) to less permissive (root.tracing). |
fac6795d | 990 | */ |
be040666 | 991 | static int set_permissions(char *rundir) |
fac6795d DG |
992 | { |
993 | int ret; | |
996b65c8 | 994 | gid_t gid; |
fac6795d | 995 | |
412d7227 SM |
996 | ret = utils_get_group_id( |
997 | the_config.tracing_group_name.value, true, &gid); | |
28ab59d0 JR |
998 | if (ret) { |
999 | /* Default to root group. */ | |
1000 | gid = 0; | |
1001 | } | |
fac6795d | 1002 | |
d6f42150 | 1003 | /* Set lttng run dir */ |
be040666 | 1004 | ret = chown(rundir, 0, gid); |
d6f42150 | 1005 | if (ret < 0) { |
be040666 | 1006 | ERR("Unable to set group on %s", rundir); |
76d7553f | 1007 | PERROR("chown"); |
d6f42150 DG |
1008 | } |
1009 | ||
6c71277b MD |
1010 | /* |
1011 | * Ensure all applications and tracing group can search the run | |
1012 | * dir. Allow everyone to read the directory, since it does not | |
1013 | * buy us anything to hide its content. | |
1014 | */ | |
1015 | ret = chmod(rundir, S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH); | |
d1613cf5 JN |
1016 | if (ret < 0) { |
1017 | ERR("Unable to set permissions on %s", rundir); | |
76d7553f | 1018 | PERROR("chmod"); |
d1613cf5 JN |
1019 | } |
1020 | ||
d6f42150 | 1021 | /* lttng client socket path */ |
412d7227 | 1022 | ret = chown(the_config.client_unix_sock_path.value, 0, gid); |
fac6795d | 1023 | if (ret < 0) { |
412d7227 SM |
1024 | ERR("Unable to set group on %s", |
1025 | the_config.client_unix_sock_path.value); | |
76d7553f | 1026 | PERROR("chown"); |
d6f42150 DG |
1027 | } |
1028 | ||
3bd1e081 | 1029 | /* kconsumer error socket path */ |
412d7227 | 1030 | ret = chown(the_kconsumer_data.err_unix_sock_path, 0, 0); |
d6f42150 | 1031 | if (ret < 0) { |
412d7227 SM |
1032 | ERR("Unable to set group on %s", |
1033 | the_kconsumer_data.err_unix_sock_path); | |
76d7553f | 1034 | PERROR("chown"); |
3bd1e081 MD |
1035 | } |
1036 | ||
7753dea8 | 1037 | /* 64-bit ustconsumer error socket path */ |
412d7227 | 1038 | ret = chown(the_ustconsumer64_data.err_unix_sock_path, 0, 0); |
7753dea8 | 1039 | if (ret < 0) { |
412d7227 SM |
1040 | ERR("Unable to set group on %s", |
1041 | the_ustconsumer64_data.err_unix_sock_path); | |
76d7553f | 1042 | PERROR("chown"); |
7753dea8 MD |
1043 | } |
1044 | ||
1045 | /* 32-bit ustconsumer compat32 error socket path */ | |
412d7227 | 1046 | ret = chown(the_ustconsumer32_data.err_unix_sock_path, 0, 0); |
3bd1e081 | 1047 | if (ret < 0) { |
412d7227 SM |
1048 | ERR("Unable to set group on %s", |
1049 | the_ustconsumer32_data.err_unix_sock_path); | |
76d7553f | 1050 | PERROR("chown"); |
fac6795d DG |
1051 | } |
1052 | ||
d6f42150 | 1053 | DBG("All permissions are set"); |
e07ae692 | 1054 | |
fac6795d DG |
1055 | return ret; |
1056 | } | |
1057 | ||
d6f42150 | 1058 | /* |
d063d709 | 1059 | * Create the lttng run directory needed for all global sockets and pipe. |
d6f42150 | 1060 | */ |
e6142f2e | 1061 | static int create_lttng_rundir(void) |
d6f42150 DG |
1062 | { |
1063 | int ret; | |
1064 | ||
412d7227 | 1065 | DBG3("Creating LTTng run directory: %s", the_config.rundir.value); |
67e40797 | 1066 | |
412d7227 | 1067 | ret = mkdir(the_config.rundir.value, S_IRWXU); |
d6f42150 | 1068 | if (ret < 0) { |
b1f11e69 | 1069 | if (errno != EEXIST) { |
412d7227 | 1070 | ERR("Unable to create %s", the_config.rundir.value); |
b1f11e69 DG |
1071 | goto error; |
1072 | } else { | |
1073 | ret = 0; | |
1074 | } | |
d6f42150 DG |
1075 | } |
1076 | ||
1077 | error: | |
1078 | return ret; | |
1079 | } | |
1080 | ||
1081 | /* | |
e6142f2e | 1082 | * Setup sockets and directory needed by the consumerds' communication with the |
d063d709 | 1083 | * session daemon. |
d6f42150 | 1084 | */ |
e6142f2e | 1085 | static int set_consumer_sockets(struct consumer_data *consumer_data) |
d6f42150 DG |
1086 | { |
1087 | int ret; | |
e6142f2e | 1088 | char *path = NULL; |
d6f42150 | 1089 | |
6c71277b | 1090 | switch (consumer_data->type) { |
7753dea8 | 1091 | case LTTNG_CONSUMER_KERNEL: |
412d7227 | 1092 | path = the_config.kconsumerd_path.value; |
7753dea8 MD |
1093 | break; |
1094 | case LTTNG_CONSUMER64_UST: | |
412d7227 | 1095 | path = the_config.consumerd64_path.value; |
7753dea8 MD |
1096 | break; |
1097 | case LTTNG_CONSUMER32_UST: | |
412d7227 | 1098 | path = the_config.consumerd32_path.value; |
7753dea8 MD |
1099 | break; |
1100 | default: | |
1101 | ERR("Consumer type unknown"); | |
1102 | ret = -EINVAL; | |
1103 | goto error; | |
d6f42150 | 1104 | } |
e6142f2e | 1105 | assert(path); |
d6f42150 | 1106 | |
67e40797 DG |
1107 | DBG2("Creating consumer directory: %s", path); |
1108 | ||
6c71277b | 1109 | ret = mkdir(path, S_IRWXU | S_IRGRP | S_IXGRP); |
e7e1ef17 JR |
1110 | if (ret < 0 && errno != EEXIST) { |
1111 | PERROR("mkdir"); | |
1112 | ERR("Failed to create %s", path); | |
1113 | goto error; | |
d6f42150 | 1114 | } |
6c71277b | 1115 | if (is_root) { |
28ab59d0 JR |
1116 | gid_t gid; |
1117 | ||
412d7227 SM |
1118 | ret = utils_get_group_id(the_config.tracing_group_name.value, |
1119 | true, &gid); | |
28ab59d0 JR |
1120 | if (ret) { |
1121 | /* Default to root group. */ | |
1122 | gid = 0; | |
1123 | } | |
1124 | ||
1125 | ret = chown(path, 0, gid); | |
6c71277b MD |
1126 | if (ret < 0) { |
1127 | ERR("Unable to set group on %s", path); | |
1128 | PERROR("chown"); | |
1129 | goto error; | |
1130 | } | |
1131 | } | |
d6f42150 | 1132 | |
e6142f2e | 1133 | /* Create the consumerd error unix socket */ |
3bd1e081 MD |
1134 | consumer_data->err_sock = |
1135 | lttcomm_create_unix_sock(consumer_data->err_unix_sock_path); | |
1136 | if (consumer_data->err_sock < 0) { | |
1137 | ERR("Create unix sock failed: %s", consumer_data->err_unix_sock_path); | |
d6f42150 DG |
1138 | ret = -1; |
1139 | goto error; | |
1140 | } | |
1141 | ||
a24f05ab MD |
1142 | /* |
1143 | * Set the CLOEXEC flag. Return code is useless because either way, the | |
1144 | * show must go on. | |
1145 | */ | |
1146 | ret = utils_set_fd_cloexec(consumer_data->err_sock); | |
1147 | if (ret < 0) { | |
1148 | PERROR("utils_set_fd_cloexec"); | |
1149 | /* continue anyway */ | |
1150 | } | |
1151 | ||
d6f42150 | 1152 | /* File permission MUST be 660 */ |
3bd1e081 | 1153 | ret = chmod(consumer_data->err_unix_sock_path, |
54d01ffb | 1154 | S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP); |
d6f42150 | 1155 | if (ret < 0) { |
3bd1e081 | 1156 | ERR("Set file permissions failed: %s", consumer_data->err_unix_sock_path); |
67e40797 | 1157 | PERROR("chmod"); |
d6f42150 DG |
1158 | goto error; |
1159 | } | |
1160 | ||
1161 | error: | |
1162 | return ret; | |
1163 | } | |
1164 | ||
fac6795d | 1165 | /* |
d063d709 | 1166 | * Signal handler for the daemon |
cf3af59e | 1167 | * |
54d01ffb DG |
1168 | * Simply stop all worker threads, leaving main() return gracefully after |
1169 | * joining all threads and calling cleanup(). | |
fac6795d DG |
1170 | */ |
1171 | static void sighandler(int sig) | |
1172 | { | |
1173 | switch (sig) { | |
cf3af59e | 1174 | case SIGINT: |
af87c45a | 1175 | DBG("SIGINT caught"); |
cf3af59e MD |
1176 | stop_threads(); |
1177 | break; | |
1178 | case SIGTERM: | |
af87c45a | 1179 | DBG("SIGTERM caught"); |
cf3af59e MD |
1180 | stop_threads(); |
1181 | break; | |
0bb7724a DG |
1182 | case SIGUSR1: |
1183 | CMM_STORE_SHARED(recv_child_signal, 1); | |
1184 | break; | |
cf3af59e MD |
1185 | default: |
1186 | break; | |
fac6795d | 1187 | } |
fac6795d DG |
1188 | } |
1189 | ||
1190 | /* | |
d063d709 | 1191 | * Setup signal handler for : |
1d4b027a | 1192 | * SIGINT, SIGTERM, SIGPIPE |
fac6795d | 1193 | */ |
1d4b027a | 1194 | static int set_signal_handler(void) |
fac6795d | 1195 | { |
1d4b027a DG |
1196 | int ret = 0; |
1197 | struct sigaction sa; | |
1198 | sigset_t sigset; | |
fac6795d | 1199 | |
1d4b027a | 1200 | if ((ret = sigemptyset(&sigset)) < 0) { |
76d7553f | 1201 | PERROR("sigemptyset"); |
1d4b027a DG |
1202 | return ret; |
1203 | } | |
d6f42150 | 1204 | |
1d4b027a DG |
1205 | sa.sa_mask = sigset; |
1206 | sa.sa_flags = 0; | |
0072e5e2 MD |
1207 | |
1208 | sa.sa_handler = sighandler; | |
1d4b027a | 1209 | if ((ret = sigaction(SIGTERM, &sa, NULL)) < 0) { |
76d7553f | 1210 | PERROR("sigaction"); |
1d4b027a | 1211 | return ret; |
d6f42150 DG |
1212 | } |
1213 | ||
1d4b027a | 1214 | if ((ret = sigaction(SIGINT, &sa, NULL)) < 0) { |
76d7553f | 1215 | PERROR("sigaction"); |
1d4b027a | 1216 | return ret; |
d6f42150 | 1217 | } |
aaf26714 | 1218 | |
0072e5e2 | 1219 | if ((ret = sigaction(SIGUSR1, &sa, NULL)) < 0) { |
76d7553f | 1220 | PERROR("sigaction"); |
1d4b027a | 1221 | return ret; |
8c0faa1d DG |
1222 | } |
1223 | ||
0072e5e2 MD |
1224 | sa.sa_handler = SIG_IGN; |
1225 | if ((ret = sigaction(SIGPIPE, &sa, NULL)) < 0) { | |
0bb7724a DG |
1226 | PERROR("sigaction"); |
1227 | return ret; | |
1228 | } | |
1229 | ||
1230 | DBG("Signal handler set for SIGTERM, SIGUSR1, SIGPIPE and SIGINT"); | |
1d4b027a DG |
1231 | |
1232 | return ret; | |
fac6795d DG |
1233 | } |
1234 | ||
f3ed775e | 1235 | /* |
d063d709 | 1236 | * Set open files limit to unlimited. This daemon can open a large number of |
514bb9f0 | 1237 | * file descriptors in order to consume multiple kernel traces. |
f3ed775e DG |
1238 | */ |
1239 | static void set_ulimit(void) | |
1240 | { | |
1241 | int ret; | |
1242 | struct rlimit lim; | |
1243 | ||
514bb9f0 | 1244 | /* The kernel does not allow an infinite limit for open files */ |
f3ed775e DG |
1245 | lim.rlim_cur = 65535; |
1246 | lim.rlim_max = 65535; | |
1247 | ||
1248 | ret = setrlimit(RLIMIT_NOFILE, &lim); | |
1249 | if (ret < 0) { | |
76d7553f | 1250 | PERROR("failed to set open files limit"); |
f3ed775e DG |
1251 | } |
1252 | } | |
1253 | ||
4a15001e | 1254 | static int write_pidfile(void) |
35f90c40 | 1255 | { |
412d7227 | 1256 | return utils_create_pid_file(getpid(), the_config.pid_file_path.value); |
35f90c40 DG |
1257 | } |
1258 | ||
e6142f2e JG |
1259 | static int set_clock_plugin_env(void) |
1260 | { | |
1261 | int ret = 0; | |
1262 | char *env_value = NULL; | |
cd9290dd | 1263 | |
412d7227 | 1264 | if (!the_config.lttng_ust_clock_plugin.value) { |
e6142f2e JG |
1265 | goto end; |
1266 | } | |
1267 | ||
3cfcd698 | 1268 | ret = asprintf(&env_value, "LTTNG_UST_CLOCK_PLUGIN=%s", |
412d7227 | 1269 | the_config.lttng_ust_clock_plugin.value); |
cd9290dd | 1270 | if (ret < 0) { |
e6142f2e JG |
1271 | PERROR("asprintf"); |
1272 | goto end; | |
cd9290dd DG |
1273 | } |
1274 | ||
e6142f2e JG |
1275 | ret = putenv(env_value); |
1276 | if (ret) { | |
1277 | free(env_value); | |
1278 | PERROR("putenv of LTTNG_UST_CLOCK_PLUGIN"); | |
1279 | goto end; | |
1280 | } | |
cd9290dd | 1281 | |
e6142f2e | 1282 | DBG("Updated LTTNG_UST_CLOCK_PLUGIN environment variable to \"%s\"", |
412d7227 | 1283 | the_config.lttng_ust_clock_plugin.value); |
e6142f2e | 1284 | end: |
4a15001e | 1285 | return ret; |
ef367a93 JG |
1286 | } |
1287 | ||
99d688f2 JG |
1288 | static void destroy_all_sessions_and_wait(void) |
1289 | { | |
1290 | struct ltt_session *session, *tmp; | |
1291 | struct ltt_session_list *session_list; | |
1292 | ||
1293 | session_list = session_get_list(); | |
1294 | DBG("Initiating destruction of all sessions"); | |
1295 | ||
1296 | if (!session_list) { | |
1297 | return; | |
1298 | } | |
1299 | ||
99d688f2 JG |
1300 | session_lock_list(); |
1301 | /* Initiate the destruction of all sessions. */ | |
1302 | cds_list_for_each_entry_safe(session, tmp, | |
1303 | &session_list->head, list) { | |
1304 | if (!session_get(session)) { | |
1305 | continue; | |
1306 | } | |
1307 | ||
1308 | session_lock(session); | |
1309 | if (session->destroyed) { | |
1310 | goto unlock_session; | |
1311 | } | |
63763958 | 1312 | (void) cmd_stop_trace(session); |
412d7227 SM |
1313 | (void) cmd_destroy_session( |
1314 | session, the_notification_thread_handle, NULL); | |
99d688f2 JG |
1315 | unlock_session: |
1316 | session_unlock(session); | |
1317 | session_put(session); | |
1318 | } | |
1319 | session_unlock_list(); | |
1320 | ||
1321 | /* Wait for the destruction of all sessions to complete. */ | |
1322 | DBG("Waiting for the destruction of all sessions to complete"); | |
1323 | session_list_wait_empty(); | |
1324 | DBG("Destruction of all sessions completed"); | |
1325 | } | |
1326 | ||
b69a1b40 JG |
1327 | static void unregister_all_triggers(void) |
1328 | { | |
1329 | enum lttng_error_code ret_code; | |
1330 | enum lttng_trigger_status trigger_status; | |
1331 | struct lttng_triggers *triggers = NULL; | |
1332 | unsigned int trigger_count, i; | |
1333 | const struct lttng_credentials creds = { | |
1334 | .uid = LTTNG_OPTIONAL_INIT_VALUE(0), | |
1335 | }; | |
1336 | ||
1337 | DBG("Unregistering all triggers"); | |
1338 | ||
1339 | /* | |
1340 | * List all triggers as "root" since we wish to unregister all triggers. | |
1341 | */ | |
1342 | ret_code = notification_thread_command_list_triggers( | |
412d7227 SM |
1343 | the_notification_thread_handle, creds.uid.value, |
1344 | &triggers); | |
b69a1b40 JG |
1345 | if (ret_code != LTTNG_OK) { |
1346 | ERR("Failed to list triggers while unregistering all triggers"); | |
1347 | goto end; | |
1348 | } | |
1349 | ||
1350 | trigger_status = lttng_triggers_get_count(triggers, &trigger_count); | |
1351 | assert(trigger_status == LTTNG_TRIGGER_STATUS_OK); | |
1352 | ||
1353 | for (i = 0; i < trigger_count; i++) { | |
b69a1b40 JG |
1354 | uid_t trigger_owner; |
1355 | const char *trigger_name; | |
1356 | const struct lttng_trigger *trigger = | |
1357 | lttng_triggers_get_at_index(triggers, i); | |
1358 | ||
1359 | assert(trigger); | |
1360 | ||
1361 | trigger_status = lttng_trigger_get_owner_uid( | |
1362 | trigger, &trigger_owner); | |
1363 | assert(trigger_status == LTTNG_TRIGGER_STATUS_OK); | |
1364 | ||
1365 | trigger_status = lttng_trigger_get_name(trigger, &trigger_name); | |
1366 | assert(trigger_status == LTTNG_TRIGGER_STATUS_OK); | |
1367 | ||
1368 | DBG("Unregistering trigger: trigger owner uid = %d, trigger name = '%s'", | |
1369 | (int) trigger_owner, trigger_name); | |
1370 | ||
412d7227 SM |
1371 | ret_code = cmd_unregister_trigger(&creds, trigger, |
1372 | the_notification_thread_handle); | |
b69a1b40 JG |
1373 | if (ret_code != LTTNG_OK) { |
1374 | ERR("Failed to unregister trigger: trigger owner uid = %d, trigger name = '%s', error: '%s'", | |
1375 | (int) trigger_owner, trigger_name, | |
1376 | lttng_strerror(-ret_code)); | |
1377 | /* Continue to unregister the remaining triggers. */ | |
1378 | } | |
1379 | } | |
1380 | end: | |
1381 | lttng_triggers_destroy(triggers); | |
1382 | } | |
1383 | ||
929f71ec JG |
1384 | static int run_as_worker_post_fork_cleanup(void *data) |
1385 | { | |
1386 | struct sessiond_config *sessiond_config = data; | |
1387 | ||
1388 | sessiond_config_fini(sessiond_config); | |
1389 | return 0; | |
1390 | } | |
1391 | ||
1392 | static int launch_run_as_worker(const char *procname) | |
1393 | { | |
1394 | /* | |
1395 | * Clean-up before forking the run-as worker. Any dynamically | |
1396 | * allocated memory of which the worker is not aware will | |
1397 | * be leaked as the process forks a run-as worker (and performs | |
1398 | * no exec*()). The same would apply to any opened fd. | |
1399 | */ | |
412d7227 SM |
1400 | return run_as_create_worker( |
1401 | procname, run_as_worker_post_fork_cleanup, &the_config); | |
929f71ec JG |
1402 | } |
1403 | ||
52a0e931 JG |
1404 | static void sessiond_uuid_log(void) |
1405 | { | |
c70636a7 | 1406 | char uuid_str[LTTNG_UUID_STR_LEN]; |
52a0e931 | 1407 | |
412d7227 | 1408 | lttng_uuid_to_str(the_sessiond_uuid, uuid_str); |
52a0e931 JG |
1409 | DBG("Starting lttng-sessiond {%s}", uuid_str); |
1410 | } | |
1411 | ||
fac6795d DG |
1412 | /* |
1413 | * main | |
1414 | */ | |
1415 | int main(int argc, char **argv) | |
1416 | { | |
4a15001e | 1417 | int ret = 0, retval = 0; |
e6142f2e | 1418 | const char *env_app_timeout; |
b3530820 JG |
1419 | struct lttng_pipe *ust32_channel_monitor_pipe = NULL, |
1420 | *ust64_channel_monitor_pipe = NULL, | |
1421 | *kernel_channel_monitor_pipe = NULL; | |
a3707772 | 1422 | struct lttng_thread *ht_cleanup_thread = NULL; |
bc26e826 | 1423 | struct timer_thread_parameters timer_thread_parameters; |
64d9b072 JG |
1424 | /* Rotation thread handle. */ |
1425 | struct rotation_thread_handle *rotation_thread_handle = NULL; | |
d086f507 JD |
1426 | /* Queue of rotation jobs populated by the sessiond-timer. */ |
1427 | struct rotation_thread_timer_queue *rotation_timer_queue = NULL; | |
917a718d | 1428 | struct lttng_thread *client_thread = NULL; |
4a91420c | 1429 | struct lttng_thread *notification_thread = NULL; |
bd9addf7 | 1430 | struct lttng_thread *register_apps_thread = NULL; |
761ffce2 | 1431 | enum event_notifier_error_accounting_status event_notifier_error_accounting_status; |
fac6795d | 1432 | |
f5fb86c1 | 1433 | logger_set_thread_name("Main", false); |
335a95b7 MD |
1434 | init_kernel_workarounds(); |
1435 | ||
f6a9efaa DG |
1436 | rcu_register_thread(); |
1437 | ||
4a15001e MD |
1438 | if (set_signal_handler()) { |
1439 | retval = -1; | |
1440 | goto exit_set_signal_handler; | |
0bb7724a DG |
1441 | } |
1442 | ||
92816cc3 | 1443 | if (timer_signal_init()) { |
d086f507 JD |
1444 | retval = -1; |
1445 | goto exit_set_signal_handler; | |
1446 | } | |
1447 | ||
412d7227 SM |
1448 | the_page_size = sysconf(_SC_PAGESIZE); |
1449 | if (the_page_size < 0) { | |
12744796 | 1450 | PERROR("sysconf _SC_PAGESIZE"); |
412d7227 SM |
1451 | the_page_size = LONG_MAX; |
1452 | WARN("Fallback page size to %ld", the_page_size); | |
12744796 DG |
1453 | } |
1454 | ||
412d7227 | 1455 | ret = sessiond_config_init(&the_config); |
e6142f2e JG |
1456 | if (ret) { |
1457 | retval = -1; | |
1458 | goto exit_set_signal_handler; | |
1459 | } | |
1460 | ||
2788b494 JR |
1461 | /* |
1462 | * Init config from environment variables. | |
1463 | * Command line option override env configuration per-doc. Do env first. | |
1464 | */ | |
412d7227 | 1465 | sessiond_config_apply_env_config(&the_config); |
2788b494 | 1466 | |
4a15001e MD |
1467 | /* |
1468 | * Parse arguments and load the daemon configuration file. | |
1469 | * | |
1470 | * We have an exit_options exit path to free memory reserved by | |
1471 | * set_options. This is needed because the rest of sessiond_cleanup() | |
1472 | * depends on ht_cleanup_thread, which depends on lttng_daemonize, which | |
1473 | * depends on set_options. | |
1474 | */ | |
fac6795d | 1475 | progname = argv[0]; |
4a15001e MD |
1476 | if (set_options(argc, argv)) { |
1477 | retval = -1; | |
1478 | goto exit_options; | |
fac6795d DG |
1479 | } |
1480 | ||
e6142f2e JG |
1481 | /* |
1482 | * Resolve all paths received as arguments, configuration option, or | |
1483 | * through environment variable as absolute paths. This is necessary | |
1484 | * since daemonizing causes the sessiond's current working directory | |
1485 | * to '/'. | |
1486 | */ | |
412d7227 | 1487 | ret = sessiond_config_resolve_paths(&the_config); |
e6142f2e JG |
1488 | if (ret) { |
1489 | goto exit_options; | |
1490 | } | |
1491 | ||
1492 | /* Apply config. */ | |
412d7227 SM |
1493 | lttng_opt_verbose = the_config.verbose; |
1494 | lttng_opt_quiet = the_config.quiet; | |
1495 | the_kconsumer_data.err_unix_sock_path = | |
1496 | the_config.kconsumerd_err_unix_sock_path.value; | |
1497 | the_kconsumer_data.cmd_unix_sock_path = | |
1498 | the_config.kconsumerd_cmd_unix_sock_path.value; | |
1499 | the_ustconsumer32_data.err_unix_sock_path = | |
1500 | the_config.consumerd32_err_unix_sock_path.value; | |
1501 | the_ustconsumer32_data.cmd_unix_sock_path = | |
1502 | the_config.consumerd32_cmd_unix_sock_path.value; | |
1503 | the_ustconsumer64_data.err_unix_sock_path = | |
1504 | the_config.consumerd64_err_unix_sock_path.value; | |
1505 | the_ustconsumer64_data.cmd_unix_sock_path = | |
1506 | the_config.consumerd64_cmd_unix_sock_path.value; | |
e6142f2e JG |
1507 | set_clock_plugin_env(); |
1508 | ||
412d7227 | 1509 | sessiond_config_log(&the_config); |
52a0e931 | 1510 | sessiond_uuid_log(); |
e6142f2e | 1511 | |
a3bc3918 JR |
1512 | if (opt_print_version) { |
1513 | print_version(); | |
1514 | retval = 0; | |
1515 | goto exit_options; | |
1516 | } | |
1517 | ||
f472090a JG |
1518 | if (create_lttng_rundir()) { |
1519 | retval = -1; | |
1520 | goto exit_options; | |
1521 | } | |
1522 | ||
1523 | /* Abort launch if a session daemon is already running. */ | |
1524 | if (check_existing_daemon()) { | |
1525 | ERR("A session daemon is already running."); | |
1526 | retval = -1; | |
1527 | goto exit_options; | |
1528 | } | |
1529 | ||
fac6795d | 1530 | /* Daemonize */ |
412d7227 | 1531 | if (the_config.daemonize || the_config.background) { |
ceed52b5 MD |
1532 | int i; |
1533 | ||
412d7227 SM |
1534 | ret = lttng_daemonize(&the_child_ppid, &recv_child_signal, |
1535 | !the_config.background); | |
53094c05 | 1536 | if (ret < 0) { |
4a15001e MD |
1537 | retval = -1; |
1538 | goto exit_options; | |
53094c05 | 1539 | } |
0bb7724a | 1540 | |
ceed52b5 | 1541 | /* |
0bb7724a | 1542 | * We are in the child. Make sure all other file descriptors are |
4a15001e | 1543 | * closed, in case we are called with more opened file |
f472090a | 1544 | * descriptors than the standard ones and the lock file. |
ceed52b5 MD |
1545 | */ |
1546 | for (i = 3; i < sysconf(_SC_OPEN_MAX); i++) { | |
f472090a JG |
1547 | if (i == lockfile_fd) { |
1548 | continue; | |
1549 | } | |
ceed52b5 MD |
1550 | (void) close(i); |
1551 | } | |
1552 | } | |
1553 | ||
929f71ec | 1554 | if (launch_run_as_worker(argv[0]) < 0) { |
7567352f MD |
1555 | goto exit_create_run_as_worker_cleanup; |
1556 | } | |
1557 | ||
4a15001e MD |
1558 | /* |
1559 | * Starting from here, we can create threads. This needs to be after | |
1560 | * lttng_daemonize due to RCU. | |
1561 | */ | |
1562 | ||
1563 | /* | |
1564 | * Initialize the health check subsystem. This call should set the | |
1565 | * appropriate time values. | |
1566 | */ | |
412d7227 SM |
1567 | the_health_sessiond = health_app_create(NR_HEALTH_SESSIOND_TYPES); |
1568 | if (!the_health_sessiond) { | |
4a15001e MD |
1569 | PERROR("health_app_create error"); |
1570 | retval = -1; | |
0d64e8fb | 1571 | goto stop_threads; |
4a15001e MD |
1572 | } |
1573 | ||
4a15001e | 1574 | /* Create thread to clean up RCU hash tables */ |
a3707772 JG |
1575 | ht_cleanup_thread = launch_ht_cleanup_thread(); |
1576 | if (!ht_cleanup_thread) { | |
4a15001e | 1577 | retval = -1; |
0d64e8fb | 1578 | goto stop_threads; |
4a15001e MD |
1579 | } |
1580 | ||
ceed52b5 | 1581 | /* Create thread quit pipe */ |
a7333da7 | 1582 | if (sessiond_init_thread_quit_pipe()) { |
4a15001e | 1583 | retval = -1; |
0d64e8fb | 1584 | goto stop_threads; |
fac6795d DG |
1585 | } |
1586 | ||
1587 | /* Check if daemon is UID = 0 */ | |
1588 | is_root = !getuid(); | |
fac6795d | 1589 | if (is_root) { |
67e40797 | 1590 | /* Create global run dir with root access */ |
67e40797 | 1591 | |
b3530820 JG |
1592 | kernel_channel_monitor_pipe = lttng_pipe_open(0); |
1593 | if (!kernel_channel_monitor_pipe) { | |
1594 | ERR("Failed to create kernel consumer channel monitor pipe"); | |
1595 | retval = -1; | |
0d64e8fb | 1596 | goto stop_threads; |
b3530820 | 1597 | } |
412d7227 | 1598 | the_kconsumer_data.channel_monitor_pipe = |
b3530820 | 1599 | lttng_pipe_release_writefd( |
412d7227 SM |
1600 | kernel_channel_monitor_pipe); |
1601 | if (the_kconsumer_data.channel_monitor_pipe < 0) { | |
b3530820 | 1602 | retval = -1; |
0d64e8fb | 1603 | goto stop_threads; |
b3530820 | 1604 | } |
fac6795d DG |
1605 | } |
1606 | ||
5c827ce0 | 1607 | /* Set consumer initial state */ |
412d7227 SM |
1608 | the_kernel_consumerd_state = CONSUMER_STOPPED; |
1609 | the_ust_consumerd_state = CONSUMER_STOPPED; | |
5c827ce0 | 1610 | |
b3530820 JG |
1611 | ust32_channel_monitor_pipe = lttng_pipe_open(0); |
1612 | if (!ust32_channel_monitor_pipe) { | |
1613 | ERR("Failed to create 32-bit user space consumer channel monitor pipe"); | |
1614 | retval = -1; | |
0d64e8fb | 1615 | goto stop_threads; |
b3530820 | 1616 | } |
412d7227 SM |
1617 | the_ustconsumer32_data.channel_monitor_pipe = |
1618 | lttng_pipe_release_writefd(ust32_channel_monitor_pipe); | |
1619 | if (the_ustconsumer32_data.channel_monitor_pipe < 0) { | |
b3530820 | 1620 | retval = -1; |
0d64e8fb | 1621 | goto stop_threads; |
b3530820 | 1622 | } |
62c43103 | 1623 | |
d086f507 | 1624 | /* |
92816cc3 JG |
1625 | * The rotation_thread_timer_queue structure is shared between the |
1626 | * sessiond timer thread and the rotation thread. The main thread keeps | |
1627 | * its ownership and destroys it when both threads have been joined. | |
d086f507 | 1628 | */ |
92816cc3 | 1629 | rotation_timer_queue = rotation_thread_timer_queue_create(); |
d086f507 JD |
1630 | if (!rotation_timer_queue) { |
1631 | retval = -1; | |
0d64e8fb | 1632 | goto stop_threads; |
d086f507 | 1633 | } |
bc26e826 JG |
1634 | timer_thread_parameters.rotation_thread_job_queue = |
1635 | rotation_timer_queue; | |
67e40797 | 1636 | |
b3530820 JG |
1637 | ust64_channel_monitor_pipe = lttng_pipe_open(0); |
1638 | if (!ust64_channel_monitor_pipe) { | |
1639 | ERR("Failed to create 64-bit user space consumer channel monitor pipe"); | |
1640 | retval = -1; | |
0d64e8fb | 1641 | goto stop_threads; |
b3530820 | 1642 | } |
412d7227 SM |
1643 | the_ustconsumer64_data.channel_monitor_pipe = |
1644 | lttng_pipe_release_writefd(ust64_channel_monitor_pipe); | |
1645 | if (the_ustconsumer64_data.channel_monitor_pipe < 0) { | |
b3530820 | 1646 | retval = -1; |
0d64e8fb | 1647 | goto stop_threads; |
b3530820 | 1648 | } |
847177cd | 1649 | |
1427f9b2 DG |
1650 | /* |
1651 | * Init UST app hash table. Alloc hash table before this point since | |
1652 | * cleanup() can get called after that point. | |
1653 | */ | |
4a15001e | 1654 | if (ust_app_ht_alloc()) { |
ddbeb0f6 | 1655 | ERR("Failed to allocate UST app hash table"); |
4a15001e | 1656 | retval = -1; |
0d64e8fb | 1657 | goto stop_threads; |
4a15001e | 1658 | } |
1427f9b2 | 1659 | |
761ffce2 FD |
1660 | event_notifier_error_accounting_status = event_notifier_error_accounting_init( |
1661 | the_config.event_notifier_buffer_size_kernel, | |
1662 | the_config.event_notifier_buffer_size_userspace); | |
1663 | if (event_notifier_error_accounting_status != EVENT_NOTIFIER_ERROR_ACCOUNTING_STATUS_OK) { | |
1664 | ERR("Failed to initialize event notifier error accounting system"); | |
1665 | retval = -1; | |
1666 | goto stop_threads; | |
1667 | } | |
90aa04a1 | 1668 | |
6a4e4039 JG |
1669 | /* |
1670 | * Initialize agent app hash table. We allocate the hash table here | |
1671 | * since cleanup() can get called after this point. | |
1672 | */ | |
1673 | if (agent_app_ht_alloc()) { | |
1674 | ERR("Failed to allocate Agent app hash table"); | |
4a15001e | 1675 | retval = -1; |
0d64e8fb | 1676 | goto stop_threads; |
f20baf8e DG |
1677 | } |
1678 | ||
44760c20 JR |
1679 | if (agent_by_event_notifier_domain_ht_create()) { |
1680 | ERR("Failed to allocate per-event notifier domain agent hash table"); | |
1681 | retval = -1; | |
1682 | goto stop_threads; | |
1683 | } | |
a88df331 DG |
1684 | /* |
1685 | * These actions must be executed as root. We do that *after* setting up | |
1686 | * the sockets path because we MUST make the check for another daemon using | |
1687 | * those paths *before* trying to set the kernel consumer sockets and init | |
1688 | * kernel tracer. | |
1689 | */ | |
1690 | if (is_root) { | |
412d7227 | 1691 | if (set_consumer_sockets(&the_kconsumer_data)) { |
4a15001e | 1692 | retval = -1; |
0d64e8fb | 1693 | goto stop_threads; |
7753dea8 MD |
1694 | } |
1695 | ||
a88df331 | 1696 | /* Setup kernel tracer */ |
412d7227 | 1697 | if (!the_config.no_kernel) { |
4fba7219 DG |
1698 | init_kernel_tracer(); |
1699 | } | |
a88df331 DG |
1700 | |
1701 | /* Set ulimit for open files */ | |
1702 | set_ulimit(); | |
fac6795d | 1703 | } |
4063050c MD |
1704 | /* init lttng_fd tracking must be done after set_ulimit. */ |
1705 | lttng_fd_init(); | |
fac6795d | 1706 | |
412d7227 | 1707 | if (set_consumer_sockets(&the_ustconsumer64_data)) { |
4a15001e | 1708 | retval = -1; |
0d64e8fb | 1709 | goto stop_threads; |
67e40797 DG |
1710 | } |
1711 | ||
412d7227 | 1712 | if (set_consumer_sockets(&the_ustconsumer32_data)) { |
4a15001e | 1713 | retval = -1; |
0d64e8fb | 1714 | goto stop_threads; |
67e40797 DG |
1715 | } |
1716 | ||
5b8719f5 | 1717 | /* Get parent pid if -S, --sig-parent is specified. */ |
412d7227 SM |
1718 | if (the_config.sig_parent) { |
1719 | the_ppid = getppid(); | |
5b8719f5 DG |
1720 | } |
1721 | ||
7a485870 | 1722 | /* Setup the kernel pipe for waking up the kernel thread */ |
412d7227 SM |
1723 | if (is_root && !the_config.no_kernel) { |
1724 | if (utils_create_pipe_cloexec(the_kernel_poll_pipe)) { | |
4a15001e | 1725 | retval = -1; |
0d64e8fb | 1726 | goto stop_threads; |
6620da75 | 1727 | } |
7a485870 DG |
1728 | } |
1729 | ||
099e26bd | 1730 | /* Setup the thread apps communication pipe. */ |
4a15001e MD |
1731 | if (utils_create_pipe_cloexec(apps_cmd_pipe)) { |
1732 | retval = -1; | |
0d64e8fb | 1733 | goto stop_threads; |
099e26bd DG |
1734 | } |
1735 | ||
d0b96690 | 1736 | /* Setup the thread apps notify communication pipe. */ |
4a15001e MD |
1737 | if (utils_create_pipe_cloexec(apps_cmd_notify_pipe)) { |
1738 | retval = -1; | |
0d64e8fb | 1739 | goto stop_threads; |
d0b96690 DG |
1740 | } |
1741 | ||
7972aab2 DG |
1742 | /* Initialize global buffer per UID and PID registry. */ |
1743 | buffer_reg_init_uid_registry(); | |
1744 | buffer_reg_init_pid_registry(); | |
1745 | ||
099e26bd | 1746 | /* Init UST command queue. */ |
8bdee6e2 | 1747 | cds_wfcq_init(&ust_cmd_queue.head, &ust_cmd_queue.tail); |
099e26bd | 1748 | |
2f77fc4b | 1749 | cmd_init(); |
00e2e675 | 1750 | |
ae9e45b3 DG |
1751 | /* Check for the application socket timeout env variable. */ |
1752 | env_app_timeout = getenv(DEFAULT_APP_SOCKET_TIMEOUT_ENV); | |
1753 | if (env_app_timeout) { | |
412d7227 | 1754 | the_config.app_socket_timeout = atoi(env_app_timeout); |
ae9e45b3 | 1755 | } else { |
412d7227 | 1756 | the_config.app_socket_timeout = DEFAULT_APP_SOCKET_RW_TIMEOUT; |
ae9e45b3 DG |
1757 | } |
1758 | ||
4a15001e MD |
1759 | ret = write_pidfile(); |
1760 | if (ret) { | |
1761 | ERR("Error in write_pidfile"); | |
1762 | retval = -1; | |
0d64e8fb | 1763 | goto stop_threads; |
4a15001e | 1764 | } |
35f90c40 | 1765 | |
554831e7 MD |
1766 | /* Initialize communication library */ |
1767 | lttcomm_init(); | |
4a15001e | 1768 | /* Initialize TCP timeout values */ |
d831c249 | 1769 | lttcomm_inet_init(); |
554831e7 | 1770 | |
12b4fb37 | 1771 | /* Create health-check thread. */ |
173fca4f | 1772 | if (!launch_health_management_thread()) { |
4a15001e | 1773 | retval = -1; |
0d64e8fb | 1774 | goto stop_threads; |
44a5e5eb DG |
1775 | } |
1776 | ||
b3530820 | 1777 | /* notification_thread_data acquires the pipes' read side. */ |
412d7227 SM |
1778 | the_notification_thread_handle = notification_thread_handle_create( |
1779 | ust32_channel_monitor_pipe, ust64_channel_monitor_pipe, | |
c8a9de5a | 1780 | kernel_channel_monitor_pipe); |
412d7227 | 1781 | if (!the_notification_thread_handle) { |
b3530820 JG |
1782 | retval = -1; |
1783 | ERR("Failed to create notification thread shared data"); | |
0d64e8fb | 1784 | goto stop_threads; |
b3530820 JG |
1785 | } |
1786 | ||
1787 | /* Create notification thread. */ | |
4a91420c | 1788 | notification_thread = launch_notification_thread( |
412d7227 | 1789 | the_notification_thread_handle); |
4a91420c | 1790 | if (!notification_thread) { |
b3530820 | 1791 | retval = -1; |
0d64e8fb | 1792 | goto stop_threads; |
b3530820 JG |
1793 | } |
1794 | ||
d086f507 | 1795 | /* Create timer thread. */ |
bc26e826 | 1796 | if (!launch_timer_thread(&timer_thread_parameters)) { |
d086f507 | 1797 | retval = -1; |
0d64e8fb | 1798 | goto stop_threads; |
d086f507 | 1799 | } |
d086f507 | 1800 | |
db66e574 JD |
1801 | /* rotation_thread_data acquires the pipes' read side. */ |
1802 | rotation_thread_handle = rotation_thread_handle_create( | |
412d7227 | 1803 | rotation_timer_queue, the_notification_thread_handle); |
db66e574 JD |
1804 | if (!rotation_thread_handle) { |
1805 | retval = -1; | |
1806 | ERR("Failed to create rotation thread shared data"); | |
1807 | stop_threads(); | |
0d64e8fb | 1808 | goto stop_threads; |
db66e574 | 1809 | } |
db66e574 JD |
1810 | |
1811 | /* Create rotation thread. */ | |
64d9b072 | 1812 | if (!launch_rotation_thread(rotation_thread_handle)) { |
db66e574 | 1813 | retval = -1; |
0d64e8fb | 1814 | goto stop_threads; |
db66e574 JD |
1815 | } |
1816 | ||
cf3af59e | 1817 | /* Create thread to manage the client socket */ |
917a718d JG |
1818 | client_thread = launch_client_thread(); |
1819 | if (!client_thread) { | |
4a15001e | 1820 | retval = -1; |
0d64e8fb | 1821 | goto stop_threads; |
cf3af59e | 1822 | } |
fac6795d | 1823 | |
308df7bb | 1824 | /* Set credentials of the client socket and rundir */ |
412d7227 | 1825 | if (is_root && set_permissions(the_config.rundir.value)) { |
308df7bb JG |
1826 | retval = -1; |
1827 | goto stop_threads; | |
1828 | } | |
1829 | ||
5d1b0219 JG |
1830 | if (!launch_ust_dispatch_thread(&ust_cmd_queue, apps_cmd_pipe[1], |
1831 | apps_cmd_notify_pipe[1])) { | |
4a15001e | 1832 | retval = -1; |
0d64e8fb | 1833 | goto stop_threads; |
099e26bd DG |
1834 | } |
1835 | ||
1836 | /* Create thread to manage application registration. */ | |
bd9addf7 JG |
1837 | register_apps_thread = launch_application_registration_thread( |
1838 | &ust_cmd_queue); | |
1839 | if (!register_apps_thread) { | |
4a15001e | 1840 | retval = -1; |
0d64e8fb | 1841 | goto stop_threads; |
099e26bd DG |
1842 | } |
1843 | ||
cf3af59e | 1844 | /* Create thread to manage application socket */ |
7649924e | 1845 | if (!launch_application_management_thread(apps_cmd_pipe[0])) { |
4a15001e | 1846 | retval = -1; |
0d64e8fb | 1847 | goto stop_threads; |
d0b96690 DG |
1848 | } |
1849 | ||
1850 | /* Create thread to manage application notify socket */ | |
971a61c6 | 1851 | if (!launch_application_notification_thread(apps_cmd_notify_pipe[0])) { |
4a15001e | 1852 | retval = -1; |
0d64e8fb | 1853 | goto stop_threads; |
cf3af59e | 1854 | } |
fac6795d | 1855 | |
8a7e4590 JG |
1856 | /* Create agent management thread. */ |
1857 | if (!launch_agent_management_thread()) { | |
4a15001e | 1858 | retval = -1; |
0d64e8fb | 1859 | goto stop_threads; |
4d076222 DG |
1860 | } |
1861 | ||
6620da75 | 1862 | /* Don't start this thread if kernel tracing is not requested nor root */ |
412d7227 | 1863 | if (is_root && !the_config.no_kernel) { |
6620da75 | 1864 | /* Create kernel thread to manage kernel event */ |
412d7227 | 1865 | if (!launch_kernel_management_thread(the_kernel_poll_pipe[0])) { |
4a15001e | 1866 | retval = -1; |
0d64e8fb | 1867 | goto stop_threads; |
6620da75 | 1868 | } |
352b58f5 JR |
1869 | |
1870 | if (kernel_get_notification_fd() >= 0) { | |
1871 | ret = notification_thread_command_add_tracer_event_source( | |
412d7227 | 1872 | the_notification_thread_handle, |
352b58f5 JR |
1873 | kernel_get_notification_fd(), |
1874 | LTTNG_DOMAIN_KERNEL); | |
1875 | if (ret != LTTNG_OK) { | |
1876 | ERR("Failed to add kernel trigger event source to notification thread"); | |
1877 | retval = -1; | |
1878 | goto stop_threads; | |
1879 | } | |
1880 | } | |
ef367a93 | 1881 | } |
7a485870 | 1882 | |
3316b9d6 | 1883 | /* Load sessions. */ |
412d7227 SM |
1884 | ret = config_load_session( |
1885 | the_config.load_session_path.value, NULL, 1, 1, NULL); | |
4a15001e | 1886 | if (ret) { |
3316b9d6 | 1887 | ERR("Session load failed: %s", error_get_str(ret)); |
4a15001e | 1888 | retval = -1; |
0d64e8fb | 1889 | goto stop_threads; |
4a15001e MD |
1890 | } |
1891 | ||
3316b9d6 JG |
1892 | /* Initialization completed. */ |
1893 | sessiond_signal_parents(); | |
1894 | ||
4a15001e MD |
1895 | /* |
1896 | * This is where we start awaiting program completion (e.g. through | |
1897 | * signal that asks threads to teardown). | |
1898 | */ | |
1899 | ||
99d688f2 | 1900 | /* Initiate teardown once activity occurs on the quit pipe. */ |
2d54bfb6 | 1901 | sessiond_wait_for_quit_pipe(-1); |
917a718d | 1902 | |
0d64e8fb | 1903 | stop_threads: |
90aa04a1 | 1904 | |
917a718d JG |
1905 | /* |
1906 | * Ensure that the client thread is no longer accepting new commands, | |
1907 | * which could cause new sessions to be created. | |
1908 | */ | |
0d64e8fb JG |
1909 | if (client_thread) { |
1910 | lttng_thread_shutdown(client_thread); | |
917a718d | 1911 | lttng_thread_put(client_thread); |
917a718d JG |
1912 | } |
1913 | ||
99d688f2 | 1914 | destroy_all_sessions_and_wait(); |
0d64e8fb | 1915 | |
b69a1b40 JG |
1916 | /* |
1917 | * At this point no new trigger can be registered (no sessions are | |
1918 | * running/rotating) and clients can't connect to the session daemon | |
1919 | * anymore. Unregister all triggers. | |
1920 | */ | |
1921 | unregister_all_triggers(); | |
1922 | ||
bd9addf7 JG |
1923 | if (register_apps_thread) { |
1924 | lttng_thread_shutdown(register_apps_thread); | |
1925 | lttng_thread_put(register_apps_thread); | |
1926 | } | |
a3707772 | 1927 | lttng_thread_list_shutdown_orphans(); |
917a718d | 1928 | |
4d62fbf8 MD |
1929 | /* |
1930 | * Wait for all pending call_rcu work to complete before tearing | |
1931 | * down data structures. call_rcu worker may be trying to | |
1932 | * perform lookups in those structures. | |
1933 | */ | |
1934 | rcu_barrier(); | |
4a15001e MD |
1935 | /* |
1936 | * sessiond_cleanup() is called when no other thread is running, except | |
1937 | * the ht_cleanup thread, which is needed to destroy the hash tables. | |
1938 | */ | |
1939 | rcu_thread_online(); | |
1940 | sessiond_cleanup(); | |
06f525de | 1941 | |
3b8a092f | 1942 | /* |
1d25334c | 1943 | * Wait for all pending call_rcu work to complete before shutting down |
3b8a092f FD |
1944 | * the notification thread. This call_rcu work includes shutting down |
1945 | * UST apps and event notifier pipes. | |
1946 | */ | |
1947 | rcu_barrier(); | |
1948 | ||
4a91420c JG |
1949 | if (notification_thread) { |
1950 | lttng_thread_shutdown(notification_thread); | |
1951 | lttng_thread_put(notification_thread); | |
1952 | } | |
1953 | ||
90aa04a1 | 1954 | /* |
1d25334c FD |
1955 | * Error accounting teardown has to be done after the teardown of all |
1956 | * event notifier pipes to ensure that no tracer may try to use the | |
1957 | * error accounting facilities. | |
90aa04a1 FD |
1958 | */ |
1959 | event_notifier_error_accounting_fini(); | |
1960 | ||
1d25334c FD |
1961 | /* |
1962 | * Unloading the kernel modules needs to be done after all kernel | |
1963 | * ressources have been released. In our case, this includes the | |
1964 | * notification fd, the event notifier group fd, error accounting fd, | |
1965 | * all event and event notifier fds, etc. | |
1966 | * | |
1967 | * In short, at this point, we need to have called close() on all fds | |
1968 | * received from the kernel tracer. | |
1969 | */ | |
412d7227 | 1970 | if (is_root && !the_config.no_kernel) { |
1d25334c FD |
1971 | DBG("Unloading kernel modules"); |
1972 | modprobe_remove_lttng_all(); | |
1973 | } | |
1974 | ||
c4d5de9d JG |
1975 | /* |
1976 | * Ensure all prior call_rcu are done. call_rcu callbacks may push | |
1977 | * hash tables to the ht_cleanup thread. Therefore, we ensure that | |
1978 | * the queue is empty before shutting down the clean-up thread. | |
1979 | */ | |
1980 | rcu_barrier(); | |
1981 | ||
a3707772 JG |
1982 | if (ht_cleanup_thread) { |
1983 | lttng_thread_shutdown(ht_cleanup_thread); | |
1984 | lttng_thread_put(ht_cleanup_thread); | |
1985 | } | |
1986 | ||
64d9b072 JG |
1987 | rcu_thread_offline(); |
1988 | rcu_unregister_thread(); | |
1989 | ||
1990 | if (rotation_thread_handle) { | |
1991 | rotation_thread_handle_destroy(rotation_thread_handle); | |
1992 | } | |
1993 | ||
d086f507 JD |
1994 | /* |
1995 | * After the rotation and timer thread have quit, we can safely destroy | |
1996 | * the rotation_timer_queue. | |
1997 | */ | |
92816cc3 | 1998 | rotation_thread_timer_queue_destroy(rotation_timer_queue); |
c8a9de5a JG |
1999 | /* |
2000 | * The teardown of the notification system is performed after the | |
2001 | * session daemon's teardown in order to allow it to be notified | |
2002 | * of the active session and channels at the moment of the teardown. | |
2003 | */ | |
412d7227 SM |
2004 | if (the_notification_thread_handle) { |
2005 | notification_thread_handle_destroy( | |
2006 | the_notification_thread_handle); | |
c8a9de5a | 2007 | } |
b3530820 JG |
2008 | lttng_pipe_destroy(ust32_channel_monitor_pipe); |
2009 | lttng_pipe_destroy(ust64_channel_monitor_pipe); | |
2010 | lttng_pipe_destroy(kernel_channel_monitor_pipe); | |
4a15001e | 2011 | |
412d7227 SM |
2012 | if (the_health_sessiond) { |
2013 | health_app_destroy(the_health_sessiond); | |
9bc2ec5f | 2014 | } |
7567352f | 2015 | exit_create_run_as_worker_cleanup: |
4a15001e | 2016 | exit_options: |
f472090a | 2017 | sessiond_cleanup_lock_file(); |
4a15001e MD |
2018 | sessiond_cleanup_options(); |
2019 | ||
2020 | exit_set_signal_handler: | |
2021 | if (!retval) { | |
cf3af59e | 2022 | exit(EXIT_SUCCESS); |
4a15001e MD |
2023 | } else { |
2024 | exit(EXIT_FAILURE); | |
67e40797 | 2025 | } |
fac6795d | 2026 | } |