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
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2009 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/*
* Miscellaneous user interfaces to trusted label functions.
*
*/
#include <ctype.h>
#include <stdlib.h>
#include <strings.h>
#include <sys/mman.h>
#include <tsol/label.h>
#include "labeld.h"
#include "clnt.h"
#include <sys/tsol/label_macro.h>
#include <secdb.h>
#include <user_attr.h>
static bslabel_t slow, shigh; /* static Admin Low and High SLs */
static bclear_t clow, chigh; /* static Admin Low and High CLRs */
static char color[MAXCOLOR];
#define incall callp->param.acall.cargs.inset_arg
#define inret callp->param.aret.rvals.inset_ret
/*
* blinset - Check in a label set.
*
* Entry label = Sensitivity Label to check.
* id = Label set identifier of set to check.
*
* Exit None.
*
* Returns -1, If label set unavailable, or server failure.
* 0, If label not in label set.
* 1, If label is in the label set.
*
* Calls __call_labeld(BLINSET), BLTYPE, BSLLOW, BSLHIGH.
*
* Uses slow, shigh.
*/
int
blinset(const bslabel_t *label, const set_id *id)
{
if (id->type == SYSTEM_ACCREDITATION_RANGE) {
if (!BLTYPE(&slow, SUN_SL_ID)) {
/* initialize static labels. */
BSLLOW(&slow);
BSLHIGH(&shigh);
}
if (BLTYPE(label, SUN_SL_ID) &&
(BLEQUAL(label, &slow) || BLEQUAL(label, &shigh)))
return (1);
}
if (id->type == USER_ACCREDITATION_RANGE ||
id->type == SYSTEM_ACCREDITATION_RANGE) {
labeld_data_t call;
labeld_data_t *callp = &call;
size_t bufsize = sizeof (labeld_data_t);
size_t datasize = CALL_SIZE(inset_call_t, 0);
call.callop = BLINSET;
incall.label = *label;
incall.type = id->type;
if (__call_labeld(&callp, &bufsize, &datasize) != SUCCESS) {
/* process error */
return (-1);
}
return (inret.inset);
} else {
/*
* Only System and User Accreditation Ranges presently
* implemented.
*/
return (-1);
}
}
#undef incall
#undef inret
#define slvcall callp->param.acall.cargs.slvalid_arg
#define slvret callp->param.aret.rvals.slvalid_ret
/*
* bslvalid - Check Sensitivity Label for validity.
*
* Entry label = Sensitivity Label to check.
*
* Exit None.
*
* Returns -1, If unable to access label encodings file, or server failure.
* 0, If label not valid.
* 1, If label is valid.
*
* Calls __call_labeld(BSLVALID), BLTYPE, BSLLOW, BSLHIGH.
*
* Uses slow, shigh.
*
*/
int
bslvalid(const bslabel_t *label)
{
labeld_data_t call;
labeld_data_t *callp = &call;
size_t bufsize = sizeof (labeld_data_t);
size_t datasize = CALL_SIZE(slvalid_call_t, 0);
if (!BLTYPE(&slow, SUN_SL_ID)) {
/* initialize static labels. */
BSLLOW(&slow);
BSLHIGH(&shigh);
}
if (BLTYPE(label, SUN_SL_ID) &&
(BLEQUAL(label, &slow) || BLEQUAL(label, &shigh))) {
return (1);
}
call.callop = BSLVALID;
slvcall.label = *label;
if (__call_labeld(&callp, &bufsize, &datasize) != SUCCESS) {
/* process error */
return (-1);
}
return (slvret.valid);
}
#undef slvcall
#undef slvret
#define clrvcall callp->param.acall.cargs.clrvalid_arg
#define clrvret callp->param.aret.rvals.clrvalid_ret
/*
* bclearvalid - Check Clearance for validity.
*
* Entry clearance = Clearance to check.
*
* Exit None.
*
* Returns -1, If unable to access label encodings file, or server failure.
* 0, If label not valid.
* 1, If label is valid.
*
* Calls __call_labeld(BCLEARVALID), BLTYPE, BCLEARLOW, BCLEARHIGH.
*
* Uses clow, chigh.
*
*/
int
bclearvalid(const bclear_t *clearance)
{
labeld_data_t call;
labeld_data_t *callp = &call;
size_t bufsize = sizeof (labeld_data_t);
size_t datasize = CALL_SIZE(clrvalid_call_t, 0);
if (!BLTYPE(&clow, SUN_CLR_ID)) {
/* initialize static labels. */
BCLEARLOW(&clow);
BCLEARHIGH(&chigh);
}
if (BLTYPE(clearance, SUN_CLR_ID) &&
(BLEQUAL(clearance, &clow) || BLEQUAL(clearance, &chigh))) {
return (1);
}
call.callop = BCLEARVALID;
clrvcall.clear = *clearance;
if (__call_labeld(&callp, &bufsize, &datasize) != SUCCESS) {
/* process error */
return (-1);
}
return (clrvret.valid);
}
#undef clrvcall
#undef clrvret
#define inforet callp->param.aret.rvals.info_ret
/*
* labelinfo - Get information about the label encodings file.
*
* Entry info = Address of label_info structure to update.
*
* Exit info = Updated.
*
* Returns -1, If unable to access label encodings file, or server failure.
* 1, If successful.
*
* Calls __call_labeld(LABELINFO).
*/
int
labelinfo(struct label_info *info)
{
labeld_data_t call;
labeld_data_t *callp = &call;
size_t bufsize = sizeof (labeld_data_t);
size_t datasize = CALL_SIZE(info_call_t, 0);
int rval;
call.callop = LABELINFO;
if ((rval = __call_labeld(&callp, &bufsize, &datasize)) != SUCCESS) {
/* process error */
return (-1);
}
*info = inforet.info;
return (rval);
}
#undef inforet
#define lvret callp->param.aret.rvals.vers_ret
/*
* labelvers - Get version string of the label encodings file.
*
* Entry version = Address of string pointer to return.
* len = Length of string if pre-allocated.
*
* Exit version = Updated.
*
* Returns -1, If unable to access label encodings file, or server failure.
* 0, If unable to allocate version string,
* or pre-allocated version string to short
* (and **version = '\0').
* length (including null) of version string, If successful.
*
* Calls __call_labeld(LABELVERS)
* malloc, strlen.
*/
ssize_t
labelvers(char **version, size_t len)
{
labeld_data_t call;
labeld_data_t *callp = &call;
size_t bufsize = sizeof (labeld_data_t);
size_t datasize = CALL_SIZE(vers_call_t, 0);
size_t ver_len;
call.callop = LABELVERS;
if (__call_labeld(&callp, &bufsize, &datasize) != SUCCESS) {
if (callp != &call)
/* release return buffer */
(void) munmap((void *)callp, bufsize);
return (-1);
}
/* unpack length */
ver_len = strlen(lvret.vers) + 1;
if (*version == NULL) {
if ((*version = malloc(ver_len)) == NULL) {
if (callp != &call)
/* release return buffer */
(void) munmap((void *)callp, bufsize);
return (0);
}
} else if (ver_len > len) {
**version = '\0';
if (callp != &call)
/* release return buffer */
(void) munmap((void *)callp, bufsize);
return (0);
}
(void) strcpy(*version, lvret.vers);
if (callp != &call)
/* release return buffer */
(void) munmap((void *)callp, bufsize);
return (ver_len);
} /* labelvers */
#undef lvret
#define ccall callp->param.acall.cargs.color_arg
#define cret callp->param.aret.rvals.color_ret
/*
* bltocolor - get ASCII color name of label.
*
* Entry label = Sensitivity Level of color to get.
* size = Size of the color_name array.
* color_name = Storage for ASCII color name string to be returned.
*
* Exit None.
*
* Returns NULL, If error (label encodings file not accessible,
* invalid label, no color for this label).
* Address of color_name parameter containing ASCII color name
* defined for the label.
*
* Calls __call_labeld(BLTOCOLOR), strlen.
*/
char *
bltocolor_r(const blevel_t *label, size_t size, char *color_name)
{
labeld_data_t call;
labeld_data_t *callp = &call;
size_t bufsize = sizeof (labeld_data_t);
size_t datasize = CALL_SIZE(color_call_t, 0);
char *colorp;
call.callop = BLTOCOLOR;
ccall.label = *label;
if ((__call_labeld(&callp, &bufsize, &datasize) != SUCCESS) ||
(callp->reterr != 0) ||
(strlen(cret.color) >= size)) {
if (callp != &call)
/* release return buffer */
(void) munmap((void *)callp, bufsize);
return (NULL);
}
colorp = strcpy(color_name, cret.color);
if (callp != &call)
/* release return buffer */
(void) munmap((void *)callp, bufsize);
return (colorp);
} /* bltocolor_r */
#undef ccall
#undef cret
/*
* bltocolor - get ASCII color name of label.
*
* Entry label = Sensitivity Level of color to get.
*
* Exit None.
*
* Returns NULL, If error (label encodings file not accessible,
* invalid label, no color for this label).
* Address of statically allocated string containing ASCII
* color name defined for the classification contained
* in label.
*
* Uses color.
*
* Calls bltocolor_r.
*/
char *
bltocolor(const blevel_t *label)
{
return (bltocolor_r(label, sizeof (color), color));
} /* bltocolor */
blevel_t *
blabel_alloc(void)
{
return (m_label_alloc(MAC_LABEL));
}
void
blabel_free(blevel_t *label_p)
{
free(label_p);
}
size32_t
blabel_size(void)
{
return (sizeof (blevel_t));
}
/*
* getuserrange - get label range for user
*
* Entry username of user
*
* Exit None.
*
* Returns NULL, If memory allocation failure or userdefs failure.
* otherwise returns the allocates m_range_t with the
* user's min and max labels set.
*/
m_range_t *
getuserrange(const char *username)
{
char *kv_str = NULL;
userattr_t *userp = NULL;
m_range_t *range;
m_label_t *def_min, *def_clr;
/*
* Get some memory
*/
if ((range = malloc(sizeof (m_range_t))) == NULL) {
return (NULL);
}
if ((range->lower_bound = m_label_alloc(MAC_LABEL)) == NULL) {
free(range);
return (NULL);
}
def_min = range->lower_bound;
if ((range->upper_bound = m_label_alloc(USER_CLEAR)) == NULL) {
m_label_free(range->lower_bound);
free(range);
return (NULL);
}
def_clr = range->upper_bound;
/* If the user has an explicit min_label or clearance, use it. */
if ((userp = getusernam(username)) != NULL) {
if ((kv_str = kva_match(userp->attr, USERATTR_MINLABEL))
!= NULL) {
(void) str_to_label(kv_str, &range->lower_bound,
MAC_LABEL, L_NO_CORRECTION, NULL);
def_min = NULL; /* don't get default later */
}
if ((kv_str = kva_match(userp->attr, USERATTR_CLEARANCE))
!= NULL) {
(void) str_to_label(kv_str, &range->upper_bound,
USER_CLEAR, L_NO_CORRECTION, NULL);
def_clr = NULL; /* don't get default later */
}
free_userattr(userp);
}
if (def_min || def_clr) {
/* Need to use system default clearance and/or min_label */
if ((userdefs(def_min, def_clr)) == -1) {
m_label_free(range->lower_bound);
m_label_free(range->upper_bound);
free(range);
return (NULL);
}
}
return (range);
}
|