8a984d
commit 5adda61f62b77384718b4c0d8336ade8f2b4b35c
8a984d
Author: Andreas Schwab <schwab@linux-m68k.org>
8a984d
Date:   Fri Jun 25 15:02:47 2021 +0200
8a984d
8a984d
    wordexp: handle overflow in positional parameter number (bug 28011)
8a984d
    
8a984d
    Use strtoul instead of atoi so that overflow can be detected.
8a984d
8a984d
diff --git a/posix/wordexp-test.c b/posix/wordexp-test.c
8a984d
index cc29840355e047cc..30c1dd65efcc0b49 100644
8a984d
--- a/posix/wordexp-test.c
8a984d
+++ b/posix/wordexp-test.c
8a984d
@@ -200,6 +200,7 @@ struct test_case_struct
8a984d
     { 0, NULL, "$var", 0, 0, { NULL, }, IFS },
8a984d
     { 0, NULL, "\"\\n\"", 0, 1, { "\\n", }, IFS },
8a984d
     { 0, NULL, "", 0, 0, { NULL, }, IFS },
8a984d
+    { 0, NULL, "${1234567890123456789012}", 0, 0, { NULL, }, IFS },
8a984d
 
8a984d
     /* Flags not already covered (testit() has special handling for these) */
8a984d
     { 0, NULL, "one two", WRDE_DOOFFS, 2, { "one", "two", }, IFS },
8a984d
diff --git a/posix/wordexp.c b/posix/wordexp.c
8a984d
index 048a8068544c81fa..4061969c720f1f34 100644
8a984d
--- a/posix/wordexp.c
8a984d
+++ b/posix/wordexp.c
8a984d
@@ -1420,7 +1420,7 @@ envsubst:
8a984d
   /* Is it a numeric parameter? */
8a984d
   else if (isdigit (env[0]))
8a984d
     {
8a984d
-      int n = atoi (env);
8a984d
+      unsigned long n = strtoul (env, NULL, 10);
8a984d
 
8a984d
       if (n >= __libc_argc)
8a984d
 	/* Substitute NULL. */