Refactoring: Channel structures
[lttng-ust.git] / liblttng-ust / lttng-context-ip.c
... / ...
CommitLineData
1/*
2 * SPDX-License-Identifier: LGPL-2.1-only
3 *
4 * Copyright (C) 2009-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 *
6 * LTTng UST Instruction Pointer Context.
7 */
8
9#define _LGPL_SOURCE
10#include <stddef.h>
11#include <sys/types.h>
12#include <unistd.h>
13#include <lttng/ust-events.h>
14#include <lttng/ust-tracer.h>
15#include <lttng/ringbuffer-context.h>
16
17#include "context-internal.h"
18
19static
20size_t ip_get_size(struct lttng_ust_ctx_field *field, size_t offset)
21{
22 size_t size = 0;
23
24 size += lib_ring_buffer_align(offset, lttng_alignof(void *));
25 size += sizeof(void *);
26 return size;
27}
28
29static
30void ip_record(struct lttng_ust_ctx_field *field,
31 struct lttng_ust_lib_ring_buffer_ctx *ctx,
32 struct lttng_ust_channel_buffer *chan)
33{
34 void *ip;
35
36 ip = ctx->ip;
37 lib_ring_buffer_align_ctx(ctx, lttng_alignof(ip));
38 chan->ops->event_write(ctx, &ip, sizeof(ip));
39}
40
41int lttng_add_ip_to_ctx(struct lttng_ust_ctx **ctx)
42{
43 struct lttng_ust_ctx_field *field;
44 struct lttng_ust_type_common *type;
45 int ret;
46
47 type = lttng_ust_create_type_integer(sizeof(void *) * CHAR_BIT,
48 lttng_alignof(void *) * CHAR_BIT,
49 lttng_is_signed_type(void *),
50 BYTE_ORDER, 16);
51 if (!type)
52 return -ENOMEM;
53 field = lttng_append_context(ctx);
54 if (!field) {
55 ret = -ENOMEM;
56 goto error_context;
57 }
58 if (lttng_find_context(*ctx, "ip")) {
59 ret = -EEXIST;
60 goto error_find_context;
61 }
62 field->event_field->name = strdup("ip");
63 if (!field->event_field->name) {
64 ret = -ENOMEM;
65 goto error_name;
66 }
67 field->event_field->type = type;
68 field->get_size = ip_get_size;
69 field->record = ip_record;
70 lttng_context_update(*ctx);
71 return 0;
72
73error_name:
74error_find_context:
75 lttng_remove_context_field(ctx, field);
76error_context:
77 lttng_ust_destroy_type(type);
78 return ret;
79}
This page took 0.023478 seconds and 4 git commands to generate.