diff options
author | Eric Dumazet <eric.dumazet@gmail.com> | 2011-04-21 05:45:37 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-04-28 16:16:35 -0400 |
commit | f6d8bd051c391c1c0458a30b2a7abcd939329259 (patch) | |
tree | 1dc4daecdeb0b42c2c6b59d7d6b41e091c11db5f /net/l2tp/l2tp_ip.c | |
parent | 0a14842f5a3c0e88a1e59fac5c3025db39721f74 (diff) |
inet: add RCU protection to inet->opt
We lack proper synchronization to manipulate inet->opt ip_options
Problem is ip_make_skb() calls ip_setup_cork() and
ip_setup_cork() possibly makes a copy of ipc->opt (struct ip_options),
without any protection against another thread manipulating inet->opt.
Another thread can change inet->opt pointer and free old one under us.
Use RCU to protect inet->opt (changed to inet->inet_opt).
Instead of handling atomic refcounts, just copy ip_options when
necessary, to avoid cache line dirtying.
We cant insert an rcu_head in struct ip_options since its included in
skb->cb[], so this patch is large because I had to introduce a new
ip_options_rcu structure.
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Cc: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/l2tp/l2tp_ip.c')
-rw-r--r-- | net/l2tp/l2tp_ip.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/net/l2tp/l2tp_ip.c b/net/l2tp/l2tp_ip.c index cc673677c5de..962a607b51da 100644 --- a/net/l2tp/l2tp_ip.c +++ b/net/l2tp/l2tp_ip.c | |||
@@ -416,7 +416,6 @@ static int l2tp_ip_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *m | |||
416 | int rc; | 416 | int rc; |
417 | struct l2tp_ip_sock *lsa = l2tp_ip_sk(sk); | 417 | struct l2tp_ip_sock *lsa = l2tp_ip_sk(sk); |
418 | struct inet_sock *inet = inet_sk(sk); | 418 | struct inet_sock *inet = inet_sk(sk); |
419 | struct ip_options *opt = inet->opt; | ||
420 | struct rtable *rt = NULL; | 419 | struct rtable *rt = NULL; |
421 | int connected = 0; | 420 | int connected = 0; |
422 | __be32 daddr; | 421 | __be32 daddr; |
@@ -471,9 +470,14 @@ static int l2tp_ip_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *m | |||
471 | rt = (struct rtable *) __sk_dst_check(sk, 0); | 470 | rt = (struct rtable *) __sk_dst_check(sk, 0); |
472 | 471 | ||
473 | if (rt == NULL) { | 472 | if (rt == NULL) { |
473 | struct ip_options_rcu *inet_opt; | ||
474 | |||
475 | inet_opt = rcu_dereference_protected(inet->inet_opt, | ||
476 | sock_owned_by_user(sk)); | ||
477 | |||
474 | /* Use correct destination address if we have options. */ | 478 | /* Use correct destination address if we have options. */ |
475 | if (opt && opt->srr) | 479 | if (inet_opt && inet_opt->opt.srr) |
476 | daddr = opt->faddr; | 480 | daddr = inet_opt->opt.faddr; |
477 | 481 | ||
478 | /* If this fails, retransmit mechanism of transport layer will | 482 | /* If this fails, retransmit mechanism of transport layer will |
479 | * keep trying until route appears or the connection times | 483 | * keep trying until route appears or the connection times |