Thread

Commits

  1. Ensure COPY TO on an RLS-enabled table copies no more than it should.

  1. RLS makes COPY TO process child tables

    Antonin Houska <ah@cybertec.at> — 2023-02-01T11:45:57Z

    While working on [1] I noticed that if RLS gets enabled, the COPY TO command
    includes the contents of child table into the result, although the
    documentation says it should not:
    
    	"COPY TO can be used only with plain tables, not views, and does not
    	copy rows from child tables or child partitions. For example, COPY
    	table TO copies the same rows as SELECT * FROM ONLY table. The syntax
    	COPY (SELECT * FROM table) TO ... can be used to dump all of the rows
    	in an inheritance hierarchy, partitioned table, or view."
    
    A test case is attached (rls.sql) as well as fix proposal
    (copy_rls_no_inh.diff).
    
    [1] https://commitfest.postgresql.org/41/3641/
    
    -- 
    Antonin Houska
    Web: https://www.cybertec-postgresql.com
    
    
  2. Re: RLS makes COPY TO process child tables

    Yugo Nagata <nagata@sraoss.co.jp> — 2023-02-01T16:15:25Z

    On Wed, 01 Feb 2023 12:45:57 +0100
    Antonin Houska <ah@cybertec.at> wrote:
    
    > While working on [1] I noticed that if RLS gets enabled, the COPY TO command
    > includes the contents of child table into the result, although the
    > documentation says it should not:
    > 
    > 	"COPY TO can be used only with plain tables, not views, and does not
    > 	copy rows from child tables or child partitions. For example, COPY
    > 	table TO copies the same rows as SELECT * FROM ONLY table. The syntax
    > 	COPY (SELECT * FROM table) TO ... can be used to dump all of the rows
    > 	in an inheritance hierarchy, partitioned table, or view."
    > 
    > A test case is attached (rls.sql) as well as fix proposal
    > (copy_rls_no_inh.diff).
    
    I think this is a bug because the current behaviour is different from
    the documentation. 
    
    When RLS is enabled on a table in `COPY ... TO ...`, the query is converted
    to `COPY (SELECT * FROM ...) TO ...` to allow the rewriter to add in RLS
    clauses. This causes to dump the rows of child tables.
    
    The patch fixes this by setting "inh" of the table in the converted query
    to false. This seems reasonable and actually fixes the problem.
    
    However, I think we would want a comment on the added line. Also, the
    attached test should be placed in the regression test.
    
    Regards,
    Yugo Nagata
    
    > 
    > [1] https://commitfest.postgresql.org/41/3641/
    > 
    > -- 
    > Antonin Houska
    > Web: https://www.cybertec-postgresql.com
    > 
    
    
    -- 
    Yugo NAGATA <nagata@sraoss.co.jp>
    
    
    
    
  3. Re: RLS makes COPY TO process child tables

    Tom Lane <tgl@sss.pgh.pa.us> — 2023-02-01T16:47:23Z

    Yugo NAGATA <nagata@sraoss.co.jp> writes:
    > Antonin Houska <ah@cybertec.at> wrote:
    >> While working on [1] I noticed that if RLS gets enabled, the COPY TO command
    >> includes the contents of child table into the result, although the
    >> documentation says it should not:
    
    > I think this is a bug because the current behaviour is different from
    > the documentation. 
    
    I agree, it shouldn't do that.
    
    > When RLS is enabled on a table in `COPY ... TO ...`, the query is converted
    > to `COPY (SELECT * FROM ...) TO ...` to allow the rewriter to add in RLS
    > clauses. This causes to dump the rows of child tables.
    
    Do we actually say that in so many words, either in the code or docs?
    If so, it ought to read `COPY (SELECT * FROM ONLY ...) TO ...`
    instead.  (If we say that in the docs, then arguably the code *does*
    conform to the docs.  But I don't see it in the COPY ref page at least.)
    
    			regards, tom lane
    
    
    
    
  4. Re: RLS makes COPY TO process child tables

    Yugo Nagata <nagata@sraoss.co.jp> — 2023-02-02T07:00:31Z

    On Wed, 01 Feb 2023 11:47:23 -0500
    Tom Lane <tgl@sss.pgh.pa.us> wrote:
    
    > Yugo NAGATA <nagata@sraoss.co.jp> writes:
    > > Antonin Houska <ah@cybertec.at> wrote:
    > >> While working on [1] I noticed that if RLS gets enabled, the COPY TO command
    > >> includes the contents of child table into the result, although the
    > >> documentation says it should not:
    > 
    > > I think this is a bug because the current behaviour is different from
    > > the documentation. 
    > 
    > I agree, it shouldn't do that.
    > 
    > > When RLS is enabled on a table in `COPY ... TO ...`, the query is converted
    > > to `COPY (SELECT * FROM ...) TO ...` to allow the rewriter to add in RLS
    > > clauses. This causes to dump the rows of child tables.
    > 
    > Do we actually say that in so many words, either in the code or docs?
    > If so, it ought to read `COPY (SELECT * FROM ONLY ...) TO ...`
    > instead.  (If we say that in the docs, then arguably the code *does*
    > conform to the docs.  But I don't see it in the COPY ref page at least.)
    
    The documentation do not say that, but the current code actually do that.
    Also, there is the following comment in BeginCopyTo().
    
             * With row-level security and a user using "COPY relation TO", we
             * have to convert the "COPY relation TO" to a query-based COPY (eg:
             * "COPY (SELECT * FROM relation) TO"), to allow the rewriter to add
             * in any RLS clauses.
    
    Maybe, it is be better to change the description in the comment to
    "COPY (SELECT * FROM ONLY relation) TO" when fixing the bug.
    
    Regards,
    Yugo Nagata
    
    -- 
    Yugo NAGATA <nagata@sraoss.co.jp>
    
    
    
    
  5. Re: RLS makes COPY TO process child tables

    Antonin Houska <ah@cybertec.at> — 2023-02-02T07:01:54Z

    Yugo NAGATA <nagata@sraoss.co.jp> wrote:
    
    > On Wed, 01 Feb 2023 12:45:57 +0100
    > Antonin Houska <ah@cybertec.at> wrote:
    > 
    > > While working on [1] I noticed that if RLS gets enabled, the COPY TO command
    > > includes the contents of child table into the result, although the
    > > documentation says it should not:
    > > 
    > > 	"COPY TO can be used only with plain tables, not views, and does not
    > > 	copy rows from child tables or child partitions. For example, COPY
    > > 	table TO copies the same rows as SELECT * FROM ONLY table. The syntax
    > > 	COPY (SELECT * FROM table) TO ... can be used to dump all of the rows
    > > 	in an inheritance hierarchy, partitioned table, or view."
    > > 
    > > A test case is attached (rls.sql) as well as fix proposal
    > > (copy_rls_no_inh.diff).
    > 
    > I think this is a bug because the current behaviour is different from
    > the documentation. 
    > 
    > When RLS is enabled on a table in `COPY ... TO ...`, the query is converted
    > to `COPY (SELECT * FROM ...) TO ...` to allow the rewriter to add in RLS
    > clauses. This causes to dump the rows of child tables.
    > 
    > The patch fixes this by setting "inh" of the table in the converted query
    > to false. This seems reasonable and actually fixes the problem.
    > 
    > However, I think we would want a comment on the added line.
    
    A short comment added, see the new patch version.
    
    > Also, the attached test should be placed in the regression test.
    
    Hm, I'm not sure it's necessary. It would effectively test whether the 'inh'
    field works, but if it didn't, many other tests would fail. I discovered the
    bug by reading the code, so I wanted to demonstrate (also to myself) that it
    causes incorrect behavior from user perspective. That was the purpose of the
    test.
    
    -- 
    Antonin Houska
    Web: https://www.cybertec-postgresql.com
    
    
  6. Re: RLS makes COPY TO process child tables

    Stephen Frost <sfrost@snowman.net> — 2023-02-08T01:02:05Z

    Greetings,
    
    * Yugo NAGATA (nagata@sraoss.co.jp) wrote:
    > On Wed, 01 Feb 2023 11:47:23 -0500
    > Tom Lane <tgl@sss.pgh.pa.us> wrote:
    > 
    > > Yugo NAGATA <nagata@sraoss.co.jp> writes:
    > > > Antonin Houska <ah@cybertec.at> wrote:
    > > >> While working on [1] I noticed that if RLS gets enabled, the COPY TO command
    > > >> includes the contents of child table into the result, although the
    > > >> documentation says it should not:
    > > 
    > > > I think this is a bug because the current behaviour is different from
    > > > the documentation. 
    > > 
    > > I agree, it shouldn't do that.
    
    Yeah, I agree based on what the COPY table TO docs say should be
    happening.
    
    > > > When RLS is enabled on a table in `COPY ... TO ...`, the query is converted
    > > > to `COPY (SELECT * FROM ...) TO ...` to allow the rewriter to add in RLS
    > > > clauses. This causes to dump the rows of child tables.
    > > 
    > > Do we actually say that in so many words, either in the code or docs?
    > > If so, it ought to read `COPY (SELECT * FROM ONLY ...) TO ...`
    > > instead.  (If we say that in the docs, then arguably the code *does*
    > > conform to the docs.  But I don't see it in the COPY ref page at least.)
    > 
    > The documentation do not say that, but the current code actually do that.
    > Also, there is the following comment in BeginCopyTo().
    > 
    >          * With row-level security and a user using "COPY relation TO", we
    >          * have to convert the "COPY relation TO" to a query-based COPY (eg:
    >          * "COPY (SELECT * FROM relation) TO"), to allow the rewriter to add
    >          * in any RLS clauses.
    > 
    > Maybe, it is be better to change the description in the comment to
    > "COPY (SELECT * FROM ONLY relation) TO" when fixing the bug.
    
    Yeah, that should also be updated.  Perhaps you'd send an updated patch
    which includes fixing that too and maybe adds clarifying documentation
    to COPY which mentions what happens when RLS is enabled on the relation?
    
    I'm not sure if this makes good sense to back-patch.
    
    Thanks,
    
    Stephen
    
  7. Re: RLS makes COPY TO process child tables

    Tom Lane <tgl@sss.pgh.pa.us> — 2023-03-10T16:34:02Z

    Stephen Frost <sfrost@snowman.net> writes:
    >> Tom Lane <tgl@sss.pgh.pa.us> wrote:
    >>> Yugo NAGATA <nagata@sraoss.co.jp> writes:
    >>>> I think this is a bug because the current behaviour is different from
    >>>> the documentation. 
    
    >>> I agree, it shouldn't do that.
    
    > Yeah, I agree based on what the COPY table TO docs say should be
    > happening.
    
    Yeah, the documentation is quite clear that child data is not included.
    
    > I'm not sure if this makes good sense to back-patch.
    
    I think we have to.  The alternative is to back-patch some very confusing
    documentation changes saying "never mind all that if RLS is on".
    
    			regards, tom lane
    
    
    
    
  8. Re: RLS makes COPY TO process child tables

    Tom Lane <tgl@sss.pgh.pa.us> — 2023-03-10T18:57:55Z

    Stephen Frost <sfrost@snowman.net> writes:
    > Yeah, that should also be updated.  Perhaps you'd send an updated patch
    > which includes fixing that too and maybe adds clarifying documentation
    > to COPY which mentions what happens when RLS is enabled on the relation?
    
    I couldn't find anything in copy.sgml that seemed to need adjustment.
    It already says
    
        If row-level security is enabled for the table, the relevant SELECT
        policies will apply to COPY table TO statements.
    
    Together with the already-mentioned
    
        COPY table TO copies the same rows as SELECT * FROM ONLY table.
    
    I'd say that the behavior is very clearly specified already.  We just
    need to make the code do what the docs say.  So I pushed the patch
    without any docs changes.  I did add a test case, because I don't
    like back-patching without something that proves that the issue is
    relevant to, and corrected in, each branch.
    
    			regards, tom lane