changeset: 102637:afa356402217 branch: 3.3 parent: 102544:4d33bccb59a8 user: Benjamin Peterson date: Sat Aug 13 17:17:06 2016 -0700 files: Misc/NEWS Modules/_csv.c description: check for overflow in join_append_data (closes #27758) Reported by Thomas E. Hybel diff -r 4d33bccb59a8 -r afa356402217 Misc/NEWS --- a/Misc/NEWS Fri Aug 05 21:24:27 2016 +0100 +++ b/Misc/NEWS Sat Aug 13 17:17:06 2016 -0700 @@ -29,6 +29,9 @@ Library ------- +- Issue #27758: Fix possible integer overflow in the _csv module for large record + lengths. + - Issue #27568: Prevent HTTPoxy attack (CVE-2016-1000110). Ignore the HTTP_PROXY variable when REQUEST_METHOD environment is set, which indicates that the script is in CGI mode. diff -r 4d33bccb59a8 -r afa356402217 Modules/_csv.c --- a/Modules/_csv.c Fri Aug 05 21:24:27 2016 +0100 +++ b/Modules/_csv.c Sat Aug 13 17:17:06 2016 -0700 @@ -1002,11 +1002,19 @@ int i; Py_ssize_t rec_len; -#define ADDCH(c) \ +#define INCLEN \ + do {\ + if (!copy_phase && rec_len == PY_SSIZE_T_MAX) { \ + goto overflow; \ + } \ + rec_len++; \ + } while(0) + +#define ADDCH(c) \ do {\ if (copy_phase) \ self->rec[rec_len] = c;\ - rec_len++;\ + INCLEN;\ } while(0) rec_len = self->rec_len; @@ -1072,11 +1080,18 @@ if (*quoted) { if (copy_phase) ADDCH(dialect->quotechar); - else - rec_len += 2; + else { + INCLEN; /* starting quote */ + INCLEN; /* ending quote */ + } } return rec_len; + + overflow: + PyErr_NoMemory(); + return -1; #undef ADDCH +#undef INCLEN } static int