2 * Network interface table.
4 * Network interfaces (devices) do not have a security field, so we
5 * maintain a table associating each interface with a SID.
7 * Author: James Morris <jmorris@redhat.com>
9 * Copyright (C) 2003 Red Hat, Inc., James Morris <jmorris@redhat.com>
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2,
13 * as published by the Free Software Foundation.
15 #include <linux/init.h>
16 #include <linux/types.h>
17 #include <linux/stddef.h>
18 #include <linux/kernel.h>
19 #include <linux/list.h>
20 #include <linux/notifier.h>
21 #include <linux/netdevice.h>
22 #include <linux/rcupdate.h>
28 #define SEL_NETIF_HASH_SIZE 64
29 #define SEL_NETIF_HASH_MAX 1024
36 #define DEBUGP(format, args...)
41 struct list_head list;
42 struct netif_security_struct nsec;
43 struct rcu_head rcu_head;
46 static u32 sel_netif_total;
47 static LIST_HEAD(sel_netif_list);
48 static DEFINE_SPINLOCK(sel_netif_lock);
49 static struct list_head sel_netif_hash[SEL_NETIF_HASH_SIZE];
51 static inline u32 sel_netif_hasfn(struct net_device *dev)
53 return (dev->ifindex & (SEL_NETIF_HASH_SIZE - 1));
57 * All of the devices should normally fit in the hash, so we optimize
60 static inline struct sel_netif *sel_netif_find(struct net_device *dev)
62 struct list_head *pos;
63 int idx = sel_netif_hasfn(dev);
65 __list_for_each_rcu(pos, &sel_netif_hash[idx]) {
66 struct sel_netif *netif = list_entry(pos,
67 struct sel_netif, list);
68 if (likely(netif->nsec.dev == dev))
74 static int sel_netif_insert(struct sel_netif *netif)
78 if (sel_netif_total >= SEL_NETIF_HASH_MAX) {
83 idx = sel_netif_hasfn(netif->nsec.dev);
84 list_add_rcu(&netif->list, &sel_netif_hash[idx]);
90 static void sel_netif_free(struct rcu_head *p)
92 struct sel_netif *netif = container_of(p, struct sel_netif, rcu_head);
94 DEBUGP("%s: %s\n", __FUNCTION__, netif->nsec.dev->name);
98 static void sel_netif_destroy(struct sel_netif *netif)
100 DEBUGP("%s: %s\n", __FUNCTION__, netif->nsec.dev->name);
102 list_del_rcu(&netif->list);
104 call_rcu(&netif->rcu_head, sel_netif_free);
107 static struct sel_netif *sel_netif_lookup(struct net_device *dev)
110 struct sel_netif *netif, *new;
111 struct netif_security_struct *nsec;
113 netif = sel_netif_find(dev);
114 if (likely(netif != NULL))
117 new = kmalloc(sizeof(*new), GFP_ATOMIC);
119 netif = ERR_PTR(-ENOMEM);
123 memset(new, 0, sizeof(*new));
126 ret = security_netif_sid(dev->name, &nsec->if_sid, &nsec->msg_sid);
129 netif = ERR_PTR(ret);
135 spin_lock_bh(&sel_netif_lock);
137 netif = sel_netif_find(dev);
139 spin_unlock_bh(&sel_netif_lock);
144 ret = sel_netif_insert(new);
145 spin_unlock_bh(&sel_netif_lock);
149 netif = ERR_PTR(ret);
155 DEBUGP("new: ifindex=%u name=%s if_sid=%u msg_sid=%u\n", dev->ifindex, dev->name,
156 nsec->if_sid, nsec->msg_sid);
161 static void sel_netif_assign_sids(u32 if_sid_in, u32 msg_sid_in, u32 *if_sid_out, u32 *msg_sid_out)
164 *if_sid_out = if_sid_in;
166 *msg_sid_out = msg_sid_in;
169 static int sel_netif_sids_slow(struct net_device *dev, u32 *if_sid, u32 *msg_sid)
172 u32 tmp_if_sid, tmp_msg_sid;
174 ret = security_netif_sid(dev->name, &tmp_if_sid, &tmp_msg_sid);
176 sel_netif_assign_sids(tmp_if_sid, tmp_msg_sid, if_sid, msg_sid);
180 int sel_netif_sids(struct net_device *dev, u32 *if_sid, u32 *msg_sid)
183 struct sel_netif *netif;
186 netif = sel_netif_lookup(dev);
189 ret = sel_netif_sids_slow(dev, if_sid, msg_sid);
192 sel_netif_assign_sids(netif->nsec.if_sid, netif->nsec.msg_sid, if_sid, msg_sid);
198 static void sel_netif_kill(struct net_device *dev)
200 struct sel_netif *netif;
202 spin_lock_bh(&sel_netif_lock);
203 netif = sel_netif_find(dev);
205 sel_netif_destroy(netif);
206 spin_unlock_bh(&sel_netif_lock);
209 static void sel_netif_flush(void)
213 spin_lock_bh(&sel_netif_lock);
214 for (idx = 0; idx < SEL_NETIF_HASH_SIZE; idx++) {
215 struct sel_netif *netif;
217 list_for_each_entry(netif, &sel_netif_hash[idx], list)
218 sel_netif_destroy(netif);
220 spin_unlock_bh(&sel_netif_lock);
223 static int sel_netif_avc_callback(u32 event, u32 ssid, u32 tsid,
224 u16 class, u32 perms, u32 *retained)
226 if (event == AVC_CALLBACK_RESET) {
233 static int sel_netif_netdev_notifier_handler(struct notifier_block *this,
234 unsigned long event, void *ptr)
236 struct net_device *dev = ptr;
238 if (event == NETDEV_DOWN)
244 static struct notifier_block sel_netif_netdev_notifier = {
245 .notifier_call = sel_netif_netdev_notifier_handler,
248 static __init int sel_netif_init(void)
252 if (!selinux_enabled)
255 for (i = 0; i < SEL_NETIF_HASH_SIZE; i++)
256 INIT_LIST_HEAD(&sel_netif_hash[i]);
258 register_netdevice_notifier(&sel_netif_netdev_notifier);
260 err = avc_add_callback(sel_netif_avc_callback, AVC_CALLBACK_RESET,
261 SECSID_NULL, SECSID_NULL, SECCLASS_NULL, 0);
263 panic("avc_add_callback() failed, error %d\n", err);
269 __initcall(sel_netif_init);