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,0,NULL
,1,1,1,0},
73 {"set",setCommand
,3,REDIS_CMD_DENYOOM
,NULL
,0,0,0,0},
74 {"setnx",setnxCommand
,3,REDIS_CMD_DENYOOM
,NULL
,0,0,0,0},
75 {"setex",setexCommand
,4,REDIS_CMD_DENYOOM
,NULL
,0,0,0,0},
76 {"append",appendCommand
,3,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0},
77 {"strlen",strlenCommand
,2,0,NULL
,1,1,1,0},
78 {"del",delCommand
,-2,0,NULL
,0,0,0,0},
79 {"exists",existsCommand
,2,0,NULL
,1,1,1,0},
80 {"setbit",setbitCommand
,4,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0},
81 {"getbit",getbitCommand
,3,0,NULL
,1,1,1,0},
82 {"setrange",setrangeCommand
,4,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0},
83 {"getrange",getrangeCommand
,4,0,NULL
,1,1,1,0},
84 {"substr",getrangeCommand
,4,0,NULL
,1,1,1,0},
85 {"incr",incrCommand
,2,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0},
86 {"decr",decrCommand
,2,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0},
87 {"mget",mgetCommand
,-2,0,NULL
,1,-1,1,0},
88 {"rpush",rpushCommand
,3,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0},
89 {"lpush",lpushCommand
,3,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0},
90 {"rpushx",rpushxCommand
,3,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0},
91 {"lpushx",lpushxCommand
,3,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0},
92 {"linsert",linsertCommand
,5,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0},
93 {"rpop",rpopCommand
,2,0,NULL
,1,1,1,0},
94 {"lpop",lpopCommand
,2,0,NULL
,1,1,1,0},
95 {"brpop",brpopCommand
,-3,0,NULL
,1,1,1,0},
96 {"brpoplpush",brpoplpushCommand
,4,REDIS_CMD_DENYOOM
,NULL
,1,2,1,0},
97 {"blpop",blpopCommand
,-3,0,NULL
,1,1,1,0},
98 {"llen",llenCommand
,2,0,NULL
,1,1,1,0},
99 {"lindex",lindexCommand
,3,0,NULL
,1,1,1,0},
100 {"lset",lsetCommand
,4,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0},
101 {"lrange",lrangeCommand
,4,0,NULL
,1,1,1,0},
102 {"ltrim",ltrimCommand
,4,0,NULL
,1,1,1,0},
103 {"lrem",lremCommand
,4,0,NULL
,1,1,1,0},
104 {"rpoplpush",rpoplpushCommand
,3,REDIS_CMD_DENYOOM
,NULL
,1,2,1,0},
105 {"sadd",saddCommand
,3,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0},
106 {"srem",sremCommand
,3,0,NULL
,1,1,1,0},
107 {"smove",smoveCommand
,4,0,NULL
,1,2,1,0},
108 {"sismember",sismemberCommand
,3,0,NULL
,1,1,1,0},
109 {"scard",scardCommand
,2,0,NULL
,1,1,1,0},
110 {"spop",spopCommand
,2,0,NULL
,1,1,1,0},
111 {"srandmember",srandmemberCommand
,2,0,NULL
,1,1,1,0},
112 {"sinter",sinterCommand
,-2,REDIS_CMD_DENYOOM
,NULL
,1,-1,1,0},
113 {"sinterstore",sinterstoreCommand
,-3,REDIS_CMD_DENYOOM
,NULL
,2,-1,1,0},
114 {"sunion",sunionCommand
,-2,REDIS_CMD_DENYOOM
,NULL
,1,-1,1,0},
115 {"sunionstore",sunionstoreCommand
,-3,REDIS_CMD_DENYOOM
,NULL
,2,-1,1,0},
116 {"sdiff",sdiffCommand
,-2,REDIS_CMD_DENYOOM
,NULL
,1,-1,1,0},
117 {"sdiffstore",sdiffstoreCommand
,-3,REDIS_CMD_DENYOOM
,NULL
,2,-1,1,0},
118 {"smembers",sinterCommand
,2,0,NULL
,1,1,1,0},
119 {"zadd",zaddCommand
,4,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0},
120 {"zincrby",zincrbyCommand
,4,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0},
121 {"zrem",zremCommand
,3,0,NULL
,1,1,1,0},
122 {"zremrangebyscore",zremrangebyscoreCommand
,4,0,NULL
,1,1,1,0},
123 {"zremrangebyrank",zremrangebyrankCommand
,4,0,NULL
,1,1,1,0},
124 {"zunionstore",zunionstoreCommand
,-4,REDIS_CMD_DENYOOM
,zunionInterBlockClientOnSwappedKeys
,0,0,0,0},
125 {"zinterstore",zinterstoreCommand
,-4,REDIS_CMD_DENYOOM
,zunionInterBlockClientOnSwappedKeys
,0,0,0,0},
126 {"zrange",zrangeCommand
,-4,0,NULL
,1,1,1,0},
127 {"zrangebyscore",zrangebyscoreCommand
,-4,0,NULL
,1,1,1,0},
128 {"zrevrangebyscore",zrevrangebyscoreCommand
,-4,0,NULL
,1,1,1,0},
129 {"zcount",zcountCommand
,4,0,NULL
,1,1,1,0},
130 {"zrevrange",zrevrangeCommand
,-4,0,NULL
,1,1,1,0},
131 {"zcard",zcardCommand
,2,0,NULL
,1,1,1,0},
132 {"zscore",zscoreCommand
,3,0,NULL
,1,1,1,0},
133 {"zrank",zrankCommand
,3,0,NULL
,1,1,1,0},
134 {"zrevrank",zrevrankCommand
,3,0,NULL
,1,1,1,0},
135 {"hset",hsetCommand
,4,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0},
136 {"hsetnx",hsetnxCommand
,4,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0},
137 {"hget",hgetCommand
,3,0,NULL
,1,1,1,0},
138 {"hmset",hmsetCommand
,-4,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0},
139 {"hmget",hmgetCommand
,-3,0,NULL
,1,1,1,0},
140 {"hincrby",hincrbyCommand
,4,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0},
141 {"hdel",hdelCommand
,3,0,NULL
,1,1,1,0},
142 {"hlen",hlenCommand
,2,0,NULL
,1,1,1,0},
143 {"hkeys",hkeysCommand
,2,0,NULL
,1,1,1,0},
144 {"hvals",hvalsCommand
,2,0,NULL
,1,1,1,0},
145 {"hgetall",hgetallCommand
,2,0,NULL
,1,1,1,0},
146 {"hexists",hexistsCommand
,3,0,NULL
,1,1,1,0},
147 {"incrby",incrbyCommand
,3,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0},
148 {"decrby",decrbyCommand
,3,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0},
149 {"getset",getsetCommand
,3,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0},
150 {"mset",msetCommand
,-3,REDIS_CMD_DENYOOM
,NULL
,1,-1,2,0},
151 {"msetnx",msetnxCommand
,-3,REDIS_CMD_DENYOOM
,NULL
,1,-1,2,0},
152 {"randomkey",randomkeyCommand
,1,0,NULL
,0,0,0,0},
153 {"select",selectCommand
,2,0,NULL
,0,0,0,0},
154 {"move",moveCommand
,3,0,NULL
,1,1,1,0},
155 {"rename",renameCommand
,3,0,NULL
,1,1,1,0},
156 {"renamenx",renamenxCommand
,3,0,NULL
,1,1,1,0},
157 {"expire",expireCommand
,3,0,NULL
,0,0,0,0},
158 {"expireat",expireatCommand
,3,0,NULL
,0,0,0,0},
159 {"keys",keysCommand
,2,0,NULL
,0,0,0,0},
160 {"dbsize",dbsizeCommand
,1,0,NULL
,0,0,0,0},
161 {"auth",authCommand
,2,0,NULL
,0,0,0,0},
162 {"ping",pingCommand
,1,0,NULL
,0,0,0,0},
163 {"echo",echoCommand
,2,0,NULL
,0,0,0,0},
164 {"save",saveCommand
,1,0,NULL
,0,0,0,0},
165 {"bgsave",bgsaveCommand
,1,0,NULL
,0,0,0,0},
166 {"bgrewriteaof",bgrewriteaofCommand
,1,0,NULL
,0,0,0,0},
167 {"shutdown",shutdownCommand
,1,0,NULL
,0,0,0,0},
168 {"lastsave",lastsaveCommand
,1,0,NULL
,0,0,0,0},
169 {"type",typeCommand
,2,0,NULL
,1,1,1,0},
170 {"multi",multiCommand
,1,0,NULL
,0,0,0,0},
171 {"exec",execCommand
,1,REDIS_CMD_DENYOOM
,execBlockClientOnSwappedKeys
,0,0,0,0},
172 {"discard",discardCommand
,1,0,NULL
,0,0,0,0},
173 {"sync",syncCommand
,1,0,NULL
,0,0,0,0},
174 {"flushdb",flushdbCommand
,1,0,NULL
,0,0,0,0},
175 {"flushall",flushallCommand
,1,0,NULL
,0,0,0,0},
176 {"sort",sortCommand
,-2,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0},
177 {"info",infoCommand
,1,0,NULL
,0,0,0,0},
178 {"monitor",monitorCommand
,1,0,NULL
,0,0,0,0},
179 {"ttl",ttlCommand
,2,0,NULL
,1,1,1,0},
180 {"persist",persistCommand
,2,0,NULL
,1,1,1,0},
181 {"slaveof",slaveofCommand
,3,0,NULL
,0,0,0,0},
182 {"debug",debugCommand
,-2,0,NULL
,0,0,0,0},
183 {"config",configCommand
,-2,0,NULL
,0,0,0,0},
184 {"subscribe",subscribeCommand
,-2,0,NULL
,0,0,0,0},
185 {"unsubscribe",unsubscribeCommand
,-1,0,NULL
,0,0,0,0},
186 {"psubscribe",psubscribeCommand
,-2,0,NULL
,0,0,0,0},
187 {"punsubscribe",punsubscribeCommand
,-1,0,NULL
,0,0,0,0},
188 {"publish",publishCommand
,3,REDIS_CMD_FORCE_REPLICATION
,NULL
,0,0,0,0},
189 {"watch",watchCommand
,-2,0,NULL
,0,0,0,0},
190 {"unwatch",unwatchCommand
,1,0,NULL
,0,0,0,0}
193 /*============================ Utility functions ============================ */
195 void redisLog(int level
, const char *fmt
, ...) {
196 const int syslogLevelMap
[] = { LOG_DEBUG
, LOG_INFO
, LOG_NOTICE
, LOG_WARNING
};
197 const char *c
= ".-*#";
198 time_t now
= time(NULL
);
202 char msg
[REDIS_MAX_LOGMSG_LEN
];
204 if (level
< server
.verbosity
) return;
206 fp
= (server
.logfile
== NULL
) ? stdout
: fopen(server
.logfile
,"a");
210 vsnprintf(msg
, sizeof(msg
), fmt
, ap
);
213 strftime(buf
,sizeof(buf
),"%d %b %H:%M:%S",localtime(&now
));
214 fprintf(fp
,"[%d] %s %c %s\n",(int)getpid(),buf
,c
[level
],msg
);
217 if (server
.logfile
) fclose(fp
);
219 if (server
.syslog_enabled
) syslog(syslogLevelMap
[level
], "%s", msg
);
222 /* Redis generally does not try to recover from out of memory conditions
223 * when allocating objects or strings, it is not clear if it will be possible
224 * to report this condition to the client since the networking layer itself
225 * is based on heap allocation for send buffers, so we simply abort.
226 * At least the code will be simpler to read... */
227 void oom(const char *msg
) {
228 redisLog(REDIS_WARNING
, "%s: Out of memory\n",msg
);
233 /* Return the UNIX time in microseconds */
234 long long ustime(void) {
238 gettimeofday(&tv
, NULL
);
239 ust
= ((long long)tv
.tv_sec
)*1000000;
244 /*====================== Hash table type implementation ==================== */
246 /* This is an hash table type that uses the SDS dynamic strings libary as
247 * keys and radis objects as values (objects can hold SDS strings,
250 void dictVanillaFree(void *privdata
, void *val
)
252 DICT_NOTUSED(privdata
);
256 void dictListDestructor(void *privdata
, void *val
)
258 DICT_NOTUSED(privdata
);
259 listRelease((list
*)val
);
262 int dictSdsKeyCompare(void *privdata
, const void *key1
,
266 DICT_NOTUSED(privdata
);
268 l1
= sdslen((sds
)key1
);
269 l2
= sdslen((sds
)key2
);
270 if (l1
!= l2
) return 0;
271 return memcmp(key1
, key2
, l1
) == 0;
274 /* A case insensitive version used for the command lookup table. */
275 int dictSdsKeyCaseCompare(void *privdata
, const void *key1
,
278 DICT_NOTUSED(privdata
);
280 return strcasecmp(key1
, key2
) == 0;
283 void dictRedisObjectDestructor(void *privdata
, void *val
)
285 DICT_NOTUSED(privdata
);
287 if (val
== NULL
) return; /* Values of swapped out keys as set to NULL */
291 void dictSdsDestructor(void *privdata
, void *val
)
293 DICT_NOTUSED(privdata
);
298 int dictObjKeyCompare(void *privdata
, const void *key1
,
301 const robj
*o1
= key1
, *o2
= key2
;
302 return dictSdsKeyCompare(privdata
,o1
->ptr
,o2
->ptr
);
305 unsigned int dictObjHash(const void *key
) {
307 return dictGenHashFunction(o
->ptr
, sdslen((sds
)o
->ptr
));
310 unsigned int dictSdsHash(const void *key
) {
311 return dictGenHashFunction((unsigned char*)key
, sdslen((char*)key
));
314 unsigned int dictSdsCaseHash(const void *key
) {
315 return dictGenCaseHashFunction((unsigned char*)key
, sdslen((char*)key
));
318 int dictEncObjKeyCompare(void *privdata
, const void *key1
,
321 robj
*o1
= (robj
*) key1
, *o2
= (robj
*) key2
;
324 if (o1
->encoding
== REDIS_ENCODING_INT
&&
325 o2
->encoding
== REDIS_ENCODING_INT
)
326 return o1
->ptr
== o2
->ptr
;
328 o1
= getDecodedObject(o1
);
329 o2
= getDecodedObject(o2
);
330 cmp
= dictSdsKeyCompare(privdata
,o1
->ptr
,o2
->ptr
);
336 unsigned int dictEncObjHash(const void *key
) {
337 robj
*o
= (robj
*) key
;
339 if (o
->encoding
== REDIS_ENCODING_RAW
) {
340 return dictGenHashFunction(o
->ptr
, sdslen((sds
)o
->ptr
));
342 if (o
->encoding
== REDIS_ENCODING_INT
) {
346 len
= ll2string(buf
,32,(long)o
->ptr
);
347 return dictGenHashFunction((unsigned char*)buf
, len
);
351 o
= getDecodedObject(o
);
352 hash
= dictGenHashFunction(o
->ptr
, sdslen((sds
)o
->ptr
));
359 /* Sets type and diskstore negative caching hash table */
360 dictType setDictType
= {
361 dictEncObjHash
, /* hash function */
364 dictEncObjKeyCompare
, /* key compare */
365 dictRedisObjectDestructor
, /* key destructor */
366 NULL
/* val destructor */
369 /* Sorted sets hash (note: a skiplist is used in addition to the hash table) */
370 dictType zsetDictType
= {
371 dictEncObjHash
, /* hash function */
374 dictEncObjKeyCompare
, /* key compare */
375 dictRedisObjectDestructor
, /* key destructor */
376 NULL
/* val destructor */
379 /* Db->dict, keys are sds strings, vals are Redis objects. */
380 dictType dbDictType
= {
381 dictSdsHash
, /* hash function */
384 dictSdsKeyCompare
, /* key compare */
385 dictSdsDestructor
, /* key destructor */
386 dictRedisObjectDestructor
/* val destructor */
390 dictType keyptrDictType
= {
391 dictSdsHash
, /* hash function */
394 dictSdsKeyCompare
, /* key compare */
395 NULL
, /* key destructor */
396 NULL
/* val destructor */
399 /* Command table. sds string -> command struct pointer. */
400 dictType commandTableDictType
= {
401 dictSdsCaseHash
, /* hash function */
404 dictSdsKeyCaseCompare
, /* key compare */
405 dictSdsDestructor
, /* key destructor */
406 NULL
/* val destructor */
409 /* Hash type hash table (note that small hashes are represented with zimpaps) */
410 dictType hashDictType
= {
411 dictEncObjHash
, /* hash function */
414 dictEncObjKeyCompare
, /* key compare */
415 dictRedisObjectDestructor
, /* key destructor */
416 dictRedisObjectDestructor
/* val destructor */
419 /* Keylist hash table type has unencoded redis objects as keys and
420 * lists as values. It's used for blocking operations (BLPOP) and to
421 * map swapped keys to a list of clients waiting for this keys to be loaded. */
422 dictType keylistDictType
= {
423 dictObjHash
, /* hash function */
426 dictObjKeyCompare
, /* key compare */
427 dictRedisObjectDestructor
, /* key destructor */
428 dictListDestructor
/* val destructor */
431 int htNeedsResize(dict
*dict
) {
432 long long size
, used
;
434 size
= dictSlots(dict
);
435 used
= dictSize(dict
);
436 return (size
&& used
&& size
> DICT_HT_INITIAL_SIZE
&&
437 (used
*100/size
< REDIS_HT_MINFILL
));
440 /* If the percentage of used slots in the HT reaches REDIS_HT_MINFILL
441 * we resize the hash table to save memory */
442 void tryResizeHashTables(void) {
445 for (j
= 0; j
< server
.dbnum
; j
++) {
446 if (htNeedsResize(server
.db
[j
].dict
))
447 dictResize(server
.db
[j
].dict
);
448 if (htNeedsResize(server
.db
[j
].expires
))
449 dictResize(server
.db
[j
].expires
);
453 /* Our hash table implementation performs rehashing incrementally while
454 * we write/read from the hash table. Still if the server is idle, the hash
455 * table will use two tables for a long time. So we try to use 1 millisecond
456 * of CPU time at every serverCron() loop in order to rehash some key. */
457 void incrementallyRehash(void) {
460 for (j
= 0; j
< server
.dbnum
; j
++) {
461 if (dictIsRehashing(server
.db
[j
].dict
)) {
462 dictRehashMilliseconds(server
.db
[j
].dict
,1);
463 break; /* already used our millisecond for this loop... */
468 /* This function is called once a background process of some kind terminates,
469 * as we want to avoid resizing the hash tables when there is a child in order
470 * to play well with copy-on-write (otherwise when a resize happens lots of
471 * memory pages are copied). The goal of this function is to update the ability
472 * for dict.c to resize the hash tables accordingly to the fact we have o not
474 void updateDictResizePolicy(void) {
475 if (server
.bgsavechildpid
== -1 && server
.bgrewritechildpid
== -1)
481 /* ======================= Cron: called every 100 ms ======================== */
483 /* Try to expire a few timed out keys. The algorithm used is adaptive and
484 * will use few CPU cycles if there are few expiring keys, otherwise
485 * it will get more aggressive to avoid that too much memory is used by
486 * keys that can be removed from the keyspace. */
487 void activeExpireCycle(void) {
490 for (j
= 0; j
< server
.dbnum
; j
++) {
492 redisDb
*db
= server
.db
+j
;
494 /* Continue to expire if at the end of the cycle more than 25%
495 * of the keys were expired. */
497 long num
= dictSize(db
->expires
);
498 time_t now
= time(NULL
);
501 if (num
> REDIS_EXPIRELOOKUPS_PER_CRON
)
502 num
= REDIS_EXPIRELOOKUPS_PER_CRON
;
507 if ((de
= dictGetRandomKey(db
->expires
)) == NULL
) break;
508 t
= (time_t) dictGetEntryVal(de
);
510 sds key
= dictGetEntryKey(de
);
511 robj
*keyobj
= createStringObject(key
,sdslen(key
));
513 propagateExpire(db
,keyobj
);
515 decrRefCount(keyobj
);
517 server
.stat_expiredkeys
++;
520 } while (expired
> REDIS_EXPIRELOOKUPS_PER_CRON
/4);
524 void updateLRUClock(void) {
525 server
.lruclock
= (time(NULL
)/REDIS_LRU_CLOCK_RESOLUTION
) &
529 int serverCron(struct aeEventLoop
*eventLoop
, long long id
, void *clientData
) {
530 int j
, loops
= server
.cronloops
;
531 REDIS_NOTUSED(eventLoop
);
533 REDIS_NOTUSED(clientData
);
535 /* We take a cached value of the unix time in the global state because
536 * with virtual memory and aging there is to store the current time
537 * in objects at every object access, and accuracy is not needed.
538 * To access a global var is faster than calling time(NULL) */
539 server
.unixtime
= time(NULL
);
540 /* We have just 22 bits per object for LRU information.
541 * So we use an (eventually wrapping) LRU clock with 10 seconds resolution.
542 * 2^22 bits with 10 seconds resoluton is more or less 1.5 years.
544 * Note that even if this will wrap after 1.5 years it's not a problem,
545 * everything will still work but just some object will appear younger
546 * to Redis. But for this to happen a given object should never be touched
549 * Note that you can change the resolution altering the
550 * REDIS_LRU_CLOCK_RESOLUTION define.
554 /* We received a SIGTERM, shutting down here in a safe way, as it is
555 * not ok doing so inside the signal handler. */
556 if (server
.shutdown_asap
) {
557 if (prepareForShutdown() == REDIS_OK
) exit(0);
558 redisLog(REDIS_WARNING
,"SIGTERM received but errors trying to shut down the server, check the logs for more information");
561 /* Show some info about non-empty databases */
562 for (j
= 0; j
< server
.dbnum
; j
++) {
563 long long size
, used
, vkeys
;
565 size
= dictSlots(server
.db
[j
].dict
);
566 used
= dictSize(server
.db
[j
].dict
);
567 vkeys
= dictSize(server
.db
[j
].expires
);
568 if (!(loops
% 50) && (used
|| vkeys
)) {
569 redisLog(REDIS_VERBOSE
,"DB %d: %lld keys (%lld volatile) in %lld slots HT.",j
,used
,vkeys
,size
);
570 /* dictPrintStats(server.dict); */
574 /* We don't want to resize the hash tables while a bacground saving
575 * is in progress: the saving child is created using fork() that is
576 * implemented with a copy-on-write semantic in most modern systems, so
577 * if we resize the HT while there is the saving child at work actually
578 * a lot of memory movements in the parent will cause a lot of pages
580 if (server
.bgsavechildpid
== -1 && server
.bgrewritechildpid
== -1) {
581 if (!(loops
% 10)) tryResizeHashTables();
582 if (server
.activerehashing
) incrementallyRehash();
585 /* Show information about connected clients */
587 redisLog(REDIS_VERBOSE
,"%d clients connected (%d slaves), %zu bytes in use",
588 listLength(server
.clients
)-listLength(server
.slaves
),
589 listLength(server
.slaves
),
590 zmalloc_used_memory());
593 /* Close connections of timedout clients */
594 if ((server
.maxidletime
&& !(loops
% 100)) || server
.bpop_blocked_clients
)
595 closeTimedoutClients();
597 /* Check if a background saving or AOF rewrite in progress terminated. */
598 if (server
.bgsavechildpid
!= -1 || server
.bgrewritechildpid
!= -1) {
602 if ((pid
= wait3(&statloc
,WNOHANG
,NULL
)) != 0) {
603 int exitcode
= WEXITSTATUS(statloc
);
606 if (WIFSIGNALED(statloc
)) bysignal
= WTERMSIG(statloc
);
608 if (pid
== server
.bgsavechildpid
) {
609 backgroundSaveDoneHandler(exitcode
,bysignal
);
611 backgroundRewriteDoneHandler(exitcode
,bysignal
);
613 updateDictResizePolicy();
615 } else if (server
.bgsavethread
!= (pthread_t
) -1) {
616 if (server
.bgsavethread
!= (pthread_t
) -1) {
619 pthread_mutex_lock(&server
.bgsavethread_mutex
);
620 state
= server
.bgsavethread_state
;
621 pthread_mutex_unlock(&server
.bgsavethread_mutex
);
623 if (state
== REDIS_BGSAVE_THREAD_DONE_OK
||
624 state
== REDIS_BGSAVE_THREAD_DONE_ERR
)
626 backgroundSaveDoneHandler(
627 (state
== REDIS_BGSAVE_THREAD_DONE_OK
) ? 0 : 1, 0);
630 } else if (!server
.ds_enabled
) {
631 /* If there is not a background saving in progress check if
632 * we have to save now */
633 time_t now
= time(NULL
);
634 for (j
= 0; j
< server
.saveparamslen
; j
++) {
635 struct saveparam
*sp
= server
.saveparams
+j
;
637 if (server
.dirty
>= sp
->changes
&&
638 now
-server
.lastsave
> sp
->seconds
) {
639 redisLog(REDIS_NOTICE
,"%d changes in %d seconds. Saving...",
640 sp
->changes
, sp
->seconds
);
641 rdbSaveBackground(server
.dbfilename
);
647 /* Expire a few keys per cycle, only if this is a master.
648 * On slaves we wait for DEL operations synthesized by the master
649 * in order to guarantee a strict consistency. */
650 if (server
.masterhost
== NULL
) activeExpireCycle();
652 /* Remove a few cached objects from memory if we are over the
653 * configured memory limit */
654 if (server
.ds_enabled
) cacheCron();
656 /* Replication cron function -- used to reconnect to master and
657 * to detect transfer failures. */
658 if (!(loops
% 10)) replicationCron();
664 /* This function gets called every time Redis is entering the
665 * main loop of the event driven library, that is, before to sleep
666 * for ready file descriptors. */
667 void beforeSleep(struct aeEventLoop
*eventLoop
) {
668 REDIS_NOTUSED(eventLoop
);
672 /* Awake clients that got all the on disk keys they requested */
673 if (server
.ds_enabled
&& listLength(server
.io_ready_clients
)) {
676 listRewind(server
.io_ready_clients
,&li
);
677 while((ln
= listNext(&li
))) {
679 struct redisCommand
*cmd
;
681 /* Resume the client. */
682 listDelNode(server
.io_ready_clients
,ln
);
683 c
->flags
&= (~REDIS_IO_WAIT
);
684 server
.cache_blocked_clients
--;
685 aeCreateFileEvent(server
.el
, c
->fd
, AE_READABLE
,
686 readQueryFromClient
, c
);
687 cmd
= lookupCommand(c
->argv
[0]->ptr
);
688 redisAssert(cmd
!= NULL
);
691 /* There may be more data to process in the input buffer. */
692 if (c
->querybuf
&& sdslen(c
->querybuf
) > 0)
693 processInputBuffer(c
);
697 /* Try to process pending commands for clients that were just unblocked. */
698 while (listLength(server
.unblocked_clients
)) {
699 ln
= listFirst(server
.unblocked_clients
);
700 redisAssert(ln
!= NULL
);
702 listDelNode(server
.unblocked_clients
,ln
);
703 c
->flags
&= ~REDIS_UNBLOCKED
;
705 /* Process remaining data in the input buffer. */
706 if (c
->querybuf
&& sdslen(c
->querybuf
) > 0)
707 processInputBuffer(c
);
710 /* Write the AOF buffer on disk */
711 flushAppendOnlyFile();
714 /* =========================== Server initialization ======================== */
716 void createSharedObjects(void) {
719 shared
.crlf
= createObject(REDIS_STRING
,sdsnew("\r\n"));
720 shared
.ok
= createObject(REDIS_STRING
,sdsnew("+OK\r\n"));
721 shared
.err
= createObject(REDIS_STRING
,sdsnew("-ERR\r\n"));
722 shared
.emptybulk
= createObject(REDIS_STRING
,sdsnew("$0\r\n\r\n"));
723 shared
.czero
= createObject(REDIS_STRING
,sdsnew(":0\r\n"));
724 shared
.cone
= createObject(REDIS_STRING
,sdsnew(":1\r\n"));
725 shared
.cnegone
= createObject(REDIS_STRING
,sdsnew(":-1\r\n"));
726 shared
.nullbulk
= createObject(REDIS_STRING
,sdsnew("$-1\r\n"));
727 shared
.nullmultibulk
= createObject(REDIS_STRING
,sdsnew("*-1\r\n"));
728 shared
.emptymultibulk
= createObject(REDIS_STRING
,sdsnew("*0\r\n"));
729 shared
.pong
= createObject(REDIS_STRING
,sdsnew("+PONG\r\n"));
730 shared
.queued
= createObject(REDIS_STRING
,sdsnew("+QUEUED\r\n"));
731 shared
.wrongtypeerr
= createObject(REDIS_STRING
,sdsnew(
732 "-ERR Operation against a key holding the wrong kind of value\r\n"));
733 shared
.nokeyerr
= createObject(REDIS_STRING
,sdsnew(
734 "-ERR no such key\r\n"));
735 shared
.syntaxerr
= createObject(REDIS_STRING
,sdsnew(
736 "-ERR syntax error\r\n"));
737 shared
.sameobjecterr
= createObject(REDIS_STRING
,sdsnew(
738 "-ERR source and destination objects are the same\r\n"));
739 shared
.outofrangeerr
= createObject(REDIS_STRING
,sdsnew(
740 "-ERR index out of range\r\n"));
741 shared
.loadingerr
= createObject(REDIS_STRING
,sdsnew(
742 "-LOADING Redis is loading the dataset in memory\r\n"));
743 shared
.space
= createObject(REDIS_STRING
,sdsnew(" "));
744 shared
.colon
= createObject(REDIS_STRING
,sdsnew(":"));
745 shared
.plus
= createObject(REDIS_STRING
,sdsnew("+"));
746 shared
.select0
= createStringObject("select 0\r\n",10);
747 shared
.select1
= createStringObject("select 1\r\n",10);
748 shared
.select2
= createStringObject("select 2\r\n",10);
749 shared
.select3
= createStringObject("select 3\r\n",10);
750 shared
.select4
= createStringObject("select 4\r\n",10);
751 shared
.select5
= createStringObject("select 5\r\n",10);
752 shared
.select6
= createStringObject("select 6\r\n",10);
753 shared
.select7
= createStringObject("select 7\r\n",10);
754 shared
.select8
= createStringObject("select 8\r\n",10);
755 shared
.select9
= createStringObject("select 9\r\n",10);
756 shared
.messagebulk
= createStringObject("$7\r\nmessage\r\n",13);
757 shared
.pmessagebulk
= createStringObject("$8\r\npmessage\r\n",14);
758 shared
.subscribebulk
= createStringObject("$9\r\nsubscribe\r\n",15);
759 shared
.unsubscribebulk
= createStringObject("$11\r\nunsubscribe\r\n",18);
760 shared
.psubscribebulk
= createStringObject("$10\r\npsubscribe\r\n",17);
761 shared
.punsubscribebulk
= createStringObject("$12\r\npunsubscribe\r\n",19);
762 shared
.mbulk3
= createStringObject("*3\r\n",4);
763 shared
.mbulk4
= createStringObject("*4\r\n",4);
764 for (j
= 0; j
< REDIS_SHARED_INTEGERS
; j
++) {
765 shared
.integers
[j
] = createObject(REDIS_STRING
,(void*)(long)j
);
766 shared
.integers
[j
]->encoding
= REDIS_ENCODING_INT
;
770 void initServerConfig() {
771 server
.port
= REDIS_SERVERPORT
;
772 server
.bindaddr
= NULL
;
773 server
.unixsocket
= NULL
;
776 server
.dbnum
= REDIS_DEFAULT_DBNUM
;
777 server
.verbosity
= REDIS_VERBOSE
;
778 server
.maxidletime
= REDIS_MAXIDLETIME
;
779 server
.saveparams
= NULL
;
781 server
.logfile
= NULL
; /* NULL = log on standard output */
782 server
.syslog_enabled
= 0;
783 server
.syslog_ident
= zstrdup("redis");
784 server
.syslog_facility
= LOG_LOCAL0
;
785 server
.daemonize
= 0;
786 server
.appendonly
= 0;
787 server
.appendfsync
= APPENDFSYNC_EVERYSEC
;
788 server
.no_appendfsync_on_rewrite
= 0;
789 server
.lastfsync
= time(NULL
);
790 server
.appendfd
= -1;
791 server
.appendseldb
= -1; /* Make sure the first time will not match */
792 server
.pidfile
= zstrdup("/var/run/redis.pid");
793 server
.dbfilename
= zstrdup("dump.rdb");
794 server
.appendfilename
= zstrdup("appendonly.aof");
795 server
.requirepass
= NULL
;
796 server
.rdbcompression
= 1;
797 server
.activerehashing
= 1;
798 server
.maxclients
= 0;
799 server
.bpop_blocked_clients
= 0;
800 server
.maxmemory
= 0;
801 server
.maxmemory_policy
= REDIS_MAXMEMORY_VOLATILE_LRU
;
802 server
.maxmemory_samples
= 3;
803 server
.ds_enabled
= 0;
804 server
.ds_path
= sdsnew("/tmp/redis.ds");
805 server
.cache_max_memory
= 64LL*1024*1024; /* 64 MB of RAM */
806 server
.cache_blocked_clients
= 0;
807 server
.hash_max_zipmap_entries
= REDIS_HASH_MAX_ZIPMAP_ENTRIES
;
808 server
.hash_max_zipmap_value
= REDIS_HASH_MAX_ZIPMAP_VALUE
;
809 server
.list_max_ziplist_entries
= REDIS_LIST_MAX_ZIPLIST_ENTRIES
;
810 server
.list_max_ziplist_value
= REDIS_LIST_MAX_ZIPLIST_VALUE
;
811 server
.set_max_intset_entries
= REDIS_SET_MAX_INTSET_ENTRIES
;
812 server
.shutdown_asap
= 0;
813 server
.cache_flush_delay
= 0;
816 resetServerSaveParams();
818 appendServerSaveParams(60*60,1); /* save after 1 hour and 1 change */
819 appendServerSaveParams(300,100); /* save after 5 minutes and 100 changes */
820 appendServerSaveParams(60,10000); /* save after 1 minute and 10000 changes */
821 /* Replication related */
823 server
.masterauth
= NULL
;
824 server
.masterhost
= NULL
;
825 server
.masterport
= 6379;
826 server
.master
= NULL
;
827 server
.replstate
= REDIS_REPL_NONE
;
828 server
.repl_serve_stale_data
= 1;
830 /* Double constants initialization */
832 R_PosInf
= 1.0/R_Zero
;
833 R_NegInf
= -1.0/R_Zero
;
834 R_Nan
= R_Zero
/R_Zero
;
836 /* Command table -- we intiialize it here as it is part of the
837 * initial configuration, since command names may be changed via
838 * redis.conf using the rename-command directive. */
839 server
.commands
= dictCreate(&commandTableDictType
,NULL
);
840 populateCommandTable();
841 server
.delCommand
= lookupCommandByCString("del");
842 server
.multiCommand
= lookupCommandByCString("multi");
848 signal(SIGHUP
, SIG_IGN
);
849 signal(SIGPIPE
, SIG_IGN
);
850 setupSigSegvAction();
852 if (server
.syslog_enabled
) {
853 openlog(server
.syslog_ident
, LOG_PID
| LOG_NDELAY
| LOG_NOWAIT
,
854 server
.syslog_facility
);
857 server
.mainthread
= pthread_self();
858 server
.clients
= listCreate();
859 server
.slaves
= listCreate();
860 server
.monitors
= listCreate();
861 server
.unblocked_clients
= listCreate();
862 server
.cache_io_queue
= listCreate();
864 createSharedObjects();
865 server
.el
= aeCreateEventLoop();
866 server
.db
= zmalloc(sizeof(redisDb
)*server
.dbnum
);
867 server
.ipfd
= anetTcpServer(server
.neterr
,server
.port
,server
.bindaddr
);
868 if (server
.ipfd
== ANET_ERR
) {
869 redisLog(REDIS_WARNING
, "Opening port: %s", server
.neterr
);
872 if (server
.unixsocket
!= NULL
) {
873 unlink(server
.unixsocket
); /* don't care if this fails */
874 server
.sofd
= anetUnixServer(server
.neterr
,server
.unixsocket
);
875 if (server
.sofd
== ANET_ERR
) {
876 redisLog(REDIS_WARNING
, "Opening socket: %s", server
.neterr
);
880 if (server
.ipfd
< 0 && server
.sofd
< 0) {
881 redisLog(REDIS_WARNING
, "Configured to not listen anywhere, exiting.");
884 for (j
= 0; j
< server
.dbnum
; j
++) {
885 server
.db
[j
].dict
= dictCreate(&dbDictType
,NULL
);
886 server
.db
[j
].expires
= dictCreate(&keyptrDictType
,NULL
);
887 server
.db
[j
].blocking_keys
= dictCreate(&keylistDictType
,NULL
);
888 server
.db
[j
].watched_keys
= dictCreate(&keylistDictType
,NULL
);
889 if (server
.ds_enabled
) {
890 server
.db
[j
].io_keys
= dictCreate(&keylistDictType
,NULL
);
891 server
.db
[j
].io_negcache
= dictCreate(&setDictType
,NULL
);
892 server
.db
[j
].io_queued
= dictCreate(&setDictType
,NULL
);
896 server
.pubsub_channels
= dictCreate(&keylistDictType
,NULL
);
897 server
.pubsub_patterns
= listCreate();
898 listSetFreeMethod(server
.pubsub_patterns
,freePubsubPattern
);
899 listSetMatchMethod(server
.pubsub_patterns
,listMatchPubsubPattern
);
900 server
.cronloops
= 0;
901 server
.bgsavechildpid
= -1;
902 server
.bgrewritechildpid
= -1;
903 server
.bgsavethread_state
= REDIS_BGSAVE_THREAD_UNACTIVE
;
904 server
.bgsavethread
= (pthread_t
) -1;
905 server
.bgrewritebuf
= sdsempty();
906 server
.aofbuf
= sdsempty();
907 server
.lastsave
= time(NULL
);
909 server
.stat_numcommands
= 0;
910 server
.stat_numconnections
= 0;
911 server
.stat_expiredkeys
= 0;
912 server
.stat_evictedkeys
= 0;
913 server
.stat_starttime
= time(NULL
);
914 server
.stat_keyspace_misses
= 0;
915 server
.stat_keyspace_hits
= 0;
916 server
.unixtime
= time(NULL
);
917 aeCreateTimeEvent(server
.el
, 1, serverCron
, NULL
, NULL
);
918 if (server
.ipfd
> 0 && aeCreateFileEvent(server
.el
,server
.ipfd
,AE_READABLE
,
919 acceptTcpHandler
,NULL
) == AE_ERR
) oom("creating file event");
920 if (server
.sofd
> 0 && aeCreateFileEvent(server
.el
,server
.sofd
,AE_READABLE
,
921 acceptUnixHandler
,NULL
) == AE_ERR
) oom("creating file event");
923 if (server
.appendonly
) {
924 server
.appendfd
= open(server
.appendfilename
,O_WRONLY
|O_APPEND
|O_CREAT
,0644);
925 if (server
.appendfd
== -1) {
926 redisLog(REDIS_WARNING
, "Can't open the append-only file: %s",
932 if (server
.ds_enabled
) dsInit();
935 /* Populates the Redis Command Table starting from the hard coded list
936 * we have on top of redis.c file. */
937 void populateCommandTable(void) {
939 int numcommands
= sizeof(readonlyCommandTable
)/sizeof(struct redisCommand
);
941 for (j
= 0; j
< numcommands
; j
++) {
942 struct redisCommand
*c
= readonlyCommandTable
+j
;
945 retval
= dictAdd(server
.commands
, sdsnew(c
->name
), c
);
946 assert(retval
== DICT_OK
);
950 /* ====================== Commands lookup and execution ===================== */
952 struct redisCommand
*lookupCommand(sds name
) {
953 return dictFetchValue(server
.commands
, name
);
956 struct redisCommand
*lookupCommandByCString(char *s
) {
957 struct redisCommand
*cmd
;
958 sds name
= sdsnew(s
);
960 cmd
= dictFetchValue(server
.commands
, name
);
965 /* Call() is the core of Redis execution of a command */
966 void call(redisClient
*c
, struct redisCommand
*cmd
) {
967 long long dirty
, start
= ustime();
969 dirty
= server
.dirty
;
971 dirty
= server
.dirty
-dirty
;
972 cmd
->microseconds
+= ustime()-start
;
974 if (server
.appendonly
&& dirty
)
975 feedAppendOnlyFile(cmd
,c
->db
->id
,c
->argv
,c
->argc
);
976 if ((dirty
|| cmd
->flags
& REDIS_CMD_FORCE_REPLICATION
) &&
977 listLength(server
.slaves
))
978 replicationFeedSlaves(server
.slaves
,c
->db
->id
,c
->argv
,c
->argc
);
979 if (listLength(server
.monitors
))
980 replicationFeedMonitors(server
.monitors
,c
->db
->id
,c
->argv
,c
->argc
);
981 server
.stat_numcommands
++;
984 /* If this function gets called we already read a whole
985 * command, argments are in the client argv/argc fields.
986 * processCommand() execute the command or prepare the
987 * server for a bulk read from the client.
989 * If 1 is returned the client is still alive and valid and
990 * and other operations can be performed by the caller. Otherwise
991 * if 0 is returned the client was destroied (i.e. after QUIT). */
992 int processCommand(redisClient
*c
) {
993 struct redisCommand
*cmd
;
995 /* The QUIT command is handled separately. Normal command procs will
996 * go through checking for replication and QUIT will cause trouble
997 * when FORCE_REPLICATION is enabled and would be implemented in
998 * a regular command proc. */
999 if (!strcasecmp(c
->argv
[0]->ptr
,"quit")) {
1000 addReply(c
,shared
.ok
);
1001 c
->flags
|= REDIS_CLOSE_AFTER_REPLY
;
1005 /* Now lookup the command and check ASAP about trivial error conditions
1006 * such wrong arity, bad command name and so forth. */
1007 cmd
= lookupCommand(c
->argv
[0]->ptr
);
1009 addReplyErrorFormat(c
,"unknown command '%s'",
1010 (char*)c
->argv
[0]->ptr
);
1012 } else if ((cmd
->arity
> 0 && cmd
->arity
!= c
->argc
) ||
1013 (c
->argc
< -cmd
->arity
)) {
1014 addReplyErrorFormat(c
,"wrong number of arguments for '%s' command",
1019 /* Check if the user is authenticated */
1020 if (server
.requirepass
&& !c
->authenticated
&& cmd
->proc
!= authCommand
) {
1021 addReplyError(c
,"operation not permitted");
1025 /* Handle the maxmemory directive.
1027 * First we try to free some memory if possible (if there are volatile
1028 * keys in the dataset). If there are not the only thing we can do
1029 * is returning an error. */
1030 if (server
.maxmemory
) freeMemoryIfNeeded();
1031 if (server
.maxmemory
&& (cmd
->flags
& REDIS_CMD_DENYOOM
) &&
1032 zmalloc_used_memory() > server
.maxmemory
)
1034 addReplyError(c
,"command not allowed when used memory > 'maxmemory'");
1038 /* Only allow SUBSCRIBE and UNSUBSCRIBE in the context of Pub/Sub */
1039 if ((dictSize(c
->pubsub_channels
) > 0 || listLength(c
->pubsub_patterns
) > 0)
1041 cmd
->proc
!= subscribeCommand
&& cmd
->proc
!= unsubscribeCommand
&&
1042 cmd
->proc
!= psubscribeCommand
&& cmd
->proc
!= punsubscribeCommand
) {
1043 addReplyError(c
,"only (P)SUBSCRIBE / (P)UNSUBSCRIBE / QUIT allowed in this context");
1047 /* Only allow INFO and SLAVEOF when slave-serve-stale-data is no and
1048 * we are a slave with a broken link with master. */
1049 if (server
.masterhost
&& server
.replstate
!= REDIS_REPL_CONNECTED
&&
1050 server
.repl_serve_stale_data
== 0 &&
1051 cmd
->proc
!= infoCommand
&& cmd
->proc
!= slaveofCommand
)
1054 "link with MASTER is down and slave-serve-stale-data is set to no");
1058 /* Loading DB? Return an error if the command is not INFO */
1059 if (server
.loading
&& cmd
->proc
!= infoCommand
) {
1060 addReply(c
, shared
.loadingerr
);
1064 /* Exec the command */
1065 if (c
->flags
& REDIS_MULTI
&&
1066 cmd
->proc
!= execCommand
&& cmd
->proc
!= discardCommand
&&
1067 cmd
->proc
!= multiCommand
&& cmd
->proc
!= watchCommand
)
1069 queueMultiCommand(c
,cmd
);
1070 addReply(c
,shared
.queued
);
1072 if (server
.ds_enabled
&& blockClientOnSwappedKeys(c
,cmd
))
1079 /*================================== Shutdown =============================== */
1081 int prepareForShutdown() {
1082 redisLog(REDIS_WARNING
,"User requested shutdown, saving DB...");
1083 /* Kill the saving child if there is a background saving in progress.
1084 We want to avoid race conditions, for instance our saving child may
1085 overwrite the synchronous saving did by SHUTDOWN. */
1086 if (server
.bgsavechildpid
!= -1) {
1087 redisLog(REDIS_WARNING
,"There is a live saving child. Killing it!");
1088 kill(server
.bgsavechildpid
,SIGKILL
);
1089 rdbRemoveTempFile(server
.bgsavechildpid
);
1091 if (server
.ds_enabled
) {
1092 /* FIXME: flush all objects on disk */
1093 } else if (server
.appendonly
) {
1094 /* Append only file: fsync() the AOF and exit */
1095 aof_fsync(server
.appendfd
);
1096 } else if (server
.saveparamslen
> 0) {
1097 /* Snapshotting. Perform a SYNC SAVE and exit */
1098 if (rdbSave(server
.dbfilename
) != REDIS_OK
) {
1099 /* Ooops.. error saving! The best we can do is to continue
1100 * operating. Note that if there was a background saving process,
1101 * in the next cron() Redis will be notified that the background
1102 * saving aborted, handling special stuff like slaves pending for
1103 * synchronization... */
1104 redisLog(REDIS_WARNING
,"Error trying to save the DB, can't exit");
1108 redisLog(REDIS_WARNING
,"Not saving DB.");
1110 if (server
.daemonize
) unlink(server
.pidfile
);
1111 redisLog(REDIS_WARNING
,"Server exit now, bye bye...");
1115 /*================================== Commands =============================== */
1117 void authCommand(redisClient
*c
) {
1118 if (!server
.requirepass
|| !strcmp(c
->argv
[1]->ptr
, server
.requirepass
)) {
1119 c
->authenticated
= 1;
1120 addReply(c
,shared
.ok
);
1122 c
->authenticated
= 0;
1123 addReplyError(c
,"invalid password");
1127 void pingCommand(redisClient
*c
) {
1128 addReply(c
,shared
.pong
);
1131 void echoCommand(redisClient
*c
) {
1132 addReplyBulk(c
,c
->argv
[1]);
1135 /* Convert an amount of bytes into a human readable string in the form
1136 * of 100B, 2G, 100M, 4K, and so forth. */
1137 void bytesToHuman(char *s
, unsigned long long n
) {
1142 sprintf(s
,"%lluB",n
);
1144 } else if (n
< (1024*1024)) {
1145 d
= (double)n
/(1024);
1146 sprintf(s
,"%.2fK",d
);
1147 } else if (n
< (1024LL*1024*1024)) {
1148 d
= (double)n
/(1024*1024);
1149 sprintf(s
,"%.2fM",d
);
1150 } else if (n
< (1024LL*1024*1024*1024)) {
1151 d
= (double)n
/(1024LL*1024*1024);
1152 sprintf(s
,"%.2fG",d
);
1156 /* Create the string returned by the INFO command. This is decoupled
1157 * by the INFO command itself as we need to report the same information
1158 * on memory corruption problems. */
1159 sds
genRedisInfoString(void) {
1161 time_t uptime
= time(NULL
)-server
.stat_starttime
;
1164 struct rusage self_ru
, c_ru
;
1165 unsigned long lol
, bib
;
1167 getrusage(RUSAGE_SELF
, &self_ru
);
1168 getrusage(RUSAGE_CHILDREN
, &c_ru
);
1169 getClientsMaxBuffers(&lol
,&bib
);
1171 bytesToHuman(hmem
,zmalloc_used_memory());
1172 info
= sdscatprintf(sdsempty(),
1173 "redis_version:%s\r\n"
1174 "redis_git_sha1:%s\r\n"
1175 "redis_git_dirty:%d\r\n"
1177 "multiplexing_api:%s\r\n"
1178 "process_id:%ld\r\n"
1179 "uptime_in_seconds:%ld\r\n"
1180 "uptime_in_days:%ld\r\n"
1182 "used_cpu_sys:%.2f\r\n"
1183 "used_cpu_user:%.2f\r\n"
1184 "used_cpu_sys_childrens:%.2f\r\n"
1185 "used_cpu_user_childrens:%.2f\r\n"
1186 "connected_clients:%d\r\n"
1187 "connected_slaves:%d\r\n"
1188 "client_longest_output_list:%lu\r\n"
1189 "client_biggest_input_buf:%lu\r\n"
1190 "blocked_clients:%d\r\n"
1191 "used_memory:%zu\r\n"
1192 "used_memory_human:%s\r\n"
1193 "used_memory_rss:%zu\r\n"
1194 "mem_fragmentation_ratio:%.2f\r\n"
1195 "use_tcmalloc:%d\r\n"
1197 "aof_enabled:%d\r\n"
1198 "changes_since_last_save:%lld\r\n"
1199 "bgsave_in_progress:%d\r\n"
1200 "last_save_time:%ld\r\n"
1201 "bgrewriteaof_in_progress:%d\r\n"
1202 "total_connections_received:%lld\r\n"
1203 "total_commands_processed:%lld\r\n"
1204 "expired_keys:%lld\r\n"
1205 "evicted_keys:%lld\r\n"
1206 "keyspace_hits:%lld\r\n"
1207 "keyspace_misses:%lld\r\n"
1208 "hash_max_zipmap_entries:%zu\r\n"
1209 "hash_max_zipmap_value:%zu\r\n"
1210 "pubsub_channels:%ld\r\n"
1211 "pubsub_patterns:%u\r\n"
1216 strtol(redisGitDirty(),NULL
,10) > 0,
1217 (sizeof(long) == 8) ? "64" : "32",
1222 (unsigned long) server
.lruclock
,
1223 (float)self_ru
.ru_utime
.tv_sec
+(float)self_ru
.ru_utime
.tv_usec
/1000000,
1224 (float)self_ru
.ru_stime
.tv_sec
+(float)self_ru
.ru_stime
.tv_usec
/1000000,
1225 (float)c_ru
.ru_utime
.tv_sec
+(float)c_ru
.ru_utime
.tv_usec
/1000000,
1226 (float)c_ru
.ru_stime
.tv_sec
+(float)c_ru
.ru_stime
.tv_usec
/1000000,
1227 listLength(server
.clients
)-listLength(server
.slaves
),
1228 listLength(server
.slaves
),
1230 server
.bpop_blocked_clients
,
1231 zmalloc_used_memory(),
1234 zmalloc_get_fragmentation_ratio(),
1243 server
.bgsavechildpid
!= -1 || server
.bgsavethread
!= (pthread_t
) -1,
1245 server
.bgrewritechildpid
!= -1,
1246 server
.stat_numconnections
,
1247 server
.stat_numcommands
,
1248 server
.stat_expiredkeys
,
1249 server
.stat_evictedkeys
,
1250 server
.stat_keyspace_hits
,
1251 server
.stat_keyspace_misses
,
1252 server
.hash_max_zipmap_entries
,
1253 server
.hash_max_zipmap_value
,
1254 dictSize(server
.pubsub_channels
),
1255 listLength(server
.pubsub_patterns
),
1256 server
.ds_enabled
!= 0,
1257 server
.masterhost
== NULL
? "master" : "slave"
1259 if (server
.masterhost
) {
1260 info
= sdscatprintf(info
,
1261 "master_host:%s\r\n"
1262 "master_port:%d\r\n"
1263 "master_link_status:%s\r\n"
1264 "master_last_io_seconds_ago:%d\r\n"
1265 "master_sync_in_progress:%d\r\n"
1268 (server
.replstate
== REDIS_REPL_CONNECTED
) ?
1270 server
.master
? ((int)(time(NULL
)-server
.master
->lastinteraction
)) : -1,
1271 server
.replstate
== REDIS_REPL_TRANSFER
1274 if (server
.replstate
== REDIS_REPL_TRANSFER
) {
1275 info
= sdscatprintf(info
,
1276 "master_sync_left_bytes:%ld\r\n"
1277 "master_sync_last_io_seconds_ago:%d\r\n"
1278 ,(long)server
.repl_transfer_left
,
1279 (int)(time(NULL
)-server
.repl_transfer_lastio
)
1283 if (server
.ds_enabled
) {
1285 info
= sdscatprintf(info
,
1286 "cache_max_memory:%llu\r\n"
1287 "cache_blocked_clients:%lu\r\n"
1288 ,(unsigned long long) server
.cache_max_memory
,
1289 (unsigned long) server
.cache_blocked_clients
1293 if (server
.loading
) {
1295 time_t eta
, elapsed
;
1296 off_t remaining_bytes
= server
.loading_total_bytes
-
1297 server
.loading_loaded_bytes
;
1299 perc
= ((double)server
.loading_loaded_bytes
/
1300 server
.loading_total_bytes
) * 100;
1302 elapsed
= time(NULL
)-server
.loading_start_time
;
1304 eta
= 1; /* A fake 1 second figure if we don't have enough info */
1306 eta
= (elapsed
*remaining_bytes
)/server
.loading_loaded_bytes
;
1309 info
= sdscatprintf(info
,
1310 "loading_start_time:%ld\r\n"
1311 "loading_total_bytes:%llu\r\n"
1312 "loading_loaded_bytes:%llu\r\n"
1313 "loading_loaded_perc:%.2f\r\n"
1314 "loading_eta_seconds:%ld\r\n"
1315 ,(unsigned long) server
.loading_start_time
,
1316 (unsigned long long) server
.loading_total_bytes
,
1317 (unsigned long long) server
.loading_loaded_bytes
,
1323 info
= sdscat(info
,"allocation_stats:");
1324 for (j
= 0; j
<= ZMALLOC_MAX_ALLOC_STAT
; j
++) {
1325 size_t count
= zmalloc_allocations_for_size(j
);
1327 if (info
[sdslen(info
)-1] != ':') info
= sdscatlen(info
,",",1);
1328 info
= sdscatprintf(info
,"%s%d=%zu",
1329 (j
== ZMALLOC_MAX_ALLOC_STAT
) ? ">=" : "",
1333 info
= sdscat(info
,"\r\n");
1335 numcommands
= sizeof(readonlyCommandTable
)/sizeof(struct redisCommand
);
1336 for (j
= 0; j
< numcommands
; j
++) {
1337 struct redisCommand
*c
= readonlyCommandTable
+j
;
1338 info
= sdscatprintf(info
,"command_%s:microseconds:%lld\r\n",
1339 c
->name
, c
->microseconds
);
1342 for (j
= 0; j
< server
.dbnum
; j
++) {
1343 long long keys
, vkeys
;
1345 keys
= dictSize(server
.db
[j
].dict
);
1346 vkeys
= dictSize(server
.db
[j
].expires
);
1347 if (keys
|| vkeys
) {
1348 info
= sdscatprintf(info
, "db%d:keys=%lld,expires=%lld\r\n",
1355 void infoCommand(redisClient
*c
) {
1356 sds info
= genRedisInfoString();
1357 addReplySds(c
,sdscatprintf(sdsempty(),"$%lu\r\n",
1358 (unsigned long)sdslen(info
)));
1359 addReplySds(c
,info
);
1360 addReply(c
,shared
.crlf
);
1363 void monitorCommand(redisClient
*c
) {
1364 /* ignore MONITOR if aleady slave or in monitor mode */
1365 if (c
->flags
& REDIS_SLAVE
) return;
1367 c
->flags
|= (REDIS_SLAVE
|REDIS_MONITOR
);
1369 listAddNodeTail(server
.monitors
,c
);
1370 addReply(c
,shared
.ok
);
1373 /* ============================ Maxmemory directive ======================== */
1375 /* This function gets called when 'maxmemory' is set on the config file to limit
1376 * the max memory used by the server, and we are out of memory.
1377 * This function will try to, in order:
1379 * - Free objects from the free list
1380 * - Try to remove keys with an EXPIRE set
1382 * It is not possible to free enough memory to reach used-memory < maxmemory
1383 * the server will start refusing commands that will enlarge even more the
1386 void freeMemoryIfNeeded(void) {
1387 /* Remove keys accordingly to the active policy as long as we are
1388 * over the memory limit. */
1389 if (server
.maxmemory_policy
== REDIS_MAXMEMORY_NO_EVICTION
) return;
1391 while (server
.maxmemory
&& zmalloc_used_memory() > server
.maxmemory
) {
1392 int j
, k
, freed
= 0;
1394 for (j
= 0; j
< server
.dbnum
; j
++) {
1395 long bestval
= 0; /* just to prevent warning */
1397 struct dictEntry
*de
;
1398 redisDb
*db
= server
.db
+j
;
1401 if (server
.maxmemory_policy
== REDIS_MAXMEMORY_ALLKEYS_LRU
||
1402 server
.maxmemory_policy
== REDIS_MAXMEMORY_ALLKEYS_RANDOM
)
1404 dict
= server
.db
[j
].dict
;
1406 dict
= server
.db
[j
].expires
;
1408 if (dictSize(dict
) == 0) continue;
1410 /* volatile-random and allkeys-random policy */
1411 if (server
.maxmemory_policy
== REDIS_MAXMEMORY_ALLKEYS_RANDOM
||
1412 server
.maxmemory_policy
== REDIS_MAXMEMORY_VOLATILE_RANDOM
)
1414 de
= dictGetRandomKey(dict
);
1415 bestkey
= dictGetEntryKey(de
);
1418 /* volatile-lru and allkeys-lru policy */
1419 else if (server
.maxmemory_policy
== REDIS_MAXMEMORY_ALLKEYS_LRU
||
1420 server
.maxmemory_policy
== REDIS_MAXMEMORY_VOLATILE_LRU
)
1422 for (k
= 0; k
< server
.maxmemory_samples
; k
++) {
1427 de
= dictGetRandomKey(dict
);
1428 thiskey
= dictGetEntryKey(de
);
1429 /* When policy is volatile-lru we need an additonal lookup
1430 * to locate the real key, as dict is set to db->expires. */
1431 if (server
.maxmemory_policy
== REDIS_MAXMEMORY_VOLATILE_LRU
)
1432 de
= dictFind(db
->dict
, thiskey
);
1433 o
= dictGetEntryVal(de
);
1434 thisval
= estimateObjectIdleTime(o
);
1436 /* Higher idle time is better candidate for deletion */
1437 if (bestkey
== NULL
|| thisval
> bestval
) {
1445 else if (server
.maxmemory_policy
== REDIS_MAXMEMORY_VOLATILE_TTL
) {
1446 for (k
= 0; k
< server
.maxmemory_samples
; k
++) {
1450 de
= dictGetRandomKey(dict
);
1451 thiskey
= dictGetEntryKey(de
);
1452 thisval
= (long) dictGetEntryVal(de
);
1454 /* Expire sooner (minor expire unix timestamp) is better
1455 * candidate for deletion */
1456 if (bestkey
== NULL
|| thisval
< bestval
) {
1463 /* Finally remove the selected key. */
1465 robj
*keyobj
= createStringObject(bestkey
,sdslen(bestkey
));
1466 dbDelete(db
,keyobj
);
1467 server
.stat_evictedkeys
++;
1468 decrRefCount(keyobj
);
1472 if (!freed
) return; /* nothing to free... */
1476 /* =================================== Main! ================================ */
1479 int linuxOvercommitMemoryValue(void) {
1480 FILE *fp
= fopen("/proc/sys/vm/overcommit_memory","r");
1484 if (fgets(buf
,64,fp
) == NULL
) {
1493 void linuxOvercommitMemoryWarning(void) {
1494 if (linuxOvercommitMemoryValue() == 0) {
1495 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.");
1498 #endif /* __linux__ */
1500 void createPidFile(void) {
1501 /* Try to write the pid file in a best-effort way. */
1502 FILE *fp
= fopen(server
.pidfile
,"w");
1504 fprintf(fp
,"%d\n",(int)getpid());
1509 void daemonize(void) {
1512 if (fork() != 0) exit(0); /* parent exits */
1513 setsid(); /* create a new session */
1515 /* Every output goes to /dev/null. If Redis is daemonized but
1516 * the 'logfile' is set to 'stdout' in the configuration file
1517 * it will not log at all. */
1518 if ((fd
= open("/dev/null", O_RDWR
, 0)) != -1) {
1519 dup2(fd
, STDIN_FILENO
);
1520 dup2(fd
, STDOUT_FILENO
);
1521 dup2(fd
, STDERR_FILENO
);
1522 if (fd
> STDERR_FILENO
) close(fd
);
1527 printf("Redis server version %s (%s:%d)\n", REDIS_VERSION
,
1528 redisGitSHA1(), atoi(redisGitDirty()) > 0);
1533 fprintf(stderr
,"Usage: ./redis-server [/path/to/redis.conf]\n");
1534 fprintf(stderr
," ./redis-server - (read config from stdin)\n");
1538 int main(int argc
, char **argv
) {
1543 if (strcmp(argv
[1], "-v") == 0 ||
1544 strcmp(argv
[1], "--version") == 0) version();
1545 if (strcmp(argv
[1], "--help") == 0) usage();
1546 resetServerSaveParams();
1547 loadServerConfig(argv
[1]);
1548 } else if ((argc
> 2)) {
1551 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'");
1553 if (server
.daemonize
) daemonize();
1555 if (server
.daemonize
) createPidFile();
1556 redisLog(REDIS_NOTICE
,"Server started, Redis version " REDIS_VERSION
);
1558 linuxOvercommitMemoryWarning();
1561 if (server
.ds_enabled
) {
1562 redisLog(REDIS_NOTICE
,"DB not loaded (running with disk back end)");
1563 } else if (server
.appendonly
) {
1564 if (loadAppendOnlyFile(server
.appendfilename
) == REDIS_OK
)
1565 redisLog(REDIS_NOTICE
,"DB loaded from append only file: %ld seconds",time(NULL
)-start
);
1567 if (rdbLoad(server
.dbfilename
) == REDIS_OK
)
1568 redisLog(REDIS_NOTICE
,"DB loaded from disk: %ld seconds",time(NULL
)-start
);
1570 if (server
.ipfd
> 0)
1571 redisLog(REDIS_NOTICE
,"The server is now ready to accept connections on port %d", server
.port
);
1572 if (server
.sofd
> 0)
1573 redisLog(REDIS_NOTICE
,"The server is now ready to accept connections at %s", server
.unixsocket
);
1574 aeSetBeforeSleepProc(server
.el
,beforeSleep
);
1576 aeDeleteEventLoop(server
.el
);
1580 /* ============================= Backtrace support ========================= */
1582 #ifdef HAVE_BACKTRACE
1583 void *getMcontextEip(ucontext_t
*uc
) {
1584 #if defined(__FreeBSD__)
1585 return (void*) uc
->uc_mcontext
.mc_eip
;
1586 #elif defined(__dietlibc__)
1587 return (void*) uc
->uc_mcontext
.eip
;
1588 #elif defined(__APPLE__) && !defined(MAC_OS_X_VERSION_10_6)
1590 return (void*) uc
->uc_mcontext
->__ss
.__rip
;
1592 return (void*) uc
->uc_mcontext
->__ss
.__eip
;
1594 #elif defined(__APPLE__) && defined(MAC_OS_X_VERSION_10_6)
1595 #if defined(_STRUCT_X86_THREAD_STATE64) && !defined(__i386__)
1596 return (void*) uc
->uc_mcontext
->__ss
.__rip
;
1598 return (void*) uc
->uc_mcontext
->__ss
.__eip
;
1600 #elif defined(__i386__)
1601 return (void*) uc
->uc_mcontext
.gregs
[14]; /* Linux 32 */
1602 #elif defined(__X86_64__) || defined(__x86_64__)
1603 return (void*) uc
->uc_mcontext
.gregs
[16]; /* Linux 64 */
1604 #elif defined(__ia64__) /* Linux IA64 */
1605 return (void*) uc
->uc_mcontext
.sc_ip
;
1611 void segvHandler(int sig
, siginfo_t
*info
, void *secret
) {
1613 char **messages
= NULL
;
1614 int i
, trace_size
= 0;
1615 ucontext_t
*uc
= (ucontext_t
*) secret
;
1617 struct sigaction act
;
1618 REDIS_NOTUSED(info
);
1620 redisLog(REDIS_WARNING
,
1621 "======= Ooops! Redis %s got signal: -%d- =======", REDIS_VERSION
, sig
);
1622 infostring
= genRedisInfoString();
1623 redisLog(REDIS_WARNING
, "%s",infostring
);
1624 /* It's not safe to sdsfree() the returned string under memory
1625 * corruption conditions. Let it leak as we are going to abort */
1627 trace_size
= backtrace(trace
, 100);
1628 /* overwrite sigaction with caller's address */
1629 if (getMcontextEip(uc
) != NULL
) {
1630 trace
[1] = getMcontextEip(uc
);
1632 messages
= backtrace_symbols(trace
, trace_size
);
1634 for (i
=1; i
<trace_size
; ++i
)
1635 redisLog(REDIS_WARNING
,"%s", messages
[i
]);
1637 /* free(messages); Don't call free() with possibly corrupted memory. */
1638 if (server
.daemonize
) unlink(server
.pidfile
);
1640 /* Make sure we exit with the right signal at the end. So for instance
1641 * the core will be dumped if enabled. */
1642 sigemptyset (&act
.sa_mask
);
1643 /* When the SA_SIGINFO flag is set in sa_flags then sa_sigaction
1644 * is used. Otherwise, sa_handler is used */
1645 act
.sa_flags
= SA_NODEFER
| SA_ONSTACK
| SA_RESETHAND
;
1646 act
.sa_handler
= SIG_DFL
;
1647 sigaction (sig
, &act
, NULL
);
1651 void sigtermHandler(int sig
) {
1654 redisLog(REDIS_WARNING
,"SIGTERM received, scheduling shutting down...");
1655 server
.shutdown_asap
= 1;
1658 void setupSigSegvAction(void) {
1659 struct sigaction act
;
1661 sigemptyset (&act
.sa_mask
);
1662 /* When the SA_SIGINFO flag is set in sa_flags then sa_sigaction
1663 * is used. Otherwise, sa_handler is used */
1664 act
.sa_flags
= SA_NODEFER
| SA_ONSTACK
| SA_RESETHAND
| SA_SIGINFO
;
1665 act
.sa_sigaction
= segvHandler
;
1666 sigaction (SIGSEGV
, &act
, NULL
);
1667 sigaction (SIGBUS
, &act
, NULL
);
1668 sigaction (SIGFPE
, &act
, NULL
);
1669 sigaction (SIGILL
, &act
, NULL
);
1670 sigaction (SIGBUS
, &act
, NULL
);
1672 act
.sa_flags
= SA_NODEFER
| SA_ONSTACK
| SA_RESETHAND
;
1673 act
.sa_handler
= sigtermHandler
;
1674 sigaction (SIGTERM
, &act
, NULL
);
1678 #else /* HAVE_BACKTRACE */
1679 void setupSigSegvAction(void) {
1681 #endif /* HAVE_BACKTRACE */