-
Notifications
You must be signed in to change notification settings - Fork 154
/
lcb_append.c
326 lines (272 loc) · 10.9 KB
/
lcb_append.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
/* lcb_append.c -- replication-based backup api - append functions
*
* Copyright (c) 1994-2016 Carnegie Mellon University. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The name "Carnegie Mellon University" must not be used to
* endorse or promote products derived from this software without
* prior written permission. For permission or any legal
* details, please contact
* Carnegie Mellon University
* Center for Technology Transfer and Enterprise Creation
* 4615 Forbes Avenue
* Suite 302
* Pittsburgh, PA 15213
* (412) 268-7393, fax: (412) 268-7395
* innovation@andrew.cmu.edu
*
* 4. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by Computing Services
* at Carnegie Mellon University (http://www.cmu.edu/computing/)."
*
* CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO
* THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE
* FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
* AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
*/
#include <assert.h>
#include <errno.h>
#include <syslog.h>
#include <sysexits.h>
#include "lib/sqldb.h"
#include "lib/xmalloc.h"
#include "lib/xsha1.h"
#include "imap/imap_err.h"
#include "backup/backup.h"
#define LIBCYRUS_BACKUP_SOURCE /* this file is part of libcyrus_backup */
#include "backup/lcb_internal.h"
#include "backup/lcb_sqlconsts.h"
static int retry_gzwrite(gzFile gzfile, const char *str, size_t len, const char *fname)
{
/* gzprintf's internal buffer is limited to about 8K, which a dlist will
* exceed if there's a message in it, so use gzwrite rather than gzprintf
* for writing dlist contents.
*/
const char *p = str;
size_t left = len;
while (left) {
int n = MIN(left, INT32_MAX);
int wrote = gzwrite(gzfile, p, n);
if (wrote > 0) {
left -= wrote;
p += wrote;
}
else {
int r;
const char *err = gzerror(gzfile, &r);
xsyslog(LOG_ERR, "IOERROR: gzwrite failed",
"filename=<%s> error=<%s>",
fname, err);
if (r == Z_STREAM_ERROR)
fatal("gzwrite: invalid stream", EX_IOERR);
else if (r == Z_MEM_ERROR)
fatal("gzwrite: out of memory", EX_TEMPFAIL);
return r;
}
}
return 0;
}
HIDDEN int backup_real_append_start(struct backup *backup,
time_t ts, off_t offset,
const char *file_sha1,
int index_only,
enum backup_append_flush flush)
{
int r;
if (backup->append_state != NULL
&& backup->append_state->mode != BACKUP_APPEND_INACTIVE) {
fatal("backup append already started", EX_SOFTWARE);
}
if (!backup->append_state)
backup->append_state = xzmalloc(sizeof(*backup->append_state));
if (index_only) backup->append_state->mode |= BACKUP_APPEND_INDEXONLY;
backup->append_state->wrote = 0;
SHA1Init(&backup->append_state->sha_ctx);
char header[80];
snprintf(header, sizeof(header), "# cyrus backup: chunk start\r\n");
if (!index_only) {
if (!backup->append_state->gzfile) {
backup->append_state->gzfile = gzdopen(backup->fd, "ab");
if (!backup->append_state->gzfile) {
fprintf(stderr, "%s: gzdopen fd %i failed: %s\n",
__func__, backup->fd, strerror(errno));
goto error;
}
}
r = retry_gzwrite(backup->append_state->gzfile,
header, strlen(header), backup->data_fname);
if (!r && flush)
r = gzflush(backup->append_state->gzfile, Z_FULL_FLUSH);
if (r) goto error;
}
SHA1Update(&backup->append_state->sha_ctx, header, strlen(header));
backup->append_state->wrote += strlen(header);
struct sqldb_bindval bval[] = {
{ ":ts_start", SQLITE_INTEGER, { .i = ts } },
{ ":offset", SQLITE_INTEGER, { .i = offset } },
{ ":file_sha1", SQLITE_TEXT, { .s = file_sha1 } },
{ NULL, SQLITE_NULL, { .s = NULL } },
};
r = sqldb_begin(backup->db, "backup_append");
if (r) goto error;
r = sqldb_exec(backup->db, backup_index_start_sql, bval, NULL, NULL);
if (r) {
syslog(LOG_ERR, "%s: something went wrong: %i", __func__, r);
sqldb_rollback(backup->db, "backup_append");
goto error;
}
backup->append_state->chunk_id = sqldb_lastid(backup->db);
backup->append_state->mode |= BACKUP_APPEND_ACTIVE;
return 0;
error:
backup->append_state->mode = BACKUP_APPEND_INACTIVE;
return -1;
}
EXPORTED int backup_append_start(struct backup *backup,
const time_t *tsp,
enum backup_append_flush flush)
{
char file_sha1[2 * SHA1_DIGEST_LENGTH + 1];
off_t offset = lseek(backup->fd, 0, SEEK_END);
time_t ts = tsp ? *tsp : time(NULL);
sha1_file(backup->fd, backup->data_fname, SHA1_LIMIT_WHOLE_FILE, file_sha1);
return backup_real_append_start(backup, ts, offset, file_sha1, 0, flush);
}
EXPORTED int backup_append(struct backup *backup,
struct dlist *dlist,
const time_t *tsp,
enum backup_append_flush flush)
{
if (!backup->append_state || backup->append_state->mode == BACKUP_APPEND_INACTIVE)
fatal("backup append not started", EX_SOFTWARE);
off_t start = backup->append_state->wrote;
size_t len = 0;
time_t ts = tsp ? *tsp : time(NULL);
struct buf buf = BUF_INITIALIZER;
struct dlist_print_iter *iter = NULL;
const int index_only = backup->append_state->mode & BACKUP_APPEND_INDEXONLY;
int r;
/* preload buffer with timestamp preamble */
buf_printf(&buf, "%" PRId64 " APPLY ", (int64_t) ts);
/* iterate over the dlist */
iter = dlist_print_iter_new(dlist, 1);
do {
/* track the sha1sum */
SHA1Update(&backup->append_state->sha_ctx, buf_cstring(&buf), buf_len(&buf));
/* if we're not in index-only mode, write the data out */
if (!index_only) {
r = retry_gzwrite(backup->append_state->gzfile,
buf_cstring(&buf), buf_len(&buf),
backup->data_fname);
if (r) goto error;
}
/* count the written bytes */
len += buf_len(&buf);
backup->append_state->wrote += buf_len(&buf);
} while (dlist_print_iter_step(iter, &buf));
dlist_print_iter_free(&iter);
/* finally, end with "\r\n" */
buf_setcstr(&buf, "\r\n");
SHA1Update(&backup->append_state->sha_ctx, buf_cstring(&buf), buf_len(&buf));
if (!index_only) {
r = retry_gzwrite(backup->append_state->gzfile,
buf_cstring(&buf), buf_len(&buf),
backup->data_fname);
if (r) goto error;
}
len += buf_len(&buf);
backup->append_state->wrote += buf_len(&buf);
/* flush if necessary */
if (flush && !index_only) {
r = gzflush(backup->append_state->gzfile, Z_FULL_FLUSH);
if (r != Z_OK) {
syslog(LOG_ERR, "IOERROR: %s gzflush %s: %i %i", __func__, backup->data_fname, r, errno);
goto error;
}
}
buf_free(&buf);
/* update the index */
return backup_index(backup, dlist, ts, start, len);
error:
buf_free(&buf);
if (iter) dlist_print_iter_free(&iter);
return IMAP_INTERNAL;
}
HIDDEN int backup_real_append_end(struct backup *backup, time_t ts)
{
int r;
if (!backup->append_state)
fatal("backup append not started", EX_SOFTWARE);
if (backup->append_state->mode == BACKUP_APPEND_INACTIVE)
fatal("backup append not started", EX_SOFTWARE);
if (!(backup->append_state->mode & BACKUP_APPEND_INDEXONLY)) {
r = gzflush(backup->append_state->gzfile, Z_FINISH);
if (r != Z_OK) {
syslog(LOG_ERR, "IOERROR: gzflush %s failed: %i",
backup->data_fname, r);
sqldb_rollback(backup->db, "backup_append");
goto done;
}
}
unsigned char sha1_raw[SHA1_DIGEST_LENGTH];
char data_sha1[2 * SHA1_DIGEST_LENGTH + 1];
SHA1Final(sha1_raw, &backup->append_state->sha_ctx);
r = bin_to_hex(sha1_raw, SHA1_DIGEST_LENGTH, data_sha1, BH_LOWER);
assert(r == 2 * SHA1_DIGEST_LENGTH);
struct sqldb_bindval bval[] = {
{ ":id", SQLITE_INTEGER, { .i = backup->append_state->chunk_id } },
{ ":ts_end", SQLITE_INTEGER, { .i = ts } },
{ ":length", SQLITE_INTEGER, { .i = backup->append_state->wrote } },
{ ":data_sha1", SQLITE_TEXT, { .s = data_sha1 } },
{ NULL, SQLITE_NULL, { .s = NULL } },
};
r = sqldb_exec(backup->db, backup_index_end_sql, bval, NULL, NULL);
if (r) {
syslog(LOG_ERR, "%s: something went wrong: %i", __func__, r);
sqldb_rollback(backup->db, "backup_append");
}
else {
sqldb_commit(backup->db, "backup_append");
}
done:
backup->append_state->mode = BACKUP_APPEND_INACTIVE;
backup->append_state->wrote = 0;
return r;
}
EXPORTED int backup_append_end(struct backup *backup, const time_t *tsp)
{
time_t ts = tsp ? *tsp : time(NULL);
return backup_real_append_end(backup, ts);
}
EXPORTED int backup_append_abort(struct backup *backup)
{
if (!backup->append_state)
fatal("backup append not started", EX_SOFTWARE);
if (backup->append_state == BACKUP_APPEND_INACTIVE)
fatal("backup append not started", EX_SOFTWARE);
sqldb_rollback(backup->db, "backup_append");
// FIXME
// can we truncate back to the length we started this append at?
// ftruncate(2) says nothing about behaviour on descriptors
// opened with O_APPEND...
// seems like it might work, but test it first.
// FIXME at least z_finish the damn file...
backup->append_state->mode = BACKUP_APPEND_INACTIVE;
return 0;
}