update/add new 3G modem modules
[tomato.git] / release / src-rt / linux / linux-2.6 / include / linux / selinux.h
blobd1b7ca6c1c57af517e0b1f00b7e97f4c78c0c1d9
1 /*
2 * SELinux services exported to the rest of the kernel.
4 * Author: James Morris <jmorris@redhat.com>
6 * Copyright (C) 2005 Red Hat, Inc., James Morris <jmorris@redhat.com>
7 * Copyright (C) 2006 Trusted Computer Solutions, Inc. <dgoeddel@trustedcs.com>
8 * Copyright (C) 2006 IBM Corporation, Timothy R. Chavez <tinytim@us.ibm.com>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2,
12 * as published by the Free Software Foundation.
14 #ifndef _LINUX_SELINUX_H
15 #define _LINUX_SELINUX_H
17 struct selinux_audit_rule;
18 struct audit_context;
19 struct inode;
20 struct kern_ipc_perm;
22 #ifdef CONFIG_SECURITY_SELINUX
24 /**
25 * selinux_audit_rule_init - alloc/init an selinux audit rule structure.
26 * @field: the field this rule refers to
27 * @op: the operater the rule uses
28 * @rulestr: the text "target" of the rule
29 * @rule: pointer to the new rule structure returned via this
31 * Returns 0 if successful, -errno if not. On success, the rule structure
32 * will be allocated internally. The caller must free this structure with
33 * selinux_audit_rule_free() after use.
35 int selinux_audit_rule_init(u32 field, u32 op, char *rulestr,
36 struct selinux_audit_rule **rule);
38 /**
39 * selinux_audit_rule_free - free an selinux audit rule structure.
40 * @rule: pointer to the audit rule to be freed
42 * This will free all memory associated with the given rule.
43 * If @rule is NULL, no operation is performed.
45 void selinux_audit_rule_free(struct selinux_audit_rule *rule);
47 /**
48 * selinux_audit_rule_match - determine if a context ID matches a rule.
49 * @sid: the context ID to check
50 * @field: the field this rule refers to
51 * @op: the operater the rule uses
52 * @rule: pointer to the audit rule to check against
53 * @actx: the audit context (can be NULL) associated with the check
55 * Returns 1 if the context id matches the rule, 0 if it does not, and
56 * -errno on failure.
58 int selinux_audit_rule_match(u32 sid, u32 field, u32 op,
59 struct selinux_audit_rule *rule,
60 struct audit_context *actx);
62 /**
63 * selinux_audit_set_callback - set the callback for policy reloads.
64 * @callback: the function to call when the policy is reloaded
66 * This sets the function callback function that will update the rules
67 * upon policy reloads. This callback should rebuild all existing rules
68 * using selinux_audit_rule_init().
70 void selinux_audit_set_callback(int (*callback)(void));
72 /**
73 * selinux_sid_to_string - map a security context ID to a string
74 * @sid: security context ID to be converted.
75 * @ctx: address of context string to be returned
76 * @ctxlen: length of returned context string.
78 * Returns 0 if successful, -errno if not. On success, the context
79 * string will be allocated internally, and the caller must call
80 * kfree() on it after use.
82 int selinux_sid_to_string(u32 sid, char **ctx, u32 *ctxlen);
84 /**
85 * selinux_get_inode_sid - get the inode's security context ID
86 * @inode: inode structure to get the sid from.
87 * @sid: pointer to security context ID to be filled in.
89 * Returns nothing
91 void selinux_get_inode_sid(const struct inode *inode, u32 *sid);
93 /**
94 * selinux_get_ipc_sid - get the ipc security context ID
95 * @ipcp: ipc structure to get the sid from.
96 * @sid: pointer to security context ID to be filled in.
98 * Returns nothing
100 void selinux_get_ipc_sid(const struct kern_ipc_perm *ipcp, u32 *sid);
103 * selinux_get_task_sid - return the SID of task
104 * @tsk: the task whose SID will be returned
105 * @sid: pointer to security context ID to be filled in.
107 * Returns nothing
109 void selinux_get_task_sid(struct task_struct *tsk, u32 *sid);
112 * selinux_string_to_sid - map a security context string to a security ID
113 * @str: the security context string to be mapped
114 * @sid: ID value returned via this.
116 * Returns 0 if successful, with the SID stored in sid. A value
117 * of zero for sid indicates no SID could be determined (but no error
118 * occurred).
120 int selinux_string_to_sid(char *str, u32 *sid);
123 * selinux_relabel_packet_permission - check permission to relabel a packet
124 * @sid: ID value to be applied to network packet (via SECMARK, most likely)
126 * Returns 0 if the current task is allowed to label packets with the
127 * supplied security ID. Note that it is implicit that the packet is always
128 * being relabeled from the default unlabled value, and that the access
129 * control decision is made in the AVC.
131 int selinux_relabel_packet_permission(u32 sid);
133 #else
135 static inline int selinux_audit_rule_init(u32 field, u32 op,
136 char *rulestr,
137 struct selinux_audit_rule **rule)
139 return -ENOTSUPP;
142 static inline void selinux_audit_rule_free(struct selinux_audit_rule *rule)
144 return;
147 static inline int selinux_audit_rule_match(u32 sid, u32 field, u32 op,
148 struct selinux_audit_rule *rule,
149 struct audit_context *actx)
151 return 0;
154 static inline void selinux_audit_set_callback(int (*callback)(void))
156 return;
159 static inline int selinux_sid_to_string(u32 sid, char **ctx, u32 *ctxlen)
161 *ctx = NULL;
162 *ctxlen = 0;
163 return 0;
166 static inline void selinux_get_inode_sid(const struct inode *inode, u32 *sid)
168 *sid = 0;
171 static inline void selinux_get_ipc_sid(const struct kern_ipc_perm *ipcp, u32 *sid)
173 *sid = 0;
176 static inline void selinux_get_task_sid(struct task_struct *tsk, u32 *sid)
178 *sid = 0;
181 static inline int selinux_string_to_sid(const char *str, u32 *sid)
183 *sid = 0;
184 return 0;
187 static inline int selinux_relabel_packet_permission(u32 sid)
189 return 0;
192 #endif /* CONFIG_SECURITY_SELINUX */
194 #endif /* _LINUX_SELINUX_H */