| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  * Implementation of the policy database. | 
 | 3 |  * | 
 | 4 |  * Author : Stephen Smalley, <sds@epoch.ncsc.mil> | 
 | 5 |  */ | 
 | 6 |  | 
 | 7 | /* | 
 | 8 |  * Updated: Trusted Computer Solutions, Inc. <dgoeddel@trustedcs.com> | 
 | 9 |  * | 
 | 10 |  *	Support for enhanced MLS infrastructure. | 
 | 11 |  * | 
 | 12 |  * Updated: Frank Mayer <mayerf@tresys.com> and Karl MacMillan <kmacmillan@tresys.com> | 
 | 13 |  * | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 14 |  *	Added conditional policy language extensions | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 |  * | 
| Paul Moore | 82c21bf | 2011-08-01 11:10:33 +0000 | [diff] [blame] | 16 |  * Updated: Hewlett-Packard <paul@paul-moore.com> | 
| Paul Moore | 3bb56b2 | 2008-01-29 08:38:19 -0500 | [diff] [blame] | 17 |  * | 
 | 18 |  *      Added support for the policy capability bitmap | 
 | 19 |  * | 
 | 20 |  * Copyright (C) 2007 Hewlett-Packard Development Company, L.P. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 |  * Copyright (C) 2004-2005 Trusted Computer Solutions, Inc. | 
 | 22 |  * Copyright (C) 2003 - 2004 Tresys Technology, LLC | 
 | 23 |  *	This program is free software; you can redistribute it and/or modify | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 24 |  *	it under the terms of the GNU General Public License as published by | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 |  *	the Free Software Foundation, version 2. | 
 | 26 |  */ | 
 | 27 |  | 
 | 28 | #include <linux/kernel.h> | 
| Eric Paris | 9dc9978 | 2007-06-04 17:41:22 -0400 | [diff] [blame] | 29 | #include <linux/sched.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/slab.h> | 
 | 31 | #include <linux/string.h> | 
 | 32 | #include <linux/errno.h> | 
| KaiGai Kohei | d9250de | 2008-08-28 16:35:57 +0900 | [diff] [blame] | 33 | #include <linux/audit.h> | 
| Eric Paris | 6371dcd | 2010-07-29 23:02:34 -0400 | [diff] [blame] | 34 | #include <linux/flex_array.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include "security.h" | 
 | 36 |  | 
 | 37 | #include "policydb.h" | 
 | 38 | #include "conditional.h" | 
 | 39 | #include "mls.h" | 
| Eric Paris | cee74f4 | 2010-10-13 17:50:25 -0400 | [diff] [blame] | 40 | #include "services.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 |  | 
 | 42 | #define _DEBUG_HASHES | 
 | 43 |  | 
 | 44 | #ifdef DEBUG_HASHES | 
| Stephen Hemminger | 634a539 | 2010-03-04 21:59:03 -0800 | [diff] [blame] | 45 | static const char *symtab_name[SYM_NUM] = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | 	"common prefixes", | 
 | 47 | 	"classes", | 
 | 48 | 	"roles", | 
 | 49 | 	"types", | 
 | 50 | 	"users", | 
 | 51 | 	"bools", | 
 | 52 | 	"levels", | 
 | 53 | 	"categories", | 
 | 54 | }; | 
 | 55 | #endif | 
 | 56 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | static unsigned int symtab_sizes[SYM_NUM] = { | 
 | 58 | 	2, | 
 | 59 | 	32, | 
 | 60 | 	16, | 
 | 61 | 	512, | 
 | 62 | 	128, | 
 | 63 | 	16, | 
 | 64 | 	16, | 
 | 65 | 	16, | 
 | 66 | }; | 
 | 67 |  | 
 | 68 | struct policydb_compat_info { | 
 | 69 | 	int version; | 
 | 70 | 	int sym_num; | 
 | 71 | 	int ocon_num; | 
 | 72 | }; | 
 | 73 |  | 
 | 74 | /* These need to be updated if SYM_NUM or OCON_NUM changes */ | 
 | 75 | static struct policydb_compat_info policydb_compat[] = { | 
 | 76 | 	{ | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 77 | 		.version	= POLICYDB_VERSION_BASE, | 
 | 78 | 		.sym_num	= SYM_NUM - 3, | 
 | 79 | 		.ocon_num	= OCON_NUM - 1, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | 	}, | 
 | 81 | 	{ | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 82 | 		.version	= POLICYDB_VERSION_BOOL, | 
 | 83 | 		.sym_num	= SYM_NUM - 2, | 
 | 84 | 		.ocon_num	= OCON_NUM - 1, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | 	}, | 
 | 86 | 	{ | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 87 | 		.version	= POLICYDB_VERSION_IPV6, | 
 | 88 | 		.sym_num	= SYM_NUM - 2, | 
 | 89 | 		.ocon_num	= OCON_NUM, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | 	}, | 
 | 91 | 	{ | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 92 | 		.version	= POLICYDB_VERSION_NLCLASS, | 
 | 93 | 		.sym_num	= SYM_NUM - 2, | 
 | 94 | 		.ocon_num	= OCON_NUM, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | 	}, | 
 | 96 | 	{ | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 97 | 		.version	= POLICYDB_VERSION_MLS, | 
 | 98 | 		.sym_num	= SYM_NUM, | 
 | 99 | 		.ocon_num	= OCON_NUM, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | 	}, | 
| Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 101 | 	{ | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 102 | 		.version	= POLICYDB_VERSION_AVTAB, | 
 | 103 | 		.sym_num	= SYM_NUM, | 
 | 104 | 		.ocon_num	= OCON_NUM, | 
| Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 105 | 	}, | 
| Darrel Goeddel | f3f8771 | 2006-09-25 23:31:59 -0700 | [diff] [blame] | 106 | 	{ | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 107 | 		.version	= POLICYDB_VERSION_RANGETRANS, | 
 | 108 | 		.sym_num	= SYM_NUM, | 
 | 109 | 		.ocon_num	= OCON_NUM, | 
| Darrel Goeddel | f3f8771 | 2006-09-25 23:31:59 -0700 | [diff] [blame] | 110 | 	}, | 
| Paul Moore | 3bb56b2 | 2008-01-29 08:38:19 -0500 | [diff] [blame] | 111 | 	{ | 
 | 112 | 		.version	= POLICYDB_VERSION_POLCAP, | 
 | 113 | 		.sym_num	= SYM_NUM, | 
 | 114 | 		.ocon_num	= OCON_NUM, | 
| Eric Paris | 64dbf07 | 2008-03-31 12:17:33 +1100 | [diff] [blame] | 115 | 	}, | 
 | 116 | 	{ | 
 | 117 | 		.version	= POLICYDB_VERSION_PERMISSIVE, | 
 | 118 | 		.sym_num	= SYM_NUM, | 
 | 119 | 		.ocon_num	= OCON_NUM, | 
| KaiGai Kohei | d9250de | 2008-08-28 16:35:57 +0900 | [diff] [blame] | 120 | 	}, | 
 | 121 | 	{ | 
 | 122 | 		.version	= POLICYDB_VERSION_BOUNDARY, | 
 | 123 | 		.sym_num	= SYM_NUM, | 
 | 124 | 		.ocon_num	= OCON_NUM, | 
 | 125 | 	}, | 
| Eric Paris | 652bb9b | 2011-02-01 11:05:40 -0500 | [diff] [blame] | 126 | 	{ | 
 | 127 | 		.version	= POLICYDB_VERSION_FILENAME_TRANS, | 
 | 128 | 		.sym_num	= SYM_NUM, | 
 | 129 | 		.ocon_num	= OCON_NUM, | 
 | 130 | 	}, | 
| Harry Ciao | 8023976 | 2011-03-25 13:51:56 +0800 | [diff] [blame] | 131 | 	{ | 
 | 132 | 		.version	= POLICYDB_VERSION_ROLETRANS, | 
 | 133 | 		.sym_num	= SYM_NUM, | 
 | 134 | 		.ocon_num	= OCON_NUM, | 
 | 135 | 	}, | 
| Eric Paris | d076bc7 | 2012-03-20 14:35:12 -0400 | [diff] [blame^] | 136 | 	{ | 
 | 137 | 		.version	= POLICYDB_VERSION_NEW_OBJECT_DEFAULTS, | 
 | 138 | 		.sym_num	= SYM_NUM, | 
 | 139 | 		.ocon_num	= OCON_NUM, | 
 | 140 | 	}, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | }; | 
 | 142 |  | 
 | 143 | static struct policydb_compat_info *policydb_lookup_compat(int version) | 
 | 144 | { | 
 | 145 | 	int i; | 
 | 146 | 	struct policydb_compat_info *info = NULL; | 
 | 147 |  | 
| Tobias Klauser | 32725ad | 2006-01-06 00:11:23 -0800 | [diff] [blame] | 148 | 	for (i = 0; i < ARRAY_SIZE(policydb_compat); i++) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | 		if (policydb_compat[i].version == version) { | 
 | 150 | 			info = &policydb_compat[i]; | 
 | 151 | 			break; | 
 | 152 | 		} | 
 | 153 | 	} | 
 | 154 | 	return info; | 
 | 155 | } | 
 | 156 |  | 
 | 157 | /* | 
 | 158 |  * Initialize the role table. | 
 | 159 |  */ | 
 | 160 | static int roles_init(struct policydb *p) | 
 | 161 | { | 
 | 162 | 	char *key = NULL; | 
 | 163 | 	int rc; | 
 | 164 | 	struct role_datum *role; | 
 | 165 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 166 | 	rc = -ENOMEM; | 
| James Morris | 89d155e | 2005-10-30 14:59:21 -0800 | [diff] [blame] | 167 | 	role = kzalloc(sizeof(*role), GFP_KERNEL); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 168 | 	if (!role) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | 		goto out; | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 170 |  | 
 | 171 | 	rc = -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | 	role->value = ++p->p_roles.nprim; | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 173 | 	if (role->value != OBJECT_R_VAL) | 
 | 174 | 		goto out; | 
 | 175 |  | 
 | 176 | 	rc = -ENOMEM; | 
| Julia Lawall | b3139bb | 2010-05-14 21:30:30 +0200 | [diff] [blame] | 177 | 	key = kstrdup(OBJECT_R, GFP_KERNEL); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 178 | 	if (!key) | 
 | 179 | 		goto out; | 
 | 180 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | 	rc = hashtab_insert(p->p_roles.table, key, role); | 
 | 182 | 	if (rc) | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 183 | 		goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 185 | 	return 0; | 
 | 186 | out: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | 	kfree(key); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | 	kfree(role); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 189 | 	return rc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | } | 
 | 191 |  | 
| Eric Paris | 2463c26d | 2011-04-28 15:11:21 -0400 | [diff] [blame] | 192 | static u32 filenametr_hash(struct hashtab *h, const void *k) | 
 | 193 | { | 
 | 194 | 	const struct filename_trans *ft = k; | 
 | 195 | 	unsigned long hash; | 
 | 196 | 	unsigned int byte_num; | 
 | 197 | 	unsigned char focus; | 
 | 198 |  | 
 | 199 | 	hash = ft->stype ^ ft->ttype ^ ft->tclass; | 
 | 200 |  | 
 | 201 | 	byte_num = 0; | 
 | 202 | 	while ((focus = ft->name[byte_num++])) | 
 | 203 | 		hash = partial_name_hash(focus, hash); | 
 | 204 | 	return hash & (h->size - 1); | 
 | 205 | } | 
 | 206 |  | 
 | 207 | static int filenametr_cmp(struct hashtab *h, const void *k1, const void *k2) | 
 | 208 | { | 
 | 209 | 	const struct filename_trans *ft1 = k1; | 
 | 210 | 	const struct filename_trans *ft2 = k2; | 
 | 211 | 	int v; | 
 | 212 |  | 
 | 213 | 	v = ft1->stype - ft2->stype; | 
 | 214 | 	if (v) | 
 | 215 | 		return v; | 
 | 216 |  | 
 | 217 | 	v = ft1->ttype - ft2->ttype; | 
 | 218 | 	if (v) | 
 | 219 | 		return v; | 
 | 220 |  | 
 | 221 | 	v = ft1->tclass - ft2->tclass; | 
 | 222 | 	if (v) | 
 | 223 | 		return v; | 
 | 224 |  | 
 | 225 | 	return strcmp(ft1->name, ft2->name); | 
 | 226 |  | 
 | 227 | } | 
 | 228 |  | 
| Stephen Smalley | 2f3e82d | 2010-01-07 15:55:16 -0500 | [diff] [blame] | 229 | static u32 rangetr_hash(struct hashtab *h, const void *k) | 
 | 230 | { | 
 | 231 | 	const struct range_trans *key = k; | 
 | 232 | 	return (key->source_type + (key->target_type << 3) + | 
 | 233 | 		(key->target_class << 5)) & (h->size - 1); | 
 | 234 | } | 
 | 235 |  | 
 | 236 | static int rangetr_cmp(struct hashtab *h, const void *k1, const void *k2) | 
 | 237 | { | 
 | 238 | 	const struct range_trans *key1 = k1, *key2 = k2; | 
| Eric Paris | 4419aae | 2010-10-13 17:50:14 -0400 | [diff] [blame] | 239 | 	int v; | 
 | 240 |  | 
 | 241 | 	v = key1->source_type - key2->source_type; | 
 | 242 | 	if (v) | 
 | 243 | 		return v; | 
 | 244 |  | 
 | 245 | 	v = key1->target_type - key2->target_type; | 
 | 246 | 	if (v) | 
 | 247 | 		return v; | 
 | 248 |  | 
 | 249 | 	v = key1->target_class - key2->target_class; | 
 | 250 |  | 
 | 251 | 	return v; | 
| Stephen Smalley | 2f3e82d | 2010-01-07 15:55:16 -0500 | [diff] [blame] | 252 | } | 
 | 253 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | /* | 
 | 255 |  * Initialize a policy database structure. | 
 | 256 |  */ | 
 | 257 | static int policydb_init(struct policydb *p) | 
 | 258 | { | 
 | 259 | 	int i, rc; | 
 | 260 |  | 
 | 261 | 	memset(p, 0, sizeof(*p)); | 
 | 262 |  | 
 | 263 | 	for (i = 0; i < SYM_NUM; i++) { | 
 | 264 | 		rc = symtab_init(&p->symtab[i], symtab_sizes[i]); | 
 | 265 | 		if (rc) | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 266 | 			goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | 	} | 
 | 268 |  | 
 | 269 | 	rc = avtab_init(&p->te_avtab); | 
 | 270 | 	if (rc) | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 271 | 		goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 |  | 
 | 273 | 	rc = roles_init(p); | 
 | 274 | 	if (rc) | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 275 | 		goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 |  | 
 | 277 | 	rc = cond_policydb_init(p); | 
 | 278 | 	if (rc) | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 279 | 		goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 |  | 
| Eric Paris | 2463c26d | 2011-04-28 15:11:21 -0400 | [diff] [blame] | 281 | 	p->filename_trans = hashtab_create(filenametr_hash, filenametr_cmp, (1 << 10)); | 
 | 282 | 	if (!p->filename_trans) | 
 | 283 | 		goto out; | 
 | 284 |  | 
| Stephen Smalley | 2f3e82d | 2010-01-07 15:55:16 -0500 | [diff] [blame] | 285 | 	p->range_tr = hashtab_create(rangetr_hash, rangetr_cmp, 256); | 
 | 286 | 	if (!p->range_tr) | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 287 | 		goto out; | 
| Stephen Smalley | 2f3e82d | 2010-01-07 15:55:16 -0500 | [diff] [blame] | 288 |  | 
| Eric Paris | 03a4c01 | 2011-04-28 15:11:21 -0400 | [diff] [blame] | 289 | 	ebitmap_init(&p->filename_trans_ttypes); | 
| Paul Moore | 3bb56b2 | 2008-01-29 08:38:19 -0500 | [diff] [blame] | 290 | 	ebitmap_init(&p->policycaps); | 
| Eric Paris | 64dbf07 | 2008-03-31 12:17:33 +1100 | [diff] [blame] | 291 | 	ebitmap_init(&p->permissive_map); | 
| Paul Moore | 3bb56b2 | 2008-01-29 08:38:19 -0500 | [diff] [blame] | 292 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 293 | 	return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | out: | 
| Eric Paris | 2463c26d | 2011-04-28 15:11:21 -0400 | [diff] [blame] | 295 | 	hashtab_destroy(p->filename_trans); | 
 | 296 | 	hashtab_destroy(p->range_tr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | 	for (i = 0; i < SYM_NUM; i++) | 
 | 298 | 		hashtab_destroy(p->symtab[i].table); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 299 | 	return rc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | } | 
 | 301 |  | 
 | 302 | /* | 
 | 303 |  * The following *_index functions are used to | 
 | 304 |  * define the val_to_name and val_to_struct arrays | 
 | 305 |  * in a policy database structure.  The val_to_name | 
 | 306 |  * arrays are used when converting security context | 
 | 307 |  * structures into string representations.  The | 
 | 308 |  * val_to_struct arrays are used when the attributes | 
 | 309 |  * of a class, role, or user are needed. | 
 | 310 |  */ | 
 | 311 |  | 
 | 312 | static int common_index(void *key, void *datum, void *datap) | 
 | 313 | { | 
 | 314 | 	struct policydb *p; | 
 | 315 | 	struct common_datum *comdatum; | 
| Eric Paris | ac76c05 | 2010-11-29 15:47:09 -0500 | [diff] [blame] | 316 | 	struct flex_array *fa; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 |  | 
 | 318 | 	comdatum = datum; | 
 | 319 | 	p = datap; | 
 | 320 | 	if (!comdatum->value || comdatum->value > p->p_commons.nprim) | 
 | 321 | 		return -EINVAL; | 
| Eric Paris | ac76c05 | 2010-11-29 15:47:09 -0500 | [diff] [blame] | 322 |  | 
 | 323 | 	fa = p->sym_val_to_name[SYM_COMMONS]; | 
 | 324 | 	if (flex_array_put_ptr(fa, comdatum->value - 1, key, | 
 | 325 | 			       GFP_KERNEL | __GFP_ZERO)) | 
 | 326 | 		BUG(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | 	return 0; | 
 | 328 | } | 
 | 329 |  | 
 | 330 | static int class_index(void *key, void *datum, void *datap) | 
 | 331 | { | 
 | 332 | 	struct policydb *p; | 
 | 333 | 	struct class_datum *cladatum; | 
| Eric Paris | ac76c05 | 2010-11-29 15:47:09 -0500 | [diff] [blame] | 334 | 	struct flex_array *fa; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 |  | 
 | 336 | 	cladatum = datum; | 
 | 337 | 	p = datap; | 
 | 338 | 	if (!cladatum->value || cladatum->value > p->p_classes.nprim) | 
 | 339 | 		return -EINVAL; | 
| Eric Paris | ac76c05 | 2010-11-29 15:47:09 -0500 | [diff] [blame] | 340 | 	fa = p->sym_val_to_name[SYM_CLASSES]; | 
 | 341 | 	if (flex_array_put_ptr(fa, cladatum->value - 1, key, | 
 | 342 | 			       GFP_KERNEL | __GFP_ZERO)) | 
 | 343 | 		BUG(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | 	p->class_val_to_struct[cladatum->value - 1] = cladatum; | 
 | 345 | 	return 0; | 
 | 346 | } | 
 | 347 |  | 
 | 348 | static int role_index(void *key, void *datum, void *datap) | 
 | 349 | { | 
 | 350 | 	struct policydb *p; | 
 | 351 | 	struct role_datum *role; | 
| Eric Paris | ac76c05 | 2010-11-29 15:47:09 -0500 | [diff] [blame] | 352 | 	struct flex_array *fa; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 |  | 
 | 354 | 	role = datum; | 
 | 355 | 	p = datap; | 
| KaiGai Kohei | d9250de | 2008-08-28 16:35:57 +0900 | [diff] [blame] | 356 | 	if (!role->value | 
 | 357 | 	    || role->value > p->p_roles.nprim | 
 | 358 | 	    || role->bounds > p->p_roles.nprim) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | 		return -EINVAL; | 
| Eric Paris | ac76c05 | 2010-11-29 15:47:09 -0500 | [diff] [blame] | 360 |  | 
 | 361 | 	fa = p->sym_val_to_name[SYM_ROLES]; | 
 | 362 | 	if (flex_array_put_ptr(fa, role->value - 1, key, | 
 | 363 | 			       GFP_KERNEL | __GFP_ZERO)) | 
 | 364 | 		BUG(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | 	p->role_val_to_struct[role->value - 1] = role; | 
 | 366 | 	return 0; | 
 | 367 | } | 
 | 368 |  | 
 | 369 | static int type_index(void *key, void *datum, void *datap) | 
 | 370 | { | 
 | 371 | 	struct policydb *p; | 
 | 372 | 	struct type_datum *typdatum; | 
| Eric Paris | ac76c05 | 2010-11-29 15:47:09 -0500 | [diff] [blame] | 373 | 	struct flex_array *fa; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 |  | 
 | 375 | 	typdatum = datum; | 
 | 376 | 	p = datap; | 
 | 377 |  | 
 | 378 | 	if (typdatum->primary) { | 
| KaiGai Kohei | d9250de | 2008-08-28 16:35:57 +0900 | [diff] [blame] | 379 | 		if (!typdatum->value | 
 | 380 | 		    || typdatum->value > p->p_types.nprim | 
 | 381 | 		    || typdatum->bounds > p->p_types.nprim) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | 			return -EINVAL; | 
| Eric Paris | ac76c05 | 2010-11-29 15:47:09 -0500 | [diff] [blame] | 383 | 		fa = p->sym_val_to_name[SYM_TYPES]; | 
 | 384 | 		if (flex_array_put_ptr(fa, typdatum->value - 1, key, | 
 | 385 | 				       GFP_KERNEL | __GFP_ZERO)) | 
 | 386 | 			BUG(); | 
 | 387 |  | 
 | 388 | 		fa = p->type_val_to_struct_array; | 
 | 389 | 		if (flex_array_put_ptr(fa, typdatum->value - 1, typdatum, | 
| Eric Paris | 23bdecb | 2010-11-29 15:47:09 -0500 | [diff] [blame] | 390 | 				       GFP_KERNEL | __GFP_ZERO)) | 
 | 391 | 			BUG(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | 	} | 
 | 393 |  | 
 | 394 | 	return 0; | 
 | 395 | } | 
 | 396 |  | 
 | 397 | static int user_index(void *key, void *datum, void *datap) | 
 | 398 | { | 
 | 399 | 	struct policydb *p; | 
 | 400 | 	struct user_datum *usrdatum; | 
| Eric Paris | ac76c05 | 2010-11-29 15:47:09 -0500 | [diff] [blame] | 401 | 	struct flex_array *fa; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 |  | 
 | 403 | 	usrdatum = datum; | 
 | 404 | 	p = datap; | 
| KaiGai Kohei | d9250de | 2008-08-28 16:35:57 +0900 | [diff] [blame] | 405 | 	if (!usrdatum->value | 
 | 406 | 	    || usrdatum->value > p->p_users.nprim | 
 | 407 | 	    || usrdatum->bounds > p->p_users.nprim) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | 		return -EINVAL; | 
| Eric Paris | ac76c05 | 2010-11-29 15:47:09 -0500 | [diff] [blame] | 409 |  | 
 | 410 | 	fa = p->sym_val_to_name[SYM_USERS]; | 
 | 411 | 	if (flex_array_put_ptr(fa, usrdatum->value - 1, key, | 
 | 412 | 			       GFP_KERNEL | __GFP_ZERO)) | 
 | 413 | 		BUG(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | 	p->user_val_to_struct[usrdatum->value - 1] = usrdatum; | 
 | 415 | 	return 0; | 
 | 416 | } | 
 | 417 |  | 
 | 418 | static int sens_index(void *key, void *datum, void *datap) | 
 | 419 | { | 
 | 420 | 	struct policydb *p; | 
 | 421 | 	struct level_datum *levdatum; | 
| Eric Paris | ac76c05 | 2010-11-29 15:47:09 -0500 | [diff] [blame] | 422 | 	struct flex_array *fa; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 |  | 
 | 424 | 	levdatum = datum; | 
 | 425 | 	p = datap; | 
 | 426 |  | 
 | 427 | 	if (!levdatum->isalias) { | 
 | 428 | 		if (!levdatum->level->sens || | 
 | 429 | 		    levdatum->level->sens > p->p_levels.nprim) | 
 | 430 | 			return -EINVAL; | 
| Eric Paris | ac76c05 | 2010-11-29 15:47:09 -0500 | [diff] [blame] | 431 | 		fa = p->sym_val_to_name[SYM_LEVELS]; | 
 | 432 | 		if (flex_array_put_ptr(fa, levdatum->level->sens - 1, key, | 
 | 433 | 				       GFP_KERNEL | __GFP_ZERO)) | 
 | 434 | 			BUG(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | 	} | 
 | 436 |  | 
 | 437 | 	return 0; | 
 | 438 | } | 
 | 439 |  | 
 | 440 | static int cat_index(void *key, void *datum, void *datap) | 
 | 441 | { | 
 | 442 | 	struct policydb *p; | 
 | 443 | 	struct cat_datum *catdatum; | 
| Eric Paris | ac76c05 | 2010-11-29 15:47:09 -0500 | [diff] [blame] | 444 | 	struct flex_array *fa; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 |  | 
 | 446 | 	catdatum = datum; | 
 | 447 | 	p = datap; | 
 | 448 |  | 
 | 449 | 	if (!catdatum->isalias) { | 
 | 450 | 		if (!catdatum->value || catdatum->value > p->p_cats.nprim) | 
 | 451 | 			return -EINVAL; | 
| Eric Paris | ac76c05 | 2010-11-29 15:47:09 -0500 | [diff] [blame] | 452 | 		fa = p->sym_val_to_name[SYM_CATS]; | 
 | 453 | 		if (flex_array_put_ptr(fa, catdatum->value - 1, key, | 
 | 454 | 				       GFP_KERNEL | __GFP_ZERO)) | 
 | 455 | 			BUG(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | 	} | 
 | 457 |  | 
 | 458 | 	return 0; | 
 | 459 | } | 
 | 460 |  | 
 | 461 | static int (*index_f[SYM_NUM]) (void *key, void *datum, void *datap) = | 
 | 462 | { | 
 | 463 | 	common_index, | 
 | 464 | 	class_index, | 
 | 465 | 	role_index, | 
 | 466 | 	type_index, | 
 | 467 | 	user_index, | 
 | 468 | 	cond_index_bool, | 
 | 469 | 	sens_index, | 
 | 470 | 	cat_index, | 
 | 471 | }; | 
 | 472 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | #ifdef DEBUG_HASHES | 
| Eric Paris | be30b16 | 2011-04-28 15:11:21 -0400 | [diff] [blame] | 474 | static void hash_eval(struct hashtab *h, const char *hash_name) | 
| Stephen Smalley | 2f3e82d | 2010-01-07 15:55:16 -0500 | [diff] [blame] | 475 | { | 
 | 476 | 	struct hashtab_info info; | 
 | 477 |  | 
 | 478 | 	hashtab_stat(h, &info); | 
| Eric Paris | be30b16 | 2011-04-28 15:11:21 -0400 | [diff] [blame] | 479 | 	printk(KERN_DEBUG "SELinux: %s:  %d entries and %d/%d buckets used, " | 
 | 480 | 	       "longest chain length %d\n", hash_name, h->nel, | 
| Stephen Smalley | 2f3e82d | 2010-01-07 15:55:16 -0500 | [diff] [blame] | 481 | 	       info.slots_used, h->size, info.max_chain_len); | 
 | 482 | } | 
| Eric Paris | be30b16 | 2011-04-28 15:11:21 -0400 | [diff] [blame] | 483 |  | 
 | 484 | static void symtab_hash_eval(struct symtab *s) | 
 | 485 | { | 
 | 486 | 	int i; | 
 | 487 |  | 
 | 488 | 	for (i = 0; i < SYM_NUM; i++) | 
 | 489 | 		hash_eval(s[i].table, symtab_name[i]); | 
 | 490 | } | 
 | 491 |  | 
| Stephen Smalley | 2f3e82d | 2010-01-07 15:55:16 -0500 | [diff] [blame] | 492 | #else | 
| Eric Paris | be30b16 | 2011-04-28 15:11:21 -0400 | [diff] [blame] | 493 | static inline void hash_eval(struct hashtab *h, char *hash_name) | 
| Stephen Smalley | 2f3e82d | 2010-01-07 15:55:16 -0500 | [diff] [blame] | 494 | { | 
 | 495 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | #endif | 
 | 497 |  | 
 | 498 | /* | 
 | 499 |  * Define the other val_to_name and val_to_struct arrays | 
 | 500 |  * in a policy database structure. | 
 | 501 |  * | 
 | 502 |  * Caller must clean up on failure. | 
 | 503 |  */ | 
| Eric Paris | 1d9bc6dc | 2010-11-29 15:47:09 -0500 | [diff] [blame] | 504 | static int policydb_index(struct policydb *p) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | { | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 506 | 	int i, rc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 |  | 
| James Morris | 454d972 | 2008-02-26 20:42:02 +1100 | [diff] [blame] | 508 | 	printk(KERN_DEBUG "SELinux:  %d users, %d roles, %d types, %d bools", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | 	       p->p_users.nprim, p->p_roles.nprim, p->p_types.nprim, p->p_bools.nprim); | 
| Guido Trentalancia | 0719aaf5 | 2010-02-03 16:40:20 +0100 | [diff] [blame] | 510 | 	if (p->mls_enabled) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | 		printk(", %d sens, %d cats", p->p_levels.nprim, | 
 | 512 | 		       p->p_cats.nprim); | 
 | 513 | 	printk("\n"); | 
 | 514 |  | 
| James Morris | 454d972 | 2008-02-26 20:42:02 +1100 | [diff] [blame] | 515 | 	printk(KERN_DEBUG "SELinux:  %d classes, %d rules\n", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | 	       p->p_classes.nprim, p->te_avtab.nel); | 
 | 517 |  | 
 | 518 | #ifdef DEBUG_HASHES | 
 | 519 | 	avtab_hash_eval(&p->te_avtab, "rules"); | 
 | 520 | 	symtab_hash_eval(p->symtab); | 
 | 521 | #endif | 
 | 522 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 523 | 	rc = -ENOMEM; | 
| Eric Paris | 1d9bc6dc | 2010-11-29 15:47:09 -0500 | [diff] [blame] | 524 | 	p->class_val_to_struct = | 
 | 525 | 		kmalloc(p->p_classes.nprim * sizeof(*(p->class_val_to_struct)), | 
 | 526 | 			GFP_KERNEL); | 
 | 527 | 	if (!p->class_val_to_struct) | 
 | 528 | 		goto out; | 
 | 529 |  | 
 | 530 | 	rc = -ENOMEM; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | 	p->role_val_to_struct = | 
 | 532 | 		kmalloc(p->p_roles.nprim * sizeof(*(p->role_val_to_struct)), | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 533 | 			GFP_KERNEL); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 534 | 	if (!p->role_val_to_struct) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | 		goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 537 | 	rc = -ENOMEM; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | 	p->user_val_to_struct = | 
 | 539 | 		kmalloc(p->p_users.nprim * sizeof(*(p->user_val_to_struct)), | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 540 | 			GFP_KERNEL); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 541 | 	if (!p->user_val_to_struct) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | 		goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 |  | 
| Eric Paris | 23bdecb | 2010-11-29 15:47:09 -0500 | [diff] [blame] | 544 | 	/* Yes, I want the sizeof the pointer, not the structure */ | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 545 | 	rc = -ENOMEM; | 
| Eric Paris | 23bdecb | 2010-11-29 15:47:09 -0500 | [diff] [blame] | 546 | 	p->type_val_to_struct_array = flex_array_alloc(sizeof(struct type_datum *), | 
 | 547 | 						       p->p_types.nprim, | 
 | 548 | 						       GFP_KERNEL | __GFP_ZERO); | 
 | 549 | 	if (!p->type_val_to_struct_array) | 
 | 550 | 		goto out; | 
 | 551 |  | 
 | 552 | 	rc = flex_array_prealloc(p->type_val_to_struct_array, 0, | 
| Eric Paris | 5a3ea87 | 2011-04-28 15:55:52 -0400 | [diff] [blame] | 553 | 				 p->p_types.nprim, GFP_KERNEL | __GFP_ZERO); | 
| Eric Paris | 23bdecb | 2010-11-29 15:47:09 -0500 | [diff] [blame] | 554 | 	if (rc) | 
| KaiGai Kohei | d9250de | 2008-08-28 16:35:57 +0900 | [diff] [blame] | 555 | 		goto out; | 
| KaiGai Kohei | d9250de | 2008-08-28 16:35:57 +0900 | [diff] [blame] | 556 |  | 
| Davidlohr Bueso | 3ac285f | 2011-01-21 12:28:04 -0300 | [diff] [blame] | 557 | 	rc = cond_init_bool_indexes(p); | 
 | 558 | 	if (rc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | 		goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 |  | 
| Eric Paris | 1d9bc6dc | 2010-11-29 15:47:09 -0500 | [diff] [blame] | 561 | 	for (i = 0; i < SYM_NUM; i++) { | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 562 | 		rc = -ENOMEM; | 
| Eric Paris | ac76c05 | 2010-11-29 15:47:09 -0500 | [diff] [blame] | 563 | 		p->sym_val_to_name[i] = flex_array_alloc(sizeof(char *), | 
 | 564 | 							 p->symtab[i].nprim, | 
 | 565 | 							 GFP_KERNEL | __GFP_ZERO); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 566 | 		if (!p->sym_val_to_name[i]) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | 			goto out; | 
| Eric Paris | ac76c05 | 2010-11-29 15:47:09 -0500 | [diff] [blame] | 568 |  | 
 | 569 | 		rc = flex_array_prealloc(p->sym_val_to_name[i], | 
| Eric Paris | 5a3ea87 | 2011-04-28 15:55:52 -0400 | [diff] [blame] | 570 | 					 0, p->symtab[i].nprim, | 
| Eric Paris | ac76c05 | 2010-11-29 15:47:09 -0500 | [diff] [blame] | 571 | 					 GFP_KERNEL | __GFP_ZERO); | 
 | 572 | 		if (rc) | 
 | 573 | 			goto out; | 
 | 574 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | 		rc = hashtab_map(p->symtab[i].table, index_f[i], p); | 
 | 576 | 		if (rc) | 
 | 577 | 			goto out; | 
 | 578 | 	} | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 579 | 	rc = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | out: | 
 | 581 | 	return rc; | 
 | 582 | } | 
 | 583 |  | 
 | 584 | /* | 
 | 585 |  * The following *_destroy functions are used to | 
 | 586 |  * free any memory allocated for each kind of | 
 | 587 |  * symbol data in the policy database. | 
 | 588 |  */ | 
 | 589 |  | 
 | 590 | static int perm_destroy(void *key, void *datum, void *p) | 
 | 591 | { | 
 | 592 | 	kfree(key); | 
 | 593 | 	kfree(datum); | 
 | 594 | 	return 0; | 
 | 595 | } | 
 | 596 |  | 
 | 597 | static int common_destroy(void *key, void *datum, void *p) | 
 | 598 | { | 
 | 599 | 	struct common_datum *comdatum; | 
 | 600 |  | 
 | 601 | 	kfree(key); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 602 | 	if (datum) { | 
 | 603 | 		comdatum = datum; | 
 | 604 | 		hashtab_map(comdatum->permissions.table, perm_destroy, NULL); | 
 | 605 | 		hashtab_destroy(comdatum->permissions.table); | 
 | 606 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | 	kfree(datum); | 
 | 608 | 	return 0; | 
 | 609 | } | 
 | 610 |  | 
| James Morris | 6cbda6b | 2006-11-29 16:50:27 -0500 | [diff] [blame] | 611 | static int cls_destroy(void *key, void *datum, void *p) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | { | 
 | 613 | 	struct class_datum *cladatum; | 
 | 614 | 	struct constraint_node *constraint, *ctemp; | 
 | 615 | 	struct constraint_expr *e, *etmp; | 
 | 616 |  | 
 | 617 | 	kfree(key); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 618 | 	if (datum) { | 
 | 619 | 		cladatum = datum; | 
 | 620 | 		hashtab_map(cladatum->permissions.table, perm_destroy, NULL); | 
 | 621 | 		hashtab_destroy(cladatum->permissions.table); | 
 | 622 | 		constraint = cladatum->constraints; | 
 | 623 | 		while (constraint) { | 
 | 624 | 			e = constraint->expr; | 
 | 625 | 			while (e) { | 
 | 626 | 				ebitmap_destroy(&e->names); | 
 | 627 | 				etmp = e; | 
 | 628 | 				e = e->next; | 
 | 629 | 				kfree(etmp); | 
 | 630 | 			} | 
 | 631 | 			ctemp = constraint; | 
 | 632 | 			constraint = constraint->next; | 
 | 633 | 			kfree(ctemp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | 		} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 635 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 636 | 		constraint = cladatum->validatetrans; | 
 | 637 | 		while (constraint) { | 
 | 638 | 			e = constraint->expr; | 
 | 639 | 			while (e) { | 
 | 640 | 				ebitmap_destroy(&e->names); | 
 | 641 | 				etmp = e; | 
 | 642 | 				e = e->next; | 
 | 643 | 				kfree(etmp); | 
 | 644 | 			} | 
 | 645 | 			ctemp = constraint; | 
 | 646 | 			constraint = constraint->next; | 
 | 647 | 			kfree(ctemp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | 		} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 650 | 		kfree(cladatum->comkey); | 
 | 651 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | 	kfree(datum); | 
 | 653 | 	return 0; | 
 | 654 | } | 
 | 655 |  | 
 | 656 | static int role_destroy(void *key, void *datum, void *p) | 
 | 657 | { | 
 | 658 | 	struct role_datum *role; | 
 | 659 |  | 
 | 660 | 	kfree(key); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 661 | 	if (datum) { | 
 | 662 | 		role = datum; | 
 | 663 | 		ebitmap_destroy(&role->dominates); | 
 | 664 | 		ebitmap_destroy(&role->types); | 
 | 665 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | 	kfree(datum); | 
 | 667 | 	return 0; | 
 | 668 | } | 
 | 669 |  | 
 | 670 | static int type_destroy(void *key, void *datum, void *p) | 
 | 671 | { | 
 | 672 | 	kfree(key); | 
 | 673 | 	kfree(datum); | 
 | 674 | 	return 0; | 
 | 675 | } | 
 | 676 |  | 
 | 677 | static int user_destroy(void *key, void *datum, void *p) | 
 | 678 | { | 
 | 679 | 	struct user_datum *usrdatum; | 
 | 680 |  | 
 | 681 | 	kfree(key); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 682 | 	if (datum) { | 
 | 683 | 		usrdatum = datum; | 
 | 684 | 		ebitmap_destroy(&usrdatum->roles); | 
 | 685 | 		ebitmap_destroy(&usrdatum->range.level[0].cat); | 
 | 686 | 		ebitmap_destroy(&usrdatum->range.level[1].cat); | 
 | 687 | 		ebitmap_destroy(&usrdatum->dfltlevel.cat); | 
 | 688 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | 	kfree(datum); | 
 | 690 | 	return 0; | 
 | 691 | } | 
 | 692 |  | 
 | 693 | static int sens_destroy(void *key, void *datum, void *p) | 
 | 694 | { | 
 | 695 | 	struct level_datum *levdatum; | 
 | 696 |  | 
 | 697 | 	kfree(key); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 698 | 	if (datum) { | 
 | 699 | 		levdatum = datum; | 
 | 700 | 		ebitmap_destroy(&levdatum->level->cat); | 
 | 701 | 		kfree(levdatum->level); | 
 | 702 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | 	kfree(datum); | 
 | 704 | 	return 0; | 
 | 705 | } | 
 | 706 |  | 
 | 707 | static int cat_destroy(void *key, void *datum, void *p) | 
 | 708 | { | 
 | 709 | 	kfree(key); | 
 | 710 | 	kfree(datum); | 
 | 711 | 	return 0; | 
 | 712 | } | 
 | 713 |  | 
 | 714 | static int (*destroy_f[SYM_NUM]) (void *key, void *datum, void *datap) = | 
 | 715 | { | 
 | 716 | 	common_destroy, | 
| James Morris | 6cbda6b | 2006-11-29 16:50:27 -0500 | [diff] [blame] | 717 | 	cls_destroy, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | 	role_destroy, | 
 | 719 | 	type_destroy, | 
 | 720 | 	user_destroy, | 
 | 721 | 	cond_destroy_bool, | 
 | 722 | 	sens_destroy, | 
 | 723 | 	cat_destroy, | 
 | 724 | }; | 
 | 725 |  | 
| Eric Paris | 2463c26d | 2011-04-28 15:11:21 -0400 | [diff] [blame] | 726 | static int filenametr_destroy(void *key, void *datum, void *p) | 
 | 727 | { | 
 | 728 | 	struct filename_trans *ft = key; | 
 | 729 | 	kfree(ft->name); | 
 | 730 | 	kfree(key); | 
 | 731 | 	kfree(datum); | 
 | 732 | 	cond_resched(); | 
 | 733 | 	return 0; | 
 | 734 | } | 
 | 735 |  | 
| Stephen Smalley | 2f3e82d | 2010-01-07 15:55:16 -0500 | [diff] [blame] | 736 | static int range_tr_destroy(void *key, void *datum, void *p) | 
 | 737 | { | 
 | 738 | 	struct mls_range *rt = datum; | 
 | 739 | 	kfree(key); | 
 | 740 | 	ebitmap_destroy(&rt->level[0].cat); | 
 | 741 | 	ebitmap_destroy(&rt->level[1].cat); | 
 | 742 | 	kfree(datum); | 
 | 743 | 	cond_resched(); | 
 | 744 | 	return 0; | 
 | 745 | } | 
 | 746 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | static void ocontext_destroy(struct ocontext *c, int i) | 
 | 748 | { | 
| Eric Paris | d1b4354 | 2010-07-21 12:50:57 -0400 | [diff] [blame] | 749 | 	if (!c) | 
 | 750 | 		return; | 
 | 751 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | 	context_destroy(&c->context[0]); | 
 | 753 | 	context_destroy(&c->context[1]); | 
 | 754 | 	if (i == OCON_ISID || i == OCON_FS || | 
 | 755 | 	    i == OCON_NETIF || i == OCON_FSUSE) | 
 | 756 | 		kfree(c->u.name); | 
 | 757 | 	kfree(c); | 
 | 758 | } | 
 | 759 |  | 
 | 760 | /* | 
 | 761 |  * Free any memory allocated by a policy database structure. | 
 | 762 |  */ | 
 | 763 | void policydb_destroy(struct policydb *p) | 
 | 764 | { | 
 | 765 | 	struct ocontext *c, *ctmp; | 
 | 766 | 	struct genfs *g, *gtmp; | 
 | 767 | 	int i; | 
| Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 768 | 	struct role_allow *ra, *lra = NULL; | 
 | 769 | 	struct role_trans *tr, *ltr = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 |  | 
 | 771 | 	for (i = 0; i < SYM_NUM; i++) { | 
| Eric Paris | 9dc9978 | 2007-06-04 17:41:22 -0400 | [diff] [blame] | 772 | 		cond_resched(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | 		hashtab_map(p->symtab[i].table, destroy_f[i], NULL); | 
 | 774 | 		hashtab_destroy(p->symtab[i].table); | 
 | 775 | 	} | 
 | 776 |  | 
| Eric Paris | ac76c05 | 2010-11-29 15:47:09 -0500 | [diff] [blame] | 777 | 	for (i = 0; i < SYM_NUM; i++) { | 
 | 778 | 		if (p->sym_val_to_name[i]) | 
 | 779 | 			flex_array_free(p->sym_val_to_name[i]); | 
 | 780 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 |  | 
| Jesper Juhl | 9a5f04b | 2005-06-25 14:58:51 -0700 | [diff] [blame] | 782 | 	kfree(p->class_val_to_struct); | 
 | 783 | 	kfree(p->role_val_to_struct); | 
 | 784 | 	kfree(p->user_val_to_struct); | 
| Eric Paris | 23bdecb | 2010-11-29 15:47:09 -0500 | [diff] [blame] | 785 | 	if (p->type_val_to_struct_array) | 
 | 786 | 		flex_array_free(p->type_val_to_struct_array); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 |  | 
 | 788 | 	avtab_destroy(&p->te_avtab); | 
 | 789 |  | 
 | 790 | 	for (i = 0; i < OCON_NUM; i++) { | 
| Eric Paris | 9dc9978 | 2007-06-04 17:41:22 -0400 | [diff] [blame] | 791 | 		cond_resched(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | 		c = p->ocontexts[i]; | 
 | 793 | 		while (c) { | 
 | 794 | 			ctmp = c; | 
 | 795 | 			c = c->next; | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 796 | 			ocontext_destroy(ctmp, i); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | 		} | 
| Chad Sellers | 6e8c751 | 2006-10-06 16:09:52 -0400 | [diff] [blame] | 798 | 		p->ocontexts[i] = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | 	} | 
 | 800 |  | 
 | 801 | 	g = p->genfs; | 
 | 802 | 	while (g) { | 
| Eric Paris | 9dc9978 | 2007-06-04 17:41:22 -0400 | [diff] [blame] | 803 | 		cond_resched(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | 		kfree(g->fstype); | 
 | 805 | 		c = g->head; | 
 | 806 | 		while (c) { | 
 | 807 | 			ctmp = c; | 
 | 808 | 			c = c->next; | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 809 | 			ocontext_destroy(ctmp, OCON_FSUSE); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | 		} | 
 | 811 | 		gtmp = g; | 
 | 812 | 		g = g->next; | 
 | 813 | 		kfree(gtmp); | 
 | 814 | 	} | 
| Chad Sellers | 6e8c751 | 2006-10-06 16:09:52 -0400 | [diff] [blame] | 815 | 	p->genfs = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 |  | 
 | 817 | 	cond_policydb_destroy(p); | 
 | 818 |  | 
| Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 819 | 	for (tr = p->role_tr; tr; tr = tr->next) { | 
| Eric Paris | 9dc9978 | 2007-06-04 17:41:22 -0400 | [diff] [blame] | 820 | 		cond_resched(); | 
| Jesper Juhl | a7f988b | 2005-11-07 01:01:35 -0800 | [diff] [blame] | 821 | 		kfree(ltr); | 
| Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 822 | 		ltr = tr; | 
 | 823 | 	} | 
| Jesper Juhl | a7f988b | 2005-11-07 01:01:35 -0800 | [diff] [blame] | 824 | 	kfree(ltr); | 
| Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 825 |  | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 826 | 	for (ra = p->role_allow; ra; ra = ra->next) { | 
| Eric Paris | 9dc9978 | 2007-06-04 17:41:22 -0400 | [diff] [blame] | 827 | 		cond_resched(); | 
| Jesper Juhl | a7f988b | 2005-11-07 01:01:35 -0800 | [diff] [blame] | 828 | 		kfree(lra); | 
| Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 829 | 		lra = ra; | 
 | 830 | 	} | 
| Jesper Juhl | a7f988b | 2005-11-07 01:01:35 -0800 | [diff] [blame] | 831 | 	kfree(lra); | 
| Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 832 |  | 
| Eric Paris | 2463c26d | 2011-04-28 15:11:21 -0400 | [diff] [blame] | 833 | 	hashtab_map(p->filename_trans, filenametr_destroy, NULL); | 
 | 834 | 	hashtab_destroy(p->filename_trans); | 
 | 835 |  | 
| Stephen Smalley | 2f3e82d | 2010-01-07 15:55:16 -0500 | [diff] [blame] | 836 | 	hashtab_map(p->range_tr, range_tr_destroy, NULL); | 
 | 837 | 	hashtab_destroy(p->range_tr); | 
| Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 838 |  | 
| Eric Paris | 6371dcd | 2010-07-29 23:02:34 -0400 | [diff] [blame] | 839 | 	if (p->type_attr_map_array) { | 
 | 840 | 		for (i = 0; i < p->p_types.nprim; i++) { | 
 | 841 | 			struct ebitmap *e; | 
 | 842 |  | 
 | 843 | 			e = flex_array_get(p->type_attr_map_array, i); | 
 | 844 | 			if (!e) | 
 | 845 | 				continue; | 
 | 846 | 			ebitmap_destroy(e); | 
 | 847 | 		} | 
 | 848 | 		flex_array_free(p->type_attr_map_array); | 
| Stephen Smalley | 282c1f5 | 2005-10-23 12:57:15 -0700 | [diff] [blame] | 849 | 	} | 
| Eric Paris | 652bb9b | 2011-02-01 11:05:40 -0500 | [diff] [blame] | 850 |  | 
| Eric Paris | 03a4c01 | 2011-04-28 15:11:21 -0400 | [diff] [blame] | 851 | 	ebitmap_destroy(&p->filename_trans_ttypes); | 
| Paul Moore | 3bb56b2 | 2008-01-29 08:38:19 -0500 | [diff] [blame] | 852 | 	ebitmap_destroy(&p->policycaps); | 
| Eric Paris | 64dbf07 | 2008-03-31 12:17:33 +1100 | [diff] [blame] | 853 | 	ebitmap_destroy(&p->permissive_map); | 
| Eric Paris | 3f12070 | 2007-09-21 14:37:10 -0400 | [diff] [blame] | 854 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | 	return; | 
 | 856 | } | 
 | 857 |  | 
 | 858 | /* | 
 | 859 |  * Load the initial SIDs specified in a policy database | 
 | 860 |  * structure into a SID table. | 
 | 861 |  */ | 
 | 862 | int policydb_load_isids(struct policydb *p, struct sidtab *s) | 
 | 863 | { | 
 | 864 | 	struct ocontext *head, *c; | 
 | 865 | 	int rc; | 
 | 866 |  | 
 | 867 | 	rc = sidtab_init(s); | 
 | 868 | 	if (rc) { | 
| James Morris | 454d972 | 2008-02-26 20:42:02 +1100 | [diff] [blame] | 869 | 		printk(KERN_ERR "SELinux:  out of memory on SID table init\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | 		goto out; | 
 | 871 | 	} | 
 | 872 |  | 
 | 873 | 	head = p->ocontexts[OCON_ISID]; | 
 | 874 | 	for (c = head; c; c = c->next) { | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 875 | 		rc = -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | 		if (!c->context[0].user) { | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 877 | 			printk(KERN_ERR "SELinux:  SID %s was never defined.\n", | 
 | 878 | 				c->u.name); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | 			goto out; | 
 | 880 | 		} | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 881 |  | 
 | 882 | 		rc = sidtab_insert(s, c->sid[0], &c->context[0]); | 
 | 883 | 		if (rc) { | 
 | 884 | 			printk(KERN_ERR "SELinux:  unable to load initial SID %s.\n", | 
 | 885 | 				c->u.name); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | 			goto out; | 
 | 887 | 		} | 
 | 888 | 	} | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 889 | 	rc = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | out: | 
 | 891 | 	return rc; | 
 | 892 | } | 
 | 893 |  | 
| Stephen Smalley | 45e5421 | 2007-11-07 10:08:00 -0500 | [diff] [blame] | 894 | int policydb_class_isvalid(struct policydb *p, unsigned int class) | 
 | 895 | { | 
 | 896 | 	if (!class || class > p->p_classes.nprim) | 
 | 897 | 		return 0; | 
 | 898 | 	return 1; | 
 | 899 | } | 
 | 900 |  | 
 | 901 | int policydb_role_isvalid(struct policydb *p, unsigned int role) | 
 | 902 | { | 
 | 903 | 	if (!role || role > p->p_roles.nprim) | 
 | 904 | 		return 0; | 
 | 905 | 	return 1; | 
 | 906 | } | 
 | 907 |  | 
 | 908 | int policydb_type_isvalid(struct policydb *p, unsigned int type) | 
 | 909 | { | 
 | 910 | 	if (!type || type > p->p_types.nprim) | 
 | 911 | 		return 0; | 
 | 912 | 	return 1; | 
 | 913 | } | 
 | 914 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | /* | 
 | 916 |  * Return 1 if the fields in the security context | 
 | 917 |  * structure `c' are valid.  Return 0 otherwise. | 
 | 918 |  */ | 
 | 919 | int policydb_context_isvalid(struct policydb *p, struct context *c) | 
 | 920 | { | 
 | 921 | 	struct role_datum *role; | 
 | 922 | 	struct user_datum *usrdatum; | 
 | 923 |  | 
 | 924 | 	if (!c->role || c->role > p->p_roles.nprim) | 
 | 925 | 		return 0; | 
 | 926 |  | 
 | 927 | 	if (!c->user || c->user > p->p_users.nprim) | 
 | 928 | 		return 0; | 
 | 929 |  | 
 | 930 | 	if (!c->type || c->type > p->p_types.nprim) | 
 | 931 | 		return 0; | 
 | 932 |  | 
 | 933 | 	if (c->role != OBJECT_R_VAL) { | 
 | 934 | 		/* | 
 | 935 | 		 * Role must be authorized for the type. | 
 | 936 | 		 */ | 
 | 937 | 		role = p->role_val_to_struct[c->role - 1]; | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 938 | 		if (!ebitmap_get_bit(&role->types, c->type - 1)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | 			/* role may not be associated with type */ | 
 | 940 | 			return 0; | 
 | 941 |  | 
 | 942 | 		/* | 
 | 943 | 		 * User must be authorized for the role. | 
 | 944 | 		 */ | 
 | 945 | 		usrdatum = p->user_val_to_struct[c->user - 1]; | 
 | 946 | 		if (!usrdatum) | 
 | 947 | 			return 0; | 
 | 948 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 949 | 		if (!ebitmap_get_bit(&usrdatum->roles, c->role - 1)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | 			/* user may not be associated with role */ | 
 | 951 | 			return 0; | 
 | 952 | 	} | 
 | 953 |  | 
 | 954 | 	if (!mls_context_isvalid(p, c)) | 
 | 955 | 		return 0; | 
 | 956 |  | 
 | 957 | 	return 1; | 
 | 958 | } | 
 | 959 |  | 
 | 960 | /* | 
 | 961 |  * Read a MLS range structure from a policydb binary | 
 | 962 |  * representation file. | 
 | 963 |  */ | 
 | 964 | static int mls_read_range_helper(struct mls_range *r, void *fp) | 
 | 965 | { | 
| Alexey Dobriyan | b5bf6c5 | 2005-09-03 15:55:17 -0700 | [diff] [blame] | 966 | 	__le32 buf[2]; | 
 | 967 | 	u32 items; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | 	int rc; | 
 | 969 |  | 
 | 970 | 	rc = next_entry(buf, fp, sizeof(u32)); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 971 | 	if (rc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | 		goto out; | 
 | 973 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 974 | 	rc = -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | 	items = le32_to_cpu(buf[0]); | 
 | 976 | 	if (items > ARRAY_SIZE(buf)) { | 
| James Morris | 454d972 | 2008-02-26 20:42:02 +1100 | [diff] [blame] | 977 | 		printk(KERN_ERR "SELinux: mls:  range overflow\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 978 | 		goto out; | 
 | 979 | 	} | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 980 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | 	rc = next_entry(buf, fp, sizeof(u32) * items); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 982 | 	if (rc) { | 
| James Morris | 454d972 | 2008-02-26 20:42:02 +1100 | [diff] [blame] | 983 | 		printk(KERN_ERR "SELinux: mls:  truncated range\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | 		goto out; | 
 | 985 | 	} | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 986 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 987 | 	r->level[0].sens = le32_to_cpu(buf[0]); | 
 | 988 | 	if (items > 1) | 
 | 989 | 		r->level[1].sens = le32_to_cpu(buf[1]); | 
 | 990 | 	else | 
 | 991 | 		r->level[1].sens = r->level[0].sens; | 
 | 992 |  | 
 | 993 | 	rc = ebitmap_read(&r->level[0].cat, fp); | 
 | 994 | 	if (rc) { | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 995 | 		printk(KERN_ERR "SELinux: mls:  error reading low categories\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 996 | 		goto out; | 
 | 997 | 	} | 
 | 998 | 	if (items > 1) { | 
 | 999 | 		rc = ebitmap_read(&r->level[1].cat, fp); | 
 | 1000 | 		if (rc) { | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1001 | 			printk(KERN_ERR "SELinux: mls:  error reading high categories\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1002 | 			goto bad_high; | 
 | 1003 | 		} | 
 | 1004 | 	} else { | 
 | 1005 | 		rc = ebitmap_cpy(&r->level[1].cat, &r->level[0].cat); | 
 | 1006 | 		if (rc) { | 
| James Morris | 454d972 | 2008-02-26 20:42:02 +1100 | [diff] [blame] | 1007 | 			printk(KERN_ERR "SELinux: mls:  out of memory\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1008 | 			goto bad_high; | 
 | 1009 | 		} | 
 | 1010 | 	} | 
 | 1011 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1012 | 	return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1013 | bad_high: | 
 | 1014 | 	ebitmap_destroy(&r->level[0].cat); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1015 | out: | 
 | 1016 | 	return rc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | } | 
 | 1018 |  | 
 | 1019 | /* | 
 | 1020 |  * Read and validate a security context structure | 
 | 1021 |  * from a policydb binary representation file. | 
 | 1022 |  */ | 
 | 1023 | static int context_read_and_validate(struct context *c, | 
 | 1024 | 				     struct policydb *p, | 
 | 1025 | 				     void *fp) | 
 | 1026 | { | 
| Alexey Dobriyan | b5bf6c5 | 2005-09-03 15:55:17 -0700 | [diff] [blame] | 1027 | 	__le32 buf[3]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1028 | 	int rc; | 
 | 1029 |  | 
 | 1030 | 	rc = next_entry(buf, fp, sizeof buf); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1031 | 	if (rc) { | 
| James Morris | 454d972 | 2008-02-26 20:42:02 +1100 | [diff] [blame] | 1032 | 		printk(KERN_ERR "SELinux: context truncated\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1033 | 		goto out; | 
 | 1034 | 	} | 
 | 1035 | 	c->user = le32_to_cpu(buf[0]); | 
 | 1036 | 	c->role = le32_to_cpu(buf[1]); | 
 | 1037 | 	c->type = le32_to_cpu(buf[2]); | 
 | 1038 | 	if (p->policyvers >= POLICYDB_VERSION_MLS) { | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1039 | 		rc = mls_read_range_helper(&c->range, fp); | 
 | 1040 | 		if (rc) { | 
 | 1041 | 			printk(KERN_ERR "SELinux: error reading MLS range of context\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1042 | 			goto out; | 
 | 1043 | 		} | 
 | 1044 | 	} | 
 | 1045 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1046 | 	rc = -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1047 | 	if (!policydb_context_isvalid(p, c)) { | 
| James Morris | 454d972 | 2008-02-26 20:42:02 +1100 | [diff] [blame] | 1048 | 		printk(KERN_ERR "SELinux:  invalid security context\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | 		context_destroy(c); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1050 | 		goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | 	} | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1052 | 	rc = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | out: | 
 | 1054 | 	return rc; | 
 | 1055 | } | 
 | 1056 |  | 
 | 1057 | /* | 
 | 1058 |  * The following *_read functions are used to | 
 | 1059 |  * read the symbol data from a policy database | 
 | 1060 |  * binary representation file. | 
 | 1061 |  */ | 
 | 1062 |  | 
 | 1063 | static int perm_read(struct policydb *p, struct hashtab *h, void *fp) | 
 | 1064 | { | 
 | 1065 | 	char *key = NULL; | 
 | 1066 | 	struct perm_datum *perdatum; | 
 | 1067 | 	int rc; | 
| Alexey Dobriyan | b5bf6c5 | 2005-09-03 15:55:17 -0700 | [diff] [blame] | 1068 | 	__le32 buf[2]; | 
 | 1069 | 	u32 len; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1070 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1071 | 	rc = -ENOMEM; | 
| James Morris | 89d155e | 2005-10-30 14:59:21 -0800 | [diff] [blame] | 1072 | 	perdatum = kzalloc(sizeof(*perdatum), GFP_KERNEL); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1073 | 	if (!perdatum) | 
 | 1074 | 		goto bad; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1075 |  | 
 | 1076 | 	rc = next_entry(buf, fp, sizeof buf); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1077 | 	if (rc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1078 | 		goto bad; | 
 | 1079 |  | 
 | 1080 | 	len = le32_to_cpu(buf[0]); | 
 | 1081 | 	perdatum->value = le32_to_cpu(buf[1]); | 
 | 1082 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1083 | 	rc = -ENOMEM; | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 1084 | 	key = kmalloc(len + 1, GFP_KERNEL); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1085 | 	if (!key) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1086 | 		goto bad; | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1087 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1088 | 	rc = next_entry(key, fp, len); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1089 | 	if (rc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1090 | 		goto bad; | 
| Vesa-Matti J Kari | df4ea86 | 2008-07-20 23:57:01 +0300 | [diff] [blame] | 1091 | 	key[len] = '\0'; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1092 |  | 
 | 1093 | 	rc = hashtab_insert(h, key, perdatum); | 
 | 1094 | 	if (rc) | 
 | 1095 | 		goto bad; | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1096 |  | 
 | 1097 | 	return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | bad: | 
 | 1099 | 	perm_destroy(key, perdatum, NULL); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1100 | 	return rc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1101 | } | 
 | 1102 |  | 
 | 1103 | static int common_read(struct policydb *p, struct hashtab *h, void *fp) | 
 | 1104 | { | 
 | 1105 | 	char *key = NULL; | 
 | 1106 | 	struct common_datum *comdatum; | 
| Alexey Dobriyan | b5bf6c5 | 2005-09-03 15:55:17 -0700 | [diff] [blame] | 1107 | 	__le32 buf[4]; | 
 | 1108 | 	u32 len, nel; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1109 | 	int i, rc; | 
 | 1110 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1111 | 	rc = -ENOMEM; | 
| James Morris | 89d155e | 2005-10-30 14:59:21 -0800 | [diff] [blame] | 1112 | 	comdatum = kzalloc(sizeof(*comdatum), GFP_KERNEL); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1113 | 	if (!comdatum) | 
 | 1114 | 		goto bad; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1115 |  | 
 | 1116 | 	rc = next_entry(buf, fp, sizeof buf); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1117 | 	if (rc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1118 | 		goto bad; | 
 | 1119 |  | 
 | 1120 | 	len = le32_to_cpu(buf[0]); | 
 | 1121 | 	comdatum->value = le32_to_cpu(buf[1]); | 
 | 1122 |  | 
 | 1123 | 	rc = symtab_init(&comdatum->permissions, PERM_SYMTAB_SIZE); | 
 | 1124 | 	if (rc) | 
 | 1125 | 		goto bad; | 
 | 1126 | 	comdatum->permissions.nprim = le32_to_cpu(buf[2]); | 
 | 1127 | 	nel = le32_to_cpu(buf[3]); | 
 | 1128 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1129 | 	rc = -ENOMEM; | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 1130 | 	key = kmalloc(len + 1, GFP_KERNEL); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1131 | 	if (!key) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1132 | 		goto bad; | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1133 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1134 | 	rc = next_entry(key, fp, len); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1135 | 	if (rc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1136 | 		goto bad; | 
| Vesa-Matti J Kari | df4ea86 | 2008-07-20 23:57:01 +0300 | [diff] [blame] | 1137 | 	key[len] = '\0'; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1138 |  | 
 | 1139 | 	for (i = 0; i < nel; i++) { | 
 | 1140 | 		rc = perm_read(p, comdatum->permissions.table, fp); | 
 | 1141 | 		if (rc) | 
 | 1142 | 			goto bad; | 
 | 1143 | 	} | 
 | 1144 |  | 
 | 1145 | 	rc = hashtab_insert(h, key, comdatum); | 
 | 1146 | 	if (rc) | 
 | 1147 | 		goto bad; | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1148 | 	return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1149 | bad: | 
 | 1150 | 	common_destroy(key, comdatum, NULL); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1151 | 	return rc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1152 | } | 
 | 1153 |  | 
 | 1154 | static int read_cons_helper(struct constraint_node **nodep, int ncons, | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 1155 | 			    int allowxtarget, void *fp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1156 | { | 
 | 1157 | 	struct constraint_node *c, *lc; | 
 | 1158 | 	struct constraint_expr *e, *le; | 
| Alexey Dobriyan | b5bf6c5 | 2005-09-03 15:55:17 -0700 | [diff] [blame] | 1159 | 	__le32 buf[3]; | 
 | 1160 | 	u32 nexpr; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1161 | 	int rc, i, j, depth; | 
 | 1162 |  | 
 | 1163 | 	lc = NULL; | 
 | 1164 | 	for (i = 0; i < ncons; i++) { | 
| James Morris | 89d155e | 2005-10-30 14:59:21 -0800 | [diff] [blame] | 1165 | 		c = kzalloc(sizeof(*c), GFP_KERNEL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1166 | 		if (!c) | 
 | 1167 | 			return -ENOMEM; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1168 |  | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 1169 | 		if (lc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1170 | 			lc->next = c; | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 1171 | 		else | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1172 | 			*nodep = c; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1173 |  | 
 | 1174 | 		rc = next_entry(buf, fp, (sizeof(u32) * 2)); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1175 | 		if (rc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1176 | 			return rc; | 
 | 1177 | 		c->permissions = le32_to_cpu(buf[0]); | 
 | 1178 | 		nexpr = le32_to_cpu(buf[1]); | 
 | 1179 | 		le = NULL; | 
 | 1180 | 		depth = -1; | 
 | 1181 | 		for (j = 0; j < nexpr; j++) { | 
| James Morris | 89d155e | 2005-10-30 14:59:21 -0800 | [diff] [blame] | 1182 | 			e = kzalloc(sizeof(*e), GFP_KERNEL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1183 | 			if (!e) | 
 | 1184 | 				return -ENOMEM; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1185 |  | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 1186 | 			if (le) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1187 | 				le->next = e; | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 1188 | 			else | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1189 | 				c->expr = e; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1190 |  | 
 | 1191 | 			rc = next_entry(buf, fp, (sizeof(u32) * 3)); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1192 | 			if (rc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1193 | 				return rc; | 
 | 1194 | 			e->expr_type = le32_to_cpu(buf[0]); | 
 | 1195 | 			e->attr = le32_to_cpu(buf[1]); | 
 | 1196 | 			e->op = le32_to_cpu(buf[2]); | 
 | 1197 |  | 
 | 1198 | 			switch (e->expr_type) { | 
 | 1199 | 			case CEXPR_NOT: | 
 | 1200 | 				if (depth < 0) | 
 | 1201 | 					return -EINVAL; | 
 | 1202 | 				break; | 
 | 1203 | 			case CEXPR_AND: | 
 | 1204 | 			case CEXPR_OR: | 
 | 1205 | 				if (depth < 1) | 
 | 1206 | 					return -EINVAL; | 
 | 1207 | 				depth--; | 
 | 1208 | 				break; | 
 | 1209 | 			case CEXPR_ATTR: | 
 | 1210 | 				if (depth == (CEXPR_MAXDEPTH - 1)) | 
 | 1211 | 					return -EINVAL; | 
 | 1212 | 				depth++; | 
 | 1213 | 				break; | 
 | 1214 | 			case CEXPR_NAMES: | 
 | 1215 | 				if (!allowxtarget && (e->attr & CEXPR_XTARGET)) | 
 | 1216 | 					return -EINVAL; | 
 | 1217 | 				if (depth == (CEXPR_MAXDEPTH - 1)) | 
 | 1218 | 					return -EINVAL; | 
 | 1219 | 				depth++; | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1220 | 				rc = ebitmap_read(&e->names, fp); | 
 | 1221 | 				if (rc) | 
 | 1222 | 					return rc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1223 | 				break; | 
 | 1224 | 			default: | 
 | 1225 | 				return -EINVAL; | 
 | 1226 | 			} | 
 | 1227 | 			le = e; | 
 | 1228 | 		} | 
 | 1229 | 		if (depth != 0) | 
 | 1230 | 			return -EINVAL; | 
 | 1231 | 		lc = c; | 
 | 1232 | 	} | 
 | 1233 |  | 
 | 1234 | 	return 0; | 
 | 1235 | } | 
 | 1236 |  | 
 | 1237 | static int class_read(struct policydb *p, struct hashtab *h, void *fp) | 
 | 1238 | { | 
 | 1239 | 	char *key = NULL; | 
 | 1240 | 	struct class_datum *cladatum; | 
| Alexey Dobriyan | b5bf6c5 | 2005-09-03 15:55:17 -0700 | [diff] [blame] | 1241 | 	__le32 buf[6]; | 
 | 1242 | 	u32 len, len2, ncons, nel; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1243 | 	int i, rc; | 
 | 1244 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1245 | 	rc = -ENOMEM; | 
| James Morris | 89d155e | 2005-10-30 14:59:21 -0800 | [diff] [blame] | 1246 | 	cladatum = kzalloc(sizeof(*cladatum), GFP_KERNEL); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1247 | 	if (!cladatum) | 
 | 1248 | 		goto bad; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1249 |  | 
 | 1250 | 	rc = next_entry(buf, fp, sizeof(u32)*6); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1251 | 	if (rc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1252 | 		goto bad; | 
 | 1253 |  | 
 | 1254 | 	len = le32_to_cpu(buf[0]); | 
 | 1255 | 	len2 = le32_to_cpu(buf[1]); | 
 | 1256 | 	cladatum->value = le32_to_cpu(buf[2]); | 
 | 1257 |  | 
 | 1258 | 	rc = symtab_init(&cladatum->permissions, PERM_SYMTAB_SIZE); | 
 | 1259 | 	if (rc) | 
 | 1260 | 		goto bad; | 
 | 1261 | 	cladatum->permissions.nprim = le32_to_cpu(buf[3]); | 
 | 1262 | 	nel = le32_to_cpu(buf[4]); | 
 | 1263 |  | 
 | 1264 | 	ncons = le32_to_cpu(buf[5]); | 
 | 1265 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1266 | 	rc = -ENOMEM; | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 1267 | 	key = kmalloc(len + 1, GFP_KERNEL); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1268 | 	if (!key) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1269 | 		goto bad; | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1270 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1271 | 	rc = next_entry(key, fp, len); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1272 | 	if (rc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1273 | 		goto bad; | 
| Vesa-Matti J Kari | df4ea86 | 2008-07-20 23:57:01 +0300 | [diff] [blame] | 1274 | 	key[len] = '\0'; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1275 |  | 
 | 1276 | 	if (len2) { | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1277 | 		rc = -ENOMEM; | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 1278 | 		cladatum->comkey = kmalloc(len2 + 1, GFP_KERNEL); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1279 | 		if (!cladatum->comkey) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1280 | 			goto bad; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1281 | 		rc = next_entry(cladatum->comkey, fp, len2); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1282 | 		if (rc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1283 | 			goto bad; | 
| Vesa-Matti J Kari | df4ea86 | 2008-07-20 23:57:01 +0300 | [diff] [blame] | 1284 | 		cladatum->comkey[len2] = '\0'; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1285 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1286 | 		rc = -EINVAL; | 
 | 1287 | 		cladatum->comdatum = hashtab_search(p->p_commons.table, cladatum->comkey); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1288 | 		if (!cladatum->comdatum) { | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1289 | 			printk(KERN_ERR "SELinux:  unknown common %s\n", cladatum->comkey); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1290 | 			goto bad; | 
 | 1291 | 		} | 
 | 1292 | 	} | 
 | 1293 | 	for (i = 0; i < nel; i++) { | 
 | 1294 | 		rc = perm_read(p, cladatum->permissions.table, fp); | 
 | 1295 | 		if (rc) | 
 | 1296 | 			goto bad; | 
 | 1297 | 	} | 
 | 1298 |  | 
 | 1299 | 	rc = read_cons_helper(&cladatum->constraints, ncons, 0, fp); | 
 | 1300 | 	if (rc) | 
 | 1301 | 		goto bad; | 
 | 1302 |  | 
 | 1303 | 	if (p->policyvers >= POLICYDB_VERSION_VALIDATETRANS) { | 
 | 1304 | 		/* grab the validatetrans rules */ | 
 | 1305 | 		rc = next_entry(buf, fp, sizeof(u32)); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1306 | 		if (rc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1307 | 			goto bad; | 
 | 1308 | 		ncons = le32_to_cpu(buf[0]); | 
 | 1309 | 		rc = read_cons_helper(&cladatum->validatetrans, ncons, 1, fp); | 
 | 1310 | 		if (rc) | 
 | 1311 | 			goto bad; | 
 | 1312 | 	} | 
 | 1313 |  | 
| Eric Paris | d076bc7 | 2012-03-20 14:35:12 -0400 | [diff] [blame^] | 1314 | 	if (p->policyvers >= POLICYDB_VERSION_NEW_OBJECT_DEFAULTS) { | 
 | 1315 | 		rc = next_entry(buf, fp, sizeof(u32) * 3); | 
 | 1316 | 		if (rc) | 
 | 1317 | 			goto bad; | 
 | 1318 |  | 
 | 1319 | 		cladatum->default_user = le32_to_cpu(buf[0]); | 
 | 1320 | 		cladatum->default_role = le32_to_cpu(buf[1]); | 
 | 1321 | 		cladatum->default_range = le32_to_cpu(buf[2]); | 
 | 1322 | 	} | 
 | 1323 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1324 | 	rc = hashtab_insert(h, key, cladatum); | 
 | 1325 | 	if (rc) | 
 | 1326 | 		goto bad; | 
 | 1327 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1328 | 	return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1329 | bad: | 
| James Morris | 6cbda6b | 2006-11-29 16:50:27 -0500 | [diff] [blame] | 1330 | 	cls_destroy(key, cladatum, NULL); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1331 | 	return rc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1332 | } | 
 | 1333 |  | 
 | 1334 | static int role_read(struct policydb *p, struct hashtab *h, void *fp) | 
 | 1335 | { | 
 | 1336 | 	char *key = NULL; | 
 | 1337 | 	struct role_datum *role; | 
| KaiGai Kohei | d9250de | 2008-08-28 16:35:57 +0900 | [diff] [blame] | 1338 | 	int rc, to_read = 2; | 
 | 1339 | 	__le32 buf[3]; | 
| Alexey Dobriyan | b5bf6c5 | 2005-09-03 15:55:17 -0700 | [diff] [blame] | 1340 | 	u32 len; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1341 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1342 | 	rc = -ENOMEM; | 
| James Morris | 89d155e | 2005-10-30 14:59:21 -0800 | [diff] [blame] | 1343 | 	role = kzalloc(sizeof(*role), GFP_KERNEL); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1344 | 	if (!role) | 
 | 1345 | 		goto bad; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1346 |  | 
| KaiGai Kohei | d9250de | 2008-08-28 16:35:57 +0900 | [diff] [blame] | 1347 | 	if (p->policyvers >= POLICYDB_VERSION_BOUNDARY) | 
 | 1348 | 		to_read = 3; | 
 | 1349 |  | 
 | 1350 | 	rc = next_entry(buf, fp, sizeof(buf[0]) * to_read); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1351 | 	if (rc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1352 | 		goto bad; | 
 | 1353 |  | 
 | 1354 | 	len = le32_to_cpu(buf[0]); | 
 | 1355 | 	role->value = le32_to_cpu(buf[1]); | 
| KaiGai Kohei | d9250de | 2008-08-28 16:35:57 +0900 | [diff] [blame] | 1356 | 	if (p->policyvers >= POLICYDB_VERSION_BOUNDARY) | 
 | 1357 | 		role->bounds = le32_to_cpu(buf[2]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1358 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1359 | 	rc = -ENOMEM; | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 1360 | 	key = kmalloc(len + 1, GFP_KERNEL); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1361 | 	if (!key) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1362 | 		goto bad; | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1363 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1364 | 	rc = next_entry(key, fp, len); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1365 | 	if (rc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1366 | 		goto bad; | 
| Vesa-Matti J Kari | df4ea86 | 2008-07-20 23:57:01 +0300 | [diff] [blame] | 1367 | 	key[len] = '\0'; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1368 |  | 
 | 1369 | 	rc = ebitmap_read(&role->dominates, fp); | 
 | 1370 | 	if (rc) | 
 | 1371 | 		goto bad; | 
 | 1372 |  | 
 | 1373 | 	rc = ebitmap_read(&role->types, fp); | 
 | 1374 | 	if (rc) | 
 | 1375 | 		goto bad; | 
 | 1376 |  | 
 | 1377 | 	if (strcmp(key, OBJECT_R) == 0) { | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1378 | 		rc = -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1379 | 		if (role->value != OBJECT_R_VAL) { | 
| Eric Paris | 744ba35 | 2008-04-17 11:52:44 -0400 | [diff] [blame] | 1380 | 			printk(KERN_ERR "SELinux: Role %s has wrong value %d\n", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1381 | 			       OBJECT_R, role->value); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1382 | 			goto bad; | 
 | 1383 | 		} | 
 | 1384 | 		rc = 0; | 
 | 1385 | 		goto bad; | 
 | 1386 | 	} | 
 | 1387 |  | 
 | 1388 | 	rc = hashtab_insert(h, key, role); | 
 | 1389 | 	if (rc) | 
 | 1390 | 		goto bad; | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1391 | 	return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1392 | bad: | 
 | 1393 | 	role_destroy(key, role, NULL); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1394 | 	return rc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1395 | } | 
 | 1396 |  | 
 | 1397 | static int type_read(struct policydb *p, struct hashtab *h, void *fp) | 
 | 1398 | { | 
 | 1399 | 	char *key = NULL; | 
 | 1400 | 	struct type_datum *typdatum; | 
| KaiGai Kohei | d9250de | 2008-08-28 16:35:57 +0900 | [diff] [blame] | 1401 | 	int rc, to_read = 3; | 
 | 1402 | 	__le32 buf[4]; | 
| Alexey Dobriyan | b5bf6c5 | 2005-09-03 15:55:17 -0700 | [diff] [blame] | 1403 | 	u32 len; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1404 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1405 | 	rc = -ENOMEM; | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 1406 | 	typdatum = kzalloc(sizeof(*typdatum), GFP_KERNEL); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1407 | 	if (!typdatum) | 
 | 1408 | 		goto bad; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1409 |  | 
| KaiGai Kohei | d9250de | 2008-08-28 16:35:57 +0900 | [diff] [blame] | 1410 | 	if (p->policyvers >= POLICYDB_VERSION_BOUNDARY) | 
 | 1411 | 		to_read = 4; | 
 | 1412 |  | 
 | 1413 | 	rc = next_entry(buf, fp, sizeof(buf[0]) * to_read); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1414 | 	if (rc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1415 | 		goto bad; | 
 | 1416 |  | 
 | 1417 | 	len = le32_to_cpu(buf[0]); | 
 | 1418 | 	typdatum->value = le32_to_cpu(buf[1]); | 
| KaiGai Kohei | d9250de | 2008-08-28 16:35:57 +0900 | [diff] [blame] | 1419 | 	if (p->policyvers >= POLICYDB_VERSION_BOUNDARY) { | 
 | 1420 | 		u32 prop = le32_to_cpu(buf[2]); | 
 | 1421 |  | 
 | 1422 | 		if (prop & TYPEDATUM_PROPERTY_PRIMARY) | 
 | 1423 | 			typdatum->primary = 1; | 
 | 1424 | 		if (prop & TYPEDATUM_PROPERTY_ATTRIBUTE) | 
 | 1425 | 			typdatum->attribute = 1; | 
 | 1426 |  | 
 | 1427 | 		typdatum->bounds = le32_to_cpu(buf[3]); | 
 | 1428 | 	} else { | 
 | 1429 | 		typdatum->primary = le32_to_cpu(buf[2]); | 
 | 1430 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1431 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1432 | 	rc = -ENOMEM; | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 1433 | 	key = kmalloc(len + 1, GFP_KERNEL); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1434 | 	if (!key) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1435 | 		goto bad; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1436 | 	rc = next_entry(key, fp, len); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1437 | 	if (rc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1438 | 		goto bad; | 
| Vesa-Matti J Kari | df4ea86 | 2008-07-20 23:57:01 +0300 | [diff] [blame] | 1439 | 	key[len] = '\0'; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1440 |  | 
 | 1441 | 	rc = hashtab_insert(h, key, typdatum); | 
 | 1442 | 	if (rc) | 
 | 1443 | 		goto bad; | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1444 | 	return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1445 | bad: | 
 | 1446 | 	type_destroy(key, typdatum, NULL); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1447 | 	return rc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1448 | } | 
 | 1449 |  | 
 | 1450 |  | 
 | 1451 | /* | 
 | 1452 |  * Read a MLS level structure from a policydb binary | 
 | 1453 |  * representation file. | 
 | 1454 |  */ | 
 | 1455 | static int mls_read_level(struct mls_level *lp, void *fp) | 
 | 1456 | { | 
| Alexey Dobriyan | b5bf6c5 | 2005-09-03 15:55:17 -0700 | [diff] [blame] | 1457 | 	__le32 buf[1]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1458 | 	int rc; | 
 | 1459 |  | 
 | 1460 | 	memset(lp, 0, sizeof(*lp)); | 
 | 1461 |  | 
 | 1462 | 	rc = next_entry(buf, fp, sizeof buf); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1463 | 	if (rc) { | 
| James Morris | 454d972 | 2008-02-26 20:42:02 +1100 | [diff] [blame] | 1464 | 		printk(KERN_ERR "SELinux: mls: truncated level\n"); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1465 | 		return rc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1466 | 	} | 
 | 1467 | 	lp->sens = le32_to_cpu(buf[0]); | 
 | 1468 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1469 | 	rc = ebitmap_read(&lp->cat, fp); | 
 | 1470 | 	if (rc) { | 
 | 1471 | 		printk(KERN_ERR "SELinux: mls:  error reading level categories\n"); | 
 | 1472 | 		return rc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1473 | 	} | 
 | 1474 | 	return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1475 | } | 
 | 1476 |  | 
 | 1477 | static int user_read(struct policydb *p, struct hashtab *h, void *fp) | 
 | 1478 | { | 
 | 1479 | 	char *key = NULL; | 
 | 1480 | 	struct user_datum *usrdatum; | 
| KaiGai Kohei | d9250de | 2008-08-28 16:35:57 +0900 | [diff] [blame] | 1481 | 	int rc, to_read = 2; | 
 | 1482 | 	__le32 buf[3]; | 
| Alexey Dobriyan | b5bf6c5 | 2005-09-03 15:55:17 -0700 | [diff] [blame] | 1483 | 	u32 len; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1484 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1485 | 	rc = -ENOMEM; | 
| James Morris | 89d155e | 2005-10-30 14:59:21 -0800 | [diff] [blame] | 1486 | 	usrdatum = kzalloc(sizeof(*usrdatum), GFP_KERNEL); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1487 | 	if (!usrdatum) | 
 | 1488 | 		goto bad; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1489 |  | 
| KaiGai Kohei | d9250de | 2008-08-28 16:35:57 +0900 | [diff] [blame] | 1490 | 	if (p->policyvers >= POLICYDB_VERSION_BOUNDARY) | 
 | 1491 | 		to_read = 3; | 
 | 1492 |  | 
 | 1493 | 	rc = next_entry(buf, fp, sizeof(buf[0]) * to_read); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1494 | 	if (rc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1495 | 		goto bad; | 
 | 1496 |  | 
 | 1497 | 	len = le32_to_cpu(buf[0]); | 
 | 1498 | 	usrdatum->value = le32_to_cpu(buf[1]); | 
| KaiGai Kohei | d9250de | 2008-08-28 16:35:57 +0900 | [diff] [blame] | 1499 | 	if (p->policyvers >= POLICYDB_VERSION_BOUNDARY) | 
 | 1500 | 		usrdatum->bounds = le32_to_cpu(buf[2]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1501 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1502 | 	rc = -ENOMEM; | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 1503 | 	key = kmalloc(len + 1, GFP_KERNEL); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1504 | 	if (!key) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1505 | 		goto bad; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1506 | 	rc = next_entry(key, fp, len); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1507 | 	if (rc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1508 | 		goto bad; | 
| Vesa-Matti J Kari | df4ea86 | 2008-07-20 23:57:01 +0300 | [diff] [blame] | 1509 | 	key[len] = '\0'; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1510 |  | 
 | 1511 | 	rc = ebitmap_read(&usrdatum->roles, fp); | 
 | 1512 | 	if (rc) | 
 | 1513 | 		goto bad; | 
 | 1514 |  | 
 | 1515 | 	if (p->policyvers >= POLICYDB_VERSION_MLS) { | 
 | 1516 | 		rc = mls_read_range_helper(&usrdatum->range, fp); | 
 | 1517 | 		if (rc) | 
 | 1518 | 			goto bad; | 
 | 1519 | 		rc = mls_read_level(&usrdatum->dfltlevel, fp); | 
 | 1520 | 		if (rc) | 
 | 1521 | 			goto bad; | 
 | 1522 | 	} | 
 | 1523 |  | 
 | 1524 | 	rc = hashtab_insert(h, key, usrdatum); | 
 | 1525 | 	if (rc) | 
 | 1526 | 		goto bad; | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1527 | 	return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1528 | bad: | 
 | 1529 | 	user_destroy(key, usrdatum, NULL); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1530 | 	return rc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1531 | } | 
 | 1532 |  | 
 | 1533 | static int sens_read(struct policydb *p, struct hashtab *h, void *fp) | 
 | 1534 | { | 
 | 1535 | 	char *key = NULL; | 
 | 1536 | 	struct level_datum *levdatum; | 
 | 1537 | 	int rc; | 
| Alexey Dobriyan | b5bf6c5 | 2005-09-03 15:55:17 -0700 | [diff] [blame] | 1538 | 	__le32 buf[2]; | 
 | 1539 | 	u32 len; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1540 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1541 | 	rc = -ENOMEM; | 
| James Morris | 89d155e | 2005-10-30 14:59:21 -0800 | [diff] [blame] | 1542 | 	levdatum = kzalloc(sizeof(*levdatum), GFP_ATOMIC); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1543 | 	if (!levdatum) | 
 | 1544 | 		goto bad; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1545 |  | 
 | 1546 | 	rc = next_entry(buf, fp, sizeof buf); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1547 | 	if (rc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1548 | 		goto bad; | 
 | 1549 |  | 
 | 1550 | 	len = le32_to_cpu(buf[0]); | 
 | 1551 | 	levdatum->isalias = le32_to_cpu(buf[1]); | 
 | 1552 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1553 | 	rc = -ENOMEM; | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 1554 | 	key = kmalloc(len + 1, GFP_ATOMIC); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1555 | 	if (!key) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1556 | 		goto bad; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1557 | 	rc = next_entry(key, fp, len); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1558 | 	if (rc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1559 | 		goto bad; | 
| Vesa-Matti J Kari | df4ea86 | 2008-07-20 23:57:01 +0300 | [diff] [blame] | 1560 | 	key[len] = '\0'; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1561 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1562 | 	rc = -ENOMEM; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1563 | 	levdatum->level = kmalloc(sizeof(struct mls_level), GFP_ATOMIC); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1564 | 	if (!levdatum->level) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1565 | 		goto bad; | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1566 |  | 
 | 1567 | 	rc = mls_read_level(levdatum->level, fp); | 
 | 1568 | 	if (rc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1569 | 		goto bad; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1570 |  | 
 | 1571 | 	rc = hashtab_insert(h, key, levdatum); | 
 | 1572 | 	if (rc) | 
 | 1573 | 		goto bad; | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1574 | 	return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1575 | bad: | 
 | 1576 | 	sens_destroy(key, levdatum, NULL); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1577 | 	return rc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1578 | } | 
 | 1579 |  | 
 | 1580 | static int cat_read(struct policydb *p, struct hashtab *h, void *fp) | 
 | 1581 | { | 
 | 1582 | 	char *key = NULL; | 
 | 1583 | 	struct cat_datum *catdatum; | 
 | 1584 | 	int rc; | 
| Alexey Dobriyan | b5bf6c5 | 2005-09-03 15:55:17 -0700 | [diff] [blame] | 1585 | 	__le32 buf[3]; | 
 | 1586 | 	u32 len; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1587 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1588 | 	rc = -ENOMEM; | 
| James Morris | 89d155e | 2005-10-30 14:59:21 -0800 | [diff] [blame] | 1589 | 	catdatum = kzalloc(sizeof(*catdatum), GFP_ATOMIC); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1590 | 	if (!catdatum) | 
 | 1591 | 		goto bad; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1592 |  | 
 | 1593 | 	rc = next_entry(buf, fp, sizeof buf); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1594 | 	if (rc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1595 | 		goto bad; | 
 | 1596 |  | 
 | 1597 | 	len = le32_to_cpu(buf[0]); | 
 | 1598 | 	catdatum->value = le32_to_cpu(buf[1]); | 
 | 1599 | 	catdatum->isalias = le32_to_cpu(buf[2]); | 
 | 1600 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1601 | 	rc = -ENOMEM; | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 1602 | 	key = kmalloc(len + 1, GFP_ATOMIC); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1603 | 	if (!key) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1604 | 		goto bad; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1605 | 	rc = next_entry(key, fp, len); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1606 | 	if (rc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1607 | 		goto bad; | 
| Vesa-Matti J Kari | df4ea86 | 2008-07-20 23:57:01 +0300 | [diff] [blame] | 1608 | 	key[len] = '\0'; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1609 |  | 
 | 1610 | 	rc = hashtab_insert(h, key, catdatum); | 
 | 1611 | 	if (rc) | 
 | 1612 | 		goto bad; | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1613 | 	return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1614 | bad: | 
 | 1615 | 	cat_destroy(key, catdatum, NULL); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 1616 | 	return rc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1617 | } | 
 | 1618 |  | 
 | 1619 | static int (*read_f[SYM_NUM]) (struct policydb *p, struct hashtab *h, void *fp) = | 
 | 1620 | { | 
 | 1621 | 	common_read, | 
 | 1622 | 	class_read, | 
 | 1623 | 	role_read, | 
 | 1624 | 	type_read, | 
 | 1625 | 	user_read, | 
 | 1626 | 	cond_read_bool, | 
 | 1627 | 	sens_read, | 
 | 1628 | 	cat_read, | 
 | 1629 | }; | 
 | 1630 |  | 
| KaiGai Kohei | d9250de | 2008-08-28 16:35:57 +0900 | [diff] [blame] | 1631 | static int user_bounds_sanity_check(void *key, void *datum, void *datap) | 
 | 1632 | { | 
 | 1633 | 	struct user_datum *upper, *user; | 
 | 1634 | 	struct policydb *p = datap; | 
 | 1635 | 	int depth = 0; | 
 | 1636 |  | 
 | 1637 | 	upper = user = datum; | 
 | 1638 | 	while (upper->bounds) { | 
 | 1639 | 		struct ebitmap_node *node; | 
 | 1640 | 		unsigned long bit; | 
 | 1641 |  | 
 | 1642 | 		if (++depth == POLICYDB_BOUNDS_MAXDEPTH) { | 
 | 1643 | 			printk(KERN_ERR "SELinux: user %s: " | 
 | 1644 | 			       "too deep or looped boundary", | 
 | 1645 | 			       (char *) key); | 
 | 1646 | 			return -EINVAL; | 
 | 1647 | 		} | 
 | 1648 |  | 
 | 1649 | 		upper = p->user_val_to_struct[upper->bounds - 1]; | 
 | 1650 | 		ebitmap_for_each_positive_bit(&user->roles, node, bit) { | 
 | 1651 | 			if (ebitmap_get_bit(&upper->roles, bit)) | 
 | 1652 | 				continue; | 
 | 1653 |  | 
 | 1654 | 			printk(KERN_ERR | 
 | 1655 | 			       "SELinux: boundary violated policy: " | 
 | 1656 | 			       "user=%s role=%s bounds=%s\n", | 
| Eric Paris | ac76c05 | 2010-11-29 15:47:09 -0500 | [diff] [blame] | 1657 | 			       sym_name(p, SYM_USERS, user->value - 1), | 
 | 1658 | 			       sym_name(p, SYM_ROLES, bit), | 
 | 1659 | 			       sym_name(p, SYM_USERS, upper->value - 1)); | 
| KaiGai Kohei | d9250de | 2008-08-28 16:35:57 +0900 | [diff] [blame] | 1660 |  | 
 | 1661 | 			return -EINVAL; | 
 | 1662 | 		} | 
 | 1663 | 	} | 
 | 1664 |  | 
 | 1665 | 	return 0; | 
 | 1666 | } | 
 | 1667 |  | 
 | 1668 | static int role_bounds_sanity_check(void *key, void *datum, void *datap) | 
 | 1669 | { | 
 | 1670 | 	struct role_datum *upper, *role; | 
 | 1671 | 	struct policydb *p = datap; | 
 | 1672 | 	int depth = 0; | 
 | 1673 |  | 
 | 1674 | 	upper = role = datum; | 
 | 1675 | 	while (upper->bounds) { | 
 | 1676 | 		struct ebitmap_node *node; | 
 | 1677 | 		unsigned long bit; | 
 | 1678 |  | 
 | 1679 | 		if (++depth == POLICYDB_BOUNDS_MAXDEPTH) { | 
 | 1680 | 			printk(KERN_ERR "SELinux: role %s: " | 
 | 1681 | 			       "too deep or looped bounds\n", | 
 | 1682 | 			       (char *) key); | 
 | 1683 | 			return -EINVAL; | 
 | 1684 | 		} | 
 | 1685 |  | 
 | 1686 | 		upper = p->role_val_to_struct[upper->bounds - 1]; | 
 | 1687 | 		ebitmap_for_each_positive_bit(&role->types, node, bit) { | 
 | 1688 | 			if (ebitmap_get_bit(&upper->types, bit)) | 
 | 1689 | 				continue; | 
 | 1690 |  | 
 | 1691 | 			printk(KERN_ERR | 
 | 1692 | 			       "SELinux: boundary violated policy: " | 
 | 1693 | 			       "role=%s type=%s bounds=%s\n", | 
| Eric Paris | ac76c05 | 2010-11-29 15:47:09 -0500 | [diff] [blame] | 1694 | 			       sym_name(p, SYM_ROLES, role->value - 1), | 
 | 1695 | 			       sym_name(p, SYM_TYPES, bit), | 
 | 1696 | 			       sym_name(p, SYM_ROLES, upper->value - 1)); | 
| KaiGai Kohei | d9250de | 2008-08-28 16:35:57 +0900 | [diff] [blame] | 1697 |  | 
 | 1698 | 			return -EINVAL; | 
 | 1699 | 		} | 
 | 1700 | 	} | 
 | 1701 |  | 
 | 1702 | 	return 0; | 
 | 1703 | } | 
 | 1704 |  | 
 | 1705 | static int type_bounds_sanity_check(void *key, void *datum, void *datap) | 
 | 1706 | { | 
| Eric Paris | daa6d83 | 2010-08-03 15:26:05 -0400 | [diff] [blame] | 1707 | 	struct type_datum *upper; | 
| KaiGai Kohei | d9250de | 2008-08-28 16:35:57 +0900 | [diff] [blame] | 1708 | 	struct policydb *p = datap; | 
 | 1709 | 	int depth = 0; | 
 | 1710 |  | 
| Eric Paris | daa6d83 | 2010-08-03 15:26:05 -0400 | [diff] [blame] | 1711 | 	upper = datum; | 
| KaiGai Kohei | d9250de | 2008-08-28 16:35:57 +0900 | [diff] [blame] | 1712 | 	while (upper->bounds) { | 
 | 1713 | 		if (++depth == POLICYDB_BOUNDS_MAXDEPTH) { | 
 | 1714 | 			printk(KERN_ERR "SELinux: type %s: " | 
 | 1715 | 			       "too deep or looped boundary\n", | 
 | 1716 | 			       (char *) key); | 
 | 1717 | 			return -EINVAL; | 
 | 1718 | 		} | 
 | 1719 |  | 
| Eric Paris | 23bdecb | 2010-11-29 15:47:09 -0500 | [diff] [blame] | 1720 | 		upper = flex_array_get_ptr(p->type_val_to_struct_array, | 
 | 1721 | 					   upper->bounds - 1); | 
 | 1722 | 		BUG_ON(!upper); | 
 | 1723 |  | 
| KaiGai Kohei | d9250de | 2008-08-28 16:35:57 +0900 | [diff] [blame] | 1724 | 		if (upper->attribute) { | 
 | 1725 | 			printk(KERN_ERR "SELinux: type %s: " | 
 | 1726 | 			       "bounded by attribute %s", | 
 | 1727 | 			       (char *) key, | 
| Eric Paris | ac76c05 | 2010-11-29 15:47:09 -0500 | [diff] [blame] | 1728 | 			       sym_name(p, SYM_TYPES, upper->value - 1)); | 
| KaiGai Kohei | d9250de | 2008-08-28 16:35:57 +0900 | [diff] [blame] | 1729 | 			return -EINVAL; | 
 | 1730 | 		} | 
 | 1731 | 	} | 
 | 1732 |  | 
 | 1733 | 	return 0; | 
 | 1734 | } | 
 | 1735 |  | 
 | 1736 | static int policydb_bounds_sanity_check(struct policydb *p) | 
 | 1737 | { | 
 | 1738 | 	int rc; | 
 | 1739 |  | 
 | 1740 | 	if (p->policyvers < POLICYDB_VERSION_BOUNDARY) | 
 | 1741 | 		return 0; | 
 | 1742 |  | 
 | 1743 | 	rc = hashtab_map(p->p_users.table, | 
 | 1744 | 			 user_bounds_sanity_check, p); | 
 | 1745 | 	if (rc) | 
 | 1746 | 		return rc; | 
 | 1747 |  | 
 | 1748 | 	rc = hashtab_map(p->p_roles.table, | 
 | 1749 | 			 role_bounds_sanity_check, p); | 
 | 1750 | 	if (rc) | 
 | 1751 | 		return rc; | 
 | 1752 |  | 
 | 1753 | 	rc = hashtab_map(p->p_types.table, | 
 | 1754 | 			 type_bounds_sanity_check, p); | 
 | 1755 | 	if (rc) | 
 | 1756 | 		return rc; | 
 | 1757 |  | 
 | 1758 | 	return 0; | 
 | 1759 | } | 
 | 1760 |  | 
| Stephen Smalley | c6d3aaa | 2009-09-30 13:37:50 -0400 | [diff] [blame] | 1761 | u16 string_to_security_class(struct policydb *p, const char *name) | 
 | 1762 | { | 
 | 1763 | 	struct class_datum *cladatum; | 
 | 1764 |  | 
 | 1765 | 	cladatum = hashtab_search(p->p_classes.table, name); | 
 | 1766 | 	if (!cladatum) | 
 | 1767 | 		return 0; | 
 | 1768 |  | 
 | 1769 | 	return cladatum->value; | 
 | 1770 | } | 
 | 1771 |  | 
 | 1772 | u32 string_to_av_perm(struct policydb *p, u16 tclass, const char *name) | 
 | 1773 | { | 
 | 1774 | 	struct class_datum *cladatum; | 
 | 1775 | 	struct perm_datum *perdatum = NULL; | 
 | 1776 | 	struct common_datum *comdatum; | 
 | 1777 |  | 
 | 1778 | 	if (!tclass || tclass > p->p_classes.nprim) | 
 | 1779 | 		return 0; | 
 | 1780 |  | 
 | 1781 | 	cladatum = p->class_val_to_struct[tclass-1]; | 
 | 1782 | 	comdatum = cladatum->comdatum; | 
 | 1783 | 	if (comdatum) | 
 | 1784 | 		perdatum = hashtab_search(comdatum->permissions.table, | 
 | 1785 | 					  name); | 
 | 1786 | 	if (!perdatum) | 
 | 1787 | 		perdatum = hashtab_search(cladatum->permissions.table, | 
 | 1788 | 					  name); | 
 | 1789 | 	if (!perdatum) | 
 | 1790 | 		return 0; | 
 | 1791 |  | 
 | 1792 | 	return 1U << (perdatum->value-1); | 
 | 1793 | } | 
 | 1794 |  | 
| Eric Paris | 9ee0c82 | 2010-06-11 12:37:05 -0400 | [diff] [blame] | 1795 | static int range_read(struct policydb *p, void *fp) | 
 | 1796 | { | 
 | 1797 | 	struct range_trans *rt = NULL; | 
 | 1798 | 	struct mls_range *r = NULL; | 
 | 1799 | 	int i, rc; | 
 | 1800 | 	__le32 buf[2]; | 
 | 1801 | 	u32 nel; | 
 | 1802 |  | 
 | 1803 | 	if (p->policyvers < POLICYDB_VERSION_MLS) | 
 | 1804 | 		return 0; | 
 | 1805 |  | 
 | 1806 | 	rc = next_entry(buf, fp, sizeof(u32)); | 
 | 1807 | 	if (rc) | 
 | 1808 | 		goto out; | 
 | 1809 |  | 
 | 1810 | 	nel = le32_to_cpu(buf[0]); | 
 | 1811 | 	for (i = 0; i < nel; i++) { | 
 | 1812 | 		rc = -ENOMEM; | 
 | 1813 | 		rt = kzalloc(sizeof(*rt), GFP_KERNEL); | 
 | 1814 | 		if (!rt) | 
 | 1815 | 			goto out; | 
 | 1816 |  | 
 | 1817 | 		rc = next_entry(buf, fp, (sizeof(u32) * 2)); | 
 | 1818 | 		if (rc) | 
 | 1819 | 			goto out; | 
 | 1820 |  | 
 | 1821 | 		rt->source_type = le32_to_cpu(buf[0]); | 
 | 1822 | 		rt->target_type = le32_to_cpu(buf[1]); | 
 | 1823 | 		if (p->policyvers >= POLICYDB_VERSION_RANGETRANS) { | 
 | 1824 | 			rc = next_entry(buf, fp, sizeof(u32)); | 
 | 1825 | 			if (rc) | 
 | 1826 | 				goto out; | 
 | 1827 | 			rt->target_class = le32_to_cpu(buf[0]); | 
 | 1828 | 		} else | 
 | 1829 | 			rt->target_class = p->process_class; | 
 | 1830 |  | 
 | 1831 | 		rc = -EINVAL; | 
 | 1832 | 		if (!policydb_type_isvalid(p, rt->source_type) || | 
 | 1833 | 		    !policydb_type_isvalid(p, rt->target_type) || | 
 | 1834 | 		    !policydb_class_isvalid(p, rt->target_class)) | 
 | 1835 | 			goto out; | 
 | 1836 |  | 
 | 1837 | 		rc = -ENOMEM; | 
 | 1838 | 		r = kzalloc(sizeof(*r), GFP_KERNEL); | 
 | 1839 | 		if (!r) | 
 | 1840 | 			goto out; | 
 | 1841 |  | 
 | 1842 | 		rc = mls_read_range_helper(r, fp); | 
 | 1843 | 		if (rc) | 
 | 1844 | 			goto out; | 
 | 1845 |  | 
 | 1846 | 		rc = -EINVAL; | 
 | 1847 | 		if (!mls_range_isvalid(p, r)) { | 
 | 1848 | 			printk(KERN_WARNING "SELinux:  rangetrans:  invalid range\n"); | 
 | 1849 | 			goto out; | 
 | 1850 | 		} | 
 | 1851 |  | 
 | 1852 | 		rc = hashtab_insert(p->range_tr, rt, r); | 
 | 1853 | 		if (rc) | 
 | 1854 | 			goto out; | 
 | 1855 |  | 
 | 1856 | 		rt = NULL; | 
 | 1857 | 		r = NULL; | 
 | 1858 | 	} | 
| Eric Paris | be30b16 | 2011-04-28 15:11:21 -0400 | [diff] [blame] | 1859 | 	hash_eval(p->range_tr, "rangetr"); | 
| Eric Paris | 9ee0c82 | 2010-06-11 12:37:05 -0400 | [diff] [blame] | 1860 | 	rc = 0; | 
 | 1861 | out: | 
 | 1862 | 	kfree(rt); | 
 | 1863 | 	kfree(r); | 
 | 1864 | 	return rc; | 
 | 1865 | } | 
 | 1866 |  | 
| Eric Paris | 652bb9b | 2011-02-01 11:05:40 -0500 | [diff] [blame] | 1867 | static int filename_trans_read(struct policydb *p, void *fp) | 
 | 1868 | { | 
| Eric Paris | 2463c26d | 2011-04-28 15:11:21 -0400 | [diff] [blame] | 1869 | 	struct filename_trans *ft; | 
 | 1870 | 	struct filename_trans_datum *otype; | 
| Eric Paris | 652bb9b | 2011-02-01 11:05:40 -0500 | [diff] [blame] | 1871 | 	char *name; | 
| Eric Paris | 2463c26d | 2011-04-28 15:11:21 -0400 | [diff] [blame] | 1872 | 	u32 nel, len; | 
| Eric Paris | 652bb9b | 2011-02-01 11:05:40 -0500 | [diff] [blame] | 1873 | 	__le32 buf[4]; | 
 | 1874 | 	int rc, i; | 
 | 1875 |  | 
 | 1876 | 	if (p->policyvers < POLICYDB_VERSION_FILENAME_TRANS) | 
 | 1877 | 		return 0; | 
 | 1878 |  | 
 | 1879 | 	rc = next_entry(buf, fp, sizeof(u32)); | 
 | 1880 | 	if (rc) | 
| Eric Paris | 2463c26d | 2011-04-28 15:11:21 -0400 | [diff] [blame] | 1881 | 		return rc; | 
| Eric Paris | 652bb9b | 2011-02-01 11:05:40 -0500 | [diff] [blame] | 1882 | 	nel = le32_to_cpu(buf[0]); | 
 | 1883 |  | 
| Eric Paris | 652bb9b | 2011-02-01 11:05:40 -0500 | [diff] [blame] | 1884 | 	for (i = 0; i < nel; i++) { | 
| Eric Paris | 2463c26d | 2011-04-28 15:11:21 -0400 | [diff] [blame] | 1885 | 		ft = NULL; | 
 | 1886 | 		otype = NULL; | 
 | 1887 | 		name = NULL; | 
 | 1888 |  | 
| Eric Paris | 652bb9b | 2011-02-01 11:05:40 -0500 | [diff] [blame] | 1889 | 		rc = -ENOMEM; | 
 | 1890 | 		ft = kzalloc(sizeof(*ft), GFP_KERNEL); | 
 | 1891 | 		if (!ft) | 
 | 1892 | 			goto out; | 
 | 1893 |  | 
| Eric Paris | 2463c26d | 2011-04-28 15:11:21 -0400 | [diff] [blame] | 1894 | 		rc = -ENOMEM; | 
 | 1895 | 		otype = kmalloc(sizeof(*otype), GFP_KERNEL); | 
 | 1896 | 		if (!otype) | 
 | 1897 | 			goto out; | 
| Eric Paris | 652bb9b | 2011-02-01 11:05:40 -0500 | [diff] [blame] | 1898 |  | 
 | 1899 | 		/* length of the path component string */ | 
 | 1900 | 		rc = next_entry(buf, fp, sizeof(u32)); | 
 | 1901 | 		if (rc) | 
 | 1902 | 			goto out; | 
 | 1903 | 		len = le32_to_cpu(buf[0]); | 
 | 1904 |  | 
 | 1905 | 		rc = -ENOMEM; | 
 | 1906 | 		name = kmalloc(len + 1, GFP_KERNEL); | 
 | 1907 | 		if (!name) | 
 | 1908 | 			goto out; | 
 | 1909 |  | 
 | 1910 | 		ft->name = name; | 
 | 1911 |  | 
 | 1912 | 		/* path component string */ | 
 | 1913 | 		rc = next_entry(name, fp, len); | 
 | 1914 | 		if (rc) | 
 | 1915 | 			goto out; | 
 | 1916 | 		name[len] = 0; | 
 | 1917 |  | 
| Eric Paris | 652bb9b | 2011-02-01 11:05:40 -0500 | [diff] [blame] | 1918 | 		rc = next_entry(buf, fp, sizeof(u32) * 4); | 
 | 1919 | 		if (rc) | 
 | 1920 | 			goto out; | 
 | 1921 |  | 
 | 1922 | 		ft->stype = le32_to_cpu(buf[0]); | 
 | 1923 | 		ft->ttype = le32_to_cpu(buf[1]); | 
 | 1924 | 		ft->tclass = le32_to_cpu(buf[2]); | 
| Eric Paris | 2463c26d | 2011-04-28 15:11:21 -0400 | [diff] [blame] | 1925 |  | 
 | 1926 | 		otype->otype = le32_to_cpu(buf[3]); | 
| Eric Paris | 03a4c01 | 2011-04-28 15:11:21 -0400 | [diff] [blame] | 1927 |  | 
 | 1928 | 		rc = ebitmap_set_bit(&p->filename_trans_ttypes, ft->ttype, 1); | 
 | 1929 | 		if (rc) | 
 | 1930 | 			goto out; | 
| Eric Paris | 2463c26d | 2011-04-28 15:11:21 -0400 | [diff] [blame] | 1931 |  | 
| Tetsuo Handa | ef609ed | 2014-01-06 21:28:15 +0900 | [diff] [blame] | 1932 | 		rc = hashtab_insert(p->filename_trans, ft, otype); | 
 | 1933 | 		if (rc) { | 
 | 1934 | 			/* | 
 | 1935 | 			 * Do not return -EEXIST to the caller, or the system | 
 | 1936 | 			 * will not boot. | 
 | 1937 | 			 */ | 
 | 1938 | 			if (rc != -EEXIST) | 
 | 1939 | 				goto out; | 
 | 1940 | 			/* But free memory to avoid memory leak. */ | 
 | 1941 | 			kfree(ft); | 
 | 1942 | 			kfree(name); | 
 | 1943 | 			kfree(otype); | 
 | 1944 | 		} | 
| Eric Paris | 652bb9b | 2011-02-01 11:05:40 -0500 | [diff] [blame] | 1945 | 	} | 
| Eric Paris | 2463c26d | 2011-04-28 15:11:21 -0400 | [diff] [blame] | 1946 | 	hash_eval(p->filename_trans, "filenametr"); | 
 | 1947 | 	return 0; | 
| Eric Paris | 652bb9b | 2011-02-01 11:05:40 -0500 | [diff] [blame] | 1948 | out: | 
| Eric Paris | 2463c26d | 2011-04-28 15:11:21 -0400 | [diff] [blame] | 1949 | 	kfree(ft); | 
 | 1950 | 	kfree(name); | 
 | 1951 | 	kfree(otype); | 
 | 1952 |  | 
| Eric Paris | 652bb9b | 2011-02-01 11:05:40 -0500 | [diff] [blame] | 1953 | 	return rc; | 
 | 1954 | } | 
 | 1955 |  | 
| Eric Paris | d1b4354 | 2010-07-21 12:50:57 -0400 | [diff] [blame] | 1956 | static int genfs_read(struct policydb *p, void *fp) | 
 | 1957 | { | 
 | 1958 | 	int i, j, rc; | 
 | 1959 | 	u32 nel, nel2, len, len2; | 
 | 1960 | 	__le32 buf[1]; | 
 | 1961 | 	struct ocontext *l, *c; | 
 | 1962 | 	struct ocontext *newc = NULL; | 
 | 1963 | 	struct genfs *genfs_p, *genfs; | 
 | 1964 | 	struct genfs *newgenfs = NULL; | 
 | 1965 |  | 
 | 1966 | 	rc = next_entry(buf, fp, sizeof(u32)); | 
 | 1967 | 	if (rc) | 
 | 1968 | 		goto out; | 
 | 1969 | 	nel = le32_to_cpu(buf[0]); | 
 | 1970 |  | 
 | 1971 | 	for (i = 0; i < nel; i++) { | 
 | 1972 | 		rc = next_entry(buf, fp, sizeof(u32)); | 
 | 1973 | 		if (rc) | 
 | 1974 | 			goto out; | 
 | 1975 | 		len = le32_to_cpu(buf[0]); | 
 | 1976 |  | 
 | 1977 | 		rc = -ENOMEM; | 
 | 1978 | 		newgenfs = kzalloc(sizeof(*newgenfs), GFP_KERNEL); | 
 | 1979 | 		if (!newgenfs) | 
 | 1980 | 			goto out; | 
 | 1981 |  | 
 | 1982 | 		rc = -ENOMEM; | 
 | 1983 | 		newgenfs->fstype = kmalloc(len + 1, GFP_KERNEL); | 
 | 1984 | 		if (!newgenfs->fstype) | 
 | 1985 | 			goto out; | 
 | 1986 |  | 
 | 1987 | 		rc = next_entry(newgenfs->fstype, fp, len); | 
 | 1988 | 		if (rc) | 
 | 1989 | 			goto out; | 
 | 1990 |  | 
 | 1991 | 		newgenfs->fstype[len] = 0; | 
 | 1992 |  | 
 | 1993 | 		for (genfs_p = NULL, genfs = p->genfs; genfs; | 
 | 1994 | 		     genfs_p = genfs, genfs = genfs->next) { | 
 | 1995 | 			rc = -EINVAL; | 
 | 1996 | 			if (strcmp(newgenfs->fstype, genfs->fstype) == 0) { | 
 | 1997 | 				printk(KERN_ERR "SELinux:  dup genfs fstype %s\n", | 
 | 1998 | 				       newgenfs->fstype); | 
 | 1999 | 				goto out; | 
 | 2000 | 			} | 
 | 2001 | 			if (strcmp(newgenfs->fstype, genfs->fstype) < 0) | 
 | 2002 | 				break; | 
 | 2003 | 		} | 
 | 2004 | 		newgenfs->next = genfs; | 
 | 2005 | 		if (genfs_p) | 
 | 2006 | 			genfs_p->next = newgenfs; | 
 | 2007 | 		else | 
 | 2008 | 			p->genfs = newgenfs; | 
 | 2009 | 		genfs = newgenfs; | 
 | 2010 | 		newgenfs = NULL; | 
 | 2011 |  | 
 | 2012 | 		rc = next_entry(buf, fp, sizeof(u32)); | 
 | 2013 | 		if (rc) | 
 | 2014 | 			goto out; | 
 | 2015 |  | 
 | 2016 | 		nel2 = le32_to_cpu(buf[0]); | 
 | 2017 | 		for (j = 0; j < nel2; j++) { | 
 | 2018 | 			rc = next_entry(buf, fp, sizeof(u32)); | 
 | 2019 | 			if (rc) | 
 | 2020 | 				goto out; | 
 | 2021 | 			len = le32_to_cpu(buf[0]); | 
 | 2022 |  | 
 | 2023 | 			rc = -ENOMEM; | 
 | 2024 | 			newc = kzalloc(sizeof(*newc), GFP_KERNEL); | 
 | 2025 | 			if (!newc) | 
 | 2026 | 				goto out; | 
 | 2027 |  | 
 | 2028 | 			rc = -ENOMEM; | 
 | 2029 | 			newc->u.name = kmalloc(len + 1, GFP_KERNEL); | 
 | 2030 | 			if (!newc->u.name) | 
 | 2031 | 				goto out; | 
 | 2032 |  | 
 | 2033 | 			rc = next_entry(newc->u.name, fp, len); | 
 | 2034 | 			if (rc) | 
 | 2035 | 				goto out; | 
 | 2036 | 			newc->u.name[len] = 0; | 
 | 2037 |  | 
 | 2038 | 			rc = next_entry(buf, fp, sizeof(u32)); | 
 | 2039 | 			if (rc) | 
 | 2040 | 				goto out; | 
 | 2041 |  | 
 | 2042 | 			newc->v.sclass = le32_to_cpu(buf[0]); | 
 | 2043 | 			rc = context_read_and_validate(&newc->context[0], p, fp); | 
 | 2044 | 			if (rc) | 
 | 2045 | 				goto out; | 
 | 2046 |  | 
 | 2047 | 			for (l = NULL, c = genfs->head; c; | 
 | 2048 | 			     l = c, c = c->next) { | 
 | 2049 | 				rc = -EINVAL; | 
 | 2050 | 				if (!strcmp(newc->u.name, c->u.name) && | 
 | 2051 | 				    (!c->v.sclass || !newc->v.sclass || | 
 | 2052 | 				     newc->v.sclass == c->v.sclass)) { | 
 | 2053 | 					printk(KERN_ERR "SELinux:  dup genfs entry (%s,%s)\n", | 
 | 2054 | 					       genfs->fstype, c->u.name); | 
 | 2055 | 					goto out; | 
 | 2056 | 				} | 
 | 2057 | 				len = strlen(newc->u.name); | 
 | 2058 | 				len2 = strlen(c->u.name); | 
 | 2059 | 				if (len > len2) | 
 | 2060 | 					break; | 
 | 2061 | 			} | 
 | 2062 |  | 
 | 2063 | 			newc->next = c; | 
 | 2064 | 			if (l) | 
 | 2065 | 				l->next = newc; | 
 | 2066 | 			else | 
 | 2067 | 				genfs->head = newc; | 
 | 2068 | 			newc = NULL; | 
 | 2069 | 		} | 
 | 2070 | 	} | 
 | 2071 | 	rc = 0; | 
 | 2072 | out: | 
 | 2073 | 	if (newgenfs) | 
 | 2074 | 		kfree(newgenfs->fstype); | 
 | 2075 | 	kfree(newgenfs); | 
 | 2076 | 	ocontext_destroy(newc, OCON_FSUSE); | 
 | 2077 |  | 
 | 2078 | 	return rc; | 
 | 2079 | } | 
 | 2080 |  | 
| Eric Paris | 692a8a2 | 2010-07-21 12:51:03 -0400 | [diff] [blame] | 2081 | static int ocontext_read(struct policydb *p, struct policydb_compat_info *info, | 
 | 2082 | 			 void *fp) | 
 | 2083 | { | 
 | 2084 | 	int i, j, rc; | 
 | 2085 | 	u32 nel, len; | 
 | 2086 | 	__le32 buf[3]; | 
 | 2087 | 	struct ocontext *l, *c; | 
 | 2088 | 	u32 nodebuf[8]; | 
 | 2089 |  | 
 | 2090 | 	for (i = 0; i < info->ocon_num; i++) { | 
 | 2091 | 		rc = next_entry(buf, fp, sizeof(u32)); | 
 | 2092 | 		if (rc) | 
 | 2093 | 			goto out; | 
 | 2094 | 		nel = le32_to_cpu(buf[0]); | 
 | 2095 |  | 
 | 2096 | 		l = NULL; | 
 | 2097 | 		for (j = 0; j < nel; j++) { | 
 | 2098 | 			rc = -ENOMEM; | 
 | 2099 | 			c = kzalloc(sizeof(*c), GFP_KERNEL); | 
 | 2100 | 			if (!c) | 
 | 2101 | 				goto out; | 
 | 2102 | 			if (l) | 
 | 2103 | 				l->next = c; | 
 | 2104 | 			else | 
 | 2105 | 				p->ocontexts[i] = c; | 
 | 2106 | 			l = c; | 
 | 2107 |  | 
 | 2108 | 			switch (i) { | 
 | 2109 | 			case OCON_ISID: | 
 | 2110 | 				rc = next_entry(buf, fp, sizeof(u32)); | 
 | 2111 | 				if (rc) | 
 | 2112 | 					goto out; | 
 | 2113 |  | 
 | 2114 | 				c->sid[0] = le32_to_cpu(buf[0]); | 
 | 2115 | 				rc = context_read_and_validate(&c->context[0], p, fp); | 
 | 2116 | 				if (rc) | 
 | 2117 | 					goto out; | 
 | 2118 | 				break; | 
 | 2119 | 			case OCON_FS: | 
 | 2120 | 			case OCON_NETIF: | 
 | 2121 | 				rc = next_entry(buf, fp, sizeof(u32)); | 
 | 2122 | 				if (rc) | 
 | 2123 | 					goto out; | 
 | 2124 | 				len = le32_to_cpu(buf[0]); | 
 | 2125 |  | 
 | 2126 | 				rc = -ENOMEM; | 
 | 2127 | 				c->u.name = kmalloc(len + 1, GFP_KERNEL); | 
 | 2128 | 				if (!c->u.name) | 
 | 2129 | 					goto out; | 
 | 2130 |  | 
 | 2131 | 				rc = next_entry(c->u.name, fp, len); | 
 | 2132 | 				if (rc) | 
 | 2133 | 					goto out; | 
 | 2134 |  | 
 | 2135 | 				c->u.name[len] = 0; | 
 | 2136 | 				rc = context_read_and_validate(&c->context[0], p, fp); | 
 | 2137 | 				if (rc) | 
 | 2138 | 					goto out; | 
 | 2139 | 				rc = context_read_and_validate(&c->context[1], p, fp); | 
 | 2140 | 				if (rc) | 
 | 2141 | 					goto out; | 
 | 2142 | 				break; | 
 | 2143 | 			case OCON_PORT: | 
 | 2144 | 				rc = next_entry(buf, fp, sizeof(u32)*3); | 
 | 2145 | 				if (rc) | 
 | 2146 | 					goto out; | 
 | 2147 | 				c->u.port.protocol = le32_to_cpu(buf[0]); | 
 | 2148 | 				c->u.port.low_port = le32_to_cpu(buf[1]); | 
 | 2149 | 				c->u.port.high_port = le32_to_cpu(buf[2]); | 
 | 2150 | 				rc = context_read_and_validate(&c->context[0], p, fp); | 
 | 2151 | 				if (rc) | 
 | 2152 | 					goto out; | 
 | 2153 | 				break; | 
 | 2154 | 			case OCON_NODE: | 
 | 2155 | 				rc = next_entry(nodebuf, fp, sizeof(u32) * 2); | 
 | 2156 | 				if (rc) | 
 | 2157 | 					goto out; | 
 | 2158 | 				c->u.node.addr = nodebuf[0]; /* network order */ | 
 | 2159 | 				c->u.node.mask = nodebuf[1]; /* network order */ | 
 | 2160 | 				rc = context_read_and_validate(&c->context[0], p, fp); | 
 | 2161 | 				if (rc) | 
 | 2162 | 					goto out; | 
 | 2163 | 				break; | 
 | 2164 | 			case OCON_FSUSE: | 
 | 2165 | 				rc = next_entry(buf, fp, sizeof(u32)*2); | 
 | 2166 | 				if (rc) | 
 | 2167 | 					goto out; | 
 | 2168 |  | 
 | 2169 | 				rc = -EINVAL; | 
 | 2170 | 				c->v.behavior = le32_to_cpu(buf[0]); | 
 | 2171 | 				if (c->v.behavior > SECURITY_FS_USE_NONE) | 
 | 2172 | 					goto out; | 
 | 2173 |  | 
 | 2174 | 				rc = -ENOMEM; | 
 | 2175 | 				len = le32_to_cpu(buf[1]); | 
 | 2176 | 				c->u.name = kmalloc(len + 1, GFP_KERNEL); | 
 | 2177 | 				if (!c->u.name) | 
 | 2178 | 					goto out; | 
 | 2179 |  | 
 | 2180 | 				rc = next_entry(c->u.name, fp, len); | 
 | 2181 | 				if (rc) | 
 | 2182 | 					goto out; | 
 | 2183 | 				c->u.name[len] = 0; | 
 | 2184 | 				rc = context_read_and_validate(&c->context[0], p, fp); | 
 | 2185 | 				if (rc) | 
 | 2186 | 					goto out; | 
 | 2187 | 				break; | 
 | 2188 | 			case OCON_NODE6: { | 
 | 2189 | 				int k; | 
 | 2190 |  | 
 | 2191 | 				rc = next_entry(nodebuf, fp, sizeof(u32) * 8); | 
 | 2192 | 				if (rc) | 
 | 2193 | 					goto out; | 
 | 2194 | 				for (k = 0; k < 4; k++) | 
 | 2195 | 					c->u.node6.addr[k] = nodebuf[k]; | 
 | 2196 | 				for (k = 0; k < 4; k++) | 
 | 2197 | 					c->u.node6.mask[k] = nodebuf[k+4]; | 
 | 2198 | 				rc = context_read_and_validate(&c->context[0], p, fp); | 
 | 2199 | 				if (rc) | 
 | 2200 | 					goto out; | 
 | 2201 | 				break; | 
 | 2202 | 			} | 
 | 2203 | 			} | 
 | 2204 | 		} | 
 | 2205 | 	} | 
 | 2206 | 	rc = 0; | 
 | 2207 | out: | 
 | 2208 | 	return rc; | 
 | 2209 | } | 
 | 2210 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2211 | /* | 
 | 2212 |  * Read the configuration data from a policy database binary | 
 | 2213 |  * representation file into a policy database structure. | 
 | 2214 |  */ | 
 | 2215 | int policydb_read(struct policydb *p, void *fp) | 
 | 2216 | { | 
 | 2217 | 	struct role_allow *ra, *lra; | 
 | 2218 | 	struct role_trans *tr, *ltr; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2219 | 	int i, j, rc; | 
| Stephen Smalley | 59dbd1b | 2008-06-05 09:48:51 -0400 | [diff] [blame] | 2220 | 	__le32 buf[4]; | 
| Eric Paris | d1b4354 | 2010-07-21 12:50:57 -0400 | [diff] [blame] | 2221 | 	u32 len, nprim, nel; | 
 | 2222 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2223 | 	char *policydb_str; | 
 | 2224 | 	struct policydb_compat_info *info; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2225 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2226 | 	rc = policydb_init(p); | 
 | 2227 | 	if (rc) | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 2228 | 		return rc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2229 |  | 
 | 2230 | 	/* Read the magic number and string length. */ | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 2231 | 	rc = next_entry(buf, fp, sizeof(u32) * 2); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 2232 | 	if (rc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2233 | 		goto bad; | 
 | 2234 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 2235 | 	rc = -EINVAL; | 
| Alexey Dobriyan | b5bf6c5 | 2005-09-03 15:55:17 -0700 | [diff] [blame] | 2236 | 	if (le32_to_cpu(buf[0]) != POLICYDB_MAGIC) { | 
| James Morris | 454d972 | 2008-02-26 20:42:02 +1100 | [diff] [blame] | 2237 | 		printk(KERN_ERR "SELinux:  policydb magic number 0x%x does " | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2238 | 		       "not match expected magic number 0x%x\n", | 
| Alexey Dobriyan | b5bf6c5 | 2005-09-03 15:55:17 -0700 | [diff] [blame] | 2239 | 		       le32_to_cpu(buf[0]), POLICYDB_MAGIC); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2240 | 		goto bad; | 
 | 2241 | 	} | 
 | 2242 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 2243 | 	rc = -EINVAL; | 
| Alexey Dobriyan | b5bf6c5 | 2005-09-03 15:55:17 -0700 | [diff] [blame] | 2244 | 	len = le32_to_cpu(buf[1]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2245 | 	if (len != strlen(POLICYDB_STRING)) { | 
| James Morris | 454d972 | 2008-02-26 20:42:02 +1100 | [diff] [blame] | 2246 | 		printk(KERN_ERR "SELinux:  policydb string length %d does not " | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2247 | 		       "match expected length %Zu\n", | 
 | 2248 | 		       len, strlen(POLICYDB_STRING)); | 
 | 2249 | 		goto bad; | 
 | 2250 | 	} | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 2251 |  | 
 | 2252 | 	rc = -ENOMEM; | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 2253 | 	policydb_str = kmalloc(len + 1, GFP_KERNEL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2254 | 	if (!policydb_str) { | 
| James Morris | 454d972 | 2008-02-26 20:42:02 +1100 | [diff] [blame] | 2255 | 		printk(KERN_ERR "SELinux:  unable to allocate memory for policydb " | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2256 | 		       "string of length %d\n", len); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2257 | 		goto bad; | 
 | 2258 | 	} | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 2259 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2260 | 	rc = next_entry(policydb_str, fp, len); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 2261 | 	if (rc) { | 
| James Morris | 454d972 | 2008-02-26 20:42:02 +1100 | [diff] [blame] | 2262 | 		printk(KERN_ERR "SELinux:  truncated policydb string identifier\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2263 | 		kfree(policydb_str); | 
 | 2264 | 		goto bad; | 
 | 2265 | 	} | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 2266 |  | 
 | 2267 | 	rc = -EINVAL; | 
| Vesa-Matti J Kari | df4ea86 | 2008-07-20 23:57:01 +0300 | [diff] [blame] | 2268 | 	policydb_str[len] = '\0'; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2269 | 	if (strcmp(policydb_str, POLICYDB_STRING)) { | 
| James Morris | 454d972 | 2008-02-26 20:42:02 +1100 | [diff] [blame] | 2270 | 		printk(KERN_ERR "SELinux:  policydb string %s does not match " | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2271 | 		       "my string %s\n", policydb_str, POLICYDB_STRING); | 
 | 2272 | 		kfree(policydb_str); | 
 | 2273 | 		goto bad; | 
 | 2274 | 	} | 
 | 2275 | 	/* Done with policydb_str. */ | 
 | 2276 | 	kfree(policydb_str); | 
 | 2277 | 	policydb_str = NULL; | 
 | 2278 |  | 
| Guido Trentalancia | 0719aaf5 | 2010-02-03 16:40:20 +0100 | [diff] [blame] | 2279 | 	/* Read the version and table sizes. */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2280 | 	rc = next_entry(buf, fp, sizeof(u32)*4); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 2281 | 	if (rc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2282 | 		goto bad; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2283 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 2284 | 	rc = -EINVAL; | 
| Alexey Dobriyan | b5bf6c5 | 2005-09-03 15:55:17 -0700 | [diff] [blame] | 2285 | 	p->policyvers = le32_to_cpu(buf[0]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2286 | 	if (p->policyvers < POLICYDB_VERSION_MIN || | 
 | 2287 | 	    p->policyvers > POLICYDB_VERSION_MAX) { | 
| James Morris | 454d972 | 2008-02-26 20:42:02 +1100 | [diff] [blame] | 2288 | 		printk(KERN_ERR "SELinux:  policydb version %d does not match " | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 2289 | 		       "my version range %d-%d\n", | 
 | 2290 | 		       le32_to_cpu(buf[0]), POLICYDB_VERSION_MIN, POLICYDB_VERSION_MAX); | 
 | 2291 | 		goto bad; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2292 | 	} | 
 | 2293 |  | 
| Alexey Dobriyan | b5bf6c5 | 2005-09-03 15:55:17 -0700 | [diff] [blame] | 2294 | 	if ((le32_to_cpu(buf[1]) & POLICYDB_CONFIG_MLS)) { | 
| Guido Trentalancia | 0719aaf5 | 2010-02-03 16:40:20 +0100 | [diff] [blame] | 2295 | 		p->mls_enabled = 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2296 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 2297 | 		rc = -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2298 | 		if (p->policyvers < POLICYDB_VERSION_MLS) { | 
| Eric Paris | 744ba35 | 2008-04-17 11:52:44 -0400 | [diff] [blame] | 2299 | 			printk(KERN_ERR "SELinux: security policydb version %d " | 
 | 2300 | 				"(MLS) not backwards compatible\n", | 
 | 2301 | 				p->policyvers); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2302 | 			goto bad; | 
 | 2303 | 		} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2304 | 	} | 
| Eric Paris | 3f12070 | 2007-09-21 14:37:10 -0400 | [diff] [blame] | 2305 | 	p->reject_unknown = !!(le32_to_cpu(buf[1]) & REJECT_UNKNOWN); | 
 | 2306 | 	p->allow_unknown = !!(le32_to_cpu(buf[1]) & ALLOW_UNKNOWN); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2307 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 2308 | 	if (p->policyvers >= POLICYDB_VERSION_POLCAP) { | 
 | 2309 | 		rc = ebitmap_read(&p->policycaps, fp); | 
 | 2310 | 		if (rc) | 
 | 2311 | 			goto bad; | 
 | 2312 | 	} | 
| Paul Moore | 3bb56b2 | 2008-01-29 08:38:19 -0500 | [diff] [blame] | 2313 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 2314 | 	if (p->policyvers >= POLICYDB_VERSION_PERMISSIVE) { | 
 | 2315 | 		rc = ebitmap_read(&p->permissive_map, fp); | 
 | 2316 | 		if (rc) | 
 | 2317 | 			goto bad; | 
 | 2318 | 	} | 
| Eric Paris | 64dbf07 | 2008-03-31 12:17:33 +1100 | [diff] [blame] | 2319 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 2320 | 	rc = -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2321 | 	info = policydb_lookup_compat(p->policyvers); | 
 | 2322 | 	if (!info) { | 
| James Morris | 454d972 | 2008-02-26 20:42:02 +1100 | [diff] [blame] | 2323 | 		printk(KERN_ERR "SELinux:  unable to find policy compat info " | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2324 | 		       "for version %d\n", p->policyvers); | 
 | 2325 | 		goto bad; | 
 | 2326 | 	} | 
 | 2327 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 2328 | 	rc = -EINVAL; | 
| Alexey Dobriyan | b5bf6c5 | 2005-09-03 15:55:17 -0700 | [diff] [blame] | 2329 | 	if (le32_to_cpu(buf[2]) != info->sym_num || | 
 | 2330 | 		le32_to_cpu(buf[3]) != info->ocon_num) { | 
| James Morris | 454d972 | 2008-02-26 20:42:02 +1100 | [diff] [blame] | 2331 | 		printk(KERN_ERR "SELinux:  policydb table sizes (%d,%d) do " | 
| Alexey Dobriyan | b5bf6c5 | 2005-09-03 15:55:17 -0700 | [diff] [blame] | 2332 | 		       "not match mine (%d,%d)\n", le32_to_cpu(buf[2]), | 
 | 2333 | 			le32_to_cpu(buf[3]), | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2334 | 		       info->sym_num, info->ocon_num); | 
 | 2335 | 		goto bad; | 
 | 2336 | 	} | 
 | 2337 |  | 
 | 2338 | 	for (i = 0; i < info->sym_num; i++) { | 
 | 2339 | 		rc = next_entry(buf, fp, sizeof(u32)*2); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 2340 | 		if (rc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2341 | 			goto bad; | 
 | 2342 | 		nprim = le32_to_cpu(buf[0]); | 
 | 2343 | 		nel = le32_to_cpu(buf[1]); | 
 | 2344 | 		for (j = 0; j < nel; j++) { | 
 | 2345 | 			rc = read_f[i](p, p->symtab[i].table, fp); | 
 | 2346 | 			if (rc) | 
 | 2347 | 				goto bad; | 
 | 2348 | 		} | 
 | 2349 |  | 
 | 2350 | 		p->symtab[i].nprim = nprim; | 
 | 2351 | 	} | 
 | 2352 |  | 
| Harry Ciao | 1214eac | 2011-04-07 14:12:57 +0800 | [diff] [blame] | 2353 | 	rc = -EINVAL; | 
 | 2354 | 	p->process_class = string_to_security_class(p, "process"); | 
 | 2355 | 	if (!p->process_class) | 
 | 2356 | 		goto bad; | 
 | 2357 |  | 
| Stephen Smalley | 45e5421 | 2007-11-07 10:08:00 -0500 | [diff] [blame] | 2358 | 	rc = avtab_read(&p->te_avtab, fp, p); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2359 | 	if (rc) | 
 | 2360 | 		goto bad; | 
 | 2361 |  | 
 | 2362 | 	if (p->policyvers >= POLICYDB_VERSION_BOOL) { | 
 | 2363 | 		rc = cond_read_list(p, fp); | 
 | 2364 | 		if (rc) | 
 | 2365 | 			goto bad; | 
 | 2366 | 	} | 
 | 2367 |  | 
 | 2368 | 	rc = next_entry(buf, fp, sizeof(u32)); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 2369 | 	if (rc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2370 | 		goto bad; | 
 | 2371 | 	nel = le32_to_cpu(buf[0]); | 
 | 2372 | 	ltr = NULL; | 
 | 2373 | 	for (i = 0; i < nel; i++) { | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 2374 | 		rc = -ENOMEM; | 
| James Morris | 89d155e | 2005-10-30 14:59:21 -0800 | [diff] [blame] | 2375 | 		tr = kzalloc(sizeof(*tr), GFP_KERNEL); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 2376 | 		if (!tr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2377 | 			goto bad; | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 2378 | 		if (ltr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2379 | 			ltr->next = tr; | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 2380 | 		else | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2381 | 			p->role_tr = tr; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2382 | 		rc = next_entry(buf, fp, sizeof(u32)*3); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 2383 | 		if (rc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2384 | 			goto bad; | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 2385 |  | 
 | 2386 | 		rc = -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2387 | 		tr->role = le32_to_cpu(buf[0]); | 
 | 2388 | 		tr->type = le32_to_cpu(buf[1]); | 
 | 2389 | 		tr->new_role = le32_to_cpu(buf[2]); | 
| Harry Ciao | 8023976 | 2011-03-25 13:51:56 +0800 | [diff] [blame] | 2390 | 		if (p->policyvers >= POLICYDB_VERSION_ROLETRANS) { | 
 | 2391 | 			rc = next_entry(buf, fp, sizeof(u32)); | 
 | 2392 | 			if (rc) | 
 | 2393 | 				goto bad; | 
 | 2394 | 			tr->tclass = le32_to_cpu(buf[0]); | 
 | 2395 | 		} else | 
 | 2396 | 			tr->tclass = p->process_class; | 
 | 2397 |  | 
| Stephen Smalley | 45e5421 | 2007-11-07 10:08:00 -0500 | [diff] [blame] | 2398 | 		if (!policydb_role_isvalid(p, tr->role) || | 
 | 2399 | 		    !policydb_type_isvalid(p, tr->type) || | 
| Harry Ciao | 8023976 | 2011-03-25 13:51:56 +0800 | [diff] [blame] | 2400 | 		    !policydb_class_isvalid(p, tr->tclass) || | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 2401 | 		    !policydb_role_isvalid(p, tr->new_role)) | 
| Stephen Smalley | 45e5421 | 2007-11-07 10:08:00 -0500 | [diff] [blame] | 2402 | 			goto bad; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2403 | 		ltr = tr; | 
 | 2404 | 	} | 
 | 2405 |  | 
 | 2406 | 	rc = next_entry(buf, fp, sizeof(u32)); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 2407 | 	if (rc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2408 | 		goto bad; | 
 | 2409 | 	nel = le32_to_cpu(buf[0]); | 
 | 2410 | 	lra = NULL; | 
 | 2411 | 	for (i = 0; i < nel; i++) { | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 2412 | 		rc = -ENOMEM; | 
| James Morris | 89d155e | 2005-10-30 14:59:21 -0800 | [diff] [blame] | 2413 | 		ra = kzalloc(sizeof(*ra), GFP_KERNEL); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 2414 | 		if (!ra) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2415 | 			goto bad; | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 2416 | 		if (lra) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2417 | 			lra->next = ra; | 
| Eric Paris | 2ced3df | 2008-04-17 13:37:12 -0400 | [diff] [blame] | 2418 | 		else | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2419 | 			p->role_allow = ra; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2420 | 		rc = next_entry(buf, fp, sizeof(u32)*2); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 2421 | 		if (rc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2422 | 			goto bad; | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 2423 |  | 
 | 2424 | 		rc = -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2425 | 		ra->role = le32_to_cpu(buf[0]); | 
 | 2426 | 		ra->new_role = le32_to_cpu(buf[1]); | 
| Stephen Smalley | 45e5421 | 2007-11-07 10:08:00 -0500 | [diff] [blame] | 2427 | 		if (!policydb_role_isvalid(p, ra->role) || | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 2428 | 		    !policydb_role_isvalid(p, ra->new_role)) | 
| Stephen Smalley | 45e5421 | 2007-11-07 10:08:00 -0500 | [diff] [blame] | 2429 | 			goto bad; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2430 | 		lra = ra; | 
 | 2431 | 	} | 
 | 2432 |  | 
| Eric Paris | 652bb9b | 2011-02-01 11:05:40 -0500 | [diff] [blame] | 2433 | 	rc = filename_trans_read(p, fp); | 
 | 2434 | 	if (rc) | 
 | 2435 | 		goto bad; | 
 | 2436 |  | 
| Eric Paris | 1d9bc6dc | 2010-11-29 15:47:09 -0500 | [diff] [blame] | 2437 | 	rc = policydb_index(p); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2438 | 	if (rc) | 
 | 2439 | 		goto bad; | 
 | 2440 |  | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 2441 | 	rc = -EINVAL; | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 2442 | 	p->process_trans_perms = string_to_av_perm(p, p->process_class, "transition"); | 
 | 2443 | 	p->process_trans_perms |= string_to_av_perm(p, p->process_class, "dyntransition"); | 
| Stephen Smalley | c6d3aaa | 2009-09-30 13:37:50 -0400 | [diff] [blame] | 2444 | 	if (!p->process_trans_perms) | 
 | 2445 | 		goto bad; | 
 | 2446 |  | 
| Eric Paris | 692a8a2 | 2010-07-21 12:51:03 -0400 | [diff] [blame] | 2447 | 	rc = ocontext_read(p, info, fp); | 
 | 2448 | 	if (rc) | 
 | 2449 | 		goto bad; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2450 |  | 
| Eric Paris | d1b4354 | 2010-07-21 12:50:57 -0400 | [diff] [blame] | 2451 | 	rc = genfs_read(p, fp); | 
 | 2452 | 	if (rc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2453 | 		goto bad; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2454 |  | 
| Eric Paris | 9ee0c82 | 2010-06-11 12:37:05 -0400 | [diff] [blame] | 2455 | 	rc = range_read(p, fp); | 
 | 2456 | 	if (rc) | 
 | 2457 | 		goto bad; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2458 |  | 
| Eric Paris | 6371dcd | 2010-07-29 23:02:34 -0400 | [diff] [blame] | 2459 | 	rc = -ENOMEM; | 
 | 2460 | 	p->type_attr_map_array = flex_array_alloc(sizeof(struct ebitmap), | 
 | 2461 | 						  p->p_types.nprim, | 
 | 2462 | 						  GFP_KERNEL | __GFP_ZERO); | 
 | 2463 | 	if (!p->type_attr_map_array) | 
 | 2464 | 		goto bad; | 
 | 2465 |  | 
 | 2466 | 	/* preallocate so we don't have to worry about the put ever failing */ | 
| Eric Paris | 5a3ea87 | 2011-04-28 15:55:52 -0400 | [diff] [blame] | 2467 | 	rc = flex_array_prealloc(p->type_attr_map_array, 0, p->p_types.nprim, | 
| Eric Paris | 6371dcd | 2010-07-29 23:02:34 -0400 | [diff] [blame] | 2468 | 				 GFP_KERNEL | __GFP_ZERO); | 
 | 2469 | 	if (rc) | 
| Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 2470 | 		goto bad; | 
 | 2471 |  | 
 | 2472 | 	for (i = 0; i < p->p_types.nprim; i++) { | 
| Eric Paris | 6371dcd | 2010-07-29 23:02:34 -0400 | [diff] [blame] | 2473 | 		struct ebitmap *e = flex_array_get(p->type_attr_map_array, i); | 
 | 2474 |  | 
 | 2475 | 		BUG_ON(!e); | 
 | 2476 | 		ebitmap_init(e); | 
| Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 2477 | 		if (p->policyvers >= POLICYDB_VERSION_AVTAB) { | 
| Eric Paris | 6371dcd | 2010-07-29 23:02:34 -0400 | [diff] [blame] | 2478 | 			rc = ebitmap_read(e, fp); | 
 | 2479 | 			if (rc) | 
| Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 2480 | 				goto bad; | 
 | 2481 | 		} | 
 | 2482 | 		/* add the type itself as the degenerate case */ | 
| Eric Paris | 6371dcd | 2010-07-29 23:02:34 -0400 | [diff] [blame] | 2483 | 		rc = ebitmap_set_bit(e, i, 1); | 
 | 2484 | 		if (rc) | 
 | 2485 | 			goto bad; | 
| Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 2486 | 	} | 
 | 2487 |  | 
| KaiGai Kohei | d9250de | 2008-08-28 16:35:57 +0900 | [diff] [blame] | 2488 | 	rc = policydb_bounds_sanity_check(p); | 
 | 2489 | 	if (rc) | 
 | 2490 | 		goto bad; | 
 | 2491 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2492 | 	rc = 0; | 
 | 2493 | out: | 
 | 2494 | 	return rc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2495 | bad: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2496 | 	policydb_destroy(p); | 
 | 2497 | 	goto out; | 
 | 2498 | } | 
| Eric Paris | cee74f4 | 2010-10-13 17:50:25 -0400 | [diff] [blame] | 2499 |  | 
 | 2500 | /* | 
 | 2501 |  * Write a MLS level structure to a policydb binary | 
 | 2502 |  * representation file. | 
 | 2503 |  */ | 
 | 2504 | static int mls_write_level(struct mls_level *l, void *fp) | 
 | 2505 | { | 
 | 2506 | 	__le32 buf[1]; | 
 | 2507 | 	int rc; | 
 | 2508 |  | 
 | 2509 | 	buf[0] = cpu_to_le32(l->sens); | 
 | 2510 | 	rc = put_entry(buf, sizeof(u32), 1, fp); | 
 | 2511 | 	if (rc) | 
 | 2512 | 		return rc; | 
 | 2513 |  | 
 | 2514 | 	rc = ebitmap_write(&l->cat, fp); | 
 | 2515 | 	if (rc) | 
 | 2516 | 		return rc; | 
 | 2517 |  | 
 | 2518 | 	return 0; | 
 | 2519 | } | 
 | 2520 |  | 
 | 2521 | /* | 
 | 2522 |  * Write a MLS range structure to a policydb binary | 
 | 2523 |  * representation file. | 
 | 2524 |  */ | 
 | 2525 | static int mls_write_range_helper(struct mls_range *r, void *fp) | 
 | 2526 | { | 
 | 2527 | 	__le32 buf[3]; | 
 | 2528 | 	size_t items; | 
 | 2529 | 	int rc, eq; | 
 | 2530 |  | 
 | 2531 | 	eq = mls_level_eq(&r->level[1], &r->level[0]); | 
 | 2532 |  | 
 | 2533 | 	if (eq) | 
 | 2534 | 		items = 2; | 
 | 2535 | 	else | 
 | 2536 | 		items = 3; | 
 | 2537 | 	buf[0] = cpu_to_le32(items-1); | 
 | 2538 | 	buf[1] = cpu_to_le32(r->level[0].sens); | 
 | 2539 | 	if (!eq) | 
 | 2540 | 		buf[2] = cpu_to_le32(r->level[1].sens); | 
 | 2541 |  | 
 | 2542 | 	BUG_ON(items > (sizeof(buf)/sizeof(buf[0]))); | 
 | 2543 |  | 
 | 2544 | 	rc = put_entry(buf, sizeof(u32), items, fp); | 
 | 2545 | 	if (rc) | 
 | 2546 | 		return rc; | 
 | 2547 |  | 
 | 2548 | 	rc = ebitmap_write(&r->level[0].cat, fp); | 
 | 2549 | 	if (rc) | 
 | 2550 | 		return rc; | 
 | 2551 | 	if (!eq) { | 
 | 2552 | 		rc = ebitmap_write(&r->level[1].cat, fp); | 
 | 2553 | 		if (rc) | 
 | 2554 | 			return rc; | 
 | 2555 | 	} | 
 | 2556 |  | 
 | 2557 | 	return 0; | 
 | 2558 | } | 
 | 2559 |  | 
 | 2560 | static int sens_write(void *vkey, void *datum, void *ptr) | 
 | 2561 | { | 
 | 2562 | 	char *key = vkey; | 
 | 2563 | 	struct level_datum *levdatum = datum; | 
 | 2564 | 	struct policy_data *pd = ptr; | 
 | 2565 | 	void *fp = pd->fp; | 
 | 2566 | 	__le32 buf[2]; | 
 | 2567 | 	size_t len; | 
 | 2568 | 	int rc; | 
 | 2569 |  | 
 | 2570 | 	len = strlen(key); | 
 | 2571 | 	buf[0] = cpu_to_le32(len); | 
 | 2572 | 	buf[1] = cpu_to_le32(levdatum->isalias); | 
 | 2573 | 	rc = put_entry(buf, sizeof(u32), 2, fp); | 
 | 2574 | 	if (rc) | 
 | 2575 | 		return rc; | 
 | 2576 |  | 
 | 2577 | 	rc = put_entry(key, 1, len, fp); | 
 | 2578 | 	if (rc) | 
 | 2579 | 		return rc; | 
 | 2580 |  | 
 | 2581 | 	rc = mls_write_level(levdatum->level, fp); | 
 | 2582 | 	if (rc) | 
 | 2583 | 		return rc; | 
 | 2584 |  | 
 | 2585 | 	return 0; | 
 | 2586 | } | 
 | 2587 |  | 
 | 2588 | static int cat_write(void *vkey, void *datum, void *ptr) | 
 | 2589 | { | 
 | 2590 | 	char *key = vkey; | 
 | 2591 | 	struct cat_datum *catdatum = datum; | 
 | 2592 | 	struct policy_data *pd = ptr; | 
 | 2593 | 	void *fp = pd->fp; | 
 | 2594 | 	__le32 buf[3]; | 
 | 2595 | 	size_t len; | 
 | 2596 | 	int rc; | 
 | 2597 |  | 
 | 2598 | 	len = strlen(key); | 
 | 2599 | 	buf[0] = cpu_to_le32(len); | 
 | 2600 | 	buf[1] = cpu_to_le32(catdatum->value); | 
 | 2601 | 	buf[2] = cpu_to_le32(catdatum->isalias); | 
 | 2602 | 	rc = put_entry(buf, sizeof(u32), 3, fp); | 
 | 2603 | 	if (rc) | 
 | 2604 | 		return rc; | 
 | 2605 |  | 
 | 2606 | 	rc = put_entry(key, 1, len, fp); | 
 | 2607 | 	if (rc) | 
 | 2608 | 		return rc; | 
 | 2609 |  | 
 | 2610 | 	return 0; | 
 | 2611 | } | 
 | 2612 |  | 
| Harry Ciao | c900ff3 | 2011-03-25 13:52:00 +0800 | [diff] [blame] | 2613 | static int role_trans_write(struct policydb *p, void *fp) | 
| Eric Paris | cee74f4 | 2010-10-13 17:50:25 -0400 | [diff] [blame] | 2614 | { | 
| Harry Ciao | c900ff3 | 2011-03-25 13:52:00 +0800 | [diff] [blame] | 2615 | 	struct role_trans *r = p->role_tr; | 
| Eric Paris | cee74f4 | 2010-10-13 17:50:25 -0400 | [diff] [blame] | 2616 | 	struct role_trans *tr; | 
 | 2617 | 	u32 buf[3]; | 
 | 2618 | 	size_t nel; | 
 | 2619 | 	int rc; | 
 | 2620 |  | 
 | 2621 | 	nel = 0; | 
 | 2622 | 	for (tr = r; tr; tr = tr->next) | 
 | 2623 | 		nel++; | 
 | 2624 | 	buf[0] = cpu_to_le32(nel); | 
 | 2625 | 	rc = put_entry(buf, sizeof(u32), 1, fp); | 
 | 2626 | 	if (rc) | 
 | 2627 | 		return rc; | 
 | 2628 | 	for (tr = r; tr; tr = tr->next) { | 
 | 2629 | 		buf[0] = cpu_to_le32(tr->role); | 
 | 2630 | 		buf[1] = cpu_to_le32(tr->type); | 
 | 2631 | 		buf[2] = cpu_to_le32(tr->new_role); | 
 | 2632 | 		rc = put_entry(buf, sizeof(u32), 3, fp); | 
 | 2633 | 		if (rc) | 
 | 2634 | 			return rc; | 
| Harry Ciao | c900ff3 | 2011-03-25 13:52:00 +0800 | [diff] [blame] | 2635 | 		if (p->policyvers >= POLICYDB_VERSION_ROLETRANS) { | 
 | 2636 | 			buf[0] = cpu_to_le32(tr->tclass); | 
 | 2637 | 			rc = put_entry(buf, sizeof(u32), 1, fp); | 
 | 2638 | 			if (rc) | 
 | 2639 | 				return rc; | 
 | 2640 | 		} | 
| Eric Paris | cee74f4 | 2010-10-13 17:50:25 -0400 | [diff] [blame] | 2641 | 	} | 
 | 2642 |  | 
 | 2643 | 	return 0; | 
 | 2644 | } | 
 | 2645 |  | 
 | 2646 | static int role_allow_write(struct role_allow *r, void *fp) | 
 | 2647 | { | 
 | 2648 | 	struct role_allow *ra; | 
 | 2649 | 	u32 buf[2]; | 
 | 2650 | 	size_t nel; | 
 | 2651 | 	int rc; | 
 | 2652 |  | 
 | 2653 | 	nel = 0; | 
 | 2654 | 	for (ra = r; ra; ra = ra->next) | 
 | 2655 | 		nel++; | 
 | 2656 | 	buf[0] = cpu_to_le32(nel); | 
 | 2657 | 	rc = put_entry(buf, sizeof(u32), 1, fp); | 
 | 2658 | 	if (rc) | 
 | 2659 | 		return rc; | 
 | 2660 | 	for (ra = r; ra; ra = ra->next) { | 
 | 2661 | 		buf[0] = cpu_to_le32(ra->role); | 
 | 2662 | 		buf[1] = cpu_to_le32(ra->new_role); | 
 | 2663 | 		rc = put_entry(buf, sizeof(u32), 2, fp); | 
 | 2664 | 		if (rc) | 
 | 2665 | 			return rc; | 
 | 2666 | 	} | 
 | 2667 | 	return 0; | 
 | 2668 | } | 
 | 2669 |  | 
 | 2670 | /* | 
 | 2671 |  * Write a security context structure | 
 | 2672 |  * to a policydb binary representation file. | 
 | 2673 |  */ | 
 | 2674 | static int context_write(struct policydb *p, struct context *c, | 
 | 2675 | 			 void *fp) | 
 | 2676 | { | 
 | 2677 | 	int rc; | 
 | 2678 | 	__le32 buf[3]; | 
 | 2679 |  | 
 | 2680 | 	buf[0] = cpu_to_le32(c->user); | 
 | 2681 | 	buf[1] = cpu_to_le32(c->role); | 
 | 2682 | 	buf[2] = cpu_to_le32(c->type); | 
 | 2683 |  | 
 | 2684 | 	rc = put_entry(buf, sizeof(u32), 3, fp); | 
 | 2685 | 	if (rc) | 
 | 2686 | 		return rc; | 
 | 2687 |  | 
 | 2688 | 	rc = mls_write_range_helper(&c->range, fp); | 
 | 2689 | 	if (rc) | 
 | 2690 | 		return rc; | 
 | 2691 |  | 
 | 2692 | 	return 0; | 
 | 2693 | } | 
 | 2694 |  | 
 | 2695 | /* | 
 | 2696 |  * The following *_write functions are used to | 
 | 2697 |  * write the symbol data to a policy database | 
 | 2698 |  * binary representation file. | 
 | 2699 |  */ | 
 | 2700 |  | 
 | 2701 | static int perm_write(void *vkey, void *datum, void *fp) | 
 | 2702 | { | 
 | 2703 | 	char *key = vkey; | 
 | 2704 | 	struct perm_datum *perdatum = datum; | 
 | 2705 | 	__le32 buf[2]; | 
 | 2706 | 	size_t len; | 
 | 2707 | 	int rc; | 
 | 2708 |  | 
 | 2709 | 	len = strlen(key); | 
 | 2710 | 	buf[0] = cpu_to_le32(len); | 
 | 2711 | 	buf[1] = cpu_to_le32(perdatum->value); | 
 | 2712 | 	rc = put_entry(buf, sizeof(u32), 2, fp); | 
 | 2713 | 	if (rc) | 
 | 2714 | 		return rc; | 
 | 2715 |  | 
 | 2716 | 	rc = put_entry(key, 1, len, fp); | 
 | 2717 | 	if (rc) | 
 | 2718 | 		return rc; | 
 | 2719 |  | 
 | 2720 | 	return 0; | 
 | 2721 | } | 
 | 2722 |  | 
 | 2723 | static int common_write(void *vkey, void *datum, void *ptr) | 
 | 2724 | { | 
 | 2725 | 	char *key = vkey; | 
 | 2726 | 	struct common_datum *comdatum = datum; | 
 | 2727 | 	struct policy_data *pd = ptr; | 
 | 2728 | 	void *fp = pd->fp; | 
 | 2729 | 	__le32 buf[4]; | 
 | 2730 | 	size_t len; | 
 | 2731 | 	int rc; | 
 | 2732 |  | 
 | 2733 | 	len = strlen(key); | 
 | 2734 | 	buf[0] = cpu_to_le32(len); | 
 | 2735 | 	buf[1] = cpu_to_le32(comdatum->value); | 
 | 2736 | 	buf[2] = cpu_to_le32(comdatum->permissions.nprim); | 
 | 2737 | 	buf[3] = cpu_to_le32(comdatum->permissions.table->nel); | 
 | 2738 | 	rc = put_entry(buf, sizeof(u32), 4, fp); | 
 | 2739 | 	if (rc) | 
 | 2740 | 		return rc; | 
 | 2741 |  | 
 | 2742 | 	rc = put_entry(key, 1, len, fp); | 
 | 2743 | 	if (rc) | 
 | 2744 | 		return rc; | 
 | 2745 |  | 
 | 2746 | 	rc = hashtab_map(comdatum->permissions.table, perm_write, fp); | 
 | 2747 | 	if (rc) | 
 | 2748 | 		return rc; | 
 | 2749 |  | 
 | 2750 | 	return 0; | 
 | 2751 | } | 
 | 2752 |  | 
 | 2753 | static int write_cons_helper(struct policydb *p, struct constraint_node *node, | 
 | 2754 | 			     void *fp) | 
 | 2755 | { | 
 | 2756 | 	struct constraint_node *c; | 
 | 2757 | 	struct constraint_expr *e; | 
 | 2758 | 	__le32 buf[3]; | 
 | 2759 | 	u32 nel; | 
 | 2760 | 	int rc; | 
 | 2761 |  | 
 | 2762 | 	for (c = node; c; c = c->next) { | 
 | 2763 | 		nel = 0; | 
 | 2764 | 		for (e = c->expr; e; e = e->next) | 
 | 2765 | 			nel++; | 
 | 2766 | 		buf[0] = cpu_to_le32(c->permissions); | 
 | 2767 | 		buf[1] = cpu_to_le32(nel); | 
 | 2768 | 		rc = put_entry(buf, sizeof(u32), 2, fp); | 
 | 2769 | 		if (rc) | 
 | 2770 | 			return rc; | 
 | 2771 | 		for (e = c->expr; e; e = e->next) { | 
 | 2772 | 			buf[0] = cpu_to_le32(e->expr_type); | 
 | 2773 | 			buf[1] = cpu_to_le32(e->attr); | 
 | 2774 | 			buf[2] = cpu_to_le32(e->op); | 
 | 2775 | 			rc = put_entry(buf, sizeof(u32), 3, fp); | 
 | 2776 | 			if (rc) | 
 | 2777 | 				return rc; | 
 | 2778 |  | 
 | 2779 | 			switch (e->expr_type) { | 
 | 2780 | 			case CEXPR_NAMES: | 
 | 2781 | 				rc = ebitmap_write(&e->names, fp); | 
 | 2782 | 				if (rc) | 
 | 2783 | 					return rc; | 
 | 2784 | 				break; | 
 | 2785 | 			default: | 
 | 2786 | 				break; | 
 | 2787 | 			} | 
 | 2788 | 		} | 
 | 2789 | 	} | 
 | 2790 |  | 
 | 2791 | 	return 0; | 
 | 2792 | } | 
 | 2793 |  | 
 | 2794 | static int class_write(void *vkey, void *datum, void *ptr) | 
 | 2795 | { | 
 | 2796 | 	char *key = vkey; | 
 | 2797 | 	struct class_datum *cladatum = datum; | 
 | 2798 | 	struct policy_data *pd = ptr; | 
 | 2799 | 	void *fp = pd->fp; | 
 | 2800 | 	struct policydb *p = pd->p; | 
 | 2801 | 	struct constraint_node *c; | 
 | 2802 | 	__le32 buf[6]; | 
 | 2803 | 	u32 ncons; | 
 | 2804 | 	size_t len, len2; | 
 | 2805 | 	int rc; | 
 | 2806 |  | 
 | 2807 | 	len = strlen(key); | 
 | 2808 | 	if (cladatum->comkey) | 
 | 2809 | 		len2 = strlen(cladatum->comkey); | 
 | 2810 | 	else | 
 | 2811 | 		len2 = 0; | 
 | 2812 |  | 
 | 2813 | 	ncons = 0; | 
 | 2814 | 	for (c = cladatum->constraints; c; c = c->next) | 
 | 2815 | 		ncons++; | 
 | 2816 |  | 
 | 2817 | 	buf[0] = cpu_to_le32(len); | 
 | 2818 | 	buf[1] = cpu_to_le32(len2); | 
 | 2819 | 	buf[2] = cpu_to_le32(cladatum->value); | 
 | 2820 | 	buf[3] = cpu_to_le32(cladatum->permissions.nprim); | 
 | 2821 | 	if (cladatum->permissions.table) | 
 | 2822 | 		buf[4] = cpu_to_le32(cladatum->permissions.table->nel); | 
 | 2823 | 	else | 
 | 2824 | 		buf[4] = 0; | 
 | 2825 | 	buf[5] = cpu_to_le32(ncons); | 
 | 2826 | 	rc = put_entry(buf, sizeof(u32), 6, fp); | 
 | 2827 | 	if (rc) | 
 | 2828 | 		return rc; | 
 | 2829 |  | 
 | 2830 | 	rc = put_entry(key, 1, len, fp); | 
 | 2831 | 	if (rc) | 
 | 2832 | 		return rc; | 
 | 2833 |  | 
 | 2834 | 	if (cladatum->comkey) { | 
 | 2835 | 		rc = put_entry(cladatum->comkey, 1, len2, fp); | 
 | 2836 | 		if (rc) | 
 | 2837 | 			return rc; | 
 | 2838 | 	} | 
 | 2839 |  | 
 | 2840 | 	rc = hashtab_map(cladatum->permissions.table, perm_write, fp); | 
 | 2841 | 	if (rc) | 
 | 2842 | 		return rc; | 
 | 2843 |  | 
 | 2844 | 	rc = write_cons_helper(p, cladatum->constraints, fp); | 
 | 2845 | 	if (rc) | 
 | 2846 | 		return rc; | 
 | 2847 |  | 
 | 2848 | 	/* write out the validatetrans rule */ | 
 | 2849 | 	ncons = 0; | 
 | 2850 | 	for (c = cladatum->validatetrans; c; c = c->next) | 
 | 2851 | 		ncons++; | 
 | 2852 |  | 
 | 2853 | 	buf[0] = cpu_to_le32(ncons); | 
 | 2854 | 	rc = put_entry(buf, sizeof(u32), 1, fp); | 
 | 2855 | 	if (rc) | 
 | 2856 | 		return rc; | 
 | 2857 |  | 
 | 2858 | 	rc = write_cons_helper(p, cladatum->validatetrans, fp); | 
 | 2859 | 	if (rc) | 
 | 2860 | 		return rc; | 
 | 2861 |  | 
| Eric Paris | d076bc7 | 2012-03-20 14:35:12 -0400 | [diff] [blame^] | 2862 | 	if (p->policyvers >= POLICYDB_VERSION_NEW_OBJECT_DEFAULTS) { | 
 | 2863 | 		buf[0] = cpu_to_le32(cladatum->default_user); | 
 | 2864 | 		buf[1] = cpu_to_le32(cladatum->default_role); | 
 | 2865 | 		buf[2] = cpu_to_le32(cladatum->default_range); | 
 | 2866 |  | 
 | 2867 | 		rc = put_entry(buf, sizeof(uint32_t), 3, fp); | 
 | 2868 | 		if (rc) | 
 | 2869 | 			return rc; | 
 | 2870 | 	} | 
 | 2871 |  | 
| Eric Paris | cee74f4 | 2010-10-13 17:50:25 -0400 | [diff] [blame] | 2872 | 	return 0; | 
 | 2873 | } | 
 | 2874 |  | 
 | 2875 | static int role_write(void *vkey, void *datum, void *ptr) | 
 | 2876 | { | 
 | 2877 | 	char *key = vkey; | 
 | 2878 | 	struct role_datum *role = datum; | 
 | 2879 | 	struct policy_data *pd = ptr; | 
 | 2880 | 	void *fp = pd->fp; | 
 | 2881 | 	struct policydb *p = pd->p; | 
 | 2882 | 	__le32 buf[3]; | 
 | 2883 | 	size_t items, len; | 
 | 2884 | 	int rc; | 
 | 2885 |  | 
 | 2886 | 	len = strlen(key); | 
 | 2887 | 	items = 0; | 
 | 2888 | 	buf[items++] = cpu_to_le32(len); | 
 | 2889 | 	buf[items++] = cpu_to_le32(role->value); | 
 | 2890 | 	if (p->policyvers >= POLICYDB_VERSION_BOUNDARY) | 
 | 2891 | 		buf[items++] = cpu_to_le32(role->bounds); | 
 | 2892 |  | 
 | 2893 | 	BUG_ON(items > (sizeof(buf)/sizeof(buf[0]))); | 
 | 2894 |  | 
 | 2895 | 	rc = put_entry(buf, sizeof(u32), items, fp); | 
 | 2896 | 	if (rc) | 
 | 2897 | 		return rc; | 
 | 2898 |  | 
 | 2899 | 	rc = put_entry(key, 1, len, fp); | 
 | 2900 | 	if (rc) | 
 | 2901 | 		return rc; | 
 | 2902 |  | 
 | 2903 | 	rc = ebitmap_write(&role->dominates, fp); | 
 | 2904 | 	if (rc) | 
 | 2905 | 		return rc; | 
 | 2906 |  | 
 | 2907 | 	rc = ebitmap_write(&role->types, fp); | 
 | 2908 | 	if (rc) | 
 | 2909 | 		return rc; | 
 | 2910 |  | 
 | 2911 | 	return 0; | 
 | 2912 | } | 
 | 2913 |  | 
 | 2914 | static int type_write(void *vkey, void *datum, void *ptr) | 
 | 2915 | { | 
 | 2916 | 	char *key = vkey; | 
 | 2917 | 	struct type_datum *typdatum = datum; | 
 | 2918 | 	struct policy_data *pd = ptr; | 
 | 2919 | 	struct policydb *p = pd->p; | 
 | 2920 | 	void *fp = pd->fp; | 
 | 2921 | 	__le32 buf[4]; | 
 | 2922 | 	int rc; | 
 | 2923 | 	size_t items, len; | 
 | 2924 |  | 
 | 2925 | 	len = strlen(key); | 
 | 2926 | 	items = 0; | 
 | 2927 | 	buf[items++] = cpu_to_le32(len); | 
 | 2928 | 	buf[items++] = cpu_to_le32(typdatum->value); | 
 | 2929 | 	if (p->policyvers >= POLICYDB_VERSION_BOUNDARY) { | 
 | 2930 | 		u32 properties = 0; | 
 | 2931 |  | 
 | 2932 | 		if (typdatum->primary) | 
 | 2933 | 			properties |= TYPEDATUM_PROPERTY_PRIMARY; | 
 | 2934 |  | 
 | 2935 | 		if (typdatum->attribute) | 
 | 2936 | 			properties |= TYPEDATUM_PROPERTY_ATTRIBUTE; | 
 | 2937 |  | 
 | 2938 | 		buf[items++] = cpu_to_le32(properties); | 
 | 2939 | 		buf[items++] = cpu_to_le32(typdatum->bounds); | 
 | 2940 | 	} else { | 
 | 2941 | 		buf[items++] = cpu_to_le32(typdatum->primary); | 
 | 2942 | 	} | 
 | 2943 | 	BUG_ON(items > (sizeof(buf) / sizeof(buf[0]))); | 
 | 2944 | 	rc = put_entry(buf, sizeof(u32), items, fp); | 
 | 2945 | 	if (rc) | 
 | 2946 | 		return rc; | 
 | 2947 |  | 
 | 2948 | 	rc = put_entry(key, 1, len, fp); | 
 | 2949 | 	if (rc) | 
 | 2950 | 		return rc; | 
 | 2951 |  | 
 | 2952 | 	return 0; | 
 | 2953 | } | 
 | 2954 |  | 
 | 2955 | static int user_write(void *vkey, void *datum, void *ptr) | 
 | 2956 | { | 
 | 2957 | 	char *key = vkey; | 
 | 2958 | 	struct user_datum *usrdatum = datum; | 
 | 2959 | 	struct policy_data *pd = ptr; | 
 | 2960 | 	struct policydb *p = pd->p; | 
 | 2961 | 	void *fp = pd->fp; | 
 | 2962 | 	__le32 buf[3]; | 
 | 2963 | 	size_t items, len; | 
 | 2964 | 	int rc; | 
 | 2965 |  | 
 | 2966 | 	len = strlen(key); | 
 | 2967 | 	items = 0; | 
 | 2968 | 	buf[items++] = cpu_to_le32(len); | 
 | 2969 | 	buf[items++] = cpu_to_le32(usrdatum->value); | 
 | 2970 | 	if (p->policyvers >= POLICYDB_VERSION_BOUNDARY) | 
 | 2971 | 		buf[items++] = cpu_to_le32(usrdatum->bounds); | 
 | 2972 | 	BUG_ON(items > (sizeof(buf) / sizeof(buf[0]))); | 
 | 2973 | 	rc = put_entry(buf, sizeof(u32), items, fp); | 
 | 2974 | 	if (rc) | 
 | 2975 | 		return rc; | 
 | 2976 |  | 
 | 2977 | 	rc = put_entry(key, 1, len, fp); | 
 | 2978 | 	if (rc) | 
 | 2979 | 		return rc; | 
 | 2980 |  | 
 | 2981 | 	rc = ebitmap_write(&usrdatum->roles, fp); | 
 | 2982 | 	if (rc) | 
 | 2983 | 		return rc; | 
 | 2984 |  | 
 | 2985 | 	rc = mls_write_range_helper(&usrdatum->range, fp); | 
 | 2986 | 	if (rc) | 
 | 2987 | 		return rc; | 
 | 2988 |  | 
 | 2989 | 	rc = mls_write_level(&usrdatum->dfltlevel, fp); | 
 | 2990 | 	if (rc) | 
 | 2991 | 		return rc; | 
 | 2992 |  | 
 | 2993 | 	return 0; | 
 | 2994 | } | 
 | 2995 |  | 
 | 2996 | static int (*write_f[SYM_NUM]) (void *key, void *datum, | 
 | 2997 | 				void *datap) = | 
 | 2998 | { | 
 | 2999 | 	common_write, | 
 | 3000 | 	class_write, | 
 | 3001 | 	role_write, | 
 | 3002 | 	type_write, | 
 | 3003 | 	user_write, | 
 | 3004 | 	cond_write_bool, | 
 | 3005 | 	sens_write, | 
 | 3006 | 	cat_write, | 
 | 3007 | }; | 
 | 3008 |  | 
 | 3009 | static int ocontext_write(struct policydb *p, struct policydb_compat_info *info, | 
 | 3010 | 			  void *fp) | 
 | 3011 | { | 
 | 3012 | 	unsigned int i, j, rc; | 
 | 3013 | 	size_t nel, len; | 
 | 3014 | 	__le32 buf[3]; | 
 | 3015 | 	u32 nodebuf[8]; | 
 | 3016 | 	struct ocontext *c; | 
 | 3017 | 	for (i = 0; i < info->ocon_num; i++) { | 
 | 3018 | 		nel = 0; | 
 | 3019 | 		for (c = p->ocontexts[i]; c; c = c->next) | 
 | 3020 | 			nel++; | 
 | 3021 | 		buf[0] = cpu_to_le32(nel); | 
 | 3022 | 		rc = put_entry(buf, sizeof(u32), 1, fp); | 
 | 3023 | 		if (rc) | 
 | 3024 | 			return rc; | 
 | 3025 | 		for (c = p->ocontexts[i]; c; c = c->next) { | 
 | 3026 | 			switch (i) { | 
 | 3027 | 			case OCON_ISID: | 
 | 3028 | 				buf[0] = cpu_to_le32(c->sid[0]); | 
 | 3029 | 				rc = put_entry(buf, sizeof(u32), 1, fp); | 
 | 3030 | 				if (rc) | 
 | 3031 | 					return rc; | 
 | 3032 | 				rc = context_write(p, &c->context[0], fp); | 
 | 3033 | 				if (rc) | 
 | 3034 | 					return rc; | 
 | 3035 | 				break; | 
 | 3036 | 			case OCON_FS: | 
 | 3037 | 			case OCON_NETIF: | 
 | 3038 | 				len = strlen(c->u.name); | 
 | 3039 | 				buf[0] = cpu_to_le32(len); | 
 | 3040 | 				rc = put_entry(buf, sizeof(u32), 1, fp); | 
 | 3041 | 				if (rc) | 
 | 3042 | 					return rc; | 
 | 3043 | 				rc = put_entry(c->u.name, 1, len, fp); | 
 | 3044 | 				if (rc) | 
 | 3045 | 					return rc; | 
 | 3046 | 				rc = context_write(p, &c->context[0], fp); | 
 | 3047 | 				if (rc) | 
 | 3048 | 					return rc; | 
 | 3049 | 				rc = context_write(p, &c->context[1], fp); | 
 | 3050 | 				if (rc) | 
 | 3051 | 					return rc; | 
 | 3052 | 				break; | 
 | 3053 | 			case OCON_PORT: | 
 | 3054 | 				buf[0] = cpu_to_le32(c->u.port.protocol); | 
 | 3055 | 				buf[1] = cpu_to_le32(c->u.port.low_port); | 
 | 3056 | 				buf[2] = cpu_to_le32(c->u.port.high_port); | 
 | 3057 | 				rc = put_entry(buf, sizeof(u32), 3, fp); | 
 | 3058 | 				if (rc) | 
 | 3059 | 					return rc; | 
 | 3060 | 				rc = context_write(p, &c->context[0], fp); | 
 | 3061 | 				if (rc) | 
 | 3062 | 					return rc; | 
 | 3063 | 				break; | 
 | 3064 | 			case OCON_NODE: | 
 | 3065 | 				nodebuf[0] = c->u.node.addr; /* network order */ | 
 | 3066 | 				nodebuf[1] = c->u.node.mask; /* network order */ | 
 | 3067 | 				rc = put_entry(nodebuf, sizeof(u32), 2, fp); | 
 | 3068 | 				if (rc) | 
 | 3069 | 					return rc; | 
 | 3070 | 				rc = context_write(p, &c->context[0], fp); | 
 | 3071 | 				if (rc) | 
 | 3072 | 					return rc; | 
 | 3073 | 				break; | 
 | 3074 | 			case OCON_FSUSE: | 
 | 3075 | 				buf[0] = cpu_to_le32(c->v.behavior); | 
 | 3076 | 				len = strlen(c->u.name); | 
 | 3077 | 				buf[1] = cpu_to_le32(len); | 
 | 3078 | 				rc = put_entry(buf, sizeof(u32), 2, fp); | 
 | 3079 | 				if (rc) | 
 | 3080 | 					return rc; | 
 | 3081 | 				rc = put_entry(c->u.name, 1, len, fp); | 
 | 3082 | 				if (rc) | 
 | 3083 | 					return rc; | 
 | 3084 | 				rc = context_write(p, &c->context[0], fp); | 
 | 3085 | 				if (rc) | 
 | 3086 | 					return rc; | 
 | 3087 | 				break; | 
 | 3088 | 			case OCON_NODE6: | 
 | 3089 | 				for (j = 0; j < 4; j++) | 
 | 3090 | 					nodebuf[j] = c->u.node6.addr[j]; /* network order */ | 
 | 3091 | 				for (j = 0; j < 4; j++) | 
 | 3092 | 					nodebuf[j + 4] = c->u.node6.mask[j]; /* network order */ | 
 | 3093 | 				rc = put_entry(nodebuf, sizeof(u32), 8, fp); | 
 | 3094 | 				if (rc) | 
 | 3095 | 					return rc; | 
 | 3096 | 				rc = context_write(p, &c->context[0], fp); | 
 | 3097 | 				if (rc) | 
 | 3098 | 					return rc; | 
 | 3099 | 				break; | 
 | 3100 | 			} | 
 | 3101 | 		} | 
 | 3102 | 	} | 
 | 3103 | 	return 0; | 
 | 3104 | } | 
 | 3105 |  | 
 | 3106 | static int genfs_write(struct policydb *p, void *fp) | 
 | 3107 | { | 
 | 3108 | 	struct genfs *genfs; | 
 | 3109 | 	struct ocontext *c; | 
 | 3110 | 	size_t len; | 
 | 3111 | 	__le32 buf[1]; | 
 | 3112 | 	int rc; | 
 | 3113 |  | 
 | 3114 | 	len = 0; | 
 | 3115 | 	for (genfs = p->genfs; genfs; genfs = genfs->next) | 
 | 3116 | 		len++; | 
 | 3117 | 	buf[0] = cpu_to_le32(len); | 
 | 3118 | 	rc = put_entry(buf, sizeof(u32), 1, fp); | 
 | 3119 | 	if (rc) | 
 | 3120 | 		return rc; | 
 | 3121 | 	for (genfs = p->genfs; genfs; genfs = genfs->next) { | 
 | 3122 | 		len = strlen(genfs->fstype); | 
 | 3123 | 		buf[0] = cpu_to_le32(len); | 
 | 3124 | 		rc = put_entry(buf, sizeof(u32), 1, fp); | 
 | 3125 | 		if (rc) | 
 | 3126 | 			return rc; | 
 | 3127 | 		rc = put_entry(genfs->fstype, 1, len, fp); | 
 | 3128 | 		if (rc) | 
 | 3129 | 			return rc; | 
 | 3130 | 		len = 0; | 
 | 3131 | 		for (c = genfs->head; c; c = c->next) | 
 | 3132 | 			len++; | 
 | 3133 | 		buf[0] = cpu_to_le32(len); | 
 | 3134 | 		rc = put_entry(buf, sizeof(u32), 1, fp); | 
 | 3135 | 		if (rc) | 
 | 3136 | 			return rc; | 
 | 3137 | 		for (c = genfs->head; c; c = c->next) { | 
 | 3138 | 			len = strlen(c->u.name); | 
 | 3139 | 			buf[0] = cpu_to_le32(len); | 
 | 3140 | 			rc = put_entry(buf, sizeof(u32), 1, fp); | 
 | 3141 | 			if (rc) | 
 | 3142 | 				return rc; | 
 | 3143 | 			rc = put_entry(c->u.name, 1, len, fp); | 
 | 3144 | 			if (rc) | 
 | 3145 | 				return rc; | 
 | 3146 | 			buf[0] = cpu_to_le32(c->v.sclass); | 
 | 3147 | 			rc = put_entry(buf, sizeof(u32), 1, fp); | 
 | 3148 | 			if (rc) | 
 | 3149 | 				return rc; | 
 | 3150 | 			rc = context_write(p, &c->context[0], fp); | 
 | 3151 | 			if (rc) | 
 | 3152 | 				return rc; | 
 | 3153 | 		} | 
 | 3154 | 	} | 
 | 3155 | 	return 0; | 
 | 3156 | } | 
 | 3157 |  | 
| Eric Paris | 3f058ef | 2011-04-28 15:11:21 -0400 | [diff] [blame] | 3158 | static int hashtab_cnt(void *key, void *data, void *ptr) | 
| Eric Paris | cee74f4 | 2010-10-13 17:50:25 -0400 | [diff] [blame] | 3159 | { | 
 | 3160 | 	int *cnt = ptr; | 
 | 3161 | 	*cnt = *cnt + 1; | 
 | 3162 |  | 
 | 3163 | 	return 0; | 
 | 3164 | } | 
 | 3165 |  | 
 | 3166 | static int range_write_helper(void *key, void *data, void *ptr) | 
 | 3167 | { | 
 | 3168 | 	__le32 buf[2]; | 
 | 3169 | 	struct range_trans *rt = key; | 
 | 3170 | 	struct mls_range *r = data; | 
 | 3171 | 	struct policy_data *pd = ptr; | 
 | 3172 | 	void *fp = pd->fp; | 
 | 3173 | 	struct policydb *p = pd->p; | 
 | 3174 | 	int rc; | 
 | 3175 |  | 
 | 3176 | 	buf[0] = cpu_to_le32(rt->source_type); | 
 | 3177 | 	buf[1] = cpu_to_le32(rt->target_type); | 
 | 3178 | 	rc = put_entry(buf, sizeof(u32), 2, fp); | 
 | 3179 | 	if (rc) | 
 | 3180 | 		return rc; | 
 | 3181 | 	if (p->policyvers >= POLICYDB_VERSION_RANGETRANS) { | 
 | 3182 | 		buf[0] = cpu_to_le32(rt->target_class); | 
 | 3183 | 		rc = put_entry(buf, sizeof(u32), 1, fp); | 
 | 3184 | 		if (rc) | 
 | 3185 | 			return rc; | 
 | 3186 | 	} | 
 | 3187 | 	rc = mls_write_range_helper(r, fp); | 
 | 3188 | 	if (rc) | 
 | 3189 | 		return rc; | 
 | 3190 |  | 
 | 3191 | 	return 0; | 
 | 3192 | } | 
 | 3193 |  | 
 | 3194 | static int range_write(struct policydb *p, void *fp) | 
 | 3195 | { | 
 | 3196 | 	size_t nel; | 
 | 3197 | 	__le32 buf[1]; | 
 | 3198 | 	int rc; | 
 | 3199 | 	struct policy_data pd; | 
 | 3200 |  | 
 | 3201 | 	pd.p = p; | 
 | 3202 | 	pd.fp = fp; | 
 | 3203 |  | 
 | 3204 | 	/* count the number of entries in the hashtab */ | 
 | 3205 | 	nel = 0; | 
| Eric Paris | 3f058ef | 2011-04-28 15:11:21 -0400 | [diff] [blame] | 3206 | 	rc = hashtab_map(p->range_tr, hashtab_cnt, &nel); | 
| Eric Paris | cee74f4 | 2010-10-13 17:50:25 -0400 | [diff] [blame] | 3207 | 	if (rc) | 
 | 3208 | 		return rc; | 
 | 3209 |  | 
 | 3210 | 	buf[0] = cpu_to_le32(nel); | 
 | 3211 | 	rc = put_entry(buf, sizeof(u32), 1, fp); | 
 | 3212 | 	if (rc) | 
 | 3213 | 		return rc; | 
 | 3214 |  | 
 | 3215 | 	/* actually write all of the entries */ | 
 | 3216 | 	rc = hashtab_map(p->range_tr, range_write_helper, &pd); | 
 | 3217 | 	if (rc) | 
 | 3218 | 		return rc; | 
 | 3219 |  | 
 | 3220 | 	return 0; | 
 | 3221 | } | 
 | 3222 |  | 
| Eric Paris | 2463c26d | 2011-04-28 15:11:21 -0400 | [diff] [blame] | 3223 | static int filename_write_helper(void *key, void *data, void *ptr) | 
 | 3224 | { | 
 | 3225 | 	__le32 buf[4]; | 
 | 3226 | 	struct filename_trans *ft = key; | 
 | 3227 | 	struct filename_trans_datum *otype = data; | 
 | 3228 | 	void *fp = ptr; | 
 | 3229 | 	int rc; | 
 | 3230 | 	u32 len; | 
 | 3231 |  | 
 | 3232 | 	len = strlen(ft->name); | 
 | 3233 | 	buf[0] = cpu_to_le32(len); | 
 | 3234 | 	rc = put_entry(buf, sizeof(u32), 1, fp); | 
 | 3235 | 	if (rc) | 
 | 3236 | 		return rc; | 
 | 3237 |  | 
 | 3238 | 	rc = put_entry(ft->name, sizeof(char), len, fp); | 
 | 3239 | 	if (rc) | 
 | 3240 | 		return rc; | 
 | 3241 |  | 
| Eric Paris | 186ef23 | 2014-02-20 10:56:45 -0500 | [diff] [blame] | 3242 | 	buf[0] = cpu_to_le32(ft->stype); | 
 | 3243 | 	buf[1] = cpu_to_le32(ft->ttype); | 
 | 3244 | 	buf[2] = cpu_to_le32(ft->tclass); | 
 | 3245 | 	buf[3] = cpu_to_le32(otype->otype); | 
| Eric Paris | 2463c26d | 2011-04-28 15:11:21 -0400 | [diff] [blame] | 3246 |  | 
 | 3247 | 	rc = put_entry(buf, sizeof(u32), 4, fp); | 
 | 3248 | 	if (rc) | 
 | 3249 | 		return rc; | 
 | 3250 |  | 
 | 3251 | 	return 0; | 
 | 3252 | } | 
 | 3253 |  | 
| Eric Paris | 652bb9b | 2011-02-01 11:05:40 -0500 | [diff] [blame] | 3254 | static int filename_trans_write(struct policydb *p, void *fp) | 
 | 3255 | { | 
| Eric Paris | 2463c26d | 2011-04-28 15:11:21 -0400 | [diff] [blame] | 3256 | 	u32 nel; | 
 | 3257 | 	__le32 buf[1]; | 
| Eric Paris | 652bb9b | 2011-02-01 11:05:40 -0500 | [diff] [blame] | 3258 | 	int rc; | 
 | 3259 |  | 
| Roy.Li | ded5098 | 2011-05-20 10:38:06 +0800 | [diff] [blame] | 3260 | 	if (p->policyvers < POLICYDB_VERSION_FILENAME_TRANS) | 
 | 3261 | 		return 0; | 
 | 3262 |  | 
| Eric Paris | 2463c26d | 2011-04-28 15:11:21 -0400 | [diff] [blame] | 3263 | 	nel = 0; | 
 | 3264 | 	rc = hashtab_map(p->filename_trans, hashtab_cnt, &nel); | 
 | 3265 | 	if (rc) | 
 | 3266 | 		return rc; | 
| Eric Paris | 652bb9b | 2011-02-01 11:05:40 -0500 | [diff] [blame] | 3267 |  | 
 | 3268 | 	buf[0] = cpu_to_le32(nel); | 
 | 3269 | 	rc = put_entry(buf, sizeof(u32), 1, fp); | 
 | 3270 | 	if (rc) | 
 | 3271 | 		return rc; | 
 | 3272 |  | 
| Eric Paris | 2463c26d | 2011-04-28 15:11:21 -0400 | [diff] [blame] | 3273 | 	rc = hashtab_map(p->filename_trans, filename_write_helper, fp); | 
 | 3274 | 	if (rc) | 
 | 3275 | 		return rc; | 
| Eric Paris | 652bb9b | 2011-02-01 11:05:40 -0500 | [diff] [blame] | 3276 |  | 
| Eric Paris | 652bb9b | 2011-02-01 11:05:40 -0500 | [diff] [blame] | 3277 | 	return 0; | 
 | 3278 | } | 
| Eric Paris | 2463c26d | 2011-04-28 15:11:21 -0400 | [diff] [blame] | 3279 |  | 
| Eric Paris | cee74f4 | 2010-10-13 17:50:25 -0400 | [diff] [blame] | 3280 | /* | 
 | 3281 |  * Write the configuration data in a policy database | 
 | 3282 |  * structure to a policy database binary representation | 
 | 3283 |  * file. | 
 | 3284 |  */ | 
 | 3285 | int policydb_write(struct policydb *p, void *fp) | 
 | 3286 | { | 
 | 3287 | 	unsigned int i, num_syms; | 
 | 3288 | 	int rc; | 
 | 3289 | 	__le32 buf[4]; | 
 | 3290 | 	u32 config; | 
 | 3291 | 	size_t len; | 
 | 3292 | 	struct policydb_compat_info *info; | 
 | 3293 |  | 
 | 3294 | 	/* | 
 | 3295 | 	 * refuse to write policy older than compressed avtab | 
 | 3296 | 	 * to simplify the writer.  There are other tests dropped | 
 | 3297 | 	 * since we assume this throughout the writer code.  Be | 
 | 3298 | 	 * careful if you ever try to remove this restriction | 
 | 3299 | 	 */ | 
 | 3300 | 	if (p->policyvers < POLICYDB_VERSION_AVTAB) { | 
 | 3301 | 		printk(KERN_ERR "SELinux: refusing to write policy version %d." | 
 | 3302 | 		       "  Because it is less than version %d\n", p->policyvers, | 
 | 3303 | 		       POLICYDB_VERSION_AVTAB); | 
 | 3304 | 		return -EINVAL; | 
 | 3305 | 	} | 
 | 3306 |  | 
 | 3307 | 	config = 0; | 
 | 3308 | 	if (p->mls_enabled) | 
 | 3309 | 		config |= POLICYDB_CONFIG_MLS; | 
 | 3310 |  | 
 | 3311 | 	if (p->reject_unknown) | 
 | 3312 | 		config |= REJECT_UNKNOWN; | 
 | 3313 | 	if (p->allow_unknown) | 
 | 3314 | 		config |= ALLOW_UNKNOWN; | 
 | 3315 |  | 
 | 3316 | 	/* Write the magic number and string identifiers. */ | 
 | 3317 | 	buf[0] = cpu_to_le32(POLICYDB_MAGIC); | 
 | 3318 | 	len = strlen(POLICYDB_STRING); | 
 | 3319 | 	buf[1] = cpu_to_le32(len); | 
 | 3320 | 	rc = put_entry(buf, sizeof(u32), 2, fp); | 
 | 3321 | 	if (rc) | 
 | 3322 | 		return rc; | 
 | 3323 | 	rc = put_entry(POLICYDB_STRING, 1, len, fp); | 
 | 3324 | 	if (rc) | 
 | 3325 | 		return rc; | 
 | 3326 |  | 
 | 3327 | 	/* Write the version, config, and table sizes. */ | 
 | 3328 | 	info = policydb_lookup_compat(p->policyvers); | 
 | 3329 | 	if (!info) { | 
 | 3330 | 		printk(KERN_ERR "SELinux: compatibility lookup failed for policy " | 
 | 3331 | 		    "version %d", p->policyvers); | 
| Eric Paris | 9398c7f | 2010-11-23 11:40:08 -0500 | [diff] [blame] | 3332 | 		return -EINVAL; | 
| Eric Paris | cee74f4 | 2010-10-13 17:50:25 -0400 | [diff] [blame] | 3333 | 	} | 
 | 3334 |  | 
 | 3335 | 	buf[0] = cpu_to_le32(p->policyvers); | 
 | 3336 | 	buf[1] = cpu_to_le32(config); | 
 | 3337 | 	buf[2] = cpu_to_le32(info->sym_num); | 
 | 3338 | 	buf[3] = cpu_to_le32(info->ocon_num); | 
 | 3339 |  | 
 | 3340 | 	rc = put_entry(buf, sizeof(u32), 4, fp); | 
 | 3341 | 	if (rc) | 
 | 3342 | 		return rc; | 
 | 3343 |  | 
 | 3344 | 	if (p->policyvers >= POLICYDB_VERSION_POLCAP) { | 
 | 3345 | 		rc = ebitmap_write(&p->policycaps, fp); | 
 | 3346 | 		if (rc) | 
 | 3347 | 			return rc; | 
 | 3348 | 	} | 
 | 3349 |  | 
 | 3350 | 	if (p->policyvers >= POLICYDB_VERSION_PERMISSIVE) { | 
 | 3351 | 		rc = ebitmap_write(&p->permissive_map, fp); | 
 | 3352 | 		if (rc) | 
 | 3353 | 			return rc; | 
 | 3354 | 	} | 
 | 3355 |  | 
 | 3356 | 	num_syms = info->sym_num; | 
 | 3357 | 	for (i = 0; i < num_syms; i++) { | 
 | 3358 | 		struct policy_data pd; | 
 | 3359 |  | 
 | 3360 | 		pd.fp = fp; | 
 | 3361 | 		pd.p = p; | 
 | 3362 |  | 
 | 3363 | 		buf[0] = cpu_to_le32(p->symtab[i].nprim); | 
 | 3364 | 		buf[1] = cpu_to_le32(p->symtab[i].table->nel); | 
 | 3365 |  | 
 | 3366 | 		rc = put_entry(buf, sizeof(u32), 2, fp); | 
 | 3367 | 		if (rc) | 
 | 3368 | 			return rc; | 
 | 3369 | 		rc = hashtab_map(p->symtab[i].table, write_f[i], &pd); | 
 | 3370 | 		if (rc) | 
 | 3371 | 			return rc; | 
 | 3372 | 	} | 
 | 3373 |  | 
 | 3374 | 	rc = avtab_write(p, &p->te_avtab, fp); | 
 | 3375 | 	if (rc) | 
 | 3376 | 		return rc; | 
 | 3377 |  | 
 | 3378 | 	rc = cond_write_list(p, p->cond_list, fp); | 
 | 3379 | 	if (rc) | 
 | 3380 | 		return rc; | 
 | 3381 |  | 
| Harry Ciao | c900ff3 | 2011-03-25 13:52:00 +0800 | [diff] [blame] | 3382 | 	rc = role_trans_write(p, fp); | 
| Eric Paris | cee74f4 | 2010-10-13 17:50:25 -0400 | [diff] [blame] | 3383 | 	if (rc) | 
 | 3384 | 		return rc; | 
 | 3385 |  | 
 | 3386 | 	rc = role_allow_write(p->role_allow, fp); | 
 | 3387 | 	if (rc) | 
 | 3388 | 		return rc; | 
 | 3389 |  | 
| Eric Paris | 652bb9b | 2011-02-01 11:05:40 -0500 | [diff] [blame] | 3390 | 	rc = filename_trans_write(p, fp); | 
 | 3391 | 	if (rc) | 
 | 3392 | 		return rc; | 
 | 3393 |  | 
| Eric Paris | cee74f4 | 2010-10-13 17:50:25 -0400 | [diff] [blame] | 3394 | 	rc = ocontext_write(p, info, fp); | 
 | 3395 | 	if (rc) | 
 | 3396 | 		return rc; | 
 | 3397 |  | 
 | 3398 | 	rc = genfs_write(p, fp); | 
 | 3399 | 	if (rc) | 
 | 3400 | 		return rc; | 
 | 3401 |  | 
 | 3402 | 	rc = range_write(p, fp); | 
 | 3403 | 	if (rc) | 
 | 3404 | 		return rc; | 
 | 3405 |  | 
 | 3406 | 	for (i = 0; i < p->p_types.nprim; i++) { | 
 | 3407 | 		struct ebitmap *e = flex_array_get(p->type_attr_map_array, i); | 
 | 3408 |  | 
 | 3409 | 		BUG_ON(!e); | 
 | 3410 | 		rc = ebitmap_write(e, fp); | 
 | 3411 | 		if (rc) | 
 | 3412 | 			return rc; | 
 | 3413 | 	} | 
 | 3414 |  | 
 | 3415 | 	return 0; | 
 | 3416 | } |