Skip to content

Commit 43d7a0a

Browse files
committed
Fix several one-byte buffer over-reads in to_number
Several places in NUM_numpart_from_char(), which is called from the SQL function to_number(text, text), could accidentally read one byte past the end of the input buffer (which comes from the input text datum and is not null-terminated). 1. One leading space character would be skipped, but there was no check that the input was at least one byte long. This does not happen in practice, but for defensiveness, add a check anyway. 2. Commit 4a3a1e2 apparently accidentally doubled that code that skips one space character (so that two spaces might be skipped), but there was no overflow check before skipping the second byte. Fix by removing that duplicate code. 3. A logic error would allow a one-byte over-read when looking for a trailing sign (S) placeholder. In each case, the extra byte cannot be read out directly, but looking at it might cause a crash. The third item was discovered by Piotr Stefaniak, the first two were found and analyzed by Tom Lane and Peter Eisentraut.
1 parent a35c2d9 commit 43d7a0a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/backend/utils/adt/formatting.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4157,12 +4157,12 @@ NUM_numpart_from_char(NUMProc *Np, int id, int input_len)
41574157
(id == NUM_0 || id == NUM_9) ? "NUM_0/9" : id == NUM_DEC ? "NUM_DEC" : "???");
41584158
#endif
41594159

4160-
if (*Np->inout_p == ' ')
4161-
Np->inout_p++;
4162-
41634160
#define OVERLOAD_TEST (Np->inout_p >= Np->inout + input_len)
41644161
#define AMOUNT_TEST(_s) (input_len-(Np->inout_p-Np->inout) >= _s)
41654162

4163+
if (OVERLOAD_TEST)
4164+
return;
4165+
41664166
if (*Np->inout_p == ' ')
41674167
Np->inout_p++;
41684168

@@ -4300,7 +4300,7 @@ NUM_numpart_from_char(NUMProc *Np, int id, int input_len)
43004300
* next char is not digit
43014301
*/
43024302
if (IS_LSIGN(Np->Num) && isread &&
4303-
(Np->inout_p + 1) <= Np->inout + input_len &&
4303+
(Np->inout_p + 1) < Np->inout + input_len &&
43044304
!isdigit((unsigned char) *(Np->inout_p + 1)))
43054305
{
43064306
int x;

0 commit comments

Comments
 (0)