Blame SOURCES/sqlite-3.26.0-out-of-bounds-read.patch

d22c23
From eca47c8481b0c2f09a7818ed2bce0ad27b1dae27 Mon Sep 17 00:00:00 2001
d22c23
From: Ondrej Dubaj <odubaj@redhat.com>
d22c23
Date: Wed, 26 Jun 2019 12:25:10 +0200
d22c23
Subject: [PATCH] Fixed out of bounds heap read in function rtreenode()
d22c23
d22c23
    Enhance the rtreenode() function of rtree (used for
d22c23
    testing) so that it uses the newer sqlite3_str object
d22c23
    for better performance and improved error reporting.
d22c23
    Test cases added to TH3.
d22c23
d22c23
    Resolves: #1723338
d22c23
    Version: 3.26.0-4
d22c23
---
d22c23
 ext/rtree/rtree.c | 35 ++++++++++++++++-------------------
d22c23
 1 file changed, 16 insertions(+), 19 deletions(-)
d22c23
d22c23
diff --git a/ext/rtree/rtree.c b/ext/rtree/rtree.c
d22c23
index 4b044cb..87d0de0 100644
d22c23
--- a/ext/rtree/rtree.c
d22c23
+++ b/ext/rtree/rtree.c
d22c23
@@ -3711,49 +3711,46 @@ rtreeInit_fail:
d22c23
 ** <num-dimension>*2 coordinates.
d22c23
 */
d22c23
 static void rtreenode(sqlite3_context *ctx, int nArg, sqlite3_value **apArg){
d22c23
-  char *zText = 0;
d22c23
   RtreeNode node;
d22c23
   Rtree tree;
d22c23
   int ii;
d22c23
+  int nData;
d22c23
+  int errCode;
d22c23
+  sqlite3_str *pOut;
d22c23
 
d22c23
   UNUSED_PARAMETER(nArg);
d22c23
   memset(&node, 0, sizeof(RtreeNode));
d22c23
   memset(&tree, 0, sizeof(Rtree));
d22c23
   tree.nDim = (u8)sqlite3_value_int(apArg[0]);
d22c23
+  if( tree.nDim<1 || tree.nDim>5 ) return;
d22c23
   tree.nDim2 = tree.nDim*2;
d22c23
   tree.nBytesPerCell = 8 + 8 * tree.nDim;
d22c23
   node.zData = (u8 *)sqlite3_value_blob(apArg[1]);
d22c23
+  nData = sqlite3_value_bytes(apArg[1]);
d22c23
+  if( nData<4 ) return;
d22c23
+  if( nData
d22c23
 
d22c23
+  pOut = sqlite3_str_new(0);
d22c23
   for(ii=0; ii
d22c23
-    char zCell[512];
d22c23
-    int nCell = 0;
d22c23
     RtreeCell cell;
d22c23
     int jj;
d22c23
 
d22c23
     nodeGetCell(&tree, &node, ii, &cell);
d22c23
-    sqlite3_snprintf(512-nCell,&zCell[nCell],"%lld", cell.iRowid);
d22c23
-    nCell = (int)strlen(zCell);
d22c23
+    if( ii>0 ) sqlite3_str_append(pOut, " ", 1);
d22c23
+    sqlite3_str_appendf(pOut, "{%lld", cell.iRowid);
d22c23
     for(jj=0; jj
d22c23
 #ifndef SQLITE_RTREE_INT_ONLY
d22c23
-      sqlite3_snprintf(512-nCell,&zCell[nCell], " %g",
d22c23
-                       (double)cell.aCoord[jj].f);
d22c23
+      sqlite3_str_appendf(pOut, " %g", (double)cell.aCoord[jj].f);
d22c23
 #else
d22c23
-      sqlite3_snprintf(512-nCell,&zCell[nCell], " %d",
d22c23
-                       cell.aCoord[jj].i);
d22c23
+      sqlite3_str_appendf(pOut, " %d", cell.aCoord[jj].i);
d22c23
 #endif
d22c23
-      nCell = (int)strlen(zCell);
d22c23
-    }
d22c23
-
d22c23
-    if( zText ){
d22c23
-      char *zTextNew = sqlite3_mprintf("%s {%s}", zText, zCell);
d22c23
-      sqlite3_free(zText);
d22c23
-      zText = zTextNew;
d22c23
-    }else{
d22c23
-      zText = sqlite3_mprintf("{%s}", zCell);
d22c23
     }
d22c23
+    sqlite3_str_append(pOut, "}", 1);
d22c23
   }
d22c23
   
d22c23
-  sqlite3_result_text(ctx, zText, -1, sqlite3_free);
d22c23
+  errCode = sqlite3_str_errcode(pOut);
d22c23
+  sqlite3_result_text(ctx, sqlite3_str_finish(pOut), -1, sqlite3_free);
d22c23
+  sqlite3_result_error_code(ctx, errCode);
d22c23
 }
d22c23
 
d22c23
 /* This routine implements an SQL function that returns the "depth" parameter
d22c23
-- 
d22c23
2.19.1
d22c23