mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-30 05:40:58 +01:00
36559: test earlier for overflow in pattern range
This commit is contained in:
parent
cc44b10da1
commit
df0d86b847
3 changed files with 28 additions and 5 deletions
|
|
@ -1,5 +1,8 @@
|
|||
2015-09-19 Peter Stephenson <p.w.stephenson@ntlworld.com>
|
||||
|
||||
* 36559: Src/pattern.c: test earlier for overflow in pattern
|
||||
range.
|
||||
|
||||
* unposted: Test/D07multibyte.ztst: fix typo.
|
||||
|
||||
2015-09-18 Barton E. Schaefer <schaefer@zsh.org>
|
||||
|
|
|
|||
|
|
@ -220,8 +220,10 @@ typedef union upat *Upat;
|
|||
#if defined(ZSH_64_BIT_TYPE) || defined(LONG_IS_64_BIT)
|
||||
typedef zlong zrange_t;
|
||||
#define ZRANGE_T_IS_SIGNED (1)
|
||||
#define ZRANGE_MAX ZLONG_MAX
|
||||
#else
|
||||
typedef unsigned long zrange_t;
|
||||
#define ZRANGE_MAX ULONG_MAX
|
||||
#endif
|
||||
|
||||
#ifdef MULTIBYTE_SUPPORT
|
||||
|
|
@ -2641,19 +2643,30 @@ patmatch(Upat prog)
|
|||
start = compend = patinput;
|
||||
comp = 0;
|
||||
while (patinput < patinend && idigit(*patinput)) {
|
||||
if (comp)
|
||||
comp *= 10;
|
||||
comp += *patinput - '0';
|
||||
int out_of_range = 0;
|
||||
int digit = *patinput - '0';
|
||||
if (comp > ZRANGE_MAX / (zlong)10) {
|
||||
out_of_range = 1;
|
||||
} else {
|
||||
zrange_t c10 = comp ? comp * 10 : 0;
|
||||
if (ZRANGE_MAX - c10 < digit) {
|
||||
out_of_range = 1;
|
||||
} else {
|
||||
comp = c10;
|
||||
comp += digit;
|
||||
}
|
||||
}
|
||||
patinput++;
|
||||
compend++;
|
||||
|
||||
if (comp & ((zrange_t)1 << (sizeof(comp)*8 -
|
||||
if (out_of_range ||
|
||||
(comp & ((zrange_t)1 << (sizeof(comp)*8 -
|
||||
#ifdef ZRANGE_T_IS_SIGNED
|
||||
2
|
||||
#else
|
||||
1
|
||||
#endif
|
||||
))) {
|
||||
)))) {
|
||||
/*
|
||||
* Out of range (allowing for signedness, which
|
||||
* we need if we are using zlongs).
|
||||
|
|
|
|||
|
|
@ -36,6 +36,12 @@
|
|||
*/
|
||||
#ifdef ZSH_64_BIT_TYPE
|
||||
typedef ZSH_64_BIT_TYPE zlong;
|
||||
#if defind(ZLONG_IS_LONG_LONG) && defined(LLONG_MAX)
|
||||
#define ZLONG_MAX LLONG_MAX
|
||||
#else
|
||||
/* umm... */
|
||||
#define ZLONG_MAX ((zlong)9223372036854775807)
|
||||
#endif
|
||||
#ifdef ZSH_64_BIT_UTYPE
|
||||
typedef ZSH_64_BIT_UTYPE zulong;
|
||||
#else
|
||||
|
|
@ -44,6 +50,7 @@ typedef unsigned zlong zulong;
|
|||
#else
|
||||
typedef long zlong;
|
||||
typedef unsigned long zulong;
|
||||
#define ZLONG_MAX LONG_MAX
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue