netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: Re: [PATCH v2] Bluetooth: 6LoWPAN: Add missing check for skb_clone
@ 2023-03-20  2:54 Jiasheng Jiang
  0 siblings, 0 replies; 5+ messages in thread
From: Jiasheng Jiang @ 2023-03-20  2:54 UTC (permalink / raw)
  To: simon.horman
  Cc: marcel, johan.hedberg, luiz.dentz, davem, edumazet, kuba, pabeni,
	linux-bluetooth, netdev, linux-kernel, Jiasheng Jiang

On Sat, Mar 18, 2023 at 05:03:21AM +0800, Simon Horman wrote:
> On Wed, Mar 15, 2023 at 03:06:21PM +0800, Jiasheng Jiang wrote:
>> Add the check for the return value of skb_clone since it may return NULL
>> pointer and cause NULL pointer dereference in send_pkt.
>> 
>> Fixes: 18722c247023 ("Bluetooth: Enable 6LoWPAN support for BT LE devices")
>> Signed-off-by: Jiasheng Jiang <jiasheng@iscas.ac.cn>
>> ---
>> Changelog:
>> 
>> v1 -> v2:
>> 
>> 1. Modify the error handling in the loop.
> 
> I think that at a minimum this needs to be included in the patch description.
> Or better, in it's own patch with it's own fixes tag.
> It seems like a fundamental change to the error handling to me.

I will submit a separate patch to modify the error handling in the loop.
You can directly review the v1.
Link:https://lore.kernel.org/all/20230313090346.48778-1-jiasheng@iscas.ac.cn/

Thanks,
Jiang


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Re: [PATCH v2] Bluetooth: 6LoWPAN: Add missing check for skb_clone
@ 2023-03-20  3:08 Jiasheng Jiang
  2023-03-20 10:25 ` Simon Horman
  0 siblings, 1 reply; 5+ messages in thread
From: Jiasheng Jiang @ 2023-03-20  3:08 UTC (permalink / raw)
  To: simon.horman
  Cc: marcel, johan.hedberg, luiz.dentz, davem, edumazet, kuba, pabeni,
	linux-bluetooth, netdev, linux-kernel, Jiasheng Jiang

On Mon, Mar 20, 2023 at 10:54:40AM +0800, Jiasheng Jiang wrote:
> On Sat, Mar 18, 2023 at 05:03:21AM +0800, Simon Horman wrote:
>> On Wed, Mar 15, 2023 at 03:06:21PM +0800, Jiasheng Jiang wrote:
>>> Add the check for the return value of skb_clone since it may return NULL
>>> pointer and cause NULL pointer dereference in send_pkt.
>>> 
>>> Fixes: 18722c247023 ("Bluetooth: Enable 6LoWPAN support for BT LE devices")
>>> Signed-off-by: Jiasheng Jiang <jiasheng@iscas.ac.cn>
>>> ---
>>> Changelog:
>>> 
>>> v1 -> v2:
>>> 
>>> 1. Modify the error handling in the loop.
>> 
>> I think that at a minimum this needs to be included in the patch description.
>> Or better, in it's own patch with it's own fixes tag.
>> It seems like a fundamental change to the error handling to me.
> 
> I will submit a separate patch to modify the error handling in the loop.
> You can directly review the v1.
> Link:https://lore.kernel.org/all/20230313090346.48778-1-jiasheng@iscas.ac.cn/

I think it would be better to send a patch series.

Thanks,
Jiang


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Re: [PATCH v2] Bluetooth: 6LoWPAN: Add missing check for skb_clone
  2023-03-20  3:08 Re: [PATCH v2] Bluetooth: 6LoWPAN: Add missing check for skb_clone Jiasheng Jiang
@ 2023-03-20 10:25 ` Simon Horman
  0 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2023-03-20 10:25 UTC (permalink / raw)
  To: Jiasheng Jiang
  Cc: marcel, johan.hedberg, luiz.dentz, davem, edumazet, kuba, pabeni,
	linux-bluetooth, netdev, linux-kernel

On Mon, Mar 20, 2023 at 11:08:46AM +0800, Jiasheng Jiang wrote:
> On Mon, Mar 20, 2023 at 10:54:40AM +0800, Jiasheng Jiang wrote:
> > On Sat, Mar 18, 2023 at 05:03:21AM +0800, Simon Horman wrote:
> >> On Wed, Mar 15, 2023 at 03:06:21PM +0800, Jiasheng Jiang wrote:
> >>> Add the check for the return value of skb_clone since it may return NULL
> >>> pointer and cause NULL pointer dereference in send_pkt.
> >>> 
> >>> Fixes: 18722c247023 ("Bluetooth: Enable 6LoWPAN support for BT LE devices")
> >>> Signed-off-by: Jiasheng Jiang <jiasheng@iscas.ac.cn>
> >>> ---
> >>> Changelog:
> >>> 
> >>> v1 -> v2:
> >>> 
> >>> 1. Modify the error handling in the loop.
> >> 
> >> I think that at a minimum this needs to be included in the patch description.
> >> Or better, in it's own patch with it's own fixes tag.
> >> It seems like a fundamental change to the error handling to me.
> > 
> > I will submit a separate patch to modify the error handling in the loop.
> > You can directly review the v1.
> > Link:https://lore.kernel.org/all/20230313090346.48778-1-jiasheng@iscas.ac.cn/
> 
> I think it would be better to send a patch series.

Yes, agreed.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Re: [PATCH v2] Bluetooth: 6LoWPAN: Add missing check for skb_clone
@ 2023-03-29  2:08 Jiasheng Jiang
  2023-03-29 17:52 ` Simon Horman
  0 siblings, 1 reply; 5+ messages in thread
From: Jiasheng Jiang @ 2023-03-29  2:08 UTC (permalink / raw)
  To: simon.horman
  Cc: marcel, johan.hedberg, luiz.dentz, davem, edumazet, kuba, pabeni,
	linux-bluetooth, netdev, linux-kernel, Jiasheng Jiang

On Tue, Mar 21, 2023 at 00:09:11AM +0800, Simon Horman wrote:
>On Mon, Mar 20, 2023 at 02:31:55PM +0800, Jiasheng Jiang wrote:
>> Return the error when send_pkt fails in order to avoid the error being
>> overwritten.
>> Moreover, remove the redundant 'ret'.
>> 
>> Fixes: 9c238ca8ec79 ("Bluetooth: 6lowpan: Check transmit errors for multicast packets")
>> Signed-off-by: Jiasheng Jiang <jiasheng@iscas.ac.cn>
> 
> I see that the error handling is imperfect - only the most recent
> error value is returned.
> 
> But I think this patch introduces a behavioural change: if
> an error occurs then no attempt is made to send the
> multicast packet to devices that follow in the list of peers.
> 
> If so, I'd want to be sure that behaviour is desirable.

I think it's a matter of trade-offs.
The original error handling can complete the remaining correct tasks.
However, my patch can avoid resource waste, because if the an
error occurs, the rest is likely to go wrong.
For example, if a memory allocation fails because of the insufficient
memory, the next memory allocation will likely fails too.
Maybe it is better to use different error handlings depending on the
type of errors:
Immediately return "ENOMEM" errors and continue execute if the other errors occur.

Thanks,
Jiang


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Re: [PATCH v2] Bluetooth: 6LoWPAN: Add missing check for skb_clone
  2023-03-29  2:08 Jiasheng Jiang
@ 2023-03-29 17:52 ` Simon Horman
  0 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2023-03-29 17:52 UTC (permalink / raw)
  To: Jiasheng Jiang
  Cc: marcel, johan.hedberg, luiz.dentz, davem, edumazet, kuba, pabeni,
	linux-bluetooth, netdev, linux-kernel

On Wed, Mar 29, 2023 at 10:08:10AM +0800, Jiasheng Jiang wrote:
> On Tue, Mar 21, 2023 at 00:09:11AM +0800, Simon Horman wrote:
> >On Mon, Mar 20, 2023 at 02:31:55PM +0800, Jiasheng Jiang wrote:
> >> Return the error when send_pkt fails in order to avoid the error being
> >> overwritten.
> >> Moreover, remove the redundant 'ret'.
> >> 
> >> Fixes: 9c238ca8ec79 ("Bluetooth: 6lowpan: Check transmit errors for multicast packets")
> >> Signed-off-by: Jiasheng Jiang <jiasheng@iscas.ac.cn>
> > 
> > I see that the error handling is imperfect - only the most recent
> > error value is returned.
> > 
> > But I think this patch introduces a behavioural change: if
> > an error occurs then no attempt is made to send the
> > multicast packet to devices that follow in the list of peers.
> > 
> > If so, I'd want to be sure that behaviour is desirable.
> 
> I think it's a matter of trade-offs.
> The original error handling can complete the remaining correct tasks.
> However, my patch can avoid resource waste, because if the an
> error occurs, the rest is likely to go wrong.
> For example, if a memory allocation fails because of the insufficient
> memory, the next memory allocation will likely fails too.

I see your point.

> Maybe it is better to use different error handlings depending on the
> type of errors:
> Immediately return "ENOMEM" errors and continue execute if the other errors occur.

Yes, that might be interesting if we can clearly
differentiate between the two types of errors.
Yet, it brings complexity.

Given your explanation, perhaps the best idea is the implementation
provided by this patch.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-03-29 17:52 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-20  3:08 Re: [PATCH v2] Bluetooth: 6LoWPAN: Add missing check for skb_clone Jiasheng Jiang
2023-03-20 10:25 ` Simon Horman
  -- strict thread matches above, loose matches on Subject: below --
2023-03-29  2:08 Jiasheng Jiang
2023-03-29 17:52 ` Simon Horman
2023-03-20  2:54 Jiasheng Jiang

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).