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