Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a8df75b

Browse files
committed
Avoid dangling pointer to relation name in RLS code path in DoCopy().
With RLS active, "COPY tab TO ..." failed under -DRELCACHE_FORCE_RELEASE, and would sometimes fail without that, because it used the relation name directly from the relcache as part of the parsetree it's building. That becomes a potentially-dangling pointer as soon as the relcache entry is closed, a bit further down. Typical symptom if the relcache entry chanced to get cleared would be "relation does not exist" error with a garbage relation name, or possibly a core dump; but if you were really truly unlucky, the COPY might copy from the wrong table. Per report from Andrew Dunstan that regression tests fail with -DRELCACHE_FORCE_RELEASE. The core tests now pass for me (but have not tried "make check-world" yet). Discussion: https://postgr.es/m/[email protected]
1 parent e6477a8 commit a8df75b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/backend/commands/copy.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -923,7 +923,8 @@ DoCopy(ParseState *pstate, const CopyStmt *stmt,
923923
* relation which we have opened and locked.
924924
*/
925925
from = makeRangeVar(get_namespace_name(RelationGetNamespace(rel)),
926-
RelationGetRelationName(rel), -1);
926+
pstrdup(RelationGetRelationName(rel)),
927+
-1);
927928

928929
/* Build query */
929930
select = makeNode(SelectStmt);

0 commit comments

Comments
 (0)