]> granicus.if.org Git - php/commit
Fix #69975: PHP segfaults when accessing nvarchar(max) defined columns
authorChristoph M. Becker <cmb@php.net>
Thu, 2 Jul 2015 22:04:50 +0000 (00:04 +0200)
committerJulien Pauli <jpauli@php.net>
Fri, 8 Jul 2016 13:33:46 +0000 (15:33 +0200)
commit82637e818776d4fe778fb1dbac26eeece02e900c
tree2f43f7ed9788654b272f3512e8771bfb927c8939
parent51b584b1596e390ea989b400ef2de392b560ee79
Fix #69975: PHP segfaults when accessing nvarchar(max) defined columns

The SQL Server Native Client 11.0 and maybe other ODBC drivers report
NVARCHAR(MAX) columns as SQL_WVARCHAR with size 0. This causes too small a
buffer to be emalloc'd, likely causing a segfault in the following. As we don't
know the real size of the column data, we treat such colums as
SQL_WLONGVARCHAR.

The related bug #67437 suggests that some drivers report a size of ~4GB. It is
not certain that this is really the case (there might be some integer overflow
involved, and anyway, there has been no feedback), so we do not cater for this
now. However, it would not be hard to treat all sizes above a certain threshold
in a similar way, i.e. as SQL_WLONGVARCHAR.

(cherry picked from commit 16db4d1462bf3eacb93c0cd940f799160a284b24)
(cherry picked from commit 344ff5dd4c538eaebea075f7705321f8b86d0b47)
ext/odbc/php_odbc.c
ext/odbc/tests/bug69975.phpt [new file with mode: 0644]