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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
|
/*-------------------------------------------------------------------------
*
* walsummary.c
* Functions for accessing and managing WAL summary data.
*
* Portions Copyright (c) 2010-2025, PostgreSQL Global Development Group
*
* src/backend/backup/walsummary.c
*
*-------------------------------------------------------------------------
*/
#include "postgres.h"
#include <sys/stat.h>
#include <unistd.h>
#include "access/xlog_internal.h"
#include "backup/walsummary.h"
#include "common/int.h"
#include "utils/wait_event.h"
static bool IsWalSummaryFilename(char *filename);
static int ListComparatorForWalSummaryFiles(const ListCell *a,
const ListCell *b);
/*
* Get a list of WAL summaries.
*
* If tli != 0, only WAL summaries with the indicated TLI will be included.
*
* If start_lsn != InvalidXLogRecPtr, only summaries that end after the
* indicated LSN will be included.
*
* If end_lsn != InvalidXLogRecPtr, only summaries that start before the
* indicated LSN will be included.
*
* The intent is that you can call GetWalSummaries(tli, start_lsn, end_lsn)
* to get all WAL summaries on the indicated timeline that overlap the
* specified LSN range.
*/
List *
GetWalSummaries(TimeLineID tli, XLogRecPtr start_lsn, XLogRecPtr end_lsn)
{
DIR *sdir;
struct dirent *dent;
List *result = NIL;
sdir = AllocateDir(XLOGDIR "/summaries");
while ((dent = ReadDir(sdir, XLOGDIR "/summaries")) != NULL)
{
WalSummaryFile *ws;
uint32 tmp[5];
TimeLineID file_tli;
XLogRecPtr file_start_lsn;
XLogRecPtr file_end_lsn;
/* Decode filename, or skip if it's not in the expected format. */
if (!IsWalSummaryFilename(dent->d_name))
continue;
sscanf(dent->d_name, "%08X%08X%08X%08X%08X",
&tmp[0], &tmp[1], &tmp[2], &tmp[3], &tmp[4]);
file_tli = tmp[0];
file_start_lsn = ((uint64) tmp[1]) << 32 | tmp[2];
file_end_lsn = ((uint64) tmp[3]) << 32 | tmp[4];
/* Skip if it doesn't match the filter criteria. */
if (tli != 0 && tli != file_tli)
continue;
if (!XLogRecPtrIsInvalid(start_lsn) && start_lsn >= file_end_lsn)
continue;
if (!XLogRecPtrIsInvalid(end_lsn) && end_lsn <= file_start_lsn)
continue;
/* Add it to the list. */
ws = palloc(sizeof(WalSummaryFile));
ws->tli = file_tli;
ws->start_lsn = file_start_lsn;
ws->end_lsn = file_end_lsn;
result = lappend(result, ws);
}
FreeDir(sdir);
return result;
}
/*
* Build a new list of WAL summaries based on an existing list, but filtering
* out summaries that don't match the search parameters.
*
* If tli != 0, only WAL summaries with the indicated TLI will be included.
*
* If start_lsn != InvalidXLogRecPtr, only summaries that end after the
* indicated LSN will be included.
*
* If end_lsn != InvalidXLogRecPtr, only summaries that start before the
* indicated LSN will be included.
*/
List *
FilterWalSummaries(List *wslist, TimeLineID tli,
XLogRecPtr start_lsn, XLogRecPtr end_lsn)
{
List *result = NIL;
ListCell *lc;
/* Loop over input. */
foreach(lc, wslist)
{
WalSummaryFile *ws = lfirst(lc);
/* Skip if it doesn't match the filter criteria. */
if (tli != 0 && tli != ws->tli)
continue;
if (!XLogRecPtrIsInvalid(start_lsn) && start_lsn > ws->end_lsn)
continue;
if (!XLogRecPtrIsInvalid(end_lsn) && end_lsn < ws->start_lsn)
continue;
/* Add it to the result list. */
result = lappend(result, ws);
}
return result;
}
/*
* Check whether the supplied list of WalSummaryFile objects covers the
* whole range of LSNs from start_lsn to end_lsn. This function ignores
* timelines, so the caller should probably filter using the appropriate
* timeline before calling this.
*
* If the whole range of LSNs is covered, returns true, otherwise false.
* If false is returned, *missing_lsn is set either to InvalidXLogRecPtr
* if there are no WAL summary files in the input list, or to the first LSN
* in the range that is not covered by a WAL summary file in the input list.
*/
bool
WalSummariesAreComplete(List *wslist, XLogRecPtr start_lsn,
XLogRecPtr end_lsn, XLogRecPtr *missing_lsn)
{
XLogRecPtr current_lsn = start_lsn;
ListCell *lc;
/* Special case for empty list. */
if (wslist == NIL)
{
*missing_lsn = InvalidXLogRecPtr;
return false;
}
/* Make a private copy of the list and sort it by start LSN. */
wslist = list_copy(wslist);
list_sort(wslist, ListComparatorForWalSummaryFiles);
/*
* Consider summary files in order of increasing start_lsn, advancing the
* known-summarized range from start_lsn toward end_lsn.
*
* Normally, the summary files should cover non-overlapping WAL ranges,
* but this algorithm is intended to be correct even in case of overlap.
*/
foreach(lc, wslist)
{
WalSummaryFile *ws = lfirst(lc);
if (ws->start_lsn > current_lsn)
{
/* We found a gap. */
break;
}
if (ws->end_lsn > current_lsn)
{
/*
* Next summary extends beyond end of previous summary, so extend
* the end of the range known to be summarized.
*/
current_lsn = ws->end_lsn;
/*
* If the range we know to be summarized has reached the required
* end LSN, we have proved completeness.
*/
if (current_lsn >= end_lsn)
return true;
}
}
/*
* We either ran out of summary files without reaching the end LSN, or we
* hit a gap in the sequence that resulted in us bailing out of the loop
* above.
*/
*missing_lsn = current_lsn;
return false;
}
/*
* Open a WAL summary file.
*
* This will throw an error in case of trouble. As an exception, if
* missing_ok = true and the trouble is specifically that the file does
* not exist, it will not throw an error and will return a value less than 0.
*/
File
OpenWalSummaryFile(WalSummaryFile *ws, bool missing_ok)
{
char path[MAXPGPATH];
File file;
snprintf(path, MAXPGPATH,
XLOGDIR "/summaries/%08X%08X%08X%08X%08X.summary",
ws->tli,
LSN_FORMAT_ARGS(ws->start_lsn),
LSN_FORMAT_ARGS(ws->end_lsn));
file = PathNameOpenFile(path, O_RDONLY);
if (file < 0 && (errno != EEXIST || !missing_ok))
ereport(ERROR,
(errcode_for_file_access(),
errmsg("could not open file \"%s\": %m", path)));
return file;
}
/*
* Remove a WAL summary file if the last modification time precedes the
* cutoff time.
*/
void
RemoveWalSummaryIfOlderThan(WalSummaryFile *ws, time_t cutoff_time)
{
char path[MAXPGPATH];
struct stat statbuf;
snprintf(path, MAXPGPATH,
XLOGDIR "/summaries/%08X%08X%08X%08X%08X.summary",
ws->tli,
LSN_FORMAT_ARGS(ws->start_lsn),
LSN_FORMAT_ARGS(ws->end_lsn));
if (lstat(path, &statbuf) != 0)
{
if (errno == ENOENT)
return;
ereport(ERROR,
(errcode_for_file_access(),
errmsg("could not stat file \"%s\": %m", path)));
}
if (statbuf.st_mtime >= cutoff_time)
return;
if (unlink(path) != 0)
ereport(ERROR,
(errcode_for_file_access(),
errmsg("could not stat file \"%s\": %m", path)));
ereport(DEBUG2,
(errmsg_internal("removing file \"%s\"", path)));
}
/*
* Test whether a filename looks like a WAL summary file.
*/
static bool
IsWalSummaryFilename(char *filename)
{
return strspn(filename, "0123456789ABCDEF") == 40 &&
strcmp(filename + 40, ".summary") == 0;
}
/*
* Data read callback for use with CreateBlockRefTableReader.
*/
int
ReadWalSummary(void *wal_summary_io, void *data, int length)
{
WalSummaryIO *io = wal_summary_io;
int nbytes;
nbytes = FileRead(io->file, data, length, io->filepos,
WAIT_EVENT_WAL_SUMMARY_READ);
if (nbytes < 0)
ereport(ERROR,
(errcode_for_file_access(),
errmsg("could not read file \"%s\": %m",
FilePathName(io->file))));
io->filepos += nbytes;
return nbytes;
}
/*
* Data write callback for use with WriteBlockRefTable.
*/
int
WriteWalSummary(void *wal_summary_io, void *data, int length)
{
WalSummaryIO *io = wal_summary_io;
int nbytes;
nbytes = FileWrite(io->file, data, length, io->filepos,
WAIT_EVENT_WAL_SUMMARY_WRITE);
if (nbytes < 0)
ereport(ERROR,
(errcode_for_file_access(),
errmsg("could not write file \"%s\": %m",
FilePathName(io->file))));
if (nbytes != length)
ereport(ERROR,
(errcode_for_file_access(),
errmsg("could not write file \"%s\": wrote only %d of %d bytes at offset %u",
FilePathName(io->file), nbytes,
length, (unsigned) io->filepos),
errhint("Check free disk space.")));
io->filepos += nbytes;
return nbytes;
}
/*
* Error-reporting callback for use with CreateBlockRefTableReader.
*/
void
ReportWalSummaryError(void *callback_arg, char *fmt,...)
{
StringInfoData buf;
va_list ap;
int needed;
initStringInfo(&buf);
for (;;)
{
va_start(ap, fmt);
needed = appendStringInfoVA(&buf, fmt, ap);
va_end(ap);
if (needed == 0)
break;
enlargeStringInfo(&buf, needed);
}
ereport(ERROR,
errcode(ERRCODE_DATA_CORRUPTED),
errmsg_internal("%s", buf.data));
}
/*
* Comparator to sort a List of WalSummaryFile objects by start_lsn.
*/
static int
ListComparatorForWalSummaryFiles(const ListCell *a, const ListCell *b)
{
WalSummaryFile *ws1 = lfirst(a);
WalSummaryFile *ws2 = lfirst(b);
return pg_cmp_u64(ws1->start_lsn, ws2->start_lsn);
}
|