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