2 * Copyright (c) 2009-2010, 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.
35 #endif /* HAVE_BACKTRACE */
44 #include <arpa/inet.h>
48 #include <sys/resource.h>
54 #include <sys/resource.h>
56 /* Our shared "common" objects */
58 struct sharedObjectsStruct shared
;
60 /* Global vars that are actally used as constants. The following double
61 * values are used for double on-disk serialization, and are initialized
62 * at runtime to avoid strange compiler optimizations. */
64 double R_Zero
, R_PosInf
, R_NegInf
, R_Nan
;
66 /*================================= Globals ================================= */
69 struct redisServer server
; /* server global state */
70 struct redisCommand
*commandTable
;
71 struct redisCommand readonlyCommandTable
[] = {
72 {"get",getCommand
,2,REDIS_CMD_INLINE
,NULL
,1,1,1},
73 {"set",setCommand
,3,REDIS_CMD_BULK
|REDIS_CMD_DENYOOM
,NULL
,0,0,0},
74 {"setnx",setnxCommand
,3,REDIS_CMD_BULK
|REDIS_CMD_DENYOOM
,NULL
,0,0,0},
75 {"setex",setexCommand
,4,REDIS_CMD_BULK
|REDIS_CMD_DENYOOM
,NULL
,0,0,0},
76 {"append",appendCommand
,3,REDIS_CMD_BULK
|REDIS_CMD_DENYOOM
,NULL
,1,1,1},
77 {"substr",substrCommand
,4,REDIS_CMD_INLINE
,NULL
,1,1,1},
78 {"strlen",strlenCommand
,2,REDIS_CMD_INLINE
,NULL
,1,1,1},
79 {"del",delCommand
,-2,REDIS_CMD_INLINE
,NULL
,0,0,0},
80 {"exists",existsCommand
,2,REDIS_CMD_INLINE
,NULL
,1,1,1},
81 {"incr",incrCommand
,2,REDIS_CMD_INLINE
|REDIS_CMD_DENYOOM
,NULL
,1,1,1},
82 {"decr",decrCommand
,2,REDIS_CMD_INLINE
|REDIS_CMD_DENYOOM
,NULL
,1,1,1},
83 {"mget",mgetCommand
,-2,REDIS_CMD_INLINE
,NULL
,1,-1,1},
84 {"rpush",rpushCommand
,3,REDIS_CMD_BULK
|REDIS_CMD_DENYOOM
,NULL
,1,1,1},
85 {"lpush",lpushCommand
,3,REDIS_CMD_BULK
|REDIS_CMD_DENYOOM
,NULL
,1,1,1},
86 {"rpushx",rpushxCommand
,3,REDIS_CMD_BULK
|REDIS_CMD_DENYOOM
,NULL
,1,1,1},
87 {"lpushx",lpushxCommand
,3,REDIS_CMD_BULK
|REDIS_CMD_DENYOOM
,NULL
,1,1,1},
88 {"linsert",linsertCommand
,5,REDIS_CMD_BULK
|REDIS_CMD_DENYOOM
,NULL
,1,1,1},
89 {"rpop",rpopCommand
,2,REDIS_CMD_INLINE
,NULL
,1,1,1},
90 {"lpop",lpopCommand
,2,REDIS_CMD_INLINE
,NULL
,1,1,1},
91 {"brpop",brpopCommand
,-3,REDIS_CMD_INLINE
,NULL
,1,1,1},
92 {"blpop",blpopCommand
,-3,REDIS_CMD_INLINE
,NULL
,1,1,1},
93 {"llen",llenCommand
,2,REDIS_CMD_INLINE
,NULL
,1,1,1},
94 {"lindex",lindexCommand
,3,REDIS_CMD_INLINE
,NULL
,1,1,1},
95 {"lset",lsetCommand
,4,REDIS_CMD_BULK
|REDIS_CMD_DENYOOM
,NULL
,1,1,1},
96 {"lrange",lrangeCommand
,4,REDIS_CMD_INLINE
,NULL
,1,1,1},
97 {"ltrim",ltrimCommand
,4,REDIS_CMD_INLINE
,NULL
,1,1,1},
98 {"lrem",lremCommand
,4,REDIS_CMD_BULK
,NULL
,1,1,1},
99 {"rpoplpush",rpoplpushcommand
,3,REDIS_CMD_INLINE
|REDIS_CMD_DENYOOM
,NULL
,1,2,1},
100 {"sadd",saddCommand
,3,REDIS_CMD_BULK
|REDIS_CMD_DENYOOM
,NULL
,1,1,1},
101 {"srem",sremCommand
,3,REDIS_CMD_BULK
,NULL
,1,1,1},
102 {"smove",smoveCommand
,4,REDIS_CMD_BULK
,NULL
,1,2,1},
103 {"sismember",sismemberCommand
,3,REDIS_CMD_BULK
,NULL
,1,1,1},
104 {"scard",scardCommand
,2,REDIS_CMD_INLINE
,NULL
,1,1,1},
105 {"spop",spopCommand
,2,REDIS_CMD_INLINE
,NULL
,1,1,1},
106 {"srandmember",srandmemberCommand
,2,REDIS_CMD_INLINE
,NULL
,1,1,1},
107 {"sinter",sinterCommand
,-2,REDIS_CMD_INLINE
|REDIS_CMD_DENYOOM
,NULL
,1,-1,1},
108 {"sinterstore",sinterstoreCommand
,-3,REDIS_CMD_INLINE
|REDIS_CMD_DENYOOM
,NULL
,2,-1,1},
109 {"sunion",sunionCommand
,-2,REDIS_CMD_INLINE
|REDIS_CMD_DENYOOM
,NULL
,1,-1,1},
110 {"sunionstore",sunionstoreCommand
,-3,REDIS_CMD_INLINE
|REDIS_CMD_DENYOOM
,NULL
,2,-1,1},
111 {"sdiff",sdiffCommand
,-2,REDIS_CMD_INLINE
|REDIS_CMD_DENYOOM
,NULL
,1,-1,1},
112 {"sdiffstore",sdiffstoreCommand
,-3,REDIS_CMD_INLINE
|REDIS_CMD_DENYOOM
,NULL
,2,-1,1},
113 {"smembers",sinterCommand
,2,REDIS_CMD_INLINE
,NULL
,1,1,1},
114 {"zadd",zaddCommand
,4,REDIS_CMD_BULK
|REDIS_CMD_DENYOOM
,NULL
,1,1,1},
115 {"zincrby",zincrbyCommand
,4,REDIS_CMD_BULK
|REDIS_CMD_DENYOOM
,NULL
,1,1,1},
116 {"zrem",zremCommand
,3,REDIS_CMD_BULK
,NULL
,1,1,1},
117 {"zremrangebyscore",zremrangebyscoreCommand
,4,REDIS_CMD_INLINE
,NULL
,1,1,1},
118 {"zremrangebyrank",zremrangebyrankCommand
,4,REDIS_CMD_INLINE
,NULL
,1,1,1},
119 {"zunionstore",zunionstoreCommand
,-4,REDIS_CMD_INLINE
|REDIS_CMD_DENYOOM
,zunionInterBlockClientOnSwappedKeys
,0,0,0},
120 {"zinterstore",zinterstoreCommand
,-4,REDIS_CMD_INLINE
|REDIS_CMD_DENYOOM
,zunionInterBlockClientOnSwappedKeys
,0,0,0},
121 {"zrange",zrangeCommand
,-4,REDIS_CMD_INLINE
,NULL
,1,1,1},
122 {"zrangebyscore",zrangebyscoreCommand
,-4,REDIS_CMD_INLINE
,NULL
,1,1,1},
123 {"zcount",zcountCommand
,4,REDIS_CMD_INLINE
,NULL
,1,1,1},
124 {"zrevrange",zrevrangeCommand
,-4,REDIS_CMD_INLINE
,NULL
,1,1,1},
125 {"zcard",zcardCommand
,2,REDIS_CMD_INLINE
,NULL
,1,1,1},
126 {"zscore",zscoreCommand
,3,REDIS_CMD_BULK
|REDIS_CMD_DENYOOM
,NULL
,1,1,1},
127 {"zrank",zrankCommand
,3,REDIS_CMD_BULK
,NULL
,1,1,1},
128 {"zrevrank",zrevrankCommand
,3,REDIS_CMD_BULK
,NULL
,1,1,1},
129 {"hset",hsetCommand
,4,REDIS_CMD_BULK
|REDIS_CMD_DENYOOM
,NULL
,1,1,1},
130 {"hsetnx",hsetnxCommand
,4,REDIS_CMD_BULK
|REDIS_CMD_DENYOOM
,NULL
,1,1,1},
131 {"hget",hgetCommand
,3,REDIS_CMD_BULK
,NULL
,1,1,1},
132 {"hmset",hmsetCommand
,-4,REDIS_CMD_BULK
|REDIS_CMD_DENYOOM
,NULL
,1,1,1},
133 {"hmget",hmgetCommand
,-3,REDIS_CMD_BULK
,NULL
,1,1,1},
134 {"hincrby",hincrbyCommand
,4,REDIS_CMD_INLINE
|REDIS_CMD_DENYOOM
,NULL
,1,1,1},
135 {"hdel",hdelCommand
,3,REDIS_CMD_BULK
,NULL
,1,1,1},
136 {"hlen",hlenCommand
,2,REDIS_CMD_INLINE
,NULL
,1,1,1},
137 {"hkeys",hkeysCommand
,2,REDIS_CMD_INLINE
,NULL
,1,1,1},
138 {"hvals",hvalsCommand
,2,REDIS_CMD_INLINE
,NULL
,1,1,1},
139 {"hgetall",hgetallCommand
,2,REDIS_CMD_INLINE
,NULL
,1,1,1},
140 {"hexists",hexistsCommand
,3,REDIS_CMD_BULK
,NULL
,1,1,1},
141 {"incrby",incrbyCommand
,3,REDIS_CMD_INLINE
|REDIS_CMD_DENYOOM
,NULL
,1,1,1},
142 {"decrby",decrbyCommand
,3,REDIS_CMD_INLINE
|REDIS_CMD_DENYOOM
,NULL
,1,1,1},
143 {"getset",getsetCommand
,3,REDIS_CMD_BULK
|REDIS_CMD_DENYOOM
,NULL
,1,1,1},
144 {"mset",msetCommand
,-3,REDIS_CMD_BULK
|REDIS_CMD_DENYOOM
,NULL
,1,-1,2},
145 {"msetnx",msetnxCommand
,-3,REDIS_CMD_BULK
|REDIS_CMD_DENYOOM
,NULL
,1,-1,2},
146 {"randomkey",randomkeyCommand
,1,REDIS_CMD_INLINE
,NULL
,0,0,0},
147 {"select",selectCommand
,2,REDIS_CMD_INLINE
,NULL
,0,0,0},
148 {"move",moveCommand
,3,REDIS_CMD_INLINE
,NULL
,1,1,1},
149 {"rename",renameCommand
,3,REDIS_CMD_INLINE
,NULL
,1,1,1},
150 {"renamenx",renamenxCommand
,3,REDIS_CMD_INLINE
,NULL
,1,1,1},
151 {"expire",expireCommand
,3,REDIS_CMD_INLINE
,NULL
,0,0,0},
152 {"expireat",expireatCommand
,3,REDIS_CMD_INLINE
,NULL
,0,0,0},
153 {"keys",keysCommand
,2,REDIS_CMD_INLINE
,NULL
,0,0,0},
154 {"dbsize",dbsizeCommand
,1,REDIS_CMD_INLINE
,NULL
,0,0,0},
155 {"auth",authCommand
,2,REDIS_CMD_INLINE
,NULL
,0,0,0},
156 {"ping",pingCommand
,1,REDIS_CMD_INLINE
,NULL
,0,0,0},
157 {"echo",echoCommand
,2,REDIS_CMD_BULK
,NULL
,0,0,0},
158 {"save",saveCommand
,1,REDIS_CMD_INLINE
,NULL
,0,0,0},
159 {"bgsave",bgsaveCommand
,1,REDIS_CMD_INLINE
,NULL
,0,0,0},
160 {"bgrewriteaof",bgrewriteaofCommand
,1,REDIS_CMD_INLINE
,NULL
,0,0,0},
161 {"shutdown",shutdownCommand
,1,REDIS_CMD_INLINE
,NULL
,0,0,0},
162 {"lastsave",lastsaveCommand
,1,REDIS_CMD_INLINE
,NULL
,0,0,0},
163 {"type",typeCommand
,2,REDIS_CMD_INLINE
,NULL
,1,1,1},
164 {"multi",multiCommand
,1,REDIS_CMD_INLINE
,NULL
,0,0,0},
165 {"exec",execCommand
,1,REDIS_CMD_INLINE
|REDIS_CMD_DENYOOM
,execBlockClientOnSwappedKeys
,0,0,0},
166 {"discard",discardCommand
,1,REDIS_CMD_INLINE
,NULL
,0,0,0},
167 {"sync",syncCommand
,1,REDIS_CMD_INLINE
,NULL
,0,0,0},
168 {"flushdb",flushdbCommand
,1,REDIS_CMD_INLINE
,NULL
,0,0,0},
169 {"flushall",flushallCommand
,1,REDIS_CMD_INLINE
,NULL
,0,0,0},
170 {"sort",sortCommand
,-2,REDIS_CMD_INLINE
|REDIS_CMD_DENYOOM
,NULL
,1,1,1},
171 {"info",infoCommand
,1,REDIS_CMD_INLINE
,NULL
,0,0,0},
172 {"monitor",monitorCommand
,1,REDIS_CMD_INLINE
,NULL
,0,0,0},
173 {"ttl",ttlCommand
,2,REDIS_CMD_INLINE
,NULL
,1,1,1},
174 {"persist",persistCommand
,2,REDIS_CMD_INLINE
,NULL
,1,1,1},
175 {"slaveof",slaveofCommand
,3,REDIS_CMD_INLINE
,NULL
,0,0,0},
176 {"debug",debugCommand
,-2,REDIS_CMD_INLINE
,NULL
,0,0,0},
177 {"config",configCommand
,-2,REDIS_CMD_BULK
,NULL
,0,0,0},
178 {"subscribe",subscribeCommand
,-2,REDIS_CMD_INLINE
,NULL
,0,0,0},
179 {"unsubscribe",unsubscribeCommand
,-1,REDIS_CMD_INLINE
,NULL
,0,0,0},
180 {"psubscribe",psubscribeCommand
,-2,REDIS_CMD_INLINE
,NULL
,0,0,0},
181 {"punsubscribe",punsubscribeCommand
,-1,REDIS_CMD_INLINE
,NULL
,0,0,0},
182 {"publish",publishCommand
,3,REDIS_CMD_BULK
|REDIS_CMD_FORCE_REPLICATION
,NULL
,0,0,0},
183 {"watch",watchCommand
,-2,REDIS_CMD_INLINE
,NULL
,0,0,0},
184 {"unwatch",unwatchCommand
,1,REDIS_CMD_INLINE
,NULL
,0,0,0}
187 /*============================ Utility functions ============================ */
189 void redisLog(int level
, const char *fmt
, ...) {
196 if (level
< server
.verbosity
) return;
198 fp
= (server
.logfile
== NULL
) ? stdout
: fopen(server
.logfile
,"a");
203 strftime(buf
,64,"%d %b %H:%M:%S",localtime(&now
));
204 fprintf(fp
,"[%d] %s %c ",(int)getpid(),buf
,c
[level
]);
205 vfprintf(fp
, fmt
, ap
);
210 if (server
.logfile
) fclose(fp
);
213 /* Redis generally does not try to recover from out of memory conditions
214 * when allocating objects or strings, it is not clear if it will be possible
215 * to report this condition to the client since the networking layer itself
216 * is based on heap allocation for send buffers, so we simply abort.
217 * At least the code will be simpler to read... */
218 void oom(const char *msg
) {
219 redisLog(REDIS_WARNING
, "%s: Out of memory\n",msg
);
224 /*====================== Hash table type implementation ==================== */
226 /* This is an hash table type that uses the SDS dynamic strings libary as
227 * keys and radis objects as values (objects can hold SDS strings,
230 void dictVanillaFree(void *privdata
, void *val
)
232 DICT_NOTUSED(privdata
);
236 void dictListDestructor(void *privdata
, void *val
)
238 DICT_NOTUSED(privdata
);
239 listRelease((list
*)val
);
242 int dictSdsKeyCompare(void *privdata
, const void *key1
,
246 DICT_NOTUSED(privdata
);
248 l1
= sdslen((sds
)key1
);
249 l2
= sdslen((sds
)key2
);
250 if (l1
!= l2
) return 0;
251 return memcmp(key1
, key2
, l1
) == 0;
254 void dictRedisObjectDestructor(void *privdata
, void *val
)
256 DICT_NOTUSED(privdata
);
258 if (val
== NULL
) return; /* Values of swapped out keys as set to NULL */
262 void dictSdsDestructor(void *privdata
, void *val
)
264 DICT_NOTUSED(privdata
);
269 int dictObjKeyCompare(void *privdata
, const void *key1
,
272 const robj
*o1
= key1
, *o2
= key2
;
273 return dictSdsKeyCompare(privdata
,o1
->ptr
,o2
->ptr
);
276 unsigned int dictObjHash(const void *key
) {
278 return dictGenHashFunction(o
->ptr
, sdslen((sds
)o
->ptr
));
281 unsigned int dictSdsHash(const void *key
) {
282 return dictGenHashFunction((unsigned char*)key
, sdslen((char*)key
));
285 int dictEncObjKeyCompare(void *privdata
, const void *key1
,
288 robj
*o1
= (robj
*) key1
, *o2
= (robj
*) key2
;
291 if (o1
->encoding
== REDIS_ENCODING_INT
&&
292 o2
->encoding
== REDIS_ENCODING_INT
)
293 return o1
->ptr
== o2
->ptr
;
295 o1
= getDecodedObject(o1
);
296 o2
= getDecodedObject(o2
);
297 cmp
= dictSdsKeyCompare(privdata
,o1
->ptr
,o2
->ptr
);
303 unsigned int dictEncObjHash(const void *key
) {
304 robj
*o
= (robj
*) key
;
306 if (o
->encoding
== REDIS_ENCODING_RAW
) {
307 return dictGenHashFunction(o
->ptr
, sdslen((sds
)o
->ptr
));
309 if (o
->encoding
== REDIS_ENCODING_INT
) {
313 len
= ll2string(buf
,32,(long)o
->ptr
);
314 return dictGenHashFunction((unsigned char*)buf
, len
);
318 o
= getDecodedObject(o
);
319 hash
= dictGenHashFunction(o
->ptr
, sdslen((sds
)o
->ptr
));
327 dictType setDictType
= {
328 dictEncObjHash
, /* hash function */
331 dictEncObjKeyCompare
, /* key compare */
332 dictRedisObjectDestructor
, /* key destructor */
333 NULL
/* val destructor */
336 /* Sorted sets hash (note: a skiplist is used in addition to the hash table) */
337 dictType zsetDictType
= {
338 dictEncObjHash
, /* hash function */
341 dictEncObjKeyCompare
, /* key compare */
342 dictRedisObjectDestructor
, /* key destructor */
343 NULL
/* val destructor */
346 /* Db->dict, keys are sds strings, vals are Redis objects. */
347 dictType dbDictType
= {
348 dictSdsHash
, /* hash function */
351 dictSdsKeyCompare
, /* key compare */
352 dictSdsDestructor
, /* key destructor */
353 dictRedisObjectDestructor
/* val destructor */
357 dictType keyptrDictType
= {
358 dictSdsHash
, /* hash function */
361 dictSdsKeyCompare
, /* key compare */
362 NULL
, /* key destructor */
363 NULL
/* val destructor */
366 /* Hash type hash table (note that small hashes are represented with zimpaps) */
367 dictType hashDictType
= {
368 dictEncObjHash
, /* hash function */
371 dictEncObjKeyCompare
, /* key compare */
372 dictRedisObjectDestructor
, /* key destructor */
373 dictRedisObjectDestructor
/* val destructor */
376 /* Keylist hash table type has unencoded redis objects as keys and
377 * lists as values. It's used for blocking operations (BLPOP) and to
378 * map swapped keys to a list of clients waiting for this keys to be loaded. */
379 dictType keylistDictType
= {
380 dictObjHash
, /* hash function */
383 dictObjKeyCompare
, /* key compare */
384 dictRedisObjectDestructor
, /* key destructor */
385 dictListDestructor
/* val destructor */
388 int htNeedsResize(dict
*dict
) {
389 long long size
, used
;
391 size
= dictSlots(dict
);
392 used
= dictSize(dict
);
393 return (size
&& used
&& size
> DICT_HT_INITIAL_SIZE
&&
394 (used
*100/size
< REDIS_HT_MINFILL
));
397 /* If the percentage of used slots in the HT reaches REDIS_HT_MINFILL
398 * we resize the hash table to save memory */
399 void tryResizeHashTables(void) {
402 for (j
= 0; j
< server
.dbnum
; j
++) {
403 if (htNeedsResize(server
.db
[j
].dict
))
404 dictResize(server
.db
[j
].dict
);
405 if (htNeedsResize(server
.db
[j
].expires
))
406 dictResize(server
.db
[j
].expires
);
410 /* Our hash table implementation performs rehashing incrementally while
411 * we write/read from the hash table. Still if the server is idle, the hash
412 * table will use two tables for a long time. So we try to use 1 millisecond
413 * of CPU time at every serverCron() loop in order to rehash some key. */
414 void incrementallyRehash(void) {
417 for (j
= 0; j
< server
.dbnum
; j
++) {
418 if (dictIsRehashing(server
.db
[j
].dict
)) {
419 dictRehashMilliseconds(server
.db
[j
].dict
,1);
420 break; /* already used our millisecond for this loop... */
425 /* This function is called once a background process of some kind terminates,
426 * as we want to avoid resizing the hash tables when there is a child in order
427 * to play well with copy-on-write (otherwise when a resize happens lots of
428 * memory pages are copied). The goal of this function is to update the ability
429 * for dict.c to resize the hash tables accordingly to the fact we have o not
431 void updateDictResizePolicy(void) {
432 if (server
.bgsavechildpid
== -1 && server
.bgrewritechildpid
== -1)
438 /* ======================= Cron: called every 100 ms ======================== */
440 /* Try to expire a few timed out keys. The algorithm used is adaptive and
441 * will use few CPU cycles if there are few expiring keys, otherwise
442 * it will get more aggressive to avoid that too much memory is used by
443 * keys that can be removed from the keyspace. */
444 void activeExpireCycle(void) {
447 for (j
= 0; j
< server
.dbnum
; j
++) {
449 redisDb
*db
= server
.db
+j
;
451 /* Continue to expire if at the end of the cycle more than 25%
452 * of the keys were expired. */
454 long num
= dictSize(db
->expires
);
455 time_t now
= time(NULL
);
458 if (num
> REDIS_EXPIRELOOKUPS_PER_CRON
)
459 num
= REDIS_EXPIRELOOKUPS_PER_CRON
;
464 if ((de
= dictGetRandomKey(db
->expires
)) == NULL
) break;
465 t
= (time_t) dictGetEntryVal(de
);
467 sds key
= dictGetEntryKey(de
);
468 robj
*keyobj
= createStringObject(key
,sdslen(key
));
470 propagateExpire(db
,keyobj
);
472 decrRefCount(keyobj
);
474 server
.stat_expiredkeys
++;
477 } while (expired
> REDIS_EXPIRELOOKUPS_PER_CRON
/4);
482 int serverCron(struct aeEventLoop
*eventLoop
, long long id
, void *clientData
) {
483 int j
, loops
= server
.cronloops
++;
484 REDIS_NOTUSED(eventLoop
);
486 REDIS_NOTUSED(clientData
);
488 /* We take a cached value of the unix time in the global state because
489 * with virtual memory and aging there is to store the current time
490 * in objects at every object access, and accuracy is not needed.
491 * To access a global var is faster than calling time(NULL) */
492 server
.unixtime
= time(NULL
);
493 /* We have just 21 bits per object for LRU information.
494 * So we use an (eventually wrapping) LRU clock with minutes resolution.
496 * When we need to select what object to swap, we compute the minimum
497 * time distance between the current lruclock and the object last access
498 * lruclock info. Even if clocks will wrap on overflow, there is
499 * the interesting property that we are sure that at least
500 * ABS(A-B) minutes passed between current time and timestamp B.
502 * This is not precise but we don't need at all precision, but just
503 * something statistically reasonable.
505 server
.lruclock
= (time(NULL
)/60)&((1<<21)-1);
507 /* We received a SIGTERM, shutting down here in a safe way, as it is
508 * not ok doing so inside the signal handler. */
509 if (server
.shutdown_asap
) {
510 if (prepareForShutdown() == REDIS_OK
) exit(0);
511 redisLog(REDIS_WARNING
,"SIGTERM received but errors trying to shut down the server, check the logs for more information");
514 /* Show some info about non-empty databases */
515 for (j
= 0; j
< server
.dbnum
; j
++) {
516 long long size
, used
, vkeys
;
518 size
= dictSlots(server
.db
[j
].dict
);
519 used
= dictSize(server
.db
[j
].dict
);
520 vkeys
= dictSize(server
.db
[j
].expires
);
521 if (!(loops
% 50) && (used
|| vkeys
)) {
522 redisLog(REDIS_VERBOSE
,"DB %d: %lld keys (%lld volatile) in %lld slots HT.",j
,used
,vkeys
,size
);
523 /* dictPrintStats(server.dict); */
527 /* We don't want to resize the hash tables while a bacground saving
528 * is in progress: the saving child is created using fork() that is
529 * implemented with a copy-on-write semantic in most modern systems, so
530 * if we resize the HT while there is the saving child at work actually
531 * a lot of memory movements in the parent will cause a lot of pages
533 if (server
.bgsavechildpid
== -1 && server
.bgrewritechildpid
== -1) {
534 if (!(loops
% 10)) tryResizeHashTables();
535 if (server
.activerehashing
) incrementallyRehash();
538 /* Show information about connected clients */
540 redisLog(REDIS_VERBOSE
,"%d clients connected (%d slaves), %zu bytes in use",
541 listLength(server
.clients
)-listLength(server
.slaves
),
542 listLength(server
.slaves
),
543 zmalloc_used_memory());
546 /* Close connections of timedout clients */
547 if ((server
.maxidletime
&& !(loops
% 100)) || server
.blpop_blocked_clients
)
548 closeTimedoutClients();
550 /* Check if a background saving or AOF rewrite in progress terminated */
551 if (server
.bgsavechildpid
!= -1 || server
.bgrewritechildpid
!= -1) {
555 if ((pid
= wait3(&statloc
,WNOHANG
,NULL
)) != 0) {
556 if (pid
== server
.bgsavechildpid
) {
557 backgroundSaveDoneHandler(statloc
);
559 backgroundRewriteDoneHandler(statloc
);
561 updateDictResizePolicy();
564 /* If there is not a background saving in progress check if
565 * we have to save now */
566 time_t now
= time(NULL
);
567 for (j
= 0; j
< server
.saveparamslen
; j
++) {
568 struct saveparam
*sp
= server
.saveparams
+j
;
570 if (server
.dirty
>= sp
->changes
&&
571 now
-server
.lastsave
> sp
->seconds
) {
572 redisLog(REDIS_NOTICE
,"%d changes in %d seconds. Saving...",
573 sp
->changes
, sp
->seconds
);
574 rdbSaveBackground(server
.dbfilename
);
580 /* Expire a few keys per cycle, only if this is a master.
581 * On slaves we wait for DEL operations synthesized by the master
582 * in order to guarantee a strict consistency. */
583 if (server
.masterhost
== NULL
) activeExpireCycle();
585 /* Swap a few keys on disk if we are over the memory limit and VM
586 * is enbled. Try to free objects from the free list first. */
587 if (vmCanSwapOut()) {
588 while (server
.vm_enabled
&& zmalloc_used_memory() >
589 server
.vm_max_memory
)
593 if (tryFreeOneObjectFromFreelist() == REDIS_OK
) continue;
594 retval
= (server
.vm_max_threads
== 0) ?
595 vmSwapOneObjectBlocking() :
596 vmSwapOneObjectThreaded();
597 if (retval
== REDIS_ERR
&& !(loops
% 300) &&
598 zmalloc_used_memory() >
599 (server
.vm_max_memory
+server
.vm_max_memory
/10))
601 redisLog(REDIS_WARNING
,"WARNING: vm-max-memory limit exceeded by more than 10%% but unable to swap more objects out!");
603 /* Note that when using threade I/O we free just one object,
604 * because anyway when the I/O thread in charge to swap this
605 * object out will finish, the handler of completed jobs
606 * will try to swap more objects if we are still out of memory. */
607 if (retval
== REDIS_ERR
|| server
.vm_max_threads
> 0) break;
611 /* Check if we should connect to a MASTER */
612 if (server
.replstate
== REDIS_REPL_CONNECT
&& !(loops
% 10)) {
613 redisLog(REDIS_NOTICE
,"Connecting to MASTER...");
614 if (syncWithMaster() == REDIS_OK
) {
615 redisLog(REDIS_NOTICE
,"MASTER <-> SLAVE sync succeeded");
616 if (server
.appendonly
) rewriteAppendOnlyFileBackground();
622 /* This function gets called every time Redis is entering the
623 * main loop of the event driven library, that is, before to sleep
624 * for ready file descriptors. */
625 void beforeSleep(struct aeEventLoop
*eventLoop
) {
626 REDIS_NOTUSED(eventLoop
);
628 /* Awake clients that got all the swapped keys they requested */
629 if (server
.vm_enabled
&& listLength(server
.io_ready_clients
)) {
633 listRewind(server
.io_ready_clients
,&li
);
634 while((ln
= listNext(&li
))) {
635 redisClient
*c
= ln
->value
;
636 struct redisCommand
*cmd
;
638 /* Resume the client. */
639 listDelNode(server
.io_ready_clients
,ln
);
640 c
->flags
&= (~REDIS_IO_WAIT
);
641 server
.vm_blocked_clients
--;
642 aeCreateFileEvent(server
.el
, c
->fd
, AE_READABLE
,
643 readQueryFromClient
, c
);
644 cmd
= lookupCommand(c
->argv
[0]->ptr
);
645 redisAssert(cmd
!= NULL
);
648 /* There may be more data to process in the input buffer. */
649 if (c
->querybuf
&& sdslen(c
->querybuf
) > 0)
650 processInputBuffer(c
);
653 /* Write the AOF buffer on disk */
654 flushAppendOnlyFile();
657 /* =========================== Server initialization ======================== */
659 void createSharedObjects(void) {
662 shared
.crlf
= createObject(REDIS_STRING
,sdsnew("\r\n"));
663 shared
.ok
= createObject(REDIS_STRING
,sdsnew("+OK\r\n"));
664 shared
.err
= createObject(REDIS_STRING
,sdsnew("-ERR\r\n"));
665 shared
.emptybulk
= createObject(REDIS_STRING
,sdsnew("$0\r\n\r\n"));
666 shared
.czero
= createObject(REDIS_STRING
,sdsnew(":0\r\n"));
667 shared
.cone
= createObject(REDIS_STRING
,sdsnew(":1\r\n"));
668 shared
.cnegone
= createObject(REDIS_STRING
,sdsnew(":-1\r\n"));
669 shared
.nullbulk
= createObject(REDIS_STRING
,sdsnew("$-1\r\n"));
670 shared
.nullmultibulk
= createObject(REDIS_STRING
,sdsnew("*-1\r\n"));
671 shared
.emptymultibulk
= createObject(REDIS_STRING
,sdsnew("*0\r\n"));
672 shared
.pong
= createObject(REDIS_STRING
,sdsnew("+PONG\r\n"));
673 shared
.queued
= createObject(REDIS_STRING
,sdsnew("+QUEUED\r\n"));
674 shared
.wrongtypeerr
= createObject(REDIS_STRING
,sdsnew(
675 "-ERR Operation against a key holding the wrong kind of value\r\n"));
676 shared
.nokeyerr
= createObject(REDIS_STRING
,sdsnew(
677 "-ERR no such key\r\n"));
678 shared
.syntaxerr
= createObject(REDIS_STRING
,sdsnew(
679 "-ERR syntax error\r\n"));
680 shared
.sameobjecterr
= createObject(REDIS_STRING
,sdsnew(
681 "-ERR source and destination objects are the same\r\n"));
682 shared
.outofrangeerr
= createObject(REDIS_STRING
,sdsnew(
683 "-ERR index out of range\r\n"));
684 shared
.space
= createObject(REDIS_STRING
,sdsnew(" "));
685 shared
.colon
= createObject(REDIS_STRING
,sdsnew(":"));
686 shared
.plus
= createObject(REDIS_STRING
,sdsnew("+"));
687 shared
.select0
= createStringObject("select 0\r\n",10);
688 shared
.select1
= createStringObject("select 1\r\n",10);
689 shared
.select2
= createStringObject("select 2\r\n",10);
690 shared
.select3
= createStringObject("select 3\r\n",10);
691 shared
.select4
= createStringObject("select 4\r\n",10);
692 shared
.select5
= createStringObject("select 5\r\n",10);
693 shared
.select6
= createStringObject("select 6\r\n",10);
694 shared
.select7
= createStringObject("select 7\r\n",10);
695 shared
.select8
= createStringObject("select 8\r\n",10);
696 shared
.select9
= createStringObject("select 9\r\n",10);
697 shared
.messagebulk
= createStringObject("$7\r\nmessage\r\n",13);
698 shared
.pmessagebulk
= createStringObject("$8\r\npmessage\r\n",14);
699 shared
.subscribebulk
= createStringObject("$9\r\nsubscribe\r\n",15);
700 shared
.unsubscribebulk
= createStringObject("$11\r\nunsubscribe\r\n",18);
701 shared
.psubscribebulk
= createStringObject("$10\r\npsubscribe\r\n",17);
702 shared
.punsubscribebulk
= createStringObject("$12\r\npunsubscribe\r\n",19);
703 shared
.mbulk3
= createStringObject("*3\r\n",4);
704 shared
.mbulk4
= createStringObject("*4\r\n",4);
705 for (j
= 0; j
< REDIS_SHARED_INTEGERS
; j
++) {
706 shared
.integers
[j
] = createObject(REDIS_STRING
,(void*)(long)j
);
707 shared
.integers
[j
]->encoding
= REDIS_ENCODING_INT
;
711 void initServerConfig() {
712 server
.dbnum
= REDIS_DEFAULT_DBNUM
;
713 server
.port
= REDIS_SERVERPORT
;
714 server
.verbosity
= REDIS_VERBOSE
;
715 server
.maxidletime
= REDIS_MAXIDLETIME
;
716 server
.saveparams
= NULL
;
717 server
.logfile
= NULL
; /* NULL = log on standard output */
718 server
.bindaddr
= NULL
;
719 server
.glueoutputbuf
= 1;
720 server
.daemonize
= 0;
721 server
.appendonly
= 0;
722 server
.appendfsync
= APPENDFSYNC_EVERYSEC
;
723 server
.no_appendfsync_on_rewrite
= 0;
724 server
.lastfsync
= time(NULL
);
725 server
.appendfd
= -1;
726 server
.appendseldb
= -1; /* Make sure the first time will not match */
727 server
.pidfile
= zstrdup("/var/run/redis.pid");
728 server
.dbfilename
= zstrdup("dump.rdb");
729 server
.appendfilename
= zstrdup("appendonly.aof");
730 server
.requirepass
= NULL
;
731 server
.rdbcompression
= 1;
732 server
.activerehashing
= 1;
733 server
.maxclients
= 0;
734 server
.blpop_blocked_clients
= 0;
735 server
.maxmemory
= 0;
736 server
.vm_enabled
= 0;
737 server
.vm_swap_file
= zstrdup("/tmp/redis-%p.vm");
738 server
.vm_page_size
= 256; /* 256 bytes per page */
739 server
.vm_pages
= 1024*1024*100; /* 104 millions of pages */
740 server
.vm_max_memory
= 1024LL*1024*1024*1; /* 1 GB of RAM */
741 server
.vm_max_threads
= 4;
742 server
.vm_blocked_clients
= 0;
743 server
.hash_max_zipmap_entries
= REDIS_HASH_MAX_ZIPMAP_ENTRIES
;
744 server
.hash_max_zipmap_value
= REDIS_HASH_MAX_ZIPMAP_VALUE
;
745 server
.list_max_ziplist_entries
= REDIS_LIST_MAX_ZIPLIST_ENTRIES
;
746 server
.list_max_ziplist_value
= REDIS_LIST_MAX_ZIPLIST_VALUE
;
747 server
.set_max_intset_entries
= REDIS_SET_MAX_INTSET_ENTRIES
;
748 server
.shutdown_asap
= 0;
750 resetServerSaveParams();
752 appendServerSaveParams(60*60,1); /* save after 1 hour and 1 change */
753 appendServerSaveParams(300,100); /* save after 5 minutes and 100 changes */
754 appendServerSaveParams(60,10000); /* save after 1 minute and 10000 changes */
755 /* Replication related */
757 server
.masterauth
= NULL
;
758 server
.masterhost
= NULL
;
759 server
.masterport
= 6379;
760 server
.master
= NULL
;
761 server
.replstate
= REDIS_REPL_NONE
;
763 /* Double constants initialization */
765 R_PosInf
= 1.0/R_Zero
;
766 R_NegInf
= -1.0/R_Zero
;
767 R_Nan
= R_Zero
/R_Zero
;
773 signal(SIGHUP
, SIG_IGN
);
774 signal(SIGPIPE
, SIG_IGN
);
775 setupSigSegvAction();
777 server
.mainthread
= pthread_self();
778 server
.devnull
= fopen("/dev/null","w");
779 if (server
.devnull
== NULL
) {
780 redisLog(REDIS_WARNING
, "Can't open /dev/null: %s", server
.neterr
);
783 server
.clients
= listCreate();
784 server
.slaves
= listCreate();
785 server
.monitors
= listCreate();
786 server
.objfreelist
= listCreate();
787 createSharedObjects();
788 server
.el
= aeCreateEventLoop();
789 server
.db
= zmalloc(sizeof(redisDb
)*server
.dbnum
);
790 server
.fd
= anetTcpServer(server
.neterr
, server
.port
, server
.bindaddr
);
791 if (server
.fd
== -1) {
792 redisLog(REDIS_WARNING
, "Opening TCP port: %s", server
.neterr
);
795 for (j
= 0; j
< server
.dbnum
; j
++) {
796 server
.db
[j
].dict
= dictCreate(&dbDictType
,NULL
);
797 server
.db
[j
].expires
= dictCreate(&keyptrDictType
,NULL
);
798 server
.db
[j
].blocking_keys
= dictCreate(&keylistDictType
,NULL
);
799 server
.db
[j
].watched_keys
= dictCreate(&keylistDictType
,NULL
);
800 if (server
.vm_enabled
)
801 server
.db
[j
].io_keys
= dictCreate(&keylistDictType
,NULL
);
804 server
.pubsub_channels
= dictCreate(&keylistDictType
,NULL
);
805 server
.pubsub_patterns
= listCreate();
806 listSetFreeMethod(server
.pubsub_patterns
,freePubsubPattern
);
807 listSetMatchMethod(server
.pubsub_patterns
,listMatchPubsubPattern
);
808 server
.cronloops
= 0;
809 server
.bgsavechildpid
= -1;
810 server
.bgrewritechildpid
= -1;
811 server
.bgrewritebuf
= sdsempty();
812 server
.aofbuf
= sdsempty();
813 server
.lastsave
= time(NULL
);
815 server
.stat_numcommands
= 0;
816 server
.stat_numconnections
= 0;
817 server
.stat_expiredkeys
= 0;
818 server
.stat_starttime
= time(NULL
);
819 server
.unixtime
= time(NULL
);
820 aeCreateTimeEvent(server
.el
, 1, serverCron
, NULL
, NULL
);
821 if (aeCreateFileEvent(server
.el
, server
.fd
, AE_READABLE
,
822 acceptHandler
, NULL
) == AE_ERR
) oom("creating file event");
824 if (server
.appendonly
) {
825 server
.appendfd
= open(server
.appendfilename
,O_WRONLY
|O_APPEND
|O_CREAT
,0644);
826 if (server
.appendfd
== -1) {
827 redisLog(REDIS_WARNING
, "Can't open the append-only file: %s",
833 if (server
.vm_enabled
) vmInit();
836 int qsortRedisCommands(const void *r1
, const void *r2
) {
838 ((struct redisCommand
*)r1
)->name
,
839 ((struct redisCommand
*)r2
)->name
);
842 void sortCommandTable() {
843 /* Copy and sort the read-only version of the command table */
844 commandTable
= (struct redisCommand
*)zmalloc(sizeof(readonlyCommandTable
));
845 memcpy(commandTable
,readonlyCommandTable
,sizeof(readonlyCommandTable
));
847 sizeof(readonlyCommandTable
)/sizeof(struct redisCommand
),
848 sizeof(struct redisCommand
),qsortRedisCommands
);
851 /* ====================== Commands lookup and execution ===================== */
853 struct redisCommand
*lookupCommand(char *name
) {
854 struct redisCommand tmp
= {name
,NULL
,0,0,NULL
,0,0,0};
858 sizeof(readonlyCommandTable
)/sizeof(struct redisCommand
),
859 sizeof(struct redisCommand
),
863 /* Call() is the core of Redis execution of a command */
864 void call(redisClient
*c
, struct redisCommand
*cmd
) {
867 dirty
= server
.dirty
;
869 dirty
= server
.dirty
-dirty
;
871 if (server
.appendonly
&& dirty
)
872 feedAppendOnlyFile(cmd
,c
->db
->id
,c
->argv
,c
->argc
);
873 if ((dirty
|| cmd
->flags
& REDIS_CMD_FORCE_REPLICATION
) &&
874 listLength(server
.slaves
))
875 replicationFeedSlaves(server
.slaves
,c
->db
->id
,c
->argv
,c
->argc
);
876 if (listLength(server
.monitors
))
877 replicationFeedMonitors(server
.monitors
,c
->db
->id
,c
->argv
,c
->argc
);
878 server
.stat_numcommands
++;
881 /* If this function gets called we already read a whole
882 * command, argments are in the client argv/argc fields.
883 * processCommand() execute the command or prepare the
884 * server for a bulk read from the client.
886 * If 1 is returned the client is still alive and valid and
887 * and other operations can be performed by the caller. Otherwise
888 * if 0 is returned the client was destroied (i.e. after QUIT). */
889 int processCommand(redisClient
*c
) {
890 struct redisCommand
*cmd
;
892 /* The QUIT command is handled separately. Normal command procs will
893 * go through checking for replication and QUIT will cause trouble
894 * when FORCE_REPLICATION is enabled and would be implemented in
895 * a regular command proc. */
896 redisAssert(!(c
->flags
& REDIS_QUIT
));
897 if (!strcasecmp(c
->argv
[0]->ptr
,"quit")) {
898 c
->flags
|= REDIS_QUIT
;
899 addReply(c
,shared
.ok
);
903 /* Now lookup the command and check ASAP about trivial error conditions
904 * such wrong arity, bad command name and so forth. */
905 cmd
= lookupCommand(c
->argv
[0]->ptr
);
907 addReplyErrorFormat(c
,"unknown command '%s'",
908 (char*)c
->argv
[0]->ptr
);
910 } else if ((cmd
->arity
> 0 && cmd
->arity
!= c
->argc
) ||
911 (c
->argc
< -cmd
->arity
)) {
912 addReplyErrorFormat(c
,"wrong number of arguments for '%s' command",
917 /* Let's try to encode the bulk object to save space. */
918 if (cmd
->flags
& REDIS_CMD_BULK
)
919 c
->argv
[c
->argc
-1] = tryObjectEncoding(c
->argv
[c
->argc
-1]);
921 /* Check if the user is authenticated */
922 if (server
.requirepass
&& !c
->authenticated
&& cmd
->proc
!= authCommand
) {
923 addReplyError(c
,"operation not permitted");
927 /* Handle the maxmemory directive.
929 * First we try to free some memory if possible (if there are volatile
930 * keys in the dataset). If there are not the only thing we can do
931 * is returning an error. */
932 if (server
.maxmemory
) freeMemoryIfNeeded();
933 if (server
.maxmemory
&& (cmd
->flags
& REDIS_CMD_DENYOOM
) &&
934 zmalloc_used_memory() > server
.maxmemory
)
936 addReplyError(c
,"command not allowed when used memory > 'maxmemory'");
940 /* Only allow SUBSCRIBE and UNSUBSCRIBE in the context of Pub/Sub */
941 if ((dictSize(c
->pubsub_channels
) > 0 || listLength(c
->pubsub_patterns
) > 0)
943 cmd
->proc
!= subscribeCommand
&& cmd
->proc
!= unsubscribeCommand
&&
944 cmd
->proc
!= psubscribeCommand
&& cmd
->proc
!= punsubscribeCommand
) {
945 addReplyError(c
,"only (P)SUBSCRIBE / (P)UNSUBSCRIBE / QUIT allowed in this context");
949 /* Exec the command */
950 if (c
->flags
& REDIS_MULTI
&&
951 cmd
->proc
!= execCommand
&& cmd
->proc
!= discardCommand
&&
952 cmd
->proc
!= multiCommand
&& cmd
->proc
!= watchCommand
)
954 queueMultiCommand(c
,cmd
);
955 addReply(c
,shared
.queued
);
957 if (server
.vm_enabled
&& server
.vm_max_threads
> 0 &&
958 blockClientOnSwappedKeys(c
,cmd
)) return 1;
964 /*================================== Shutdown =============================== */
966 int prepareForShutdown() {
967 redisLog(REDIS_WARNING
,"User requested shutdown, saving DB...");
968 /* Kill the saving child if there is a background saving in progress.
969 We want to avoid race conditions, for instance our saving child may
970 overwrite the synchronous saving did by SHUTDOWN. */
971 if (server
.bgsavechildpid
!= -1) {
972 redisLog(REDIS_WARNING
,"There is a live saving child. Killing it!");
973 kill(server
.bgsavechildpid
,SIGKILL
);
974 rdbRemoveTempFile(server
.bgsavechildpid
);
976 if (server
.appendonly
) {
977 /* Append only file: fsync() the AOF and exit */
978 aof_fsync(server
.appendfd
);
979 if (server
.vm_enabled
) unlink(server
.vm_swap_file
);
981 /* Snapshotting. Perform a SYNC SAVE and exit */
982 if (rdbSave(server
.dbfilename
) != REDIS_OK
) {
983 /* Ooops.. error saving! The best we can do is to continue
984 * operating. Note that if there was a background saving process,
985 * in the next cron() Redis will be notified that the background
986 * saving aborted, handling special stuff like slaves pending for
987 * synchronization... */
988 redisLog(REDIS_WARNING
,"Error trying to save the DB, can't exit");
992 if (server
.daemonize
) unlink(server
.pidfile
);
993 redisLog(REDIS_WARNING
,"Server exit now, bye bye...");
997 /*================================== Commands =============================== */
999 void authCommand(redisClient
*c
) {
1000 if (!server
.requirepass
|| !strcmp(c
->argv
[1]->ptr
, server
.requirepass
)) {
1001 c
->authenticated
= 1;
1002 addReply(c
,shared
.ok
);
1004 c
->authenticated
= 0;
1005 addReplyError(c
,"invalid password");
1009 void pingCommand(redisClient
*c
) {
1010 addReply(c
,shared
.pong
);
1013 void echoCommand(redisClient
*c
) {
1014 addReplyBulk(c
,c
->argv
[1]);
1017 /* Convert an amount of bytes into a human readable string in the form
1018 * of 100B, 2G, 100M, 4K, and so forth. */
1019 void bytesToHuman(char *s
, unsigned long long n
) {
1024 sprintf(s
,"%lluB",n
);
1026 } else if (n
< (1024*1024)) {
1027 d
= (double)n
/(1024);
1028 sprintf(s
,"%.2fK",d
);
1029 } else if (n
< (1024LL*1024*1024)) {
1030 d
= (double)n
/(1024*1024);
1031 sprintf(s
,"%.2fM",d
);
1032 } else if (n
< (1024LL*1024*1024*1024)) {
1033 d
= (double)n
/(1024LL*1024*1024);
1034 sprintf(s
,"%.2fG",d
);
1038 /* Create the string returned by the INFO command. This is decoupled
1039 * by the INFO command itself as we need to report the same information
1040 * on memory corruption problems. */
1041 sds
genRedisInfoString(void) {
1043 time_t uptime
= time(NULL
)-server
.stat_starttime
;
1046 struct rusage self_ru
, c_ru
;
1048 getrusage(RUSAGE_SELF
, &self_ru
);
1049 getrusage(RUSAGE_CHILDREN
, &c_ru
);
1051 bytesToHuman(hmem
,zmalloc_used_memory());
1052 info
= sdscatprintf(sdsempty(),
1053 "redis_version:%s\r\n"
1054 "redis_git_sha1:%s\r\n"
1055 "redis_git_dirty:%d\r\n"
1057 "multiplexing_api:%s\r\n"
1058 "process_id:%ld\r\n"
1059 "uptime_in_seconds:%ld\r\n"
1060 "uptime_in_days:%ld\r\n"
1061 "used_cpu_sys:%.2f\r\n"
1062 "used_cpu_user:%.2f\r\n"
1063 "used_cpu_sys_childrens:%.2f\r\n"
1064 "used_cpu_user_childrens:%.2f\r\n"
1065 "connected_clients:%d\r\n"
1066 "connected_slaves:%d\r\n"
1067 "blocked_clients:%d\r\n"
1068 "used_memory:%zu\r\n"
1069 "used_memory_human:%s\r\n"
1070 "mem_fragmentation_ratio:%.2f\r\n"
1071 "changes_since_last_save:%lld\r\n"
1072 "bgsave_in_progress:%d\r\n"
1073 "last_save_time:%ld\r\n"
1074 "bgrewriteaof_in_progress:%d\r\n"
1075 "total_connections_received:%lld\r\n"
1076 "total_commands_processed:%lld\r\n"
1077 "expired_keys:%lld\r\n"
1078 "hash_max_zipmap_entries:%zu\r\n"
1079 "hash_max_zipmap_value:%zu\r\n"
1080 "pubsub_channels:%ld\r\n"
1081 "pubsub_patterns:%u\r\n"
1086 strtol(redisGitDirty(),NULL
,10) > 0,
1087 (sizeof(long) == 8) ? "64" : "32",
1092 (float)self_ru
.ru_utime
.tv_sec
+(float)self_ru
.ru_utime
.tv_usec
/1000000,
1093 (float)self_ru
.ru_stime
.tv_sec
+(float)self_ru
.ru_stime
.tv_usec
/1000000,
1094 (float)c_ru
.ru_utime
.tv_sec
+(float)c_ru
.ru_utime
.tv_usec
/1000000,
1095 (float)c_ru
.ru_stime
.tv_sec
+(float)c_ru
.ru_stime
.tv_usec
/1000000,
1096 listLength(server
.clients
)-listLength(server
.slaves
),
1097 listLength(server
.slaves
),
1098 server
.blpop_blocked_clients
,
1099 zmalloc_used_memory(),
1101 zmalloc_get_fragmentation_ratio(),
1103 server
.bgsavechildpid
!= -1,
1105 server
.bgrewritechildpid
!= -1,
1106 server
.stat_numconnections
,
1107 server
.stat_numcommands
,
1108 server
.stat_expiredkeys
,
1109 server
.hash_max_zipmap_entries
,
1110 server
.hash_max_zipmap_value
,
1111 dictSize(server
.pubsub_channels
),
1112 listLength(server
.pubsub_patterns
),
1113 server
.vm_enabled
!= 0,
1114 server
.masterhost
== NULL
? "master" : "slave"
1116 if (server
.masterhost
) {
1117 info
= sdscatprintf(info
,
1118 "master_host:%s\r\n"
1119 "master_port:%d\r\n"
1120 "master_link_status:%s\r\n"
1121 "master_last_io_seconds_ago:%d\r\n"
1124 (server
.replstate
== REDIS_REPL_CONNECTED
) ?
1126 server
.master
? ((int)(time(NULL
)-server
.master
->lastinteraction
)) : -1
1129 if (server
.vm_enabled
) {
1131 info
= sdscatprintf(info
,
1132 "vm_conf_max_memory:%llu\r\n"
1133 "vm_conf_page_size:%llu\r\n"
1134 "vm_conf_pages:%llu\r\n"
1135 "vm_stats_used_pages:%llu\r\n"
1136 "vm_stats_swapped_objects:%llu\r\n"
1137 "vm_stats_swappin_count:%llu\r\n"
1138 "vm_stats_swappout_count:%llu\r\n"
1139 "vm_stats_io_newjobs_len:%lu\r\n"
1140 "vm_stats_io_processing_len:%lu\r\n"
1141 "vm_stats_io_processed_len:%lu\r\n"
1142 "vm_stats_io_active_threads:%lu\r\n"
1143 "vm_stats_blocked_clients:%lu\r\n"
1144 ,(unsigned long long) server
.vm_max_memory
,
1145 (unsigned long long) server
.vm_page_size
,
1146 (unsigned long long) server
.vm_pages
,
1147 (unsigned long long) server
.vm_stats_used_pages
,
1148 (unsigned long long) server
.vm_stats_swapped_objects
,
1149 (unsigned long long) server
.vm_stats_swapins
,
1150 (unsigned long long) server
.vm_stats_swapouts
,
1151 (unsigned long) listLength(server
.io_newjobs
),
1152 (unsigned long) listLength(server
.io_processing
),
1153 (unsigned long) listLength(server
.io_processed
),
1154 (unsigned long) server
.io_active_threads
,
1155 (unsigned long) server
.vm_blocked_clients
1159 for (j
= 0; j
< server
.dbnum
; j
++) {
1160 long long keys
, vkeys
;
1162 keys
= dictSize(server
.db
[j
].dict
);
1163 vkeys
= dictSize(server
.db
[j
].expires
);
1164 if (keys
|| vkeys
) {
1165 info
= sdscatprintf(info
, "db%d:keys=%lld,expires=%lld\r\n",
1172 void infoCommand(redisClient
*c
) {
1173 sds info
= genRedisInfoString();
1174 addReplySds(c
,sdscatprintf(sdsempty(),"$%lu\r\n",
1175 (unsigned long)sdslen(info
)));
1176 addReplySds(c
,info
);
1177 addReply(c
,shared
.crlf
);
1180 void monitorCommand(redisClient
*c
) {
1181 /* ignore MONITOR if aleady slave or in monitor mode */
1182 if (c
->flags
& REDIS_SLAVE
) return;
1184 c
->flags
|= (REDIS_SLAVE
|REDIS_MONITOR
);
1186 listAddNodeTail(server
.monitors
,c
);
1187 addReply(c
,shared
.ok
);
1190 /* ============================ Maxmemory directive ======================== */
1192 /* Try to free one object form the pre-allocated objects free list.
1193 * This is useful under low mem conditions as by default we take 1 million
1194 * free objects allocated. On success REDIS_OK is returned, otherwise
1196 int tryFreeOneObjectFromFreelist(void) {
1199 if (server
.vm_enabled
) pthread_mutex_lock(&server
.obj_freelist_mutex
);
1200 if (listLength(server
.objfreelist
)) {
1201 listNode
*head
= listFirst(server
.objfreelist
);
1202 o
= listNodeValue(head
);
1203 listDelNode(server
.objfreelist
,head
);
1204 if (server
.vm_enabled
) pthread_mutex_unlock(&server
.obj_freelist_mutex
);
1208 if (server
.vm_enabled
) pthread_mutex_unlock(&server
.obj_freelist_mutex
);
1213 /* This function gets called when 'maxmemory' is set on the config file to limit
1214 * the max memory used by the server, and we are out of memory.
1215 * This function will try to, in order:
1217 * - Free objects from the free list
1218 * - Try to remove keys with an EXPIRE set
1220 * It is not possible to free enough memory to reach used-memory < maxmemory
1221 * the server will start refusing commands that will enlarge even more the
1224 void freeMemoryIfNeeded(void) {
1225 while (server
.maxmemory
&& zmalloc_used_memory() > server
.maxmemory
) {
1226 int j
, k
, freed
= 0;
1228 if (tryFreeOneObjectFromFreelist() == REDIS_OK
) continue;
1229 for (j
= 0; j
< server
.dbnum
; j
++) {
1232 robj
*keyobj
= NULL
;
1233 struct dictEntry
*de
;
1235 if (dictSize(server
.db
[j
].expires
)) {
1237 /* From a sample of three keys drop the one nearest to
1238 * the natural expire */
1239 for (k
= 0; k
< 3; k
++) {
1242 de
= dictGetRandomKey(server
.db
[j
].expires
);
1243 t
= (time_t) dictGetEntryVal(de
);
1244 if (minttl
== -1 || t
< minttl
) {
1245 minkey
= dictGetEntryKey(de
);
1249 keyobj
= createStringObject(minkey
,sdslen(minkey
));
1250 dbDelete(server
.db
+j
,keyobj
);
1251 server
.stat_expiredkeys
++;
1252 decrRefCount(keyobj
);
1255 if (!freed
) return; /* nothing to free... */
1259 /* =================================== Main! ================================ */
1262 int linuxOvercommitMemoryValue(void) {
1263 FILE *fp
= fopen("/proc/sys/vm/overcommit_memory","r");
1267 if (fgets(buf
,64,fp
) == NULL
) {
1276 void linuxOvercommitMemoryWarning(void) {
1277 if (linuxOvercommitMemoryValue() == 0) {
1278 redisLog(REDIS_WARNING
,"WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect.");
1281 #endif /* __linux__ */
1283 void createPidFile(void) {
1284 /* Try to write the pid file in a best-effort way. */
1285 FILE *fp
= fopen(server
.pidfile
,"w");
1287 fprintf(fp
,"%d\n",getpid());
1292 void daemonize(void) {
1295 if (fork() != 0) exit(0); /* parent exits */
1296 setsid(); /* create a new session */
1298 /* Every output goes to /dev/null. If Redis is daemonized but
1299 * the 'logfile' is set to 'stdout' in the configuration file
1300 * it will not log at all. */
1301 if ((fd
= open("/dev/null", O_RDWR
, 0)) != -1) {
1302 dup2(fd
, STDIN_FILENO
);
1303 dup2(fd
, STDOUT_FILENO
);
1304 dup2(fd
, STDERR_FILENO
);
1305 if (fd
> STDERR_FILENO
) close(fd
);
1310 printf("Redis server version %s (%s:%d)\n", REDIS_VERSION
,
1311 redisGitSHA1(), atoi(redisGitDirty()) > 0);
1316 fprintf(stderr
,"Usage: ./redis-server [/path/to/redis.conf]\n");
1317 fprintf(stderr
," ./redis-server - (read config from stdin)\n");
1321 int main(int argc
, char **argv
) {
1327 if (strcmp(argv
[1], "-v") == 0 ||
1328 strcmp(argv
[1], "--version") == 0) version();
1329 if (strcmp(argv
[1], "--help") == 0) usage();
1330 resetServerSaveParams();
1331 loadServerConfig(argv
[1]);
1332 } else if ((argc
> 2)) {
1335 redisLog(REDIS_WARNING
,"Warning: no config file specified, using the default config. In order to specify a config file use 'redis-server /path/to/redis.conf'");
1337 if (server
.daemonize
) daemonize();
1339 if (server
.daemonize
) createPidFile();
1340 redisLog(REDIS_NOTICE
,"Server started, Redis version " REDIS_VERSION
);
1342 linuxOvercommitMemoryWarning();
1345 if (server
.appendonly
) {
1346 if (loadAppendOnlyFile(server
.appendfilename
) == REDIS_OK
)
1347 redisLog(REDIS_NOTICE
,"DB loaded from append only file: %ld seconds",time(NULL
)-start
);
1349 if (rdbLoad(server
.dbfilename
) == REDIS_OK
)
1350 redisLog(REDIS_NOTICE
,"DB loaded from disk: %ld seconds",time(NULL
)-start
);
1352 redisLog(REDIS_NOTICE
,"The server is now ready to accept connections on port %d", server
.port
);
1353 aeSetBeforeSleepProc(server
.el
,beforeSleep
);
1355 aeDeleteEventLoop(server
.el
);
1359 /* ============================= Backtrace support ========================= */
1361 #ifdef HAVE_BACKTRACE
1362 void *getMcontextEip(ucontext_t
*uc
) {
1363 #if defined(__FreeBSD__)
1364 return (void*) uc
->uc_mcontext
.mc_eip
;
1365 #elif defined(__dietlibc__)
1366 return (void*) uc
->uc_mcontext
.eip
;
1367 #elif defined(__APPLE__) && !defined(MAC_OS_X_VERSION_10_6)
1369 return (void*) uc
->uc_mcontext
->__ss
.__rip
;
1371 return (void*) uc
->uc_mcontext
->__ss
.__eip
;
1373 #elif defined(__APPLE__) && defined(MAC_OS_X_VERSION_10_6)
1374 #if defined(_STRUCT_X86_THREAD_STATE64) && !defined(__i386__)
1375 return (void*) uc
->uc_mcontext
->__ss
.__rip
;
1377 return (void*) uc
->uc_mcontext
->__ss
.__eip
;
1379 #elif defined(__i386__)
1380 return (void*) uc
->uc_mcontext
.gregs
[14]; /* Linux 32 */
1381 #elif defined(__X86_64__) || defined(__x86_64__)
1382 return (void*) uc
->uc_mcontext
.gregs
[16]; /* Linux 64 */
1383 #elif defined(__ia64__) /* Linux IA64 */
1384 return (void*) uc
->uc_mcontext
.sc_ip
;
1390 void segvHandler(int sig
, siginfo_t
*info
, void *secret
) {
1392 char **messages
= NULL
;
1393 int i
, trace_size
= 0;
1394 ucontext_t
*uc
= (ucontext_t
*) secret
;
1396 REDIS_NOTUSED(info
);
1398 redisLog(REDIS_WARNING
,
1399 "======= Ooops! Redis %s got signal: -%d- =======", REDIS_VERSION
, sig
);
1400 infostring
= genRedisInfoString();
1401 redisLog(REDIS_WARNING
, "%s",infostring
);
1402 /* It's not safe to sdsfree() the returned string under memory
1403 * corruption conditions. Let it leak as we are going to abort */
1405 trace_size
= backtrace(trace
, 100);
1406 /* overwrite sigaction with caller's address */
1407 if (getMcontextEip(uc
) != NULL
) {
1408 trace
[1] = getMcontextEip(uc
);
1410 messages
= backtrace_symbols(trace
, trace_size
);
1412 for (i
=1; i
<trace_size
; ++i
)
1413 redisLog(REDIS_WARNING
,"%s", messages
[i
]);
1415 /* free(messages); Don't call free() with possibly corrupted memory. */
1416 if (server
.daemonize
) unlink(server
.pidfile
);
1420 void sigtermHandler(int sig
) {
1423 redisLog(REDIS_WARNING
,"SIGTERM received, scheduling shutting down...");
1424 server
.shutdown_asap
= 1;
1427 void setupSigSegvAction(void) {
1428 struct sigaction act
;
1430 sigemptyset (&act
.sa_mask
);
1431 /* When the SA_SIGINFO flag is set in sa_flags then sa_sigaction
1432 * is used. Otherwise, sa_handler is used */
1433 act
.sa_flags
= SA_NODEFER
| SA_ONSTACK
| SA_RESETHAND
| SA_SIGINFO
;
1434 act
.sa_sigaction
= segvHandler
;
1435 sigaction (SIGSEGV
, &act
, NULL
);
1436 sigaction (SIGBUS
, &act
, NULL
);
1437 sigaction (SIGFPE
, &act
, NULL
);
1438 sigaction (SIGILL
, &act
, NULL
);
1439 sigaction (SIGBUS
, &act
, NULL
);
1441 act
.sa_flags
= SA_NODEFER
| SA_ONSTACK
| SA_RESETHAND
;
1442 act
.sa_handler
= sigtermHandler
;
1443 sigaction (SIGTERM
, &act
, NULL
);
1447 #else /* HAVE_BACKTRACE */
1448 void setupSigSegvAction(void) {
1450 #endif /* HAVE_BACKTRACE */