2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* NETLINK Kernel-user communication protocol.
|
|
|
|
*
|
2008-10-14 04:01:08 +02:00
|
|
|
* Authors: Alan Cox <alan@lxorguk.ukuu.org.uk>
|
2005-04-17 00:20:36 +02:00
|
|
|
* Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version
|
|
|
|
* 2 of the License, or (at your option) any later version.
|
2007-02-09 15:25:07 +01:00
|
|
|
*
|
2005-04-17 00:20:36 +02:00
|
|
|
* Tue Jun 26 14:36:48 MEST 2001 Herbert "herp" Rosmanith
|
|
|
|
* added netlink_proto_exit
|
|
|
|
* Tue Jan 22 18:32:44 BRST 2002 Arnaldo C. de Melo <acme@conectiva.com.br>
|
|
|
|
* use nlk_sk, as sk->protinfo is on a diet 8)
|
2005-08-10 04:40:55 +02:00
|
|
|
* Fri Jul 22 19:51:12 MEST 2005 Harald Welte <laforge@gnumonks.org>
|
|
|
|
* - inc module use count of module that owns
|
|
|
|
* the kernel socket in case userspace opens
|
|
|
|
* socket of same protocol
|
|
|
|
* - remove all module support, since netlink is
|
|
|
|
* mandatory if CONFIG_NET=y these days
|
2005-04-17 00:20:36 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
|
|
|
|
2006-01-11 21:17:47 +01:00
|
|
|
#include <linux/capability.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/signal.h>
|
|
|
|
#include <linux/sched.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/string.h>
|
|
|
|
#include <linux/stat.h>
|
|
|
|
#include <linux/socket.h>
|
|
|
|
#include <linux/un.h>
|
|
|
|
#include <linux/fcntl.h>
|
|
|
|
#include <linux/termios.h>
|
|
|
|
#include <linux/sockios.h>
|
|
|
|
#include <linux/net.h>
|
|
|
|
#include <linux/fs.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <asm/uaccess.h>
|
|
|
|
#include <linux/skbuff.h>
|
|
|
|
#include <linux/netdevice.h>
|
|
|
|
#include <linux/rtnetlink.h>
|
|
|
|
#include <linux/proc_fs.h>
|
|
|
|
#include <linux/seq_file.h>
|
|
|
|
#include <linux/notifier.h>
|
|
|
|
#include <linux/security.h>
|
|
|
|
#include <linux/jhash.h>
|
|
|
|
#include <linux/jiffies.h>
|
|
|
|
#include <linux/random.h>
|
|
|
|
#include <linux/bitops.h>
|
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <linux/types.h>
|
2005-04-30 08:07:04 +02:00
|
|
|
#include <linux/audit.h>
|
2007-04-20 23:14:21 +02:00
|
|
|
#include <linux/mutex.h>
|
2005-04-30 08:07:04 +02:00
|
|
|
|
2007-09-12 12:01:34 +02:00
|
|
|
#include <net/net_namespace.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <net/sock.h>
|
|
|
|
#include <net/scm.h>
|
2005-11-10 02:25:53 +01:00
|
|
|
#include <net/netlink.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-15 21:29:13 +02:00
|
|
|
#define NLGRPSZ(x) (ALIGN(x, sizeof(unsigned long) * 8) / 8)
|
2007-07-19 00:46:06 +02:00
|
|
|
#define NLGRPLONGS(x) (NLGRPSZ(x)/sizeof(unsigned long))
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
struct netlink_sock {
|
|
|
|
/* struct sock has to be the first member of netlink_sock */
|
|
|
|
struct sock sk;
|
|
|
|
u32 pid;
|
|
|
|
u32 dst_pid;
|
2005-08-15 04:27:50 +02:00
|
|
|
u32 dst_group;
|
2005-08-15 21:29:13 +02:00
|
|
|
u32 flags;
|
|
|
|
u32 subscriptions;
|
|
|
|
u32 ngroups;
|
|
|
|
unsigned long *groups;
|
2005-04-17 00:20:36 +02:00
|
|
|
unsigned long state;
|
|
|
|
wait_queue_head_t wait;
|
|
|
|
struct netlink_callback *cb;
|
2007-04-20 23:14:21 +02:00
|
|
|
struct mutex *cb_mutex;
|
|
|
|
struct mutex cb_def_mutex;
|
2007-10-11 06:15:29 +02:00
|
|
|
void (*netlink_rcv)(struct sk_buff *skb);
|
2005-08-15 04:27:13 +02:00
|
|
|
struct module *module;
|
2005-04-17 00:20:36 +02:00
|
|
|
};
|
|
|
|
|
2010-10-24 06:27:10 +02:00
|
|
|
struct listeners {
|
|
|
|
struct rcu_head rcu;
|
|
|
|
unsigned long masks[0];
|
2009-07-10 11:51:32 +02:00
|
|
|
};
|
|
|
|
|
2005-08-15 04:27:13 +02:00
|
|
|
#define NETLINK_KERNEL_SOCKET 0x1
|
2005-08-15 21:32:15 +02:00
|
|
|
#define NETLINK_RECV_PKTINFO 0x2
|
2009-02-18 02:40:43 +01:00
|
|
|
#define NETLINK_BROADCAST_SEND_ERROR 0x4
|
netlink: add NETLINK_NO_ENOBUFS socket flag
This patch adds the NETLINK_NO_ENOBUFS socket flag. This flag can
be used by unicast and broadcast listeners to avoid receiving
ENOBUFS errors.
Generally speaking, ENOBUFS errors are useful to notify two things
to the listener:
a) You may increase the receiver buffer size via setsockopt().
b) You have lost messages, you may be out of sync.
In some cases, ignoring ENOBUFS errors can be useful. For example:
a) nfnetlink_queue: this subsystem does not have any sort of resync
method and you can decide to ignore ENOBUFS once you have set a
given buffer size.
b) ctnetlink: you can use this together with the socket flag
NETLINK_BROADCAST_SEND_ERROR to stop getting ENOBUFS errors as
you do not need to resync (packets whose event are not delivered
are drop to provide reliable logging and state-synchronization).
Moreover, the use of NETLINK_NO_ENOBUFS also reduces a "go up, go down"
effect in terms of performance which is due to the netlink congestion
control when the listener cannot back off. The effect is the following:
1) throughput rate goes up and netlink messages are inserted in the
receiver buffer.
2) Then, netlink buffer fills and overruns (set on nlk->state bit 0).
3) While the listener empties the receiver buffer, netlink keeps
dropping messages. Thus, throughput goes dramatically down.
4) Then, once the listener has emptied the buffer (nlk->state
bit 0 is set off), goto step 1.
This effect is easy to trigger with netlink broadcast under heavy
load, and it is more noticeable when using a big receiver buffer.
You can find some results in [1] that show this problem.
[1] http://1984.lsi.us.es/linux/netlink/
This patch also includes the use of sk_drop to account the number of
netlink messages drop due to overrun. This value is shown in
/proc/net/netlink.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2009-03-25 00:37:55 +01:00
|
|
|
#define NETLINK_RECV_NO_ENOBUFS 0x8
|
2005-08-15 04:27:13 +02:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
static inline struct netlink_sock *nlk_sk(struct sock *sk)
|
|
|
|
{
|
2007-08-29 00:41:11 +02:00
|
|
|
return container_of(sk, struct netlink_sock, sk);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2007-10-11 06:14:32 +02:00
|
|
|
static inline int netlink_is_kernel(struct sock *sk)
|
|
|
|
{
|
|
|
|
return nlk_sk(sk)->flags & NETLINK_KERNEL_SOCKET;
|
|
|
|
}
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
struct nl_pid_hash {
|
|
|
|
struct hlist_head *table;
|
|
|
|
unsigned long rehash_time;
|
|
|
|
|
|
|
|
unsigned int mask;
|
|
|
|
unsigned int shift;
|
|
|
|
|
|
|
|
unsigned int entries;
|
|
|
|
unsigned int max_shift;
|
|
|
|
|
|
|
|
u32 rnd;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct netlink_table {
|
|
|
|
struct nl_pid_hash hash;
|
|
|
|
struct hlist_head mc_list;
|
2010-10-24 06:27:10 +02:00
|
|
|
struct listeners __rcu *listeners;
|
2005-04-17 00:20:36 +02:00
|
|
|
unsigned int nl_nonroot;
|
2005-08-15 21:29:13 +02:00
|
|
|
unsigned int groups;
|
2007-04-20 23:14:21 +02:00
|
|
|
struct mutex *cb_mutex;
|
2005-08-15 04:27:13 +02:00
|
|
|
struct module *module;
|
2005-08-15 04:31:36 +02:00
|
|
|
int registered;
|
2005-04-17 00:20:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static struct netlink_table *nl_table;
|
|
|
|
|
|
|
|
static DECLARE_WAIT_QUEUE_HEAD(nl_table_wait);
|
|
|
|
|
|
|
|
static int netlink_dump(struct sock *sk);
|
|
|
|
static void netlink_destroy_callback(struct netlink_callback *cb);
|
|
|
|
|
|
|
|
static DEFINE_RWLOCK(nl_table_lock);
|
|
|
|
static atomic_t nl_table_users = ATOMIC_INIT(0);
|
|
|
|
|
[PATCH] Notifier chain update: API changes
The kernel's implementation of notifier chains is unsafe. There is no
protection against entries being added to or removed from a chain while the
chain is in use. The issues were discussed in this thread:
http://marc.theaimsgroup.com/?l=linux-kernel&m=113018709002036&w=2
We noticed that notifier chains in the kernel fall into two basic usage
classes:
"Blocking" chains are always called from a process context
and the callout routines are allowed to sleep;
"Atomic" chains can be called from an atomic context and
the callout routines are not allowed to sleep.
We decided to codify this distinction and make it part of the API. Therefore
this set of patches introduces three new, parallel APIs: one for blocking
notifiers, one for atomic notifiers, and one for "raw" notifiers (which is
really just the old API under a new name). New kinds of data structures are
used for the heads of the chains, and new routines are defined for
registration, unregistration, and calling a chain. The three APIs are
explained in include/linux/notifier.h and their implementation is in
kernel/sys.c.
With atomic and blocking chains, the implementation guarantees that the chain
links will not be corrupted and that chain callers will not get messed up by
entries being added or removed. For raw chains the implementation provides no
guarantees at all; users of this API must provide their own protections. (The
idea was that situations may come up where the assumptions of the atomic and
blocking APIs are not appropriate, so it should be possible for users to
handle these things in their own way.)
There are some limitations, which should not be too hard to live with. For
atomic/blocking chains, registration and unregistration must always be done in
a process context since the chain is protected by a mutex/rwsem. Also, a
callout routine for a non-raw chain must not try to register or unregister
entries on its own chain. (This did happen in a couple of places and the code
had to be changed to avoid it.)
Since atomic chains may be called from within an NMI handler, they cannot use
spinlocks for synchronization. Instead we use RCU. The overhead falls almost
entirely in the unregister routine, which is okay since unregistration is much
less frequent that calling a chain.
Here is the list of chains that we adjusted and their classifications. None
of them use the raw API, so for the moment it is only a placeholder.
ATOMIC CHAINS
-------------
arch/i386/kernel/traps.c: i386die_chain
arch/ia64/kernel/traps.c: ia64die_chain
arch/powerpc/kernel/traps.c: powerpc_die_chain
arch/sparc64/kernel/traps.c: sparc64die_chain
arch/x86_64/kernel/traps.c: die_chain
drivers/char/ipmi/ipmi_si_intf.c: xaction_notifier_list
kernel/panic.c: panic_notifier_list
kernel/profile.c: task_free_notifier
net/bluetooth/hci_core.c: hci_notifier
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_chain
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_expect_chain
net/ipv6/addrconf.c: inet6addr_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_expect_chain
net/netlink/af_netlink.c: netlink_chain
BLOCKING CHAINS
---------------
arch/powerpc/platforms/pseries/reconfig.c: pSeries_reconfig_chain
arch/s390/kernel/process.c: idle_chain
arch/x86_64/kernel/process.c idle_notifier
drivers/base/memory.c: memory_chain
drivers/cpufreq/cpufreq.c cpufreq_policy_notifier_list
drivers/cpufreq/cpufreq.c cpufreq_transition_notifier_list
drivers/macintosh/adb.c: adb_client_list
drivers/macintosh/via-pmu.c sleep_notifier_list
drivers/macintosh/via-pmu68k.c sleep_notifier_list
drivers/macintosh/windfarm_core.c wf_client_list
drivers/usb/core/notify.c usb_notifier_list
drivers/video/fbmem.c fb_notifier_list
kernel/cpu.c cpu_chain
kernel/module.c module_notify_list
kernel/profile.c munmap_notifier
kernel/profile.c task_exit_notifier
kernel/sys.c reboot_notifier_list
net/core/dev.c netdev_chain
net/decnet/dn_dev.c: dnaddr_chain
net/ipv4/devinet.c: inetaddr_chain
It's possible that some of these classifications are wrong. If they are,
please let us know or submit a patch to fix them. Note that any chain that
gets called very frequently should be atomic, because the rwsem read-locking
used for blocking chains is very likely to incur cache misses on SMP systems.
(However, if the chain's callout routines may sleep then the chain cannot be
atomic.)
The patch set was written by Alan Stern and Chandra Seetharaman, incorporating
material written by Keith Owens and suggestions from Paul McKenney and Andrew
Morton.
[jes@sgi.com: restructure the notifier chain initialization macros]
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Chandra Seetharaman <sekharan@us.ibm.com>
Signed-off-by: Jes Sorensen <jes@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-03-27 11:16:30 +02:00
|
|
|
static ATOMIC_NOTIFIER_HEAD(netlink_chain);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-15 04:27:50 +02:00
|
|
|
static u32 netlink_group_mask(u32 group)
|
|
|
|
{
|
|
|
|
return group ? 1 << (group - 1) : 0;
|
|
|
|
}
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
static struct hlist_head *nl_pid_hashfn(struct nl_pid_hash *hash, u32 pid)
|
|
|
|
{
|
|
|
|
return &hash->table[jhash_1word(pid, hash->rnd) & hash->mask];
|
|
|
|
}
|
|
|
|
|
|
|
|
static void netlink_sock_destruct(struct sock *sk)
|
|
|
|
{
|
2007-05-03 12:17:14 +02:00
|
|
|
struct netlink_sock *nlk = nlk_sk(sk);
|
|
|
|
|
|
|
|
if (nlk->cb) {
|
|
|
|
if (nlk->cb->done)
|
|
|
|
nlk->cb->done(nlk->cb);
|
|
|
|
netlink_destroy_callback(nlk->cb);
|
|
|
|
}
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
skb_queue_purge(&sk->sk_receive_queue);
|
|
|
|
|
|
|
|
if (!sock_flag(sk, SOCK_DEAD)) {
|
2007-12-04 09:19:38 +01:00
|
|
|
printk(KERN_ERR "Freeing alive netlink socket %p\n", sk);
|
2005-04-17 00:20:36 +02:00
|
|
|
return;
|
|
|
|
}
|
2008-07-26 06:43:18 +02:00
|
|
|
|
|
|
|
WARN_ON(atomic_read(&sk->sk_rmem_alloc));
|
|
|
|
WARN_ON(atomic_read(&sk->sk_wmem_alloc));
|
|
|
|
WARN_ON(nlk_sk(sk)->groups);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2007-12-04 09:19:38 +01:00
|
|
|
/* This lock without WQ_FLAG_EXCLUSIVE is good on UP and it is _very_ bad on
|
|
|
|
* SMP. Look, when several writers sleep and reader wakes them up, all but one
|
2005-04-17 00:20:36 +02:00
|
|
|
* immediately hit write lock and grab all the cpus. Exclusive sleep solves
|
|
|
|
* this, _but_ remember, it adds useless work on UP machines.
|
|
|
|
*/
|
|
|
|
|
2009-09-12 05:03:15 +02:00
|
|
|
void netlink_table_grab(void)
|
2008-01-02 06:58:02 +01:00
|
|
|
__acquires(nl_table_lock)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2009-09-12 05:03:15 +02:00
|
|
|
might_sleep();
|
|
|
|
|
2006-07-03 09:24:07 +02:00
|
|
|
write_lock_irq(&nl_table_lock);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
if (atomic_read(&nl_table_users)) {
|
|
|
|
DECLARE_WAITQUEUE(wait, current);
|
|
|
|
|
|
|
|
add_wait_queue_exclusive(&nl_table_wait, &wait);
|
2007-12-04 09:19:38 +01:00
|
|
|
for (;;) {
|
2005-04-17 00:20:36 +02:00
|
|
|
set_current_state(TASK_UNINTERRUPTIBLE);
|
|
|
|
if (atomic_read(&nl_table_users) == 0)
|
|
|
|
break;
|
2006-07-03 09:24:07 +02:00
|
|
|
write_unlock_irq(&nl_table_lock);
|
2005-04-17 00:20:36 +02:00
|
|
|
schedule();
|
2006-07-03 09:24:07 +02:00
|
|
|
write_lock_irq(&nl_table_lock);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
__set_current_state(TASK_RUNNING);
|
|
|
|
remove_wait_queue(&nl_table_wait, &wait);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-12 05:03:15 +02:00
|
|
|
void netlink_table_ungrab(void)
|
2008-01-02 06:58:02 +01:00
|
|
|
__releases(nl_table_lock)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2006-07-03 09:24:07 +02:00
|
|
|
write_unlock_irq(&nl_table_lock);
|
2005-04-17 00:20:36 +02:00
|
|
|
wake_up(&nl_table_wait);
|
|
|
|
}
|
|
|
|
|
2007-12-04 09:19:38 +01:00
|
|
|
static inline void
|
2005-04-17 00:20:36 +02:00
|
|
|
netlink_lock_table(void)
|
|
|
|
{
|
|
|
|
/* read_lock() synchronizes us to netlink_table_grab */
|
|
|
|
|
|
|
|
read_lock(&nl_table_lock);
|
|
|
|
atomic_inc(&nl_table_users);
|
|
|
|
read_unlock(&nl_table_lock);
|
|
|
|
}
|
|
|
|
|
2007-12-04 09:19:38 +01:00
|
|
|
static inline void
|
2005-04-17 00:20:36 +02:00
|
|
|
netlink_unlock_table(void)
|
|
|
|
{
|
|
|
|
if (atomic_dec_and_test(&nl_table_users))
|
|
|
|
wake_up(&nl_table_wait);
|
|
|
|
}
|
|
|
|
|
2007-12-04 09:19:38 +01:00
|
|
|
static inline struct sock *netlink_lookup(struct net *net, int protocol,
|
|
|
|
u32 pid)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
struct nl_pid_hash *hash = &nl_table[protocol].hash;
|
|
|
|
struct hlist_head *head;
|
|
|
|
struct sock *sk;
|
|
|
|
struct hlist_node *node;
|
|
|
|
|
|
|
|
read_lock(&nl_table_lock);
|
|
|
|
head = nl_pid_hashfn(hash, pid);
|
|
|
|
sk_for_each(sk, node, head) {
|
2008-03-25 19:57:35 +01:00
|
|
|
if (net_eq(sock_net(sk), net) && (nlk_sk(sk)->pid == pid)) {
|
2005-04-17 00:20:36 +02:00
|
|
|
sock_hold(sk);
|
|
|
|
goto found;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sk = NULL;
|
|
|
|
found:
|
|
|
|
read_unlock(&nl_table_lock);
|
|
|
|
return sk;
|
|
|
|
}
|
|
|
|
|
2007-12-11 11:09:47 +01:00
|
|
|
static inline struct hlist_head *nl_pid_hash_zalloc(size_t size)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
if (size <= PAGE_SIZE)
|
2007-12-11 11:09:47 +01:00
|
|
|
return kzalloc(size, GFP_ATOMIC);
|
2005-04-17 00:20:36 +02:00
|
|
|
else
|
|
|
|
return (struct hlist_head *)
|
2007-12-11 11:09:47 +01:00
|
|
|
__get_free_pages(GFP_ATOMIC | __GFP_ZERO,
|
|
|
|
get_order(size));
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void nl_pid_hash_free(struct hlist_head *table, size_t size)
|
|
|
|
{
|
|
|
|
if (size <= PAGE_SIZE)
|
|
|
|
kfree(table);
|
|
|
|
else
|
|
|
|
free_pages((unsigned long)table, get_order(size));
|
|
|
|
}
|
|
|
|
|
|
|
|
static int nl_pid_hash_rehash(struct nl_pid_hash *hash, int grow)
|
|
|
|
{
|
|
|
|
unsigned int omask, mask, shift;
|
|
|
|
size_t osize, size;
|
|
|
|
struct hlist_head *otable, *table;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
omask = mask = hash->mask;
|
|
|
|
osize = size = (mask + 1) * sizeof(*table);
|
|
|
|
shift = hash->shift;
|
|
|
|
|
|
|
|
if (grow) {
|
|
|
|
if (++shift > hash->max_shift)
|
|
|
|
return 0;
|
|
|
|
mask = mask * 2 + 1;
|
|
|
|
size *= 2;
|
|
|
|
}
|
|
|
|
|
2007-12-11 11:09:47 +01:00
|
|
|
table = nl_pid_hash_zalloc(size);
|
2005-04-17 00:20:36 +02:00
|
|
|
if (!table)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
otable = hash->table;
|
|
|
|
hash->table = table;
|
|
|
|
hash->mask = mask;
|
|
|
|
hash->shift = shift;
|
|
|
|
get_random_bytes(&hash->rnd, sizeof(hash->rnd));
|
|
|
|
|
|
|
|
for (i = 0; i <= omask; i++) {
|
|
|
|
struct sock *sk;
|
|
|
|
struct hlist_node *node, *tmp;
|
|
|
|
|
|
|
|
sk_for_each_safe(sk, node, tmp, &otable[i])
|
|
|
|
__sk_add_node(sk, nl_pid_hashfn(hash, nlk_sk(sk)->pid));
|
|
|
|
}
|
|
|
|
|
|
|
|
nl_pid_hash_free(otable, osize);
|
|
|
|
hash->rehash_time = jiffies + 10 * 60 * HZ;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int nl_pid_hash_dilute(struct nl_pid_hash *hash, int len)
|
|
|
|
{
|
|
|
|
int avg = hash->entries >> hash->shift;
|
|
|
|
|
|
|
|
if (unlikely(avg > 1) && nl_pid_hash_rehash(hash, 1))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (unlikely(len > avg) && time_after(jiffies, hash->rehash_time)) {
|
|
|
|
nl_pid_hash_rehash(hash, 0);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-12-22 21:49:22 +01:00
|
|
|
static const struct proto_ops netlink_ops;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-03-21 03:52:01 +01:00
|
|
|
static void
|
|
|
|
netlink_update_listeners(struct sock *sk)
|
|
|
|
{
|
|
|
|
struct netlink_table *tbl = &nl_table[sk->sk_protocol];
|
|
|
|
struct hlist_node *node;
|
|
|
|
unsigned long mask;
|
|
|
|
unsigned int i;
|
|
|
|
|
2007-07-19 00:46:06 +02:00
|
|
|
for (i = 0; i < NLGRPLONGS(tbl->groups); i++) {
|
2006-03-21 03:52:01 +01:00
|
|
|
mask = 0;
|
2007-07-19 00:46:06 +02:00
|
|
|
sk_for_each_bound(sk, node, &tbl->mc_list) {
|
|
|
|
if (i < NLGRPLONGS(nlk_sk(sk)->ngroups))
|
|
|
|
mask |= nlk_sk(sk)->groups[i];
|
|
|
|
}
|
2010-10-24 06:27:10 +02:00
|
|
|
tbl->listeners->masks[i] = mask;
|
2006-03-21 03:52:01 +01:00
|
|
|
}
|
|
|
|
/* this function is only called with the netlink table "grabbed", which
|
|
|
|
* makes sure updates are visible before bind or setsockopt return. */
|
|
|
|
}
|
|
|
|
|
2007-09-12 13:05:38 +02:00
|
|
|
static int netlink_insert(struct sock *sk, struct net *net, u32 pid)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash;
|
|
|
|
struct hlist_head *head;
|
|
|
|
int err = -EADDRINUSE;
|
|
|
|
struct sock *osk;
|
|
|
|
struct hlist_node *node;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
netlink_table_grab();
|
|
|
|
head = nl_pid_hashfn(hash, pid);
|
|
|
|
len = 0;
|
|
|
|
sk_for_each(osk, node, head) {
|
2008-03-25 19:57:35 +01:00
|
|
|
if (net_eq(sock_net(osk), net) && (nlk_sk(osk)->pid == pid))
|
2005-04-17 00:20:36 +02:00
|
|
|
break;
|
|
|
|
len++;
|
|
|
|
}
|
|
|
|
if (node)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
err = -EBUSY;
|
|
|
|
if (nlk_sk(sk)->pid)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
err = -ENOMEM;
|
|
|
|
if (BITS_PER_LONG > 32 && unlikely(hash->entries >= UINT_MAX))
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
if (len && nl_pid_hash_dilute(hash, len))
|
|
|
|
head = nl_pid_hashfn(hash, pid);
|
|
|
|
hash->entries++;
|
|
|
|
nlk_sk(sk)->pid = pid;
|
|
|
|
sk_add_node(sk, head);
|
|
|
|
err = 0;
|
|
|
|
|
|
|
|
err:
|
|
|
|
netlink_table_ungrab();
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void netlink_remove(struct sock *sk)
|
|
|
|
{
|
|
|
|
netlink_table_grab();
|
[NETLINK]: Fix two socket hashing bugs.
1) netlink_release() should only decrement the hash entry
count if the socket was actually hashed.
This was causing hash->entries to underflow, which
resulting in all kinds of troubles.
On 64-bit systems, this would cause the following
conditional to erroneously trigger:
err = -ENOMEM;
if (BITS_PER_LONG > 32 && unlikely(hash->entries >= UINT_MAX))
goto err;
2) netlink_autobind() needs to propagate the error return from
netlink_insert(). Otherwise, callers will not see the error
as they should and thus try to operate on a socket with a zero pid,
which is very bad.
However, it should not propagate -EBUSY. If two threads race
to autobind the socket, that is fine. This is consistent with the
autobind behavior in other protocols.
So bug #1 above, combined with this one, resulted in hangs
on netlink_sendmsg() calls to the rtnetlink socket. We'd try
to do the user sendmsg() with the socket's pid set to zero,
later we do a socket lookup using that pid (via the value we
stashed away in NETLINK_CB(skb).pid), but that won't give us the
user socket, it will give us the rtnetlink socket. So when we
try to wake up the receive queue, we dive back into rtnetlink_rcv()
which tries to recursively take the rtnetlink semaphore.
Thanks to Jakub Jelink for providing backtraces. Also, thanks to
Herbert Xu for supplying debugging patches to help track this down,
and also finding a mistake in an earlier version of this fix.
Signed-off-by: David S. Miller <davem@davemloft.net>
2005-06-27 00:31:51 +02:00
|
|
|
if (sk_del_node_init(sk))
|
|
|
|
nl_table[sk->sk_protocol].hash.entries--;
|
2005-08-15 21:29:13 +02:00
|
|
|
if (nlk_sk(sk)->subscriptions)
|
2005-04-17 00:20:36 +02:00
|
|
|
__sk_del_bind_node(sk);
|
|
|
|
netlink_table_ungrab();
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct proto netlink_proto = {
|
|
|
|
.name = "NETLINK",
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
.obj_size = sizeof(struct netlink_sock),
|
|
|
|
};
|
|
|
|
|
2007-10-09 08:24:22 +02:00
|
|
|
static int __netlink_create(struct net *net, struct socket *sock,
|
|
|
|
struct mutex *cb_mutex, int protocol)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
struct sock *sk;
|
|
|
|
struct netlink_sock *nlk;
|
2005-08-15 04:31:36 +02:00
|
|
|
|
|
|
|
sock->ops = &netlink_ops;
|
|
|
|
|
2007-11-01 08:39:31 +01:00
|
|
|
sk = sk_alloc(net, PF_NETLINK, GFP_KERNEL, &netlink_proto);
|
2005-08-15 04:31:36 +02:00
|
|
|
if (!sk)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
sock_init_data(sock, sk);
|
|
|
|
|
|
|
|
nlk = nlk_sk(sk);
|
2007-04-25 23:01:17 +02:00
|
|
|
if (cb_mutex)
|
|
|
|
nlk->cb_mutex = cb_mutex;
|
|
|
|
else {
|
|
|
|
nlk->cb_mutex = &nlk->cb_def_mutex;
|
|
|
|
mutex_init(nlk->cb_mutex);
|
|
|
|
}
|
2005-08-15 04:31:36 +02:00
|
|
|
init_waitqueue_head(&nlk->wait);
|
|
|
|
|
|
|
|
sk->sk_destruct = netlink_sock_destruct;
|
|
|
|
sk->sk_protocol = protocol;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-11-06 07:18:14 +01:00
|
|
|
static int netlink_create(struct net *net, struct socket *sock, int protocol,
|
|
|
|
int kern)
|
2005-08-15 04:31:36 +02:00
|
|
|
{
|
|
|
|
struct module *module = NULL;
|
2007-04-20 23:14:21 +02:00
|
|
|
struct mutex *cb_mutex;
|
2005-08-15 21:29:13 +02:00
|
|
|
struct netlink_sock *nlk;
|
2005-08-15 04:31:36 +02:00
|
|
|
int err = 0;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
sock->state = SS_UNCONNECTED;
|
|
|
|
|
|
|
|
if (sock->type != SOCK_RAW && sock->type != SOCK_DGRAM)
|
|
|
|
return -ESOCKTNOSUPPORT;
|
|
|
|
|
2007-12-04 09:19:38 +01:00
|
|
|
if (protocol < 0 || protocol >= MAX_LINKS)
|
2005-04-17 00:20:36 +02:00
|
|
|
return -EPROTONOSUPPORT;
|
|
|
|
|
2005-08-15 04:27:13 +02:00
|
|
|
netlink_lock_table();
|
2008-10-17 00:24:51 +02:00
|
|
|
#ifdef CONFIG_MODULES
|
2005-08-15 04:31:36 +02:00
|
|
|
if (!nl_table[protocol].registered) {
|
2005-08-15 04:27:13 +02:00
|
|
|
netlink_unlock_table();
|
2005-08-10 04:40:55 +02:00
|
|
|
request_module("net-pf-%d-proto-%d", PF_NETLINK, protocol);
|
2005-08-15 04:27:13 +02:00
|
|
|
netlink_lock_table();
|
2005-08-10 04:40:55 +02:00
|
|
|
}
|
2005-08-15 04:31:36 +02:00
|
|
|
#endif
|
|
|
|
if (nl_table[protocol].registered &&
|
|
|
|
try_module_get(nl_table[protocol].module))
|
|
|
|
module = nl_table[protocol].module;
|
2010-01-30 11:05:05 +01:00
|
|
|
else
|
|
|
|
err = -EPROTONOSUPPORT;
|
2007-04-20 23:14:21 +02:00
|
|
|
cb_mutex = nl_table[protocol].cb_mutex;
|
2005-08-15 04:27:13 +02:00
|
|
|
netlink_unlock_table();
|
2005-08-10 04:40:55 +02:00
|
|
|
|
2010-01-30 11:05:05 +01:00
|
|
|
if (err < 0)
|
|
|
|
goto out;
|
|
|
|
|
2007-12-04 09:19:38 +01:00
|
|
|
err = __netlink_create(net, sock, cb_mutex, protocol);
|
|
|
|
if (err < 0)
|
2005-08-15 21:29:13 +02:00
|
|
|
goto out_module;
|
|
|
|
|
2008-11-24 02:34:03 +01:00
|
|
|
local_bh_disable();
|
2008-11-24 00:48:22 +01:00
|
|
|
sock_prot_inuse_add(net, &netlink_proto, 1);
|
2008-11-24 02:34:03 +01:00
|
|
|
local_bh_enable();
|
|
|
|
|
2005-08-15 21:29:13 +02:00
|
|
|
nlk = nlk_sk(sock->sk);
|
|
|
|
nlk->module = module;
|
2005-08-15 04:31:36 +02:00
|
|
|
out:
|
|
|
|
return err;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-15 04:31:36 +02:00
|
|
|
out_module:
|
|
|
|
module_put(module);
|
|
|
|
goto out;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static int netlink_release(struct socket *sock)
|
|
|
|
{
|
|
|
|
struct sock *sk = sock->sk;
|
|
|
|
struct netlink_sock *nlk;
|
|
|
|
|
|
|
|
if (!sk)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
netlink_remove(sk);
|
2007-04-19 02:05:58 +02:00
|
|
|
sock_orphan(sk);
|
2005-04-17 00:20:36 +02:00
|
|
|
nlk = nlk_sk(sk);
|
|
|
|
|
2007-05-03 12:17:14 +02:00
|
|
|
/*
|
|
|
|
* OK. Socket is unlinked, any packets that arrive now
|
|
|
|
* will be purged.
|
|
|
|
*/
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
sock->sk = NULL;
|
|
|
|
wake_up_interruptible_all(&nlk->wait);
|
|
|
|
|
|
|
|
skb_queue_purge(&sk->sk_write_queue);
|
|
|
|
|
2009-11-16 13:05:34 +01:00
|
|
|
if (nlk->pid) {
|
2005-04-17 00:20:36 +02:00
|
|
|
struct netlink_notify n = {
|
2008-03-25 18:26:21 +01:00
|
|
|
.net = sock_net(sk),
|
2005-04-17 00:20:36 +02:00
|
|
|
.protocol = sk->sk_protocol,
|
|
|
|
.pid = nlk->pid,
|
|
|
|
};
|
[PATCH] Notifier chain update: API changes
The kernel's implementation of notifier chains is unsafe. There is no
protection against entries being added to or removed from a chain while the
chain is in use. The issues were discussed in this thread:
http://marc.theaimsgroup.com/?l=linux-kernel&m=113018709002036&w=2
We noticed that notifier chains in the kernel fall into two basic usage
classes:
"Blocking" chains are always called from a process context
and the callout routines are allowed to sleep;
"Atomic" chains can be called from an atomic context and
the callout routines are not allowed to sleep.
We decided to codify this distinction and make it part of the API. Therefore
this set of patches introduces three new, parallel APIs: one for blocking
notifiers, one for atomic notifiers, and one for "raw" notifiers (which is
really just the old API under a new name). New kinds of data structures are
used for the heads of the chains, and new routines are defined for
registration, unregistration, and calling a chain. The three APIs are
explained in include/linux/notifier.h and their implementation is in
kernel/sys.c.
With atomic and blocking chains, the implementation guarantees that the chain
links will not be corrupted and that chain callers will not get messed up by
entries being added or removed. For raw chains the implementation provides no
guarantees at all; users of this API must provide their own protections. (The
idea was that situations may come up where the assumptions of the atomic and
blocking APIs are not appropriate, so it should be possible for users to
handle these things in their own way.)
There are some limitations, which should not be too hard to live with. For
atomic/blocking chains, registration and unregistration must always be done in
a process context since the chain is protected by a mutex/rwsem. Also, a
callout routine for a non-raw chain must not try to register or unregister
entries on its own chain. (This did happen in a couple of places and the code
had to be changed to avoid it.)
Since atomic chains may be called from within an NMI handler, they cannot use
spinlocks for synchronization. Instead we use RCU. The overhead falls almost
entirely in the unregister routine, which is okay since unregistration is much
less frequent that calling a chain.
Here is the list of chains that we adjusted and their classifications. None
of them use the raw API, so for the moment it is only a placeholder.
ATOMIC CHAINS
-------------
arch/i386/kernel/traps.c: i386die_chain
arch/ia64/kernel/traps.c: ia64die_chain
arch/powerpc/kernel/traps.c: powerpc_die_chain
arch/sparc64/kernel/traps.c: sparc64die_chain
arch/x86_64/kernel/traps.c: die_chain
drivers/char/ipmi/ipmi_si_intf.c: xaction_notifier_list
kernel/panic.c: panic_notifier_list
kernel/profile.c: task_free_notifier
net/bluetooth/hci_core.c: hci_notifier
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_chain
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_expect_chain
net/ipv6/addrconf.c: inet6addr_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_expect_chain
net/netlink/af_netlink.c: netlink_chain
BLOCKING CHAINS
---------------
arch/powerpc/platforms/pseries/reconfig.c: pSeries_reconfig_chain
arch/s390/kernel/process.c: idle_chain
arch/x86_64/kernel/process.c idle_notifier
drivers/base/memory.c: memory_chain
drivers/cpufreq/cpufreq.c cpufreq_policy_notifier_list
drivers/cpufreq/cpufreq.c cpufreq_transition_notifier_list
drivers/macintosh/adb.c: adb_client_list
drivers/macintosh/via-pmu.c sleep_notifier_list
drivers/macintosh/via-pmu68k.c sleep_notifier_list
drivers/macintosh/windfarm_core.c wf_client_list
drivers/usb/core/notify.c usb_notifier_list
drivers/video/fbmem.c fb_notifier_list
kernel/cpu.c cpu_chain
kernel/module.c module_notify_list
kernel/profile.c munmap_notifier
kernel/profile.c task_exit_notifier
kernel/sys.c reboot_notifier_list
net/core/dev.c netdev_chain
net/decnet/dn_dev.c: dnaddr_chain
net/ipv4/devinet.c: inetaddr_chain
It's possible that some of these classifications are wrong. If they are,
please let us know or submit a patch to fix them. Note that any chain that
gets called very frequently should be atomic, because the rwsem read-locking
used for blocking chains is very likely to incur cache misses on SMP systems.
(However, if the chain's callout routines may sleep then the chain cannot be
atomic.)
The patch set was written by Alan Stern and Chandra Seetharaman, incorporating
material written by Keith Owens and suggestions from Paul McKenney and Andrew
Morton.
[jes@sgi.com: restructure the notifier chain initialization macros]
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Chandra Seetharaman <sekharan@us.ibm.com>
Signed-off-by: Jes Sorensen <jes@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-03-27 11:16:30 +02:00
|
|
|
atomic_notifier_call_chain(&netlink_chain,
|
|
|
|
NETLINK_URELEASE, &n);
|
2007-02-09 15:25:07 +01:00
|
|
|
}
|
2005-08-10 04:40:55 +02:00
|
|
|
|
2007-01-03 00:24:30 +01:00
|
|
|
module_put(nlk->module);
|
2005-08-10 04:40:55 +02:00
|
|
|
|
2006-03-21 03:52:01 +01:00
|
|
|
netlink_table_grab();
|
2007-10-11 06:14:32 +02:00
|
|
|
if (netlink_is_kernel(sk)) {
|
2008-01-19 08:53:31 +01:00
|
|
|
BUG_ON(nl_table[sk->sk_protocol].registered == 0);
|
|
|
|
if (--nl_table[sk->sk_protocol].registered == 0) {
|
|
|
|
kfree(nl_table[sk->sk_protocol].listeners);
|
|
|
|
nl_table[sk->sk_protocol].module = NULL;
|
|
|
|
nl_table[sk->sk_protocol].registered = 0;
|
|
|
|
}
|
2006-03-21 03:52:01 +01:00
|
|
|
} else if (nlk->subscriptions)
|
|
|
|
netlink_update_listeners(sk);
|
|
|
|
netlink_table_ungrab();
|
2005-08-15 04:27:13 +02:00
|
|
|
|
2005-08-15 21:29:13 +02:00
|
|
|
kfree(nlk->groups);
|
|
|
|
nlk->groups = NULL;
|
|
|
|
|
2008-11-24 23:05:22 +01:00
|
|
|
local_bh_disable();
|
2008-11-24 00:48:22 +01:00
|
|
|
sock_prot_inuse_add(sock_net(sk), &netlink_proto, -1);
|
2008-11-24 23:05:22 +01:00
|
|
|
local_bh_enable();
|
2005-04-17 00:20:36 +02:00
|
|
|
sock_put(sk);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int netlink_autobind(struct socket *sock)
|
|
|
|
{
|
|
|
|
struct sock *sk = sock->sk;
|
2008-03-25 18:26:21 +01:00
|
|
|
struct net *net = sock_net(sk);
|
2005-04-17 00:20:36 +02:00
|
|
|
struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash;
|
|
|
|
struct hlist_head *head;
|
|
|
|
struct sock *osk;
|
|
|
|
struct hlist_node *node;
|
2010-03-19 16:38:50 +01:00
|
|
|
s32 pid = task_tgid_vnr(current);
|
2005-04-17 00:20:36 +02:00
|
|
|
int err;
|
|
|
|
static s32 rover = -4097;
|
|
|
|
|
|
|
|
retry:
|
|
|
|
cond_resched();
|
|
|
|
netlink_table_grab();
|
|
|
|
head = nl_pid_hashfn(hash, pid);
|
|
|
|
sk_for_each(osk, node, head) {
|
2008-03-25 19:57:35 +01:00
|
|
|
if (!net_eq(sock_net(osk), net))
|
2007-09-12 13:05:38 +02:00
|
|
|
continue;
|
2005-04-17 00:20:36 +02:00
|
|
|
if (nlk_sk(osk)->pid == pid) {
|
|
|
|
/* Bind collision, search negative pid values. */
|
|
|
|
pid = rover--;
|
|
|
|
if (rover > -4097)
|
|
|
|
rover = -4097;
|
|
|
|
netlink_table_ungrab();
|
|
|
|
goto retry;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
netlink_table_ungrab();
|
|
|
|
|
2007-09-12 13:05:38 +02:00
|
|
|
err = netlink_insert(sk, net, pid);
|
2005-04-17 00:20:36 +02:00
|
|
|
if (err == -EADDRINUSE)
|
|
|
|
goto retry;
|
[NETLINK]: Fix two socket hashing bugs.
1) netlink_release() should only decrement the hash entry
count if the socket was actually hashed.
This was causing hash->entries to underflow, which
resulting in all kinds of troubles.
On 64-bit systems, this would cause the following
conditional to erroneously trigger:
err = -ENOMEM;
if (BITS_PER_LONG > 32 && unlikely(hash->entries >= UINT_MAX))
goto err;
2) netlink_autobind() needs to propagate the error return from
netlink_insert(). Otherwise, callers will not see the error
as they should and thus try to operate on a socket with a zero pid,
which is very bad.
However, it should not propagate -EBUSY. If two threads race
to autobind the socket, that is fine. This is consistent with the
autobind behavior in other protocols.
So bug #1 above, combined with this one, resulted in hangs
on netlink_sendmsg() calls to the rtnetlink socket. We'd try
to do the user sendmsg() with the socket's pid set to zero,
later we do a socket lookup using that pid (via the value we
stashed away in NETLINK_CB(skb).pid), but that won't give us the
user socket, it will give us the rtnetlink socket. So when we
try to wake up the receive queue, we dive back into rtnetlink_rcv()
which tries to recursively take the rtnetlink semaphore.
Thanks to Jakub Jelink for providing backtraces. Also, thanks to
Herbert Xu for supplying debugging patches to help track this down,
and also finding a mistake in an earlier version of this fix.
Signed-off-by: David S. Miller <davem@davemloft.net>
2005-06-27 00:31:51 +02:00
|
|
|
|
|
|
|
/* If 2 threads race to autobind, that is fine. */
|
|
|
|
if (err == -EBUSY)
|
|
|
|
err = 0;
|
|
|
|
|
|
|
|
return err;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2007-02-09 15:25:07 +01:00
|
|
|
static inline int netlink_capable(struct socket *sock, unsigned int flag)
|
|
|
|
{
|
2005-04-17 00:20:36 +02:00
|
|
|
return (nl_table[sock->sk->sk_protocol].nl_nonroot & flag) ||
|
|
|
|
capable(CAP_NET_ADMIN);
|
2007-02-09 15:25:07 +01:00
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-15 21:29:13 +02:00
|
|
|
static void
|
|
|
|
netlink_update_subscriptions(struct sock *sk, unsigned int subscriptions)
|
|
|
|
{
|
|
|
|
struct netlink_sock *nlk = nlk_sk(sk);
|
|
|
|
|
|
|
|
if (nlk->subscriptions && !subscriptions)
|
|
|
|
__sk_del_bind_node(sk);
|
|
|
|
else if (!nlk->subscriptions && subscriptions)
|
|
|
|
sk_add_bind_node(sk, &nl_table[sk->sk_protocol].mc_list);
|
|
|
|
nlk->subscriptions = subscriptions;
|
|
|
|
}
|
|
|
|
|
2007-07-19 00:46:06 +02:00
|
|
|
static int netlink_realloc_groups(struct sock *sk)
|
2005-09-07 00:43:59 +02:00
|
|
|
{
|
|
|
|
struct netlink_sock *nlk = nlk_sk(sk);
|
|
|
|
unsigned int groups;
|
2007-07-19 00:46:06 +02:00
|
|
|
unsigned long *new_groups;
|
2005-09-07 00:43:59 +02:00
|
|
|
int err = 0;
|
|
|
|
|
2007-07-19 00:46:06 +02:00
|
|
|
netlink_table_grab();
|
|
|
|
|
2005-09-07 00:43:59 +02:00
|
|
|
groups = nl_table[sk->sk_protocol].groups;
|
2007-07-19 00:46:06 +02:00
|
|
|
if (!nl_table[sk->sk_protocol].registered) {
|
2005-09-07 00:43:59 +02:00
|
|
|
err = -ENOENT;
|
2007-07-19 00:46:06 +02:00
|
|
|
goto out_unlock;
|
|
|
|
}
|
2005-09-07 00:43:59 +02:00
|
|
|
|
2007-07-19 00:46:06 +02:00
|
|
|
if (nlk->ngroups >= groups)
|
|
|
|
goto out_unlock;
|
2005-09-07 00:43:59 +02:00
|
|
|
|
2007-07-19 00:46:06 +02:00
|
|
|
new_groups = krealloc(nlk->groups, NLGRPSZ(groups), GFP_ATOMIC);
|
|
|
|
if (new_groups == NULL) {
|
|
|
|
err = -ENOMEM;
|
|
|
|
goto out_unlock;
|
|
|
|
}
|
2007-12-04 09:19:38 +01:00
|
|
|
memset((char *)new_groups + NLGRPSZ(nlk->ngroups), 0,
|
2007-07-19 00:46:06 +02:00
|
|
|
NLGRPSZ(groups) - NLGRPSZ(nlk->ngroups));
|
|
|
|
|
|
|
|
nlk->groups = new_groups;
|
2005-09-07 00:43:59 +02:00
|
|
|
nlk->ngroups = groups;
|
2007-07-19 00:46:06 +02:00
|
|
|
out_unlock:
|
|
|
|
netlink_table_ungrab();
|
|
|
|
return err;
|
2005-09-07 00:43:59 +02:00
|
|
|
}
|
|
|
|
|
2007-12-04 09:19:38 +01:00
|
|
|
static int netlink_bind(struct socket *sock, struct sockaddr *addr,
|
|
|
|
int addr_len)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
struct sock *sk = sock->sk;
|
2008-03-25 18:26:21 +01:00
|
|
|
struct net *net = sock_net(sk);
|
2005-04-17 00:20:36 +02:00
|
|
|
struct netlink_sock *nlk = nlk_sk(sk);
|
|
|
|
struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
|
|
|
|
int err;
|
2007-02-09 15:25:07 +01:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
if (nladdr->nl_family != AF_NETLINK)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
/* Only superuser is allowed to listen multicasts */
|
2005-09-07 00:43:59 +02:00
|
|
|
if (nladdr->nl_groups) {
|
|
|
|
if (!netlink_capable(sock, NL_NONROOT_RECV))
|
|
|
|
return -EPERM;
|
2007-07-19 00:46:06 +02:00
|
|
|
err = netlink_realloc_groups(sk);
|
|
|
|
if (err)
|
|
|
|
return err;
|
2005-09-07 00:43:59 +02:00
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
if (nlk->pid) {
|
|
|
|
if (nladdr->nl_pid != nlk->pid)
|
|
|
|
return -EINVAL;
|
|
|
|
} else {
|
|
|
|
err = nladdr->nl_pid ?
|
2007-09-12 13:05:38 +02:00
|
|
|
netlink_insert(sk, net, nladdr->nl_pid) :
|
2005-04-17 00:20:36 +02:00
|
|
|
netlink_autobind(sock);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2005-09-07 00:43:59 +02:00
|
|
|
if (!nladdr->nl_groups && (nlk->groups == NULL || !(u32)nlk->groups[0]))
|
2005-04-17 00:20:36 +02:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
netlink_table_grab();
|
2005-08-15 21:29:13 +02:00
|
|
|
netlink_update_subscriptions(sk, nlk->subscriptions +
|
2007-02-09 15:25:07 +01:00
|
|
|
hweight32(nladdr->nl_groups) -
|
|
|
|
hweight32(nlk->groups[0]));
|
|
|
|
nlk->groups[0] = (nlk->groups[0] & ~0xffffffffUL) | nladdr->nl_groups;
|
2006-03-21 03:52:01 +01:00
|
|
|
netlink_update_listeners(sk);
|
2005-04-17 00:20:36 +02:00
|
|
|
netlink_table_ungrab();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int netlink_connect(struct socket *sock, struct sockaddr *addr,
|
|
|
|
int alen, int flags)
|
|
|
|
{
|
|
|
|
int err = 0;
|
|
|
|
struct sock *sk = sock->sk;
|
|
|
|
struct netlink_sock *nlk = nlk_sk(sk);
|
2007-12-04 09:19:38 +01:00
|
|
|
struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2010-04-01 00:58:26 +02:00
|
|
|
if (alen < sizeof(addr->sa_family))
|
|
|
|
return -EINVAL;
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
if (addr->sa_family == AF_UNSPEC) {
|
|
|
|
sk->sk_state = NETLINK_UNCONNECTED;
|
|
|
|
nlk->dst_pid = 0;
|
2005-08-15 04:27:50 +02:00
|
|
|
nlk->dst_group = 0;
|
2005-04-17 00:20:36 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (addr->sa_family != AF_NETLINK)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
/* Only superuser is allowed to send multicasts */
|
|
|
|
if (nladdr->nl_groups && !netlink_capable(sock, NL_NONROOT_SEND))
|
|
|
|
return -EPERM;
|
|
|
|
|
|
|
|
if (!nlk->pid)
|
|
|
|
err = netlink_autobind(sock);
|
|
|
|
|
|
|
|
if (err == 0) {
|
|
|
|
sk->sk_state = NETLINK_CONNECTED;
|
|
|
|
nlk->dst_pid = nladdr->nl_pid;
|
2005-08-15 04:27:50 +02:00
|
|
|
nlk->dst_group = ffs(nladdr->nl_groups);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2007-12-04 09:19:38 +01:00
|
|
|
static int netlink_getname(struct socket *sock, struct sockaddr *addr,
|
|
|
|
int *addr_len, int peer)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
struct sock *sk = sock->sk;
|
|
|
|
struct netlink_sock *nlk = nlk_sk(sk);
|
2009-11-08 06:51:19 +01:00
|
|
|
DECLARE_SOCKADDR(struct sockaddr_nl *, nladdr, addr);
|
2007-02-09 15:25:07 +01:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
nladdr->nl_family = AF_NETLINK;
|
|
|
|
nladdr->nl_pad = 0;
|
|
|
|
*addr_len = sizeof(*nladdr);
|
|
|
|
|
|
|
|
if (peer) {
|
|
|
|
nladdr->nl_pid = nlk->dst_pid;
|
2005-08-15 04:27:50 +02:00
|
|
|
nladdr->nl_groups = netlink_group_mask(nlk->dst_group);
|
2005-04-17 00:20:36 +02:00
|
|
|
} else {
|
|
|
|
nladdr->nl_pid = nlk->pid;
|
2005-09-07 00:43:59 +02:00
|
|
|
nladdr->nl_groups = nlk->groups ? nlk->groups[0] : 0;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void netlink_overrun(struct sock *sk)
|
|
|
|
{
|
netlink: add NETLINK_NO_ENOBUFS socket flag
This patch adds the NETLINK_NO_ENOBUFS socket flag. This flag can
be used by unicast and broadcast listeners to avoid receiving
ENOBUFS errors.
Generally speaking, ENOBUFS errors are useful to notify two things
to the listener:
a) You may increase the receiver buffer size via setsockopt().
b) You have lost messages, you may be out of sync.
In some cases, ignoring ENOBUFS errors can be useful. For example:
a) nfnetlink_queue: this subsystem does not have any sort of resync
method and you can decide to ignore ENOBUFS once you have set a
given buffer size.
b) ctnetlink: you can use this together with the socket flag
NETLINK_BROADCAST_SEND_ERROR to stop getting ENOBUFS errors as
you do not need to resync (packets whose event are not delivered
are drop to provide reliable logging and state-synchronization).
Moreover, the use of NETLINK_NO_ENOBUFS also reduces a "go up, go down"
effect in terms of performance which is due to the netlink congestion
control when the listener cannot back off. The effect is the following:
1) throughput rate goes up and netlink messages are inserted in the
receiver buffer.
2) Then, netlink buffer fills and overruns (set on nlk->state bit 0).
3) While the listener empties the receiver buffer, netlink keeps
dropping messages. Thus, throughput goes dramatically down.
4) Then, once the listener has emptied the buffer (nlk->state
bit 0 is set off), goto step 1.
This effect is easy to trigger with netlink broadcast under heavy
load, and it is more noticeable when using a big receiver buffer.
You can find some results in [1] that show this problem.
[1] http://1984.lsi.us.es/linux/netlink/
This patch also includes the use of sk_drop to account the number of
netlink messages drop due to overrun. This value is shown in
/proc/net/netlink.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2009-03-25 00:37:55 +01:00
|
|
|
struct netlink_sock *nlk = nlk_sk(sk);
|
|
|
|
|
|
|
|
if (!(nlk->flags & NETLINK_RECV_NO_ENOBUFS)) {
|
|
|
|
if (!test_and_set_bit(0, &nlk_sk(sk)->state)) {
|
|
|
|
sk->sk_err = ENOBUFS;
|
|
|
|
sk->sk_error_report(sk);
|
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
netlink: add NETLINK_NO_ENOBUFS socket flag
This patch adds the NETLINK_NO_ENOBUFS socket flag. This flag can
be used by unicast and broadcast listeners to avoid receiving
ENOBUFS errors.
Generally speaking, ENOBUFS errors are useful to notify two things
to the listener:
a) You may increase the receiver buffer size via setsockopt().
b) You have lost messages, you may be out of sync.
In some cases, ignoring ENOBUFS errors can be useful. For example:
a) nfnetlink_queue: this subsystem does not have any sort of resync
method and you can decide to ignore ENOBUFS once you have set a
given buffer size.
b) ctnetlink: you can use this together with the socket flag
NETLINK_BROADCAST_SEND_ERROR to stop getting ENOBUFS errors as
you do not need to resync (packets whose event are not delivered
are drop to provide reliable logging and state-synchronization).
Moreover, the use of NETLINK_NO_ENOBUFS also reduces a "go up, go down"
effect in terms of performance which is due to the netlink congestion
control when the listener cannot back off. The effect is the following:
1) throughput rate goes up and netlink messages are inserted in the
receiver buffer.
2) Then, netlink buffer fills and overruns (set on nlk->state bit 0).
3) While the listener empties the receiver buffer, netlink keeps
dropping messages. Thus, throughput goes dramatically down.
4) Then, once the listener has emptied the buffer (nlk->state
bit 0 is set off), goto step 1.
This effect is easy to trigger with netlink broadcast under heavy
load, and it is more noticeable when using a big receiver buffer.
You can find some results in [1] that show this problem.
[1] http://1984.lsi.us.es/linux/netlink/
This patch also includes the use of sk_drop to account the number of
netlink messages drop due to overrun. This value is shown in
/proc/net/netlink.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2009-03-25 00:37:55 +01:00
|
|
|
atomic_inc(&sk->sk_drops);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct sock *netlink_getsockbypid(struct sock *ssk, u32 pid)
|
|
|
|
{
|
|
|
|
struct sock *sock;
|
|
|
|
struct netlink_sock *nlk;
|
|
|
|
|
2008-03-25 18:26:21 +01:00
|
|
|
sock = netlink_lookup(sock_net(ssk), ssk->sk_protocol, pid);
|
2005-04-17 00:20:36 +02:00
|
|
|
if (!sock)
|
|
|
|
return ERR_PTR(-ECONNREFUSED);
|
|
|
|
|
|
|
|
/* Don't bother queuing skb if kernel socket has no input function */
|
|
|
|
nlk = nlk_sk(sock);
|
2007-10-11 06:15:29 +02:00
|
|
|
if (sock->sk_state == NETLINK_CONNECTED &&
|
|
|
|
nlk->dst_pid != nlk_sk(ssk)->pid) {
|
2005-04-17 00:20:36 +02:00
|
|
|
sock_put(sock);
|
|
|
|
return ERR_PTR(-ECONNREFUSED);
|
|
|
|
}
|
|
|
|
return sock;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sock *netlink_getsockbyfilp(struct file *filp)
|
|
|
|
{
|
2006-12-08 11:37:25 +01:00
|
|
|
struct inode *inode = filp->f_path.dentry->d_inode;
|
2005-04-17 00:20:36 +02:00
|
|
|
struct sock *sock;
|
|
|
|
|
|
|
|
if (!S_ISSOCK(inode->i_mode))
|
|
|
|
return ERR_PTR(-ENOTSOCK);
|
|
|
|
|
|
|
|
sock = SOCKET_I(inode)->sk;
|
|
|
|
if (sock->sk_family != AF_NETLINK)
|
|
|
|
return ERR_PTR(-EINVAL);
|
|
|
|
|
|
|
|
sock_hold(sock);
|
|
|
|
return sock;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Attach a skb to a netlink socket.
|
|
|
|
* The caller must hold a reference to the destination socket. On error, the
|
|
|
|
* reference is dropped. The skb is not send to the destination, just all
|
|
|
|
* all error checks are performed and memory in the queue is reserved.
|
|
|
|
* Return values:
|
|
|
|
* < 0: error. skb freed, reference to sock dropped.
|
|
|
|
* 0: continue
|
|
|
|
* 1: repeat lookup - reference dropped while waiting for socket memory.
|
|
|
|
*/
|
2008-06-05 20:23:39 +02:00
|
|
|
int netlink_attachskb(struct sock *sk, struct sk_buff *skb,
|
2007-11-07 11:42:09 +01:00
|
|
|
long *timeo, struct sock *ssk)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
struct netlink_sock *nlk;
|
|
|
|
|
|
|
|
nlk = nlk_sk(sk);
|
|
|
|
|
|
|
|
if (atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
|
|
|
|
test_bit(0, &nlk->state)) {
|
|
|
|
DECLARE_WAITQUEUE(wait, current);
|
2007-11-07 11:42:09 +01:00
|
|
|
if (!*timeo) {
|
2007-10-11 06:14:32 +02:00
|
|
|
if (!ssk || netlink_is_kernel(ssk))
|
2005-04-17 00:20:36 +02:00
|
|
|
netlink_overrun(sk);
|
|
|
|
sock_put(sk);
|
|
|
|
kfree_skb(skb);
|
|
|
|
return -EAGAIN;
|
|
|
|
}
|
|
|
|
|
|
|
|
__set_current_state(TASK_INTERRUPTIBLE);
|
|
|
|
add_wait_queue(&nlk->wait, &wait);
|
|
|
|
|
|
|
|
if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
|
|
|
|
test_bit(0, &nlk->state)) &&
|
|
|
|
!sock_flag(sk, SOCK_DEAD))
|
2007-11-07 11:42:09 +01:00
|
|
|
*timeo = schedule_timeout(*timeo);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
__set_current_state(TASK_RUNNING);
|
|
|
|
remove_wait_queue(&nlk->wait, &wait);
|
|
|
|
sock_put(sk);
|
|
|
|
|
|
|
|
if (signal_pending(current)) {
|
|
|
|
kfree_skb(skb);
|
2007-11-07 11:42:09 +01:00
|
|
|
return sock_intr_errno(*timeo);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
skb_set_owner_r(skb, sk);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-10-11 06:14:03 +02:00
|
|
|
int netlink_sendskb(struct sock *sk, struct sk_buff *skb)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
int len = skb->len;
|
|
|
|
|
|
|
|
skb_queue_tail(&sk->sk_receive_queue, skb);
|
|
|
|
sk->sk_data_ready(sk, len);
|
|
|
|
sock_put(sk);
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
void netlink_detachskb(struct sock *sk, struct sk_buff *skb)
|
|
|
|
{
|
|
|
|
kfree_skb(skb);
|
|
|
|
sock_put(sk);
|
|
|
|
}
|
|
|
|
|
2005-07-18 22:35:43 +02:00
|
|
|
static inline struct sk_buff *netlink_trim(struct sk_buff *skb,
|
2005-10-07 08:46:04 +02:00
|
|
|
gfp_t allocation)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
int delta;
|
|
|
|
|
|
|
|
skb_orphan(skb);
|
|
|
|
|
2007-04-20 05:43:29 +02:00
|
|
|
delta = skb->end - skb->tail;
|
2005-04-17 00:20:36 +02:00
|
|
|
if (delta * 2 < skb->truesize)
|
|
|
|
return skb;
|
|
|
|
|
|
|
|
if (skb_shared(skb)) {
|
|
|
|
struct sk_buff *nskb = skb_clone(skb, allocation);
|
|
|
|
if (!nskb)
|
|
|
|
return skb;
|
|
|
|
kfree_skb(skb);
|
|
|
|
skb = nskb;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!pskb_expand_head(skb, 0, -delta, allocation))
|
|
|
|
skb->truesize -= delta;
|
|
|
|
|
|
|
|
return skb;
|
|
|
|
}
|
|
|
|
|
2007-10-11 06:15:29 +02:00
|
|
|
static inline void netlink_rcv_wake(struct sock *sk)
|
|
|
|
{
|
|
|
|
struct netlink_sock *nlk = nlk_sk(sk);
|
|
|
|
|
|
|
|
if (skb_queue_empty(&sk->sk_receive_queue))
|
|
|
|
clear_bit(0, &nlk->state);
|
|
|
|
if (!test_bit(0, &nlk->state))
|
|
|
|
wake_up_interruptible(&nlk->wait);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int netlink_unicast_kernel(struct sock *sk, struct sk_buff *skb)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
struct netlink_sock *nlk = nlk_sk(sk);
|
|
|
|
|
|
|
|
ret = -ECONNREFUSED;
|
|
|
|
if (nlk->netlink_rcv != NULL) {
|
|
|
|
ret = skb->len;
|
|
|
|
skb_set_owner_r(skb, sk);
|
|
|
|
nlk->netlink_rcv(skb);
|
|
|
|
}
|
|
|
|
kfree_skb(skb);
|
|
|
|
sock_put(sk);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
int netlink_unicast(struct sock *ssk, struct sk_buff *skb,
|
|
|
|
u32 pid, int nonblock)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
struct sock *sk;
|
|
|
|
int err;
|
|
|
|
long timeo;
|
|
|
|
|
|
|
|
skb = netlink_trim(skb, gfp_any());
|
|
|
|
|
|
|
|
timeo = sock_sndtimeo(ssk, nonblock);
|
|
|
|
retry:
|
|
|
|
sk = netlink_getsockbypid(ssk, pid);
|
|
|
|
if (IS_ERR(sk)) {
|
|
|
|
kfree_skb(skb);
|
|
|
|
return PTR_ERR(sk);
|
|
|
|
}
|
2007-10-11 06:15:29 +02:00
|
|
|
if (netlink_is_kernel(sk))
|
|
|
|
return netlink_unicast_kernel(sk, skb);
|
|
|
|
|
2008-03-21 23:46:12 +01:00
|
|
|
if (sk_filter(sk, skb)) {
|
2008-07-02 04:55:09 +02:00
|
|
|
err = skb->len;
|
2008-03-21 23:46:12 +01:00
|
|
|
kfree_skb(skb);
|
|
|
|
sock_put(sk);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2008-06-05 20:23:39 +02:00
|
|
|
err = netlink_attachskb(sk, skb, &timeo, ssk);
|
2005-04-17 00:20:36 +02:00
|
|
|
if (err == 1)
|
|
|
|
goto retry;
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
2007-10-11 06:14:03 +02:00
|
|
|
return netlink_sendskb(sk, skb);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
2007-12-04 09:19:38 +01:00
|
|
|
EXPORT_SYMBOL(netlink_unicast);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-03-21 03:52:01 +01:00
|
|
|
int netlink_has_listeners(struct sock *sk, unsigned int group)
|
|
|
|
{
|
|
|
|
int res = 0;
|
2010-10-24 06:27:10 +02:00
|
|
|
struct listeners *listeners;
|
2006-03-21 03:52:01 +01:00
|
|
|
|
2007-10-11 06:14:32 +02:00
|
|
|
BUG_ON(!netlink_is_kernel(sk));
|
2007-07-19 00:46:06 +02:00
|
|
|
|
|
|
|
rcu_read_lock();
|
|
|
|
listeners = rcu_dereference(nl_table[sk->sk_protocol].listeners);
|
|
|
|
|
2006-03-21 03:52:01 +01:00
|
|
|
if (group - 1 < nl_table[sk->sk_protocol].groups)
|
2010-10-24 06:27:10 +02:00
|
|
|
res = test_bit(group - 1, listeners->masks);
|
2007-07-19 00:46:06 +02:00
|
|
|
|
|
|
|
rcu_read_unlock();
|
|
|
|
|
2006-03-21 03:52:01 +01:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(netlink_has_listeners);
|
|
|
|
|
2007-12-04 09:19:38 +01:00
|
|
|
static inline int netlink_broadcast_deliver(struct sock *sk,
|
|
|
|
struct sk_buff *skb)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
struct netlink_sock *nlk = nlk_sk(sk);
|
|
|
|
|
|
|
|
if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf &&
|
|
|
|
!test_bit(0, &nlk->state)) {
|
|
|
|
skb_set_owner_r(skb, sk);
|
|
|
|
skb_queue_tail(&sk->sk_receive_queue, skb);
|
|
|
|
sk->sk_data_ready(sk, skb->len);
|
|
|
|
return atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct netlink_broadcast_data {
|
|
|
|
struct sock *exclude_sk;
|
2007-09-12 13:05:38 +02:00
|
|
|
struct net *net;
|
2005-04-17 00:20:36 +02:00
|
|
|
u32 pid;
|
|
|
|
u32 group;
|
|
|
|
int failure;
|
netlink: change return-value logic of netlink_broadcast()
Currently, netlink_broadcast() reports errors to the caller if no
messages at all were delivered:
1) If, at least, one message has been delivered correctly, returns 0.
2) Otherwise, if no messages at all were delivered due to skb_clone()
failure, return -ENOBUFS.
3) Otherwise, if there are no listeners, return -ESRCH.
With this patch, the caller knows if the delivery of any of the
messages to the listeners have failed:
1) If it fails to deliver any message (for whatever reason), return
-ENOBUFS.
2) Otherwise, if all messages were delivered OK, returns 0.
3) Otherwise, if no listeners, return -ESRCH.
In the current ctnetlink code and in Netfilter in general, we can add
reliable logging and connection tracking event delivery by dropping the
packets whose events were not successfully delivered over Netlink. Of
course, this option would be settable via /proc as this approach reduces
performance (in terms of filtered connections per seconds by a stateful
firewall) but providing reliable logging and event delivery (for
conntrackd) in return.
This patch also changes some clients of netlink_broadcast() that
may report ENOBUFS errors via printk. This error handling is not
of any help. Instead, the userspace daemons that are listening to
those netlink messages should resync themselves with the kernel-side
if they hit ENOBUFS.
BTW, netlink_broadcast() clients include those that call
cn_netlink_send(), nlmsg_multicast() and genlmsg_multicast() since they
internally call netlink_broadcast() and return its error value.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2009-02-06 08:56:36 +01:00
|
|
|
int delivery_failure;
|
2005-04-17 00:20:36 +02:00
|
|
|
int congested;
|
|
|
|
int delivered;
|
2005-10-21 09:20:43 +02:00
|
|
|
gfp_t allocation;
|
2005-04-17 00:20:36 +02:00
|
|
|
struct sk_buff *skb, *skb2;
|
2010-05-05 02:36:46 +02:00
|
|
|
int (*tx_filter)(struct sock *dsk, struct sk_buff *skb, void *data);
|
|
|
|
void *tx_data;
|
2005-04-17 00:20:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static inline int do_one_broadcast(struct sock *sk,
|
|
|
|
struct netlink_broadcast_data *p)
|
|
|
|
{
|
|
|
|
struct netlink_sock *nlk = nlk_sk(sk);
|
|
|
|
int val;
|
|
|
|
|
|
|
|
if (p->exclude_sk == sk)
|
|
|
|
goto out;
|
|
|
|
|
2005-08-15 21:29:13 +02:00
|
|
|
if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups ||
|
|
|
|
!test_bit(p->group - 1, nlk->groups))
|
2005-04-17 00:20:36 +02:00
|
|
|
goto out;
|
|
|
|
|
2008-03-25 19:57:35 +01:00
|
|
|
if (!net_eq(sock_net(sk), p->net))
|
2007-09-12 13:05:38 +02:00
|
|
|
goto out;
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
if (p->failure) {
|
|
|
|
netlink_overrun(sk);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
sock_hold(sk);
|
|
|
|
if (p->skb2 == NULL) {
|
2005-05-19 22:06:35 +02:00
|
|
|
if (skb_shared(p->skb)) {
|
2005-04-17 00:20:36 +02:00
|
|
|
p->skb2 = skb_clone(p->skb, p->allocation);
|
|
|
|
} else {
|
2005-05-19 22:06:35 +02:00
|
|
|
p->skb2 = skb_get(p->skb);
|
|
|
|
/*
|
|
|
|
* skb ownership may have been set when
|
|
|
|
* delivered to a previous socket.
|
|
|
|
*/
|
|
|
|
skb_orphan(p->skb2);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (p->skb2 == NULL) {
|
|
|
|
netlink_overrun(sk);
|
|
|
|
/* Clone failed. Notify ALL listeners. */
|
|
|
|
p->failure = 1;
|
2009-02-18 02:40:43 +01:00
|
|
|
if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR)
|
|
|
|
p->delivery_failure = 1;
|
2010-05-05 02:36:46 +02:00
|
|
|
} else if (p->tx_filter && p->tx_filter(sk, p->skb2, p->tx_data)) {
|
|
|
|
kfree_skb(p->skb2);
|
|
|
|
p->skb2 = NULL;
|
2008-03-21 23:46:12 +01:00
|
|
|
} else if (sk_filter(sk, p->skb2)) {
|
|
|
|
kfree_skb(p->skb2);
|
|
|
|
p->skb2 = NULL;
|
2005-04-17 00:20:36 +02:00
|
|
|
} else if ((val = netlink_broadcast_deliver(sk, p->skb2)) < 0) {
|
|
|
|
netlink_overrun(sk);
|
2009-02-18 02:40:43 +01:00
|
|
|
if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR)
|
|
|
|
p->delivery_failure = 1;
|
2005-04-17 00:20:36 +02:00
|
|
|
} else {
|
|
|
|
p->congested |= val;
|
|
|
|
p->delivered = 1;
|
|
|
|
p->skb2 = NULL;
|
|
|
|
}
|
|
|
|
sock_put(sk);
|
|
|
|
|
|
|
|
out:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-05-05 02:36:46 +02:00
|
|
|
int netlink_broadcast_filtered(struct sock *ssk, struct sk_buff *skb, u32 pid,
|
|
|
|
u32 group, gfp_t allocation,
|
|
|
|
int (*filter)(struct sock *dsk, struct sk_buff *skb, void *data),
|
|
|
|
void *filter_data)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2008-03-25 18:26:21 +01:00
|
|
|
struct net *net = sock_net(ssk);
|
2005-04-17 00:20:36 +02:00
|
|
|
struct netlink_broadcast_data info;
|
|
|
|
struct hlist_node *node;
|
|
|
|
struct sock *sk;
|
|
|
|
|
|
|
|
skb = netlink_trim(skb, allocation);
|
|
|
|
|
|
|
|
info.exclude_sk = ssk;
|
2007-09-12 13:05:38 +02:00
|
|
|
info.net = net;
|
2005-04-17 00:20:36 +02:00
|
|
|
info.pid = pid;
|
|
|
|
info.group = group;
|
|
|
|
info.failure = 0;
|
netlink: change return-value logic of netlink_broadcast()
Currently, netlink_broadcast() reports errors to the caller if no
messages at all were delivered:
1) If, at least, one message has been delivered correctly, returns 0.
2) Otherwise, if no messages at all were delivered due to skb_clone()
failure, return -ENOBUFS.
3) Otherwise, if there are no listeners, return -ESRCH.
With this patch, the caller knows if the delivery of any of the
messages to the listeners have failed:
1) If it fails to deliver any message (for whatever reason), return
-ENOBUFS.
2) Otherwise, if all messages were delivered OK, returns 0.
3) Otherwise, if no listeners, return -ESRCH.
In the current ctnetlink code and in Netfilter in general, we can add
reliable logging and connection tracking event delivery by dropping the
packets whose events were not successfully delivered over Netlink. Of
course, this option would be settable via /proc as this approach reduces
performance (in terms of filtered connections per seconds by a stateful
firewall) but providing reliable logging and event delivery (for
conntrackd) in return.
This patch also changes some clients of netlink_broadcast() that
may report ENOBUFS errors via printk. This error handling is not
of any help. Instead, the userspace daemons that are listening to
those netlink messages should resync themselves with the kernel-side
if they hit ENOBUFS.
BTW, netlink_broadcast() clients include those that call
cn_netlink_send(), nlmsg_multicast() and genlmsg_multicast() since they
internally call netlink_broadcast() and return its error value.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2009-02-06 08:56:36 +01:00
|
|
|
info.delivery_failure = 0;
|
2005-04-17 00:20:36 +02:00
|
|
|
info.congested = 0;
|
|
|
|
info.delivered = 0;
|
|
|
|
info.allocation = allocation;
|
|
|
|
info.skb = skb;
|
|
|
|
info.skb2 = NULL;
|
2010-05-05 02:36:46 +02:00
|
|
|
info.tx_filter = filter;
|
|
|
|
info.tx_data = filter_data;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/* While we sleep in clone, do not allow to change socket list */
|
|
|
|
|
|
|
|
netlink_lock_table();
|
|
|
|
|
|
|
|
sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
|
|
|
|
do_one_broadcast(sk, &info);
|
|
|
|
|
2010-07-20 08:45:56 +02:00
|
|
|
consume_skb(skb);
|
2005-05-19 22:07:32 +02:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
netlink_unlock_table();
|
|
|
|
|
2010-07-20 08:45:56 +02:00
|
|
|
if (info.delivery_failure) {
|
|
|
|
kfree_skb(info.skb2);
|
netlink: change return-value logic of netlink_broadcast()
Currently, netlink_broadcast() reports errors to the caller if no
messages at all were delivered:
1) If, at least, one message has been delivered correctly, returns 0.
2) Otherwise, if no messages at all were delivered due to skb_clone()
failure, return -ENOBUFS.
3) Otherwise, if there are no listeners, return -ESRCH.
With this patch, the caller knows if the delivery of any of the
messages to the listeners have failed:
1) If it fails to deliver any message (for whatever reason), return
-ENOBUFS.
2) Otherwise, if all messages were delivered OK, returns 0.
3) Otherwise, if no listeners, return -ESRCH.
In the current ctnetlink code and in Netfilter in general, we can add
reliable logging and connection tracking event delivery by dropping the
packets whose events were not successfully delivered over Netlink. Of
course, this option would be settable via /proc as this approach reduces
performance (in terms of filtered connections per seconds by a stateful
firewall) but providing reliable logging and event delivery (for
conntrackd) in return.
This patch also changes some clients of netlink_broadcast() that
may report ENOBUFS errors via printk. This error handling is not
of any help. Instead, the userspace daemons that are listening to
those netlink messages should resync themselves with the kernel-side
if they hit ENOBUFS.
BTW, netlink_broadcast() clients include those that call
cn_netlink_send(), nlmsg_multicast() and genlmsg_multicast() since they
internally call netlink_broadcast() and return its error value.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2009-02-06 08:56:36 +01:00
|
|
|
return -ENOBUFS;
|
2010-07-20 08:45:56 +02:00
|
|
|
} else
|
|
|
|
consume_skb(info.skb2);
|
netlink: change return-value logic of netlink_broadcast()
Currently, netlink_broadcast() reports errors to the caller if no
messages at all were delivered:
1) If, at least, one message has been delivered correctly, returns 0.
2) Otherwise, if no messages at all were delivered due to skb_clone()
failure, return -ENOBUFS.
3) Otherwise, if there are no listeners, return -ESRCH.
With this patch, the caller knows if the delivery of any of the
messages to the listeners have failed:
1) If it fails to deliver any message (for whatever reason), return
-ENOBUFS.
2) Otherwise, if all messages were delivered OK, returns 0.
3) Otherwise, if no listeners, return -ESRCH.
In the current ctnetlink code and in Netfilter in general, we can add
reliable logging and connection tracking event delivery by dropping the
packets whose events were not successfully delivered over Netlink. Of
course, this option would be settable via /proc as this approach reduces
performance (in terms of filtered connections per seconds by a stateful
firewall) but providing reliable logging and event delivery (for
conntrackd) in return.
This patch also changes some clients of netlink_broadcast() that
may report ENOBUFS errors via printk. This error handling is not
of any help. Instead, the userspace daemons that are listening to
those netlink messages should resync themselves with the kernel-side
if they hit ENOBUFS.
BTW, netlink_broadcast() clients include those that call
cn_netlink_send(), nlmsg_multicast() and genlmsg_multicast() since they
internally call netlink_broadcast() and return its error value.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2009-02-06 08:56:36 +01:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
if (info.delivered) {
|
|
|
|
if (info.congested && (allocation & __GFP_WAIT))
|
|
|
|
yield();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return -ESRCH;
|
|
|
|
}
|
2010-05-05 02:36:46 +02:00
|
|
|
EXPORT_SYMBOL(netlink_broadcast_filtered);
|
|
|
|
|
|
|
|
int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, u32 pid,
|
|
|
|
u32 group, gfp_t allocation)
|
|
|
|
{
|
|
|
|
return netlink_broadcast_filtered(ssk, skb, pid, group, allocation,
|
|
|
|
NULL, NULL);
|
|
|
|
}
|
2007-12-04 09:19:38 +01:00
|
|
|
EXPORT_SYMBOL(netlink_broadcast);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
struct netlink_set_err_data {
|
|
|
|
struct sock *exclude_sk;
|
|
|
|
u32 pid;
|
|
|
|
u32 group;
|
|
|
|
int code;
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline int do_one_set_err(struct sock *sk,
|
|
|
|
struct netlink_set_err_data *p)
|
|
|
|
{
|
|
|
|
struct netlink_sock *nlk = nlk_sk(sk);
|
2010-03-18 15:24:42 +01:00
|
|
|
int ret = 0;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
if (sk == p->exclude_sk)
|
|
|
|
goto out;
|
|
|
|
|
2009-11-26 00:14:13 +01:00
|
|
|
if (!net_eq(sock_net(sk), sock_net(p->exclude_sk)))
|
2007-09-12 13:05:38 +02:00
|
|
|
goto out;
|
|
|
|
|
2005-08-15 21:29:13 +02:00
|
|
|
if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups ||
|
|
|
|
!test_bit(p->group - 1, nlk->groups))
|
2005-04-17 00:20:36 +02:00
|
|
|
goto out;
|
|
|
|
|
2010-03-18 15:24:42 +01:00
|
|
|
if (p->code == ENOBUFS && nlk->flags & NETLINK_RECV_NO_ENOBUFS) {
|
|
|
|
ret = 1;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
sk->sk_err = p->code;
|
|
|
|
sk->sk_error_report(sk);
|
|
|
|
out:
|
2010-03-18 15:24:42 +01:00
|
|
|
return ret;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2009-03-04 08:37:30 +01:00
|
|
|
/**
|
|
|
|
* netlink_set_err - report error to broadcast listeners
|
|
|
|
* @ssk: the kernel netlink socket, as returned by netlink_kernel_create()
|
|
|
|
* @pid: the PID of a process that we want to skip (if any)
|
|
|
|
* @groups: the broadcast group that will notice the error
|
|
|
|
* @code: error code, must be negative (as usual in kernelspace)
|
2010-03-18 15:24:42 +01:00
|
|
|
*
|
|
|
|
* This function returns the number of broadcast listeners that have set the
|
|
|
|
* NETLINK_RECV_NO_ENOBUFS socket option.
|
2009-03-04 08:37:30 +01:00
|
|
|
*/
|
2010-03-18 15:24:42 +01:00
|
|
|
int netlink_set_err(struct sock *ssk, u32 pid, u32 group, int code)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
struct netlink_set_err_data info;
|
|
|
|
struct hlist_node *node;
|
|
|
|
struct sock *sk;
|
2010-03-18 15:24:42 +01:00
|
|
|
int ret = 0;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
info.exclude_sk = ssk;
|
|
|
|
info.pid = pid;
|
|
|
|
info.group = group;
|
2009-03-04 08:37:30 +01:00
|
|
|
/* sk->sk_err wants a positive error value */
|
|
|
|
info.code = -code;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
read_lock(&nl_table_lock);
|
|
|
|
|
|
|
|
sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
|
2010-03-18 15:24:42 +01:00
|
|
|
ret += do_one_set_err(sk, &info);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
read_unlock(&nl_table_lock);
|
2010-03-18 15:24:42 +01:00
|
|
|
return ret;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
2009-03-23 13:21:06 +01:00
|
|
|
EXPORT_SYMBOL(netlink_set_err);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-07-19 00:47:05 +02:00
|
|
|
/* must be called with netlink table grabbed */
|
|
|
|
static void netlink_update_socket_mc(struct netlink_sock *nlk,
|
|
|
|
unsigned int group,
|
|
|
|
int is_new)
|
|
|
|
{
|
|
|
|
int old, new = !!is_new, subscriptions;
|
|
|
|
|
|
|
|
old = test_bit(group - 1, nlk->groups);
|
|
|
|
subscriptions = nlk->subscriptions - old + new;
|
|
|
|
if (new)
|
|
|
|
__set_bit(group - 1, nlk->groups);
|
|
|
|
else
|
|
|
|
__clear_bit(group - 1, nlk->groups);
|
|
|
|
netlink_update_subscriptions(&nlk->sk, subscriptions);
|
|
|
|
netlink_update_listeners(&nlk->sk);
|
|
|
|
}
|
|
|
|
|
2005-08-15 21:32:15 +02:00
|
|
|
static int netlink_setsockopt(struct socket *sock, int level, int optname,
|
2009-10-01 01:12:20 +02:00
|
|
|
char __user *optval, unsigned int optlen)
|
2005-08-15 21:32:15 +02:00
|
|
|
{
|
|
|
|
struct sock *sk = sock->sk;
|
|
|
|
struct netlink_sock *nlk = nlk_sk(sk);
|
2007-07-18 11:07:51 +02:00
|
|
|
unsigned int val = 0;
|
|
|
|
int err;
|
2005-08-15 21:32:15 +02:00
|
|
|
|
|
|
|
if (level != SOL_NETLINK)
|
|
|
|
return -ENOPROTOOPT;
|
|
|
|
|
|
|
|
if (optlen >= sizeof(int) &&
|
2007-07-18 11:07:51 +02:00
|
|
|
get_user(val, (unsigned int __user *)optval))
|
2005-08-15 21:32:15 +02:00
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
switch (optname) {
|
|
|
|
case NETLINK_PKTINFO:
|
|
|
|
if (val)
|
|
|
|
nlk->flags |= NETLINK_RECV_PKTINFO;
|
|
|
|
else
|
|
|
|
nlk->flags &= ~NETLINK_RECV_PKTINFO;
|
|
|
|
err = 0;
|
|
|
|
break;
|
|
|
|
case NETLINK_ADD_MEMBERSHIP:
|
|
|
|
case NETLINK_DROP_MEMBERSHIP: {
|
|
|
|
if (!netlink_capable(sock, NL_NONROOT_RECV))
|
|
|
|
return -EPERM;
|
2007-07-19 00:46:06 +02:00
|
|
|
err = netlink_realloc_groups(sk);
|
|
|
|
if (err)
|
|
|
|
return err;
|
2005-08-15 21:32:15 +02:00
|
|
|
if (!val || val - 1 >= nlk->ngroups)
|
|
|
|
return -EINVAL;
|
|
|
|
netlink_table_grab();
|
2007-07-19 00:47:05 +02:00
|
|
|
netlink_update_socket_mc(nlk, val,
|
|
|
|
optname == NETLINK_ADD_MEMBERSHIP);
|
2005-08-15 21:32:15 +02:00
|
|
|
netlink_table_ungrab();
|
|
|
|
err = 0;
|
|
|
|
break;
|
|
|
|
}
|
2009-02-18 02:40:43 +01:00
|
|
|
case NETLINK_BROADCAST_ERROR:
|
|
|
|
if (val)
|
|
|
|
nlk->flags |= NETLINK_BROADCAST_SEND_ERROR;
|
|
|
|
else
|
|
|
|
nlk->flags &= ~NETLINK_BROADCAST_SEND_ERROR;
|
|
|
|
err = 0;
|
|
|
|
break;
|
netlink: add NETLINK_NO_ENOBUFS socket flag
This patch adds the NETLINK_NO_ENOBUFS socket flag. This flag can
be used by unicast and broadcast listeners to avoid receiving
ENOBUFS errors.
Generally speaking, ENOBUFS errors are useful to notify two things
to the listener:
a) You may increase the receiver buffer size via setsockopt().
b) You have lost messages, you may be out of sync.
In some cases, ignoring ENOBUFS errors can be useful. For example:
a) nfnetlink_queue: this subsystem does not have any sort of resync
method and you can decide to ignore ENOBUFS once you have set a
given buffer size.
b) ctnetlink: you can use this together with the socket flag
NETLINK_BROADCAST_SEND_ERROR to stop getting ENOBUFS errors as
you do not need to resync (packets whose event are not delivered
are drop to provide reliable logging and state-synchronization).
Moreover, the use of NETLINK_NO_ENOBUFS also reduces a "go up, go down"
effect in terms of performance which is due to the netlink congestion
control when the listener cannot back off. The effect is the following:
1) throughput rate goes up and netlink messages are inserted in the
receiver buffer.
2) Then, netlink buffer fills and overruns (set on nlk->state bit 0).
3) While the listener empties the receiver buffer, netlink keeps
dropping messages. Thus, throughput goes dramatically down.
4) Then, once the listener has emptied the buffer (nlk->state
bit 0 is set off), goto step 1.
This effect is easy to trigger with netlink broadcast under heavy
load, and it is more noticeable when using a big receiver buffer.
You can find some results in [1] that show this problem.
[1] http://1984.lsi.us.es/linux/netlink/
This patch also includes the use of sk_drop to account the number of
netlink messages drop due to overrun. This value is shown in
/proc/net/netlink.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2009-03-25 00:37:55 +01:00
|
|
|
case NETLINK_NO_ENOBUFS:
|
|
|
|
if (val) {
|
|
|
|
nlk->flags |= NETLINK_RECV_NO_ENOBUFS;
|
|
|
|
clear_bit(0, &nlk->state);
|
|
|
|
wake_up_interruptible(&nlk->wait);
|
|
|
|
} else
|
|
|
|
nlk->flags &= ~NETLINK_RECV_NO_ENOBUFS;
|
|
|
|
err = 0;
|
|
|
|
break;
|
2005-08-15 21:32:15 +02:00
|
|
|
default:
|
|
|
|
err = -ENOPROTOOPT;
|
|
|
|
}
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int netlink_getsockopt(struct socket *sock, int level, int optname,
|
2007-02-09 15:25:07 +01:00
|
|
|
char __user *optval, int __user *optlen)
|
2005-08-15 21:32:15 +02:00
|
|
|
{
|
|
|
|
struct sock *sk = sock->sk;
|
|
|
|
struct netlink_sock *nlk = nlk_sk(sk);
|
|
|
|
int len, val, err;
|
|
|
|
|
|
|
|
if (level != SOL_NETLINK)
|
|
|
|
return -ENOPROTOOPT;
|
|
|
|
|
|
|
|
if (get_user(len, optlen))
|
|
|
|
return -EFAULT;
|
|
|
|
if (len < 0)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
switch (optname) {
|
|
|
|
case NETLINK_PKTINFO:
|
|
|
|
if (len < sizeof(int))
|
|
|
|
return -EINVAL;
|
|
|
|
len = sizeof(int);
|
|
|
|
val = nlk->flags & NETLINK_RECV_PKTINFO ? 1 : 0;
|
2006-10-31 00:06:12 +01:00
|
|
|
if (put_user(len, optlen) ||
|
|
|
|
put_user(val, optval))
|
|
|
|
return -EFAULT;
|
2005-08-15 21:32:15 +02:00
|
|
|
err = 0;
|
|
|
|
break;
|
2009-02-18 02:40:43 +01:00
|
|
|
case NETLINK_BROADCAST_ERROR:
|
|
|
|
if (len < sizeof(int))
|
|
|
|
return -EINVAL;
|
|
|
|
len = sizeof(int);
|
|
|
|
val = nlk->flags & NETLINK_BROADCAST_SEND_ERROR ? 1 : 0;
|
|
|
|
if (put_user(len, optlen) ||
|
|
|
|
put_user(val, optval))
|
|
|
|
return -EFAULT;
|
|
|
|
err = 0;
|
|
|
|
break;
|
netlink: add NETLINK_NO_ENOBUFS socket flag
This patch adds the NETLINK_NO_ENOBUFS socket flag. This flag can
be used by unicast and broadcast listeners to avoid receiving
ENOBUFS errors.
Generally speaking, ENOBUFS errors are useful to notify two things
to the listener:
a) You may increase the receiver buffer size via setsockopt().
b) You have lost messages, you may be out of sync.
In some cases, ignoring ENOBUFS errors can be useful. For example:
a) nfnetlink_queue: this subsystem does not have any sort of resync
method and you can decide to ignore ENOBUFS once you have set a
given buffer size.
b) ctnetlink: you can use this together with the socket flag
NETLINK_BROADCAST_SEND_ERROR to stop getting ENOBUFS errors as
you do not need to resync (packets whose event are not delivered
are drop to provide reliable logging and state-synchronization).
Moreover, the use of NETLINK_NO_ENOBUFS also reduces a "go up, go down"
effect in terms of performance which is due to the netlink congestion
control when the listener cannot back off. The effect is the following:
1) throughput rate goes up and netlink messages are inserted in the
receiver buffer.
2) Then, netlink buffer fills and overruns (set on nlk->state bit 0).
3) While the listener empties the receiver buffer, netlink keeps
dropping messages. Thus, throughput goes dramatically down.
4) Then, once the listener has emptied the buffer (nlk->state
bit 0 is set off), goto step 1.
This effect is easy to trigger with netlink broadcast under heavy
load, and it is more noticeable when using a big receiver buffer.
You can find some results in [1] that show this problem.
[1] http://1984.lsi.us.es/linux/netlink/
This patch also includes the use of sk_drop to account the number of
netlink messages drop due to overrun. This value is shown in
/proc/net/netlink.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2009-03-25 00:37:55 +01:00
|
|
|
case NETLINK_NO_ENOBUFS:
|
|
|
|
if (len < sizeof(int))
|
|
|
|
return -EINVAL;
|
|
|
|
len = sizeof(int);
|
|
|
|
val = nlk->flags & NETLINK_RECV_NO_ENOBUFS ? 1 : 0;
|
|
|
|
if (put_user(len, optlen) ||
|
|
|
|
put_user(val, optval))
|
|
|
|
return -EFAULT;
|
|
|
|
err = 0;
|
|
|
|
break;
|
2005-08-15 21:32:15 +02:00
|
|
|
default:
|
|
|
|
err = -ENOPROTOOPT;
|
|
|
|
}
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void netlink_cmsg_recv_pktinfo(struct msghdr *msg, struct sk_buff *skb)
|
|
|
|
{
|
|
|
|
struct nl_pktinfo info;
|
|
|
|
|
|
|
|
info.group = NETLINK_CB(skb).dst_group;
|
|
|
|
put_cmsg(msg, SOL_NETLINK, NETLINK_PKTINFO, sizeof(info), &info);
|
|
|
|
}
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
static int netlink_sendmsg(struct kiocb *kiocb, struct socket *sock,
|
|
|
|
struct msghdr *msg, size_t len)
|
|
|
|
{
|
|
|
|
struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
|
|
|
|
struct sock *sk = sock->sk;
|
|
|
|
struct netlink_sock *nlk = nlk_sk(sk);
|
2007-12-04 09:19:38 +01:00
|
|
|
struct sockaddr_nl *addr = msg->msg_name;
|
2005-04-17 00:20:36 +02:00
|
|
|
u32 dst_pid;
|
2005-08-15 04:27:50 +02:00
|
|
|
u32 dst_group;
|
2005-04-17 00:20:36 +02:00
|
|
|
struct sk_buff *skb;
|
|
|
|
int err;
|
|
|
|
struct scm_cookie scm;
|
|
|
|
|
|
|
|
if (msg->msg_flags&MSG_OOB)
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
2010-06-13 05:31:06 +02:00
|
|
|
if (NULL == siocb->scm) {
|
2005-04-17 00:20:36 +02:00
|
|
|
siocb->scm = &scm;
|
2010-06-13 05:31:06 +02:00
|
|
|
memset(&scm, 0, sizeof(scm));
|
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
err = scm_send(sock, msg, siocb->scm);
|
|
|
|
if (err < 0)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
if (msg->msg_namelen) {
|
2010-06-13 05:31:06 +02:00
|
|
|
err = -EINVAL;
|
2005-04-17 00:20:36 +02:00
|
|
|
if (addr->nl_family != AF_NETLINK)
|
2010-06-13 05:31:06 +02:00
|
|
|
goto out;
|
2005-04-17 00:20:36 +02:00
|
|
|
dst_pid = addr->nl_pid;
|
2005-08-15 04:27:50 +02:00
|
|
|
dst_group = ffs(addr->nl_groups);
|
2010-06-13 05:31:06 +02:00
|
|
|
err = -EPERM;
|
2005-08-15 04:27:50 +02:00
|
|
|
if (dst_group && !netlink_capable(sock, NL_NONROOT_SEND))
|
2010-06-13 05:31:06 +02:00
|
|
|
goto out;
|
2005-04-17 00:20:36 +02:00
|
|
|
} else {
|
|
|
|
dst_pid = nlk->dst_pid;
|
2005-08-15 04:27:50 +02:00
|
|
|
dst_group = nlk->dst_group;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!nlk->pid) {
|
|
|
|
err = netlink_autobind(sock);
|
|
|
|
if (err)
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
err = -EMSGSIZE;
|
|
|
|
if (len > sk->sk_sndbuf - 32)
|
|
|
|
goto out;
|
|
|
|
err = -ENOBUFS;
|
2006-11-10 23:10:15 +01:00
|
|
|
skb = alloc_skb(len, GFP_KERNEL);
|
2007-12-04 09:19:38 +01:00
|
|
|
if (skb == NULL)
|
2005-04-17 00:20:36 +02:00
|
|
|
goto out;
|
|
|
|
|
|
|
|
NETLINK_CB(skb).pid = nlk->pid;
|
2005-08-15 04:27:50 +02:00
|
|
|
NETLINK_CB(skb).dst_group = dst_group;
|
2005-04-17 00:20:36 +02:00
|
|
|
memcpy(NETLINK_CREDS(skb), &siocb->scm->creds, sizeof(struct ucred));
|
|
|
|
|
|
|
|
err = -EFAULT;
|
2007-12-04 09:19:38 +01:00
|
|
|
if (memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len)) {
|
2005-04-17 00:20:36 +02:00
|
|
|
kfree_skb(skb);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
err = security_netlink_send(sk, skb);
|
|
|
|
if (err) {
|
|
|
|
kfree_skb(skb);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2005-08-15 04:27:50 +02:00
|
|
|
if (dst_group) {
|
2005-04-17 00:20:36 +02:00
|
|
|
atomic_inc(&skb->users);
|
2005-08-15 04:27:50 +02:00
|
|
|
netlink_broadcast(sk, skb, dst_pid, dst_group, GFP_KERNEL);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
err = netlink_unicast(sk, skb, dst_pid, msg->msg_flags&MSG_DONTWAIT);
|
|
|
|
|
|
|
|
out:
|
2010-06-13 05:31:06 +02:00
|
|
|
scm_destroy(siocb->scm);
|
2005-04-17 00:20:36 +02:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int netlink_recvmsg(struct kiocb *kiocb, struct socket *sock,
|
|
|
|
struct msghdr *msg, size_t len,
|
|
|
|
int flags)
|
|
|
|
{
|
|
|
|
struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
|
|
|
|
struct scm_cookie scm;
|
|
|
|
struct sock *sk = sock->sk;
|
|
|
|
struct netlink_sock *nlk = nlk_sk(sk);
|
|
|
|
int noblock = flags&MSG_DONTWAIT;
|
|
|
|
size_t copied;
|
netlink: fix compat recvmsg
Since
commit 1dacc76d0014a034b8aca14237c127d7c19d7726
Author: Johannes Berg <johannes@sipsolutions.net>
Date: Wed Jul 1 11:26:02 2009 +0000
net/compat/wext: send different messages to compat tasks
we had a race condition when setting and then
restoring frag_list. Eric attempted to fix it,
but the fix created even worse problems.
However, the original motivation I had when I
added the code that turned out to be racy is
no longer clear to me, since we only copy up
to skb->len to userspace, which doesn't include
the frag_list length. As a result, not doing
any frag_list clearing and restoring avoids
the race condition, while not introducing any
other problems.
Additionally, while preparing this patch I found
that since none of the remaining netlink code is
really aware of the frag_list, we need to use the
original skb's information for packet information
and credentials. This fixes, for example, the
group information received by compat tasks.
Cc: Eric Dumazet <eric.dumazet@gmail.com>
Cc: stable@kernel.org [2.6.31+, for 2.6.35 revert 1235f504aa]
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Acked-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2010-08-15 23:20:44 +02:00
|
|
|
struct sk_buff *skb, *data_skb;
|
2011-02-21 03:40:47 +01:00
|
|
|
int err, ret;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
if (flags&MSG_OOB)
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
|
|
|
copied = 0;
|
|
|
|
|
2007-12-04 09:19:38 +01:00
|
|
|
skb = skb_recv_datagram(sk, flags, noblock, &err);
|
|
|
|
if (skb == NULL)
|
2005-04-17 00:20:36 +02:00
|
|
|
goto out;
|
|
|
|
|
netlink: fix compat recvmsg
Since
commit 1dacc76d0014a034b8aca14237c127d7c19d7726
Author: Johannes Berg <johannes@sipsolutions.net>
Date: Wed Jul 1 11:26:02 2009 +0000
net/compat/wext: send different messages to compat tasks
we had a race condition when setting and then
restoring frag_list. Eric attempted to fix it,
but the fix created even worse problems.
However, the original motivation I had when I
added the code that turned out to be racy is
no longer clear to me, since we only copy up
to skb->len to userspace, which doesn't include
the frag_list length. As a result, not doing
any frag_list clearing and restoring avoids
the race condition, while not introducing any
other problems.
Additionally, while preparing this patch I found
that since none of the remaining netlink code is
really aware of the frag_list, we need to use the
original skb's information for packet information
and credentials. This fixes, for example, the
group information received by compat tasks.
Cc: Eric Dumazet <eric.dumazet@gmail.com>
Cc: stable@kernel.org [2.6.31+, for 2.6.35 revert 1235f504aa]
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Acked-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2010-08-15 23:20:44 +02:00
|
|
|
data_skb = skb;
|
|
|
|
|
net/compat/wext: send different messages to compat tasks
Wireless extensions have the unfortunate problem that events
are multicast netlink messages, and are not independent of
pointer size. Thus, currently 32-bit tasks on 64-bit platforms
cannot properly receive events and fail with all kinds of
strange problems, for instance wpa_supplicant never notices
disassociations, due to the way the 64-bit event looks (to a
32-bit process), the fact that the address is all zeroes is
lost, it thinks instead it is 00:00:00:00:01:00.
The same problem existed with the ioctls, until David Miller
fixed those some time ago in an heroic effort.
A different problem caused by this is that we cannot send the
ASSOCREQIE/ASSOCRESPIE events because sending them causes a
32-bit wpa_supplicant on a 64-bit system to overwrite its
internal information, which is worse than it not getting the
information at all -- so we currently resort to sending a
custom string event that it then parses. This, however, has a
severe size limitation we are frequently hitting with modern
access points; this limitation would can be lifted after this
patch by sending the correct binary, not custom, event.
A similar problem apparently happens for some other netlink
users on x86_64 with 32-bit tasks due to the alignment for
64-bit quantities.
In order to fix these problems, I have implemented a way to
send compat messages to tasks. When sending an event, we send
the non-compat event data together with a compat event data in
skb_shinfo(main_skb)->frag_list. Then, when the event is read
from the socket, the netlink code makes sure to pass out only
the skb that is compatible with the task. This approach was
suggested by David Miller, my original approach required
always sending two skbs but that had various small problems.
To determine whether compat is needed or not, I have used the
MSG_CMSG_COMPAT flag, and adjusted the call path for recv and
recvfrom to include it, even if those calls do not have a cmsg
parameter.
I have not solved one small part of the problem, and I don't
think it is necessary to: if a 32-bit application uses read()
rather than any form of recvmsg() it will still get the wrong
(64-bit) event. However, neither do applications actually do
this, nor would it be a regression.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
2009-07-01 13:26:02 +02:00
|
|
|
#ifdef CONFIG_COMPAT_NETLINK_MESSAGES
|
|
|
|
if (unlikely(skb_shinfo(skb)->frag_list)) {
|
|
|
|
/*
|
netlink: fix compat recvmsg
Since
commit 1dacc76d0014a034b8aca14237c127d7c19d7726
Author: Johannes Berg <johannes@sipsolutions.net>
Date: Wed Jul 1 11:26:02 2009 +0000
net/compat/wext: send different messages to compat tasks
we had a race condition when setting and then
restoring frag_list. Eric attempted to fix it,
but the fix created even worse problems.
However, the original motivation I had when I
added the code that turned out to be racy is
no longer clear to me, since we only copy up
to skb->len to userspace, which doesn't include
the frag_list length. As a result, not doing
any frag_list clearing and restoring avoids
the race condition, while not introducing any
other problems.
Additionally, while preparing this patch I found
that since none of the remaining netlink code is
really aware of the frag_list, we need to use the
original skb's information for packet information
and credentials. This fixes, for example, the
group information received by compat tasks.
Cc: Eric Dumazet <eric.dumazet@gmail.com>
Cc: stable@kernel.org [2.6.31+, for 2.6.35 revert 1235f504aa]
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Acked-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2010-08-15 23:20:44 +02:00
|
|
|
* If this skb has a frag_list, then here that means that we
|
|
|
|
* will have to use the frag_list skb's data for compat tasks
|
|
|
|
* and the regular skb's data for normal (non-compat) tasks.
|
net/compat/wext: send different messages to compat tasks
Wireless extensions have the unfortunate problem that events
are multicast netlink messages, and are not independent of
pointer size. Thus, currently 32-bit tasks on 64-bit platforms
cannot properly receive events and fail with all kinds of
strange problems, for instance wpa_supplicant never notices
disassociations, due to the way the 64-bit event looks (to a
32-bit process), the fact that the address is all zeroes is
lost, it thinks instead it is 00:00:00:00:01:00.
The same problem existed with the ioctls, until David Miller
fixed those some time ago in an heroic effort.
A different problem caused by this is that we cannot send the
ASSOCREQIE/ASSOCRESPIE events because sending them causes a
32-bit wpa_supplicant on a 64-bit system to overwrite its
internal information, which is worse than it not getting the
information at all -- so we currently resort to sending a
custom string event that it then parses. This, however, has a
severe size limitation we are frequently hitting with modern
access points; this limitation would can be lifted after this
patch by sending the correct binary, not custom, event.
A similar problem apparently happens for some other netlink
users on x86_64 with 32-bit tasks due to the alignment for
64-bit quantities.
In order to fix these problems, I have implemented a way to
send compat messages to tasks. When sending an event, we send
the non-compat event data together with a compat event data in
skb_shinfo(main_skb)->frag_list. Then, when the event is read
from the socket, the netlink code makes sure to pass out only
the skb that is compatible with the task. This approach was
suggested by David Miller, my original approach required
always sending two skbs but that had various small problems.
To determine whether compat is needed or not, I have used the
MSG_CMSG_COMPAT flag, and adjusted the call path for recv and
recvfrom to include it, even if those calls do not have a cmsg
parameter.
I have not solved one small part of the problem, and I don't
think it is necessary to: if a 32-bit application uses read()
rather than any form of recvmsg() it will still get the wrong
(64-bit) event. However, neither do applications actually do
this, nor would it be a regression.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
2009-07-01 13:26:02 +02:00
|
|
|
*
|
netlink: fix compat recvmsg
Since
commit 1dacc76d0014a034b8aca14237c127d7c19d7726
Author: Johannes Berg <johannes@sipsolutions.net>
Date: Wed Jul 1 11:26:02 2009 +0000
net/compat/wext: send different messages to compat tasks
we had a race condition when setting and then
restoring frag_list. Eric attempted to fix it,
but the fix created even worse problems.
However, the original motivation I had when I
added the code that turned out to be racy is
no longer clear to me, since we only copy up
to skb->len to userspace, which doesn't include
the frag_list length. As a result, not doing
any frag_list clearing and restoring avoids
the race condition, while not introducing any
other problems.
Additionally, while preparing this patch I found
that since none of the remaining netlink code is
really aware of the frag_list, we need to use the
original skb's information for packet information
and credentials. This fixes, for example, the
group information received by compat tasks.
Cc: Eric Dumazet <eric.dumazet@gmail.com>
Cc: stable@kernel.org [2.6.31+, for 2.6.35 revert 1235f504aa]
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Acked-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2010-08-15 23:20:44 +02:00
|
|
|
* If we need to send the compat skb, assign it to the
|
|
|
|
* 'data_skb' variable so that it will be used below for data
|
|
|
|
* copying. We keep 'skb' for everything else, including
|
|
|
|
* freeing both later.
|
net/compat/wext: send different messages to compat tasks
Wireless extensions have the unfortunate problem that events
are multicast netlink messages, and are not independent of
pointer size. Thus, currently 32-bit tasks on 64-bit platforms
cannot properly receive events and fail with all kinds of
strange problems, for instance wpa_supplicant never notices
disassociations, due to the way the 64-bit event looks (to a
32-bit process), the fact that the address is all zeroes is
lost, it thinks instead it is 00:00:00:00:01:00.
The same problem existed with the ioctls, until David Miller
fixed those some time ago in an heroic effort.
A different problem caused by this is that we cannot send the
ASSOCREQIE/ASSOCRESPIE events because sending them causes a
32-bit wpa_supplicant on a 64-bit system to overwrite its
internal information, which is worse than it not getting the
information at all -- so we currently resort to sending a
custom string event that it then parses. This, however, has a
severe size limitation we are frequently hitting with modern
access points; this limitation would can be lifted after this
patch by sending the correct binary, not custom, event.
A similar problem apparently happens for some other netlink
users on x86_64 with 32-bit tasks due to the alignment for
64-bit quantities.
In order to fix these problems, I have implemented a way to
send compat messages to tasks. When sending an event, we send
the non-compat event data together with a compat event data in
skb_shinfo(main_skb)->frag_list. Then, when the event is read
from the socket, the netlink code makes sure to pass out only
the skb that is compatible with the task. This approach was
suggested by David Miller, my original approach required
always sending two skbs but that had various small problems.
To determine whether compat is needed or not, I have used the
MSG_CMSG_COMPAT flag, and adjusted the call path for recv and
recvfrom to include it, even if those calls do not have a cmsg
parameter.
I have not solved one small part of the problem, and I don't
think it is necessary to: if a 32-bit application uses read()
rather than any form of recvmsg() it will still get the wrong
(64-bit) event. However, neither do applications actually do
this, nor would it be a regression.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
2009-07-01 13:26:02 +02:00
|
|
|
*/
|
netlink: fix compat recvmsg
Since
commit 1dacc76d0014a034b8aca14237c127d7c19d7726
Author: Johannes Berg <johannes@sipsolutions.net>
Date: Wed Jul 1 11:26:02 2009 +0000
net/compat/wext: send different messages to compat tasks
we had a race condition when setting and then
restoring frag_list. Eric attempted to fix it,
but the fix created even worse problems.
However, the original motivation I had when I
added the code that turned out to be racy is
no longer clear to me, since we only copy up
to skb->len to userspace, which doesn't include
the frag_list length. As a result, not doing
any frag_list clearing and restoring avoids
the race condition, while not introducing any
other problems.
Additionally, while preparing this patch I found
that since none of the remaining netlink code is
really aware of the frag_list, we need to use the
original skb's information for packet information
and credentials. This fixes, for example, the
group information received by compat tasks.
Cc: Eric Dumazet <eric.dumazet@gmail.com>
Cc: stable@kernel.org [2.6.31+, for 2.6.35 revert 1235f504aa]
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Acked-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2010-08-15 23:20:44 +02:00
|
|
|
if (flags & MSG_CMSG_COMPAT)
|
|
|
|
data_skb = skb_shinfo(skb)->frag_list;
|
net/compat/wext: send different messages to compat tasks
Wireless extensions have the unfortunate problem that events
are multicast netlink messages, and are not independent of
pointer size. Thus, currently 32-bit tasks on 64-bit platforms
cannot properly receive events and fail with all kinds of
strange problems, for instance wpa_supplicant never notices
disassociations, due to the way the 64-bit event looks (to a
32-bit process), the fact that the address is all zeroes is
lost, it thinks instead it is 00:00:00:00:01:00.
The same problem existed with the ioctls, until David Miller
fixed those some time ago in an heroic effort.
A different problem caused by this is that we cannot send the
ASSOCREQIE/ASSOCRESPIE events because sending them causes a
32-bit wpa_supplicant on a 64-bit system to overwrite its
internal information, which is worse than it not getting the
information at all -- so we currently resort to sending a
custom string event that it then parses. This, however, has a
severe size limitation we are frequently hitting with modern
access points; this limitation would can be lifted after this
patch by sending the correct binary, not custom, event.
A similar problem apparently happens for some other netlink
users on x86_64 with 32-bit tasks due to the alignment for
64-bit quantities.
In order to fix these problems, I have implemented a way to
send compat messages to tasks. When sending an event, we send
the non-compat event data together with a compat event data in
skb_shinfo(main_skb)->frag_list. Then, when the event is read
from the socket, the netlink code makes sure to pass out only
the skb that is compatible with the task. This approach was
suggested by David Miller, my original approach required
always sending two skbs but that had various small problems.
To determine whether compat is needed or not, I have used the
MSG_CMSG_COMPAT flag, and adjusted the call path for recv and
recvfrom to include it, even if those calls do not have a cmsg
parameter.
I have not solved one small part of the problem, and I don't
think it is necessary to: if a 32-bit application uses read()
rather than any form of recvmsg() it will still get the wrong
(64-bit) event. However, neither do applications actually do
this, nor would it be a regression.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
2009-07-01 13:26:02 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
msg->msg_namelen = 0;
|
|
|
|
|
netlink: fix compat recvmsg
Since
commit 1dacc76d0014a034b8aca14237c127d7c19d7726
Author: Johannes Berg <johannes@sipsolutions.net>
Date: Wed Jul 1 11:26:02 2009 +0000
net/compat/wext: send different messages to compat tasks
we had a race condition when setting and then
restoring frag_list. Eric attempted to fix it,
but the fix created even worse problems.
However, the original motivation I had when I
added the code that turned out to be racy is
no longer clear to me, since we only copy up
to skb->len to userspace, which doesn't include
the frag_list length. As a result, not doing
any frag_list clearing and restoring avoids
the race condition, while not introducing any
other problems.
Additionally, while preparing this patch I found
that since none of the remaining netlink code is
really aware of the frag_list, we need to use the
original skb's information for packet information
and credentials. This fixes, for example, the
group information received by compat tasks.
Cc: Eric Dumazet <eric.dumazet@gmail.com>
Cc: stable@kernel.org [2.6.31+, for 2.6.35 revert 1235f504aa]
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Acked-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2010-08-15 23:20:44 +02:00
|
|
|
copied = data_skb->len;
|
2005-04-17 00:20:36 +02:00
|
|
|
if (len < copied) {
|
|
|
|
msg->msg_flags |= MSG_TRUNC;
|
|
|
|
copied = len;
|
|
|
|
}
|
|
|
|
|
netlink: fix compat recvmsg
Since
commit 1dacc76d0014a034b8aca14237c127d7c19d7726
Author: Johannes Berg <johannes@sipsolutions.net>
Date: Wed Jul 1 11:26:02 2009 +0000
net/compat/wext: send different messages to compat tasks
we had a race condition when setting and then
restoring frag_list. Eric attempted to fix it,
but the fix created even worse problems.
However, the original motivation I had when I
added the code that turned out to be racy is
no longer clear to me, since we only copy up
to skb->len to userspace, which doesn't include
the frag_list length. As a result, not doing
any frag_list clearing and restoring avoids
the race condition, while not introducing any
other problems.
Additionally, while preparing this patch I found
that since none of the remaining netlink code is
really aware of the frag_list, we need to use the
original skb's information for packet information
and credentials. This fixes, for example, the
group information received by compat tasks.
Cc: Eric Dumazet <eric.dumazet@gmail.com>
Cc: stable@kernel.org [2.6.31+, for 2.6.35 revert 1235f504aa]
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Acked-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2010-08-15 23:20:44 +02:00
|
|
|
skb_reset_transport_header(data_skb);
|
|
|
|
err = skb_copy_datagram_iovec(data_skb, 0, msg->msg_iov, copied);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
if (msg->msg_name) {
|
2007-12-04 09:19:38 +01:00
|
|
|
struct sockaddr_nl *addr = (struct sockaddr_nl *)msg->msg_name;
|
2005-04-17 00:20:36 +02:00
|
|
|
addr->nl_family = AF_NETLINK;
|
|
|
|
addr->nl_pad = 0;
|
|
|
|
addr->nl_pid = NETLINK_CB(skb).pid;
|
2005-08-15 04:27:50 +02:00
|
|
|
addr->nl_groups = netlink_group_mask(NETLINK_CB(skb).dst_group);
|
2005-04-17 00:20:36 +02:00
|
|
|
msg->msg_namelen = sizeof(*addr);
|
|
|
|
}
|
|
|
|
|
2006-03-13 05:34:27 +01:00
|
|
|
if (nlk->flags & NETLINK_RECV_PKTINFO)
|
|
|
|
netlink_cmsg_recv_pktinfo(msg, skb);
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
if (NULL == siocb->scm) {
|
|
|
|
memset(&scm, 0, sizeof(scm));
|
|
|
|
siocb->scm = &scm;
|
|
|
|
}
|
|
|
|
siocb->scm->creds = *NETLINK_CREDS(skb);
|
2007-05-03 12:27:01 +02:00
|
|
|
if (flags & MSG_TRUNC)
|
netlink: fix compat recvmsg
Since
commit 1dacc76d0014a034b8aca14237c127d7c19d7726
Author: Johannes Berg <johannes@sipsolutions.net>
Date: Wed Jul 1 11:26:02 2009 +0000
net/compat/wext: send different messages to compat tasks
we had a race condition when setting and then
restoring frag_list. Eric attempted to fix it,
but the fix created even worse problems.
However, the original motivation I had when I
added the code that turned out to be racy is
no longer clear to me, since we only copy up
to skb->len to userspace, which doesn't include
the frag_list length. As a result, not doing
any frag_list clearing and restoring avoids
the race condition, while not introducing any
other problems.
Additionally, while preparing this patch I found
that since none of the remaining netlink code is
really aware of the frag_list, we need to use the
original skb's information for packet information
and credentials. This fixes, for example, the
group information received by compat tasks.
Cc: Eric Dumazet <eric.dumazet@gmail.com>
Cc: stable@kernel.org [2.6.31+, for 2.6.35 revert 1235f504aa]
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Acked-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2010-08-15 23:20:44 +02:00
|
|
|
copied = data_skb->len;
|
2010-08-16 08:21:50 +02:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
skb_free_datagram(sk, skb);
|
|
|
|
|
2011-02-21 03:40:47 +01:00
|
|
|
if (nlk->cb && atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf / 2) {
|
|
|
|
ret = netlink_dump(sk);
|
|
|
|
if (ret) {
|
|
|
|
sk->sk_err = ret;
|
|
|
|
sk->sk_error_report(sk);
|
|
|
|
}
|
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
scm_recv(sock, msg, siocb->scm, flags);
|
|
|
|
out:
|
|
|
|
netlink_rcv_wake(sk);
|
|
|
|
return err ? : copied;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void netlink_data_ready(struct sock *sk, int len)
|
|
|
|
{
|
2007-10-11 06:15:29 +02:00
|
|
|
BUG();
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2007-02-09 15:25:07 +01:00
|
|
|
* We export these functions to other modules. They provide a
|
2005-04-17 00:20:36 +02:00
|
|
|
* complete set of kernel non-blocking support for message
|
|
|
|
* queueing.
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct sock *
|
2007-09-12 13:05:38 +02:00
|
|
|
netlink_kernel_create(struct net *net, int unit, unsigned int groups,
|
2007-10-11 06:15:29 +02:00
|
|
|
void (*input)(struct sk_buff *skb),
|
2007-04-20 23:14:21 +02:00
|
|
|
struct mutex *cb_mutex, struct module *module)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
struct socket *sock;
|
|
|
|
struct sock *sk;
|
2005-08-15 04:27:13 +02:00
|
|
|
struct netlink_sock *nlk;
|
2010-10-24 06:27:10 +02:00
|
|
|
struct listeners *listeners = NULL;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-08-29 11:15:24 +02:00
|
|
|
BUG_ON(!nl_table);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-12-04 09:19:38 +01:00
|
|
|
if (unit < 0 || unit >= MAX_LINKS)
|
2005-04-17 00:20:36 +02:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (sock_create_lite(PF_NETLINK, SOCK_DGRAM, unit, &sock))
|
|
|
|
return NULL;
|
|
|
|
|
[NETNS]: Fix race between put_net() and netlink_kernel_create().
The comment about "race free view of the set of network
namespaces" was a bit hasty. Look (there even can be only
one CPU, as discovered by Alexey Dobriyan and Denis Lunev):
put_net()
if (atomic_dec_and_test(&net->refcnt))
/* true */
__put_net(net);
queue_work(...);
/*
* note: the net now has refcnt 0, but still in
* the global list of net namespaces
*/
== re-schedule ==
register_pernet_subsys(&some_ops);
register_pernet_operations(&some_ops);
(*some_ops)->init(net);
/*
* we call netlink_kernel_create() here
* in some places
*/
netlink_kernel_create();
sk_alloc();
get_net(net); /* refcnt = 1 */
/*
* now we drop the net refcount not to
* block the net namespace exit in the
* future (or this can be done on the
* error path)
*/
put_net(sk->sk_net);
if (atomic_dec_and_test(&...))
/*
* true. BOOOM! The net is
* scheduled for release twice
*/
When thinking on this problem, I decided, that getting and
putting the net in init callback is wrong. If some init
callback needs to have a refcount-less reference on the struct
net, _it_ has to be careful himself, rather than relying on
the infrastructure to handle this correctly.
In case of netlink_kernel_create(), the problem is that the
sk_alloc() gets the given namespace, but passing the info
that we don't want to get it inside this call is too heavy.
Instead, I propose to crate the socket inside an init_net
namespace and then re-attach it to the desired one right
after the socket is created.
After doing this, we also have to be careful on error paths
not to drop the reference on the namespace, we didn't get
the one on.
Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
Acked-by: Denis Lunev <den@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2008-01-31 04:31:06 +01:00
|
|
|
/*
|
|
|
|
* We have to just have a reference on the net from sk, but don't
|
|
|
|
* get_net it. Besides, we cannot get and then put the net here.
|
|
|
|
* So we create one inside init_net and the move it to net.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (__netlink_create(&init_net, sock, cb_mutex, unit) < 0)
|
|
|
|
goto out_sock_release_nosk;
|
|
|
|
|
|
|
|
sk = sock->sk;
|
2008-02-29 20:18:32 +01:00
|
|
|
sk_change_net(sk, net);
|
2005-08-10 04:40:55 +02:00
|
|
|
|
2006-03-21 03:52:01 +01:00
|
|
|
if (groups < 32)
|
|
|
|
groups = 32;
|
|
|
|
|
2010-10-24 06:27:10 +02:00
|
|
|
listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL);
|
2006-03-21 03:52:01 +01:00
|
|
|
if (!listeners)
|
|
|
|
goto out_sock_release;
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
sk->sk_data_ready = netlink_data_ready;
|
|
|
|
if (input)
|
2007-10-11 06:15:29 +02:00
|
|
|
nlk_sk(sk)->netlink_rcv = input;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-09-12 13:05:38 +02:00
|
|
|
if (netlink_insert(sk, net, 0))
|
2005-08-15 04:27:13 +02:00
|
|
|
goto out_sock_release;
|
2005-08-10 04:40:55 +02:00
|
|
|
|
2005-08-15 04:27:13 +02:00
|
|
|
nlk = nlk_sk(sk);
|
|
|
|
nlk->flags |= NETLINK_KERNEL_SOCKET;
|
2005-08-10 04:40:55 +02:00
|
|
|
|
|
|
|
netlink_table_grab();
|
2007-09-12 13:05:38 +02:00
|
|
|
if (!nl_table[unit].registered) {
|
|
|
|
nl_table[unit].groups = groups;
|
2010-10-24 06:27:10 +02:00
|
|
|
rcu_assign_pointer(nl_table[unit].listeners, listeners);
|
2007-09-12 13:05:38 +02:00
|
|
|
nl_table[unit].cb_mutex = cb_mutex;
|
|
|
|
nl_table[unit].module = module;
|
|
|
|
nl_table[unit].registered = 1;
|
2007-10-15 10:39:12 +02:00
|
|
|
} else {
|
|
|
|
kfree(listeners);
|
2008-01-19 08:53:31 +01:00
|
|
|
nl_table[unit].registered++;
|
2007-09-12 13:05:38 +02:00
|
|
|
}
|
2005-08-10 04:40:55 +02:00
|
|
|
netlink_table_ungrab();
|
2005-08-15 04:27:13 +02:00
|
|
|
return sk;
|
|
|
|
|
2005-08-10 04:40:55 +02:00
|
|
|
out_sock_release:
|
2006-03-21 03:52:01 +01:00
|
|
|
kfree(listeners);
|
2008-02-29 20:17:56 +01:00
|
|
|
netlink_kernel_release(sk);
|
[NETNS]: Fix race between put_net() and netlink_kernel_create().
The comment about "race free view of the set of network
namespaces" was a bit hasty. Look (there even can be only
one CPU, as discovered by Alexey Dobriyan and Denis Lunev):
put_net()
if (atomic_dec_and_test(&net->refcnt))
/* true */
__put_net(net);
queue_work(...);
/*
* note: the net now has refcnt 0, but still in
* the global list of net namespaces
*/
== re-schedule ==
register_pernet_subsys(&some_ops);
register_pernet_operations(&some_ops);
(*some_ops)->init(net);
/*
* we call netlink_kernel_create() here
* in some places
*/
netlink_kernel_create();
sk_alloc();
get_net(net); /* refcnt = 1 */
/*
* now we drop the net refcount not to
* block the net namespace exit in the
* future (or this can be done on the
* error path)
*/
put_net(sk->sk_net);
if (atomic_dec_and_test(&...))
/*
* true. BOOOM! The net is
* scheduled for release twice
*/
When thinking on this problem, I decided, that getting and
putting the net in init callback is wrong. If some init
callback needs to have a refcount-less reference on the struct
net, _it_ has to be careful himself, rather than relying on
the infrastructure to handle this correctly.
In case of netlink_kernel_create(), the problem is that the
sk_alloc() gets the given namespace, but passing the info
that we don't want to get it inside this call is too heavy.
Instead, I propose to crate the socket inside an init_net
namespace and then re-attach it to the desired one right
after the socket is created.
After doing this, we also have to be careful on error paths
not to drop the reference on the namespace, we didn't get
the one on.
Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
Acked-by: Denis Lunev <den@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2008-01-31 04:31:06 +01:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
out_sock_release_nosk:
|
2005-08-10 04:40:55 +02:00
|
|
|
sock_release(sock);
|
2005-08-15 04:27:13 +02:00
|
|
|
return NULL;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
2007-12-04 09:19:38 +01:00
|
|
|
EXPORT_SYMBOL(netlink_kernel_create);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2008-01-28 23:41:19 +01:00
|
|
|
|
|
|
|
void
|
|
|
|
netlink_kernel_release(struct sock *sk)
|
|
|
|
{
|
2008-02-29 20:18:32 +01:00
|
|
|
sk_release_kernel(sk);
|
2008-01-28 23:41:19 +01:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(netlink_kernel_release);
|
|
|
|
|
|
|
|
|
2010-10-24 06:27:10 +02:00
|
|
|
static void listeners_free_rcu(struct rcu_head *head)
|
2009-07-10 11:51:32 +02:00
|
|
|
{
|
2010-10-24 06:27:10 +02:00
|
|
|
kfree(container_of(head, struct listeners, rcu));
|
2009-07-10 11:51:32 +02:00
|
|
|
}
|
|
|
|
|
2009-09-12 05:03:15 +02:00
|
|
|
int __netlink_change_ngroups(struct sock *sk, unsigned int groups)
|
2007-07-19 00:46:06 +02:00
|
|
|
{
|
2010-10-24 06:27:10 +02:00
|
|
|
struct listeners *new, *old;
|
2007-07-19 00:46:06 +02:00
|
|
|
struct netlink_table *tbl = &nl_table[sk->sk_protocol];
|
|
|
|
|
|
|
|
if (groups < 32)
|
|
|
|
groups = 32;
|
|
|
|
|
|
|
|
if (NLGRPSZ(tbl->groups) < NLGRPSZ(groups)) {
|
2010-10-24 06:27:10 +02:00
|
|
|
new = kzalloc(sizeof(*new) + NLGRPSZ(groups), GFP_ATOMIC);
|
|
|
|
if (!new)
|
2009-09-12 05:03:15 +02:00
|
|
|
return -ENOMEM;
|
2010-10-24 06:27:10 +02:00
|
|
|
old = rcu_dereference_raw(tbl->listeners);
|
|
|
|
memcpy(new->masks, old->masks, NLGRPSZ(tbl->groups));
|
|
|
|
rcu_assign_pointer(tbl->listeners, new);
|
|
|
|
|
|
|
|
call_rcu(&old->rcu, listeners_free_rcu);
|
2007-07-19 00:46:06 +02:00
|
|
|
}
|
|
|
|
tbl->groups = groups;
|
|
|
|
|
2009-09-12 05:03:15 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* netlink_change_ngroups - change number of multicast groups
|
|
|
|
*
|
|
|
|
* This changes the number of multicast groups that are available
|
|
|
|
* on a certain netlink family. Note that it is not possible to
|
|
|
|
* change the number of groups to below 32. Also note that it does
|
|
|
|
* not implicitly call netlink_clear_multicast_users() when the
|
|
|
|
* number of groups is reduced.
|
|
|
|
*
|
|
|
|
* @sk: The kernel netlink socket, as returned by netlink_kernel_create().
|
|
|
|
* @groups: The new number of groups.
|
|
|
|
*/
|
|
|
|
int netlink_change_ngroups(struct sock *sk, unsigned int groups)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
|
|
|
netlink_table_grab();
|
|
|
|
err = __netlink_change_ngroups(sk, groups);
|
2007-07-19 00:46:06 +02:00
|
|
|
netlink_table_ungrab();
|
2009-09-12 05:03:15 +02:00
|
|
|
|
2007-07-19 00:46:06 +02:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2009-09-25 00:44:05 +02:00
|
|
|
void __netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
|
|
|
|
{
|
|
|
|
struct sock *sk;
|
|
|
|
struct hlist_node *node;
|
|
|
|
struct netlink_table *tbl = &nl_table[ksk->sk_protocol];
|
|
|
|
|
|
|
|
sk_for_each_bound(sk, node, &tbl->mc_list)
|
|
|
|
netlink_update_socket_mc(nlk_sk(sk), group, 0);
|
|
|
|
}
|
|
|
|
|
2007-07-19 00:47:05 +02:00
|
|
|
/**
|
|
|
|
* netlink_clear_multicast_users - kick off multicast listeners
|
|
|
|
*
|
|
|
|
* This function removes all listeners from the given group.
|
|
|
|
* @ksk: The kernel netlink socket, as returned by
|
|
|
|
* netlink_kernel_create().
|
|
|
|
* @group: The multicast group to clear.
|
|
|
|
*/
|
|
|
|
void netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
|
|
|
|
{
|
|
|
|
netlink_table_grab();
|
2009-09-25 00:44:05 +02:00
|
|
|
__netlink_clear_multicast_users(ksk, group);
|
2007-07-19 00:47:05 +02:00
|
|
|
netlink_table_ungrab();
|
|
|
|
}
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
void netlink_set_nonroot(int protocol, unsigned int flags)
|
2007-02-09 15:25:07 +01:00
|
|
|
{
|
|
|
|
if ((unsigned int)protocol < MAX_LINKS)
|
2005-04-17 00:20:36 +02:00
|
|
|
nl_table[protocol].nl_nonroot = flags;
|
2007-02-09 15:25:07 +01:00
|
|
|
}
|
2007-12-04 09:19:38 +01:00
|
|
|
EXPORT_SYMBOL(netlink_set_nonroot);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
static void netlink_destroy_callback(struct netlink_callback *cb)
|
|
|
|
{
|
2009-02-25 01:34:41 +01:00
|
|
|
kfree_skb(cb->skb);
|
2005-04-17 00:20:36 +02:00
|
|
|
kfree(cb);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* It looks a bit ugly.
|
|
|
|
* It would be better to create kernel thread.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int netlink_dump(struct sock *sk)
|
|
|
|
{
|
|
|
|
struct netlink_sock *nlk = nlk_sk(sk);
|
|
|
|
struct netlink_callback *cb;
|
|
|
|
struct sk_buff *skb;
|
|
|
|
struct nlmsghdr *nlh;
|
2006-08-05 08:03:29 +02:00
|
|
|
int len, err = -ENOBUFS;
|
2007-02-09 15:25:07 +01:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
skb = sock_rmalloc(sk, NLMSG_GOODSIZE, 0, GFP_KERNEL);
|
|
|
|
if (!skb)
|
2006-08-05 08:03:29 +02:00
|
|
|
goto errout;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-20 23:14:21 +02:00
|
|
|
mutex_lock(nlk->cb_mutex);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
cb = nlk->cb;
|
|
|
|
if (cb == NULL) {
|
2006-08-05 08:03:29 +02:00
|
|
|
err = -EINVAL;
|
|
|
|
goto errout_skb;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
len = cb->dump(skb, cb);
|
|
|
|
|
|
|
|
if (len > 0) {
|
2007-04-20 23:14:21 +02:00
|
|
|
mutex_unlock(nlk->cb_mutex);
|
2008-03-21 23:46:12 +01:00
|
|
|
|
|
|
|
if (sk_filter(sk, skb))
|
|
|
|
kfree_skb(skb);
|
|
|
|
else {
|
|
|
|
skb_queue_tail(&sk->sk_receive_queue, skb);
|
|
|
|
sk->sk_data_ready(sk, skb->len);
|
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-08-05 08:03:29 +02:00
|
|
|
nlh = nlmsg_put_answer(skb, cb, NLMSG_DONE, sizeof(len), NLM_F_MULTI);
|
|
|
|
if (!nlh)
|
|
|
|
goto errout_skb;
|
|
|
|
|
|
|
|
memcpy(nlmsg_data(nlh), &len, sizeof(len));
|
|
|
|
|
2008-03-21 23:46:12 +01:00
|
|
|
if (sk_filter(sk, skb))
|
|
|
|
kfree_skb(skb);
|
|
|
|
else {
|
|
|
|
skb_queue_tail(&sk->sk_receive_queue, skb);
|
|
|
|
sk->sk_data_ready(sk, skb->len);
|
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-11-10 02:25:52 +01:00
|
|
|
if (cb->done)
|
|
|
|
cb->done(cb);
|
2005-04-17 00:20:36 +02:00
|
|
|
nlk->cb = NULL;
|
2007-04-20 23:14:21 +02:00
|
|
|
mutex_unlock(nlk->cb_mutex);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
netlink_destroy_callback(cb);
|
|
|
|
return 0;
|
2005-06-19 07:53:48 +02:00
|
|
|
|
2006-08-05 08:03:29 +02:00
|
|
|
errout_skb:
|
2007-04-20 23:14:21 +02:00
|
|
|
mutex_unlock(nlk->cb_mutex);
|
2006-08-05 08:03:29 +02:00
|
|
|
kfree_skb(skb);
|
|
|
|
errout:
|
|
|
|
return err;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
|
2009-08-25 16:07:40 +02:00
|
|
|
const struct nlmsghdr *nlh,
|
2007-12-04 09:19:38 +01:00
|
|
|
int (*dump)(struct sk_buff *skb,
|
|
|
|
struct netlink_callback *),
|
|
|
|
int (*done)(struct netlink_callback *))
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
struct netlink_callback *cb;
|
|
|
|
struct sock *sk;
|
|
|
|
struct netlink_sock *nlk;
|
2011-02-21 03:40:47 +01:00
|
|
|
int ret;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-07-21 23:51:30 +02:00
|
|
|
cb = kzalloc(sizeof(*cb), GFP_KERNEL);
|
2005-04-17 00:20:36 +02:00
|
|
|
if (cb == NULL)
|
|
|
|
return -ENOBUFS;
|
|
|
|
|
|
|
|
cb->dump = dump;
|
|
|
|
cb->done = done;
|
|
|
|
cb->nlh = nlh;
|
|
|
|
atomic_inc(&skb->users);
|
|
|
|
cb->skb = skb;
|
|
|
|
|
2008-03-25 18:26:21 +01:00
|
|
|
sk = netlink_lookup(sock_net(ssk), ssk->sk_protocol, NETLINK_CB(skb).pid);
|
2005-04-17 00:20:36 +02:00
|
|
|
if (sk == NULL) {
|
|
|
|
netlink_destroy_callback(cb);
|
|
|
|
return -ECONNREFUSED;
|
|
|
|
}
|
|
|
|
nlk = nlk_sk(sk);
|
2007-05-03 12:17:14 +02:00
|
|
|
/* A dump is in progress... */
|
2007-04-20 23:14:21 +02:00
|
|
|
mutex_lock(nlk->cb_mutex);
|
2007-05-03 12:17:14 +02:00
|
|
|
if (nlk->cb) {
|
2007-04-20 23:14:21 +02:00
|
|
|
mutex_unlock(nlk->cb_mutex);
|
2005-04-17 00:20:36 +02:00
|
|
|
netlink_destroy_callback(cb);
|
|
|
|
sock_put(sk);
|
|
|
|
return -EBUSY;
|
|
|
|
}
|
|
|
|
nlk->cb = cb;
|
2007-04-20 23:14:21 +02:00
|
|
|
mutex_unlock(nlk->cb_mutex);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2011-02-21 03:40:47 +01:00
|
|
|
ret = netlink_dump(sk);
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
sock_put(sk);
|
2007-10-24 05:29:25 +02:00
|
|
|
|
2011-02-21 03:40:47 +01:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2007-10-24 05:29:25 +02:00
|
|
|
/* We successfully started a dump, by returning -EINTR we
|
|
|
|
* signal not to send ACK even if it was requested.
|
|
|
|
*/
|
|
|
|
return -EINTR;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
2007-12-04 09:19:38 +01:00
|
|
|
EXPORT_SYMBOL(netlink_dump_start);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err)
|
|
|
|
{
|
|
|
|
struct sk_buff *skb;
|
|
|
|
struct nlmsghdr *rep;
|
|
|
|
struct nlmsgerr *errmsg;
|
2006-11-10 23:10:15 +01:00
|
|
|
size_t payload = sizeof(*errmsg);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-11-10 23:10:15 +01:00
|
|
|
/* error messages get the original request appened */
|
|
|
|
if (err)
|
|
|
|
payload += nlmsg_len(nlh);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-11-10 23:10:15 +01:00
|
|
|
skb = nlmsg_new(payload, GFP_KERNEL);
|
2005-04-17 00:20:36 +02:00
|
|
|
if (!skb) {
|
|
|
|
struct sock *sk;
|
|
|
|
|
2008-03-25 18:26:21 +01:00
|
|
|
sk = netlink_lookup(sock_net(in_skb->sk),
|
2007-09-12 13:05:38 +02:00
|
|
|
in_skb->sk->sk_protocol,
|
2005-04-17 00:20:36 +02:00
|
|
|
NETLINK_CB(in_skb).pid);
|
|
|
|
if (sk) {
|
|
|
|
sk->sk_err = ENOBUFS;
|
|
|
|
sk->sk_error_report(sk);
|
|
|
|
sock_put(sk);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
rep = __nlmsg_put(skb, NETLINK_CB(in_skb).pid, nlh->nlmsg_seq,
|
2009-09-25 15:11:44 +02:00
|
|
|
NLMSG_ERROR, payload, 0);
|
2006-08-05 08:03:29 +02:00
|
|
|
errmsg = nlmsg_data(rep);
|
2005-04-17 00:20:36 +02:00
|
|
|
errmsg->error = err;
|
2006-08-05 08:03:29 +02:00
|
|
|
memcpy(&errmsg->msg, nlh, err ? nlh->nlmsg_len : sizeof(*nlh));
|
2005-04-17 00:20:36 +02:00
|
|
|
netlink_unicast(in_skb->sk, skb, NETLINK_CB(in_skb).pid, MSG_DONTWAIT);
|
|
|
|
}
|
2007-12-04 09:19:38 +01:00
|
|
|
EXPORT_SYMBOL(netlink_ack);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-10-11 06:15:29 +02:00
|
|
|
int netlink_rcv_skb(struct sk_buff *skb, int (*cb)(struct sk_buff *,
|
2007-03-23 07:30:12 +01:00
|
|
|
struct nlmsghdr *))
|
2005-11-10 02:25:53 +01:00
|
|
|
{
|
|
|
|
struct nlmsghdr *nlh;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
while (skb->len >= nlmsg_total_size(0)) {
|
2007-10-11 06:15:29 +02:00
|
|
|
int msglen;
|
|
|
|
|
2007-04-26 04:08:35 +02:00
|
|
|
nlh = nlmsg_hdr(skb);
|
2007-03-23 07:28:46 +01:00
|
|
|
err = 0;
|
2005-11-10 02:25:53 +01:00
|
|
|
|
2006-01-10 22:02:29 +01:00
|
|
|
if (nlh->nlmsg_len < NLMSG_HDRLEN || skb->len < nlh->nlmsg_len)
|
2005-11-10 02:25:53 +01:00
|
|
|
return 0;
|
|
|
|
|
2007-03-23 07:28:46 +01:00
|
|
|
/* Only requests are handled by the kernel */
|
|
|
|
if (!(nlh->nlmsg_flags & NLM_F_REQUEST))
|
2007-10-24 05:29:25 +02:00
|
|
|
goto ack;
|
2007-03-23 07:29:10 +01:00
|
|
|
|
|
|
|
/* Skip control messages */
|
|
|
|
if (nlh->nlmsg_type < NLMSG_MIN_TYPE)
|
2007-10-24 05:29:25 +02:00
|
|
|
goto ack;
|
2007-03-23 07:28:46 +01:00
|
|
|
|
2007-03-23 07:30:12 +01:00
|
|
|
err = cb(skb, nlh);
|
2007-10-24 05:29:25 +02:00
|
|
|
if (err == -EINTR)
|
|
|
|
goto skip;
|
|
|
|
|
|
|
|
ack:
|
2007-03-23 07:28:46 +01:00
|
|
|
if (nlh->nlmsg_flags & NLM_F_ACK || err)
|
2005-11-10 02:25:53 +01:00
|
|
|
netlink_ack(skb, nlh, err);
|
|
|
|
|
2007-10-24 05:29:25 +02:00
|
|
|
skip:
|
2007-12-04 09:19:38 +01:00
|
|
|
msglen = NLMSG_ALIGN(nlh->nlmsg_len);
|
2007-10-11 06:15:29 +02:00
|
|
|
if (msglen > skb->len)
|
|
|
|
msglen = skb->len;
|
|
|
|
skb_pull(skb, msglen);
|
2005-11-10 02:25:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2007-12-04 09:19:38 +01:00
|
|
|
EXPORT_SYMBOL(netlink_rcv_skb);
|
2005-11-10 02:25:53 +01:00
|
|
|
|
2006-08-15 09:31:06 +02:00
|
|
|
/**
|
|
|
|
* nlmsg_notify - send a notification netlink message
|
|
|
|
* @sk: netlink socket to use
|
|
|
|
* @skb: notification message
|
|
|
|
* @pid: destination netlink pid for reports or 0
|
|
|
|
* @group: destination multicast group or 0
|
|
|
|
* @report: 1 to report back, 0 to disable
|
|
|
|
* @flags: allocation flags
|
|
|
|
*/
|
|
|
|
int nlmsg_notify(struct sock *sk, struct sk_buff *skb, u32 pid,
|
|
|
|
unsigned int group, int report, gfp_t flags)
|
|
|
|
{
|
|
|
|
int err = 0;
|
|
|
|
|
|
|
|
if (group) {
|
|
|
|
int exclude_pid = 0;
|
|
|
|
|
|
|
|
if (report) {
|
|
|
|
atomic_inc(&skb->users);
|
|
|
|
exclude_pid = pid;
|
|
|
|
}
|
|
|
|
|
2009-02-25 08:18:28 +01:00
|
|
|
/* errors reported via destination sk->sk_err, but propagate
|
|
|
|
* delivery errors if NETLINK_BROADCAST_ERROR flag is set */
|
|
|
|
err = nlmsg_multicast(sk, skb, exclude_pid, group, flags);
|
2006-08-15 09:31:06 +02:00
|
|
|
}
|
|
|
|
|
2009-02-25 08:18:28 +01:00
|
|
|
if (report) {
|
|
|
|
int err2;
|
|
|
|
|
|
|
|
err2 = nlmsg_unicast(sk, skb, pid);
|
|
|
|
if (!err || err == -ESRCH)
|
|
|
|
err = err2;
|
|
|
|
}
|
2006-08-15 09:31:06 +02:00
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
2007-12-04 09:19:38 +01:00
|
|
|
EXPORT_SYMBOL(nlmsg_notify);
|
2006-08-15 09:31:06 +02:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
#ifdef CONFIG_PROC_FS
|
|
|
|
struct nl_seq_iter {
|
2007-11-20 07:31:54 +01:00
|
|
|
struct seq_net_private p;
|
2005-04-17 00:20:36 +02:00
|
|
|
int link;
|
|
|
|
int hash_idx;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct sock *netlink_seq_socket_idx(struct seq_file *seq, loff_t pos)
|
|
|
|
{
|
|
|
|
struct nl_seq_iter *iter = seq->private;
|
|
|
|
int i, j;
|
|
|
|
struct sock *s;
|
|
|
|
struct hlist_node *node;
|
|
|
|
loff_t off = 0;
|
|
|
|
|
2007-12-04 09:19:38 +01:00
|
|
|
for (i = 0; i < MAX_LINKS; i++) {
|
2005-04-17 00:20:36 +02:00
|
|
|
struct nl_pid_hash *hash = &nl_table[i].hash;
|
|
|
|
|
|
|
|
for (j = 0; j <= hash->mask; j++) {
|
|
|
|
sk_for_each(s, node, &hash->table[j]) {
|
2008-03-25 18:36:06 +01:00
|
|
|
if (sock_net(s) != seq_file_net(seq))
|
2007-09-12 13:05:38 +02:00
|
|
|
continue;
|
2005-04-17 00:20:36 +02:00
|
|
|
if (off == pos) {
|
|
|
|
iter->link = i;
|
|
|
|
iter->hash_idx = j;
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
++off;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *netlink_seq_start(struct seq_file *seq, loff_t *pos)
|
2008-01-02 06:58:02 +01:00
|
|
|
__acquires(nl_table_lock)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
read_lock(&nl_table_lock);
|
|
|
|
return *pos ? netlink_seq_socket_idx(seq, *pos - 1) : SEQ_START_TOKEN;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *netlink_seq_next(struct seq_file *seq, void *v, loff_t *pos)
|
|
|
|
{
|
|
|
|
struct sock *s;
|
|
|
|
struct nl_seq_iter *iter;
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
++*pos;
|
|
|
|
|
|
|
|
if (v == SEQ_START_TOKEN)
|
|
|
|
return netlink_seq_socket_idx(seq, 0);
|
2007-02-09 15:25:07 +01:00
|
|
|
|
2007-09-12 13:05:38 +02:00
|
|
|
iter = seq->private;
|
|
|
|
s = v;
|
|
|
|
do {
|
|
|
|
s = sk_next(s);
|
2008-03-25 18:36:06 +01:00
|
|
|
} while (s && sock_net(s) != seq_file_net(seq));
|
2005-04-17 00:20:36 +02:00
|
|
|
if (s)
|
|
|
|
return s;
|
|
|
|
|
|
|
|
i = iter->link;
|
|
|
|
j = iter->hash_idx + 1;
|
|
|
|
|
|
|
|
do {
|
|
|
|
struct nl_pid_hash *hash = &nl_table[i].hash;
|
|
|
|
|
|
|
|
for (; j <= hash->mask; j++) {
|
|
|
|
s = sk_head(&hash->table[j]);
|
2008-03-25 18:36:06 +01:00
|
|
|
while (s && sock_net(s) != seq_file_net(seq))
|
2007-09-12 13:05:38 +02:00
|
|
|
s = sk_next(s);
|
2005-04-17 00:20:36 +02:00
|
|
|
if (s) {
|
|
|
|
iter->link = i;
|
|
|
|
iter->hash_idx = j;
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
j = 0;
|
|
|
|
} while (++i < MAX_LINKS);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void netlink_seq_stop(struct seq_file *seq, void *v)
|
2008-01-02 06:58:02 +01:00
|
|
|
__releases(nl_table_lock)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
read_unlock(&nl_table_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int netlink_seq_show(struct seq_file *seq, void *v)
|
|
|
|
{
|
|
|
|
if (v == SEQ_START_TOKEN)
|
|
|
|
seq_puts(seq,
|
|
|
|
"sk Eth Pid Groups "
|
netlink: Adding inode field to /proc/net/netlink
The Inode field in /proc/net/{tcp,udp,packet,raw,...} is useful to know the types of
file descriptors associated to a process. Actually lsof utility uses the field.
Unfortunately, unlike /proc/net/{tcp,udp,packet,raw,...}, /proc/net/netlink doesn't have the field.
This patch adds the field to /proc/net/netlink.
Signed-off-by: Masatake YAMATO <yamato@redhat.com>
Acked-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2010-02-27 20:45:37 +01:00
|
|
|
"Rmem Wmem Dump Locks Drops Inode\n");
|
2005-04-17 00:20:36 +02:00
|
|
|
else {
|
|
|
|
struct sock *s = v;
|
|
|
|
struct netlink_sock *nlk = nlk_sk(s);
|
|
|
|
|
netlink: Adding inode field to /proc/net/netlink
The Inode field in /proc/net/{tcp,udp,packet,raw,...} is useful to know the types of
file descriptors associated to a process. Actually lsof utility uses the field.
Unfortunately, unlike /proc/net/{tcp,udp,packet,raw,...}, /proc/net/netlink doesn't have the field.
This patch adds the field to /proc/net/netlink.
Signed-off-by: Masatake YAMATO <yamato@redhat.com>
Acked-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2010-02-27 20:45:37 +01:00
|
|
|
seq_printf(seq, "%p %-3d %-6d %08x %-8d %-8d %p %-8d %-8d %-8lu\n",
|
2005-04-17 00:20:36 +02:00
|
|
|
s,
|
|
|
|
s->sk_protocol,
|
|
|
|
nlk->pid,
|
2005-09-07 00:43:59 +02:00
|
|
|
nlk->groups ? (u32)nlk->groups[0] : 0,
|
2009-06-18 04:05:41 +02:00
|
|
|
sk_rmem_alloc_get(s),
|
|
|
|
sk_wmem_alloc_get(s),
|
2005-04-17 00:20:36 +02:00
|
|
|
nlk->cb,
|
netlink: add NETLINK_NO_ENOBUFS socket flag
This patch adds the NETLINK_NO_ENOBUFS socket flag. This flag can
be used by unicast and broadcast listeners to avoid receiving
ENOBUFS errors.
Generally speaking, ENOBUFS errors are useful to notify two things
to the listener:
a) You may increase the receiver buffer size via setsockopt().
b) You have lost messages, you may be out of sync.
In some cases, ignoring ENOBUFS errors can be useful. For example:
a) nfnetlink_queue: this subsystem does not have any sort of resync
method and you can decide to ignore ENOBUFS once you have set a
given buffer size.
b) ctnetlink: you can use this together with the socket flag
NETLINK_BROADCAST_SEND_ERROR to stop getting ENOBUFS errors as
you do not need to resync (packets whose event are not delivered
are drop to provide reliable logging and state-synchronization).
Moreover, the use of NETLINK_NO_ENOBUFS also reduces a "go up, go down"
effect in terms of performance which is due to the netlink congestion
control when the listener cannot back off. The effect is the following:
1) throughput rate goes up and netlink messages are inserted in the
receiver buffer.
2) Then, netlink buffer fills and overruns (set on nlk->state bit 0).
3) While the listener empties the receiver buffer, netlink keeps
dropping messages. Thus, throughput goes dramatically down.
4) Then, once the listener has emptied the buffer (nlk->state
bit 0 is set off), goto step 1.
This effect is easy to trigger with netlink broadcast under heavy
load, and it is more noticeable when using a big receiver buffer.
You can find some results in [1] that show this problem.
[1] http://1984.lsi.us.es/linux/netlink/
This patch also includes the use of sk_drop to account the number of
netlink messages drop due to overrun. This value is shown in
/proc/net/netlink.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2009-03-25 00:37:55 +01:00
|
|
|
atomic_read(&s->sk_refcnt),
|
netlink: Adding inode field to /proc/net/netlink
The Inode field in /proc/net/{tcp,udp,packet,raw,...} is useful to know the types of
file descriptors associated to a process. Actually lsof utility uses the field.
Unfortunately, unlike /proc/net/{tcp,udp,packet,raw,...}, /proc/net/netlink doesn't have the field.
This patch adds the field to /proc/net/netlink.
Signed-off-by: Masatake YAMATO <yamato@redhat.com>
Acked-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2010-02-27 20:45:37 +01:00
|
|
|
atomic_read(&s->sk_drops),
|
|
|
|
sock_i_ino(s)
|
2005-04-17 00:20:36 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-07-11 08:07:31 +02:00
|
|
|
static const struct seq_operations netlink_seq_ops = {
|
2005-04-17 00:20:36 +02:00
|
|
|
.start = netlink_seq_start,
|
|
|
|
.next = netlink_seq_next,
|
|
|
|
.stop = netlink_seq_stop,
|
|
|
|
.show = netlink_seq_show,
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static int netlink_seq_open(struct inode *inode, struct file *file)
|
|
|
|
{
|
2007-11-20 07:31:54 +01:00
|
|
|
return seq_open_net(inode, file, &netlink_seq_ops,
|
|
|
|
sizeof(struct nl_seq_iter));
|
2007-09-12 13:05:38 +02:00
|
|
|
}
|
|
|
|
|
2007-02-12 09:55:36 +01:00
|
|
|
static const struct file_operations netlink_seq_fops = {
|
2005-04-17 00:20:36 +02:00
|
|
|
.owner = THIS_MODULE,
|
|
|
|
.open = netlink_seq_open,
|
|
|
|
.read = seq_read,
|
|
|
|
.llseek = seq_lseek,
|
2007-11-20 07:31:54 +01:00
|
|
|
.release = seq_release_net,
|
2005-04-17 00:20:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int netlink_register_notifier(struct notifier_block *nb)
|
|
|
|
{
|
[PATCH] Notifier chain update: API changes
The kernel's implementation of notifier chains is unsafe. There is no
protection against entries being added to or removed from a chain while the
chain is in use. The issues were discussed in this thread:
http://marc.theaimsgroup.com/?l=linux-kernel&m=113018709002036&w=2
We noticed that notifier chains in the kernel fall into two basic usage
classes:
"Blocking" chains are always called from a process context
and the callout routines are allowed to sleep;
"Atomic" chains can be called from an atomic context and
the callout routines are not allowed to sleep.
We decided to codify this distinction and make it part of the API. Therefore
this set of patches introduces three new, parallel APIs: one for blocking
notifiers, one for atomic notifiers, and one for "raw" notifiers (which is
really just the old API under a new name). New kinds of data structures are
used for the heads of the chains, and new routines are defined for
registration, unregistration, and calling a chain. The three APIs are
explained in include/linux/notifier.h and their implementation is in
kernel/sys.c.
With atomic and blocking chains, the implementation guarantees that the chain
links will not be corrupted and that chain callers will not get messed up by
entries being added or removed. For raw chains the implementation provides no
guarantees at all; users of this API must provide their own protections. (The
idea was that situations may come up where the assumptions of the atomic and
blocking APIs are not appropriate, so it should be possible for users to
handle these things in their own way.)
There are some limitations, which should not be too hard to live with. For
atomic/blocking chains, registration and unregistration must always be done in
a process context since the chain is protected by a mutex/rwsem. Also, a
callout routine for a non-raw chain must not try to register or unregister
entries on its own chain. (This did happen in a couple of places and the code
had to be changed to avoid it.)
Since atomic chains may be called from within an NMI handler, they cannot use
spinlocks for synchronization. Instead we use RCU. The overhead falls almost
entirely in the unregister routine, which is okay since unregistration is much
less frequent that calling a chain.
Here is the list of chains that we adjusted and their classifications. None
of them use the raw API, so for the moment it is only a placeholder.
ATOMIC CHAINS
-------------
arch/i386/kernel/traps.c: i386die_chain
arch/ia64/kernel/traps.c: ia64die_chain
arch/powerpc/kernel/traps.c: powerpc_die_chain
arch/sparc64/kernel/traps.c: sparc64die_chain
arch/x86_64/kernel/traps.c: die_chain
drivers/char/ipmi/ipmi_si_intf.c: xaction_notifier_list
kernel/panic.c: panic_notifier_list
kernel/profile.c: task_free_notifier
net/bluetooth/hci_core.c: hci_notifier
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_chain
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_expect_chain
net/ipv6/addrconf.c: inet6addr_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_expect_chain
net/netlink/af_netlink.c: netlink_chain
BLOCKING CHAINS
---------------
arch/powerpc/platforms/pseries/reconfig.c: pSeries_reconfig_chain
arch/s390/kernel/process.c: idle_chain
arch/x86_64/kernel/process.c idle_notifier
drivers/base/memory.c: memory_chain
drivers/cpufreq/cpufreq.c cpufreq_policy_notifier_list
drivers/cpufreq/cpufreq.c cpufreq_transition_notifier_list
drivers/macintosh/adb.c: adb_client_list
drivers/macintosh/via-pmu.c sleep_notifier_list
drivers/macintosh/via-pmu68k.c sleep_notifier_list
drivers/macintosh/windfarm_core.c wf_client_list
drivers/usb/core/notify.c usb_notifier_list
drivers/video/fbmem.c fb_notifier_list
kernel/cpu.c cpu_chain
kernel/module.c module_notify_list
kernel/profile.c munmap_notifier
kernel/profile.c task_exit_notifier
kernel/sys.c reboot_notifier_list
net/core/dev.c netdev_chain
net/decnet/dn_dev.c: dnaddr_chain
net/ipv4/devinet.c: inetaddr_chain
It's possible that some of these classifications are wrong. If they are,
please let us know or submit a patch to fix them. Note that any chain that
gets called very frequently should be atomic, because the rwsem read-locking
used for blocking chains is very likely to incur cache misses on SMP systems.
(However, if the chain's callout routines may sleep then the chain cannot be
atomic.)
The patch set was written by Alan Stern and Chandra Seetharaman, incorporating
material written by Keith Owens and suggestions from Paul McKenney and Andrew
Morton.
[jes@sgi.com: restructure the notifier chain initialization macros]
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Chandra Seetharaman <sekharan@us.ibm.com>
Signed-off-by: Jes Sorensen <jes@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-03-27 11:16:30 +02:00
|
|
|
return atomic_notifier_chain_register(&netlink_chain, nb);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
2007-12-04 09:19:38 +01:00
|
|
|
EXPORT_SYMBOL(netlink_register_notifier);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
int netlink_unregister_notifier(struct notifier_block *nb)
|
|
|
|
{
|
[PATCH] Notifier chain update: API changes
The kernel's implementation of notifier chains is unsafe. There is no
protection against entries being added to or removed from a chain while the
chain is in use. The issues were discussed in this thread:
http://marc.theaimsgroup.com/?l=linux-kernel&m=113018709002036&w=2
We noticed that notifier chains in the kernel fall into two basic usage
classes:
"Blocking" chains are always called from a process context
and the callout routines are allowed to sleep;
"Atomic" chains can be called from an atomic context and
the callout routines are not allowed to sleep.
We decided to codify this distinction and make it part of the API. Therefore
this set of patches introduces three new, parallel APIs: one for blocking
notifiers, one for atomic notifiers, and one for "raw" notifiers (which is
really just the old API under a new name). New kinds of data structures are
used for the heads of the chains, and new routines are defined for
registration, unregistration, and calling a chain. The three APIs are
explained in include/linux/notifier.h and their implementation is in
kernel/sys.c.
With atomic and blocking chains, the implementation guarantees that the chain
links will not be corrupted and that chain callers will not get messed up by
entries being added or removed. For raw chains the implementation provides no
guarantees at all; users of this API must provide their own protections. (The
idea was that situations may come up where the assumptions of the atomic and
blocking APIs are not appropriate, so it should be possible for users to
handle these things in their own way.)
There are some limitations, which should not be too hard to live with. For
atomic/blocking chains, registration and unregistration must always be done in
a process context since the chain is protected by a mutex/rwsem. Also, a
callout routine for a non-raw chain must not try to register or unregister
entries on its own chain. (This did happen in a couple of places and the code
had to be changed to avoid it.)
Since atomic chains may be called from within an NMI handler, they cannot use
spinlocks for synchronization. Instead we use RCU. The overhead falls almost
entirely in the unregister routine, which is okay since unregistration is much
less frequent that calling a chain.
Here is the list of chains that we adjusted and their classifications. None
of them use the raw API, so for the moment it is only a placeholder.
ATOMIC CHAINS
-------------
arch/i386/kernel/traps.c: i386die_chain
arch/ia64/kernel/traps.c: ia64die_chain
arch/powerpc/kernel/traps.c: powerpc_die_chain
arch/sparc64/kernel/traps.c: sparc64die_chain
arch/x86_64/kernel/traps.c: die_chain
drivers/char/ipmi/ipmi_si_intf.c: xaction_notifier_list
kernel/panic.c: panic_notifier_list
kernel/profile.c: task_free_notifier
net/bluetooth/hci_core.c: hci_notifier
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_chain
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_expect_chain
net/ipv6/addrconf.c: inet6addr_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_expect_chain
net/netlink/af_netlink.c: netlink_chain
BLOCKING CHAINS
---------------
arch/powerpc/platforms/pseries/reconfig.c: pSeries_reconfig_chain
arch/s390/kernel/process.c: idle_chain
arch/x86_64/kernel/process.c idle_notifier
drivers/base/memory.c: memory_chain
drivers/cpufreq/cpufreq.c cpufreq_policy_notifier_list
drivers/cpufreq/cpufreq.c cpufreq_transition_notifier_list
drivers/macintosh/adb.c: adb_client_list
drivers/macintosh/via-pmu.c sleep_notifier_list
drivers/macintosh/via-pmu68k.c sleep_notifier_list
drivers/macintosh/windfarm_core.c wf_client_list
drivers/usb/core/notify.c usb_notifier_list
drivers/video/fbmem.c fb_notifier_list
kernel/cpu.c cpu_chain
kernel/module.c module_notify_list
kernel/profile.c munmap_notifier
kernel/profile.c task_exit_notifier
kernel/sys.c reboot_notifier_list
net/core/dev.c netdev_chain
net/decnet/dn_dev.c: dnaddr_chain
net/ipv4/devinet.c: inetaddr_chain
It's possible that some of these classifications are wrong. If they are,
please let us know or submit a patch to fix them. Note that any chain that
gets called very frequently should be atomic, because the rwsem read-locking
used for blocking chains is very likely to incur cache misses on SMP systems.
(However, if the chain's callout routines may sleep then the chain cannot be
atomic.)
The patch set was written by Alan Stern and Chandra Seetharaman, incorporating
material written by Keith Owens and suggestions from Paul McKenney and Andrew
Morton.
[jes@sgi.com: restructure the notifier chain initialization macros]
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Chandra Seetharaman <sekharan@us.ibm.com>
Signed-off-by: Jes Sorensen <jes@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-03-27 11:16:30 +02:00
|
|
|
return atomic_notifier_chain_unregister(&netlink_chain, nb);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
2007-12-04 09:19:38 +01:00
|
|
|
EXPORT_SYMBOL(netlink_unregister_notifier);
|
2007-02-09 15:25:07 +01:00
|
|
|
|
2005-12-22 21:49:22 +01:00
|
|
|
static const struct proto_ops netlink_ops = {
|
2005-04-17 00:20:36 +02:00
|
|
|
.family = PF_NETLINK,
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
.release = netlink_release,
|
|
|
|
.bind = netlink_bind,
|
|
|
|
.connect = netlink_connect,
|
|
|
|
.socketpair = sock_no_socketpair,
|
|
|
|
.accept = sock_no_accept,
|
|
|
|
.getname = netlink_getname,
|
|
|
|
.poll = datagram_poll,
|
|
|
|
.ioctl = sock_no_ioctl,
|
|
|
|
.listen = sock_no_listen,
|
|
|
|
.shutdown = sock_no_shutdown,
|
2005-08-15 21:32:15 +02:00
|
|
|
.setsockopt = netlink_setsockopt,
|
|
|
|
.getsockopt = netlink_getsockopt,
|
2005-04-17 00:20:36 +02:00
|
|
|
.sendmsg = netlink_sendmsg,
|
|
|
|
.recvmsg = netlink_recvmsg,
|
|
|
|
.mmap = sock_no_mmap,
|
|
|
|
.sendpage = sock_no_sendpage,
|
|
|
|
};
|
|
|
|
|
2009-10-05 07:58:39 +02:00
|
|
|
static const struct net_proto_family netlink_family_ops = {
|
2005-04-17 00:20:36 +02:00
|
|
|
.family = PF_NETLINK,
|
|
|
|
.create = netlink_create,
|
|
|
|
.owner = THIS_MODULE, /* for consistency 8) */
|
|
|
|
};
|
|
|
|
|
2007-10-09 05:38:39 +02:00
|
|
|
static int __net_init netlink_net_init(struct net *net)
|
2007-09-12 13:05:38 +02:00
|
|
|
{
|
|
|
|
#ifdef CONFIG_PROC_FS
|
|
|
|
if (!proc_net_fops_create(net, "netlink", 0, &netlink_seq_fops))
|
|
|
|
return -ENOMEM;
|
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-10-09 05:38:39 +02:00
|
|
|
static void __net_exit netlink_net_exit(struct net *net)
|
2007-09-12 13:05:38 +02:00
|
|
|
{
|
|
|
|
#ifdef CONFIG_PROC_FS
|
|
|
|
proc_net_remove(net, "netlink");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2010-08-31 04:08:01 +02:00
|
|
|
static void __init netlink_add_usersock_entry(void)
|
|
|
|
{
|
2010-10-24 06:27:10 +02:00
|
|
|
struct listeners *listeners;
|
2010-08-31 04:08:01 +02:00
|
|
|
int groups = 32;
|
|
|
|
|
2010-10-24 06:27:10 +02:00
|
|
|
listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL);
|
2010-08-31 04:08:01 +02:00
|
|
|
if (!listeners)
|
2010-10-24 06:27:10 +02:00
|
|
|
panic("netlink_add_usersock_entry: Cannot allocate listeners\n");
|
2010-08-31 04:08:01 +02:00
|
|
|
|
|
|
|
netlink_table_grab();
|
|
|
|
|
|
|
|
nl_table[NETLINK_USERSOCK].groups = groups;
|
2010-10-24 06:27:10 +02:00
|
|
|
rcu_assign_pointer(nl_table[NETLINK_USERSOCK].listeners, listeners);
|
2010-08-31 04:08:01 +02:00
|
|
|
nl_table[NETLINK_USERSOCK].module = THIS_MODULE;
|
|
|
|
nl_table[NETLINK_USERSOCK].registered = 1;
|
|
|
|
|
|
|
|
netlink_table_ungrab();
|
|
|
|
}
|
|
|
|
|
2007-11-13 12:23:50 +01:00
|
|
|
static struct pernet_operations __net_initdata netlink_net_ops = {
|
2007-09-12 13:05:38 +02:00
|
|
|
.init = netlink_net_init,
|
|
|
|
.exit = netlink_net_exit,
|
|
|
|
};
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
static int __init netlink_proto_init(void)
|
|
|
|
{
|
|
|
|
struct sk_buff *dummy_skb;
|
|
|
|
int i;
|
2007-09-17 01:36:02 +02:00
|
|
|
unsigned long limit;
|
2005-04-17 00:20:36 +02:00
|
|
|
unsigned int order;
|
|
|
|
int err = proto_register(&netlink_proto, 0);
|
|
|
|
|
|
|
|
if (err != 0)
|
|
|
|
goto out;
|
|
|
|
|
2006-09-01 09:29:06 +02:00
|
|
|
BUILD_BUG_ON(sizeof(struct netlink_skb_parms) > sizeof(dummy_skb->cb));
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-07-21 23:51:30 +02:00
|
|
|
nl_table = kcalloc(MAX_LINKS, sizeof(*nl_table), GFP_KERNEL);
|
2006-08-29 11:15:24 +02:00
|
|
|
if (!nl_table)
|
|
|
|
goto panic;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2009-09-22 02:03:05 +02:00
|
|
|
if (totalram_pages >= (128 * 1024))
|
|
|
|
limit = totalram_pages >> (21 - PAGE_SHIFT);
|
2005-04-17 00:20:36 +02:00
|
|
|
else
|
2009-09-22 02:03:05 +02:00
|
|
|
limit = totalram_pages >> (23 - PAGE_SHIFT);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-09-17 01:36:02 +02:00
|
|
|
order = get_bitmask_order(limit) - 1 + PAGE_SHIFT;
|
|
|
|
limit = (1UL << order) / sizeof(struct hlist_head);
|
|
|
|
order = get_bitmask_order(min(limit, (unsigned long)UINT_MAX)) - 1;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
for (i = 0; i < MAX_LINKS; i++) {
|
|
|
|
struct nl_pid_hash *hash = &nl_table[i].hash;
|
|
|
|
|
2007-12-11 11:09:47 +01:00
|
|
|
hash->table = nl_pid_hash_zalloc(1 * sizeof(*hash->table));
|
2005-04-17 00:20:36 +02:00
|
|
|
if (!hash->table) {
|
|
|
|
while (i-- > 0)
|
|
|
|
nl_pid_hash_free(nl_table[i].hash.table,
|
|
|
|
1 * sizeof(*hash->table));
|
|
|
|
kfree(nl_table);
|
2006-08-29 11:15:24 +02:00
|
|
|
goto panic;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
hash->max_shift = order;
|
|
|
|
hash->shift = 0;
|
|
|
|
hash->mask = 0;
|
|
|
|
hash->rehash_time = jiffies;
|
|
|
|
}
|
|
|
|
|
2010-08-31 04:08:01 +02:00
|
|
|
netlink_add_usersock_entry();
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
sock_register(&netlink_family_ops);
|
2007-09-12 13:05:38 +02:00
|
|
|
register_pernet_subsys(&netlink_net_ops);
|
2007-02-09 15:25:07 +01:00
|
|
|
/* The netlink device handler may be needed early. */
|
2005-04-17 00:20:36 +02:00
|
|
|
rtnetlink_init();
|
|
|
|
out:
|
|
|
|
return err;
|
2006-08-29 11:15:24 +02:00
|
|
|
panic:
|
|
|
|
panic("netlink_init: Cannot allocate nl_table\n");
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
core_initcall(netlink_proto_init);
|