Re: [PATCH stable 3.11+] can: bcm: add skb destructor
From: Eric Dumazet <hidden>
Date: 2014-01-28 23:51:08
On Tue, 2014-01-28 at 23:49 +0100, Oliver Hartkopp wrote:
The sbk->sk reference is used to make sure in AF_CAN to identify the originating socket (if any) to not deliver echoed CAN frames to the originating application. See first check in raw_rcv() in net/can/raw.c
Nice, this is buggy.
quoted
Instead of understanding the issue, it seems this patch exactly shutup the useful warning.I would have been happy to have this a warning and not a bug as you implemented it.
Yes, I understand you are not happy of our work to discover CAN bugs.
I don't need this warning as I'm using skb_alloc in the cases where CAN frames are generated autonomously. They are not triggered through a direct socket write operation nor do they need to take case about any sock wmem. The useful warning/bug might be nice for common use cases. I'm using plain skb_alloc here for fire-and-forget skbs. So I need to shutup the useful warning or revert the two commits at skb_orphan(). I would prefer the latter.quoted
If you set skb->sk, then you expect a future reader of skb->sk to be 100% sure the socket did not disappear.It's a fire-and-forget skb. I don't need to care if the socket disappears. If it disappears no new traffic is generated. That's enough.quoted
I do not see this explained in the changelog.I hopefully was able to make it more clearly. See Documentation/networking/can.txt
Just take a reference on the damn socket, and we do not have to worry. bcm_tx_send() suffers from the same problem can_send() is buggy as well : newskb->sk = skb->sk; // line 293 dev_queue_xmit() can queue a packet a long time, and some packet qdisc even look at skb->sk. So this is really wrong to assume only net/can can assume things about skb->sk, and not care of net/core or net/sched users. I absolutely disagree with your patch. You need quite different _real_ fixes.