Change ${quote_pgsql to quote ' as '' instead of \' because of a
authorPhilip Hazel <ph10@hermes.cam.ac.uk>
Fri, 30 Jun 2006 13:57:46 +0000 (13:57 +0000)
committerPhilip Hazel <ph10@hermes.cam.ac.uk>
Fri, 30 Jun 2006 13:57:46 +0000 (13:57 +0000)
security issue.

doc/doc-txt/ChangeLog
src/src/lookups/pgsql.c
test/scripts/9200-PostgreSQL/9200
test/stderr/9200
test/stdout/9200

index 348c279a13d8e6041690995abbf90505189686a1..ea9472d2b154a156e5089370a075ed076c9d8840 100644 (file)
@@ -1,4 +1,4 @@
-$Cambridge: exim/doc/doc-txt/ChangeLog,v 1.363 2006/06/28 16:00:23 ph10 Exp $
+$Cambridge: exim/doc/doc-txt/ChangeLog,v 1.364 2006/06/30 13:57:46 ph10 Exp $
 
 Change log file for Exim from version 4.21
 -------------------------------------------
@@ -56,6 +56,11 @@ PH/06 Added acl_not_smtp_start, based on Johannes Berg's patch, and set the
       bit to forbid control=suppress_local_fixups in the acl_not_smtp ACL,
       because it is too late at that time, and has no effect.
 
+PH/07 Changed ${quote_pgsql to quote ' as '' instead of \' because of a
+      security issue with \' (bugzilla #107). I could not use the
+      PQescapeStringConn() function, because it needs a PGconn value as one of
+      its arguments.
+
 
 Exim version 4.62
 -----------------
index 207422c6de7be7ba411a975bd2c0c9f8826d37e2..caefeef18efdb8ddb83e985278d9da0907ebeca9 100644 (file)
@@ -1,4 +1,4 @@
-/* $Cambridge: exim/src/src/lookups/pgsql.c,v 1.4 2006/02/07 11:19:01 ph10 Exp $ */
+/* $Cambridge: exim/src/src/lookups/pgsql.c,v 1.5 2006/06/30 13:57:46 ph10 Exp $ */
 
 /*************************************************
 *     Exim - an Internet mail transport agent    *
@@ -422,6 +422,16 @@ to allow escaping "on spec". If you use something like "where id="ab\%cd" it
 does treat the string as "ab%cd". So we can safely quote percent and
 underscore. [This is different to MySQL, where you can't do this.]
 
+The original code quoted single quotes as \' which is documented as valid in
+the O'Reilly book "Practical PostgreSQL" (first edition) as an alternative to
+the SQL standard '' way of representing a single quote as data. However, in
+June 2006 there was some security issue with using \' and so this has been
+changed.
+
+[Note: There is a function called PQescapeStringConn() that quotes strings.
+This cannot be used because it needs a PGconn argument (the connection handle).
+Why, I don't know. Seems odd for just string escaping...]
+
 Arguments:
   s          the string to be quoted
   opt        additional option text or NULL if none
@@ -447,7 +457,12 @@ t = quoted = store_get(Ustrlen(s) + count + 1);
 
 while ((c = *s++) != 0)
   {
-  if (Ustrchr("\n\t\r\b\'\"\\%_", c) != NULL)
+  if (c == '\'')
+    {
+    *t++ = '\'';
+    *t++ = '\'';
+    }
+  else if (Ustrchr("\n\t\r\b\"\\%_", c) != NULL)
     {
     *t++ = '\\';
     switch(c)
index 2fd81f5e42e4bf1a0cf85220fc2e08cbda6f9ada..c4440a89edc72b203e406f5dccd82a2307439496 100644 (file)
@@ -9,6 +9,7 @@ ${lookup pgsql {delete from them where id='nonexist';}}
 ${lookup pgsql {select * from them where id='quote2';}}
 ${lookup pgsql {select * from them where id='newline';}}
 ${lookup pgsql {select * from them where id='tab';}}
+${lookup pgsql {select * from them where name='${quote_pgsql:'stquot}';}}
 ****
 exim -d -bh 10.0.0.0
 mail from:<a@b>
index 1a004b30f766d5ca332880b3f475ff7df2062938..593ec4d9c21cc6c40add781052f5c41be01ceb6b 100644 (file)
@@ -100,7 +100,18 @@ internal_search_find: file="NULL"
 database lookup required for select * from them where id='tab';
 PGSQL query: select * from them where id='tab';
 PGSQL using cached connection for localhost/test/CALLER
-lookup yielded: name="x x" id=tab 
+lookup yielded: name="x        x" id=tab 
+search_open: pgsql "NULL"
+  cached open
+search_find: file="NULL"
+  key="select * from them where name='''stquot';" partial=-1 affix=NULL starflags=0
+LRU list:
+internal_search_find: file="NULL"
+  type=pgsql key="select * from them where name='''stquot';"
+database lookup required for select * from them where name='''stquot';
+PGSQL query: select * from them where name='''stquot';
+PGSQL using cached connection for localhost/test/CALLER
+lookup yielded: name='stquot id=quote1 
 search_tidyup called
 close PGSQL connection: localhost/test/CALLER
 >>>>>>>>>>>>>>>> Exim pid=pppp terminating with rc=0 >>>>>>>>>>>>>>>>
index 833f670ceb9b6ab18f720942a3f8e54980df0c5e..4b97f9f711d113b96544cffe38df5f58dfeee035 100644 (file)
@@ -8,6 +8,7 @@
 > name="before
 after" id=newline 
 > name="x      x" id=tab 
+> name='stquot id=quote1 
 > 
 
 **** SMTP testing session as if from host 10.0.0.0