|
@@ -45,6 +45,7 @@ static struct list_head sel_netif_hash[SEL_NETIF_HASH_SIZE];
|
|
|
|
|
|
/**
|
|
/**
|
|
* sel_netif_hashfn - Hashing function for the interface table
|
|
* sel_netif_hashfn - Hashing function for the interface table
|
|
|
|
+ * @ns: the network namespace
|
|
* @ifindex: the network interface
|
|
* @ifindex: the network interface
|
|
*
|
|
*
|
|
* Description:
|
|
* Description:
|
|
@@ -52,13 +53,14 @@ static struct list_head sel_netif_hash[SEL_NETIF_HASH_SIZE];
|
|
* bucket number for the given interface.
|
|
* bucket number for the given interface.
|
|
*
|
|
*
|
|
*/
|
|
*/
|
|
-static inline u32 sel_netif_hashfn(int ifindex)
|
|
|
|
|
|
+static inline u32 sel_netif_hashfn(const struct net *ns, int ifindex)
|
|
{
|
|
{
|
|
- return (ifindex & (SEL_NETIF_HASH_SIZE - 1));
|
|
|
|
|
|
+ return (((uintptr_t)ns + ifindex) & (SEL_NETIF_HASH_SIZE - 1));
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
* sel_netif_find - Search for an interface record
|
|
* sel_netif_find - Search for an interface record
|
|
|
|
+ * @ns: the network namespace
|
|
* @ifindex: the network interface
|
|
* @ifindex: the network interface
|
|
*
|
|
*
|
|
* Description:
|
|
* Description:
|
|
@@ -66,15 +68,15 @@ static inline u32 sel_netif_hashfn(int ifindex)
|
|
* If an entry can not be found in the table return NULL.
|
|
* If an entry can not be found in the table return NULL.
|
|
*
|
|
*
|
|
*/
|
|
*/
|
|
-static inline struct sel_netif *sel_netif_find(int ifindex)
|
|
|
|
|
|
+static inline struct sel_netif *sel_netif_find(const struct net *ns,
|
|
|
|
+ int ifindex)
|
|
{
|
|
{
|
|
- int idx = sel_netif_hashfn(ifindex);
|
|
|
|
|
|
+ int idx = sel_netif_hashfn(ns, ifindex);
|
|
struct sel_netif *netif;
|
|
struct sel_netif *netif;
|
|
|
|
|
|
list_for_each_entry_rcu(netif, &sel_netif_hash[idx], list)
|
|
list_for_each_entry_rcu(netif, &sel_netif_hash[idx], list)
|
|
- /* all of the devices should normally fit in the hash, so we
|
|
|
|
- * optimize for that case */
|
|
|
|
- if (likely(netif->nsec.ifindex == ifindex))
|
|
|
|
|
|
+ if (net_eq(netif->nsec.ns, ns) &&
|
|
|
|
+ netif->nsec.ifindex == ifindex)
|
|
return netif;
|
|
return netif;
|
|
|
|
|
|
return NULL;
|
|
return NULL;
|
|
@@ -96,7 +98,7 @@ static int sel_netif_insert(struct sel_netif *netif)
|
|
if (sel_netif_total >= SEL_NETIF_HASH_MAX)
|
|
if (sel_netif_total >= SEL_NETIF_HASH_MAX)
|
|
return -ENOSPC;
|
|
return -ENOSPC;
|
|
|
|
|
|
- idx = sel_netif_hashfn(netif->nsec.ifindex);
|
|
|
|
|
|
+ idx = sel_netif_hashfn(netif->nsec.ns, netif->nsec.ifindex);
|
|
list_add_rcu(&netif->list, &sel_netif_hash[idx]);
|
|
list_add_rcu(&netif->list, &sel_netif_hash[idx]);
|
|
sel_netif_total++;
|
|
sel_netif_total++;
|
|
|
|
|
|
@@ -120,6 +122,7 @@ static void sel_netif_destroy(struct sel_netif *netif)
|
|
|
|
|
|
/**
|
|
/**
|
|
* sel_netif_sid_slow - Lookup the SID of a network interface using the policy
|
|
* sel_netif_sid_slow - Lookup the SID of a network interface using the policy
|
|
|
|
+ * @ns: the network namespace
|
|
* @ifindex: the network interface
|
|
* @ifindex: the network interface
|
|
* @sid: interface SID
|
|
* @sid: interface SID
|
|
*
|
|
*
|
|
@@ -130,7 +133,7 @@ static void sel_netif_destroy(struct sel_netif *netif)
|
|
* failure.
|
|
* failure.
|
|
*
|
|
*
|
|
*/
|
|
*/
|
|
-static int sel_netif_sid_slow(int ifindex, u32 *sid)
|
|
|
|
|
|
+static int sel_netif_sid_slow(struct net *ns, int ifindex, u32 *sid)
|
|
{
|
|
{
|
|
int ret;
|
|
int ret;
|
|
struct sel_netif *netif;
|
|
struct sel_netif *netif;
|
|
@@ -140,7 +143,7 @@ static int sel_netif_sid_slow(int ifindex, u32 *sid)
|
|
/* NOTE: we always use init's network namespace since we don't
|
|
/* NOTE: we always use init's network namespace since we don't
|
|
* currently support containers */
|
|
* currently support containers */
|
|
|
|
|
|
- dev = dev_get_by_index(&init_net, ifindex);
|
|
|
|
|
|
+ dev = dev_get_by_index(ns, ifindex);
|
|
if (unlikely(dev == NULL)) {
|
|
if (unlikely(dev == NULL)) {
|
|
printk(KERN_WARNING
|
|
printk(KERN_WARNING
|
|
"SELinux: failure in sel_netif_sid_slow(),"
|
|
"SELinux: failure in sel_netif_sid_slow(),"
|
|
@@ -149,7 +152,7 @@ static int sel_netif_sid_slow(int ifindex, u32 *sid)
|
|
}
|
|
}
|
|
|
|
|
|
spin_lock_bh(&sel_netif_lock);
|
|
spin_lock_bh(&sel_netif_lock);
|
|
- netif = sel_netif_find(ifindex);
|
|
|
|
|
|
+ netif = sel_netif_find(ns, ifindex);
|
|
if (netif != NULL) {
|
|
if (netif != NULL) {
|
|
*sid = netif->nsec.sid;
|
|
*sid = netif->nsec.sid;
|
|
ret = 0;
|
|
ret = 0;
|
|
@@ -163,6 +166,7 @@ static int sel_netif_sid_slow(int ifindex, u32 *sid)
|
|
ret = security_netif_sid(dev->name, &new->nsec.sid);
|
|
ret = security_netif_sid(dev->name, &new->nsec.sid);
|
|
if (ret != 0)
|
|
if (ret != 0)
|
|
goto out;
|
|
goto out;
|
|
|
|
+ new->nsec.ns = ns;
|
|
new->nsec.ifindex = ifindex;
|
|
new->nsec.ifindex = ifindex;
|
|
ret = sel_netif_insert(new);
|
|
ret = sel_netif_insert(new);
|
|
if (ret != 0)
|
|
if (ret != 0)
|
|
@@ -184,6 +188,7 @@ out:
|
|
|
|
|
|
/**
|
|
/**
|
|
* sel_netif_sid - Lookup the SID of a network interface
|
|
* sel_netif_sid - Lookup the SID of a network interface
|
|
|
|
+ * @ns: the network namespace
|
|
* @ifindex: the network interface
|
|
* @ifindex: the network interface
|
|
* @sid: interface SID
|
|
* @sid: interface SID
|
|
*
|
|
*
|
|
@@ -195,12 +200,12 @@ out:
|
|
* on failure.
|
|
* on failure.
|
|
*
|
|
*
|
|
*/
|
|
*/
|
|
-int sel_netif_sid(int ifindex, u32 *sid)
|
|
|
|
|
|
+int sel_netif_sid(struct net *ns, int ifindex, u32 *sid)
|
|
{
|
|
{
|
|
struct sel_netif *netif;
|
|
struct sel_netif *netif;
|
|
|
|
|
|
rcu_read_lock();
|
|
rcu_read_lock();
|
|
- netif = sel_netif_find(ifindex);
|
|
|
|
|
|
+ netif = sel_netif_find(ns, ifindex);
|
|
if (likely(netif != NULL)) {
|
|
if (likely(netif != NULL)) {
|
|
*sid = netif->nsec.sid;
|
|
*sid = netif->nsec.sid;
|
|
rcu_read_unlock();
|
|
rcu_read_unlock();
|
|
@@ -208,11 +213,12 @@ int sel_netif_sid(int ifindex, u32 *sid)
|
|
}
|
|
}
|
|
rcu_read_unlock();
|
|
rcu_read_unlock();
|
|
|
|
|
|
- return sel_netif_sid_slow(ifindex, sid);
|
|
|
|
|
|
+ return sel_netif_sid_slow(ns, ifindex, sid);
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
* sel_netif_kill - Remove an entry from the network interface table
|
|
* sel_netif_kill - Remove an entry from the network interface table
|
|
|
|
+ * @ns: the network namespace
|
|
* @ifindex: the network interface
|
|
* @ifindex: the network interface
|
|
*
|
|
*
|
|
* Description:
|
|
* Description:
|
|
@@ -220,13 +226,13 @@ int sel_netif_sid(int ifindex, u32 *sid)
|
|
* table if it exists.
|
|
* table if it exists.
|
|
*
|
|
*
|
|
*/
|
|
*/
|
|
-static void sel_netif_kill(int ifindex)
|
|
|
|
|
|
+static void sel_netif_kill(const struct net *ns, int ifindex)
|
|
{
|
|
{
|
|
struct sel_netif *netif;
|
|
struct sel_netif *netif;
|
|
|
|
|
|
rcu_read_lock();
|
|
rcu_read_lock();
|
|
spin_lock_bh(&sel_netif_lock);
|
|
spin_lock_bh(&sel_netif_lock);
|
|
- netif = sel_netif_find(ifindex);
|
|
|
|
|
|
+ netif = sel_netif_find(ns, ifindex);
|
|
if (netif)
|
|
if (netif)
|
|
sel_netif_destroy(netif);
|
|
sel_netif_destroy(netif);
|
|
spin_unlock_bh(&sel_netif_lock);
|
|
spin_unlock_bh(&sel_netif_lock);
|
|
@@ -257,11 +263,8 @@ static int sel_netif_netdev_notifier_handler(struct notifier_block *this,
|
|
{
|
|
{
|
|
struct net_device *dev = netdev_notifier_info_to_dev(ptr);
|
|
struct net_device *dev = netdev_notifier_info_to_dev(ptr);
|
|
|
|
|
|
- if (dev_net(dev) != &init_net)
|
|
|
|
- return NOTIFY_DONE;
|
|
|
|
-
|
|
|
|
if (event == NETDEV_DOWN)
|
|
if (event == NETDEV_DOWN)
|
|
- sel_netif_kill(dev->ifindex);
|
|
|
|
|
|
+ sel_netif_kill(dev_net(dev), dev->ifindex);
|
|
|
|
|
|
return NOTIFY_DONE;
|
|
return NOTIFY_DONE;
|
|
}
|
|
}
|