-
Notifications
You must be signed in to change notification settings - Fork 0
/
delete.c
515 lines (462 loc) · 13.9 KB
/
delete.c
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
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
/*-------------------------------------------------------------------------
*
* delete.c: delete backup files.
*
* Copyright (c) 2009-2015, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
*
*-------------------------------------------------------------------------
*/
#include "pg_rman.h"
#include <time.h>
static int pgBackupDeleteFiles(pgBackup *backup);
/*
* Check backup lists and decide which to delete.
* The backups which are not necessary for PITR until given date range.
* If force option is set true, delete backups taken older than given
* date without checking the necessity for PITR.
*/
int
do_delete(pgBackupRange *range, bool force)
{
int i;
int ret;
parray *backup_list;
bool found_boundary_to_keep;
char backup_timestamp[20];
char given_timestamp[20];
char *backup_mode;
/* DATE are always required */
if (!pgBackupRangeIsValid(range))
ereport(ERROR,
(errcode(ERROR_ARGS),
errmsg("required delete range option not specified: delete DATE")));
found_boundary_to_keep = false;
time2iso(given_timestamp, lengthof(given_timestamp), range->begin);
/* get exclusive lock of backup catalog */
ret = catalog_lock();
if (ret == -1)
ereport(ERROR,
(errcode(ERROR_SYSTEM),
errmsg("could not lock backup catalog.")));
else if (ret == 1)
ereport(ERROR,
(errcode(ERROR_ALREADY_RUNNING),
errmsg("another pg_rman is running, stop delete.")));
/* get list of backups. */
backup_list = catalog_get_backup_list(NULL);
if(!backup_list){
ereport(ERROR,
(errcode(ERROR_SYSTEM),
errmsg("could not get list of backup already taken.")));
}
/* check each backups and delete if possible */
for (i = 0; i < parray_num(backup_list); i++)
{
pgBackup *backup = (pgBackup *)parray_get(backup_list, i);
time2iso(backup_timestamp, lengthof(backup_timestamp), backup->start_time);
/* We keep backups until finding the validated full backup
* which is necessary for recovery until specified DATE.
*/
if (backup->start_time > range->begin)
continue;
else
{
if (!force && !found_boundary_to_keep)
{
/* Check whether this is the first validate full backup before the specified DATE */
if (backup->backup_mode >= BACKUP_MODE_FULL &&
backup->status == BACKUP_STATUS_OK)
{
ereport(WARNING,
(errmsg("cannot delete backup with start time \"%s\"", backup_timestamp),
errdetail("it is the latest full backup necessary for successful recovery")));
found_boundary_to_keep = true;
} else {
backup_mode = (backup->backup_mode == BACKUP_MODE_INCREMENTAL) ? "incremental" : "archive";
ereport(WARNING,
(errmsg("cannot delete backup with start time \"%s\"", backup_timestamp),
errdetail("it is an %s backup necessary"
" for successful recovery", backup_mode)));
}
/* keep this backup */
continue;
}
/* check for interrupt */
if (interrupted)
{
ereport(FATAL,
(errcode(ERROR_INTERRUPTED),
errmsg("interrupted during delete backup")));
}
/* Do actual deletion */
pgBackupDeleteFiles(backup);
}
}
/* release catalog lock */
catalog_unlock();
/* cleanup */
parray_walk(backup_list, pgBackupFree);
parray_free(backup_list);
return 0;
}
/*
* Delete backups that are older than KEEP_xxx_DAYS, or have more generations
* than KEEP_xxx_GENERATIONS.
*/
void
pgBackupDelete(int keep_generations, int keep_days)
{
int i;
parray *backup_list;
int existed_generations;
bool check_generations;
bool check_days;
bool last_checked_is_valid_full_backup;
time_t tim;
time_t keep_after;
struct tm *ltm;
char backup_timestamp[20];
char keep_after_timestamp[20];
char generations_str[16];
char days_str[16];
char *count_suffix;
/* determine whether to check based on the given generation number */
if (keep_generations == KEEP_INFINITE)
{
check_generations = false;
strncpy(generations_str, "INFINITE",
lengthof(generations_str));
} else {
check_generations = true;
snprintf(generations_str, lengthof(generations_str),
"%d", keep_generations);
}
/* determine whether to check based on the given days */
if (keep_days == KEEP_INFINITE)
{
check_days = false;
strncpy(days_str, "INFINITE", lengthof(days_str));
} else {
check_days = true;
snprintf(days_str, lengthof(days_str),
"%d", keep_days);
/*
* Calculate the threshold day from given keep_days.
* Any backup taken before this threshold day to be
* a candidate for deletion.
*/
tim = current.start_time - (keep_days * 60 * 60 * 24);
ltm = localtime(&tim);
ltm->tm_hour = 0;
ltm->tm_min = 0;
ltm->tm_sec = 0;
keep_after = mktime(ltm);
time2iso(keep_after_timestamp, lengthof(keep_after_timestamp),
keep_after);
}
if (check_generations && check_days)
{
elog(INFO, "start deleting old backup (keep generations = %s AND keep after = %s)",
generations_str, keep_after_timestamp);
} else if (check_generations) {
elog(INFO, "start deleting old backup (keep generations = %s)",
generations_str);
} else if (check_days) {
elog(INFO, "start deleting old backup (keep after = %s)",
keep_after_timestamp);
} else {
elog(DEBUG, "do not delete old backup files");
return;
}
/* get list of backups. */
backup_list = catalog_get_backup_list(NULL);
/* find delete target backup. */
existed_generations = 0;
last_checked_is_valid_full_backup = false;
for (i = 0; i < parray_num(backup_list); i++)
{
pgBackup *backup = (pgBackup *)parray_get(backup_list, i);
time2iso(backup_timestamp, lengthof(backup_timestamp),
backup->start_time);
elog(DEBUG, "--------------------------------------------");
elog(DEBUG, "checking backup : \"%s\"...", backup_timestamp);
if (check_generations)
{
if (existed_generations < keep_generations)
{
/* do not include the full backup just taken in a count */
if (backup->start_time == current.start_time
&& backup->status == BACKUP_STATUS_DONE)
{
elog(INFO, "does not include the backup just taken");
continue;
}
/* If validate full backup is found,
* count it as next generation.
*/
if (backup->backup_mode == BACKUP_MODE_FULL
&& backup->status == BACKUP_STATUS_OK)
{
existed_generations++;
count_suffix = getCountSuffix(existed_generations);
ereport(INFO,
(errmsg("backup \"%s\" should be kept", backup_timestamp),
errdetail("this is the %d%s latest full backup",
existed_generations, count_suffix)));
} else if ( ((backup->backup_mode == BACKUP_MODE_INCREMENTAL)
|| (backup->backup_mode == BACKUP_MODE_ARCHIVE))
&& backup->status == BACKUP_STATUS_OK) {
/* incremental backup and archive backup are
* belongs to one before generation full backup.
*/
count_suffix = getCountSuffix(existed_generations + 1);
ereport(INFO,
(errmsg("backup \"%s\" should be kept", backup_timestamp),
errdetail("this belongs to the %d%s latest full backup",
existed_generations + 1, count_suffix)));
} else {
ereport(WARNING,
(errmsg("backup \"%s\" is not taken into account", backup_timestamp),
errdetail("this is not a valid backup")));
}
/* move to next backup */
continue;
} else if (existed_generations == keep_generations) {
/* set the flag for check_days because we have just found valid full backup */
last_checked_is_valid_full_backup = true;
/* unset flags because the generation condition is already satisfied */
check_generations = false;
}
}
if (check_days)
{
/* If the start time of backup is older than the threshold,
* it is a candidate of deletion. Here, it should be avoided
* deleting full backup which was taken before the threshold
* but is required by incremental or archive backup in keep.
*/
if (backup->start_time >= keep_after || !last_checked_is_valid_full_backup)
{
/* do not include the full backup just taken in a count */
if (backup->start_time == current.start_time
&& backup->status == BACKUP_STATUS_DONE)
{
elog(INFO, "does not include the backup just taken");
continue;
}
if (backup->start_time >= keep_after
&& backup->status == BACKUP_STATUS_OK)
{
ereport(INFO,
(errmsg("backup \"%s\" should be kept", backup_timestamp),
errdetail("this is taken after \"%s\"", keep_after_timestamp)));
} else if (backup->start_time < keep_after
&& !last_checked_is_valid_full_backup) {
ereport(WARNING,
(errmsg("backup \"%s\" should be kept", backup_timestamp),
errdetail("this is taken before \"%s\" but there is an incremental "
"or archive backup to be kept which requires this backup",
keep_after_timestamp)));
} else {
ereport(WARNING,
(errmsg("backup \"%s\" is not taken int account", backup_timestamp),
errdetail("this is not valid backup")));
}
if(backup->backup_mode == BACKUP_MODE_FULL
&& backup->status == BACKUP_STATUS_OK)
{
last_checked_is_valid_full_backup = true;
} else if (backup->backup_mode < BACKUP_MODE_FULL
&& backup->status == BACKUP_STATUS_OK) {
last_checked_is_valid_full_backup = false;
}
/* move to next backup */
continue;
}
}
/* delete backup and update status to DELETED */
pgBackupDeleteFiles(backup);
}
/* cleanup */
parray_walk(backup_list, pgBackupFree);
parray_free(backup_list);
}
/*
* Delete backup files of the backup and update the status of the backup to
* BACKUP_STATUS_DELETED.
*/
static int
pgBackupDeleteFiles(pgBackup *backup)
{
int i;
char path[MAXPGPATH];
char timestamp[20];
parray *files;
time2iso(timestamp, lengthof(timestamp), backup->start_time);
/*
* If the backup was deleted already, nothing to do and such situation
* is not error.
*/
if (backup->status == BACKUP_STATUS_DELETED)
{
if (verbose)
elog(INFO, "backup \"%s\" has been already deleted.", timestamp);
return 0;
}
if (check)
{
elog(INFO, _("will delete the backup with start time: \"%s\""), timestamp);
} else {
elog(INFO, _("delete the backup with start time: \"%s\""), timestamp);
}
/*
* update STATUS to BACKUP_STATUS_DELETING in preparation for the case which
* the error occurs before deleting all backup files.
*/
if (!check)
{
backup->status = BACKUP_STATUS_DELETING;
pgBackupWriteIni(backup);
}
/* list files to be deleted */
files = parray_new();
pgBackupGetPath(backup, path, lengthof(path), DATABASE_DIR);
dir_list_file(files, path, NULL, true, true);
pgBackupGetPath(backup, path, lengthof(path), ARCLOG_DIR);
dir_list_file(files, path, NULL, true, true);
pgBackupGetPath(backup, path, lengthof(path), SRVLOG_DIR);
dir_list_file(files, path, NULL, true, true);
/* delete leaf node first */
parray_qsort(files, pgFileComparePathDesc);
for (i = 0; i < parray_num(files); i++)
{
pgFile *file = (pgFile *) parray_get(files, i);
/* print progress */
if (verbose)
elog(DEBUG, _("delete file(%d/%lu) \"%s\"\n"), i + 1,
(unsigned long) parray_num(files), file->path);
/* skip actual deletion in check mode */
if (!check)
{
if (remove(file->path))
{
elog(WARNING, _("cannot remove \"%s\": %s"), file->path,
strerror(errno));
parray_walk(files, pgFileFree);
parray_free(files);
return 1;
}
}
}
/*
* After deleting all of the backup files, update STATUS to
* BACKUP_STATUS_DELETED.
*/
if (!check)
{
backup->status = BACKUP_STATUS_DELETED;
pgBackupWriteIni(backup);
}
parray_walk(files, pgFileFree);
parray_free(files);
return 0;
}
/*
* Remove DELETED backups from BACKUP_PATH directory.
*/
int do_purge(void)
{
int i, j;
int ret;
int any_errors;
parray *backup_list;
parray *files;
pgBackup *backup;
char timestamp[20];
char path[MAXPGPATH];
/* get exclusive lock of backup catalog */
ret = catalog_lock();
if (ret == -1)
ereport(ERROR,
(errcode(ERROR_SYSTEM),
errmsg("could not lock backup catalog.")));
else if (ret == 1)
ereport(ERROR,
(errcode(ERROR_ALREADY_RUNNING),
errmsg("another pg_rman is running, stop delete.")));
/* get list of backups. */
backup_list = catalog_get_backup_list(NULL);
if(!backup_list){
ereport(ERROR,
(errcode(ERROR_SYSTEM),
errmsg("could not get list of backup already taken.")));
}
for (i=0; i < parray_num(backup_list); i++)
{
backup = parray_get(backup_list, i);
/* skip living backups */
if(backup->status != BACKUP_STATUS_DELETED)
continue;
time2iso(timestamp, lengthof(timestamp), backup->start_time);
pgBackupGetPath(backup, path, lengthof(path), NULL);
if (check)
{
elog(INFO, _("The DELETED backup \"%s\" will be purged."), timestamp);
elog(INFO, _("The path is %s"), path);
}
files = parray_new();
dir_list_file(files, path, NULL, false, true);
parray_qsort(files, pgFileComparePathDesc);
any_errors = 0;
for (j = 0; j < parray_num(files); j++)
{
pgFile *file = (pgFile *) parray_get(files, j);
/* print progress */
if (check)
{
if (verbose)
{
/* skip actual deletion in check mode */
elog(DEBUG, _("will delete file(%d/%lu) \"%s\"\n"), j + 1,
(unsigned long) parray_num(files), file->path);
continue;
}
} else {
if(verbose)
{
elog(DEBUG, _("delete file(%d/%lu) \"%s\"\n"), j + 1,
(unsigned long) parray_num(files), file->path);
}
if (remove(file->path))
{
elog(WARNING, _("could not remove \"%s\": %s"), file->path,
strerror(errno));
any_errors++;
}
}
}
if (!check)
{
/* check the parent directory where deleted backup belongs to can be deleted. */
delete_parent_dir(path);
/* check whether there happens some errors in purging */
if(any_errors)
{
elog(WARNING, _("There are errors in purging backup \"%s\""), timestamp);
} else {
elog(INFO, _("The DELETED backup \"%s\" is purged."), timestamp);
}
}
}
return 0;
}
/*
* Utility function for selecting suffix for number.
*/
char* getCountSuffix(int number)
{
return (1 == (number % 100)) ? "st"
: (2 == (number %100)) ? "nd"
: (3 == (number %100)) ? "rd"
: "th";
}