Add consumer socket object and relayd commands
[lttng-tools.git] / src / bin / lttng-sessiond / trace-kernel.c
1 /*
2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 *
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.
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 *
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.
16 */
17
18 #define _GNU_SOURCE
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <string.h>
22 #include <unistd.h>
23
24 #include <common/common.h>
25 #include <common/defaults.h>
26
27 #include "consumer.h"
28 #include "trace-kernel.h"
29
30 /*
31 * Find the channel name for the given kernel session.
32 */
33 struct ltt_kernel_channel *trace_kernel_get_channel_by_name(
34 char *name, struct ltt_kernel_session *session)
35 {
36 struct ltt_kernel_channel *chan;
37
38 if (session == NULL) {
39 ERR("Undefine session");
40 goto error;
41 }
42
43 DBG("Trying to find channel %s", name);
44
45 cds_list_for_each_entry(chan, &session->channel_list.head, list) {
46 if (strcmp(name, chan->channel->name) == 0) {
47 DBG("Found channel by name %s", name);
48 return chan;
49 }
50 }
51
52 error:
53 return NULL;
54 }
55
56 /*
57 * Find the event name for the given channel.
58 */
59 struct ltt_kernel_event *trace_kernel_get_event_by_name(
60 char *name, struct ltt_kernel_channel *channel)
61 {
62 struct ltt_kernel_event *ev;
63
64 if (channel == NULL) {
65 ERR("Undefine channel");
66 goto error;
67 }
68
69 cds_list_for_each_entry(ev, &channel->events_list.head, list) {
70 if (strcmp(name, ev->event->name) == 0) {
71 DBG("Found event by name %s for channel %s", name,
72 channel->channel->name);
73 return ev;
74 }
75 }
76
77 error:
78 return NULL;
79 }
80
81 /*
82 * Allocate and initialize a kernel session data structure.
83 *
84 * Return pointer to structure or NULL.
85 */
86 struct ltt_kernel_session *trace_kernel_create_session(char *path)
87 {
88 int ret;
89 struct ltt_kernel_session *lks;
90
91 /* Allocate a new ltt kernel session */
92 lks = zmalloc(sizeof(struct ltt_kernel_session));
93 if (lks == NULL) {
94 PERROR("create kernel session zmalloc");
95 goto error;
96 }
97
98 /* Init data structure */
99 lks->fd = -1;
100 lks->metadata_stream_fd = -1;
101 lks->channel_count = 0;
102 lks->stream_count_global = 0;
103 lks->metadata = NULL;
104 CDS_INIT_LIST_HEAD(&lks->channel_list.head);
105
106 /* Create default consumer output object */
107 lks->consumer = consumer_create_output(CONSUMER_DST_LOCAL);
108 if (lks->consumer == NULL) {
109 goto error;
110 }
111
112 /*
113 * The tmp_consumer stays NULL until a set_consumer_uri command is
114 * executed. At this point, the consumer should be nullify until an
115 * enable_consumer command. This assignment is symbolic since we've zmalloc
116 * the struct.
117 */
118 lks->tmp_consumer = NULL;
119
120 /* Use the default consumer output which is the tracing session path. */
121 ret = snprintf(lks->consumer->dst.trace_path, PATH_MAX, "%s/kernel", path);
122 if (ret < 0) {
123 PERROR("snprintf consumer trace path");
124 goto error;
125 }
126
127 /* Set session path */
128 ret = asprintf(&lks->trace_path, "%s/kernel", path);
129 if (ret < 0) {
130 PERROR("asprintf kernel traces path");
131 goto error;
132 }
133
134 return lks;
135
136 error:
137 return NULL;
138 }
139
140 /*
141 * Allocate and initialize a kernel channel data structure.
142 *
143 * Return pointer to structure or NULL.
144 */
145 struct ltt_kernel_channel *trace_kernel_create_channel(
146 struct lttng_channel *chan, char *path)
147 {
148 struct ltt_kernel_channel *lkc;
149
150 lkc = zmalloc(sizeof(struct ltt_kernel_channel));
151 if (lkc == NULL) {
152 PERROR("ltt_kernel_channel zmalloc");
153 goto error;
154 }
155
156 lkc->channel = zmalloc(sizeof(struct lttng_channel));
157 if (lkc->channel == NULL) {
158 PERROR("lttng_channel zmalloc");
159 goto error;
160 }
161 memcpy(lkc->channel, chan, sizeof(struct lttng_channel));
162
163 lkc->fd = -1;
164 lkc->stream_count = 0;
165 lkc->event_count = 0;
166 lkc->enabled = 1;
167 lkc->ctx = NULL;
168 /* Init linked list */
169 CDS_INIT_LIST_HEAD(&lkc->events_list.head);
170 CDS_INIT_LIST_HEAD(&lkc->stream_list.head);
171
172 return lkc;
173
174 error:
175 return NULL;
176 }
177
178 /*
179 * Allocate and initialize a kernel event. Set name and event type.
180 *
181 * Return pointer to structure or NULL.
182 */
183 struct ltt_kernel_event *trace_kernel_create_event(struct lttng_event *ev)
184 {
185 struct ltt_kernel_event *lke;
186 struct lttng_kernel_event *attr;
187
188 lke = zmalloc(sizeof(struct ltt_kernel_event));
189 attr = zmalloc(sizeof(struct lttng_kernel_event));
190 if (lke == NULL || attr == NULL) {
191 PERROR("kernel event zmalloc");
192 goto error;
193 }
194
195 switch (ev->type) {
196 case LTTNG_EVENT_PROBE:
197 attr->instrumentation = LTTNG_KERNEL_KPROBE;
198 attr->u.kprobe.addr = ev->attr.probe.addr;
199 attr->u.kprobe.offset = ev->attr.probe.offset;
200 strncpy(attr->u.kprobe.symbol_name,
201 ev->attr.probe.symbol_name, LTTNG_KERNEL_SYM_NAME_LEN);
202 attr->u.kprobe.symbol_name[LTTNG_KERNEL_SYM_NAME_LEN - 1] = '\0';
203 break;
204 case LTTNG_EVENT_FUNCTION:
205 attr->instrumentation = LTTNG_KERNEL_KRETPROBE;
206 attr->u.kretprobe.addr = ev->attr.probe.addr;
207 attr->u.kretprobe.offset = ev->attr.probe.offset;
208 attr->u.kretprobe.offset = ev->attr.probe.offset;
209 strncpy(attr->u.kretprobe.symbol_name,
210 ev->attr.probe.symbol_name, LTTNG_KERNEL_SYM_NAME_LEN);
211 attr->u.kretprobe.symbol_name[LTTNG_KERNEL_SYM_NAME_LEN - 1] = '\0';
212 break;
213 case LTTNG_EVENT_FUNCTION_ENTRY:
214 attr->instrumentation = LTTNG_KERNEL_FUNCTION;
215 strncpy(attr->u.ftrace.symbol_name,
216 ev->attr.ftrace.symbol_name, LTTNG_KERNEL_SYM_NAME_LEN);
217 attr->u.ftrace.symbol_name[LTTNG_KERNEL_SYM_NAME_LEN - 1] = '\0';
218 break;
219 case LTTNG_EVENT_TRACEPOINT:
220 attr->instrumentation = LTTNG_KERNEL_TRACEPOINT;
221 break;
222 case LTTNG_EVENT_SYSCALL:
223 attr->instrumentation = LTTNG_KERNEL_SYSCALL;
224 break;
225 case LTTNG_EVENT_ALL:
226 attr->instrumentation = LTTNG_KERNEL_ALL;
227 break;
228 default:
229 ERR("Unknown kernel instrumentation type (%d)", ev->type);
230 goto error;
231 }
232
233 /* Copy event name */
234 strncpy(attr->name, ev->name, LTTNG_KERNEL_SYM_NAME_LEN);
235 attr->name[LTTNG_KERNEL_SYM_NAME_LEN - 1] = '\0';
236
237 /* Setting up a kernel event */
238 lke->fd = -1;
239 lke->event = attr;
240 lke->enabled = 1;
241 lke->ctx = NULL;
242
243 return lke;
244
245 error:
246 free(lke);
247 free(attr);
248 return NULL;
249 }
250
251 /*
252 * Allocate and initialize a kernel metadata.
253 *
254 * Return pointer to structure or NULL.
255 */
256 struct ltt_kernel_metadata *trace_kernel_create_metadata(char *path)
257 {
258 struct ltt_kernel_metadata *lkm;
259 struct lttng_channel *chan;
260
261 lkm = zmalloc(sizeof(struct ltt_kernel_metadata));
262 chan = zmalloc(sizeof(struct lttng_channel));
263 if (lkm == NULL || chan == NULL) {
264 PERROR("kernel metadata zmalloc");
265 goto error;
266 }
267
268 /* Set default attributes */
269 chan->attr.overwrite = DEFAULT_CHANNEL_OVERWRITE;
270 chan->attr.subbuf_size = DEFAULT_METADATA_SUBBUF_SIZE;
271 chan->attr.num_subbuf = DEFAULT_METADATA_SUBBUF_NUM;
272 chan->attr.switch_timer_interval = DEFAULT_CHANNEL_SWITCH_TIMER;
273 chan->attr.read_timer_interval = DEFAULT_CHANNEL_READ_TIMER;
274 chan->attr.output = DEFAULT_KERNEL_CHANNEL_OUTPUT;
275
276 /* Init metadata */
277 lkm->fd = -1;
278 lkm->conf = chan;
279
280 return lkm;
281
282 error:
283 free(lkm);
284 free(chan);
285 return NULL;
286 }
287
288 /*
289 * Allocate and initialize a kernel stream. The stream is set to ACTIVE_FD by
290 * default.
291 *
292 * Return pointer to structure or NULL.
293 */
294 struct ltt_kernel_stream *trace_kernel_create_stream(const char *name,
295 unsigned int count)
296 {
297 int ret;
298 struct ltt_kernel_stream *lks;
299
300 lks = zmalloc(sizeof(struct ltt_kernel_stream));
301 if (lks == NULL) {
302 PERROR("kernel stream zmalloc");
303 goto error;
304 }
305
306 /* Set name */
307 ret = snprintf(lks->name, sizeof(lks->name), "%s_%d", name, count);
308 if (ret < 0) {
309 PERROR("snprintf stream name");
310 goto error;
311 }
312 lks->name[sizeof(lks->name) - 1] = '\0';
313
314 /* Init stream */
315 lks->fd = -1;
316 lks->state = 0;
317
318 return lks;
319
320 error:
321 return NULL;
322 }
323
324 /*
325 * Cleanup kernel stream structure.
326 */
327 void trace_kernel_destroy_stream(struct ltt_kernel_stream *stream)
328 {
329 int ret;
330
331 DBG("[trace] Closing stream fd %d", stream->fd);
332 /* Close kernel fd */
333 if (stream->fd >= 0) {
334 ret = close(stream->fd);
335 if (ret) {
336 PERROR("close");
337 }
338 }
339 /* Remove from stream list */
340 cds_list_del(&stream->list);
341
342 free(stream);
343 }
344
345 /*
346 * Cleanup kernel event structure.
347 */
348 void trace_kernel_destroy_event(struct ltt_kernel_event *event)
349 {
350 int ret;
351
352 if (event->fd >= 0) {
353 DBG("[trace] Closing event fd %d", event->fd);
354 /* Close kernel fd */
355 ret = close(event->fd);
356 if (ret) {
357 PERROR("close");
358 }
359 } else {
360 DBG("[trace] Tearing down event (no associated fd)");
361 }
362
363 /* Remove from event list */
364 cds_list_del(&event->list);
365
366 free(event->event);
367 free(event->ctx);
368 free(event);
369 }
370
371 /*
372 * Cleanup kernel channel structure.
373 */
374 void trace_kernel_destroy_channel(struct ltt_kernel_channel *channel)
375 {
376 struct ltt_kernel_stream *stream, *stmp;
377 struct ltt_kernel_event *event, *etmp;
378 int ret;
379
380 DBG("[trace] Closing channel fd %d", channel->fd);
381 /* Close kernel fd */
382 if (channel->fd >= 0) {
383 ret = close(channel->fd);
384 if (ret) {
385 PERROR("close");
386 }
387 }
388
389 /* For each stream in the channel list */
390 cds_list_for_each_entry_safe(stream, stmp, &channel->stream_list.head, list) {
391 trace_kernel_destroy_stream(stream);
392 }
393
394 /* For each event in the channel list */
395 cds_list_for_each_entry_safe(event, etmp, &channel->events_list.head, list) {
396 trace_kernel_destroy_event(event);
397 }
398
399 /* Remove from channel list */
400 cds_list_del(&channel->list);
401
402 free(channel->channel);
403 free(channel->ctx);
404 free(channel);
405 }
406
407 /*
408 * Cleanup kernel metadata structure.
409 */
410 void trace_kernel_destroy_metadata(struct ltt_kernel_metadata *metadata)
411 {
412 int ret;
413
414 DBG("[trace] Closing metadata fd %d", metadata->fd);
415 /* Close kernel fd */
416 if (metadata->fd >= 0) {
417 ret = close(metadata->fd);
418 if (ret) {
419 PERROR("close");
420 }
421 }
422
423 free(metadata->conf);
424 free(metadata);
425 }
426
427 /*
428 * Cleanup kernel session structure
429 */
430 void trace_kernel_destroy_session(struct ltt_kernel_session *session)
431 {
432 struct ltt_kernel_channel *channel, *ctmp;
433 int ret;
434
435 DBG("[trace] Closing session fd %d", session->fd);
436 /* Close kernel fds */
437 if (session->fd >= 0) {
438 ret = close(session->fd);
439 if (ret) {
440 PERROR("close");
441 }
442 }
443
444 if (session->metadata_stream_fd >= 0) {
445 DBG("[trace] Closing metadata stream fd %d", session->metadata_stream_fd);
446 ret = close(session->metadata_stream_fd);
447 if (ret) {
448 PERROR("close");
449 }
450 }
451
452 if (session->metadata != NULL) {
453 trace_kernel_destroy_metadata(session->metadata);
454 }
455
456 cds_list_for_each_entry_safe(channel, ctmp, &session->channel_list.head, list) {
457 trace_kernel_destroy_channel(channel);
458 }
459
460 /* Wipe consumer output object */
461 consumer_destroy_output(session->consumer);
462 consumer_destroy_output(session->tmp_consumer);
463
464 free(session->trace_path);
465 free(session);
466 }
This page took 0.039584 seconds and 5 git commands to generate.