Add LTTNG_PACKED ifdefs to validate that it is defined
[lttng-ust.git] / liblttng-ust / filter-bytecode.h
CommitLineData
cd54f6d9
MD
1#ifndef _FILTER_BYTECODE_H
2#define _FILTER_BYTECODE_H
3
4/*
5 * filter-bytecode.h
6 *
7 * LTTng filter bytecode
8 *
7e50015d 9 * Copyright 2012-2016 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
cd54f6d9 10 *
7e50015d
MD
11 * Permission is hereby granted, free of charge, to any person obtaining a copy
12 * of this software and associated documentation files (the "Software"), to deal
13 * in the Software without restriction, including without limitation the rights
14 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15 * copies of the Software, and to permit persons to whom the Software is
16 * furnished to do so, subject to the following conditions:
cd54f6d9 17 *
7e50015d
MD
18 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
cd54f6d9 20 *
7e50015d
MD
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27 * SOFTWARE.
cd54f6d9
MD
28 */
29
30#include <lttng/ust-abi.h>
31
db56acaf
MD
32#ifndef LTTNG_PACKED
33#error "LTTNG_PACKED should be defined"
34#endif
35
cd54f6d9
MD
36/*
37 * offsets are absolute from start of bytecode.
38 */
39
cd54f6d9
MD
40struct field_ref {
41 /* Initially, symbol offset. After link, field offset. */
42 uint16_t offset;
cd54f6d9
MD
43} __attribute__((packed));
44
47e5f13e
MD
45struct get_symbol {
46 /* Symbol offset. */
47 uint16_t offset;
48} LTTNG_PACKED;
49
50struct get_index_u16 {
51 uint16_t index;
52} LTTNG_PACKED;
53
54struct get_index_u64 {
55 uint64_t index;
56} LTTNG_PACKED;
57
cd54f6d9
MD
58struct literal_numeric {
59 int64_t v;
60} __attribute__((packed));
61
da6eed25
MD
62struct literal_double {
63 double v;
64} __attribute__((packed));
65
cd54f6d9
MD
66struct literal_string {
67 char string[0];
68} __attribute__((packed));
69
70enum filter_op {
3151a51d 71 FILTER_OP_UNKNOWN = 0,
cd54f6d9 72
3151a51d 73 FILTER_OP_RETURN = 1,
cd54f6d9
MD
74
75 /* binary */
3151a51d
PP
76 FILTER_OP_MUL = 2,
77 FILTER_OP_DIV = 3,
78 FILTER_OP_MOD = 4,
79 FILTER_OP_PLUS = 5,
80 FILTER_OP_MINUS = 6,
0039e2d8
MD
81 FILTER_OP_BIT_RSHIFT = 7,
82 FILTER_OP_BIT_LSHIFT = 8,
47e5f13e
MD
83 FILTER_OP_BIT_AND = 9,
84 FILTER_OP_BIT_OR = 10,
85 FILTER_OP_BIT_XOR = 11,
226106c0
MD
86
87 /* binary comparators */
3151a51d
PP
88 FILTER_OP_EQ = 12,
89 FILTER_OP_NE = 13,
90 FILTER_OP_GT = 14,
91 FILTER_OP_LT = 15,
92 FILTER_OP_GE = 16,
93 FILTER_OP_LE = 17,
94
95 /* string binary comparator: apply to */
96 FILTER_OP_EQ_STRING = 18,
97 FILTER_OP_NE_STRING = 19,
98 FILTER_OP_GT_STRING = 20,
99 FILTER_OP_LT_STRING = 21,
100 FILTER_OP_GE_STRING = 22,
101 FILTER_OP_LE_STRING = 23,
226106c0
MD
102
103 /* s64 binary comparator */
3151a51d
PP
104 FILTER_OP_EQ_S64 = 24,
105 FILTER_OP_NE_S64 = 25,
106 FILTER_OP_GT_S64 = 26,
107 FILTER_OP_LT_S64 = 27,
108 FILTER_OP_GE_S64 = 28,
109 FILTER_OP_LE_S64 = 29,
226106c0
MD
110
111 /* double binary comparator */
3151a51d
PP
112 FILTER_OP_EQ_DOUBLE = 30,
113 FILTER_OP_NE_DOUBLE = 31,
114 FILTER_OP_GT_DOUBLE = 32,
115 FILTER_OP_LT_DOUBLE = 33,
116 FILTER_OP_GE_DOUBLE = 34,
117 FILTER_OP_LE_DOUBLE = 35,
226106c0 118
dbea82ec 119 /* Mixed S64-double binary comparators */
3151a51d
PP
120 FILTER_OP_EQ_DOUBLE_S64 = 36,
121 FILTER_OP_NE_DOUBLE_S64 = 37,
122 FILTER_OP_GT_DOUBLE_S64 = 38,
123 FILTER_OP_LT_DOUBLE_S64 = 39,
124 FILTER_OP_GE_DOUBLE_S64 = 40,
125 FILTER_OP_LE_DOUBLE_S64 = 41,
126
127 FILTER_OP_EQ_S64_DOUBLE = 42,
128 FILTER_OP_NE_S64_DOUBLE = 43,
129 FILTER_OP_GT_S64_DOUBLE = 44,
130 FILTER_OP_LT_S64_DOUBLE = 45,
131 FILTER_OP_GE_S64_DOUBLE = 46,
132 FILTER_OP_LE_S64_DOUBLE = 47,
dbea82ec 133
cd54f6d9 134 /* unary */
3151a51d
PP
135 FILTER_OP_UNARY_PLUS = 48,
136 FILTER_OP_UNARY_MINUS = 49,
137 FILTER_OP_UNARY_NOT = 50,
138 FILTER_OP_UNARY_PLUS_S64 = 51,
139 FILTER_OP_UNARY_MINUS_S64 = 52,
140 FILTER_OP_UNARY_NOT_S64 = 53,
141 FILTER_OP_UNARY_PLUS_DOUBLE = 54,
142 FILTER_OP_UNARY_MINUS_DOUBLE = 55,
143 FILTER_OP_UNARY_NOT_DOUBLE = 56,
cd54f6d9
MD
144
145 /* logical */
3151a51d
PP
146 FILTER_OP_AND = 57,
147 FILTER_OP_OR = 58,
cd54f6d9 148
77aa5901 149 /* load field ref */
3151a51d
PP
150 FILTER_OP_LOAD_FIELD_REF = 59,
151 FILTER_OP_LOAD_FIELD_REF_STRING = 60,
152 FILTER_OP_LOAD_FIELD_REF_SEQUENCE = 61,
153 FILTER_OP_LOAD_FIELD_REF_S64 = 62,
154 FILTER_OP_LOAD_FIELD_REF_DOUBLE = 63,
2f0145d1 155
77aa5901 156 /* load immediate from operand */
3151a51d
PP
157 FILTER_OP_LOAD_STRING = 64,
158 FILTER_OP_LOAD_S64 = 65,
159 FILTER_OP_LOAD_DOUBLE = 66,
cd54f6d9 160
49905038 161 /* cast */
3151a51d
PP
162 FILTER_OP_CAST_TO_S64 = 67,
163 FILTER_OP_CAST_DOUBLE_TO_S64 = 68,
164 FILTER_OP_CAST_NOP = 69,
49905038 165
77aa5901 166 /* get context ref */
3151a51d
PP
167 FILTER_OP_GET_CONTEXT_REF = 70,
168 FILTER_OP_GET_CONTEXT_REF_STRING = 71,
169 FILTER_OP_GET_CONTEXT_REF_S64 = 72,
170 FILTER_OP_GET_CONTEXT_REF_DOUBLE = 73,
171
172 /* load userspace field ref */
173 FILTER_OP_LOAD_FIELD_REF_USER_STRING = 74,
174 FILTER_OP_LOAD_FIELD_REF_USER_SEQUENCE = 75,
175
176 /*
177 * load immediate star globbing pattern (literal string)
178 * from immediate
179 */
180 FILTER_OP_LOAD_STAR_GLOB_STRING = 76,
181
182 /* globbing pattern binary operator: apply to */
183 FILTER_OP_EQ_STAR_GLOB_STRING = 77,
184 FILTER_OP_NE_STAR_GLOB_STRING = 78,
77aa5901 185
47e5f13e
MD
186 /*
187 * Instructions for recursive traversal through composed types.
188 */
189 FILTER_OP_GET_CONTEXT_ROOT = 79,
190 FILTER_OP_GET_APP_CONTEXT_ROOT = 80,
191 FILTER_OP_GET_PAYLOAD_ROOT = 81,
192
193 FILTER_OP_GET_SYMBOL = 82,
194 FILTER_OP_GET_SYMBOL_FIELD = 83,
195 FILTER_OP_GET_INDEX_U16 = 84,
196 FILTER_OP_GET_INDEX_U64 = 85,
197
198 FILTER_OP_LOAD_FIELD = 86,
199 FILTER_OP_LOAD_FIELD_S8 = 87,
200 FILTER_OP_LOAD_FIELD_S16 = 88,
201 FILTER_OP_LOAD_FIELD_S32 = 89,
202 FILTER_OP_LOAD_FIELD_S64 = 90,
203 FILTER_OP_LOAD_FIELD_U8 = 91,
204 FILTER_OP_LOAD_FIELD_U16 = 92,
205 FILTER_OP_LOAD_FIELD_U32 = 93,
206 FILTER_OP_LOAD_FIELD_U64 = 94,
207 FILTER_OP_LOAD_FIELD_STRING = 95,
208 FILTER_OP_LOAD_FIELD_SEQUENCE = 96,
209 FILTER_OP_LOAD_FIELD_DOUBLE = 97,
210
0039e2d8
MD
211 FILTER_OP_UNARY_BIT_NOT = 98,
212
93c591bb
MD
213 FILTER_OP_RETURN_S64 = 99,
214
cd54f6d9
MD
215 NR_FILTER_OPS,
216};
217
218typedef uint8_t filter_opcode_t;
219
220struct load_op {
221 filter_opcode_t op;
cd54f6d9
MD
222 char data[0];
223 /* data to load. Size known by enum filter_opcode and null-term char. */
224} __attribute__((packed));
225
226struct binary_op {
227 filter_opcode_t op;
228} __attribute__((packed));
229
230struct unary_op {
231 filter_opcode_t op;
cd54f6d9
MD
232} __attribute__((packed));
233
234/* skip_offset is absolute from start of bytecode */
235struct logical_op {
236 filter_opcode_t op;
237 uint16_t skip_offset; /* bytecode insn, if skip second test */
238} __attribute__((packed));
239
49905038
MD
240struct cast_op {
241 filter_opcode_t op;
49905038
MD
242} __attribute__((packed));
243
cd54f6d9
MD
244struct return_op {
245 filter_opcode_t op;
246} __attribute__((packed));
247
248#endif /* _FILTER_BYTECODE_H */
This page took 0.037318 seconds and 4 git commands to generate.