PostgreSQL Source Code  git master
pg_upgrade.h
Go to the documentation of this file.
1 /*
2  * pg_upgrade.h
3  *
4  * Copyright (c) 2010-2024, PostgreSQL Global Development Group
5  * src/bin/pg_upgrade/pg_upgrade.h
6  */
7 
8 #include <unistd.h>
9 #include <assert.h>
10 #include <sys/stat.h>
11 #include <sys/time.h>
12 
13 #include "common/relpath.h"
14 #include "libpq-fe.h"
15 
16 /* For now, pg_upgrade does not use common/logging.c; use our own pg_fatal */
17 #undef pg_fatal
18 
19 /* Use port in the private/dynamic port number range */
20 #define DEF_PGUPORT 50432
21 
22 #define MAX_STRING 1024
23 #define QUERY_ALLOC 8192
24 
25 #define MESSAGE_WIDTH 62
26 
27 #define GET_MAJOR_VERSION(v) ((v) / 100)
28 
29 /* contains both global db information and CREATE DATABASE commands */
30 #define GLOBALS_DUMP_FILE "pg_upgrade_dump_globals.sql"
31 #define DB_DUMP_FILE_MASK "pg_upgrade_dump_%u.custom"
32 
33 /*
34  * Base directories that include all the files generated internally, from the
35  * root path of the new cluster. The paths are dynamically built as of
36  * BASE_OUTPUTDIR/$timestamp/{LOG_OUTPUTDIR,DUMP_OUTPUTDIR} to ensure their
37  * uniqueness in each run.
38  */
39 #define BASE_OUTPUTDIR "pg_upgrade_output.d"
40 #define LOG_OUTPUTDIR "log"
41 #define DUMP_OUTPUTDIR "dump"
42 
43 #define DB_DUMP_LOG_FILE_MASK "pg_upgrade_dump_%u.log"
44 #define SERVER_LOG_FILE "pg_upgrade_server.log"
45 #define UTILITY_LOG_FILE "pg_upgrade_utility.log"
46 #define INTERNAL_LOG_FILE "pg_upgrade_internal.log"
47 
48 extern char *output_files[];
49 
50 /*
51  * WIN32 files do not accept writes from multiple processes
52  *
53  * On Win32, we can't send both pg_upgrade output and command output to the
54  * same file because we get the error: "The process cannot access the file
55  * because it is being used by another process." so send the pg_ctl
56  * command-line output to a new file, rather than into the server log file.
57  * Ideally we could use UTILITY_LOG_FILE for this, but some Windows platforms
58  * keep the pg_ctl output file open by the running postmaster, even after
59  * pg_ctl exits.
60  *
61  * We could use the Windows pgwin32_open() flags to allow shared file
62  * writes but is unclear how all other tools would use those flags, so
63  * we just avoid it and log a little differently on Windows; we adjust
64  * the error message appropriately.
65  */
66 #ifndef WIN32
67 #define SERVER_START_LOG_FILE SERVER_LOG_FILE
68 #define SERVER_STOP_LOG_FILE SERVER_LOG_FILE
69 #else
70 #define SERVER_START_LOG_FILE "pg_upgrade_server_start.log"
71 /*
72  * "pg_ctl start" keeps SERVER_START_LOG_FILE and SERVER_LOG_FILE open
73  * while the server is running, so we use UTILITY_LOG_FILE for "pg_ctl
74  * stop".
75  */
76 #define SERVER_STOP_LOG_FILE UTILITY_LOG_FILE
77 #endif
78 
79 
80 #ifndef WIN32
81 #define pg_mv_file rename
82 #define PATH_SEPARATOR '/'
83 #define PATH_QUOTE '\''
84 #define RM_CMD "rm -f"
85 #define RMDIR_CMD "rm -rf"
86 #define SCRIPT_PREFIX "./"
87 #define SCRIPT_EXT "sh"
88 #define ECHO_QUOTE "'"
89 #define ECHO_BLANK ""
90 #else
91 #define pg_mv_file pgrename
92 #define PATH_SEPARATOR '\\'
93 #define PATH_QUOTE '"'
94 /* @ prefix disables command echo in .bat files */
95 #define RM_CMD "@DEL /q"
96 #define RMDIR_CMD "@RMDIR /s/q"
97 #define SCRIPT_PREFIX ""
98 #define SCRIPT_EXT "bat"
99 #define EXE_EXT ".exe"
100 #define ECHO_QUOTE ""
101 #define ECHO_BLANK "."
102 #endif
103 
104 
105 /*
106  * The format of visibility map was changed with this 9.6 commit.
107  */
108 #define VISIBILITY_MAP_FROZEN_BIT_CAT_VER 201603011
109 
110 /*
111  * pg_multixact format changed in 9.3 commit 0ac5ad5134f2769ccbaefec73844f85,
112  * ("Improve concurrency of foreign key locking") which also updated catalog
113  * version to this value. pg_upgrade behavior depends on whether old and new
114  * server versions are both newer than this, or only the new one is.
115  */
116 #define MULTIXACT_FORMATCHANGE_CAT_VER 201301231
117 
118 /*
119  * large object chunk size added to pg_controldata,
120  * commit 5f93c37805e7485488480916b4585e098d3cc883
121  */
122 #define LARGE_OBJECT_SIZE_PG_CONTROL_VER 942
123 
124 /*
125  * change in JSONB format during 9.4 beta
126  */
127 #define JSONB_FORMAT_CHANGE_CAT_VER 201409291
128 
129 
130 /*
131  * Each relation is represented by a relinfo structure.
132  */
133 typedef struct
134 {
135  /* Can't use NAMEDATALEN; not guaranteed to be same on client */
136  char *nspname; /* namespace name */
137  char *relname; /* relation name */
138  Oid reloid; /* relation OID */
139  RelFileNumber relfilenumber; /* relation file number */
140  Oid indtable; /* if index, OID of its table, else 0 */
141  Oid toastheap; /* if toast table, OID of base table, else 0 */
142  char *tablespace; /* tablespace path; "" for cluster default */
143  bool nsp_alloc; /* should nspname be freed? */
144  bool tblsp_alloc; /* should tablespace be freed? */
145 } RelInfo;
146 
147 typedef struct
148 {
149  RelInfo *rels;
150  int nrels;
151 } RelInfoArr;
152 
153 /*
154  * Structure to store logical replication slot information.
155  */
156 typedef struct
157 {
158  char *slotname; /* slot name */
159  char *plugin; /* plugin */
160  bool two_phase; /* can the slot decode 2PC? */
161  bool caught_up; /* has the slot caught up to latest changes? */
162  bool invalid; /* if true, the slot is unusable */
163  bool failover; /* is the slot designated to be synced to the
164  * physical standby? */
165 } LogicalSlotInfo;
166 
167 typedef struct
168 {
169  int nslots; /* number of logical slot infos */
170  LogicalSlotInfo *slots; /* array of logical slot infos */
171 } LogicalSlotInfoArr;
172 
173 /*
174  * The following structure represents a relation mapping.
175  */
176 typedef struct
177 {
178  const char *old_tablespace;
179  const char *new_tablespace;
180  const char *old_tablespace_suffix;
181  const char *new_tablespace_suffix;
182  Oid db_oid;
183  RelFileNumber relfilenumber;
184  /* the rest are used only for logging and error reporting */
185  char *nspname; /* namespaces */
186  char *relname;
187 } FileNameMap;
188 
189 /*
190  * Structure to store database information
191  */
192 typedef struct
193 {
194  Oid db_oid; /* oid of the database */
195  char *db_name; /* database name */
196  char db_tablespace[MAXPGPATH]; /* database default tablespace
197  * path */
198  RelInfoArr rel_arr; /* array of all user relinfos */
199  LogicalSlotInfoArr slot_arr; /* array of all LogicalSlotInfo */
200  int nsubs; /* number of subscriptions */
201 } DbInfo;
202 
203 /*
204  * Locale information about a database.
205  */
206 typedef struct
207 {
208  char *db_collate;
209  char *db_ctype;
210  char db_collprovider;
211  char *db_locale;
212  int db_encoding;
213 } DbLocaleInfo;
214 
215 typedef struct
216 {
217  DbInfo *dbs; /* array of db infos */
218  int ndbs; /* number of db infos */
219 } DbInfoArr;
220 
221 /*
222  * The following structure is used to hold pg_control information.
223  * Rather than using the backend's control structure we use our own
224  * structure to avoid pg_control version issues between releases.
225  */
226 typedef struct
227 {
228  uint32 ctrl_ver;
229  uint32 cat_ver;
230  char nextxlogfile[25];
231  uint32 chkpnt_nxtxid;
232  uint32 chkpnt_nxtepoch;
233  uint32 chkpnt_nxtoid;
234  uint32 chkpnt_nxtmulti;
235  uint32 chkpnt_nxtmxoff;
236  uint32 chkpnt_oldstMulti;
237  uint32 chkpnt_oldstxid;
238  uint32 align;
239  uint32 blocksz;
240  uint32 largesz;
241  uint32 walsz;
242  uint32 walseg;
243  uint32 ident;
244  uint32 index;
245  uint32 toast;
246  uint32 large_object;
247  bool date_is_int;
248  bool float8_pass_by_value;
249  uint32 data_checksum_version;
250 } ControlData;
251 
252 /*
253  * Enumeration to denote transfer modes
254  */
255 typedef enum
256 {
257  TRANSFER_MODE_CLONE,
258  TRANSFER_MODE_COPY,
259  TRANSFER_MODE_COPY_FILE_RANGE,
260  TRANSFER_MODE_LINK,
261 } transferMode;
262 
263 /*
264  * Enumeration to denote pg_log modes
265  */
266 typedef enum
267 {
268  PG_VERBOSE,
269  PG_STATUS, /* these messages do not get a newline added */
270  PG_REPORT_NONL, /* these too */
271  PG_REPORT,
272  PG_WARNING,
273  PG_FATAL,
274 } eLogType;
275 
276 
277 /*
278  * cluster
279  *
280  * information about each cluster
281  */
282 typedef struct
283 {
284  ControlData controldata; /* pg_control information */
285  DbLocaleInfo *template0; /* template0 locale info */
286  DbInfoArr dbarr; /* dbinfos array */
287  char *pgdata; /* pathname for cluster's $PGDATA directory */
288  char *pgconfig; /* pathname for cluster's config file
289  * directory */
290  char *bindir; /* pathname for cluster's executable directory */
291  char *pgopts; /* options to pass to the server, like pg_ctl
292  * -o */
293  char *sockdir; /* directory for Unix Domain socket, if any */
294  unsigned short port; /* port number where postmaster is waiting */
295  uint32 major_version; /* PG_VERSION of cluster */
296  char major_version_str[64]; /* string PG_VERSION of cluster */
297  uint32 bin_version; /* version returned from pg_ctl */
298  const char *tablespace_suffix; /* directory specification */
299 } ClusterInfo;
300 
301 
302 /*
303  * LogOpts
304 */
305 typedef struct
306 {
307  FILE *internal; /* internal log FILE */
308  bool verbose; /* true -> be verbose in messages */
309  bool retain; /* retain log files on success */
310  /* Set of internal directories for output files */
311  char *rootdir; /* Root directory, aka pg_upgrade_output.d */
312  char *basedir; /* Base output directory, with timestamp */
313  char *dumpdir; /* Dumps */
314  char *logdir; /* Log files */
315  bool isatty; /* is stdout a tty */
316 } LogOpts;
317 
318 
319 /*
320  * UserOpts
321 */
322 typedef struct
323 {
324  bool check; /* true -> ask user for permission to make
325  * changes */
326  bool do_sync; /* flush changes to disk */
327  transferMode transfer_mode; /* copy files or link them? */
328  int jobs; /* number of processes/threads to use */
329  char *socketdir; /* directory to use for Unix sockets */
330  char *sync_method;
331 } UserOpts;
332 
333 typedef struct
334 {
335  char *name;
336  int dbnum;
337 } LibraryInfo;
338 
339 /*
340  * OSInfo
341  */
342 typedef struct
343 {
344  const char *progname; /* complete pathname for this program */
345  char *user; /* username for clusters */
346  bool user_specified; /* user specified on command-line */
347  char **old_tablespaces; /* tablespaces */
348  int num_old_tablespaces;
349  LibraryInfo *libraries; /* loadable libraries */
350  int num_libraries;
351  ClusterInfo *running_cluster;
352 } OSInfo;
353 
354 
355 /* Function signature for data type check version hook */
356 typedef bool (*DataTypesUsageVersionCheck) (ClusterInfo *cluster);
357 
358 /*
359  * Global variables
360  */
361 extern LogOpts log_opts;
362 extern UserOpts user_opts;
363 extern ClusterInfo old_cluster,
364  new_cluster;
365 extern OSInfo os_info;
366 
367 
368 /* check.c */
369 
370 void output_check_banner(bool live_check);
371 void check_and_dump_old_cluster(bool live_check);
372 void check_new_cluster(void);
373 void report_clusters_compatible(void);
374 void issue_warnings_and_set_wal_level(void);
375 void output_completion_banner(char *deletion_script_file_name);
376 void check_cluster_versions(void);
377 void check_cluster_compatibility(bool live_check);
378 void create_script_for_old_cluster_deletion(char **deletion_script_file_name);
379 
380 
381 /* controldata.c */
382 
383 void get_control_data(ClusterInfo *cluster, bool live_check);
384 void check_control_data(ControlData *oldctrl, ControlData *newctrl);
385 void disable_old_cluster(void);
386 
387 
388 /* dump.c */
389 
390 void generate_old_dump(void);
391 
392 
393 /* exec.c */
394 
395 #define EXEC_PSQL_ARGS "--echo-queries --set ON_ERROR_STOP=on --no-psqlrc --dbname=template1"
396 
397 bool exec_prog(const char *log_filename, const char *opt_log_file,
398  bool report_error, bool exit_on_error, const char *fmt,...) pg_attribute_printf(5, 6);
399 void verify_directories(void);
400 bool pid_lock_file_exists(const char *datadir);
401 
402 
403 /* file.c */
404 
405 void cloneFile(const char *src, const char *dst,
406  const char *schemaName, const char *relName);
407 void copyFile(const char *src, const char *dst,
408  const char *schemaName, const char *relName);
409 void copyFileByRange(const char *src, const char *dst,
410  const char *schemaName, const char *relName);
411 void linkFile(const char *src, const char *dst,
412  const char *schemaName, const char *relName);
413 void rewriteVisibilityMap(const char *fromfile, const char *tofile,
414  const char *schemaName, const char *relName);
415 void check_file_clone(void);
416 void check_copy_file_range(void);
417 void check_hard_link(void);
418 
419 /* fopen_priv() is no longer different from fopen() */
420 #define fopen_priv(path, mode) fopen(path, mode)
421 
422 /* function.c */
423 
424 void get_loadable_libraries(void);
425 void check_loadable_libraries(void);
426 
427 /* info.c */
428 
429 FileNameMap *gen_db_file_maps(DbInfo *old_db,
430  DbInfo *new_db, int *nmaps, const char *old_pgdata,
431  const char *new_pgdata);
432 void get_db_rel_and_slot_infos(ClusterInfo *cluster, bool live_check);
433 int count_old_cluster_logical_slots(void);
434 int count_old_cluster_subscriptions(void);
435 
436 /* option.c */
437 
438 void parseCommandLine(int argc, char *argv[]);
439 void adjust_data_dir(ClusterInfo *cluster);
440 void get_sock_dir(ClusterInfo *cluster, bool live_check);
441 
442 /* relfilenumber.c */
443 
444 void transfer_all_new_tablespaces(DbInfoArr *old_db_arr,
445  DbInfoArr *new_db_arr, char *old_pgdata, char *new_pgdata);
446 void transfer_all_new_dbs(DbInfoArr *old_db_arr,
447  DbInfoArr *new_db_arr, char *old_pgdata, char *new_pgdata,
448  char *old_tablespace);
449 
450 /* tablespace.c */
451 
452 void init_tablespaces(void);
453 
454 
455 /* server.c */
456 
457 PGconn *connectToServer(ClusterInfo *cluster, const char *db_name);
458 PGresult *executeQueryOrDie(PGconn *conn, const char *fmt,...) pg_attribute_printf(2, 3);
459 
460 char *cluster_conn_opts(ClusterInfo *cluster);
461 
462 bool start_postmaster(ClusterInfo *cluster, bool report_and_exit_on_error);
463 void stop_postmaster(bool in_atexit);
464 uint32 get_major_server_version(ClusterInfo *cluster);
465 void check_pghost_envvar(void);
466 
467 
468 /* util.c */
469 
470 char *quote_identifier(const char *s);
471 int get_user_info(char **user_name_p);
472 void check_ok(void);
473 void report_status(eLogType type, const char *fmt,...) pg_attribute_printf(2, 3);
474 void pg_log(eLogType type, const char *fmt,...) pg_attribute_printf(2, 3);
475 void pg_fatal(const char *fmt,...) pg_attribute_printf(1, 2) pg_attribute_noreturn();
476 void end_progress_output(void);
477 void cleanup_output_dirs(void);
478 void prep_status(const char *fmt,...) pg_attribute_printf(1, 2);
479 void prep_status_progress(const char *fmt,...) pg_attribute_printf(1, 2);
480 unsigned int str2uint(const char *str);
481 
482 
483 /* version.c */
484 
485 bool jsonb_9_4_check_applicable(ClusterInfo *cluster);
486 void old_9_6_invalidate_hash_indexes(ClusterInfo *cluster,
487  bool check_mode);
488 
489 void report_extension_updates(ClusterInfo *cluster);
490 
491 /* parallel.c */
492 void parallel_exec_prog(const char *log_file, const char *opt_log_file,
493  const char *fmt,...) pg_attribute_printf(3, 4);
494 void parallel_transfer_all_new_dbs(DbInfoArr *old_db_arr, DbInfoArr *new_db_arr,
495  char *old_pgdata, char *new_pgdata,
496  char *old_tablespace);
497 bool reap_child(bool wait_for_child);
char * output_files[]
Definition: pg_upgrade.c:75