aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2022-07-26 15:57:31 +0900
committerMichael Paquier <michael@paquier.xyz>2022-07-26 15:57:31 +0900
commit27e0ee57f68d27af68967759a2ff61a581f501dc (patch)
tree4cd04cec2403c95b4a30013ed1ec749572501720 /src
parent857dd353480d98f920099ee0b73da178c197c13d (diff)
downloadpostgresql-27e0ee57f68d27af68967759a2ff61a581f501dc.tar.gz
postgresql-27e0ee57f68d27af68967759a2ff61a581f501dc.zip
Fix path reference when parsing pg_ident.conf for pg_ident_file_mappings
Since a2c8499, HbaFileName (default pg_hba.conf) was getting used instead of IdentFileName (default pg_ident.conf) as the parent file to use as reference when parsing the contents of pg_ident.conf, with pg_ident.conf correctly opened, when feeding this information to pg_ident_file_mappings. This had two consequences: - On an I/O error when reading pg_ident.conf, the user would get an ERROR message referring to pg_hba.conf and not pg_ident.conf. - When reading an external file with a relative path using '@' in pg_ident.conf, the directory used to look at the file to load would be the base directory of pg_hba.conf rather than the one of pg_ident.conf, leading to errors in pg_ident_file_mappings inconsistent with what gets loaded at startup when pg_ident.conf and pg_hba.conf are located in different directories. This error only impacted the SQL view pg_ident_file_mappings that uses a logic new to v15 to fill the view with the parsed information, not the code paths loading these authentication files at startup. Author: Julien Rouhaud Discussion: https://postgr.es/m/20220726050402.vsr6fmz7rsgpmdz3@jrouhaud Backpatch-through: 15
Diffstat (limited to 'src')
-rw-r--r--src/backend/utils/adt/hbafuncs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/adt/hbafuncs.c b/src/backend/utils/adt/hbafuncs.c
index 598259718c4..9e5794071cd 100644
--- a/src/backend/utils/adt/hbafuncs.c
+++ b/src/backend/utils/adt/hbafuncs.c
@@ -512,7 +512,7 @@ fill_ident_view(Tuplestorestate *tuple_store, TupleDesc tupdesc)
errmsg("could not open usermap file \"%s\": %m",
IdentFileName)));
- linecxt = tokenize_auth_file(HbaFileName, file, &ident_lines, DEBUG3);
+ linecxt = tokenize_auth_file(IdentFileName, file, &ident_lines, DEBUG3);
FreeFile(file);
/* Now parse all the lines */