2019-05-30 01:57:50 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2008-09-23 05:03:44 +02:00
|
|
|
/*
|
|
|
|
* File: pn_dev.c
|
|
|
|
*
|
|
|
|
* Phonet network device
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008 Nokia Corporation.
|
|
|
|
*
|
2012-06-14 00:29:03 +02:00
|
|
|
* Authors: Sakari Ailus <sakari.ailus@nokia.com>
|
|
|
|
* Rémi Denis-Courmont
|
2008-09-23 05:03:44 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/net.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 09:04:11 +01:00
|
|
|
#include <linux/slab.h>
|
2008-09-23 05:03:44 +02:00
|
|
|
#include <linux/netdevice.h>
|
|
|
|
#include <linux/phonet.h>
|
2009-07-26 22:39:10 +02:00
|
|
|
#include <linux/proc_fs.h>
|
2009-09-09 02:00:05 +02:00
|
|
|
#include <linux/if_arp.h>
|
2008-09-23 05:03:44 +02:00
|
|
|
#include <net/sock.h>
|
2009-01-23 04:00:30 +01:00
|
|
|
#include <net/netns/generic.h>
|
2008-09-23 05:03:44 +02:00
|
|
|
#include <net/phonet/pn_dev.h>
|
|
|
|
|
2009-10-14 02:48:28 +02:00
|
|
|
struct phonet_routes {
|
2009-11-13 06:01:19 +01:00
|
|
|
struct mutex lock;
|
2014-10-06 20:15:20 +02:00
|
|
|
struct net_device __rcu *table[64];
|
2009-10-14 02:48:28 +02:00
|
|
|
};
|
|
|
|
|
2009-01-23 04:00:30 +01:00
|
|
|
struct phonet_net {
|
|
|
|
struct phonet_device_list pndevs;
|
2009-10-14 02:48:28 +02:00
|
|
|
struct phonet_routes routes;
|
2008-09-23 05:03:44 +02:00
|
|
|
};
|
|
|
|
|
netns: make struct pernet_operations::id unsigned int
Make struct pernet_operations::id unsigned.
There are 2 reasons to do so:
1)
This field is really an index into an zero based array and
thus is unsigned entity. Using negative value is out-of-bound
access by definition.
2)
On x86_64 unsigned 32-bit data which are mixed with pointers
via array indexing or offsets added or subtracted to pointers
are preffered to signed 32-bit data.
"int" being used as an array index needs to be sign-extended
to 64-bit before being used.
void f(long *p, int i)
{
g(p[i]);
}
roughly translates to
movsx rsi, esi
mov rdi, [rsi+...]
call g
MOVSX is 3 byte instruction which isn't necessary if the variable is
unsigned because x86_64 is zero extending by default.
Now, there is net_generic() function which, you guessed it right, uses
"int" as an array index:
static inline void *net_generic(const struct net *net, int id)
{
...
ptr = ng->ptr[id - 1];
...
}
And this function is used a lot, so those sign extensions add up.
Patch snipes ~1730 bytes on allyesconfig kernel (without all junk
messing with code generation):
add/remove: 0/0 grow/shrink: 70/598 up/down: 396/-2126 (-1730)
Unfortunately some functions actually grow bigger.
This is a semmingly random artefact of code generation with register
allocator being used differently. gcc decides that some variable
needs to live in new r8+ registers and every access now requires REX
prefix. Or it is shifted into r12, so [r12+0] addressing mode has to be
used which is longer than [r8]
However, overall balance is in negative direction:
add/remove: 0/0 grow/shrink: 70/598 up/down: 396/-2126 (-1730)
function old new delta
nfsd4_lock 3886 3959 +73
tipc_link_build_proto_msg 1096 1140 +44
mac80211_hwsim_new_radio 2776 2808 +32
tipc_mon_rcv 1032 1058 +26
svcauth_gss_legacy_init 1413 1429 +16
tipc_bcbase_select_primary 379 392 +13
nfsd4_exchange_id 1247 1260 +13
nfsd4_setclientid_confirm 782 793 +11
...
put_client_renew_locked 494 480 -14
ip_set_sockfn_get 730 716 -14
geneve_sock_add 829 813 -16
nfsd4_sequence_done 721 703 -18
nlmclnt_lookup_host 708 686 -22
nfsd4_lockt 1085 1063 -22
nfs_get_client 1077 1050 -27
tcf_bpf_init 1106 1076 -30
nfsd4_encode_fattr 5997 5930 -67
Total: Before=154856051, After=154854321, chg -0.00%
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2016-11-17 02:58:21 +01:00
|
|
|
static unsigned int phonet_net_id __read_mostly;
|
2009-01-23 04:00:30 +01:00
|
|
|
|
2010-04-26 05:41:00 +02:00
|
|
|
static struct phonet_net *phonet_pernet(struct net *net)
|
|
|
|
{
|
|
|
|
BUG_ON(!net);
|
|
|
|
|
|
|
|
return net_generic(net, phonet_net_id);
|
|
|
|
}
|
|
|
|
|
2009-01-23 04:00:30 +01:00
|
|
|
struct phonet_device_list *phonet_device_list(struct net *net)
|
|
|
|
{
|
2010-04-26 05:41:00 +02:00
|
|
|
struct phonet_net *pnn = phonet_pernet(net);
|
2009-01-23 04:00:30 +01:00
|
|
|
return &pnn->pndevs;
|
|
|
|
}
|
|
|
|
|
2008-09-23 05:03:44 +02:00
|
|
|
/* Allocate new Phonet device. */
|
|
|
|
static struct phonet_device *__phonet_device_alloc(struct net_device *dev)
|
|
|
|
{
|
2009-01-23 04:00:30 +01:00
|
|
|
struct phonet_device_list *pndevs = phonet_device_list(dev_net(dev));
|
2008-09-23 05:03:44 +02:00
|
|
|
struct phonet_device *pnd = kmalloc(sizeof(*pnd), GFP_ATOMIC);
|
|
|
|
if (pnd == NULL)
|
|
|
|
return NULL;
|
|
|
|
pnd->netdev = dev;
|
|
|
|
bitmap_zero(pnd->addrs, 64);
|
|
|
|
|
2009-11-18 19:08:26 +01:00
|
|
|
BUG_ON(!mutex_is_locked(&pndevs->lock));
|
|
|
|
list_add_rcu(&pnd->list, &pndevs->list);
|
2008-09-23 05:03:44 +02:00
|
|
|
return pnd;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct phonet_device *__phonet_get(struct net_device *dev)
|
|
|
|
{
|
2009-01-23 04:00:30 +01:00
|
|
|
struct phonet_device_list *pndevs = phonet_device_list(dev_net(dev));
|
2008-09-23 05:03:44 +02:00
|
|
|
struct phonet_device *pnd;
|
|
|
|
|
2009-11-18 19:08:26 +01:00
|
|
|
BUG_ON(!mutex_is_locked(&pndevs->lock));
|
2009-01-23 04:00:30 +01:00
|
|
|
list_for_each_entry(pnd, &pndevs->list, list) {
|
2008-09-23 05:03:44 +02:00
|
|
|
if (pnd->netdev == dev)
|
|
|
|
return pnd;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-11-18 19:08:26 +01:00
|
|
|
static struct phonet_device *__phonet_get_rcu(struct net_device *dev)
|
|
|
|
{
|
|
|
|
struct phonet_device_list *pndevs = phonet_device_list(dev_net(dev));
|
|
|
|
struct phonet_device *pnd;
|
|
|
|
|
|
|
|
list_for_each_entry_rcu(pnd, &pndevs->list, list) {
|
|
|
|
if (pnd->netdev == dev)
|
|
|
|
return pnd;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-06-24 03:07:45 +02:00
|
|
|
static void phonet_device_destroy(struct net_device *dev)
|
2008-09-23 05:03:44 +02:00
|
|
|
{
|
2009-06-24 03:07:45 +02:00
|
|
|
struct phonet_device_list *pndevs = phonet_device_list(dev_net(dev));
|
|
|
|
struct phonet_device *pnd;
|
|
|
|
|
|
|
|
ASSERT_RTNL();
|
|
|
|
|
2009-11-18 19:08:26 +01:00
|
|
|
mutex_lock(&pndevs->lock);
|
2009-06-24 03:07:45 +02:00
|
|
|
pnd = __phonet_get(dev);
|
|
|
|
if (pnd)
|
2009-11-18 19:08:26 +01:00
|
|
|
list_del_rcu(&pnd->list);
|
|
|
|
mutex_unlock(&pndevs->lock);
|
2009-06-24 03:07:45 +02:00
|
|
|
|
|
|
|
if (pnd) {
|
|
|
|
u8 addr;
|
|
|
|
|
2010-03-11 13:07:49 +01:00
|
|
|
for_each_set_bit(addr, pnd->addrs, 64)
|
2009-06-24 03:07:45 +02:00
|
|
|
phonet_address_notify(RTM_DELADDR, dev, addr);
|
|
|
|
kfree(pnd);
|
|
|
|
}
|
2008-09-23 05:03:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
struct net_device *phonet_device_get(struct net *net)
|
|
|
|
{
|
2009-01-23 04:00:30 +01:00
|
|
|
struct phonet_device_list *pndevs = phonet_device_list(net);
|
2008-09-23 05:03:44 +02:00
|
|
|
struct phonet_device *pnd;
|
2009-07-27 17:03:18 +02:00
|
|
|
struct net_device *dev = NULL;
|
2008-09-23 05:03:44 +02:00
|
|
|
|
2009-11-18 19:08:26 +01:00
|
|
|
rcu_read_lock();
|
|
|
|
list_for_each_entry_rcu(pnd, &pndevs->list, list) {
|
2008-09-23 05:03:44 +02:00
|
|
|
dev = pnd->netdev;
|
|
|
|
BUG_ON(!dev);
|
|
|
|
|
2009-01-23 04:00:30 +01:00
|
|
|
if ((dev->reg_state == NETREG_REGISTERED) &&
|
2008-09-23 05:03:44 +02:00
|
|
|
((pnd->netdev->flags & IFF_UP)) == IFF_UP)
|
|
|
|
break;
|
|
|
|
dev = NULL;
|
|
|
|
}
|
|
|
|
if (dev)
|
|
|
|
dev_hold(dev);
|
2009-11-18 19:08:26 +01:00
|
|
|
rcu_read_unlock();
|
2008-09-23 05:03:44 +02:00
|
|
|
return dev;
|
|
|
|
}
|
|
|
|
|
|
|
|
int phonet_address_add(struct net_device *dev, u8 addr)
|
|
|
|
{
|
2009-01-23 04:00:30 +01:00
|
|
|
struct phonet_device_list *pndevs = phonet_device_list(dev_net(dev));
|
2008-09-23 05:03:44 +02:00
|
|
|
struct phonet_device *pnd;
|
|
|
|
int err = 0;
|
|
|
|
|
2009-11-18 19:08:26 +01:00
|
|
|
mutex_lock(&pndevs->lock);
|
2008-09-23 05:03:44 +02:00
|
|
|
/* Find or create Phonet-specific device data */
|
|
|
|
pnd = __phonet_get(dev);
|
|
|
|
if (pnd == NULL)
|
|
|
|
pnd = __phonet_device_alloc(dev);
|
|
|
|
if (unlikely(pnd == NULL))
|
|
|
|
err = -ENOMEM;
|
|
|
|
else if (test_and_set_bit(addr >> 2, pnd->addrs))
|
|
|
|
err = -EEXIST;
|
2009-11-18 19:08:26 +01:00
|
|
|
mutex_unlock(&pndevs->lock);
|
2008-09-23 05:03:44 +02:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
int phonet_address_del(struct net_device *dev, u8 addr)
|
|
|
|
{
|
2009-01-23 04:00:30 +01:00
|
|
|
struct phonet_device_list *pndevs = phonet_device_list(dev_net(dev));
|
2008-09-23 05:03:44 +02:00
|
|
|
struct phonet_device *pnd;
|
|
|
|
int err = 0;
|
|
|
|
|
2009-11-18 19:08:26 +01:00
|
|
|
mutex_lock(&pndevs->lock);
|
2008-09-23 05:03:44 +02:00
|
|
|
pnd = __phonet_get(dev);
|
2009-11-18 19:08:26 +01:00
|
|
|
if (!pnd || !test_and_clear_bit(addr >> 2, pnd->addrs)) {
|
2008-09-23 05:03:44 +02:00
|
|
|
err = -EADDRNOTAVAIL;
|
2009-11-18 19:08:26 +01:00
|
|
|
pnd = NULL;
|
|
|
|
} else if (bitmap_empty(pnd->addrs, 64))
|
|
|
|
list_del_rcu(&pnd->list);
|
|
|
|
else
|
|
|
|
pnd = NULL;
|
|
|
|
mutex_unlock(&pndevs->lock);
|
|
|
|
|
2010-06-07 05:27:39 +02:00
|
|
|
if (pnd)
|
2011-03-18 05:09:03 +01:00
|
|
|
kfree_rcu(pnd, rcu);
|
2010-06-07 05:27:39 +02:00
|
|
|
|
2008-09-23 05:03:44 +02:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Gets a source address toward a destination, through a interface. */
|
2009-10-14 02:48:28 +02:00
|
|
|
u8 phonet_address_get(struct net_device *dev, u8 daddr)
|
2008-09-23 05:03:44 +02:00
|
|
|
{
|
|
|
|
struct phonet_device *pnd;
|
2009-10-14 02:48:28 +02:00
|
|
|
u8 saddr;
|
2008-09-23 05:03:44 +02:00
|
|
|
|
2009-11-18 19:08:26 +01:00
|
|
|
rcu_read_lock();
|
|
|
|
pnd = __phonet_get_rcu(dev);
|
2008-09-23 05:03:44 +02:00
|
|
|
if (pnd) {
|
|
|
|
BUG_ON(bitmap_empty(pnd->addrs, 64));
|
|
|
|
|
|
|
|
/* Use same source address as destination, if possible */
|
2009-10-14 02:48:28 +02:00
|
|
|
if (test_bit(daddr >> 2, pnd->addrs))
|
|
|
|
saddr = daddr;
|
|
|
|
else
|
|
|
|
saddr = find_first_bit(pnd->addrs, 64) << 2;
|
2008-09-23 05:03:44 +02:00
|
|
|
} else
|
2009-10-14 02:48:28 +02:00
|
|
|
saddr = PN_NO_ADDR;
|
2009-11-18 19:08:26 +01:00
|
|
|
rcu_read_unlock();
|
2009-10-14 02:48:28 +02:00
|
|
|
|
|
|
|
if (saddr == PN_NO_ADDR) {
|
|
|
|
/* Fallback to another device */
|
|
|
|
struct net_device *def_dev;
|
|
|
|
|
|
|
|
def_dev = phonet_device_get(dev_net(dev));
|
|
|
|
if (def_dev) {
|
|
|
|
if (def_dev != dev)
|
|
|
|
saddr = phonet_address_get(def_dev, daddr);
|
|
|
|
dev_put(def_dev);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return saddr;
|
2008-09-23 05:03:44 +02:00
|
|
|
}
|
|
|
|
|
2008-12-04 00:42:56 +01:00
|
|
|
int phonet_address_lookup(struct net *net, u8 addr)
|
2008-09-23 05:03:44 +02:00
|
|
|
{
|
2009-01-23 04:00:30 +01:00
|
|
|
struct phonet_device_list *pndevs = phonet_device_list(net);
|
2008-09-23 05:03:44 +02:00
|
|
|
struct phonet_device *pnd;
|
2009-01-23 04:00:30 +01:00
|
|
|
int err = -EADDRNOTAVAIL;
|
2008-09-23 05:03:44 +02:00
|
|
|
|
2009-11-18 19:08:26 +01:00
|
|
|
rcu_read_lock();
|
|
|
|
list_for_each_entry_rcu(pnd, &pndevs->list, list) {
|
2008-09-23 05:03:44 +02:00
|
|
|
/* Don't allow unregistering devices! */
|
|
|
|
if ((pnd->netdev->reg_state != NETREG_REGISTERED) ||
|
|
|
|
((pnd->netdev->flags & IFF_UP)) != IFF_UP)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (test_bit(addr >> 2, pnd->addrs)) {
|
2009-01-23 04:00:30 +01:00
|
|
|
err = 0;
|
|
|
|
goto found;
|
2008-09-23 05:03:44 +02:00
|
|
|
}
|
|
|
|
}
|
2009-01-23 04:00:30 +01:00
|
|
|
found:
|
2009-11-18 19:08:26 +01:00
|
|
|
rcu_read_unlock();
|
2009-01-23 04:00:30 +01:00
|
|
|
return err;
|
2008-09-23 05:03:44 +02:00
|
|
|
}
|
|
|
|
|
2009-09-09 02:00:05 +02:00
|
|
|
/* automatically configure a Phonet device, if supported */
|
|
|
|
static int phonet_device_autoconf(struct net_device *dev)
|
|
|
|
{
|
|
|
|
struct if_phonet_req req;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!dev->netdev_ops->ndo_do_ioctl)
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
|
|
|
ret = dev->netdev_ops->ndo_do_ioctl(dev, (struct ifreq *)&req,
|
|
|
|
SIOCPNGAUTOCONF);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
2009-09-14 05:10:27 +02:00
|
|
|
|
|
|
|
ASSERT_RTNL();
|
|
|
|
ret = phonet_address_add(dev, req.ifr_phonet_autoconf.device);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
phonet_address_notify(RTM_NEWADDR, dev,
|
|
|
|
req.ifr_phonet_autoconf.device);
|
|
|
|
return 0;
|
2009-09-09 02:00:05 +02:00
|
|
|
}
|
|
|
|
|
2009-10-14 02:48:29 +02:00
|
|
|
static void phonet_route_autodel(struct net_device *dev)
|
|
|
|
{
|
2010-04-26 05:41:00 +02:00
|
|
|
struct phonet_net *pnn = phonet_pernet(dev_net(dev));
|
2012-04-15 07:58:06 +02:00
|
|
|
unsigned int i;
|
2009-10-14 02:48:29 +02:00
|
|
|
DECLARE_BITMAP(deleted, 64);
|
|
|
|
|
|
|
|
/* Remove left-over Phonet routes */
|
|
|
|
bitmap_zero(deleted, 64);
|
2009-11-13 06:01:19 +01:00
|
|
|
mutex_lock(&pnn->routes.lock);
|
2009-10-14 02:48:29 +02:00
|
|
|
for (i = 0; i < 64; i++)
|
2014-10-06 20:15:20 +02:00
|
|
|
if (rcu_access_pointer(pnn->routes.table[i]) == dev) {
|
2011-08-01 18:19:00 +02:00
|
|
|
RCU_INIT_POINTER(pnn->routes.table[i], NULL);
|
2009-10-14 02:48:29 +02:00
|
|
|
set_bit(i, deleted);
|
|
|
|
}
|
2009-11-13 06:01:19 +01:00
|
|
|
mutex_unlock(&pnn->routes.lock);
|
|
|
|
|
|
|
|
if (bitmap_empty(deleted, 64))
|
|
|
|
return; /* short-circuit RCU */
|
|
|
|
synchronize_rcu();
|
2010-08-27 21:08:26 +02:00
|
|
|
for_each_set_bit(i, deleted, 64) {
|
2009-10-14 02:48:29 +02:00
|
|
|
rtm_phonet_notify(RTM_DELROUTE, dev, i);
|
2009-11-13 06:01:19 +01:00
|
|
|
dev_put(dev);
|
|
|
|
}
|
2009-10-14 02:48:29 +02:00
|
|
|
}
|
|
|
|
|
2008-09-23 05:03:44 +02:00
|
|
|
/* notify Phonet of device events */
|
|
|
|
static int phonet_device_notify(struct notifier_block *me, unsigned long what,
|
2013-05-28 03:30:21 +02:00
|
|
|
void *ptr)
|
2008-09-23 05:03:44 +02:00
|
|
|
{
|
2013-05-28 03:30:21 +02:00
|
|
|
struct net_device *dev = netdev_notifier_info_to_dev(ptr);
|
2008-09-23 05:03:44 +02:00
|
|
|
|
2009-09-09 02:00:05 +02:00
|
|
|
switch (what) {
|
|
|
|
case NETDEV_REGISTER:
|
|
|
|
if (dev->type == ARPHRD_PHONET)
|
|
|
|
phonet_device_autoconf(dev);
|
|
|
|
break;
|
|
|
|
case NETDEV_UNREGISTER:
|
2009-06-24 03:07:45 +02:00
|
|
|
phonet_device_destroy(dev);
|
2009-10-14 02:48:29 +02:00
|
|
|
phonet_route_autodel(dev);
|
2009-09-09 02:00:05 +02:00
|
|
|
break;
|
|
|
|
}
|
2008-09-23 05:03:44 +02:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct notifier_block phonet_device_notifier = {
|
|
|
|
.notifier_call = phonet_device_notify,
|
|
|
|
.priority = 0,
|
|
|
|
};
|
|
|
|
|
2009-01-23 04:00:30 +01:00
|
|
|
/* Per-namespace Phonet devices handling */
|
2010-01-17 04:35:32 +01:00
|
|
|
static int __net_init phonet_init_net(struct net *net)
|
2009-01-23 04:00:30 +01:00
|
|
|
{
|
2010-04-26 05:41:00 +02:00
|
|
|
struct phonet_net *pnn = phonet_pernet(net);
|
2009-01-23 04:00:30 +01:00
|
|
|
|
2018-04-10 19:42:55 +02:00
|
|
|
if (!proc_create_net("phonet", 0, net->proc_net, &pn_sock_seq_ops,
|
|
|
|
sizeof(struct seq_net_private)))
|
2009-07-21 03:57:57 +02:00
|
|
|
return -ENOMEM;
|
|
|
|
|
2009-01-23 04:00:30 +01:00
|
|
|
INIT_LIST_HEAD(&pnn->pndevs.list);
|
2009-11-18 19:08:26 +01:00
|
|
|
mutex_init(&pnn->pndevs.lock);
|
2009-11-13 06:01:19 +01:00
|
|
|
mutex_init(&pnn->routes.lock);
|
2009-01-23 04:00:30 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-01-17 04:35:32 +01:00
|
|
|
static void __net_exit phonet_exit_net(struct net *net)
|
2009-01-23 04:00:30 +01:00
|
|
|
{
|
2017-11-12 20:32:47 +01:00
|
|
|
struct phonet_net *pnn = phonet_pernet(net);
|
|
|
|
|
2013-02-18 02:34:56 +01:00
|
|
|
remove_proc_entry("phonet", net->proc_net);
|
2017-11-12 20:32:47 +01:00
|
|
|
WARN_ON_ONCE(!list_empty(&pnn->pndevs.list));
|
2009-01-23 04:00:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct pernet_operations phonet_net_ops = {
|
|
|
|
.init = phonet_init_net,
|
|
|
|
.exit = phonet_exit_net,
|
2009-11-29 16:46:12 +01:00
|
|
|
.id = &phonet_net_id,
|
|
|
|
.size = sizeof(struct phonet_net),
|
2009-01-23 04:00:30 +01:00
|
|
|
};
|
|
|
|
|
2008-09-23 05:03:44 +02:00
|
|
|
/* Initialize Phonet devices list */
|
2009-01-23 04:00:27 +01:00
|
|
|
int __init phonet_device_init(void)
|
2008-09-23 05:03:44 +02:00
|
|
|
{
|
2012-04-06 17:35:39 +02:00
|
|
|
int err = register_pernet_subsys(&phonet_net_ops);
|
2009-01-23 04:00:30 +01:00
|
|
|
if (err)
|
|
|
|
return err;
|
2009-01-23 04:00:28 +01:00
|
|
|
|
2018-04-10 19:42:55 +02:00
|
|
|
proc_create_net("pnresource", 0, init_net.proc_net, &pn_res_seq_ops,
|
|
|
|
sizeof(struct seq_net_private));
|
2008-09-23 05:03:44 +02:00
|
|
|
register_netdevice_notifier(&phonet_device_notifier);
|
2009-01-23 04:00:28 +01:00
|
|
|
err = phonet_netlink_register();
|
|
|
|
if (err)
|
|
|
|
phonet_device_exit();
|
|
|
|
return err;
|
2008-09-23 05:03:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void phonet_device_exit(void)
|
|
|
|
{
|
|
|
|
rtnl_unregister_all(PF_PHONET);
|
2009-01-23 04:00:29 +01:00
|
|
|
unregister_netdevice_notifier(&phonet_device_notifier);
|
2012-04-06 17:35:39 +02:00
|
|
|
unregister_pernet_subsys(&phonet_net_ops);
|
2013-02-18 02:34:56 +01:00
|
|
|
remove_proc_entry("pnresource", init_net.proc_net);
|
2008-09-23 05:03:44 +02:00
|
|
|
}
|
2009-10-14 02:48:28 +02:00
|
|
|
|
|
|
|
int phonet_route_add(struct net_device *dev, u8 daddr)
|
|
|
|
{
|
2010-04-26 05:41:00 +02:00
|
|
|
struct phonet_net *pnn = phonet_pernet(dev_net(dev));
|
2009-10-14 02:48:28 +02:00
|
|
|
struct phonet_routes *routes = &pnn->routes;
|
|
|
|
int err = -EEXIST;
|
|
|
|
|
|
|
|
daddr = daddr >> 2;
|
2009-11-13 06:01:19 +01:00
|
|
|
mutex_lock(&routes->lock);
|
2009-10-14 02:48:28 +02:00
|
|
|
if (routes->table[daddr] == NULL) {
|
2012-01-12 05:41:32 +01:00
|
|
|
rcu_assign_pointer(routes->table[daddr], dev);
|
2009-10-14 02:48:28 +02:00
|
|
|
dev_hold(dev);
|
|
|
|
err = 0;
|
|
|
|
}
|
2009-11-13 06:01:19 +01:00
|
|
|
mutex_unlock(&routes->lock);
|
2009-10-14 02:48:28 +02:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
int phonet_route_del(struct net_device *dev, u8 daddr)
|
|
|
|
{
|
2010-04-26 05:41:00 +02:00
|
|
|
struct phonet_net *pnn = phonet_pernet(dev_net(dev));
|
2009-10-14 02:48:28 +02:00
|
|
|
struct phonet_routes *routes = &pnn->routes;
|
|
|
|
|
|
|
|
daddr = daddr >> 2;
|
2009-11-13 06:01:19 +01:00
|
|
|
mutex_lock(&routes->lock);
|
2014-10-06 20:15:20 +02:00
|
|
|
if (rcu_access_pointer(routes->table[daddr]) == dev)
|
2011-08-01 18:19:00 +02:00
|
|
|
RCU_INIT_POINTER(routes->table[daddr], NULL);
|
2009-11-13 06:01:19 +01:00
|
|
|
else
|
|
|
|
dev = NULL;
|
|
|
|
mutex_unlock(&routes->lock);
|
|
|
|
|
|
|
|
if (!dev)
|
|
|
|
return -ENOENT;
|
|
|
|
synchronize_rcu();
|
|
|
|
dev_put(dev);
|
|
|
|
return 0;
|
2009-10-14 02:48:28 +02:00
|
|
|
}
|
|
|
|
|
2011-04-28 00:56:07 +02:00
|
|
|
struct net_device *phonet_route_get_rcu(struct net *net, u8 daddr)
|
2009-10-14 02:48:28 +02:00
|
|
|
{
|
2010-04-26 05:41:00 +02:00
|
|
|
struct phonet_net *pnn = phonet_pernet(net);
|
2009-10-14 02:48:28 +02:00
|
|
|
struct phonet_routes *routes = &pnn->routes;
|
|
|
|
struct net_device *dev;
|
|
|
|
|
|
|
|
daddr >>= 2;
|
2009-11-13 06:01:19 +01:00
|
|
|
dev = rcu_dereference(routes->table[daddr]);
|
2009-10-14 02:48:28 +02:00
|
|
|
return dev;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct net_device *phonet_route_output(struct net *net, u8 daddr)
|
|
|
|
{
|
2010-04-26 05:41:00 +02:00
|
|
|
struct phonet_net *pnn = phonet_pernet(net);
|
2009-10-14 02:48:28 +02:00
|
|
|
struct phonet_routes *routes = &pnn->routes;
|
|
|
|
struct net_device *dev;
|
|
|
|
|
2009-11-13 06:01:19 +01:00
|
|
|
daddr >>= 2;
|
|
|
|
rcu_read_lock();
|
|
|
|
dev = rcu_dereference(routes->table[daddr]);
|
2009-10-14 02:48:28 +02:00
|
|
|
if (dev)
|
|
|
|
dev_hold(dev);
|
2009-11-13 06:01:19 +01:00
|
|
|
rcu_read_unlock();
|
2009-10-14 02:48:28 +02:00
|
|
|
|
|
|
|
if (!dev)
|
|
|
|
dev = phonet_device_get(net); /* Default route */
|
|
|
|
return dev;
|
|
|
|
}
|