API refactoring: introduce probe context
[lttng-ust.git] / src / lib / lttng-ust / lttng-context-cpu-id.c
1 /*
2 * SPDX-License-Identifier: LGPL-2.1-only
3 *
4 * Copyright (C) 2009-2015 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 *
6 * LTTng UST CPU id context.
7 *
8 * Note: threads can be migrated at any point while executing the
9 * tracepoint probe. This means the CPU id field (and filter) is only
10 * statistical. For instance, even though a user might select a
11 * cpu_id==1 filter, there may be few events recorded into the channel
12 * appearing from other CPUs, due to migration.
13 */
14
15 #define _LGPL_SOURCE
16 #include <stddef.h>
17 #include <sys/types.h>
18 #include <unistd.h>
19 #include <limits.h>
20 #include <lttng/ust-events.h>
21 #include <lttng/ust-tracer.h>
22 #include "lib/lttng-ust/getcpu.h"
23 #include <lttng/ust-ringbuffer-context.h>
24
25 #include "context-internal.h"
26
27 static
28 size_t cpu_id_get_size(void *priv __attribute__((unused)),
29 struct lttng_ust_probe_ctx *probe_ctx __attribute__((unused)),
30 size_t offset)
31 {
32 size_t size = 0;
33
34 size += lttng_ust_ring_buffer_align(offset, lttng_ust_rb_alignof(int));
35 size += sizeof(int);
36 return size;
37 }
38
39 static
40 void cpu_id_record(void *priv __attribute__((unused)),
41 struct lttng_ust_probe_ctx *probe_ctx __attribute__((unused)),
42 struct lttng_ust_ring_buffer_ctx *ctx,
43 struct lttng_ust_channel_buffer *chan)
44 {
45 int cpu;
46
47 cpu = lttng_ust_get_cpu();
48 chan->ops->event_write(ctx, &cpu, sizeof(cpu), lttng_ust_rb_alignof(cpu));
49 }
50
51 static
52 void cpu_id_get_value(void *priv __attribute__((unused)),
53 struct lttng_ust_probe_ctx *probe_ctx __attribute__((unused)),
54 struct lttng_ust_ctx_value *value)
55 {
56 value->u.s64 = lttng_ust_get_cpu();
57 }
58
59 static const struct lttng_ust_ctx_field *ctx_field = lttng_ust_static_ctx_field(
60 lttng_ust_static_event_field("cpu_id",
61 lttng_ust_static_type_integer(sizeof(int) * CHAR_BIT,
62 lttng_ust_rb_alignof(int) * CHAR_BIT,
63 lttng_ust_is_signed_type(int),
64 LTTNG_UST_BYTE_ORDER, 10),
65 false, false),
66 cpu_id_get_size,
67 cpu_id_record,
68 cpu_id_get_value,
69 NULL, NULL);
70
71 int lttng_add_cpu_id_to_ctx(struct lttng_ust_ctx **ctx)
72 {
73 int ret;
74
75 if (lttng_find_context(*ctx, ctx_field->event_field->name)) {
76 ret = -EEXIST;
77 goto error_find_context;
78 }
79 ret = lttng_ust_context_append(ctx, ctx_field);
80 if (ret)
81 return ret;
82 return 0;
83
84 error_find_context:
85 return ret;
86 }
This page took 0.030171 seconds and 4 git commands to generate.