2 * Copyright (c) 2006-2009, Salvatore Sanfilippo <antirez at gmail dot com>
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
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.
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.
30 #define REDIS_VERSION "0.100"
46 #include <arpa/inet.h>
50 #include <sys/resource.h>
53 #include "ae.h" /* Event driven programming library */
54 #include "sds.h" /* Dynamic safe strings */
55 #include "anet.h" /* Networking the easy way */
56 #include "dict.h" /* Hash tables */
57 #include "adlist.h" /* Linked lists */
58 #include "zmalloc.h" /* total memory usage aware version of malloc/free */
65 /* Static server configuration */
66 #define REDIS_SERVERPORT 6379 /* TCP port */
67 #define REDIS_MAXIDLETIME (60*5) /* default client timeout */
68 #define REDIS_IOBUF_LEN 1024
69 #define REDIS_LOADBUF_LEN 1024
70 #define REDIS_STATIC_ARGS 4
71 #define REDIS_DEFAULT_DBNUM 16
72 #define REDIS_CONFIGLINE_MAX 1024
73 #define REDIS_OBJFREELIST_MAX 1000000 /* Max number of objects to cache */
74 #define REDIS_MAX_SYNC_TIME 60 /* Slave can't take more to sync */
75 #define REDIS_EXPIRELOOKUPS_PER_CRON 100 /* try to expire 100 keys/second */
77 /* Hash table parameters */
78 #define REDIS_HT_MINFILL 10 /* Minimal hash table fill 10% */
79 #define REDIS_HT_MINSLOTS 16384 /* Never resize the HT under this */
82 #define REDIS_CMD_BULK 1
83 #define REDIS_CMD_INLINE 2
86 #define REDIS_STRING 0
91 /* Object types only used for dumping to disk */
92 #define REDIS_EXPIRETIME 253
93 #define REDIS_SELECTDB 254
96 /* Defines related to the dump file format. To store 32 bits lengths for short
97 * keys requires a lot of space, so we check the most significant 2 bits of
98 * the first byte to interpreter the length:
100 * 00|000000 => if the two MSB are 00 the len is the 6 bits of this byte
101 * 01|000000 00000000 => 01, the len is 14 byes, 6 bits + 8 bits of next byte
102 * 10|000000 [32 bit integer] => if it's 01, a full 32 bit len will follow
103 * 11|000000 this means: specially encoded object will follow. The six bits
104 * number specify the kind of object that follows.
105 * See the REDIS_RDB_ENC_* defines.
107 * Lenghts up to 63 are stored using a single byte, most DB keys, and may
108 * values, will fit inside. */
109 #define REDIS_RDB_6BITLEN 0
110 #define REDIS_RDB_14BITLEN 1
111 #define REDIS_RDB_32BITLEN 2
112 #define REDIS_RDB_ENCVAL 3
113 #define REDIS_RDB_LENERR UINT_MAX
115 /* When a length of a string object stored on disk has the first two bits
116 * set, the remaining two bits specify a special encoding for the object
117 * accordingly to the following defines: */
118 #define REDIS_RDB_ENC_INT8 0 /* 8 bit signed integer */
119 #define REDIS_RDB_ENC_INT16 1 /* 16 bit signed integer */
120 #define REDIS_RDB_ENC_INT32 2 /* 32 bit signed integer */
121 #define REDIS_RDB_ENC_LZF 3 /* string compressed with FASTLZ */
124 #define REDIS_CLOSE 1 /* This client connection should be closed ASAP */
125 #define REDIS_SLAVE 2 /* This client is a slave server */
126 #define REDIS_MASTER 4 /* This client is a master server */
127 #define REDIS_MONITOR 8 /* This client is a slave monitor, see MONITOR */
129 /* Slave replication state - slave side */
130 #define REDIS_REPL_NONE 0 /* No active replication */
131 #define REDIS_REPL_CONNECT 1 /* Must connect to master */
132 #define REDIS_REPL_CONNECTED 2 /* Connected to master */
134 /* Slave replication state - from the point of view of master
135 * Note that in SEND_BULK and ONLINE state the slave receives new updates
136 * in its output queue. In the WAIT_BGSAVE state instead the server is waiting
137 * to start the next background saving in order to send updates to it. */
138 #define REDIS_REPL_WAIT_BGSAVE_START 3 /* master waits bgsave to start feeding it */
139 #define REDIS_REPL_WAIT_BGSAVE_END 4 /* master waits bgsave to start bulk DB transmission */
140 #define REDIS_REPL_SEND_BULK 5 /* master is sending the bulk DB */
141 #define REDIS_REPL_ONLINE 6 /* bulk DB already transmitted, receive updates */
143 /* List related stuff */
147 /* Sort operations */
148 #define REDIS_SORT_GET 0
149 #define REDIS_SORT_DEL 1
150 #define REDIS_SORT_INCR 2
151 #define REDIS_SORT_DECR 3
152 #define REDIS_SORT_ASC 4
153 #define REDIS_SORT_DESC 5
154 #define REDIS_SORTKEY_MAX 1024
157 #define REDIS_DEBUG 0
158 #define REDIS_NOTICE 1
159 #define REDIS_WARNING 2
161 /* Anti-warning macro... */
162 #define REDIS_NOTUSED(V) ((void) V)
164 /*================================= Data types ============================== */
166 /* A redis object, that is a type able to hold a string / list / set */
167 typedef struct redisObject
{
173 typedef struct redisDb
{
179 /* With multiplexing we need to take per-clinet state.
180 * Clients are taken in a liked list. */
181 typedef struct redisClient
{
188 int bulklen
; /* bulk read len. -1 if not in bulk read mode */
191 time_t lastinteraction
; /* time of the last interaction, used for timeout */
192 int flags
; /* REDIS_CLOSE | REDIS_SLAVE | REDIS_MONITOR */
193 int slaveseldb
; /* slave selected db, if this client is a slave */
194 int authenticated
; /* when requirepass is non-NULL */
195 int replstate
; /* replication state if this is a slave */
196 int repldbfd
; /* replication DB file descriptor */
197 long repldboff
; /* replication DB file offset */
198 off_t repldbsize
; /* replication DB file size */
206 /* Global server state structure */
212 unsigned int sharingpoolsize
;
213 long long dirty
; /* changes to DB from the last save */
215 list
*slaves
, *monitors
;
216 char neterr
[ANET_ERR_LEN
];
218 int cronloops
; /* number of times the cron function run */
219 list
*objfreelist
; /* A list of freed objects to avoid malloc() */
220 time_t lastsave
; /* Unix time of last save succeeede */
221 size_t usedmemory
; /* Used memory in megabytes */
222 /* Fields used only for stats */
223 time_t stat_starttime
; /* server start time */
224 long long stat_numcommands
; /* number of processed commands */
225 long long stat_numconnections
; /* number of connections received */
233 int bgsaveinprogress
;
234 struct saveparam
*saveparams
;
241 /* Replication related */
245 redisClient
*master
; /* client that is master for this slave */
247 /* Sort parameters - qsort_r() is only available under BSD so we
248 * have to take this state global, in order to pass it to sortCompare() */
254 typedef void redisCommandProc(redisClient
*c
);
255 struct redisCommand
{
257 redisCommandProc
*proc
;
262 typedef struct _redisSortObject
{
270 typedef struct _redisSortOperation
{
273 } redisSortOperation
;
275 struct sharedObjectsStruct
{
276 robj
*crlf
, *ok
, *err
, *emptybulk
, *czero
, *cone
, *pong
, *space
,
277 *colon
, *nullbulk
, *nullmultibulk
,
278 *emptymultibulk
, *wrongtypeerr
, *nokeyerr
, *syntaxerr
, *sameobjecterr
,
279 *outofrangeerr
, *plus
,
280 *select0
, *select1
, *select2
, *select3
, *select4
,
281 *select5
, *select6
, *select7
, *select8
, *select9
;
284 /*================================ Prototypes =============================== */
286 static void freeStringObject(robj
*o
);
287 static void freeListObject(robj
*o
);
288 static void freeSetObject(robj
*o
);
289 static void decrRefCount(void *o
);
290 static robj
*createObject(int type
, void *ptr
);
291 static void freeClient(redisClient
*c
);
292 static int rdbLoad(char *filename
);
293 static void addReply(redisClient
*c
, robj
*obj
);
294 static void addReplySds(redisClient
*c
, sds s
);
295 static void incrRefCount(robj
*o
);
296 static int rdbSaveBackground(char *filename
);
297 static robj
*createStringObject(char *ptr
, size_t len
);
298 static void replicationFeedSlaves(list
*slaves
, struct redisCommand
*cmd
, int dictid
, robj
**argv
, int argc
);
299 static int syncWithMaster(void);
300 static robj
*tryObjectSharing(robj
*o
);
301 static int removeExpire(redisDb
*db
, robj
*key
);
302 static int expireIfNeeded(redisDb
*db
, robj
*key
);
303 static int deleteIfVolatile(redisDb
*db
, robj
*key
);
304 static int deleteKey(redisDb
*db
, robj
*key
);
305 static time_t getExpire(redisDb
*db
, robj
*key
);
306 static int setExpire(redisDb
*db
, robj
*key
, time_t when
);
307 static void updateSalvesWaitingBgsave(int bgsaveerr
);
309 static void authCommand(redisClient
*c
);
310 static void pingCommand(redisClient
*c
);
311 static void echoCommand(redisClient
*c
);
312 static void setCommand(redisClient
*c
);
313 static void setnxCommand(redisClient
*c
);
314 static void getCommand(redisClient
*c
);
315 static void delCommand(redisClient
*c
);
316 static void existsCommand(redisClient
*c
);
317 static void incrCommand(redisClient
*c
);
318 static void decrCommand(redisClient
*c
);
319 static void incrbyCommand(redisClient
*c
);
320 static void decrbyCommand(redisClient
*c
);
321 static void selectCommand(redisClient
*c
);
322 static void randomkeyCommand(redisClient
*c
);
323 static void keysCommand(redisClient
*c
);
324 static void dbsizeCommand(redisClient
*c
);
325 static void lastsaveCommand(redisClient
*c
);
326 static void saveCommand(redisClient
*c
);
327 static void bgsaveCommand(redisClient
*c
);
328 static void shutdownCommand(redisClient
*c
);
329 static void moveCommand(redisClient
*c
);
330 static void renameCommand(redisClient
*c
);
331 static void renamenxCommand(redisClient
*c
);
332 static void lpushCommand(redisClient
*c
);
333 static void rpushCommand(redisClient
*c
);
334 static void lpopCommand(redisClient
*c
);
335 static void rpopCommand(redisClient
*c
);
336 static void llenCommand(redisClient
*c
);
337 static void lindexCommand(redisClient
*c
);
338 static void lrangeCommand(redisClient
*c
);
339 static void ltrimCommand(redisClient
*c
);
340 static void typeCommand(redisClient
*c
);
341 static void lsetCommand(redisClient
*c
);
342 static void saddCommand(redisClient
*c
);
343 static void sremCommand(redisClient
*c
);
344 static void smoveCommand(redisClient
*c
);
345 static void sismemberCommand(redisClient
*c
);
346 static void scardCommand(redisClient
*c
);
347 static void sinterCommand(redisClient
*c
);
348 static void sinterstoreCommand(redisClient
*c
);
349 static void sunionCommand(redisClient
*c
);
350 static void sunionstoreCommand(redisClient
*c
);
351 static void syncCommand(redisClient
*c
);
352 static void flushdbCommand(redisClient
*c
);
353 static void flushallCommand(redisClient
*c
);
354 static void sortCommand(redisClient
*c
);
355 static void lremCommand(redisClient
*c
);
356 static void infoCommand(redisClient
*c
);
357 static void mgetCommand(redisClient
*c
);
358 static void monitorCommand(redisClient
*c
);
359 static void expireCommand(redisClient
*c
);
360 static void getSetCommand(redisClient
*c
);
362 /*================================= Globals ================================= */
365 static struct redisServer server
; /* server global state */
366 static struct redisCommand cmdTable
[] = {
367 {"get",getCommand
,2,REDIS_CMD_INLINE
},
368 {"set",setCommand
,3,REDIS_CMD_BULK
},
369 {"setnx",setnxCommand
,3,REDIS_CMD_BULK
},
370 {"del",delCommand
,-2,REDIS_CMD_INLINE
},
371 {"exists",existsCommand
,2,REDIS_CMD_INLINE
},
372 {"incr",incrCommand
,2,REDIS_CMD_INLINE
},
373 {"decr",decrCommand
,2,REDIS_CMD_INLINE
},
374 {"mget",mgetCommand
,-2,REDIS_CMD_INLINE
},
375 {"rpush",rpushCommand
,3,REDIS_CMD_BULK
},
376 {"lpush",lpushCommand
,3,REDIS_CMD_BULK
},
377 {"rpop",rpopCommand
,2,REDIS_CMD_INLINE
},
378 {"lpop",lpopCommand
,2,REDIS_CMD_INLINE
},
379 {"llen",llenCommand
,2,REDIS_CMD_INLINE
},
380 {"lindex",lindexCommand
,3,REDIS_CMD_INLINE
},
381 {"lset",lsetCommand
,4,REDIS_CMD_BULK
},
382 {"lrange",lrangeCommand
,4,REDIS_CMD_INLINE
},
383 {"ltrim",ltrimCommand
,4,REDIS_CMD_INLINE
},
384 {"lrem",lremCommand
,4,REDIS_CMD_BULK
},
385 {"sadd",saddCommand
,3,REDIS_CMD_BULK
},
386 {"srem",sremCommand
,3,REDIS_CMD_BULK
},
387 {"smove",smoveCommand
,4,REDIS_CMD_BULK
},
388 {"sismember",sismemberCommand
,3,REDIS_CMD_BULK
},
389 {"scard",scardCommand
,2,REDIS_CMD_INLINE
},
390 {"sinter",sinterCommand
,-2,REDIS_CMD_INLINE
},
391 {"sinterstore",sinterstoreCommand
,-3,REDIS_CMD_INLINE
},
392 {"sunion",sunionCommand
,-2,REDIS_CMD_INLINE
},
393 {"sunionstore",sunionstoreCommand
,-3,REDIS_CMD_INLINE
},
394 {"smembers",sinterCommand
,2,REDIS_CMD_INLINE
},
395 {"incrby",incrbyCommand
,3,REDIS_CMD_INLINE
},
396 {"decrby",decrbyCommand
,3,REDIS_CMD_INLINE
},
397 {"getset",getSetCommand
,3,REDIS_CMD_BULK
},
398 {"randomkey",randomkeyCommand
,1,REDIS_CMD_INLINE
},
399 {"select",selectCommand
,2,REDIS_CMD_INLINE
},
400 {"move",moveCommand
,3,REDIS_CMD_INLINE
},
401 {"rename",renameCommand
,3,REDIS_CMD_INLINE
},
402 {"renamenx",renamenxCommand
,3,REDIS_CMD_INLINE
},
403 {"keys",keysCommand
,2,REDIS_CMD_INLINE
},
404 {"dbsize",dbsizeCommand
,1,REDIS_CMD_INLINE
},
405 {"auth",authCommand
,2,REDIS_CMD_INLINE
},
406 {"ping",pingCommand
,1,REDIS_CMD_INLINE
},
407 {"echo",echoCommand
,2,REDIS_CMD_BULK
},
408 {"save",saveCommand
,1,REDIS_CMD_INLINE
},
409 {"bgsave",bgsaveCommand
,1,REDIS_CMD_INLINE
},
410 {"shutdown",shutdownCommand
,1,REDIS_CMD_INLINE
},
411 {"lastsave",lastsaveCommand
,1,REDIS_CMD_INLINE
},
412 {"type",typeCommand
,2,REDIS_CMD_INLINE
},
413 {"sync",syncCommand
,1,REDIS_CMD_INLINE
},
414 {"flushdb",flushdbCommand
,1,REDIS_CMD_INLINE
},
415 {"flushall",flushallCommand
,1,REDIS_CMD_INLINE
},
416 {"sort",sortCommand
,-2,REDIS_CMD_INLINE
},
417 {"info",infoCommand
,1,REDIS_CMD_INLINE
},
418 {"monitor",monitorCommand
,1,REDIS_CMD_INLINE
},
419 {"expire",expireCommand
,3,REDIS_CMD_INLINE
},
423 /*============================ Utility functions ============================ */
425 /* Glob-style pattern matching. */
426 int stringmatchlen(const char *pattern
, int patternLen
,
427 const char *string
, int stringLen
, int nocase
)
432 while (pattern
[1] == '*') {
437 return 1; /* match */
439 if (stringmatchlen(pattern
+1, patternLen
-1,
440 string
, stringLen
, nocase
))
441 return 1; /* match */
445 return 0; /* no match */
449 return 0; /* no match */
459 not = pattern
[0] == '^';
466 if (pattern
[0] == '\\') {
469 if (pattern
[0] == string
[0])
471 } else if (pattern
[0] == ']') {
473 } else if (patternLen
== 0) {
477 } else if (pattern
[1] == '-' && patternLen
>= 3) {
478 int start
= pattern
[0];
479 int end
= pattern
[2];
487 start
= tolower(start
);
493 if (c
>= start
&& c
<= end
)
497 if (pattern
[0] == string
[0])
500 if (tolower((int)pattern
[0]) == tolower((int)string
[0]))
510 return 0; /* no match */
516 if (patternLen
>= 2) {
523 if (pattern
[0] != string
[0])
524 return 0; /* no match */
526 if (tolower((int)pattern
[0]) != tolower((int)string
[0]))
527 return 0; /* no match */
535 if (stringLen
== 0) {
536 while(*pattern
== '*') {
543 if (patternLen
== 0 && stringLen
== 0)
548 void redisLog(int level
, const char *fmt
, ...)
553 fp
= (server
.logfile
== NULL
) ? stdout
: fopen(server
.logfile
,"a");
557 if (level
>= server
.verbosity
) {
563 strftime(buf
,64,"%d %b %H:%M:%S",gmtime(&now
));
564 fprintf(fp
,"%s %c ",buf
,c
[level
]);
565 vfprintf(fp
, fmt
, ap
);
571 if (server
.logfile
) fclose(fp
);
574 /*====================== Hash table type implementation ==================== */
576 /* This is an hash table type that uses the SDS dynamic strings libary as
577 * keys and radis objects as values (objects can hold SDS strings,
580 static int sdsDictKeyCompare(void *privdata
, const void *key1
,
584 DICT_NOTUSED(privdata
);
586 l1
= sdslen((sds
)key1
);
587 l2
= sdslen((sds
)key2
);
588 if (l1
!= l2
) return 0;
589 return memcmp(key1
, key2
, l1
) == 0;
592 static void dictRedisObjectDestructor(void *privdata
, void *val
)
594 DICT_NOTUSED(privdata
);
599 static int dictSdsKeyCompare(void *privdata
, const void *key1
,
602 const robj
*o1
= key1
, *o2
= key2
;
603 return sdsDictKeyCompare(privdata
,o1
->ptr
,o2
->ptr
);
606 static unsigned int dictSdsHash(const void *key
) {
608 return dictGenHashFunction(o
->ptr
, sdslen((sds
)o
->ptr
));
611 static dictType setDictType
= {
612 dictSdsHash
, /* hash function */
615 dictSdsKeyCompare
, /* key compare */
616 dictRedisObjectDestructor
, /* key destructor */
617 NULL
/* val destructor */
620 static dictType hashDictType
= {
621 dictSdsHash
, /* hash function */
624 dictSdsKeyCompare
, /* key compare */
625 dictRedisObjectDestructor
, /* key destructor */
626 dictRedisObjectDestructor
/* val destructor */
629 /* ========================= Random utility functions ======================= */
631 /* Redis generally does not try to recover from out of memory conditions
632 * when allocating objects or strings, it is not clear if it will be possible
633 * to report this condition to the client since the networking layer itself
634 * is based on heap allocation for send buffers, so we simply abort.
635 * At least the code will be simpler to read... */
636 static void oom(const char *msg
) {
637 fprintf(stderr
, "%s: Out of memory\n",msg
);
643 /* ====================== Redis server networking stuff ===================== */
644 void closeTimedoutClients(void) {
647 time_t now
= time(NULL
);
649 listRewind(server
.clients
);
650 while ((ln
= listYield(server
.clients
)) != NULL
) {
651 c
= listNodeValue(ln
);
652 if (!(c
->flags
& REDIS_SLAVE
) && /* no timeout for slaves */
653 (now
- c
->lastinteraction
> server
.maxidletime
)) {
654 redisLog(REDIS_DEBUG
,"Closing idle client");
660 /* If the percentage of used slots in the HT reaches REDIS_HT_MINFILL
661 * we resize the hash table to save memory */
662 void tryResizeHashTables(void) {
665 for (j
= 0; j
< server
.dbnum
; j
++) {
666 long long size
, used
;
668 size
= dictSlots(server
.db
[j
].dict
);
669 used
= dictSize(server
.db
[j
].dict
);
670 if (size
&& used
&& size
> REDIS_HT_MINSLOTS
&&
671 (used
*100/size
< REDIS_HT_MINFILL
)) {
672 redisLog(REDIS_NOTICE
,"The hash table %d is too sparse, resize it...",j
);
673 dictResize(server
.db
[j
].dict
);
674 redisLog(REDIS_NOTICE
,"Hash table %d resized.",j
);
679 int serverCron(struct aeEventLoop
*eventLoop
, long long id
, void *clientData
) {
680 int j
, loops
= server
.cronloops
++;
681 REDIS_NOTUSED(eventLoop
);
683 REDIS_NOTUSED(clientData
);
685 /* Update the global state with the amount of used memory */
686 server
.usedmemory
= zmalloc_used_memory();
688 /* Show some info about non-empty databases */
689 for (j
= 0; j
< server
.dbnum
; j
++) {
690 long long size
, used
, vkeys
;
692 size
= dictSlots(server
.db
[j
].dict
);
693 used
= dictSize(server
.db
[j
].dict
);
694 vkeys
= dictSize(server
.db
[j
].expires
);
695 if (!(loops
% 5) && used
> 0) {
696 redisLog(REDIS_DEBUG
,"DB %d: %d keys (%d volatile) in %d slots HT.",j
,used
,vkeys
,size
);
697 /* dictPrintStats(server.dict); */
701 /* We don't want to resize the hash tables while a bacground saving
702 * is in progress: the saving child is created using fork() that is
703 * implemented with a copy-on-write semantic in most modern systems, so
704 * if we resize the HT while there is the saving child at work actually
705 * a lot of memory movements in the parent will cause a lot of pages
707 if (!server
.bgsaveinprogress
) tryResizeHashTables();
709 /* Show information about connected clients */
711 redisLog(REDIS_DEBUG
,"%d clients connected (%d slaves), %zu bytes in use",
712 listLength(server
.clients
)-listLength(server
.slaves
),
713 listLength(server
.slaves
),
715 dictSize(server
.sharingpool
));
718 /* Close connections of timedout clients */
720 closeTimedoutClients();
722 /* Check if a background saving in progress terminated */
723 if (server
.bgsaveinprogress
) {
725 /* XXX: TODO handle the case of the saving child killed */
726 if (wait4(-1,&statloc
,WNOHANG
,NULL
)) {
727 int exitcode
= WEXITSTATUS(statloc
);
729 redisLog(REDIS_NOTICE
,
730 "Background saving terminated with success");
732 server
.lastsave
= time(NULL
);
734 redisLog(REDIS_WARNING
,
735 "Background saving error");
737 server
.bgsaveinprogress
= 0;
738 updateSalvesWaitingBgsave(exitcode
== 0 ? REDIS_OK
: REDIS_ERR
);
741 /* If there is not a background saving in progress check if
742 * we have to save now */
743 time_t now
= time(NULL
);
744 for (j
= 0; j
< server
.saveparamslen
; j
++) {
745 struct saveparam
*sp
= server
.saveparams
+j
;
747 if (server
.dirty
>= sp
->changes
&&
748 now
-server
.lastsave
> sp
->seconds
) {
749 redisLog(REDIS_NOTICE
,"%d changes in %d seconds. Saving...",
750 sp
->changes
, sp
->seconds
);
751 rdbSaveBackground(server
.dbfilename
);
757 /* Try to expire a few timed out keys */
758 for (j
= 0; j
< server
.dbnum
; j
++) {
759 redisDb
*db
= server
.db
+j
;
760 int num
= dictSize(db
->expires
);
763 time_t now
= time(NULL
);
765 if (num
> REDIS_EXPIRELOOKUPS_PER_CRON
)
766 num
= REDIS_EXPIRELOOKUPS_PER_CRON
;
771 if ((de
= dictGetRandomKey(db
->expires
)) == NULL
) break;
772 t
= (time_t) dictGetEntryVal(de
);
774 deleteKey(db
,dictGetEntryKey(de
));
780 /* Check if we should connect to a MASTER */
781 if (server
.replstate
== REDIS_REPL_CONNECT
) {
782 redisLog(REDIS_NOTICE
,"Connecting to MASTER...");
783 if (syncWithMaster() == REDIS_OK
) {
784 redisLog(REDIS_NOTICE
,"MASTER <-> SLAVE sync succeeded");
790 static void createSharedObjects(void) {
791 shared
.crlf
= createObject(REDIS_STRING
,sdsnew("\r\n"));
792 shared
.ok
= createObject(REDIS_STRING
,sdsnew("+OK\r\n"));
793 shared
.err
= createObject(REDIS_STRING
,sdsnew("-ERR\r\n"));
794 shared
.emptybulk
= createObject(REDIS_STRING
,sdsnew("$0\r\n\r\n"));
795 shared
.czero
= createObject(REDIS_STRING
,sdsnew(":0\r\n"));
796 shared
.cone
= createObject(REDIS_STRING
,sdsnew(":1\r\n"));
797 shared
.nullbulk
= createObject(REDIS_STRING
,sdsnew("$-1\r\n"));
798 shared
.nullmultibulk
= createObject(REDIS_STRING
,sdsnew("*-1\r\n"));
799 shared
.emptymultibulk
= createObject(REDIS_STRING
,sdsnew("*0\r\n"));
801 shared
.pong
= createObject(REDIS_STRING
,sdsnew("+PONG\r\n"));
802 shared
.wrongtypeerr
= createObject(REDIS_STRING
,sdsnew(
803 "-ERR Operation against a key holding the wrong kind of value\r\n"));
804 shared
.nokeyerr
= createObject(REDIS_STRING
,sdsnew(
805 "-ERR no such key\r\n"));
806 shared
.syntaxerr
= createObject(REDIS_STRING
,sdsnew(
807 "-ERR syntax error\r\n"));
808 shared
.sameobjecterr
= createObject(REDIS_STRING
,sdsnew(
809 "-ERR source and destination objects are the same\r\n"));
810 shared
.outofrangeerr
= createObject(REDIS_STRING
,sdsnew(
811 "-ERR index out of range\r\n"));
812 shared
.space
= createObject(REDIS_STRING
,sdsnew(" "));
813 shared
.colon
= createObject(REDIS_STRING
,sdsnew(":"));
814 shared
.plus
= createObject(REDIS_STRING
,sdsnew("+"));
815 shared
.select0
= createStringObject("select 0\r\n",10);
816 shared
.select1
= createStringObject("select 1\r\n",10);
817 shared
.select2
= createStringObject("select 2\r\n",10);
818 shared
.select3
= createStringObject("select 3\r\n",10);
819 shared
.select4
= createStringObject("select 4\r\n",10);
820 shared
.select5
= createStringObject("select 5\r\n",10);
821 shared
.select6
= createStringObject("select 6\r\n",10);
822 shared
.select7
= createStringObject("select 7\r\n",10);
823 shared
.select8
= createStringObject("select 8\r\n",10);
824 shared
.select9
= createStringObject("select 9\r\n",10);
827 static void appendServerSaveParams(time_t seconds
, int changes
) {
828 server
.saveparams
= zrealloc(server
.saveparams
,sizeof(struct saveparam
)*(server
.saveparamslen
+1));
829 if (server
.saveparams
== NULL
) oom("appendServerSaveParams");
830 server
.saveparams
[server
.saveparamslen
].seconds
= seconds
;
831 server
.saveparams
[server
.saveparamslen
].changes
= changes
;
832 server
.saveparamslen
++;
835 static void ResetServerSaveParams() {
836 zfree(server
.saveparams
);
837 server
.saveparams
= NULL
;
838 server
.saveparamslen
= 0;
841 static void initServerConfig() {
842 server
.dbnum
= REDIS_DEFAULT_DBNUM
;
843 server
.port
= REDIS_SERVERPORT
;
844 server
.verbosity
= REDIS_DEBUG
;
845 server
.maxidletime
= REDIS_MAXIDLETIME
;
846 server
.saveparams
= NULL
;
847 server
.logfile
= NULL
; /* NULL = log on standard output */
848 server
.bindaddr
= NULL
;
849 server
.glueoutputbuf
= 1;
850 server
.daemonize
= 0;
851 server
.pidfile
= "/var/run/redis.pid";
852 server
.dbfilename
= "dump.rdb";
853 server
.requirepass
= NULL
;
854 server
.shareobjects
= 0;
855 ResetServerSaveParams();
857 appendServerSaveParams(60*60,1); /* save after 1 hour and 1 change */
858 appendServerSaveParams(300,100); /* save after 5 minutes and 100 changes */
859 appendServerSaveParams(60,10000); /* save after 1 minute and 10000 changes */
860 /* Replication related */
862 server
.masterhost
= NULL
;
863 server
.masterport
= 6379;
864 server
.master
= NULL
;
865 server
.replstate
= REDIS_REPL_NONE
;
868 static void initServer() {
871 signal(SIGHUP
, SIG_IGN
);
872 signal(SIGPIPE
, SIG_IGN
);
874 server
.clients
= listCreate();
875 server
.slaves
= listCreate();
876 server
.monitors
= listCreate();
877 server
.objfreelist
= listCreate();
878 createSharedObjects();
879 server
.el
= aeCreateEventLoop();
880 server
.db
= zmalloc(sizeof(redisDb
)*server
.dbnum
);
881 server
.sharingpool
= dictCreate(&setDictType
,NULL
);
882 server
.sharingpoolsize
= 1024;
883 if (!server
.db
|| !server
.clients
|| !server
.slaves
|| !server
.monitors
|| !server
.el
|| !server
.objfreelist
)
884 oom("server initialization"); /* Fatal OOM */
885 server
.fd
= anetTcpServer(server
.neterr
, server
.port
, server
.bindaddr
);
886 if (server
.fd
== -1) {
887 redisLog(REDIS_WARNING
, "Opening TCP port: %s", server
.neterr
);
890 for (j
= 0; j
< server
.dbnum
; j
++) {
891 server
.db
[j
].dict
= dictCreate(&hashDictType
,NULL
);
892 server
.db
[j
].expires
= dictCreate(&setDictType
,NULL
);
895 server
.cronloops
= 0;
896 server
.bgsaveinprogress
= 0;
897 server
.lastsave
= time(NULL
);
899 server
.usedmemory
= 0;
900 server
.stat_numcommands
= 0;
901 server
.stat_numconnections
= 0;
902 server
.stat_starttime
= time(NULL
);
903 aeCreateTimeEvent(server
.el
, 1000, serverCron
, NULL
, NULL
);
906 /* Empty the whole database */
907 static long long emptyDb() {
909 long long removed
= 0;
911 for (j
= 0; j
< server
.dbnum
; j
++) {
912 removed
+= dictSize(server
.db
[j
].dict
);
913 dictEmpty(server
.db
[j
].dict
);
914 dictEmpty(server
.db
[j
].expires
);
919 static int yesnotoi(char *s
) {
920 if (!strcasecmp(s
,"yes")) return 1;
921 else if (!strcasecmp(s
,"no")) return 0;
925 /* I agree, this is a very rudimental way to load a configuration...
926 will improve later if the config gets more complex */
927 static void loadServerConfig(char *filename
) {
928 FILE *fp
= fopen(filename
,"r");
929 char buf
[REDIS_CONFIGLINE_MAX
+1], *err
= NULL
;
934 redisLog(REDIS_WARNING
,"Fatal error, can't open config file");
937 while(fgets(buf
,REDIS_CONFIGLINE_MAX
+1,fp
) != NULL
) {
943 line
= sdstrim(line
," \t\r\n");
945 /* Skip comments and blank lines*/
946 if (line
[0] == '#' || line
[0] == '\0') {
951 /* Split into arguments */
952 argv
= sdssplitlen(line
,sdslen(line
)," ",1,&argc
);
955 /* Execute config directives */
956 if (!strcasecmp(argv
[0],"timeout") && argc
== 2) {
957 server
.maxidletime
= atoi(argv
[1]);
958 if (server
.maxidletime
< 1) {
959 err
= "Invalid timeout value"; goto loaderr
;
961 } else if (!strcasecmp(argv
[0],"port") && argc
== 2) {
962 server
.port
= atoi(argv
[1]);
963 if (server
.port
< 1 || server
.port
> 65535) {
964 err
= "Invalid port"; goto loaderr
;
966 } else if (!strcasecmp(argv
[0],"bind") && argc
== 2) {
967 server
.bindaddr
= zstrdup(argv
[1]);
968 } else if (!strcasecmp(argv
[0],"save") && argc
== 3) {
969 int seconds
= atoi(argv
[1]);
970 int changes
= atoi(argv
[2]);
971 if (seconds
< 1 || changes
< 0) {
972 err
= "Invalid save parameters"; goto loaderr
;
974 appendServerSaveParams(seconds
,changes
);
975 } else if (!strcasecmp(argv
[0],"dir") && argc
== 2) {
976 if (chdir(argv
[1]) == -1) {
977 redisLog(REDIS_WARNING
,"Can't chdir to '%s': %s",
978 argv
[1], strerror(errno
));
981 } else if (!strcasecmp(argv
[0],"loglevel") && argc
== 2) {
982 if (!strcasecmp(argv
[1],"debug")) server
.verbosity
= REDIS_DEBUG
;
983 else if (!strcasecmp(argv
[1],"notice")) server
.verbosity
= REDIS_NOTICE
;
984 else if (!strcasecmp(argv
[1],"warning")) server
.verbosity
= REDIS_WARNING
;
986 err
= "Invalid log level. Must be one of debug, notice, warning";
989 } else if (!strcasecmp(argv
[0],"logfile") && argc
== 2) {
992 server
.logfile
= zstrdup(argv
[1]);
993 if (!strcasecmp(server
.logfile
,"stdout")) {
994 zfree(server
.logfile
);
995 server
.logfile
= NULL
;
997 if (server
.logfile
) {
998 /* Test if we are able to open the file. The server will not
999 * be able to abort just for this problem later... */
1000 fp
= fopen(server
.logfile
,"a");
1002 err
= sdscatprintf(sdsempty(),
1003 "Can't open the log file: %s", strerror(errno
));
1008 } else if (!strcasecmp(argv
[0],"databases") && argc
== 2) {
1009 server
.dbnum
= atoi(argv
[1]);
1010 if (server
.dbnum
< 1) {
1011 err
= "Invalid number of databases"; goto loaderr
;
1013 } else if (!strcasecmp(argv
[0],"slaveof") && argc
== 3) {
1014 server
.masterhost
= sdsnew(argv
[1]);
1015 server
.masterport
= atoi(argv
[2]);
1016 server
.replstate
= REDIS_REPL_CONNECT
;
1017 } else if (!strcasecmp(argv
[0],"glueoutputbuf") && argc
== 2) {
1018 if ((server
.glueoutputbuf
= yesnotoi(argv
[1])) == -1) {
1019 err
= "argument must be 'yes' or 'no'"; goto loaderr
;
1021 } else if (!strcasecmp(argv
[0],"shareobjects") && argc
== 2) {
1022 if ((server
.shareobjects
= yesnotoi(argv
[1])) == -1) {
1023 err
= "argument must be 'yes' or 'no'"; goto loaderr
;
1025 } else if (!strcasecmp(argv
[0],"daemonize") && argc
== 2) {
1026 if ((server
.daemonize
= yesnotoi(argv
[1])) == -1) {
1027 err
= "argument must be 'yes' or 'no'"; goto loaderr
;
1029 } else if (!strcasecmp(argv
[0],"requirepass") && argc
== 2) {
1030 server
.requirepass
= zstrdup(argv
[1]);
1031 } else if (!strcasecmp(argv
[0],"pidfile") && argc
== 2) {
1032 server
.pidfile
= zstrdup(argv
[1]);
1033 } else if (!strcasecmp(argv
[0],"dbfilename") && argc
== 2) {
1034 server
.dbfilename
= zstrdup(argv
[1]);
1036 err
= "Bad directive or wrong number of arguments"; goto loaderr
;
1038 for (j
= 0; j
< argc
; j
++)
1047 fprintf(stderr
, "\n*** FATAL CONFIG FILE ERROR ***\n");
1048 fprintf(stderr
, "Reading the configuration file, at line %d\n", linenum
);
1049 fprintf(stderr
, ">>> '%s'\n", line
);
1050 fprintf(stderr
, "%s\n", err
);
1054 static void freeClientArgv(redisClient
*c
) {
1057 for (j
= 0; j
< c
->argc
; j
++)
1058 decrRefCount(c
->argv
[j
]);
1062 static void freeClient(redisClient
*c
) {
1065 aeDeleteFileEvent(server
.el
,c
->fd
,AE_READABLE
);
1066 aeDeleteFileEvent(server
.el
,c
->fd
,AE_WRITABLE
);
1067 sdsfree(c
->querybuf
);
1068 listRelease(c
->reply
);
1071 ln
= listSearchKey(server
.clients
,c
);
1073 listDelNode(server
.clients
,ln
);
1074 if (c
->flags
& REDIS_SLAVE
) {
1075 if (c
->replstate
== REDIS_REPL_SEND_BULK
&& c
->repldbfd
!= -1)
1077 list
*l
= (c
->flags
& REDIS_MONITOR
) ? server
.monitors
: server
.slaves
;
1078 ln
= listSearchKey(l
,c
);
1082 if (c
->flags
& REDIS_MASTER
) {
1083 server
.master
= NULL
;
1084 server
.replstate
= REDIS_REPL_CONNECT
;
1090 static void glueReplyBuffersIfNeeded(redisClient
*c
) {
1095 listRewind(c
->reply
);
1096 while((ln
= listYield(c
->reply
))) {
1098 totlen
+= sdslen(o
->ptr
);
1099 /* This optimization makes more sense if we don't have to copy
1101 if (totlen
> 1024) return;
1107 listRewind(c
->reply
);
1108 while((ln
= listYield(c
->reply
))) {
1110 memcpy(buf
+copylen
,o
->ptr
,sdslen(o
->ptr
));
1111 copylen
+= sdslen(o
->ptr
);
1112 listDelNode(c
->reply
,ln
);
1114 /* Now the output buffer is empty, add the new single element */
1115 addReplySds(c
,sdsnewlen(buf
,totlen
));
1119 static void sendReplyToClient(aeEventLoop
*el
, int fd
, void *privdata
, int mask
) {
1120 redisClient
*c
= privdata
;
1121 int nwritten
= 0, totwritten
= 0, objlen
;
1124 REDIS_NOTUSED(mask
);
1126 if (server
.glueoutputbuf
&& listLength(c
->reply
) > 1)
1127 glueReplyBuffersIfNeeded(c
);
1128 while(listLength(c
->reply
)) {
1129 o
= listNodeValue(listFirst(c
->reply
));
1130 objlen
= sdslen(o
->ptr
);
1133 listDelNode(c
->reply
,listFirst(c
->reply
));
1137 if (c
->flags
& REDIS_MASTER
) {
1138 nwritten
= objlen
- c
->sentlen
;
1140 nwritten
= write(fd
, ((char*)o
->ptr
)+c
->sentlen
, objlen
- c
->sentlen
);
1141 if (nwritten
<= 0) break;
1143 c
->sentlen
+= nwritten
;
1144 totwritten
+= nwritten
;
1145 /* If we fully sent the object on head go to the next one */
1146 if (c
->sentlen
== objlen
) {
1147 listDelNode(c
->reply
,listFirst(c
->reply
));
1151 if (nwritten
== -1) {
1152 if (errno
== EAGAIN
) {
1155 redisLog(REDIS_DEBUG
,
1156 "Error writing to client: %s", strerror(errno
));
1161 if (totwritten
> 0) c
->lastinteraction
= time(NULL
);
1162 if (listLength(c
->reply
) == 0) {
1164 aeDeleteFileEvent(server
.el
,c
->fd
,AE_WRITABLE
);
1168 static struct redisCommand
*lookupCommand(char *name
) {
1170 while(cmdTable
[j
].name
!= NULL
) {
1171 if (!strcasecmp(name
,cmdTable
[j
].name
)) return &cmdTable
[j
];
1177 /* resetClient prepare the client to process the next command */
1178 static void resetClient(redisClient
*c
) {
1183 /* If this function gets called we already read a whole
1184 * command, argments are in the client argv/argc fields.
1185 * processCommand() execute the command or prepare the
1186 * server for a bulk read from the client.
1188 * If 1 is returned the client is still alive and valid and
1189 * and other operations can be performed by the caller. Otherwise
1190 * if 0 is returned the client was destroied (i.e. after QUIT). */
1191 static int processCommand(redisClient
*c
) {
1192 struct redisCommand
*cmd
;
1195 /* The QUIT command is handled as a special case. Normal command
1196 * procs are unable to close the client connection safely */
1197 if (!strcasecmp(c
->argv
[0]->ptr
,"quit")) {
1201 cmd
= lookupCommand(c
->argv
[0]->ptr
);
1203 addReplySds(c
,sdsnew("-ERR unknown command\r\n"));
1206 } else if ((cmd
->arity
> 0 && cmd
->arity
!= c
->argc
) ||
1207 (c
->argc
< -cmd
->arity
)) {
1208 addReplySds(c
,sdsnew("-ERR wrong number of arguments\r\n"));
1211 } else if (cmd
->flags
& REDIS_CMD_BULK
&& c
->bulklen
== -1) {
1212 int bulklen
= atoi(c
->argv
[c
->argc
-1]->ptr
);
1214 decrRefCount(c
->argv
[c
->argc
-1]);
1215 if (bulklen
< 0 || bulklen
> 1024*1024*1024) {
1217 addReplySds(c
,sdsnew("-ERR invalid bulk write count\r\n"));
1222 c
->bulklen
= bulklen
+2; /* add two bytes for CR+LF */
1223 /* It is possible that the bulk read is already in the
1224 * buffer. Check this condition and handle it accordingly */
1225 if ((signed)sdslen(c
->querybuf
) >= c
->bulklen
) {
1226 c
->argv
[c
->argc
] = createStringObject(c
->querybuf
,c
->bulklen
-2);
1228 c
->querybuf
= sdsrange(c
->querybuf
,c
->bulklen
,-1);
1233 /* Let's try to share objects on the command arguments vector */
1234 if (server
.shareobjects
) {
1236 for(j
= 1; j
< c
->argc
; j
++)
1237 c
->argv
[j
] = tryObjectSharing(c
->argv
[j
]);
1239 /* Check if the user is authenticated */
1240 if (server
.requirepass
&& !c
->authenticated
&& cmd
->proc
!= authCommand
) {
1241 addReplySds(c
,sdsnew("-ERR operation not permitted\r\n"));
1246 /* Exec the command */
1247 dirty
= server
.dirty
;
1249 if (server
.dirty
-dirty
!= 0 && listLength(server
.slaves
))
1250 replicationFeedSlaves(server
.slaves
,cmd
,c
->db
->id
,c
->argv
,c
->argc
);
1251 if (listLength(server
.monitors
))
1252 replicationFeedSlaves(server
.monitors
,cmd
,c
->db
->id
,c
->argv
,c
->argc
);
1253 server
.stat_numcommands
++;
1255 /* Prepare the client for the next command */
1256 if (c
->flags
& REDIS_CLOSE
) {
1264 static void replicationFeedSlaves(list
*slaves
, struct redisCommand
*cmd
, int dictid
, robj
**argv
, int argc
) {
1268 /* (args*2)+1 is enough room for args, spaces, newlines */
1269 robj
*static_outv
[REDIS_STATIC_ARGS
*2+1];
1271 if (argc
<= REDIS_STATIC_ARGS
) {
1274 outv
= zmalloc(sizeof(robj
*)*(argc
*2+1));
1275 if (!outv
) oom("replicationFeedSlaves");
1278 for (j
= 0; j
< argc
; j
++) {
1279 if (j
!= 0) outv
[outc
++] = shared
.space
;
1280 if ((cmd
->flags
& REDIS_CMD_BULK
) && j
== argc
-1) {
1283 lenobj
= createObject(REDIS_STRING
,
1284 sdscatprintf(sdsempty(),"%d\r\n",sdslen(argv
[j
]->ptr
)));
1285 lenobj
->refcount
= 0;
1286 outv
[outc
++] = lenobj
;
1288 outv
[outc
++] = argv
[j
];
1290 outv
[outc
++] = shared
.crlf
;
1292 /* Increment all the refcounts at start and decrement at end in order to
1293 * be sure to free objects if there is no slave in a replication state
1294 * able to be feed with commands */
1295 for (j
= 0; j
< outc
; j
++) incrRefCount(outv
[j
]);
1297 while((ln
= listYield(slaves
))) {
1298 redisClient
*slave
= ln
->value
;
1300 /* Don't feed slaves that are still waiting for BGSAVE to start */
1301 if (slave
->replstate
== REDIS_REPL_WAIT_BGSAVE_START
) continue;
1303 /* Feed all the other slaves, MONITORs and so on */
1304 if (slave
->slaveseldb
!= dictid
) {
1308 case 0: selectcmd
= shared
.select0
; break;
1309 case 1: selectcmd
= shared
.select1
; break;
1310 case 2: selectcmd
= shared
.select2
; break;
1311 case 3: selectcmd
= shared
.select3
; break;
1312 case 4: selectcmd
= shared
.select4
; break;
1313 case 5: selectcmd
= shared
.select5
; break;
1314 case 6: selectcmd
= shared
.select6
; break;
1315 case 7: selectcmd
= shared
.select7
; break;
1316 case 8: selectcmd
= shared
.select8
; break;
1317 case 9: selectcmd
= shared
.select9
; break;
1319 selectcmd
= createObject(REDIS_STRING
,
1320 sdscatprintf(sdsempty(),"select %d\r\n",dictid
));
1321 selectcmd
->refcount
= 0;
1324 addReply(slave
,selectcmd
);
1325 slave
->slaveseldb
= dictid
;
1327 for (j
= 0; j
< outc
; j
++) addReply(slave
,outv
[j
]);
1329 for (j
= 0; j
< outc
; j
++) decrRefCount(outv
[j
]);
1330 if (outv
!= static_outv
) zfree(outv
);
1333 static void readQueryFromClient(aeEventLoop
*el
, int fd
, void *privdata
, int mask
) {
1334 redisClient
*c
= (redisClient
*) privdata
;
1335 char buf
[REDIS_IOBUF_LEN
];
1338 REDIS_NOTUSED(mask
);
1340 nread
= read(fd
, buf
, REDIS_IOBUF_LEN
);
1342 if (errno
== EAGAIN
) {
1345 redisLog(REDIS_DEBUG
, "Reading from client: %s",strerror(errno
));
1349 } else if (nread
== 0) {
1350 redisLog(REDIS_DEBUG
, "Client closed connection");
1355 c
->querybuf
= sdscatlen(c
->querybuf
, buf
, nread
);
1356 c
->lastinteraction
= time(NULL
);
1362 if (c
->bulklen
== -1) {
1363 /* Read the first line of the query */
1364 char *p
= strchr(c
->querybuf
,'\n');
1370 query
= c
->querybuf
;
1371 c
->querybuf
= sdsempty();
1372 querylen
= 1+(p
-(query
));
1373 if (sdslen(query
) > querylen
) {
1374 /* leave data after the first line of the query in the buffer */
1375 c
->querybuf
= sdscatlen(c
->querybuf
,query
+querylen
,sdslen(query
)-querylen
);
1377 *p
= '\0'; /* remove "\n" */
1378 if (*(p
-1) == '\r') *(p
-1) = '\0'; /* and "\r" if any */
1379 sdsupdatelen(query
);
1381 /* Now we can split the query in arguments */
1382 if (sdslen(query
) == 0) {
1383 /* Ignore empty query */
1387 argv
= sdssplitlen(query
,sdslen(query
)," ",1,&argc
);
1388 if (argv
== NULL
) oom("sdssplitlen");
1391 if (c
->argv
) zfree(c
->argv
);
1392 c
->argv
= zmalloc(sizeof(robj
*)*argc
);
1393 if (c
->argv
== NULL
) oom("allocating arguments list for client");
1395 for (j
= 0; j
< argc
; j
++) {
1396 if (sdslen(argv
[j
])) {
1397 c
->argv
[c
->argc
] = createObject(REDIS_STRING
,argv
[j
]);
1404 /* Execute the command. If the client is still valid
1405 * after processCommand() return and there is something
1406 * on the query buffer try to process the next command. */
1407 if (processCommand(c
) && sdslen(c
->querybuf
)) goto again
;
1409 } else if (sdslen(c
->querybuf
) >= 1024) {
1410 redisLog(REDIS_DEBUG
, "Client protocol error");
1415 /* Bulk read handling. Note that if we are at this point
1416 the client already sent a command terminated with a newline,
1417 we are reading the bulk data that is actually the last
1418 argument of the command. */
1419 int qbl
= sdslen(c
->querybuf
);
1421 if (c
->bulklen
<= qbl
) {
1422 /* Copy everything but the final CRLF as final argument */
1423 c
->argv
[c
->argc
] = createStringObject(c
->querybuf
,c
->bulklen
-2);
1425 c
->querybuf
= sdsrange(c
->querybuf
,c
->bulklen
,-1);
1432 static int selectDb(redisClient
*c
, int id
) {
1433 if (id
< 0 || id
>= server
.dbnum
)
1435 c
->db
= &server
.db
[id
];
1439 static void *dupClientReplyValue(void *o
) {
1440 incrRefCount((robj
*)o
);
1444 static redisClient
*createClient(int fd
) {
1445 redisClient
*c
= zmalloc(sizeof(*c
));
1447 anetNonBlock(NULL
,fd
);
1448 anetTcpNoDelay(NULL
,fd
);
1449 if (!c
) return NULL
;
1452 c
->querybuf
= sdsempty();
1458 c
->lastinteraction
= time(NULL
);
1459 c
->authenticated
= 0;
1460 c
->replstate
= REDIS_REPL_NONE
;
1461 if ((c
->reply
= listCreate()) == NULL
) oom("listCreate");
1462 listSetFreeMethod(c
->reply
,decrRefCount
);
1463 listSetDupMethod(c
->reply
,dupClientReplyValue
);
1464 if (aeCreateFileEvent(server
.el
, c
->fd
, AE_READABLE
,
1465 readQueryFromClient
, c
, NULL
) == AE_ERR
) {
1469 if (!listAddNodeTail(server
.clients
,c
)) oom("listAddNodeTail");
1473 static void addReply(redisClient
*c
, robj
*obj
) {
1474 if (listLength(c
->reply
) == 0 &&
1475 (c
->replstate
== REDIS_REPL_NONE
||
1476 c
->replstate
== REDIS_REPL_ONLINE
) &&
1477 aeCreateFileEvent(server
.el
, c
->fd
, AE_WRITABLE
,
1478 sendReplyToClient
, c
, NULL
) == AE_ERR
) return;
1479 if (!listAddNodeTail(c
->reply
,obj
)) oom("listAddNodeTail");
1483 static void addReplySds(redisClient
*c
, sds s
) {
1484 robj
*o
= createObject(REDIS_STRING
,s
);
1489 static void acceptHandler(aeEventLoop
*el
, int fd
, void *privdata
, int mask
) {
1493 REDIS_NOTUSED(mask
);
1494 REDIS_NOTUSED(privdata
);
1496 cfd
= anetAccept(server
.neterr
, fd
, cip
, &cport
);
1497 if (cfd
== AE_ERR
) {
1498 redisLog(REDIS_DEBUG
,"Accepting client connection: %s", server
.neterr
);
1501 redisLog(REDIS_DEBUG
,"Accepted %s:%d", cip
, cport
);
1502 if (createClient(cfd
) == NULL
) {
1503 redisLog(REDIS_WARNING
,"Error allocating resoures for the client");
1504 close(cfd
); /* May be already closed, just ingore errors */
1507 server
.stat_numconnections
++;
1510 /* ======================= Redis objects implementation ===================== */
1512 static robj
*createObject(int type
, void *ptr
) {
1515 if (listLength(server
.objfreelist
)) {
1516 listNode
*head
= listFirst(server
.objfreelist
);
1517 o
= listNodeValue(head
);
1518 listDelNode(server
.objfreelist
,head
);
1520 o
= zmalloc(sizeof(*o
));
1522 if (!o
) oom("createObject");
1529 static robj
*createStringObject(char *ptr
, size_t len
) {
1530 return createObject(REDIS_STRING
,sdsnewlen(ptr
,len
));
1533 static robj
*createListObject(void) {
1534 list
*l
= listCreate();
1536 if (!l
) oom("listCreate");
1537 listSetFreeMethod(l
,decrRefCount
);
1538 return createObject(REDIS_LIST
,l
);
1541 static robj
*createSetObject(void) {
1542 dict
*d
= dictCreate(&setDictType
,NULL
);
1543 if (!d
) oom("dictCreate");
1544 return createObject(REDIS_SET
,d
);
1547 static void freeStringObject(robj
*o
) {
1551 static void freeListObject(robj
*o
) {
1552 listRelease((list
*) o
->ptr
);
1555 static void freeSetObject(robj
*o
) {
1556 dictRelease((dict
*) o
->ptr
);
1559 static void freeHashObject(robj
*o
) {
1560 dictRelease((dict
*) o
->ptr
);
1563 static void incrRefCount(robj
*o
) {
1565 #ifdef DEBUG_REFCOUNT
1566 if (o
->type
== REDIS_STRING
)
1567 printf("Increment '%s'(%p), now is: %d\n",o
->ptr
,o
,o
->refcount
);
1571 static void decrRefCount(void *obj
) {
1574 #ifdef DEBUG_REFCOUNT
1575 if (o
->type
== REDIS_STRING
)
1576 printf("Decrement '%s'(%p), now is: %d\n",o
->ptr
,o
,o
->refcount
-1);
1578 if (--(o
->refcount
) == 0) {
1580 case REDIS_STRING
: freeStringObject(o
); break;
1581 case REDIS_LIST
: freeListObject(o
); break;
1582 case REDIS_SET
: freeSetObject(o
); break;
1583 case REDIS_HASH
: freeHashObject(o
); break;
1584 default: assert(0 != 0); break;
1586 if (listLength(server
.objfreelist
) > REDIS_OBJFREELIST_MAX
||
1587 !listAddNodeHead(server
.objfreelist
,o
))
1592 /* Try to share an object against the shared objects pool */
1593 static robj
*tryObjectSharing(robj
*o
) {
1594 struct dictEntry
*de
;
1597 if (o
== NULL
|| server
.shareobjects
== 0) return o
;
1599 assert(o
->type
== REDIS_STRING
);
1600 de
= dictFind(server
.sharingpool
,o
);
1602 robj
*shared
= dictGetEntryKey(de
);
1604 c
= ((unsigned long) dictGetEntryVal(de
))+1;
1605 dictGetEntryVal(de
) = (void*) c
;
1606 incrRefCount(shared
);
1610 /* Here we are using a stream algorihtm: Every time an object is
1611 * shared we increment its count, everytime there is a miss we
1612 * recrement the counter of a random object. If this object reaches
1613 * zero we remove the object and put the current object instead. */
1614 if (dictSize(server
.sharingpool
) >=
1615 server
.sharingpoolsize
) {
1616 de
= dictGetRandomKey(server
.sharingpool
);
1618 c
= ((unsigned long) dictGetEntryVal(de
))-1;
1619 dictGetEntryVal(de
) = (void*) c
;
1621 dictDelete(server
.sharingpool
,de
->key
);
1624 c
= 0; /* If the pool is empty we want to add this object */
1629 retval
= dictAdd(server
.sharingpool
,o
,(void*)1);
1630 assert(retval
== DICT_OK
);
1637 static robj
*lookupKey(redisDb
*db
, robj
*key
) {
1638 dictEntry
*de
= dictFind(db
->dict
,key
);
1639 return de
? dictGetEntryVal(de
) : NULL
;
1642 static robj
*lookupKeyRead(redisDb
*db
, robj
*key
) {
1643 expireIfNeeded(db
,key
);
1644 return lookupKey(db
,key
);
1647 static robj
*lookupKeyWrite(redisDb
*db
, robj
*key
) {
1648 deleteIfVolatile(db
,key
);
1649 return lookupKey(db
,key
);
1652 static int deleteKey(redisDb
*db
, robj
*key
) {
1655 /* We need to protect key from destruction: after the first dictDelete()
1656 * it may happen that 'key' is no longer valid if we don't increment
1657 * it's count. This may happen when we get the object reference directly
1658 * from the hash table with dictRandomKey() or dict iterators */
1660 if (dictSize(db
->expires
)) dictDelete(db
->expires
,key
);
1661 retval
= dictDelete(db
->dict
,key
);
1664 return retval
== DICT_OK
;
1667 /*============================ DB saving/loading ============================ */
1669 static int rdbSaveType(FILE *fp
, unsigned char type
) {
1670 if (fwrite(&type
,1,1,fp
) == 0) return -1;
1674 static int rdbSaveTime(FILE *fp
, time_t t
) {
1675 int32_t t32
= (int32_t) t
;
1676 if (fwrite(&t32
,4,1,fp
) == 0) return -1;
1680 /* check rdbLoadLen() comments for more info */
1681 static int rdbSaveLen(FILE *fp
, uint32_t len
) {
1682 unsigned char buf
[2];
1685 /* Save a 6 bit len */
1686 buf
[0] = (len
&0xFF)|(REDIS_RDB_6BITLEN
<<6);
1687 if (fwrite(buf
,1,1,fp
) == 0) return -1;
1688 } else if (len
< (1<<14)) {
1689 /* Save a 14 bit len */
1690 buf
[0] = ((len
>>8)&0xFF)|(REDIS_RDB_14BITLEN
<<6);
1692 if (fwrite(buf
,2,1,fp
) == 0) return -1;
1694 /* Save a 32 bit len */
1695 buf
[0] = (REDIS_RDB_32BITLEN
<<6);
1696 if (fwrite(buf
,1,1,fp
) == 0) return -1;
1698 if (fwrite(&len
,4,1,fp
) == 0) return -1;
1703 /* String objects in the form "2391" "-100" without any space and with a
1704 * range of values that can fit in an 8, 16 or 32 bit signed value can be
1705 * encoded as integers to save space */
1706 int rdbTryIntegerEncoding(sds s
, unsigned char *enc
) {
1708 char *endptr
, buf
[32];
1710 /* Check if it's possible to encode this value as a number */
1711 value
= strtoll(s
, &endptr
, 10);
1712 if (endptr
[0] != '\0') return 0;
1713 snprintf(buf
,32,"%lld",value
);
1715 /* If the number converted back into a string is not identical
1716 * then it's not possible to encode the string as integer */
1717 if (strlen(buf
) != sdslen(s
) || memcmp(buf
,s
,sdslen(s
))) return 0;
1719 /* Finally check if it fits in our ranges */
1720 if (value
>= -(1<<7) && value
<= (1<<7)-1) {
1721 enc
[0] = (REDIS_RDB_ENCVAL
<<6)|REDIS_RDB_ENC_INT8
;
1722 enc
[1] = value
&0xFF;
1724 } else if (value
>= -(1<<15) && value
<= (1<<15)-1) {
1725 enc
[0] = (REDIS_RDB_ENCVAL
<<6)|REDIS_RDB_ENC_INT16
;
1726 enc
[1] = value
&0xFF;
1727 enc
[2] = (value
>>8)&0xFF;
1729 } else if (value
>= -((long long)1<<31) && value
<= ((long long)1<<31)-1) {
1730 enc
[0] = (REDIS_RDB_ENCVAL
<<6)|REDIS_RDB_ENC_INT32
;
1731 enc
[1] = value
&0xFF;
1732 enc
[2] = (value
>>8)&0xFF;
1733 enc
[3] = (value
>>16)&0xFF;
1734 enc
[4] = (value
>>24)&0xFF;
1741 static int rdbSaveLzfStringObject(FILE *fp
, robj
*obj
) {
1742 unsigned int comprlen
, outlen
;
1746 /* We require at least four bytes compression for this to be worth it */
1747 outlen
= sdslen(obj
->ptr
)-4;
1748 if (outlen
<= 0) return 0;
1749 if ((out
= zmalloc(outlen
+1)) == NULL
) return 0;
1750 comprlen
= lzf_compress(obj
->ptr
, sdslen(obj
->ptr
), out
, outlen
);
1751 if (comprlen
== 0) {
1755 /* Data compressed! Let's save it on disk */
1756 byte
= (REDIS_RDB_ENCVAL
<<6)|REDIS_RDB_ENC_LZF
;
1757 if (fwrite(&byte
,1,1,fp
) == 0) goto writeerr
;
1758 if (rdbSaveLen(fp
,comprlen
) == -1) goto writeerr
;
1759 if (rdbSaveLen(fp
,sdslen(obj
->ptr
)) == -1) goto writeerr
;
1760 if (fwrite(out
,comprlen
,1,fp
) == 0) goto writeerr
;
1769 /* Save a string objet as [len][data] on disk. If the object is a string
1770 * representation of an integer value we try to safe it in a special form */
1771 static int rdbSaveStringObject(FILE *fp
, robj
*obj
) {
1772 size_t len
= sdslen(obj
->ptr
);
1775 /* Try integer encoding */
1777 unsigned char buf
[5];
1778 if ((enclen
= rdbTryIntegerEncoding(obj
->ptr
,buf
)) > 0) {
1779 if (fwrite(buf
,enclen
,1,fp
) == 0) return -1;
1784 /* Try LZF compression - under 20 bytes it's unable to compress even
1785 * aaaaaaaaaaaaaaaaaa so skip it */
1786 if (1 && len
> 20) {
1789 retval
= rdbSaveLzfStringObject(fp
,obj
);
1790 if (retval
== -1) return -1;
1791 if (retval
> 0) return 0;
1792 /* retval == 0 means data can't be compressed, save the old way */
1795 /* Store verbatim */
1796 if (rdbSaveLen(fp
,len
) == -1) return -1;
1797 if (len
&& fwrite(obj
->ptr
,len
,1,fp
) == 0) return -1;
1801 /* Save the DB on disk. Return REDIS_ERR on error, REDIS_OK on success */
1802 static int rdbSave(char *filename
) {
1803 dictIterator
*di
= NULL
;
1808 time_t now
= time(NULL
);
1810 snprintf(tmpfile
,256,"temp-%d.%ld.rdb",(int)time(NULL
),(long int)random());
1811 fp
= fopen(tmpfile
,"w");
1813 redisLog(REDIS_WARNING
, "Failed saving the DB: %s", strerror(errno
));
1816 if (fwrite("REDIS0001",9,1,fp
) == 0) goto werr
;
1817 for (j
= 0; j
< server
.dbnum
; j
++) {
1818 redisDb
*db
= server
.db
+j
;
1820 if (dictSize(d
) == 0) continue;
1821 di
= dictGetIterator(d
);
1827 /* Write the SELECT DB opcode */
1828 if (rdbSaveType(fp
,REDIS_SELECTDB
) == -1) goto werr
;
1829 if (rdbSaveLen(fp
,j
) == -1) goto werr
;
1831 /* Iterate this DB writing every entry */
1832 while((de
= dictNext(di
)) != NULL
) {
1833 robj
*key
= dictGetEntryKey(de
);
1834 robj
*o
= dictGetEntryVal(de
);
1835 time_t expiretime
= getExpire(db
,key
);
1837 /* Save the expire time */
1838 if (expiretime
!= -1) {
1839 /* If this key is already expired skip it */
1840 if (expiretime
< now
) continue;
1841 if (rdbSaveType(fp
,REDIS_EXPIRETIME
) == -1) goto werr
;
1842 if (rdbSaveTime(fp
,expiretime
) == -1) goto werr
;
1844 /* Save the key and associated value */
1845 if (rdbSaveType(fp
,o
->type
) == -1) goto werr
;
1846 if (rdbSaveStringObject(fp
,key
) == -1) goto werr
;
1847 if (o
->type
== REDIS_STRING
) {
1848 /* Save a string value */
1849 if (rdbSaveStringObject(fp
,o
) == -1) goto werr
;
1850 } else if (o
->type
== REDIS_LIST
) {
1851 /* Save a list value */
1852 list
*list
= o
->ptr
;
1856 if (rdbSaveLen(fp
,listLength(list
)) == -1) goto werr
;
1857 while((ln
= listYield(list
))) {
1858 robj
*eleobj
= listNodeValue(ln
);
1860 if (rdbSaveStringObject(fp
,eleobj
) == -1) goto werr
;
1862 } else if (o
->type
== REDIS_SET
) {
1863 /* Save a set value */
1865 dictIterator
*di
= dictGetIterator(set
);
1868 if (!set
) oom("dictGetIteraotr");
1869 if (rdbSaveLen(fp
,dictSize(set
)) == -1) goto werr
;
1870 while((de
= dictNext(di
)) != NULL
) {
1871 robj
*eleobj
= dictGetEntryKey(de
);
1873 if (rdbSaveStringObject(fp
,eleobj
) == -1) goto werr
;
1875 dictReleaseIterator(di
);
1880 dictReleaseIterator(di
);
1883 if (rdbSaveType(fp
,REDIS_EOF
) == -1) goto werr
;
1885 /* Make sure data will not remain on the OS's output buffers */
1890 /* Use RENAME to make sure the DB file is changed atomically only
1891 * if the generate DB file is ok. */
1892 if (rename(tmpfile
,filename
) == -1) {
1893 redisLog(REDIS_WARNING
,"Error moving temp DB file on the final destionation: %s", strerror(errno
));
1897 redisLog(REDIS_NOTICE
,"DB saved on disk");
1899 server
.lastsave
= time(NULL
);
1905 redisLog(REDIS_WARNING
,"Write error saving DB on disk: %s", strerror(errno
));
1906 if (di
) dictReleaseIterator(di
);
1910 static int rdbSaveBackground(char *filename
) {
1913 if (server
.bgsaveinprogress
) return REDIS_ERR
;
1914 if ((childpid
= fork()) == 0) {
1917 if (rdbSave(filename
) == REDIS_OK
) {
1924 if (childpid
== -1) {
1925 redisLog(REDIS_WARNING
,"Can't save in background: fork: %s",
1929 redisLog(REDIS_NOTICE
,"Background saving started by pid %d",childpid
);
1930 server
.bgsaveinprogress
= 1;
1933 return REDIS_OK
; /* unreached */
1936 static int rdbLoadType(FILE *fp
) {
1938 if (fread(&type
,1,1,fp
) == 0) return -1;
1942 static time_t rdbLoadTime(FILE *fp
) {
1944 if (fread(&t32
,4,1,fp
) == 0) return -1;
1945 return (time_t) t32
;
1948 /* Load an encoded length from the DB, see the REDIS_RDB_* defines on the top
1949 * of this file for a description of how this are stored on disk.
1951 * isencoded is set to 1 if the readed length is not actually a length but
1952 * an "encoding type", check the above comments for more info */
1953 static uint32_t rdbLoadLen(FILE *fp
, int rdbver
, int *isencoded
) {
1954 unsigned char buf
[2];
1957 if (isencoded
) *isencoded
= 0;
1959 if (fread(&len
,4,1,fp
) == 0) return REDIS_RDB_LENERR
;
1964 if (fread(buf
,1,1,fp
) == 0) return REDIS_RDB_LENERR
;
1965 type
= (buf
[0]&0xC0)>>6;
1966 if (type
== REDIS_RDB_6BITLEN
) {
1967 /* Read a 6 bit len */
1969 } else if (type
== REDIS_RDB_ENCVAL
) {
1970 /* Read a 6 bit len encoding type */
1971 if (isencoded
) *isencoded
= 1;
1973 } else if (type
== REDIS_RDB_14BITLEN
) {
1974 /* Read a 14 bit len */
1975 if (fread(buf
+1,1,1,fp
) == 0) return REDIS_RDB_LENERR
;
1976 return ((buf
[0]&0x3F)<<8)|buf
[1];
1978 /* Read a 32 bit len */
1979 if (fread(&len
,4,1,fp
) == 0) return REDIS_RDB_LENERR
;
1985 static robj
*rdbLoadIntegerObject(FILE *fp
, int enctype
) {
1986 unsigned char enc
[4];
1989 if (enctype
== REDIS_RDB_ENC_INT8
) {
1990 if (fread(enc
,1,1,fp
) == 0) return NULL
;
1991 val
= (signed char)enc
[0];
1992 } else if (enctype
== REDIS_RDB_ENC_INT16
) {
1994 if (fread(enc
,2,1,fp
) == 0) return NULL
;
1995 v
= enc
[0]|(enc
[1]<<8);
1997 } else if (enctype
== REDIS_RDB_ENC_INT32
) {
1999 if (fread(enc
,4,1,fp
) == 0) return NULL
;
2000 v
= enc
[0]|(enc
[1]<<8)|(enc
[2]<<16)|(enc
[3]<<24);
2003 val
= 0; /* anti-warning */
2006 return createObject(REDIS_STRING
,sdscatprintf(sdsempty(),"%lld",val
));
2009 static robj
*rdbLoadLzfStringObject(FILE*fp
, int rdbver
) {
2010 unsigned int len
, clen
;
2011 unsigned char *c
= NULL
;
2014 if ((clen
= rdbLoadLen(fp
,rdbver
,NULL
)) == REDIS_RDB_LENERR
) return NULL
;
2015 if ((len
= rdbLoadLen(fp
,rdbver
,NULL
)) == REDIS_RDB_LENERR
) return NULL
;
2016 if ((c
= zmalloc(clen
)) == NULL
) goto err
;
2017 if ((val
= sdsnewlen(NULL
,len
)) == NULL
) goto err
;
2018 if (fread(c
,clen
,1,fp
) == 0) goto err
;
2019 if (lzf_decompress(c
,clen
,val
,len
) == 0) goto err
;
2021 return createObject(REDIS_STRING
,val
);
2028 static robj
*rdbLoadStringObject(FILE*fp
, int rdbver
) {
2033 len
= rdbLoadLen(fp
,rdbver
,&isencoded
);
2036 case REDIS_RDB_ENC_INT8
:
2037 case REDIS_RDB_ENC_INT16
:
2038 case REDIS_RDB_ENC_INT32
:
2039 return tryObjectSharing(rdbLoadIntegerObject(fp
,len
));
2040 case REDIS_RDB_ENC_LZF
:
2041 return tryObjectSharing(rdbLoadLzfStringObject(fp
,rdbver
));
2047 if (len
== REDIS_RDB_LENERR
) return NULL
;
2048 val
= sdsnewlen(NULL
,len
);
2049 if (len
&& fread(val
,len
,1,fp
) == 0) {
2053 return tryObjectSharing(createObject(REDIS_STRING
,val
));
2056 static int rdbLoad(char *filename
) {
2058 robj
*keyobj
= NULL
;
2060 int type
, retval
, rdbver
;
2061 dict
*d
= server
.db
[0].dict
;
2062 redisDb
*db
= server
.db
+0;
2064 time_t expiretime
= -1, now
= time(NULL
);
2066 fp
= fopen(filename
,"r");
2067 if (!fp
) return REDIS_ERR
;
2068 if (fread(buf
,9,1,fp
) == 0) goto eoferr
;
2070 if (memcmp(buf
,"REDIS",5) != 0) {
2072 redisLog(REDIS_WARNING
,"Wrong signature trying to load DB from file");
2075 rdbver
= atoi(buf
+5);
2078 redisLog(REDIS_WARNING
,"Can't handle RDB format version %d",rdbver
);
2085 if ((type
= rdbLoadType(fp
)) == -1) goto eoferr
;
2086 if (type
== REDIS_EXPIRETIME
) {
2087 if ((expiretime
= rdbLoadTime(fp
)) == -1) goto eoferr
;
2088 /* We read the time so we need to read the object type again */
2089 if ((type
= rdbLoadType(fp
)) == -1) goto eoferr
;
2091 if (type
== REDIS_EOF
) break;
2092 /* Handle SELECT DB opcode as a special case */
2093 if (type
== REDIS_SELECTDB
) {
2094 if ((dbid
= rdbLoadLen(fp
,rdbver
,NULL
)) == REDIS_RDB_LENERR
)
2096 if (dbid
>= (unsigned)server
.dbnum
) {
2097 redisLog(REDIS_WARNING
,"FATAL: Data file was created with a Redis server configured to handle more than %d databases. Exiting\n", server
.dbnum
);
2100 db
= server
.db
+dbid
;
2105 if ((keyobj
= rdbLoadStringObject(fp
,rdbver
)) == NULL
) goto eoferr
;
2107 if (type
== REDIS_STRING
) {
2108 /* Read string value */
2109 if ((o
= rdbLoadStringObject(fp
,rdbver
)) == NULL
) goto eoferr
;
2110 } else if (type
== REDIS_LIST
|| type
== REDIS_SET
) {
2111 /* Read list/set value */
2114 if ((listlen
= rdbLoadLen(fp
,rdbver
,NULL
)) == REDIS_RDB_LENERR
)
2116 o
= (type
== REDIS_LIST
) ? createListObject() : createSetObject();
2117 /* Load every single element of the list/set */
2121 if ((ele
= rdbLoadStringObject(fp
,rdbver
)) == NULL
) goto eoferr
;
2122 if (type
== REDIS_LIST
) {
2123 if (!listAddNodeTail((list
*)o
->ptr
,ele
))
2124 oom("listAddNodeTail");
2126 if (dictAdd((dict
*)o
->ptr
,ele
,NULL
) == DICT_ERR
)
2133 /* Add the new object in the hash table */
2134 retval
= dictAdd(d
,keyobj
,o
);
2135 if (retval
== DICT_ERR
) {
2136 redisLog(REDIS_WARNING
,"Loading DB, duplicated key (%s) found! Unrecoverable error, exiting now.", keyobj
->ptr
);
2139 /* Set the expire time if needed */
2140 if (expiretime
!= -1) {
2141 setExpire(db
,keyobj
,expiretime
);
2142 /* Delete this key if already expired */
2143 if (expiretime
< now
) deleteKey(db
,keyobj
);
2151 eoferr
: /* unexpected end of file is handled here with a fatal exit */
2152 if (keyobj
) decrRefCount(keyobj
);
2153 redisLog(REDIS_WARNING
,"Short read or OOM loading DB. Unrecoverable error, exiting now.");
2155 return REDIS_ERR
; /* Just to avoid warning */
2158 /*================================== Commands =============================== */
2160 static void authCommand(redisClient
*c
) {
2161 if (!server
.requirepass
|| !strcmp(c
->argv
[1]->ptr
, server
.requirepass
)) {
2162 c
->authenticated
= 1;
2163 addReply(c
,shared
.ok
);
2165 c
->authenticated
= 0;
2166 addReply(c
,shared
.err
);
2170 static void pingCommand(redisClient
*c
) {
2171 addReply(c
,shared
.pong
);
2174 static void echoCommand(redisClient
*c
) {
2175 addReplySds(c
,sdscatprintf(sdsempty(),"$%d\r\n",
2176 (int)sdslen(c
->argv
[1]->ptr
)));
2177 addReply(c
,c
->argv
[1]);
2178 addReply(c
,shared
.crlf
);
2181 /*=================================== Strings =============================== */
2183 static void setGenericCommand(redisClient
*c
, int nx
) {
2186 retval
= dictAdd(c
->db
->dict
,c
->argv
[1],c
->argv
[2]);
2187 if (retval
== DICT_ERR
) {
2189 dictReplace(c
->db
->dict
,c
->argv
[1],c
->argv
[2]);
2190 incrRefCount(c
->argv
[2]);
2192 addReply(c
,shared
.czero
);
2196 incrRefCount(c
->argv
[1]);
2197 incrRefCount(c
->argv
[2]);
2200 removeExpire(c
->db
,c
->argv
[1]);
2201 addReply(c
, nx
? shared
.cone
: shared
.ok
);
2204 static void setCommand(redisClient
*c
) {
2205 setGenericCommand(c
,0);
2208 static void setnxCommand(redisClient
*c
) {
2209 setGenericCommand(c
,1);
2212 static void getCommand(redisClient
*c
) {
2213 robj
*o
= lookupKeyRead(c
->db
,c
->argv
[1]);
2216 addReply(c
,shared
.nullbulk
);
2218 if (o
->type
!= REDIS_STRING
) {
2219 addReply(c
,shared
.wrongtypeerr
);
2221 addReplySds(c
,sdscatprintf(sdsempty(),"$%d\r\n",(int)sdslen(o
->ptr
)));
2223 addReply(c
,shared
.crlf
);
2228 static void getSetCommand(redisClient
*c
) {
2230 if (dictAdd(c
->db
->dict
,c
->argv
[1],c
->argv
[2]) == DICT_ERR
) {
2231 dictReplace(c
->db
->dict
,c
->argv
[1],c
->argv
[2]);
2233 incrRefCount(c
->argv
[1]);
2235 incrRefCount(c
->argv
[2]);
2237 removeExpire(c
->db
,c
->argv
[1]);
2240 static void mgetCommand(redisClient
*c
) {
2243 addReplySds(c
,sdscatprintf(sdsempty(),"*%d\r\n",c
->argc
-1));
2244 for (j
= 1; j
< c
->argc
; j
++) {
2245 robj
*o
= lookupKeyRead(c
->db
,c
->argv
[j
]);
2247 addReply(c
,shared
.nullbulk
);
2249 if (o
->type
!= REDIS_STRING
) {
2250 addReply(c
,shared
.nullbulk
);
2252 addReplySds(c
,sdscatprintf(sdsempty(),"$%d\r\n",(int)sdslen(o
->ptr
)));
2254 addReply(c
,shared
.crlf
);
2260 static void incrDecrCommand(redisClient
*c
, long long incr
) {
2265 o
= lookupKeyWrite(c
->db
,c
->argv
[1]);
2269 if (o
->type
!= REDIS_STRING
) {
2274 value
= strtoll(o
->ptr
, &eptr
, 10);
2279 o
= createObject(REDIS_STRING
,sdscatprintf(sdsempty(),"%lld",value
));
2280 retval
= dictAdd(c
->db
->dict
,c
->argv
[1],o
);
2281 if (retval
== DICT_ERR
) {
2282 dictReplace(c
->db
->dict
,c
->argv
[1],o
);
2283 removeExpire(c
->db
,c
->argv
[1]);
2285 incrRefCount(c
->argv
[1]);
2288 addReply(c
,shared
.colon
);
2290 addReply(c
,shared
.crlf
);
2293 static void incrCommand(redisClient
*c
) {
2294 incrDecrCommand(c
,1);
2297 static void decrCommand(redisClient
*c
) {
2298 incrDecrCommand(c
,-1);
2301 static void incrbyCommand(redisClient
*c
) {
2302 long long incr
= strtoll(c
->argv
[2]->ptr
, NULL
, 10);
2303 incrDecrCommand(c
,incr
);
2306 static void decrbyCommand(redisClient
*c
) {
2307 long long incr
= strtoll(c
->argv
[2]->ptr
, NULL
, 10);
2308 incrDecrCommand(c
,-incr
);
2311 /* ========================= Type agnostic commands ========================= */
2313 static void delCommand(redisClient
*c
) {
2316 for (j
= 1; j
< c
->argc
; j
++) {
2317 if (deleteKey(c
->db
,c
->argv
[j
])) {
2324 addReply(c
,shared
.czero
);
2327 addReply(c
,shared
.cone
);
2330 addReplySds(c
,sdscatprintf(sdsempty(),":%d\r\n",deleted
));
2335 static void existsCommand(redisClient
*c
) {
2336 addReply(c
,lookupKeyRead(c
->db
,c
->argv
[1]) ? shared
.cone
: shared
.czero
);
2339 static void selectCommand(redisClient
*c
) {
2340 int id
= atoi(c
->argv
[1]->ptr
);
2342 if (selectDb(c
,id
) == REDIS_ERR
) {
2343 addReplySds(c
,sdsnew("-ERR invalid DB index\r\n"));
2345 addReply(c
,shared
.ok
);
2349 static void randomkeyCommand(redisClient
*c
) {
2353 de
= dictGetRandomKey(c
->db
->dict
);
2354 if (!de
|| expireIfNeeded(c
->db
,dictGetEntryKey(de
)) == 0) break;
2357 addReply(c
,shared
.plus
);
2358 addReply(c
,shared
.crlf
);
2360 addReply(c
,shared
.plus
);
2361 addReply(c
,dictGetEntryKey(de
));
2362 addReply(c
,shared
.crlf
);
2366 static void keysCommand(redisClient
*c
) {
2369 sds pattern
= c
->argv
[1]->ptr
;
2370 int plen
= sdslen(pattern
);
2371 int numkeys
= 0, keyslen
= 0;
2372 robj
*lenobj
= createObject(REDIS_STRING
,NULL
);
2374 di
= dictGetIterator(c
->db
->dict
);
2375 if (!di
) oom("dictGetIterator");
2377 decrRefCount(lenobj
);
2378 while((de
= dictNext(di
)) != NULL
) {
2379 robj
*keyobj
= dictGetEntryKey(de
);
2381 sds key
= keyobj
->ptr
;
2382 if ((pattern
[0] == '*' && pattern
[1] == '\0') ||
2383 stringmatchlen(pattern
,plen
,key
,sdslen(key
),0)) {
2384 if (expireIfNeeded(c
->db
,keyobj
) == 0) {
2386 addReply(c
,shared
.space
);
2389 keyslen
+= sdslen(key
);
2393 dictReleaseIterator(di
);
2394 lenobj
->ptr
= sdscatprintf(sdsempty(),"$%lu\r\n",keyslen
+(numkeys
? (numkeys
-1) : 0));
2395 addReply(c
,shared
.crlf
);
2398 static void dbsizeCommand(redisClient
*c
) {
2400 sdscatprintf(sdsempty(),":%lu\r\n",dictSize(c
->db
->dict
)));
2403 static void lastsaveCommand(redisClient
*c
) {
2405 sdscatprintf(sdsempty(),":%lu\r\n",server
.lastsave
));
2408 static void typeCommand(redisClient
*c
) {
2412 o
= lookupKeyRead(c
->db
,c
->argv
[1]);
2417 case REDIS_STRING
: type
= "+string"; break;
2418 case REDIS_LIST
: type
= "+list"; break;
2419 case REDIS_SET
: type
= "+set"; break;
2420 default: type
= "unknown"; break;
2423 addReplySds(c
,sdsnew(type
));
2424 addReply(c
,shared
.crlf
);
2427 static void saveCommand(redisClient
*c
) {
2428 if (server
.bgsaveinprogress
) {
2429 addReplySds(c
,sdsnew("-ERR background save in progress\r\n"));
2432 if (rdbSave(server
.dbfilename
) == REDIS_OK
) {
2433 addReply(c
,shared
.ok
);
2435 addReply(c
,shared
.err
);
2439 static void bgsaveCommand(redisClient
*c
) {
2440 if (server
.bgsaveinprogress
) {
2441 addReplySds(c
,sdsnew("-ERR background save already in progress\r\n"));
2444 if (rdbSaveBackground(server
.dbfilename
) == REDIS_OK
) {
2445 addReply(c
,shared
.ok
);
2447 addReply(c
,shared
.err
);
2451 static void shutdownCommand(redisClient
*c
) {
2452 redisLog(REDIS_WARNING
,"User requested shutdown, saving DB...");
2453 /* XXX: TODO kill the child if there is a bgsave in progress */
2454 if (rdbSave(server
.dbfilename
) == REDIS_OK
) {
2455 if (server
.daemonize
) {
2456 unlink(server
.pidfile
);
2458 redisLog(REDIS_WARNING
,"%zu bytes used at exit",zmalloc_used_memory());
2459 redisLog(REDIS_WARNING
,"Server exit now, bye bye...");
2462 redisLog(REDIS_WARNING
,"Error trying to save the DB, can't exit");
2463 addReplySds(c
,sdsnew("-ERR can't quit, problems saving the DB\r\n"));
2467 static void renameGenericCommand(redisClient
*c
, int nx
) {
2470 /* To use the same key as src and dst is probably an error */
2471 if (sdscmp(c
->argv
[1]->ptr
,c
->argv
[2]->ptr
) == 0) {
2472 addReply(c
,shared
.sameobjecterr
);
2476 o
= lookupKeyWrite(c
->db
,c
->argv
[1]);
2478 addReply(c
,shared
.nokeyerr
);
2482 deleteIfVolatile(c
->db
,c
->argv
[2]);
2483 if (dictAdd(c
->db
->dict
,c
->argv
[2],o
) == DICT_ERR
) {
2486 addReply(c
,shared
.czero
);
2489 dictReplace(c
->db
->dict
,c
->argv
[2],o
);
2491 incrRefCount(c
->argv
[2]);
2493 deleteKey(c
->db
,c
->argv
[1]);
2495 addReply(c
,nx
? shared
.cone
: shared
.ok
);
2498 static void renameCommand(redisClient
*c
) {
2499 renameGenericCommand(c
,0);
2502 static void renamenxCommand(redisClient
*c
) {
2503 renameGenericCommand(c
,1);
2506 static void moveCommand(redisClient
*c
) {
2511 /* Obtain source and target DB pointers */
2514 if (selectDb(c
,atoi(c
->argv
[2]->ptr
)) == REDIS_ERR
) {
2515 addReply(c
,shared
.outofrangeerr
);
2519 selectDb(c
,srcid
); /* Back to the source DB */
2521 /* If the user is moving using as target the same
2522 * DB as the source DB it is probably an error. */
2524 addReply(c
,shared
.sameobjecterr
);
2528 /* Check if the element exists and get a reference */
2529 o
= lookupKeyWrite(c
->db
,c
->argv
[1]);
2531 addReply(c
,shared
.czero
);
2535 /* Try to add the element to the target DB */
2536 deleteIfVolatile(dst
,c
->argv
[1]);
2537 if (dictAdd(dst
->dict
,c
->argv
[1],o
) == DICT_ERR
) {
2538 addReply(c
,shared
.czero
);
2541 incrRefCount(c
->argv
[1]);
2544 /* OK! key moved, free the entry in the source DB */
2545 deleteKey(src
,c
->argv
[1]);
2547 addReply(c
,shared
.cone
);
2550 /* =================================== Lists ================================ */
2551 static void pushGenericCommand(redisClient
*c
, int where
) {
2555 lobj
= lookupKeyWrite(c
->db
,c
->argv
[1]);
2557 lobj
= createListObject();
2559 if (where
== REDIS_HEAD
) {
2560 if (!listAddNodeHead(list
,c
->argv
[2])) oom("listAddNodeHead");
2562 if (!listAddNodeTail(list
,c
->argv
[2])) oom("listAddNodeTail");
2564 dictAdd(c
->db
->dict
,c
->argv
[1],lobj
);
2565 incrRefCount(c
->argv
[1]);
2566 incrRefCount(c
->argv
[2]);
2568 if (lobj
->type
!= REDIS_LIST
) {
2569 addReply(c
,shared
.wrongtypeerr
);
2573 if (where
== REDIS_HEAD
) {
2574 if (!listAddNodeHead(list
,c
->argv
[2])) oom("listAddNodeHead");
2576 if (!listAddNodeTail(list
,c
->argv
[2])) oom("listAddNodeTail");
2578 incrRefCount(c
->argv
[2]);
2581 addReply(c
,shared
.ok
);
2584 static void lpushCommand(redisClient
*c
) {
2585 pushGenericCommand(c
,REDIS_HEAD
);
2588 static void rpushCommand(redisClient
*c
) {
2589 pushGenericCommand(c
,REDIS_TAIL
);
2592 static void llenCommand(redisClient
*c
) {
2596 o
= lookupKeyRead(c
->db
,c
->argv
[1]);
2598 addReply(c
,shared
.czero
);
2601 if (o
->type
!= REDIS_LIST
) {
2602 addReply(c
,shared
.wrongtypeerr
);
2605 addReplySds(c
,sdscatprintf(sdsempty(),":%d\r\n",listLength(l
)));
2610 static void lindexCommand(redisClient
*c
) {
2612 int index
= atoi(c
->argv
[2]->ptr
);
2614 o
= lookupKeyRead(c
->db
,c
->argv
[1]);
2616 addReply(c
,shared
.nullbulk
);
2618 if (o
->type
!= REDIS_LIST
) {
2619 addReply(c
,shared
.wrongtypeerr
);
2621 list
*list
= o
->ptr
;
2624 ln
= listIndex(list
, index
);
2626 addReply(c
,shared
.nullbulk
);
2628 robj
*ele
= listNodeValue(ln
);
2629 addReplySds(c
,sdscatprintf(sdsempty(),"$%d\r\n",(int)sdslen(ele
->ptr
)));
2631 addReply(c
,shared
.crlf
);
2637 static void lsetCommand(redisClient
*c
) {
2639 int index
= atoi(c
->argv
[2]->ptr
);
2641 o
= lookupKeyWrite(c
->db
,c
->argv
[1]);
2643 addReply(c
,shared
.nokeyerr
);
2645 if (o
->type
!= REDIS_LIST
) {
2646 addReply(c
,shared
.wrongtypeerr
);
2648 list
*list
= o
->ptr
;
2651 ln
= listIndex(list
, index
);
2653 addReply(c
,shared
.outofrangeerr
);
2655 robj
*ele
= listNodeValue(ln
);
2658 listNodeValue(ln
) = c
->argv
[3];
2659 incrRefCount(c
->argv
[3]);
2660 addReply(c
,shared
.ok
);
2667 static void popGenericCommand(redisClient
*c
, int where
) {
2670 o
= lookupKeyWrite(c
->db
,c
->argv
[1]);
2672 addReply(c
,shared
.nullbulk
);
2674 if (o
->type
!= REDIS_LIST
) {
2675 addReply(c
,shared
.wrongtypeerr
);
2677 list
*list
= o
->ptr
;
2680 if (where
== REDIS_HEAD
)
2681 ln
= listFirst(list
);
2683 ln
= listLast(list
);
2686 addReply(c
,shared
.nullbulk
);
2688 robj
*ele
= listNodeValue(ln
);
2689 addReplySds(c
,sdscatprintf(sdsempty(),"$%d\r\n",(int)sdslen(ele
->ptr
)));
2691 addReply(c
,shared
.crlf
);
2692 listDelNode(list
,ln
);
2699 static void lpopCommand(redisClient
*c
) {
2700 popGenericCommand(c
,REDIS_HEAD
);
2703 static void rpopCommand(redisClient
*c
) {
2704 popGenericCommand(c
,REDIS_TAIL
);
2707 static void lrangeCommand(redisClient
*c
) {
2709 int start
= atoi(c
->argv
[2]->ptr
);
2710 int end
= atoi(c
->argv
[3]->ptr
);
2712 o
= lookupKeyRead(c
->db
,c
->argv
[1]);
2714 addReply(c
,shared
.nullmultibulk
);
2716 if (o
->type
!= REDIS_LIST
) {
2717 addReply(c
,shared
.wrongtypeerr
);
2719 list
*list
= o
->ptr
;
2721 int llen
= listLength(list
);
2725 /* convert negative indexes */
2726 if (start
< 0) start
= llen
+start
;
2727 if (end
< 0) end
= llen
+end
;
2728 if (start
< 0) start
= 0;
2729 if (end
< 0) end
= 0;
2731 /* indexes sanity checks */
2732 if (start
> end
|| start
>= llen
) {
2733 /* Out of range start or start > end result in empty list */
2734 addReply(c
,shared
.emptymultibulk
);
2737 if (end
>= llen
) end
= llen
-1;
2738 rangelen
= (end
-start
)+1;
2740 /* Return the result in form of a multi-bulk reply */
2741 ln
= listIndex(list
, start
);
2742 addReplySds(c
,sdscatprintf(sdsempty(),"*%d\r\n",rangelen
));
2743 for (j
= 0; j
< rangelen
; j
++) {
2744 ele
= listNodeValue(ln
);
2745 addReplySds(c
,sdscatprintf(sdsempty(),"$%d\r\n",(int)sdslen(ele
->ptr
)));
2747 addReply(c
,shared
.crlf
);
2754 static void ltrimCommand(redisClient
*c
) {
2756 int start
= atoi(c
->argv
[2]->ptr
);
2757 int end
= atoi(c
->argv
[3]->ptr
);
2759 o
= lookupKeyWrite(c
->db
,c
->argv
[1]);
2761 addReply(c
,shared
.nokeyerr
);
2763 if (o
->type
!= REDIS_LIST
) {
2764 addReply(c
,shared
.wrongtypeerr
);
2766 list
*list
= o
->ptr
;
2768 int llen
= listLength(list
);
2769 int j
, ltrim
, rtrim
;
2771 /* convert negative indexes */
2772 if (start
< 0) start
= llen
+start
;
2773 if (end
< 0) end
= llen
+end
;
2774 if (start
< 0) start
= 0;
2775 if (end
< 0) end
= 0;
2777 /* indexes sanity checks */
2778 if (start
> end
|| start
>= llen
) {
2779 /* Out of range start or start > end result in empty list */
2783 if (end
>= llen
) end
= llen
-1;
2788 /* Remove list elements to perform the trim */
2789 for (j
= 0; j
< ltrim
; j
++) {
2790 ln
= listFirst(list
);
2791 listDelNode(list
,ln
);
2793 for (j
= 0; j
< rtrim
; j
++) {
2794 ln
= listLast(list
);
2795 listDelNode(list
,ln
);
2797 addReply(c
,shared
.ok
);
2803 static void lremCommand(redisClient
*c
) {
2806 o
= lookupKeyWrite(c
->db
,c
->argv
[1]);
2808 addReply(c
,shared
.nokeyerr
);
2810 if (o
->type
!= REDIS_LIST
) {
2811 addReply(c
,shared
.wrongtypeerr
);
2813 list
*list
= o
->ptr
;
2814 listNode
*ln
, *next
;
2815 int toremove
= atoi(c
->argv
[2]->ptr
);
2820 toremove
= -toremove
;
2823 ln
= fromtail
? list
->tail
: list
->head
;
2825 robj
*ele
= listNodeValue(ln
);
2827 next
= fromtail
? ln
->prev
: ln
->next
;
2828 if (sdscmp(ele
->ptr
,c
->argv
[3]->ptr
) == 0) {
2829 listDelNode(list
,ln
);
2832 if (toremove
&& removed
== toremove
) break;
2836 addReplySds(c
,sdscatprintf(sdsempty(),":%d\r\n",removed
));
2841 /* ==================================== Sets ================================ */
2843 static void saddCommand(redisClient
*c
) {
2846 set
= lookupKeyWrite(c
->db
,c
->argv
[1]);
2848 set
= createSetObject();
2849 dictAdd(c
->db
->dict
,c
->argv
[1],set
);
2850 incrRefCount(c
->argv
[1]);
2852 if (set
->type
!= REDIS_SET
) {
2853 addReply(c
,shared
.wrongtypeerr
);
2857 if (dictAdd(set
->ptr
,c
->argv
[2],NULL
) == DICT_OK
) {
2858 incrRefCount(c
->argv
[2]);
2860 addReply(c
,shared
.cone
);
2862 addReply(c
,shared
.czero
);
2866 static void sremCommand(redisClient
*c
) {
2869 set
= lookupKeyWrite(c
->db
,c
->argv
[1]);
2871 addReply(c
,shared
.czero
);
2873 if (set
->type
!= REDIS_SET
) {
2874 addReply(c
,shared
.wrongtypeerr
);
2877 if (dictDelete(set
->ptr
,c
->argv
[2]) == DICT_OK
) {
2879 addReply(c
,shared
.cone
);
2881 addReply(c
,shared
.czero
);
2886 static void smoveCommand(redisClient
*c
) {
2887 robj
*srcset
, *dstset
;
2889 srcset
= lookupKeyWrite(c
->db
,c
->argv
[1]);
2890 dstset
= lookupKeyWrite(c
->db
,c
->argv
[2]);
2892 /* If the source key does not exist return 0, if it's of the wrong type
2894 if (srcset
== NULL
|| srcset
->type
!= REDIS_SET
) {
2895 addReply(c
, srcset
? shared
.wrongtypeerr
: shared
.czero
);
2898 /* Error if the destination key is not a set as well */
2899 if (dstset
&& dstset
->type
!= REDIS_SET
) {
2900 addReply(c
,shared
.wrongtypeerr
);
2903 /* Remove the element from the source set */
2904 if (dictDelete(srcset
->ptr
,c
->argv
[3]) == DICT_ERR
) {
2905 /* Key not found in the src set! return zero */
2906 addReply(c
,shared
.czero
);
2910 /* Add the element to the destination set */
2912 dstset
= createSetObject();
2913 dictAdd(c
->db
->dict
,c
->argv
[2],dstset
);
2914 incrRefCount(c
->argv
[2]);
2916 if (dictAdd(dstset
->ptr
,c
->argv
[3],NULL
) == DICT_OK
)
2917 incrRefCount(c
->argv
[3]);
2918 addReply(c
,shared
.cone
);
2921 static void sismemberCommand(redisClient
*c
) {
2924 set
= lookupKeyRead(c
->db
,c
->argv
[1]);
2926 addReply(c
,shared
.czero
);
2928 if (set
->type
!= REDIS_SET
) {
2929 addReply(c
,shared
.wrongtypeerr
);
2932 if (dictFind(set
->ptr
,c
->argv
[2]))
2933 addReply(c
,shared
.cone
);
2935 addReply(c
,shared
.czero
);
2939 static void scardCommand(redisClient
*c
) {
2943 o
= lookupKeyRead(c
->db
,c
->argv
[1]);
2945 addReply(c
,shared
.czero
);
2948 if (o
->type
!= REDIS_SET
) {
2949 addReply(c
,shared
.wrongtypeerr
);
2952 addReplySds(c
,sdscatprintf(sdsempty(),":%d\r\n",
2958 static int qsortCompareSetsByCardinality(const void *s1
, const void *s2
) {
2959 dict
**d1
= (void*) s1
, **d2
= (void*) s2
;
2961 return dictSize(*d1
)-dictSize(*d2
);
2964 static void sinterGenericCommand(redisClient
*c
, robj
**setskeys
, int setsnum
, robj
*dstkey
) {
2965 dict
**dv
= zmalloc(sizeof(dict
*)*setsnum
);
2968 robj
*lenobj
= NULL
, *dstset
= NULL
;
2969 int j
, cardinality
= 0;
2971 if (!dv
) oom("sinterCommand");
2972 for (j
= 0; j
< setsnum
; j
++) {
2976 lookupKeyWrite(c
->db
,setskeys
[j
]) :
2977 lookupKeyRead(c
->db
,setskeys
[j
]);
2981 deleteKey(c
->db
,dstkey
);
2982 addReply(c
,shared
.ok
);
2984 addReply(c
,shared
.nullmultibulk
);
2988 if (setobj
->type
!= REDIS_SET
) {
2990 addReply(c
,shared
.wrongtypeerr
);
2993 dv
[j
] = setobj
->ptr
;
2995 /* Sort sets from the smallest to largest, this will improve our
2996 * algorithm's performace */
2997 qsort(dv
,setsnum
,sizeof(dict
*),qsortCompareSetsByCardinality
);
2999 /* The first thing we should output is the total number of elements...
3000 * since this is a multi-bulk write, but at this stage we don't know
3001 * the intersection set size, so we use a trick, append an empty object
3002 * to the output list and save the pointer to later modify it with the
3005 lenobj
= createObject(REDIS_STRING
,NULL
);
3007 decrRefCount(lenobj
);
3009 /* If we have a target key where to store the resulting set
3010 * create this key with an empty set inside */
3011 dstset
= createSetObject();
3012 deleteKey(c
->db
,dstkey
);
3013 dictAdd(c
->db
->dict
,dstkey
,dstset
);
3014 incrRefCount(dstkey
);
3017 /* Iterate all the elements of the first (smallest) set, and test
3018 * the element against all the other sets, if at least one set does
3019 * not include the element it is discarded */
3020 di
= dictGetIterator(dv
[0]);
3021 if (!di
) oom("dictGetIterator");
3023 while((de
= dictNext(di
)) != NULL
) {
3026 for (j
= 1; j
< setsnum
; j
++)
3027 if (dictFind(dv
[j
],dictGetEntryKey(de
)) == NULL
) break;
3029 continue; /* at least one set does not contain the member */
3030 ele
= dictGetEntryKey(de
);
3032 addReplySds(c
,sdscatprintf(sdsempty(),"$%d\r\n",sdslen(ele
->ptr
)));
3034 addReply(c
,shared
.crlf
);
3037 dictAdd(dstset
->ptr
,ele
,NULL
);
3041 dictReleaseIterator(di
);
3044 lenobj
->ptr
= sdscatprintf(sdsempty(),"*%d\r\n",cardinality
);
3046 addReply(c
,shared
.ok
);
3052 static void sinterCommand(redisClient
*c
) {
3053 sinterGenericCommand(c
,c
->argv
+1,c
->argc
-1,NULL
);
3056 static void sinterstoreCommand(redisClient
*c
) {
3057 sinterGenericCommand(c
,c
->argv
+2,c
->argc
-2,c
->argv
[1]);
3060 static void sunionGenericCommand(redisClient
*c
, robj
**setskeys
, int setsnum
, robj
*dstkey
) {
3061 dict
**dv
= zmalloc(sizeof(dict
*)*setsnum
);
3064 robj
*lenobj
= NULL
, *dstset
= NULL
;
3065 int j
, cardinality
= 0;
3067 if (!dv
) oom("sunionCommand");
3068 for (j
= 0; j
< setsnum
; j
++) {
3072 lookupKeyWrite(c
->db
,setskeys
[j
]) :
3073 lookupKeyRead(c
->db
,setskeys
[j
]);
3078 if (setobj
->type
!= REDIS_SET
) {
3080 addReply(c
,shared
.wrongtypeerr
);
3083 dv
[j
] = setobj
->ptr
;
3086 /* We need a temp set object to store our union. If the dstkey
3087 * is not NULL (that is, we are inside an SUNIONSTORE operation) then
3088 * this set object will be the resulting object to set into the target key*/
3089 dstset
= createSetObject();
3091 /* The first thing we should output is the total number of elements...
3092 * since this is a multi-bulk write, but at this stage we don't know
3093 * the intersection set size, so we use a trick, append an empty object
3094 * to the output list and save the pointer to later modify it with the
3097 lenobj
= createObject(REDIS_STRING
,NULL
);
3099 decrRefCount(lenobj
);
3101 /* If we have a target key where to store the resulting set
3102 * create this key with an empty set inside */
3103 deleteKey(c
->db
,dstkey
);
3104 dictAdd(c
->db
->dict
,dstkey
,dstset
);
3105 incrRefCount(dstkey
);
3109 /* Iterate all the elements of all the sets, add every element a single
3110 * time to the result set */
3111 for (j
= 0; j
< setsnum
; j
++) {
3112 if (!dv
[j
]) continue; /* non existing keys are like empty sets */
3114 di
= dictGetIterator(dv
[j
]);
3115 if (!di
) oom("dictGetIterator");
3117 while((de
= dictNext(di
)) != NULL
) {
3120 /* dictAdd will not add the same element multiple times */
3121 ele
= dictGetEntryKey(de
);
3122 if (dictAdd(dstset
->ptr
,ele
,NULL
) == DICT_OK
) {
3125 addReplySds(c
,sdscatprintf(sdsempty(),
3126 "$%d\r\n",sdslen(ele
->ptr
)));
3128 addReply(c
,shared
.crlf
);
3133 dictReleaseIterator(di
);
3137 lenobj
->ptr
= sdscatprintf(sdsempty(),"*%d\r\n",cardinality
);
3138 decrRefCount(dstset
);
3140 addReply(c
,shared
.ok
);
3146 static void sunionCommand(redisClient
*c
) {
3147 sunionGenericCommand(c
,c
->argv
+1,c
->argc
-1,NULL
);
3150 static void sunionstoreCommand(redisClient
*c
) {
3151 sunionGenericCommand(c
,c
->argv
+2,c
->argc
-2,c
->argv
[1]);
3154 static void flushdbCommand(redisClient
*c
) {
3155 server
.dirty
+= dictSize(c
->db
->dict
);
3156 dictEmpty(c
->db
->dict
);
3157 dictEmpty(c
->db
->expires
);
3158 addReply(c
,shared
.ok
);
3161 static void flushallCommand(redisClient
*c
) {
3162 server
.dirty
+= emptyDb();
3163 addReply(c
,shared
.ok
);
3164 rdbSave(server
.dbfilename
);
3168 redisSortOperation
*createSortOperation(int type
, robj
*pattern
) {
3169 redisSortOperation
*so
= zmalloc(sizeof(*so
));
3170 if (!so
) oom("createSortOperation");
3172 so
->pattern
= pattern
;
3176 /* Return the value associated to the key with a name obtained
3177 * substituting the first occurence of '*' in 'pattern' with 'subst' */
3178 robj
*lookupKeyByPattern(redisDb
*db
, robj
*pattern
, robj
*subst
) {
3182 int prefixlen
, sublen
, postfixlen
;
3183 /* Expoit the internal sds representation to create a sds string allocated on the stack in order to make this function faster */
3187 char buf
[REDIS_SORTKEY_MAX
+1];
3190 spat
= pattern
->ptr
;
3192 if (sdslen(spat
)+sdslen(ssub
)-1 > REDIS_SORTKEY_MAX
) return NULL
;
3193 p
= strchr(spat
,'*');
3194 if (!p
) return NULL
;
3197 sublen
= sdslen(ssub
);
3198 postfixlen
= sdslen(spat
)-(prefixlen
+1);
3199 memcpy(keyname
.buf
,spat
,prefixlen
);
3200 memcpy(keyname
.buf
+prefixlen
,ssub
,sublen
);
3201 memcpy(keyname
.buf
+prefixlen
+sublen
,p
+1,postfixlen
);
3202 keyname
.buf
[prefixlen
+sublen
+postfixlen
] = '\0';
3203 keyname
.len
= prefixlen
+sublen
+postfixlen
;
3205 keyobj
.refcount
= 1;
3206 keyobj
.type
= REDIS_STRING
;
3207 keyobj
.ptr
= ((char*)&keyname
)+(sizeof(long)*2);
3209 /* printf("lookup '%s' => %p\n", keyname.buf,de); */
3210 return lookupKeyRead(db
,&keyobj
);
3213 /* sortCompare() is used by qsort in sortCommand(). Given that qsort_r with
3214 * the additional parameter is not standard but a BSD-specific we have to
3215 * pass sorting parameters via the global 'server' structure */
3216 static int sortCompare(const void *s1
, const void *s2
) {
3217 const redisSortObject
*so1
= s1
, *so2
= s2
;
3220 if (!server
.sort_alpha
) {
3221 /* Numeric sorting. Here it's trivial as we precomputed scores */
3222 if (so1
->u
.score
> so2
->u
.score
) {
3224 } else if (so1
->u
.score
< so2
->u
.score
) {
3230 /* Alphanumeric sorting */
3231 if (server
.sort_bypattern
) {
3232 if (!so1
->u
.cmpobj
|| !so2
->u
.cmpobj
) {
3233 /* At least one compare object is NULL */
3234 if (so1
->u
.cmpobj
== so2
->u
.cmpobj
)
3236 else if (so1
->u
.cmpobj
== NULL
)
3241 /* We have both the objects, use strcoll */
3242 cmp
= strcoll(so1
->u
.cmpobj
->ptr
,so2
->u
.cmpobj
->ptr
);
3245 /* Compare elements directly */
3246 cmp
= strcoll(so1
->obj
->ptr
,so2
->obj
->ptr
);
3249 return server
.sort_desc
? -cmp
: cmp
;
3252 /* The SORT command is the most complex command in Redis. Warning: this code
3253 * is optimized for speed and a bit less for readability */
3254 static void sortCommand(redisClient
*c
) {
3257 int desc
= 0, alpha
= 0;
3258 int limit_start
= 0, limit_count
= -1, start
, end
;
3259 int j
, dontsort
= 0, vectorlen
;
3260 int getop
= 0; /* GET operation counter */
3261 robj
*sortval
, *sortby
= NULL
;
3262 redisSortObject
*vector
; /* Resulting vector to sort */
3264 /* Lookup the key to sort. It must be of the right types */
3265 sortval
= lookupKeyRead(c
->db
,c
->argv
[1]);
3266 if (sortval
== NULL
) {
3267 addReply(c
,shared
.nokeyerr
);
3270 if (sortval
->type
!= REDIS_SET
&& sortval
->type
!= REDIS_LIST
) {
3271 addReply(c
,shared
.wrongtypeerr
);
3275 /* Create a list of operations to perform for every sorted element.
3276 * Operations can be GET/DEL/INCR/DECR */
3277 operations
= listCreate();
3278 listSetFreeMethod(operations
,zfree
);
3281 /* Now we need to protect sortval incrementing its count, in the future
3282 * SORT may have options able to overwrite/delete keys during the sorting
3283 * and the sorted key itself may get destroied */
3284 incrRefCount(sortval
);
3286 /* The SORT command has an SQL-alike syntax, parse it */
3287 while(j
< c
->argc
) {
3288 int leftargs
= c
->argc
-j
-1;
3289 if (!strcasecmp(c
->argv
[j
]->ptr
,"asc")) {
3291 } else if (!strcasecmp(c
->argv
[j
]->ptr
,"desc")) {
3293 } else if (!strcasecmp(c
->argv
[j
]->ptr
,"alpha")) {
3295 } else if (!strcasecmp(c
->argv
[j
]->ptr
,"limit") && leftargs
>= 2) {
3296 limit_start
= atoi(c
->argv
[j
+1]->ptr
);
3297 limit_count
= atoi(c
->argv
[j
+2]->ptr
);
3299 } else if (!strcasecmp(c
->argv
[j
]->ptr
,"by") && leftargs
>= 1) {
3300 sortby
= c
->argv
[j
+1];
3301 /* If the BY pattern does not contain '*', i.e. it is constant,
3302 * we don't need to sort nor to lookup the weight keys. */
3303 if (strchr(c
->argv
[j
+1]->ptr
,'*') == NULL
) dontsort
= 1;
3305 } else if (!strcasecmp(c
->argv
[j
]->ptr
,"get") && leftargs
>= 1) {
3306 listAddNodeTail(operations
,createSortOperation(
3307 REDIS_SORT_GET
,c
->argv
[j
+1]));
3310 } else if (!strcasecmp(c
->argv
[j
]->ptr
,"del") && leftargs
>= 1) {
3311 listAddNodeTail(operations
,createSortOperation(
3312 REDIS_SORT_DEL
,c
->argv
[j
+1]));
3314 } else if (!strcasecmp(c
->argv
[j
]->ptr
,"incr") && leftargs
>= 1) {
3315 listAddNodeTail(operations
,createSortOperation(
3316 REDIS_SORT_INCR
,c
->argv
[j
+1]));
3318 } else if (!strcasecmp(c
->argv
[j
]->ptr
,"get") && leftargs
>= 1) {
3319 listAddNodeTail(operations
,createSortOperation(
3320 REDIS_SORT_DECR
,c
->argv
[j
+1]));
3323 decrRefCount(sortval
);
3324 listRelease(operations
);
3325 addReply(c
,shared
.syntaxerr
);
3331 /* Load the sorting vector with all the objects to sort */
3332 vectorlen
= (sortval
->type
== REDIS_LIST
) ?
3333 listLength((list
*)sortval
->ptr
) :
3334 dictSize((dict
*)sortval
->ptr
);
3335 vector
= zmalloc(sizeof(redisSortObject
)*vectorlen
);
3336 if (!vector
) oom("allocating objects vector for SORT");
3338 if (sortval
->type
== REDIS_LIST
) {
3339 list
*list
= sortval
->ptr
;
3343 while((ln
= listYield(list
))) {
3344 robj
*ele
= ln
->value
;
3345 vector
[j
].obj
= ele
;
3346 vector
[j
].u
.score
= 0;
3347 vector
[j
].u
.cmpobj
= NULL
;
3351 dict
*set
= sortval
->ptr
;
3355 di
= dictGetIterator(set
);
3356 if (!di
) oom("dictGetIterator");
3357 while((setele
= dictNext(di
)) != NULL
) {
3358 vector
[j
].obj
= dictGetEntryKey(setele
);
3359 vector
[j
].u
.score
= 0;
3360 vector
[j
].u
.cmpobj
= NULL
;
3363 dictReleaseIterator(di
);
3365 assert(j
== vectorlen
);
3367 /* Now it's time to load the right scores in the sorting vector */
3368 if (dontsort
== 0) {
3369 for (j
= 0; j
< vectorlen
; j
++) {
3373 byval
= lookupKeyByPattern(c
->db
,sortby
,vector
[j
].obj
);
3374 if (!byval
|| byval
->type
!= REDIS_STRING
) continue;
3376 vector
[j
].u
.cmpobj
= byval
;
3377 incrRefCount(byval
);
3379 vector
[j
].u
.score
= strtod(byval
->ptr
,NULL
);
3382 if (!alpha
) vector
[j
].u
.score
= strtod(vector
[j
].obj
->ptr
,NULL
);
3387 /* We are ready to sort the vector... perform a bit of sanity check
3388 * on the LIMIT option too. We'll use a partial version of quicksort. */
3389 start
= (limit_start
< 0) ? 0 : limit_start
;
3390 end
= (limit_count
< 0) ? vectorlen
-1 : start
+limit_count
-1;
3391 if (start
>= vectorlen
) {
3392 start
= vectorlen
-1;
3395 if (end
>= vectorlen
) end
= vectorlen
-1;
3397 if (dontsort
== 0) {
3398 server
.sort_desc
= desc
;
3399 server
.sort_alpha
= alpha
;
3400 server
.sort_bypattern
= sortby
? 1 : 0;
3401 qsort(vector
,vectorlen
,sizeof(redisSortObject
),sortCompare
);
3404 /* Send command output to the output buffer, performing the specified
3405 * GET/DEL/INCR/DECR operations if any. */
3406 outputlen
= getop
? getop
*(end
-start
+1) : end
-start
+1;
3407 addReplySds(c
,sdscatprintf(sdsempty(),"*%d\r\n",outputlen
));
3408 for (j
= start
; j
<= end
; j
++) {
3411 addReplySds(c
,sdscatprintf(sdsempty(),"$%d\r\n",
3412 sdslen(vector
[j
].obj
->ptr
)));
3413 addReply(c
,vector
[j
].obj
);
3414 addReply(c
,shared
.crlf
);
3416 listRewind(operations
);
3417 while((ln
= listYield(operations
))) {
3418 redisSortOperation
*sop
= ln
->value
;
3419 robj
*val
= lookupKeyByPattern(c
->db
,sop
->pattern
,
3422 if (sop
->type
== REDIS_SORT_GET
) {
3423 if (!val
|| val
->type
!= REDIS_STRING
) {
3424 addReply(c
,shared
.nullbulk
);
3426 addReplySds(c
,sdscatprintf(sdsempty(),"$%d\r\n",
3429 addReply(c
,shared
.crlf
);
3431 } else if (sop
->type
== REDIS_SORT_DEL
) {
3438 decrRefCount(sortval
);
3439 listRelease(operations
);
3440 for (j
= 0; j
< vectorlen
; j
++) {
3441 if (sortby
&& alpha
&& vector
[j
].u
.cmpobj
)
3442 decrRefCount(vector
[j
].u
.cmpobj
);
3447 static void infoCommand(redisClient
*c
) {
3449 time_t uptime
= time(NULL
)-server
.stat_starttime
;
3451 info
= sdscatprintf(sdsempty(),
3452 "redis_version:%s\r\n"
3453 "connected_clients:%d\r\n"
3454 "connected_slaves:%d\r\n"
3455 "used_memory:%zu\r\n"
3456 "changes_since_last_save:%lld\r\n"
3457 "bgsave_in_progress:%d\r\n"
3458 "last_save_time:%d\r\n"
3459 "total_connections_received:%lld\r\n"
3460 "total_commands_processed:%lld\r\n"
3461 "uptime_in_seconds:%d\r\n"
3462 "uptime_in_days:%d\r\n"
3464 listLength(server
.clients
)-listLength(server
.slaves
),
3465 listLength(server
.slaves
),
3468 server
.bgsaveinprogress
,
3470 server
.stat_numconnections
,
3471 server
.stat_numcommands
,
3475 addReplySds(c
,sdscatprintf(sdsempty(),"$%d\r\n",sdslen(info
)));
3476 addReplySds(c
,info
);
3477 addReply(c
,shared
.crlf
);
3480 static void monitorCommand(redisClient
*c
) {
3481 /* ignore MONITOR if aleady slave or in monitor mode */
3482 if (c
->flags
& REDIS_SLAVE
) return;
3484 c
->flags
|= (REDIS_SLAVE
|REDIS_MONITOR
);
3486 if (!listAddNodeTail(server
.monitors
,c
)) oom("listAddNodeTail");
3487 addReply(c
,shared
.ok
);
3490 /* ================================= Expire ================================= */
3491 static int removeExpire(redisDb
*db
, robj
*key
) {
3492 if (dictDelete(db
->expires
,key
) == DICT_OK
) {
3499 static int setExpire(redisDb
*db
, robj
*key
, time_t when
) {
3500 if (dictAdd(db
->expires
,key
,(void*)when
) == DICT_ERR
) {
3508 /* Return the expire time of the specified key, or -1 if no expire
3509 * is associated with this key (i.e. the key is non volatile) */
3510 static time_t getExpire(redisDb
*db
, robj
*key
) {
3513 /* No expire? return ASAP */
3514 if (dictSize(db
->expires
) == 0 ||
3515 (de
= dictFind(db
->expires
,key
)) == NULL
) return -1;
3517 return (time_t) dictGetEntryVal(de
);
3520 static int expireIfNeeded(redisDb
*db
, robj
*key
) {
3524 /* No expire? return ASAP */
3525 if (dictSize(db
->expires
) == 0 ||
3526 (de
= dictFind(db
->expires
,key
)) == NULL
) return 0;
3528 /* Lookup the expire */
3529 when
= (time_t) dictGetEntryVal(de
);
3530 if (time(NULL
) <= when
) return 0;
3532 /* Delete the key */
3533 dictDelete(db
->expires
,key
);
3534 return dictDelete(db
->dict
,key
) == DICT_OK
;
3537 static int deleteIfVolatile(redisDb
*db
, robj
*key
) {
3540 /* No expire? return ASAP */
3541 if (dictSize(db
->expires
) == 0 ||
3542 (de
= dictFind(db
->expires
,key
)) == NULL
) return 0;
3544 /* Delete the key */
3546 dictDelete(db
->expires
,key
);
3547 return dictDelete(db
->dict
,key
) == DICT_OK
;
3550 static void expireCommand(redisClient
*c
) {
3552 int seconds
= atoi(c
->argv
[2]->ptr
);
3554 de
= dictFind(c
->db
->dict
,c
->argv
[1]);
3556 addReply(c
,shared
.czero
);
3560 addReply(c
, shared
.czero
);
3563 time_t when
= time(NULL
)+seconds
;
3564 if (setExpire(c
->db
,c
->argv
[1],when
))
3565 addReply(c
,shared
.cone
);
3567 addReply(c
,shared
.czero
);
3572 /* =============================== Replication ============================= */
3574 static int syncWrite(int fd
, char *ptr
, ssize_t size
, int timeout
) {
3575 ssize_t nwritten
, ret
= size
;
3576 time_t start
= time(NULL
);
3580 if (aeWait(fd
,AE_WRITABLE
,1000) & AE_WRITABLE
) {
3581 nwritten
= write(fd
,ptr
,size
);
3582 if (nwritten
== -1) return -1;
3586 if ((time(NULL
)-start
) > timeout
) {
3594 static int syncRead(int fd
, char *ptr
, ssize_t size
, int timeout
) {
3595 ssize_t nread
, totread
= 0;
3596 time_t start
= time(NULL
);
3600 if (aeWait(fd
,AE_READABLE
,1000) & AE_READABLE
) {
3601 nread
= read(fd
,ptr
,size
);
3602 if (nread
== -1) return -1;
3607 if ((time(NULL
)-start
) > timeout
) {
3615 static int syncReadLine(int fd
, char *ptr
, ssize_t size
, int timeout
) {
3622 if (syncRead(fd
,&c
,1,timeout
) == -1) return -1;
3625 if (nread
&& *(ptr
-1) == '\r') *(ptr
-1) = '\0';
3636 static void syncCommand(redisClient
*c
) {
3637 /* ignore SYNC if aleady slave or in monitor mode */
3638 if (c
->flags
& REDIS_SLAVE
) return;
3640 /* SYNC can't be issued when the server has pending data to send to
3641 * the client about already issued commands. We need a fresh reply
3642 * buffer registering the differences between the BGSAVE and the current
3643 * dataset, so that we can copy to other slaves if needed. */
3644 if (listLength(c
->reply
) != 0) {
3645 addReplySds(c
,sdsnew("-ERR SYNC is invalid with pending input\r\n"));
3649 redisLog(REDIS_NOTICE
,"Slave ask for synchronization");
3650 /* Here we need to check if there is a background saving operation
3651 * in progress, or if it is required to start one */
3652 if (server
.bgsaveinprogress
) {
3653 /* Ok a background save is in progress. Let's check if it is a good
3654 * one for replication, i.e. if there is another slave that is
3655 * registering differences since the server forked to save */
3659 listRewind(server
.slaves
);
3660 while((ln
= listYield(server
.slaves
))) {
3662 if (slave
->replstate
== REDIS_REPL_WAIT_BGSAVE_END
) break;
3665 /* Perfect, the server is already registering differences for
3666 * another slave. Set the right state, and copy the buffer. */
3667 listRelease(c
->reply
);
3668 c
->reply
= listDup(slave
->reply
);
3669 if (!c
->reply
) oom("listDup copying slave reply list");
3670 c
->replstate
= REDIS_REPL_WAIT_BGSAVE_END
;
3671 redisLog(REDIS_NOTICE
,"Waiting for end of BGSAVE for SYNC");
3673 /* No way, we need to wait for the next BGSAVE in order to
3674 * register differences */
3675 c
->replstate
= REDIS_REPL_WAIT_BGSAVE_START
;
3676 redisLog(REDIS_NOTICE
,"Waiting for next BGSAVE for SYNC");
3679 /* Ok we don't have a BGSAVE in progress, let's start one */
3680 redisLog(REDIS_NOTICE
,"Starting BGSAVE for SYNC");
3681 if (rdbSaveBackground(server
.dbfilename
) != REDIS_OK
) {
3682 redisLog(REDIS_NOTICE
,"Replication failed, can't BGSAVE");
3683 addReplySds(c
,sdsnew("-ERR Unalbe to perform background save\r\n"));
3686 c
->replstate
= REDIS_REPL_WAIT_BGSAVE_END
;
3689 c
->flags
|= REDIS_SLAVE
;
3691 if (!listAddNodeTail(server
.slaves
,c
)) oom("listAddNodeTail");
3695 static void sendBulkToSlave(aeEventLoop
*el
, int fd
, void *privdata
, int mask
) {
3696 redisClient
*slave
= privdata
;
3698 REDIS_NOTUSED(mask
);
3699 char buf
[REDIS_IOBUF_LEN
];
3700 ssize_t nwritten
, buflen
;
3702 if (slave
->repldboff
== 0) {
3703 /* Write the bulk write count before to transfer the DB. In theory here
3704 * we don't know how much room there is in the output buffer of the
3705 * socket, but in pratice SO_SNDLOWAT (the minimum count for output
3706 * operations) will never be smaller than the few bytes we need. */
3709 bulkcount
= sdscatprintf(sdsempty(),"$%lld\r\n",(unsigned long long)
3711 if (write(fd
,bulkcount
,sdslen(bulkcount
)) != (signed)sdslen(bulkcount
))
3719 lseek(slave
->repldbfd
,slave
->repldboff
,SEEK_SET
);
3720 buflen
= read(slave
->repldbfd
,buf
,REDIS_IOBUF_LEN
);
3722 redisLog(REDIS_WARNING
,"Read error sending DB to slave: %s",
3723 (buflen
== 0) ? "premature EOF" : strerror(errno
));
3727 if ((nwritten
= write(fd
,buf
,buflen
)) == -1) {
3728 redisLog(REDIS_DEBUG
,"Write error sending DB to slave: %s",
3733 slave
->repldboff
+= nwritten
;
3734 if (slave
->repldboff
== slave
->repldbsize
) {
3735 close(slave
->repldbfd
);
3736 slave
->repldbfd
= -1;
3737 aeDeleteFileEvent(server
.el
,slave
->fd
,AE_WRITABLE
);
3738 slave
->replstate
= REDIS_REPL_ONLINE
;
3739 if (aeCreateFileEvent(server
.el
, slave
->fd
, AE_WRITABLE
,
3740 sendReplyToClient
, slave
, NULL
) == AE_ERR
) {
3744 addReplySds(slave
,sdsempty());
3745 redisLog(REDIS_NOTICE
,"Synchronization with slave succeeded");
3749 static void updateSalvesWaitingBgsave(int bgsaveerr
) {
3751 int startbgsave
= 0;
3753 listRewind(server
.slaves
);
3754 while((ln
= listYield(server
.slaves
))) {
3755 redisClient
*slave
= ln
->value
;
3757 if (slave
->replstate
== REDIS_REPL_WAIT_BGSAVE_START
) {
3759 slave
->replstate
= REDIS_REPL_WAIT_BGSAVE_END
;
3760 } else if (slave
->replstate
== REDIS_REPL_WAIT_BGSAVE_END
) {
3763 if (bgsaveerr
!= REDIS_OK
) {
3765 redisLog(REDIS_WARNING
,"SYNC failed. BGSAVE child returned an error");
3768 if ((slave
->repldbfd
= open(server
.dbfilename
,O_RDONLY
)) == -1 ||
3769 fstat(slave
->repldbfd
,&buf
) == -1) {
3771 redisLog(REDIS_WARNING
,"SYNC failed. Can't open/stat DB after BGSAVE: %s", strerror(errno
));
3774 slave
->repldboff
= 0;
3775 slave
->repldbsize
= buf
.st_size
;
3776 slave
->replstate
= REDIS_REPL_SEND_BULK
;
3777 aeDeleteFileEvent(server
.el
,slave
->fd
,AE_WRITABLE
);
3778 if (aeCreateFileEvent(server
.el
, slave
->fd
, AE_WRITABLE
, sendBulkToSlave
, slave
, NULL
) == AE_ERR
) {
3785 if (rdbSaveBackground(server
.dbfilename
) != REDIS_OK
) {
3786 listRewind(server
.slaves
);
3787 redisLog(REDIS_WARNING
,"SYNC failed. BGSAVE failed");
3788 while((ln
= listYield(server
.slaves
))) {
3789 redisClient
*slave
= ln
->value
;
3791 if (slave
->replstate
== REDIS_REPL_WAIT_BGSAVE_START
)
3798 static int syncWithMaster(void) {
3799 char buf
[1024], tmpfile
[256];
3801 int fd
= anetTcpConnect(NULL
,server
.masterhost
,server
.masterport
);
3805 redisLog(REDIS_WARNING
,"Unable to connect to MASTER: %s",
3809 /* Issue the SYNC command */
3810 if (syncWrite(fd
,"SYNC \r\n",7,5) == -1) {
3812 redisLog(REDIS_WARNING
,"I/O error writing to MASTER: %s",
3816 /* Read the bulk write count */
3817 if (syncReadLine(fd
,buf
,1024,5) == -1) {
3819 redisLog(REDIS_WARNING
,"I/O error reading bulk count from MASTER: %s",
3823 dumpsize
= atoi(buf
+1);
3824 redisLog(REDIS_NOTICE
,"Receiving %d bytes data dump from MASTER",dumpsize
);
3825 /* Read the bulk write data on a temp file */
3826 snprintf(tmpfile
,256,"temp-%d.%ld.rdb",(int)time(NULL
),(long int)random());
3827 dfd
= open(tmpfile
,O_CREAT
|O_WRONLY
,0644);
3830 redisLog(REDIS_WARNING
,"Opening the temp file needed for MASTER <-> SLAVE synchronization: %s",strerror(errno
));
3834 int nread
, nwritten
;
3836 nread
= read(fd
,buf
,(dumpsize
< 1024)?dumpsize
:1024);
3838 redisLog(REDIS_WARNING
,"I/O error trying to sync with MASTER: %s",
3844 nwritten
= write(dfd
,buf
,nread
);
3845 if (nwritten
== -1) {
3846 redisLog(REDIS_WARNING
,"Write error writing to the DB dump file needed for MASTER <-> SLAVE synchrnonization: %s", strerror(errno
));
3854 if (rename(tmpfile
,server
.dbfilename
) == -1) {
3855 redisLog(REDIS_WARNING
,"Failed trying to rename the temp DB into dump.rdb in MASTER <-> SLAVE synchronization: %s", strerror(errno
));
3861 if (rdbLoad(server
.dbfilename
) != REDIS_OK
) {
3862 redisLog(REDIS_WARNING
,"Failed trying to load the MASTER synchronization DB from disk");
3866 server
.master
= createClient(fd
);
3867 server
.master
->flags
|= REDIS_MASTER
;
3868 server
.replstate
= REDIS_REPL_CONNECTED
;
3872 /* =================================== Main! ================================ */
3875 int linuxOvercommitMemoryValue(void) {
3876 FILE *fp
= fopen("/proc/sys/vm/overcommit_memory","r");
3880 if (fgets(buf
,64,fp
) == NULL
) {
3889 void linuxOvercommitMemoryWarning(void) {
3890 if (linuxOvercommitMemoryValue() == 0) {
3891 redisLog(REDIS_WARNING
,"WARNING overcommit_memory is set to 0! Background save may fail under low condition memory. To fix this issue add 'echo 1 > /proc/sys/vm/overcommit_memory' in your init scripts.");
3894 #endif /* __linux__ */
3896 static void daemonize(void) {
3900 if (fork() != 0) exit(0); /* parent exits */
3901 setsid(); /* create a new session */
3903 /* Every output goes to /dev/null. If Redis is daemonized but
3904 * the 'logfile' is set to 'stdout' in the configuration file
3905 * it will not log at all. */
3906 if ((fd
= open("/dev/null", O_RDWR
, 0)) != -1) {
3907 dup2(fd
, STDIN_FILENO
);
3908 dup2(fd
, STDOUT_FILENO
);
3909 dup2(fd
, STDERR_FILENO
);
3910 if (fd
> STDERR_FILENO
) close(fd
);
3912 /* Try to write the pid file */
3913 fp
= fopen(server
.pidfile
,"w");
3915 fprintf(fp
,"%d\n",getpid());
3920 int main(int argc
, char **argv
) {
3922 linuxOvercommitMemoryWarning();
3927 ResetServerSaveParams();
3928 loadServerConfig(argv
[1]);
3929 } else if (argc
> 2) {
3930 fprintf(stderr
,"Usage: ./redis-server [/path/to/redis.conf]\n");
3934 if (server
.daemonize
) daemonize();
3935 redisLog(REDIS_NOTICE
,"Server started, Redis version " REDIS_VERSION
);
3936 if (rdbLoad(server
.dbfilename
) == REDIS_OK
)
3937 redisLog(REDIS_NOTICE
,"DB loaded from disk");
3938 if (aeCreateFileEvent(server
.el
, server
.fd
, AE_READABLE
,
3939 acceptHandler
, NULL
, NULL
) == AE_ERR
) oom("creating file event");
3940 redisLog(REDIS_NOTICE
,"The server is now ready to accept connections on port %d", server
.port
);
3942 aeDeleteEventLoop(server
.el
);