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