NetLabel: Add secid token support to the NetLabel secattr struct
[deliverable/linux.git] / security / selinux / netlabel.c
CommitLineData
5778eabd
PM
1/*
2 * SELinux NetLabel Support
3 *
4 * This file provides the necessary glue to tie NetLabel into the SELinux
5 * subsystem.
6 *
7 * Author: Paul Moore <paul.moore@hp.com>
8 *
9 */
10
11/*
12 * (c) Copyright Hewlett-Packard Development Company, L.P., 2007
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
22 * the GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 *
28 */
29
30#include <linux/spinlock.h>
31#include <linux/rcupdate.h>
32#include <net/sock.h>
33#include <net/netlabel.h>
34
35#include "objsec.h"
36#include "security.h"
37
38/**
ba6ff9f2
PM
39 * selinux_netlbl_sock_setsid - Label a socket using the NetLabel mechanism
40 * @sk: the socket to label
5778eabd
PM
41 * @sid: the SID to use
42 *
43 * Description:
44 * Attempt to label a socket using the NetLabel mechanism using the given
45 * SID. Returns zero values on success, negative values on failure. The
46 * caller is responsibile for calling rcu_read_lock() before calling this
47 * this function and rcu_read_unlock() after this function returns.
48 *
49 */
ba6ff9f2 50static int selinux_netlbl_sock_setsid(struct sock *sk, u32 sid)
5778eabd
PM
51{
52 int rc;
ba6ff9f2 53 struct sk_security_struct *sksec = sk->sk_security;
5778eabd
PM
54 struct netlbl_lsm_secattr secattr;
55
45c950e0
PM
56 netlbl_secattr_init(&secattr);
57
5778eabd
PM
58 rc = security_netlbl_sid_to_secattr(sid, &secattr);
59 if (rc != 0)
45c950e0 60 goto sock_setsid_return;
ba6ff9f2 61 rc = netlbl_sock_setattr(sk, &secattr);
5778eabd
PM
62 if (rc == 0) {
63 spin_lock_bh(&sksec->nlbl_lock);
64 sksec->nlbl_state = NLBL_LABELED;
65 spin_unlock_bh(&sksec->nlbl_lock);
66 }
67
45c950e0
PM
68sock_setsid_return:
69 netlbl_secattr_destroy(&secattr);
5778eabd
PM
70 return rc;
71}
72
73/**
74 * selinux_netlbl_cache_invalidate - Invalidate the NetLabel cache
75 *
76 * Description:
77 * Invalidate the NetLabel security attribute mapping cache.
78 *
79 */
80void selinux_netlbl_cache_invalidate(void)
81{
82 netlbl_cache_invalidate();
83}
84
85/**
86 * selinux_netlbl_sk_security_reset - Reset the NetLabel fields
87 * @ssec: the sk_security_struct
88 * @family: the socket family
89 *
90 * Description:
91 * Called when the NetLabel state of a sk_security_struct needs to be reset.
92 * The caller is responsibile for all the NetLabel sk_security_struct locking.
93 *
94 */
95void selinux_netlbl_sk_security_reset(struct sk_security_struct *ssec,
96 int family)
97{
98 if (family == PF_INET)
99 ssec->nlbl_state = NLBL_REQUIRE;
100 else
101 ssec->nlbl_state = NLBL_UNSET;
102}
103
104/**
105 * selinux_netlbl_sk_security_init - Setup the NetLabel fields
106 * @ssec: the sk_security_struct
107 * @family: the socket family
108 *
109 * Description:
110 * Called when a new sk_security_struct is allocated to initialize the NetLabel
111 * fields.
112 *
113 */
114void selinux_netlbl_sk_security_init(struct sk_security_struct *ssec,
115 int family)
116{
117 /* No locking needed, we are the only one who has access to ssec */
118 selinux_netlbl_sk_security_reset(ssec, family);
119 spin_lock_init(&ssec->nlbl_lock);
120}
121
122/**
123 * selinux_netlbl_sk_security_clone - Copy the NetLabel fields
124 * @ssec: the original sk_security_struct
125 * @newssec: the cloned sk_security_struct
126 *
127 * Description:
128 * Clone the NetLabel specific sk_security_struct fields from @ssec to
129 * @newssec.
130 *
131 */
132void selinux_netlbl_sk_security_clone(struct sk_security_struct *ssec,
133 struct sk_security_struct *newssec)
134{
135 /* We don't need to take newssec->nlbl_lock because we are the only
136 * thread with access to newssec, but we do need to take the RCU read
137 * lock as other threads could have access to ssec */
138 rcu_read_lock();
139 selinux_netlbl_sk_security_reset(newssec, ssec->sk->sk_family);
140 newssec->sclass = ssec->sclass;
141 rcu_read_unlock();
142}
143
144/**
145 * selinux_netlbl_skbuff_getsid - Get the sid of a packet using NetLabel
146 * @skb: the packet
147 * @base_sid: the SELinux SID to use as a context for MLS only attributes
148 * @sid: the SID
149 *
150 * Description:
151 * Call the NetLabel mechanism to get the security attributes of the given
152 * packet and use those attributes to determine the correct context/SID to
153 * assign to the packet. Returns zero on success, negative values on failure.
154 *
155 */
156int selinux_netlbl_skbuff_getsid(struct sk_buff *skb, u32 base_sid, u32 *sid)
157{
158 int rc;
159 struct netlbl_lsm_secattr secattr;
160
23bcdc1a
PM
161 if (!netlbl_enabled()) {
162 *sid = SECSID_NULL;
163 return 0;
164 }
165
5778eabd
PM
166 netlbl_secattr_init(&secattr);
167 rc = netlbl_skbuff_getattr(skb, &secattr);
9534f71c 168 if (rc == 0 && secattr.flags != NETLBL_SECATTR_NONE) {
f36158c4 169 rc = security_netlbl_secattr_to_sid(&secattr, base_sid, sid);
9534f71c
PM
170 if (rc == 0 &&
171 (secattr.flags & NETLBL_SECATTR_CACHEABLE) &&
172 (secattr.flags & NETLBL_SECATTR_CACHE))
173 netlbl_cache_add(skb, &secattr);
174 } else
5778eabd
PM
175 *sid = SECSID_NULL;
176 netlbl_secattr_destroy(&secattr);
177
178 return rc;
179}
180
181/**
182 * selinux_netlbl_sock_graft - Netlabel the new socket
183 * @sk: the new connection
184 * @sock: the new socket
185 *
186 * Description:
187 * The connection represented by @sk is being grafted onto @sock so set the
188 * socket's NetLabel to match the SID of @sk.
189 *
190 */
191void selinux_netlbl_sock_graft(struct sock *sk, struct socket *sock)
192{
193 struct inode_security_struct *isec = SOCK_INODE(sock)->i_security;
194 struct sk_security_struct *sksec = sk->sk_security;
195 struct netlbl_lsm_secattr secattr;
196 u32 nlbl_peer_sid;
197
198 sksec->sclass = isec->sclass;
199
200 rcu_read_lock();
201
202 if (sksec->nlbl_state != NLBL_REQUIRE) {
203 rcu_read_unlock();
204 return;
205 }
206
207 netlbl_secattr_init(&secattr);
208 if (netlbl_sock_getattr(sk, &secattr) == 0 &&
209 secattr.flags != NETLBL_SECATTR_NONE &&
210 security_netlbl_secattr_to_sid(&secattr,
f36158c4 211 SECINITSID_NETMSG,
5778eabd
PM
212 &nlbl_peer_sid) == 0)
213 sksec->peer_sid = nlbl_peer_sid;
214 netlbl_secattr_destroy(&secattr);
215
216 /* Try to set the NetLabel on the socket to save time later, if we fail
217 * here we will pick up the pieces in later calls to
218 * selinux_netlbl_inode_permission(). */
ba6ff9f2 219 selinux_netlbl_sock_setsid(sk, sksec->sid);
5778eabd
PM
220
221 rcu_read_unlock();
222}
223
224/**
225 * selinux_netlbl_socket_post_create - Label a socket using NetLabel
226 * @sock: the socket to label
227 *
228 * Description:
229 * Attempt to label a socket using the NetLabel mechanism using the given
230 * SID. Returns zero values on success, negative values on failure.
231 *
232 */
233int selinux_netlbl_socket_post_create(struct socket *sock)
234{
235 int rc = 0;
ba6ff9f2 236 struct sock *sk = sock->sk;
5778eabd 237 struct inode_security_struct *isec = SOCK_INODE(sock)->i_security;
ba6ff9f2 238 struct sk_security_struct *sksec = sk->sk_security;
5778eabd
PM
239
240 sksec->sclass = isec->sclass;
241
242 rcu_read_lock();
243 if (sksec->nlbl_state == NLBL_REQUIRE)
ba6ff9f2 244 rc = selinux_netlbl_sock_setsid(sk, sksec->sid);
5778eabd
PM
245 rcu_read_unlock();
246
247 return rc;
248}
249
250/**
251 * selinux_netlbl_inode_permission - Verify the socket is NetLabel labeled
252 * @inode: the file descriptor's inode
253 * @mask: the permission mask
254 *
255 * Description:
256 * Looks at a file's inode and if it is marked as a socket protected by
257 * NetLabel then verify that the socket has been labeled, if not try to label
258 * the socket now with the inode's SID. Returns zero on success, negative
259 * values on failure.
260 *
261 */
262int selinux_netlbl_inode_permission(struct inode *inode, int mask)
263{
264 int rc;
ba6ff9f2 265 struct sock *sk;
5778eabd 266 struct socket *sock;
ba6ff9f2 267 struct sk_security_struct *sksec;
5778eabd
PM
268
269 if (!S_ISSOCK(inode->i_mode) ||
270 ((mask & (MAY_WRITE | MAY_APPEND)) == 0))
271 return 0;
272 sock = SOCKET_I(inode);
ba6ff9f2
PM
273 sk = sock->sk;
274 sksec = sk->sk_security;
5778eabd
PM
275
276 rcu_read_lock();
277 if (sksec->nlbl_state != NLBL_REQUIRE) {
278 rcu_read_unlock();
279 return 0;
280 }
281 local_bh_disable();
ba6ff9f2
PM
282 bh_lock_sock_nested(sk);
283 rc = selinux_netlbl_sock_setsid(sk, sksec->sid);
284 bh_unlock_sock(sk);
5778eabd
PM
285 local_bh_enable();
286 rcu_read_unlock();
287
288 return rc;
289}
290
291/**
292 * selinux_netlbl_sock_rcv_skb - Do an inbound access check using NetLabel
293 * @sksec: the sock's sk_security_struct
294 * @skb: the packet
295 * @ad: the audit data
296 *
297 * Description:
298 * Fetch the NetLabel security attributes from @skb and perform an access check
299 * against the receiving socket. Returns zero on success, negative values on
300 * error.
301 *
302 */
303int selinux_netlbl_sock_rcv_skb(struct sk_security_struct *sksec,
304 struct sk_buff *skb,
305 struct avc_audit_data *ad)
306{
307 int rc;
f36158c4
PM
308 u32 nlbl_sid;
309 u32 perm;
310 struct netlbl_lsm_secattr secattr;
5778eabd 311
23bcdc1a
PM
312 if (!netlbl_enabled())
313 return 0;
314
f36158c4
PM
315 netlbl_secattr_init(&secattr);
316 rc = netlbl_skbuff_getattr(skb, &secattr);
9534f71c 317 if (rc == 0 && secattr.flags != NETLBL_SECATTR_NONE) {
f36158c4
PM
318 rc = security_netlbl_secattr_to_sid(&secattr,
319 SECINITSID_NETMSG,
320 &nlbl_sid);
9534f71c
PM
321 if (rc == 0 &&
322 (secattr.flags & NETLBL_SECATTR_CACHEABLE) &&
323 (secattr.flags & NETLBL_SECATTR_CACHE))
324 netlbl_cache_add(skb, &secattr);
325 } else
f36158c4
PM
326 nlbl_sid = SECINITSID_UNLABELED;
327 netlbl_secattr_destroy(&secattr);
5778eabd
PM
328 if (rc != 0)
329 return rc;
8d9107e8 330
5778eabd
PM
331 switch (sksec->sclass) {
332 case SECCLASS_UDP_SOCKET:
f36158c4 333 perm = UDP_SOCKET__RECVFROM;
5778eabd
PM
334 break;
335 case SECCLASS_TCP_SOCKET:
f36158c4 336 perm = TCP_SOCKET__RECVFROM;
5778eabd
PM
337 break;
338 default:
f36158c4 339 perm = RAWIP_SOCKET__RECVFROM;
5778eabd
PM
340 }
341
f36158c4 342 rc = avc_has_perm(sksec->sid, nlbl_sid, sksec->sclass, perm, ad);
5778eabd
PM
343 if (rc == 0)
344 return 0;
345
f36158c4
PM
346 if (nlbl_sid != SECINITSID_UNLABELED)
347 netlbl_skbuff_err(skb, rc);
5778eabd
PM
348 return rc;
349}
350
351/**
352 * selinux_netlbl_socket_setsockopt - Do not allow users to remove a NetLabel
353 * @sock: the socket
354 * @level: the socket level or protocol
355 * @optname: the socket option name
356 *
357 * Description:
358 * Check the setsockopt() call and if the user is trying to replace the IP
359 * options on a socket and a NetLabel is in place for the socket deny the
360 * access; otherwise allow the access. Returns zero when the access is
361 * allowed, -EACCES when denied, and other negative values on error.
362 *
363 */
364int selinux_netlbl_socket_setsockopt(struct socket *sock,
365 int level,
366 int optname)
367{
368 int rc = 0;
ba6ff9f2
PM
369 struct sock *sk = sock->sk;
370 struct sk_security_struct *sksec = sk->sk_security;
5778eabd
PM
371 struct netlbl_lsm_secattr secattr;
372
373 rcu_read_lock();
374 if (level == IPPROTO_IP && optname == IP_OPTIONS &&
375 sksec->nlbl_state == NLBL_LABELED) {
376 netlbl_secattr_init(&secattr);
ba6ff9f2
PM
377 lock_sock(sk);
378 rc = netlbl_sock_getattr(sk, &secattr);
379 release_sock(sk);
5778eabd
PM
380 if (rc == 0 && secattr.flags != NETLBL_SECATTR_NONE)
381 rc = -EACCES;
382 netlbl_secattr_destroy(&secattr);
383 }
384 rcu_read_unlock();
385
386 return rc;
387}
This page took 0.112565 seconds and 5 git commands to generate.