blob: 8192e8bc9f5aa6665ce37fc219981bab206bb6b9 [file] [log] [blame]
Paul Moore5778eab2007-02-28 15:14:22 -05001/*
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/**
Paul Mooreba6ff9f2007-06-07 18:37:15 -070039 * selinux_netlbl_sock_setsid - Label a socket using the NetLabel mechanism
40 * @sk: the socket to label
Paul Moore5778eab2007-02-28 15:14:22 -050041 * @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 */
Paul Mooreba6ff9f2007-06-07 18:37:15 -070050static int selinux_netlbl_sock_setsid(struct sock *sk, u32 sid)
Paul Moore5778eab2007-02-28 15:14:22 -050051{
52 int rc;
Paul Mooreba6ff9f2007-06-07 18:37:15 -070053 struct sk_security_struct *sksec = sk->sk_security;
Paul Moore5778eab2007-02-28 15:14:22 -050054 struct netlbl_lsm_secattr secattr;
55
56 rc = security_netlbl_sid_to_secattr(sid, &secattr);
57 if (rc != 0)
58 return rc;
59
Paul Mooreba6ff9f2007-06-07 18:37:15 -070060 rc = netlbl_sock_setattr(sk, &secattr);
Paul Moore5778eab2007-02-28 15:14:22 -050061 if (rc == 0) {
62 spin_lock_bh(&sksec->nlbl_lock);
63 sksec->nlbl_state = NLBL_LABELED;
64 spin_unlock_bh(&sksec->nlbl_lock);
65 }
66
67 return rc;
68}
69
70/**
71 * selinux_netlbl_cache_invalidate - Invalidate the NetLabel cache
72 *
73 * Description:
74 * Invalidate the NetLabel security attribute mapping cache.
75 *
76 */
77void selinux_netlbl_cache_invalidate(void)
78{
79 netlbl_cache_invalidate();
80}
81
82/**
83 * selinux_netlbl_sk_security_reset - Reset the NetLabel fields
84 * @ssec: the sk_security_struct
85 * @family: the socket family
86 *
87 * Description:
88 * Called when the NetLabel state of a sk_security_struct needs to be reset.
89 * The caller is responsibile for all the NetLabel sk_security_struct locking.
90 *
91 */
92void selinux_netlbl_sk_security_reset(struct sk_security_struct *ssec,
93 int family)
94{
95 if (family == PF_INET)
96 ssec->nlbl_state = NLBL_REQUIRE;
97 else
98 ssec->nlbl_state = NLBL_UNSET;
99}
100
101/**
102 * selinux_netlbl_sk_security_init - Setup the NetLabel fields
103 * @ssec: the sk_security_struct
104 * @family: the socket family
105 *
106 * Description:
107 * Called when a new sk_security_struct is allocated to initialize the NetLabel
108 * fields.
109 *
110 */
111void selinux_netlbl_sk_security_init(struct sk_security_struct *ssec,
112 int family)
113{
114 /* No locking needed, we are the only one who has access to ssec */
115 selinux_netlbl_sk_security_reset(ssec, family);
116 spin_lock_init(&ssec->nlbl_lock);
117}
118
119/**
120 * selinux_netlbl_sk_security_clone - Copy the NetLabel fields
121 * @ssec: the original sk_security_struct
122 * @newssec: the cloned sk_security_struct
123 *
124 * Description:
125 * Clone the NetLabel specific sk_security_struct fields from @ssec to
126 * @newssec.
127 *
128 */
129void selinux_netlbl_sk_security_clone(struct sk_security_struct *ssec,
130 struct sk_security_struct *newssec)
131{
132 /* We don't need to take newssec->nlbl_lock because we are the only
133 * thread with access to newssec, but we do need to take the RCU read
134 * lock as other threads could have access to ssec */
135 rcu_read_lock();
136 selinux_netlbl_sk_security_reset(newssec, ssec->sk->sk_family);
137 newssec->sclass = ssec->sclass;
138 rcu_read_unlock();
139}
140
141/**
142 * selinux_netlbl_skbuff_getsid - Get the sid of a packet using NetLabel
143 * @skb: the packet
144 * @base_sid: the SELinux SID to use as a context for MLS only attributes
145 * @sid: the SID
146 *
147 * Description:
148 * Call the NetLabel mechanism to get the security attributes of the given
149 * packet and use those attributes to determine the correct context/SID to
150 * assign to the packet. Returns zero on success, negative values on failure.
151 *
152 */
153int selinux_netlbl_skbuff_getsid(struct sk_buff *skb, u32 base_sid, u32 *sid)
154{
155 int rc;
156 struct netlbl_lsm_secattr secattr;
157
158 netlbl_secattr_init(&secattr);
159 rc = netlbl_skbuff_getattr(skb, &secattr);
160 if (rc == 0 && secattr.flags != NETLBL_SECATTR_NONE)
Paul Moore9faf65f2007-06-29 11:48:16 -0400161 rc = security_netlbl_secattr_to_sid(&secattr, base_sid, sid);
Paul Moore5778eab2007-02-28 15:14:22 -0500162 else
163 *sid = SECSID_NULL;
164 netlbl_secattr_destroy(&secattr);
165
166 return rc;
167}
168
169/**
170 * selinux_netlbl_sock_graft - Netlabel the new socket
171 * @sk: the new connection
172 * @sock: the new socket
173 *
174 * Description:
175 * The connection represented by @sk is being grafted onto @sock so set the
176 * socket's NetLabel to match the SID of @sk.
177 *
178 */
179void selinux_netlbl_sock_graft(struct sock *sk, struct socket *sock)
180{
181 struct inode_security_struct *isec = SOCK_INODE(sock)->i_security;
182 struct sk_security_struct *sksec = sk->sk_security;
183 struct netlbl_lsm_secattr secattr;
184 u32 nlbl_peer_sid;
185
186 sksec->sclass = isec->sclass;
187
188 rcu_read_lock();
189
190 if (sksec->nlbl_state != NLBL_REQUIRE) {
191 rcu_read_unlock();
192 return;
193 }
194
195 netlbl_secattr_init(&secattr);
196 if (netlbl_sock_getattr(sk, &secattr) == 0 &&
197 secattr.flags != NETLBL_SECATTR_NONE &&
198 security_netlbl_secattr_to_sid(&secattr,
Paul Moore9faf65f2007-06-29 11:48:16 -0400199 SECINITSID_NETMSG,
Paul Moore5778eab2007-02-28 15:14:22 -0500200 &nlbl_peer_sid) == 0)
201 sksec->peer_sid = nlbl_peer_sid;
202 netlbl_secattr_destroy(&secattr);
203
204 /* Try to set the NetLabel on the socket to save time later, if we fail
205 * here we will pick up the pieces in later calls to
206 * selinux_netlbl_inode_permission(). */
Paul Mooreba6ff9f2007-06-07 18:37:15 -0700207 selinux_netlbl_sock_setsid(sk, sksec->sid);
Paul Moore5778eab2007-02-28 15:14:22 -0500208
209 rcu_read_unlock();
210}
211
212/**
213 * selinux_netlbl_socket_post_create - Label a socket using NetLabel
214 * @sock: the socket to label
215 *
216 * Description:
217 * Attempt to label a socket using the NetLabel mechanism using the given
218 * SID. Returns zero values on success, negative values on failure.
219 *
220 */
221int selinux_netlbl_socket_post_create(struct socket *sock)
222{
223 int rc = 0;
Paul Mooreba6ff9f2007-06-07 18:37:15 -0700224 struct sock *sk = sock->sk;
Paul Moore5778eab2007-02-28 15:14:22 -0500225 struct inode_security_struct *isec = SOCK_INODE(sock)->i_security;
Paul Mooreba6ff9f2007-06-07 18:37:15 -0700226 struct sk_security_struct *sksec = sk->sk_security;
Paul Moore5778eab2007-02-28 15:14:22 -0500227
228 sksec->sclass = isec->sclass;
229
230 rcu_read_lock();
231 if (sksec->nlbl_state == NLBL_REQUIRE)
Paul Mooreba6ff9f2007-06-07 18:37:15 -0700232 rc = selinux_netlbl_sock_setsid(sk, sksec->sid);
Paul Moore5778eab2007-02-28 15:14:22 -0500233 rcu_read_unlock();
234
235 return rc;
236}
237
238/**
239 * selinux_netlbl_inode_permission - Verify the socket is NetLabel labeled
240 * @inode: the file descriptor's inode
241 * @mask: the permission mask
242 *
243 * Description:
244 * Looks at a file's inode and if it is marked as a socket protected by
245 * NetLabel then verify that the socket has been labeled, if not try to label
246 * the socket now with the inode's SID. Returns zero on success, negative
247 * values on failure.
248 *
249 */
250int selinux_netlbl_inode_permission(struct inode *inode, int mask)
251{
252 int rc;
Paul Mooreba6ff9f2007-06-07 18:37:15 -0700253 struct sock *sk;
Paul Moore5778eab2007-02-28 15:14:22 -0500254 struct socket *sock;
Paul Mooreba6ff9f2007-06-07 18:37:15 -0700255 struct sk_security_struct *sksec;
Paul Moore5778eab2007-02-28 15:14:22 -0500256
257 if (!S_ISSOCK(inode->i_mode) ||
258 ((mask & (MAY_WRITE | MAY_APPEND)) == 0))
259 return 0;
260 sock = SOCKET_I(inode);
Paul Mooreba6ff9f2007-06-07 18:37:15 -0700261 sk = sock->sk;
262 sksec = sk->sk_security;
Paul Moore5778eab2007-02-28 15:14:22 -0500263
264 rcu_read_lock();
265 if (sksec->nlbl_state != NLBL_REQUIRE) {
266 rcu_read_unlock();
267 return 0;
268 }
269 local_bh_disable();
Paul Mooreba6ff9f2007-06-07 18:37:15 -0700270 bh_lock_sock_nested(sk);
271 rc = selinux_netlbl_sock_setsid(sk, sksec->sid);
272 bh_unlock_sock(sk);
Paul Moore5778eab2007-02-28 15:14:22 -0500273 local_bh_enable();
274 rcu_read_unlock();
275
276 return rc;
277}
278
279/**
280 * selinux_netlbl_sock_rcv_skb - Do an inbound access check using NetLabel
281 * @sksec: the sock's sk_security_struct
282 * @skb: the packet
283 * @ad: the audit data
284 *
285 * Description:
286 * Fetch the NetLabel security attributes from @skb and perform an access check
287 * against the receiving socket. Returns zero on success, negative values on
288 * error.
289 *
290 */
291int selinux_netlbl_sock_rcv_skb(struct sk_security_struct *sksec,
292 struct sk_buff *skb,
293 struct avc_audit_data *ad)
294{
295 int rc;
Paul Moore9faf65f2007-06-29 11:48:16 -0400296 u32 nlbl_sid;
297 u32 perm;
Paul Moore5778eab2007-02-28 15:14:22 -0500298
Paul Moore9faf65f2007-06-29 11:48:16 -0400299 rc = selinux_netlbl_skbuff_getsid(skb, SECINITSID_NETMSG, &nlbl_sid);
Paul Moore5778eab2007-02-28 15:14:22 -0500300 if (rc != 0)
301 return rc;
Paul Moore9faf65f2007-06-29 11:48:16 -0400302 if (nlbl_sid == SECSID_NULL)
303 nlbl_sid = SECINITSID_UNLABELED;
Paul Moore5778eab2007-02-28 15:14:22 -0500304
305 switch (sksec->sclass) {
306 case SECCLASS_UDP_SOCKET:
Paul Moore9faf65f2007-06-29 11:48:16 -0400307 perm = UDP_SOCKET__RECVFROM;
Paul Moore5778eab2007-02-28 15:14:22 -0500308 break;
309 case SECCLASS_TCP_SOCKET:
Paul Moore9faf65f2007-06-29 11:48:16 -0400310 perm = TCP_SOCKET__RECVFROM;
Paul Moore5778eab2007-02-28 15:14:22 -0500311 break;
312 default:
Paul Moore9faf65f2007-06-29 11:48:16 -0400313 perm = RAWIP_SOCKET__RECVFROM;
Paul Moore5778eab2007-02-28 15:14:22 -0500314 }
315
Paul Moore9faf65f2007-06-29 11:48:16 -0400316 rc = avc_has_perm(sksec->sid, nlbl_sid, sksec->sclass, perm, ad);
Paul Moore5778eab2007-02-28 15:14:22 -0500317 if (rc == 0)
318 return 0;
319
Paul Moore9faf65f2007-06-29 11:48:16 -0400320 if (nlbl_sid != SECINITSID_UNLABELED)
321 netlbl_skbuff_err(skb, rc);
Paul Moore5778eab2007-02-28 15:14:22 -0500322 return rc;
323}
324
325/**
326 * selinux_netlbl_socket_setsockopt - Do not allow users to remove a NetLabel
327 * @sock: the socket
328 * @level: the socket level or protocol
329 * @optname: the socket option name
330 *
331 * Description:
332 * Check the setsockopt() call and if the user is trying to replace the IP
333 * options on a socket and a NetLabel is in place for the socket deny the
334 * access; otherwise allow the access. Returns zero when the access is
335 * allowed, -EACCES when denied, and other negative values on error.
336 *
337 */
338int selinux_netlbl_socket_setsockopt(struct socket *sock,
339 int level,
340 int optname)
341{
342 int rc = 0;
Paul Mooreba6ff9f2007-06-07 18:37:15 -0700343 struct sock *sk = sock->sk;
344 struct sk_security_struct *sksec = sk->sk_security;
Paul Moore5778eab2007-02-28 15:14:22 -0500345 struct netlbl_lsm_secattr secattr;
346
347 rcu_read_lock();
348 if (level == IPPROTO_IP && optname == IP_OPTIONS &&
349 sksec->nlbl_state == NLBL_LABELED) {
350 netlbl_secattr_init(&secattr);
Paul Mooreba6ff9f2007-06-07 18:37:15 -0700351 lock_sock(sk);
352 rc = netlbl_sock_getattr(sk, &secattr);
353 release_sock(sk);
Paul Moore5778eab2007-02-28 15:14:22 -0500354 if (rc == 0 && secattr.flags != NETLBL_SECATTR_NONE)
355 rc = -EACCES;
356 netlbl_secattr_destroy(&secattr);
357 }
358 rcu_read_unlock();
359
360 return rc;
361}