diff options
author | Denis V. Lunev <den@openvz.org> | 2007-11-20 01:28:35 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 17:54:26 -0500 |
commit | d12d01d6b4d197115c4d7736172b5b1ec8b1eb71 (patch) | |
tree | 480fc48e6ae404b59d2f62a7e3afc6ea88a5413c /include/net/net_namespace.h | |
parent | 4b3da706bbe4613d2fe4df8df4d965954ea98964 (diff) |
[NET]: Make AF_PACKET handle multiple network namespaces
This is done by making packet_sklist_lock and packet_sklist per
network namespace and adding an additional filter condition on
received packets to ensure they came from the proper network
namespace.
Changes from v1:
- prohibit to call inet_dgram_ops.ioctl in other than init_net
Signed-off-by: Denis V. Lunev <den@openvz.org>
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/net_namespace.h')
-rw-r--r-- | include/net/net_namespace.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/net/net_namespace.h b/include/net/net_namespace.h index 90802a668c23..4d0d6349aa7e 100644 --- a/include/net/net_namespace.h +++ b/include/net/net_namespace.h | |||
@@ -32,6 +32,10 @@ struct net { | |||
32 | struct hlist_head *dev_index_head; | 32 | struct hlist_head *dev_index_head; |
33 | 33 | ||
34 | struct sock *rtnl; /* rtnetlink socket */ | 34 | struct sock *rtnl; /* rtnetlink socket */ |
35 | |||
36 | /* List of all packet sockets. */ | ||
37 | rwlock_t packet_sklist_lock; | ||
38 | struct hlist_head packet_sklist; | ||
35 | }; | 39 | }; |
36 | 40 | ||
37 | #ifdef CONFIG_NET | 41 | #ifdef CONFIG_NET |