From 8d21ce471a0b54aed4e450fd3b90c5972197748d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=92=8B=E5=AE=8F=E5=8D=9A?= Date: Tue, 19 Mar 2024 17:15:33 +0800 Subject: [PATCH] fix CVE-2024-1013 --- build.sh | 2 +- third_party/unixodbc/CVE-2024-1013.patch | 29 ++++++++++++++++++++++++ third_party/unixodbc/build_unixodbc.sh | 3 ++- 3 files changed, 32 insertions(+), 2 deletions(-) create mode 100644 third_party/unixodbc/CVE-2024-1013.patch diff --git a/build.sh b/build.sh index 5b03ce2..46b7b9c 100755 --- a/build.sh +++ b/build.sh @@ -104,7 +104,7 @@ while [ $# -gt 0 ]; do serverlib_dir=$2 shift 2 ;; - -ud|--unixodbc_dir) + -ud|--unixodbc_dir) if [ "$2"X = X ]; then echo "no given unixodbc directory values" exit 1 diff --git a/third_party/unixodbc/CVE-2024-1013.patch b/third_party/unixodbc/CVE-2024-1013.patch new file mode 100644 index 0000000..df1945a --- /dev/null +++ b/third_party/unixodbc/CVE-2024-1013.patch @@ -0,0 +1,29 @@ +diff -Naur a/Drivers/Postgre7.1/info.c b/Drivers/Postgre7.1/info.c +--- a/Drivers/Postgre7.1/info.c 2024-03-19 15:43:10.523054234 +0800 ++++ b/Drivers/Postgre7.1/info.c 2024-03-19 15:56:31.788491940 +0800 +@@ -1779,14 +1779,14 @@ + char index_name[MAX_INFO_STRING]; + short fields_vector[8]; + char isunique[10], isclustered[10]; +-SDWORD index_name_len, fields_vector_len; ++SQLLEN index_name_len, fields_vector_len; + TupleNode *row; + int i; + HSTMT hcol_stmt; + StatementClass *col_stmt, *indx_stmt; + char column_name[MAX_INFO_STRING], relhasrules[MAX_INFO_STRING]; + char **column_names = 0; +-Int4 column_name_len; ++SQLLEN column_name_len; + int total_columns = 0; + char error = TRUE; + ConnInfo *ci; +@@ -2136,7 +2136,7 @@ + StatementClass *tbl_stmt; + char tables_query[STD_STATEMENT_LEN]; + char attname[MAX_INFO_STRING]; +-SDWORD attname_len; ++SQLLEN + char pktab[MAX_TABLE_LEN + 1]; + Int2 result_cols; + diff --git a/third_party/unixodbc/build_unixodbc.sh b/third_party/unixodbc/build_unixodbc.sh index ab6a055..38ff899 100755 --- a/third_party/unixodbc/build_unixodbc.sh +++ b/third_party/unixodbc/build_unixodbc.sh @@ -91,7 +91,8 @@ function build_component() if [ $? -ne 0 ]; then die "[Error] change dir to $SRC_DIR failed." fi - + + patch -p1 < ../CVE-2024-1013.patch log "[Notice] start autoreconf." autoreconf -fi if [ $? -ne 0 ]; then