Blame view

security/selinux/ss/mls.h 2.46 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
  /*
   * Multi-level security (MLS) policy operations.
   *
   * Author : Stephen Smalley, <sds@epoch.ncsc.mil>
   */
  /*
   * Updated: Trusted Computer Solutions, Inc. <dgoeddel@trustedcs.com>
   *
   *	Support for enhanced MLS infrastructure.
   *
376bd9cb3   Darrel Goeddel   [PATCH] support f...
11
   * Copyright (C) 2004-2006 Trusted Computer Solutions, Inc.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
12
   */
7420ed23a   Venkat Yekkirala   [NetLabel]: SELin...
13
  /*
82c21bfab   Paul Moore   doc: Update the e...
14
   * Updated: Hewlett-Packard <paul@paul-moore.com>
7420ed23a   Venkat Yekkirala   [NetLabel]: SELin...
15
   *
d497fc87c   Eric Paris   SELinux: mls.h wh...
16
   *	Added support to import/export the MLS label from NetLabel
7420ed23a   Venkat Yekkirala   [NetLabel]: SELin...
17
18
19
   *
   * (c) Copyright Hewlett-Packard Development Company, L.P., 2006
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
20
21
22
23
24
25
26
27
28
29
  
  #ifndef _SS_MLS_H_
  #define _SS_MLS_H_
  
  #include "context.h"
  #include "policydb.h"
  
  int mls_compute_context_len(struct context *context);
  void mls_sid_to_context(struct context *context, char **scontext);
  int mls_context_isvalid(struct policydb *p, struct context *c);
45e5421eb   Stephen Smalley   SELinux: add more...
30
31
  int mls_range_isvalid(struct policydb *p, struct mls_range *r);
  int mls_level_isvalid(struct policydb *p, struct mls_level *l);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
32

12b29f345   Stephen Smalley   selinux: support ...
33
34
  int mls_context_to_sid(struct policydb *p,
  		       char oldc,
d497fc87c   Eric Paris   SELinux: mls.h wh...
35
  		       char **scontext,
f5c1d5b2a   James Morris   [PATCH] SELinux: ...
36
37
38
  		       struct context *context,
  		       struct sidtab *s,
  		       u32 def_sid);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
39

376bd9cb3   Darrel Goeddel   [PATCH] support f...
40
  int mls_from_string(char *str, struct context *context, gfp_t gfp_mask);
0719aaf5e   Guido Trentalancia   selinux: allow ML...
41
  int mls_range_set(struct context *context, struct mls_range *range);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
42
43
44
45
46
47
48
49
  int mls_convert_context(struct policydb *oldp,
  			struct policydb *newp,
  			struct context *context);
  
  int mls_compute_sid(struct context *scontext,
  		    struct context *tcontext,
  		    u16 tclass,
  		    u32 specified,
6f5317e73   Harry Ciao   SELinux: Socket r...
50
51
  		    struct context *newcontext,
  		    bool sock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
52
53
  
  int mls_setup_user_range(struct context *fromcon, struct user_datum *user,
d497fc87c   Eric Paris   SELinux: mls.h wh...
54
  			 struct context *usercon);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
55

027527603   Paul Moore   NetLabel: convert...
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
  #ifdef CONFIG_NETLABEL
  void mls_export_netlbl_lvl(struct context *context,
  			   struct netlbl_lsm_secattr *secattr);
  void mls_import_netlbl_lvl(struct context *context,
  			   struct netlbl_lsm_secattr *secattr);
  int mls_export_netlbl_cat(struct context *context,
  			  struct netlbl_lsm_secattr *secattr);
  int mls_import_netlbl_cat(struct context *context,
  			  struct netlbl_lsm_secattr *secattr);
  #else
  static inline void mls_export_netlbl_lvl(struct context *context,
  					 struct netlbl_lsm_secattr *secattr)
  {
  	return;
  }
  static inline void mls_import_netlbl_lvl(struct context *context,
  					 struct netlbl_lsm_secattr *secattr)
  {
  	return;
  }
  static inline int mls_export_netlbl_cat(struct context *context,
  					struct netlbl_lsm_secattr *secattr)
  {
  	return -ENOMEM;
  }
  static inline int mls_import_netlbl_cat(struct context *context,
  					struct netlbl_lsm_secattr *secattr)
  {
  	return -ENOMEM;
  }
  #endif
7420ed23a   Venkat Yekkirala   [NetLabel]: SELin...
87

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
88
  #endif	/* _SS_MLS_H */