mirror of
https://github.com/postgres/postgres.git
synced 2026-04-22 22:59:54 -04:00
directory and not just the individual files. Back-patch to 8.1 -- before that we just called "cp -r" and never fsynced anything anyways.
189 lines
4.5 KiB
C
189 lines
4.5 KiB
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* copydir.c
|
|
* copies a directory
|
|
*
|
|
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* While "xcopy /e /i /q" works fine for copying directories, on Windows XP
|
|
* it requires a Window handle which prevents it from working when invoked
|
|
* as a service.
|
|
*
|
|
* IDENTIFICATION
|
|
* $PostgreSQL: pgsql/src/port/copydir.c,v 1.16.2.2 2010/02/14 17:50:34 stark Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
#include "postgres.h"
|
|
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
#include <sys/stat.h>
|
|
|
|
#include "storage/fd.h"
|
|
|
|
/*
|
|
* On Windows, call non-macro versions of palloc; we can't reference
|
|
* CurrentMemoryContext in this file because of DLLIMPORT conflict.
|
|
*/
|
|
#if defined(WIN32) || defined(__CYGWIN__)
|
|
#undef palloc
|
|
#undef pstrdup
|
|
#define palloc(sz) pgport_palloc(sz)
|
|
#define pstrdup(str) pgport_pstrdup(str)
|
|
#endif
|
|
|
|
|
|
static void copy_file(char *fromfile, char *tofile);
|
|
|
|
|
|
/*
|
|
* copydir: copy a directory
|
|
*
|
|
* If recurse is false, subdirectories are ignored. Anything that's not
|
|
* a directory or a regular file is ignored.
|
|
*/
|
|
void
|
|
copydir(char *fromdir, char *todir, bool recurse)
|
|
{
|
|
DIR *xldir;
|
|
struct dirent *xlde;
|
|
int dirfd;
|
|
char fromfile[MAXPGPATH];
|
|
char tofile[MAXPGPATH];
|
|
|
|
if (mkdir(todir, S_IRUSR | S_IWUSR | S_IXUSR) != 0)
|
|
ereport(ERROR,
|
|
(errcode_for_file_access(),
|
|
errmsg("could not create directory \"%s\": %m", todir)));
|
|
|
|
xldir = AllocateDir(fromdir);
|
|
if (xldir == NULL)
|
|
ereport(ERROR,
|
|
(errcode_for_file_access(),
|
|
errmsg("could not open directory \"%s\": %m", fromdir)));
|
|
|
|
while ((xlde = ReadDir(xldir, fromdir)) != NULL)
|
|
{
|
|
struct stat fst;
|
|
|
|
if (strcmp(xlde->d_name, ".") == 0 ||
|
|
strcmp(xlde->d_name, "..") == 0)
|
|
continue;
|
|
|
|
snprintf(fromfile, MAXPGPATH, "%s/%s", fromdir, xlde->d_name);
|
|
snprintf(tofile, MAXPGPATH, "%s/%s", todir, xlde->d_name);
|
|
|
|
if (stat(fromfile, &fst) < 0)
|
|
ereport(ERROR,
|
|
(errcode_for_file_access(),
|
|
errmsg("could not stat file \"%s\": %m", fromfile)));
|
|
|
|
if (S_ISDIR(fst.st_mode))
|
|
{
|
|
/* recurse to handle subdirectories */
|
|
if (recurse)
|
|
copydir(fromfile, tofile, true);
|
|
}
|
|
else if (S_ISREG(fst.st_mode))
|
|
copy_file(fromfile, tofile);
|
|
}
|
|
|
|
FreeDir(xldir);
|
|
|
|
/*
|
|
* fsync the directory to make sure not just the data but also the
|
|
* new directory file entries have reached the disk. While needed
|
|
* by most filesystems, the window got bigger with newer ones like
|
|
* ext4.
|
|
*/
|
|
dirfd = BasicOpenFile(todir,
|
|
O_RDONLY | PG_BINARY,
|
|
S_IRUSR | S_IWUSR);
|
|
if(dirfd == -1)
|
|
ereport(ERROR,
|
|
(errcode_for_file_access(),
|
|
errmsg("could not open directory for fsync \"%s\": %m", todir)));
|
|
|
|
if(pg_fsync(dirfd) == -1)
|
|
ereport(ERROR,
|
|
(errcode_for_file_access(),
|
|
errmsg("could not fsync directory \"%s\": %m", todir)));
|
|
close(dirfd);
|
|
}
|
|
|
|
/*
|
|
* copy one file
|
|
*/
|
|
static void
|
|
copy_file(char *fromfile, char *tofile)
|
|
{
|
|
char *buffer;
|
|
int srcfd;
|
|
int dstfd;
|
|
int nbytes;
|
|
|
|
/* Use palloc to ensure we get a maxaligned buffer */
|
|
#define COPY_BUF_SIZE (8 * BLCKSZ)
|
|
|
|
buffer = palloc(COPY_BUF_SIZE);
|
|
|
|
/*
|
|
* Open the files
|
|
*/
|
|
srcfd = BasicOpenFile(fromfile, O_RDONLY | PG_BINARY, 0);
|
|
if (srcfd < 0)
|
|
ereport(ERROR,
|
|
(errcode_for_file_access(),
|
|
errmsg("could not open file \"%s\": %m", fromfile)));
|
|
|
|
dstfd = BasicOpenFile(tofile, O_RDWR | O_CREAT | O_EXCL | PG_BINARY,
|
|
S_IRUSR | S_IWUSR);
|
|
if (dstfd < 0)
|
|
ereport(ERROR,
|
|
(errcode_for_file_access(),
|
|
errmsg("could not create file \"%s\": %m", tofile)));
|
|
|
|
/*
|
|
* Do the data copying.
|
|
*/
|
|
for (;;)
|
|
{
|
|
nbytes = read(srcfd, buffer, COPY_BUF_SIZE);
|
|
if (nbytes < 0)
|
|
ereport(ERROR,
|
|
(errcode_for_file_access(),
|
|
errmsg("could not read file \"%s\": %m", fromfile)));
|
|
if (nbytes == 0)
|
|
break;
|
|
errno = 0;
|
|
if ((int) write(dstfd, buffer, nbytes) != nbytes)
|
|
{
|
|
/* if write didn't set errno, assume problem is no disk space */
|
|
if (errno == 0)
|
|
errno = ENOSPC;
|
|
ereport(ERROR,
|
|
(errcode_for_file_access(),
|
|
errmsg("could not write to file \"%s\": %m", tofile)));
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Be paranoid here to ensure we catch problems.
|
|
*/
|
|
if (pg_fsync(dstfd) != 0)
|
|
ereport(ERROR,
|
|
(errcode_for_file_access(),
|
|
errmsg("could not fsync file \"%s\": %m", tofile)));
|
|
|
|
if (close(dstfd))
|
|
ereport(ERROR,
|
|
(errcode_for_file_access(),
|
|
errmsg("could not close file \"%s\": %m", tofile)));
|
|
|
|
close(srcfd);
|
|
|
|
pfree(buffer);
|
|
}
|