summaryrefslogtreecommitdiffstats
path: root/libqpol/src/rbacrule_query.c
blob: 7f844590ef82b995de1106e5d95a8008cf0362eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
/**
 *  @file
 *  Defines public interface for iterating over RBAC rules.
 *
 *  @author Jeremy A. Mowery jmowery@tresys.com
 *  @author Jason Tang jtang@tresys.com
 *
 *  Copyright (C) 2006-2007 Tresys Technology, LLC
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License as published by the Free Software Foundation; either
 *  version 2.1 of the License, or (at your option) any later version.
 *
 *  This library is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */

#include <qpol/iterator.h>
#include <qpol/policy.h>
#include <qpol/rbacrule_query.h>
#include <stdlib.h>
#include "iterator_internal.h"
#include "qpol_internal.h"
#include <sepol/policydb/policydb.h>

typedef struct role_allow_state
{
	role_allow_t *head;
	role_allow_t *cur;
} role_allow_state_t;

static int role_allow_state_end(const qpol_iterator_t * iter)
{
	role_allow_state_t *ras = NULL;

	if (!iter || !(ras = qpol_iterator_state(iter))) {
		errno = EINVAL;
		return STATUS_ERR;
	}

	return ras->cur ? 0 : 1;
}

static void *role_allow_state_get_cur(const qpol_iterator_t * iter)
{
	role_allow_state_t *ras = NULL;
	const policydb_t *db = NULL;

	if (!iter || !(ras = qpol_iterator_state(iter)) || !(db = qpol_iterator_policy(iter)) || role_allow_state_end(iter)) {
		errno = EINVAL;
		return NULL;
	}

	return ras->cur;
}

static int role_allow_state_next(qpol_iterator_t * iter)
{
	role_allow_state_t *ras = NULL;
	const policydb_t *db = NULL;

	if (!iter || !(ras = qpol_iterator_state(iter)) || !(db = qpol_iterator_policy(iter))) {
		errno = EINVAL;
		return STATUS_ERR;
	}

	if (role_allow_state_end(iter)) {
		errno = ERANGE;
		return STATUS_ERR;
	}

	ras->cur = ras->cur->next;

	return STATUS_SUCCESS;
}

static size_t role_allow_state_size(const qpol_iterator_t * iter)
{
	role_allow_state_t *ras = NULL;
	const policydb_t *db = NULL;
	role_allow_t *tmp = NULL;
	size_t count = 0;

	if (!iter || !(ras = qpol_iterator_state(iter)) || !(db = qpol_iterator_policy(iter))) {
		errno = EINVAL;
		return STATUS_ERR;
	}

	for (tmp = ras->head; tmp; tmp = tmp->next)
		count++;

	return count;
}

int qpol_policy_get_role_allow_iter(const qpol_policy_t * policy, qpol_iterator_t ** iter)
{
	policydb_t *db = NULL;
	role_allow_state_t *ras = NULL;
	int error = 0;

	if (iter)
		*iter = NULL;

	if (!policy || !iter) {
		ERR(policy, "%s", strerror(EINVAL));
		errno = EINVAL;
		return STATUS_ERR;
	}

	db = &policy->p->p;

	ras = calloc(1, sizeof(role_allow_state_t));
	if (!ras) {
		/* errno set by calloc */
		ERR(policy, "%s", strerror(errno));
		return STATUS_ERR;
	}
	ras->head = ras->cur = db->role_allow;

	if (qpol_iterator_create
	    (policy, (void *)ras, role_allow_state_get_cur, role_allow_state_next, role_allow_state_end, role_allow_state_size,
	     free, iter)) {
		error = errno;
		free(ras);
		errno = error;
		return STATUS_ERR;
	}

	return STATUS_SUCCESS;
}

int qpol_role_allow_get_source_role(const qpol_policy_t * policy, const qpol_role_allow_t * rule, const qpol_role_t ** source)
{
	policydb_t *db = NULL;
	role_allow_t *ra = NULL;

	if (source) {
		*source = NULL;
	}

	if (!policy || !rule || !source) {
		ERR(policy, "%s", strerror(EINVAL));
		errno = EINVAL;
		return STATUS_ERR;
	}

	db = &policy->p->p;
	ra = (role_allow_t *) rule;

	*source = (qpol_role_t *) db->role_val_to_struct[ra->role - 1];

	return STATUS_SUCCESS;
}

int qpol_role_allow_get_target_role(const qpol_policy_t * policy, const qpol_role_allow_t * rule, const qpol_role_t ** target)
{
	policydb_t *db = NULL;
	role_allow_t *ra = NULL;

	if (target) {
		*target = NULL;
	}

	if (!policy || !rule || !target) {
		ERR(policy, "%s", strerror(EINVAL));
		errno = EINVAL;
		return STATUS_ERR;
	}

	db = &policy->p->p;
	ra = (role_allow_t *) rule;

	*target = (qpol_role_t *) db->role_val_to_struct[ra->new_role - 1];

	return STATUS_SUCCESS;
}

typedef struct role_trans_state
{
	role_trans_t *head;
	role_trans_t *cur;
} role_trans_state_t;

static int role_trans_state_end(const qpol_iterator_t * iter)
{
	role_trans_state_t *rts = NULL;

	if (!iter || !(rts = qpol_iterator_state(iter))) {
		errno = EINVAL;
		return STATUS_ERR;
	}

	return rts->cur ? 0 : 1;
}

static void *role_trans_state_get_cur(const qpol_iterator_t * iter)
{
	role_trans_state_t *rts = NULL;
	const policydb_t *db = NULL;

	if (!iter || !(rts = qpol_iterator_state(iter)) || !(db = qpol_iterator_policy(iter)) || role_trans_state_end(iter)) {
		errno = EINVAL;
		return NULL;
	}

	return rts->cur;
}

static int role_trans_state_next(qpol_iterator_t * iter)
{
	role_trans_state_t *rts = NULL;
	const policydb_t *db = NULL;

	if (!iter || !(rts = qpol_iterator_state(iter)) || !(db = qpol_iterator_policy(iter))) {
		errno = EINVAL;
		return STATUS_ERR;
	}

	if (role_trans_state_end(iter)) {
		errno = ERANGE;
		return STATUS_ERR;
	}

	rts->cur = rts->cur->next;

	return STATUS_SUCCESS;
}

static size_t role_trans_state_size(const qpol_iterator_t * iter)
{
	role_trans_state_t *rts = NULL;
	const policydb_t *db = NULL;
	role_trans_t *tmp = NULL;
	size_t count = 0;

	if (!iter || !(rts = qpol_iterator_state(iter)) || !(db = qpol_iterator_policy(iter))) {
		errno = EINVAL;
		return STATUS_ERR;
	}

	for (tmp = rts->head; tmp; tmp = tmp->next)
		count++;

	return count;
}

int qpol_policy_get_role_trans_iter(const qpol_policy_t * policy, qpol_iterator_t ** iter)
{
	policydb_t *db = NULL;
	role_trans_state_t *rts = NULL;
	int error = 0;

	if (iter)
		*iter = NULL;

	if (!policy || !iter) {
		ERR(policy, "%s", strerror(EINVAL));
		errno = EINVAL;
		return STATUS_ERR;
	}

	db = &policy->p->p;

	rts = calloc(1, sizeof(role_trans_state_t));
	if (!rts) {
		/* errno set by calloc */
		ERR(policy, "%s", strerror(errno));
		return STATUS_ERR;
	}
	rts->head = rts->cur = db->role_tr;

	if (qpol_iterator_create
	    (policy, (void *)rts, role_trans_state_get_cur, role_trans_state_next, role_trans_state_end, role_trans_state_size,
	     free, iter)) {
		error = errno;
		free(rts);
		errno = error;
		return STATUS_ERR;
	}

	return STATUS_SUCCESS;
}

int qpol_role_trans_get_source_role(const qpol_policy_t * policy, const qpol_role_trans_t * rule, const qpol_role_t ** source)
{
	policydb_t *db = NULL;
	role_trans_t *rt = NULL;

	if (source) {
		*source = NULL;
	}

	if (!policy || !rule || !source) {
		ERR(policy, "%s", strerror(EINVAL));
		errno = EINVAL;
		return STATUS_ERR;
	}

	db = &policy->p->p;
	rt = (role_trans_t *) rule;

	*source = (qpol_role_t *) db->role_val_to_struct[rt->role - 1];

	return STATUS_SUCCESS;
}

int qpol_role_trans_get_target_type(const qpol_policy_t * policy, const qpol_role_trans_t * rule, const qpol_type_t ** target)
{
	policydb_t *db = NULL;
	role_trans_t *rt = NULL;

	if (target) {
		*target = NULL;
	}

	if (!policy || !rule || !target) {
		ERR(policy, "%s", strerror(EINVAL));
		errno = EINVAL;
		return STATUS_ERR;
	}

	db = &policy->p->p;
	rt = (role_trans_t *) rule;

	*target = (qpol_type_t *) db->type_val_to_struct[rt->type - 1];

	return STATUS_SUCCESS;
}

int qpol_role_trans_get_default_role(const qpol_policy_t * policy, const qpol_role_trans_t * rule, const qpol_role_t ** dflt)
{
	policydb_t *db = NULL;
	role_trans_t *rt = NULL;

	if (dflt) {
		*dflt = NULL;
	}

	if (!policy || !rule || !dflt) {
		ERR(policy, "%s", strerror(EINVAL));
		errno = EINVAL;
		return STATUS_ERR;
	}

	db = &policy->p->p;
	rt = (role_trans_t *) rule;

	*dflt = (qpol_role_t *) db->role_val_to_struct[rt->new_role - 1];

	return STATUS_SUCCESS;
}