PostgreSQL Source Code git master
dumputils.c File Reference
#include "postgres_fe.h"
#include <ctype.h>
#include "dumputils.h"
#include "fe_utils/string_utils.h"
Include dependency graph for dumputils.c:

Go to the source code of this file.

Macros

#define CONVERT_PRIV(code, keywd)
 

Functions

static bool parseAclItem (const char *item, const char *type, const char *name, const char *subname, int remoteVersion, PQExpBuffer grantee, PQExpBuffer grantor, PQExpBuffer privs, PQExpBuffer privswgo)
 
static char * dequoteAclUserName (PQExpBuffer output, char *input)
 
static void AddAcl (PQExpBuffer aclbuf, const char *keyword, const char *subname)
 
bool buildACLCommands (const char *name, const char *subname, const char *nspname, const char *type, const char *acls, const char *baseacls, const char *owner, const char *prefix, int remoteVersion, PQExpBuffer sql)
 
bool buildDefaultACLCommands (const char *type, const char *nspname, const char *acls, const char *acldefault, const char *owner, int remoteVersion, PQExpBuffer sql)
 
void quoteAclUserName (PQExpBuffer output, const char *input)
 
void buildShSecLabelQuery (const char *catalog_name, Oid objectId, PQExpBuffer sql)
 
void emitShSecLabels (PGconn *conn, PGresult *res, PQExpBuffer buffer, const char *objtype, const char *objname)
 
bool variable_is_guc_list_quote (const char *name)
 
bool SplitGUCList (char *rawstring, char separator, char ***namelist)
 
void makeAlterConfigCommand (PGconn *conn, const char *configitem, const char *type, const char *name, const char *type2, const char *name2, PQExpBuffer buf)
 

Macro Definition Documentation

◆ CONVERT_PRIV

#define CONVERT_PRIV (   code,
  keywd 
)
Value:
do { \
if ((pos = strchr(eqpos + 1, code))) \
{ \
if (*(pos + 1) == '*' && privswgo != NULL) \
{ \
AddAcl(privswgo, keywd, subname); \
all_without_go = false; \
} \
else \
{ \
AddAcl(privs, keywd, subname); \
all_with_go = false; \
} \
} \
else \
all_with_go = all_without_go = false; \
} while (0)
NameData subname

Function Documentation

◆ AddAcl()

static void AddAcl ( PQExpBuffer  aclbuf,
const char *  keyword,
const char *  subname 
)
static

Definition at line 617 of file dumputils.c.

618{
619 if (aclbuf->len > 0)
620 appendPQExpBufferChar(aclbuf, ',');
621 appendPQExpBufferStr(aclbuf, keyword);
622 if (subname)
623 appendPQExpBuffer(aclbuf, "(%s)", subname);
624}
void appendPQExpBuffer(PQExpBuffer str, const char *fmt,...)
Definition: pqexpbuffer.c:265
void appendPQExpBufferChar(PQExpBuffer str, char ch)
Definition: pqexpbuffer.c:378
void appendPQExpBufferStr(PQExpBuffer str, const char *data)
Definition: pqexpbuffer.c:367

References appendPQExpBuffer(), appendPQExpBufferChar(), appendPQExpBufferStr(), PQExpBufferData::len, and subname.

◆ buildACLCommands()

bool buildACLCommands ( const char *  name,
const char *  subname,
const char *  nspname,
const char *  type,
const char *  acls,
const char *  baseacls,
const char *  owner,
const char *  prefix,
int  remoteVersion,
PQExpBuffer  sql 
)

Definition at line 64 of file dumputils.c.

68{
69 bool ok = true;
70 char **aclitems = NULL;
71 char **baseitems = NULL;
72 char **grantitems = NULL;
73 char **revokeitems = NULL;
74 int naclitems = 0;
75 int nbaseitems = 0;
76 int ngrantitems = 0;
77 int nrevokeitems = 0;
78 int i;
79 PQExpBuffer grantee,
80 grantor,
81 privs,
82 privswgo;
83 PQExpBuffer firstsql,
84 secondsql;
85
86 /*
87 * If the acl was NULL (initial default state), we need do nothing. Note
88 * that this is distinguishable from all-privileges-revoked, which will
89 * look like an empty array ("{}").
90 */
91 if (acls == NULL || *acls == '\0')
92 return true; /* object has default permissions */
93
94 /* treat empty-string owner same as NULL */
95 if (owner && *owner == '\0')
96 owner = NULL;
97
98 /* Parse the acls array */
99 if (!parsePGArray(acls, &aclitems, &naclitems))
100 {
101 free(aclitems);
102 return false;
103 }
104
105 /* Parse the baseacls too */
106 if (!parsePGArray(baseacls, &baseitems, &nbaseitems))
107 {
108 free(aclitems);
109 free(baseitems);
110 return false;
111 }
112
113 /*
114 * Compare the actual ACL with the base ACL, extracting the privileges
115 * that need to be granted (i.e., are in the actual ACL but not the base
116 * ACL) and the ones that need to be revoked (the reverse). We use plain
117 * string comparisons to check for matches. In principle that could be
118 * fooled by extraneous issues such as whitespace, but since all these
119 * strings are the work of aclitemout(), it should be OK in practice.
120 * Besides, a false mismatch will just cause the output to be a little
121 * more verbose than it really needed to be.
122 */
123 grantitems = (char **) pg_malloc(naclitems * sizeof(char *));
124 for (i = 0; i < naclitems; i++)
125 {
126 bool found = false;
127
128 for (int j = 0; j < nbaseitems; j++)
129 {
130 if (strcmp(aclitems[i], baseitems[j]) == 0)
131 {
132 found = true;
133 break;
134 }
135 }
136 if (!found)
137 grantitems[ngrantitems++] = aclitems[i];
138 }
139 revokeitems = (char **) pg_malloc(nbaseitems * sizeof(char *));
140 for (i = 0; i < nbaseitems; i++)
141 {
142 bool found = false;
143
144 for (int j = 0; j < naclitems; j++)
145 {
146 if (strcmp(baseitems[i], aclitems[j]) == 0)
147 {
148 found = true;
149 break;
150 }
151 }
152 if (!found)
153 revokeitems[nrevokeitems++] = baseitems[i];
154 }
155
156 /* Prepare working buffers */
157 grantee = createPQExpBuffer();
158 grantor = createPQExpBuffer();
159 privs = createPQExpBuffer();
160 privswgo = createPQExpBuffer();
161
162 /*
163 * At the end, these two will be pasted together to form the result.
164 */
165 firstsql = createPQExpBuffer();
166 secondsql = createPQExpBuffer();
167
168 /*
169 * Build REVOKE statements for ACLs listed in revokeitems[].
170 */
171 for (i = 0; i < nrevokeitems; i++)
172 {
173 if (!parseAclItem(revokeitems[i],
174 type, name, subname, remoteVersion,
175 grantee, grantor, privs, NULL))
176 {
177 ok = false;
178 break;
179 }
180
181 if (privs->len > 0)
182 {
183 appendPQExpBuffer(firstsql, "%sREVOKE %s ON %s ",
184 prefix, privs->data, type);
185 if (nspname && *nspname)
186 appendPQExpBuffer(firstsql, "%s.", fmtId(nspname));
187 if (name && *name)
188 appendPQExpBuffer(firstsql, "%s ", name);
189 appendPQExpBufferStr(firstsql, "FROM ");
190 if (grantee->len == 0)
191 appendPQExpBufferStr(firstsql, "PUBLIC;\n");
192 else
193 appendPQExpBuffer(firstsql, "%s;\n",
194 fmtId(grantee->data));
195 }
196 }
197
198 /*
199 * At this point we have issued REVOKE statements for all initial and
200 * default privileges that are no longer present on the object, so we are
201 * almost ready to GRANT the privileges listed in grantitems[].
202 *
203 * We still need some hacking though to cover the case where new default
204 * public privileges are added in new versions: the REVOKE ALL will revoke
205 * them, leading to behavior different from what the old version had,
206 * which is generally not what's wanted. So add back default privs if the
207 * source database is too old to have had that particular priv. (As of
208 * right now, no such cases exist in supported versions.)
209 */
210
211 /*
212 * Scan individual ACL items to be granted.
213 *
214 * The order in which privileges appear in the ACL string (the order they
215 * have been GRANT'd in, which the backend maintains) must be preserved to
216 * ensure that GRANTs WITH GRANT OPTION and subsequent GRANTs based on
217 * those are dumped in the correct order. However, some old server
218 * versions will show grants to PUBLIC before the owner's own grants; for
219 * consistency's sake, force the owner's grants to be output first.
220 */
221 for (i = 0; i < ngrantitems; i++)
222 {
223 if (parseAclItem(grantitems[i], type, name, subname, remoteVersion,
224 grantee, grantor, privs, privswgo))
225 {
226 /*
227 * If the grantor isn't the owner, we'll need to use SET SESSION
228 * AUTHORIZATION to become the grantor. Issue the SET/RESET only
229 * if there's something useful to do.
230 */
231 if (privs->len > 0 || privswgo->len > 0)
232 {
233 PQExpBuffer thissql;
234
235 /* Set owner as grantor if that's not explicit in the ACL */
236 if (grantor->len == 0 && owner)
237 printfPQExpBuffer(grantor, "%s", owner);
238
239 /* Make sure owner's own grants are output before others */
240 if (owner &&
241 strcmp(grantee->data, owner) == 0 &&
242 strcmp(grantor->data, owner) == 0)
243 thissql = firstsql;
244 else
245 thissql = secondsql;
246
247 if (grantor->len > 0
248 && (!owner || strcmp(owner, grantor->data) != 0))
249 appendPQExpBuffer(thissql, "SET SESSION AUTHORIZATION %s;\n",
250 fmtId(grantor->data));
251
252 if (privs->len > 0)
253 {
254 appendPQExpBuffer(thissql, "%sGRANT %s ON %s ",
255 prefix, privs->data, type);
256 if (nspname && *nspname)
257 appendPQExpBuffer(thissql, "%s.", fmtId(nspname));
258 if (name && *name)
259 appendPQExpBuffer(thissql, "%s ", name);
260 appendPQExpBufferStr(thissql, "TO ");
261 if (grantee->len == 0)
262 appendPQExpBufferStr(thissql, "PUBLIC;\n");
263 else
264 appendPQExpBuffer(thissql, "%s;\n", fmtId(grantee->data));
265 }
266 if (privswgo->len > 0)
267 {
268 appendPQExpBuffer(thissql, "%sGRANT %s ON %s ",
269 prefix, privswgo->data, type);
270 if (nspname && *nspname)
271 appendPQExpBuffer(thissql, "%s.", fmtId(nspname));
272 if (name && *name)
273 appendPQExpBuffer(thissql, "%s ", name);
274 appendPQExpBufferStr(thissql, "TO ");
275 if (grantee->len == 0)
276 appendPQExpBufferStr(thissql, "PUBLIC");
277 else
278 appendPQExpBufferStr(thissql, fmtId(grantee->data));
279 appendPQExpBufferStr(thissql, " WITH GRANT OPTION;\n");
280 }
281
282 if (grantor->len > 0
283 && (!owner || strcmp(owner, grantor->data) != 0))
284 appendPQExpBufferStr(thissql, "RESET SESSION AUTHORIZATION;\n");
285 }
286 }
287 else
288 {
289 /* parseAclItem failed, give up */
290 ok = false;
291 break;
292 }
293 }
294
295 destroyPQExpBuffer(grantee);
296 destroyPQExpBuffer(grantor);
297 destroyPQExpBuffer(privs);
298 destroyPQExpBuffer(privswgo);
299
300 appendPQExpBuffer(sql, "%s%s", firstsql->data, secondsql->data);
301 destroyPQExpBuffer(firstsql);
302 destroyPQExpBuffer(secondsql);
303
304 free(aclitems);
305 free(baseitems);
306 free(grantitems);
307 free(revokeitems);
308
309 return ok;
310}
static bool parseAclItem(const char *item, const char *type, const char *name, const char *subname, int remoteVersion, PQExpBuffer grantee, PQExpBuffer grantor, PQExpBuffer privs, PQExpBuffer privswgo)
Definition: dumputils.c:383
void * pg_malloc(size_t size)
Definition: fe_memutils.c:47
#define free(a)
Definition: header.h:65
int j
Definition: isn.c:75
int i
Definition: isn.c:74
void printfPQExpBuffer(PQExpBuffer str, const char *fmt,...)
Definition: pqexpbuffer.c:235
PQExpBuffer createPQExpBuffer(void)
Definition: pqexpbuffer.c:72
void destroyPQExpBuffer(PQExpBuffer str)
Definition: pqexpbuffer.c:114
const char * fmtId(const char *rawid)
Definition: string_utils.c:248
bool parsePGArray(const char *atext, char ***itemarray, int *nitems)
Definition: string_utils.c:819
const char * type
const char * name

References appendPQExpBuffer(), appendPQExpBufferStr(), createPQExpBuffer(), PQExpBufferData::data, destroyPQExpBuffer(), fmtId(), free, i, j, PQExpBufferData::len, name, parseAclItem(), parsePGArray(), pg_malloc(), printfPQExpBuffer(), subname, and type.

Referenced by buildDefaultACLCommands(), dumpACL(), dumpRoleGUCPrivs(), and dumpTablespaces().

◆ buildDefaultACLCommands()

bool buildDefaultACLCommands ( const char *  type,
const char *  nspname,
const char *  acls,
const char *  acldefault,
const char *  owner,
int  remoteVersion,
PQExpBuffer  sql 
)

Definition at line 326 of file dumputils.c.

331{
332 PQExpBuffer prefix;
333
334 prefix = createPQExpBuffer();
335
336 /*
337 * We incorporate the target role directly into the command, rather than
338 * playing around with SET ROLE or anything like that. This is so that a
339 * permissions error leads to nothing happening, rather than changing
340 * default privileges for the wrong user.
341 */
342 appendPQExpBuffer(prefix, "ALTER DEFAULT PRIVILEGES FOR ROLE %s ",
343 fmtId(owner));
344 if (nspname)
345 appendPQExpBuffer(prefix, "IN SCHEMA %s ", fmtId(nspname));
346
347 /*
348 * There's no such thing as initprivs for a default ACL, so the base ACL
349 * is always just the object-type-specific default.
350 */
351 if (!buildACLCommands("", NULL, NULL, type,
352 acls, acldefault, owner,
353 prefix->data, remoteVersion, sql))
354 {
355 destroyPQExpBuffer(prefix);
356 return false;
357 }
358
359 destroyPQExpBuffer(prefix);
360
361 return true;
362}
Acl * acldefault(ObjectType objtype, Oid ownerId)
Definition: acl.c:787
bool buildACLCommands(const char *name, const char *subname, const char *nspname, const char *type, const char *acls, const char *baseacls, const char *owner, const char *prefix, int remoteVersion, PQExpBuffer sql)
Definition: dumputils.c:64

References acldefault(), appendPQExpBuffer(), buildACLCommands(), createPQExpBuffer(), PQExpBufferData::data, destroyPQExpBuffer(), fmtId(), and type.

Referenced by dumpDefaultACL().

◆ buildShSecLabelQuery()

void buildShSecLabelQuery ( const char *  catalog_name,
Oid  objectId,
PQExpBuffer  sql 
)

Definition at line 637 of file dumputils.c.

639{
641 "SELECT provider, label FROM pg_catalog.pg_shseclabel "
642 "WHERE classoid = 'pg_catalog.%s'::pg_catalog.regclass "
643 "AND objoid = '%u'", catalog_name, objectId);
644}

References appendPQExpBuffer().

Referenced by buildShSecLabels(), and dumpDatabase().

◆ dequoteAclUserName()

static char * dequoteAclUserName ( PQExpBuffer  output,
char *  input 
)
static

Definition at line 578 of file dumputils.c.

579{
581
582 while (*input && *input != '=')
583 {
584 /*
585 * If user name isn't quoted, then just add it to the output buffer
586 */
587 if (*input != '"')
589 else
590 {
591 /* Otherwise, it's a quoted username */
592 input++;
593 /* Loop until we come across an unescaped quote */
594 while (!(*input == '"' && *(input + 1) != '"'))
595 {
596 if (*input == '\0')
597 return input; /* really a syntax error... */
598
599 /*
600 * Quoting convention is to escape " as "". Keep this code in
601 * sync with putid() in backend's acl.c.
602 */
603 if (*input == '"' && *(input + 1) == '"')
604 input++;
606 }
607 input++;
608 }
609 }
610 return input;
611}
FILE * input
FILE * output
void resetPQExpBuffer(PQExpBuffer str)
Definition: pqexpbuffer.c:146

References appendPQExpBufferChar(), input, output, and resetPQExpBuffer().

Referenced by parseAclItem().

◆ emitShSecLabels()

void emitShSecLabels ( PGconn conn,
PGresult res,
PQExpBuffer  buffer,
const char *  objtype,
const char *  objname 
)

Definition at line 655 of file dumputils.c.

657{
658 int i;
659
660 for (i = 0; i < PQntuples(res); i++)
661 {
662 char *provider = PQgetvalue(res, i, 0);
663 char *label = PQgetvalue(res, i, 1);
664
665 /* must use fmtId result before calling it again */
666 appendPQExpBuffer(buffer,
667 "SECURITY LABEL FOR %s ON %s",
668 fmtId(provider), objtype);
669 appendPQExpBuffer(buffer,
670 " %s IS ",
671 fmtId(objname));
673 appendPQExpBufferStr(buffer, ";\n");
674 }
675}
char * PQgetvalue(const PGresult *res, int tup_num, int field_num)
Definition: fe-exec.c:3876
int PQntuples(const PGresult *res)
Definition: fe-exec.c:3481
static char * label
PGconn * conn
Definition: streamutil.c:52
void appendStringLiteralConn(PQExpBuffer buf, const char *str, PGconn *conn)
Definition: string_utils.c:446

References appendPQExpBuffer(), appendPQExpBufferStr(), appendStringLiteralConn(), conn, fmtId(), i, label, PQgetvalue(), and PQntuples().

Referenced by buildShSecLabels(), and dumpDatabase().

◆ makeAlterConfigCommand()

void makeAlterConfigCommand ( PGconn conn,
const char *  configitem,
const char *  type,
const char *  name,
const char *  type2,
const char *  name2,
PQExpBuffer  buf 
)

Definition at line 823 of file dumputils.c.

827{
828 char *mine;
829 char *pos;
830
831 /* Parse the configitem. If we can't find an "=", silently do nothing. */
832 mine = pg_strdup(configitem);
833 pos = strchr(mine, '=');
834 if (pos == NULL)
835 {
836 pg_free(mine);
837 return;
838 }
839 *pos++ = '\0';
840
841 /* Build the command, with suitable quoting for everything. */
842 appendPQExpBuffer(buf, "ALTER %s %s ", type, fmtId(name));
843 if (type2 != NULL && name2 != NULL)
844 appendPQExpBuffer(buf, "IN %s %s ", type2, fmtId(name2));
845 appendPQExpBuffer(buf, "SET %s TO ", fmtId(mine));
846
847 /*
848 * Variables that are marked GUC_LIST_QUOTE were already fully quoted by
849 * flatten_set_variable_args() before they were put into the setconfig
850 * array. However, because the quoting rules used there aren't exactly
851 * like SQL's, we have to break the list value apart and then quote the
852 * elements as string literals. (The elements may be double-quoted as-is,
853 * but we can't just feed them to the SQL parser; it would do the wrong
854 * thing with elements that are zero-length or longer than NAMEDATALEN.)
855 *
856 * Variables that are not so marked should just be emitted as simple
857 * string literals. If the variable is not known to
858 * variable_is_guc_list_quote(), we'll do that; this makes it unsafe to
859 * use GUC_LIST_QUOTE for extension variables.
860 */
862 {
863 char **namelist;
864 char **nameptr;
865
866 /* Parse string into list of identifiers */
867 /* this shouldn't fail really */
868 if (SplitGUCList(pos, ',', &namelist))
869 {
870 for (nameptr = namelist; *nameptr; nameptr++)
871 {
872 if (nameptr != namelist)
874 appendStringLiteralConn(buf, *nameptr, conn);
875 }
876 }
877 pg_free(namelist);
878 }
879 else
881
883
884 pg_free(mine);
885}
bool variable_is_guc_list_quote(const char *name)
Definition: dumputils.c:689
bool SplitGUCList(char *rawstring, char separator, char ***namelist)
Definition: dumputils.c:723
char * pg_strdup(const char *in)
Definition: fe_memutils.c:85
void pg_free(void *ptr)
Definition: fe_memutils.c:105
static char * buf
Definition: pg_test_fsync.c:72

References appendPQExpBuffer(), appendPQExpBufferStr(), appendStringLiteralConn(), buf, conn, fmtId(), name, pg_free(), pg_strdup(), SplitGUCList(), type, and variable_is_guc_list_quote().

Referenced by dumpDatabaseConfig(), and dumpUserConfig().

◆ parseAclItem()

static bool parseAclItem ( const char *  item,
const char *  type,
const char *  name,
const char *  subname,
int  remoteVersion,
PQExpBuffer  grantee,
PQExpBuffer  grantor,
PQExpBuffer  privs,
PQExpBuffer  privswgo 
)
static

Definition at line 383 of file dumputils.c.

387{
388 char *buf;
389 bool all_with_go = true;
390 bool all_without_go = true;
391 char *eqpos;
392 char *slpos;
393 char *pos;
394
395 buf = pg_strdup(item);
396
397 /* user or group name is string up to = */
398 eqpos = dequoteAclUserName(grantee, buf);
399 if (*eqpos != '=')
400 {
401 pg_free(buf);
402 return false;
403 }
404
405 /* grantor should appear after / */
406 slpos = strchr(eqpos + 1, '/');
407 if (slpos)
408 {
409 *slpos++ = '\0';
410 slpos = dequoteAclUserName(grantor, slpos);
411 if (*slpos != '\0')
412 {
413 pg_free(buf);
414 return false;
415 }
416 }
417 else
418 {
419 pg_free(buf);
420 return false;
421 }
422
423 /* privilege codes */
424#define CONVERT_PRIV(code, keywd) \
425do { \
426 if ((pos = strchr(eqpos + 1, code))) \
427 { \
428 if (*(pos + 1) == '*' && privswgo != NULL) \
429 { \
430 AddAcl(privswgo, keywd, subname); \
431 all_without_go = false; \
432 } \
433 else \
434 { \
435 AddAcl(privs, keywd, subname); \
436 all_with_go = false; \
437 } \
438 } \
439 else \
440 all_with_go = all_without_go = false; \
441} while (0)
442
443 resetPQExpBuffer(privs);
444 resetPQExpBuffer(privswgo);
445
446 if (strcmp(type, "TABLE") == 0 || strcmp(type, "SEQUENCE") == 0 ||
447 strcmp(type, "TABLES") == 0 || strcmp(type, "SEQUENCES") == 0)
448 {
449 CONVERT_PRIV('r', "SELECT");
450
451 if (strcmp(type, "SEQUENCE") == 0 ||
452 strcmp(type, "SEQUENCES") == 0)
453 /* sequence only */
454 CONVERT_PRIV('U', "USAGE");
455 else
456 {
457 /* table only */
458 CONVERT_PRIV('a', "INSERT");
459 CONVERT_PRIV('x', "REFERENCES");
460 /* rest are not applicable to columns */
461 if (subname == NULL)
462 {
463 CONVERT_PRIV('d', "DELETE");
464 CONVERT_PRIV('t', "TRIGGER");
465 CONVERT_PRIV('D', "TRUNCATE");
466 CONVERT_PRIV('m', "MAINTAIN");
467 }
468 }
469
470 /* UPDATE */
471 CONVERT_PRIV('w', "UPDATE");
472 }
473 else if (strcmp(type, "FUNCTION") == 0 ||
474 strcmp(type, "FUNCTIONS") == 0)
475 CONVERT_PRIV('X', "EXECUTE");
476 else if (strcmp(type, "PROCEDURE") == 0 ||
477 strcmp(type, "PROCEDURES") == 0)
478 CONVERT_PRIV('X', "EXECUTE");
479 else if (strcmp(type, "LANGUAGE") == 0)
480 CONVERT_PRIV('U', "USAGE");
481 else if (strcmp(type, "SCHEMA") == 0 ||
482 strcmp(type, "SCHEMAS") == 0)
483 {
484 CONVERT_PRIV('C', "CREATE");
485 CONVERT_PRIV('U', "USAGE");
486 }
487 else if (strcmp(type, "DATABASE") == 0)
488 {
489 CONVERT_PRIV('C', "CREATE");
490 CONVERT_PRIV('c', "CONNECT");
491 CONVERT_PRIV('T', "TEMPORARY");
492 }
493 else if (strcmp(type, "TABLESPACE") == 0)
494 CONVERT_PRIV('C', "CREATE");
495 else if (strcmp(type, "TYPE") == 0 ||
496 strcmp(type, "TYPES") == 0)
497 CONVERT_PRIV('U', "USAGE");
498 else if (strcmp(type, "FOREIGN DATA WRAPPER") == 0)
499 CONVERT_PRIV('U', "USAGE");
500 else if (strcmp(type, "FOREIGN SERVER") == 0)
501 CONVERT_PRIV('U', "USAGE");
502 else if (strcmp(type, "FOREIGN TABLE") == 0)
503 CONVERT_PRIV('r', "SELECT");
504 else if (strcmp(type, "PARAMETER") == 0)
505 {
506 CONVERT_PRIV('s', "SET");
507 CONVERT_PRIV('A', "ALTER SYSTEM");
508 }
509 else if (strcmp(type, "LARGE OBJECT") == 0)
510 {
511 CONVERT_PRIV('r', "SELECT");
512 CONVERT_PRIV('w', "UPDATE");
513 }
514 else
515 abort();
516
517#undef CONVERT_PRIV
518
519 if (all_with_go)
520 {
521 resetPQExpBuffer(privs);
522 printfPQExpBuffer(privswgo, "ALL");
523 if (subname)
524 appendPQExpBuffer(privswgo, "(%s)", subname);
525 }
526 else if (all_without_go)
527 {
528 resetPQExpBuffer(privswgo);
529 printfPQExpBuffer(privs, "ALL");
530 if (subname)
531 appendPQExpBuffer(privs, "(%s)", subname);
532 }
533
534 pg_free(buf);
535
536 return true;
537}
static char * dequoteAclUserName(PQExpBuffer output, char *input)
Definition: dumputils.c:578
#define CONVERT_PRIV(code, keywd)

References appendPQExpBuffer(), buf, CONVERT_PRIV, dequoteAclUserName(), pg_free(), pg_strdup(), printfPQExpBuffer(), resetPQExpBuffer(), subname, and type.

Referenced by buildACLCommands().

◆ quoteAclUserName()

void quoteAclUserName ( PQExpBuffer  output,
const char *  input 
)

Definition at line 544 of file dumputils.c.

545{
546 const char *src;
547 bool safe = true;
548
549 for (src = input; *src; src++)
550 {
551 /* This test had better match what putid() does */
552 if (!isalnum((unsigned char) *src) && *src != '_')
553 {
554 safe = false;
555 break;
556 }
557 }
558 if (!safe)
560 for (src = input; *src; src++)
561 {
562 /* A double quote character in a username is encoded as "" */
563 if (*src == '"')
566 }
567 if (!safe)
569}

References appendPQExpBufferChar(), input, and output.

Referenced by getNamespaces().

◆ SplitGUCList()

bool SplitGUCList ( char *  rawstring,
char  separator,
char ***  namelist 
)

Definition at line 723 of file dumputils.c.

725{
726 char *nextp = rawstring;
727 bool done = false;
728 char **nextptr;
729
730 /*
731 * Since we disallow empty identifiers, this is a conservative
732 * overestimate of the number of pointers we could need. Allow one for
733 * list terminator.
734 */
735 *namelist = nextptr = (char **)
736 pg_malloc((strlen(rawstring) / 2 + 2) * sizeof(char *));
737 *nextptr = NULL;
738
739 while (isspace((unsigned char) *nextp))
740 nextp++; /* skip leading whitespace */
741
742 if (*nextp == '\0')
743 return true; /* allow empty string */
744
745 /* At the top of the loop, we are at start of a new identifier. */
746 do
747 {
748 char *curname;
749 char *endp;
750
751 if (*nextp == '"')
752 {
753 /* Quoted name --- collapse quote-quote pairs */
754 curname = nextp + 1;
755 for (;;)
756 {
757 endp = strchr(nextp + 1, '"');
758 if (endp == NULL)
759 return false; /* mismatched quotes */
760 if (endp[1] != '"')
761 break; /* found end of quoted name */
762 /* Collapse adjacent quotes into one quote, and look again */
763 memmove(endp, endp + 1, strlen(endp));
764 nextp = endp;
765 }
766 /* endp now points at the terminating quote */
767 nextp = endp + 1;
768 }
769 else
770 {
771 /* Unquoted name --- extends to separator or whitespace */
772 curname = nextp;
773 while (*nextp && *nextp != separator &&
774 !isspace((unsigned char) *nextp))
775 nextp++;
776 endp = nextp;
777 if (curname == nextp)
778 return false; /* empty unquoted name not allowed */
779 }
780
781 while (isspace((unsigned char) *nextp))
782 nextp++; /* skip trailing whitespace */
783
784 if (*nextp == separator)
785 {
786 nextp++;
787 while (isspace((unsigned char) *nextp))
788 nextp++; /* skip leading whitespace for next */
789 /* we expect another name, so done remains false */
790 }
791 else if (*nextp == '\0')
792 done = true;
793 else
794 return false; /* invalid syntax */
795
796 /* Now safe to overwrite separator with a null */
797 *endp = '\0';
798
799 /*
800 * Finished isolating current name --- add it to output array
801 */
802 *nextptr++ = curname;
803
804 /* Loop back if we didn't reach end of string */
805 } while (!done);
806
807 *nextptr = NULL;
808 return true;
809}

References pg_malloc().

Referenced by makeAlterConfigCommand().

◆ variable_is_guc_list_quote()

bool variable_is_guc_list_quote ( const char *  name)

Definition at line 689 of file dumputils.c.

690{
691 if (pg_strcasecmp(name, "local_preload_libraries") == 0 ||
692 pg_strcasecmp(name, "search_path") == 0 ||
693 pg_strcasecmp(name, "session_preload_libraries") == 0 ||
694 pg_strcasecmp(name, "shared_preload_libraries") == 0 ||
695 pg_strcasecmp(name, "temp_tablespaces") == 0 ||
696 pg_strcasecmp(name, "unix_socket_directories") == 0)
697 return true;
698 else
699 return false;
700}
int pg_strcasecmp(const char *s1, const char *s2)
Definition: pgstrcasecmp.c:36

References name, and pg_strcasecmp().

Referenced by dumpFunc(), and makeAlterConfigCommand().