]> granicus.if.org Git - postgresql/commitdiff
Improved version of patch to protect pg_get_expr() against misuse:
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 30 Jul 2010 17:57:18 +0000 (17:57 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 30 Jul 2010 17:57:18 +0000 (17:57 +0000)
look through join alias Vars to avoid breaking join queries, and
move the test to someplace where it will catch more possible ways
of calling a function.  We still ought to throw away the whole thing
in favor of a data-type-based solution, but that's not feasible in
the back branches.

Completion of back-port of my patch of yesterday.

src/backend/parser/parse_expr.c
src/backend/parser/parse_func.c
src/backend/parser/parse_oper.c
src/include/parser/parse_func.h

index 1e0afb3482a731b569457da39bfe355104d05fde..60fc76ab64284387453b5170023736d7d8b34373 100644 (file)
@@ -8,15 +8,13 @@
  *
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/src/backend/parser/parse_expr.c,v 1.185.2.3 2010/06/30 18:11:19 heikki Exp $
+ *       $PostgreSQL: pgsql/src/backend/parser/parse_expr.c,v 1.185.2.4 2010/07/30 17:57:18 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
 
 #include "postgres.h"
 
-#include "catalog/pg_attrdef.h"
-#include "catalog/pg_constraint.h"
 #include "catalog/pg_operator.h"
 #include "catalog/pg_proc.h"
 #include "commands/dbcommands.h"
@@ -34,7 +32,6 @@
 #include "parser/parse_relation.h"
 #include "parser/parse_type.h"
 #include "utils/builtins.h"
-#include "utils/fmgroids.h"
 #include "utils/lsyscache.h"
 #include "utils/syscache.h"
 
@@ -779,7 +776,6 @@ transformFuncCall(ParseState *pstate, FuncCall *fn)
 {
        List       *targs;
        ListCell   *args;
-       Node       *result;
 
        /*
         * Transform the list of arguments.  We use a shallow list copy and then
@@ -795,87 +791,12 @@ transformFuncCall(ParseState *pstate, FuncCall *fn)
                                                                         (Node *) lfirst(args));
        }
 
-       result = ParseFuncOrColumn(pstate,
+       return ParseFuncOrColumn(pstate,
                                                         fn->funcname,
                                                         targs,
                                                         fn->agg_star,
                                                         fn->agg_distinct,
                                                         false);
-
-       /*
-        * pg_get_expr() is a system function that exposes the expression
-        * deparsing functionality in ruleutils.c to users. Very handy, but
-        * it was later realized that the functions in ruleutils.c don't check
-        * the input rigorously, assuming it to come from system catalogs and
-        * to therefore be valid. That makes it easy for a user to crash the
-        * backend by passing a maliciously crafted string representation of
-        * an expression to pg_get_expr().
-        *
-        * There's a lot of code in ruleutils.c, so it's not feasible to add
-        * water-proof input checking after the fact. Even if we did it once,
-        * it would need to be taken into account in any future patches too.
-        *
-        * Instead, we restrict pg_rule_expr() to only allow input from system
-        * catalogs instead. This is a hack, but it's the most robust and easiest
-        * to backpatch way of plugging the vulnerability.
-        *
-        * This is transparent to the typical usage pattern of
-        * "pg_get_expr(systemcolumn, ...)", but will break
-        * "pg_get_expr('foo', ...)", even if 'foo' is a valid expression fetched
-        * earlier from a system catalog. Hopefully there's isn't many clients
-        * doing that out there.
-        */
-       if (result && IsA(result, FuncExpr) && !superuser())
-       {
-               FuncExpr *fe = (FuncExpr *) result;
-               if (fe->funcid == F_PG_GET_EXPR || fe->funcid == F_PG_GET_EXPR_EXT)
-               {
-                       Expr *arg = linitial(fe->args);
-                       bool allowed = false;
-
-                       /*
-                        * Check that the argument came directly from one of the
-                        * allowed system catalog columns
-                        */
-                       if (IsA(arg, Var))
-                       {
-                               Var *var = (Var *) arg;
-                               RangeTblEntry *rte;
-
-                               rte = GetRTEByRangeTablePosn(pstate,
-                                                                                        var->varno, var->varlevelsup);
-
-                               switch(rte->relid)
-                               {
-                                       case IndexRelationId:
-                                               if (var->varattno == Anum_pg_index_indexprs ||
-                                                       var->varattno == Anum_pg_index_indpred)
-                                                       allowed = true;
-                                               break;
-
-                                       case AttrDefaultRelationId:
-                                               if (var->varattno == Anum_pg_attrdef_adbin)
-                                                       allowed = true;
-                                               break;
-
-                                       case ConstraintRelationId:
-                                               if (var->varattno == Anum_pg_constraint_conbin)
-                                                       allowed = true;
-                                               break;
-
-                                       case TypeRelationId:
-                                               if (var->varattno == Anum_pg_type_typdefaultbin)
-                                                       allowed = true;
-                                               break;
-                               }
-                       }
-                       if (!allowed)
-                               ereport(ERROR,
-                                               (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
-                                                errmsg("argument to pg_get_expr() must come from system catalogs")));
-               }
-       }
-       return result;
 }
 
 static Node *
index 8c15203433edd0c615c2d0249fb20a344ae92818..32426b177a643f01204d6d6bf510dcc8cb08aeac 100644 (file)
@@ -8,16 +8,19 @@
  *
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/src/backend/parser/parse_func.c,v 1.182.2.1 2005/11/22 18:23:14 momjian Exp $
+ *       $PostgreSQL: pgsql/src/backend/parser/parse_func.c,v 1.182.2.2 2010/07/30 17:57:18 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
 #include "postgres.h"
 
 #include "access/heapam.h"
+#include "catalog/pg_attrdef.h"
+#include "catalog/pg_constraint.h"
 #include "catalog/pg_inherits.h"
 #include "catalog/pg_proc.h"
 #include "funcapi.h"
+#include "miscadmin.h"
 #include "lib/stringinfo.h"
 #include "nodes/makefuncs.h"
 #include "parser/parse_agg.h"
@@ -265,6 +268,9 @@ ParseFuncOrColumn(ParseState *pstate, List *funcname, List *fargs,
                                         errmsg("aggregates may not return sets")));
        }
 
+       /* Hack to protect pg_get_expr() against misuse */
+       check_pg_get_expr_args(pstate, funcid, fargs);
+
        return retval;
 }
 
@@ -1232,3 +1238,102 @@ LookupFuncNameTypeNames(List *funcname, List *argtypes, bool noError)
 
        return LookupFuncName(funcname, argcount, argoids, noError);
 }
+
+
+/*
+ * pg_get_expr() is a system function that exposes the expression
+ * deparsing functionality in ruleutils.c to users. Very handy, but it was
+ * later realized that the functions in ruleutils.c don't check the input
+ * rigorously, assuming it to come from system catalogs and to therefore
+ * be valid. That makes it easy for a user to crash the backend by passing
+ * a maliciously crafted string representation of an expression to
+ * pg_get_expr().
+ *
+ * There's a lot of code in ruleutils.c, so it's not feasible to add
+ * water-proof input checking after the fact. Even if we did it once, it
+ * would need to be taken into account in any future patches too.
+ *
+ * Instead, we restrict pg_rule_expr() to only allow input from system
+ * catalogs. This is a hack, but it's the most robust and easiest
+ * to backpatch way of plugging the vulnerability.
+ *
+ * This is transparent to the typical usage pattern of
+ * "pg_get_expr(systemcolumn, ...)", but will break "pg_get_expr('foo',
+ * ...)", even if 'foo' is a valid expression fetched earlier from a
+ * system catalog. Hopefully there aren't many clients doing that out there.
+ */
+void
+check_pg_get_expr_args(ParseState *pstate, Oid fnoid, List *args)
+{
+       bool            allowed = false;
+       Node       *arg;
+       int                     netlevelsup;
+
+       /* if not being called for pg_get_expr, do nothing */
+       if (fnoid != F_PG_GET_EXPR && fnoid != F_PG_GET_EXPR_EXT)
+               return;
+
+       /* superusers are allowed to call it anyway (dubious) */
+       if (superuser())
+               return;
+
+       /*
+        * The first argument must be a Var referencing one of the allowed
+        * system-catalog columns.  It could be a join alias Var, though.
+        */
+       Assert(list_length(args) > 1);
+       arg = (Node *) linitial(args);
+       netlevelsup = 0;
+
+restart:
+       if (IsA(arg, Var))
+       {
+               Var                *var = (Var *) arg;
+               RangeTblEntry *rte;
+
+               netlevelsup += var->varlevelsup;
+               rte = GetRTEByRangeTablePosn(pstate, var->varno, netlevelsup);
+
+               if (rte->rtekind == RTE_JOIN)
+               {
+                       /* Expand join alias reference */
+                       if (var->varattno > 0 &&
+                               var->varattno <= list_length(rte->joinaliasvars))
+                       {
+                               arg = (Node *) list_nth(rte->joinaliasvars, var->varattno - 1);
+                               goto restart;
+                       }
+               }
+               else if (rte->rtekind == RTE_RELATION)
+               {
+                       switch (rte->relid)
+                       {
+                               case IndexRelationId:
+                                       if (var->varattno == Anum_pg_index_indexprs ||
+                                               var->varattno == Anum_pg_index_indpred)
+                                               allowed = true;
+                                       break;
+
+                               case AttrDefaultRelationId:
+                                       if (var->varattno == Anum_pg_attrdef_adbin)
+                                               allowed = true;
+                                       break;
+
+                               case ConstraintRelationId:
+                                       if (var->varattno == Anum_pg_constraint_conbin)
+                                               allowed = true;
+                                       break;
+
+                               case TypeRelationId:
+                                       if (var->varattno == Anum_pg_type_typdefaultbin)
+                                               allowed = true;
+                                       break;
+                       }
+               }
+       }
+
+       if (!allowed)
+               ereport(ERROR,
+                               (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
+                                errmsg("argument to pg_get_expr() must come from system catalogs")));
+}
index 6329ae5f92793c227bdc2bfd4483187b31e2af92..ff255915b8e4d5fc72c4b99d1c19afef8dadf7fa 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/src/backend/parser/parse_oper.c,v 1.82.2.1 2005/11/22 18:23:14 momjian Exp $
+ *       $PostgreSQL: pgsql/src/backend/parser/parse_oper.c,v 1.82.2.2 2010/07/30 17:57:18 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -930,6 +930,9 @@ make_scalar_array_op(ParseState *pstate, List *opname,
        result->useOr = useOr;
        result->args = args;
 
+       /* Hack to protect pg_get_expr() against misuse */
+       check_pg_get_expr_args(pstate, opform->oprcode, args);
+
        ReleaseSysCache(tup);
 
        return (Expr *) result;
@@ -1003,5 +1006,8 @@ make_op_expr(ParseState *pstate, Operator op,
        result->opretset = get_func_retset(opform->oprcode);
        result->args = args;
 
+       /* Hack to protect pg_get_expr() against misuse */
+       check_pg_get_expr_args(pstate, opform->oprcode, args);
+
        return (Expr *) result;
 }
index 5d203e60caeb1f6950a5cc7a78531f5d020b2723..13427b63f1afe4345276b7912667dabb78100fe1 100644 (file)
@@ -7,7 +7,7 @@
  * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
- * $PostgreSQL: pgsql/src/include/parser/parse_func.h,v 1.53 2004/12/31 22:03:38 pgsql Exp $
+ * $PostgreSQL: pgsql/src/include/parser/parse_func.h,v 1.53.6.1 2010/07/30 17:57:18 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -78,4 +78,6 @@ extern Oid LookupFuncName(List *funcname, int nargs, const Oid *argtypes,
 extern Oid LookupFuncNameTypeNames(List *funcname, List *argtypes,
                                                bool noError);
 
+extern void check_pg_get_expr_args(ParseState *pstate, Oid fnoid, List *args);
+
 #endif   /* PARSE_FUNC_H */