cregit-Linux how code gets into the kernel

Release 4.15 security/selinux/netif.c

Directory: security/selinux
/*
 * Network interface table.
 *
 * Network interfaces (devices) do not have a security field, so we
 * maintain a table associating each interface with a SID.
 *
 * Author: James Morris <jmorris@redhat.com>
 *
 * Copyright (C) 2003 Red Hat, Inc., James Morris <jmorris@redhat.com>
 * Copyright (C) 2007 Hewlett-Packard Development Company, L.P.
 *                    Paul Moore <paul@paul-moore.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2,
 * as published by the Free Software Foundation.
 */
#include <linux/init.h>
#include <linux/types.h>
#include <linux/slab.h>
#include <linux/stddef.h>
#include <linux/kernel.h>
#include <linux/list.h>
#include <linux/notifier.h>
#include <linux/netdevice.h>
#include <linux/rcupdate.h>
#include <net/net_namespace.h>

#include "security.h"
#include "objsec.h"
#include "netif.h"


#define SEL_NETIF_HASH_SIZE	64

#define SEL_NETIF_HASH_MAX	1024


struct sel_netif {
	
struct list_head list;
	
struct netif_security_struct nsec;
	
struct rcu_head rcu_head;
};


static u32 sel_netif_total;
static LIST_HEAD(sel_netif_list);
static DEFINE_SPINLOCK(sel_netif_lock);

static struct list_head sel_netif_hash[SEL_NETIF_HASH_SIZE];

/**
 * sel_netif_hashfn - Hashing function for the interface table
 * @ns: the network namespace
 * @ifindex: the network interface
 *
 * Description:
 * This is the hashing function for the network interface table, it returns the
 * bucket number for the given interface.
 *
 */

static inline u32 sel_netif_hashfn(const struct net *ns, int ifindex) { return (((uintptr_t)ns + ifindex) & (SEL_NETIF_HASH_SIZE - 1)); }

Contributors

PersonTokensPropCommitsCommitProp
Andrew Morton1852.94%133.33%
Paul Moore1647.06%266.67%
Total34100.00%3100.00%

/** * sel_netif_find - Search for an interface record * @ns: the network namespace * @ifindex: the network interface * * Description: * Search the network interface table and return the record matching @ifindex. * If an entry can not be found in the table return NULL. * */
static inline struct sel_netif *sel_netif_find(const struct net *ns, int ifindex) { int idx = sel_netif_hashfn(ns, ifindex); struct sel_netif *netif; list_for_each_entry_rcu(netif, &sel_netif_hash[idx], list) if (net_eq(netif->nsec.ns, ns) && netif->nsec.ifindex == ifindex) return netif; return NULL; }

Contributors

PersonTokensPropCommitsCommitProp
Andrew Morton3855.88%125.00%
Paul Moore2942.65%250.00%
James Morris11.47%125.00%
Total68100.00%4100.00%

/** * sel_netif_insert - Insert a new interface into the table * @netif: the new interface record * * Description: * Add a new interface record to the network interface hash table. Returns * zero on success, negative values on failure. * */
static int sel_netif_insert(struct sel_netif *netif) { int idx; if (sel_netif_total >= SEL_NETIF_HASH_MAX) return -ENOSPC; idx = sel_netif_hashfn(netif->nsec.ns, netif->nsec.ifindex); list_add_rcu(&netif->list, &sel_netif_hash[idx]); sel_netif_total++; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Andrew Morton4268.85%125.00%
Paul Moore1118.03%250.00%
James Morris813.11%125.00%
Total61100.00%4100.00%

/** * sel_netif_destroy - Remove an interface record from the table * @netif: the existing interface record * * Description: * Remove an existing interface record from the network interface table. * */
static void sel_netif_destroy(struct sel_netif *netif) { list_del_rcu(&netif->list); sel_netif_total--; kfree_rcu(netif, rcu_head); }

Contributors

PersonTokensPropCommitsCommitProp
James Morris1862.07%133.33%
Andrew Morton931.03%133.33%
Lai Jiangshan26.90%133.33%
Total29100.00%3100.00%

/** * sel_netif_sid_slow - Lookup the SID of a network interface using the policy * @ns: the network namespace * @ifindex: the network interface * @sid: interface SID * * Description: * This function determines the SID of a network interface by quering the * security policy. The result is added to the network interface table to * speedup future queries. Returns zero on success, negative values on * failure. * */
static int sel_netif_sid_slow(struct net *ns, int ifindex, u32 *sid) { int ret; struct sel_netif *netif; struct sel_netif *new = NULL; struct net_device *dev; /* NOTE: we always use init's network namespace since we don't * currently support containers */ dev = dev_get_by_index(ns, ifindex); if (unlikely(dev == NULL)) { printk(KERN_WARNING "SELinux: failure in sel_netif_sid_slow()," " invalid network interface (%d)\n", ifindex); return -ENOENT; } spin_lock_bh(&sel_netif_lock); netif = sel_netif_find(ns, ifindex); if (netif != NULL) { *sid = netif->nsec.sid; ret = 0; goto out; } new = kzalloc(sizeof(*new), GFP_ATOMIC); if (new == NULL) { ret = -ENOMEM; goto out; } ret = security_netif_sid(dev->name, &new->nsec.sid); if (ret != 0) goto out; new->nsec.ns = ns; new->nsec.ifindex = ifindex; ret = sel_netif_insert(new); if (ret != 0) goto out; *sid = new->nsec.sid; out: spin_unlock_bh(&sel_netif_lock); dev_put(dev); if (unlikely(ret)) { printk(KERN_WARNING "SELinux: failure in sel_netif_sid_slow()," " unable to determine network interface label (%d)\n", ifindex); kfree(new); } return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Paul Moore12551.02%350.00%
Andrew Morton10141.22%116.67%
James Morris197.76%233.33%
Total245100.00%6100.00%

/** * sel_netif_sid - Lookup the SID of a network interface * @ns: the network namespace * @ifindex: the network interface * @sid: interface SID * * Description: * This function determines the SID of a network interface using the fastest * method possible. First the interface table is queried, but if an entry * can't be found then the policy is queried and the result is added to the * table to speedup future queries. Returns zero on success, negative values * on failure. * */
int sel_netif_sid(struct net *ns, int ifindex, u32 *sid) { struct sel_netif *netif; rcu_read_lock(); netif = sel_netif_find(ns, ifindex); if (likely(netif != NULL)) { *sid = netif->nsec.sid; rcu_read_unlock(); return 0; } rcu_read_unlock(); return sel_netif_sid_slow(ns, ifindex, sid); }

Contributors

PersonTokensPropCommitsCommitProp
Paul Moore3446.58%250.00%
James Morris2838.36%125.00%
Andrew Morton1115.07%125.00%
Total73100.00%4100.00%

/** * sel_netif_kill - Remove an entry from the network interface table * @ns: the network namespace * @ifindex: the network interface * * Description: * This function removes the entry matching @ifindex from the network interface * table if it exists. * */
static void sel_netif_kill(const struct net *ns, int ifindex) { struct sel_netif *netif; rcu_read_lock(); spin_lock_bh(&sel_netif_lock); netif = sel_netif_find(ns, ifindex); if (netif) sel_netif_destroy(netif); spin_unlock_bh(&sel_netif_lock); rcu_read_unlock(); }

Contributors

PersonTokensPropCommitsCommitProp
Andrew Morton2748.21%120.00%
James Morris1221.43%120.00%
Paul Moore1119.64%240.00%
Paul E. McKenney610.71%120.00%
Total56100.00%5100.00%

/** * sel_netif_flush - Flush the entire network interface table * * Description: * Remove all entries from the network interface table. * */
void sel_netif_flush(void) { int idx; struct sel_netif *netif; spin_lock_bh(&sel_netif_lock); for (idx = 0; idx < SEL_NETIF_HASH_SIZE; idx++) list_for_each_entry(netif, &sel_netif_hash[idx], list) sel_netif_destroy(netif); spin_unlock_bh(&sel_netif_lock); }

Contributors

PersonTokensPropCommitsCommitProp
Andrew Morton3158.49%133.33%
James Morris1732.08%133.33%
Paul Moore59.43%133.33%
Total53100.00%3100.00%


static int sel_netif_netdev_notifier_handler(struct notifier_block *this, unsigned long event, void *ptr) { struct net_device *dev = netdev_notifier_info_to_dev(ptr); if (event == NETDEV_DOWN) sel_netif_kill(dev_net(dev), dev->ifindex); return NOTIFY_DONE; }

Contributors

PersonTokensPropCommitsCommitProp
Andrew Morton4080.00%125.00%
Paul Moore714.00%250.00%
Jiri Pirko36.00%125.00%
Total50100.00%4100.00%

static struct notifier_block sel_netif_netdev_notifier = { .notifier_call = sel_netif_netdev_notifier_handler, };
static __init int sel_netif_init(void) { int i; if (!selinux_enabled) return 0; for (i = 0; i < SEL_NETIF_HASH_SIZE; i++) INIT_LIST_HEAD(&sel_netif_hash[i]); register_netdevice_notifier(&sel_netif_netdev_notifier); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Andrew Morton4792.16%133.33%
Paul Moore47.84%266.67%
Total51100.00%3100.00%

__initcall(sel_netif_init);

Overall Contributors

PersonTokensPropCommitsCommitProp
Andrew Morton43852.52%16.67%
Paul Moore25130.10%533.33%
James Morris12114.51%213.33%
Paul E. McKenney60.72%16.67%
Thomas Gleixner40.48%16.67%
Tejun Heo30.36%16.67%
Gerd Knorr30.36%16.67%
Eric W. Biedermann30.36%16.67%
Jiri Pirko30.36%16.67%
Lai Jiangshan20.24%16.67%
Total834100.00%15100.00%
Directory: security/selinux
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.