apparmor: add missing id bounds check on dfa verification
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / security / apparmor / include / match.h
CommitLineData
e06f75a6
JJ
1/*
2 * AppArmor security module
3 *
4 * This file contains AppArmor policy dfa matching engine definitions.
5 *
6 * Copyright (C) 1998-2008 Novell/SUSE
7 * Copyright 2009-2010 Canonical Ltd.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation, version 2 of the
12 * License.
13 */
14
15#ifndef __AA_MATCH_H
16#define __AA_MATCH_H
17
57cc7215 18#include <linux/kref.h>
e06f75a6
JJ
19#include <linux/workqueue.h>
20
21#define DFA_NOMATCH 0
22#define DFA_START 1
23
24#define DFA_VALID_PERM_MASK 0xffffffff
25#define DFA_VALID_PERM2_MASK 0xffffffff
26
27/**
28 * The format used for transition tables is based on the GNU flex table
29 * file format (--tables-file option; see Table File Format in the flex
30 * info pages and the flex sources for documentation). The magic number
b595076a 31 * used in the header is 0x1B5E783D instead of 0xF13C57B1 though, because
e06f75a6
JJ
32 * the YY_ID_CHK (check) and YY_ID_DEF (default) tables are used
33 * slightly differently (see the apparmor-parser package).
34 */
35
36#define YYTH_MAGIC 0x1B5E783D
37#define YYTH_DEF_RECURSE 0x1 /* DEF Table is recursive */
38
39struct table_set_header {
40 u32 th_magic; /* YYTH_MAGIC */
41 u32 th_hsize;
42 u32 th_ssize;
43 u16 th_flags;
44 char th_version[];
45};
46
47/* The YYTD_ID are one less than flex table mappings. The flex id
48 * has 1 subtracted at table load time, this allows us to directly use the
49 * ID's as indexes.
50 */
51#define YYTD_ID_ACCEPT 0
52#define YYTD_ID_BASE 1
53#define YYTD_ID_CHK 2
54#define YYTD_ID_DEF 3
55#define YYTD_ID_EC 4
56#define YYTD_ID_META 5
57#define YYTD_ID_ACCEPT2 6
58#define YYTD_ID_NXT 7
59#define YYTD_ID_TSIZE 8
efbb2d5b 60#define YYTD_ID_MAX 8
e06f75a6
JJ
61
62#define YYTD_DATA8 1
63#define YYTD_DATA16 2
64#define YYTD_DATA32 4
65#define YYTD_DATA64 8
66
67/* Each ACCEPT2 table gets 6 dedicated flags, YYTD_DATAX define the
68 * first flags
69 */
70#define ACCEPT1_FLAGS(X) ((X) & 0x3f)
71#define ACCEPT2_FLAGS(X) ACCEPT1_FLAGS((X) >> YYTD_ID_ACCEPT2)
72#define TO_ACCEPT1_FLAG(X) ACCEPT1_FLAGS(X)
73#define TO_ACCEPT2_FLAG(X) (ACCEPT1_FLAGS(X) << YYTD_ID_ACCEPT2)
74#define DFA_FLAG_VERIFY_STATES 0x1000
75
76struct table_header {
77 u16 td_id;
78 u16 td_flags;
79 u32 td_hilen;
80 u32 td_lolen;
81 char td_data[];
82};
83
84#define DEFAULT_TABLE(DFA) ((u16 *)((DFA)->tables[YYTD_ID_DEF]->td_data))
85#define BASE_TABLE(DFA) ((u32 *)((DFA)->tables[YYTD_ID_BASE]->td_data))
86#define NEXT_TABLE(DFA) ((u16 *)((DFA)->tables[YYTD_ID_NXT]->td_data))
87#define CHECK_TABLE(DFA) ((u16 *)((DFA)->tables[YYTD_ID_CHK]->td_data))
88#define EQUIV_TABLE(DFA) ((u8 *)((DFA)->tables[YYTD_ID_EC]->td_data))
89#define ACCEPT_TABLE(DFA) ((u32 *)((DFA)->tables[YYTD_ID_ACCEPT]->td_data))
90#define ACCEPT_TABLE2(DFA) ((u32 *)((DFA)->tables[YYTD_ID_ACCEPT2]->td_data))
91
92struct aa_dfa {
93 struct kref count;
94 u16 flags;
95 struct table_header *tables[YYTD_ID_TSIZE];
96};
97
98#define byte_to_byte(X) (X)
99
100#define UNPACK_ARRAY(TABLE, BLOB, LEN, TYPE, NTOHX) \
101 do { \
102 typeof(LEN) __i; \
103 TYPE *__t = (TYPE *) TABLE; \
104 TYPE *__b = (TYPE *) BLOB; \
105 for (__i = 0; __i < LEN; __i++) { \
106 __t[__i] = NTOHX(__b[__i]); \
107 } \
108 } while (0)
109
110static inline size_t table_size(size_t len, size_t el_size)
111{
112 return ALIGN(sizeof(struct table_header) + len * el_size, 8);
113}
114
115struct aa_dfa *aa_dfa_unpack(void *blob, size_t size, int flags);
116unsigned int aa_dfa_match_len(struct aa_dfa *dfa, unsigned int start,
117 const char *str, int len);
118unsigned int aa_dfa_match(struct aa_dfa *dfa, unsigned int start,
119 const char *str);
0fe1212d
JJ
120unsigned int aa_dfa_next(struct aa_dfa *dfa, unsigned int state,
121 const char c);
122
e06f75a6
JJ
123void aa_dfa_free_kref(struct kref *kref);
124
125/**
126 * aa_put_dfa - put a dfa refcount
127 * @dfa: dfa to put refcount (MAYBE NULL)
128 *
129 * Requires: if @dfa != NULL that a valid refcount be held
130 */
131static inline void aa_put_dfa(struct aa_dfa *dfa)
132{
133 if (dfa)
134 kref_put(&dfa->count, aa_dfa_free_kref);
135}
136
137#endif /* __AA_MATCH_H */