33#include "catalog/pg_class_d.h"
46#define TEXT_DUMP_HEADER "--\n-- PostgreSQL database dump\n--\n\n"
47#define TEXT_DUMPALL_HEADER "--\n-- PostgreSQL database cluster dump\n--\n\n"
49#define TOC_PREFIX_NONE ""
50#define TOC_PREFIX_DATA "Data for "
51#define TOC_PREFIX_STATS "Statistics for "
113 void *callback_data);
117 void *callback_data);
150 opts->include_everything =
true;
153 opts->dumpSchema =
true;
154 opts->dumpData =
true;
155 opts->dumpStatistics =
true;
251 AH =
_allocAH(FileSpec, fmt, compression_spec,
true,
269 pg_fatal(
"could not close output file: %m");
277 if (dopt == NULL && ropt != NULL)
323 pg_fatal(
"unexpected section code %d",
365 pg_fatal(
"parallel restore is not supported with this archive file format");
369 pg_fatal(
"parallel restore is not supported with archives made by pre-8.0 pg_dump");
390 pg_fatal(
"cannot restore from compressed archive (%s)",
412 pg_fatal(
"direct database connections are not supported in pre-1.3 archives");
442 bool no_schema_found =
true;
448 no_schema_found =
false;
466 ahprintf(AH,
"--\n-- PostgreSQL database dump\n--\n\n");
469 ahprintf(AH,
"-- Dumped from database version %s\n",
472 ahprintf(AH,
"-- Dumped by pg_dump version %s\n",
513 if (strcmp(te->
desc,
"DATABASE") != 0 &&
514 strcmp(te->
desc,
"DATABASE PROPERTIES") != 0)
521 bool not_allowed_in_txn =
false;
532 if (strcmp(te->
desc,
"DATABASE") == 0 ||
533 strcmp(te->
desc,
"DATABASE PROPERTIES") == 0)
535 not_allowed_in_txn =
true;
552 if (strcmp(te->
desc,
"BLOB METADATA") == 0)
557 "SELECT pg_catalog.lo_unlink(oid) "
558 "FROM pg_catalog.pg_largeobject_metadata "
559 "WHERE oid = '",
"'");
562 "SELECT pg_catalog.lo_unlink('",
568 strncmp(te->
dropStmt,
"--", 2) == 0)
586 if (strcmp(te->
desc,
"BLOB") == 0)
593 char *dropStmtOrig = dropStmt;
600 if (strncmp(dropStmt,
"ALTER TABLE", 11) == 0)
603 "ALTER TABLE IF EXISTS");
604 dropStmt = dropStmt + 11;
626 if (strcmp(te->
desc,
"DEFAULT") == 0 ||
627 strcmp(te->
desc,
"DATABASE PROPERTIES") == 0 ||
628 strncmp(dropStmt,
"CREATE OR REPLACE VIEW", 22) == 0)
635 if (strcmp(te->
desc,
"CONSTRAINT") == 0 ||
636 strcmp(te->
desc,
"CHECK CONSTRAINT") == 0 ||
637 strcmp(te->
desc,
"FK CONSTRAINT") == 0)
638 strcpy(buffer,
"DROP CONSTRAINT");
640 snprintf(buffer,
sizeof(buffer),
"DROP %s",
643 mark = strstr(dropStmt, buffer);
650 mark + strlen(buffer));
655 pg_log_warning(
"could not find where to insert IF EXISTS in statement \"%s\"",
675 if (not_allowed_in_txn)
748 bool haveACL =
false;
749 bool havePostACL =
false;
806 ahprintf(AH,
"--\n-- PostgreSQL database dump complete\n--\n\n");
856 bool object_is_db =
false;
862 if (strcmp(te->
desc,
"DATABASE") == 0 ||
863 strcmp(te->
desc,
"DATABASE PROPERTIES") == 0)
878 te->
desc, te->namespace, te->
tag);
886 if (strcmp(te->
desc,
"TABLE") == 0)
954 if (strcmp(te->
desc,
"BLOBS") == 0 ||
955 strcmp(te->
desc,
"BLOB COMMENTS") == 0)
962 if (strcmp(te->
desc,
"BLOB COMMENTS") == 0)
980 te->namespace, te->
tag);
998 use_truncate = is_parallel && te->
created &&
1013 ahprintf(AH,
"TRUNCATE TABLE ONLY %s;\n\n",
1046 else if (!defnDumped)
1074 ahprintf(AH,
"COMMIT;\nBEGIN;\n\n");
1101 opts->compression_spec.level = 0;
1102 opts->dumpSchema =
true;
1103 opts->dumpData =
true;
1104 opts->dumpStatistics =
true;
1131 ahprintf(AH,
"ALTER TABLE %s DISABLE TRIGGER ALL;\n\n",
1157 ahprintf(AH,
"ALTER TABLE %s ENABLE TRIGGER ALL;\n\n",
1176 strncmp(te->
defn,
"-- load via partition root ", 27) == 0)
1209 pg_fatal(
"internal error -- WriteData cannot be called outside the context of a DataDumper routine");
1257 if (
opts->nDeps > 0)
1295 const char *fmtName;
1307 strcpy(stamp_str,
"[unknown]");
1309 ahprintf(AH,
";\n; Archive created at %s\n", stamp_str);
1310 ahprintf(AH,
"; dbname: %s\n; TOC Entries: %d\n; Compression: %s\n",
1321 fmtName =
"DIRECTORY";
1327 fmtName =
"UNKNOWN";
1330 ahprintf(AH,
"; Dump Version: %d.%d-%d\n",
1332 ahprintf(AH,
"; Format: %s\n", fmtName);
1336 ahprintf(AH,
"; Dumped from database version: %s\n",
1339 ahprintf(AH,
"; Dumped by pg_dump version: %s\n",
1342 ahprintf(AH,
";\n;\n; Selected TOC Entries:\n;\n");
1355 char *sanitized_name;
1356 char *sanitized_schema;
1357 char *sanitized_owner;
1367 te->
desc, sanitized_schema, sanitized_name,
1370 free(sanitized_name);
1371 free(sanitized_schema);
1372 free(sanitized_owner);
1404 pg_fatal(
"large-object output not supported in chosen format");
1468 "restored %d large objects",
1494 pg_log_info(
"restoring large object with OID %u", oid);
1497 if (old_lo_style && drop)
1505 if (loOid == 0 || loOid != oid)
1506 pg_fatal(
"could not create large object %u: %s",
1511 pg_fatal(
"could not open large object %u: %s",
1517 ahprintf(AH,
"SELECT pg_catalog.lo_open(pg_catalog.lo_create('%u'), %d);\n",
1520 ahprintf(AH,
"SELECT pg_catalog.lo_open('%u', %d);\n",
1545 ahprintf(AH,
"SELECT pg_catalog.lo_close(0);\n\n");
1579 cmnt = strchr(linebuf.
data,
';');
1583 linebuf.
len = cmnt - linebuf.
data;
1587 if (strspn(linebuf.
data,
" \t\r\n") == linebuf.
len)
1591 id = strtol(linebuf.
data, &endptr, 10);
1592 if (endptr == linebuf.
data || id <= 0 || id > AH->
maxDumpId ||
1602 pg_fatal(
"could not find entry for ID %d",
1624 if (fclose(fh) != 0)
1625 pg_fatal(
"could not close TOC file: %m");
1644 int save_errno = errno;
1658 va_start(
args, fmt);
1695 fn = fileno(AH->
FH);
1715 pg_fatal(
"could not open output file: %m");
1732 pg_fatal(
"could not close output file: %m");
1734 AH->
OF = savedOutput;
1745 int save_errno = errno;
1759 va_start(
args, fmt);
1799 "wrote %zu bytes of large object data (result = %d)",
1812 (
const unsigned char *) AH->
lo_buf,
1818 ahprintf(AH,
"SELECT pg_catalog.lowrite(0, %s);\n",
buf->data);
1836 int bytes_written = 0;
1847 ptr = (
const char *) ptr + avail;
1856 bytes_written = size * nmemb;
1859 bytes_written = AH->
CustomOutPtr(AH, ptr, size * nmemb);
1872 bytes_written = size * nmemb;
1875 if (bytes_written != size * nmemb)
1996 if (strcmp(te->
desc,
"TABLE DATA") == 0 && te->
nDeps > 0)
2005 if (tableId <= 0 || tableId > maxDumpId)
2006 pg_fatal(
"bad table dumpId for TABLE DATA item");
2020 if (
id > 0 && id <= AH->maxDumpId)
2046 for (off = 0; off <
sizeof(
pgoff_t); off++)
2098 pg_fatal(
"unexpected data offset flag %d", offsetFlg);
2104 for (off = 0; off < AH->
offSize; off++)
2111 pg_fatal(
"file offset in dump file is too large");
2166 res = res + (bv << bitShift);
2183 int len = strlen(
c);
2222 pg_fatal(
"directory name too long: \"%s\"", dir);
2235 pg_log_debug(
"attempting to ascertain archive format");
2272 pg_fatal(
"directory \"%s\" does not appear to be a valid archive (\"toc.dat\" does not exist)",
2280 pg_fatal(
"could not open input file \"%s\": %m", AH->
fSpec);
2287 pg_fatal(
"could not open input file: %m");
2290 if ((cnt = fread(
sig, 1, 5, fh)) != 5)
2293 pg_fatal(
"could not read input file: %m");
2295 pg_fatal(
"input file is too short (read %lu, expected 5)",
2296 (
unsigned long) cnt);
2303 if (strncmp(
sig,
"PGDMP", 5) == 0)
2327 pg_fatal(
"input file appears to be a text format dump. Please use psql.");
2333 pg_fatal(
"input file does not appear to be a valid archive (too short?)");
2339 pg_fatal(
"input file does not appear to be a valid archive");
2347 if (fclose(fh) != 0)
2348 pg_fatal(
"could not close input file: %m");
2372 FileSpec ? FileSpec :
"(stdio)", fmt);
2427 pg_fatal(
"could not open stdout for appending: %m");
2437 (AH->
fSpec == NULL || strcmp(AH->
fSpec,
"") == 0))
2440 _setmode(fileno(
stdout), O_BINARY);
2442 _setmode(fileno(stdin), O_BINARY);
2472 pg_fatal(
"unrecognized file format \"%d\"", fmt);
2515 for (
int i = 0;
i < ntes;
i++)
2551 void *callback_data)
2557 pg_fatal(
"worker process failed: exit code %d",
2570 if (strcmp(te->
desc,
"BLOBS") == 0)
2581 if (startPtr != NULL)
2582 (*startPtr) (AH, te);
2655 pg_fatal(
"unexpected TOC entry in WriteToc(): %d %s %s",
2659 pg_fatal(
"error during file seek: %m");
2717 pg_fatal(
"entry ID %d out of range -- perhaps a corrupt TOC",
2748 if (strcmp(te->
desc,
"COMMENT") == 0 ||
2749 strcmp(te->
desc,
"ACL") == 0 ||
2750 strcmp(te->
desc,
"ACL LANGUAGE") == 0)
2752 else if (strcmp(te->
desc,
"TABLE DATA") == 0 ||
2753 strcmp(te->
desc,
"BLOBS") == 0 ||
2754 strcmp(te->
desc,
"BLOB COMMENTS") == 0)
2756 else if (strcmp(te->
desc,
"CONSTRAINT") == 0 ||
2757 strcmp(te->
desc,
"CHECK CONSTRAINT") == 0 ||
2758 strcmp(te->
desc,
"FK CONSTRAINT") == 0 ||
2759 strcmp(te->
desc,
"INDEX") == 0 ||
2760 strcmp(te->
desc,
"RULE") == 0 ||
2761 strcmp(te->
desc,
"TRIGGER") == 0)
2786 is_supported =
true;
2788 is_supported =
false;
2793 if (strcmp(tmp,
"true") == 0)
2794 is_supported =
false;
2800 pg_log_warning(
"restoring tables WITH OIDS is not supported anymore");
2813 if (depIdx >= depSize)
2818 sscanf(tmp,
"%d", &deps[depIdx]);
2856 if (strcmp(te->
desc,
"ENCODING") == 0)
2858 else if (strcmp(te->
desc,
"STDSTRINGS") == 0)
2860 else if (strcmp(te->
desc,
"SEARCHPATH") == 0)
2874 ptr1 = strchr(defn,
'\'');
2876 ptr2 = strchr(++ptr1,
'\'');
2882 pg_fatal(
"unrecognized encoding \"%s\"",
2888 pg_fatal(
"invalid ENCODING item: %s",
2900 ptr1 = strchr(te->
defn,
'\'');
2901 if (ptr1 && strncmp(ptr1,
"'on'", 4) == 0)
2903 else if (ptr1 && strncmp(ptr1,
"'off'", 5) == 0)
2906 pg_fatal(
"invalid STDSTRINGS item: %s",
2923 const char *missing_name;
2930 if (missing_name != NULL)
2931 pg_fatal(
"schema \"%s\" not found", missing_name);
2937 if (missing_name != NULL)
2938 pg_fatal(
"table \"%s\" not found", missing_name);
2944 if (missing_name != NULL)
2945 pg_fatal(
"index \"%s\" not found", missing_name);
2951 if (missing_name != NULL)
2952 pg_fatal(
"function \"%s\" not found", missing_name);
2958 if (missing_name != NULL)
2959 pg_fatal(
"trigger \"%s\" not found", missing_name);
2978 if (strcmp(te->
desc,
"ENCODING") == 0 ||
2979 strcmp(te->
desc,
"STDSTRINGS") == 0 ||
2980 strcmp(te->
desc,
"SEARCHPATH") == 0)
2983 if (strcmp(te->
desc,
"STATISTICS DATA") == 0)
2996 if (strcmp(te->
desc,
"DATABASE") == 0 ||
2997 strcmp(te->
desc,
"DATABASE PROPERTIES") == 0)
3019 (strcmp(te->
desc,
"POLICY") == 0 ||
3020 strcmp(te->
desc,
"ROW SECURITY") == 0))
3028 (strcmp(te->
desc,
"PUBLICATION") == 0 ||
3029 strcmp(te->
desc,
"PUBLICATION TABLE") == 0 ||
3030 strcmp(te->
desc,
"PUBLICATION TABLES IN SCHEMA") == 0))
3068 if (strcmp(te->
desc,
"ACL") == 0 ||
3069 strcmp(te->
desc,
"COMMENT") == 0 ||
3070 strcmp(te->
desc,
"STATISTICS DATA") == 0 ||
3071 strcmp(te->
desc,
"SECURITY LABEL") == 0)
3074 if (strncmp(te->
tag,
"DATABASE ", 9) == 0)
3102 bool dumpthis =
false;
3104 for (
int i = 0;
i < te->
nDeps;
i++)
3110 if (strcmp(pte->
desc,
"ACL") == 0)
3141 if (strcmp(te->
desc,
"TABLE") == 0 ||
3142 strcmp(te->
desc,
"TABLE DATA") == 0 ||
3143 strcmp(te->
desc,
"VIEW") == 0 ||
3144 strcmp(te->
desc,
"FOREIGN TABLE") == 0 ||
3145 strcmp(te->
desc,
"MATERIALIZED VIEW") == 0 ||
3146 strcmp(te->
desc,
"MATERIALIZED VIEW DATA") == 0 ||
3147 strcmp(te->
desc,
"SEQUENCE") == 0 ||
3148 strcmp(te->
desc,
"SEQUENCE SET") == 0)
3156 else if (strcmp(te->
desc,
"INDEX") == 0)
3164 else if (strcmp(te->
desc,
"FUNCTION") == 0 ||
3165 strcmp(te->
desc,
"AGGREGATE") == 0 ||
3166 strcmp(te->
desc,
"PROCEDURE") == 0)
3174 else if (strcmp(te->
desc,
"TRIGGER") == 0)
3203 if (strcmp(te->
desc,
"SEQUENCE SET") == 0 ||
3204 strcmp(te->
desc,
"BLOB") == 0 ||
3205 strcmp(te->
desc,
"BLOB METADATA") == 0 ||
3206 (strcmp(te->
desc,
"ACL") == 0 &&
3207 strncmp(te->
tag,
"LARGE OBJECT", 12) == 0) ||
3208 (strcmp(te->
desc,
"COMMENT") == 0 &&
3209 strncmp(te->
tag,
"LARGE OBJECT", 12) == 0) ||
3210 (strcmp(te->
desc,
"SECURITY LABEL") == 0 &&
3211 strncmp(te->
tag,
"LARGE OBJECT", 12) == 0))
3214 res = res & ~REQ_DATA;
3222 strncmp(te->
defn,
"-- load via partition root ", 27) == 0)
3223 res = res & ~REQ_SCHEMA;
3229 if ((strcmp(te->
desc,
"<Init>") == 0) && (strcmp(te->
tag,
"Max OID") == 0))
3245 (strcmp(te->
desc,
"BLOB") == 0 ||
3246 strcmp(te->
desc,
"BLOB METADATA") == 0 ||
3247 (strcmp(te->
desc,
"ACL") == 0 &&
3248 strncmp(te->
tag,
"LARGE OBJECT", 12) == 0) ||
3249 (strcmp(te->
desc,
"COMMENT") == 0 &&
3250 strncmp(te->
tag,
"LARGE OBJECT", 12) == 0) ||
3251 (strcmp(te->
desc,
"SECURITY LABEL") == 0 &&
3252 strncmp(te->
tag,
"LARGE OBJECT", 12) == 0))))
3272 if (strcmp(te->
desc,
"ACL") == 0 ||
3273 strcmp(te->
desc,
"ACL LANGUAGE") == 0 ||
3274 strcmp(te->
desc,
"DEFAULT ACL") == 0)
3276 if (strcmp(te->
desc,
"EVENT TRIGGER") == 0 ||
3277 strcmp(te->
desc,
"MATERIALIZED VIEW DATA") == 0)
3286 if (strcmp(te->
desc,
"COMMENT") == 0 &&
3287 strncmp(te->
tag,
"EVENT TRIGGER ", 14) == 0)
3299 if (strcmp(te->
desc,
"STATISTICS DATA") == 0 &&
3318 if (strcmp(te->
desc,
"ACL") == 0 ||
3319 strcmp(te->
desc,
"ACL LANGUAGE") == 0 ||
3320 strcmp(te->
desc,
"DEFAULT ACL") == 0)
3337 ahprintf(AH,
"SET statement_timeout = 0;\n");
3338 ahprintf(AH,
"SET lock_timeout = 0;\n");
3339 ahprintf(AH,
"SET idle_in_transaction_session_timeout = 0;\n");
3340 ahprintf(AH,
"SET transaction_timeout = 0;\n");
3343 ahprintf(AH,
"SET client_encoding = '%s';\n",
3347 ahprintf(AH,
"SET standard_conforming_strings = %s;\n",
3359 ahprintf(AH,
"SET check_function_bodies = false;\n");
3362 ahprintf(AH,
"SET xmloption = content;\n");
3365 ahprintf(AH,
"SET client_min_messages = warning;\n");
3367 ahprintf(AH,
"SET escape_string_warning = off;\n");
3371 ahprintf(AH,
"SET row_security = on;\n");
3373 ahprintf(AH,
"SET row_security = off;\n");
3420 pg_fatal(
"could not set session user to \"%s\": %s",
3533 if (!schemaName || *schemaName ==
'\0' ||
3541 if (strcmp(schemaName,
"pg_catalog") != 0)
3552 "could not set \"search_path\" to \"%s\": %s",
3589 if (have && strcmp(want, have) == 0)
3594 if (strcmp(want,
"") == 0)
3613 "could not set \"default_tablespace\" to %s: %s",
3648 if (have && strcmp(want, have) == 0)
3662 "could not set \"default_table_access_method\": %s",
3684 const char *tableam = te->
tableam;
3711 "could not alter table access method: %s",
3734 if (strcmp(
type,
"COLLATION") == 0 ||
3735 strcmp(
type,
"CONVERSION") == 0 ||
3736 strcmp(
type,
"DOMAIN") == 0 ||
3737 strcmp(
type,
"FOREIGN TABLE") == 0 ||
3738 strcmp(
type,
"MATERIALIZED VIEW") == 0 ||
3739 strcmp(
type,
"SEQUENCE") == 0 ||
3740 strcmp(
type,
"STATISTICS") == 0 ||
3741 strcmp(
type,
"TABLE") == 0 ||
3742 strcmp(
type,
"TEXT SEARCH DICTIONARY") == 0 ||
3743 strcmp(
type,
"TEXT SEARCH CONFIGURATION") == 0 ||
3744 strcmp(
type,
"TYPE") == 0 ||
3745 strcmp(
type,
"VIEW") == 0 ||
3747 strcmp(
type,
"DATABASE") == 0 ||
3748 strcmp(
type,
"PROCEDURAL LANGUAGE") == 0 ||
3749 strcmp(
type,
"SCHEMA") == 0 ||
3750 strcmp(
type,
"EVENT TRIGGER") == 0 ||
3751 strcmp(
type,
"FOREIGN DATA WRAPPER") == 0 ||
3752 strcmp(
type,
"SERVER") == 0 ||
3753 strcmp(
type,
"PUBLICATION") == 0 ||
3754 strcmp(
type,
"SUBSCRIPTION") == 0)
3757 if (te->namespace && *te->namespace)
3762 else if (strcmp(
type,
"BLOB") == 0)
3771 else if (strcmp(
type,
"AGGREGATE") == 0 ||
3772 strcmp(
type,
"FUNCTION") == 0 ||
3773 strcmp(
type,
"OPERATOR") == 0 ||
3774 strcmp(
type,
"OPERATOR CLASS") == 0 ||
3775 strcmp(
type,
"OPERATOR FAMILY") == 0 ||
3776 strcmp(
type,
"PROCEDURE") == 0)
3783 last = first + strlen(first) - 1;
3786 while (last >= first && (*last ==
'\n' || *last ==
';'))
3796 else if (strcmp(
type,
"CAST") == 0 ||
3797 strcmp(
type,
"CHECK CONSTRAINT") == 0 ||
3798 strcmp(
type,
"CONSTRAINT") == 0 ||
3799 strcmp(
type,
"DATABASE PROPERTIES") == 0 ||
3800 strcmp(
type,
"DEFAULT") == 0 ||
3801 strcmp(
type,
"FK CONSTRAINT") == 0 ||
3802 strcmp(
type,
"INDEX") == 0 ||
3803 strcmp(
type,
"RULE") == 0 ||
3804 strcmp(
type,
"TRIGGER") == 0 ||
3805 strcmp(
type,
"ROW SECURITY") == 0 ||
3806 strcmp(
type,
"POLICY") == 0 ||
3807 strcmp(
type,
"USER MAPPING") == 0)
3812 pg_fatal(
"don't know how to set owner for object type \"%s\"",
type);
3836 if (te->
relkind != RELKIND_PARTITIONED_TABLE)
3842 char *sanitized_name;
3843 char *sanitized_schema;
3844 char *sanitized_owner;
3849 ahprintf(AH,
"-- TOC entry %d (class %u OID %u)\n",
3866 ahprintf(AH,
"-- %sName: %s; Type: %s; Schema: %s; Owner: %s",
3867 pfx, sanitized_name, te->
desc, sanitized_schema,
3870 free(sanitized_name);
3871 free(sanitized_schema);
3872 free(sanitized_owner);
3876 char *sanitized_tablespace;
3879 ahprintf(AH,
"; Tablespace: %s", sanitized_tablespace);
3880 free(sanitized_tablespace);
3911 strcmp(te->
desc,
"SCHEMA") == 0 && strncmp(te->
defn,
"--", 2) != 0)
3915 else if (strcmp(te->
desc,
"BLOB METADATA") == 0)
3919 else if (strcmp(te->
desc,
"ACL") == 0 &&
3920 strncmp(te->
tag,
"LARGE OBJECTS", 13) == 0)
3947 pg_fatal(
"unexpected TOC entry in _printTocEntry(): %d %s %s",
3957 else if (te->
defn && strlen(te->
defn) > 0)
3969 strcmp(te->
desc,
"FUNCTION") != 0 &&
3970 strcmp(te->
desc,
"PROCEDURE") != 0)
3972 const char *p = te->
defn;
3975 while ((p = strchr(p,
';')) != NULL)
3994 (strcmp(te->
desc,
"SCHEMA") == 0 &&
3995 strncmp(te->
defn,
"--", 2) == 0)) &&
3999 if (strcmp(te->
desc,
"BLOB METADATA") == 0)
4020 ahprintf(AH,
"ALTER %s OWNER TO %s;\n\n",
4030 if (te->
relkind == RELKIND_PARTITIONED_TABLE)
4067 return pg_strdup(want_hyphen ?
"-" :
"");
4071 for (s = result; *s !=
'\0'; s++)
4073 if (*s ==
'\n' || *s ==
'\r')
4130 if (strncmp(tmpMag,
"PGDMP", 5) != 0)
4131 pg_fatal(
"did not find magic string in file header");
4137 if (vmaj > 1 || (vmaj == 1 && vmin > 0))
4145 pg_fatal(
"unsupported version (%d.%d) in file header",
4150 pg_fatal(
"sanity check on integer size (%lu) failed",
4153 if (AH->
intSize >
sizeof(
int))
4154 pg_log_warning(
"archive was made on a machine with larger integers, some operations might fail");
4164 pg_fatal(
"expected format (%d) differs from format found in file (%d)",
4186 pg_log_warning(
"archive is compressed, but this installation does not support compression (%s) -- no data will be available",
4258 if (
fseeko(fp, tpos, SEEK_SET) != 0)
4318 skipped_some =
false;
4319 for (next_work_item = AH->
toc->
next; next_work_item != AH->
toc; next_work_item = next_work_item->
next)
4330 skipped_some =
true;
4358 next_work_item->
desc, next_work_item->
tag);
4447 if (next_work_item != NULL)
4454 next_work_item->
desc, next_work_item->
tag);
4463 next_work_item->
desc, next_work_item->
tag);
4569 for (k = 0; k < te2->
nDeps; k++)
4659 for (te = pending_list->
pending_next; te != pending_list; te = next_te)
4701 bool conflicts =
false;
4712 if (running_te == NULL)
4770 void *callback_data)
4786 else if (status != 0)
4787 pg_fatal(
"worker process failed: exit code %d",
4842 if (strcmp(te->
desc,
"BLOB COMMENTS") == 0 && te->
nDeps == 0)
4848 if (strcmp(te2->
desc,
"BLOBS") == 0)
4879 if (depid <= AH->maxDumpId && AH->
tocsByDumpId[depid] != NULL)
4907 if (depid <= AH->maxDumpId && AH->
tocsByDumpId[depid] != NULL)
4951 if (olddep <= AH->maxDumpId &&
4960 te->
dumpId, olddep, tabledataid);
4995 if (strcmp(te->
desc,
"INDEX") == 0)
5014 if (depid <= AH->maxDumpId && AH->
tocsByDumpId[depid] != NULL &&
5017 lockids[nlockids++] = depid;
5093 pg_log_info(
"table \"%s\" could not be created, will not restore its data",
int lo_write(int fd, const char *buf, int len)
void ParallelBackupEnd(ArchiveHandle *AH, ParallelState *pstate)
void WaitForWorkers(ArchiveHandle *AH, ParallelState *pstate, WFW_WaitOption mode)
ParallelState * ParallelBackupStart(ArchiveHandle *AH)
void DispatchJobForTocEntry(ArchiveHandle *AH, ParallelState *pstate, TocEntry *te, T_Action act, ParallelCompletionPtr callback, void *callback_data)
bool IsEveryWorkerIdle(ParallelState *pstate)
void binaryheap_remove_node(binaryheap *heap, int n)
void binaryheap_add(binaryheap *heap, bh_node_type d)
void binaryheap_free(binaryheap *heap)
binaryheap * binaryheap_allocate(int capacity, binaryheap_comparator compare, void *arg)
#define binaryheap_size(h)
#define binaryheap_empty(h)
#define binaryheap_get_node(h, n)
#define ngettext(s, p, n)
bool EndCompressFileHandle(CompressFileHandle *CFH)
char * supports_compression(const pg_compress_specification compression_spec)
CompressFileHandle * InitCompressFileHandle(const pg_compress_specification compression_spec)
const char * get_compress_algorithm_name(pg_compress_algorithm algorithm)
#define PGDUMP_STRFTIME_FMT
int errmsg(const char *fmt,...)
static size_t append_data(char *buf, size_t size, size_t nmemb, void *userdata)
char * PQdb(const PGconn *conn)
char * PQerrorMessage(const PGconn *conn)
ExecStatusType PQresultStatus(const PGresult *res)
void PQclear(PGresult *res)
PGresult * PQexec(PGconn *conn, const char *query)
int lo_close(PGconn *conn, int fd)
int lo_open(PGconn *conn, Oid lobjId, int mode)
Oid lo_create(PGconn *conn, Oid lobjId)
void * pg_malloc(size_t size)
char * pg_strdup(const char *in)
void * pg_malloc0(size_t size)
void * pg_realloc(void *ptr, size_t size)
@ DATA_DIR_SYNC_METHOD_FSYNC
Assert(PointerIsAligned(start, uint64))
static DataDirSyncMethod sync_method
if(TABLE==NULL||TABLE_index==NULL)
void pg_log_generic_v(enum pg_log_level level, enum pg_log_part part, const char *pg_restrict fmt, va_list ap)
#define pg_log_debug(...)
static AmcheckOptions opts
void(* SetupWorkerPtrType)(Archive *AH)
enum _archiveFormat ArchiveFormat
void ConnectDatabaseAhx(Archive *AHX, const ConnParams *cparams, bool isReconnect)
void DisconnectDatabase(Archive *AHX)
enum _teSection teSection
static void fix_dependencies(ArchiveHandle *AH)
static void repoint_table_dependencies(ArchiveHandle *AH)
void DeCloneArchive(ArchiveHandle *AH)
static int _discoverArchiveFormat(ArchiveHandle *AH)
#define TEXT_DUMPALL_HEADER
int TocIDRequired(ArchiveHandle *AH, DumpId id)
void ahwrite(const void *ptr, size_t size, size_t nmemb, ArchiveHandle *AH)
void warn_or_exit_horribly(ArchiveHandle *AH, const char *fmt,...)
void WriteDataChunksForTocEntry(ArchiveHandle *AH, TocEntry *te)
static void _becomeOwner(ArchiveHandle *AH, TocEntry *te)
void WriteHead(ArchiveHandle *AH)
int EndLO(Archive *AHX, Oid oid)
static CompressFileHandle * SaveOutput(ArchiveHandle *AH)
static void _becomeUser(ArchiveHandle *AH, const char *user)
static void pending_list_append(TocEntry *l, TocEntry *te)
size_t WriteInt(ArchiveHandle *AH, int i)
void ProcessArchiveRestoreOptions(Archive *AHX)
static int restore_toc_entry(ArchiveHandle *AH, TocEntry *te, bool is_parallel)
static void _moveBefore(TocEntry *pos, TocEntry *te)
RestoreOptions * NewRestoreOptions(void)
static bool _tocEntryIsACL(TocEntry *te)
static void move_to_ready_heap(TocEntry *pending_list, binaryheap *ready_heap, RestorePass pass)
char * ReadStr(ArchiveHandle *AH)
static void _getObjectDescription(PQExpBuffer buf, const TocEntry *te)
static void buildTocEntryArrays(ArchiveHandle *AH)
static void identify_locking_dependencies(ArchiveHandle *AH, TocEntry *te)
static void processEncodingEntry(ArchiveHandle *AH, TocEntry *te)
static void processSearchPathEntry(ArchiveHandle *AH, TocEntry *te)
int archprintf(Archive *AH, const char *fmt,...)
static void StrictNamesCheck(RestoreOptions *ropt)
static void mark_restore_job_done(ArchiveHandle *AH, TocEntry *te, int status, void *callback_data)
size_t WriteOffset(ArchiveHandle *AH, pgoff_t o, int wasSet)
static RestorePass _tocEntryRestorePass(TocEntry *te)
TocEntry * ArchiveEntry(Archive *AHX, CatalogId catalogId, DumpId dumpId, ArchiveOpts *opts)
int StartLO(Archive *AHX, Oid oid)
static void _printTocEntry(ArchiveHandle *AH, TocEntry *te, const char *pfx)
ArchiveHandle * CloneArchive(ArchiveHandle *AH)
static void setupRestoreWorker(Archive *AHX)
static void _reconnectToDB(ArchiveHandle *AH, const char *dbname)
static int TocEntrySizeCompareQsort(const void *p1, const void *p2)
Archive * OpenArchive(const char *FileSpec, const ArchiveFormat fmt)
void StartRestoreLOs(ArchiveHandle *AH)
void RestoreArchive(Archive *AHX, bool append_data)
void CloseArchive(Archive *AHX)
static void pending_list_header_init(TocEntry *l)
static void restore_toc_entries_parallel(ArchiveHandle *AH, ParallelState *pstate, TocEntry *pending_list)
TocEntry * getTocEntryByDumpId(ArchiveHandle *AH, DumpId id)
static void mark_create_done(ArchiveHandle *AH, TocEntry *te)
static void _selectTableAccessMethod(ArchiveHandle *AH, const char *tableam)
void WriteDataChunks(ArchiveHandle *AH, ParallelState *pstate)
static void dumpTimestamp(ArchiveHandle *AH, const char *msg, time_t tim)
int ahprintf(ArchiveHandle *AH, const char *fmt,...)
static void _selectOutputSchema(ArchiveHandle *AH, const char *schemaName)
static void mark_dump_job_done(ArchiveHandle *AH, TocEntry *te, int status, void *callback_data)
static bool is_load_via_partition_root(TocEntry *te)
Archive * CreateArchive(const char *FileSpec, const ArchiveFormat fmt, const pg_compress_specification compression_spec, bool dosync, ArchiveMode mode, SetupWorkerPtrType setupDumpWorker, DataDirSyncMethod sync_method)
static void _enableTriggersIfNecessary(ArchiveHandle *AH, TocEntry *te)
DumpOptions * NewDumpOptions(void)
void SortTocFromFile(Archive *AHX)
int ReadOffset(ArchiveHandle *AH, pgoff_t *o)
static void inhibit_data_for_failed_table(ArchiveHandle *AH, TocEntry *te)
int ReadInt(ArchiveHandle *AH)
static void restore_toc_entries_prefork(ArchiveHandle *AH, TocEntry *pending_list)
static void _printTableAccessMethodNoStorage(ArchiveHandle *AH, TocEntry *te)
static void restore_toc_entries_postfork(ArchiveHandle *AH, TocEntry *pending_list)
static void RestoreOutput(ArchiveHandle *AH, CompressFileHandle *savedOutput)
static void _doSetFixedOutputState(ArchiveHandle *AH)
void PrintTOCSummary(Archive *AHX)
static void processStdStringsEntry(ArchiveHandle *AH, TocEntry *te)
static int TocEntrySizeCompareBinaryheap(void *p1, void *p2, void *arg)
static int RestoringToDB(ArchiveHandle *AH)
void ReadHead(ArchiveHandle *AH)
void SetArchiveOptions(Archive *AH, DumpOptions *dopt, RestoreOptions *ropt)
static void pending_list_remove(TocEntry *te)
static bool has_lock_conflicts(TocEntry *te1, TocEntry *te2)
void ReadToc(ArchiveHandle *AH)
static void reduce_dependencies(ArchiveHandle *AH, TocEntry *te, binaryheap *ready_heap)
static char * sanitize_line(const char *str, bool want_hyphen)
void EndRestoreLO(ArchiveHandle *AH, Oid oid)
static void _selectTablespace(ArchiveHandle *AH, const char *tablespace)
void WriteToc(ArchiveHandle *AH)
void archputs(const char *s, Archive *AH)
static bool _fileExistsInDirectory(const char *dir, const char *filename)
static void SetOutput(ArchiveHandle *AH, const char *filename, const pg_compress_specification compression_spec, bool append_data)
DumpOptions * dumpOptionsFromRestoreOptions(RestoreOptions *ropt)
static int _tocEntryRequired(TocEntry *te, teSection curSection, ArchiveHandle *AH)
static void _doSetSessionAuth(ArchiveHandle *AH, const char *user)
void EndRestoreLOs(ArchiveHandle *AH)
void StartRestoreLO(ArchiveHandle *AH, Oid oid, bool drop)
void InitDumpOptions(DumpOptions *opts)
static ArchiveHandle * _allocAH(const char *FileSpec, const ArchiveFormat fmt, const pg_compress_specification compression_spec, bool dosync, ArchiveMode mode, SetupWorkerPtrType setupWorkerPtr, DataDirSyncMethod sync_method)
static void dump_lo_buf(ArchiveHandle *AH)
static TocEntry * pop_next_work_item(binaryheap *ready_heap, ParallelState *pstate)
void WriteData(Archive *AHX, const void *data, size_t dLen)
int parallel_restore(ArchiveHandle *AH, TocEntry *te)
size_t WriteStr(ArchiveHandle *AH, const char *c)
static void _disableTriggersIfNecessary(ArchiveHandle *AH, TocEntry *te)
void InitArchiveFmt_Null(ArchiveHandle *AH)
#define WORKER_CREATE_DONE
void IssueACLPerBlob(ArchiveHandle *AH, TocEntry *te)
#define appendByteaLiteralAHX(buf, str, len, AH)
void struct _archiveOpts ArchiveOpts
void(* EndDataPtrType)(ArchiveHandle *AH, TocEntry *te)
void(* StartDataPtrType)(ArchiveHandle *AH, TocEntry *te)
#define ARCHIVE_MAJOR(version)
#define ARCHIVE_MINOR(version)
#define RESTORE_PASS_LAST
void InitArchiveFmt_Custom(ArchiveHandle *AH)
void InitArchiveFmt_Tar(ArchiveHandle *AH)
#define appendStringLiteralAHX(buf, str, AH)
void DropLOIfExists(ArchiveHandle *AH, Oid oid)
#define MAKE_ARCHIVE_VERSION(major, minor, rev)
void ReconnectToServer(ArchiveHandle *AH, const char *dbname)
#define ARCHIVE_REV(version)
bool isValidTarHeader(char *header)
#define WORKER_IGNORED_ERRORS
void IssueCommandPerBlob(ArchiveHandle *AH, TocEntry *te, const char *cmdBegin, const char *cmdEnd)
#define K_OFFSET_POS_NOT_SET
#define READ_ERROR_EXIT(fd)
void InitArchiveFmt_Directory(ArchiveHandle *AH)
#define WORKER_INHIBIT_DATA
void EndDBCopyMode(Archive *AHX, const char *tocEntryTag)
int ExecuteSqlCommandBuf(Archive *AHX, const char *buf, size_t bufLen)
void exit_nicely(int code)
static PgChecksumMode mode
static void setupDumpWorker(Archive *AH)
bool pg_get_line_buf(FILE *stream, StringInfo buf)
#define pg_encoding_to_char
#define pg_char_to_encoding
#define pg_log_warning(...)
#define qsort(a, b, c, d)
PQExpBuffer createPQExpBuffer(void)
void initPQExpBuffer(PQExpBuffer str)
void appendPQExpBuffer(PQExpBuffer str, const char *fmt,...)
void destroyPQExpBuffer(PQExpBuffer str)
void appendPQExpBufferChar(PQExpBuffer str, char ch)
void appendPQExpBufferStr(PQExpBuffer str, const char *data)
void termPQExpBuffer(PQExpBuffer str)
size_t pvsnprintf(char *buf, size_t len, const char *fmt, va_list args)
char * psprintf(const char *fmt,...)
const char * simple_string_list_not_touched(SimpleStringList *list)
bool simple_string_list_member(SimpleStringList *list, const char *val)
const char * fmtQualifiedId(const char *schema, const char *id)
const char * fmtId(const char *rawid)
void setFmtEncoding(int encoding)
void appendPsqlMetaConnect(PQExpBuffer buf, const char *dbname)
void initStringInfo(StringInfo str)
bool(* write_func)(const void *ptr, size_t size, struct CompressFileHandle *CFH)
bool(* open_func)(const char *path, int fd, const char *mode, CompressFileHandle *CFH)
SimpleStringListCell * head
DeClonePtrType DeClonePtr
DataDirSyncMethod sync_method
struct _tocEntry * lastErrorTE
ReadExtraTocPtrType ReadExtraTocPtr
char * archiveDumpVersion
struct _tocEntry * currentTE
CustomOutPtrType CustomOutPtr
PGcancel *volatile connCancel
StartLOsPtrType StartLOsPtr
ArchiveEntryPtrType ArchiveEntryPtr
pg_compress_specification compression_spec
WriteDataPtrType WriteDataPtr
StartLOPtrType StartLOPtr
struct _tocEntry ** tocsByDumpId
WriteBufPtrType WriteBufPtr
PrepParallelRestorePtrType PrepParallelRestorePtr
WriteExtraTocPtrType WriteExtraTocPtr
ReadBytePtrType ReadBytePtr
PrintTocDataPtrType PrintTocDataPtr
struct _tocEntry * currToc
WriteBytePtrType WriteBytePtr
ReadBufPtrType ReadBufPtr
PrintExtraTocPtrType PrintExtraTocPtr
ArchiverStage lastErrorStage
StartDataPtrType StartDataPtr
ArchiverOutput outputKind
EndDataPtrType EndDataPtr
char * archiveRemoteVersion
SetupWorkerPtrType SetupWorkerPtr
int disable_dollar_quoting
const char * lockWaitTimeout
SimpleStringList schemaExcludeNames
SimpleStringList functionNames
SimpleStringList tableNames
SimpleStringList indexNames
pg_compress_specification compression_spec
SimpleStringList triggerNames
int disable_dollar_quoting
SimpleStringList schemaNames
const char * lockWaitTimeout
int noDataForFailedTables
struct _tocEntry * pending_next
struct _tocEntry * pending_prev
const void * dataDumperArg
const void * defnDumperArg
pg_compress_algorithm algorithm
static void * fn(void *arg)
#define fseeko(stream, offset, origin)
static void StartTransaction(void)
static void CommitTransaction(void)