* [PATCH] net: ieee802154: fix a null pointer in nl802154_trigger_scan @ 2023-03-07 7:30 Dongliang Mu 2023-03-07 8:43 ` Denis Kirjanov 0 siblings, 1 reply; 6+ messages in thread From: Dongliang Mu @ 2023-03-07 7:30 UTC (permalink / raw) To: Alexander Aring, Stefan Schmidt, Miquel Raynal, David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni Cc: Dongliang Mu, syzbot+bd85b31816913a32e473, linux-wpan, netdev, linux-kernel There is a null pointer dereference if NL802154_ATTR_SCAN_TYPE is not set by the user. Fix this by adding a null pointer check. Reported-and-tested-by: syzbot+bd85b31816913a32e473@syzkaller.appspotmail.com Signed-off-by: Dongliang Mu <dzm91@hust.edu.cn> --- net/ieee802154/nl802154.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/net/ieee802154/nl802154.c b/net/ieee802154/nl802154.c index 2215f576ee37..1cf00cffd63f 100644 --- a/net/ieee802154/nl802154.c +++ b/net/ieee802154/nl802154.c @@ -1412,7 +1412,8 @@ static int nl802154_trigger_scan(struct sk_buff *skb, struct genl_info *info) return -EOPNOTSUPP; } - if (!nla_get_u8(info->attrs[NL802154_ATTR_SCAN_TYPE])) { + if (!info->attrs[NL802154_ATTR_SCAN_TYPE] || + !nla_get_u8(info->attrs[NL802154_ATTR_SCAN_TYPE])) { NL_SET_ERR_MSG(info->extack, "Malformed request, missing scan type"); return -EINVAL; } -- 2.34.1 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] net: ieee802154: fix a null pointer in nl802154_trigger_scan 2023-03-07 7:30 [PATCH] net: ieee802154: fix a null pointer in nl802154_trigger_scan Dongliang Mu @ 2023-03-07 8:43 ` Denis Kirjanov 2023-03-07 9:09 ` Miquel Raynal 2023-03-07 9:09 ` 慕冬亮 0 siblings, 2 replies; 6+ messages in thread From: Denis Kirjanov @ 2023-03-07 8:43 UTC (permalink / raw) To: Dongliang Mu, Alexander Aring, Stefan Schmidt, Miquel Raynal, David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni Cc: syzbot+bd85b31816913a32e473, linux-wpan, netdev, linux-kernel On 3/7/23 10:30, Dongliang Mu wrote: > There is a null pointer dereference if NL802154_ATTR_SCAN_TYPE is > not set by the user. > > Fix this by adding a null pointer check. > > Reported-and-tested-by: syzbot+bd85b31816913a32e473@syzkaller.appspotmail.com > Signed-off-by: Dongliang Mu <dzm91@hust.edu.cn> Please add a Fixes: tag > --- > net/ieee802154/nl802154.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/net/ieee802154/nl802154.c b/net/ieee802154/nl802154.c > index 2215f576ee37..1cf00cffd63f 100644 > --- a/net/ieee802154/nl802154.c > +++ b/net/ieee802154/nl802154.c > @@ -1412,7 +1412,8 @@ static int nl802154_trigger_scan(struct sk_buff *skb, struct genl_info *info) > return -EOPNOTSUPP; > } > > - if (!nla_get_u8(info->attrs[NL802154_ATTR_SCAN_TYPE])) { > + if (!info->attrs[NL802154_ATTR_SCAN_TYPE] || > + !nla_get_u8(info->attrs[NL802154_ATTR_SCAN_TYPE])) { > NL_SET_ERR_MSG(info->extack, "Malformed request, missing scan type"); > return -EINVAL; > } ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] net: ieee802154: fix a null pointer in nl802154_trigger_scan 2023-03-07 8:43 ` Denis Kirjanov @ 2023-03-07 9:09 ` Miquel Raynal 2023-03-07 9:21 ` 慕冬亮 2023-03-07 9:09 ` 慕冬亮 1 sibling, 1 reply; 6+ messages in thread From: Miquel Raynal @ 2023-03-07 9:09 UTC (permalink / raw) To: Denis Kirjanov Cc: Dongliang Mu, Alexander Aring, Stefan Schmidt, David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni, syzbot+bd85b31816913a32e473, linux-wpan, netdev, linux-kernel Hello, dkirjanov@suse.de wrote on Tue, 7 Mar 2023 11:43:46 +0300: > On 3/7/23 10:30, Dongliang Mu wrote: > > There is a null pointer dereference if NL802154_ATTR_SCAN_TYPE is > > not set by the user. > > > > Fix this by adding a null pointer check. Thanks for the patch! This has been fixed already: https://lore.kernel.org/linux-wpan/20230301154450.547716-1-miquel.raynal@bootlin.com/T/#u > > Reported-and-tested-by: syzbot+bd85b31816913a32e473@syzkaller.appspotmail.com Just for reference, this tag shall not be used: "Please do not use combined tags, e.g. ``Reported-and-tested-by``" Documentation/process/maintainer-tip.rst > > Signed-off-by: Dongliang Mu <dzm91@hust.edu.cn> > > Please add a Fixes: tag > > > --- > > net/ieee802154/nl802154.c | 3 ++- > > 1 file changed, 2 insertions(+), 1 deletion(-) > > > > diff --git a/net/ieee802154/nl802154.c b/net/ieee802154/nl802154.c > > index 2215f576ee37..1cf00cffd63f 100644 > > --- a/net/ieee802154/nl802154.c > > +++ b/net/ieee802154/nl802154.c > > @@ -1412,7 +1412,8 @@ static int nl802154_trigger_scan(struct sk_buff *skb, struct genl_info *info) > > return -EOPNOTSUPP; > > } > > > > - if (!nla_get_u8(info->attrs[NL802154_ATTR_SCAN_TYPE])) { > > + if (!info->attrs[NL802154_ATTR_SCAN_TYPE] || > > + !nla_get_u8(info->attrs[NL802154_ATTR_SCAN_TYPE])) { > > NL_SET_ERR_MSG(info->extack, "Malformed request, missing scan type"); > > return -EINVAL; > > } Thanks, Miquèl ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Re: [PATCH] net: ieee802154: fix a null pointer in nl802154_trigger_scan 2023-03-07 9:09 ` Miquel Raynal @ 2023-03-07 9:21 ` 慕冬亮 2023-03-07 9:34 ` Miquel Raynal 0 siblings, 1 reply; 6+ messages in thread From: 慕冬亮 @ 2023-03-07 9:21 UTC (permalink / raw) To: miquel raynal Cc: denis kirjanov, alexander aring, stefan schmidt, david s. miller, eric dumazet, jakub kicinski, paolo abeni, syzbot+bd85b31816913a32e473, linux-wpan, netdev, linux-kernel > -----原始邮件----- > 发件人: "Miquel Raynal" <miquel.raynal@bootlin.com> > 发送时间: 2023-03-07 17:09:03 (星期二) > 收件人: "Denis Kirjanov" <dkirjanov@suse.de> > 抄送: "Dongliang Mu" <dzm91@hust.edu.cn>, "Alexander Aring" <alex.aring@gmail.com>, "Stefan Schmidt" <stefan@datenfreihafen.org>, "David > S. Miller" <davem@davemloft.net>, "Eric Dumazet" <edumazet@google.com>, "Jakub > Kicinski" <kuba@kernel.org>, "Paolo Abeni" <pabeni@redhat.com>, syzbot+bd85b31816913a32e473@syzkaller.appspotmail.com, linux-wpan@vger.kernel.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org > 主题: Re: [PATCH] net: ieee802154: fix a null pointer in nl802154_trigger_scan > > Hello, > > dkirjanov@suse.de wrote on Tue, 7 Mar 2023 11:43:46 +0300: > > > On 3/7/23 10:30, Dongliang Mu wrote: > > > There is a null pointer dereference if NL802154_ATTR_SCAN_TYPE is > > > not set by the user. > > > > > > Fix this by adding a null pointer check. > > Thanks for the patch! This has been fixed already: > https://lore.kernel.org/linux-wpan/20230301154450.547716-1-miquel.raynal@bootlin.com/T/#u Oh, I see. Thanks for your reply. A small issue: should we still check !nla_get_u8(info->attrs[NL802154_ATTR_SCAN_TYPE])? > > > > Reported-and-tested-by: syzbot+bd85b31816913a32e473@syzkaller.appspotmail.com > > Just for reference, this tag shall not be used: > > "Please do not use combined tags, e.g. > ``Reported-and-tested-by``" > Documentation/process/maintainer-tip.rst > Okay. This is suggested by Syzbot. I will use separate tags in the future. > > > Signed-off-by: Dongliang Mu <dzm91@hust.edu.cn> > > > > Please add a Fixes: tag > > > > > --- > > > net/ieee802154/nl802154.c | 3 ++- > > > 1 file changed, 2 insertions(+), 1 deletion(-) > > > > > > diff --git a/net/ieee802154/nl802154.c b/net/ieee802154/nl802154.c > > > index 2215f576ee37..1cf00cffd63f 100644 > > > --- a/net/ieee802154/nl802154.c > > > +++ b/net/ieee802154/nl802154.c > > > @@ -1412,7 +1412,8 @@ static int nl802154_trigger_scan(struct sk_buff *skb, struct genl_info *info) > > > return -EOPNOTSUPP; > > > } > > > > > > - if (!nla_get_u8(info->attrs[NL802154_ATTR_SCAN_TYPE])) { > > > + if (!info->attrs[NL802154_ATTR_SCAN_TYPE] || > > > + !nla_get_u8(info->attrs[NL802154_ATTR_SCAN_TYPE])) { > > > NL_SET_ERR_MSG(info->extack, "Malformed request, missing scan type"); > > > return -EINVAL; > > > } > > > Thanks, > Miquèl -- Best regards, Dongliang Mu ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] net: ieee802154: fix a null pointer in nl802154_trigger_scan 2023-03-07 9:21 ` 慕冬亮 @ 2023-03-07 9:34 ` Miquel Raynal 0 siblings, 0 replies; 6+ messages in thread From: Miquel Raynal @ 2023-03-07 9:34 UTC (permalink / raw) To: 慕冬亮 Cc: denis kirjanov, alexander aring, stefan schmidt, david s. miller, eric dumazet, jakub kicinski, paolo abeni, syzbot+bd85b31816913a32e473, linux-wpan, netdev, linux-kernel Hi 慕冬亮, dzm91@hust.edu.cn wrote on Tue, 7 Mar 2023 17:21:49 +0800 (GMT+08:00): > > -----原始邮件----- > > 发件人: "Miquel Raynal" <miquel.raynal@bootlin.com> > > 发送时间: 2023-03-07 17:09:03 (星期二) > > 收件人: "Denis Kirjanov" <dkirjanov@suse.de> > > 抄送: "Dongliang Mu" <dzm91@hust.edu.cn>, "Alexander Aring" <alex.aring@gmail.com>, "Stefan Schmidt" <stefan@datenfreihafen.org>, "David > > S. Miller" <davem@davemloft.net>, "Eric Dumazet" <edumazet@google.com>, "Jakub > > Kicinski" <kuba@kernel.org>, "Paolo Abeni" <pabeni@redhat.com>, syzbot+bd85b31816913a32e473@syzkaller.appspotmail.com, linux-wpan@vger.kernel.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org > > 主题: Re: [PATCH] net: ieee802154: fix a null pointer in nl802154_trigger_scan > > > > Hello, > > > > dkirjanov@suse.de wrote on Tue, 7 Mar 2023 11:43:46 +0300: > > > > > On 3/7/23 10:30, Dongliang Mu wrote: > > > > There is a null pointer dereference if NL802154_ATTR_SCAN_TYPE is > > > > not set by the user. > > > > > > > > Fix this by adding a null pointer check. > > > > Thanks for the patch! This has been fixed already: > > https://lore.kernel.org/linux-wpan/20230301154450.547716-1-miquel.raynal@bootlin.com/T/#u > > Oh, I see. Thanks for your reply. > > A small issue: should we still check !nla_get_u8(info->attrs[NL802154_ATTR_SCAN_TYPE])? Isn't it already handled? There is a switch case over it with a default statement to handle unsupported scan types. > > > > Reported-and-tested-by: syzbot+bd85b31816913a32e473@syzkaller.appspotmail.com > > > > Just for reference, this tag shall not be used: > > > > "Please do not use combined tags, e.g. > > ``Reported-and-tested-by``" > > Documentation/process/maintainer-tip.rst > > > > Okay. This is suggested by Syzbot. I will use separate tags in the future. > > > > > Signed-off-by: Dongliang Mu <dzm91@hust.edu.cn> > > > > > > Please add a Fixes: tag > > > > > > > --- > > > > net/ieee802154/nl802154.c | 3 ++- > > > > 1 file changed, 2 insertions(+), 1 deletion(-) > > > > > > > > diff --git a/net/ieee802154/nl802154.c b/net/ieee802154/nl802154.c > > > > index 2215f576ee37..1cf00cffd63f 100644 > > > > --- a/net/ieee802154/nl802154.c > > > > +++ b/net/ieee802154/nl802154.c > > > > @@ -1412,7 +1412,8 @@ static int nl802154_trigger_scan(struct sk_buff *skb, struct genl_info *info) > > > > return -EOPNOTSUPP; > > > > } > > > > > > > > - if (!nla_get_u8(info->attrs[NL802154_ATTR_SCAN_TYPE])) { > > > > + if (!info->attrs[NL802154_ATTR_SCAN_TYPE] || > > > > + !nla_get_u8(info->attrs[NL802154_ATTR_SCAN_TYPE])) { > > > > NL_SET_ERR_MSG(info->extack, "Malformed request, missing scan type"); > > > > return -EINVAL; > > > > } > > > > > > Thanks, > > Miquèl > > > -- > Best regards, > Dongliang Mu Thanks, Miquèl ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Re: [PATCH] net: ieee802154: fix a null pointer in nl802154_trigger_scan 2023-03-07 8:43 ` Denis Kirjanov 2023-03-07 9:09 ` Miquel Raynal @ 2023-03-07 9:09 ` 慕冬亮 1 sibling, 0 replies; 6+ messages in thread From: 慕冬亮 @ 2023-03-07 9:09 UTC (permalink / raw) To: denis kirjanov Cc: alexander aring, stefan schmidt, miquel raynal, david s. miller, eric dumazet, jakub kicinski, paolo abeni, syzbot+bd85b31816913a32e473, linux-wpan, netdev, linux-kernel > -----原始邮件----- > 发件人: "Denis Kirjanov" <dkirjanov@suse.de> > 发送时间: 2023-03-07 16:43:46 (星期二) > 收件人: "Dongliang Mu" <dzm91@hust.edu.cn>, "Alexander Aring" <alex.aring@gmail.com>, "Stefan Schmidt" <stefan@datenfreihafen.org>, "Miquel Raynal" <miquel.raynal@bootlin.com>, "David S. Miller" <davem@davemloft.net>, "Eric Dumazet" <edumazet@google.com>, "Jakub Kicinski" <kuba@kernel.org>, "Paolo Abeni" <pabeni@redhat.com> > 抄送: syzbot+bd85b31816913a32e473@syzkaller.appspotmail.com, linux-wpan@vger.kernel.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org > 主题: Re: [PATCH] net: ieee802154: fix a null pointer in nl802154_trigger_scan > > > > On 3/7/23 10:30, Dongliang Mu wrote: > > There is a null pointer dereference if NL802154_ATTR_SCAN_TYPE is > > not set by the user. > > > > Fix this by adding a null pointer check. > > > > Reported-and-tested-by: syzbot+bd85b31816913a32e473@syzkaller.appspotmail.com > > Signed-off-by: Dongliang Mu <dzm91@hust.edu.cn> > > Please add a Fixes: tag I've sent a v2 patch. Thanks for your reminder. > > > --- > > net/ieee802154/nl802154.c | 3 ++- > > 1 file changed, 2 insertions(+), 1 deletion(-) > > > > diff --git a/net/ieee802154/nl802154.c b/net/ieee802154/nl802154.c > > index 2215f576ee37..1cf00cffd63f 100644 > > --- a/net/ieee802154/nl802154.c > > +++ b/net/ieee802154/nl802154.c > > @@ -1412,7 +1412,8 @@ static int nl802154_trigger_scan(struct sk_buff *skb, struct genl_info *info) > > return -EOPNOTSUPP; > > } > > > > - if (!nla_get_u8(info->attrs[NL802154_ATTR_SCAN_TYPE])) { > > + if (!info->attrs[NL802154_ATTR_SCAN_TYPE] || > > + !nla_get_u8(info->attrs[NL802154_ATTR_SCAN_TYPE])) { > > NL_SET_ERR_MSG(info->extack, "Malformed request, missing scan type"); > > return -EINVAL; > > } ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-03-07 9:34 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-03-07 7:30 [PATCH] net: ieee802154: fix a null pointer in nl802154_trigger_scan Dongliang Mu 2023-03-07 8:43 ` Denis Kirjanov 2023-03-07 9:09 ` Miquel Raynal 2023-03-07 9:21 ` 慕冬亮 2023-03-07 9:34 ` Miquel Raynal 2023-03-07 9:09 ` 慕冬亮
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).