Fix: Send remove channel to notification thread only when necessary
[lttng-tools.git] / src / bin / lttng-sessiond / trace-kernel.c
CommitLineData
54012638
DG
1/*
2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 *
d14d33bf
AM
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License, version 2 only,
6 * as published by the Free Software Foundation.
54012638
DG
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
d14d33bf
AM
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
54012638
DG
16 */
17
6c1c0768 18#define _LGPL_SOURCE
54012638
DG
19#include <stdio.h>
20#include <stdlib.h>
21#include <string.h>
c363b55d 22#include <unistd.h>
54012638 23
990570ed
DG
24#include <common/common.h>
25#include <common/defaults.h>
1e307fab 26
00e2e675 27#include "consumer.h"
62499ad6 28#include "trace-kernel.h"
e9404c27
JG
29#include "lttng-sessiond.h"
30#include "notification-thread-commands.h"
54012638 31
19e70852 32/*
050349bb 33 * Find the channel name for the given kernel session.
19e70852 34 */
62499ad6 35struct ltt_kernel_channel *trace_kernel_get_channel_by_name(
19e70852
DG
36 char *name, struct ltt_kernel_session *session)
37{
38 struct ltt_kernel_channel *chan;
39
0525e9ae
DG
40 assert(session);
41 assert(name);
19e70852 42
85076754
MD
43 /*
44 * If we receive an empty string for channel name, it means the
45 * default channel name is requested.
46 */
47 if (name[0] == '\0')
48 name = DEFAULT_CHANNEL_NAME;
49
54d01ffb
DG
50 DBG("Trying to find channel %s", name);
51
19e70852
DG
52 cds_list_for_each_entry(chan, &session->channel_list.head, list) {
53 if (strcmp(name, chan->channel->name) == 0) {
54 DBG("Found channel by name %s", name);
55 return chan;
56 }
57 }
58
19e70852
DG
59 return NULL;
60}
61
00a62084
MD
62/*
63 * Find the event for the given channel.
64 */
65struct ltt_kernel_event *trace_kernel_find_event(
66 char *name, struct ltt_kernel_channel *channel,
67 enum lttng_event_type type,
68 struct lttng_filter_bytecode *filter)
69{
70 struct ltt_kernel_event *ev;
71 int found = 0;
72
73 assert(name);
74 assert(channel);
75
76 cds_list_for_each_entry(ev, &channel->events_list.head, list) {
77 if (type != LTTNG_EVENT_ALL && ev->type != type) {
78 continue;
79 }
80 if (strcmp(name, ev->event->name)) {
81 continue;
82 }
83 if ((ev->filter && !filter) || (!ev->filter && filter)) {
84 continue;
85 }
86 if (ev->filter && filter) {
87 if (ev->filter->len != filter->len ||
88 memcmp(ev->filter->data, filter->data,
89 filter->len) != 0) {
90 continue;
91 }
92 }
93 found = 1;
94 break;
95 }
96 if (found) {
97 DBG("Found event %s for channel %s", name,
98 channel->channel->name);
99 return ev;
100 } else {
101 return NULL;
102 }
103}
104
19e70852 105/*
050349bb 106 * Find the event name for the given channel.
19e70852 107 */
62499ad6 108struct ltt_kernel_event *trace_kernel_get_event_by_name(
d0ae4ea8
MD
109 char *name, struct ltt_kernel_channel *channel,
110 enum lttng_event_type type)
19e70852
DG
111{
112 struct ltt_kernel_event *ev;
00a62084 113 int found = 0;
19e70852 114
0525e9ae
DG
115 assert(name);
116 assert(channel);
19e70852
DG
117
118 cds_list_for_each_entry(ev, &channel->events_list.head, list) {
00a62084 119 if (type != LTTNG_EVENT_ALL && ev->type != type) {
d0ae4ea8 120 continue;
19e70852 121 }
00a62084
MD
122 if (strcmp(name, ev->event->name)) {
123 continue;
124 }
125 found = 1;
126 break;
127 }
128 if (found) {
129 DBG("Found event %s for channel %s", name,
130 channel->channel->name);
131 return ev;
132 } else {
133 return NULL;
19e70852 134 }
19e70852
DG
135}
136
54012638 137/*
050349bb 138 * Allocate and initialize a kernel session data structure.
54012638 139 *
050349bb 140 * Return pointer to structure or NULL.
54012638 141 */
dec56f6c 142struct ltt_kernel_session *trace_kernel_create_session(void)
54012638 143{
a4b92340 144 struct ltt_kernel_session *lks = NULL;
54012638
DG
145
146 /* Allocate a new ltt kernel session */
ba7f0ae5 147 lks = zmalloc(sizeof(struct ltt_kernel_session));
54012638 148 if (lks == NULL) {
df0f840b 149 PERROR("create kernel session zmalloc");
a4b92340 150 goto alloc_error;
54012638
DG
151 }
152
153 /* Init data structure */
03550b58
MD
154 lks->fd = -1;
155 lks->metadata_stream_fd = -1;
54012638
DG
156 lks->channel_count = 0;
157 lks->stream_count_global = 0;
158 lks->metadata = NULL;
159 CDS_INIT_LIST_HEAD(&lks->channel_list.head);
160
00e2e675
DG
161 lks->consumer = consumer_create_output(CONSUMER_DST_LOCAL);
162 if (lks->consumer == NULL) {
163 goto error;
164 }
165
54012638
DG
166 return lks;
167
168error:
a4b92340
DG
169 free(lks);
170
171alloc_error:
54012638
DG
172 return NULL;
173}
174
175/*
050349bb 176 * Allocate and initialize a kernel channel data structure.
54012638 177 *
050349bb 178 * Return pointer to structure or NULL.
54012638 179 */
00e2e675 180struct ltt_kernel_channel *trace_kernel_create_channel(
fdd9eb17 181 struct lttng_channel *chan)
54012638 182{
54012638 183 struct ltt_kernel_channel *lkc;
61a5b6b1 184 struct lttng_channel_extended *extended = NULL;
54012638 185
0525e9ae
DG
186 assert(chan);
187
ba7f0ae5 188 lkc = zmalloc(sizeof(struct ltt_kernel_channel));
f3ed775e 189 if (lkc == NULL) {
df0f840b 190 PERROR("ltt_kernel_channel zmalloc");
54012638
DG
191 goto error;
192 }
193
ba7f0ae5 194 lkc->channel = zmalloc(sizeof(struct lttng_channel));
f3ed775e 195 if (lkc->channel == NULL) {
df0f840b 196 PERROR("lttng_channel zmalloc");
e9404c27
JG
197 goto error;
198 }
199
200 extended = zmalloc(sizeof(struct lttng_channel_extended));
201 if (!extended) {
202 PERROR("lttng_channel_channel zmalloc");
f3ed775e
DG
203 goto error;
204 }
205 memcpy(lkc->channel, chan, sizeof(struct lttng_channel));
e9404c27
JG
206 memcpy(extended, chan->attr.extended.ptr, sizeof(struct lttng_channel_extended));
207 lkc->channel->attr.extended.ptr = extended;
208 extended = NULL;
54012638 209
85076754
MD
210 /*
211 * If we receive an empty string for channel name, it means the
212 * default channel name is requested.
213 */
214 if (chan->name[0] == '\0') {
215 strncpy(lkc->channel->name, DEFAULT_CHANNEL_NAME,
216 sizeof(lkc->channel->name));
217 }
bd722d76 218 lkc->channel->name[LTTNG_KERNEL_SYM_NAME_LEN - 1] = '\0';
85076754 219
03550b58 220 lkc->fd = -1;
54012638 221 lkc->stream_count = 0;
cbbbb275 222 lkc->event_count = 0;
d36b8583 223 lkc->enabled = 1;
753873bf 224 lkc->published_to_notification_thread = false;
54012638
DG
225 /* Init linked list */
226 CDS_INIT_LIST_HEAD(&lkc->events_list.head);
227 CDS_INIT_LIST_HEAD(&lkc->stream_list.head);
645328ae 228 CDS_INIT_LIST_HEAD(&lkc->ctx_list);
54012638
DG
229
230 return lkc;
231
232error:
e9404c27
JG
233 if (lkc) {
234 free(lkc->channel);
235 }
236 free(extended);
237 free(lkc);
54012638
DG
238 return NULL;
239}
240
645328ae
DG
241/*
242 * Allocate and init a kernel context object.
243 *
244 * Return the allocated object or NULL on error.
245 */
246struct ltt_kernel_context *trace_kernel_create_context(
247 struct lttng_kernel_context *ctx)
248{
249 struct ltt_kernel_context *kctx;
250
251 kctx = zmalloc(sizeof(*kctx));
252 if (!kctx) {
253 PERROR("zmalloc kernel context");
254 goto error;
255 }
256
257 if (ctx) {
258 memcpy(&kctx->ctx, ctx, sizeof(kctx->ctx));
259 }
260
7b9445b3
DG
261 CDS_INIT_LIST_HEAD(&kctx->list);
262
645328ae
DG
263error:
264 return kctx;
265}
266
54012638 267/*
050349bb 268 * Allocate and initialize a kernel event. Set name and event type.
a969e101 269 * We own filter_expression, and filter.
54012638 270 *
050349bb 271 * Return pointer to structure or NULL.
54012638 272 */
00a62084
MD
273struct ltt_kernel_event *trace_kernel_create_event(struct lttng_event *ev,
274 char *filter_expression, struct lttng_filter_bytecode *filter)
54012638
DG
275{
276 struct ltt_kernel_event *lke;
277 struct lttng_kernel_event *attr;
278
0525e9ae
DG
279 assert(ev);
280
ba7f0ae5
DG
281 lke = zmalloc(sizeof(struct ltt_kernel_event));
282 attr = zmalloc(sizeof(struct lttng_kernel_event));
54012638 283 if (lke == NULL || attr == NULL) {
df0f840b 284 PERROR("kernel event zmalloc");
54012638
DG
285 goto error;
286 }
287
f3ed775e 288 switch (ev->type) {
7d29a247 289 case LTTNG_EVENT_PROBE:
e6ddca71 290 attr->instrumentation = LTTNG_KERNEL_KPROBE;
7d29a247
DG
291 attr->u.kprobe.addr = ev->attr.probe.addr;
292 attr->u.kprobe.offset = ev->attr.probe.offset;
f3ed775e 293 strncpy(attr->u.kprobe.symbol_name,
dbbb3ec5
DG
294 ev->attr.probe.symbol_name, LTTNG_KERNEL_SYM_NAME_LEN);
295 attr->u.kprobe.symbol_name[LTTNG_KERNEL_SYM_NAME_LEN - 1] = '\0';
f3ed775e
DG
296 break;
297 case LTTNG_EVENT_FUNCTION:
8f0d098b
MD
298 attr->instrumentation = LTTNG_KERNEL_KRETPROBE;
299 attr->u.kretprobe.addr = ev->attr.probe.addr;
300 attr->u.kretprobe.offset = ev->attr.probe.offset;
8f0d098b 301 strncpy(attr->u.kretprobe.symbol_name,
dbbb3ec5
DG
302 ev->attr.probe.symbol_name, LTTNG_KERNEL_SYM_NAME_LEN);
303 attr->u.kretprobe.symbol_name[LTTNG_KERNEL_SYM_NAME_LEN - 1] = '\0';
8f0d098b
MD
304 break;
305 case LTTNG_EVENT_FUNCTION_ENTRY:
f3ed775e
DG
306 attr->instrumentation = LTTNG_KERNEL_FUNCTION;
307 strncpy(attr->u.ftrace.symbol_name,
dbbb3ec5
DG
308 ev->attr.ftrace.symbol_name, LTTNG_KERNEL_SYM_NAME_LEN);
309 attr->u.ftrace.symbol_name[LTTNG_KERNEL_SYM_NAME_LEN - 1] = '\0';
f3ed775e 310 break;
e6ddca71
DG
311 case LTTNG_EVENT_TRACEPOINT:
312 attr->instrumentation = LTTNG_KERNEL_TRACEPOINT;
f3ed775e 313 break;
a54bd42d
MD
314 case LTTNG_EVENT_SYSCALL:
315 attr->instrumentation = LTTNG_KERNEL_SYSCALL;
0133c199 316 break;
7a3d1328
MD
317 case LTTNG_EVENT_ALL:
318 attr->instrumentation = LTTNG_KERNEL_ALL;
319 break;
f3ed775e
DG
320 default:
321 ERR("Unknown kernel instrumentation type (%d)", ev->type);
322 goto error;
323 }
324
325 /* Copy event name */
dbbb3ec5
DG
326 strncpy(attr->name, ev->name, LTTNG_KERNEL_SYM_NAME_LEN);
327 attr->name[LTTNG_KERNEL_SYM_NAME_LEN - 1] = '\0';
f3ed775e 328
54012638 329 /* Setting up a kernel event */
03550b58 330 lke->fd = -1;
54012638 331 lke->event = attr;
d36b8583 332 lke->enabled = 1;
00a62084
MD
333 lke->filter_expression = filter_expression;
334 lke->filter = filter;
54012638
DG
335
336 return lke;
337
338error:
a969e101
MD
339 free(filter_expression);
340 free(filter);
a2c0da86
MD
341 free(lke);
342 free(attr);
54012638
DG
343 return NULL;
344}
345
346/*
050349bb 347 * Allocate and initialize a kernel metadata.
54012638 348 *
050349bb 349 * Return pointer to structure or NULL.
54012638 350 */
a4b92340 351struct ltt_kernel_metadata *trace_kernel_create_metadata(void)
54012638 352{
54012638 353 struct ltt_kernel_metadata *lkm;
f3ed775e 354 struct lttng_channel *chan;
54012638 355
ba7f0ae5
DG
356 lkm = zmalloc(sizeof(struct ltt_kernel_metadata));
357 chan = zmalloc(sizeof(struct lttng_channel));
f3ed775e 358 if (lkm == NULL || chan == NULL) {
df0f840b 359 PERROR("kernel metadata zmalloc");
54012638
DG
360 goto error;
361 }
362
363 /* Set default attributes */
f3ed775e 364 chan->attr.overwrite = DEFAULT_CHANNEL_OVERWRITE;
3e230f92 365 chan->attr.subbuf_size = default_get_metadata_subbuf_size();
b389abbe 366 chan->attr.num_subbuf = DEFAULT_METADATA_SUBBUF_NUM;
6bb9e85f
MD
367 chan->attr.switch_timer_interval = DEFAULT_KERNEL_CHANNEL_SWITCH_TIMER;
368 chan->attr.read_timer_interval = DEFAULT_KERNEL_CHANNEL_READ_TIMER;
7d452e12 369 chan->attr.output = DEFAULT_KERNEL_CHANNEL_OUTPUT;
54012638
DG
370
371 /* Init metadata */
03550b58 372 lkm->fd = -1;
f3ed775e 373 lkm->conf = chan;
54012638
DG
374
375 return lkm;
376
377error:
a2c0da86
MD
378 free(lkm);
379 free(chan);
54012638
DG
380 return NULL;
381}
382
383/*
050349bb
DG
384 * Allocate and initialize a kernel stream. The stream is set to ACTIVE_FD by
385 * default.
54012638 386 *
050349bb 387 * Return pointer to structure or NULL.
54012638 388 */
00e2e675
DG
389struct ltt_kernel_stream *trace_kernel_create_stream(const char *name,
390 unsigned int count)
54012638 391{
00e2e675 392 int ret;
54012638
DG
393 struct ltt_kernel_stream *lks;
394
0525e9ae
DG
395 assert(name);
396
ba7f0ae5 397 lks = zmalloc(sizeof(struct ltt_kernel_stream));
54012638 398 if (lks == NULL) {
df0f840b 399 PERROR("kernel stream zmalloc");
54012638
DG
400 goto error;
401 }
402
00e2e675 403 /* Set name */
535b8ff4 404 ret = snprintf(lks->name, sizeof(lks->name), "%s_%u", name, count);
00e2e675
DG
405 if (ret < 0) {
406 PERROR("snprintf stream name");
407 goto error;
408 }
409 lks->name[sizeof(lks->name) - 1] = '\0';
410
54012638 411 /* Init stream */
03550b58 412 lks->fd = -1;
54012638 413 lks->state = 0;
ffe60014 414 lks->cpu = count;
54012638
DG
415
416 return lks;
417
418error:
419 return NULL;
420}
c363b55d 421
050349bb
DG
422/*
423 * Cleanup kernel stream structure.
424 */
62499ad6 425void trace_kernel_destroy_stream(struct ltt_kernel_stream *stream)
c363b55d 426{
0525e9ae
DG
427 assert(stream);
428
33a2b854 429 DBG("[trace] Closing stream fd %d", stream->fd);
c363b55d 430 /* Close kernel fd */
03550b58 431 if (stream->fd >= 0) {
c617c0c6
MD
432 int ret;
433
03550b58
MD
434 ret = close(stream->fd);
435 if (ret) {
436 PERROR("close");
437 }
799e2c4f 438 }
c363b55d
DG
439 /* Remove from stream list */
440 cds_list_del(&stream->list);
f9815039 441
c363b55d
DG
442 free(stream);
443}
444
050349bb
DG
445/*
446 * Cleanup kernel event structure.
447 */
62499ad6 448void trace_kernel_destroy_event(struct ltt_kernel_event *event)
c363b55d 449{
0525e9ae
DG
450 assert(event);
451
87eb4ab8 452 if (event->fd >= 0) {
c617c0c6
MD
453 int ret;
454
87eb4ab8
MD
455 DBG("[trace] Closing event fd %d", event->fd);
456 /* Close kernel fd */
799e2c4f
MD
457 ret = close(event->fd);
458 if (ret) {
459 PERROR("close");
460 }
87eb4ab8
MD
461 } else {
462 DBG("[trace] Tearing down event (no associated fd)");
463 }
c363b55d
DG
464
465 /* Remove from event list */
466 cds_list_del(&event->list);
f9815039 467
00a62084
MD
468 free(event->filter_expression);
469 free(event->filter);
470
f9815039 471 free(event->event);
c363b55d
DG
472 free(event);
473}
474
645328ae
DG
475/*
476 * Cleanup kernel context structure.
477 */
478void trace_kernel_destroy_context(struct ltt_kernel_context *ctx)
479{
480 assert(ctx);
481
482 cds_list_del(&ctx->list);
483 free(ctx);
484}
485
050349bb
DG
486/*
487 * Cleanup kernel channel structure.
488 */
62499ad6 489void trace_kernel_destroy_channel(struct ltt_kernel_channel *channel)
c363b55d 490{
af9737e9
DG
491 struct ltt_kernel_stream *stream, *stmp;
492 struct ltt_kernel_event *event, *etmp;
645328ae 493 struct ltt_kernel_context *ctx, *ctmp;
799e2c4f 494 int ret;
e9404c27 495 enum lttng_error_code status;
c363b55d 496
0525e9ae
DG
497 assert(channel);
498
33a2b854 499 DBG("[trace] Closing channel fd %d", channel->fd);
c363b55d 500 /* Close kernel fd */
03550b58
MD
501 if (channel->fd >= 0) {
502 ret = close(channel->fd);
503 if (ret) {
504 PERROR("close");
505 }
799e2c4f 506 }
c363b55d
DG
507
508 /* For each stream in the channel list */
af9737e9 509 cds_list_for_each_entry_safe(stream, stmp, &channel->stream_list.head, list) {
62499ad6 510 trace_kernel_destroy_stream(stream);
c363b55d
DG
511 }
512
513 /* For each event in the channel list */
af9737e9 514 cds_list_for_each_entry_safe(event, etmp, &channel->events_list.head, list) {
62499ad6 515 trace_kernel_destroy_event(event);
c363b55d
DG
516 }
517
645328ae
DG
518 /* For each context in the channel list */
519 cds_list_for_each_entry_safe(ctx, ctmp, &channel->ctx_list, list) {
520 trace_kernel_destroy_context(ctx);
521 }
522
c363b55d
DG
523 /* Remove from channel list */
524 cds_list_del(&channel->list);
f9815039 525
753873bf
JR
526 if (notification_thread_handle
527 && channel->published_to_notification_thread) {
63aaa3dc
JG
528 status = notification_thread_command_remove_channel(
529 notification_thread_handle,
530 channel->fd, LTTNG_DOMAIN_KERNEL);
531 assert(status == LTTNG_OK);
532 }
e9404c27 533 free(channel->channel->attr.extended.ptr);
f9815039 534 free(channel->channel);
c363b55d
DG
535 free(channel);
536}
537
050349bb
DG
538/*
539 * Cleanup kernel metadata structure.
540 */
62499ad6 541void trace_kernel_destroy_metadata(struct ltt_kernel_metadata *metadata)
c363b55d 542{
0525e9ae
DG
543 assert(metadata);
544
33a2b854 545 DBG("[trace] Closing metadata fd %d", metadata->fd);
c363b55d 546 /* Close kernel fd */
03550b58 547 if (metadata->fd >= 0) {
c617c0c6
MD
548 int ret;
549
03550b58
MD
550 ret = close(metadata->fd);
551 if (ret) {
552 PERROR("close");
553 }
799e2c4f 554 }
c363b55d 555
f9815039 556 free(metadata->conf);
c363b55d
DG
557 free(metadata);
558}
559
050349bb 560/*
62499ad6 561 * Cleanup kernel session structure
36b588ed
MD
562 *
563 * Should *NOT* be called with RCU read-side lock held.
050349bb 564 */
62499ad6 565void trace_kernel_destroy_session(struct ltt_kernel_session *session)
c363b55d 566{
af9737e9 567 struct ltt_kernel_channel *channel, *ctmp;
799e2c4f 568 int ret;
c363b55d 569
0525e9ae
DG
570 assert(session);
571
33a2b854 572 DBG("[trace] Closing session fd %d", session->fd);
c363b55d 573 /* Close kernel fds */
03550b58
MD
574 if (session->fd >= 0) {
575 ret = close(session->fd);
576 if (ret) {
577 PERROR("close");
578 }
799e2c4f 579 }
f9815039 580
03550b58 581 if (session->metadata_stream_fd >= 0) {
70dc1c34 582 DBG("[trace] Closing metadata stream fd %d", session->metadata_stream_fd);
799e2c4f
MD
583 ret = close(session->metadata_stream_fd);
584 if (ret) {
585 PERROR("close");
586 }
70dc1c34 587 }
c363b55d 588
d36b8583 589 if (session->metadata != NULL) {
62499ad6 590 trace_kernel_destroy_metadata(session->metadata);
d36b8583 591 }
c363b55d 592
af9737e9 593 cds_list_for_each_entry_safe(channel, ctmp, &session->channel_list.head, list) {
62499ad6 594 trace_kernel_destroy_channel(channel);
c363b55d
DG
595 }
596
00e2e675 597 /* Wipe consumer output object */
6addfa37 598 consumer_output_put(session->consumer);
00e2e675 599
c363b55d
DG
600 free(session);
601}
This page took 0.077793 seconds and 4 git commands to generate.