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