|
|
196963 |
From 1c623e3b07128e78362911ff5754e7eee57fa8bb Mon Sep 17 00:00:00 2001
|
|
|
196963 |
From: Remi Collet <remi@php.net>
|
|
|
196963 |
Date: Fri, 31 May 2013 08:39:32 +0200
|
|
|
196963 |
Subject: [PATCH] Fixed Bug #64949 (Buffer overflow in _pdo_pgsql_error)
|
|
|
196963 |
|
|
|
196963 |
There is a lot of call such as:
|
|
|
196963 |
pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, "Copy command failed");
|
|
|
196963 |
Where the 3rd paramater is a error message string where a sqlstate (5 chars)
|
|
|
196963 |
is expected. This cause a segfault in copy_from.phpt and copy_to.phpt.
|
|
|
196963 |
|
|
|
196963 |
This is only a sanity check to avoid buffer overflow, but obviously this
|
|
|
196963 |
calls need to be fixed (using NULL or a correct sqlstate).
|
|
|
196963 |
---
|
|
|
196963 |
NEWS | 3 +++
|
|
|
196963 |
ext/pdo_pgsql/pgsql_driver.c | 2 +-
|
|
|
196963 |
2 files changed, 4 insertions(+), 1 deletion(-)
|
|
|
196963 |
|
|
|
196963 |
diff --git a/ext/pdo_pgsql/pgsql_driver.c b/ext/pdo_pgsql/pgsql_driver.c
|
|
|
196963 |
index 645fd36..55f4418 100644
|
|
|
196963 |
--- a/ext/pdo_pgsql/pgsql_driver.c
|
|
|
196963 |
+++ b/ext/pdo_pgsql/pgsql_driver.c
|
|
|
196963 |
@@ -76,7 +76,7 @@ int _pdo_pgsql_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, int errcode, const char *
|
|
|
196963 |
einfo->errmsg = NULL;
|
|
|
196963 |
}
|
|
|
196963 |
|
|
|
196963 |
- if (sqlstate == NULL) {
|
|
|
196963 |
+ if (sqlstate == NULL || strlen(sqlstate) >= sizeof(pdo_error_type)) {
|
|
|
196963 |
strcpy(*pdo_err, "HY000");
|
|
|
196963 |
}
|
|
|
196963 |
else {
|
|
|
196963 |
--
|
|
|
196963 |
1.7.11.5
|
|
|
196963 |
|