Patch "pinctrl: single: fix pinctrl_spec.args_count bounds check" has been added to the 5.9-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    pinctrl: single: fix pinctrl_spec.args_count bounds check

to the 5.9-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     pinctrl-single-fix-pinctrl_spec.args_count-bounds-ch.patch
and it can be found in the queue-5.9 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 4ee8eaeb1904794bb530048ec55c25b2d5b94e86
Author: Drew Fustini <drew@xxxxxxxxxxxxxxx>
Date:   Wed Sep 30 12:48:40 2020 -0500

    pinctrl: single: fix pinctrl_spec.args_count bounds check
    
    [ Upstream commit 9b9448f39e83d8e6fdfed006c5db8c304a98c2cd ]
    
    The property #pinctrl-cells can either be 1 or 2:
    
    - if #pinctrl-cells = <1>, then pinctrl_spec.args_count = 2
    - if #pinctrl-cells = <2>, then pinctrl_spec.args_count = 3
    
    All other values of pinctrl_spec.args_count are incorrect.  This fix
    checks the upper bound instead of just the lower bound.
    
    Fixes: a13395418888 ("pinctrl: single: parse #pinctrl-cells = 2")
    Reported-by: Trent Piepho <tpiepho@xxxxxxxxx>
    Signed-off-by: Drew Fustini <drew@xxxxxxxxxxxxxxx>
    Acked-by: Tony Lindgren <tony@xxxxxxxxxxx>
    Link: https://lore.kernel.org/linux-omap/3139716.CMS8C0sQ7x@zen.local/
    Link: https://lore.kernel.org/r/20200930174839.1308344-1-drew@xxxxxxxxxxxxxxx
    Signed-off-by: Linus Walleij <linus.walleij@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/pinctrl/pinctrl-single.c b/drivers/pinctrl/pinctrl-single.c
index efe41abc5d472..5cbf0e55087c6 100644
--- a/drivers/pinctrl/pinctrl-single.c
+++ b/drivers/pinctrl/pinctrl-single.c
@@ -1014,7 +1014,7 @@ static int pcs_parse_one_pinctrl_entry(struct pcs_device *pcs,
 		if (res)
 			return res;
 
-		if (pinctrl_spec.args_count < 2) {
+		if (pinctrl_spec.args_count < 2 || pinctrl_spec.args_count > 3) {
 			dev_err(pcs->dev, "invalid args_count for spec: %i\n",
 				pinctrl_spec.args_count);
 			break;



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux