blob: df6032c6d4926680bb6bb4c449794ee4eb25080e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Multi-level security (MLS) policy operations.
3 *
4 * Author : Stephen Smalley, <sds@epoch.ncsc.mil>
5 */
6/*
7 * Updated: Trusted Computer Solutions, Inc. <dgoeddel@trustedcs.com>
8 *
9 * Support for enhanced MLS infrastructure.
10 *
Darrel Goeddel376bd9c2006-02-24 15:44:05 -060011 * Copyright (C) 2004-2006 Trusted Computer Solutions, Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 */
Venkat Yekkirala7420ed22006-08-04 23:17:57 -070013/*
14 * Updated: Hewlett-Packard <paul.moore@hp.com>
15 *
16 * Added support to import/export the MLS label
17 *
18 * (c) Copyright Hewlett-Packard Development Company, L.P., 2006
19 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#ifndef _SS_MLS_H_
22#define _SS_MLS_H_
23
24#include "context.h"
25#include "policydb.h"
26
Venkat Yekkirala08554d62006-07-24 23:27:16 -070027/*
28 * Copies the MLS range from `src' into `dst'.
29 */
30static inline int mls_copy_context(struct context *dst,
31 struct context *src)
32{
33 int l, rc = 0;
34
35 /* Copy the MLS range from the source context */
36 for (l = 0; l < 2; l++) {
37 dst->range.level[l].sens = src->range.level[l].sens;
38 rc = ebitmap_cpy(&dst->range.level[l].cat,
39 &src->range.level[l].cat);
40 if (rc)
41 break;
42 }
43
44 return rc;
45}
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047int mls_compute_context_len(struct context *context);
48void mls_sid_to_context(struct context *context, char **scontext);
49int mls_context_isvalid(struct policydb *p, struct context *c);
50
51int mls_context_to_sid(char oldc,
52 char **scontext,
James Morrisf5c1d5b2005-07-28 01:07:37 -070053 struct context *context,
54 struct sidtab *s,
55 u32 def_sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Darrel Goeddel376bd9c2006-02-24 15:44:05 -060057int mls_from_string(char *str, struct context *context, gfp_t gfp_mask);
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059int mls_convert_context(struct policydb *oldp,
60 struct policydb *newp,
61 struct context *context);
62
63int mls_compute_sid(struct context *scontext,
64 struct context *tcontext,
65 u16 tclass,
66 u32 specified,
67 struct context *newcontext);
68
69int mls_setup_user_range(struct context *fromcon, struct user_datum *user,
70 struct context *usercon);
71
Venkat Yekkirala7420ed22006-08-04 23:17:57 -070072void mls_export_lvl(const struct context *context, u32 *low, u32 *high);
73void mls_import_lvl(struct context *context, u32 low, u32 high);
74
75int mls_export_cat(const struct context *context,
76 unsigned char **low,
77 size_t *low_len,
78 unsigned char **high,
79 size_t *high_len);
80int mls_import_cat(struct context *context,
81 const unsigned char *low,
82 size_t low_len,
83 const unsigned char *high,
84 size_t high_len);
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086#endif /* _SS_MLS_H */
87