Commit | Line | Data |
---|---|---|
2f77fc4b DG |
1 | /* |
2 | * Copyright (C) 2012 - David Goulet <dgoulet@efficios.com> | |
3 | * | |
4 | * This program is free software; you can redistribute it and/or modify it | |
5 | * under the terms of the GNU General Public License, version 2 only, as | |
6 | * published by the Free Software Foundation. | |
7 | * | |
8 | * This program is distributed in the hope that it will be useful, but WITHOUT | |
9 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
10 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | |
11 | * more details. | |
12 | * | |
13 | * You should have received a copy of the GNU General Public License along with | |
14 | * this program; if not, write to the Free Software Foundation, Inc., 51 | |
15 | * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
16 | */ | |
17 | ||
18 | #define _GNU_SOURCE | |
6c1c0768 | 19 | #define _LGPL_SOURCE |
2f77fc4b | 20 | #include <assert.h> |
6dc3064a | 21 | #include <inttypes.h> |
2f77fc4b DG |
22 | #include <urcu/list.h> |
23 | #include <urcu/uatomic.h> | |
24 | ||
25 | #include <common/defaults.h> | |
26 | #include <common/common.h> | |
27 | #include <common/sessiond-comm/sessiond-comm.h> | |
28 | #include <common/relayd/relayd.h> | |
10a50311 | 29 | #include <common/utils.h> |
2f77fc4b DG |
30 | |
31 | #include "channel.h" | |
32 | #include "consumer.h" | |
33 | #include "event.h" | |
8782cc74 | 34 | #include "health-sessiond.h" |
2f77fc4b DG |
35 | #include "kernel.h" |
36 | #include "kernel-consumer.h" | |
37 | #include "lttng-sessiond.h" | |
38 | #include "utils.h" | |
834978fd | 39 | #include "syscall.h" |
2f77fc4b DG |
40 | |
41 | #include "cmd.h" | |
42 | ||
43 | /* | |
44 | * Used to keep a unique index for each relayd socket created where this value | |
45 | * is associated with streams on the consumer so it can match the right relayd | |
d88aee68 DG |
46 | * to send to. It must be accessed with the relayd_net_seq_idx_lock |
47 | * held. | |
2f77fc4b | 48 | */ |
d88aee68 DG |
49 | static pthread_mutex_t relayd_net_seq_idx_lock = PTHREAD_MUTEX_INITIALIZER; |
50 | static uint64_t relayd_net_seq_idx; | |
2f77fc4b | 51 | |
18a720cd MD |
52 | /* |
53 | * Both functions below are special case for the Kernel domain when | |
54 | * enabling/disabling all events. | |
55 | */ | |
56 | static | |
57 | int enable_kevent_all(struct ltt_session *session, | |
58 | struct lttng_domain *domain, char *channel_name, | |
59 | struct lttng_event *event, | |
60 | char *filter_expression, | |
61 | struct lttng_filter_bytecode *filter, int wpipe); | |
62 | static | |
63 | int disable_kevent_all(struct ltt_session *session, int domain, | |
64 | char *channel_name, | |
65 | struct lttng_event *event); | |
66 | ||
2f77fc4b DG |
67 | /* |
68 | * Create a session path used by list_lttng_sessions for the case that the | |
69 | * session consumer is on the network. | |
70 | */ | |
71 | static int build_network_session_path(char *dst, size_t size, | |
72 | struct ltt_session *session) | |
73 | { | |
74 | int ret, kdata_port, udata_port; | |
75 | struct lttng_uri *kuri = NULL, *uuri = NULL, *uri = NULL; | |
76 | char tmp_uurl[PATH_MAX], tmp_urls[PATH_MAX]; | |
77 | ||
78 | assert(session); | |
79 | assert(dst); | |
80 | ||
81 | memset(tmp_urls, 0, sizeof(tmp_urls)); | |
82 | memset(tmp_uurl, 0, sizeof(tmp_uurl)); | |
83 | ||
84 | kdata_port = udata_port = DEFAULT_NETWORK_DATA_PORT; | |
85 | ||
86 | if (session->kernel_session && session->kernel_session->consumer) { | |
87 | kuri = &session->kernel_session->consumer->dst.net.control; | |
88 | kdata_port = session->kernel_session->consumer->dst.net.data.port; | |
89 | } | |
90 | ||
91 | if (session->ust_session && session->ust_session->consumer) { | |
92 | uuri = &session->ust_session->consumer->dst.net.control; | |
93 | udata_port = session->ust_session->consumer->dst.net.data.port; | |
94 | } | |
95 | ||
96 | if (uuri == NULL && kuri == NULL) { | |
97 | uri = &session->consumer->dst.net.control; | |
98 | kdata_port = session->consumer->dst.net.data.port; | |
99 | } else if (kuri && uuri) { | |
100 | ret = uri_compare(kuri, uuri); | |
101 | if (ret) { | |
102 | /* Not Equal */ | |
103 | uri = kuri; | |
104 | /* Build uuri URL string */ | |
105 | ret = uri_to_str_url(uuri, tmp_uurl, sizeof(tmp_uurl)); | |
106 | if (ret < 0) { | |
107 | goto error; | |
108 | } | |
109 | } else { | |
110 | uri = kuri; | |
111 | } | |
112 | } else if (kuri && uuri == NULL) { | |
113 | uri = kuri; | |
114 | } else if (uuri && kuri == NULL) { | |
115 | uri = uuri; | |
116 | } | |
117 | ||
118 | ret = uri_to_str_url(uri, tmp_urls, sizeof(tmp_urls)); | |
119 | if (ret < 0) { | |
120 | goto error; | |
121 | } | |
122 | ||
9aa9f900 DG |
123 | /* |
124 | * Do we have a UST url set. If yes, this means we have both kernel and UST | |
125 | * to print. | |
126 | */ | |
9d035200 | 127 | if (*tmp_uurl != '\0') { |
2f77fc4b DG |
128 | ret = snprintf(dst, size, "[K]: %s [data: %d] -- [U]: %s [data: %d]", |
129 | tmp_urls, kdata_port, tmp_uurl, udata_port); | |
130 | } else { | |
9aa9f900 | 131 | int dport; |
bef08707 | 132 | if (kuri || (!kuri && !uuri)) { |
9aa9f900 DG |
133 | dport = kdata_port; |
134 | } else { | |
135 | /* No kernel URI, use the UST port. */ | |
136 | dport = udata_port; | |
137 | } | |
138 | ret = snprintf(dst, size, "%s [data: %d]", tmp_urls, dport); | |
2f77fc4b DG |
139 | } |
140 | ||
141 | error: | |
142 | return ret; | |
143 | } | |
144 | ||
145 | /* | |
146 | * Fill lttng_channel array of all channels. | |
147 | */ | |
148 | static void list_lttng_channels(int domain, struct ltt_session *session, | |
149 | struct lttng_channel *channels) | |
150 | { | |
151 | int i = 0; | |
152 | struct ltt_kernel_channel *kchan; | |
153 | ||
154 | DBG("Listing channels for session %s", session->name); | |
155 | ||
156 | switch (domain) { | |
157 | case LTTNG_DOMAIN_KERNEL: | |
158 | /* Kernel channels */ | |
159 | if (session->kernel_session != NULL) { | |
160 | cds_list_for_each_entry(kchan, | |
161 | &session->kernel_session->channel_list.head, list) { | |
162 | /* Copy lttng_channel struct to array */ | |
163 | memcpy(&channels[i], kchan->channel, sizeof(struct lttng_channel)); | |
164 | channels[i].enabled = kchan->enabled; | |
165 | i++; | |
166 | } | |
167 | } | |
168 | break; | |
169 | case LTTNG_DOMAIN_UST: | |
170 | { | |
171 | struct lttng_ht_iter iter; | |
172 | struct ltt_ust_channel *uchan; | |
173 | ||
e7fe706f | 174 | rcu_read_lock(); |
2f77fc4b DG |
175 | cds_lfht_for_each_entry(session->ust_session->domain_global.channels->ht, |
176 | &iter.iter, uchan, node.node) { | |
177 | strncpy(channels[i].name, uchan->name, LTTNG_SYMBOL_NAME_LEN); | |
178 | channels[i].attr.overwrite = uchan->attr.overwrite; | |
179 | channels[i].attr.subbuf_size = uchan->attr.subbuf_size; | |
180 | channels[i].attr.num_subbuf = uchan->attr.num_subbuf; | |
181 | channels[i].attr.switch_timer_interval = | |
182 | uchan->attr.switch_timer_interval; | |
183 | channels[i].attr.read_timer_interval = | |
184 | uchan->attr.read_timer_interval; | |
185 | channels[i].enabled = uchan->enabled; | |
2f785fe7 DG |
186 | channels[i].attr.tracefile_size = uchan->tracefile_size; |
187 | channels[i].attr.tracefile_count = uchan->tracefile_count; | |
2f77fc4b DG |
188 | switch (uchan->attr.output) { |
189 | case LTTNG_UST_MMAP: | |
190 | default: | |
191 | channels[i].attr.output = LTTNG_EVENT_MMAP; | |
192 | break; | |
193 | } | |
194 | i++; | |
195 | } | |
e7fe706f | 196 | rcu_read_unlock(); |
2f77fc4b DG |
197 | break; |
198 | } | |
199 | default: | |
200 | break; | |
201 | } | |
202 | } | |
203 | ||
3c6a091f | 204 | /* |
022d91ba | 205 | * Create a list of agent domain events. |
3c6a091f DG |
206 | * |
207 | * Return number of events in list on success or else a negative value. | |
208 | */ | |
022d91ba | 209 | static int list_lttng_agent_events(struct agent *agt, |
3c6a091f DG |
210 | struct lttng_event **events) |
211 | { | |
212 | int i = 0, ret = 0; | |
213 | unsigned int nb_event = 0; | |
022d91ba | 214 | struct agent_event *event; |
3c6a091f DG |
215 | struct lttng_event *tmp_events; |
216 | struct lttng_ht_iter iter; | |
217 | ||
022d91ba | 218 | assert(agt); |
3c6a091f DG |
219 | assert(events); |
220 | ||
022d91ba | 221 | DBG3("Listing agent events"); |
3c6a091f | 222 | |
022d91ba | 223 | nb_event = lttng_ht_get_count(agt->events); |
3c6a091f DG |
224 | if (nb_event == 0) { |
225 | ret = nb_event; | |
226 | goto error; | |
227 | } | |
228 | ||
229 | tmp_events = zmalloc(nb_event * sizeof(*tmp_events)); | |
230 | if (!tmp_events) { | |
022d91ba | 231 | PERROR("zmalloc agent events session"); |
3c6a091f DG |
232 | ret = -LTTNG_ERR_FATAL; |
233 | goto error; | |
234 | } | |
235 | ||
236 | rcu_read_lock(); | |
022d91ba | 237 | cds_lfht_for_each_entry(agt->events->ht, &iter.iter, event, node.node) { |
3c6a091f DG |
238 | strncpy(tmp_events[i].name, event->name, sizeof(tmp_events[i].name)); |
239 | tmp_events[i].name[sizeof(tmp_events[i].name) - 1] = '\0'; | |
240 | tmp_events[i].enabled = event->enabled; | |
ff94328f DG |
241 | tmp_events[i].loglevel = event->loglevel; |
242 | tmp_events[i].loglevel_type = event->loglevel_type; | |
3c6a091f DG |
243 | i++; |
244 | } | |
245 | rcu_read_unlock(); | |
246 | ||
247 | *events = tmp_events; | |
248 | ret = nb_event; | |
249 | ||
250 | error: | |
251 | assert(nb_event == i); | |
252 | return ret; | |
253 | } | |
254 | ||
2f77fc4b DG |
255 | /* |
256 | * Create a list of ust global domain events. | |
257 | */ | |
258 | static int list_lttng_ust_global_events(char *channel_name, | |
259 | struct ltt_ust_domain_global *ust_global, struct lttng_event **events) | |
260 | { | |
261 | int i = 0, ret = 0; | |
262 | unsigned int nb_event = 0; | |
263 | struct lttng_ht_iter iter; | |
264 | struct lttng_ht_node_str *node; | |
265 | struct ltt_ust_channel *uchan; | |
266 | struct ltt_ust_event *uevent; | |
267 | struct lttng_event *tmp; | |
268 | ||
269 | DBG("Listing UST global events for channel %s", channel_name); | |
270 | ||
271 | rcu_read_lock(); | |
272 | ||
273 | lttng_ht_lookup(ust_global->channels, (void *)channel_name, &iter); | |
274 | node = lttng_ht_iter_get_node_str(&iter); | |
275 | if (node == NULL) { | |
f73fabfd | 276 | ret = LTTNG_ERR_UST_CHAN_NOT_FOUND; |
2f77fc4b DG |
277 | goto error; |
278 | } | |
279 | ||
280 | uchan = caa_container_of(&node->node, struct ltt_ust_channel, node.node); | |
281 | ||
282 | nb_event += lttng_ht_get_count(uchan->events); | |
283 | ||
284 | if (nb_event == 0) { | |
285 | ret = nb_event; | |
286 | goto error; | |
287 | } | |
288 | ||
289 | DBG3("Listing UST global %d events", nb_event); | |
290 | ||
291 | tmp = zmalloc(nb_event * sizeof(struct lttng_event)); | |
292 | if (tmp == NULL) { | |
f73fabfd | 293 | ret = LTTNG_ERR_FATAL; |
2f77fc4b DG |
294 | goto error; |
295 | } | |
296 | ||
297 | cds_lfht_for_each_entry(uchan->events->ht, &iter.iter, uevent, node.node) { | |
298 | strncpy(tmp[i].name, uevent->attr.name, LTTNG_SYMBOL_NAME_LEN); | |
299 | tmp[i].name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0'; | |
300 | tmp[i].enabled = uevent->enabled; | |
301 | ||
302 | switch (uevent->attr.instrumentation) { | |
303 | case LTTNG_UST_TRACEPOINT: | |
304 | tmp[i].type = LTTNG_EVENT_TRACEPOINT; | |
305 | break; | |
306 | case LTTNG_UST_PROBE: | |
307 | tmp[i].type = LTTNG_EVENT_PROBE; | |
308 | break; | |
309 | case LTTNG_UST_FUNCTION: | |
310 | tmp[i].type = LTTNG_EVENT_FUNCTION; | |
311 | break; | |
312 | } | |
313 | ||
314 | tmp[i].loglevel = uevent->attr.loglevel; | |
315 | switch (uevent->attr.loglevel_type) { | |
316 | case LTTNG_UST_LOGLEVEL_ALL: | |
317 | tmp[i].loglevel_type = LTTNG_EVENT_LOGLEVEL_ALL; | |
318 | break; | |
319 | case LTTNG_UST_LOGLEVEL_RANGE: | |
320 | tmp[i].loglevel_type = LTTNG_EVENT_LOGLEVEL_RANGE; | |
321 | break; | |
322 | case LTTNG_UST_LOGLEVEL_SINGLE: | |
323 | tmp[i].loglevel_type = LTTNG_EVENT_LOGLEVEL_SINGLE; | |
324 | break; | |
325 | } | |
326 | if (uevent->filter) { | |
327 | tmp[i].filter = 1; | |
328 | } | |
4634f12e JI |
329 | if (uevent->exclusion) { |
330 | tmp[i].exclusion = 1; | |
331 | } | |
2f77fc4b DG |
332 | i++; |
333 | } | |
334 | ||
335 | ret = nb_event; | |
336 | *events = tmp; | |
337 | ||
338 | error: | |
339 | rcu_read_unlock(); | |
340 | return ret; | |
341 | } | |
342 | ||
343 | /* | |
344 | * Fill lttng_event array of all kernel events in the channel. | |
345 | */ | |
346 | static int list_lttng_kernel_events(char *channel_name, | |
347 | struct ltt_kernel_session *kernel_session, struct lttng_event **events) | |
348 | { | |
349 | int i = 0, ret; | |
350 | unsigned int nb_event; | |
351 | struct ltt_kernel_event *event; | |
352 | struct ltt_kernel_channel *kchan; | |
353 | ||
354 | kchan = trace_kernel_get_channel_by_name(channel_name, kernel_session); | |
355 | if (kchan == NULL) { | |
f73fabfd | 356 | ret = LTTNG_ERR_KERN_CHAN_NOT_FOUND; |
2f77fc4b DG |
357 | goto error; |
358 | } | |
359 | ||
360 | nb_event = kchan->event_count; | |
361 | ||
362 | DBG("Listing events for channel %s", kchan->channel->name); | |
363 | ||
364 | if (nb_event == 0) { | |
834978fd DG |
365 | *events = NULL; |
366 | goto syscall; | |
2f77fc4b DG |
367 | } |
368 | ||
369 | *events = zmalloc(nb_event * sizeof(struct lttng_event)); | |
370 | if (*events == NULL) { | |
f73fabfd | 371 | ret = LTTNG_ERR_FATAL; |
2f77fc4b DG |
372 | goto error; |
373 | } | |
374 | ||
375 | /* Kernel channels */ | |
376 | cds_list_for_each_entry(event, &kchan->events_list.head , list) { | |
377 | strncpy((*events)[i].name, event->event->name, LTTNG_SYMBOL_NAME_LEN); | |
378 | (*events)[i].name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0'; | |
379 | (*events)[i].enabled = event->enabled; | |
380 | ||
381 | switch (event->event->instrumentation) { | |
382 | case LTTNG_KERNEL_TRACEPOINT: | |
383 | (*events)[i].type = LTTNG_EVENT_TRACEPOINT; | |
384 | break; | |
2f77fc4b | 385 | case LTTNG_KERNEL_KRETPROBE: |
1896972b DG |
386 | (*events)[i].type = LTTNG_EVENT_FUNCTION; |
387 | memcpy(&(*events)[i].attr.probe, &event->event->u.kprobe, | |
388 | sizeof(struct lttng_kernel_kprobe)); | |
389 | break; | |
390 | case LTTNG_KERNEL_KPROBE: | |
2f77fc4b DG |
391 | (*events)[i].type = LTTNG_EVENT_PROBE; |
392 | memcpy(&(*events)[i].attr.probe, &event->event->u.kprobe, | |
393 | sizeof(struct lttng_kernel_kprobe)); | |
394 | break; | |
395 | case LTTNG_KERNEL_FUNCTION: | |
396 | (*events)[i].type = LTTNG_EVENT_FUNCTION; | |
397 | memcpy(&((*events)[i].attr.ftrace), &event->event->u.ftrace, | |
398 | sizeof(struct lttng_kernel_function)); | |
399 | break; | |
400 | case LTTNG_KERNEL_NOOP: | |
401 | (*events)[i].type = LTTNG_EVENT_NOOP; | |
402 | break; | |
403 | case LTTNG_KERNEL_SYSCALL: | |
404 | (*events)[i].type = LTTNG_EVENT_SYSCALL; | |
405 | break; | |
406 | case LTTNG_KERNEL_ALL: | |
407 | assert(0); | |
408 | break; | |
409 | } | |
410 | i++; | |
411 | } | |
412 | ||
834978fd DG |
413 | syscall: |
414 | if (syscall_table) { | |
415 | ssize_t new_size; | |
416 | ||
417 | new_size = syscall_list_channel(kchan, events, nb_event); | |
418 | if (new_size < 0) { | |
419 | free(events); | |
420 | ret = -new_size; | |
421 | goto error; | |
422 | } | |
423 | nb_event = new_size; | |
424 | } | |
425 | ||
2f77fc4b DG |
426 | return nb_event; |
427 | ||
428 | error: | |
f73fabfd DG |
429 | /* Negate the error code to differentiate the size from an error */ |
430 | return -ret; | |
2f77fc4b DG |
431 | } |
432 | ||
433 | /* | |
434 | * Add URI so the consumer output object. Set the correct path depending on the | |
435 | * domain adding the default trace directory. | |
436 | */ | |
437 | static int add_uri_to_consumer(struct consumer_output *consumer, | |
438 | struct lttng_uri *uri, int domain, const char *session_name) | |
439 | { | |
f73fabfd | 440 | int ret = LTTNG_OK; |
2f77fc4b DG |
441 | const char *default_trace_dir; |
442 | ||
443 | assert(uri); | |
444 | ||
445 | if (consumer == NULL) { | |
446 | DBG("No consumer detected. Don't add URI. Stopping."); | |
f73fabfd | 447 | ret = LTTNG_ERR_NO_CONSUMER; |
2f77fc4b DG |
448 | goto error; |
449 | } | |
450 | ||
451 | switch (domain) { | |
452 | case LTTNG_DOMAIN_KERNEL: | |
453 | default_trace_dir = DEFAULT_KERNEL_TRACE_DIR; | |
454 | break; | |
455 | case LTTNG_DOMAIN_UST: | |
456 | default_trace_dir = DEFAULT_UST_TRACE_DIR; | |
457 | break; | |
458 | default: | |
459 | /* | |
460 | * This case is possible is we try to add the URI to the global tracing | |
461 | * session consumer object which in this case there is no subdir. | |
462 | */ | |
463 | default_trace_dir = ""; | |
464 | } | |
465 | ||
466 | switch (uri->dtype) { | |
467 | case LTTNG_DST_IPV4: | |
468 | case LTTNG_DST_IPV6: | |
469 | DBG2("Setting network URI to consumer"); | |
470 | ||
df75acac DG |
471 | if (consumer->type == CONSUMER_DST_NET) { |
472 | if ((uri->stype == LTTNG_STREAM_CONTROL && | |
785d2d0d DG |
473 | consumer->dst.net.control_isset) || |
474 | (uri->stype == LTTNG_STREAM_DATA && | |
475 | consumer->dst.net.data_isset)) { | |
df75acac DG |
476 | ret = LTTNG_ERR_URL_EXIST; |
477 | goto error; | |
478 | } | |
479 | } else { | |
480 | memset(&consumer->dst.net, 0, sizeof(consumer->dst.net)); | |
785d2d0d DG |
481 | } |
482 | ||
df75acac DG |
483 | consumer->type = CONSUMER_DST_NET; |
484 | ||
2f77fc4b DG |
485 | /* Set URI into consumer output object */ |
486 | ret = consumer_set_network_uri(consumer, uri); | |
487 | if (ret < 0) { | |
a74934ba | 488 | ret = -ret; |
2f77fc4b DG |
489 | goto error; |
490 | } else if (ret == 1) { | |
491 | /* | |
492 | * URI was the same in the consumer so we do not append the subdir | |
493 | * again so to not duplicate output dir. | |
494 | */ | |
f86c9f4e | 495 | ret = LTTNG_OK; |
2f77fc4b DG |
496 | goto error; |
497 | } | |
498 | ||
499 | if (uri->stype == LTTNG_STREAM_CONTROL && strlen(uri->subdir) == 0) { | |
500 | ret = consumer_set_subdir(consumer, session_name); | |
501 | if (ret < 0) { | |
f73fabfd | 502 | ret = LTTNG_ERR_FATAL; |
2f77fc4b DG |
503 | goto error; |
504 | } | |
505 | } | |
506 | ||
507 | if (uri->stype == LTTNG_STREAM_CONTROL) { | |
508 | /* On a new subdir, reappend the default trace dir. */ | |
c30ce0b3 CB |
509 | strncat(consumer->subdir, default_trace_dir, |
510 | sizeof(consumer->subdir) - strlen(consumer->subdir) - 1); | |
2f77fc4b DG |
511 | DBG3("Append domain trace name to subdir %s", consumer->subdir); |
512 | } | |
513 | ||
514 | break; | |
515 | case LTTNG_DST_PATH: | |
516 | DBG2("Setting trace directory path from URI to %s", uri->dst.path); | |
517 | memset(consumer->dst.trace_path, 0, | |
518 | sizeof(consumer->dst.trace_path)); | |
519 | strncpy(consumer->dst.trace_path, uri->dst.path, | |
520 | sizeof(consumer->dst.trace_path)); | |
521 | /* Append default trace dir */ | |
522 | strncat(consumer->dst.trace_path, default_trace_dir, | |
c30ce0b3 CB |
523 | sizeof(consumer->dst.trace_path) - |
524 | strlen(consumer->dst.trace_path) - 1); | |
2f77fc4b DG |
525 | /* Flag consumer as local. */ |
526 | consumer->type = CONSUMER_DST_LOCAL; | |
527 | break; | |
528 | } | |
529 | ||
a74934ba DG |
530 | ret = LTTNG_OK; |
531 | ||
2f77fc4b DG |
532 | error: |
533 | return ret; | |
534 | } | |
535 | ||
536 | /* | |
537 | * Init tracing by creating trace directory and sending fds kernel consumer. | |
538 | */ | |
539 | static int init_kernel_tracing(struct ltt_kernel_session *session) | |
540 | { | |
541 | int ret = 0; | |
542 | struct lttng_ht_iter iter; | |
543 | struct consumer_socket *socket; | |
544 | ||
545 | assert(session); | |
546 | ||
e7fe706f DG |
547 | rcu_read_lock(); |
548 | ||
2f77fc4b DG |
549 | if (session->consumer_fds_sent == 0 && session->consumer != NULL) { |
550 | cds_lfht_for_each_entry(session->consumer->socks->ht, &iter.iter, | |
551 | socket, node.node) { | |
2f77fc4b | 552 | pthread_mutex_lock(socket->lock); |
f50f23d9 | 553 | ret = kernel_consumer_send_session(socket, session); |
2f77fc4b DG |
554 | pthread_mutex_unlock(socket->lock); |
555 | if (ret < 0) { | |
f73fabfd | 556 | ret = LTTNG_ERR_KERN_CONSUMER_FAIL; |
2f77fc4b DG |
557 | goto error; |
558 | } | |
559 | } | |
560 | } | |
561 | ||
562 | error: | |
e7fe706f | 563 | rcu_read_unlock(); |
2f77fc4b DG |
564 | return ret; |
565 | } | |
566 | ||
567 | /* | |
568 | * Create a socket to the relayd using the URI. | |
569 | * | |
570 | * On success, the relayd_sock pointer is set to the created socket. | |
571 | * Else, it's stays untouched and a lttcomm error code is returned. | |
572 | */ | |
6151a90f JD |
573 | static int create_connect_relayd(struct lttng_uri *uri, |
574 | struct lttcomm_relayd_sock **relayd_sock) | |
2f77fc4b DG |
575 | { |
576 | int ret; | |
6151a90f | 577 | struct lttcomm_relayd_sock *rsock; |
2f77fc4b | 578 | |
6151a90f JD |
579 | rsock = lttcomm_alloc_relayd_sock(uri, RELAYD_VERSION_COMM_MAJOR, |
580 | RELAYD_VERSION_COMM_MINOR); | |
581 | if (!rsock) { | |
f73fabfd | 582 | ret = LTTNG_ERR_FATAL; |
2f77fc4b DG |
583 | goto error; |
584 | } | |
585 | ||
ffe60014 DG |
586 | /* |
587 | * Connect to relayd so we can proceed with a session creation. This call | |
588 | * can possibly block for an arbitrary amount of time to set the health | |
589 | * state to be in poll execution. | |
590 | */ | |
591 | health_poll_entry(); | |
6151a90f | 592 | ret = relayd_connect(rsock); |
ffe60014 | 593 | health_poll_exit(); |
2f77fc4b DG |
594 | if (ret < 0) { |
595 | ERR("Unable to reach lttng-relayd"); | |
f73fabfd | 596 | ret = LTTNG_ERR_RELAYD_CONNECT_FAIL; |
2f77fc4b DG |
597 | goto free_sock; |
598 | } | |
599 | ||
600 | /* Create socket for control stream. */ | |
601 | if (uri->stype == LTTNG_STREAM_CONTROL) { | |
602 | DBG3("Creating relayd stream socket from URI"); | |
603 | ||
604 | /* Check relayd version */ | |
6151a90f | 605 | ret = relayd_version_check(rsock); |
2f77fc4b | 606 | if (ret < 0) { |
f73fabfd | 607 | ret = LTTNG_ERR_RELAYD_VERSION_FAIL; |
2f77fc4b DG |
608 | goto close_sock; |
609 | } | |
610 | } else if (uri->stype == LTTNG_STREAM_DATA) { | |
611 | DBG3("Creating relayd data socket from URI"); | |
612 | } else { | |
613 | /* Command is not valid */ | |
614 | ERR("Relayd invalid stream type: %d", uri->stype); | |
f73fabfd | 615 | ret = LTTNG_ERR_INVALID; |
2f77fc4b DG |
616 | goto close_sock; |
617 | } | |
618 | ||
6151a90f | 619 | *relayd_sock = rsock; |
2f77fc4b | 620 | |
f73fabfd | 621 | return LTTNG_OK; |
2f77fc4b DG |
622 | |
623 | close_sock: | |
6151a90f JD |
624 | /* The returned value is not useful since we are on an error path. */ |
625 | (void) relayd_close(rsock); | |
2f77fc4b | 626 | free_sock: |
6151a90f | 627 | free(rsock); |
2f77fc4b DG |
628 | error: |
629 | return ret; | |
630 | } | |
631 | ||
632 | /* | |
633 | * Connect to the relayd using URI and send the socket to the right consumer. | |
634 | */ | |
6dc3064a | 635 | static int send_consumer_relayd_socket(int domain, unsigned int session_id, |
2f77fc4b | 636 | struct lttng_uri *relayd_uri, struct consumer_output *consumer, |
d3e2ba59 JD |
637 | struct consumer_socket *consumer_sock, |
638 | char *session_name, char *hostname, int session_live_timer) | |
2f77fc4b DG |
639 | { |
640 | int ret; | |
6151a90f | 641 | struct lttcomm_relayd_sock *rsock = NULL; |
2f77fc4b | 642 | |
ffe60014 | 643 | /* Connect to relayd and make version check if uri is the control. */ |
6151a90f | 644 | ret = create_connect_relayd(relayd_uri, &rsock); |
ffe60014 | 645 | if (ret != LTTNG_OK) { |
6151a90f | 646 | goto error; |
ffe60014 | 647 | } |
6151a90f | 648 | assert(rsock); |
ffe60014 | 649 | |
2f77fc4b | 650 | /* Set the network sequence index if not set. */ |
d88aee68 DG |
651 | if (consumer->net_seq_index == (uint64_t) -1ULL) { |
652 | pthread_mutex_lock(&relayd_net_seq_idx_lock); | |
2f77fc4b DG |
653 | /* |
654 | * Increment net_seq_idx because we are about to transfer the | |
655 | * new relayd socket to the consumer. | |
d88aee68 | 656 | * Assign unique key so the consumer can match streams. |
2f77fc4b | 657 | */ |
d88aee68 DG |
658 | consumer->net_seq_index = ++relayd_net_seq_idx; |
659 | pthread_mutex_unlock(&relayd_net_seq_idx_lock); | |
2f77fc4b DG |
660 | } |
661 | ||
2f77fc4b | 662 | /* Send relayd socket to consumer. */ |
6151a90f | 663 | ret = consumer_send_relayd_socket(consumer_sock, rsock, consumer, |
d3e2ba59 JD |
664 | relayd_uri->stype, session_id, |
665 | session_name, hostname, session_live_timer); | |
2f77fc4b | 666 | if (ret < 0) { |
f73fabfd | 667 | ret = LTTNG_ERR_ENABLE_CONSUMER_FAIL; |
2f77fc4b DG |
668 | goto close_sock; |
669 | } | |
670 | ||
c890b720 DG |
671 | /* Flag that the corresponding socket was sent. */ |
672 | if (relayd_uri->stype == LTTNG_STREAM_CONTROL) { | |
ffe60014 | 673 | consumer_sock->control_sock_sent = 1; |
c890b720 | 674 | } else if (relayd_uri->stype == LTTNG_STREAM_DATA) { |
ffe60014 | 675 | consumer_sock->data_sock_sent = 1; |
c890b720 DG |
676 | } |
677 | ||
f73fabfd | 678 | ret = LTTNG_OK; |
2f77fc4b DG |
679 | |
680 | /* | |
681 | * Close socket which was dup on the consumer side. The session daemon does | |
682 | * NOT keep track of the relayd socket(s) once transfer to the consumer. | |
683 | */ | |
684 | ||
685 | close_sock: | |
6151a90f JD |
686 | (void) relayd_close(rsock); |
687 | free(rsock); | |
2f77fc4b | 688 | |
6151a90f | 689 | error: |
ffe60014 DG |
690 | if (ret != LTTNG_OK) { |
691 | /* | |
d9078d0c DG |
692 | * The consumer output for this session should not be used anymore |
693 | * since the relayd connection failed thus making any tracing or/and | |
694 | * streaming not usable. | |
ffe60014 | 695 | */ |
d9078d0c | 696 | consumer->enabled = 0; |
ffe60014 | 697 | } |
2f77fc4b DG |
698 | return ret; |
699 | } | |
700 | ||
701 | /* | |
702 | * Send both relayd sockets to a specific consumer and domain. This is a | |
703 | * helper function to facilitate sending the information to the consumer for a | |
704 | * session. | |
705 | */ | |
6dc3064a | 706 | static int send_consumer_relayd_sockets(int domain, unsigned int session_id, |
d3e2ba59 JD |
707 | struct consumer_output *consumer, struct consumer_socket *sock, |
708 | char *session_name, char *hostname, int session_live_timer) | |
2f77fc4b | 709 | { |
dda67f6c | 710 | int ret = LTTNG_OK; |
2f77fc4b | 711 | |
2f77fc4b | 712 | assert(consumer); |
6dc3064a | 713 | assert(sock); |
2f77fc4b | 714 | |
2f77fc4b | 715 | /* Sending control relayd socket. */ |
ffe60014 | 716 | if (!sock->control_sock_sent) { |
6dc3064a | 717 | ret = send_consumer_relayd_socket(domain, session_id, |
d3e2ba59 JD |
718 | &consumer->dst.net.control, consumer, sock, |
719 | session_name, hostname, session_live_timer); | |
c890b720 DG |
720 | if (ret != LTTNG_OK) { |
721 | goto error; | |
722 | } | |
2f77fc4b DG |
723 | } |
724 | ||
725 | /* Sending data relayd socket. */ | |
ffe60014 | 726 | if (!sock->data_sock_sent) { |
6dc3064a | 727 | ret = send_consumer_relayd_socket(domain, session_id, |
d3e2ba59 JD |
728 | &consumer->dst.net.data, consumer, sock, |
729 | session_name, hostname, session_live_timer); | |
c890b720 DG |
730 | if (ret != LTTNG_OK) { |
731 | goto error; | |
732 | } | |
2f77fc4b DG |
733 | } |
734 | ||
2f77fc4b DG |
735 | error: |
736 | return ret; | |
737 | } | |
738 | ||
739 | /* | |
740 | * Setup relayd connections for a tracing session. First creates the socket to | |
741 | * the relayd and send them to the right domain consumer. Consumer type MUST be | |
742 | * network. | |
743 | */ | |
ffe60014 | 744 | int cmd_setup_relayd(struct ltt_session *session) |
2f77fc4b | 745 | { |
f73fabfd | 746 | int ret = LTTNG_OK; |
2f77fc4b DG |
747 | struct ltt_ust_session *usess; |
748 | struct ltt_kernel_session *ksess; | |
749 | struct consumer_socket *socket; | |
750 | struct lttng_ht_iter iter; | |
751 | ||
752 | assert(session); | |
753 | ||
754 | usess = session->ust_session; | |
755 | ksess = session->kernel_session; | |
756 | ||
785d2d0d | 757 | DBG("Setting relayd for session %s", session->name); |
2f77fc4b | 758 | |
e7fe706f DG |
759 | rcu_read_lock(); |
760 | ||
2f77fc4b DG |
761 | if (usess && usess->consumer && usess->consumer->type == CONSUMER_DST_NET |
762 | && usess->consumer->enabled) { | |
763 | /* For each consumer socket, send relayd sockets */ | |
764 | cds_lfht_for_each_entry(usess->consumer->socks->ht, &iter.iter, | |
765 | socket, node.node) { | |
2f77fc4b | 766 | pthread_mutex_lock(socket->lock); |
6dc3064a | 767 | ret = send_consumer_relayd_sockets(LTTNG_DOMAIN_UST, session->id, |
d3e2ba59 JD |
768 | usess->consumer, socket, |
769 | session->name, session->hostname, | |
770 | session->live_timer); | |
2f77fc4b | 771 | pthread_mutex_unlock(socket->lock); |
f73fabfd | 772 | if (ret != LTTNG_OK) { |
2f77fc4b DG |
773 | goto error; |
774 | } | |
6dc3064a DG |
775 | /* Session is now ready for network streaming. */ |
776 | session->net_handle = 1; | |
2f77fc4b DG |
777 | } |
778 | } | |
779 | ||
780 | if (ksess && ksess->consumer && ksess->consumer->type == CONSUMER_DST_NET | |
781 | && ksess->consumer->enabled) { | |
782 | cds_lfht_for_each_entry(ksess->consumer->socks->ht, &iter.iter, | |
783 | socket, node.node) { | |
2f77fc4b | 784 | pthread_mutex_lock(socket->lock); |
6dc3064a | 785 | ret = send_consumer_relayd_sockets(LTTNG_DOMAIN_KERNEL, session->id, |
d3e2ba59 JD |
786 | ksess->consumer, socket, |
787 | session->name, session->hostname, | |
788 | session->live_timer); | |
2f77fc4b | 789 | pthread_mutex_unlock(socket->lock); |
f73fabfd | 790 | if (ret != LTTNG_OK) { |
2f77fc4b DG |
791 | goto error; |
792 | } | |
6dc3064a DG |
793 | /* Session is now ready for network streaming. */ |
794 | session->net_handle = 1; | |
2f77fc4b DG |
795 | } |
796 | } | |
797 | ||
798 | error: | |
e7fe706f | 799 | rcu_read_unlock(); |
2f77fc4b DG |
800 | return ret; |
801 | } | |
802 | ||
9b6c7ec5 DG |
803 | /* |
804 | * Start a kernel session by opening all necessary streams. | |
805 | */ | |
806 | static int start_kernel_session(struct ltt_kernel_session *ksess, int wpipe) | |
807 | { | |
808 | int ret; | |
809 | struct ltt_kernel_channel *kchan; | |
810 | ||
811 | /* Open kernel metadata */ | |
07b86b52 | 812 | if (ksess->metadata == NULL && ksess->output_traces) { |
9b6c7ec5 DG |
813 | ret = kernel_open_metadata(ksess); |
814 | if (ret < 0) { | |
815 | ret = LTTNG_ERR_KERN_META_FAIL; | |
816 | goto error; | |
817 | } | |
818 | } | |
819 | ||
820 | /* Open kernel metadata stream */ | |
07b86b52 | 821 | if (ksess->metadata && ksess->metadata_stream_fd < 0) { |
9b6c7ec5 DG |
822 | ret = kernel_open_metadata_stream(ksess); |
823 | if (ret < 0) { | |
824 | ERR("Kernel create metadata stream failed"); | |
825 | ret = LTTNG_ERR_KERN_STREAM_FAIL; | |
826 | goto error; | |
827 | } | |
828 | } | |
829 | ||
830 | /* For each channel */ | |
831 | cds_list_for_each_entry(kchan, &ksess->channel_list.head, list) { | |
832 | if (kchan->stream_count == 0) { | |
833 | ret = kernel_open_channel_stream(kchan); | |
834 | if (ret < 0) { | |
835 | ret = LTTNG_ERR_KERN_STREAM_FAIL; | |
836 | goto error; | |
837 | } | |
838 | /* Update the stream global counter */ | |
839 | ksess->stream_count_global += ret; | |
840 | } | |
841 | } | |
842 | ||
843 | /* Setup kernel consumer socket and send fds to it */ | |
844 | ret = init_kernel_tracing(ksess); | |
e43c41c5 | 845 | if (ret != 0) { |
9b6c7ec5 DG |
846 | ret = LTTNG_ERR_KERN_START_FAIL; |
847 | goto error; | |
848 | } | |
849 | ||
850 | /* This start the kernel tracing */ | |
851 | ret = kernel_start_session(ksess); | |
852 | if (ret < 0) { | |
853 | ret = LTTNG_ERR_KERN_START_FAIL; | |
854 | goto error; | |
855 | } | |
856 | ||
857 | /* Quiescent wait after starting trace */ | |
784303b0 | 858 | kernel_wait_quiescent(kernel_tracer_fd); |
9b6c7ec5 | 859 | |
14fb1ebe | 860 | ksess->active = 1; |
9b6c7ec5 DG |
861 | |
862 | ret = LTTNG_OK; | |
863 | ||
864 | error: | |
865 | return ret; | |
866 | } | |
867 | ||
2f77fc4b DG |
868 | /* |
869 | * Command LTTNG_DISABLE_CHANNEL processed by the client thread. | |
870 | */ | |
871 | int cmd_disable_channel(struct ltt_session *session, int domain, | |
872 | char *channel_name) | |
873 | { | |
874 | int ret; | |
875 | struct ltt_ust_session *usess; | |
876 | ||
877 | usess = session->ust_session; | |
878 | ||
2223c96f DG |
879 | rcu_read_lock(); |
880 | ||
2f77fc4b DG |
881 | switch (domain) { |
882 | case LTTNG_DOMAIN_KERNEL: | |
883 | { | |
884 | ret = channel_kernel_disable(session->kernel_session, | |
885 | channel_name); | |
f73fabfd | 886 | if (ret != LTTNG_OK) { |
2f77fc4b DG |
887 | goto error; |
888 | } | |
889 | ||
890 | kernel_wait_quiescent(kernel_tracer_fd); | |
891 | break; | |
892 | } | |
893 | case LTTNG_DOMAIN_UST: | |
894 | { | |
895 | struct ltt_ust_channel *uchan; | |
896 | struct lttng_ht *chan_ht; | |
897 | ||
898 | chan_ht = usess->domain_global.channels; | |
899 | ||
900 | uchan = trace_ust_find_channel_by_name(chan_ht, channel_name); | |
901 | if (uchan == NULL) { | |
f73fabfd | 902 | ret = LTTNG_ERR_UST_CHAN_NOT_FOUND; |
2f77fc4b DG |
903 | goto error; |
904 | } | |
905 | ||
7972aab2 | 906 | ret = channel_ust_disable(usess, uchan); |
f73fabfd | 907 | if (ret != LTTNG_OK) { |
2f77fc4b DG |
908 | goto error; |
909 | } | |
910 | break; | |
911 | } | |
912 | #if 0 | |
913 | case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN: | |
914 | case LTTNG_DOMAIN_UST_EXEC_NAME: | |
915 | case LTTNG_DOMAIN_UST_PID: | |
916 | #endif | |
917 | default: | |
f73fabfd | 918 | ret = LTTNG_ERR_UNKNOWN_DOMAIN; |
2f77fc4b DG |
919 | goto error; |
920 | } | |
921 | ||
f73fabfd | 922 | ret = LTTNG_OK; |
2f77fc4b DG |
923 | |
924 | error: | |
2223c96f | 925 | rcu_read_unlock(); |
2f77fc4b DG |
926 | return ret; |
927 | } | |
928 | ||
929 | /* | |
930 | * Command LTTNG_ENABLE_CHANNEL processed by the client thread. | |
931 | * | |
932 | * The wpipe arguments is used as a notifier for the kernel thread. | |
933 | */ | |
934 | int cmd_enable_channel(struct ltt_session *session, | |
7972aab2 | 935 | struct lttng_domain *domain, struct lttng_channel *attr, int wpipe) |
2f77fc4b DG |
936 | { |
937 | int ret; | |
938 | struct ltt_ust_session *usess = session->ust_session; | |
939 | struct lttng_ht *chan_ht; | |
940 | ||
941 | assert(session); | |
942 | assert(attr); | |
7972aab2 | 943 | assert(domain); |
2f77fc4b DG |
944 | |
945 | DBG("Enabling channel %s for session %s", attr->name, session->name); | |
946 | ||
03b4fdcf DG |
947 | rcu_read_lock(); |
948 | ||
ecc48a90 JD |
949 | /* |
950 | * Don't try to enable a channel if the session has been started at | |
951 | * some point in time before. The tracer does not allow it. | |
952 | */ | |
8382cf6f | 953 | if (session->has_been_started) { |
ecc48a90 JD |
954 | ret = LTTNG_ERR_TRACE_ALREADY_STARTED; |
955 | goto error; | |
956 | } | |
957 | ||
958 | /* | |
959 | * If the session is a live session, remove the switch timer, the | |
960 | * live timer does the same thing but sends also synchronisation | |
961 | * beacons for inactive streams. | |
962 | */ | |
963 | if (session->live_timer > 0) { | |
964 | attr->attr.live_timer_interval = session->live_timer; | |
965 | attr->attr.switch_timer_interval = 0; | |
966 | } | |
967 | ||
33fbd469 DG |
968 | /* |
969 | * The ringbuffer (both in user space and kernel) behave badly in overwrite | |
970 | * mode and with less than 2 subbuf so block it right away and send back an | |
971 | * invalid attribute error. | |
972 | */ | |
973 | if (attr->attr.overwrite && attr->attr.num_subbuf < 2) { | |
974 | ret = LTTNG_ERR_INVALID; | |
975 | goto error; | |
976 | } | |
977 | ||
7972aab2 | 978 | switch (domain->type) { |
2f77fc4b DG |
979 | case LTTNG_DOMAIN_KERNEL: |
980 | { | |
981 | struct ltt_kernel_channel *kchan; | |
982 | ||
2f77fc4b DG |
983 | kchan = trace_kernel_get_channel_by_name(attr->name, |
984 | session->kernel_session); | |
985 | if (kchan == NULL) { | |
986 | ret = channel_kernel_create(session->kernel_session, attr, wpipe); | |
85076754 MD |
987 | if (attr->name[0] != '\0') { |
988 | session->kernel_session->has_non_default_channel = 1; | |
989 | } | |
2f77fc4b DG |
990 | } else { |
991 | ret = channel_kernel_enable(session->kernel_session, kchan); | |
992 | } | |
993 | ||
f73fabfd | 994 | if (ret != LTTNG_OK) { |
2f77fc4b DG |
995 | goto error; |
996 | } | |
997 | ||
784303b0 | 998 | kernel_wait_quiescent(kernel_tracer_fd); |
2f77fc4b DG |
999 | break; |
1000 | } | |
1001 | case LTTNG_DOMAIN_UST: | |
1002 | { | |
1003 | struct ltt_ust_channel *uchan; | |
1004 | ||
1005 | chan_ht = usess->domain_global.channels; | |
1006 | ||
1007 | uchan = trace_ust_find_channel_by_name(chan_ht, attr->name); | |
1008 | if (uchan == NULL) { | |
7972aab2 | 1009 | ret = channel_ust_create(usess, attr, domain->buf_type); |
85076754 MD |
1010 | if (attr->name[0] != '\0') { |
1011 | usess->has_non_default_channel = 1; | |
1012 | } | |
2f77fc4b | 1013 | } else { |
7972aab2 | 1014 | ret = channel_ust_enable(usess, uchan); |
2f77fc4b DG |
1015 | } |
1016 | break; | |
1017 | } | |
2f77fc4b | 1018 | default: |
f73fabfd | 1019 | ret = LTTNG_ERR_UNKNOWN_DOMAIN; |
2f77fc4b DG |
1020 | goto error; |
1021 | } | |
1022 | ||
1023 | error: | |
2223c96f | 1024 | rcu_read_unlock(); |
2f77fc4b DG |
1025 | return ret; |
1026 | } | |
1027 | ||
1028 | ||
1029 | /* | |
1030 | * Command LTTNG_DISABLE_EVENT processed by the client thread. | |
1031 | */ | |
1032 | int cmd_disable_event(struct ltt_session *session, int domain, | |
6e911cad MD |
1033 | char *channel_name, |
1034 | struct lttng_event *event) | |
2f77fc4b DG |
1035 | { |
1036 | int ret; | |
6e911cad MD |
1037 | char *event_name; |
1038 | ||
18a720cd MD |
1039 | DBG("Disable event command for event \'%s\'", event->name); |
1040 | ||
6e911cad MD |
1041 | event_name = event->name; |
1042 | ||
1043 | if (event->loglevel_type || event->loglevel || event->enabled | |
1044 | || event->pid || event->filter || event->exclusion) { | |
1045 | return LTTNG_ERR_UNK; | |
1046 | } | |
18a720cd MD |
1047 | /* Special handling for kernel domain all events. */ |
1048 | if (domain == LTTNG_DOMAIN_KERNEL && !strcmp(event_name, "*")) { | |
1049 | return disable_kevent_all(session, domain, channel_name, event); | |
1050 | } | |
2f77fc4b | 1051 | |
2223c96f DG |
1052 | rcu_read_lock(); |
1053 | ||
2f77fc4b DG |
1054 | switch (domain) { |
1055 | case LTTNG_DOMAIN_KERNEL: | |
1056 | { | |
1057 | struct ltt_kernel_channel *kchan; | |
1058 | struct ltt_kernel_session *ksess; | |
1059 | ||
1060 | ksess = session->kernel_session; | |
1061 | ||
85076754 MD |
1062 | /* |
1063 | * If a non-default channel has been created in the | |
1064 | * session, explicitely require that -c chan_name needs | |
1065 | * to be provided. | |
1066 | */ | |
1067 | if (ksess->has_non_default_channel && channel_name[0] == '\0') { | |
1068 | ret = LTTNG_ERR_NEED_CHANNEL_NAME; | |
1069 | goto error; | |
1070 | } | |
1071 | ||
2f77fc4b DG |
1072 | kchan = trace_kernel_get_channel_by_name(channel_name, ksess); |
1073 | if (kchan == NULL) { | |
f73fabfd | 1074 | ret = LTTNG_ERR_KERN_CHAN_NOT_FOUND; |
2f77fc4b DG |
1075 | goto error; |
1076 | } | |
1077 | ||
6e911cad MD |
1078 | switch (event->type) { |
1079 | case LTTNG_EVENT_ALL: | |
1080 | case LTTNG_EVENT_TRACEPOINT: | |
1081 | ret = event_kernel_disable_tracepoint(kchan, event_name); | |
1082 | if (ret != LTTNG_OK) { | |
1083 | goto error; | |
1084 | } | |
1085 | break; | |
1086 | case LTTNG_EVENT_SYSCALL: | |
1087 | ret = event_kernel_disable_syscall(kchan, event_name); | |
e2b957af MD |
1088 | if (ret != LTTNG_OK) { |
1089 | goto error; | |
1090 | } | |
6e911cad MD |
1091 | break; |
1092 | default: | |
1093 | ret = LTTNG_ERR_UNK; | |
2f77fc4b DG |
1094 | goto error; |
1095 | } | |
1096 | ||
1097 | kernel_wait_quiescent(kernel_tracer_fd); | |
1098 | break; | |
1099 | } | |
1100 | case LTTNG_DOMAIN_UST: | |
1101 | { | |
1102 | struct ltt_ust_channel *uchan; | |
1103 | struct ltt_ust_session *usess; | |
1104 | ||
1105 | usess = session->ust_session; | |
1106 | ||
85076754 MD |
1107 | /* |
1108 | * If a non-default channel has been created in the | |
1109 | * session, explicitely require that -c chan_name needs | |
1110 | * to be provided. | |
1111 | */ | |
1112 | if (usess->has_non_default_channel && channel_name[0] == '\0') { | |
1113 | ret = LTTNG_ERR_NEED_CHANNEL_NAME; | |
1114 | goto error; | |
1115 | } | |
1116 | ||
2f77fc4b DG |
1117 | uchan = trace_ust_find_channel_by_name(usess->domain_global.channels, |
1118 | channel_name); | |
1119 | if (uchan == NULL) { | |
f73fabfd | 1120 | ret = LTTNG_ERR_UST_CHAN_NOT_FOUND; |
2f77fc4b DG |
1121 | goto error; |
1122 | } | |
1123 | ||
6e911cad MD |
1124 | switch (event->type) { |
1125 | case LTTNG_EVENT_ALL: | |
1126 | ret = event_ust_disable_tracepoint(usess, uchan, event_name); | |
1127 | if (ret != LTTNG_OK) { | |
1128 | goto error; | |
1129 | } | |
1130 | break; | |
1131 | default: | |
1132 | ret = LTTNG_ERR_UNK; | |
2f77fc4b DG |
1133 | goto error; |
1134 | } | |
1135 | ||
1136 | DBG3("Disable UST event %s in channel %s completed", event_name, | |
1137 | channel_name); | |
1138 | break; | |
1139 | } | |
5cdb6027 | 1140 | case LTTNG_DOMAIN_LOG4J: |
f20baf8e | 1141 | case LTTNG_DOMAIN_JUL: |
0e115563 | 1142 | case LTTNG_DOMAIN_PYTHON: |
f20baf8e | 1143 | { |
fefd409b | 1144 | struct agent *agt; |
f20baf8e DG |
1145 | struct ltt_ust_session *usess = session->ust_session; |
1146 | ||
1147 | assert(usess); | |
1148 | ||
6e911cad MD |
1149 | switch (event->type) { |
1150 | case LTTNG_EVENT_ALL: | |
1151 | break; | |
1152 | default: | |
1153 | ret = LTTNG_ERR_UNK; | |
1154 | goto error; | |
1155 | } | |
1156 | ||
5cdb6027 | 1157 | agt = trace_ust_find_agent(usess, domain); |
fefd409b DG |
1158 | if (!agt) { |
1159 | ret = -LTTNG_ERR_UST_EVENT_NOT_FOUND; | |
1160 | goto error; | |
1161 | } | |
18a720cd MD |
1162 | /* The wild card * means that everything should be disabled. */ |
1163 | if (strncmp(event->name, "*", 1) == 0 && strlen(event->name) == 1) { | |
1164 | ret = event_agent_disable_all(usess, agt); | |
1165 | } else { | |
1166 | ret = event_agent_disable(usess, agt, event_name); | |
1167 | } | |
f20baf8e DG |
1168 | if (ret != LTTNG_OK) { |
1169 | goto error; | |
1170 | } | |
1171 | ||
1172 | break; | |
1173 | } | |
2f77fc4b DG |
1174 | #if 0 |
1175 | case LTTNG_DOMAIN_UST_EXEC_NAME: | |
1176 | case LTTNG_DOMAIN_UST_PID: | |
1177 | case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN: | |
1178 | #endif | |
1179 | default: | |
f73fabfd | 1180 | ret = LTTNG_ERR_UND; |
2f77fc4b DG |
1181 | goto error; |
1182 | } | |
1183 | ||
f73fabfd | 1184 | ret = LTTNG_OK; |
2f77fc4b DG |
1185 | |
1186 | error: | |
2223c96f | 1187 | rcu_read_unlock(); |
2f77fc4b DG |
1188 | return ret; |
1189 | } | |
1190 | ||
1191 | /* | |
18a720cd | 1192 | * Command LTTNG_DISABLE_EVENT for event "*" processed by the client thread. |
2f77fc4b | 1193 | */ |
18a720cd MD |
1194 | static |
1195 | int disable_kevent_all(struct ltt_session *session, int domain, | |
6e911cad MD |
1196 | char *channel_name, |
1197 | struct lttng_event *event) | |
2f77fc4b DG |
1198 | { |
1199 | int ret; | |
1200 | ||
2223c96f DG |
1201 | rcu_read_lock(); |
1202 | ||
2f77fc4b DG |
1203 | switch (domain) { |
1204 | case LTTNG_DOMAIN_KERNEL: | |
1205 | { | |
1206 | struct ltt_kernel_session *ksess; | |
1207 | struct ltt_kernel_channel *kchan; | |
1208 | ||
1209 | ksess = session->kernel_session; | |
1210 | ||
85076754 MD |
1211 | /* |
1212 | * If a non-default channel has been created in the | |
1213 | * session, explicitely require that -c chan_name needs | |
1214 | * to be provided. | |
1215 | */ | |
1216 | if (ksess->has_non_default_channel && channel_name[0] == '\0') { | |
1217 | ret = LTTNG_ERR_NEED_CHANNEL_NAME; | |
1218 | goto error; | |
1219 | } | |
1220 | ||
2f77fc4b DG |
1221 | kchan = trace_kernel_get_channel_by_name(channel_name, ksess); |
1222 | if (kchan == NULL) { | |
f73fabfd | 1223 | ret = LTTNG_ERR_KERN_CHAN_NOT_FOUND; |
2f77fc4b DG |
1224 | goto error; |
1225 | } | |
1226 | ||
6e911cad MD |
1227 | switch (event->type) { |
1228 | case LTTNG_EVENT_ALL: | |
1229 | ret = event_kernel_disable_all(kchan); | |
1230 | if (ret != LTTNG_OK) { | |
1231 | goto error; | |
1232 | } | |
1233 | break; | |
1234 | case LTTNG_EVENT_SYSCALL: | |
e2b957af MD |
1235 | ret = event_kernel_disable_syscall(kchan, ""); |
1236 | if (ret != LTTNG_OK) { | |
1237 | goto error; | |
1238 | } | |
6e911cad MD |
1239 | break; |
1240 | default: | |
1241 | ret = LTTNG_ERR_UNK; | |
2f77fc4b DG |
1242 | goto error; |
1243 | } | |
1244 | ||
1245 | kernel_wait_quiescent(kernel_tracer_fd); | |
1246 | break; | |
1247 | } | |
2f77fc4b | 1248 | default: |
f73fabfd | 1249 | ret = LTTNG_ERR_UND; |
2f77fc4b DG |
1250 | goto error; |
1251 | } | |
1252 | ||
f73fabfd | 1253 | ret = LTTNG_OK; |
2f77fc4b DG |
1254 | |
1255 | error: | |
2223c96f | 1256 | rcu_read_unlock(); |
2f77fc4b DG |
1257 | return ret; |
1258 | } | |
1259 | ||
1260 | /* | |
1261 | * Command LTTNG_ADD_CONTEXT processed by the client thread. | |
1262 | */ | |
1263 | int cmd_add_context(struct ltt_session *session, int domain, | |
601d5acf | 1264 | char *channel_name, struct lttng_event_context *ctx, int kwpipe) |
2f77fc4b | 1265 | { |
d5979e4a | 1266 | int ret, chan_kern_created = 0, chan_ust_created = 0; |
2f77fc4b DG |
1267 | |
1268 | switch (domain) { | |
1269 | case LTTNG_DOMAIN_KERNEL: | |
979e618e DG |
1270 | assert(session->kernel_session); |
1271 | ||
1272 | if (session->kernel_session->channel_count == 0) { | |
1273 | /* Create default channel */ | |
1274 | ret = channel_kernel_create(session->kernel_session, NULL, kwpipe); | |
1275 | if (ret != LTTNG_OK) { | |
1276 | goto error; | |
1277 | } | |
d5979e4a | 1278 | chan_kern_created = 1; |
979e618e | 1279 | } |
2f77fc4b | 1280 | /* Add kernel context to kernel tracer */ |
601d5acf | 1281 | ret = context_kernel_add(session->kernel_session, ctx, channel_name); |
f73fabfd | 1282 | if (ret != LTTNG_OK) { |
2f77fc4b DG |
1283 | goto error; |
1284 | } | |
1285 | break; | |
1286 | case LTTNG_DOMAIN_UST: | |
1287 | { | |
1288 | struct ltt_ust_session *usess = session->ust_session; | |
85076754 MD |
1289 | unsigned int chan_count; |
1290 | ||
2f77fc4b DG |
1291 | assert(usess); |
1292 | ||
85076754 | 1293 | chan_count = lttng_ht_get_count(usess->domain_global.channels); |
979e618e DG |
1294 | if (chan_count == 0) { |
1295 | struct lttng_channel *attr; | |
1296 | /* Create default channel */ | |
0a9c6494 | 1297 | attr = channel_new_default_attr(domain, usess->buffer_type); |
979e618e DG |
1298 | if (attr == NULL) { |
1299 | ret = LTTNG_ERR_FATAL; | |
1300 | goto error; | |
1301 | } | |
1302 | ||
7972aab2 | 1303 | ret = channel_ust_create(usess, attr, usess->buffer_type); |
979e618e DG |
1304 | if (ret != LTTNG_OK) { |
1305 | free(attr); | |
1306 | goto error; | |
1307 | } | |
1308 | free(attr); | |
d5979e4a | 1309 | chan_ust_created = 1; |
979e618e DG |
1310 | } |
1311 | ||
601d5acf | 1312 | ret = context_ust_add(usess, domain, ctx, channel_name); |
f73fabfd | 1313 | if (ret != LTTNG_OK) { |
2f77fc4b DG |
1314 | goto error; |
1315 | } | |
1316 | break; | |
1317 | } | |
1318 | #if 0 | |
1319 | case LTTNG_DOMAIN_UST_EXEC_NAME: | |
1320 | case LTTNG_DOMAIN_UST_PID: | |
1321 | case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN: | |
1322 | #endif | |
1323 | default: | |
f73fabfd | 1324 | ret = LTTNG_ERR_UND; |
2f77fc4b DG |
1325 | goto error; |
1326 | } | |
1327 | ||
d5979e4a | 1328 | return LTTNG_OK; |
2f77fc4b DG |
1329 | |
1330 | error: | |
d5979e4a DG |
1331 | if (chan_kern_created) { |
1332 | struct ltt_kernel_channel *kchan = | |
1333 | trace_kernel_get_channel_by_name(DEFAULT_CHANNEL_NAME, | |
1334 | session->kernel_session); | |
1335 | /* Created previously, this should NOT fail. */ | |
1336 | assert(kchan); | |
1337 | kernel_destroy_channel(kchan); | |
1338 | } | |
1339 | ||
1340 | if (chan_ust_created) { | |
1341 | struct ltt_ust_channel *uchan = | |
1342 | trace_ust_find_channel_by_name( | |
1343 | session->ust_session->domain_global.channels, | |
1344 | DEFAULT_CHANNEL_NAME); | |
1345 | /* Created previously, this should NOT fail. */ | |
1346 | assert(uchan); | |
1347 | /* Remove from the channel list of the session. */ | |
1348 | trace_ust_delete_channel(session->ust_session->domain_global.channels, | |
1349 | uchan); | |
1350 | trace_ust_destroy_channel(uchan); | |
1351 | } | |
2f77fc4b DG |
1352 | return ret; |
1353 | } | |
1354 | ||
930a2e99 JG |
1355 | static int validate_event_name(const char *name) |
1356 | { | |
1357 | int ret = 0; | |
1358 | const char *c = name; | |
1359 | const char *event_name_end = c + LTTNG_SYMBOL_NAME_LEN; | |
1360 | ||
1361 | /* | |
1362 | * Make sure that unescaped wildcards are only used as the last | |
1363 | * character of the event name. | |
1364 | */ | |
1365 | while (c < event_name_end) { | |
1366 | switch (*c) { | |
1367 | case '\0': | |
1368 | goto end; | |
1369 | case '\\': | |
1370 | c++; | |
1371 | break; | |
1372 | case '*': | |
1373 | if ((c + 1) < event_name_end && *(c + 1)) { | |
1374 | /* Wildcard is not the last character */ | |
1375 | ret = LTTNG_ERR_INVALID_EVENT_NAME; | |
1376 | goto end; | |
1377 | } | |
1378 | default: | |
1379 | break; | |
1380 | } | |
1381 | c++; | |
1382 | } | |
1383 | end: | |
1384 | return ret; | |
1385 | } | |
1386 | ||
2f77fc4b DG |
1387 | /* |
1388 | * Command LTTNG_ENABLE_EVENT processed by the client thread. | |
49d21f93 | 1389 | * We own filter, exclusion, and filter_expression. |
2f77fc4b | 1390 | */ |
7972aab2 | 1391 | int cmd_enable_event(struct ltt_session *session, struct lttng_domain *domain, |
025faf73 | 1392 | char *channel_name, struct lttng_event *event, |
6b453b5e | 1393 | char *filter_expression, |
db8f1377 JI |
1394 | struct lttng_filter_bytecode *filter, |
1395 | struct lttng_event_exclusion *exclusion, | |
1396 | int wpipe) | |
2f77fc4b | 1397 | { |
e5f5db7f | 1398 | int ret, channel_created = 0; |
2f77fc4b DG |
1399 | struct lttng_channel *attr; |
1400 | ||
1401 | assert(session); | |
1402 | assert(event); | |
1403 | assert(channel_name); | |
1404 | ||
18a720cd MD |
1405 | DBG("Enable event command for event \'%s\'", event->name); |
1406 | ||
1407 | /* Special handling for kernel domain all events. */ | |
1408 | if (domain->type == LTTNG_DOMAIN_KERNEL && !strcmp(event->name, "*")) { | |
1409 | return enable_kevent_all(session, domain, channel_name, event, | |
1410 | filter_expression, filter, wpipe); | |
1411 | } | |
1412 | ||
930a2e99 JG |
1413 | ret = validate_event_name(event->name); |
1414 | if (ret) { | |
1415 | goto error; | |
1416 | } | |
1417 | ||
2223c96f DG |
1418 | rcu_read_lock(); |
1419 | ||
7972aab2 | 1420 | switch (domain->type) { |
2f77fc4b DG |
1421 | case LTTNG_DOMAIN_KERNEL: |
1422 | { | |
1423 | struct ltt_kernel_channel *kchan; | |
1424 | ||
85076754 MD |
1425 | /* |
1426 | * If a non-default channel has been created in the | |
1427 | * session, explicitely require that -c chan_name needs | |
1428 | * to be provided. | |
1429 | */ | |
1430 | if (session->kernel_session->has_non_default_channel | |
1431 | && channel_name[0] == '\0') { | |
1432 | ret = LTTNG_ERR_NEED_CHANNEL_NAME; | |
1433 | goto error; | |
1434 | } | |
1435 | ||
2f77fc4b DG |
1436 | kchan = trace_kernel_get_channel_by_name(channel_name, |
1437 | session->kernel_session); | |
1438 | if (kchan == NULL) { | |
0a9c6494 DG |
1439 | attr = channel_new_default_attr(LTTNG_DOMAIN_KERNEL, |
1440 | LTTNG_BUFFER_GLOBAL); | |
2f77fc4b | 1441 | if (attr == NULL) { |
f73fabfd | 1442 | ret = LTTNG_ERR_FATAL; |
2f77fc4b DG |
1443 | goto error; |
1444 | } | |
1445 | strncpy(attr->name, channel_name, sizeof(attr->name)); | |
1446 | ||
1447 | ret = cmd_enable_channel(session, domain, attr, wpipe); | |
f73fabfd | 1448 | if (ret != LTTNG_OK) { |
2f77fc4b DG |
1449 | free(attr); |
1450 | goto error; | |
1451 | } | |
1452 | free(attr); | |
e5f5db7f DG |
1453 | |
1454 | channel_created = 1; | |
2f77fc4b DG |
1455 | } |
1456 | ||
1457 | /* Get the newly created kernel channel pointer */ | |
1458 | kchan = trace_kernel_get_channel_by_name(channel_name, | |
1459 | session->kernel_session); | |
1460 | if (kchan == NULL) { | |
1461 | /* This sould not happen... */ | |
f73fabfd | 1462 | ret = LTTNG_ERR_FATAL; |
2f77fc4b DG |
1463 | goto error; |
1464 | } | |
1465 | ||
6e911cad MD |
1466 | switch (event->type) { |
1467 | case LTTNG_EVENT_ALL: | |
6e6ef3d7 DG |
1468 | case LTTNG_EVENT_PROBE: |
1469 | case LTTNG_EVENT_FUNCTION: | |
1470 | case LTTNG_EVENT_FUNCTION_ENTRY: | |
6e911cad MD |
1471 | case LTTNG_EVENT_TRACEPOINT: |
1472 | ret = event_kernel_enable_tracepoint(kchan, event); | |
1473 | if (ret != LTTNG_OK) { | |
1474 | if (channel_created) { | |
1475 | /* Let's not leak a useless channel. */ | |
1476 | kernel_destroy_channel(kchan); | |
1477 | } | |
1478 | goto error; | |
e5f5db7f | 1479 | } |
6e911cad MD |
1480 | break; |
1481 | case LTTNG_EVENT_SYSCALL: | |
1482 | ret = event_kernel_enable_syscall(kchan, event->name); | |
e2b957af MD |
1483 | if (ret != LTTNG_OK) { |
1484 | goto error; | |
1485 | } | |
6e911cad MD |
1486 | break; |
1487 | default: | |
1488 | ret = LTTNG_ERR_UNK; | |
2f77fc4b DG |
1489 | goto error; |
1490 | } | |
1491 | ||
1492 | kernel_wait_quiescent(kernel_tracer_fd); | |
1493 | break; | |
1494 | } | |
1495 | case LTTNG_DOMAIN_UST: | |
1496 | { | |
1497 | struct ltt_ust_channel *uchan; | |
1498 | struct ltt_ust_session *usess = session->ust_session; | |
1499 | ||
1500 | assert(usess); | |
1501 | ||
85076754 MD |
1502 | /* |
1503 | * If a non-default channel has been created in the | |
1504 | * session, explicitely require that -c chan_name needs | |
1505 | * to be provided. | |
1506 | */ | |
1507 | if (usess->has_non_default_channel && channel_name[0] == '\0') { | |
1508 | ret = LTTNG_ERR_NEED_CHANNEL_NAME; | |
1509 | goto error; | |
1510 | } | |
1511 | ||
2f77fc4b DG |
1512 | /* Get channel from global UST domain */ |
1513 | uchan = trace_ust_find_channel_by_name(usess->domain_global.channels, | |
1514 | channel_name); | |
1515 | if (uchan == NULL) { | |
1516 | /* Create default channel */ | |
0a9c6494 DG |
1517 | attr = channel_new_default_attr(LTTNG_DOMAIN_UST, |
1518 | usess->buffer_type); | |
2f77fc4b | 1519 | if (attr == NULL) { |
f73fabfd | 1520 | ret = LTTNG_ERR_FATAL; |
2f77fc4b DG |
1521 | goto error; |
1522 | } | |
1523 | strncpy(attr->name, channel_name, sizeof(attr->name)); | |
1524 | ||
1525 | ret = cmd_enable_channel(session, domain, attr, wpipe); | |
f73fabfd | 1526 | if (ret != LTTNG_OK) { |
2f77fc4b DG |
1527 | free(attr); |
1528 | goto error; | |
1529 | } | |
1530 | free(attr); | |
1531 | ||
1532 | /* Get the newly created channel reference back */ | |
1533 | uchan = trace_ust_find_channel_by_name( | |
1534 | usess->domain_global.channels, channel_name); | |
1535 | assert(uchan); | |
1536 | } | |
1537 | ||
1538 | /* At this point, the session and channel exist on the tracer */ | |
6b453b5e JG |
1539 | ret = event_ust_enable_tracepoint(usess, uchan, event, |
1540 | filter_expression, filter, exclusion); | |
49d21f93 MD |
1541 | /* We have passed ownership */ |
1542 | filter_expression = NULL; | |
1543 | filter = NULL; | |
1544 | exclusion = NULL; | |
f73fabfd | 1545 | if (ret != LTTNG_OK) { |
2f77fc4b DG |
1546 | goto error; |
1547 | } | |
1548 | break; | |
1549 | } | |
5cdb6027 | 1550 | case LTTNG_DOMAIN_LOG4J: |
f20baf8e | 1551 | case LTTNG_DOMAIN_JUL: |
0e115563 | 1552 | case LTTNG_DOMAIN_PYTHON: |
f20baf8e | 1553 | { |
da6c3a50 | 1554 | const char *default_event_name, *default_chan_name; |
fefd409b | 1555 | struct agent *agt; |
f20baf8e DG |
1556 | struct lttng_event uevent; |
1557 | struct lttng_domain tmp_dom; | |
1558 | struct ltt_ust_session *usess = session->ust_session; | |
1559 | ||
1560 | assert(usess); | |
1561 | ||
5cdb6027 | 1562 | agt = trace_ust_find_agent(usess, domain->type); |
fefd409b | 1563 | if (!agt) { |
5cdb6027 | 1564 | agt = agent_create(domain->type); |
fefd409b DG |
1565 | if (!agt) { |
1566 | ret = -LTTNG_ERR_NOMEM; | |
1567 | goto error; | |
1568 | } | |
1569 | agent_add(agt, usess->agents); | |
1570 | } | |
1571 | ||
022d91ba | 1572 | /* Create the default tracepoint. */ |
996de3c7 | 1573 | memset(&uevent, 0, sizeof(uevent)); |
f20baf8e DG |
1574 | uevent.type = LTTNG_EVENT_TRACEPOINT; |
1575 | uevent.loglevel_type = LTTNG_EVENT_LOGLEVEL_ALL; | |
da6c3a50 DG |
1576 | default_event_name = event_get_default_agent_ust_name(domain->type); |
1577 | if (!default_event_name) { | |
1578 | ret = -LTTNG_ERR_FATAL; | |
1579 | goto error; | |
f43f95a9 | 1580 | } |
da6c3a50 | 1581 | strncpy(uevent.name, default_event_name, sizeof(uevent.name)); |
f20baf8e DG |
1582 | uevent.name[sizeof(uevent.name) - 1] = '\0'; |
1583 | ||
1584 | /* | |
1585 | * The domain type is changed because we are about to enable the | |
1586 | * default channel and event for the JUL domain that are hardcoded. | |
1587 | * This happens in the UST domain. | |
1588 | */ | |
1589 | memcpy(&tmp_dom, domain, sizeof(tmp_dom)); | |
1590 | tmp_dom.type = LTTNG_DOMAIN_UST; | |
1591 | ||
0e115563 DG |
1592 | switch (domain->type) { |
1593 | case LTTNG_DOMAIN_LOG4J: | |
da6c3a50 | 1594 | default_chan_name = DEFAULT_LOG4J_CHANNEL_NAME; |
0e115563 DG |
1595 | break; |
1596 | case LTTNG_DOMAIN_JUL: | |
da6c3a50 | 1597 | default_chan_name = DEFAULT_JUL_CHANNEL_NAME; |
0e115563 DG |
1598 | break; |
1599 | case LTTNG_DOMAIN_PYTHON: | |
1600 | default_chan_name = DEFAULT_PYTHON_CHANNEL_NAME; | |
1601 | break; | |
1602 | default: | |
1603 | /* The switch/case we are in should avoid this else big problem */ | |
1604 | assert(0); | |
da6c3a50 DG |
1605 | } |
1606 | ||
1607 | ret = cmd_enable_event(session, &tmp_dom, (char *) default_chan_name, | |
9b21e6d5 | 1608 | &uevent, filter_expression, filter, NULL, wpipe); |
49d21f93 MD |
1609 | /* We have passed ownership */ |
1610 | filter_expression = NULL; | |
1611 | filter = NULL; | |
f20baf8e DG |
1612 | if (ret != LTTNG_OK && ret != LTTNG_ERR_UST_EVENT_ENABLED) { |
1613 | goto error; | |
1614 | } | |
1615 | ||
1616 | /* The wild card * means that everything should be enabled. */ | |
1617 | if (strncmp(event->name, "*", 1) == 0 && strlen(event->name) == 1) { | |
fefd409b | 1618 | ret = event_agent_enable_all(usess, agt, event, filter); |
f20baf8e | 1619 | } else { |
fefd409b | 1620 | ret = event_agent_enable(usess, agt, event, filter); |
f20baf8e DG |
1621 | } |
1622 | if (ret != LTTNG_OK) { | |
1623 | goto error; | |
1624 | } | |
1625 | ||
1626 | break; | |
1627 | } | |
2f77fc4b DG |
1628 | #if 0 |
1629 | case LTTNG_DOMAIN_UST_EXEC_NAME: | |
1630 | case LTTNG_DOMAIN_UST_PID: | |
1631 | case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN: | |
1632 | #endif | |
1633 | default: | |
f73fabfd | 1634 | ret = LTTNG_ERR_UND; |
2f77fc4b DG |
1635 | goto error; |
1636 | } | |
1637 | ||
f73fabfd | 1638 | ret = LTTNG_OK; |
2f77fc4b DG |
1639 | |
1640 | error: | |
49d21f93 MD |
1641 | free(filter_expression); |
1642 | free(filter); | |
1643 | free(exclusion); | |
2223c96f | 1644 | rcu_read_unlock(); |
2f77fc4b DG |
1645 | return ret; |
1646 | } | |
1647 | ||
1648 | /* | |
18a720cd | 1649 | * Command LTTNG_ENABLE_EVENT for event "*" processed by the client thread. |
2f77fc4b | 1650 | */ |
18a720cd MD |
1651 | static |
1652 | int enable_kevent_all(struct ltt_session *session, | |
1653 | struct lttng_domain *domain, char *channel_name, | |
1654 | struct lttng_event *event, | |
6b453b5e | 1655 | char *filter_expression, |
025faf73 | 1656 | struct lttng_filter_bytecode *filter, int wpipe) |
2f77fc4b DG |
1657 | { |
1658 | int ret; | |
1659 | struct lttng_channel *attr; | |
1660 | ||
1661 | assert(session); | |
1662 | assert(channel_name); | |
1663 | ||
2223c96f DG |
1664 | rcu_read_lock(); |
1665 | ||
7972aab2 | 1666 | switch (domain->type) { |
2f77fc4b DG |
1667 | case LTTNG_DOMAIN_KERNEL: |
1668 | { | |
1669 | struct ltt_kernel_channel *kchan; | |
1670 | ||
1671 | assert(session->kernel_session); | |
1672 | ||
85076754 MD |
1673 | /* |
1674 | * If a non-default channel has been created in the | |
1675 | * session, explicitely require that -c chan_name needs | |
1676 | * to be provided. | |
1677 | */ | |
1678 | if (session->kernel_session->has_non_default_channel | |
1679 | && channel_name[0] == '\0') { | |
1680 | ret = LTTNG_ERR_NEED_CHANNEL_NAME; | |
1681 | goto error; | |
1682 | } | |
1683 | ||
2f77fc4b DG |
1684 | kchan = trace_kernel_get_channel_by_name(channel_name, |
1685 | session->kernel_session); | |
1686 | if (kchan == NULL) { | |
1687 | /* Create default channel */ | |
0a9c6494 DG |
1688 | attr = channel_new_default_attr(LTTNG_DOMAIN_KERNEL, |
1689 | LTTNG_BUFFER_GLOBAL); | |
2f77fc4b | 1690 | if (attr == NULL) { |
f73fabfd | 1691 | ret = LTTNG_ERR_FATAL; |
2f77fc4b DG |
1692 | goto error; |
1693 | } | |
1694 | strncpy(attr->name, channel_name, sizeof(attr->name)); | |
1695 | ||
1696 | ret = cmd_enable_channel(session, domain, attr, wpipe); | |
f73fabfd | 1697 | if (ret != LTTNG_OK) { |
2f77fc4b DG |
1698 | free(attr); |
1699 | goto error; | |
1700 | } | |
1701 | free(attr); | |
1702 | ||
1703 | /* Get the newly created kernel channel pointer */ | |
1704 | kchan = trace_kernel_get_channel_by_name(channel_name, | |
1705 | session->kernel_session); | |
1706 | assert(kchan); | |
1707 | } | |
1708 | ||
18a720cd | 1709 | switch (event->type) { |
2f77fc4b | 1710 | case LTTNG_EVENT_SYSCALL: |
6e911cad | 1711 | ret = event_kernel_enable_syscall(kchan, ""); |
e2b957af MD |
1712 | if (ret != LTTNG_OK) { |
1713 | goto error; | |
1714 | } | |
2f77fc4b DG |
1715 | break; |
1716 | case LTTNG_EVENT_TRACEPOINT: | |
1717 | /* | |
1718 | * This call enables all LTTNG_KERNEL_TRACEPOINTS and | |
1719 | * events already registered to the channel. | |
1720 | */ | |
d3a56674 | 1721 | ret = event_kernel_enable_all_tracepoints(kchan, kernel_tracer_fd); |
2f77fc4b DG |
1722 | break; |
1723 | case LTTNG_EVENT_ALL: | |
1724 | /* Enable syscalls and tracepoints */ | |
d3a56674 | 1725 | ret = event_kernel_enable_all(kchan, kernel_tracer_fd); |
2f77fc4b DG |
1726 | break; |
1727 | default: | |
f73fabfd | 1728 | ret = LTTNG_ERR_KERN_ENABLE_FAIL; |
2f77fc4b DG |
1729 | goto error; |
1730 | } | |
1731 | ||
1732 | /* Manage return value */ | |
f73fabfd | 1733 | if (ret != LTTNG_OK) { |
e5f5db7f DG |
1734 | /* |
1735 | * On error, cmd_enable_channel call will take care of destroying | |
1736 | * the created channel if it was needed. | |
1737 | */ | |
2f77fc4b DG |
1738 | goto error; |
1739 | } | |
1740 | ||
1741 | kernel_wait_quiescent(kernel_tracer_fd); | |
1742 | break; | |
1743 | } | |
2f77fc4b | 1744 | default: |
f73fabfd | 1745 | ret = LTTNG_ERR_UND; |
2f77fc4b DG |
1746 | goto error; |
1747 | } | |
1748 | ||
f73fabfd | 1749 | ret = LTTNG_OK; |
2f77fc4b DG |
1750 | |
1751 | error: | |
2223c96f | 1752 | rcu_read_unlock(); |
2f77fc4b DG |
1753 | return ret; |
1754 | } | |
1755 | ||
1756 | ||
1757 | /* | |
1758 | * Command LTTNG_LIST_TRACEPOINTS processed by the client thread. | |
1759 | */ | |
1760 | ssize_t cmd_list_tracepoints(int domain, struct lttng_event **events) | |
1761 | { | |
1762 | int ret; | |
1763 | ssize_t nb_events = 0; | |
1764 | ||
1765 | switch (domain) { | |
1766 | case LTTNG_DOMAIN_KERNEL: | |
1767 | nb_events = kernel_list_events(kernel_tracer_fd, events); | |
1768 | if (nb_events < 0) { | |
f73fabfd | 1769 | ret = LTTNG_ERR_KERN_LIST_FAIL; |
2f77fc4b DG |
1770 | goto error; |
1771 | } | |
1772 | break; | |
1773 | case LTTNG_DOMAIN_UST: | |
1774 | nb_events = ust_app_list_events(events); | |
1775 | if (nb_events < 0) { | |
f73fabfd | 1776 | ret = LTTNG_ERR_UST_LIST_FAIL; |
2f77fc4b DG |
1777 | goto error; |
1778 | } | |
1779 | break; | |
5cdb6027 | 1780 | case LTTNG_DOMAIN_LOG4J: |
3c6a091f | 1781 | case LTTNG_DOMAIN_JUL: |
0e115563 | 1782 | case LTTNG_DOMAIN_PYTHON: |
f60140a1 | 1783 | nb_events = agent_list_events(events, domain); |
3c6a091f DG |
1784 | if (nb_events < 0) { |
1785 | ret = LTTNG_ERR_UST_LIST_FAIL; | |
1786 | goto error; | |
1787 | } | |
1788 | break; | |
2f77fc4b | 1789 | default: |
f73fabfd | 1790 | ret = LTTNG_ERR_UND; |
2f77fc4b DG |
1791 | goto error; |
1792 | } | |
1793 | ||
1794 | return nb_events; | |
1795 | ||
1796 | error: | |
1797 | /* Return negative value to differentiate return code */ | |
1798 | return -ret; | |
1799 | } | |
1800 | ||
1801 | /* | |
1802 | * Command LTTNG_LIST_TRACEPOINT_FIELDS processed by the client thread. | |
1803 | */ | |
1804 | ssize_t cmd_list_tracepoint_fields(int domain, | |
1805 | struct lttng_event_field **fields) | |
1806 | { | |
1807 | int ret; | |
1808 | ssize_t nb_fields = 0; | |
1809 | ||
1810 | switch (domain) { | |
1811 | case LTTNG_DOMAIN_UST: | |
1812 | nb_fields = ust_app_list_event_fields(fields); | |
1813 | if (nb_fields < 0) { | |
f73fabfd | 1814 | ret = LTTNG_ERR_UST_LIST_FAIL; |
2f77fc4b DG |
1815 | goto error; |
1816 | } | |
1817 | break; | |
1818 | case LTTNG_DOMAIN_KERNEL: | |
1819 | default: /* fall-through */ | |
f73fabfd | 1820 | ret = LTTNG_ERR_UND; |
2f77fc4b DG |
1821 | goto error; |
1822 | } | |
1823 | ||
1824 | return nb_fields; | |
1825 | ||
1826 | error: | |
1827 | /* Return negative value to differentiate return code */ | |
1828 | return -ret; | |
1829 | } | |
1830 | ||
834978fd DG |
1831 | ssize_t cmd_list_syscalls(struct lttng_event **events) |
1832 | { | |
1833 | return syscall_table_list(events); | |
1834 | } | |
1835 | ||
2f77fc4b DG |
1836 | /* |
1837 | * Command LTTNG_START_TRACE processed by the client thread. | |
1838 | */ | |
1839 | int cmd_start_trace(struct ltt_session *session) | |
1840 | { | |
1841 | int ret; | |
cde3e505 | 1842 | unsigned long nb_chan = 0; |
2f77fc4b DG |
1843 | struct ltt_kernel_session *ksession; |
1844 | struct ltt_ust_session *usess; | |
2f77fc4b DG |
1845 | |
1846 | assert(session); | |
1847 | ||
1848 | /* Ease our life a bit ;) */ | |
1849 | ksession = session->kernel_session; | |
1850 | usess = session->ust_session; | |
1851 | ||
8382cf6f DG |
1852 | /* Is the session already started? */ |
1853 | if (session->active) { | |
f73fabfd | 1854 | ret = LTTNG_ERR_TRACE_ALREADY_STARTED; |
2f77fc4b DG |
1855 | goto error; |
1856 | } | |
1857 | ||
cde3e505 DG |
1858 | /* |
1859 | * Starting a session without channel is useless since after that it's not | |
1860 | * possible to enable channel thus inform the client. | |
1861 | */ | |
1862 | if (usess && usess->domain_global.channels) { | |
a9e41044 | 1863 | rcu_read_lock(); |
cde3e505 | 1864 | nb_chan += lttng_ht_get_count(usess->domain_global.channels); |
a9e41044 | 1865 | rcu_read_unlock(); |
cde3e505 DG |
1866 | } |
1867 | if (ksession) { | |
1868 | nb_chan += ksession->channel_count; | |
1869 | } | |
1870 | if (!nb_chan) { | |
1871 | ret = LTTNG_ERR_NO_CHANNEL; | |
1872 | goto error; | |
1873 | } | |
1874 | ||
2f77fc4b DG |
1875 | /* Kernel tracing */ |
1876 | if (ksession != NULL) { | |
9b6c7ec5 DG |
1877 | ret = start_kernel_session(ksession, kernel_tracer_fd); |
1878 | if (ret != LTTNG_OK) { | |
2f77fc4b DG |
1879 | goto error; |
1880 | } | |
2f77fc4b DG |
1881 | } |
1882 | ||
1883 | /* Flag session that trace should start automatically */ | |
1884 | if (usess) { | |
14fb1ebe DG |
1885 | /* |
1886 | * Even though the start trace might fail, flag this session active so | |
1887 | * other application coming in are started by default. | |
1888 | */ | |
1889 | usess->active = 1; | |
2f77fc4b DG |
1890 | |
1891 | ret = ust_app_start_trace_all(usess); | |
1892 | if (ret < 0) { | |
f73fabfd | 1893 | ret = LTTNG_ERR_UST_START_FAIL; |
2f77fc4b DG |
1894 | goto error; |
1895 | } | |
1896 | } | |
1897 | ||
8382cf6f DG |
1898 | /* Flag this after a successful start. */ |
1899 | session->has_been_started = 1; | |
1900 | session->active = 1; | |
9b6c7ec5 | 1901 | |
f73fabfd | 1902 | ret = LTTNG_OK; |
2f77fc4b DG |
1903 | |
1904 | error: | |
1905 | return ret; | |
1906 | } | |
1907 | ||
1908 | /* | |
1909 | * Command LTTNG_STOP_TRACE processed by the client thread. | |
1910 | */ | |
1911 | int cmd_stop_trace(struct ltt_session *session) | |
1912 | { | |
1913 | int ret; | |
1914 | struct ltt_kernel_channel *kchan; | |
1915 | struct ltt_kernel_session *ksession; | |
1916 | struct ltt_ust_session *usess; | |
1917 | ||
1918 | assert(session); | |
1919 | ||
1920 | /* Short cut */ | |
1921 | ksession = session->kernel_session; | |
1922 | usess = session->ust_session; | |
1923 | ||
8382cf6f DG |
1924 | /* Session is not active. Skip everythong and inform the client. */ |
1925 | if (!session->active) { | |
f73fabfd | 1926 | ret = LTTNG_ERR_TRACE_ALREADY_STOPPED; |
2f77fc4b DG |
1927 | goto error; |
1928 | } | |
1929 | ||
2f77fc4b | 1930 | /* Kernel tracer */ |
14fb1ebe | 1931 | if (ksession && ksession->active) { |
2f77fc4b DG |
1932 | DBG("Stop kernel tracing"); |
1933 | ||
1934 | /* Flush metadata if exist */ | |
1935 | if (ksession->metadata_stream_fd >= 0) { | |
1936 | ret = kernel_metadata_flush_buffer(ksession->metadata_stream_fd); | |
1937 | if (ret < 0) { | |
1938 | ERR("Kernel metadata flush failed"); | |
1939 | } | |
1940 | } | |
1941 | ||
1942 | /* Flush all buffers before stopping */ | |
1943 | cds_list_for_each_entry(kchan, &ksession->channel_list.head, list) { | |
1944 | ret = kernel_flush_buffer(kchan); | |
1945 | if (ret < 0) { | |
1946 | ERR("Kernel flush buffer error"); | |
1947 | } | |
1948 | } | |
1949 | ||
1950 | ret = kernel_stop_session(ksession); | |
1951 | if (ret < 0) { | |
f73fabfd | 1952 | ret = LTTNG_ERR_KERN_STOP_FAIL; |
2f77fc4b DG |
1953 | goto error; |
1954 | } | |
1955 | ||
1956 | kernel_wait_quiescent(kernel_tracer_fd); | |
9b6c7ec5 | 1957 | |
14fb1ebe | 1958 | ksession->active = 0; |
2f77fc4b DG |
1959 | } |
1960 | ||
14fb1ebe DG |
1961 | if (usess && usess->active) { |
1962 | /* | |
1963 | * Even though the stop trace might fail, flag this session inactive so | |
1964 | * other application coming in are not started by default. | |
1965 | */ | |
1966 | usess->active = 0; | |
2f77fc4b DG |
1967 | |
1968 | ret = ust_app_stop_trace_all(usess); | |
1969 | if (ret < 0) { | |
f73fabfd | 1970 | ret = LTTNG_ERR_UST_STOP_FAIL; |
2f77fc4b DG |
1971 | goto error; |
1972 | } | |
1973 | } | |
1974 | ||
8382cf6f DG |
1975 | /* Flag inactive after a successful stop. */ |
1976 | session->active = 0; | |
f73fabfd | 1977 | ret = LTTNG_OK; |
2f77fc4b DG |
1978 | |
1979 | error: | |
1980 | return ret; | |
1981 | } | |
1982 | ||
1983 | /* | |
1984 | * Command LTTNG_SET_CONSUMER_URI processed by the client thread. | |
1985 | */ | |
1986 | int cmd_set_consumer_uri(int domain, struct ltt_session *session, | |
1987 | size_t nb_uri, struct lttng_uri *uris) | |
1988 | { | |
1989 | int ret, i; | |
1990 | struct ltt_kernel_session *ksess = session->kernel_session; | |
1991 | struct ltt_ust_session *usess = session->ust_session; | |
1992 | struct consumer_output *consumer = NULL; | |
1993 | ||
1994 | assert(session); | |
1995 | assert(uris); | |
1996 | assert(nb_uri > 0); | |
1997 | ||
8382cf6f DG |
1998 | /* Can't set consumer URI if the session is active. */ |
1999 | if (session->active) { | |
f73fabfd | 2000 | ret = LTTNG_ERR_TRACE_ALREADY_STARTED; |
2f77fc4b DG |
2001 | goto error; |
2002 | } | |
2003 | ||
2f77fc4b DG |
2004 | /* |
2005 | * This case switch makes sure the domain session has a temporary consumer | |
2006 | * so the URL can be set. | |
2007 | */ | |
2008 | switch (domain) { | |
2009 | case 0: | |
2010 | /* Code flow error. A session MUST always have a consumer object */ | |
2011 | assert(session->consumer); | |
2012 | /* | |
2013 | * The URL will be added to the tracing session consumer instead of a | |
2014 | * specific domain consumer. | |
2015 | */ | |
2016 | consumer = session->consumer; | |
2017 | break; | |
2018 | case LTTNG_DOMAIN_KERNEL: | |
2019 | /* Code flow error if we don't have a kernel session here. */ | |
2020 | assert(ksess); | |
785d2d0d DG |
2021 | assert(ksess->consumer); |
2022 | consumer = ksess->consumer; | |
2f77fc4b DG |
2023 | break; |
2024 | case LTTNG_DOMAIN_UST: | |
2025 | /* Code flow error if we don't have a kernel session here. */ | |
2026 | assert(usess); | |
785d2d0d DG |
2027 | assert(usess->consumer); |
2028 | consumer = usess->consumer; | |
2f77fc4b DG |
2029 | break; |
2030 | } | |
2031 | ||
2032 | for (i = 0; i < nb_uri; i++) { | |
2f77fc4b | 2033 | ret = add_uri_to_consumer(consumer, &uris[i], domain, session->name); |
a74934ba | 2034 | if (ret != LTTNG_OK) { |
2f77fc4b DG |
2035 | goto error; |
2036 | } | |
2f77fc4b DG |
2037 | } |
2038 | ||
7ab70fe0 DG |
2039 | /* |
2040 | * Make sure to set the session in output mode after we set URI since a | |
2041 | * session can be created without URL (thus flagged in no output mode). | |
2042 | */ | |
2043 | session->output_traces = 1; | |
2044 | if (ksess) { | |
2045 | ksess->output_traces = 1; | |
2046 | } else if (usess) { | |
2047 | usess->output_traces = 1; | |
2048 | } | |
2049 | ||
2f77fc4b | 2050 | /* All good! */ |
f73fabfd | 2051 | ret = LTTNG_OK; |
2f77fc4b DG |
2052 | |
2053 | error: | |
2054 | return ret; | |
2055 | } | |
2056 | ||
2057 | /* | |
2058 | * Command LTTNG_CREATE_SESSION processed by the client thread. | |
2059 | */ | |
2060 | int cmd_create_session_uri(char *name, struct lttng_uri *uris, | |
ecc48a90 | 2061 | size_t nb_uri, lttng_sock_cred *creds, unsigned int live_timer) |
2f77fc4b DG |
2062 | { |
2063 | int ret; | |
2f77fc4b DG |
2064 | struct ltt_session *session; |
2065 | ||
2066 | assert(name); | |
2bba9e53 | 2067 | assert(creds); |
785d2d0d | 2068 | |
2f77fc4b DG |
2069 | /* |
2070 | * Verify if the session already exist | |
2071 | * | |
2072 | * XXX: There is no need for the session lock list here since the caller | |
2073 | * (process_client_msg) is holding it. We might want to change that so a | |
2074 | * single command does not lock the entire session list. | |
2075 | */ | |
2076 | session = session_find_by_name(name); | |
2077 | if (session != NULL) { | |
f73fabfd | 2078 | ret = LTTNG_ERR_EXIST_SESS; |
2f77fc4b DG |
2079 | goto find_error; |
2080 | } | |
2081 | ||
2082 | /* Create tracing session in the registry */ | |
dec56f6c | 2083 | ret = session_create(name, LTTNG_SOCK_GET_UID_CRED(creds), |
2f77fc4b | 2084 | LTTNG_SOCK_GET_GID_CRED(creds)); |
f73fabfd | 2085 | if (ret != LTTNG_OK) { |
2f77fc4b DG |
2086 | goto session_error; |
2087 | } | |
2088 | ||
2089 | /* | |
2090 | * Get the newly created session pointer back | |
2091 | * | |
2092 | * XXX: There is no need for the session lock list here since the caller | |
2093 | * (process_client_msg) is holding it. We might want to change that so a | |
2094 | * single command does not lock the entire session list. | |
2095 | */ | |
2096 | session = session_find_by_name(name); | |
2097 | assert(session); | |
2098 | ||
ecc48a90 | 2099 | session->live_timer = live_timer; |
2f77fc4b DG |
2100 | /* Create default consumer output for the session not yet created. */ |
2101 | session->consumer = consumer_create_output(CONSUMER_DST_LOCAL); | |
2102 | if (session->consumer == NULL) { | |
f73fabfd | 2103 | ret = LTTNG_ERR_FATAL; |
2f77fc4b DG |
2104 | goto consumer_error; |
2105 | } | |
2106 | ||
2bba9e53 DG |
2107 | if (uris) { |
2108 | ret = cmd_set_consumer_uri(0, session, nb_uri, uris); | |
2109 | if (ret != LTTNG_OK) { | |
2110 | goto consumer_error; | |
2111 | } | |
2112 | session->output_traces = 1; | |
2113 | } else { | |
2114 | session->output_traces = 0; | |
2115 | DBG2("Session %s created with no output", session->name); | |
2f77fc4b DG |
2116 | } |
2117 | ||
2118 | session->consumer->enabled = 1; | |
2119 | ||
f73fabfd | 2120 | return LTTNG_OK; |
2f77fc4b DG |
2121 | |
2122 | consumer_error: | |
2123 | session_destroy(session); | |
2124 | session_error: | |
2125 | find_error: | |
2126 | return ret; | |
2127 | } | |
2128 | ||
27babd3a DG |
2129 | /* |
2130 | * Command LTTNG_CREATE_SESSION_SNAPSHOT processed by the client thread. | |
2131 | */ | |
2132 | int cmd_create_session_snapshot(char *name, struct lttng_uri *uris, | |
2133 | size_t nb_uri, lttng_sock_cred *creds) | |
2134 | { | |
2135 | int ret; | |
2136 | struct ltt_session *session; | |
2137 | struct snapshot_output *new_output = NULL; | |
2138 | ||
2139 | assert(name); | |
2140 | assert(creds); | |
2141 | ||
2142 | /* | |
2143 | * Create session in no output mode with URIs set to NULL. The uris we've | |
2144 | * received are for a default snapshot output if one. | |
2145 | */ | |
ecc48a90 | 2146 | ret = cmd_create_session_uri(name, NULL, 0, creds, -1); |
27babd3a DG |
2147 | if (ret != LTTNG_OK) { |
2148 | goto error; | |
2149 | } | |
2150 | ||
2151 | /* Get the newly created session pointer back. This should NEVER fail. */ | |
2152 | session = session_find_by_name(name); | |
2153 | assert(session); | |
2154 | ||
2155 | /* Flag session for snapshot mode. */ | |
2156 | session->snapshot_mode = 1; | |
2157 | ||
2158 | /* Skip snapshot output creation if no URI is given. */ | |
2159 | if (nb_uri == 0) { | |
2160 | goto end; | |
2161 | } | |
2162 | ||
2163 | new_output = snapshot_output_alloc(); | |
2164 | if (!new_output) { | |
2165 | ret = LTTNG_ERR_NOMEM; | |
2166 | goto error_snapshot_alloc; | |
2167 | } | |
2168 | ||
2169 | ret = snapshot_output_init_with_uri(DEFAULT_SNAPSHOT_MAX_SIZE, NULL, | |
2170 | uris, nb_uri, session->consumer, new_output, &session->snapshot); | |
2171 | if (ret < 0) { | |
2172 | if (ret == -ENOMEM) { | |
2173 | ret = LTTNG_ERR_NOMEM; | |
2174 | } else { | |
2175 | ret = LTTNG_ERR_INVALID; | |
2176 | } | |
2177 | goto error_snapshot; | |
2178 | } | |
2179 | ||
2180 | rcu_read_lock(); | |
2181 | snapshot_add_output(&session->snapshot, new_output); | |
2182 | rcu_read_unlock(); | |
2183 | ||
2184 | end: | |
2185 | return LTTNG_OK; | |
2186 | ||
2187 | error_snapshot: | |
2188 | snapshot_output_destroy(new_output); | |
2189 | error_snapshot_alloc: | |
2190 | session_destroy(session); | |
2191 | error: | |
2192 | return ret; | |
2193 | } | |
2194 | ||
2f77fc4b DG |
2195 | /* |
2196 | * Command LTTNG_DESTROY_SESSION processed by the client thread. | |
2197 | */ | |
2198 | int cmd_destroy_session(struct ltt_session *session, int wpipe) | |
2199 | { | |
2200 | int ret; | |
2201 | struct ltt_ust_session *usess; | |
2202 | struct ltt_kernel_session *ksess; | |
2203 | ||
2204 | /* Safety net */ | |
2205 | assert(session); | |
2206 | ||
2207 | usess = session->ust_session; | |
2208 | ksess = session->kernel_session; | |
2209 | ||
2210 | /* Clean kernel session teardown */ | |
2211 | kernel_destroy_session(ksess); | |
2212 | ||
2213 | /* UST session teardown */ | |
2214 | if (usess) { | |
2215 | /* Close any relayd session */ | |
2216 | consumer_output_send_destroy_relayd(usess->consumer); | |
2217 | ||
2218 | /* Destroy every UST application related to this session. */ | |
2219 | ret = ust_app_destroy_trace_all(usess); | |
2220 | if (ret) { | |
2221 | ERR("Error in ust_app_destroy_trace_all"); | |
2222 | } | |
2223 | ||
2224 | /* Clean up the rest. */ | |
2225 | trace_ust_destroy_session(usess); | |
2226 | } | |
2227 | ||
2228 | /* | |
2229 | * Must notify the kernel thread here to update it's poll set in order to | |
2230 | * remove the channel(s)' fd just destroyed. | |
2231 | */ | |
2232 | ret = notify_thread_pipe(wpipe); | |
2233 | if (ret < 0) { | |
2234 | PERROR("write kernel poll pipe"); | |
2235 | } | |
2236 | ||
2237 | ret = session_destroy(session); | |
2238 | ||
2239 | return ret; | |
2240 | } | |
2241 | ||
2242 | /* | |
2243 | * Command LTTNG_CALIBRATE processed by the client thread. | |
2244 | */ | |
2245 | int cmd_calibrate(int domain, struct lttng_calibrate *calibrate) | |
2246 | { | |
2247 | int ret; | |
2248 | ||
2249 | switch (domain) { | |
2250 | case LTTNG_DOMAIN_KERNEL: | |
2251 | { | |
2252 | struct lttng_kernel_calibrate kcalibrate; | |
2253 | ||
2e84128e DG |
2254 | switch (calibrate->type) { |
2255 | case LTTNG_CALIBRATE_FUNCTION: | |
2256 | default: | |
2257 | /* Default and only possible calibrate option. */ | |
2258 | kcalibrate.type = LTTNG_KERNEL_CALIBRATE_KRETPROBE; | |
2259 | break; | |
2260 | } | |
2261 | ||
2f77fc4b DG |
2262 | ret = kernel_calibrate(kernel_tracer_fd, &kcalibrate); |
2263 | if (ret < 0) { | |
f73fabfd | 2264 | ret = LTTNG_ERR_KERN_ENABLE_FAIL; |
2f77fc4b DG |
2265 | goto error; |
2266 | } | |
2267 | break; | |
2268 | } | |
2269 | case LTTNG_DOMAIN_UST: | |
2270 | { | |
2271 | struct lttng_ust_calibrate ucalibrate; | |
2272 | ||
2e84128e DG |
2273 | switch (calibrate->type) { |
2274 | case LTTNG_CALIBRATE_FUNCTION: | |
2275 | default: | |
2276 | /* Default and only possible calibrate option. */ | |
2277 | ucalibrate.type = LTTNG_UST_CALIBRATE_TRACEPOINT; | |
2278 | break; | |
2279 | } | |
2280 | ||
2f77fc4b DG |
2281 | ret = ust_app_calibrate_glb(&ucalibrate); |
2282 | if (ret < 0) { | |
f73fabfd | 2283 | ret = LTTNG_ERR_UST_CALIBRATE_FAIL; |
2f77fc4b DG |
2284 | goto error; |
2285 | } | |
2286 | break; | |
2287 | } | |
2288 | default: | |
f73fabfd | 2289 | ret = LTTNG_ERR_UND; |
2f77fc4b DG |
2290 | goto error; |
2291 | } | |
2292 | ||
f73fabfd | 2293 | ret = LTTNG_OK; |
2f77fc4b DG |
2294 | |
2295 | error: | |
2296 | return ret; | |
2297 | } | |
2298 | ||
2299 | /* | |
2300 | * Command LTTNG_REGISTER_CONSUMER processed by the client thread. | |
2301 | */ | |
2302 | int cmd_register_consumer(struct ltt_session *session, int domain, | |
2303 | const char *sock_path, struct consumer_data *cdata) | |
2304 | { | |
2305 | int ret, sock; | |
dd81b457 | 2306 | struct consumer_socket *socket = NULL; |
2f77fc4b DG |
2307 | |
2308 | assert(session); | |
2309 | assert(cdata); | |
2310 | assert(sock_path); | |
2311 | ||
2312 | switch (domain) { | |
2313 | case LTTNG_DOMAIN_KERNEL: | |
2314 | { | |
2315 | struct ltt_kernel_session *ksess = session->kernel_session; | |
2316 | ||
2317 | assert(ksess); | |
2318 | ||
2319 | /* Can't register a consumer if there is already one */ | |
2320 | if (ksess->consumer_fds_sent != 0) { | |
f73fabfd | 2321 | ret = LTTNG_ERR_KERN_CONSUMER_FAIL; |
2f77fc4b DG |
2322 | goto error; |
2323 | } | |
2324 | ||
2325 | sock = lttcomm_connect_unix_sock(sock_path); | |
2326 | if (sock < 0) { | |
f73fabfd | 2327 | ret = LTTNG_ERR_CONNECT_FAIL; |
2f77fc4b DG |
2328 | goto error; |
2329 | } | |
4ce514c4 | 2330 | cdata->cmd_sock = sock; |
2f77fc4b | 2331 | |
4ce514c4 | 2332 | socket = consumer_allocate_socket(&cdata->cmd_sock); |
2f77fc4b | 2333 | if (socket == NULL) { |
f66c074c DG |
2334 | ret = close(sock); |
2335 | if (ret < 0) { | |
2336 | PERROR("close register consumer"); | |
2337 | } | |
4ce514c4 | 2338 | cdata->cmd_sock = -1; |
f73fabfd | 2339 | ret = LTTNG_ERR_FATAL; |
2f77fc4b DG |
2340 | goto error; |
2341 | } | |
2342 | ||
2343 | socket->lock = zmalloc(sizeof(pthread_mutex_t)); | |
2344 | if (socket->lock == NULL) { | |
2345 | PERROR("zmalloc pthread mutex"); | |
f73fabfd | 2346 | ret = LTTNG_ERR_FATAL; |
2f77fc4b DG |
2347 | goto error; |
2348 | } | |
2349 | pthread_mutex_init(socket->lock, NULL); | |
2350 | socket->registered = 1; | |
2351 | ||
2352 | rcu_read_lock(); | |
2353 | consumer_add_socket(socket, ksess->consumer); | |
2354 | rcu_read_unlock(); | |
2355 | ||
2356 | pthread_mutex_lock(&cdata->pid_mutex); | |
2357 | cdata->pid = -1; | |
2358 | pthread_mutex_unlock(&cdata->pid_mutex); | |
2359 | ||
2360 | break; | |
2361 | } | |
2362 | default: | |
2363 | /* TODO: Userspace tracing */ | |
f73fabfd | 2364 | ret = LTTNG_ERR_UND; |
2f77fc4b DG |
2365 | goto error; |
2366 | } | |
2367 | ||
dd81b457 | 2368 | return LTTNG_OK; |
2f77fc4b DG |
2369 | |
2370 | error: | |
dd81b457 DG |
2371 | if (socket) { |
2372 | consumer_destroy_socket(socket); | |
2373 | } | |
2f77fc4b DG |
2374 | return ret; |
2375 | } | |
2376 | ||
2377 | /* | |
2378 | * Command LTTNG_LIST_DOMAINS processed by the client thread. | |
2379 | */ | |
2380 | ssize_t cmd_list_domains(struct ltt_session *session, | |
2381 | struct lttng_domain **domains) | |
2382 | { | |
2383 | int ret, index = 0; | |
2384 | ssize_t nb_dom = 0; | |
fefd409b DG |
2385 | struct agent *agt; |
2386 | struct lttng_ht_iter iter; | |
2f77fc4b DG |
2387 | |
2388 | if (session->kernel_session != NULL) { | |
2389 | DBG3("Listing domains found kernel domain"); | |
2390 | nb_dom++; | |
2391 | } | |
2392 | ||
2393 | if (session->ust_session != NULL) { | |
2394 | DBG3("Listing domains found UST global domain"); | |
2395 | nb_dom++; | |
3c6a091f | 2396 | |
fefd409b DG |
2397 | cds_lfht_for_each_entry(session->ust_session->agents->ht, &iter.iter, |
2398 | agt, node.node) { | |
2399 | if (agt->being_used) { | |
2400 | nb_dom++; | |
2401 | } | |
3c6a091f | 2402 | } |
2f77fc4b DG |
2403 | } |
2404 | ||
fa64dfb4 JG |
2405 | if (!nb_dom) { |
2406 | goto end; | |
2407 | } | |
2408 | ||
2f77fc4b DG |
2409 | *domains = zmalloc(nb_dom * sizeof(struct lttng_domain)); |
2410 | if (*domains == NULL) { | |
f73fabfd | 2411 | ret = LTTNG_ERR_FATAL; |
2f77fc4b DG |
2412 | goto error; |
2413 | } | |
2414 | ||
2415 | if (session->kernel_session != NULL) { | |
2416 | (*domains)[index].type = LTTNG_DOMAIN_KERNEL; | |
2417 | index++; | |
2418 | } | |
2419 | ||
2420 | if (session->ust_session != NULL) { | |
2421 | (*domains)[index].type = LTTNG_DOMAIN_UST; | |
88c5f0d8 | 2422 | (*domains)[index].buf_type = session->ust_session->buffer_type; |
2f77fc4b | 2423 | index++; |
3c6a091f | 2424 | |
fefd409b DG |
2425 | cds_lfht_for_each_entry(session->ust_session->agents->ht, &iter.iter, |
2426 | agt, node.node) { | |
2427 | if (agt->being_used) { | |
2428 | (*domains)[index].type = agt->domain; | |
2429 | (*domains)[index].buf_type = session->ust_session->buffer_type; | |
2430 | index++; | |
2431 | } | |
3c6a091f | 2432 | } |
2f77fc4b | 2433 | } |
fa64dfb4 | 2434 | end: |
2f77fc4b DG |
2435 | return nb_dom; |
2436 | ||
2437 | error: | |
f73fabfd DG |
2438 | /* Return negative value to differentiate return code */ |
2439 | return -ret; | |
2f77fc4b DG |
2440 | } |
2441 | ||
2442 | ||
2443 | /* | |
2444 | * Command LTTNG_LIST_CHANNELS processed by the client thread. | |
2445 | */ | |
2446 | ssize_t cmd_list_channels(int domain, struct ltt_session *session, | |
2447 | struct lttng_channel **channels) | |
2448 | { | |
2449 | int ret; | |
2450 | ssize_t nb_chan = 0; | |
2451 | ||
2452 | switch (domain) { | |
2453 | case LTTNG_DOMAIN_KERNEL: | |
2454 | if (session->kernel_session != NULL) { | |
2455 | nb_chan = session->kernel_session->channel_count; | |
2456 | } | |
2457 | DBG3("Number of kernel channels %zd", nb_chan); | |
c7d620a2 DG |
2458 | if (nb_chan <= 0) { |
2459 | ret = LTTNG_ERR_KERN_CHAN_NOT_FOUND; | |
2460 | } | |
2f77fc4b DG |
2461 | break; |
2462 | case LTTNG_DOMAIN_UST: | |
2463 | if (session->ust_session != NULL) { | |
2464 | nb_chan = lttng_ht_get_count( | |
2465 | session->ust_session->domain_global.channels); | |
2466 | } | |
2467 | DBG3("Number of UST global channels %zd", nb_chan); | |
ade7ce52 | 2468 | if (nb_chan < 0) { |
c7d620a2 | 2469 | ret = LTTNG_ERR_UST_CHAN_NOT_FOUND; |
ade7ce52 | 2470 | goto error; |
c7d620a2 | 2471 | } |
2f77fc4b DG |
2472 | break; |
2473 | default: | |
f73fabfd | 2474 | ret = LTTNG_ERR_UND; |
2f77fc4b DG |
2475 | goto error; |
2476 | } | |
2477 | ||
2478 | if (nb_chan > 0) { | |
2479 | *channels = zmalloc(nb_chan * sizeof(struct lttng_channel)); | |
2480 | if (*channels == NULL) { | |
f73fabfd | 2481 | ret = LTTNG_ERR_FATAL; |
2f77fc4b DG |
2482 | goto error; |
2483 | } | |
2484 | ||
2485 | list_lttng_channels(domain, session, *channels); | |
2f77fc4b DG |
2486 | } |
2487 | ||
2488 | return nb_chan; | |
2489 | ||
2490 | error: | |
f73fabfd DG |
2491 | /* Return negative value to differentiate return code */ |
2492 | return -ret; | |
2f77fc4b DG |
2493 | } |
2494 | ||
2495 | /* | |
2496 | * Command LTTNG_LIST_EVENTS processed by the client thread. | |
2497 | */ | |
2498 | ssize_t cmd_list_events(int domain, struct ltt_session *session, | |
2499 | char *channel_name, struct lttng_event **events) | |
2500 | { | |
2501 | int ret = 0; | |
2502 | ssize_t nb_event = 0; | |
2503 | ||
2504 | switch (domain) { | |
2505 | case LTTNG_DOMAIN_KERNEL: | |
2506 | if (session->kernel_session != NULL) { | |
2507 | nb_event = list_lttng_kernel_events(channel_name, | |
2508 | session->kernel_session, events); | |
2509 | } | |
2510 | break; | |
2511 | case LTTNG_DOMAIN_UST: | |
2512 | { | |
2513 | if (session->ust_session != NULL) { | |
2514 | nb_event = list_lttng_ust_global_events(channel_name, | |
2515 | &session->ust_session->domain_global, events); | |
2516 | } | |
2517 | break; | |
2518 | } | |
5cdb6027 | 2519 | case LTTNG_DOMAIN_LOG4J: |
3c6a091f | 2520 | case LTTNG_DOMAIN_JUL: |
0e115563 | 2521 | case LTTNG_DOMAIN_PYTHON: |
3c6a091f | 2522 | if (session->ust_session) { |
fefd409b DG |
2523 | struct lttng_ht_iter iter; |
2524 | struct agent *agt; | |
2525 | ||
2526 | cds_lfht_for_each_entry(session->ust_session->agents->ht, | |
2527 | &iter.iter, agt, node.node) { | |
2528 | nb_event = list_lttng_agent_events(agt, events); | |
2529 | } | |
3c6a091f DG |
2530 | } |
2531 | break; | |
2f77fc4b | 2532 | default: |
f73fabfd | 2533 | ret = LTTNG_ERR_UND; |
2f77fc4b DG |
2534 | goto error; |
2535 | } | |
2536 | ||
f73fabfd | 2537 | return nb_event; |
2f77fc4b DG |
2538 | |
2539 | error: | |
f73fabfd DG |
2540 | /* Return negative value to differentiate return code */ |
2541 | return -ret; | |
2f77fc4b DG |
2542 | } |
2543 | ||
2544 | /* | |
2545 | * Using the session list, filled a lttng_session array to send back to the | |
2546 | * client for session listing. | |
2547 | * | |
2548 | * The session list lock MUST be acquired before calling this function. Use | |
2549 | * session_lock_list() and session_unlock_list(). | |
2550 | */ | |
2551 | void cmd_list_lttng_sessions(struct lttng_session *sessions, uid_t uid, | |
2552 | gid_t gid) | |
2553 | { | |
2554 | int ret; | |
2555 | unsigned int i = 0; | |
2556 | struct ltt_session *session; | |
2557 | struct ltt_session_list *list = session_get_list(); | |
2558 | ||
2559 | DBG("Getting all available session for UID %d GID %d", | |
2560 | uid, gid); | |
2561 | /* | |
2562 | * Iterate over session list and append data after the control struct in | |
2563 | * the buffer. | |
2564 | */ | |
2565 | cds_list_for_each_entry(session, &list->head, list) { | |
2566 | /* | |
2567 | * Only list the sessions the user can control. | |
2568 | */ | |
2569 | if (!session_access_ok(session, uid, gid)) { | |
2570 | continue; | |
2571 | } | |
2572 | ||
2573 | struct ltt_kernel_session *ksess = session->kernel_session; | |
2574 | struct ltt_ust_session *usess = session->ust_session; | |
2575 | ||
2576 | if (session->consumer->type == CONSUMER_DST_NET || | |
2577 | (ksess && ksess->consumer->type == CONSUMER_DST_NET) || | |
2578 | (usess && usess->consumer->type == CONSUMER_DST_NET)) { | |
2579 | ret = build_network_session_path(sessions[i].path, | |
dec56f6c | 2580 | sizeof(sessions[i].path), session); |
2f77fc4b | 2581 | } else { |
dec56f6c | 2582 | ret = snprintf(sessions[i].path, sizeof(sessions[i].path), "%s", |
2f77fc4b DG |
2583 | session->consumer->dst.trace_path); |
2584 | } | |
2585 | if (ret < 0) { | |
2586 | PERROR("snprintf session path"); | |
2587 | continue; | |
2588 | } | |
2589 | ||
2590 | strncpy(sessions[i].name, session->name, NAME_MAX); | |
2591 | sessions[i].name[NAME_MAX - 1] = '\0'; | |
8382cf6f | 2592 | sessions[i].enabled = session->active; |
2cbf8fed | 2593 | sessions[i].snapshot_mode = session->snapshot_mode; |
8960e9cd | 2594 | sessions[i].live_timer_interval = session->live_timer; |
2f77fc4b DG |
2595 | i++; |
2596 | } | |
2597 | } | |
2598 | ||
806e2684 | 2599 | /* |
6d805429 | 2600 | * Command LTTNG_DATA_PENDING returning 0 if the data is NOT pending meaning |
d3f14b8a | 2601 | * ready for trace analysis (or any kind of reader) or else 1 for pending data. |
806e2684 | 2602 | */ |
6d805429 | 2603 | int cmd_data_pending(struct ltt_session *session) |
806e2684 DG |
2604 | { |
2605 | int ret; | |
2606 | struct ltt_kernel_session *ksess = session->kernel_session; | |
2607 | struct ltt_ust_session *usess = session->ust_session; | |
2608 | ||
2609 | assert(session); | |
2610 | ||
2611 | /* Session MUST be stopped to ask for data availability. */ | |
8382cf6f | 2612 | if (session->active) { |
806e2684 DG |
2613 | ret = LTTNG_ERR_SESSION_STARTED; |
2614 | goto error; | |
3a89d11a DG |
2615 | } else { |
2616 | /* | |
2617 | * If stopped, just make sure we've started before else the above call | |
2618 | * will always send that there is data pending. | |
2619 | * | |
2620 | * The consumer assumes that when the data pending command is received, | |
2621 | * the trace has been started before or else no output data is written | |
2622 | * by the streams which is a condition for data pending. So, this is | |
2623 | * *VERY* important that we don't ask the consumer before a start | |
2624 | * trace. | |
2625 | */ | |
8382cf6f | 2626 | if (!session->has_been_started) { |
3a89d11a DG |
2627 | ret = 0; |
2628 | goto error; | |
2629 | } | |
806e2684 DG |
2630 | } |
2631 | ||
2632 | if (ksess && ksess->consumer) { | |
6d805429 DG |
2633 | ret = consumer_is_data_pending(ksess->id, ksess->consumer); |
2634 | if (ret == 1) { | |
806e2684 DG |
2635 | /* Data is still being extracted for the kernel. */ |
2636 | goto error; | |
2637 | } | |
2638 | } | |
2639 | ||
2640 | if (usess && usess->consumer) { | |
6d805429 DG |
2641 | ret = consumer_is_data_pending(usess->id, usess->consumer); |
2642 | if (ret == 1) { | |
806e2684 DG |
2643 | /* Data is still being extracted for the kernel. */ |
2644 | goto error; | |
2645 | } | |
2646 | } | |
2647 | ||
2648 | /* Data is ready to be read by a viewer */ | |
6d805429 | 2649 | ret = 0; |
806e2684 DG |
2650 | |
2651 | error: | |
2652 | return ret; | |
2653 | } | |
2654 | ||
6dc3064a DG |
2655 | /* |
2656 | * Command LTTNG_SNAPSHOT_ADD_OUTPUT from the lttng ctl library. | |
2657 | * | |
2658 | * Return LTTNG_OK on success or else a LTTNG_ERR code. | |
2659 | */ | |
2660 | int cmd_snapshot_add_output(struct ltt_session *session, | |
2661 | struct lttng_snapshot_output *output, uint32_t *id) | |
2662 | { | |
2663 | int ret; | |
2664 | struct snapshot_output *new_output; | |
2665 | ||
2666 | assert(session); | |
2667 | assert(output); | |
2668 | ||
2669 | DBG("Cmd snapshot add output for session %s", session->name); | |
2670 | ||
2671 | /* | |
d3f14b8a MD |
2672 | * Permission denied to create an output if the session is not |
2673 | * set in no output mode. | |
6dc3064a DG |
2674 | */ |
2675 | if (session->output_traces) { | |
2676 | ret = LTTNG_ERR_EPERM; | |
2677 | goto error; | |
2678 | } | |
2679 | ||
2680 | /* Only one output is allowed until we have the "tee" feature. */ | |
2681 | if (session->snapshot.nb_output == 1) { | |
2682 | ret = LTTNG_ERR_SNAPSHOT_OUTPUT_EXIST; | |
2683 | goto error; | |
2684 | } | |
2685 | ||
2686 | new_output = snapshot_output_alloc(); | |
2687 | if (!new_output) { | |
2688 | ret = LTTNG_ERR_NOMEM; | |
2689 | goto error; | |
2690 | } | |
2691 | ||
2692 | ret = snapshot_output_init(output->max_size, output->name, | |
2693 | output->ctrl_url, output->data_url, session->consumer, new_output, | |
2694 | &session->snapshot); | |
2695 | if (ret < 0) { | |
2696 | if (ret == -ENOMEM) { | |
2697 | ret = LTTNG_ERR_NOMEM; | |
2698 | } else { | |
2699 | ret = LTTNG_ERR_INVALID; | |
2700 | } | |
2701 | goto free_error; | |
2702 | } | |
2703 | ||
6dc3064a DG |
2704 | rcu_read_lock(); |
2705 | snapshot_add_output(&session->snapshot, new_output); | |
2706 | if (id) { | |
2707 | *id = new_output->id; | |
2708 | } | |
2709 | rcu_read_unlock(); | |
2710 | ||
2711 | return LTTNG_OK; | |
2712 | ||
2713 | free_error: | |
2714 | snapshot_output_destroy(new_output); | |
2715 | error: | |
2716 | return ret; | |
2717 | } | |
2718 | ||
2719 | /* | |
2720 | * Command LTTNG_SNAPSHOT_DEL_OUTPUT from lib lttng ctl. | |
2721 | * | |
2722 | * Return LTTNG_OK on success or else a LTTNG_ERR code. | |
2723 | */ | |
2724 | int cmd_snapshot_del_output(struct ltt_session *session, | |
2725 | struct lttng_snapshot_output *output) | |
2726 | { | |
2727 | int ret; | |
eb240553 | 2728 | struct snapshot_output *sout = NULL; |
6dc3064a DG |
2729 | |
2730 | assert(session); | |
2731 | assert(output); | |
2732 | ||
6dc3064a DG |
2733 | rcu_read_lock(); |
2734 | ||
2735 | /* | |
d3f14b8a MD |
2736 | * Permission denied to create an output if the session is not |
2737 | * set in no output mode. | |
6dc3064a DG |
2738 | */ |
2739 | if (session->output_traces) { | |
2740 | ret = LTTNG_ERR_EPERM; | |
2741 | goto error; | |
2742 | } | |
2743 | ||
eb240553 DG |
2744 | if (output->id) { |
2745 | DBG("Cmd snapshot del output id %" PRIu32 " for session %s", output->id, | |
2746 | session->name); | |
2747 | sout = snapshot_find_output_by_id(output->id, &session->snapshot); | |
2748 | } else if (*output->name != '\0') { | |
2749 | DBG("Cmd snapshot del output name %s for session %s", output->name, | |
2750 | session->name); | |
2751 | sout = snapshot_find_output_by_name(output->name, &session->snapshot); | |
2752 | } | |
6dc3064a DG |
2753 | if (!sout) { |
2754 | ret = LTTNG_ERR_INVALID; | |
2755 | goto error; | |
2756 | } | |
2757 | ||
2758 | snapshot_delete_output(&session->snapshot, sout); | |
2759 | snapshot_output_destroy(sout); | |
2760 | ret = LTTNG_OK; | |
2761 | ||
2762 | error: | |
2763 | rcu_read_unlock(); | |
2764 | return ret; | |
2765 | } | |
2766 | ||
2767 | /* | |
2768 | * Command LTTNG_SNAPSHOT_LIST_OUTPUT from lib lttng ctl. | |
2769 | * | |
2770 | * If no output is available, outputs is untouched and 0 is returned. | |
2771 | * | |
2772 | * Return the size of the newly allocated outputs or a negative LTTNG_ERR code. | |
2773 | */ | |
2774 | ssize_t cmd_snapshot_list_outputs(struct ltt_session *session, | |
2775 | struct lttng_snapshot_output **outputs) | |
2776 | { | |
2777 | int ret, idx = 0; | |
2778 | struct lttng_snapshot_output *list; | |
2779 | struct lttng_ht_iter iter; | |
2780 | struct snapshot_output *output; | |
2781 | ||
2782 | assert(session); | |
2783 | assert(outputs); | |
2784 | ||
2785 | DBG("Cmd snapshot list outputs for session %s", session->name); | |
2786 | ||
2787 | /* | |
d3f14b8a MD |
2788 | * Permission denied to create an output if the session is not |
2789 | * set in no output mode. | |
6dc3064a DG |
2790 | */ |
2791 | if (session->output_traces) { | |
2792 | ret = LTTNG_ERR_EPERM; | |
2793 | goto error; | |
2794 | } | |
2795 | ||
2796 | if (session->snapshot.nb_output == 0) { | |
2797 | ret = 0; | |
2798 | goto error; | |
2799 | } | |
2800 | ||
2801 | list = zmalloc(session->snapshot.nb_output * sizeof(*list)); | |
2802 | if (!list) { | |
2803 | ret = LTTNG_ERR_NOMEM; | |
2804 | goto error; | |
2805 | } | |
2806 | ||
2807 | /* Copy list from session to the new list object. */ | |
2808 | cds_lfht_for_each_entry(session->snapshot.output_ht->ht, &iter.iter, | |
2809 | output, node.node) { | |
2810 | assert(output->consumer); | |
2811 | list[idx].id = output->id; | |
2812 | list[idx].max_size = output->max_size; | |
2813 | strncpy(list[idx].name, output->name, sizeof(list[idx].name)); | |
2814 | if (output->consumer->type == CONSUMER_DST_LOCAL) { | |
2815 | strncpy(list[idx].ctrl_url, output->consumer->dst.trace_path, | |
2816 | sizeof(list[idx].ctrl_url)); | |
2817 | } else { | |
2818 | /* Control URI. */ | |
2819 | ret = uri_to_str_url(&output->consumer->dst.net.control, | |
2820 | list[idx].ctrl_url, sizeof(list[idx].ctrl_url)); | |
2821 | if (ret < 0) { | |
2822 | ret = LTTNG_ERR_NOMEM; | |
2823 | goto free_error; | |
2824 | } | |
2825 | ||
2826 | /* Data URI. */ | |
2827 | ret = uri_to_str_url(&output->consumer->dst.net.data, | |
2828 | list[idx].data_url, sizeof(list[idx].data_url)); | |
2829 | if (ret < 0) { | |
2830 | ret = LTTNG_ERR_NOMEM; | |
2831 | goto free_error; | |
2832 | } | |
2833 | } | |
2834 | idx++; | |
2835 | } | |
2836 | ||
2837 | *outputs = list; | |
2838 | return session->snapshot.nb_output; | |
2839 | ||
2840 | free_error: | |
2841 | free(list); | |
2842 | error: | |
2843 | return -ret; | |
2844 | } | |
2845 | ||
2846 | /* | |
2847 | * Send relayd sockets from snapshot output to consumer. Ignore request if the | |
2848 | * snapshot output is *not* set with a remote destination. | |
2849 | * | |
a934f4af | 2850 | * Return 0 on success or a LTTNG_ERR code. |
6dc3064a DG |
2851 | */ |
2852 | static int set_relayd_for_snapshot(struct consumer_output *consumer, | |
2853 | struct snapshot_output *snap_output, struct ltt_session *session) | |
2854 | { | |
a934f4af | 2855 | int ret = LTTNG_OK; |
6dc3064a DG |
2856 | struct lttng_ht_iter iter; |
2857 | struct consumer_socket *socket; | |
2858 | ||
2859 | assert(consumer); | |
2860 | assert(snap_output); | |
2861 | assert(session); | |
2862 | ||
2863 | DBG2("Set relayd object from snapshot output"); | |
2864 | ||
2865 | /* Ignore if snapshot consumer output is not network. */ | |
2866 | if (snap_output->consumer->type != CONSUMER_DST_NET) { | |
2867 | goto error; | |
2868 | } | |
2869 | ||
2870 | /* | |
2871 | * For each consumer socket, create and send the relayd object of the | |
2872 | * snapshot output. | |
2873 | */ | |
2874 | rcu_read_lock(); | |
5eecee74 DG |
2875 | cds_lfht_for_each_entry(snap_output->consumer->socks->ht, &iter.iter, |
2876 | socket, node.node) { | |
6dc3064a | 2877 | ret = send_consumer_relayd_sockets(0, session->id, |
d3e2ba59 JD |
2878 | snap_output->consumer, socket, |
2879 | session->name, session->hostname, | |
2880 | session->live_timer); | |
a934f4af | 2881 | if (ret != LTTNG_OK) { |
6dc3064a DG |
2882 | rcu_read_unlock(); |
2883 | goto error; | |
2884 | } | |
2885 | } | |
2886 | rcu_read_unlock(); | |
2887 | ||
2888 | error: | |
2889 | return ret; | |
2890 | } | |
2891 | ||
2892 | /* | |
2893 | * Record a kernel snapshot. | |
2894 | * | |
fac41e72 | 2895 | * Return LTTNG_OK on success or a LTTNG_ERR code. |
6dc3064a DG |
2896 | */ |
2897 | static int record_kernel_snapshot(struct ltt_kernel_session *ksess, | |
5c786ded | 2898 | struct snapshot_output *output, struct ltt_session *session, |
68808f4e | 2899 | int wait, uint64_t max_stream_size) |
6dc3064a DG |
2900 | { |
2901 | int ret; | |
2902 | ||
2903 | assert(ksess); | |
2904 | assert(output); | |
2905 | assert(session); | |
2906 | ||
10a50311 JD |
2907 | /* Get the datetime for the snapshot output directory. */ |
2908 | ret = utils_get_current_time_str("%Y%m%d-%H%M%S", output->datetime, | |
2909 | sizeof(output->datetime)); | |
2910 | if (!ret) { | |
a934f4af | 2911 | ret = LTTNG_ERR_INVALID; |
10a50311 JD |
2912 | goto error; |
2913 | } | |
2914 | ||
af706bb7 DG |
2915 | /* |
2916 | * Copy kernel session sockets so we can communicate with the right | |
2917 | * consumer for the snapshot record command. | |
2918 | */ | |
2919 | ret = consumer_copy_sockets(output->consumer, ksess->consumer); | |
2920 | if (ret < 0) { | |
a934f4af | 2921 | ret = LTTNG_ERR_NOMEM; |
af706bb7 | 2922 | goto error; |
6dc3064a DG |
2923 | } |
2924 | ||
2925 | ret = set_relayd_for_snapshot(ksess->consumer, output, session); | |
a934f4af | 2926 | if (ret != LTTNG_OK) { |
af706bb7 | 2927 | goto error_snapshot; |
6dc3064a DG |
2928 | } |
2929 | ||
68808f4e | 2930 | ret = kernel_snapshot_record(ksess, output, wait, max_stream_size); |
2a06df8d | 2931 | if (ret != LTTNG_OK) { |
af706bb7 | 2932 | goto error_snapshot; |
6dc3064a DG |
2933 | } |
2934 | ||
a934f4af DG |
2935 | ret = LTTNG_OK; |
2936 | ||
af706bb7 DG |
2937 | error_snapshot: |
2938 | /* Clean up copied sockets so this output can use some other later on. */ | |
2939 | consumer_destroy_output_sockets(output->consumer); | |
6dc3064a DG |
2940 | error: |
2941 | return ret; | |
2942 | } | |
2943 | ||
2944 | /* | |
2945 | * Record a UST snapshot. | |
2946 | * | |
a934f4af | 2947 | * Return 0 on success or a LTTNG_ERR error code. |
6dc3064a DG |
2948 | */ |
2949 | static int record_ust_snapshot(struct ltt_ust_session *usess, | |
5c786ded | 2950 | struct snapshot_output *output, struct ltt_session *session, |
68808f4e | 2951 | int wait, uint64_t max_stream_size) |
6dc3064a DG |
2952 | { |
2953 | int ret; | |
2954 | ||
2955 | assert(usess); | |
2956 | assert(output); | |
2957 | assert(session); | |
2958 | ||
10a50311 JD |
2959 | /* Get the datetime for the snapshot output directory. */ |
2960 | ret = utils_get_current_time_str("%Y%m%d-%H%M%S", output->datetime, | |
2961 | sizeof(output->datetime)); | |
2962 | if (!ret) { | |
a934f4af | 2963 | ret = LTTNG_ERR_INVALID; |
10a50311 JD |
2964 | goto error; |
2965 | } | |
2966 | ||
af706bb7 | 2967 | /* |
d3f14b8a | 2968 | * Copy UST session sockets so we can communicate with the right |
af706bb7 DG |
2969 | * consumer for the snapshot record command. |
2970 | */ | |
2971 | ret = consumer_copy_sockets(output->consumer, usess->consumer); | |
2972 | if (ret < 0) { | |
a934f4af | 2973 | ret = LTTNG_ERR_NOMEM; |
af706bb7 | 2974 | goto error; |
6dc3064a DG |
2975 | } |
2976 | ||
2977 | ret = set_relayd_for_snapshot(usess->consumer, output, session); | |
a934f4af | 2978 | if (ret != LTTNG_OK) { |
af706bb7 | 2979 | goto error_snapshot; |
6dc3064a DG |
2980 | } |
2981 | ||
68808f4e | 2982 | ret = ust_app_snapshot_record(usess, output, wait, max_stream_size); |
6dc3064a | 2983 | if (ret < 0) { |
7badf927 DG |
2984 | switch (-ret) { |
2985 | case EINVAL: | |
a934f4af | 2986 | ret = LTTNG_ERR_INVALID; |
7badf927 DG |
2987 | break; |
2988 | case ENODATA: | |
2989 | ret = LTTNG_ERR_SNAPSHOT_NODATA; | |
2990 | break; | |
2991 | default: | |
2992 | ret = LTTNG_ERR_SNAPSHOT_FAIL; | |
2993 | break; | |
5c786ded | 2994 | } |
af706bb7 | 2995 | goto error_snapshot; |
6dc3064a DG |
2996 | } |
2997 | ||
a934f4af DG |
2998 | ret = LTTNG_OK; |
2999 | ||
af706bb7 DG |
3000 | error_snapshot: |
3001 | /* Clean up copied sockets so this output can use some other later on. */ | |
3002 | consumer_destroy_output_sockets(output->consumer); | |
6dc3064a DG |
3003 | error: |
3004 | return ret; | |
3005 | } | |
3006 | ||
68808f4e DG |
3007 | /* |
3008 | * Return the biggest subbuffer size of all channels in the given session. | |
3009 | */ | |
3010 | static uint64_t get_session_max_subbuf_size(struct ltt_session *session) | |
3011 | { | |
3012 | uint64_t max_size = 0; | |
3013 | ||
3014 | assert(session); | |
3015 | ||
3016 | if (session->kernel_session) { | |
3017 | struct ltt_kernel_channel *chan; | |
3018 | struct ltt_kernel_session *ksess = session->kernel_session; | |
3019 | ||
3020 | /* | |
3021 | * For each channel, add to the max size the size of each subbuffer | |
3022 | * multiplied by their sized. | |
3023 | */ | |
3024 | cds_list_for_each_entry(chan, &ksess->channel_list.head, list) { | |
3025 | if (chan->channel->attr.subbuf_size > max_size) { | |
3026 | max_size = chan->channel->attr.subbuf_size; | |
3027 | } | |
3028 | } | |
3029 | } | |
3030 | ||
3031 | if (session->ust_session) { | |
3032 | struct lttng_ht_iter iter; | |
3033 | struct ltt_ust_channel *uchan; | |
3034 | struct ltt_ust_session *usess = session->ust_session; | |
3035 | ||
3036 | cds_lfht_for_each_entry(usess->domain_global.channels->ht, &iter.iter, | |
3037 | uchan, node.node) { | |
3038 | if (uchan->attr.subbuf_size > max_size) { | |
3039 | max_size = uchan->attr.subbuf_size; | |
3040 | } | |
3041 | } | |
3042 | } | |
3043 | ||
3044 | return max_size; | |
3045 | } | |
3046 | ||
5c786ded JD |
3047 | /* |
3048 | * Returns the total number of streams for a session or a negative value | |
3049 | * on error. | |
3050 | */ | |
68808f4e | 3051 | static unsigned int get_session_nb_streams(struct ltt_session *session) |
5c786ded JD |
3052 | { |
3053 | unsigned int total_streams = 0; | |
3054 | ||
3055 | if (session->kernel_session) { | |
3056 | struct ltt_kernel_session *ksess = session->kernel_session; | |
3057 | ||
3058 | total_streams += ksess->stream_count_global; | |
3059 | } | |
3060 | ||
3061 | if (session->ust_session) { | |
3062 | struct ltt_ust_session *usess = session->ust_session; | |
3063 | ||
3064 | total_streams += ust_app_get_nb_stream(usess); | |
3065 | } | |
3066 | ||
3067 | return total_streams; | |
3068 | } | |
3069 | ||
6dc3064a DG |
3070 | /* |
3071 | * Command LTTNG_SNAPSHOT_RECORD from lib lttng ctl. | |
3072 | * | |
3073 | * The wait parameter is ignored so this call always wait for the snapshot to | |
3074 | * complete before returning. | |
3075 | * | |
3076 | * Return LTTNG_OK on success or else a LTTNG_ERR code. | |
3077 | */ | |
3078 | int cmd_snapshot_record(struct ltt_session *session, | |
3079 | struct lttng_snapshot_output *output, int wait) | |
3080 | { | |
3081 | int ret = LTTNG_OK; | |
e1986656 DG |
3082 | unsigned int use_tmp_output = 0; |
3083 | struct snapshot_output tmp_output; | |
1bfe7328 | 3084 | unsigned int nb_streams, snapshot_success = 0; |
68808f4e | 3085 | uint64_t session_max_size = 0, max_stream_size = 0; |
6dc3064a DG |
3086 | |
3087 | assert(session); | |
ba45d9f0 | 3088 | assert(output); |
6dc3064a DG |
3089 | |
3090 | DBG("Cmd snapshot record for session %s", session->name); | |
3091 | ||
3092 | /* | |
d3f14b8a MD |
3093 | * Permission denied to create an output if the session is not |
3094 | * set in no output mode. | |
6dc3064a DG |
3095 | */ |
3096 | if (session->output_traces) { | |
3097 | ret = LTTNG_ERR_EPERM; | |
3098 | goto error; | |
3099 | } | |
3100 | ||
3101 | /* The session needs to be started at least once. */ | |
8382cf6f | 3102 | if (!session->has_been_started) { |
6dc3064a DG |
3103 | ret = LTTNG_ERR_START_SESSION_ONCE; |
3104 | goto error; | |
3105 | } | |
3106 | ||
3107 | /* Use temporary output for the session. */ | |
ba45d9f0 | 3108 | if (*output->ctrl_url != '\0') { |
6dc3064a DG |
3109 | ret = snapshot_output_init(output->max_size, output->name, |
3110 | output->ctrl_url, output->data_url, session->consumer, | |
e1986656 | 3111 | &tmp_output, NULL); |
6dc3064a DG |
3112 | if (ret < 0) { |
3113 | if (ret == -ENOMEM) { | |
3114 | ret = LTTNG_ERR_NOMEM; | |
3115 | } else { | |
3116 | ret = LTTNG_ERR_INVALID; | |
3117 | } | |
3118 | goto error; | |
3119 | } | |
1bfe7328 DG |
3120 | /* Use the global session count for the temporary snapshot. */ |
3121 | tmp_output.nb_snapshot = session->snapshot.nb_snapshot; | |
e1986656 | 3122 | use_tmp_output = 1; |
6dc3064a DG |
3123 | } |
3124 | ||
5c786ded | 3125 | /* |
68808f4e DG |
3126 | * Get the session maximum size for a snapshot meaning it will compute the |
3127 | * size of all streams from all domain. | |
3128 | */ | |
3129 | max_stream_size = get_session_max_subbuf_size(session); | |
3130 | ||
3131 | nb_streams = get_session_nb_streams(session); | |
3132 | if (nb_streams) { | |
3133 | /* | |
3134 | * The maximum size of the snapshot is the number of streams multiplied | |
3135 | * by the biggest subbuf size of all channels in a session which is the | |
3136 | * maximum stream size available for each stream. The session max size | |
3137 | * is now checked against the snapshot max size value given by the user | |
3138 | * and if lower, an error is returned. | |
3139 | */ | |
3140 | session_max_size = max_stream_size * nb_streams; | |
3141 | } | |
3142 | ||
3143 | DBG3("Snapshot max size is %" PRIu64 " for max stream size of %" PRIu64, | |
3144 | session_max_size, max_stream_size); | |
3145 | ||
3146 | /* | |
3147 | * If we use a temporary output, check right away if the max size fits else | |
3148 | * for each output the max size will be checked. | |
5c786ded | 3149 | */ |
68808f4e DG |
3150 | if (use_tmp_output && |
3151 | (tmp_output.max_size != 0 && | |
3152 | tmp_output.max_size < session_max_size)) { | |
3153 | ret = LTTNG_ERR_MAX_SIZE_INVALID; | |
3154 | goto error; | |
3155 | } | |
5c786ded | 3156 | |
6dc3064a DG |
3157 | if (session->kernel_session) { |
3158 | struct ltt_kernel_session *ksess = session->kernel_session; | |
3159 | ||
e1986656 DG |
3160 | if (use_tmp_output) { |
3161 | ret = record_kernel_snapshot(ksess, &tmp_output, session, | |
68808f4e | 3162 | wait, max_stream_size); |
a934f4af | 3163 | if (ret != LTTNG_OK) { |
6dc3064a DG |
3164 | goto error; |
3165 | } | |
1bfe7328 | 3166 | snapshot_success = 1; |
6dc3064a DG |
3167 | } else { |
3168 | struct snapshot_output *sout; | |
3169 | struct lttng_ht_iter iter; | |
3170 | ||
3171 | rcu_read_lock(); | |
3172 | cds_lfht_for_each_entry(session->snapshot.output_ht->ht, | |
3173 | &iter.iter, sout, node.node) { | |
e1986656 DG |
3174 | /* |
3175 | * Make a local copy of the output and assign the possible | |
3176 | * temporary value given by the caller. | |
3177 | */ | |
3178 | memset(&tmp_output, 0, sizeof(tmp_output)); | |
3179 | memcpy(&tmp_output, sout, sizeof(tmp_output)); | |
3180 | ||
3181 | /* Use temporary max size. */ | |
3182 | if (output->max_size != (uint64_t) -1ULL) { | |
3183 | tmp_output.max_size = output->max_size; | |
3184 | } | |
3185 | ||
68808f4e DG |
3186 | if (tmp_output.max_size != 0 && |
3187 | tmp_output.max_size < session_max_size) { | |
3188 | rcu_read_unlock(); | |
3189 | ret = LTTNG_ERR_MAX_SIZE_INVALID; | |
3190 | goto error; | |
3191 | } | |
3192 | ||
e1986656 DG |
3193 | /* Use temporary name. */ |
3194 | if (*output->name != '\0') { | |
3195 | strncpy(tmp_output.name, output->name, | |
3196 | sizeof(tmp_output.name)); | |
3197 | } | |
3198 | ||
1bfe7328 DG |
3199 | tmp_output.nb_snapshot = session->snapshot.nb_snapshot; |
3200 | ||
e1986656 | 3201 | ret = record_kernel_snapshot(ksess, &tmp_output, |
68808f4e | 3202 | session, wait, max_stream_size); |
a934f4af | 3203 | if (ret != LTTNG_OK) { |
6dc3064a DG |
3204 | rcu_read_unlock(); |
3205 | goto error; | |
3206 | } | |
1bfe7328 | 3207 | snapshot_success = 1; |
6dc3064a DG |
3208 | } |
3209 | rcu_read_unlock(); | |
3210 | } | |
3211 | } | |
3212 | ||
3213 | if (session->ust_session) { | |
3214 | struct ltt_ust_session *usess = session->ust_session; | |
3215 | ||
e1986656 DG |
3216 | if (use_tmp_output) { |
3217 | ret = record_ust_snapshot(usess, &tmp_output, session, | |
68808f4e | 3218 | wait, max_stream_size); |
a934f4af | 3219 | if (ret != LTTNG_OK) { |
6dc3064a DG |
3220 | goto error; |
3221 | } | |
1bfe7328 | 3222 | snapshot_success = 1; |
6dc3064a DG |
3223 | } else { |
3224 | struct snapshot_output *sout; | |
3225 | struct lttng_ht_iter iter; | |
3226 | ||
3227 | rcu_read_lock(); | |
3228 | cds_lfht_for_each_entry(session->snapshot.output_ht->ht, | |
3229 | &iter.iter, sout, node.node) { | |
e1986656 DG |
3230 | /* |
3231 | * Make a local copy of the output and assign the possible | |
3232 | * temporary value given by the caller. | |
3233 | */ | |
3234 | memset(&tmp_output, 0, sizeof(tmp_output)); | |
3235 | memcpy(&tmp_output, sout, sizeof(tmp_output)); | |
3236 | ||
e1986656 DG |
3237 | /* Use temporary max size. */ |
3238 | if (output->max_size != (uint64_t) -1ULL) { | |
3239 | tmp_output.max_size = output->max_size; | |
3240 | } | |
3241 | ||
68808f4e DG |
3242 | if (tmp_output.max_size != 0 && |
3243 | tmp_output.max_size < session_max_size) { | |
3244 | rcu_read_unlock(); | |
3245 | ret = LTTNG_ERR_MAX_SIZE_INVALID; | |
3246 | goto error; | |
3247 | } | |
3248 | ||
e1986656 DG |
3249 | /* Use temporary name. */ |
3250 | if (*output->name != '\0') { | |
3251 | strncpy(tmp_output.name, output->name, | |
3252 | sizeof(tmp_output.name)); | |
3253 | } | |
3254 | ||
1bfe7328 DG |
3255 | tmp_output.nb_snapshot = session->snapshot.nb_snapshot; |
3256 | ||
e1986656 | 3257 | ret = record_ust_snapshot(usess, &tmp_output, session, |
68808f4e | 3258 | wait, max_stream_size); |
a934f4af | 3259 | if (ret != LTTNG_OK) { |
6dc3064a DG |
3260 | rcu_read_unlock(); |
3261 | goto error; | |
3262 | } | |
1bfe7328 | 3263 | snapshot_success = 1; |
6dc3064a DG |
3264 | } |
3265 | rcu_read_unlock(); | |
3266 | } | |
3267 | } | |
3268 | ||
1bfe7328 DG |
3269 | if (snapshot_success) { |
3270 | session->snapshot.nb_snapshot++; | |
b67578cb MD |
3271 | } else { |
3272 | ret = LTTNG_ERR_SNAPSHOT_FAIL; | |
1bfe7328 DG |
3273 | } |
3274 | ||
6dc3064a | 3275 | error: |
6dc3064a DG |
3276 | return ret; |
3277 | } | |
3278 | ||
2f77fc4b DG |
3279 | /* |
3280 | * Init command subsystem. | |
3281 | */ | |
3282 | void cmd_init(void) | |
3283 | { | |
3284 | /* | |
d88aee68 DG |
3285 | * Set network sequence index to 1 for streams to match a relayd |
3286 | * socket on the consumer side. | |
2f77fc4b | 3287 | */ |
d88aee68 DG |
3288 | pthread_mutex_lock(&relayd_net_seq_idx_lock); |
3289 | relayd_net_seq_idx = 1; | |
3290 | pthread_mutex_unlock(&relayd_net_seq_idx_lock); | |
2f77fc4b DG |
3291 | |
3292 | DBG("Command subsystem initialized"); | |
3293 | } |