Add kernel namespace contexts
[lttng-tools.git] / src / common / lttng-kernel.h
CommitLineData
93128a92
DG
1/*
2 * Copyright (C) 2011 - Julien Desfossez <julien.desfossez@polymtl.ca>
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 * David Goulet <david.goulet@polymtl.ca>
5 *
d14d33bf
AM
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License, version 2 only,
8 * as published by the Free Software Foundation.
93128a92 9 *
d14d33bf
AM
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
93128a92 14 *
d14d33bf
AM
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
93128a92
DG
18 */
19
20#ifndef _LTTNG_KERNEL_H
21#define _LTTNG_KERNEL_H
22
e848fc76 23#include <stdint.h>
113373e4 24#include <common/macros.h>
0ef03255
FD
25#include <lttng/constant.h>
26#include <lttng/event.h>
e848fc76 27
dbbb3ec5 28#define LTTNG_KERNEL_SYM_NAME_LEN 256
0ef03255 29#define LTTNG_KERNEL_MAX_UPROBE_NUM 32
9cb98350 30
7d29a247
DG
31/*
32 * LTTng DebugFS ABI structures.
33 *
34 * This is the kernel ABI copied from lttng-modules tree.
35 */
36
9cb98350 37enum lttng_kernel_instrumentation {
5f822d0a 38 LTTNG_KERNEL_ALL = -1, /* Used within lttng-tools */
e6ddca71
DG
39 LTTNG_KERNEL_TRACEPOINT = 0,
40 LTTNG_KERNEL_KPROBE = 1,
41 LTTNG_KERNEL_FUNCTION = 2,
8f0d098b 42 LTTNG_KERNEL_KRETPROBE = 3,
0133c199 43 LTTNG_KERNEL_NOOP = 4, /* not hooked */
a54bd42d 44 LTTNG_KERNEL_SYSCALL = 5,
1ab8c2ad 45 LTTNG_KERNEL_UPROBE = 6,
e6ddca71
DG
46};
47
7d29a247
DG
48enum lttng_kernel_context_type {
49 LTTNG_KERNEL_CONTEXT_PID = 0,
aa3514e9 50 LTTNG_KERNEL_CONTEXT_PERF_CPU_COUNTER = 1,
9197c5c4 51 LTTNG_KERNEL_CONTEXT_PROCNAME = 2,
7d29a247
DG
52 LTTNG_KERNEL_CONTEXT_PRIO = 3,
53 LTTNG_KERNEL_CONTEXT_NICE = 4,
54 LTTNG_KERNEL_CONTEXT_VPID = 5,
55 LTTNG_KERNEL_CONTEXT_TID = 6,
56 LTTNG_KERNEL_CONTEXT_VTID = 7,
57 LTTNG_KERNEL_CONTEXT_PPID = 8,
58 LTTNG_KERNEL_CONTEXT_VPPID = 9,
54773d68 59 LTTNG_KERNEL_CONTEXT_HOSTNAME = 10,
33e801a9 60 LTTNG_KERNEL_CONTEXT_CPU_ID = 11,
1ae5e83e
JD
61 LTTNG_KERNEL_CONTEXT_INTERRUPTIBLE = 12,
62 LTTNG_KERNEL_CONTEXT_PREEMPTIBLE = 13,
63 LTTNG_KERNEL_CONTEXT_NEED_RESCHEDULE = 14,
64 LTTNG_KERNEL_CONTEXT_MIGRATABLE = 15,
373148e9
FG
65 LTTNG_KERNEL_CONTEXT_CALLSTACK_KERNEL = 16,
66 LTTNG_KERNEL_CONTEXT_CALLSTACK_USER = 17,
2b020dc8
MJ
67 LTTNG_KERNEL_CONTEXT_CGROUP_NS = 18,
68 LTTNG_KERNEL_CONTEXT_IPC_NS = 19,
69 LTTNG_KERNEL_CONTEXT_MNT_NS = 20,
70 LTTNG_KERNEL_CONTEXT_NET_NS = 21,
71 LTTNG_KERNEL_CONTEXT_PID_NS = 22,
72 LTTNG_KERNEL_CONTEXT_USER_NS = 23,
73 LTTNG_KERNEL_CONTEXT_UTS_NS = 24,
7d29a247
DG
74};
75
76/* Perf counter attributes */
77struct lttng_kernel_perf_counter_ctx {
78 uint32_t type;
79 uint64_t config;
dbbb3ec5 80 char name[LTTNG_KERNEL_SYM_NAME_LEN];
113373e4 81} LTTNG_PACKED;
7d29a247
DG
82
83/* Event/Channel context */
dbbb3ec5
DG
84#define LTTNG_KERNEL_CONTEXT_PADDING1 16
85#define LTTNG_KERNEL_CONTEXT_PADDING2 LTTNG_KERNEL_SYM_NAME_LEN + 32
7d29a247
DG
86struct lttng_kernel_context {
87 enum lttng_kernel_context_type ctx;
dbbb3ec5
DG
88 char padding[LTTNG_KERNEL_CONTEXT_PADDING1];
89
7d29a247
DG
90 union {
91 struct lttng_kernel_perf_counter_ctx perf_counter;
dbbb3ec5 92 char padding[LTTNG_KERNEL_CONTEXT_PADDING2];
7d29a247 93 } u;
113373e4 94} LTTNG_PACKED;
9cb98350 95
8f0d098b
MD
96struct lttng_kernel_kretprobe {
97 uint64_t addr;
98
99 uint64_t offset;
dbbb3ec5 100 char symbol_name[LTTNG_KERNEL_SYM_NAME_LEN];
113373e4 101} LTTNG_PACKED;
8f0d098b 102
93128a92 103/*
7d29a247 104 * Either addr is used, or symbol_name and offset.
93128a92 105 */
7d29a247
DG
106struct lttng_kernel_kprobe {
107 uint64_t addr;
108
109 uint64_t offset;
dbbb3ec5 110 char symbol_name[LTTNG_KERNEL_SYM_NAME_LEN];
113373e4 111} LTTNG_PACKED;
9cb98350 112
1ab8c2ad
FD
113struct lttng_kernel_uprobe {
114 int fd;
115} LTTNG_PACKED;
116
117struct lttng_kernel_event_callsite_uprobe {
118 uint64_t offset;
119} LTTNG_PACKED;
120
121struct lttng_kernel_event_callsite {
122 union {
123 struct lttng_kernel_event_callsite_uprobe uprobe;
124 } u;
125} LTTNG_PACKED;
126
f05b5f07 127/* Function tracer */
7d29a247 128struct lttng_kernel_function {
dbbb3ec5 129 char symbol_name[LTTNG_KERNEL_SYM_NAME_LEN];
113373e4 130} LTTNG_PACKED;
93128a92 131
dbbb3ec5
DG
132#define LTTNG_KERNEL_EVENT_PADDING1 16
133#define LTTNG_KERNEL_EVENT_PADDING2 LTTNG_KERNEL_SYM_NAME_LEN + 32
9cb98350 134struct lttng_kernel_event {
dbbb3ec5 135 char name[LTTNG_KERNEL_SYM_NAME_LEN];
9cb98350 136 enum lttng_kernel_instrumentation instrumentation;
dbbb3ec5
DG
137 char padding[LTTNG_KERNEL_EVENT_PADDING1];
138
9cb98350
JD
139 /* Per instrumentation type configuration */
140 union {
8f0d098b 141 struct lttng_kernel_kretprobe kretprobe;
7d29a247 142 struct lttng_kernel_kprobe kprobe;
1ab8c2ad 143 struct lttng_kernel_uprobe uprobe;
7d29a247 144 struct lttng_kernel_function ftrace;
dbbb3ec5 145 char padding[LTTNG_KERNEL_EVENT_PADDING2];
9cb98350 146 } u;
113373e4 147} LTTNG_PACKED;
93128a92 148
9cb98350 149struct lttng_kernel_tracer_version {
a62a6556
MD
150 uint32_t major;
151 uint32_t minor;
9cb98350 152 uint32_t patchlevel;
113373e4 153} LTTNG_PACKED;
93128a92 154
c052142c
MD
155struct lttng_kernel_tracer_abi_version {
156 uint32_t major;
157 uint32_t minor;
158} LTTNG_PACKED;
159
e80c3634 160struct lttng_kernel_syscall_mask {
46820c8b 161 uint32_t len; /* in bits */
e80c3634
MD
162 char mask[];
163} LTTNG_PACKED;
164
4dbc372b
JD
165/*
166 * kernel channel
167 */
168#define LTTNG_KERNEL_CHANNEL_PADDING1 LTTNG_SYMBOL_NAME_LEN + 32
169struct lttng_kernel_channel {
170 uint64_t subbuf_size; /* bytes */
171 uint64_t num_subbuf; /* power of 2 */
172 unsigned int switch_timer_interval; /* usec */
173 unsigned int read_timer_interval; /* usec */
174 enum lttng_event_output output; /* splice, mmap */
175
176 int overwrite; /* 1: overwrite, 0: discard */
177 char padding[LTTNG_KERNEL_CHANNEL_PADDING1];
113373e4 178} LTTNG_PACKED;
d0254c7c 179
00a62084
MD
180#define KERNEL_FILTER_BYTECODE_MAX_LEN 65536
181struct lttng_kernel_filter_bytecode {
182 uint32_t len;
183 uint32_t reloc_offset;
184 uint64_t seqnum;
185 char data[0];
186} LTTNG_PACKED;
187
93128a92 188#endif /* _LTTNG_KERNEL_H */
This page took 0.074876 seconds and 5 git commands to generate.