diff options
| -rw-r--r-- | security/selinux/include/security.h | 3 | ||||
| -rw-r--r-- | security/selinux/ss/avtab.c | 192 | ||||
| -rw-r--r-- | security/selinux/ss/avtab.h | 37 | ||||
| -rw-r--r-- | security/selinux/ss/conditional.c | 205 | ||||
| -rw-r--r-- | security/selinux/ss/ebitmap.h | 30 | ||||
| -rw-r--r-- | security/selinux/ss/mls.c | 42 | ||||
| -rw-r--r-- | security/selinux/ss/policydb.c | 47 | ||||
| -rw-r--r-- | security/selinux/ss/policydb.h | 3 | ||||
| -rw-r--r-- | security/selinux/ss/services.c | 76 |
9 files changed, 400 insertions, 235 deletions
diff --git a/security/selinux/include/security.h b/security/selinux/include/security.h index 71c0a19c9753..5f016c98056f 100644 --- a/security/selinux/include/security.h +++ b/security/selinux/include/security.h | |||
| @@ -23,10 +23,11 @@ | |||
| 23 | #define POLICYDB_VERSION_NLCLASS 18 | 23 | #define POLICYDB_VERSION_NLCLASS 18 |
| 24 | #define POLICYDB_VERSION_VALIDATETRANS 19 | 24 | #define POLICYDB_VERSION_VALIDATETRANS 19 |
| 25 | #define POLICYDB_VERSION_MLS 19 | 25 | #define POLICYDB_VERSION_MLS 19 |
| 26 | #define POLICYDB_VERSION_AVTAB 20 | ||
| 26 | 27 | ||
| 27 | /* Range of policy versions we understand*/ | 28 | /* Range of policy versions we understand*/ |
| 28 | #define POLICYDB_VERSION_MIN POLICYDB_VERSION_BASE | 29 | #define POLICYDB_VERSION_MIN POLICYDB_VERSION_BASE |
| 29 | #define POLICYDB_VERSION_MAX POLICYDB_VERSION_MLS | 30 | #define POLICYDB_VERSION_MAX POLICYDB_VERSION_AVTAB |
| 30 | 31 | ||
| 31 | #ifdef CONFIG_SECURITY_SELINUX_BOOTPARAM | 32 | #ifdef CONFIG_SECURITY_SELINUX_BOOTPARAM |
| 32 | extern int selinux_enabled; | 33 | extern int selinux_enabled; |
diff --git a/security/selinux/ss/avtab.c b/security/selinux/ss/avtab.c index f238c034c44e..2e71af67b5d8 100644 --- a/security/selinux/ss/avtab.c +++ b/security/selinux/ss/avtab.c | |||
| @@ -58,6 +58,7 @@ static int avtab_insert(struct avtab *h, struct avtab_key *key, struct avtab_dat | |||
| 58 | { | 58 | { |
| 59 | int hvalue; | 59 | int hvalue; |
| 60 | struct avtab_node *prev, *cur, *newnode; | 60 | struct avtab_node *prev, *cur, *newnode; |
| 61 | u16 specified = key->specified & ~(AVTAB_ENABLED|AVTAB_ENABLED_OLD); | ||
| 61 | 62 | ||
| 62 | if (!h) | 63 | if (!h) |
| 63 | return -EINVAL; | 64 | return -EINVAL; |
| @@ -69,7 +70,7 @@ static int avtab_insert(struct avtab *h, struct avtab_key *key, struct avtab_dat | |||
| 69 | if (key->source_type == cur->key.source_type && | 70 | if (key->source_type == cur->key.source_type && |
| 70 | key->target_type == cur->key.target_type && | 71 | key->target_type == cur->key.target_type && |
| 71 | key->target_class == cur->key.target_class && | 72 | key->target_class == cur->key.target_class && |
| 72 | (datum->specified & cur->datum.specified)) | 73 | (specified & cur->key.specified)) |
| 73 | return -EEXIST; | 74 | return -EEXIST; |
| 74 | if (key->source_type < cur->key.source_type) | 75 | if (key->source_type < cur->key.source_type) |
| 75 | break; | 76 | break; |
| @@ -98,6 +99,7 @@ avtab_insert_nonunique(struct avtab * h, struct avtab_key * key, struct avtab_da | |||
| 98 | { | 99 | { |
| 99 | int hvalue; | 100 | int hvalue; |
| 100 | struct avtab_node *prev, *cur, *newnode; | 101 | struct avtab_node *prev, *cur, *newnode; |
| 102 | u16 specified = key->specified & ~(AVTAB_ENABLED|AVTAB_ENABLED_OLD); | ||
| 101 | 103 | ||
| 102 | if (!h) | 104 | if (!h) |
| 103 | return NULL; | 105 | return NULL; |
| @@ -108,7 +110,7 @@ avtab_insert_nonunique(struct avtab * h, struct avtab_key * key, struct avtab_da | |||
| 108 | if (key->source_type == cur->key.source_type && | 110 | if (key->source_type == cur->key.source_type && |
| 109 | key->target_type == cur->key.target_type && | 111 | key->target_type == cur->key.target_type && |
| 110 | key->target_class == cur->key.target_class && | 112 | key->target_class == cur->key.target_class && |
| 111 | (datum->specified & cur->datum.specified)) | 113 | (specified & cur->key.specified)) |
| 112 | break; | 114 | break; |
| 113 | if (key->source_type < cur->key.source_type) | 115 | if (key->source_type < cur->key.source_type) |
| 114 | break; | 116 | break; |
| @@ -125,10 +127,11 @@ avtab_insert_nonunique(struct avtab * h, struct avtab_key * key, struct avtab_da | |||
| 125 | return newnode; | 127 | return newnode; |
| 126 | } | 128 | } |
| 127 | 129 | ||
| 128 | struct avtab_datum *avtab_search(struct avtab *h, struct avtab_key *key, int specified) | 130 | struct avtab_datum *avtab_search(struct avtab *h, struct avtab_key *key) |
| 129 | { | 131 | { |
| 130 | int hvalue; | 132 | int hvalue; |
| 131 | struct avtab_node *cur; | 133 | struct avtab_node *cur; |
| 134 | u16 specified = key->specified & ~(AVTAB_ENABLED|AVTAB_ENABLED_OLD); | ||
| 132 | 135 | ||
| 133 | if (!h) | 136 | if (!h) |
| 134 | return NULL; | 137 | return NULL; |
| @@ -138,7 +141,7 @@ struct avtab_datum *avtab_search(struct avtab *h, struct avtab_key *key, int spe | |||
| 138 | if (key->source_type == cur->key.source_type && | 141 | if (key->source_type == cur->key.source_type && |
| 139 | key->target_type == cur->key.target_type && | 142 | key->target_type == cur->key.target_type && |
| 140 | key->target_class == cur->key.target_class && | 143 | key->target_class == cur->key.target_class && |
| 141 | (specified & cur->datum.specified)) | 144 | (specified & cur->key.specified)) |
| 142 | return &cur->datum; | 145 | return &cur->datum; |
| 143 | 146 | ||
| 144 | if (key->source_type < cur->key.source_type) | 147 | if (key->source_type < cur->key.source_type) |
| @@ -159,10 +162,11 @@ struct avtab_datum *avtab_search(struct avtab *h, struct avtab_key *key, int spe | |||
| 159 | * conjunction with avtab_search_next_node() | 162 | * conjunction with avtab_search_next_node() |
| 160 | */ | 163 | */ |
| 161 | struct avtab_node* | 164 | struct avtab_node* |
| 162 | avtab_search_node(struct avtab *h, struct avtab_key *key, int specified) | 165 | avtab_search_node(struct avtab *h, struct avtab_key *key) |
| 163 | { | 166 | { |
| 164 | int hvalue; | 167 | int hvalue; |
| 165 | struct avtab_node *cur; | 168 | struct avtab_node *cur; |
| 169 | u16 specified = key->specified & ~(AVTAB_ENABLED|AVTAB_ENABLED_OLD); | ||
| 166 | 170 | ||
| 167 | if (!h) | 171 | if (!h) |
| 168 | return NULL; | 172 | return NULL; |
| @@ -172,7 +176,7 @@ avtab_search_node(struct avtab *h, struct avtab_key *key, int specified) | |||
| 172 | if (key->source_type == cur->key.source_type && | 176 | if (key->source_type == cur->key.source_type && |
| 173 | key->target_type == cur->key.target_type && | 177 | key->target_type == cur->key.target_type && |
| 174 | key->target_class == cur->key.target_class && | 178 | key->target_class == cur->key.target_class && |
| 175 | (specified & cur->datum.specified)) | 179 | (specified & cur->key.specified)) |
| 176 | return cur; | 180 | return cur; |
| 177 | 181 | ||
| 178 | if (key->source_type < cur->key.source_type) | 182 | if (key->source_type < cur->key.source_type) |
| @@ -196,11 +200,12 @@ avtab_search_node_next(struct avtab_node *node, int specified) | |||
| 196 | if (!node) | 200 | if (!node) |
| 197 | return NULL; | 201 | return NULL; |
| 198 | 202 | ||
| 203 | specified &= ~(AVTAB_ENABLED|AVTAB_ENABLED_OLD); | ||
| 199 | for (cur = node->next; cur; cur = cur->next) { | 204 | for (cur = node->next; cur; cur = cur->next) { |
| 200 | if (node->key.source_type == cur->key.source_type && | 205 | if (node->key.source_type == cur->key.source_type && |
| 201 | node->key.target_type == cur->key.target_type && | 206 | node->key.target_type == cur->key.target_type && |
| 202 | node->key.target_class == cur->key.target_class && | 207 | node->key.target_class == cur->key.target_class && |
| 203 | (specified & cur->datum.specified)) | 208 | (specified & cur->key.specified)) |
| 204 | return cur; | 209 | return cur; |
| 205 | 210 | ||
| 206 | if (node->key.source_type < cur->key.source_type) | 211 | if (node->key.source_type < cur->key.source_type) |
| @@ -278,75 +283,126 @@ void avtab_hash_eval(struct avtab *h, char *tag) | |||
| 278 | max_chain_len); | 283 | max_chain_len); |
| 279 | } | 284 | } |
| 280 | 285 | ||
| 281 | int avtab_read_item(void *fp, struct avtab_datum *avdatum, struct avtab_key *avkey) | 286 | static uint16_t spec_order[] = { |
| 287 | AVTAB_ALLOWED, | ||
| 288 | AVTAB_AUDITDENY, | ||
| 289 | AVTAB_AUDITALLOW, | ||
| 290 | AVTAB_TRANSITION, | ||
| 291 | AVTAB_CHANGE, | ||
| 292 | AVTAB_MEMBER | ||
| 293 | }; | ||
| 294 | |||
| 295 | int avtab_read_item(void *fp, u32 vers, struct avtab *a, | ||
| 296 | int (*insertf)(struct avtab *a, struct avtab_key *k, | ||
| 297 | struct avtab_datum *d, void *p), | ||
| 298 | void *p) | ||
| 282 | { | 299 | { |
| 283 | u32 buf[7]; | 300 | u16 buf16[4], enabled; |
| 284 | u32 items, items2; | 301 | u32 buf32[7], items, items2, val; |
| 285 | int rc; | 302 | struct avtab_key key; |
| 303 | struct avtab_datum datum; | ||
| 304 | int i, rc; | ||
| 305 | |||
| 306 | memset(&key, 0, sizeof(struct avtab_key)); | ||
| 307 | memset(&datum, 0, sizeof(struct avtab_datum)); | ||
| 308 | |||
| 309 | if (vers < POLICYDB_VERSION_AVTAB) { | ||
| 310 | rc = next_entry(buf32, fp, sizeof(u32)); | ||
| 311 | if (rc < 0) { | ||
| 312 | printk(KERN_ERR "security: avtab: truncated entry\n"); | ||
| 313 | return -1; | ||
| 314 | } | ||
| 315 | items2 = le32_to_cpu(buf32[0]); | ||
| 316 | if (items2 > ARRAY_SIZE(buf32)) { | ||
| 317 | printk(KERN_ERR "security: avtab: entry overflow\n"); | ||
