blob: e4369e3e6366f89e52690e64ad16ae00ba45b985 [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/*
Paul Moore82c21bf2011-08-01 11:10:33 +000014 * Updated: Hewlett-Packard <paul@paul-moore.com>
Venkat Yekkirala7420ed22006-08-04 23:17:57 -070015 *
Eric Parisd497fc82008-04-22 17:46:15 -040016 * Added support to import/export the MLS label from NetLabel
Venkat Yekkirala7420ed22006-08-04 23:17:57 -070017 *
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
27int mls_compute_context_len(struct context *context);
28void mls_sid_to_context(struct context *context, char **scontext);
29int mls_context_isvalid(struct policydb *p, struct context *c);
Stephen Smalley45e54212007-11-07 10:08:00 -050030int mls_range_isvalid(struct policydb *p, struct mls_range *r);
31int mls_level_isvalid(struct policydb *p, struct mls_level *l);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Stephen Smalley12b29f32008-05-07 13:03:20 -040033int mls_context_to_sid(struct policydb *p,
34 char oldc,
Eric Parisd497fc82008-04-22 17:46:15 -040035 char **scontext,
James Morrisf5c1d5b2005-07-28 01:07:37 -070036 struct context *context,
37 struct sidtab *s,
38 u32 def_sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Darrel Goeddel376bd9c2006-02-24 15:44:05 -060040int mls_from_string(char *str, struct context *context, gfp_t gfp_mask);
41
Guido Trentalancia0719aaf2010-02-03 16:40:20 +010042int mls_range_set(struct context *context, struct mls_range *range);
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044int mls_convert_context(struct policydb *oldp,
45 struct policydb *newp,
46 struct context *context);
47
48int mls_compute_sid(struct context *scontext,
49 struct context *tcontext,
50 u16 tclass,
51 u32 specified,
Harry Ciao6f5317e2011-03-02 13:32:33 +080052 struct context *newcontext,
53 bool sock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55int mls_setup_user_range(struct context *fromcon, struct user_datum *user,
Eric Parisd497fc82008-04-22 17:46:15 -040056 struct context *usercon);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Paul Moore02752762006-11-29 13:18:18 -050058#ifdef CONFIG_NETLABEL
59void mls_export_netlbl_lvl(struct context *context,
60 struct netlbl_lsm_secattr *secattr);
61void mls_import_netlbl_lvl(struct context *context,
62 struct netlbl_lsm_secattr *secattr);
63int mls_export_netlbl_cat(struct context *context,
64 struct netlbl_lsm_secattr *secattr);
65int mls_import_netlbl_cat(struct context *context,
66 struct netlbl_lsm_secattr *secattr);
67#else
68static inline void mls_export_netlbl_lvl(struct context *context,
69 struct netlbl_lsm_secattr *secattr)
70{
71 return;
72}
73static inline void mls_import_netlbl_lvl(struct context *context,
74 struct netlbl_lsm_secattr *secattr)
75{
76 return;
77}
78static inline int mls_export_netlbl_cat(struct context *context,
79 struct netlbl_lsm_secattr *secattr)
80{
81 return -ENOMEM;
82}
83static inline int mls_import_netlbl_cat(struct context *context,
84 struct netlbl_lsm_secattr *secattr)
85{
86 return -ENOMEM;
87}
88#endif
Venkat Yekkirala7420ed22006-08-04 23:17:57 -070089
Linus Torvalds1da177e2005-04-16 15:20:36 -070090#endif /* _SS_MLS_H */
91