blob: 15cacde0ff612e76778170624044be557a31f189 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Multi-level security (MLS) policy operations.
4 *
Stephen Smalley7efbb602017-08-17 13:32:36 -04005 * Author : Stephen Smalley, <sds@tycho.nsa.gov>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
7/*
8 * Updated: Trusted Computer Solutions, Inc. <dgoeddel@trustedcs.com>
9 *
10 * Support for enhanced MLS infrastructure.
11 *
Darrel Goeddel376bd9c2006-02-24 15:44:05 -060012 * Copyright (C) 2004-2006 Trusted Computer Solutions, Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 */
Venkat Yekkirala7420ed22006-08-04 23:17:57 -070014/*
Paul Moore82c21bf2011-08-01 11:10:33 +000015 * Updated: Hewlett-Packard <paul@paul-moore.com>
Venkat Yekkirala7420ed22006-08-04 23:17:57 -070016 *
Eric Parisd497fc872008-04-22 17:46:15 -040017 * Added support to import/export the MLS label from NetLabel
Venkat Yekkirala7420ed22006-08-04 23:17:57 -070018 *
19 * (c) Copyright Hewlett-Packard Development Company, L.P., 2006
20 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#ifndef _SS_MLS_H_
23#define _SS_MLS_H_
24
Ondrej Mosnacek50077282020-04-17 10:11:56 +020025#include <linux/jhash.h>
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "context.h"
Ondrej Mosnacek50077282020-04-17 10:11:56 +020028#include "ebitmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "policydb.h"
30
Stephen Smalleyaa8e7122018-03-01 18:48:02 -050031int mls_compute_context_len(struct policydb *p, struct context *context);
32void mls_sid_to_context(struct policydb *p, struct context *context,
33 char **scontext);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034int mls_context_isvalid(struct policydb *p, struct context *c);
Stephen Smalley45e54212007-11-07 10:08:00 -050035int mls_range_isvalid(struct policydb *p, struct mls_range *r);
36int mls_level_isvalid(struct policydb *p, struct mls_level *l);
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Stephen Smalley12b29f32008-05-07 13:03:20 -040038int mls_context_to_sid(struct policydb *p,
39 char oldc,
Jann Horn95ffe192018-08-06 23:19:32 +020040 char *scontext,
James Morrisf5c1d5b2005-07-28 01:07:37 -070041 struct context *context,
42 struct sidtab *s,
43 u32 def_sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Stephen Smalleyaa8e7122018-03-01 18:48:02 -050045int mls_from_string(struct policydb *p, char *str, struct context *context,
46 gfp_t gfp_mask);
Darrel Goeddel376bd9c2006-02-24 15:44:05 -060047
Guido Trentalancia0719aaf2010-02-03 16:40:20 +010048int mls_range_set(struct context *context, struct mls_range *range);
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050int mls_convert_context(struct policydb *oldp,
51 struct policydb *newp,
Ondrej Mosnacekee1a84f2018-11-30 16:24:08 +010052 struct context *oldc,
53 struct context *newc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Stephen Smalleyaa8e7122018-03-01 18:48:02 -050055int mls_compute_sid(struct policydb *p,
56 struct context *scontext,
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 struct context *tcontext,
58 u16 tclass,
59 u32 specified,
Harry Ciao6f5317e2011-03-02 13:32:33 +080060 struct context *newcontext,
61 bool sock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Stephen Smalleyaa8e7122018-03-01 18:48:02 -050063int mls_setup_user_range(struct policydb *p,
64 struct context *fromcon, struct user_datum *user,
Eric Parisd497fc872008-04-22 17:46:15 -040065 struct context *usercon);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Paul Moore02752762006-11-29 13:18:18 -050067#ifdef CONFIG_NETLABEL
Stephen Smalleyaa8e7122018-03-01 18:48:02 -050068void mls_export_netlbl_lvl(struct policydb *p,
69 struct context *context,
Paul Moore02752762006-11-29 13:18:18 -050070 struct netlbl_lsm_secattr *secattr);
Stephen Smalleyaa8e7122018-03-01 18:48:02 -050071void mls_import_netlbl_lvl(struct policydb *p,
72 struct context *context,
Paul Moore02752762006-11-29 13:18:18 -050073 struct netlbl_lsm_secattr *secattr);
Stephen Smalleyaa8e7122018-03-01 18:48:02 -050074int mls_export_netlbl_cat(struct policydb *p,
75 struct context *context,
Paul Moore02752762006-11-29 13:18:18 -050076 struct netlbl_lsm_secattr *secattr);
Stephen Smalleyaa8e7122018-03-01 18:48:02 -050077int mls_import_netlbl_cat(struct policydb *p,
78 struct context *context,
Paul Moore02752762006-11-29 13:18:18 -050079 struct netlbl_lsm_secattr *secattr);
80#else
Stephen Smalleyaa8e7122018-03-01 18:48:02 -050081static inline void mls_export_netlbl_lvl(struct policydb *p,
82 struct context *context,
Paul Moore02752762006-11-29 13:18:18 -050083 struct netlbl_lsm_secattr *secattr)
84{
85 return;
86}
Stephen Smalleyaa8e7122018-03-01 18:48:02 -050087static inline void mls_import_netlbl_lvl(struct policydb *p,
88 struct context *context,
Paul Moore02752762006-11-29 13:18:18 -050089 struct netlbl_lsm_secattr *secattr)
90{
91 return;
92}
Stephen Smalleyaa8e7122018-03-01 18:48:02 -050093static inline int mls_export_netlbl_cat(struct policydb *p,
94 struct context *context,
Paul Moore02752762006-11-29 13:18:18 -050095 struct netlbl_lsm_secattr *secattr)
96{
97 return -ENOMEM;
98}
Stephen Smalleyaa8e7122018-03-01 18:48:02 -050099static inline int mls_import_netlbl_cat(struct policydb *p,
100 struct context *context,
Paul Moore02752762006-11-29 13:18:18 -0500101 struct netlbl_lsm_secattr *secattr)
102{
103 return -ENOMEM;
104}
105#endif
Venkat Yekkirala7420ed22006-08-04 23:17:57 -0700106
Ondrej Mosnacek50077282020-04-17 10:11:56 +0200107static inline u32 mls_range_hash(const struct mls_range *r, u32 hash)
108{
109 hash = jhash_2words(r->level[0].sens, r->level[1].sens, hash);
110 hash = ebitmap_hash(&r->level[0].cat, hash);
111 hash = ebitmap_hash(&r->level[1].cat, hash);
112 return hash;
113}
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115#endif /* _SS_MLS_H */
116