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.
37 #endif /* HAVE_BACKTRACE */
46 #include <arpa/inet.h>
50 #include <sys/resource.h>
55 #include <sys/resource.h>
57 /* Our shared "common" objects */
59 struct sharedObjectsStruct shared
;
61 /* Global vars that are actually used as constants. The following double
62 * values are used for double on-disk serialization, and are initialized
63 * at runtime to avoid strange compiler optimizations. */
65 double R_Zero
, R_PosInf
, R_NegInf
, R_Nan
;
67 /*================================= Globals ================================= */
70 struct redisServer server
; /* server global state */
71 struct redisCommand
*commandTable
;
73 /* Our command table. Command flags are expressed using strings where every
74 * character represents a flag. Later the populateCommandTable() function will
75 * take care of populating the real 'flags' field using this characters.
77 * This is the meaning of the flags:
79 * w: write command (may modify the key space).
80 * r: read command (will never modify the key space).
81 * m: may increase memory usage once called. Don't allow if out of memory.
82 * a: admin command, like SAVE or SHUTDOWN.
83 * p: Pub/Sub related command.
84 * f: force replication of this command, regarless of server.dirty.
85 * s: command not allowed in scripts.
86 * r: random command. Command is not deterministic, that is, the same command
87 * with the same arguments, with the same key space, may have different
88 * results. For instance SPOP and RANDOMKEY are two random commands. */
89 struct redisCommand redisCommandTable
[] = {
90 {"get",getCommand
,2,"r",0,NULL
,1,1,1,0,0},
91 {"set",setCommand
,3,"wm",0,noPreloadGetKeys
,1,1,1,0,0},
92 {"setnx",setnxCommand
,3,"wm",0,noPreloadGetKeys
,1,1,1,0,0},
93 {"setex",setexCommand
,4,"wm",0,noPreloadGetKeys
,2,2,1,0,0},
94 {"psetex",psetexCommand
,4,"wm",0,noPreloadGetKeys
,2,2,1,0,0},
95 {"append",appendCommand
,3,"wm",0,NULL
,1,1,1,0,0},
96 {"strlen",strlenCommand
,2,"r",0,NULL
,1,1,1,0,0},
97 {"del",delCommand
,-2,"w",0,noPreloadGetKeys
,1,-1,1,0,0},
98 {"exists",existsCommand
,2,"r",0,NULL
,1,1,1,0,0},
99 {"setbit",setbitCommand
,4,"wm",0,NULL
,1,1,1,0,0},
100 {"getbit",getbitCommand
,3,"r",0,NULL
,1,1,1,0,0},
101 {"setrange",setrangeCommand
,4,"wm",0,NULL
,1,1,1,0,0},
102 {"getrange",getrangeCommand
,4,"r",0,NULL
,1,1,1,0,0},
103 {"substr",getrangeCommand
,4,"r",0,NULL
,1,1,1,0,0},
104 {"incr",incrCommand
,2,"wm",0,NULL
,1,1,1,0,0},
105 {"decr",decrCommand
,2,"wm",0,NULL
,1,1,1,0,0},
106 {"mget",mgetCommand
,-2,"r",0,NULL
,1,-1,1,0,0},
107 {"rpush",rpushCommand
,-3,"wm",0,NULL
,1,1,1,0,0},
108 {"lpush",lpushCommand
,-3,"wm",0,NULL
,1,1,1,0,0},
109 {"rpushx",rpushxCommand
,3,"wm",0,NULL
,1,1,1,0,0},
110 {"lpushx",lpushxCommand
,3,"wm",0,NULL
,1,1,1,0,0},
111 {"linsert",linsertCommand
,5,"wm",0,NULL
,1,1,1,0,0},
112 {"rpop",rpopCommand
,2,"w",0,NULL
,1,1,1,0,0},
113 {"lpop",lpopCommand
,2,"w",0,NULL
,1,1,1,0,0},
114 {"brpop",brpopCommand
,-3,"ws",0,NULL
,1,1,1,0,0},
115 {"brpoplpush",brpoplpushCommand
,4,"wms",0,NULL
,1,2,1,0,0},
116 {"blpop",blpopCommand
,-3,"ws",0,NULL
,1,-2,1,0,0},
117 {"llen",llenCommand
,2,"r",0,NULL
,1,1,1,0,0},
118 {"lindex",lindexCommand
,3,"r",0,NULL
,1,1,1,0,0},
119 {"lset",lsetCommand
,4,"wm",0,NULL
,1,1,1,0,0},
120 {"lrange",lrangeCommand
,4,"r",0,NULL
,1,1,1,0,0},
121 {"ltrim",ltrimCommand
,4,"w",0,NULL
,1,1,1,0,0},
122 {"lrem",lremCommand
,4,"w",0,NULL
,1,1,1,0,0},
123 {"rpoplpush",rpoplpushCommand
,3,"wm",0,NULL
,1,2,1,0,0},
124 {"sadd",saddCommand
,-3,"wm",0,NULL
,1,1,1,0,0},
125 {"srem",sremCommand
,-3,"w",0,NULL
,1,1,1,0,0},
126 {"smove",smoveCommand
,4,"w",0,NULL
,1,2,1,0,0},
127 {"sismember",sismemberCommand
,3,"r",0,NULL
,1,1,1,0,0},
128 {"scard",scardCommand
,2,"r",0,NULL
,1,1,1,0,0},
129 {"spop",spopCommand
,2,"wRs",0,NULL
,1,1,1,0,0},
130 {"srandmember",srandmemberCommand
,2,"rR",0,NULL
,1,1,1,0,0},
131 {"sinter",sinterCommand
,-2,"r",0,NULL
,1,-1,1,0,0},
132 {"sinterstore",sinterstoreCommand
,-3,"wm",0,NULL
,2,-1,1,0,0},
133 {"sunion",sunionCommand
,-2,"r",0,NULL
,1,-1,1,0,0},
134 {"sunionstore",sunionstoreCommand
,-3,"wm",0,NULL
,2,-1,1,0,0},
135 {"sdiff",sdiffCommand
,-2,"r",0,NULL
,1,-1,1,0,0},
136 {"sdiffstore",sdiffstoreCommand
,-3,"wm",0,NULL
,2,-1,1,0,0},
137 {"smembers",sinterCommand
,2,"r",0,NULL
,1,1,1,0,0},
138 {"zadd",zaddCommand
,-4,"wm",0,NULL
,1,1,1,0,0},
139 {"zincrby",zincrbyCommand
,4,"wm",0,NULL
,1,1,1,0,0},
140 {"zrem",zremCommand
,-3,"w",0,NULL
,1,1,1,0,0},
141 {"zremrangebyscore",zremrangebyscoreCommand
,4,"w",0,NULL
,1,1,1,0,0},
142 {"zremrangebyrank",zremrangebyrankCommand
,4,"w",0,NULL
,1,1,1,0,0},
143 {"zunionstore",zunionstoreCommand
,-4,"wm",0,zunionInterGetKeys
,0,0,0,0,0},
144 {"zinterstore",zinterstoreCommand
,-4,"wm",0,zunionInterGetKeys
,0,0,0,0,0},
145 {"zrange",zrangeCommand
,-4,"r",0,NULL
,1,1,1,0,0},
146 {"zrangebyscore",zrangebyscoreCommand
,-4,"r",0,NULL
,1,1,1,0,0},
147 {"zrevrangebyscore",zrevrangebyscoreCommand
,-4,"r",0,NULL
,1,1,1,0,0},
148 {"zcount",zcountCommand
,4,"r",0,NULL
,1,1,1,0,0},
149 {"zrevrange",zrevrangeCommand
,-4,"r",0,NULL
,1,1,1,0,0},
150 {"zcard",zcardCommand
,2,"r",0,NULL
,1,1,1,0,0},
151 {"zscore",zscoreCommand
,3,"r",0,NULL
,1,1,1,0,0},
152 {"zrank",zrankCommand
,3,"r",0,NULL
,1,1,1,0,0},
153 {"zrevrank",zrevrankCommand
,3,"r",0,NULL
,1,1,1,0,0},
154 {"hset",hsetCommand
,4,"wm",0,NULL
,1,1,1,0,0},
155 {"hsetnx",hsetnxCommand
,4,"wm",0,NULL
,1,1,1,0,0},
156 {"hget",hgetCommand
,3,"r",0,NULL
,1,1,1,0,0},
157 {"hmset",hmsetCommand
,-4,"wm",0,NULL
,1,1,1,0,0},
158 {"hmget",hmgetCommand
,-3,"r",0,NULL
,1,1,1,0,0},
159 {"hincrby",hincrbyCommand
,4,"wm",0,NULL
,1,1,1,0,0},
160 {"hincrbyfloat",hincrbyfloatCommand
,4,"wm",0,NULL
,1,1,1,0,0},
161 {"hdel",hdelCommand
,-3,"w",0,NULL
,1,1,1,0,0},
162 {"hlen",hlenCommand
,2,"r",0,NULL
,1,1,1,0,0},
163 {"hkeys",hkeysCommand
,2,"r",0,NULL
,1,1,1,0,0},
164 {"hvals",hvalsCommand
,2,"r",0,NULL
,1,1,1,0,0},
165 {"hgetall",hgetallCommand
,2,"r",0,NULL
,1,1,1,0,0},
166 {"hexists",hexistsCommand
,3,"r",0,NULL
,1,1,1,0,0},
167 {"incrby",incrbyCommand
,3,"wm",0,NULL
,1,1,1,0,0},
168 {"decrby",decrbyCommand
,3,"wm",0,NULL
,1,1,1,0,0},
169 {"incrbyfloat",incrbyfloatCommand
,3,"wm",0,NULL
,1,1,1,0,0},
170 {"getset",getsetCommand
,3,"wm",0,NULL
,1,1,1,0,0},
171 {"mset",msetCommand
,-3,"wm",0,NULL
,1,-1,2,0,0},
172 {"msetnx",msetnxCommand
,-3,"wm",0,NULL
,1,-1,2,0,0},
173 {"randomkey",randomkeyCommand
,1,"rR",0,NULL
,0,0,0,0,0},
174 {"select",selectCommand
,2,"r",0,NULL
,0,0,0,0,0},
175 {"move",moveCommand
,3,"w",0,NULL
,1,1,1,0,0},
176 {"rename",renameCommand
,3,"w",0,renameGetKeys
,1,2,1,0,0},
177 {"renamenx",renamenxCommand
,3,"w",0,renameGetKeys
,1,2,1,0,0},
178 {"expire",expireCommand
,3,"w",0,NULL
,1,1,1,0,0},
179 {"expireat",expireatCommand
,3,"w",0,NULL
,1,1,1,0,0},
180 {"pexpire",pexpireCommand
,3,"w",0,NULL
,1,1,1,0,0},
181 {"pexpireat",pexpireatCommand
,3,"w",0,NULL
,1,1,1,0,0},
182 {"keys",keysCommand
,2,"r",0,NULL
,0,0,0,0,0},
183 {"dbsize",dbsizeCommand
,1,"r",0,NULL
,0,0,0,0,0},
184 {"auth",authCommand
,2,"rs",0,NULL
,0,0,0,0,0},
185 {"ping",pingCommand
,1,"r",0,NULL
,0,0,0,0,0},
186 {"echo",echoCommand
,2,"r",0,NULL
,0,0,0,0,0},
187 {"save",saveCommand
,1,"ars",0,NULL
,0,0,0,0,0},
188 {"bgsave",bgsaveCommand
,1,"ar",0,NULL
,0,0,0,0,0},
189 {"bgrewriteaof",bgrewriteaofCommand
,1,"ar",0,NULL
,0,0,0,0,0},
190 {"shutdown",shutdownCommand
,-1,"ar",0,NULL
,0,0,0,0,0},
191 {"lastsave",lastsaveCommand
,1,"r",0,NULL
,0,0,0,0,0},
192 {"type",typeCommand
,2,"r",0,NULL
,1,1,1,0,0},
193 {"multi",multiCommand
,1,"rs",0,NULL
,0,0,0,0,0},
194 {"exec",execCommand
,1,"wms",0,NULL
,0,0,0,0,0},
195 {"discard",discardCommand
,1,"rs",0,NULL
,0,0,0,0,0},
196 {"sync",syncCommand
,1,"ars",0,NULL
,0,0,0,0,0},
197 {"flushdb",flushdbCommand
,1,"w",0,NULL
,0,0,0,0,0},
198 {"flushall",flushallCommand
,1,"w",0,NULL
,0,0,0,0,0},
199 {"sort",sortCommand
,-2,"wm",0,NULL
,1,1,1,0,0},
200 {"info",infoCommand
,-1,"r",0,NULL
,0,0,0,0,0},
201 {"monitor",monitorCommand
,1,"ars",0,NULL
,0,0,0,0,0},
202 {"ttl",ttlCommand
,2,"r",0,NULL
,1,1,1,0,0},
203 {"pttl",pttlCommand
,2,"r",0,NULL
,1,1,1,0,0},
204 {"persist",persistCommand
,2,"w",0,NULL
,1,1,1,0,0},
205 {"slaveof",slaveofCommand
,3,"aws",0,NULL
,0,0,0,0,0},
206 {"debug",debugCommand
,-2,"aws",0,NULL
,0,0,0,0,0},
207 {"config",configCommand
,-2,"ar",0,NULL
,0,0,0,0,0},
208 {"subscribe",subscribeCommand
,-2,"rps",0,NULL
,0,0,0,0,0},
209 {"unsubscribe",unsubscribeCommand
,-1,"rps",0,NULL
,0,0,0,0,0},
210 {"psubscribe",psubscribeCommand
,-2,"rps",0,NULL
,0,0,0,0,0},
211 {"punsubscribe",punsubscribeCommand
,-1,"rps",0,NULL
,0,0,0,0,0},
212 {"publish",publishCommand
,3,"rpf",0,NULL
,0,0,0,0,0},
213 {"watch",watchCommand
,-2,"rs",0,noPreloadGetKeys
,1,-1,1,0,0},
214 {"unwatch",unwatchCommand
,1,"rs",0,NULL
,0,0,0,0,0},
215 {"cluster",clusterCommand
,-2,"ar",0,NULL
,0,0,0,0,0},
216 {"restore",restoreCommand
,4,"awm",0,NULL
,1,1,1,0,0},
217 {"migrate",migrateCommand
,6,"aw",0,NULL
,0,0,0,0,0},
218 {"asking",askingCommand
,1,"r",0,NULL
,0,0,0,0,0},
219 {"dump",dumpCommand
,2,"ar",0,NULL
,0,0,0,0,0},
220 {"object",objectCommand
,-2,"r",0,NULL
,0,0,0,0,0},
221 {"client",clientCommand
,-2,"ar",0,NULL
,0,0,0,0,0},
222 {"eval",evalCommand
,-3,"wms",0,zunionInterGetKeys
,0,0,0,0,0},
223 {"evalsha",evalShaCommand
,-3,"wms",0,zunionInterGetKeys
,0,0,0,0,0},
224 {"slowlog",slowlogCommand
,-2,"r",0,NULL
,0,0,0,0,0},
225 {"script",scriptCommand
,-2,"ras",0,NULL
,0,0,0,0,0}
228 /*============================ Utility functions ============================ */
230 /* Low level logging. To use only for very big messages, otherwise
231 * redisLog() is to prefer. */
232 void redisLogRaw(int level
, const char *msg
) {
233 const int syslogLevelMap
[] = { LOG_DEBUG
, LOG_INFO
, LOG_NOTICE
, LOG_WARNING
};
234 const char *c
= ".-*#";
235 time_t now
= time(NULL
);
238 int rawmode
= (level
& REDIS_LOG_RAW
);
240 level
&= 0xff; /* clear flags */
241 if (level
< server
.verbosity
) return;
243 fp
= (server
.logfile
== NULL
) ? stdout
: fopen(server
.logfile
,"a");
247 fprintf(fp
,"%s",msg
);
249 strftime(buf
,sizeof(buf
),"%d %b %H:%M:%S",localtime(&now
));
250 fprintf(fp
,"[%d] %s %c %s\n",(int)getpid(),buf
,c
[level
],msg
);
254 if (server
.logfile
) fclose(fp
);
256 if (server
.syslog_enabled
) syslog(syslogLevelMap
[level
], "%s", msg
);
259 /* Like redisLogRaw() but with printf-alike support. This is the funciton that
260 * is used across the code. The raw version is only used in order to dump
261 * the INFO output on crash. */
262 void redisLog(int level
, const char *fmt
, ...) {
264 char msg
[REDIS_MAX_LOGMSG_LEN
];
266 if ((level
&0xff) < server
.verbosity
) return;
269 vsnprintf(msg
, sizeof(msg
), fmt
, ap
);
272 redisLogRaw(level
,msg
);
275 /* Redis generally does not try to recover from out of memory conditions
276 * when allocating objects or strings, it is not clear if it will be possible
277 * to report this condition to the client since the networking layer itself
278 * is based on heap allocation for send buffers, so we simply abort.
279 * At least the code will be simpler to read... */
280 void oom(const char *msg
) {
281 redisLog(REDIS_WARNING
, "%s: Out of memory\n",msg
);
286 /* Return the UNIX time in microseconds */
287 long long ustime(void) {
291 gettimeofday(&tv
, NULL
);
292 ust
= ((long long)tv
.tv_sec
)*1000000;
297 /* Return the UNIX time in milliseconds */
298 long long mstime(void) {
299 return ustime()/1000;
302 /*====================== Hash table type implementation ==================== */
304 /* This is an hash table type that uses the SDS dynamic strings libary as
305 * keys and radis objects as values (objects can hold SDS strings,
308 void dictVanillaFree(void *privdata
, void *val
)
310 DICT_NOTUSED(privdata
);
314 void dictListDestructor(void *privdata
, void *val
)
316 DICT_NOTUSED(privdata
);
317 listRelease((list
*)val
);
320 int dictSdsKeyCompare(void *privdata
, const void *key1
,
324 DICT_NOTUSED(privdata
);
326 l1
= sdslen((sds
)key1
);
327 l2
= sdslen((sds
)key2
);
328 if (l1
!= l2
) return 0;
329 return memcmp(key1
, key2
, l1
) == 0;
332 /* A case insensitive version used for the command lookup table. */
333 int dictSdsKeyCaseCompare(void *privdata
, const void *key1
,
336 DICT_NOTUSED(privdata
);
338 return strcasecmp(key1
, key2
) == 0;
341 void dictRedisObjectDestructor(void *privdata
, void *val
)
343 DICT_NOTUSED(privdata
);
345 if (val
== NULL
) return; /* Values of swapped out keys as set to NULL */
349 void dictSdsDestructor(void *privdata
, void *val
)
351 DICT_NOTUSED(privdata
);
356 int dictObjKeyCompare(void *privdata
, const void *key1
,
359 const robj
*o1
= key1
, *o2
= key2
;
360 return dictSdsKeyCompare(privdata
,o1
->ptr
,o2
->ptr
);
363 unsigned int dictObjHash(const void *key
) {
365 return dictGenHashFunction(o
->ptr
, sdslen((sds
)o
->ptr
));
368 unsigned int dictSdsHash(const void *key
) {
369 return dictGenHashFunction((unsigned char*)key
, sdslen((char*)key
));
372 unsigned int dictSdsCaseHash(const void *key
) {
373 return dictGenCaseHashFunction((unsigned char*)key
, sdslen((char*)key
));
376 int dictEncObjKeyCompare(void *privdata
, const void *key1
,
379 robj
*o1
= (robj
*) key1
, *o2
= (robj
*) key2
;
382 if (o1
->encoding
== REDIS_ENCODING_INT
&&
383 o2
->encoding
== REDIS_ENCODING_INT
)
384 return o1
->ptr
== o2
->ptr
;
386 o1
= getDecodedObject(o1
);
387 o2
= getDecodedObject(o2
);
388 cmp
= dictSdsKeyCompare(privdata
,o1
->ptr
,o2
->ptr
);
394 unsigned int dictEncObjHash(const void *key
) {
395 robj
*o
= (robj
*) key
;
397 if (o
->encoding
== REDIS_ENCODING_RAW
) {
398 return dictGenHashFunction(o
->ptr
, sdslen((sds
)o
->ptr
));
400 if (o
->encoding
== REDIS_ENCODING_INT
) {
404 len
= ll2string(buf
,32,(long)o
->ptr
);
405 return dictGenHashFunction((unsigned char*)buf
, len
);
409 o
= getDecodedObject(o
);
410 hash
= dictGenHashFunction(o
->ptr
, sdslen((sds
)o
->ptr
));
417 /* Sets type hash table */
418 dictType setDictType
= {
419 dictEncObjHash
, /* hash function */
422 dictEncObjKeyCompare
, /* key compare */
423 dictRedisObjectDestructor
, /* key destructor */
424 NULL
/* val destructor */
427 /* Sorted sets hash (note: a skiplist is used in addition to the hash table) */
428 dictType zsetDictType
= {
429 dictEncObjHash
, /* hash function */
432 dictEncObjKeyCompare
, /* key compare */
433 dictRedisObjectDestructor
, /* key destructor */
434 NULL
/* val destructor */
437 /* Db->dict, keys are sds strings, vals are Redis objects. */
438 dictType dbDictType
= {
439 dictSdsHash
, /* hash function */
442 dictSdsKeyCompare
, /* key compare */
443 dictSdsDestructor
, /* key destructor */
444 dictRedisObjectDestructor
/* val destructor */
448 dictType keyptrDictType
= {
449 dictSdsHash
, /* hash function */
452 dictSdsKeyCompare
, /* key compare */
453 NULL
, /* key destructor */
454 NULL
/* val destructor */
457 /* Command table. sds string -> command struct pointer. */
458 dictType commandTableDictType
= {
459 dictSdsCaseHash
, /* hash function */
462 dictSdsKeyCaseCompare
, /* key compare */
463 dictSdsDestructor
, /* key destructor */
464 NULL
/* val destructor */
467 /* Hash type hash table (note that small hashes are represented with zimpaps) */
468 dictType hashDictType
= {
469 dictEncObjHash
, /* hash function */
472 dictEncObjKeyCompare
, /* key compare */
473 dictRedisObjectDestructor
, /* key destructor */
474 dictRedisObjectDestructor
/* val destructor */
477 /* Keylist hash table type has unencoded redis objects as keys and
478 * lists as values. It's used for blocking operations (BLPOP) and to
479 * map swapped keys to a list of clients waiting for this keys to be loaded. */
480 dictType keylistDictType
= {
481 dictObjHash
, /* hash function */
484 dictObjKeyCompare
, /* key compare */
485 dictRedisObjectDestructor
, /* key destructor */
486 dictListDestructor
/* val destructor */
489 /* Cluster nodes hash table, mapping nodes addresses 1.2.3.4:6379 to
490 * clusterNode structures. */
491 dictType clusterNodesDictType
= {
492 dictSdsHash
, /* hash function */
495 dictSdsKeyCompare
, /* key compare */
496 dictSdsDestructor
, /* key destructor */
497 NULL
/* val destructor */
500 int htNeedsResize(dict
*dict
) {
501 long long size
, used
;
503 size
= dictSlots(dict
);
504 used
= dictSize(dict
);
505 return (size
&& used
&& size
> DICT_HT_INITIAL_SIZE
&&
506 (used
*100/size
< REDIS_HT_MINFILL
));
509 /* If the percentage of used slots in the HT reaches REDIS_HT_MINFILL
510 * we resize the hash table to save memory */
511 void tryResizeHashTables(void) {
514 for (j
= 0; j
< server
.dbnum
; j
++) {
515 if (htNeedsResize(server
.db
[j
].dict
))
516 dictResize(server
.db
[j
].dict
);
517 if (htNeedsResize(server
.db
[j
].expires
))
518 dictResize(server
.db
[j
].expires
);
522 /* Our hash table implementation performs rehashing incrementally while
523 * we write/read from the hash table. Still if the server is idle, the hash
524 * table will use two tables for a long time. So we try to use 1 millisecond
525 * of CPU time at every serverCron() loop in order to rehash some key. */
526 void incrementallyRehash(void) {
529 for (j
= 0; j
< server
.dbnum
; j
++) {
530 if (dictIsRehashing(server
.db
[j
].dict
)) {
531 dictRehashMilliseconds(server
.db
[j
].dict
,1);
532 break; /* already used our millisecond for this loop... */
537 /* This function is called once a background process of some kind terminates,
538 * as we want to avoid resizing the hash tables when there is a child in order
539 * to play well with copy-on-write (otherwise when a resize happens lots of
540 * memory pages are copied). The goal of this function is to update the ability
541 * for dict.c to resize the hash tables accordingly to the fact we have o not
543 void updateDictResizePolicy(void) {
544 if (server
.bgsavechildpid
== -1 && server
.bgrewritechildpid
== -1)
550 /* ======================= Cron: called every 100 ms ======================== */
552 /* Try to expire a few timed out keys. The algorithm used is adaptive and
553 * will use few CPU cycles if there are few expiring keys, otherwise
554 * it will get more aggressive to avoid that too much memory is used by
555 * keys that can be removed from the keyspace. */
556 void activeExpireCycle(void) {
559 for (j
= 0; j
< server
.dbnum
; j
++) {
561 redisDb
*db
= server
.db
+j
;
563 /* Continue to expire if at the end of the cycle more than 25%
564 * of the keys were expired. */
566 long num
= dictSize(db
->expires
);
567 long long now
= mstime();
570 if (num
> REDIS_EXPIRELOOKUPS_PER_CRON
)
571 num
= REDIS_EXPIRELOOKUPS_PER_CRON
;
576 if ((de
= dictGetRandomKey(db
->expires
)) == NULL
) break;
577 t
= dictGetSignedIntegerVal(de
);
579 sds key
= dictGetKey(de
);
580 robj
*keyobj
= createStringObject(key
,sdslen(key
));
582 propagateExpire(db
,keyobj
);
584 decrRefCount(keyobj
);
586 server
.stat_expiredkeys
++;
589 } while (expired
> REDIS_EXPIRELOOKUPS_PER_CRON
/4);
593 void updateLRUClock(void) {
594 server
.lruclock
= (time(NULL
)/REDIS_LRU_CLOCK_RESOLUTION
) &
598 int serverCron(struct aeEventLoop
*eventLoop
, long long id
, void *clientData
) {
599 int j
, loops
= server
.cronloops
;
600 REDIS_NOTUSED(eventLoop
);
602 REDIS_NOTUSED(clientData
);
604 /* We take a cached value of the unix time in the global state because
605 * with virtual memory and aging there is to store the current time
606 * in objects at every object access, and accuracy is not needed.
607 * To access a global var is faster than calling time(NULL) */
608 server
.unixtime
= time(NULL
);
610 /* We have just 22 bits per object for LRU information.
611 * So we use an (eventually wrapping) LRU clock with 10 seconds resolution.
612 * 2^22 bits with 10 seconds resoluton is more or less 1.5 years.
614 * Note that even if this will wrap after 1.5 years it's not a problem,
615 * everything will still work but just some object will appear younger
616 * to Redis. But for this to happen a given object should never be touched
619 * Note that you can change the resolution altering the
620 * REDIS_LRU_CLOCK_RESOLUTION define.
624 /* Record the max memory used since the server was started. */
625 if (zmalloc_used_memory() > server
.stat_peak_memory
)
626 server
.stat_peak_memory
= zmalloc_used_memory();
628 /* We received a SIGTERM, shutting down here in a safe way, as it is
629 * not ok doing so inside the signal handler. */
630 if (server
.shutdown_asap
) {
631 if (prepareForShutdown(0) == REDIS_OK
) exit(0);
632 redisLog(REDIS_WARNING
,"SIGTERM received but errors trying to shut down the server, check the logs for more information");
635 /* Show some info about non-empty databases */
636 for (j
= 0; j
< server
.dbnum
; j
++) {
637 long long size
, used
, vkeys
;
639 size
= dictSlots(server
.db
[j
].dict
);
640 used
= dictSize(server
.db
[j
].dict
);
641 vkeys
= dictSize(server
.db
[j
].expires
);
642 if (!(loops
% 50) && (used
|| vkeys
)) {
643 redisLog(REDIS_VERBOSE
,"DB %d: %lld keys (%lld volatile) in %lld slots HT.",j
,used
,vkeys
,size
);
644 /* dictPrintStats(server.dict); */
648 /* We don't want to resize the hash tables while a bacground saving
649 * is in progress: the saving child is created using fork() that is
650 * implemented with a copy-on-write semantic in most modern systems, so
651 * if we resize the HT while there is the saving child at work actually
652 * a lot of memory movements in the parent will cause a lot of pages
654 if (server
.bgsavechildpid
== -1 && server
.bgrewritechildpid
== -1) {
655 if (!(loops
% 10)) tryResizeHashTables();
656 if (server
.activerehashing
) incrementallyRehash();
659 /* Show information about connected clients */
661 redisLog(REDIS_VERBOSE
,"%d clients connected (%d slaves), %zu bytes in use",
662 listLength(server
.clients
)-listLength(server
.slaves
),
663 listLength(server
.slaves
),
664 zmalloc_used_memory());
667 /* Close connections of timedout clients */
668 if ((server
.maxidletime
&& !(loops
% 100)) || server
.bpop_blocked_clients
)
669 closeTimedoutClients();
671 /* Start a scheduled AOF rewrite if this was requested by the user while
672 * a BGSAVE was in progress. */
673 if (server
.bgsavechildpid
== -1 && server
.bgrewritechildpid
== -1 &&
674 server
.aofrewrite_scheduled
)
676 rewriteAppendOnlyFileBackground();
679 /* Check if a background saving or AOF rewrite in progress terminated. */
680 if (server
.bgsavechildpid
!= -1 || server
.bgrewritechildpid
!= -1) {
684 if ((pid
= wait3(&statloc
,WNOHANG
,NULL
)) != 0) {
685 int exitcode
= WEXITSTATUS(statloc
);
688 if (WIFSIGNALED(statloc
)) bysignal
= WTERMSIG(statloc
);
690 if (pid
== server
.bgsavechildpid
) {
691 backgroundSaveDoneHandler(exitcode
,bysignal
);
693 backgroundRewriteDoneHandler(exitcode
,bysignal
);
695 updateDictResizePolicy();
698 time_t now
= time(NULL
);
700 /* If there is not a background saving/rewrite in progress check if
701 * we have to save/rewrite now */
702 for (j
= 0; j
< server
.saveparamslen
; j
++) {
703 struct saveparam
*sp
= server
.saveparams
+j
;
705 if (server
.dirty
>= sp
->changes
&&
706 now
-server
.lastsave
> sp
->seconds
) {
707 redisLog(REDIS_NOTICE
,"%d changes in %d seconds. Saving...",
708 sp
->changes
, sp
->seconds
);
709 rdbSaveBackground(server
.dbfilename
);
714 /* Trigger an AOF rewrite if needed */
715 if (server
.bgsavechildpid
== -1 &&
716 server
.bgrewritechildpid
== -1 &&
717 server
.auto_aofrewrite_perc
&&
718 server
.appendonly_current_size
> server
.auto_aofrewrite_min_size
)
720 long long base
= server
.auto_aofrewrite_base_size
?
721 server
.auto_aofrewrite_base_size
: 1;
722 long long growth
= (server
.appendonly_current_size
*100/base
) - 100;
723 if (growth
>= server
.auto_aofrewrite_perc
) {
724 redisLog(REDIS_NOTICE
,"Starting automatic rewriting of AOF on %lld%% growth",growth
);
725 rewriteAppendOnlyFileBackground();
731 /* If we postponed an AOF buffer flush, let's try to do it every time the
732 * cron function is called. */
733 if (server
.aof_flush_postponed_start
) flushAppendOnlyFile(0);
735 /* Expire a few keys per cycle, only if this is a master.
736 * On slaves we wait for DEL operations synthesized by the master
737 * in order to guarantee a strict consistency. */
738 if (server
.masterhost
== NULL
) activeExpireCycle();
740 /* Replication cron function -- used to reconnect to master and
741 * to detect transfer failures. */
742 if (!(loops
% 10)) replicationCron();
744 /* Run other sub-systems specific cron jobs */
745 if (server
.cluster_enabled
&& !(loops
% 10)) clusterCron();
751 /* This function gets called every time Redis is entering the
752 * main loop of the event driven library, that is, before to sleep
753 * for ready file descriptors. */
754 void beforeSleep(struct aeEventLoop
*eventLoop
) {
755 REDIS_NOTUSED(eventLoop
);
759 /* Try to process pending commands for clients that were just unblocked. */
760 while (listLength(server
.unblocked_clients
)) {
761 ln
= listFirst(server
.unblocked_clients
);
762 redisAssert(ln
!= NULL
);
764 listDelNode(server
.unblocked_clients
,ln
);
765 c
->flags
&= ~REDIS_UNBLOCKED
;
767 /* Process remaining data in the input buffer. */
768 if (c
->querybuf
&& sdslen(c
->querybuf
) > 0)
769 processInputBuffer(c
);
772 /* Write the AOF buffer on disk */
773 flushAppendOnlyFile(0);
776 /* =========================== Server initialization ======================== */
778 void createSharedObjects(void) {
781 shared
.crlf
= createObject(REDIS_STRING
,sdsnew("\r\n"));
782 shared
.ok
= createObject(REDIS_STRING
,sdsnew("+OK\r\n"));
783 shared
.err
= createObject(REDIS_STRING
,sdsnew("-ERR\r\n"));
784 shared
.emptybulk
= createObject(REDIS_STRING
,sdsnew("$0\r\n\r\n"));
785 shared
.czero
= createObject(REDIS_STRING
,sdsnew(":0\r\n"));
786 shared
.cone
= createObject(REDIS_STRING
,sdsnew(":1\r\n"));
787 shared
.cnegone
= createObject(REDIS_STRING
,sdsnew(":-1\r\n"));
788 shared
.nullbulk
= createObject(REDIS_STRING
,sdsnew("$-1\r\n"));
789 shared
.nullmultibulk
= createObject(REDIS_STRING
,sdsnew("*-1\r\n"));
790 shared
.emptymultibulk
= createObject(REDIS_STRING
,sdsnew("*0\r\n"));
791 shared
.pong
= createObject(REDIS_STRING
,sdsnew("+PONG\r\n"));
792 shared
.queued
= createObject(REDIS_STRING
,sdsnew("+QUEUED\r\n"));
793 shared
.wrongtypeerr
= createObject(REDIS_STRING
,sdsnew(
794 "-ERR Operation against a key holding the wrong kind of value\r\n"));
795 shared
.nokeyerr
= createObject(REDIS_STRING
,sdsnew(
796 "-ERR no such key\r\n"));
797 shared
.syntaxerr
= createObject(REDIS_STRING
,sdsnew(
798 "-ERR syntax error\r\n"));
799 shared
.sameobjecterr
= createObject(REDIS_STRING
,sdsnew(
800 "-ERR source and destination objects are the same\r\n"));
801 shared
.outofrangeerr
= createObject(REDIS_STRING
,sdsnew(
802 "-ERR index out of range\r\n"));
803 shared
.noscripterr
= createObject(REDIS_STRING
,sdsnew(
804 "-NOSCRIPT No matching script. Please use EVAL.\r\n"));
805 shared
.loadingerr
= createObject(REDIS_STRING
,sdsnew(
806 "-LOADING Redis is loading the dataset in memory\r\n"));
807 shared
.slowscripterr
= createObject(REDIS_STRING
,sdsnew(
808 "-BUSY Redis is busy running a script. You can only call SCRIPT KILL or SHUTDOWN NOSAVE.\r\n"));
809 shared
.space
= createObject(REDIS_STRING
,sdsnew(" "));
810 shared
.colon
= createObject(REDIS_STRING
,sdsnew(":"));
811 shared
.plus
= createObject(REDIS_STRING
,sdsnew("+"));
812 shared
.select0
= createStringObject("select 0\r\n",10);
813 shared
.select1
= createStringObject("select 1\r\n",10);
814 shared
.select2
= createStringObject("select 2\r\n",10);
815 shared
.select3
= createStringObject("select 3\r\n",10);
816 shared
.select4
= createStringObject("select 4\r\n",10);
817 shared
.select5
= createStringObject("select 5\r\n",10);
818 shared
.select6
= createStringObject("select 6\r\n",10);
819 shared
.select7
= createStringObject("select 7\r\n",10);
820 shared
.select8
= createStringObject("select 8\r\n",10);
821 shared
.select9
= createStringObject("select 9\r\n",10);
822 shared
.messagebulk
= createStringObject("$7\r\nmessage\r\n",13);
823 shared
.pmessagebulk
= createStringObject("$8\r\npmessage\r\n",14);
824 shared
.subscribebulk
= createStringObject("$9\r\nsubscribe\r\n",15);
825 shared
.unsubscribebulk
= createStringObject("$11\r\nunsubscribe\r\n",18);
826 shared
.psubscribebulk
= createStringObject("$10\r\npsubscribe\r\n",17);
827 shared
.punsubscribebulk
= createStringObject("$12\r\npunsubscribe\r\n",19);
828 shared
.mbulk3
= createStringObject("*3\r\n",4);
829 shared
.mbulk4
= createStringObject("*4\r\n",4);
830 for (j
= 0; j
< REDIS_SHARED_INTEGERS
; j
++) {
831 shared
.integers
[j
] = createObject(REDIS_STRING
,(void*)(long)j
);
832 shared
.integers
[j
]->encoding
= REDIS_ENCODING_INT
;
836 void initServerConfig() {
837 server
.port
= REDIS_SERVERPORT
;
838 server
.bindaddr
= NULL
;
839 server
.unixsocket
= NULL
;
840 server
.unixsocketperm
= 0;
843 server
.dbnum
= REDIS_DEFAULT_DBNUM
;
844 server
.verbosity
= REDIS_VERBOSE
;
845 server
.maxidletime
= REDIS_MAXIDLETIME
;
846 server
.saveparams
= NULL
;
848 server
.logfile
= NULL
; /* NULL = log on standard output */
849 server
.syslog_enabled
= 0;
850 server
.syslog_ident
= zstrdup("redis");
851 server
.syslog_facility
= LOG_LOCAL0
;
852 server
.daemonize
= 0;
853 server
.appendonly
= 0;
854 server
.appendfsync
= APPENDFSYNC_EVERYSEC
;
855 server
.no_appendfsync_on_rewrite
= 0;
856 server
.auto_aofrewrite_perc
= REDIS_AUTO_AOFREWRITE_PERC
;
857 server
.auto_aofrewrite_min_size
= REDIS_AUTO_AOFREWRITE_MIN_SIZE
;
858 server
.auto_aofrewrite_base_size
= 0;
859 server
.aofrewrite_scheduled
= 0;
860 server
.lastfsync
= time(NULL
);
861 server
.appendfd
= -1;
862 server
.appendseldb
= -1; /* Make sure the first time will not match */
863 server
.aof_flush_postponed_start
= 0;
864 server
.pidfile
= zstrdup("/var/run/redis.pid");
865 server
.dbfilename
= zstrdup("dump.rdb");
866 server
.appendfilename
= zstrdup("appendonly.aof");
867 server
.requirepass
= NULL
;
868 server
.rdbcompression
= 1;
869 server
.activerehashing
= 1;
870 server
.maxclients
= REDIS_MAX_CLIENTS
;
871 server
.bpop_blocked_clients
= 0;
872 server
.maxmemory
= 0;
873 server
.maxmemory_policy
= REDIS_MAXMEMORY_VOLATILE_LRU
;
874 server
.maxmemory_samples
= 3;
875 server
.hash_max_zipmap_entries
= REDIS_HASH_MAX_ZIPMAP_ENTRIES
;
876 server
.hash_max_zipmap_value
= REDIS_HASH_MAX_ZIPMAP_VALUE
;
877 server
.list_max_ziplist_entries
= REDIS_LIST_MAX_ZIPLIST_ENTRIES
;
878 server
.list_max_ziplist_value
= REDIS_LIST_MAX_ZIPLIST_VALUE
;
879 server
.set_max_intset_entries
= REDIS_SET_MAX_INTSET_ENTRIES
;
880 server
.zset_max_ziplist_entries
= REDIS_ZSET_MAX_ZIPLIST_ENTRIES
;
881 server
.zset_max_ziplist_value
= REDIS_ZSET_MAX_ZIPLIST_VALUE
;
882 server
.shutdown_asap
= 0;
883 server
.repl_ping_slave_period
= REDIS_REPL_PING_SLAVE_PERIOD
;
884 server
.repl_timeout
= REDIS_REPL_TIMEOUT
;
885 server
.cluster_enabled
= 0;
886 server
.cluster
.configfile
= zstrdup("nodes.conf");
887 server
.lua_caller
= NULL
;
888 server
.lua_time_limit
= REDIS_LUA_TIME_LIMIT
;
889 server
.lua_client
= NULL
;
890 server
.lua_timedout
= 0;
893 resetServerSaveParams();
895 appendServerSaveParams(60*60,1); /* save after 1 hour and 1 change */
896 appendServerSaveParams(300,100); /* save after 5 minutes and 100 changes */
897 appendServerSaveParams(60,10000); /* save after 1 minute and 10000 changes */
898 /* Replication related */
900 server
.masterauth
= NULL
;
901 server
.masterhost
= NULL
;
902 server
.masterport
= 6379;
903 server
.master
= NULL
;
904 server
.replstate
= REDIS_REPL_NONE
;
905 server
.repl_syncio_timeout
= REDIS_REPL_SYNCIO_TIMEOUT
;
906 server
.repl_serve_stale_data
= 1;
907 server
.repl_down_since
= -1;
909 /* Double constants initialization */
911 R_PosInf
= 1.0/R_Zero
;
912 R_NegInf
= -1.0/R_Zero
;
913 R_Nan
= R_Zero
/R_Zero
;
915 /* Command table -- we intiialize it here as it is part of the
916 * initial configuration, since command names may be changed via
917 * redis.conf using the rename-command directive. */
918 server
.commands
= dictCreate(&commandTableDictType
,NULL
);
919 populateCommandTable();
920 server
.delCommand
= lookupCommandByCString("del");
921 server
.multiCommand
= lookupCommandByCString("multi");
924 server
.slowlog_log_slower_than
= REDIS_SLOWLOG_LOG_SLOWER_THAN
;
925 server
.slowlog_max_len
= REDIS_SLOWLOG_MAX_LEN
;
931 signal(SIGHUP
, SIG_IGN
);
932 signal(SIGPIPE
, SIG_IGN
);
933 setupSignalHandlers();
935 if (server
.syslog_enabled
) {
936 openlog(server
.syslog_ident
, LOG_PID
| LOG_NDELAY
| LOG_NOWAIT
,
937 server
.syslog_facility
);
940 server
.clients
= listCreate();
941 server
.slaves
= listCreate();
942 server
.monitors
= listCreate();
943 server
.unblocked_clients
= listCreate();
945 createSharedObjects();
946 server
.el
= aeCreateEventLoop();
947 server
.db
= zmalloc(sizeof(redisDb
)*server
.dbnum
);
949 if (server
.port
!= 0) {
950 server
.ipfd
= anetTcpServer(server
.neterr
,server
.port
,server
.bindaddr
);
951 if (server
.ipfd
== ANET_ERR
) {
952 redisLog(REDIS_WARNING
, "Opening port %d: %s",
953 server
.port
, server
.neterr
);
957 if (server
.unixsocket
!= NULL
) {
958 unlink(server
.unixsocket
); /* don't care if this fails */
959 server
.sofd
= anetUnixServer(server
.neterr
,server
.unixsocket
,server
.unixsocketperm
);
960 if (server
.sofd
== ANET_ERR
) {
961 redisLog(REDIS_WARNING
, "Opening socket: %s", server
.neterr
);
965 if (server
.ipfd
< 0 && server
.sofd
< 0) {
966 redisLog(REDIS_WARNING
, "Configured to not listen anywhere, exiting.");
969 for (j
= 0; j
< server
.dbnum
; j
++) {
970 server
.db
[j
].dict
= dictCreate(&dbDictType
,NULL
);
971 server
.db
[j
].expires
= dictCreate(&keyptrDictType
,NULL
);
972 server
.db
[j
].blocking_keys
= dictCreate(&keylistDictType
,NULL
);
973 server
.db
[j
].watched_keys
= dictCreate(&keylistDictType
,NULL
);
976 server
.pubsub_channels
= dictCreate(&keylistDictType
,NULL
);
977 server
.pubsub_patterns
= listCreate();
978 listSetFreeMethod(server
.pubsub_patterns
,freePubsubPattern
);
979 listSetMatchMethod(server
.pubsub_patterns
,listMatchPubsubPattern
);
980 server
.cronloops
= 0;
981 server
.bgsavechildpid
= -1;
982 server
.bgrewritechildpid
= -1;
983 server
.bgrewritebuf
= sdsempty();
984 server
.aofbuf
= sdsempty();
985 server
.lastsave
= time(NULL
);
987 server
.stat_numcommands
= 0;
988 server
.stat_numconnections
= 0;
989 server
.stat_expiredkeys
= 0;
990 server
.stat_evictedkeys
= 0;
991 server
.stat_starttime
= time(NULL
);
992 server
.stat_keyspace_misses
= 0;
993 server
.stat_keyspace_hits
= 0;
994 server
.stat_peak_memory
= 0;
995 server
.stat_fork_time
= 0;
996 server
.unixtime
= time(NULL
);
997 aeCreateTimeEvent(server
.el
, 1, serverCron
, NULL
, NULL
);
998 if (server
.ipfd
> 0 && aeCreateFileEvent(server
.el
,server
.ipfd
,AE_READABLE
,
999 acceptTcpHandler
,NULL
) == AE_ERR
) oom("creating file event");
1000 if (server
.sofd
> 0 && aeCreateFileEvent(server
.el
,server
.sofd
,AE_READABLE
,
1001 acceptUnixHandler
,NULL
) == AE_ERR
) oom("creating file event");
1003 if (server
.appendonly
) {
1004 server
.appendfd
= open(server
.appendfilename
,O_WRONLY
|O_APPEND
|O_CREAT
,0644);
1005 if (server
.appendfd
== -1) {
1006 redisLog(REDIS_WARNING
, "Can't open the append-only file: %s",
1012 if (server
.cluster_enabled
) clusterInit();
1016 srand(time(NULL
)^getpid());
1018 /* Try to raise the max number of open files accordingly to the
1019 * configured max number of clients. Also account for 32 additional
1020 * file descriptors as we need a few more for persistence, listening
1021 * sockets, log files and so forth. */
1023 rlim_t maxfiles
= server
.maxclients
+32;
1024 struct rlimit limit
;
1026 if (maxfiles
< 1024) maxfiles
= 1024;
1027 if (getrlimit(RLIMIT_NOFILE
,&limit
) == -1) {
1028 redisLog(REDIS_WARNING
,"Unable to obtain the current NOFILE limit (%s), assuming 1024 and setting the max clients configuration accordingly.",
1030 server
.maxclients
= 1024-32;
1032 rlim_t oldlimit
= limit
.rlim_cur
;
1034 /* Set the max number of files if the current limit is not enough
1036 if (oldlimit
< maxfiles
) {
1037 limit
.rlim_cur
= maxfiles
;
1038 limit
.rlim_max
= maxfiles
;
1039 if (setrlimit(RLIMIT_NOFILE
,&limit
) == -1) {
1040 server
.maxclients
= oldlimit
-32;
1041 redisLog(REDIS_WARNING
,"Unable to set the max number of files limit to %d (%s), setting the max clients configuration to %d.",
1042 (int) maxfiles
, strerror(errno
), (int) server
.maxclients
);
1044 redisLog(REDIS_NOTICE
,"Max number of open files set to %d",
1052 /* Populates the Redis Command Table starting from the hard coded list
1053 * we have on top of redis.c file. */
1054 void populateCommandTable(void) {
1056 int numcommands
= sizeof(redisCommandTable
)/sizeof(struct redisCommand
);
1058 for (j
= 0; j
< numcommands
; j
++) {
1059 struct redisCommand
*c
= redisCommandTable
+j
;
1060 char *f
= c
->sflags
;
1065 case 'w': c
->flags
|= REDIS_CMD_WRITE
; break;
1066 case 'r': c
->flags
|= REDIS_CMD_READONLY
; break;
1067 case 'm': c
->flags
|= REDIS_CMD_DENYOOM
; break;
1068 case 'a': c
->flags
|= REDIS_CMD_ADMIN
; break;
1069 case 'p': c
->flags
|= REDIS_CMD_PUBSUB
; break;
1070 case 'f': c
->flags
|= REDIS_CMD_FORCE_REPLICATION
; break;
1071 case 's': c
->flags
|= REDIS_CMD_NOSCRIPT
; break;
1072 case 'R': c
->flags
|= REDIS_CMD_RANDOM
; break;
1073 default: redisPanic("Unsupported command flag"); break;
1078 retval
= dictAdd(server
.commands
, sdsnew(c
->name
), c
);
1079 assert(retval
== DICT_OK
);
1083 void resetCommandTableStats(void) {
1084 int numcommands
= sizeof(redisCommandTable
)/sizeof(struct redisCommand
);
1087 for (j
= 0; j
< numcommands
; j
++) {
1088 struct redisCommand
*c
= redisCommandTable
+j
;
1090 c
->microseconds
= 0;
1095 /* ====================== Commands lookup and execution ===================== */
1097 struct redisCommand
*lookupCommand(sds name
) {
1098 return dictFetchValue(server
.commands
, name
);
1101 struct redisCommand
*lookupCommandByCString(char *s
) {
1102 struct redisCommand
*cmd
;
1103 sds name
= sdsnew(s
);
1105 cmd
= dictFetchValue(server
.commands
, name
);
1110 /* Call() is the core of Redis execution of a command */
1111 void call(redisClient
*c
) {
1112 long long dirty
, start
= ustime(), duration
;
1114 dirty
= server
.dirty
;
1116 dirty
= server
.dirty
-dirty
;
1117 duration
= ustime()-start
;
1118 c
->cmd
->microseconds
+= duration
;
1119 slowlogPushEntryIfNeeded(c
->argv
,c
->argc
,duration
);
1122 if (server
.appendonly
&& dirty
> 0)
1123 feedAppendOnlyFile(c
->cmd
,c
->db
->id
,c
->argv
,c
->argc
);
1124 if ((dirty
> 0 || c
->cmd
->flags
& REDIS_CMD_FORCE_REPLICATION
) &&
1125 listLength(server
.slaves
))
1126 replicationFeedSlaves(server
.slaves
,c
->db
->id
,c
->argv
,c
->argc
);
1127 if (listLength(server
.monitors
))
1128 replicationFeedMonitors(server
.monitors
,c
->db
->id
,c
->argv
,c
->argc
);
1129 server
.stat_numcommands
++;
1132 /* If this function gets called we already read a whole
1133 * command, argments are in the client argv/argc fields.
1134 * processCommand() execute the command or prepare the
1135 * server for a bulk read from the client.
1137 * If 1 is returned the client is still alive and valid and
1138 * and other operations can be performed by the caller. Otherwise
1139 * if 0 is returned the client was destroied (i.e. after QUIT). */
1140 int processCommand(redisClient
*c
) {
1141 /* The QUIT command is handled separately. Normal command procs will
1142 * go through checking for replication and QUIT will cause trouble
1143 * when FORCE_REPLICATION is enabled and would be implemented in
1144 * a regular command proc. */
1145 if (!strcasecmp(c
->argv
[0]->ptr
,"quit")) {
1146 addReply(c
,shared
.ok
);
1147 c
->flags
|= REDIS_CLOSE_AFTER_REPLY
;
1151 /* Now lookup the command and check ASAP about trivial error conditions
1152 * such as wrong arity, bad command name and so forth. */
1153 c
->cmd
= lookupCommand(c
->argv
[0]->ptr
);
1155 addReplyErrorFormat(c
,"unknown command '%s'",
1156 (char*)c
->argv
[0]->ptr
);
1158 } else if ((c
->cmd
->arity
> 0 && c
->cmd
->arity
!= c
->argc
) ||
1159 (c
->argc
< -c
->cmd
->arity
)) {
1160 addReplyErrorFormat(c
,"wrong number of arguments for '%s' command",
1165 /* Check if the user is authenticated */
1166 if (server
.requirepass
&& !c
->authenticated
&& c
->cmd
->proc
!= authCommand
)
1168 addReplyError(c
,"operation not permitted");
1172 /* If cluster is enabled, redirect here */
1173 if (server
.cluster_enabled
&&
1174 !(c
->cmd
->getkeys_proc
== NULL
&& c
->cmd
->firstkey
== 0)) {
1177 if (server
.cluster
.state
!= REDIS_CLUSTER_OK
) {
1178 addReplyError(c
,"The cluster is down. Check with CLUSTER INFO for more information");
1182 clusterNode
*n
= getNodeByQuery(c
,c
->cmd
,c
->argv
,c
->argc
,&hashslot
,&ask
);
1184 addReplyError(c
,"Multi keys request invalid in cluster");
1186 } else if (n
!= server
.cluster
.myself
) {
1187 addReplySds(c
,sdscatprintf(sdsempty(),
1188 "-%s %d %s:%d\r\n", ask
? "ASK" : "MOVED",
1189 hashslot
,n
->ip
,n
->port
));
1195 /* Handle the maxmemory directive.
1197 * First we try to free some memory if possible (if there are volatile
1198 * keys in the dataset). If there are not the only thing we can do
1199 * is returning an error. */
1200 if (server
.maxmemory
) freeMemoryIfNeeded();
1201 if (server
.maxmemory
&& (c
->cmd
->flags
& REDIS_CMD_DENYOOM
) &&
1202 zmalloc_used_memory() > server
.maxmemory
)
1204 addReplyError(c
,"command not allowed when used memory > 'maxmemory'");
1208 /* Only allow SUBSCRIBE and UNSUBSCRIBE in the context of Pub/Sub */
1209 if ((dictSize(c
->pubsub_channels
) > 0 || listLength(c
->pubsub_patterns
) > 0)
1211 c
->cmd
->proc
!= subscribeCommand
&&
1212 c
->cmd
->proc
!= unsubscribeCommand
&&
1213 c
->cmd
->proc
!= psubscribeCommand
&&
1214 c
->cmd
->proc
!= punsubscribeCommand
) {
1215 addReplyError(c
,"only (P)SUBSCRIBE / (P)UNSUBSCRIBE / QUIT allowed in this context");
1219 /* Only allow INFO and SLAVEOF when slave-serve-stale-data is no and
1220 * we are a slave with a broken link with master. */
1221 if (server
.masterhost
&& server
.replstate
!= REDIS_REPL_CONNECTED
&&
1222 server
.repl_serve_stale_data
== 0 &&
1223 c
->cmd
->proc
!= infoCommand
&& c
->cmd
->proc
!= slaveofCommand
)
1226 "link with MASTER is down and slave-serve-stale-data is set to no");
1230 /* Loading DB? Return an error if the command is not INFO */
1231 if (server
.loading
&& c
->cmd
->proc
!= infoCommand
) {
1232 addReply(c
, shared
.loadingerr
);
1236 /* Lua script too slow? Only allow SHUTDOWN NOSAVE and SCRIPT KILL. */
1237 if (server
.lua_timedout
&&
1238 !(c
->cmd
->proc
!= shutdownCommand
&&
1240 tolower(((char*)c
->argv
[1]->ptr
)[0]) == 'n') &&
1241 !(c
->cmd
->proc
== scriptCommand
&&
1243 tolower(((char*)c
->argv
[1]->ptr
)[0]) == 'k'))
1245 addReply(c
, shared
.slowscripterr
);
1249 /* Exec the command */
1250 if (c
->flags
& REDIS_MULTI
&&
1251 c
->cmd
->proc
!= execCommand
&& c
->cmd
->proc
!= discardCommand
&&
1252 c
->cmd
->proc
!= multiCommand
&& c
->cmd
->proc
!= watchCommand
)
1254 queueMultiCommand(c
);
1255 addReply(c
,shared
.queued
);
1262 /*================================== Shutdown =============================== */
1264 int prepareForShutdown(int flags
) {
1265 int save
= flags
& REDIS_SHUTDOWN_SAVE
;
1266 int nosave
= flags
& REDIS_SHUTDOWN_NOSAVE
;
1268 redisLog(REDIS_WARNING
,"User requested shutdown...");
1269 /* Kill the saving child if there is a background saving in progress.
1270 We want to avoid race conditions, for instance our saving child may
1271 overwrite the synchronous saving did by SHUTDOWN. */
1272 if (server
.bgsavechildpid
!= -1) {
1273 redisLog(REDIS_WARNING
,"There is a child saving an .rdb. Killing it!");
1274 kill(server
.bgsavechildpid
,SIGKILL
);
1275 rdbRemoveTempFile(server
.bgsavechildpid
);
1277 if (server
.appendonly
) {
1278 /* Kill the AOF saving child as the AOF we already have may be longer
1279 * but contains the full dataset anyway. */
1280 if (server
.bgrewritechildpid
!= -1) {
1281 redisLog(REDIS_WARNING
,
1282 "There is a child rewriting the AOF. Killing it!");
1283 kill(server
.bgrewritechildpid
,SIGKILL
);
1285 /* Append only file: fsync() the AOF and exit */
1286 redisLog(REDIS_NOTICE
,"Calling fsync() on the AOF file.");
1287 aof_fsync(server
.appendfd
);
1289 if ((server
.saveparamslen
> 0 && !nosave
) || save
) {
1290 redisLog(REDIS_NOTICE
,"Saving the final RDB snapshot before exiting.");
1291 /* Snapshotting. Perform a SYNC SAVE and exit */
1292 if (rdbSave(server
.dbfilename
) != REDIS_OK
) {
1293 /* Ooops.. error saving! The best we can do is to continue
1294 * operating. Note that if there was a background saving process,
1295 * in the next cron() Redis will be notified that the background
1296 * saving aborted, handling special stuff like slaves pending for
1297 * synchronization... */
1298 redisLog(REDIS_WARNING
,"Error trying to save the DB, can't exit.");
1302 if (server
.daemonize
) {
1303 redisLog(REDIS_NOTICE
,"Removing the pid file.");
1304 unlink(server
.pidfile
);
1306 /* Close the listening sockets. Apparently this allows faster restarts. */
1307 if (server
.ipfd
!= -1) close(server
.ipfd
);
1308 if (server
.sofd
!= -1) close(server
.sofd
);
1309 if (server
.unixsocket
) {
1310 redisLog(REDIS_NOTICE
,"Removing the unix socket file.");
1311 unlink(server
.unixsocket
); /* don't care if this fails */
1314 redisLog(REDIS_WARNING
,"Redis is now ready to exit, bye bye...");
1318 /*================================== Commands =============================== */
1320 void authCommand(redisClient
*c
) {
1321 if (!server
.requirepass
) {
1322 addReplyError(c
,"Client sent AUTH, but no password is set");
1323 } else if (!strcmp(c
->argv
[1]->ptr
, server
.requirepass
)) {
1324 c
->authenticated
= 1;
1325 addReply(c
,shared
.ok
);
1327 c
->authenticated
= 0;
1328 addReplyError(c
,"invalid password");
1332 void pingCommand(redisClient
*c
) {
1333 addReply(c
,shared
.pong
);
1336 void echoCommand(redisClient
*c
) {
1337 addReplyBulk(c
,c
->argv
[1]);
1340 /* Convert an amount of bytes into a human readable string in the form
1341 * of 100B, 2G, 100M, 4K, and so forth. */
1342 void bytesToHuman(char *s
, unsigned long long n
) {
1347 sprintf(s
,"%lluB",n
);
1349 } else if (n
< (1024*1024)) {
1350 d
= (double)n
/(1024);
1351 sprintf(s
,"%.2fK",d
);
1352 } else if (n
< (1024LL*1024*1024)) {
1353 d
= (double)n
/(1024*1024);
1354 sprintf(s
,"%.2fM",d
);
1355 } else if (n
< (1024LL*1024*1024*1024)) {
1356 d
= (double)n
/(1024LL*1024*1024);
1357 sprintf(s
,"%.2fG",d
);
1361 /* Create the string returned by the INFO command. This is decoupled
1362 * by the INFO command itself as we need to report the same information
1363 * on memory corruption problems. */
1364 sds
genRedisInfoString(char *section
) {
1365 sds info
= sdsempty();
1366 time_t uptime
= time(NULL
)-server
.stat_starttime
;
1368 struct rusage self_ru
, c_ru
;
1369 unsigned long lol
, bib
;
1370 int allsections
= 0, defsections
= 0;
1374 allsections
= strcasecmp(section
,"all") == 0;
1375 defsections
= strcasecmp(section
,"default") == 0;
1378 getrusage(RUSAGE_SELF
, &self_ru
);
1379 getrusage(RUSAGE_CHILDREN
, &c_ru
);
1380 getClientsMaxBuffers(&lol
,&bib
);
1383 if (allsections
|| defsections
|| !strcasecmp(section
,"server")) {
1384 if (sections
++) info
= sdscat(info
,"\r\n");
1385 info
= sdscatprintf(info
,
1387 "redis_version:%s\r\n"
1388 "redis_git_sha1:%s\r\n"
1389 "redis_git_dirty:%d\r\n"
1391 "multiplexing_api:%s\r\n"
1392 "process_id:%ld\r\n"
1394 "uptime_in_seconds:%ld\r\n"
1395 "uptime_in_days:%ld\r\n"
1396 "lru_clock:%ld\r\n",
1399 strtol(redisGitDirty(),NULL
,10) > 0,
1400 (sizeof(long) == 8) ? "64" : "32",
1406 (unsigned long) server
.lruclock
);
1410 if (allsections
|| defsections
|| !strcasecmp(section
,"clients")) {
1411 if (sections
++) info
= sdscat(info
,"\r\n");
1412 info
= sdscatprintf(info
,
1414 "connected_clients:%d\r\n"
1415 "client_longest_output_list:%lu\r\n"
1416 "client_biggest_input_buf:%lu\r\n"
1417 "blocked_clients:%d\r\n",
1418 listLength(server
.clients
)-listLength(server
.slaves
),
1420 server
.bpop_blocked_clients
);
1424 if (allsections
|| defsections
|| !strcasecmp(section
,"memory")) {
1428 bytesToHuman(hmem
,zmalloc_used_memory());
1429 bytesToHuman(peak_hmem
,server
.stat_peak_memory
);
1430 if (sections
++) info
= sdscat(info
,"\r\n");
1431 info
= sdscatprintf(info
,
1433 "used_memory:%zu\r\n"
1434 "used_memory_human:%s\r\n"
1435 "used_memory_rss:%zu\r\n"
1436 "used_memory_peak:%zu\r\n"
1437 "used_memory_peak_human:%s\r\n"
1438 "used_memory_lua:%lld\r\n"
1439 "mem_fragmentation_ratio:%.2f\r\n"
1440 "mem_allocator:%s\r\n",
1441 zmalloc_used_memory(),
1444 server
.stat_peak_memory
,
1446 ((long long)lua_gc(server
.lua
,LUA_GCCOUNT
,0))*1024LL,
1447 zmalloc_get_fragmentation_ratio(),
1453 if (allsections
|| defsections
|| !strcasecmp(section
,"persistence")) {
1454 if (sections
++) info
= sdscat(info
,"\r\n");
1455 info
= sdscatprintf(info
,
1458 "aof_enabled:%d\r\n"
1459 "changes_since_last_save:%lld\r\n"
1460 "bgsave_in_progress:%d\r\n"
1461 "last_save_time:%ld\r\n"
1462 "bgrewriteaof_in_progress:%d\r\n",
1466 server
.bgsavechildpid
!= -1,
1468 server
.bgrewritechildpid
!= -1);
1470 if (server
.appendonly
) {
1471 info
= sdscatprintf(info
,
1472 "aof_current_size:%lld\r\n"
1473 "aof_base_size:%lld\r\n"
1474 "aof_pending_rewrite:%d\r\n",
1475 (long long) server
.appendonly_current_size
,
1476 (long long) server
.auto_aofrewrite_base_size
,
1477 server
.aofrewrite_scheduled
);
1480 if (server
.loading
) {
1482 time_t eta
, elapsed
;
1483 off_t remaining_bytes
= server
.loading_total_bytes
-
1484 server
.loading_loaded_bytes
;
1486 perc
= ((double)server
.loading_loaded_bytes
/
1487 server
.loading_total_bytes
) * 100;
1489 elapsed
= time(NULL
)-server
.loading_start_time
;
1491 eta
= 1; /* A fake 1 second figure if we don't have
1494 eta
= (elapsed
*remaining_bytes
)/server
.loading_loaded_bytes
;
1497 info
= sdscatprintf(info
,
1498 "loading_start_time:%ld\r\n"
1499 "loading_total_bytes:%llu\r\n"
1500 "loading_loaded_bytes:%llu\r\n"
1501 "loading_loaded_perc:%.2f\r\n"
1502 "loading_eta_seconds:%ld\r\n"
1503 ,(unsigned long) server
.loading_start_time
,
1504 (unsigned long long) server
.loading_total_bytes
,
1505 (unsigned long long) server
.loading_loaded_bytes
,
1513 if (allsections
|| defsections
|| !strcasecmp(section
,"stats")) {
1514 if (sections
++) info
= sdscat(info
,"\r\n");
1515 info
= sdscatprintf(info
,
1517 "total_connections_received:%lld\r\n"
1518 "total_commands_processed:%lld\r\n"
1519 "expired_keys:%lld\r\n"
1520 "evicted_keys:%lld\r\n"
1521 "keyspace_hits:%lld\r\n"
1522 "keyspace_misses:%lld\r\n"
1523 "pubsub_channels:%ld\r\n"
1524 "pubsub_patterns:%u\r\n"
1525 "latest_fork_usec:%lld\r\n",
1526 server
.stat_numconnections
,
1527 server
.stat_numcommands
,
1528 server
.stat_expiredkeys
,
1529 server
.stat_evictedkeys
,
1530 server
.stat_keyspace_hits
,
1531 server
.stat_keyspace_misses
,
1532 dictSize(server
.pubsub_channels
),
1533 listLength(server
.pubsub_patterns
),
1534 server
.stat_fork_time
);
1538 if (allsections
|| defsections
|| !strcasecmp(section
,"replication")) {
1539 if (sections
++) info
= sdscat(info
,"\r\n");
1540 info
= sdscatprintf(info
,
1543 server
.masterhost
== NULL
? "master" : "slave");
1544 if (server
.masterhost
) {
1545 info
= sdscatprintf(info
,
1546 "master_host:%s\r\n"
1547 "master_port:%d\r\n"
1548 "master_link_status:%s\r\n"
1549 "master_last_io_seconds_ago:%d\r\n"
1550 "master_sync_in_progress:%d\r\n"
1553 (server
.replstate
== REDIS_REPL_CONNECTED
) ?
1556 ((int)(time(NULL
)-server
.master
->lastinteraction
)) : -1,
1557 server
.replstate
== REDIS_REPL_TRANSFER
1560 if (server
.replstate
== REDIS_REPL_TRANSFER
) {
1561 info
= sdscatprintf(info
,
1562 "master_sync_left_bytes:%ld\r\n"
1563 "master_sync_last_io_seconds_ago:%d\r\n"
1564 ,(long)server
.repl_transfer_left
,
1565 (int)(time(NULL
)-server
.repl_transfer_lastio
)
1569 if (server
.replstate
!= REDIS_REPL_CONNECTED
) {
1570 info
= sdscatprintf(info
,
1571 "master_link_down_since_seconds:%ld\r\n",
1572 (long)time(NULL
)-server
.repl_down_since
);
1575 info
= sdscatprintf(info
,
1576 "connected_slaves:%d\r\n",
1577 listLength(server
.slaves
));
1581 if (allsections
|| defsections
|| !strcasecmp(section
,"cpu")) {
1582 if (sections
++) info
= sdscat(info
,"\r\n");
1583 info
= sdscatprintf(info
,
1585 "used_cpu_sys:%.2f\r\n"
1586 "used_cpu_user:%.2f\r\n"
1587 "used_cpu_sys_children:%.2f\r\n"
1588 "used_cpu_user_children:%.2f\r\n",
1589 (float)self_ru
.ru_stime
.tv_sec
+(float)self_ru
.ru_stime
.tv_usec
/1000000,
1590 (float)self_ru
.ru_utime
.tv_sec
+(float)self_ru
.ru_utime
.tv_usec
/1000000,
1591 (float)c_ru
.ru_stime
.tv_sec
+(float)c_ru
.ru_stime
.tv_usec
/1000000,
1592 (float)c_ru
.ru_utime
.tv_sec
+(float)c_ru
.ru_utime
.tv_usec
/1000000);
1596 if (allsections
|| !strcasecmp(section
,"commandstats")) {
1597 if (sections
++) info
= sdscat(info
,"\r\n");
1598 info
= sdscatprintf(info
, "# Commandstats\r\n");
1599 numcommands
= sizeof(redisCommandTable
)/sizeof(struct redisCommand
);
1600 for (j
= 0; j
< numcommands
; j
++) {
1601 struct redisCommand
*c
= redisCommandTable
+j
;
1603 if (!c
->calls
) continue;
1604 info
= sdscatprintf(info
,
1605 "cmdstat_%s:calls=%lld,usec=%lld,usec_per_call=%.2f\r\n",
1606 c
->name
, c
->calls
, c
->microseconds
,
1607 (c
->calls
== 0) ? 0 : ((float)c
->microseconds
/c
->calls
));
1612 if (allsections
|| defsections
|| !strcasecmp(section
,"cluster")) {
1613 if (sections
++) info
= sdscat(info
,"\r\n");
1614 info
= sdscatprintf(info
,
1616 "cluster_enabled:%d\r\n",
1617 server
.cluster_enabled
);
1621 if (allsections
|| defsections
|| !strcasecmp(section
,"keyspace")) {
1622 if (sections
++) info
= sdscat(info
,"\r\n");
1623 info
= sdscatprintf(info
, "# Keyspace\r\n");
1624 for (j
= 0; j
< server
.dbnum
; j
++) {
1625 long long keys
, vkeys
;
1627 keys
= dictSize(server
.db
[j
].dict
);
1628 vkeys
= dictSize(server
.db
[j
].expires
);
1629 if (keys
|| vkeys
) {
1630 info
= sdscatprintf(info
, "db%d:keys=%lld,expires=%lld\r\n",
1638 void infoCommand(redisClient
*c
) {
1639 char *section
= c
->argc
== 2 ? c
->argv
[1]->ptr
: "default";
1642 addReply(c
,shared
.syntaxerr
);
1645 sds info
= genRedisInfoString(section
);
1646 addReplySds(c
,sdscatprintf(sdsempty(),"$%lu\r\n",
1647 (unsigned long)sdslen(info
)));
1648 addReplySds(c
,info
);
1649 addReply(c
,shared
.crlf
);
1652 void monitorCommand(redisClient
*c
) {
1653 /* ignore MONITOR if aleady slave or in monitor mode */
1654 if (c
->flags
& REDIS_SLAVE
) return;
1656 c
->flags
|= (REDIS_SLAVE
|REDIS_MONITOR
);
1658 listAddNodeTail(server
.monitors
,c
);
1659 addReply(c
,shared
.ok
);
1662 /* ============================ Maxmemory directive ======================== */
1664 /* This function gets called when 'maxmemory' is set on the config file to limit
1665 * the max memory used by the server, and we are out of memory.
1666 * This function will try to, in order:
1668 * - Free objects from the free list
1669 * - Try to remove keys with an EXPIRE set
1671 * It is not possible to free enough memory to reach used-memory < maxmemory
1672 * the server will start refusing commands that will enlarge even more the
1675 void freeMemoryIfNeeded(void) {
1676 /* Remove keys accordingly to the active policy as long as we are
1677 * over the memory limit. */
1678 if (server
.maxmemory_policy
== REDIS_MAXMEMORY_NO_EVICTION
) return;
1680 while (server
.maxmemory
&& zmalloc_used_memory() > server
.maxmemory
) {
1681 int j
, k
, freed
= 0;
1683 for (j
= 0; j
< server
.dbnum
; j
++) {
1684 long bestval
= 0; /* just to prevent warning */
1686 struct dictEntry
*de
;
1687 redisDb
*db
= server
.db
+j
;
1690 if (server
.maxmemory_policy
== REDIS_MAXMEMORY_ALLKEYS_LRU
||
1691 server
.maxmemory_policy
== REDIS_MAXMEMORY_ALLKEYS_RANDOM
)
1693 dict
= server
.db
[j
].dict
;
1695 dict
= server
.db
[j
].expires
;
1697 if (dictSize(dict
) == 0) continue;
1699 /* volatile-random and allkeys-random policy */
1700 if (server
.maxmemory_policy
== REDIS_MAXMEMORY_ALLKEYS_RANDOM
||
1701 server
.maxmemory_policy
== REDIS_MAXMEMORY_VOLATILE_RANDOM
)
1703 de
= dictGetRandomKey(dict
);
1704 bestkey
= dictGetKey(de
);
1707 /* volatile-lru and allkeys-lru policy */
1708 else if (server
.maxmemory_policy
== REDIS_MAXMEMORY_ALLKEYS_LRU
||
1709 server
.maxmemory_policy
== REDIS_MAXMEMORY_VOLATILE_LRU
)
1711 for (k
= 0; k
< server
.maxmemory_samples
; k
++) {
1716 de
= dictGetRandomKey(dict
);
1717 thiskey
= dictGetKey(de
);
1718 /* When policy is volatile-lru we need an additonal lookup
1719 * to locate the real key, as dict is set to db->expires. */
1720 if (server
.maxmemory_policy
== REDIS_MAXMEMORY_VOLATILE_LRU
)
1721 de
= dictFind(db
->dict
, thiskey
);
1723 thisval
= estimateObjectIdleTime(o
);
1725 /* Higher idle time is better candidate for deletion */
1726 if (bestkey
== NULL
|| thisval
> bestval
) {
1734 else if (server
.maxmemory_policy
== REDIS_MAXMEMORY_VOLATILE_TTL
) {
1735 for (k
= 0; k
< server
.maxmemory_samples
; k
++) {
1739 de
= dictGetRandomKey(dict
);
1740 thiskey
= dictGetKey(de
);
1741 thisval
= (long) dictGetVal(de
);
1743 /* Expire sooner (minor expire unix timestamp) is better
1744 * candidate for deletion */
1745 if (bestkey
== NULL
|| thisval
< bestval
) {
1752 /* Finally remove the selected key. */
1754 robj
*keyobj
= createStringObject(bestkey
,sdslen(bestkey
));
1755 propagateExpire(db
,keyobj
);
1756 dbDelete(db
,keyobj
);
1757 server
.stat_evictedkeys
++;
1758 decrRefCount(keyobj
);
1762 if (!freed
) return; /* nothing to free... */
1766 /* =================================== Main! ================================ */
1769 int linuxOvercommitMemoryValue(void) {
1770 FILE *fp
= fopen("/proc/sys/vm/overcommit_memory","r");
1774 if (fgets(buf
,64,fp
) == NULL
) {
1783 void linuxOvercommitMemoryWarning(void) {
1784 if (linuxOvercommitMemoryValue() == 0) {
1785 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.");
1788 #endif /* __linux__ */
1790 void createPidFile(void) {
1791 /* Try to write the pid file in a best-effort way. */
1792 FILE *fp
= fopen(server
.pidfile
,"w");
1794 fprintf(fp
,"%d\n",(int)getpid());
1799 void daemonize(void) {
1802 if (fork() != 0) exit(0); /* parent exits */
1803 setsid(); /* create a new session */
1805 /* Every output goes to /dev/null. If Redis is daemonized but
1806 * the 'logfile' is set to 'stdout' in the configuration file
1807 * it will not log at all. */
1808 if ((fd
= open("/dev/null", O_RDWR
, 0)) != -1) {
1809 dup2(fd
, STDIN_FILENO
);
1810 dup2(fd
, STDOUT_FILENO
);
1811 dup2(fd
, STDERR_FILENO
);
1812 if (fd
> STDERR_FILENO
) close(fd
);
1817 printf("Redis server version %s (%s:%d)\n", REDIS_VERSION
,
1818 redisGitSHA1(), atoi(redisGitDirty()) > 0);
1823 fprintf(stderr
,"Usage: ./redis-server [/path/to/redis.conf]\n");
1824 fprintf(stderr
," ./redis-server - (read config from stdin)\n");
1828 void redisAsciiArt(void) {
1829 #include "asciilogo.h"
1830 char *buf
= zmalloc(1024*16);
1832 snprintf(buf
,1024*16,ascii_logo
,
1835 strtol(redisGitDirty(),NULL
,10) > 0,
1836 (sizeof(long) == 8) ? "64" : "32",
1837 server
.cluster_enabled
? "cluster" : "stand alone",
1841 redisLogRaw(REDIS_NOTICE
|REDIS_LOG_RAW
,buf
);
1845 int main(int argc
, char **argv
) {
1848 zmalloc_enable_thread_safeness();
1851 if (strcmp(argv
[1], "-v") == 0 ||
1852 strcmp(argv
[1], "--version") == 0) version();
1853 if (strcmp(argv
[1], "--help") == 0) usage();
1854 resetServerSaveParams();
1855 loadServerConfig(argv
[1]);
1856 } else if ((argc
> 2)) {
1859 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'");
1861 if (server
.daemonize
) daemonize();
1863 if (server
.daemonize
) createPidFile();
1865 redisLog(REDIS_NOTICE
,"Server started, Redis version " REDIS_VERSION
);
1867 linuxOvercommitMemoryWarning();
1870 if (server
.appendonly
) {
1871 if (loadAppendOnlyFile(server
.appendfilename
) == REDIS_OK
)
1872 redisLog(REDIS_NOTICE
,"DB loaded from append only file: %.3f seconds",(float)(ustime()-start
)/1000000);
1874 if (rdbLoad(server
.dbfilename
) == REDIS_OK
) {
1875 redisLog(REDIS_NOTICE
,"DB loaded from disk: %.3f seconds",
1876 (float)(ustime()-start
)/1000000);
1877 } else if (errno
!= ENOENT
) {
1878 redisLog(REDIS_WARNING
,"Fatal error loading the DB. Exiting.");
1882 if (server
.ipfd
> 0)
1883 redisLog(REDIS_NOTICE
,"The server is now ready to accept connections on port %d", server
.port
);
1884 if (server
.sofd
> 0)
1885 redisLog(REDIS_NOTICE
,"The server is now ready to accept connections at %s", server
.unixsocket
);
1886 aeSetBeforeSleepProc(server
.el
,beforeSleep
);
1888 aeDeleteEventLoop(server
.el
);
1892 #ifdef HAVE_BACKTRACE
1893 static void *getMcontextEip(ucontext_t
*uc
) {
1894 #if defined(__FreeBSD__)
1895 return (void*) uc
->uc_mcontext
.mc_eip
;
1896 #elif defined(__dietlibc__)
1897 return (void*) uc
->uc_mcontext
.eip
;
1898 #elif defined(__APPLE__) && !defined(MAC_OS_X_VERSION_10_6)
1900 return (void*) uc
->uc_mcontext
->__ss
.__rip
;
1902 return (void*) uc
->uc_mcontext
->__ss
.__eip
;
1904 return (void*) uc
->uc_mcontext
->__ss
.__srr0
;
1906 #elif defined(__APPLE__) && defined(MAC_OS_X_VERSION_10_6)
1907 #if defined(_STRUCT_X86_THREAD_STATE64) && !defined(__i386__)
1908 return (void*) uc
->uc_mcontext
->__ss
.__rip
;
1910 return (void*) uc
->uc_mcontext
->__ss
.__eip
;
1912 #elif defined(__i386__)
1913 return (void*) uc
->uc_mcontext
.gregs
[14]; /* Linux 32 */
1914 #elif defined(__X86_64__) || defined(__x86_64__)
1915 return (void*) uc
->uc_mcontext
.gregs
[16]; /* Linux 64 */
1916 #elif defined(__ia64__) /* Linux IA64 */
1917 return (void*) uc
->uc_mcontext
.sc_ip
;
1923 static void sigsegvHandler(int sig
, siginfo_t
*info
, void *secret
) {
1925 char **messages
= NULL
;
1926 int i
, trace_size
= 0;
1927 ucontext_t
*uc
= (ucontext_t
*) secret
;
1929 struct sigaction act
;
1930 REDIS_NOTUSED(info
);
1932 redisLog(REDIS_WARNING
,
1933 "======= Ooops! Redis %s got signal: -%d- =======", REDIS_VERSION
, sig
);
1934 infostring
= genRedisInfoString("all");
1935 redisLogRaw(REDIS_WARNING
, infostring
);
1936 /* It's not safe to sdsfree() the returned string under memory
1937 * corruption conditions. Let it leak as we are going to abort */
1939 trace_size
= backtrace(trace
, 100);
1940 /* overwrite sigaction with caller's address */
1941 if (getMcontextEip(uc
) != NULL
) {
1942 trace
[1] = getMcontextEip(uc
);
1944 messages
= backtrace_symbols(trace
, trace_size
);
1946 for (i
=1; i
<trace_size
; ++i
)
1947 redisLog(REDIS_WARNING
,"%s", messages
[i
]);
1949 /* free(messages); Don't call free() with possibly corrupted memory. */
1950 if (server
.daemonize
) unlink(server
.pidfile
);
1952 /* Make sure we exit with the right signal at the end. So for instance
1953 * the core will be dumped if enabled. */
1954 sigemptyset (&act
.sa_mask
);
1955 /* When the SA_SIGINFO flag is set in sa_flags then sa_sigaction
1956 * is used. Otherwise, sa_handler is used */
1957 act
.sa_flags
= SA_NODEFER
| SA_ONSTACK
| SA_RESETHAND
;
1958 act
.sa_handler
= SIG_DFL
;
1959 sigaction (sig
, &act
, NULL
);
1962 #endif /* HAVE_BACKTRACE */
1964 static void sigtermHandler(int sig
) {
1967 redisLog(REDIS_WARNING
,"Received SIGTERM, scheduling shutdown...");
1968 server
.shutdown_asap
= 1;
1971 void setupSignalHandlers(void) {
1972 struct sigaction act
;
1974 /* When the SA_SIGINFO flag is set in sa_flags then sa_sigaction is used.
1975 * Otherwise, sa_handler is used. */
1976 sigemptyset(&act
.sa_mask
);
1977 act
.sa_flags
= SA_NODEFER
| SA_ONSTACK
| SA_RESETHAND
;
1978 act
.sa_handler
= sigtermHandler
;
1979 sigaction(SIGTERM
, &act
, NULL
);
1981 #ifdef HAVE_BACKTRACE
1982 sigemptyset(&act
.sa_mask
);
1983 act
.sa_flags
= SA_NODEFER
| SA_ONSTACK
| SA_RESETHAND
| SA_SIGINFO
;
1984 act
.sa_sigaction
= sigsegvHandler
;
1985 sigaction(SIGSEGV
, &act
, NULL
);
1986 sigaction(SIGBUS
, &act
, NULL
);
1987 sigaction(SIGFPE
, &act
, NULL
);
1988 sigaction(SIGILL
, &act
, NULL
);