]> granicus.if.org Git - postgresql/commit
Fix assorted integer-overflow hazards in varbit.c.
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 14 Oct 2016 20:28:34 +0000 (16:28 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 14 Oct 2016 20:28:34 +0000 (16:28 -0400)
commita567b7c11b311e4ea3a2668591b48ae52021961d
tree87c5c62385cf237b9d9e4fe5dc47c6e13bcdd5b1
parent6f2db29ecb3c2bdb57dd11b5fec85af637e6602f
Fix assorted integer-overflow hazards in varbit.c.

bitshiftright() and bitshiftleft() would recursively call each other
infinitely if the user passed INT_MIN for the shift amount, due to integer
overflow in negating the shift amount.  To fix, clamp to -VARBITMAXLEN.
That doesn't change the results since any shift distance larger than the
input bit string's length produces an all-zeroes result.

Also fix some places that seemed inadequately paranoid about input typmods
exceeding VARBITMAXLEN.  While a typmod accepted by anybit_typmodin() will
certainly be much less than that, at least some of these spots are
reachable with user-chosen integer values.

Andreas Seltenreich and Tom Lane

Discussion: <87d1j2zqtz.fsf@credativ.de>
src/backend/utils/adt/varbit.c