122ed5
From 58006537fc5f133ae8549efe5118cde418b3ace9 Mon Sep 17 00:00:00 2001
122ed5
From: Stanislav Malyshev <smalyshev@gmail.com>
122ed5
Date: Mon, 6 Jun 2022 00:56:51 -0600
122ed5
Subject: [PATCH] Fix bug #81719: mysqlnd/pdo password buffer overflow
122ed5
122ed5
---
122ed5
 ext/mysqlnd/mysqlnd_wireprotocol.c | 3 ++-
122ed5
 1 file changed, 2 insertions(+), 1 deletion(-)
122ed5
122ed5
diff --git a/ext/mysqlnd/mysqlnd_wireprotocol.c b/ext/mysqlnd/mysqlnd_wireprotocol.c
122ed5
index 87b2e7c31331..e4a298adaea4 100644
122ed5
--- a/ext/mysqlnd/mysqlnd_wireprotocol.c
122ed5
+++ b/ext/mysqlnd/mysqlnd_wireprotocol.c
122ed5
@@ -771,7 +771,8 @@ php_mysqlnd_change_auth_response_write(MYSQLND_CONN_DATA * conn, void * _packet)
122ed5
 	MYSQLND_VIO * vio = conn->vio;
122ed5
 	MYSQLND_STATS * stats = conn->stats;
122ed5
 	MYSQLND_CONNECTION_STATE * connection_state = &conn->state;
122ed5
-	zend_uchar * const buffer = pfc->cmd_buffer.length >= packet->auth_data_len? pfc->cmd_buffer.buffer : mnd_emalloc(packet->auth_data_len);
122ed5
+	size_t total_packet_size = packet->auth_data_len + MYSQLND_HEADER_SIZE;
122ed5
+	zend_uchar * const buffer = pfc->cmd_buffer.length >= total_packet_size? pfc->cmd_buffer.buffer : mnd_emalloc(total_packet_size);
122ed5
 	zend_uchar * p = buffer + MYSQLND_HEADER_SIZE; /* start after the header */
122ed5
 
122ed5
 	DBG_ENTER("php_mysqlnd_change_auth_response_write");