2012-05-18 11:54:36 +03:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
*
|
2014-01-24 14:37:13 +03:00
|
|
|
* backup.c: backup DB cluster, archived WAL
|
2012-05-18 11:54:36 +03:00
|
|
|
*
|
2013-09-09 12:00:13 +03:00
|
|
|
* Copyright (c) 2009-2013, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
|
2012-05-18 11:54:36 +03:00
|
|
|
*
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2014-01-27 06:02:56 +03:00
|
|
|
#include "pg_arman.h"
|
2012-05-18 11:54:36 +03:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <time.h>
|
2016-02-29 19:23:48 +02:00
|
|
|
#include <pthread.h>
|
2012-05-18 11:54:36 +03:00
|
|
|
|
|
|
|
#include "libpq/pqsignal.h"
|
|
|
|
#include "pgut/pgut-port.h"
|
2016-02-27 20:07:55 +02:00
|
|
|
#include "storage/bufpage.h"
|
|
|
|
#include "datapagemap.h"
|
2012-05-18 11:54:36 +03:00
|
|
|
|
2013-12-12 16:20:08 +03:00
|
|
|
/* wait 10 sec until WAL archive complete */
|
|
|
|
#define TIMEOUT_ARCHIVE 10
|
|
|
|
|
|
|
|
/* Server version */
|
|
|
|
static int server_version = 0;
|
2012-05-18 11:54:36 +03:00
|
|
|
|
|
|
|
static bool in_backup = false; /* TODO: more robust logic */
|
|
|
|
|
2016-01-15 16:47:38 +02:00
|
|
|
/* list of files contained in backup */
|
|
|
|
parray *backup_files_list;
|
|
|
|
|
2016-02-29 19:23:48 +02:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
const char *from_root;
|
|
|
|
const char *to_root;
|
|
|
|
parray *files;
|
|
|
|
parray *prev_files;
|
|
|
|
const XLogRecPtr *lsn;
|
|
|
|
unsigned int start_file_idx;
|
|
|
|
unsigned int end_file_idx;
|
|
|
|
} backup_files_args;
|
|
|
|
|
2012-05-18 11:54:36 +03:00
|
|
|
/*
|
|
|
|
* Backup routines
|
|
|
|
*/
|
|
|
|
static void backup_cleanup(bool fatal, void *userdata);
|
2016-02-29 19:23:48 +02:00
|
|
|
static void backup_files(void *arg);
|
2013-09-09 12:00:13 +03:00
|
|
|
static parray *do_backup_database(parray *backup_list, pgBackupOption bkupopt);
|
2012-05-18 11:54:36 +03:00
|
|
|
static void confirm_block_size(const char *name, int blcksz);
|
|
|
|
static void pg_start_backup(const char *label, bool smooth, pgBackup *backup);
|
|
|
|
static void pg_stop_backup(pgBackup *backup);
|
2013-12-26 15:13:48 +03:00
|
|
|
static bool pg_is_standby(void);
|
2013-12-12 21:55:39 +03:00
|
|
|
static void get_lsn(PGresult *res, XLogRecPtr *lsn);
|
2012-05-18 11:54:36 +03:00
|
|
|
static void get_xid(PGresult *res, uint32 *xid);
|
2016-02-27 20:07:55 +02:00
|
|
|
static void pg_ptrack_clear(void);
|
2012-05-18 11:54:36 +03:00
|
|
|
|
|
|
|
static void add_files(parray *files, const char *root, bool add_root, bool is_pgdata);
|
2014-01-13 07:04:43 +03:00
|
|
|
static void create_file_list(parray *files,
|
|
|
|
const char *root,
|
|
|
|
const char *subdir,
|
|
|
|
const char *prefix,
|
|
|
|
bool is_append);
|
2016-01-15 16:47:38 +02:00
|
|
|
static void wait_for_archive(pgBackup *backup, const char *sql);
|
2016-02-27 20:07:55 +02:00
|
|
|
static void make_pagemap_from_ptrack(parray *files);
|
2012-05-18 11:54:36 +03:00
|
|
|
|
|
|
|
/*
|
2013-12-15 17:41:42 +03:00
|
|
|
* Take a backup of database and return the list of files backed up.
|
2012-05-18 11:54:36 +03:00
|
|
|
*/
|
|
|
|
static parray *
|
2013-09-09 12:00:13 +03:00
|
|
|
do_backup_database(parray *backup_list, pgBackupOption bkupopt)
|
2012-05-18 11:54:36 +03:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
parray *prev_files = NULL; /* file list of previous database backup */
|
|
|
|
FILE *fp;
|
|
|
|
char path[MAXPGPATH];
|
|
|
|
char label[1024];
|
|
|
|
XLogRecPtr *lsn = NULL;
|
2013-12-15 17:41:42 +03:00
|
|
|
char prev_file_txt[MAXPGPATH]; /* path of the previous backup
|
|
|
|
* list file */
|
|
|
|
bool has_backup_label = true; /* flag if backup_label is there */
|
2016-02-29 19:23:48 +02:00
|
|
|
pthread_t backup_threads[num_threads];
|
|
|
|
backup_files_args *backup_threads_args[num_threads];
|
2013-09-09 12:00:13 +03:00
|
|
|
|
|
|
|
/* repack the options */
|
|
|
|
bool smooth_checkpoint = bkupopt.smooth_checkpoint;
|
2016-01-15 16:47:38 +02:00
|
|
|
pgBackup *prev_backup = NULL;
|
2012-05-18 11:54:36 +03:00
|
|
|
|
2013-12-26 15:13:48 +03:00
|
|
|
/* Block backup operations on a standby */
|
|
|
|
if (pg_is_standby())
|
2016-01-19 05:41:30 +02:00
|
|
|
elog(ERROR, "Backup cannot run on a standby.");
|
2013-12-26 15:13:48 +03:00
|
|
|
|
2016-01-14 09:36:39 +02:00
|
|
|
elog(INFO, "database backup start");
|
2012-05-18 11:54:36 +03:00
|
|
|
|
2013-12-15 17:41:42 +03:00
|
|
|
/* Initialize size summary */
|
2014-01-09 22:11:27 +03:00
|
|
|
current.data_bytes = 0;
|
2012-05-18 11:54:36 +03:00
|
|
|
|
2016-01-15 16:47:38 +02:00
|
|
|
/* do some checks on the node */
|
|
|
|
sanityChecks();
|
|
|
|
|
2013-12-12 21:55:39 +03:00
|
|
|
/*
|
|
|
|
* Obtain current timeline by scanning control file, theh LSN
|
|
|
|
* obtained at output of pg_start_backup or pg_stop_backup does
|
|
|
|
* not contain this information.
|
|
|
|
*/
|
|
|
|
current.tli = get_current_timeline();
|
|
|
|
|
2013-12-24 23:27:25 +03:00
|
|
|
/*
|
2014-01-30 09:58:55 +03:00
|
|
|
* In differential backup mode, check if there is an already-validated
|
2013-12-24 23:27:25 +03:00
|
|
|
* full backup on current timeline.
|
|
|
|
*/
|
2016-02-27 20:07:55 +02:00
|
|
|
if (current.backup_mode == BACKUP_MODE_DIFF_PAGE ||
|
|
|
|
current.backup_mode == BACKUP_MODE_DIFF_PTRACK)
|
2013-12-24 23:27:25 +03:00
|
|
|
{
|
|
|
|
pgBackup *prev_backup;
|
|
|
|
|
|
|
|
prev_backup = catalog_get_last_data_backup(backup_list, current.tli);
|
|
|
|
if (prev_backup == NULL)
|
2016-01-19 05:41:30 +02:00
|
|
|
elog(ERROR, "Valid full backup not found for "
|
2014-01-30 09:58:55 +03:00
|
|
|
"differential backup. Either create a full backup "
|
2016-01-14 09:36:39 +02:00
|
|
|
"or validate existing one.");
|
2013-12-24 23:27:25 +03:00
|
|
|
}
|
|
|
|
|
2012-05-18 11:54:36 +03:00
|
|
|
/* notify start of backup to PostgreSQL server */
|
|
|
|
time2iso(label, lengthof(label), current.start_time);
|
2014-01-27 06:02:56 +03:00
|
|
|
strncat(label, " with pg_arman", lengthof(label));
|
2012-05-18 11:54:36 +03:00
|
|
|
pg_start_backup(label, smooth_checkpoint, ¤t);
|
|
|
|
|
|
|
|
/* If backup_label does not exist in $PGDATA, stop taking backup */
|
|
|
|
snprintf(path, lengthof(path), "%s/backup_label", pgdata);
|
|
|
|
make_native_path(path);
|
2013-12-15 17:41:42 +03:00
|
|
|
if (!fileExists(path))
|
2013-09-09 12:00:13 +03:00
|
|
|
has_backup_label = false;
|
2013-12-15 17:41:42 +03:00
|
|
|
|
2013-12-26 15:13:48 +03:00
|
|
|
/* Leave if no backup file */
|
|
|
|
if (!has_backup_label)
|
2013-09-09 12:00:13 +03:00
|
|
|
{
|
2016-01-14 09:36:39 +02:00
|
|
|
elog(LOG, "backup_label does not exist, stopping backup");
|
2013-09-09 12:00:13 +03:00
|
|
|
pg_stop_backup(NULL);
|
2016-01-19 05:41:30 +02:00
|
|
|
elog(ERROR, "backup_label does not exist in PGDATA.");
|
2013-09-09 12:00:13 +03:00
|
|
|
}
|
2012-05-18 11:54:36 +03:00
|
|
|
|
|
|
|
/*
|
2013-12-15 17:41:42 +03:00
|
|
|
* List directories and symbolic links with the physical path to make
|
|
|
|
* mkdirs.sh, then sort them in order of path. Omit $PGDATA.
|
2012-05-18 11:54:36 +03:00
|
|
|
*/
|
2016-01-15 16:47:38 +02:00
|
|
|
backup_files_list = parray_new();
|
|
|
|
dir_list_file(backup_files_list, pgdata, NULL, false, false);
|
2012-05-18 11:54:36 +03:00
|
|
|
|
|
|
|
if (!check)
|
|
|
|
{
|
|
|
|
pgBackupGetPath(¤t, path, lengthof(path), MKDIRS_SH_FILE);
|
|
|
|
fp = fopen(path, "wt");
|
|
|
|
if (fp == NULL)
|
2016-01-19 05:41:30 +02:00
|
|
|
elog(ERROR, "can't open make directory script \"%s\": %s",
|
2012-05-18 11:54:36 +03:00
|
|
|
path, strerror(errno));
|
2016-01-15 16:47:38 +02:00
|
|
|
dir_print_mkdirs_sh(fp, backup_files_list, pgdata);
|
2012-05-18 11:54:36 +03:00
|
|
|
fclose(fp);
|
|
|
|
if (chmod(path, DIR_PERMISSION) == -1)
|
2016-01-19 05:41:30 +02:00
|
|
|
elog(ERROR, "can't change mode of \"%s\": %s", path,
|
2012-05-18 11:54:36 +03:00
|
|
|
strerror(errno));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* clear directory list */
|
2016-01-15 16:47:38 +02:00
|
|
|
parray_walk(backup_files_list, pgFileFree);
|
|
|
|
parray_free(backup_files_list);
|
|
|
|
backup_files_list = NULL;
|
2012-05-18 11:54:36 +03:00
|
|
|
|
|
|
|
/*
|
2014-01-30 09:58:55 +03:00
|
|
|
* To take differential backup, the file list of the last completed database
|
2012-05-18 11:54:36 +03:00
|
|
|
* backup is needed.
|
|
|
|
*/
|
2016-02-27 20:07:55 +02:00
|
|
|
if (current.backup_mode == BACKUP_MODE_DIFF_PAGE ||
|
|
|
|
current.backup_mode == BACKUP_MODE_DIFF_PTRACK)
|
2012-05-18 11:54:36 +03:00
|
|
|
{
|
|
|
|
/* find last completed database backup */
|
2013-12-24 23:27:25 +03:00
|
|
|
prev_backup = catalog_get_last_data_backup(backup_list, current.tli);
|
|
|
|
pgBackupGetPath(prev_backup, prev_file_txt, lengthof(prev_file_txt),
|
|
|
|
DATABASE_FILE_LIST);
|
|
|
|
prev_files = dir_read_file_list(pgdata, prev_file_txt);
|
2012-05-18 11:54:36 +03:00
|
|
|
|
2013-12-24 23:27:25 +03:00
|
|
|
/*
|
|
|
|
* Do backup only pages having larger LSN than previous backup.
|
|
|
|
*/
|
|
|
|
lsn = &prev_backup->start_lsn;
|
2016-01-14 09:36:39 +02:00
|
|
|
elog(LOG, "backup only the page that there was of the update from LSN(%X/%08X)",
|
2013-12-24 23:27:25 +03:00
|
|
|
(uint32) (*lsn >> 32), (uint32) *lsn);
|
2012-05-18 11:54:36 +03:00
|
|
|
}
|
|
|
|
|
2016-01-15 16:47:38 +02:00
|
|
|
/* initialize backup list */
|
|
|
|
backup_files_list = parray_new();
|
2012-05-18 11:54:36 +03:00
|
|
|
|
2016-01-15 08:26:05 +02:00
|
|
|
/* list files with the logical path. omit $PGDATA */
|
2016-01-15 16:47:38 +02:00
|
|
|
add_files(backup_files_list, pgdata, false, true);
|
2012-05-18 11:54:36 +03:00
|
|
|
|
2016-01-15 08:26:05 +02:00
|
|
|
/* backup files */
|
|
|
|
pgBackupGetPath(¤t, path, lengthof(path), DATABASE_DIR);
|
2016-01-15 16:47:38 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Build page mapping in differential mode. When using this mode, the
|
|
|
|
* list of blocks to be taken is known by scanning the WAL segments
|
|
|
|
* present in archives up to the point where start backup has begun.
|
|
|
|
* However, normally this segment is not yet available in the archives,
|
|
|
|
* leading to failures when building the page map. Hence before doing
|
|
|
|
* anything and in order to ensure that all the segments needed for the
|
|
|
|
* scan are here, for a switch of the last segment with pg_switch_xlog.
|
|
|
|
*/
|
|
|
|
if (current.backup_mode == BACKUP_MODE_DIFF_PAGE)
|
|
|
|
{
|
|
|
|
/* Enforce archiving of last segment and wait for it to be here */
|
|
|
|
wait_for_archive(¤t, "SELECT * FROM pg_switch_xlog()");
|
|
|
|
|
|
|
|
/* Now build the page map */
|
|
|
|
parray_qsort(backup_files_list, pgFileComparePathDesc);
|
|
|
|
elog(LOG, "extractPageMap");
|
|
|
|
elog(LOG, "current_tli:%X", current.tli);
|
|
|
|
elog(LOG, "prev_backup->start_lsn: %X/%X",
|
|
|
|
(uint32) (prev_backup->start_lsn >> 32),
|
|
|
|
(uint32) (prev_backup->start_lsn));
|
|
|
|
elog(LOG, "current.start_lsn: %X/%X",
|
|
|
|
(uint32) (current.start_lsn >> 32),
|
|
|
|
(uint32) (current.start_lsn));
|
|
|
|
extractPageMap(arclog_path, prev_backup->start_lsn, current.tli,
|
|
|
|
current.start_lsn);
|
|
|
|
}
|
|
|
|
|
2016-02-27 20:07:55 +02:00
|
|
|
if (current.backup_mode == BACKUP_MODE_DIFF_PTRACK)
|
|
|
|
{
|
|
|
|
parray_qsort(backup_files_list, pgFileComparePathDesc);
|
|
|
|
make_pagemap_from_ptrack(backup_files_list);
|
|
|
|
}
|
|
|
|
|
2016-02-29 19:23:48 +02:00
|
|
|
/* sort pathname ascending */
|
|
|
|
parray_qsort(backup_files_list, pgFileComparePath);
|
|
|
|
|
|
|
|
/* make dirs before backup */
|
|
|
|
for (i = 0; i < parray_num(backup_files_list); i++)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
struct stat buf;
|
|
|
|
pgFile *file = (pgFile *) parray_get(backup_files_list, i);
|
|
|
|
|
|
|
|
ret = stat(file->path, &buf);
|
|
|
|
if (ret == -1)
|
|
|
|
{
|
|
|
|
if (errno == ENOENT)
|
|
|
|
{
|
|
|
|
/* record as skipped file in file_xxx.txt */
|
|
|
|
file->write_size = BYTES_INVALID;
|
|
|
|
elog(LOG, "skip");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
elog(ERROR,
|
|
|
|
"can't stat backup mode. \"%s\": %s",
|
|
|
|
file->path, strerror(errno));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* if the entry was a directory, create it in the backup */
|
|
|
|
if (S_ISDIR(buf.st_mode))
|
|
|
|
{
|
|
|
|
char dirpath[MAXPGPATH];
|
|
|
|
if (verbose)
|
|
|
|
elog(LOG, "Make dir %s", file->path + strlen(pgdata) + 1);
|
|
|
|
join_path_components(dirpath, path, JoinPathEnd(file->path, pgdata));
|
|
|
|
if (!check)
|
|
|
|
dir_create_dir(dirpath, DIR_PERMISSION);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (num_threads < 1)
|
|
|
|
num_threads = 1;
|
|
|
|
|
|
|
|
for (i = 0; i < num_threads; i++)
|
|
|
|
{
|
|
|
|
backup_files_args *arg = pg_malloc(sizeof(backup_files_args));
|
|
|
|
arg->from_root = pgdata;
|
|
|
|
arg->to_root = path;
|
|
|
|
arg->files = backup_files_list;
|
|
|
|
arg->prev_files = prev_files;
|
|
|
|
arg->lsn = lsn;
|
|
|
|
arg->start_file_idx = i * (parray_num(backup_files_list)/num_threads);
|
|
|
|
if (i == num_threads - 1)
|
|
|
|
arg->end_file_idx = parray_num(backup_files_list);
|
|
|
|
else
|
|
|
|
arg->end_file_idx = (i + 1) * (parray_num(backup_files_list)/num_threads);
|
|
|
|
|
|
|
|
if (verbose)
|
|
|
|
elog(WARNING, "Start thread for start_file_idx:%i end_file_idx:%i num:%li",
|
|
|
|
arg->start_file_idx,
|
|
|
|
arg->end_file_idx,
|
|
|
|
parray_num(backup_files_list));
|
|
|
|
backup_threads_args[i] = arg;
|
|
|
|
pthread_create(&backup_threads[i], NULL, (void *(*)(void *)) backup_files, arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Wait theads */
|
|
|
|
for (i = 0; i < num_threads; i++)
|
|
|
|
{
|
|
|
|
pthread_join(backup_threads[i], NULL);
|
|
|
|
pg_free(backup_threads_args[i]);
|
|
|
|
}
|
2012-05-18 11:54:36 +03:00
|
|
|
|
2016-02-27 20:07:55 +02:00
|
|
|
/* Clear ptrack files after backup */
|
|
|
|
if (current.backup_mode == BACKUP_MODE_DIFF_PTRACK)
|
|
|
|
pg_ptrack_clear();
|
|
|
|
/* Notify end of backup */
|
2016-01-15 08:26:05 +02:00
|
|
|
pg_stop_backup(¤t);
|
2012-05-18 11:54:36 +03:00
|
|
|
|
2016-02-27 20:07:55 +02:00
|
|
|
/* Create file list */
|
2016-01-15 16:47:38 +02:00
|
|
|
create_file_list(backup_files_list, pgdata, DATABASE_FILE_LIST, NULL, false);
|
2013-12-09 21:21:07 +03:00
|
|
|
|
2016-02-27 20:07:55 +02:00
|
|
|
/* Print summary of size of backup mode files */
|
2016-01-15 16:47:38 +02:00
|
|
|
for (i = 0; i < parray_num(backup_files_list); i++)
|
2012-05-18 11:54:36 +03:00
|
|
|
{
|
2016-01-15 16:47:38 +02:00
|
|
|
pgFile *file = (pgFile *) parray_get(backup_files_list, i);
|
2012-05-18 11:54:36 +03:00
|
|
|
if (!S_ISREG(file->mode))
|
|
|
|
continue;
|
2014-01-09 22:11:27 +03:00
|
|
|
/*
|
|
|
|
* Count only the amount of data. For a full backup, the total
|
2014-01-30 09:58:55 +03:00
|
|
|
* amount of data written counts while for an differential
|
2014-01-09 22:11:27 +03:00
|
|
|
* backup only the data read counts.
|
|
|
|
*/
|
2016-02-27 20:07:55 +02:00
|
|
|
if (current.backup_mode == BACKUP_MODE_DIFF_PAGE ||
|
|
|
|
current.backup_mode == BACKUP_MODE_DIFF_PTRACK)
|
2014-01-09 22:11:27 +03:00
|
|
|
current.data_bytes += file->read_size;
|
|
|
|
else if (current.backup_mode == BACKUP_MODE_FULL)
|
|
|
|
current.data_bytes += file->size;
|
2012-05-18 11:54:36 +03:00
|
|
|
}
|
|
|
|
|
2016-01-14 09:36:39 +02:00
|
|
|
elog(LOG, "database backup completed(Backup: " INT64_FORMAT ")",
|
|
|
|
current.data_bytes);
|
|
|
|
elog(LOG, "========================================");
|
2012-05-18 11:54:36 +03:00
|
|
|
|
2016-01-15 16:47:38 +02:00
|
|
|
return backup_files_list;
|
2012-05-18 11:54:36 +03:00
|
|
|
}
|
|
|
|
|
2013-09-09 12:00:13 +03:00
|
|
|
|
2012-05-18 11:54:36 +03:00
|
|
|
int
|
2013-09-09 12:00:13 +03:00
|
|
|
do_backup(pgBackupOption bkupopt)
|
2012-05-18 11:54:36 +03:00
|
|
|
{
|
|
|
|
parray *backup_list;
|
|
|
|
parray *files_database;
|
|
|
|
int ret;
|
|
|
|
|
2014-01-24 16:36:31 +03:00
|
|
|
/* repack the necessary options */
|
2016-02-29 19:23:48 +02:00
|
|
|
int keep_data_generations = bkupopt.keep_data_generations;
|
|
|
|
int keep_data_days = bkupopt.keep_data_days;
|
2013-09-09 12:00:13 +03:00
|
|
|
|
2012-05-18 11:54:36 +03:00
|
|
|
/* PGDATA and BACKUP_MODE are always required */
|
|
|
|
if (pgdata == NULL)
|
2016-01-19 05:41:30 +02:00
|
|
|
elog(ERROR, "Required parameter not specified: PGDATA "
|
2016-01-14 09:36:39 +02:00
|
|
|
"(-D, --pgdata)");
|
2012-05-18 11:54:36 +03:00
|
|
|
|
2013-12-15 18:30:49 +03:00
|
|
|
/* A backup mode is needed */
|
2012-05-18 11:54:36 +03:00
|
|
|
if (current.backup_mode == BACKUP_MODE_INVALID)
|
2016-01-19 05:41:30 +02:00
|
|
|
elog(ERROR, "Required parameter not specified: BACKUP_MODE "
|
2016-01-14 09:36:39 +02:00
|
|
|
"(-b, --backup-mode)");
|
2012-05-18 11:54:36 +03:00
|
|
|
|
2013-12-15 18:30:49 +03:00
|
|
|
/* Confirm data block size and xlog block size are compatible */
|
2013-12-12 16:20:08 +03:00
|
|
|
check_server_version();
|
2012-05-18 11:54:36 +03:00
|
|
|
|
|
|
|
/* setup cleanup callback function */
|
|
|
|
in_backup = true;
|
|
|
|
|
|
|
|
/* show configuration actually used */
|
2016-01-14 09:36:39 +02:00
|
|
|
elog(LOG, "========================================");
|
|
|
|
elog(LOG, "backup start");
|
|
|
|
elog(LOG, "----------------------------------------");
|
2012-05-18 11:54:36 +03:00
|
|
|
if (verbose)
|
|
|
|
pgBackupWriteConfigSection(stderr, ¤t);
|
2016-01-14 09:36:39 +02:00
|
|
|
elog(LOG, "----------------------------------------");
|
2012-05-18 11:54:36 +03:00
|
|
|
|
|
|
|
/* get exclusive lock of backup catalog */
|
|
|
|
ret = catalog_lock();
|
|
|
|
if (ret == -1)
|
2016-01-19 05:41:30 +02:00
|
|
|
elog(ERROR, "cannot lock backup catalog");
|
2012-05-18 11:54:36 +03:00
|
|
|
else if (ret == 1)
|
2016-01-19 05:41:30 +02:00
|
|
|
elog(ERROR,
|
2016-01-14 09:36:39 +02:00
|
|
|
"another pg_arman is running, skipping this backup");
|
2012-05-18 11:54:36 +03:00
|
|
|
|
|
|
|
/* initialize backup result */
|
|
|
|
current.status = BACKUP_STATUS_RUNNING;
|
|
|
|
current.tli = 0; /* get from result of pg_start_backup() */
|
2013-12-09 21:21:07 +03:00
|
|
|
current.start_lsn = 0;
|
|
|
|
current.stop_lsn = 0;
|
2012-05-18 11:54:36 +03:00
|
|
|
current.start_time = time(NULL);
|
|
|
|
current.end_time = (time_t) 0;
|
2014-01-09 22:11:27 +03:00
|
|
|
current.data_bytes = BYTES_INVALID;
|
2012-05-18 11:54:36 +03:00
|
|
|
current.block_size = BLCKSZ;
|
|
|
|
current.wal_block_size = XLOG_BLCKSZ;
|
2013-09-09 12:00:13 +03:00
|
|
|
current.recovery_xid = 0;
|
|
|
|
current.recovery_time = (time_t) 0;
|
2012-05-18 11:54:36 +03:00
|
|
|
|
|
|
|
/* create backup directory and backup.ini */
|
|
|
|
if (!check)
|
|
|
|
{
|
|
|
|
if (pgBackupCreateDir(¤t))
|
2016-01-19 05:41:30 +02:00
|
|
|
elog(ERROR, "cannot create backup directory");
|
2012-05-18 11:54:36 +03:00
|
|
|
pgBackupWriteIni(¤t);
|
|
|
|
}
|
2016-01-14 09:36:39 +02:00
|
|
|
elog(LOG, "backup destination is initialized");
|
2012-05-18 11:54:36 +03:00
|
|
|
|
|
|
|
/* get list of backups already taken */
|
|
|
|
backup_list = catalog_get_backup_list(NULL);
|
2014-01-17 16:46:39 +03:00
|
|
|
if (!backup_list)
|
2016-01-19 05:41:30 +02:00
|
|
|
elog(ERROR, "cannot process any more");
|
2012-05-18 11:54:36 +03:00
|
|
|
|
|
|
|
/* set the error processing function for the backup process */
|
|
|
|
pgut_atexit_push(backup_cleanup, NULL);
|
|
|
|
|
|
|
|
/* backup data */
|
2013-09-09 12:00:13 +03:00
|
|
|
files_database = do_backup_database(backup_list, bkupopt);
|
2012-05-18 11:54:36 +03:00
|
|
|
pgut_atexit_pop(backup_cleanup, NULL);
|
2013-12-09 21:21:07 +03:00
|
|
|
|
2012-05-18 11:54:36 +03:00
|
|
|
/* update backup status to DONE */
|
|
|
|
current.end_time = time(NULL);
|
|
|
|
current.status = BACKUP_STATUS_DONE;
|
|
|
|
if (!check)
|
|
|
|
pgBackupWriteIni(¤t);
|
|
|
|
|
2013-12-15 18:30:49 +03:00
|
|
|
/* Calculate the total data read */
|
2012-05-18 11:54:36 +03:00
|
|
|
if (verbose)
|
|
|
|
{
|
2013-12-15 18:30:49 +03:00
|
|
|
int64 total_read = 0;
|
|
|
|
|
|
|
|
/* Database data */
|
|
|
|
if (current.backup_mode == BACKUP_MODE_FULL ||
|
2016-02-27 20:07:55 +02:00
|
|
|
current.backup_mode == BACKUP_MODE_DIFF_PAGE ||
|
|
|
|
current.backup_mode == BACKUP_MODE_DIFF_PTRACK)
|
2014-01-24 16:36:31 +03:00
|
|
|
total_read += current.data_bytes;
|
2013-12-15 18:30:49 +03:00
|
|
|
|
|
|
|
if (total_read == 0)
|
2016-01-14 09:36:39 +02:00
|
|
|
elog(LOG, "nothing to backup");
|
2012-05-18 11:54:36 +03:00
|
|
|
else
|
2016-01-14 09:36:39 +02:00
|
|
|
elog(LOG, "all backup completed(read: " INT64_FORMAT " write: "
|
|
|
|
INT64_FORMAT ")",
|
|
|
|
total_read, current.data_bytes);
|
|
|
|
elog(LOG, "========================================");
|
2012-05-18 11:54:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Delete old backup files after all backup operation. */
|
|
|
|
pgBackupDelete(keep_data_generations, keep_data_days);
|
|
|
|
|
|
|
|
/* Cleanup backup mode file list */
|
|
|
|
if (files_database)
|
|
|
|
parray_walk(files_database, pgFileFree);
|
|
|
|
parray_free(files_database);
|
|
|
|
|
|
|
|
/* release catalog lock */
|
|
|
|
catalog_unlock();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* get server version and confirm block sizes.
|
|
|
|
*/
|
2013-12-12 16:20:08 +03:00
|
|
|
void
|
|
|
|
check_server_version(void)
|
2012-05-18 11:54:36 +03:00
|
|
|
{
|
|
|
|
bool my_conn;
|
|
|
|
|
2013-12-12 16:20:08 +03:00
|
|
|
/* Leave if server has already been checked */
|
2012-05-18 11:54:36 +03:00
|
|
|
if (server_version > 0)
|
2013-12-12 16:20:08 +03:00
|
|
|
return;
|
2012-05-18 11:54:36 +03:00
|
|
|
|
|
|
|
my_conn = (connection == NULL);
|
|
|
|
|
|
|
|
if (my_conn)
|
|
|
|
reconnect();
|
|
|
|
|
|
|
|
/* confirm server version */
|
|
|
|
server_version = PQserverVersion(connection);
|
2013-12-12 16:20:08 +03:00
|
|
|
if (server_version != PG_VERSION_NUM)
|
2016-01-19 05:41:30 +02:00
|
|
|
elog(ERROR,
|
2016-01-14 09:36:39 +02:00
|
|
|
"server version is %d.%d.%d, must be %s or higher.",
|
2013-12-12 16:20:08 +03:00
|
|
|
server_version / 10000,
|
|
|
|
(server_version / 100) % 100,
|
|
|
|
server_version % 100, PG_MAJORVERSION);
|
2012-05-18 11:54:36 +03:00
|
|
|
|
|
|
|
/* confirm block_size (BLCKSZ) and wal_block_size (XLOG_BLCKSZ) */
|
|
|
|
confirm_block_size("block_size", BLCKSZ);
|
2013-12-12 16:20:08 +03:00
|
|
|
confirm_block_size("wal_block_size", XLOG_BLCKSZ);
|
2012-05-18 11:54:36 +03:00
|
|
|
|
|
|
|
if (my_conn)
|
|
|
|
disconnect();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
confirm_block_size(const char *name, int blcksz)
|
|
|
|
{
|
|
|
|
PGresult *res;
|
|
|
|
char *endp;
|
|
|
|
int block_size;
|
|
|
|
|
|
|
|
res = execute("SELECT current_setting($1)", 1, &name);
|
|
|
|
if (PQntuples(res) != 1 || PQnfields(res) != 1)
|
2016-01-19 05:41:30 +02:00
|
|
|
elog(ERROR, "cannot get %s: %s",
|
2012-05-18 11:54:36 +03:00
|
|
|
name, PQerrorMessage(connection));
|
|
|
|
block_size = strtol(PQgetvalue(res, 0, 0), &endp, 10);
|
|
|
|
PQclear(res);
|
|
|
|
if ((endp && *endp) || block_size != blcksz)
|
2016-01-19 05:41:30 +02:00
|
|
|
elog(ERROR,
|
2016-01-14 09:36:39 +02:00
|
|
|
"%s(%d) is not compatible(%d expected)",
|
2012-05-18 11:54:36 +03:00
|
|
|
name, block_size, blcksz);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Notify start of backup to PostgreSQL server.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
pg_start_backup(const char *label, bool smooth, pgBackup *backup)
|
|
|
|
{
|
|
|
|
PGresult *res;
|
|
|
|
const char *params[2];
|
|
|
|
|
|
|
|
params[0] = label;
|
|
|
|
|
|
|
|
reconnect();
|
2013-12-12 16:20:08 +03:00
|
|
|
|
|
|
|
/* 2nd argument is 'fast'*/
|
|
|
|
params[1] = smooth ? "false" : "true";
|
2013-12-12 21:55:39 +03:00
|
|
|
res = execute("SELECT pg_start_backup($1, $2)", 2, params);
|
2013-12-12 16:20:08 +03:00
|
|
|
|
2012-05-18 11:54:36 +03:00
|
|
|
if (backup != NULL)
|
2013-12-12 21:55:39 +03:00
|
|
|
get_lsn(res, &backup->start_lsn);
|
2012-05-18 11:54:36 +03:00
|
|
|
PQclear(res);
|
|
|
|
disconnect();
|
|
|
|
}
|
|
|
|
|
2016-02-27 20:07:55 +02:00
|
|
|
static void
|
|
|
|
pg_ptrack_clear(void)
|
|
|
|
{
|
|
|
|
PGresult *res;
|
|
|
|
|
|
|
|
reconnect();
|
|
|
|
res = execute("select pg_ptrack_clear()", 0, NULL);
|
|
|
|
PQclear(res);
|
|
|
|
disconnect();
|
|
|
|
}
|
|
|
|
|
2012-05-18 11:54:36 +03:00
|
|
|
static void
|
|
|
|
wait_for_archive(pgBackup *backup, const char *sql)
|
|
|
|
{
|
|
|
|
PGresult *res;
|
|
|
|
char ready_path[MAXPGPATH];
|
2013-12-12 21:55:39 +03:00
|
|
|
char file_name[MAXFNAMELEN];
|
2012-05-18 11:54:36 +03:00
|
|
|
int try_count;
|
2013-12-12 21:55:39 +03:00
|
|
|
XLogRecPtr lsn;
|
|
|
|
TimeLineID tli;
|
2016-01-13 09:28:51 +02:00
|
|
|
XLogSegNo targetSegNo;
|
2012-05-18 11:54:36 +03:00
|
|
|
|
|
|
|
reconnect();
|
|
|
|
res = execute(sql, 0, NULL);
|
2013-12-12 21:55:39 +03:00
|
|
|
|
|
|
|
/* Get LSN from execution result */
|
|
|
|
get_lsn(res, &lsn);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Enforce TLI obtention if backup is not present as this code
|
|
|
|
* path can be taken as a callback at exit.
|
|
|
|
*/
|
2013-12-24 22:36:07 +03:00
|
|
|
tli = get_current_timeline();
|
2013-12-12 21:55:39 +03:00
|
|
|
|
|
|
|
/* Fill in fields if backup exists */
|
2012-05-18 11:54:36 +03:00
|
|
|
if (backup != NULL)
|
|
|
|
{
|
2013-12-24 22:36:07 +03:00
|
|
|
backup->tli = tli;
|
2013-12-12 21:55:39 +03:00
|
|
|
backup->stop_lsn = lsn;
|
2016-01-14 09:36:39 +02:00
|
|
|
elog(LOG, "%s(): tli=%X lsn=%X/%08X",
|
2013-12-09 21:21:07 +03:00
|
|
|
__FUNCTION__, backup->tli,
|
|
|
|
(uint32) (backup->stop_lsn >> 32),
|
|
|
|
(uint32) backup->stop_lsn);
|
2012-05-18 11:54:36 +03:00
|
|
|
}
|
|
|
|
|
2013-12-12 21:55:39 +03:00
|
|
|
/* As well as WAL file name */
|
2016-01-13 09:28:51 +02:00
|
|
|
XLByteToSeg(lsn, targetSegNo);
|
2016-01-15 06:37:20 +02:00
|
|
|
XLogFileName(file_name, tli, targetSegNo);
|
2013-12-12 21:55:39 +03:00
|
|
|
|
2012-05-18 11:54:36 +03:00
|
|
|
snprintf(ready_path, lengthof(ready_path),
|
2013-12-12 21:55:39 +03:00
|
|
|
"%s/pg_xlog/archive_status/%s.ready", pgdata,
|
|
|
|
file_name);
|
2016-01-14 09:36:39 +02:00
|
|
|
elog(LOG, "%s() wait for %s", __FUNCTION__, ready_path);
|
2012-05-18 11:54:36 +03:00
|
|
|
|
|
|
|
PQclear(res);
|
|
|
|
|
|
|
|
res = execute(TXID_CURRENT_SQL, 0, NULL);
|
2016-01-14 09:36:39 +02:00
|
|
|
if (backup != NULL)
|
|
|
|
{
|
2012-05-18 11:54:36 +03:00
|
|
|
get_xid(res, &backup->recovery_xid);
|
|
|
|
backup->recovery_time = time(NULL);
|
|
|
|
}
|
|
|
|
disconnect();
|
|
|
|
|
|
|
|
/* wait until switched WAL is archived */
|
|
|
|
try_count = 0;
|
|
|
|
while (fileExists(ready_path))
|
|
|
|
{
|
|
|
|
sleep(1);
|
|
|
|
if (interrupted)
|
2016-01-19 05:41:30 +02:00
|
|
|
elog(ERROR,
|
2016-01-14 09:36:39 +02:00
|
|
|
"interrupted during waiting for WAL archiving");
|
2012-05-18 11:54:36 +03:00
|
|
|
try_count++;
|
|
|
|
if (try_count > TIMEOUT_ARCHIVE)
|
2016-01-19 05:41:30 +02:00
|
|
|
elog(ERROR,
|
2016-01-14 09:36:39 +02:00
|
|
|
"switched WAL could not be archived in %d seconds",
|
2012-05-18 11:54:36 +03:00
|
|
|
TIMEOUT_ARCHIVE);
|
|
|
|
}
|
|
|
|
elog(LOG, "%s() .ready deleted in %d try", __FUNCTION__, try_count);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Notify end of backup to PostgreSQL server.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
pg_stop_backup(pgBackup *backup)
|
|
|
|
{
|
|
|
|
wait_for_archive(backup,
|
2013-12-12 21:55:39 +03:00
|
|
|
"SELECT * FROM pg_stop_backup()");
|
2012-05-18 11:54:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-12-26 15:13:48 +03:00
|
|
|
/*
|
|
|
|
* Check if node is a standby by looking at the presence of
|
|
|
|
* recovery.conf.
|
|
|
|
*/
|
|
|
|
static bool
|
|
|
|
pg_is_standby(void)
|
|
|
|
{
|
|
|
|
char path[MAXPGPATH];
|
|
|
|
snprintf(path, lengthof(path), "%s/recovery.conf", pgdata);
|
|
|
|
make_native_path(path);
|
|
|
|
return fileExists(path);
|
|
|
|
}
|
|
|
|
|
2012-05-18 11:54:36 +03:00
|
|
|
/*
|
2013-12-12 21:55:39 +03:00
|
|
|
* Get LSN from result of pg_start_backup() or pg_stop_backup().
|
2012-05-18 11:54:36 +03:00
|
|
|
*/
|
|
|
|
static void
|
2013-12-12 21:55:39 +03:00
|
|
|
get_lsn(PGresult *res, XLogRecPtr *lsn)
|
2012-05-18 11:54:36 +03:00
|
|
|
{
|
2013-12-12 21:55:39 +03:00
|
|
|
uint32 xlogid;
|
|
|
|
uint32 xrecoff;
|
|
|
|
|
|
|
|
if (res == NULL || PQntuples(res) != 1 || PQnfields(res) != 1)
|
2016-01-19 05:41:30 +02:00
|
|
|
elog(ERROR,
|
2016-01-14 09:36:39 +02:00
|
|
|
"result of backup command is invalid: %s",
|
2012-05-18 11:54:36 +03:00
|
|
|
PQerrorMessage(connection));
|
|
|
|
|
2013-12-12 21:55:39 +03:00
|
|
|
/*
|
|
|
|
* Extract timeline and LSN from results of pg_stop_backup()
|
|
|
|
* and friends.
|
|
|
|
*/
|
|
|
|
XLogDataFromLSN(PQgetvalue(res, 0, 0), &xlogid, &xrecoff);
|
|
|
|
|
|
|
|
/* Calculate LSN */
|
|
|
|
*lsn = (XLogRecPtr) ((uint64) xlogid << 32) | xrecoff;
|
2012-05-18 11:54:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get XID from result of txid_current() after pg_stop_backup().
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
get_xid(PGresult *res, uint32 *xid)
|
|
|
|
{
|
2016-01-14 09:36:39 +02:00
|
|
|
if (res == NULL || PQntuples(res) != 1 || PQnfields(res) != 1)
|
2016-01-19 05:41:30 +02:00
|
|
|
elog(ERROR,
|
2016-01-14 09:36:39 +02:00
|
|
|
"result of txid_current() is invalid: %s",
|
2012-05-18 11:54:36 +03:00
|
|
|
PQerrorMessage(connection));
|
|
|
|
|
2016-01-14 09:36:39 +02:00
|
|
|
if (sscanf(PQgetvalue(res, 0, 0), "%u", xid) != 1)
|
2012-05-18 11:54:36 +03:00
|
|
|
{
|
2016-01-19 05:41:30 +02:00
|
|
|
elog(ERROR,
|
2016-01-14 09:36:39 +02:00
|
|
|
"result of txid_current() is invalid: %s",
|
2012-05-18 11:54:36 +03:00
|
|
|
PQerrorMessage(connection));
|
|
|
|
}
|
|
|
|
elog(LOG, "%s():%s", __FUNCTION__, PQgetvalue(res, 0, 0));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return true if the path is a existing regular file.
|
|
|
|
*/
|
2013-09-09 12:00:13 +03:00
|
|
|
bool
|
2012-05-18 11:54:36 +03:00
|
|
|
fileExists(const char *path)
|
|
|
|
{
|
|
|
|
struct stat buf;
|
|
|
|
|
|
|
|
if (stat(path, &buf) == -1 && errno == ENOENT)
|
|
|
|
return false;
|
|
|
|
else if (!S_ISREG(buf.st_mode))
|
|
|
|
return false;
|
|
|
|
else
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Notify end of backup to server when "backup_label" is in the root directory
|
|
|
|
* of the DB cluster.
|
|
|
|
* Also update backup status to ERROR when the backup is not finished.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
backup_cleanup(bool fatal, void *userdata)
|
|
|
|
{
|
|
|
|
char path[MAXPGPATH];
|
|
|
|
|
|
|
|
if (!in_backup)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* If backup_label exist in $PGDATA, notify stop of backup to PostgreSQL */
|
|
|
|
snprintf(path, lengthof(path), "%s/backup_label", pgdata);
|
|
|
|
make_native_path(path);
|
|
|
|
if (fileExists(path))
|
|
|
|
{
|
2016-01-14 09:36:39 +02:00
|
|
|
elog(LOG, "backup_label exists, stop backup");
|
2012-05-18 11:54:36 +03:00
|
|
|
pg_stop_backup(NULL); /* don't care stop_lsn on error case */
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Update status of backup.ini to ERROR.
|
|
|
|
* end_time != 0 means backup finished
|
|
|
|
*/
|
|
|
|
if (current.status == BACKUP_STATUS_RUNNING && current.end_time == 0)
|
|
|
|
{
|
2016-01-14 09:36:39 +02:00
|
|
|
elog(LOG, "backup is running, update its status to ERROR");
|
2012-05-18 11:54:36 +03:00
|
|
|
current.end_time = time(NULL);
|
|
|
|
current.status = BACKUP_STATUS_ERROR;
|
|
|
|
pgBackupWriteIni(¤t);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-30 09:58:55 +03:00
|
|
|
/*
|
|
|
|
* Take differential backup at page level.
|
|
|
|
*/
|
2012-05-18 11:54:36 +03:00
|
|
|
static void
|
2016-02-29 19:23:48 +02:00
|
|
|
backup_files(void *arg)
|
2012-05-18 11:54:36 +03:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
struct timeval tv;
|
|
|
|
|
2016-02-29 19:23:48 +02:00
|
|
|
backup_files_args *arguments = (backup_files_args *) arg;
|
2012-05-18 11:54:36 +03:00
|
|
|
|
|
|
|
gettimeofday(&tv, NULL);
|
|
|
|
|
|
|
|
/* backup a file or create a directory */
|
2016-02-29 19:23:48 +02:00
|
|
|
for (i = arguments->start_file_idx; i < arguments->end_file_idx; i++)
|
2012-05-18 11:54:36 +03:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
struct stat buf;
|
|
|
|
|
2016-02-29 19:23:48 +02:00
|
|
|
pgFile *file = (pgFile *) parray_get(arguments->files, i);
|
2012-05-18 11:54:36 +03:00
|
|
|
|
|
|
|
/* If current time is rewinded, abort this backup. */
|
2016-01-14 09:36:39 +02:00
|
|
|
if (tv.tv_sec < file->mtime)
|
2016-01-19 05:41:30 +02:00
|
|
|
elog(ERROR,
|
2016-01-14 09:36:39 +02:00
|
|
|
"current time may be rewound. Please retry with full backup mode.");
|
2012-05-18 11:54:36 +03:00
|
|
|
|
|
|
|
/* check for interrupt */
|
|
|
|
if (interrupted)
|
2016-01-19 05:41:30 +02:00
|
|
|
elog(ERROR, "interrupted during backup");
|
2012-05-18 11:54:36 +03:00
|
|
|
|
|
|
|
/* print progress in verbose mode */
|
|
|
|
if (verbose)
|
2016-02-29 19:23:48 +02:00
|
|
|
elog(LOG, "(%d/%lu) %s", i + 1, (unsigned long) parray_num(arguments->files),
|
|
|
|
file->path + strlen(arguments->from_root) + 1);
|
2012-05-18 11:54:36 +03:00
|
|
|
|
|
|
|
/* stat file to get file type, size and modify timestamp */
|
|
|
|
ret = stat(file->path, &buf);
|
|
|
|
if (ret == -1)
|
|
|
|
{
|
|
|
|
if (errno == ENOENT)
|
|
|
|
{
|
|
|
|
/* record as skipped file in file_xxx.txt */
|
|
|
|
file->write_size = BYTES_INVALID;
|
2016-01-14 09:36:39 +02:00
|
|
|
elog(LOG, "skip");
|
2012-05-18 11:54:36 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-01-19 05:41:30 +02:00
|
|
|
elog(ERROR,
|
2016-01-14 09:36:39 +02:00
|
|
|
"can't stat backup mode. \"%s\": %s",
|
2012-05-18 11:54:36 +03:00
|
|
|
file->path, strerror(errno));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-29 19:23:48 +02:00
|
|
|
/* skip dir because make before */
|
2012-05-18 11:54:36 +03:00
|
|
|
if (S_ISDIR(buf.st_mode))
|
|
|
|
{
|
2016-02-29 19:23:48 +02:00
|
|
|
continue;
|
2012-05-18 11:54:36 +03:00
|
|
|
}
|
|
|
|
else if (S_ISREG(buf.st_mode))
|
|
|
|
{
|
|
|
|
/* skip files which have not been modified since last backup */
|
2016-02-29 19:23:48 +02:00
|
|
|
if (arguments->prev_files)
|
2012-05-18 11:54:36 +03:00
|
|
|
{
|
|
|
|
pgFile *prev_file = NULL;
|
2016-02-29 19:23:48 +02:00
|
|
|
pgFile **p = (pgFile **) parray_bsearch(arguments->prev_files, file, pgFileComparePath);
|
|
|
|
if (p)
|
|
|
|
prev_file = *p;
|
2012-05-18 11:54:36 +03:00
|
|
|
|
|
|
|
if (prev_file && prev_file->mtime == file->mtime)
|
|
|
|
{
|
|
|
|
/* record as skipped file in file_xxx.txt */
|
|
|
|
file->write_size = BYTES_INVALID;
|
2016-01-14 09:36:39 +02:00
|
|
|
elog(LOG, "skip");
|
2012-05-18 11:54:36 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We will wait until the next second of mtime so that backup
|
|
|
|
* file should contain all modifications at the clock of mtime.
|
|
|
|
* timer resolution of ext3 file system is one second.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (tv.tv_sec == file->mtime)
|
|
|
|
{
|
|
|
|
/* update time and recheck */
|
|
|
|
gettimeofday(&tv, NULL);
|
|
|
|
while (tv.tv_sec <= file->mtime)
|
|
|
|
{
|
|
|
|
usleep(1000000 - tv.tv_usec);
|
|
|
|
gettimeofday(&tv, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* copy the file into backup */
|
|
|
|
if (!(file->is_datafile
|
2016-02-29 19:23:48 +02:00
|
|
|
? backup_data_file(arguments->from_root, arguments->to_root, file, arguments->lsn)
|
|
|
|
: copy_file(arguments->from_root, arguments->to_root, file)))
|
2012-05-18 11:54:36 +03:00
|
|
|
{
|
|
|
|
/* record as skipped file in file_xxx.txt */
|
|
|
|
file->write_size = BYTES_INVALID;
|
2016-01-14 09:36:39 +02:00
|
|
|
elog(LOG, "skip");
|
2012-05-18 11:54:36 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2016-01-14 09:36:39 +02:00
|
|
|
elog(LOG, "copied %lu", (unsigned long) file->write_size);
|
2012-05-18 11:54:36 +03:00
|
|
|
}
|
|
|
|
else
|
2016-01-14 09:36:39 +02:00
|
|
|
elog(LOG, "unexpected file type %d", buf.st_mode);
|
2012-05-18 11:54:36 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Append files to the backup list array.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
add_files(parray *files, const char *root, bool add_root, bool is_pgdata)
|
|
|
|
{
|
|
|
|
parray *list_file;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
list_file = parray_new();
|
|
|
|
|
|
|
|
/* list files with the logical path. omit $PGDATA */
|
|
|
|
dir_list_file(list_file, root, pgdata_exclude, true, add_root);
|
|
|
|
|
|
|
|
/* mark files that are possible datafile as 'datafile' */
|
|
|
|
for (i = 0; i < parray_num(list_file); i++)
|
|
|
|
{
|
|
|
|
pgFile *file = (pgFile *) parray_get(list_file, i);
|
|
|
|
char *relative;
|
|
|
|
char *fname;
|
2016-02-27 20:07:55 +02:00
|
|
|
int path_len;
|
2012-05-18 11:54:36 +03:00
|
|
|
|
|
|
|
/* data file must be a regular file */
|
|
|
|
if (!S_ISREG(file->mode))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* data files are under "base", "global", or "pg_tblspc" */
|
|
|
|
relative = file->path + strlen(root) + 1;
|
|
|
|
if (is_pgdata &&
|
|
|
|
!path_is_prefix_of_path("base", relative) &&
|
|
|
|
!path_is_prefix_of_path("global", relative) &&
|
|
|
|
!path_is_prefix_of_path("pg_tblspc", relative))
|
|
|
|
continue;
|
|
|
|
|
2016-02-27 20:07:55 +02:00
|
|
|
path_len = strlen(file->path);
|
|
|
|
if (path_len > 6 && strncmp(file->path+(path_len-6), "ptrack", 6) == 0)
|
|
|
|
{
|
|
|
|
pgFile tmp_file;
|
|
|
|
pgFile *search_file;
|
|
|
|
//elog(WARNING, "Remove ptrack file from backup %s", file->path);
|
|
|
|
tmp_file.path = pg_strdup(file->path);
|
|
|
|
tmp_file.path[path_len-7] = '\0';
|
|
|
|
search_file = *(pgFile **) parray_bsearch(list_file, &tmp_file, pgFileComparePath);
|
|
|
|
if (search_file != NULL)
|
|
|
|
{
|
|
|
|
//elog(WARNING, "Finded main fork for ptrak:%s", search_file->path);
|
|
|
|
search_file->ptrack_path = pg_strdup(file->path);
|
|
|
|
}
|
|
|
|
free(tmp_file.path);
|
|
|
|
pgFileFree(file);
|
|
|
|
parray_remove(list_file, i);
|
|
|
|
i--;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2012-05-18 11:54:36 +03:00
|
|
|
/* name of data file start with digit */
|
|
|
|
fname = last_dir_separator(relative);
|
|
|
|
if (fname == NULL)
|
|
|
|
fname = relative;
|
|
|
|
else
|
|
|
|
fname++;
|
|
|
|
if (!isdigit(fname[0]))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
file->is_datafile = true;
|
|
|
|
}
|
|
|
|
parray_concat(files, list_file);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2014-01-13 07:04:43 +03:00
|
|
|
* Output the list of files to backup catalog
|
2012-05-18 11:54:36 +03:00
|
|
|
*/
|
|
|
|
static void
|
2014-01-13 07:04:43 +03:00
|
|
|
create_file_list(parray *files,
|
|
|
|
const char *root,
|
|
|
|
const char *subdir,
|
|
|
|
const char *prefix,
|
|
|
|
bool is_append)
|
2012-05-18 11:54:36 +03:00
|
|
|
{
|
|
|
|
FILE *fp;
|
|
|
|
char path[MAXPGPATH];
|
|
|
|
|
|
|
|
if (!check)
|
|
|
|
{
|
|
|
|
/* output path is '$BACKUP_PATH/file_database.txt' */
|
2014-01-13 07:04:43 +03:00
|
|
|
pgBackupGetPath(¤t, path, lengthof(path), subdir);
|
2012-05-18 11:54:36 +03:00
|
|
|
fp = fopen(path, is_append ? "at" : "wt");
|
|
|
|
if (fp == NULL)
|
2016-01-19 05:41:30 +02:00
|
|
|
elog(ERROR, "can't open file list \"%s\": %s", path,
|
2012-05-18 11:54:36 +03:00
|
|
|
strerror(errno));
|
|
|
|
dir_print_file_list(fp, files, root, prefix);
|
|
|
|
fclose(fp);
|
|
|
|
}
|
|
|
|
}
|
2016-01-15 16:47:38 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* A helper function to create the path of a relation file and segment.
|
|
|
|
*
|
|
|
|
* The returned path is palloc'd
|
|
|
|
*/
|
|
|
|
static char *
|
|
|
|
datasegpath(RelFileNode rnode, ForkNumber forknum, BlockNumber segno)
|
|
|
|
{
|
|
|
|
char *path;
|
|
|
|
char *segpath;
|
|
|
|
|
|
|
|
path = relpathperm(rnode, forknum);
|
|
|
|
if (segno > 0)
|
|
|
|
{
|
|
|
|
segpath = psprintf("%s.%u", path, segno);
|
|
|
|
pfree(path);
|
|
|
|
return segpath;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This routine gets called while reading WAL segments from the WAL archive,
|
|
|
|
* for every block that have changed in the target system. It makes note of
|
|
|
|
* all the changed blocks in the pagemap of the file and adds them in the
|
|
|
|
* things to track for the backup.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
process_block_change(ForkNumber forknum, RelFileNode rnode, BlockNumber blkno)
|
|
|
|
{
|
|
|
|
char *path;
|
|
|
|
char *rel_path;
|
|
|
|
BlockNumber blkno_inseg;
|
|
|
|
int segno;
|
|
|
|
pgFile *file_item = NULL;
|
|
|
|
int j;
|
|
|
|
|
|
|
|
segno = blkno / RELSEG_SIZE;
|
|
|
|
blkno_inseg = blkno % RELSEG_SIZE;
|
|
|
|
|
|
|
|
rel_path = datasegpath(rnode, forknum, segno);
|
|
|
|
path = pg_malloc(strlen(rel_path) + strlen(pgdata) + 2);
|
|
|
|
sprintf(path, "%s/%s", pgdata, rel_path);
|
|
|
|
|
|
|
|
for (j = 0; j < parray_num(backup_files_list); j++)
|
|
|
|
{
|
|
|
|
pgFile *p = (pgFile *) parray_get(backup_files_list, j);
|
|
|
|
|
|
|
|
if (strcmp(p->path, path) == 0)
|
|
|
|
{
|
|
|
|
file_item = p;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If we don't have any record of this file in the file map, it means
|
|
|
|
* that it's a relation that did not have much activity since the last
|
|
|
|
* backup. We can safely ignore it. If it is a new relation file, the
|
|
|
|
* backup would simply copy it as-is.
|
|
|
|
*/
|
|
|
|
if (file_item)
|
|
|
|
datapagemap_add(&file_item->pagemap, blkno_inseg);
|
|
|
|
|
|
|
|
pg_free(path);
|
|
|
|
pg_free(rel_path);
|
|
|
|
}
|
2016-02-27 20:07:55 +02:00
|
|
|
|
|
|
|
void make_pagemap_from_ptrack(parray *files)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < parray_num(files); i++)
|
|
|
|
{
|
|
|
|
pgFile *p = (pgFile *) parray_get(files, i);
|
|
|
|
if (p->ptrack_path != NULL)
|
|
|
|
{
|
|
|
|
DataPage page;
|
|
|
|
struct stat st;
|
|
|
|
FILE *ptrack_file = fopen(p->ptrack_path, "r");
|
|
|
|
if (ptrack_file == NULL)
|
|
|
|
{
|
|
|
|
elog(ERROR, "cannot open ptrack file \"%s\": %s", p->ptrack_path,
|
|
|
|
strerror(errno));
|
|
|
|
}
|
|
|
|
|
|
|
|
fstat(fileno(ptrack_file), &st);
|
|
|
|
p->pagemap.bitmapsize = st.st_size-(st.st_size/BLCKSZ)*MAXALIGN(SizeOfPageHeaderData);
|
|
|
|
p->pagemap.bitmap = pg_malloc(p->pagemap.bitmapsize);
|
2016-02-28 01:10:27 +02:00
|
|
|
|
|
|
|
elog(LOG, "Start copy bitmap from ptrack:%s size:%i", p->ptrack_path, p->pagemap.bitmapsize);
|
|
|
|
while(fread(page.data, BLCKSZ, 1, ptrack_file) == 1)
|
2016-02-27 20:07:55 +02:00
|
|
|
{
|
|
|
|
char *map = PageGetContents(page.data);
|
2016-02-28 01:10:27 +02:00
|
|
|
memcpy(p->pagemap.bitmap, map, BLCKSZ - MAXALIGN(SizeOfPageHeaderData));
|
2016-02-27 20:07:55 +02:00
|
|
|
}
|
|
|
|
fclose(ptrack_file);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|