* [PATCH net] net/ipv4: Use non-atomic allocation of udp offloads structure instance
@ 2014-01-29 16:08 Or Gerlitz
2014-01-29 16:20 ` Eric Dumazet
2014-01-31 0:26 ` David Miller
0 siblings, 2 replies; 5+ messages in thread
From: Or Gerlitz @ 2014-01-29 16:08 UTC (permalink / raw)
To: davem; +Cc: netdev, dan.carpenter, Or Gerlitz
Since udp_add_offload() can be called from non-sleepable context e.g
under this call tree from the vxlan driver use case:
vxlan_socket_create() <-- holds the spinlock
-> vxlan_notify_add_rx_port()
-> udp_add_offload() <-- schedules
we should allocate the udp_offloads structure in atomic manner.
Fixes: b582ef0 ('net: Add GRO support for UDP encapsulating protocols')
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Or Gerlitz <ogerlitz@mellanox.com>
---
net/ipv4/udp_offload.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/net/ipv4/udp_offload.c b/net/ipv4/udp_offload.c
index 25f5cee..2ffea6f 100644
--- a/net/ipv4/udp_offload.c
+++ b/net/ipv4/udp_offload.c
@@ -101,7 +101,7 @@ out:
int udp_add_offload(struct udp_offload *uo)
{
struct udp_offload_priv __rcu **head = &udp_offload_base;
- struct udp_offload_priv *new_offload = kzalloc(sizeof(*new_offload), GFP_KERNEL);
+ struct udp_offload_priv *new_offload = kzalloc(sizeof(*new_offload), GFP_ATOMIC);
if (!new_offload)
return -ENOMEM;
--
1.7.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH net] net/ipv4: Use non-atomic allocation of udp offloads structure instance
2014-01-29 16:08 [PATCH net] net/ipv4: Use non-atomic allocation of udp offloads structure instance Or Gerlitz
@ 2014-01-29 16:20 ` Eric Dumazet
2014-01-29 16:42 ` Or Gerlitz
2014-01-31 0:26 ` David Miller
1 sibling, 1 reply; 5+ messages in thread
From: Eric Dumazet @ 2014-01-29 16:20 UTC (permalink / raw)
To: Or Gerlitz; +Cc: davem, netdev, dan.carpenter
On Wed, 2014-01-29 at 18:08 +0200, Or Gerlitz wrote:
> Since udp_add_offload() can be called from non-sleepable context e.g
> under this call tree from the vxlan driver use case:
>
> vxlan_socket_create() <-- holds the spinlock
> -> vxlan_notify_add_rx_port()
> -> udp_add_offload() <-- schedules
>
> we should allocate the udp_offloads structure in atomic manner.
>
> Fixes: b582ef0 ('net: Add GRO support for UDP encapsulating protocols')
> Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
> Signed-off-by: Or Gerlitz <ogerlitz@mellanox.com>
> ---
> net/ipv4/udp_offload.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/net/ipv4/udp_offload.c b/net/ipv4/udp_offload.c
> index 25f5cee..2ffea6f 100644
> --- a/net/ipv4/udp_offload.c
> +++ b/net/ipv4/udp_offload.c
> @@ -101,7 +101,7 @@ out:
> int udp_add_offload(struct udp_offload *uo)
> {
> struct udp_offload_priv __rcu **head = &udp_offload_base;
> - struct udp_offload_priv *new_offload = kzalloc(sizeof(*new_offload), GFP_KERNEL);
> + struct udp_offload_priv *new_offload = kzalloc(sizeof(*new_offload), GFP_ATOMIC);
>
> if (!new_offload)
> return -ENOMEM;
Could you also fix all the rcu_dereference() calls ?
Try CONFIG_PROVE_RCU=y
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH net] net/ipv4: Use non-atomic allocation of udp offloads structure instance
2014-01-29 16:20 ` Eric Dumazet
@ 2014-01-29 16:42 ` Or Gerlitz
2014-01-29 17:31 ` Eric Dumazet
0 siblings, 1 reply; 5+ messages in thread
From: Or Gerlitz @ 2014-01-29 16:42 UTC (permalink / raw)
To: Eric Dumazet; +Cc: davem, netdev, dan.carpenter, Shlomo Pongratz
On 29/01/2014 18:20, Eric Dumazet wrote:
> Could you also fix all the rcu_dereference() calls ?
>
> Try CONFIG_PROVE_RCU=y
Thanks Eric, I tried this out now and got one alarm on udp_add_offload,
which I will loop up how to fix,
do you see anything else?
===============================
[ INFO: suspicious RCU usage. ]
3.13.0+ #109 Not tainted
-------------------------------
net/ipv4/udp_offload.c:112 suspicious rcu_dereference_check() usage!
other info that might help us debug this:
rcu_scheduler_active = 1, debug_locks = 0
4 locks held by kworker/2:2/2752:
#0: (vxlan){.+.+.+}, at: [<ffffffff8108bd5a>]
process_one_work+0x15a/0x710
#1: ((&vxlan->sock_work)){+.+.+.}, at: [<ffffffff8108bd5a>]
process_one_work+0x15a/0x710
#2: (&(&vn->sock_lock)->rlock){+.+...}, at: [<ffffffffa03caae3>]
vxlan_sock_add+0x323/0xb70 [vxlan]
#3: (udp_offload_lock){+.+...}, at: [<ffffffff814d22e1>]
udp_add_offload+0x41/0xd0
stack backtrace:
CPU: 2 PID: 2752 Comm: kworker/2:2 Not tainted 3.13.0+ #109
Hardware name: Red Hat KVM, BIOS 0.5.1 01/01/2007
Workqueue: vxlan vxlan_sock_work [vxlan]
0000000000000001 ffff8800d1949bf8 ffffffff81528412 0000000000000002
ffff88021ef2e060 ffff8800d1949c28 ffffffff810b8373 ffff880218f59160
0000000000000000 ffffffff81aa3540 ffff88021dcaf000 ffff8800d1949c48
Call Trace:
[<ffffffff81528412>] dump_stack+0x51/0x77
[<ffffffff810b8373>] lockdep_rcu_suspicious+0x103/0x140
[<ffffffff814d234a>] udp_add_offload+0xaa/0xd0
[<ffffffffa03cb0ad>] vxlan_sock_add+0x8ed/0xb70 [vxlan]
[<ffffffffa03caa77>] ? vxlan_sock_add+0x2b7/0xb70 [vxlan]
[<ffffffffa03ce390>] ? vxlan_xmit+0x650/0x650 [vxlan]
[<ffffffffa03cb330>] ? vxlan_sock_add+0xb70/0xb70 [vxlan]
[<ffffffff81291f7c>] ? delay_tsc+0x6c/0xd0
[<ffffffffa03cb439>] vxlan_sock_work+0x109/0x260 [vxlan]
[<ffffffffa03cb330>] ? vxlan_sock_add+0xb70/0xb70 [vxlan]
[<ffffffff8108bdd1>] process_one_work+0x1d1/0x710
[<ffffffff8108bd5a>] ? process_one_work+0x15a/0x710
[<ffffffff8108c432>] worker_thread+0x122/0x400
[<ffffffff8108c310>] ? process_one_work+0x710/0x710
[<ffffffff810943fe>] kthread+0xde/0x100
[<ffffffff81094320>] ? __init_kthread_worker+0x70/0x70
[<ffffffff8152f3bc>] ret_from_fork+0x7c/0xb0
[<ffffffff81094320>] ? __init_kthread_worker+0x70/0x70
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH net] net/ipv4: Use non-atomic allocation of udp offloads structure instance
2014-01-29 16:42 ` Or Gerlitz
@ 2014-01-29 17:31 ` Eric Dumazet
0 siblings, 0 replies; 5+ messages in thread
From: Eric Dumazet @ 2014-01-29 17:31 UTC (permalink / raw)
To: Or Gerlitz; +Cc: davem, netdev, dan.carpenter, Shlomo Pongratz
On Wed, 2014-01-29 at 18:42 +0200, Or Gerlitz wrote:
> On 29/01/2014 18:20, Eric Dumazet wrote:
> > Could you also fix all the rcu_dereference() calls ?
> >
> > Try CONFIG_PROVE_RCU=y
>
> Thanks Eric, I tried this out now and got one alarm on udp_add_offload,
> which I will loop up how to fix,
> do you see anything else?
>
>
You should have same issue in udp_del_offload()
(Lockdep triggers once only)
> ===============================
> [ INFO: suspicious RCU usage. ]
> 3.13.0+ #109 Not tainted
> -------------------------------
> net/ipv4/udp_offload.c:112 suspicious rcu_dereference_check() usage!
>
> other info that might help us debug this:
>
>
> rcu_scheduler_active = 1, debug_locks = 0
> 4 locks held by kworker/2:2/2752:
> #0: (vxlan){.+.+.+}, at: [<ffffffff8108bd5a>]
> process_one_work+0x15a/0x710
> #1: ((&vxlan->sock_work)){+.+.+.}, at: [<ffffffff8108bd5a>]
> process_one_work+0x15a/0x710
> #2: (&(&vn->sock_lock)->rlock){+.+...}, at: [<ffffffffa03caae3>]
> vxlan_sock_add+0x323/0xb70 [vxlan]
> #3: (udp_offload_lock){+.+...}, at: [<ffffffff814d22e1>]
> udp_add_offload+0x41/0xd0
>
> stack backtrace:
> CPU: 2 PID: 2752 Comm: kworker/2:2 Not tainted 3.13.0+ #109
> Hardware name: Red Hat KVM, BIOS 0.5.1 01/01/2007
> Workqueue: vxlan vxlan_sock_work [vxlan]
> 0000000000000001 ffff8800d1949bf8 ffffffff81528412 0000000000000002
> ffff88021ef2e060 ffff8800d1949c28 ffffffff810b8373 ffff880218f59160
> 0000000000000000 ffffffff81aa3540 ffff88021dcaf000 ffff8800d1949c48
> Call Trace:
> [<ffffffff81528412>] dump_stack+0x51/0x77
> [<ffffffff810b8373>] lockdep_rcu_suspicious+0x103/0x140
> [<ffffffff814d234a>] udp_add_offload+0xaa/0xd0
> [<ffffffffa03cb0ad>] vxlan_sock_add+0x8ed/0xb70 [vxlan]
> [<ffffffffa03caa77>] ? vxlan_sock_add+0x2b7/0xb70 [vxlan]
> [<ffffffffa03ce390>] ? vxlan_xmit+0x650/0x650 [vxlan]
> [<ffffffffa03cb330>] ? vxlan_sock_add+0xb70/0xb70 [vxlan]
> [<ffffffff81291f7c>] ? delay_tsc+0x6c/0xd0
> [<ffffffffa03cb439>] vxlan_sock_work+0x109/0x260 [vxlan]
> [<ffffffffa03cb330>] ? vxlan_sock_add+0xb70/0xb70 [vxlan]
> [<ffffffff8108bdd1>] process_one_work+0x1d1/0x710
> [<ffffffff8108bd5a>] ? process_one_work+0x15a/0x710
> [<ffffffff8108c432>] worker_thread+0x122/0x400
> [<ffffffff8108c310>] ? process_one_work+0x710/0x710
> [<ffffffff810943fe>] kthread+0xde/0x100
> [<ffffffff81094320>] ? __init_kthread_worker+0x70/0x70
> [<ffffffff8152f3bc>] ret_from_fork+0x7c/0xb0
> [<ffffffff81094320>] ? __init_kthread_worker+0x70/0x70
>
> --
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH net] net/ipv4: Use non-atomic allocation of udp offloads structure instance
2014-01-29 16:08 [PATCH net] net/ipv4: Use non-atomic allocation of udp offloads structure instance Or Gerlitz
2014-01-29 16:20 ` Eric Dumazet
@ 2014-01-31 0:26 ` David Miller
1 sibling, 0 replies; 5+ messages in thread
From: David Miller @ 2014-01-31 0:26 UTC (permalink / raw)
To: ogerlitz; +Cc: netdev, dan.carpenter
From: Or Gerlitz <ogerlitz@mellanox.com>
Date: Wed, 29 Jan 2014 18:08:59 +0200
> Since udp_add_offload() can be called from non-sleepable context e.g
> under this call tree from the vxlan driver use case:
>
> vxlan_socket_create() <-- holds the spinlock
> -> vxlan_notify_add_rx_port()
> -> udp_add_offload() <-- schedules
>
> we should allocate the udp_offloads structure in atomic manner.
>
> Fixes: b582ef0 ('net: Add GRO support for UDP encapsulating protocols')
> Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
> Signed-off-by: Or Gerlitz <ogerlitz@mellanox.com>
Applied.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2014-01-31 0:26 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-29 16:08 [PATCH net] net/ipv4: Use non-atomic allocation of udp offloads structure instance Or Gerlitz
2014-01-29 16:20 ` Eric Dumazet
2014-01-29 16:42 ` Or Gerlitz
2014-01-29 17:31 ` Eric Dumazet
2014-01-31 0:26 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).