Skip to content

Commit 65c3223

Browse files
committed
Avoid scribbling of VACUUM options
This fixes two issues with the handling of VacuumParams in vacuum_rel(). This code path has the idea to change the passed-in pointer of VacuumParams for the "truncate" and "index_cleanup" options for the relation worked on, impacting the two following scenarios where incorrect options may be used because a VacuumParams pointer is shared across multiple relations: - Multiple relations in a single VACUUM command. - TOAST relations vacuumed with their main relation. The problem is avoided by providing to the two callers of vacuum_rel() copies of VacuumParams, before the pointer is updated for the "truncate" and "index_cleanup" options. The refactoring of the VACUUM option and parameters done in 0d83138 did not introduce an issue, but it has encouraged the problem we are dealing with in this commit, with b84dbc8 for "truncate" and a96c41f for "index_cleanup" that have been added a couple of years after the initial refactoring. HEAD will be improved with a different patch that hardens the uses of VacuumParams across the tree. This cannot be backpatched as it introduces an ABI breakage. The backend portion of the patch has been authored by Nathan, while I have implemented the tests. The tests rely on injection points to check the option values, making them faster, more reliable than the tests originally proposed by Shihao, and they also provide more coverage. This part can only be backpatched down to v17. Reported-by: Shihao Zhong <zhong950419@gmail.com> Author: Nathan Bossart <nathandbossart@gmail.com> Co-authored-by: Michael Paquier <michael@paquier.xyz> Discussion: https://postgr.es/m/CAGRkXqTo+aK=GTy5pSc-9cy8H2F2TJvcrZ-zXEiNJj93np1UUw@mail.gmail.com Backpatch-through: 13
1 parent 87819f7 commit 65c3223

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

src/backend/commands/vacuum.c

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,14 @@ vacuum(List *relations, VacuumParams *params,
447447

448448
if (params->options & VACOPT_VACUUM)
449449
{
450-
if (!vacuum_rel(vrel->oid, vrel->relation, params))
450+
VacuumParams params_copy;
451+
452+
/*
453+
* vacuum_rel() scribbles on the parameters, so give it a copy
454+
* to avoid affecting other relations.
455+
*/
456+
memcpy(&params_copy, params, sizeof(VacuumParams));
457+
if (!vacuum_rel(vrel->oid, vrel->relation, &params_copy))
451458
continue;
452459
}
453460

@@ -1738,9 +1745,16 @@ vacuum_rel(Oid relid, RangeVar *relation, VacuumParams *params)
17381745
Oid save_userid;
17391746
int save_sec_context;
17401747
int save_nestlevel;
1748+
VacuumParams toast_vacuum_params;
17411749

17421750
Assert(params != NULL);
17431751

1752+
/*
1753+
* This function scribbles on the parameters, so make a copy early to
1754+
* avoid affecting the TOAST table (if we do end up recursing to it).
1755+
*/
1756+
memcpy(&toast_vacuum_params, params, sizeof(VacuumParams));
1757+
17441758
/* Begin a transaction for vacuuming this relation */
17451759
StartTransactionCommand();
17461760

@@ -1967,7 +1981,7 @@ vacuum_rel(Oid relid, RangeVar *relation, VacuumParams *params)
19671981
* totally unimportant for toast relations.
19681982
*/
19691983
if (toast_relid != InvalidOid)
1970-
vacuum_rel(toast_relid, NULL, params);
1984+
vacuum_rel(toast_relid, NULL, &toast_vacuum_params);
19711985

19721986
/*
19731987
* Now release the session-level lock on the master table.

0 commit comments

Comments
 (0)