1
2
3
4
5
6
7
8
9
10
11
12
13
14
15#include <linux/errno.h>
16#include <linux/kernel.h>
17#include <linux/mm.h>
18#include <linux/slab.h>
19#include <linux/vmalloc.h>
20#include <linux/err.h>
21#include <linux/kref.h>
22
23#include "include/apparmor.h"
24#include "include/match.h"
25
26#define base_idx(X) ((X) & 0xffffff)
27
28
29
30
31
32
33
34
35
36
37static struct table_header *unpack_table(char *blob, size_t bsize)
38{
39 struct table_header *table = NULL;
40 struct table_header th;
41 size_t tsize;
42
43 if (bsize < sizeof(struct table_header))
44 goto out;
45
46
47
48
49 th.td_id = be16_to_cpu(*(u16 *) (blob)) - 1;
50 th.td_flags = be16_to_cpu(*(u16 *) (blob + 2));
51 th.td_lolen = be32_to_cpu(*(u32 *) (blob + 8));
52 blob += sizeof(struct table_header);
53
54 if (!(th.td_flags == YYTD_DATA16 || th.td_flags == YYTD_DATA32 ||
55 th.td_flags == YYTD_DATA8))
56 goto out;
57
58 tsize = table_size(th.td_lolen, th.td_flags);
59 if (bsize < tsize)
60 goto out;
61
62 table = kvzalloc(tsize);
63 if (table) {
64 *table = th;
65 if (th.td_flags == YYTD_DATA8)
66 UNPACK_ARRAY(table->td_data, blob, th.td_lolen,
67 u8, byte_to_byte);
68 else if (th.td_flags == YYTD_DATA16)
69 UNPACK_ARRAY(table->td_data, blob, th.td_lolen,
70 u16, be16_to_cpu);
71 else if (th.td_flags == YYTD_DATA32)
72 UNPACK_ARRAY(table->td_data, blob, th.td_lolen,
73 u32, be32_to_cpu);
74 else
75 goto fail;
76 }
77
78out:
79
80
81
82 if (is_vmalloc_addr(table))
83 vm_unmap_aliases();
84 return table;
85fail:
86 kvfree(table);
87 return NULL;
88}
89
90
91
92
93
94
95
96
97
98
99
100static int verify_dfa(struct aa_dfa *dfa, int flags)
101{
102 size_t i, state_count, trans_count;
103 int error = -EPROTO;
104
105
106 if (!(dfa->tables[YYTD_ID_DEF] &&
107 dfa->tables[YYTD_ID_BASE] &&
108 dfa->tables[YYTD_ID_NXT] && dfa->tables[YYTD_ID_CHK]))
109 goto out;
110
111
112 state_count = dfa->tables[YYTD_ID_BASE]->td_lolen;
113 if (ACCEPT1_FLAGS(flags)) {
114 if (!dfa->tables[YYTD_ID_ACCEPT])
115 goto out;
116 if (state_count != dfa->tables[YYTD_ID_ACCEPT]->td_lolen)
117 goto out;
118 }
119 if (ACCEPT2_FLAGS(flags)) {
120 if (!dfa->tables[YYTD_ID_ACCEPT2])
121 goto out;
122 if (state_count != dfa->tables[YYTD_ID_ACCEPT2]->td_lolen)
123 goto out;
124 }
125 if (state_count != dfa->tables[YYTD_ID_DEF]->td_lolen)
126 goto out;
127
128
129 trans_count = dfa->tables[YYTD_ID_NXT]->td_lolen;
130 if (trans_count != dfa->tables[YYTD_ID_CHK]->td_lolen)
131 goto out;
132
133
134 if (dfa->tables[YYTD_ID_EC] &&
135 dfa->tables[YYTD_ID_EC]->td_lolen != 256)
136 goto out;
137
138 if (flags & DFA_FLAG_VERIFY_STATES) {
139 for (i = 0; i < state_count; i++) {
140 if (DEFAULT_TABLE(dfa)[i] >= state_count)
141 goto out;
142 if (base_idx(BASE_TABLE(dfa)[i]) + 255 >= trans_count) {
143 printk(KERN_ERR "AppArmor DFA next/check upper "
144 "bounds error\n");
145 goto out;
146 }
147 }
148
149 for (i = 0; i < trans_count; i++) {
150 if (NEXT_TABLE(dfa)[i] >= state_count)
151 goto out;
152 if (CHECK_TABLE(dfa)[i] >= state_count)
153 goto out;
154 }
155 }
156
157 error = 0;
158out:
159 return error;
160}
161
162
163
164
165
166
167
168static void dfa_free(struct aa_dfa *dfa)
169{
170 if (dfa) {
171 int i;
172
173 for (i = 0; i < ARRAY_SIZE(dfa->tables); i++) {
174 kvfree(dfa->tables[i]);
175 dfa->tables[i] = NULL;
176 }
177 kfree(dfa);
178 }
179}
180
181
182
183
184
185void aa_dfa_free_kref(struct kref *kref)
186{
187 struct aa_dfa *dfa = container_of(kref, struct aa_dfa, count);
188 dfa_free(dfa);
189}
190
191
192
193
194
195
196
197
198
199
200
201
202
203struct aa_dfa *aa_dfa_unpack(void *blob, size_t size, int flags)
204{
205 int hsize;
206 int error = -ENOMEM;
207 char *data = blob;
208 struct table_header *table = NULL;
209 struct aa_dfa *dfa = kzalloc(sizeof(struct aa_dfa), GFP_KERNEL);
210 if (!dfa)
211 goto fail;
212
213 kref_init(&dfa->count);
214
215 error = -EPROTO;
216
217
218 if (size < sizeof(struct table_set_header))
219 goto fail;
220
221 if (ntohl(*(u32 *) data) != YYTH_MAGIC)
222 goto fail;
223
224 hsize = ntohl(*(u32 *) (data + 4));
225 if (size < hsize)
226 goto fail;
227
228 dfa->flags = ntohs(*(u16 *) (data + 12));
229 data += hsize;
230 size -= hsize;
231
232 while (size > 0) {
233 table = unpack_table(data, size);
234 if (!table)
235 goto fail;
236
237 switch (table->td_id) {
238 case YYTD_ID_ACCEPT:
239 if (!(table->td_flags & ACCEPT1_FLAGS(flags)))
240 goto fail;
241 break;
242 case YYTD_ID_ACCEPT2:
243 if (!(table->td_flags & ACCEPT2_FLAGS(flags)))
244 goto fail;
245 break;
246 case YYTD_ID_BASE:
247 if (table->td_flags != YYTD_DATA32)
248 goto fail;
249 break;
250 case YYTD_ID_DEF:
251 case YYTD_ID_NXT:
252 case YYTD_ID_CHK:
253 if (table->td_flags != YYTD_DATA16)
254 goto fail;
255 break;
256 case YYTD_ID_EC:
257 if (table->td_flags != YYTD_DATA8)
258 goto fail;
259 break;
260 default:
261 goto fail;
262 }
263
264 if (dfa->tables[table->td_id])
265 goto fail;
266 dfa->tables[table->td_id] = table;
267 data += table_size(table->td_lolen, table->td_flags);
268 size -= table_size(table->td_lolen, table->td_flags);
269 table = NULL;
270 }
271
272 error = verify_dfa(dfa, flags);
273 if (error)
274 goto fail;
275
276 return dfa;
277
278fail:
279 kvfree(table);
280 dfa_free(dfa);
281 return ERR_PTR(error);
282}
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300unsigned int aa_dfa_match_len(struct aa_dfa *dfa, unsigned int start,
301 const char *str, int len)
302{
303 u16 *def = DEFAULT_TABLE(dfa);
304 u32 *base = BASE_TABLE(dfa);
305 u16 *next = NEXT_TABLE(dfa);
306 u16 *check = CHECK_TABLE(dfa);
307 unsigned int state = start, pos;
308
309 if (state == 0)
310 return 0;
311
312
313 if (dfa->tables[YYTD_ID_EC]) {
314
315 u8 *equiv = EQUIV_TABLE(dfa);
316
317 for (; len; len--) {
318 pos = base_idx(base[state]) + equiv[(u8) *str++];
319 if (check[pos] == state)
320 state = next[pos];
321 else
322 state = def[state];
323 }
324 } else {
325
326 for (; len; len--) {
327 pos = base_idx(base[state]) + (u8) *str++;
328 if (check[pos] == state)
329 state = next[pos];
330 else
331 state = def[state];
332 }
333 }
334
335 return state;
336}
337
338
339
340
341
342
343
344
345
346
347
348
349
350unsigned int aa_dfa_match(struct aa_dfa *dfa, unsigned int start,
351 const char *str)
352{
353 u16 *def = DEFAULT_TABLE(dfa);
354 u32 *base = BASE_TABLE(dfa);
355 u16 *next = NEXT_TABLE(dfa);
356 u16 *check = CHECK_TABLE(dfa);
357 unsigned int state = start, pos;
358
359 if (state == 0)
360 return 0;
361
362
363 if (dfa->tables[YYTD_ID_EC]) {
364
365 u8 *equiv = EQUIV_TABLE(dfa);
366
367 while (*str) {
368 pos = base_idx(base[state]) + equiv[(u8) *str++];
369 if (check[pos] == state)
370 state = next[pos];
371 else
372 state = def[state];
373 }
374 } else {
375
376 while (*str) {
377 pos = base_idx(base[state]) + (u8) *str++;
378 if (check[pos] == state)
379 state = next[pos];
380 else
381 state = def[state];
382 }
383 }
384
385 return state;
386}
387
388
389
390
391
392
393
394
395
396
397
398unsigned int aa_dfa_next(struct aa_dfa *dfa, unsigned int state,
399 const char c)
400{
401 u16 *def = DEFAULT_TABLE(dfa);
402 u32 *base = BASE_TABLE(dfa);
403 u16 *next = NEXT_TABLE(dfa);
404 u16 *check = CHECK_TABLE(dfa);
405 unsigned int pos;
406
407
408 if (dfa->tables[YYTD_ID_EC]) {
409
410 u8 *equiv = EQUIV_TABLE(dfa);
411
412
413 pos = base_idx(base[state]) + equiv[(u8) c];
414 if (check[pos] == state)
415 state = next[pos];
416 else
417 state = def[state];
418 } else {
419
420 pos = base_idx(base[state]) + (u8) c;
421 if (check[pos] == state)
422 state = next[pos];
423 else
424 state = def[state];
425 }
426
427 return state;
428}
429