]> git.saurik.com Git - redis.git/blame - src/aof.c
Query the archive to provide a complete KEYS list.
[redis.git] / src / aof.c
CommitLineData
d288ee65 1/*
2 * Copyright (c) 2009-2012, Salvatore Sanfilippo <antirez at gmail dot com>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 *
8 * * Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * * Neither the name of Redis nor the names of its contributors may be used
14 * to endorse or promote products derived from this software without
15 * specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
21 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 * POSSIBILITY OF SUCH DAMAGE.
28 */
29
e2641e09 30#include "redis.h"
986630af 31#include "bio.h"
f9c6f39b 32#include "rio.h"
e2641e09 33
34#include <signal.h>
35#include <fcntl.h>
36#include <sys/stat.h>
3688d7f3 37#include <sys/types.h>
38#include <sys/time.h>
39#include <sys/resource.h>
40#include <sys/wait.h>
e2641e09 41
b333e239 42void aofUpdateCurrentSize(void);
43
edb95253 44/* ----------------------------------------------------------------------------
45 * AOF rewrite buffer implementation.
46 *
47 * The following code implement a simple buffer used in order to accumulate
48 * changes while the background process is rewriting the AOF file.
49 *
50 * We only need to append, but can't just use realloc with a large block
51 * because 'huge' reallocs are not always handled as one could expect
52 * (via remapping of pages at OS level) but may involve copying data.
53 *
54 * For this reason we use a list of blocks, every block is
55 * AOF_RW_BUF_BLOCK_SIZE bytes.
56 * ------------------------------------------------------------------------- */
57
58#define AOF_RW_BUF_BLOCK_SIZE (1024*1024*10) /* 10 MB per block */
59
60typedef struct aofrwblock {
61 unsigned long used, free;
62 char buf[AOF_RW_BUF_BLOCK_SIZE];
63} aofrwblock;
64
65/* This function free the old AOF rewrite buffer if needed, and initialize
66 * a fresh new one. It tests for server.aof_rewrite_buf_blocks equal to NULL
67 * so can be used for the first initialization as well. */
68void aofRewriteBufferReset(void) {
69 if (server.aof_rewrite_buf_blocks)
70 listRelease(server.aof_rewrite_buf_blocks);
71
72 server.aof_rewrite_buf_blocks = listCreate();
73 listSetFreeMethod(server.aof_rewrite_buf_blocks,zfree);
74}
75
76/* Return the current size of the AOF rerwite buffer. */
77unsigned long aofRewriteBufferSize(void) {
78 listNode *ln = listLast(server.aof_rewrite_buf_blocks);
79 aofrwblock *block = ln ? ln->value : NULL;
80
81 if (block == NULL) return 0;
82 unsigned long size =
83 (listLength(server.aof_rewrite_buf_blocks)-1) * AOF_RW_BUF_BLOCK_SIZE;
84 size += block->used;
85 return size;
86}
87
88/* Append data to the AOF rewrite buffer, allocating new blocks if needed. */
89void aofRewriteBufferAppend(unsigned char *s, unsigned long len) {
90 listNode *ln = listLast(server.aof_rewrite_buf_blocks);
91 aofrwblock *block = ln ? ln->value : NULL;
92
93 while(len) {
94 /* If we already got at least an allocated block, try appending
95 * at least some piece into it. */
96 if (block) {
97 unsigned long thislen = (block->free < len) ? block->free : len;
98 if (thislen) { /* The current block is not already full. */
99 memcpy(block->buf+block->used, s, thislen);
100 block->used += thislen;
101 block->free -= thislen;
102 s += thislen;
103 len -= thislen;
104 }
105 }
106
107 if (len) { /* First block to allocate, or need another block. */
108 int numblocks;
109
110 block = zmalloc(sizeof(*block));
111 block->free = AOF_RW_BUF_BLOCK_SIZE;
112 block->used = 0;
113 listAddNodeTail(server.aof_rewrite_buf_blocks,block);
114
115 /* Log every time we cross more 10 or 100 blocks, respectively
116 * as a notice or warning. */
117 numblocks = listLength(server.aof_rewrite_buf_blocks);
118 if (((numblocks+1) % 10) == 0) {
119 int level = ((numblocks+1) % 100) == 0 ? REDIS_WARNING :
120 REDIS_NOTICE;
121 redisLog(level,"Background AOF buffer size: %lu MB",
122 aofRewriteBufferSize()/(1024*1024));
123 }
124 }
125 }
126}
127
128/* Write the buffer (possibly composed of multiple blocks) into the specified
129 * fd. If no short write or any other error happens -1 is returned,
130 * otherwise the number of bytes written is returned. */
131ssize_t aofRewriteBufferWrite(int fd) {
132 listNode *ln;
133 listIter li;
134 ssize_t count = 0;
135
136 listRewind(server.aof_rewrite_buf_blocks,&li);
137 while((ln = listNext(&li))) {
138 aofrwblock *block = listNodeValue(ln);
139 ssize_t nwritten;
140
141 if (block->used) {
142 nwritten = write(fd,block->buf,block->used);
143 if (nwritten != block->used) {
144 if (nwritten == 0) errno = EIO;
145 return -1;
146 }
147 count += nwritten;
148 }
149 }
150 return count;
151}
152
27fc5bf5 153/* ----------------------------------------------------------------------------
154 * AOF file implementation
155 * ------------------------------------------------------------------------- */
156
157/* Starts a background task that performs fsync() against the specified
158 * file descriptor (the one of the AOF file) in another thread. */
4b77700a 159void aof_background_fsync(int fd) {
9a35eb22 160 bioCreateBackgroundJob(REDIS_BIO_AOF_FSYNC,(void*)(long)fd,NULL,NULL);
4b77700a 161}
162
e2641e09 163/* Called when the user switches from "appendonly yes" to "appendonly no"
164 * at runtime using the CONFIG command. */
165void stopAppendOnly(void) {
e394114d 166 redisAssert(server.aof_state != REDIS_AOF_OFF);
db3c2a4f 167 flushAppendOnlyFile(1);
ff2145ad 168 aof_fsync(server.aof_fd);
169 close(server.aof_fd);
e2641e09 170
ff2145ad 171 server.aof_fd = -1;
172 server.aof_selected_db = -1;
e394114d 173 server.aof_state = REDIS_AOF_OFF;
e2641e09 174 /* rewrite operation in progress? kill it, wait child exit */
ff2145ad 175 if (server.aof_child_pid != -1) {
e2641e09 176 int statloc;
177
b941417c 178 redisLog(REDIS_NOTICE,"Killing running AOF rewrite child: %ld",
179 (long) server.aof_child_pid);
ff2145ad 180 if (kill(server.aof_child_pid,SIGKILL) != -1)
e2641e09 181 wait3(&statloc,0,NULL);
182 /* reset the buffer accumulating changes while the child saves */
edb95253 183 aofRewriteBufferReset();
ff2145ad 184 aofRemoveTempFile(server.aof_child_pid);
185 server.aof_child_pid = -1;
6b4d92e2 186 server.aof_rewrite_time_start = -1;
e2641e09 187 }
188}
189
190/* Called when the user switches from "appendonly no" to "appendonly yes"
191 * at runtime using the CONFIG command. */
192int startAppendOnly(void) {
56ff70f8 193 server.aof_last_fsync = server.unixtime;
ff2145ad 194 server.aof_fd = open(server.aof_filename,O_WRONLY|O_APPEND|O_CREAT,0644);
e394114d 195 redisAssert(server.aof_state == REDIS_AOF_OFF);
ff2145ad 196 if (server.aof_fd == -1) {
e7a2e7c1 197 redisLog(REDIS_WARNING,"Redis needs to enable the AOF but can't open the append only file: %s",strerror(errno));
e2641e09 198 return REDIS_ERR;
199 }
200 if (rewriteAppendOnlyFileBackground() == REDIS_ERR) {
ff2145ad 201 close(server.aof_fd);
e7a2e7c1 202 redisLog(REDIS_WARNING,"Redis needs to enable the AOF but can't trigger a background AOF rewrite operation. Check the above logs for more info about the error.");
e2641e09 203 return REDIS_ERR;
204 }
e7a2e7c1 205 /* We correctly switched on AOF, now wait for the rerwite to be complete
206 * in order to append data on disk. */
e394114d 207 server.aof_state = REDIS_AOF_WAIT_REWRITE;
e2641e09 208 return REDIS_OK;
209}
210
211/* Write the append only file buffer on disk.
212 *
213 * Since we are required to write the AOF before replying to the client,
214 * and the only way the client socket can get a write is entering when the
215 * the event loop, we accumulate all the AOF writes in a memory
216 * buffer and write it on disk using this function just before entering
db3c2a4f 217 * the event loop again.
218 *
219 * About the 'force' argument:
220 *
221 * When the fsync policy is set to 'everysec' we may delay the flush if there
222 * is still an fsync() going on in the background thread, since for instance
223 * on Linux write(2) will be blocked by the background fsync anyway.
224 * When this happens we remember that there is some aof buffer to be
225 * flushed ASAP, and will try to do that in the serverCron() function.
226 *
227 * However if force is set to 1 we'll write regardless of the background
228 * fsync. */
229void flushAppendOnlyFile(int force) {
e2641e09 230 ssize_t nwritten;
db3c2a4f 231 int sync_in_progress = 0;
e2641e09 232
ff2145ad 233 if (sdslen(server.aof_buf) == 0) return;
e2641e09 234
2c915bcf 235 if (server.aof_fsync == AOF_FSYNC_EVERYSEC)
db3c2a4f 236 sync_in_progress = bioPendingJobsOfType(REDIS_BIO_AOF_FSYNC) != 0;
237
2c915bcf 238 if (server.aof_fsync == AOF_FSYNC_EVERYSEC && !force) {
db3c2a4f 239 /* With this append fsync policy we do background fsyncing.
240 * If the fsync is still in progress we can try to delay
241 * the write for a couple of seconds. */
242 if (sync_in_progress) {
243 if (server.aof_flush_postponed_start == 0) {
244 /* No previous write postponinig, remember that we are
245 * postponing the flush and return. */
246 server.aof_flush_postponed_start = server.unixtime;
247 return;
248 } else if (server.unixtime - server.aof_flush_postponed_start < 2) {
e7aec180 249 /* We were already waiting for fsync to finish, but for less
db3c2a4f 250 * than two seconds this is still ok. Postpone again. */
251 return;
252 }
253 /* Otherwise fall trough, and go write since we can't wait
254 * over two seconds. */
81f32c7b 255 server.aof_delayed_fsync++;
77ca5fcb 256 redisLog(REDIS_NOTICE,"Asynchronous AOF fsync is taking too long (disk is busy?). Writing the AOF buffer without waiting for fsync to complete, this may slow down Redis.");
db3c2a4f 257 }
258 }
259 /* If you are following this code path, then we are going to write so
260 * set reset the postponed flush sentinel to zero. */
261 server.aof_flush_postponed_start = 0;
262
e2641e09 263 /* We want to perform a single write. This should be guaranteed atomic
264 * at least if the filesystem we are writing is a real physical one.
265 * While this will save us against the server being killed I don't think
266 * there is much to do about the whole server stopping for power problems
267 * or alike */
ff2145ad 268 nwritten = write(server.aof_fd,server.aof_buf,sdslen(server.aof_buf));
269 if (nwritten != (signed)sdslen(server.aof_buf)) {
e2641e09 270 /* Ooops, we are in troubles. The best thing to do for now is
271 * aborting instead of giving the illusion that everything is
272 * working as expected. */
a57225c2 273 if (nwritten == -1) {
e2641e09 274 redisLog(REDIS_WARNING,"Exiting on error writing to the append-only file: %s",strerror(errno));
a57225c2 275 } else {
e51b79f3 276 redisLog(REDIS_WARNING,"Exiting on short write while writing to "
277 "the append-only file: %s (nwritten=%ld, "
278 "expected=%ld)",
279 strerror(errno),
280 (long)nwritten,
281 (long)sdslen(server.aof_buf));
4c0c1fff
SG
282
283 if (ftruncate(server.aof_fd, server.aof_current_size) == -1) {
284 redisLog(REDIS_WARNING, "Could not remove short write "
285 "from the append-only file. Redis may refuse "
286 "to load the AOF the next time it starts. "
287 "ftruncate: %s", strerror(errno));
288 }
a57225c2
PN
289 }
290 exit(1);
e2641e09 291 }
2c915bcf 292 server.aof_current_size += nwritten;
e2641e09 293
f990782f
PN
294 /* Re-use AOF buffer when it is small enough. The maximum comes from the
295 * arena size of 4k minus some overhead (but is otherwise arbitrary). */
ff2145ad 296 if ((sdslen(server.aof_buf)+sdsavail(server.aof_buf)) < 4000) {
297 sdsclear(server.aof_buf);
f990782f 298 } else {
ff2145ad 299 sdsfree(server.aof_buf);
300 server.aof_buf = sdsempty();
f990782f
PN
301 }
302
29732248
PN
303 /* Don't fsync if no-appendfsync-on-rewrite is set to yes and there are
304 * children doing I/O in the background. */
2c915bcf 305 if (server.aof_no_fsync_on_rewrite &&
f48cd4b9 306 (server.aof_child_pid != -1 || server.rdb_child_pid != -1))
e2641e09 307 return;
29732248
PN
308
309 /* Perform the fsync if needed. */
2c915bcf 310 if (server.aof_fsync == AOF_FSYNC_ALWAYS) {
e2641e09 311 /* aof_fsync is defined as fdatasync() for Linux in order to avoid
312 * flushing metadata. */
ff2145ad 313 aof_fsync(server.aof_fd); /* Let's try to get this data on the disk */
314 server.aof_last_fsync = server.unixtime;
2c915bcf 315 } else if ((server.aof_fsync == AOF_FSYNC_EVERYSEC &&
ff2145ad 316 server.unixtime > server.aof_last_fsync)) {
317 if (!sync_in_progress) aof_background_fsync(server.aof_fd);
318 server.aof_last_fsync = server.unixtime;
e2641e09 319 }
320}
321
d1ec6c8b
PN
322sds catAppendOnlyGenericCommand(sds dst, int argc, robj **argv) {
323 char buf[32];
324 int len, j;
325 robj *o;
326
327 buf[0] = '*';
328 len = 1+ll2string(buf+1,sizeof(buf)-1,argc);
329 buf[len++] = '\r';
330 buf[len++] = '\n';
331 dst = sdscatlen(dst,buf,len);
332
e2641e09 333 for (j = 0; j < argc; j++) {
d1ec6c8b
PN
334 o = getDecodedObject(argv[j]);
335 buf[0] = '$';
336 len = 1+ll2string(buf+1,sizeof(buf)-1,sdslen(o->ptr));
337 buf[len++] = '\r';
338 buf[len++] = '\n';
339 dst = sdscatlen(dst,buf,len);
340 dst = sdscatlen(dst,o->ptr,sdslen(o->ptr));
341 dst = sdscatlen(dst,"\r\n",2);
e2641e09 342 decrRefCount(o);
343 }
d1ec6c8b 344 return dst;
e2641e09 345}
346
12d293ca 347/* Create the sds representation of an PEXPIREAT command, using
348 * 'seconds' as time to live and 'cmd' to understand what command
349 * we are translating into a PEXPIREAT.
350 *
351 * This command is used in order to translate EXPIRE and PEXPIRE commands
352 * into PEXPIREAT command so that we retain precision in the append only
353 * file, and the time is always absolute and not relative. */
354sds catAppendOnlyExpireAtCommand(sds buf, struct redisCommand *cmd, robj *key, robj *seconds) {
355 long long when;
e2641e09 356 robj *argv[3];
357
358 /* Make sure we can use strtol */
359 seconds = getDecodedObject(seconds);
12d293ca 360 when = strtoll(seconds->ptr,NULL,10);
361 /* Convert argument into milliseconds for EXPIRE, SETEX, EXPIREAT */
362 if (cmd->proc == expireCommand || cmd->proc == setexCommand ||
363 cmd->proc == expireatCommand)
364 {
365 when *= 1000;
366 }
367 /* Convert into absolute time for EXPIRE, PEXPIRE, SETEX, PSETEX */
368 if (cmd->proc == expireCommand || cmd->proc == pexpireCommand ||
369 cmd->proc == setexCommand || cmd->proc == psetexCommand)
370 {
371 when += mstime();
372 }
e2641e09 373 decrRefCount(seconds);
374
12d293ca 375 argv[0] = createStringObject("PEXPIREAT",9);
e2641e09 376 argv[1] = key;
12d293ca 377 argv[2] = createStringObjectFromLongLong(when);
378 buf = catAppendOnlyGenericCommand(buf, 3, argv);
e2641e09 379 decrRefCount(argv[0]);
380 decrRefCount(argv[2]);
381 return buf;
382}
383
384void feedAppendOnlyFile(struct redisCommand *cmd, int dictid, robj **argv, int argc) {
087f4140 385 sds buf = sdsempty();
e2641e09 386 robj *tmpargv[3];
387
388 /* The DB this command was targetting is not the same as the last command
389 * we appendend. To issue a SELECT command is needed. */
ff2145ad 390 if (dictid != server.aof_selected_db) {
e2641e09 391 char seldb[64];
392
393 snprintf(seldb,sizeof(seldb),"%d",dictid);
394 buf = sdscatprintf(buf,"*2\r\n$6\r\nSELECT\r\n$%lu\r\n%s\r\n",
395 (unsigned long)strlen(seldb),seldb);
ff2145ad 396 server.aof_selected_db = dictid;
e2641e09 397 }
398
12d293ca 399 if (cmd->proc == expireCommand || cmd->proc == pexpireCommand ||
400 cmd->proc == expireatCommand) {
401 /* Translate EXPIRE/PEXPIRE/EXPIREAT into PEXPIREAT */
402 buf = catAppendOnlyExpireAtCommand(buf,cmd,argv[1],argv[2]);
403 } else if (cmd->proc == setexCommand || cmd->proc == psetexCommand) {
404 /* Translate SETEX/PSETEX to SET and PEXPIREAT */
e2641e09 405 tmpargv[0] = createStringObject("SET",3);
406 tmpargv[1] = argv[1];
407 tmpargv[2] = argv[3];
408 buf = catAppendOnlyGenericCommand(buf,3,tmpargv);
409 decrRefCount(tmpargv[0]);
12d293ca 410 buf = catAppendOnlyExpireAtCommand(buf,cmd,argv[1],argv[2]);
e2641e09 411 } else {
12d293ca 412 /* All the other commands don't need translation or need the
413 * same translation already operated in the command vector
414 * for the replication itself. */
e2641e09 415 buf = catAppendOnlyGenericCommand(buf,argc,argv);
416 }
417
418 /* Append to the AOF buffer. This will be flushed on disk just before
419 * of re-entering the event loop, so before the client will get a
e394114d 420 * positive reply about the operation performed. */
421 if (server.aof_state == REDIS_AOF_ON)
ff2145ad 422 server.aof_buf = sdscatlen(server.aof_buf,buf,sdslen(buf));
e2641e09 423
424 /* If a background append only file rewriting is in progress we want to
425 * accumulate the differences between the child DB and the current one
426 * in a buffer, so that when the child process will do its work we
427 * can append the differences to the new append only file. */
ff2145ad 428 if (server.aof_child_pid != -1)
edb95253 429 aofRewriteBufferAppend((unsigned char*)buf,sdslen(buf));
e2641e09 430
431 sdsfree(buf);
432}
433
27fc5bf5 434/* ----------------------------------------------------------------------------
435 * AOF loading
436 * ------------------------------------------------------------------------- */
437
e2641e09 438/* In Redis commands are always executed in the context of a client, so in
439 * order to load the append only file we need to create a fake client. */
440struct redisClient *createFakeClient(void) {
441 struct redisClient *c = zmalloc(sizeof(*c));
442
443 selectDb(c,0);
444 c->fd = -1;
445 c->querybuf = sdsempty();
9fa9ccb0 446 c->querybuf_peak = 0;
e2641e09 447 c->argc = 0;
448 c->argv = NULL;
2403fc9f 449 c->bufpos = 0;
e2641e09 450 c->flags = 0;
451 /* We set the fake client as a slave waiting for the synchronization
452 * so that Redis will not try to send replies to this client. */
453 c->replstate = REDIS_REPL_WAIT_BGSAVE_START;
454 c->reply = listCreate();
3853c168 455 c->reply_bytes = 0;
7eac2a75 456 c->obuf_soft_limit_reached_time = 0;
b67d2345 457 c->watched_keys = listCreate();
e2641e09 458 listSetFreeMethod(c->reply,decrRefCount);
459 listSetDupMethod(c->reply,dupClientReplyValue);
460 initClientMultiState(c);
461 return c;
462}
463
464void freeFakeClient(struct redisClient *c) {
465 sdsfree(c->querybuf);
466 listRelease(c->reply);
b67d2345 467 listRelease(c->watched_keys);
e2641e09 468 freeClientMultiState(c);
469 zfree(c);
470}
471
472/* Replay the append log file. On error REDIS_OK is returned. On non fatal
473 * error (the append only file is zero-length) REDIS_ERR is returned. On
474 * fatal error an error message is logged and the program exists. */
475int loadAppendOnlyFile(char *filename) {
476 struct redisClient *fakeClient;
477 FILE *fp = fopen(filename,"r");
478 struct redis_stat sb;
e394114d 479 int old_aof_state = server.aof_state;
97e7f8ae 480 long loops = 0;
e2641e09 481
4aec2ec8 482 if (fp && redis_fstat(fileno(fp),&sb) != -1 && sb.st_size == 0) {
2c915bcf 483 server.aof_current_size = 0;
4aec2ec8 484 fclose(fp);
e2641e09 485 return REDIS_ERR;
4aec2ec8 486 }
e2641e09 487
488 if (fp == NULL) {
489 redisLog(REDIS_WARNING,"Fatal error: can't open the append log file for reading: %s",strerror(errno));
490 exit(1);
491 }
492
493 /* Temporarily disable AOF, to prevent EXEC from feeding a MULTI
494 * to the same file we're about to read. */
e394114d 495 server.aof_state = REDIS_AOF_OFF;
e2641e09 496
497 fakeClient = createFakeClient();
97e7f8ae 498 startLoading(fp);
499
e2641e09 500 while(1) {
501 int argc, j;
502 unsigned long len;
503 robj **argv;
504 char buf[128];
505 sds argsds;
506 struct redisCommand *cmd;
e2641e09 507
97e7f8ae 508 /* Serve the clients from time to time */
509 if (!(loops++ % 1000)) {
510 loadingProgress(ftello(fp));
511 aeProcessEvents(server.el, AE_FILE_EVENTS|AE_DONT_WAIT);
512 }
513
e2641e09 514 if (fgets(buf,sizeof(buf),fp) == NULL) {
515 if (feof(fp))
516 break;
517 else
518 goto readerr;
519 }
520 if (buf[0] != '*') goto fmterr;
521 argc = atoi(buf+1);
be6f6395
KM
522 if (argc < 1) goto fmterr;
523
e2641e09 524 argv = zmalloc(sizeof(robj*)*argc);
525 for (j = 0; j < argc; j++) {
526 if (fgets(buf,sizeof(buf),fp) == NULL) goto readerr;
527 if (buf[0] != '$') goto fmterr;
528 len = strtol(buf+1,NULL,10);
529 argsds = sdsnewlen(NULL,len);
530 if (len && fread(argsds,len,1,fp) == 0) goto fmterr;
531 argv[j] = createObject(REDIS_STRING,argsds);
532 if (fread(buf,2,1,fp) == 0) goto fmterr; /* discard CRLF */
533 }
534
535 /* Command lookup */
536 cmd = lookupCommand(argv[0]->ptr);
537 if (!cmd) {
538 redisLog(REDIS_WARNING,"Unknown command '%s' reading the append only file", argv[0]->ptr);
539 exit(1);
540 }
e2641e09 541 /* Run the command in the context of a fake client */
542 fakeClient->argc = argc;
543 fakeClient->argv = argv;
544 cmd->proc(fakeClient);
57b07380
PN
545
546 /* The fake client should not have a reply */
547 redisAssert(fakeClient->bufpos == 0 && listLength(fakeClient->reply) == 0);
ef67a2fc 548 /* The fake client should never get blocked */
549 redisAssert((fakeClient->flags & REDIS_BLOCKED) == 0);
57b07380 550
45b0f6fb
PN
551 /* Clean up. Command code may have changed argv/argc so we use the
552 * argv/argc of the client instead of the local variables. */
553 for (j = 0; j < fakeClient->argc; j++)
554 decrRefCount(fakeClient->argv[j]);
555 zfree(fakeClient->argv);
e2641e09 556 }
557
558 /* This point can only be reached when EOF is reached without errors.
559 * If the client is in the middle of a MULTI/EXEC, log error and quit. */
560 if (fakeClient->flags & REDIS_MULTI) goto readerr;
561
562 fclose(fp);
563 freeFakeClient(fakeClient);
e394114d 564 server.aof_state = old_aof_state;
97e7f8ae 565 stopLoading();
b333e239 566 aofUpdateCurrentSize();
2c915bcf 567 server.aof_rewrite_base_size = server.aof_current_size;
e2641e09 568 return REDIS_OK;
569
570readerr:
571 if (feof(fp)) {
572 redisLog(REDIS_WARNING,"Unexpected end of file reading the append only file");
573 } else {
574 redisLog(REDIS_WARNING,"Unrecoverable error reading the append only file: %s", strerror(errno));
575 }
576 exit(1);
577fmterr:
412e457c 578 redisLog(REDIS_WARNING,"Bad file format reading the append only file: make a backup of your AOF file, then use ./redis-check-aof --fix <filename>");
e2641e09 579 exit(1);
580}
581
27fc5bf5 582/* ----------------------------------------------------------------------------
583 * AOF rewrite
584 * ------------------------------------------------------------------------- */
585
7271198c
PN
586/* Delegate writing an object to writing a bulk string or bulk long long.
587 * This is not placed in rio.c since that adds the redis.h dependency. */
588int rioWriteBulkObject(rio *r, robj *obj) {
589 /* Avoid using getDecodedObject to help copy-on-write (we are often
590 * in a child process when this function is called). */
591 if (obj->encoding == REDIS_ENCODING_INT) {
592 return rioWriteBulkLongLong(r,(long)obj->ptr);
593 } else if (obj->encoding == REDIS_ENCODING_RAW) {
594 return rioWriteBulkString(r,obj->ptr,sdslen(obj->ptr));
595 } else {
596 redisPanic("Unknown string encoding");
597 }
598}
599
5b250096 600/* Emit the commands needed to rebuild a list object.
601 * The function returns 0 on error, 1 on success. */
602int rewriteListObject(rio *r, robj *key, robj *o) {
603 long long count = 0, items = listTypeLength(o);
604
605 if (o->encoding == REDIS_ENCODING_ZIPLIST) {
606 unsigned char *zl = o->ptr;
607 unsigned char *p = ziplistIndex(zl,0);
608 unsigned char *vstr;
609 unsigned int vlen;
610 long long vlong;
611
612 while(ziplistGet(p,&vstr,&vlen,&vlong)) {
613 if (count == 0) {
2c915bcf 614 int cmd_items = (items > REDIS_AOF_REWRITE_ITEMS_PER_CMD) ?
615 REDIS_AOF_REWRITE_ITEMS_PER_CMD : items;
8d875ccb 616
5b250096 617 if (rioWriteBulkCount(r,'*',2+cmd_items) == 0) return 0;
618 if (rioWriteBulkString(r,"RPUSH",5) == 0) return 0;
619 if (rioWriteBulkObject(r,key) == 0) return 0;
620 }
621 if (vstr) {
622 if (rioWriteBulkString(r,(char*)vstr,vlen) == 0) return 0;
623 } else {
624 if (rioWriteBulkLongLong(r,vlong) == 0) return 0;
625 }
626 p = ziplistNext(zl,p);
2c915bcf 627 if (++count == REDIS_AOF_REWRITE_ITEMS_PER_CMD) count = 0;
5b250096 628 items--;
629 }
630 } else if (o->encoding == REDIS_ENCODING_LINKEDLIST) {
631 list *list = o->ptr;
632 listNode *ln;
633 listIter li;
634
635 listRewind(list,&li);
636 while((ln = listNext(&li))) {
637 robj *eleobj = listNodeValue(ln);
638
38c06fa0 639 if (count == 0) {
2c915bcf 640 int cmd_items = (items > REDIS_AOF_REWRITE_ITEMS_PER_CMD) ?
641 REDIS_AOF_REWRITE_ITEMS_PER_CMD : items;
8d875ccb 642
38c06fa0 643 if (rioWriteBulkCount(r,'*',2+cmd_items) == 0) return 0;
644 if (rioWriteBulkString(r,"RPUSH",5) == 0) return 0;
645 if (rioWriteBulkObject(r,key) == 0) return 0;
646 }
5b250096 647 if (rioWriteBulkObject(r,eleobj) == 0) return 0;
2c915bcf 648 if (++count == REDIS_AOF_REWRITE_ITEMS_PER_CMD) count = 0;
38c06fa0 649 items--;
5b250096 650 }
651 } else {
652 redisPanic("Unknown list encoding");
653 }
654 return 1;
655}
656
8d875ccb 657/* Emit the commands needed to rebuild a set object.
658 * The function returns 0 on error, 1 on success. */
659int rewriteSetObject(rio *r, robj *key, robj *o) {
660 long long count = 0, items = setTypeSize(o);
661
662 if (o->encoding == REDIS_ENCODING_INTSET) {
663 int ii = 0;
664 int64_t llval;
665
666 while(intsetGet(o->ptr,ii++,&llval)) {
667 if (count == 0) {
2c915bcf 668 int cmd_items = (items > REDIS_AOF_REWRITE_ITEMS_PER_CMD) ?
669 REDIS_AOF_REWRITE_ITEMS_PER_CMD : items;
8d875ccb 670
671 if (rioWriteBulkCount(r,'*',2+cmd_items) == 0) return 0;
672 if (rioWriteBulkString(r,"SADD",4) == 0) return 0;
673 if (rioWriteBulkObject(r,key) == 0) return 0;
674 }
675 if (rioWriteBulkLongLong(r,llval) == 0) return 0;
2c915bcf 676 if (++count == REDIS_AOF_REWRITE_ITEMS_PER_CMD) count = 0;
8d875ccb 677 items--;
678 }
679 } else if (o->encoding == REDIS_ENCODING_HT) {
680 dictIterator *di = dictGetIterator(o->ptr);
681 dictEntry *de;
682
683 while((de = dictNext(di)) != NULL) {
684 robj *eleobj = dictGetKey(de);
685 if (count == 0) {
2c915bcf 686 int cmd_items = (items > REDIS_AOF_REWRITE_ITEMS_PER_CMD) ?
687 REDIS_AOF_REWRITE_ITEMS_PER_CMD : items;
8d875ccb 688
689 if (rioWriteBulkCount(r,'*',2+cmd_items) == 0) return 0;
690 if (rioWriteBulkString(r,"SADD",4) == 0) return 0;
691 if (rioWriteBulkObject(r,key) == 0) return 0;
692 }
693 if (rioWriteBulkObject(r,eleobj) == 0) return 0;
2c915bcf 694 if (++count == REDIS_AOF_REWRITE_ITEMS_PER_CMD) count = 0;
8d875ccb 695 items--;
696 }
697 dictReleaseIterator(di);
698 } else {
699 redisPanic("Unknown set encoding");
700 }
701 return 1;
702}
703
7df9b141 704/* Emit the commands needed to rebuild a sorted set object.
705 * The function returns 0 on error, 1 on success. */
706int rewriteSortedSetObject(rio *r, robj *key, robj *o) {
707 long long count = 0, items = zsetLength(o);
708
709 if (o->encoding == REDIS_ENCODING_ZIPLIST) {
710 unsigned char *zl = o->ptr;
711 unsigned char *eptr, *sptr;
712 unsigned char *vstr;
713 unsigned int vlen;
714 long long vll;
715 double score;
716
717 eptr = ziplistIndex(zl,0);
718 redisAssert(eptr != NULL);
719 sptr = ziplistNext(zl,eptr);
720 redisAssert(sptr != NULL);
721
722 while (eptr != NULL) {
723 redisAssert(ziplistGet(eptr,&vstr,&vlen,&vll));
724 score = zzlGetScore(sptr);
725
726 if (count == 0) {
2c915bcf 727 int cmd_items = (items > REDIS_AOF_REWRITE_ITEMS_PER_CMD) ?
728 REDIS_AOF_REWRITE_ITEMS_PER_CMD : items;
7df9b141 729
730 if (rioWriteBulkCount(r,'*',2+cmd_items*2) == 0) return 0;
731 if (rioWriteBulkString(r,"ZADD",4) == 0) return 0;
732 if (rioWriteBulkObject(r,key) == 0) return 0;
733 }
734 if (rioWriteBulkDouble(r,score) == 0) return 0;
735 if (vstr != NULL) {
736 if (rioWriteBulkString(r,(char*)vstr,vlen) == 0) return 0;
737 } else {
738 if (rioWriteBulkLongLong(r,vll) == 0) return 0;
739 }
740 zzlNext(zl,&eptr,&sptr);
2c915bcf 741 if (++count == REDIS_AOF_REWRITE_ITEMS_PER_CMD) count = 0;
7df9b141 742 items--;
743 }
744 } else if (o->encoding == REDIS_ENCODING_SKIPLIST) {
745 zset *zs = o->ptr;
746 dictIterator *di = dictGetIterator(zs->dict);
747 dictEntry *de;
748
749 while((de = dictNext(di)) != NULL) {
750 robj *eleobj = dictGetKey(de);
751 double *score = dictGetVal(de);
752
753 if (count == 0) {
2c915bcf 754 int cmd_items = (items > REDIS_AOF_REWRITE_ITEMS_PER_CMD) ?
755 REDIS_AOF_REWRITE_ITEMS_PER_CMD : items;
7df9b141 756
757 if (rioWriteBulkCount(r,'*',2+cmd_items*2) == 0) return 0;
758 if (rioWriteBulkString(r,"ZADD",4) == 0) return 0;
759 if (rioWriteBulkObject(r,key) == 0) return 0;
760 }
761 if (rioWriteBulkDouble(r,*score) == 0) return 0;
762 if (rioWriteBulkObject(r,eleobj) == 0) return 0;
2c915bcf 763 if (++count == REDIS_AOF_REWRITE_ITEMS_PER_CMD) count = 0;
7df9b141 764 items--;
765 }
766 dictReleaseIterator(di);
767 } else {
768 redisPanic("Unknown sorted zset encoding");
769 }
770 return 1;
771}
772
addc0327 773/* Write either the key or the value of the currently selected item of an hash.
774 * The 'hi' argument passes a valid Redis hash iterator.
775 * The 'what' filed specifies if to write a key or a value and can be
776 * either REDIS_HASH_KEY or REDIS_HASH_VALUE.
777 *
778 * The function returns 0 on error, non-zero on success. */
ebd85e9a
PN
779static int rioWriteHashIteratorCursor(rio *r, hashTypeIterator *hi, int what) {
780 if (hi->encoding == REDIS_ENCODING_ZIPLIST) {
781 unsigned char *vstr = NULL;
782 unsigned int vlen = UINT_MAX;
783 long long vll = LLONG_MAX;
784
785 hashTypeCurrentFromZiplist(hi, what, &vstr, &vlen, &vll);
786 if (vstr) {
787 return rioWriteBulkString(r, (char*)vstr, vlen);
788 } else {
789 return rioWriteBulkLongLong(r, vll);
790 }
791
792 } else if (hi->encoding == REDIS_ENCODING_HT) {
793 robj *value;
794
795 hashTypeCurrentFromHashTable(hi, what, &value);
796 return rioWriteBulkObject(r, value);
797 }
798
799 redisPanic("Unknown hash encoding");
800 return 0;
801}
802
54ecc0e7 803/* Emit the commands needed to rebuild a hash object.
804 * The function returns 0 on error, 1 on success. */
805int rewriteHashObject(rio *r, robj *key, robj *o) {
ebd85e9a 806 hashTypeIterator *hi;
54ecc0e7 807 long long count = 0, items = hashTypeLength(o);
808
ebd85e9a
PN
809 hi = hashTypeInitIterator(o);
810 while (hashTypeNext(hi) != REDIS_ERR) {
811 if (count == 0) {
812 int cmd_items = (items > REDIS_AOF_REWRITE_ITEMS_PER_CMD) ?
813 REDIS_AOF_REWRITE_ITEMS_PER_CMD : items;
54ecc0e7 814
ebd85e9a
PN
815 if (rioWriteBulkCount(r,'*',2+cmd_items*2) == 0) return 0;
816 if (rioWriteBulkString(r,"HMSET",5) == 0) return 0;
817 if (rioWriteBulkObject(r,key) == 0) return 0;
54ecc0e7 818 }
54ecc0e7 819
ebd85e9a
PN
820 if (rioWriteHashIteratorCursor(r, hi, REDIS_HASH_KEY) == 0) return 0;
821 if (rioWriteHashIteratorCursor(r, hi, REDIS_HASH_VALUE) == 0) return 0;
822 if (++count == REDIS_AOF_REWRITE_ITEMS_PER_CMD) count = 0;
823 items--;
824 }
54ecc0e7 825
ebd85e9a 826 hashTypeReleaseIterator(hi);
54ecc0e7 827
54ecc0e7 828 return 1;
829}
830
e2641e09 831/* Write a sequence of commands able to fully rebuild the dataset into
5b250096 832 * "filename". Used both by REWRITEAOF and BGREWRITEAOF.
833 *
834 * In order to minimize the number of commands needed in the rewritten
835 * log Redis uses variadic commands when possible, such as RPUSH, SADD
2c915bcf 836 * and ZADD. However at max REDIS_AOF_REWRITE_ITEMS_PER_CMD items per time
5b250096 837 * are inserted using a single command. */
e2641e09 838int rewriteAppendOnlyFile(char *filename) {
839 dictIterator *di = NULL;
840 dictEntry *de;
7271198c 841 rio aof;
e2641e09 842 FILE *fp;
843 char tmpfile[256];
844 int j;
4be855e7 845 long long now = mstime();
e2641e09 846
847 /* Note that we have to use a different temp name here compared to the
848 * one used by rewriteAppendOnlyFileBackground() function. */
849 snprintf(tmpfile,256,"temp-rewriteaof-%d.aof", (int) getpid());
850 fp = fopen(tmpfile,"w");
851 if (!fp) {
e51b79f3 852 redisLog(REDIS_WARNING, "Opening the temp file for AOF rewrite in rewriteAppendOnlyFile(): %s", strerror(errno));
e2641e09 853 return REDIS_ERR;
854 }
7271198c 855
f96a8a80 856 rioInitWithFile(&aof,fp);
e2641e09 857 for (j = 0; j < server.dbnum; j++) {
858 char selectcmd[] = "*2\r\n$6\r\nSELECT\r\n";
859 redisDb *db = server.db+j;
860 dict *d = db->dict;
861 if (dictSize(d) == 0) continue;
591f29e0 862 di = dictGetSafeIterator(d);
e2641e09 863 if (!di) {
864 fclose(fp);
865 return REDIS_ERR;
866 }
867
868 /* SELECT the new DB */
7271198c
PN
869 if (rioWrite(&aof,selectcmd,sizeof(selectcmd)-1) == 0) goto werr;
870 if (rioWriteBulkLongLong(&aof,j) == 0) goto werr;
e2641e09 871
872 /* Iterate this DB writing every entry */
873 while((de = dictNext(di)) != NULL) {
6901fe77 874 sds keystr;
e2641e09 875 robj key, *o;
4be855e7 876 long long expiretime;
e2641e09 877
c0ba9ebe 878 keystr = dictGetKey(de);
879 o = dictGetVal(de);
e2641e09 880 initStaticStringObject(key,keystr);
16d77878 881
e2641e09 882 expiretime = getExpire(db,&key);
883
884 /* Save the key and associated value */
885 if (o->type == REDIS_STRING) {
886 /* Emit a SET command */
887 char cmd[]="*3\r\n$3\r\nSET\r\n";
7271198c 888 if (rioWrite(&aof,cmd,sizeof(cmd)-1) == 0) goto werr;
e2641e09 889 /* Key and value */
7271198c
PN
890 if (rioWriteBulkObject(&aof,&key) == 0) goto werr;
891 if (rioWriteBulkObject(&aof,o) == 0) goto werr;
e2641e09 892 } else if (o->type == REDIS_LIST) {
5b250096 893 if (rewriteListObject(&aof,&key,o) == 0) goto werr;
e2641e09 894 } else if (o->type == REDIS_SET) {
8d875ccb 895 if (rewriteSetObject(&aof,&key,o) == 0) goto werr;
e2641e09 896 } else if (o->type == REDIS_ZSET) {
7df9b141 897 if (rewriteSortedSetObject(&aof,&key,o) == 0) goto werr;
e2641e09 898 } else if (o->type == REDIS_HASH) {
54ecc0e7 899 if (rewriteHashObject(&aof,&key,o) == 0) goto werr;
e2641e09 900 } else {
901 redisPanic("Unknown object type");
902 }
903 /* Save the expire time */
904 if (expiretime != -1) {
12d293ca 905 char cmd[]="*3\r\n$9\r\nPEXPIREAT\r\n";
e2641e09 906 /* If this key is already expired skip it */
907 if (expiretime < now) continue;
7271198c
PN
908 if (rioWrite(&aof,cmd,sizeof(cmd)-1) == 0) goto werr;
909 if (rioWriteBulkObject(&aof,&key) == 0) goto werr;
b0b74486 910 if (rioWriteBulkLongLong(&aof,expiretime) == 0) goto werr;
e2641e09 911 }
e2641e09 912 }
913 dictReleaseIterator(di);
914 }
915
916 /* Make sure data will not remain on the OS's output buffers */
917 fflush(fp);
918 aof_fsync(fileno(fp));
919 fclose(fp);
920
921 /* Use RENAME to make sure the DB file is changed atomically only
922 * if the generate DB file is ok. */
923 if (rename(tmpfile,filename) == -1) {
924 redisLog(REDIS_WARNING,"Error moving temp append only file on the final destination: %s", strerror(errno));
925 unlink(tmpfile);
926 return REDIS_ERR;
927 }
928 redisLog(REDIS_NOTICE,"SYNC append only file rewrite performed");
929 return REDIS_OK;
930
931werr:
932 fclose(fp);
933 unlink(tmpfile);
934 redisLog(REDIS_WARNING,"Write error writing append only file on disk: %s", strerror(errno));
935 if (di) dictReleaseIterator(di);
936 return REDIS_ERR;
937}
938
939/* This is how rewriting of the append only file in background works:
940 *
941 * 1) The user calls BGREWRITEAOF
942 * 2) Redis calls this function, that forks():
943 * 2a) the child rewrite the append only file in a temp file.
ff2145ad 944 * 2b) the parent accumulates differences in server.aof_rewrite_buf.
e2641e09 945 * 3) When the child finished '2a' exists.
946 * 4) The parent will trap the exit code, if it's OK, will append the
ff2145ad 947 * data accumulated into server.aof_rewrite_buf into the temp file, and
e2641e09 948 * finally will rename(2) the temp file in the actual file name.
949 * The the new file is reopened as the new append only file. Profit!
950 */
951int rewriteAppendOnlyFileBackground(void) {
952 pid_t childpid;
615e414c 953 long long start;
e2641e09 954
ff2145ad 955 if (server.aof_child_pid != -1) return REDIS_ERR;
615e414c 956 start = ustime();
e2641e09 957 if ((childpid = fork()) == 0) {
e2641e09 958 char tmpfile[256];
959
615e414c 960 /* Child */
a5639e7d
PN
961 if (server.ipfd > 0) close(server.ipfd);
962 if (server.sofd > 0) close(server.sofd);
e2641e09 963 snprintf(tmpfile,256,"temp-rewriteaof-bg-%d.aof", (int) getpid());
964 if (rewriteAppendOnlyFile(tmpfile) == REDIS_OK) {
5ab4151d 965 size_t private_dirty = zmalloc_get_private_dirty();
966
967 if (private_dirty) {
968 redisLog(REDIS_NOTICE,
969 "AOF rewrite: %lu MB of memory used by copy-on-write",
970 private_dirty/(1024*1024));
971 }
55951f90 972 exitFromChild(0);
e2641e09 973 } else {
55951f90 974 exitFromChild(1);
e2641e09 975 }
976 } else {
977 /* Parent */
615e414c 978 server.stat_fork_time = ustime()-start;
e2641e09 979 if (childpid == -1) {
980 redisLog(REDIS_WARNING,
981 "Can't rewrite append only file in background: fork: %s",
982 strerror(errno));
983 return REDIS_ERR;
984 }
985 redisLog(REDIS_NOTICE,
986 "Background append only file rewriting started by pid %d",childpid);
2c915bcf 987 server.aof_rewrite_scheduled = 0;
6b4d92e2 988 server.aof_rewrite_time_start = time(NULL);
ff2145ad 989 server.aof_child_pid = childpid;
e2641e09 990 updateDictResizePolicy();
991 /* We set appendseldb to -1 in order to force the next call to the
992 * feedAppendOnlyFile() to issue a SELECT command, so the differences
ff2145ad 993 * accumulated by the parent into server.aof_rewrite_buf will start
e2641e09 994 * with a SELECT statement and it will be safe to merge. */
ff2145ad 995 server.aof_selected_db = -1;
e2641e09 996 return REDIS_OK;
997 }
998 return REDIS_OK; /* unreached */
999}
1000
1001void bgrewriteaofCommand(redisClient *c) {
ff2145ad 1002 if (server.aof_child_pid != -1) {
3ab20376 1003 addReplyError(c,"Background append only file rewriting already in progress");
f48cd4b9 1004 } else if (server.rdb_child_pid != -1) {
2c915bcf 1005 server.aof_rewrite_scheduled = 1;
9e40bce3 1006 addReplyStatus(c,"Background append only file rewriting scheduled");
b333e239 1007 } else if (rewriteAppendOnlyFileBackground() == REDIS_OK) {
3ab20376 1008 addReplyStatus(c,"Background append only file rewriting started");
e2641e09 1009 } else {
1010 addReply(c,shared.err);
1011 }
1012}
1013
1014void aofRemoveTempFile(pid_t childpid) {
1015 char tmpfile[256];
1016
1017 snprintf(tmpfile,256,"temp-rewriteaof-bg-%d.aof", (int) childpid);
1018 unlink(tmpfile);
1019}
1020
2c915bcf 1021/* Update the server.aof_current_size filed explicitly using stat(2)
b333e239 1022 * to check the size of the file. This is useful after a rewrite or after
1023 * a restart, normally the size is updated just adding the write length
2f0f0d95 1024 * to the current length, that is much faster. */
b333e239 1025void aofUpdateCurrentSize(void) {
1026 struct redis_stat sb;
1027
ff2145ad 1028 if (redis_fstat(server.aof_fd,&sb) == -1) {
e51b79f3 1029 redisLog(REDIS_WARNING,"Unable to obtain the AOF file length. stat: %s",
b333e239 1030 strerror(errno));
1031 } else {
2c915bcf 1032 server.aof_current_size = sb.st_size;
b333e239 1033 }
1034}
1035
e2641e09 1036/* A background append only file rewriting (BGREWRITEAOF) terminated its work.
1037 * Handle this. */
36c17a53 1038void backgroundRewriteDoneHandler(int exitcode, int bysignal) {
e2641e09 1039 if (!bysignal && exitcode == 0) {
b454056d 1040 int newfd, oldfd;
e2641e09 1041 char tmpfile[256];
b454056d 1042 long long now = ustime();
e2641e09 1043
1044 redisLog(REDIS_NOTICE,
b454056d
PN
1045 "Background AOF rewrite terminated with success");
1046
986630af 1047 /* Flush the differences accumulated by the parent to the
1048 * rewritten AOF. */
1049 snprintf(tmpfile,256,"temp-rewriteaof-bg-%d.aof",
ff2145ad 1050 (int)server.aof_child_pid);
b454056d
PN
1051 newfd = open(tmpfile,O_WRONLY|O_APPEND);
1052 if (newfd == -1) {
1053 redisLog(REDIS_WARNING,
1054 "Unable to open the temporary AOF produced by the child: %s", strerror(errno));
e2641e09 1055 goto cleanup;
1056 }
b454056d 1057
edb95253 1058 if (aofRewriteBufferWrite(newfd) == -1) {
1059 redisLog(REDIS_WARNING,
1060 "Error trying to flush the parent diff to the rewritten AOF: %s", strerror(errno));
b454056d 1061 close(newfd);
e2641e09 1062 goto cleanup;
1063 }
b454056d
PN
1064
1065 redisLog(REDIS_NOTICE,
edb95253 1066 "Parent diff successfully flushed to the rewritten AOF (%lu bytes)", aofRewriteBufferSize());
b454056d
PN
1067
1068 /* The only remaining thing to do is to rename the temporary file to
1069 * the configured file and switch the file descriptor used to do AOF
986630af 1070 * writes. We don't want close(2) or rename(2) calls to block the
1071 * server on old file deletion.
1072 *
1073 * There are two possible scenarios:
b454056d
PN
1074 *
1075 * 1) AOF is DISABLED and this was a one time rewrite. The temporary
1076 * file will be renamed to the configured file. When this file already
1077 * exists, it will be unlinked, which may block the server.
1078 *
1079 * 2) AOF is ENABLED and the rewritten AOF will immediately start
1080 * receiving writes. After the temporary file is renamed to the
1081 * configured file, the original AOF file descriptor will be closed.
1082 * Since this will be the last reference to that file, closing it
1083 * causes the underlying file to be unlinked, which may block the
1084 * server.
1085 *
1086 * To mitigate the blocking effect of the unlink operation (either
1087 * caused by rename(2) in scenario 1, or by close(2) in scenario 2), we
986630af 1088 * use a background thread to take care of this. First, we
b454056d
PN
1089 * make scenario 1 identical to scenario 2 by opening the target file
1090 * when it exists. The unlink operation after the rename(2) will then
1091 * be executed upon calling close(2) for its descriptor. Everything to
1092 * guarantee atomicity for this switch has already happened by then, so
1093 * we don't care what the outcome or duration of that close operation
1094 * is, as long as the file descriptor is released again. */
ff2145ad 1095 if (server.aof_fd == -1) {
b454056d 1096 /* AOF disabled */
b454056d 1097
986630af 1098 /* Don't care if this fails: oldfd will be -1 and we handle that.
1099 * One notable case of -1 return is if the old file does
1100 * not exist. */
2c915bcf 1101 oldfd = open(server.aof_filename,O_RDONLY|O_NONBLOCK);
b454056d
PN
1102 } else {
1103 /* AOF enabled */
986630af 1104 oldfd = -1; /* We'll set this to the current AOF filedes later. */
b454056d
PN
1105 }
1106
1107 /* Rename the temporary file. This will not unlink the target file if
1108 * it exists, because we reference it with "oldfd". */
2c915bcf 1109 if (rename(tmpfile,server.aof_filename) == -1) {
b454056d 1110 redisLog(REDIS_WARNING,
e51b79f3 1111 "Error trying to rename the temporary AOF file: %s", strerror(errno));
b454056d 1112 close(newfd);
986630af 1113 if (oldfd != -1) close(oldfd);
e2641e09 1114 goto cleanup;
1115 }
b454056d 1116
ff2145ad 1117 if (server.aof_fd == -1) {
986630af 1118 /* AOF disabled, we don't need to set the AOF file descriptor
1119 * to this new file, so we can close it. */
b454056d
PN
1120 close(newfd);
1121 } else {
986630af 1122 /* AOF enabled, replace the old fd with the new one. */
ff2145ad 1123 oldfd = server.aof_fd;
1124 server.aof_fd = newfd;
2c915bcf 1125 if (server.aof_fsync == AOF_FSYNC_ALWAYS)
4b77700a 1126 aof_fsync(newfd);
2c915bcf 1127 else if (server.aof_fsync == AOF_FSYNC_EVERYSEC)
4b77700a 1128 aof_background_fsync(newfd);
ff2145ad 1129 server.aof_selected_db = -1; /* Make sure SELECT is re-issued */
b333e239 1130 aofUpdateCurrentSize();
2c915bcf 1131 server.aof_rewrite_base_size = server.aof_current_size;
5f54a5e6
PN
1132
1133 /* Clear regular AOF buffer since its contents was just written to
1134 * the new AOF from the background rewrite buffer. */
ff2145ad 1135 sdsfree(server.aof_buf);
1136 server.aof_buf = sdsempty();
e2641e09 1137 }
b454056d 1138
f00b0844
SG
1139 server.aof_lastbgrewrite_status = REDIS_OK;
1140
e51b79f3 1141 redisLog(REDIS_NOTICE, "Background AOF rewrite finished successfully");
e394114d 1142 /* Change state from WAIT_REWRITE to ON if needed */
1143 if (server.aof_state == REDIS_AOF_WAIT_REWRITE)
1144 server.aof_state = REDIS_AOF_ON;
b454056d
PN
1145
1146 /* Asynchronously close the overwritten AOF. */
50be9b97 1147 if (oldfd != -1) bioCreateBackgroundJob(REDIS_BIO_CLOSE_FILE,(void*)(long)oldfd,NULL,NULL);
b454056d
PN
1148
1149 redisLog(REDIS_VERBOSE,
1150 "Background AOF rewrite signal handler took %lldus", ustime()-now);
e2641e09 1151 } else if (!bysignal && exitcode != 0) {
f00b0844
SG
1152 server.aof_lastbgrewrite_status = REDIS_ERR;
1153
b454056d
PN
1154 redisLog(REDIS_WARNING,
1155 "Background AOF rewrite terminated with error");
e2641e09 1156 } else {
f00b0844
SG
1157 server.aof_lastbgrewrite_status = REDIS_ERR;
1158
e2641e09 1159 redisLog(REDIS_WARNING,
b454056d 1160 "Background AOF rewrite terminated by signal %d", bysignal);
e2641e09 1161 }
b454056d 1162
e2641e09 1163cleanup:
edb95253 1164 aofRewriteBufferReset();
ff2145ad 1165 aofRemoveTempFile(server.aof_child_pid);
1166 server.aof_child_pid = -1;
6b4d92e2 1167 server.aof_rewrite_time_last = time(NULL)-server.aof_rewrite_time_start;
1168 server.aof_rewrite_time_start = -1;
e394114d 1169 /* Schedule a new rewrite if we are waiting for it to switch the AOF ON. */
1170 if (server.aof_state == REDIS_AOF_WAIT_REWRITE)
2c915bcf 1171 server.aof_rewrite_scheduled = 1;
e2641e09 1172}