lua: lnum: fix strtoul based number parsing
[openwrt/.git] / package / utils / lua / patches-host / 013-lnum-strtoul-parsing-fixes.patch
1 diff --git a/src/lnum.c b/src/lnum.c
2 index 1456b6a2ed23..b0632b04c2b7 100644
3 --- a/src/lnum.c
4 +++ b/src/lnum.c
5 @@ -127,6 +127,8 @@ static int luaO_str2i (const char *s, lua_Integer *res, char **endptr_ref) {
6  #else
7        return 0;  /* Reject the number */
8  #endif
9 +    } else if (v > LUA_INTEGER_MAX) {
10 +      return TK_NUMBER;
11      }
12    } else if ((v > LUA_INTEGER_MAX) || (*endptr && (!isspace(*endptr)))) {
13      return TK_NUMBER;  /* not in signed range, or has '.', 'e' etc. trailing */
14 @@ -310,3 +312,13 @@ int try_unmint( lua_Integer *r, lua_Integer ib ) {
15    return 0;
16  }
17  
18 +#ifdef LONG_OVERFLOW_LUA_INTEGER
19 +unsigned LUA_INTEGER lua_str2ul( const char *str, char **endptr, int base ) {
20 +  unsigned long v= strtoul(str, endptr, base);
21 +  if ( v > LUA_INTEGER_MAX ) {
22 +    errno= ERANGE;
23 +    v= ULONG_MAX;
24 +  }
25 +  return (unsigned LUA_INTEGER)v;
26 +}
27 +#endif
28 diff --git a/src/lnum_config.h b/src/lnum_config.h
29 index 19d7a4231a49..1092eead6629 100644
30 --- a/src/lnum_config.h
31 +++ b/src/lnum_config.h
32 @@ -141,7 +141,12 @@
33  #endif
34  
35  #ifndef lua_str2ul
36 -# define lua_str2ul (unsigned LUA_INTEGER)strtoul
37 +# if LONG_MAX > LUA_INTEGER_MAX
38 +#   define LONG_OVERFLOW_LUA_INTEGER
39 +    unsigned LUA_INTEGER lua_str2ul( const char *str, char **endptr, int base );
40 +# else
41 +#  define lua_str2ul (unsigned LUA_INTEGER)strtoul
42 +# endif
43  #endif
44  #ifndef LUA_INTEGER_MIN
45  # define LUA_INTEGER_MIN (-LUA_INTEGER_MAX -1)  /* -2^16|32 */
46 -- 
47 1.9.1
48