Commit | Line | Data |
---|---|---|
b7cdc182 | 1 | /* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only) |
9f36eaed | 2 | * |
886d51a3 | 3 | * lttng-context-pid.c |
9e7e4892 MD |
4 | * |
5 | * LTTng PID context. | |
6 | * | |
886d51a3 | 7 | * Copyright (C) 2009-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com> |
9e7e4892 MD |
8 | */ |
9 | ||
10 | #include <linux/module.h> | |
11 | #include <linux/slab.h> | |
12 | #include <linux/sched.h> | |
2df37e95 | 13 | #include <lttng/events.h> |
24591303 | 14 | #include <ringbuffer/frontend_types.h> |
241ae9a8 | 15 | #include <wrapper/vmalloc.h> |
2df37e95 | 16 | #include <lttng/tracer.h> |
9e7e4892 | 17 | |
f1676205 MD |
18 | static |
19 | size_t pid_get_size(size_t offset) | |
20 | { | |
21 | size_t size = 0; | |
22 | ||
a90917c3 | 23 | size += lib_ring_buffer_align(offset, lttng_alignof(pid_t)); |
f1676205 MD |
24 | size += sizeof(pid_t); |
25 | return size; | |
26 | } | |
27 | ||
9e7e4892 MD |
28 | static |
29 | void pid_record(struct lttng_ctx_field *field, | |
30 | struct lib_ring_buffer_ctx *ctx, | |
a90917c3 | 31 | struct lttng_channel *chan) |
9e7e4892 MD |
32 | { |
33 | pid_t pid; | |
34 | ||
b64bc438 | 35 | pid = task_tgid_nr(current); |
a90917c3 | 36 | lib_ring_buffer_align_ctx(ctx, lttng_alignof(pid)); |
9e7e4892 MD |
37 | chan->ops->event_write(ctx, &pid, sizeof(pid)); |
38 | } | |
39 | ||
f127e61e MD |
40 | static |
41 | void pid_get_value(struct lttng_ctx_field *field, | |
79150a49 | 42 | struct lttng_probe_ctx *lttng_probe_ctx, |
f127e61e MD |
43 | union lttng_ctx_value *value) |
44 | { | |
45 | value->s64 = task_tgid_nr(current); | |
46 | } | |
47 | ||
9e7e4892 MD |
48 | int lttng_add_pid_to_ctx(struct lttng_ctx **ctx) |
49 | { | |
50 | struct lttng_ctx_field *field; | |
9e7e4892 MD |
51 | |
52 | field = lttng_append_context(ctx); | |
53 | if (!field) | |
09fec6b4 | 54 | return -ENOMEM; |
44252f0f MD |
55 | if (lttng_find_context(*ctx, "pid")) { |
56 | lttng_remove_context_field(ctx, field); | |
57 | return -EEXIST; | |
58 | } | |
8070f5c0 MD |
59 | field->event_field.name = "pid"; |
60 | field->event_field.type.atype = atype_integer; | |
ceabb767 MD |
61 | field->event_field.type.u.integer.size = sizeof(pid_t) * CHAR_BIT; |
62 | field->event_field.type.u.integer.alignment = lttng_alignof(pid_t) * CHAR_BIT; | |
63 | field->event_field.type.u.integer.signedness = lttng_is_signed_type(pid_t); | |
64 | field->event_field.type.u.integer.reverse_byte_order = 0; | |
65 | field->event_field.type.u.integer.base = 10; | |
66 | field->event_field.type.u.integer.encoding = lttng_encode_none; | |
f1676205 MD |
67 | field->get_size = pid_get_size; |
68 | field->record = pid_record; | |
f127e61e | 69 | field->get_value = pid_get_value; |
a9dd15da | 70 | lttng_context_update(*ctx); |
263b6c88 | 71 | wrapper_vmalloc_sync_mappings(); |
9e7e4892 MD |
72 | return 0; |
73 | } | |
8070f5c0 | 74 | EXPORT_SYMBOL_GPL(lttng_add_pid_to_ctx); |