1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30#include <linux/types.h>
31#include <linux/rcupdate.h>
32#include <linux/list.h>
33#include <linux/slab.h>
34#include <linux/spinlock.h>
35#include <linux/in.h>
36#include <linux/in6.h>
37#include <linux/ip.h>
38#include <linux/ipv6.h>
39#include <net/ip.h>
40#include <net/ipv6.h>
41
42#include "netport.h"
43#include "objsec.h"
44
45#define SEL_NETPORT_HASH_SIZE 256
46#define SEL_NETPORT_HASH_BKT_LIMIT 16
47
48struct sel_netport_bkt {
49 int size;
50 struct list_head list;
51};
52
53struct sel_netport {
54 struct netport_security_struct psec;
55
56 struct list_head list;
57 struct rcu_head rcu;
58};
59
60
61
62
63
64
65
66static LIST_HEAD(sel_netport_list);
67static DEFINE_SPINLOCK(sel_netport_lock);
68static struct sel_netport_bkt sel_netport_hash[SEL_NETPORT_HASH_SIZE];
69
70
71
72
73
74
75
76
77
78
79
80static void sel_netport_free(struct rcu_head *p)
81{
82 struct sel_netport *port = container_of(p, struct sel_netport, rcu);
83 kfree(port);
84}
85
86
87
88
89
90
91
92
93
94
95static unsigned int sel_netport_hashfn(u16 pnum)
96{
97 return (pnum & (SEL_NETPORT_HASH_SIZE - 1));
98}
99
100
101
102
103
104
105
106
107
108
109
110static struct sel_netport *sel_netport_find(u8 protocol, u16 pnum)
111{
112 unsigned int idx;
113 struct sel_netport *port;
114
115 idx = sel_netport_hashfn(pnum);
116 list_for_each_entry_rcu(port, &sel_netport_hash[idx].list, list)
117 if (port->psec.port == pnum && port->psec.protocol == protocol)
118 return port;
119
120 return NULL;
121}
122
123
124
125
126
127
128
129
130
131static void sel_netport_insert(struct sel_netport *port)
132{
133 unsigned int idx;
134
135
136
137 idx = sel_netport_hashfn(port->psec.port);
138 list_add_rcu(&port->list, &sel_netport_hash[idx].list);
139 if (sel_netport_hash[idx].size == SEL_NETPORT_HASH_BKT_LIMIT) {
140 struct sel_netport *tail;
141 tail = list_entry(
142 rcu_dereference(sel_netport_hash[idx].list.prev),
143 struct sel_netport, list);
144 list_del_rcu(&tail->list);
145 call_rcu(&tail->rcu, sel_netport_free);
146 } else
147 sel_netport_hash[idx].size++;
148}
149
150
151
152
153
154
155
156
157
158
159
160
161
162static int sel_netport_sid_slow(u8 protocol, u16 pnum, u32 *sid)
163{
164 int ret = -ENOMEM;
165 struct sel_netport *port;
166 struct sel_netport *new = NULL;
167
168 spin_lock_bh(&sel_netport_lock);
169 port = sel_netport_find(protocol, pnum);
170 if (port != NULL) {
171 *sid = port->psec.sid;
172 spin_unlock_bh(&sel_netport_lock);
173 return 0;
174 }
175 new = kzalloc(sizeof(*new), GFP_ATOMIC);
176 if (new == NULL)
177 goto out;
178 ret = security_port_sid(protocol, pnum, sid);
179 if (ret != 0)
180 goto out;
181
182 new->psec.port = pnum;
183 new->psec.protocol = protocol;
184 new->psec.sid = *sid;
185 sel_netport_insert(new);
186
187out:
188 spin_unlock_bh(&sel_netport_lock);
189 if (unlikely(ret)) {
190 printk(KERN_WARNING
191 "SELinux: failure in sel_netport_sid_slow(),"
192 " unable to determine network port label\n");
193 kfree(new);
194 }
195 return ret;
196}
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211int sel_netport_sid(u8 protocol, u16 pnum, u32 *sid)
212{
213 struct sel_netport *port;
214
215 rcu_read_lock();
216 port = sel_netport_find(protocol, pnum);
217 if (port != NULL) {
218 *sid = port->psec.sid;
219 rcu_read_unlock();
220 return 0;
221 }
222 rcu_read_unlock();
223
224 return sel_netport_sid_slow(protocol, pnum, sid);
225}
226
227
228
229
230
231
232
233
234static void sel_netport_flush(void)
235{
236 unsigned int idx;
237 struct sel_netport *port, *port_tmp;
238
239 spin_lock_bh(&sel_netport_lock);
240 for (idx = 0; idx < SEL_NETPORT_HASH_SIZE; idx++) {
241 list_for_each_entry_safe(port, port_tmp,
242 &sel_netport_hash[idx].list, list) {
243 list_del_rcu(&port->list);
244 call_rcu(&port->rcu, sel_netport_free);
245 }
246 sel_netport_hash[idx].size = 0;
247 }
248 spin_unlock_bh(&sel_netport_lock);
249}
250
251static int sel_netport_avc_callback(u32 event, u32 ssid, u32 tsid,
252 u16 class, u32 perms, u32 *retained)
253{
254 if (event == AVC_CALLBACK_RESET) {
255 sel_netport_flush();
256 synchronize_net();
257 }
258 return 0;
259}
260
261static __init int sel_netport_init(void)
262{
263 int iter;
264 int ret;
265
266 if (!selinux_enabled)
267 return 0;
268
269 for (iter = 0; iter < SEL_NETPORT_HASH_SIZE; iter++) {
270 INIT_LIST_HEAD(&sel_netport_hash[iter].list);
271 sel_netport_hash[iter].size = 0;
272 }
273
274 ret = avc_add_callback(sel_netport_avc_callback, AVC_CALLBACK_RESET,
275 SECSID_NULL, SECSID_NULL, SECCLASS_NULL, 0);
276 if (ret != 0)
277 panic("avc_add_callback() failed, error %d\n", ret);
278
279 return ret;
280}
281
282__initcall(sel_netport_init);
283