aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/route.c
diff options
context:
space:
mode:
authorEric Dumazet <edumazet@google.com>2012-07-17 16:42:13 -0400
committerDavid S. Miller <davem@davemloft.net>2012-07-17 16:47:33 -0400
commit5abf7f7e0f6bdbfcac737f636497d7016d9507eb (patch)
treec52a21ed83a306c6626a00378934a28a6daa8db0 /net/ipv4/route.c
parentd3a25c980fc231238256f8d80816367674e5caaf (diff)
ipv4: fix rcu splat
free_nh_exceptions() should use rcu_dereference_protected(..., 1) since its called after one RCU grace period. Also add some const-ification in recent code. Signed-off-by: Eric Dumazet <edumazet@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/route.c')
-rw-r--r--net/ipv4/route.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/net/ipv4/route.c b/net/ipv4/route.c
index 812e4447a22..f67e7023672 100644
--- a/net/ipv4/route.c
+++ b/net/ipv4/route.c
@@ -1275,7 +1275,7 @@ static void rt_del(unsigned int hash, struct rtable *rt)
1275 spin_unlock_bh(rt_hash_lock_addr(hash)); 1275 spin_unlock_bh(rt_hash_lock_addr(hash));
1276} 1276}
1277 1277
1278static void __build_flow_key(struct flowi4 *fl4, struct sock *sk, 1278static void __build_flow_key(struct flowi4 *fl4, const struct sock *sk,
1279 const struct iphdr *iph, 1279 const struct iphdr *iph,
1280 int oif, u8 tos, 1280 int oif, u8 tos,
1281 u8 prot, u32 mark, int flow_flags) 1281 u8 prot, u32 mark, int flow_flags)
@@ -1294,7 +1294,8 @@ static void __build_flow_key(struct flowi4 *fl4, struct sock *sk,
1294 iph->daddr, iph->saddr, 0, 0); 1294 iph->daddr, iph->saddr, 0, 0);
1295} 1295}
1296 1296
1297static void build_skb_flow_key(struct flowi4 *fl4, struct sk_buff *skb, struct sock *sk) 1297static void build_skb_flow_key(struct flowi4 *fl4, const struct sk_buff *skb,
1298 const struct sock *sk)
1298{ 1299{
1299 const struct iphdr *iph = ip_hdr(skb); 1300 const struct iphdr *iph = ip_hdr(skb);
1300 int oif = skb->dev->ifindex; 1301 int oif = skb->dev->ifindex;
@@ -1305,10 +1306,10 @@ static void build_skb_flow_key(struct flowi4 *fl4, struct sk_buff *skb, struct s
1305 __build_flow_key(fl4, sk, iph, oif, tos, prot, mark, 0); 1306 __build_flow_key(fl4, sk, iph, oif, tos, prot, mark, 0);
1306} 1307}
1307 1308
1308static void build_sk_flow_key(struct flowi4 *fl4, struct sock *sk) 1309static void build_sk_flow_key(struct flowi4 *fl4, const struct sock *sk)
1309{ 1310{
1310 const struct inet_sock *inet = inet_sk(sk); 1311 const struct inet_sock *inet = inet_sk(sk);
1311 struct ip_options_rcu *inet_opt; 1312 const struct ip_options_rcu *inet_opt;
1312 __be32 daddr = inet->inet_daddr; 1313 __be32 daddr = inet->inet_daddr;
1313 1314
1314 rcu_read_lock(); 1315 rcu_read_lock();
@@ -1323,8 +1324,8 @@ static void build_sk_flow_key(struct flowi4 *fl4, struct sock *sk)
1323 rcu_read_unlock(); 1324 rcu_read_unlock();
1324} 1325}
1325 1326
1326static void ip_rt_build_flow_key(struct flowi4 *fl4, struct sock *sk, 1327static void ip_rt_build_flow_key(struct flowi4 *fl4, const struct sock *sk,
1327 struct sk_buff *skb) 1328 const struct sk_buff *skb)
1328{ 1329{
1329 if (skb) 1330 if (skb)
1330 build_skb_flow_key(fl4, skb, sk); 1331 build_skb_flow_key(fl4, skb, sk);