Allow 'sslkey' and 'sslcert' in postgres_fdw user mappings
authorAndrew Dunstan <andrew@dunslane.net>
Thu, 9 Jan 2020 08:09:54 +0000 (18:39 +1030)
committerAndrew Dunstan <andrew@dunslane.net>
Thu, 9 Jan 2020 08:09:54 +0000 (18:39 +1030)
This allows different users to authenticate with different certificates.

Author: Craig Ringer

contrib/postgres_fdw/expected/postgres_fdw.out
contrib/postgres_fdw/option.c
contrib/postgres_fdw/sql/postgres_fdw.sql
doc/src/sgml/postgres-fdw.sgml

index c915885504d44a49ecbc45342c28cac3b33f7459..0912d6cd5e41766304c17232fccfd67f2009492c 100644 (file)
@@ -174,6 +174,18 @@ WARNING:  extension "bar" is not installed
 ALTER SERVER testserver1 OPTIONS (DROP extensions);
 ALTER USER MAPPING FOR public SERVER testserver1
        OPTIONS (DROP user, DROP password);
+-- Attempt to add a valid option that's not allowed in a user mapping
+ALTER USER MAPPING FOR public SERVER testserver1
+       OPTIONS (ADD sslmode 'require');
+ERROR:  invalid option "sslmode"
+HINT:  Valid options in this context are: user, password, sslpassword, password_required, sslcert, sslkey
+-- But we can add valid ones fine
+ALTER USER MAPPING FOR public SERVER testserver1
+       OPTIONS (ADD sslpassword 'dummy');
+-- Ensure valid options we haven't used in a user mapping yet are
+-- permitted to check validation.
+ALTER USER MAPPING FOR public SERVER testserver1
+       OPTIONS (ADD sslkey 'value', ADD sslcert 'value');
 ALTER FOREIGN TABLE ft1 OPTIONS (schema_name 'S 1', table_name 'T 1');
 ALTER FOREIGN TABLE ft2 OPTIONS (schema_name 'S 1', table_name 'T 1');
 ALTER FOREIGN TABLE ft1 ALTER COLUMN c1 OPTIONS (column_name 'C 1');
index df6d89a658f91eb82c516310d38794732596b66c..4a26056db08fe8d4bdea52e1956b4f7d20c6fc68 100644 (file)
@@ -194,6 +194,15 @@ InitPgFdwOptions(void)
                {"fetch_size", ForeignServerRelationId, false},
                {"fetch_size", ForeignTableRelationId, false},
                {"password_required", UserMappingRelationId, false},
+               /*
+                * sslcert and sslkey are in fact libpq options, but we repeat them
+                * here to allow them to appear in both foreign server context
+                * (when we generate libpq options) and user mapping context
+                * (from here).
+                */
+               {"sslcert", UserMappingRelationId, true},
+               {"sslkey", UserMappingRelationId, true},
+
                {NULL, InvalidOid, false}
        };
 
index 4f29e7cb44fe8841b7a77e2fff25ac30c52b4703..f2a4089e9d371cf495e7698140917940d083e622 100644 (file)
@@ -188,6 +188,19 @@ ALTER SERVER testserver1 OPTIONS (DROP extensions);
 ALTER USER MAPPING FOR public SERVER testserver1
        OPTIONS (DROP user, DROP password);
 
+-- Attempt to add a valid option that's not allowed in a user mapping
+ALTER USER MAPPING FOR public SERVER testserver1
+       OPTIONS (ADD sslmode 'require');
+
+-- But we can add valid ones fine
+ALTER USER MAPPING FOR public SERVER testserver1
+       OPTIONS (ADD sslpassword 'dummy');
+
+-- Ensure valid options we haven't used in a user mapping yet are
+-- permitted to check validation.
+ALTER USER MAPPING FOR public SERVER testserver1
+       OPTIONS (ADD sslkey 'value', ADD sslcert 'value');
+
 ALTER FOREIGN TABLE ft1 OPTIONS (schema_name 'S 1', table_name 'T 1');
 ALTER FOREIGN TABLE ft2 OPTIONS (schema_name 'S 1', table_name 'T 1');
 ALTER FOREIGN TABLE ft1 ALTER COLUMN c1 OPTIONS (column_name 'C 1');
index 4986b7f5b5d7f37aab4e7dfd385f1f33c32f32b4..812e62cb36368519e1d62ddffc1495e9a4a92dce 100644 (file)
     A foreign server using the <filename>postgres_fdw</filename> foreign data wrapper
     can have the same options that <application>libpq</application> accepts in
     connection strings, as described in <xref linkend="libpq-paramkeywords"/>,
-    except that these options are not allowed:
+    except that these options are not allowed or have special handling:
 
     <itemizedlist spacing="compact">
      <listitem>
       <para>
        <literal>user</literal>, <literal>password</literal> and <literal>sslpassword</literal> (specify these
-       in a user mapping, instead)
+       in a user mapping, instead, or use a service file)
       </para>
      </listitem>
      <listitem>
        <literal>postgres_fdw</literal>)
       </para>
      </listitem>
+     <listitem>
+      <para>
+       <literal>sslkey</literal> and <literal>sslpassword</literal> - these may
+       appear in <emphasis>either or both</emphasis> a connection and a user
+       mapping. If both are present, the user mapping setting overrides the
+       connection setting.
+      </para>
+     </listitem>
     </itemizedlist>
    </para>