diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2021-06-25 15:02:47 +0200 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2021-07-06 21:04:13 +0200 |
commit | 27e892f6608e9d0da71884bb1422a735f6062850 (patch) | |
tree | cdb32eb84e1a3bd3dabe6cb89c1af6237933e385 | |
parent | 16949aeaa078b5994a333980d7a6cd5705d5e1f7 (diff) | |
download | glibc-27e892f6608e9d0da71884bb1422a735f6062850.tar glibc-27e892f6608e9d0da71884bb1422a735f6062850.tar.gz glibc-27e892f6608e9d0da71884bb1422a735f6062850.tar.bz2 glibc-27e892f6608e9d0da71884bb1422a735f6062850.zip |
wordexp: handle overflow in positional parameter number (bug 28011)
Use strtoul instead of atoi so that overflow can be detected.
(cherry picked from commit 5adda61f62b77384718b4c0d8336ade8f2b4b35c)
-rw-r--r-- | posix/wordexp-test.c | 1 | ||||
-rw-r--r-- | posix/wordexp.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/posix/wordexp-test.c b/posix/wordexp-test.c index ed1b22308e..cb3f989cba 100644 --- a/posix/wordexp-test.c +++ b/posix/wordexp-test.c @@ -183,6 +183,7 @@ struct test_case_struct { 0, NULL, "$var", 0, 0, { NULL, }, IFS }, { 0, NULL, "\"\\n\"", 0, 1, { "\\n", }, IFS }, { 0, NULL, "", 0, 0, { NULL, }, IFS }, + { 0, NULL, "${1234567890123456789012}", 0, 0, { NULL, }, IFS }, /* Flags not already covered (testit() has special handling for these) */ { 0, NULL, "one two", WRDE_DOOFFS, 2, { "one", "two", }, IFS }, diff --git a/posix/wordexp.c b/posix/wordexp.c index e082d94895..56289503a1 100644 --- a/posix/wordexp.c +++ b/posix/wordexp.c @@ -1399,7 +1399,7 @@ envsubst: /* Is it a numeric parameter? */ else if (isdigit (env[0])) { - int n = atoi (env); + unsigned long n = strtoul (env, NULL, 10); if (n >= __libc_argc) /* Substitute NULL. */ |