* [PATCH net] net/sched: mqprio: fix stack out-of-bounds write in tc entry parsing @ 2025-07-22 15:51 Maher Azzouzi 2025-07-23 12:55 ` Simon Horman 0 siblings, 1 reply; 5+ messages in thread From: Maher Azzouzi @ 2025-07-22 15:51 UTC (permalink / raw) To: netdev Cc: linux-kernel, jhs, xiyou.wangcong, jiri, davem, edumazet, kuba, pabeni, horms, MaherAzzouzi From: MaherAzzouzi <maherazz04@gmail.com> TCA_MQPRIO_TC_ENTRY_INDEX is validated using NLA_POLICY_MAX(NLA_U32, TC_QOPT_MAX_QUEUE), which allows the value TC_QOPT_MAX_QUEUE (16). This leads to a 4-byte out-of-bounds stack write in the fp[] array, which only has room for 16 elements (0–15). Fix this by changing the policy to allow only up to TC_QOPT_MAX_QUEUE - 1. Fixes: f62af20bed2d ("net/sched: mqprio: allow per-TC user input of FP adminStatus") Reported-by: Maher Azzouzi <maherazz04@gmail.com> Signed-off-by: Maher Azzouzi <maherazz04@gmail.com> --- net/sched/sch_mqprio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/sched/sch_mqprio.c b/net/sched/sch_mqprio.c index 51d4013b6121..f3e5ef9a9592 100644 --- a/net/sched/sch_mqprio.c +++ b/net/sched/sch_mqprio.c @@ -152,7 +152,7 @@ static int mqprio_parse_opt(struct net_device *dev, struct tc_mqprio_qopt *qopt, static const struct nla_policy mqprio_tc_entry_policy[TCA_MQPRIO_TC_ENTRY_MAX + 1] = { [TCA_MQPRIO_TC_ENTRY_INDEX] = NLA_POLICY_MAX(NLA_U32, - TC_QOPT_MAX_QUEUE), + TC_QOPT_MAX_QUEUE - 1), [TCA_MQPRIO_TC_ENTRY_FP] = NLA_POLICY_RANGE(NLA_U32, TC_FP_EXPRESS, TC_FP_PREEMPTIBLE), -- 2.34.1 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH net] net/sched: mqprio: fix stack out-of-bounds write in tc entry parsing 2025-07-22 15:51 [PATCH net] net/sched: mqprio: fix stack out-of-bounds write in tc entry parsing Maher Azzouzi @ 2025-07-23 12:55 ` Simon Horman [not found] ` <CAFQ-Uc_qYu--YG4LNVOB=UQeUGyuQ9fSPT=e52HwHu-j3kjQtQ@mail.gmail.com> ` (2 more replies) 0 siblings, 3 replies; 5+ messages in thread From: Simon Horman @ 2025-07-23 12:55 UTC (permalink / raw) To: Maher Azzouzi Cc: netdev, linux-kernel, jhs, xiyou.wangcong, jiri, davem, edumazet, kuba, pabeni, Ferenc Fejes, Vladimir Oltean + Ferenc and Vladimir On Tue, Jul 22, 2025 at 04:51:21PM +0100, Maher Azzouzi wrote: > From: MaherAzzouzi <maherazz04@gmail.com> nit: space between your names please > > TCA_MQPRIO_TC_ENTRY_INDEX is validated using > NLA_POLICY_MAX(NLA_U32, TC_QOPT_MAX_QUEUE), which allows the value > TC_QOPT_MAX_QUEUE (16). This leads to a 4-byte out-of-bounds stack write in > the fp[] array, which only has room for 16 elements (0–15). > > Fix this by changing the policy to allow only up to TC_QOPT_MAX_QUEUE - 1. > > Fixes: f62af20bed2d ("net/sched: mqprio: allow per-TC user input of FP adminStatus") > Reported-by: Maher Azzouzi <maherazz04@gmail.com> I don't think there is any need to include a Reported-by tag if you are also the patch author. > Signed-off-by: Maher Azzouzi <maherazz04@gmail.com> I agree with your analysis and that this is a good fix. Reviewed-by: Simon Horman <horms@kernel.org> I do think it is misleading to name this #define MAX, but it's part of the UAPI so that ship has sailed. It seems that taprio has a similar problem, but that it is not a bug due to an additional check. I wonder if something like this for net-next is appropriate to align it's implementation wit that of maprio. diff --git a/net/sched/sch_taprio.c b/net/sched/sch_taprio.c index 2b14c81a87e5..e759e43ad27e 100644 --- a/net/sched/sch_taprio.c +++ b/net/sched/sch_taprio.c @@ -998,7 +998,7 @@ static const struct nla_policy entry_policy[TCA_TAPRIO_SCHED_ENTRY_MAX + 1] = { static const struct nla_policy taprio_tc_policy[TCA_TAPRIO_TC_ENTRY_MAX + 1] = { [TCA_TAPRIO_TC_ENTRY_INDEX] = NLA_POLICY_MAX(NLA_U32, - TC_QOPT_MAX_QUEUE), + TC_QOPT_MAX_QUEUE - 1), [TCA_TAPRIO_TC_ENTRY_MAX_SDU] = { .type = NLA_U32 }, [TCA_TAPRIO_TC_ENTRY_FP] = NLA_POLICY_RANGE(NLA_U32, TC_FP_EXPRESS, @@ -1698,19 +1698,15 @@ static int taprio_parse_tc_entry(struct Qdisc *sch, if (err < 0) return err; - if (!tb[TCA_TAPRIO_TC_ENTRY_INDEX]) { + if (NL_REQ_ATTR_CHECK(extack, opt, tb, TCA_TAPRIO_TC_ENTRY_INDEX)) { NL_SET_ERR_MSG_MOD(extack, "TC entry index missing"); return -EINVAL; } tc = nla_get_u32(tb[TCA_TAPRIO_TC_ENTRY_INDEX]); - if (tc >= TC_QOPT_MAX_QUEUE) { - NL_SET_ERR_MSG_MOD(extack, "TC entry index out of range"); - return -ERANGE; - } - if (*seen_tcs & BIT(tc)) { - NL_SET_ERR_MSG_MOD(extack, "Duplicate TC entry"); + NL_SET_ERR_MSG_ATTR(extack, tb[TCA_TAPRIO_TC_ENTRY_INDEX], + "Duplicate tc entry"); return -EINVAL; } > --- > net/sched/sch_mqprio.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/net/sched/sch_mqprio.c b/net/sched/sch_mqprio.c > index 51d4013b6121..f3e5ef9a9592 100644 > --- a/net/sched/sch_mqprio.c > +++ b/net/sched/sch_mqprio.c > @@ -152,7 +152,7 @@ static int mqprio_parse_opt(struct net_device *dev, struct tc_mqprio_qopt *qopt, > static const struct > nla_policy mqprio_tc_entry_policy[TCA_MQPRIO_TC_ENTRY_MAX + 1] = { > [TCA_MQPRIO_TC_ENTRY_INDEX] = NLA_POLICY_MAX(NLA_U32, > - TC_QOPT_MAX_QUEUE), > + TC_QOPT_MAX_QUEUE - 1), > [TCA_MQPRIO_TC_ENTRY_FP] = NLA_POLICY_RANGE(NLA_U32, > TC_FP_EXPRESS, > TC_FP_PREEMPTIBLE), > -- > 2.34.1 > ^ permalink raw reply related [flat|nested] 5+ messages in thread
[parent not found: <CAFQ-Uc_qYu--YG4LNVOB=UQeUGyuQ9fSPT=e52HwHu-j3kjQtQ@mail.gmail.com>]
* Re: [PATCH net] net/sched: mqprio: fix stack out-of-bounds write in tc entry parsing [not found] ` <CAFQ-Uc_qYu--YG4LNVOB=UQeUGyuQ9fSPT=e52HwHu-j3kjQtQ@mail.gmail.com> @ 2025-07-23 14:31 ` Vladimir Oltean 0 siblings, 0 replies; 5+ messages in thread From: Vladimir Oltean @ 2025-07-23 14:31 UTC (permalink / raw) To: maher azz Cc: Simon Horman, netdev, linux-kernel, jhs, xiyou.wangcong, jiri, davem, edumazet, kuba, pabeni, Ferenc Fejes Hi Maher, On Wed, Jul 23, 2025 at 02:01:52PM +0100, maher azz wrote: > Hello, > > Thank you for taking the time to look into it. Should I remove the > “reported by” tag? resend another patch or is it fine like that? > > Best regards, > Maher For an initial patch submission, the quality is reasonable. But it needs improvement before it can be merged, and I recommend submitting a v2, no earlier than 24 hours after the initial submission. Some comments: 1. The "Author:" (in git; in the email it is the "From:" field) and last "Signed-off-by:" tag need to coincide. In your case, they point to the same person (you), but the formatting is different, so they don't coincide. Please fix your "git config --global user.name" in the way that Simon indicated. 2. Please don't top-post. Trim the quoted email to just the relevant portions you're responding to, and respond below the quoted email. 3. Please configure your email client to respond only using plain-text emails, no HTML. ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH net] net/sched: mqprio: fix stack out-of-bounds write in tc entry parsing 2025-07-23 12:55 ` Simon Horman [not found] ` <CAFQ-Uc_qYu--YG4LNVOB=UQeUGyuQ9fSPT=e52HwHu-j3kjQtQ@mail.gmail.com> @ 2025-07-23 14:41 ` Vladimir Oltean 2025-07-25 18:03 ` Cong Wang 2 siblings, 0 replies; 5+ messages in thread From: Vladimir Oltean @ 2025-07-23 14:41 UTC (permalink / raw) To: Simon Horman Cc: Maher Azzouzi, netdev, linux-kernel, jhs, xiyou.wangcong, jiri, davem, edumazet, kuba, pabeni, Ferenc Fejes Hi Simon, On Wed, Jul 23, 2025 at 01:55:21PM +0100, Simon Horman wrote: > It seems that taprio has a similar problem, but that it is > not a bug due to an additional check. I wonder if something > like this for net-next is appropriate to align it's implementation > wit that of maprio. > > diff --git a/net/sched/sch_taprio.c b/net/sched/sch_taprio.c > index 2b14c81a87e5..e759e43ad27e 100644 > --- a/net/sched/sch_taprio.c > +++ b/net/sched/sch_taprio.c > @@ -998,7 +998,7 @@ static const struct nla_policy entry_policy[TCA_TAPRIO_SCHED_ENTRY_MAX + 1] = { > > static const struct nla_policy taprio_tc_policy[TCA_TAPRIO_TC_ENTRY_MAX + 1] = { > [TCA_TAPRIO_TC_ENTRY_INDEX] = NLA_POLICY_MAX(NLA_U32, > - TC_QOPT_MAX_QUEUE), > + TC_QOPT_MAX_QUEUE - 1), > [TCA_TAPRIO_TC_ENTRY_MAX_SDU] = { .type = NLA_U32 }, > [TCA_TAPRIO_TC_ENTRY_FP] = NLA_POLICY_RANGE(NLA_U32, > TC_FP_EXPRESS, > @@ -1698,19 +1698,15 @@ static int taprio_parse_tc_entry(struct Qdisc *sch, > if (err < 0) > return err; > > - if (!tb[TCA_TAPRIO_TC_ENTRY_INDEX]) { > + if (NL_REQ_ATTR_CHECK(extack, opt, tb, TCA_TAPRIO_TC_ENTRY_INDEX)) { > NL_SET_ERR_MSG_MOD(extack, "TC entry index missing"); > return -EINVAL; > } > > tc = nla_get_u32(tb[TCA_TAPRIO_TC_ENTRY_INDEX]); > - if (tc >= TC_QOPT_MAX_QUEUE) { > - NL_SET_ERR_MSG_MOD(extack, "TC entry index out of range"); > - return -ERANGE; > - } > - > if (*seen_tcs & BIT(tc)) { > - NL_SET_ERR_MSG_MOD(extack, "Duplicate TC entry"); > + NL_SET_ERR_MSG_ATTR(extack, tb[TCA_TAPRIO_TC_ENTRY_INDEX], > + "Duplicate tc entry"); > return -EINVAL; > } Yes, this is net-next material, and you can submit it independently of the taprio change (i.e. right away). ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH net] net/sched: mqprio: fix stack out-of-bounds write in tc entry parsing 2025-07-23 12:55 ` Simon Horman [not found] ` <CAFQ-Uc_qYu--YG4LNVOB=UQeUGyuQ9fSPT=e52HwHu-j3kjQtQ@mail.gmail.com> 2025-07-23 14:41 ` Vladimir Oltean @ 2025-07-25 18:03 ` Cong Wang 2 siblings, 0 replies; 5+ messages in thread From: Cong Wang @ 2025-07-25 18:03 UTC (permalink / raw) To: Simon Horman Cc: Maher Azzouzi, netdev, linux-kernel, jhs, jiri, davem, edumazet, kuba, pabeni, Ferenc Fejes, Vladimir Oltean On Wed, Jul 23, 2025 at 01:55:21PM +0100, Simon Horman wrote: > + Ferenc and Vladimir > > On Tue, Jul 22, 2025 at 04:51:21PM +0100, Maher Azzouzi wrote: > > From: MaherAzzouzi <maherazz04@gmail.com> > > nit: space between your names please > > > > > TCA_MQPRIO_TC_ENTRY_INDEX is validated using > > NLA_POLICY_MAX(NLA_U32, TC_QOPT_MAX_QUEUE), which allows the value > > TC_QOPT_MAX_QUEUE (16). This leads to a 4-byte out-of-bounds stack write in > > the fp[] array, which only has room for 16 elements (0–15). > > > > Fix this by changing the policy to allow only up to TC_QOPT_MAX_QUEUE - 1. > > > > Fixes: f62af20bed2d ("net/sched: mqprio: allow per-TC user input of FP adminStatus") > > Reported-by: Maher Azzouzi <maherazz04@gmail.com> > > I don't think there is any need to include a Reported-by tag if > you are also the patch author. +1 > > > Signed-off-by: Maher Azzouzi <maherazz04@gmail.com> > > I agree with your analysis and that this is a good fix. > > Reviewed-by: Simon Horman <horms@kernel.org> Reviewed-by: Cong Wang <xiyou.wangcong@gmail.com> Thanks for the patch. ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-07-25 18:04 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-07-22 15:51 [PATCH net] net/sched: mqprio: fix stack out-of-bounds write in tc entry parsing Maher Azzouzi 2025-07-23 12:55 ` Simon Horman [not found] ` <CAFQ-Uc_qYu--YG4LNVOB=UQeUGyuQ9fSPT=e52HwHu-j3kjQtQ@mail.gmail.com> 2025-07-23 14:31 ` Vladimir Oltean 2025-07-23 14:41 ` Vladimir Oltean 2025-07-25 18:03 ` Cong Wang
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).