2 #include "lzf.h" /* LZF compression library */
7 #include <sys/resource.h>
12 /* Convenience wrapper around fwrite, that returns the number of bytes written
13 * to the file instead of the number of objects (see fwrite(3)) and -1 in the
14 * case of an error. It also supports a NULL *fp to skip writing altogether
15 * instead of writing to /dev/null. */
16 static int rdbWriteRaw(FILE *fp
, void *p
, size_t len
) {
17 if (fp
!= NULL
&& fwrite(p
,len
,1,fp
) == 0) return -1;
21 int rdbSaveType(FILE *fp
, unsigned char type
) {
22 return rdbWriteRaw(fp
,&type
,1);
25 int rdbSaveTime(FILE *fp
, time_t t
) {
26 int32_t t32
= (int32_t) t
;
27 return rdbWriteRaw(fp
,&t32
,4);
30 /* check rdbLoadLen() comments for more info */
31 int rdbSaveLen(FILE *fp
, uint32_t len
) {
36 /* Save a 6 bit len */
37 buf
[0] = (len
&0xFF)|(REDIS_RDB_6BITLEN
<<6);
38 if (rdbWriteRaw(fp
,buf
,1) == -1) return -1;
40 } else if (len
< (1<<14)) {
41 /* Save a 14 bit len */
42 buf
[0] = ((len
>>8)&0xFF)|(REDIS_RDB_14BITLEN
<<6);
44 if (rdbWriteRaw(fp
,buf
,2) == -1) return -1;
47 /* Save a 32 bit len */
48 buf
[0] = (REDIS_RDB_32BITLEN
<<6);
49 if (rdbWriteRaw(fp
,buf
,1) == -1) return -1;
51 if (rdbWriteRaw(fp
,&len
,4) == -1) return -1;
57 /* Encode 'value' as an integer if possible (if integer will fit the
58 * supported range). If the function sucessful encoded the integer
59 * then the (up to 5 bytes) encoded representation is written in the
60 * string pointed by 'enc' and the length is returned. Otherwise
62 int rdbEncodeInteger(long long value
, unsigned char *enc
) {
63 /* Finally check if it fits in our ranges */
64 if (value
>= -(1<<7) && value
<= (1<<7)-1) {
65 enc
[0] = (REDIS_RDB_ENCVAL
<<6)|REDIS_RDB_ENC_INT8
;
68 } else if (value
>= -(1<<15) && value
<= (1<<15)-1) {
69 enc
[0] = (REDIS_RDB_ENCVAL
<<6)|REDIS_RDB_ENC_INT16
;
71 enc
[2] = (value
>>8)&0xFF;
73 } else if (value
>= -((long long)1<<31) && value
<= ((long long)1<<31)-1) {
74 enc
[0] = (REDIS_RDB_ENCVAL
<<6)|REDIS_RDB_ENC_INT32
;
76 enc
[2] = (value
>>8)&0xFF;
77 enc
[3] = (value
>>16)&0xFF;
78 enc
[4] = (value
>>24)&0xFF;
85 /* String objects in the form "2391" "-100" without any space and with a
86 * range of values that can fit in an 8, 16 or 32 bit signed value can be
87 * encoded as integers to save space */
88 int rdbTryIntegerEncoding(char *s
, size_t len
, unsigned char *enc
) {
90 char *endptr
, buf
[32];
92 /* Check if it's possible to encode this value as a number */
93 value
= strtoll(s
, &endptr
, 10);
94 if (endptr
[0] != '\0') return 0;
95 ll2string(buf
,32,value
);
97 /* If the number converted back into a string is not identical
98 * then it's not possible to encode the string as integer */
99 if (strlen(buf
) != len
|| memcmp(buf
,s
,len
)) return 0;
101 return rdbEncodeInteger(value
,enc
);
104 int rdbSaveLzfStringObject(FILE *fp
, unsigned char *s
, size_t len
) {
105 size_t comprlen
, outlen
;
110 /* We require at least four bytes compression for this to be worth it */
111 if (len
<= 4) return 0;
113 if ((out
= zmalloc(outlen
+1)) == NULL
) return 0;
114 comprlen
= lzf_compress(s
, len
, out
, outlen
);
119 /* Data compressed! Let's save it on disk */
120 byte
= (REDIS_RDB_ENCVAL
<<6)|REDIS_RDB_ENC_LZF
;
121 if ((n
= rdbWriteRaw(fp
,&byte
,1)) == -1) goto writeerr
;
124 if ((n
= rdbSaveLen(fp
,comprlen
)) == -1) goto writeerr
;
127 if ((n
= rdbSaveLen(fp
,len
)) == -1) goto writeerr
;
130 if ((n
= rdbWriteRaw(fp
,out
,comprlen
)) == -1) goto writeerr
;
141 /* Save a string objet as [len][data] on disk. If the object is a string
142 * representation of an integer value we try to save it in a special form */
143 int rdbSaveRawString(FILE *fp
, unsigned char *s
, size_t len
) {
147 /* Try integer encoding */
149 unsigned char buf
[5];
150 if ((enclen
= rdbTryIntegerEncoding((char*)s
,len
,buf
)) > 0) {
151 if (rdbWriteRaw(fp
,buf
,enclen
) == -1) return -1;
156 /* Try LZF compression - under 20 bytes it's unable to compress even
157 * aaaaaaaaaaaaaaaaaa so skip it */
158 if (server
.rdbcompression
&& len
> 20) {
159 n
= rdbSaveLzfStringObject(fp
,s
,len
);
160 if (n
== -1) return -1;
162 /* Return value of 0 means data can't be compressed, save the old way */
166 if ((n
= rdbSaveLen(fp
,len
)) == -1) return -1;
169 if (rdbWriteRaw(fp
,s
,len
) == -1) return -1;
175 /* Save a long long value as either an encoded string or a string. */
176 int rdbSaveLongLongAsStringObject(FILE *fp
, long long value
) {
177 unsigned char buf
[32];
179 int enclen
= rdbEncodeInteger(value
,buf
);
181 return rdbWriteRaw(fp
,buf
,enclen
);
183 /* Encode as string */
184 enclen
= ll2string((char*)buf
,32,value
);
185 redisAssert(enclen
< 32);
186 if ((n
= rdbSaveLen(fp
,enclen
)) == -1) return -1;
188 if ((n
= rdbWriteRaw(fp
,buf
,enclen
)) == -1) return -1;
194 /* Like rdbSaveStringObjectRaw() but handle encoded objects */
195 int rdbSaveStringObject(FILE *fp
, robj
*obj
) {
196 /* Avoid to decode the object, then encode it again, if the
197 * object is alrady integer encoded. */
198 if (obj
->encoding
== REDIS_ENCODING_INT
) {
199 return rdbSaveLongLongAsStringObject(fp
,(long)obj
->ptr
);
201 redisAssert(obj
->encoding
== REDIS_ENCODING_RAW
);
202 return rdbSaveRawString(fp
,obj
->ptr
,sdslen(obj
->ptr
));
206 /* Save a double value. Doubles are saved as strings prefixed by an unsigned
207 * 8 bit integer specifing the length of the representation.
208 * This 8 bit integer has special values in order to specify the following
214 int rdbSaveDoubleValue(FILE *fp
, double val
) {
215 unsigned char buf
[128];
221 } else if (!isfinite(val
)) {
223 buf
[0] = (val
< 0) ? 255 : 254;
225 #if (DBL_MANT_DIG >= 52) && (LLONG_MAX == 0x7fffffffffffffffLL)
226 /* Check if the float is in a safe range to be casted into a
227 * long long. We are assuming that long long is 64 bit here.
228 * Also we are assuming that there are no implementations around where
229 * double has precision < 52 bit.
231 * Under this assumptions we test if a double is inside an interval
232 * where casting to long long is safe. Then using two castings we
233 * make sure the decimal part is zero. If all this is true we use
234 * integer printing function that is much faster. */
235 double min
= -4503599627370495; /* (2^52)-1 */
236 double max
= 4503599627370496; /* -(2^52) */
237 if (val
> min
&& val
< max
&& val
== ((double)((long long)val
)))
238 ll2string((char*)buf
+1,sizeof(buf
),(long long)val
);
241 snprintf((char*)buf
+1,sizeof(buf
)-1,"%.17g",val
);
242 buf
[0] = strlen((char*)buf
+1);
245 return rdbWriteRaw(fp
,buf
,len
);
248 /* Save a Redis object. Returns -1 on error, 0 on success. */
249 int rdbSaveObject(FILE *fp
, robj
*o
) {
252 if (o
->type
== REDIS_STRING
) {
253 /* Save a string value */
254 if ((n
= rdbSaveStringObject(fp
,o
)) == -1) return -1;
256 } else if (o
->type
== REDIS_LIST
) {
257 /* Save a list value */
258 if (o
->encoding
== REDIS_ENCODING_ZIPLIST
) {
259 size_t l
= ziplistBlobLen((unsigned char*)o
->ptr
);
261 if ((n
= rdbSaveRawString(fp
,o
->ptr
,l
)) == -1) return -1;
263 } else if (o
->encoding
== REDIS_ENCODING_LINKEDLIST
) {
268 if ((n
= rdbSaveLen(fp
,listLength(list
))) == -1) return -1;
271 listRewind(list
,&li
);
272 while((ln
= listNext(&li
))) {
273 robj
*eleobj
= listNodeValue(ln
);
274 if ((n
= rdbSaveStringObject(fp
,eleobj
)) == -1) return -1;
278 redisPanic("Unknown list encoding");
280 } else if (o
->type
== REDIS_SET
) {
281 /* Save a set value */
282 if (o
->encoding
== REDIS_ENCODING_HT
) {
284 dictIterator
*di
= dictGetIterator(set
);
287 if ((n
= rdbSaveLen(fp
,dictSize(set
))) == -1) return -1;
290 while((de
= dictNext(di
)) != NULL
) {
291 robj
*eleobj
= dictGetEntryKey(de
);
292 if ((n
= rdbSaveStringObject(fp
,eleobj
)) == -1) return -1;
295 dictReleaseIterator(di
);
296 } else if (o
->encoding
== REDIS_ENCODING_INTSET
) {
297 size_t l
= intsetBlobLen((intset
*)o
->ptr
);
299 if ((n
= rdbSaveRawString(fp
,o
->ptr
,l
)) == -1) return -1;
302 redisPanic("Unknown set encoding");
304 } else if (o
->type
== REDIS_ZSET
) {
305 /* Save a sorted set value */
306 if (o
->encoding
== REDIS_ENCODING_ZIPLIST
) {
307 size_t l
= ziplistBlobLen((unsigned char*)o
->ptr
);
309 if ((n
= rdbSaveRawString(fp
,o
->ptr
,l
)) == -1) return -1;
311 } else if (o
->encoding
== REDIS_ENCODING_SKIPLIST
) {
313 dictIterator
*di
= dictGetIterator(zs
->dict
);
316 if ((n
= rdbSaveLen(fp
,dictSize(zs
->dict
))) == -1) return -1;
319 while((de
= dictNext(di
)) != NULL
) {
320 robj
*eleobj
= dictGetEntryKey(de
);
321 double *score
= dictGetEntryVal(de
);
323 if ((n
= rdbSaveStringObject(fp
,eleobj
)) == -1) return -1;
325 if ((n
= rdbSaveDoubleValue(fp
,*score
)) == -1) return -1;
328 dictReleaseIterator(di
);
330 redisPanic("Unknown sorted set encoding");
332 } else if (o
->type
== REDIS_HASH
) {
333 /* Save a hash value */
334 if (o
->encoding
== REDIS_ENCODING_ZIPMAP
) {
335 size_t l
= zipmapBlobLen((unsigned char*)o
->ptr
);
337 if ((n
= rdbSaveRawString(fp
,o
->ptr
,l
)) == -1) return -1;
340 dictIterator
*di
= dictGetIterator(o
->ptr
);
343 if ((n
= rdbSaveLen(fp
,dictSize((dict
*)o
->ptr
))) == -1) return -1;
346 while((de
= dictNext(di
)) != NULL
) {
347 robj
*key
= dictGetEntryKey(de
);
348 robj
*val
= dictGetEntryVal(de
);
350 if ((n
= rdbSaveStringObject(fp
,key
)) == -1) return -1;
352 if ((n
= rdbSaveStringObject(fp
,val
)) == -1) return -1;
355 dictReleaseIterator(di
);
358 redisPanic("Unknown object type");
363 /* Return the length the object will have on disk if saved with
364 * the rdbSaveObject() function. Currently we use a trick to get
365 * this length with very little changes to the code. In the future
366 * we could switch to a faster solution. */
367 off_t
rdbSavedObjectLen(robj
*o
) {
368 int len
= rdbSaveObject(NULL
,o
);
369 redisAssert(len
!= -1);
373 /* Save a key-value pair, with expire time, type, key, value.
374 * On error -1 is returned.
375 * On success if the key was actaully saved 1 is returned, otherwise 0
376 * is returned (the key was already expired). */
377 int rdbSaveKeyValuePair(FILE *fp
, robj
*key
, robj
*val
,
378 time_t expiretime
, time_t now
)
382 /* Save the expire time */
383 if (expiretime
!= -1) {
384 /* If this key is already expired skip it */
385 if (expiretime
< now
) return 0;
386 if (rdbSaveType(fp
,REDIS_EXPIRETIME
) == -1) return -1;
387 if (rdbSaveTime(fp
,expiretime
) == -1) return -1;
389 /* Fix the object type if needed, to support saving zipmaps, ziplists,
390 * and intsets, directly as blobs of bytes: they are already serialized. */
392 if (vtype
== REDIS_HASH
&& val
->encoding
== REDIS_ENCODING_ZIPMAP
)
393 vtype
= REDIS_HASH_ZIPMAP
;
394 else if (vtype
== REDIS_LIST
&& val
->encoding
== REDIS_ENCODING_ZIPLIST
)
395 vtype
= REDIS_LIST_ZIPLIST
;
396 else if (vtype
== REDIS_SET
&& val
->encoding
== REDIS_ENCODING_INTSET
)
397 vtype
= REDIS_SET_INTSET
;
398 else if (vtype
== REDIS_ZSET
&& val
->encoding
== REDIS_ENCODING_ZIPLIST
)
399 vtype
= REDIS_ZSET_ZIPLIST
;
400 /* Save type, key, value */
401 if (rdbSaveType(fp
,vtype
) == -1) return -1;
402 if (rdbSaveStringObject(fp
,key
) == -1) return -1;
403 if (rdbSaveObject(fp
,val
) == -1) return -1;
407 /* Save the DB on disk. Return REDIS_ERR on error, REDIS_OK on success */
408 int rdbSave(char *filename
) {
409 dictIterator
*di
= NULL
;
414 time_t now
= time(NULL
);
416 snprintf(tmpfile
,256,"temp-%d.rdb", (int) getpid());
417 fp
= fopen(tmpfile
,"w");
419 redisLog(REDIS_WARNING
, "Failed opening .rdb for saving: %s",
423 if (fwrite("REDIS0002",9,1,fp
) == 0) goto werr
;
424 for (j
= 0; j
< server
.dbnum
; j
++) {
425 redisDb
*db
= server
.db
+j
;
427 if (dictSize(d
) == 0) continue;
428 di
= dictGetSafeIterator(d
);
434 /* Write the SELECT DB opcode */
435 if (rdbSaveType(fp
,REDIS_SELECTDB
) == -1) goto werr
;
436 if (rdbSaveLen(fp
,j
) == -1) goto werr
;
438 /* Iterate this DB writing every entry */
439 while((de
= dictNext(di
)) != NULL
) {
440 sds keystr
= dictGetEntryKey(de
);
441 robj key
, *o
= dictGetEntryVal(de
);
444 initStaticStringObject(key
,keystr
);
445 expire
= getExpire(db
,&key
);
446 if (rdbSaveKeyValuePair(fp
,&key
,o
,expire
,now
) == -1) goto werr
;
448 dictReleaseIterator(di
);
451 if (rdbSaveType(fp
,REDIS_EOF
) == -1) goto werr
;
453 /* Make sure data will not remain on the OS's output buffers */
458 /* Use RENAME to make sure the DB file is changed atomically only
459 * if the generate DB file is ok. */
460 if (rename(tmpfile
,filename
) == -1) {
461 redisLog(REDIS_WARNING
,"Error moving temp DB file on the final destination: %s", strerror(errno
));
465 redisLog(REDIS_NOTICE
,"DB saved on disk");
467 server
.lastsave
= time(NULL
);
473 redisLog(REDIS_WARNING
,"Write error saving DB on disk: %s", strerror(errno
));
474 if (di
) dictReleaseIterator(di
);
478 int rdbSaveBackground(char *filename
) {
482 if (server
.bgsavechildpid
!= -1) return REDIS_ERR
;
484 server
.dirty_before_bgsave
= server
.dirty
;
487 if ((childpid
= fork()) == 0) {
491 if (server
.ipfd
> 0) close(server
.ipfd
);
492 if (server
.sofd
> 0) close(server
.sofd
);
493 retval
= rdbSave(filename
);
494 _exit((retval
== REDIS_OK
) ? 0 : 1);
497 server
.stat_fork_time
= ustime()-start
;
498 if (childpid
== -1) {
499 redisLog(REDIS_WARNING
,"Can't save in background: fork: %s",
503 redisLog(REDIS_NOTICE
,"Background saving started by pid %d",childpid
);
504 server
.bgsavechildpid
= childpid
;
505 updateDictResizePolicy();
508 return REDIS_OK
; /* unreached */
511 void rdbRemoveTempFile(pid_t childpid
) {
514 snprintf(tmpfile
,256,"temp-%d.rdb", (int) childpid
);
518 int rdbLoadType(FILE *fp
) {
520 if (fread(&type
,1,1,fp
) == 0) return -1;
524 time_t rdbLoadTime(FILE *fp
) {
526 if (fread(&t32
,4,1,fp
) == 0) return -1;
530 /* Load an encoded length from the DB, see the REDIS_RDB_* defines on the top
531 * of this file for a description of how this are stored on disk.
533 * isencoded is set to 1 if the readed length is not actually a length but
534 * an "encoding type", check the above comments for more info */
535 uint32_t rdbLoadLen(FILE *fp
, int *isencoded
) {
536 unsigned char buf
[2];
540 if (isencoded
) *isencoded
= 0;
541 if (fread(buf
,1,1,fp
) == 0) return REDIS_RDB_LENERR
;
542 type
= (buf
[0]&0xC0)>>6;
543 if (type
== REDIS_RDB_6BITLEN
) {
544 /* Read a 6 bit len */
546 } else if (type
== REDIS_RDB_ENCVAL
) {
547 /* Read a 6 bit len encoding type */
548 if (isencoded
) *isencoded
= 1;
550 } else if (type
== REDIS_RDB_14BITLEN
) {
551 /* Read a 14 bit len */
552 if (fread(buf
+1,1,1,fp
) == 0) return REDIS_RDB_LENERR
;
553 return ((buf
[0]&0x3F)<<8)|buf
[1];
555 /* Read a 32 bit len */
556 if (fread(&len
,4,1,fp
) == 0) return REDIS_RDB_LENERR
;
561 /* Load an integer-encoded object from file 'fp', with the specified
562 * encoding type 'enctype'. If encode is true the function may return
563 * an integer-encoded object as reply, otherwise the returned object
564 * will always be encoded as a raw string. */
565 robj
*rdbLoadIntegerObject(FILE *fp
, int enctype
, int encode
) {
566 unsigned char enc
[4];
569 if (enctype
== REDIS_RDB_ENC_INT8
) {
570 if (fread(enc
,1,1,fp
) == 0) return NULL
;
571 val
= (signed char)enc
[0];
572 } else if (enctype
== REDIS_RDB_ENC_INT16
) {
574 if (fread(enc
,2,1,fp
) == 0) return NULL
;
575 v
= enc
[0]|(enc
[1]<<8);
577 } else if (enctype
== REDIS_RDB_ENC_INT32
) {
579 if (fread(enc
,4,1,fp
) == 0) return NULL
;
580 v
= enc
[0]|(enc
[1]<<8)|(enc
[2]<<16)|(enc
[3]<<24);
583 val
= 0; /* anti-warning */
584 redisPanic("Unknown RDB integer encoding type");
587 return createStringObjectFromLongLong(val
);
589 return createObject(REDIS_STRING
,sdsfromlonglong(val
));
592 robj
*rdbLoadLzfStringObject(FILE*fp
) {
593 unsigned int len
, clen
;
594 unsigned char *c
= NULL
;
597 if ((clen
= rdbLoadLen(fp
,NULL
)) == REDIS_RDB_LENERR
) return NULL
;
598 if ((len
= rdbLoadLen(fp
,NULL
)) == REDIS_RDB_LENERR
) return NULL
;
599 if ((c
= zmalloc(clen
)) == NULL
) goto err
;
600 if ((val
= sdsnewlen(NULL
,len
)) == NULL
) goto err
;
601 if (fread(c
,clen
,1,fp
) == 0) goto err
;
602 if (lzf_decompress(c
,clen
,val
,len
) == 0) goto err
;
604 return createObject(REDIS_STRING
,val
);
611 robj
*rdbGenericLoadStringObject(FILE*fp
, int encode
) {
616 len
= rdbLoadLen(fp
,&isencoded
);
619 case REDIS_RDB_ENC_INT8
:
620 case REDIS_RDB_ENC_INT16
:
621 case REDIS_RDB_ENC_INT32
:
622 return rdbLoadIntegerObject(fp
,len
,encode
);
623 case REDIS_RDB_ENC_LZF
:
624 return rdbLoadLzfStringObject(fp
);
626 redisPanic("Unknown RDB encoding type");
630 if (len
== REDIS_RDB_LENERR
) return NULL
;
631 val
= sdsnewlen(NULL
,len
);
632 if (len
&& fread(val
,len
,1,fp
) == 0) {
636 return createObject(REDIS_STRING
,val
);
639 robj
*rdbLoadStringObject(FILE *fp
) {
640 return rdbGenericLoadStringObject(fp
,0);
643 robj
*rdbLoadEncodedStringObject(FILE *fp
) {
644 return rdbGenericLoadStringObject(fp
,1);
647 /* For information about double serialization check rdbSaveDoubleValue() */
648 int rdbLoadDoubleValue(FILE *fp
, double *val
) {
652 if (fread(&len
,1,1,fp
) == 0) return -1;
654 case 255: *val
= R_NegInf
; return 0;
655 case 254: *val
= R_PosInf
; return 0;
656 case 253: *val
= R_Nan
; return 0;
658 if (fread(buf
,len
,1,fp
) == 0) return -1;
660 sscanf(buf
, "%lg", val
);
665 /* Load a Redis object of the specified type from the specified file.
666 * On success a newly allocated object is returned, otherwise NULL. */
667 robj
*rdbLoadObject(int type
, FILE *fp
) {
672 redisLog(REDIS_DEBUG
,"LOADING OBJECT %d (at %d)\n",type
,ftell(fp
));
673 if (type
== REDIS_STRING
) {
674 /* Read string value */
675 if ((o
= rdbLoadEncodedStringObject(fp
)) == NULL
) return NULL
;
676 o
= tryObjectEncoding(o
);
677 } else if (type
== REDIS_LIST
) {
678 /* Read list value */
679 if ((len
= rdbLoadLen(fp
,NULL
)) == REDIS_RDB_LENERR
) return NULL
;
681 /* Use a real list when there are too many entries */
682 if (len
> server
.list_max_ziplist_entries
) {
683 o
= createListObject();
685 o
= createZiplistObject();
688 /* Load every single element of the list */
690 if ((ele
= rdbLoadEncodedStringObject(fp
)) == NULL
) return NULL
;
692 /* If we are using a ziplist and the value is too big, convert
693 * the object to a real list. */
694 if (o
->encoding
== REDIS_ENCODING_ZIPLIST
&&
695 ele
->encoding
== REDIS_ENCODING_RAW
&&
696 sdslen(ele
->ptr
) > server
.list_max_ziplist_value
)
697 listTypeConvert(o
,REDIS_ENCODING_LINKEDLIST
);
699 if (o
->encoding
== REDIS_ENCODING_ZIPLIST
) {
700 dec
= getDecodedObject(ele
);
701 o
->ptr
= ziplistPush(o
->ptr
,dec
->ptr
,sdslen(dec
->ptr
),REDIS_TAIL
);
705 ele
= tryObjectEncoding(ele
);
706 listAddNodeTail(o
->ptr
,ele
);
709 } else if (type
== REDIS_SET
) {
710 /* Read list/set value */
711 if ((len
= rdbLoadLen(fp
,NULL
)) == REDIS_RDB_LENERR
) return NULL
;
713 /* Use a regular set when there are too many entries. */
714 if (len
> server
.set_max_intset_entries
) {
715 o
= createSetObject();
716 /* It's faster to expand the dict to the right size asap in order
717 * to avoid rehashing */
718 if (len
> DICT_HT_INITIAL_SIZE
)
719 dictExpand(o
->ptr
,len
);
721 o
= createIntsetObject();
724 /* Load every single element of the list/set */
725 for (i
= 0; i
< len
; i
++) {
727 if ((ele
= rdbLoadEncodedStringObject(fp
)) == NULL
) return NULL
;
728 ele
= tryObjectEncoding(ele
);
730 if (o
->encoding
== REDIS_ENCODING_INTSET
) {
731 /* Fetch integer value from element */
732 if (isObjectRepresentableAsLongLong(ele
,&llval
) == REDIS_OK
) {
733 o
->ptr
= intsetAdd(o
->ptr
,llval
,NULL
);
735 setTypeConvert(o
,REDIS_ENCODING_HT
);
736 dictExpand(o
->ptr
,len
);
740 /* This will also be called when the set was just converted
741 * to regular hashtable encoded set */
742 if (o
->encoding
== REDIS_ENCODING_HT
) {
743 dictAdd((dict
*)o
->ptr
,ele
,NULL
);
748 } else if (type
== REDIS_ZSET
) {
749 /* Read list/set value */
751 size_t maxelelen
= 0;
754 if ((zsetlen
= rdbLoadLen(fp
,NULL
)) == REDIS_RDB_LENERR
) return NULL
;
755 o
= createZsetObject();
758 /* Load every single element of the list/set */
762 zskiplistNode
*znode
;
764 if ((ele
= rdbLoadEncodedStringObject(fp
)) == NULL
) return NULL
;
765 ele
= tryObjectEncoding(ele
);
766 if (rdbLoadDoubleValue(fp
,&score
) == -1) return NULL
;
768 /* Don't care about integer-encoded strings. */
769 if (ele
->encoding
== REDIS_ENCODING_RAW
&&
770 sdslen(ele
->ptr
) > maxelelen
)
771 maxelelen
= sdslen(ele
->ptr
);
773 znode
= zslInsert(zs
->zsl
,score
,ele
);
774 dictAdd(zs
->dict
,ele
,&znode
->score
);
775 incrRefCount(ele
); /* added to skiplist */
778 /* Convert *after* loading, since sorted sets are not stored ordered. */
779 if (zsetLength(o
) <= server
.zset_max_ziplist_entries
&&
780 maxelelen
<= server
.zset_max_ziplist_value
)
781 zsetConvert(o
,REDIS_ENCODING_ZIPLIST
);
782 } else if (type
== REDIS_HASH
) {
785 if ((hashlen
= rdbLoadLen(fp
,NULL
)) == REDIS_RDB_LENERR
) return NULL
;
786 o
= createHashObject();
787 /* Too many entries? Use an hash table. */
788 if (hashlen
> server
.hash_max_zipmap_entries
)
789 convertToRealHash(o
);
790 /* Load every key/value, then set it into the zipmap or hash
791 * table, as needed. */
795 if ((key
= rdbLoadEncodedStringObject(fp
)) == NULL
) return NULL
;
796 if ((val
= rdbLoadEncodedStringObject(fp
)) == NULL
) return NULL
;
797 /* If we are using a zipmap and there are too big values
798 * the object is converted to real hash table encoding. */
799 if (o
->encoding
!= REDIS_ENCODING_HT
&&
800 ((key
->encoding
== REDIS_ENCODING_RAW
&&
801 sdslen(key
->ptr
) > server
.hash_max_zipmap_value
) ||
802 (val
->encoding
== REDIS_ENCODING_RAW
&&
803 sdslen(val
->ptr
) > server
.hash_max_zipmap_value
)))
805 convertToRealHash(o
);
808 if (o
->encoding
== REDIS_ENCODING_ZIPMAP
) {
809 unsigned char *zm
= o
->ptr
;
810 robj
*deckey
, *decval
;
812 /* We need raw string objects to add them to the zipmap */
813 deckey
= getDecodedObject(key
);
814 decval
= getDecodedObject(val
);
815 zm
= zipmapSet(zm
,deckey
->ptr
,sdslen(deckey
->ptr
),
816 decval
->ptr
,sdslen(decval
->ptr
),NULL
);
818 decrRefCount(deckey
);
819 decrRefCount(decval
);
823 key
= tryObjectEncoding(key
);
824 val
= tryObjectEncoding(val
);
825 dictAdd((dict
*)o
->ptr
,key
,val
);
828 } else if (type
== REDIS_HASH_ZIPMAP
||
829 type
== REDIS_LIST_ZIPLIST
||
830 type
== REDIS_SET_INTSET
||
831 type
== REDIS_ZSET_ZIPLIST
)
833 robj
*aux
= rdbLoadStringObject(fp
);
835 if (aux
== NULL
) return NULL
;
836 o
= createObject(REDIS_STRING
,NULL
); /* string is just placeholder */
837 o
->ptr
= zmalloc(sdslen(aux
->ptr
));
838 memcpy(o
->ptr
,aux
->ptr
,sdslen(aux
->ptr
));
841 /* Fix the object encoding, and make sure to convert the encoded
842 * data type into the base type if accordingly to the current
843 * configuration there are too many elements in the encoded data
844 * type. Note that we only check the length and not max element
845 * size as this is an O(N) scan. Eventually everything will get
848 case REDIS_HASH_ZIPMAP
:
849 o
->type
= REDIS_HASH
;
850 o
->encoding
= REDIS_ENCODING_ZIPMAP
;
851 if (zipmapLen(o
->ptr
) > server
.hash_max_zipmap_entries
)
852 convertToRealHash(o
);
854 case REDIS_LIST_ZIPLIST
:
855 o
->type
= REDIS_LIST
;
856 o
->encoding
= REDIS_ENCODING_ZIPLIST
;
857 if (ziplistLen(o
->ptr
) > server
.list_max_ziplist_entries
)
858 listTypeConvert(o
,REDIS_ENCODING_LINKEDLIST
);
860 case REDIS_SET_INTSET
:
862 o
->encoding
= REDIS_ENCODING_INTSET
;
863 if (intsetLen(o
->ptr
) > server
.set_max_intset_entries
)
864 setTypeConvert(o
,REDIS_ENCODING_HT
);
866 case REDIS_ZSET_ZIPLIST
:
867 o
->type
= REDIS_ZSET
;
868 o
->encoding
= REDIS_ENCODING_ZIPLIST
;
869 if (zsetLength(o
) > server
.zset_max_ziplist_entries
)
870 zsetConvert(o
,REDIS_ENCODING_SKIPLIST
);
873 redisPanic("Unknown encoding");
877 redisPanic("Unknown object type");
882 /* Mark that we are loading in the global state and setup the fields
883 * needed to provide loading stats. */
884 void startLoading(FILE *fp
) {
889 server
.loading_start_time
= time(NULL
);
890 if (fstat(fileno(fp
), &sb
) == -1) {
891 server
.loading_total_bytes
= 1; /* just to avoid division by zero */
893 server
.loading_total_bytes
= sb
.st_size
;
897 /* Refresh the loading progress info */
898 void loadingProgress(off_t pos
) {
899 server
.loading_loaded_bytes
= pos
;
902 /* Loading finished */
903 void stopLoading(void) {
907 int rdbLoad(char *filename
) {
911 redisDb
*db
= server
.db
+0;
913 time_t expiretime
, now
= time(NULL
);
916 fp
= fopen(filename
,"r");
917 if (!fp
) return REDIS_ERR
;
918 if (fread(buf
,9,1,fp
) == 0) goto eoferr
;
920 if (memcmp(buf
,"REDIS",5) != 0) {
922 redisLog(REDIS_WARNING
,"Wrong signature trying to load DB from file");
925 rdbver
= atoi(buf
+5);
926 if (rdbver
< 1 || rdbver
> 2) {
928 redisLog(REDIS_WARNING
,"Can't handle RDB format version %d",rdbver
);
937 /* Serve the clients from time to time */
938 if (!(loops
++ % 1000)) {
939 loadingProgress(ftello(fp
));
940 aeProcessEvents(server
.el
, AE_FILE_EVENTS
|AE_DONT_WAIT
);
944 if ((type
= rdbLoadType(fp
)) == -1) goto eoferr
;
945 if (type
== REDIS_EXPIRETIME
) {
946 if ((expiretime
= rdbLoadTime(fp
)) == -1) goto eoferr
;
947 /* We read the time so we need to read the object type again */
948 if ((type
= rdbLoadType(fp
)) == -1) goto eoferr
;
950 if (type
== REDIS_EOF
) break;
951 /* Handle SELECT DB opcode as a special case */
952 if (type
== REDIS_SELECTDB
) {
953 if ((dbid
= rdbLoadLen(fp
,NULL
)) == REDIS_RDB_LENERR
)
955 if (dbid
>= (unsigned)server
.dbnum
) {
956 redisLog(REDIS_WARNING
,"FATAL: Data file was created with a Redis server configured to handle more than %d databases. Exiting\n", server
.dbnum
);
963 if ((key
= rdbLoadStringObject(fp
)) == NULL
) goto eoferr
;
965 if ((val
= rdbLoadObject(type
,fp
)) == NULL
) goto eoferr
;
966 /* Check if the key already expired */
967 if (expiretime
!= -1 && expiretime
< now
) {
972 /* Add the new object in the hash table */
975 /* Set the expire time if needed */
976 if (expiretime
!= -1) setExpire(db
,key
,expiretime
);
984 eoferr
: /* unexpected end of file is handled here with a fatal exit */
985 redisLog(REDIS_WARNING
,"Short read or OOM loading DB. Unrecoverable error, aborting now.");
987 return REDIS_ERR
; /* Just to avoid warning */
990 /* A background saving child (BGSAVE) terminated its work. Handle this. */
991 void backgroundSaveDoneHandler(int exitcode
, int bysignal
) {
992 if (!bysignal
&& exitcode
== 0) {
993 redisLog(REDIS_NOTICE
,
994 "Background saving terminated with success");
995 server
.dirty
= server
.dirty
- server
.dirty_before_bgsave
;
996 server
.lastsave
= time(NULL
);
997 } else if (!bysignal
&& exitcode
!= 0) {
998 redisLog(REDIS_WARNING
, "Background saving error");
1000 redisLog(REDIS_WARNING
,
1001 "Background saving terminated by signal %d", bysignal
);
1002 rdbRemoveTempFile(server
.bgsavechildpid
);
1004 server
.bgsavechildpid
= -1;
1005 /* Possibly there are slaves waiting for a BGSAVE in order to be served
1006 * (the first stage of SYNC is a bulk transfer of dump.rdb) */
1007 updateSlavesWaitingBgsave(exitcode
== 0 ? REDIS_OK
: REDIS_ERR
);
1010 void saveCommand(redisClient
*c
) {
1011 if (server
.bgsavechildpid
!= -1) {
1012 addReplyError(c
,"Background save already in progress");
1015 if (rdbSave(server
.dbfilename
) == REDIS_OK
) {
1016 addReply(c
,shared
.ok
);
1018 addReply(c
,shared
.err
);
1022 void bgsaveCommand(redisClient
*c
) {
1023 if (server
.bgsavechildpid
!= -1) {
1024 addReplyError(c
,"Background save already in progress");
1025 } else if (server
.bgrewritechildpid
!= -1) {
1026 addReplyError(c
,"Can't BGSAVE while AOF log rewriting is in progress");
1027 } else if (rdbSaveBackground(server
.dbfilename
) == REDIS_OK
) {
1028 addReplyStatus(c
,"Background saving started");
1030 addReply(c
,shared
.err
);