Commit ba44f818 authored by Eric Dumazet's avatar Eric Dumazet Committed by David S. Miller

raw: use more conventional iterators

In order to prepare the following patch,
I change raw v4 & v6 code to use more conventional
iterators.
Signed-off-by: default avatarEric Dumazet <edumazet@google.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 8670dc33
...@@ -20,9 +20,8 @@ ...@@ -20,9 +20,8 @@
extern struct proto raw_prot; extern struct proto raw_prot;
extern struct raw_hashinfo raw_v4_hashinfo; extern struct raw_hashinfo raw_v4_hashinfo;
struct sock *__raw_v4_lookup(struct net *net, struct sock *sk, bool raw_v4_match(struct net *net, struct sock *sk, unsigned short num,
unsigned short num, __be32 raddr, __be32 raddr, __be32 laddr, int dif, int sdif);
__be32 laddr, int dif, int sdif);
int raw_abort(struct sock *sk, int err); int raw_abort(struct sock *sk, int err);
void raw_icmp_error(struct sk_buff *, int, u32); void raw_icmp_error(struct sk_buff *, int, u32);
......
...@@ -5,9 +5,9 @@ ...@@ -5,9 +5,9 @@
#include <net/protocol.h> #include <net/protocol.h>
extern struct raw_hashinfo raw_v6_hashinfo; extern struct raw_hashinfo raw_v6_hashinfo;
struct sock *__raw_v6_lookup(struct net *net, struct sock *sk, bool raw_v6_match(struct net *net, struct sock *sk, unsigned short num,
unsigned short num, const struct in6_addr *loc_addr, const struct in6_addr *loc_addr,
const struct in6_addr *rmt_addr, int dif, int sdif); const struct in6_addr *rmt_addr, int dif, int sdif);
int raw_abort(struct sock *sk, int err); int raw_abort(struct sock *sk, int err);
......
...@@ -117,24 +117,19 @@ void raw_unhash_sk(struct sock *sk) ...@@ -117,24 +117,19 @@ void raw_unhash_sk(struct sock *sk)
} }
EXPORT_SYMBOL_GPL(raw_unhash_sk); EXPORT_SYMBOL_GPL(raw_unhash_sk);
struct sock *__raw_v4_lookup(struct net *net, struct sock *sk, bool raw_v4_match(struct net *net, struct sock *sk, unsigned short num,
unsigned short num, __be32 raddr, __be32 laddr, __be32 raddr, __be32 laddr, int dif, int sdif)
int dif, int sdif)
{ {
sk_for_each_from(sk) { struct inet_sock *inet = inet_sk(sk);
struct inet_sock *inet = inet_sk(sk);
if (net_eq(sock_net(sk), net) && inet->inet_num == num &&
if (net_eq(sock_net(sk), net) && inet->inet_num == num && !(inet->inet_daddr && inet->inet_daddr != raddr) &&
!(inet->inet_daddr && inet->inet_daddr != raddr) && !(inet->inet_rcv_saddr && inet->inet_rcv_saddr != laddr) &&
!(inet->inet_rcv_saddr && inet->inet_rcv_saddr != laddr) && raw_sk_bound_dev_eq(net, sk->sk_bound_dev_if, dif, sdif))
raw_sk_bound_dev_eq(net, sk->sk_bound_dev_if, dif, sdif)) return true;
goto found; /* gotcha */ return false;
}
sk = NULL;
found:
return sk;
} }
EXPORT_SYMBOL_GPL(__raw_v4_lookup); EXPORT_SYMBOL_GPL(raw_v4_match);
/* /*
* 0 - deliver * 0 - deliver
...@@ -168,23 +163,21 @@ static int icmp_filter(const struct sock *sk, const struct sk_buff *skb) ...@@ -168,23 +163,21 @@ static int icmp_filter(const struct sock *sk, const struct sk_buff *skb)
*/ */
static int raw_v4_input(struct sk_buff *skb, const struct iphdr *iph, int hash) static int raw_v4_input(struct sk_buff *skb, const struct iphdr *iph, int hash)
{ {
struct net *net = dev_net(skb->dev);
int sdif = inet_sdif(skb); int sdif = inet_sdif(skb);
int dif = inet_iif(skb); int dif = inet_iif(skb);
struct sock *sk;
struct hlist_head *head; struct hlist_head *head;
int delivered = 0; int delivered = 0;
struct net *net; struct sock *sk;
read_lock(&raw_v4_hashinfo.lock);
head = &raw_v4_hashinfo.ht[hash]; head = &raw_v4_hashinfo.ht[hash];
if (hlist_empty(head)) if (hlist_empty(head))
goto out; return 0;
read_lock(&raw_v4_hashinfo.lock);
net = dev_net(skb->dev); sk_for_each(sk, head) {
sk = __raw_v4_lookup(net, __sk_head(head), iph->protocol, if (!raw_v4_match(net, sk, iph->protocol,
iph->saddr, iph->daddr, dif, sdif); iph->saddr, iph->daddr, dif, sdif))
continue;
while (sk) {
delivered = 1; delivered = 1;
if ((iph->protocol != IPPROTO_ICMP || !icmp_filter(sk, skb)) && if ((iph->protocol != IPPROTO_ICMP || !icmp_filter(sk, skb)) &&
ip_mc_sf_allow(sk, iph->daddr, iph->saddr, ip_mc_sf_allow(sk, iph->daddr, iph->saddr,
...@@ -195,31 +188,16 @@ static int raw_v4_input(struct sk_buff *skb, const struct iphdr *iph, int hash) ...@@ -195,31 +188,16 @@ static int raw_v4_input(struct sk_buff *skb, const struct iphdr *iph, int hash)
if (clone) if (clone)
raw_rcv(sk, clone); raw_rcv(sk, clone);
} }
sk = __raw_v4_lookup(net, sk_next(sk), iph->protocol,
iph->saddr, iph->daddr,
dif, sdif);
} }
out:
read_unlock(&raw_v4_hashinfo.lock); read_unlock(&raw_v4_hashinfo.lock);
return delivered; return delivered;
} }
int raw_local_deliver(struct sk_buff *skb, int protocol) int raw_local_deliver(struct sk_buff *skb, int protocol)
{ {
int hash; int hash = protocol & (RAW_HTABLE_SIZE - 1);
struct sock *raw_sk;
hash = protocol & (RAW_HTABLE_SIZE - 1);
raw_sk = sk_head(&raw_v4_hashinfo.ht[hash]);
/* If there maybe a raw socket we must check - if not we
* don't care less
*/
if (raw_sk && !raw_v4_input(skb, ip_hdr(skb), hash))
raw_sk = NULL;
return raw_sk != NULL;
return raw_v4_input(skb, ip_hdr(skb), hash);
} }
static void raw_err(struct sock *sk, struct sk_buff *skb, u32 info) static void raw_err(struct sock *sk, struct sk_buff *skb, u32 info)
...@@ -286,29 +264,24 @@ static void raw_err(struct sock *sk, struct sk_buff *skb, u32 info) ...@@ -286,29 +264,24 @@ static void raw_err(struct sock *sk, struct sk_buff *skb, u32 info)
void raw_icmp_error(struct sk_buff *skb, int protocol, u32 info) void raw_icmp_error(struct sk_buff *skb, int protocol, u32 info)
{ {
int hash; struct net *net = dev_net(skb->dev);;
struct sock *raw_sk; int dif = skb->dev->ifindex;
int sdif = inet_sdif(skb);
struct hlist_head *head;
const struct iphdr *iph; const struct iphdr *iph;
struct net *net; struct sock *sk;
int hash;
hash = protocol & (RAW_HTABLE_SIZE - 1); hash = protocol & (RAW_HTABLE_SIZE - 1);
head = &raw_v4_hashinfo.ht[hash];
read_lock(&raw_v4_hashinfo.lock); read_lock(&raw_v4_hashinfo.lock);
raw_sk = sk_head(&raw_v4_hashinfo.ht[hash]); sk_for_each(sk, head) {
if (raw_sk) {
int dif = skb->dev->ifindex;
int sdif = inet_sdif(skb);
iph = (const struct iphdr *)skb->data; iph = (const struct iphdr *)skb->data;
net = dev_net(skb->dev); if (!raw_v4_match(net, sk, iph->protocol,
iph->saddr, iph->daddr, dif, sdif))
while ((raw_sk = __raw_v4_lookup(net, raw_sk, protocol, continue;
iph->daddr, iph->saddr, raw_err(sk, skb, info);
dif, sdif)) != NULL) {
raw_err(raw_sk, skb, info);
raw_sk = sk_next(raw_sk);
iph = (const struct iphdr *)skb->data;
}
} }
read_unlock(&raw_v4_hashinfo.lock); read_unlock(&raw_v4_hashinfo.lock);
} }
......
...@@ -34,31 +34,30 @@ raw_get_hashinfo(const struct inet_diag_req_v2 *r) ...@@ -34,31 +34,30 @@ raw_get_hashinfo(const struct inet_diag_req_v2 *r)
* use helper to figure it out. * use helper to figure it out.
*/ */
static struct sock *raw_lookup(struct net *net, struct sock *from, static bool raw_lookup(struct net *net, struct sock *sk,
const struct inet_diag_req_v2 *req) const struct inet_diag_req_v2 *req)
{ {
struct inet_diag_req_raw *r = (void *)req; struct inet_diag_req_raw *r = (void *)req;
struct sock *sk = NULL;
if (r->sdiag_family == AF_INET) if (r->sdiag_family == AF_INET)
sk = __raw_v4_lookup(net, from, r->sdiag_raw_protocol, return raw_v4_match(net, sk, r->sdiag_raw_protocol,
r->id.idiag_dst[0], r->id.idiag_dst[0],
r->id.idiag_src[0], r->id.idiag_src[0],
r->id.idiag_if, 0); r->id.idiag_if, 0);
#if IS_ENABLED(CONFIG_IPV6) #if IS_ENABLED(CONFIG_IPV6)
else else
sk = __raw_v6_lookup(net, from, r->sdiag_raw_protocol, return raw_v6_match(net, sk, r->sdiag_raw_protocol,
(const struct in6_addr *)r->id.idiag_src, (const struct in6_addr *)r->id.idiag_src,
(const struct in6_addr *)r->id.idiag_dst, (const struct in6_addr *)r->id.idiag_dst,
r->id.idiag_if, 0); r->id.idiag_if, 0);
#endif #endif
return sk; return false;
} }
static struct sock *raw_sock_get(struct net *net, const struct inet_diag_req_v2 *r) static struct sock *raw_sock_get(struct net *net, const struct inet_diag_req_v2 *r)
{ {
struct raw_hashinfo *hashinfo = raw_get_hashinfo(r); struct raw_hashinfo *hashinfo = raw_get_hashinfo(r);
struct sock *sk = NULL, *s; struct sock *sk;
int slot; int slot;
if (IS_ERR(hashinfo)) if (IS_ERR(hashinfo))
...@@ -66,9 +65,8 @@ static struct sock *raw_sock_get(struct net *net, const struct inet_diag_req_v2 ...@@ -66,9 +65,8 @@ static struct sock *raw_sock_get(struct net *net, const struct inet_diag_req_v2
read_lock(&hashinfo->lock); read_lock(&hashinfo->lock);
for (slot = 0; slot < RAW_HTABLE_SIZE; slot++) { for (slot = 0; slot < RAW_HTABLE_SIZE; slot++) {
sk_for_each(s, &hashinfo->ht[slot]) { sk_for_each(sk, &hashinfo->ht[slot]) {
sk = raw_lookup(net, s, r); if (raw_lookup(net, sk, r)) {
if (sk) {
/* /*
* Grab it and keep until we fill * Grab it and keep until we fill
* diag meaage to be reported, so * diag meaage to be reported, so
...@@ -81,10 +79,11 @@ static struct sock *raw_sock_get(struct net *net, const struct inet_diag_req_v2 ...@@ -81,10 +79,11 @@ static struct sock *raw_sock_get(struct net *net, const struct inet_diag_req_v2
} }
} }
} }
sk = ERR_PTR(-ENOENT);
out_unlock: out_unlock:
read_unlock(&hashinfo->lock); read_unlock(&hashinfo->lock);
return sk ? sk : ERR_PTR(-ENOENT); return sk;
} }
static int raw_diag_dump_one(struct netlink_callback *cb, static int raw_diag_dump_one(struct netlink_callback *cb,
......
...@@ -66,41 +66,27 @@ struct raw_hashinfo raw_v6_hashinfo = { ...@@ -66,41 +66,27 @@ struct raw_hashinfo raw_v6_hashinfo = {
}; };
EXPORT_SYMBOL_GPL(raw_v6_hashinfo); EXPORT_SYMBOL_GPL(raw_v6_hashinfo);
struct sock *__raw_v6_lookup(struct net *net, struct sock *sk, bool raw_v6_match(struct net *net, struct sock *sk, unsigned short num,
unsigned short num, const struct in6_addr *loc_addr, const struct in6_addr *loc_addr,
const struct in6_addr *rmt_addr, int dif, int sdif) const struct in6_addr *rmt_addr, int dif, int sdif)
{ {
bool is_multicast = ipv6_addr_is_multicast(loc_addr); if (inet_sk(sk)->inet_num != num ||
!net_eq(sock_net(sk), net) ||
sk_for_each_from(sk) (!ipv6_addr_any(&sk->sk_v6_daddr) &&
if (inet_sk(sk)->inet_num == num) { !ipv6_addr_equal(&sk->sk_v6_daddr, rmt_addr)) ||
!raw_sk_bound_dev_eq(net, sk->sk_bound_dev_if,
if (!net_eq(sock_net(sk), net)) dif, sdif))
continue; return false;
if (!ipv6_addr_any(&sk->sk_v6_daddr) && if (ipv6_addr_any(&sk->sk_v6_rcv_saddr) ||
!ipv6_addr_equal(&sk->sk_v6_daddr, rmt_addr)) ipv6_addr_equal(&sk->sk_v6_rcv_saddr, loc_addr) ||
continue; (ipv6_addr_is_multicast(loc_addr) &&
inet6_mc_check(sk, loc_addr, rmt_addr)))
if (!raw_sk_bound_dev_eq(net, sk->sk_bound_dev_if, return true;
dif, sdif))
continue; return false;
if (!ipv6_addr_any(&sk->sk_v6_rcv_saddr)) {
if (ipv6_addr_equal(&sk->sk_v6_rcv_saddr, loc_addr))
goto found;
if (is_multicast &&
inet6_mc_check(sk, loc_addr, rmt_addr))
goto found;
continue;
}
goto found;
}
sk = NULL;
found:
return sk;
} }
EXPORT_SYMBOL_GPL(__raw_v6_lookup); EXPORT_SYMBOL_GPL(raw_v6_match);
/* /*
* 0 - deliver * 0 - deliver
...@@ -156,31 +142,28 @@ EXPORT_SYMBOL(rawv6_mh_filter_unregister); ...@@ -156,31 +142,28 @@ EXPORT_SYMBOL(rawv6_mh_filter_unregister);
*/ */
static bool ipv6_raw_deliver(struct sk_buff *skb, int nexthdr) static bool ipv6_raw_deliver(struct sk_buff *skb, int nexthdr)
{ {
struct net *net = dev_net(skb->dev);
const struct in6_addr *saddr; const struct in6_addr *saddr;
const struct in6_addr *daddr; const struct in6_addr *daddr;
struct hlist_head *head;
struct sock *sk; struct sock *sk;
bool delivered = false; bool delivered = false;
__u8 hash; __u8 hash;
struct net *net;
saddr = &ipv6_hdr(skb)->saddr; saddr = &ipv6_hdr(skb)->saddr;
daddr = saddr + 1; daddr = saddr + 1;
hash = nexthdr & (RAW_HTABLE_SIZE - 1); hash = nexthdr & (RAW_HTABLE_SIZE - 1);
head = &raw_v6_hashinfo.ht[hash];
if (hlist_empty(head))
return false;
read_lock(&raw_v6_hashinfo.lock); read_lock(&raw_v6_hashinfo.lock);
sk = sk_head(&raw_v6_hashinfo.ht[hash]); sk_for_each(sk, head) {
if (!sk)
goto out;
net = dev_net(skb->dev);
sk = __raw_v6_lookup(net, sk, nexthdr, daddr, saddr,
inet6_iif(skb), inet6_sdif(skb));
while (sk) {
int filtered; int filtered;
if (!raw_v6_match(net, sk, nexthdr, daddr, saddr,
inet6_iif(skb), inet6_sdif(skb)))
continue;
delivered = true; delivered = true;
switch (nexthdr) { switch (nexthdr) {
case IPPROTO_ICMPV6: case IPPROTO_ICMPV6:
...@@ -219,23 +202,14 @@ static bool ipv6_raw_deliver(struct sk_buff *skb, int nexthdr) ...@@ -219,23 +202,14 @@ static bool ipv6_raw_deliver(struct sk_buff *skb, int nexthdr)
rawv6_rcv(sk, clone); rawv6_rcv(sk, clone);
} }
} }
sk = __raw_v6_lookup(net, sk_next(sk), nexthdr, daddr, saddr,
inet6_iif(skb), inet6_sdif(skb));
} }
out:
read_unlock(&raw_v6_hashinfo.lock); read_unlock(&raw_v6_hashinfo.lock);
return delivered; return delivered;
} }
bool raw6_local_deliver(struct sk_buff *skb, int nexthdr) bool raw6_local_deliver(struct sk_buff *skb, int nexthdr)
{ {
struct sock *raw_sk; return ipv6_raw_deliver(skb, nexthdr);
raw_sk = sk_head(&raw_v6_hashinfo.ht[nexthdr & (RAW_HTABLE_SIZE - 1)]);
if (raw_sk && !ipv6_raw_deliver(skb, nexthdr))
raw_sk = NULL;
return raw_sk != NULL;
} }
/* This cleans up af_inet6 a bit. -DaveM */ /* This cleans up af_inet6 a bit. -DaveM */
...@@ -361,28 +335,25 @@ static void rawv6_err(struct sock *sk, struct sk_buff *skb, ...@@ -361,28 +335,25 @@ static void rawv6_err(struct sock *sk, struct sk_buff *skb,
void raw6_icmp_error(struct sk_buff *skb, int nexthdr, void raw6_icmp_error(struct sk_buff *skb, int nexthdr,
u8 type, u8 code, int inner_offset, __be32 info) u8 type, u8 code, int inner_offset, __be32 info)
{ {
const struct in6_addr *saddr, *daddr;
struct net *net = dev_net(skb->dev);
struct hlist_head *head;
struct sock *sk; struct sock *sk;
int hash; int hash;
const struct in6_addr *saddr, *daddr;
struct net *net;
hash = nexthdr & (RAW_HTABLE_SIZE - 1); hash = nexthdr & (RAW_HTABLE_SIZE - 1);
head = &raw_v6_hashinfo.ht[hash];
read_lock(&raw_v6_hashinfo.lock); read_lock(&raw_v6_hashinfo.lock);
sk = sk_head(&raw_v6_hashinfo.ht[hash]); sk_for_each(sk, head) {
if (sk) {
/* Note: ipv6_hdr(skb) != skb->data */ /* Note: ipv6_hdr(skb) != skb->data */
const struct ipv6hdr *ip6h = (const struct ipv6hdr *)skb->data; const struct ipv6hdr *ip6h = (const struct ipv6hdr *)skb->data;
saddr = &ip6h->saddr; saddr = &ip6h->saddr;
daddr = &ip6h->daddr; daddr = &ip6h->daddr;
net = dev_net(skb->dev);
while ((sk = __raw_v6_lookup(net, sk, nexthdr, saddr, daddr, if (!raw_v6_match(net, sk, nexthdr, &ip6h->saddr, &ip6h->daddr,
inet6_iif(skb), inet6_iif(skb)))) { inet6_iif(skb), inet6_iif(skb)))
rawv6_err(sk, skb, NULL, type, code, continue;
inner_offset, info); rawv6_err(sk, skb, NULL, type, code, inner_offset, info);
sk = sk_next(sk);
}
} }
read_unlock(&raw_v6_hashinfo.lock); read_unlock(&raw_v6_hashinfo.lock);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment