1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
|
/*
* Copy entire files.
*
* Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* src/bin/pg_combinebackup/copy_file.h
*
*-------------------------------------------------------------------------
*/
#include "postgres_fe.h"
#ifdef HAVE_COPYFILE_H
#include <copyfile.h>
#endif
#include <fcntl.h>
#include <sys/stat.h>
#include <unistd.h>
#include "common/file_perm.h"
#include "common/logging.h"
#include "copy_file.h"
static void copy_file_blocks(const char *src, const char *dst,
pg_checksum_context *checksum_ctx);
#ifdef WIN32
static void copy_file_copyfile(const char *src, const char *dst);
#endif
/*
* Copy a regular file, optionally computing a checksum, and emitting
* appropriate debug messages. But if we're in dry-run mode, then just emit
* the messages and don't copy anything.
*/
void
copy_file(const char *src, const char *dst,
pg_checksum_context *checksum_ctx, bool dry_run)
{
/*
* In dry-run mode, we don't actually copy anything, nor do we read any
* data from the source file, but we do verify that we can open it.
*/
if (dry_run)
{
int fd;
if ((fd = open(src, O_RDONLY | PG_BINARY, 0)) < 0)
pg_fatal("could not open \"%s\": %m", src);
if (close(fd) < 0)
pg_fatal("could not close \"%s\": %m", src);
}
/*
* If we don't need to compute a checksum, then we can use any special
* operating system primitives that we know about to copy the file; this
* may be quicker than a naive block copy.
*/
if (checksum_ctx->type == CHECKSUM_TYPE_NONE)
{
char *strategy_name = NULL;
void (*strategy_implementation) (const char *, const char *) = NULL;
#ifdef WIN32
strategy_name = "CopyFile";
strategy_implementation = copy_file_copyfile;
#endif
if (strategy_name != NULL)
{
if (dry_run)
pg_log_debug("would copy \"%s\" to \"%s\" using strategy %s",
src, dst, strategy_name);
else
{
pg_log_debug("copying \"%s\" to \"%s\" using strategy %s",
src, dst, strategy_name);
(*strategy_implementation) (src, dst);
}
return;
}
}
/*
* Fall back to the simple approach of reading and writing all the blocks,
* feeding them into the checksum context as we go.
*/
if (dry_run)
{
if (checksum_ctx->type == CHECKSUM_TYPE_NONE)
pg_log_debug("would copy \"%s\" to \"%s\"",
src, dst);
else
pg_log_debug("would copy \"%s\" to \"%s\" and checksum with %s",
src, dst, pg_checksum_type_name(checksum_ctx->type));
}
else
{
if (checksum_ctx->type == CHECKSUM_TYPE_NONE)
pg_log_debug("copying \"%s\" to \"%s\"",
src, dst);
else
pg_log_debug("copying \"%s\" to \"%s\" and checksumming with %s",
src, dst, pg_checksum_type_name(checksum_ctx->type));
copy_file_blocks(src, dst, checksum_ctx);
}
}
/*
* Copy a file block by block, and optionally compute a checksum as we go.
*/
static void
copy_file_blocks(const char *src, const char *dst,
pg_checksum_context *checksum_ctx)
{
int src_fd;
int dest_fd;
uint8 *buffer;
const int buffer_size = 50 * BLCKSZ;
ssize_t rb;
unsigned offset = 0;
if ((src_fd = open(src, O_RDONLY | PG_BINARY, 0)) < 0)
pg_fatal("could not open file \"%s\": %m", src);
if ((dest_fd = open(dst, O_WRONLY | O_CREAT | O_EXCL | PG_BINARY,
pg_file_create_mode)) < 0)
pg_fatal("could not open file \"%s\": %m", dst);
buffer = pg_malloc(buffer_size);
while ((rb = read(src_fd, buffer, buffer_size)) > 0)
{
ssize_t wb;
if ((wb = write(dest_fd, buffer, rb)) != rb)
{
if (wb < 0)
pg_fatal("could not write file \"%s\": %m", dst);
else
pg_fatal("could not write file \"%s\": wrote only %d of %d bytes at offset %u",
dst, (int) wb, (int) rb, offset);
}
if (pg_checksum_update(checksum_ctx, buffer, rb) < 0)
pg_fatal("could not update checksum of file \"%s\"", dst);
offset += rb;
}
if (rb < 0)
pg_fatal("could not read file \"%s\": %m", dst);
pg_free(buffer);
close(src_fd);
close(dest_fd);
}
#ifdef WIN32
static void
copy_file_copyfile(const char *src, const char *dst)
{
if (CopyFile(src, dst, true) == 0)
{
_dosmaperr(GetLastError());
pg_fatal("could not copy \"%s\" to \"%s\": %m", src, dst);
}
}
#endif /* WIN32 */
|