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
;
75 * Every entry is composed of the following fields:
77 * name: a string representing the command name.
78 * function: pointer to the C function implementing the command.
79 * arity: number of arguments, it is possible to use -N to say >= N
80 * sflags: command flags as string. See below for a table of flags.
81 * flags: flags as bitmask. Computed by Redis using the 'sflags' field.
82 * get_keys_proc: an optional function to get key arguments from a command.
83 * This is only used when the following three fields are not
84 * enough to specify what arguments are keys.
85 * first_key_index: first argument that is a key
86 * last_key_index: last argument that is a key
87 * key_step: step to get all the keys from first to last argument. For instance
88 * in MSET the step is two since arguments are key,val,key,val,...
89 * microseconds: microseconds of total execution time for this command.
90 * calls: total number of calls of this command.
92 * The flags, microseconds and calls fields are computed by Redis and should
93 * always be set to zero.
95 * Command flags are expressed using strings where every character represents
96 * a flag. Later the populateCommandTable() function will take care of
97 * populating the real 'flags' field using this characters.
99 * This is the meaning of the flags:
101 * w: write command (may modify the key space).
102 * r: read command (will never modify the key space).
103 * m: may increase memory usage once called. Don't allow if out of memory.
104 * a: admin command, like SAVE or SHUTDOWN.
105 * p: Pub/Sub related command.
106 * f: force replication of this command, regarless of server.dirty.
107 * s: command not allowed in scripts.
108 * R: random command. Command is not deterministic, that is, the same command
109 * with the same arguments, with the same key space, may have different
110 * results. For instance SPOP and RANDOMKEY are two random commands. */
111 struct redisCommand redisCommandTable
[] = {
112 {"get",getCommand
,2,"r",0,NULL
,1,1,1,0,0},
113 {"set",setCommand
,3,"wm",0,noPreloadGetKeys
,1,1,1,0,0},
114 {"setnx",setnxCommand
,3,"wm",0,noPreloadGetKeys
,1,1,1,0,0},
115 {"setex",setexCommand
,4,"wm",0,noPreloadGetKeys
,1,1,1,0,0},
116 {"psetex",psetexCommand
,4,"wm",0,noPreloadGetKeys
,1,1,1,0,0},
117 {"append",appendCommand
,3,"wm",0,NULL
,1,1,1,0,0},
118 {"strlen",strlenCommand
,2,"r",0,NULL
,1,1,1,0,0},
119 {"del",delCommand
,-2,"w",0,noPreloadGetKeys
,1,-1,1,0,0},
120 {"exists",existsCommand
,2,"r",0,NULL
,1,1,1,0,0},
121 {"setbit",setbitCommand
,4,"wm",0,NULL
,1,1,1,0,0},
122 {"getbit",getbitCommand
,3,"r",0,NULL
,1,1,1,0,0},
123 {"setrange",setrangeCommand
,4,"wm",0,NULL
,1,1,1,0,0},
124 {"getrange",getrangeCommand
,4,"r",0,NULL
,1,1,1,0,0},
125 {"substr",getrangeCommand
,4,"r",0,NULL
,1,1,1,0,0},
126 {"incr",incrCommand
,2,"wm",0,NULL
,1,1,1,0,0},
127 {"decr",decrCommand
,2,"wm",0,NULL
,1,1,1,0,0},
128 {"mget",mgetCommand
,-2,"r",0,NULL
,1,-1,1,0,0},
129 {"rpush",rpushCommand
,-3,"wm",0,NULL
,1,1,1,0,0},
130 {"lpush",lpushCommand
,-3,"wm",0,NULL
,1,1,1,0,0},
131 {"rpushx",rpushxCommand
,3,"wm",0,NULL
,1,1,1,0,0},
132 {"lpushx",lpushxCommand
,3,"wm",0,NULL
,1,1,1,0,0},
133 {"linsert",linsertCommand
,5,"wm",0,NULL
,1,1,1,0,0},
134 {"rpop",rpopCommand
,2,"w",0,NULL
,1,1,1,0,0},
135 {"lpop",lpopCommand
,2,"w",0,NULL
,1,1,1,0,0},
136 {"brpop",brpopCommand
,-3,"ws",0,NULL
,1,1,1,0,0},
137 {"brpoplpush",brpoplpushCommand
,4,"wms",0,NULL
,1,2,1,0,0},
138 {"blpop",blpopCommand
,-3,"ws",0,NULL
,1,-2,1,0,0},
139 {"llen",llenCommand
,2,"r",0,NULL
,1,1,1,0,0},
140 {"lindex",lindexCommand
,3,"r",0,NULL
,1,1,1,0,0},
141 {"lset",lsetCommand
,4,"wm",0,NULL
,1,1,1,0,0},
142 {"lrange",lrangeCommand
,4,"r",0,NULL
,1,1,1,0,0},
143 {"ltrim",ltrimCommand
,4,"w",0,NULL
,1,1,1,0,0},
144 {"lrem",lremCommand
,4,"w",0,NULL
,1,1,1,0,0},
145 {"rpoplpush",rpoplpushCommand
,3,"wm",0,NULL
,1,2,1,0,0},
146 {"sadd",saddCommand
,-3,"wm",0,NULL
,1,1,1,0,0},
147 {"srem",sremCommand
,-3,"w",0,NULL
,1,1,1,0,0},
148 {"smove",smoveCommand
,4,"w",0,NULL
,1,2,1,0,0},
149 {"sismember",sismemberCommand
,3,"r",0,NULL
,1,1,1,0,0},
150 {"scard",scardCommand
,2,"r",0,NULL
,1,1,1,0,0},
151 {"spop",spopCommand
,2,"wRs",0,NULL
,1,1,1,0,0},
152 {"srandmember",srandmemberCommand
,2,"rR",0,NULL
,1,1,1,0,0},
153 {"sinter",sinterCommand
,-2,"r",0,NULL
,1,-1,1,0,0},
154 {"sinterstore",sinterstoreCommand
,-3,"wm",0,NULL
,1,-1,1,0,0},
155 {"sunion",sunionCommand
,-2,"r",0,NULL
,1,-1,1,0,0},
156 {"sunionstore",sunionstoreCommand
,-3,"wm",0,NULL
,1,-1,1,0,0},
157 {"sdiff",sdiffCommand
,-2,"r",0,NULL
,1,-1,1,0,0},
158 {"sdiffstore",sdiffstoreCommand
,-3,"wm",0,NULL
,1,-1,1,0,0},
159 {"smembers",sinterCommand
,2,"r",0,NULL
,1,1,1,0,0},
160 {"zadd",zaddCommand
,-4,"wm",0,NULL
,1,1,1,0,0},
161 {"zincrby",zincrbyCommand
,4,"wm",0,NULL
,1,1,1,0,0},
162 {"zrem",zremCommand
,-3,"w",0,NULL
,1,1,1,0,0},
163 {"zremrangebyscore",zremrangebyscoreCommand
,4,"w",0,NULL
,1,1,1,0,0},
164 {"zremrangebyrank",zremrangebyrankCommand
,4,"w",0,NULL
,1,1,1,0,0},
165 {"zunionstore",zunionstoreCommand
,-4,"wm",0,zunionInterGetKeys
,0,0,0,0,0},
166 {"zinterstore",zinterstoreCommand
,-4,"wm",0,zunionInterGetKeys
,0,0,0,0,0},
167 {"zrange",zrangeCommand
,-4,"r",0,NULL
,1,1,1,0,0},
168 {"zrangebyscore",zrangebyscoreCommand
,-4,"r",0,NULL
,1,1,1,0,0},
169 {"zrevrangebyscore",zrevrangebyscoreCommand
,-4,"r",0,NULL
,1,1,1,0,0},
170 {"zcount",zcountCommand
,4,"r",0,NULL
,1,1,1,0,0},
171 {"zrevrange",zrevrangeCommand
,-4,"r",0,NULL
,1,1,1,0,0},
172 {"zcard",zcardCommand
,2,"r",0,NULL
,1,1,1,0,0},
173 {"zscore",zscoreCommand
,3,"r",0,NULL
,1,1,1,0,0},
174 {"zrank",zrankCommand
,3,"r",0,NULL
,1,1,1,0,0},
175 {"zrevrank",zrevrankCommand
,3,"r",0,NULL
,1,1,1,0,0},
176 {"hset",hsetCommand
,4,"wm",0,NULL
,1,1,1,0,0},
177 {"hsetnx",hsetnxCommand
,4,"wm",0,NULL
,1,1,1,0,0},
178 {"hget",hgetCommand
,3,"r",0,NULL
,1,1,1,0,0},
179 {"hmset",hmsetCommand
,-4,"wm",0,NULL
,1,1,1,0,0},
180 {"hmget",hmgetCommand
,-3,"r",0,NULL
,1,1,1,0,0},
181 {"hincrby",hincrbyCommand
,4,"wm",0,NULL
,1,1,1,0,0},
182 {"hincrbyfloat",hincrbyfloatCommand
,4,"wm",0,NULL
,1,1,1,0,0},
183 {"hdel",hdelCommand
,-3,"w",0,NULL
,1,1,1,0,0},
184 {"hlen",hlenCommand
,2,"r",0,NULL
,1,1,1,0,0},
185 {"hkeys",hkeysCommand
,2,"r",0,NULL
,1,1,1,0,0},
186 {"hvals",hvalsCommand
,2,"r",0,NULL
,1,1,1,0,0},
187 {"hgetall",hgetallCommand
,2,"r",0,NULL
,1,1,1,0,0},
188 {"hexists",hexistsCommand
,3,"r",0,NULL
,1,1,1,0,0},
189 {"incrby",incrbyCommand
,3,"wm",0,NULL
,1,1,1,0,0},
190 {"decrby",decrbyCommand
,3,"wm",0,NULL
,1,1,1,0,0},
191 {"incrbyfloat",incrbyfloatCommand
,3,"wm",0,NULL
,1,1,1,0,0},
192 {"getset",getsetCommand
,3,"wm",0,NULL
,1,1,1,0,0},
193 {"mset",msetCommand
,-3,"wm",0,NULL
,1,-1,2,0,0},
194 {"msetnx",msetnxCommand
,-3,"wm",0,NULL
,1,-1,2,0,0},
195 {"randomkey",randomkeyCommand
,1,"rR",0,NULL
,0,0,0,0,0},
196 {"select",selectCommand
,2,"r",0,NULL
,0,0,0,0,0},
197 {"move",moveCommand
,3,"w",0,NULL
,1,1,1,0,0},
198 {"rename",renameCommand
,3,"w",0,renameGetKeys
,1,2,1,0,0},
199 {"renamenx",renamenxCommand
,3,"w",0,renameGetKeys
,1,2,1,0,0},
200 {"expire",expireCommand
,3,"w",0,NULL
,1,1,1,0,0},
201 {"expireat",expireatCommand
,3,"w",0,NULL
,1,1,1,0,0},
202 {"pexpire",pexpireCommand
,3,"w",0,NULL
,1,1,1,0,0},
203 {"pexpireat",pexpireatCommand
,3,"w",0,NULL
,1,1,1,0,0},
204 {"keys",keysCommand
,2,"r",0,NULL
,0,0,0,0,0},
205 {"dbsize",dbsizeCommand
,1,"r",0,NULL
,0,0,0,0,0},
206 {"auth",authCommand
,2,"rs",0,NULL
,0,0,0,0,0},
207 {"ping",pingCommand
,1,"r",0,NULL
,0,0,0,0,0},
208 {"echo",echoCommand
,2,"r",0,NULL
,0,0,0,0,0},
209 {"save",saveCommand
,1,"ars",0,NULL
,0,0,0,0,0},
210 {"bgsave",bgsaveCommand
,1,"ar",0,NULL
,0,0,0,0,0},
211 {"bgrewriteaof",bgrewriteaofCommand
,1,"ar",0,NULL
,0,0,0,0,0},
212 {"shutdown",shutdownCommand
,-1,"ar",0,NULL
,0,0,0,0,0},
213 {"lastsave",lastsaveCommand
,1,"r",0,NULL
,0,0,0,0,0},
214 {"type",typeCommand
,2,"r",0,NULL
,1,1,1,0,0},
215 {"multi",multiCommand
,1,"rs",0,NULL
,0,0,0,0,0},
216 {"exec",execCommand
,1,"wms",0,NULL
,0,0,0,0,0},
217 {"discard",discardCommand
,1,"rs",0,NULL
,0,0,0,0,0},
218 {"sync",syncCommand
,1,"ars",0,NULL
,0,0,0,0,0},
219 {"flushdb",flushdbCommand
,1,"w",0,NULL
,0,0,0,0,0},
220 {"flushall",flushallCommand
,1,"w",0,NULL
,0,0,0,0,0},
221 {"sort",sortCommand
,-2,"wm",0,NULL
,1,1,1,0,0},
222 {"info",infoCommand
,-1,"r",0,NULL
,0,0,0,0,0},
223 {"monitor",monitorCommand
,1,"ars",0,NULL
,0,0,0,0,0},
224 {"ttl",ttlCommand
,2,"r",0,NULL
,1,1,1,0,0},
225 {"pttl",pttlCommand
,2,"r",0,NULL
,1,1,1,0,0},
226 {"persist",persistCommand
,2,"w",0,NULL
,1,1,1,0,0},
227 {"slaveof",slaveofCommand
,3,"aws",0,NULL
,0,0,0,0,0},
228 {"debug",debugCommand
,-2,"aws",0,NULL
,0,0,0,0,0},
229 {"config",configCommand
,-2,"ar",0,NULL
,0,0,0,0,0},
230 {"subscribe",subscribeCommand
,-2,"rps",0,NULL
,0,0,0,0,0},
231 {"unsubscribe",unsubscribeCommand
,-1,"rps",0,NULL
,0,0,0,0,0},
232 {"psubscribe",psubscribeCommand
,-2,"rps",0,NULL
,0,0,0,0,0},
233 {"punsubscribe",punsubscribeCommand
,-1,"rps",0,NULL
,0,0,0,0,0},
234 {"publish",publishCommand
,3,"rpf",0,NULL
,0,0,0,0,0},
235 {"watch",watchCommand
,-2,"rs",0,noPreloadGetKeys
,1,-1,1,0,0},
236 {"unwatch",unwatchCommand
,1,"rs",0,NULL
,0,0,0,0,0},
237 {"cluster",clusterCommand
,-2,"ar",0,NULL
,0,0,0,0,0},
238 {"restore",restoreCommand
,4,"awm",0,NULL
,1,1,1,0,0},
239 {"migrate",migrateCommand
,6,"aw",0,NULL
,0,0,0,0,0},
240 {"asking",askingCommand
,1,"r",0,NULL
,0,0,0,0,0},
241 {"dump",dumpCommand
,2,"ar",0,NULL
,1,1,1,0,0},
242 {"object",objectCommand
,-2,"r",0,NULL
,2,2,2,0,0},
243 {"client",clientCommand
,-2,"ar",0,NULL
,0,0,0,0,0},
244 {"eval",evalCommand
,-3,"wms",0,zunionInterGetKeys
,0,0,0,0,0},
245 {"evalsha",evalShaCommand
,-3,"wms",0,zunionInterGetKeys
,0,0,0,0,0},
246 {"slowlog",slowlogCommand
,-2,"r",0,NULL
,0,0,0,0,0},
247 {"script",scriptCommand
,-2,"ras",0,NULL
,0,0,0,0,0}
250 /*============================ Utility functions ============================ */
252 /* Low level logging. To use only for very big messages, otherwise
253 * redisLog() is to prefer. */
254 void redisLogRaw(int level
, const char *msg
) {
255 const int syslogLevelMap
[] = { LOG_DEBUG
, LOG_INFO
, LOG_NOTICE
, LOG_WARNING
};
256 const char *c
= ".-*#";
257 time_t now
= time(NULL
);
260 int rawmode
= (level
& REDIS_LOG_RAW
);
262 level
&= 0xff; /* clear flags */
263 if (level
< server
.verbosity
) return;
265 fp
= (server
.logfile
== NULL
) ? stdout
: fopen(server
.logfile
,"a");
269 fprintf(fp
,"%s",msg
);
271 strftime(buf
,sizeof(buf
),"%d %b %H:%M:%S",localtime(&now
));
272 fprintf(fp
,"[%d] %s %c %s\n",(int)getpid(),buf
,c
[level
],msg
);
276 if (server
.logfile
) fclose(fp
);
278 if (server
.syslog_enabled
) syslog(syslogLevelMap
[level
], "%s", msg
);
281 /* Like redisLogRaw() but with printf-alike support. This is the funciton that
282 * is used across the code. The raw version is only used in order to dump
283 * the INFO output on crash. */
284 void redisLog(int level
, const char *fmt
, ...) {
286 char msg
[REDIS_MAX_LOGMSG_LEN
];
288 if ((level
&0xff) < server
.verbosity
) return;
291 vsnprintf(msg
, sizeof(msg
), fmt
, ap
);
294 redisLogRaw(level
,msg
);
297 /* Redis generally does not try to recover from out of memory conditions
298 * when allocating objects or strings, it is not clear if it will be possible
299 * to report this condition to the client since the networking layer itself
300 * is based on heap allocation for send buffers, so we simply abort.
301 * At least the code will be simpler to read... */
302 void oom(const char *msg
) {
303 redisLog(REDIS_WARNING
, "%s: Out of memory\n",msg
);
308 /* Return the UNIX time in microseconds */
309 long long ustime(void) {
313 gettimeofday(&tv
, NULL
);
314 ust
= ((long long)tv
.tv_sec
)*1000000;
319 /* Return the UNIX time in milliseconds */
320 long long mstime(void) {
321 return ustime()/1000;
324 /*====================== Hash table type implementation ==================== */
326 /* This is an hash table type that uses the SDS dynamic strings libary as
327 * keys and radis objects as values (objects can hold SDS strings,
330 void dictVanillaFree(void *privdata
, void *val
)
332 DICT_NOTUSED(privdata
);
336 void dictListDestructor(void *privdata
, void *val
)
338 DICT_NOTUSED(privdata
);
339 listRelease((list
*)val
);
342 int dictSdsKeyCompare(void *privdata
, const void *key1
,
346 DICT_NOTUSED(privdata
);
348 l1
= sdslen((sds
)key1
);
349 l2
= sdslen((sds
)key2
);
350 if (l1
!= l2
) return 0;
351 return memcmp(key1
, key2
, l1
) == 0;
354 /* A case insensitive version used for the command lookup table. */
355 int dictSdsKeyCaseCompare(void *privdata
, const void *key1
,
358 DICT_NOTUSED(privdata
);
360 return strcasecmp(key1
, key2
) == 0;
363 void dictRedisObjectDestructor(void *privdata
, void *val
)
365 DICT_NOTUSED(privdata
);
367 if (val
== NULL
) return; /* Values of swapped out keys as set to NULL */
371 void dictSdsDestructor(void *privdata
, void *val
)
373 DICT_NOTUSED(privdata
);
378 int dictObjKeyCompare(void *privdata
, const void *key1
,
381 const robj
*o1
= key1
, *o2
= key2
;
382 return dictSdsKeyCompare(privdata
,o1
->ptr
,o2
->ptr
);
385 unsigned int dictObjHash(const void *key
) {
387 return dictGenHashFunction(o
->ptr
, sdslen((sds
)o
->ptr
));
390 unsigned int dictSdsHash(const void *key
) {
391 return dictGenHashFunction((unsigned char*)key
, sdslen((char*)key
));
394 unsigned int dictSdsCaseHash(const void *key
) {
395 return dictGenCaseHashFunction((unsigned char*)key
, sdslen((char*)key
));
398 int dictEncObjKeyCompare(void *privdata
, const void *key1
,
401 robj
*o1
= (robj
*) key1
, *o2
= (robj
*) key2
;
404 if (o1
->encoding
== REDIS_ENCODING_INT
&&
405 o2
->encoding
== REDIS_ENCODING_INT
)
406 return o1
->ptr
== o2
->ptr
;
408 o1
= getDecodedObject(o1
);
409 o2
= getDecodedObject(o2
);
410 cmp
= dictSdsKeyCompare(privdata
,o1
->ptr
,o2
->ptr
);
416 unsigned int dictEncObjHash(const void *key
) {
417 robj
*o
= (robj
*) key
;
419 if (o
->encoding
== REDIS_ENCODING_RAW
) {
420 return dictGenHashFunction(o
->ptr
, sdslen((sds
)o
->ptr
));
422 if (o
->encoding
== REDIS_ENCODING_INT
) {
426 len
= ll2string(buf
,32,(long)o
->ptr
);
427 return dictGenHashFunction((unsigned char*)buf
, len
);
431 o
= getDecodedObject(o
);
432 hash
= dictGenHashFunction(o
->ptr
, sdslen((sds
)o
->ptr
));
439 /* Sets type hash table */
440 dictType setDictType
= {
441 dictEncObjHash
, /* hash function */
444 dictEncObjKeyCompare
, /* key compare */
445 dictRedisObjectDestructor
, /* key destructor */
446 NULL
/* val destructor */
449 /* Sorted sets hash (note: a skiplist is used in addition to the hash table) */
450 dictType zsetDictType
= {
451 dictEncObjHash
, /* hash function */
454 dictEncObjKeyCompare
, /* key compare */
455 dictRedisObjectDestructor
, /* key destructor */
456 NULL
/* val destructor */
459 /* Db->dict, keys are sds strings, vals are Redis objects. */
460 dictType dbDictType
= {
461 dictSdsHash
, /* hash function */
464 dictSdsKeyCompare
, /* key compare */
465 dictSdsDestructor
, /* key destructor */
466 dictRedisObjectDestructor
/* val destructor */
470 dictType keyptrDictType
= {
471 dictSdsHash
, /* hash function */
474 dictSdsKeyCompare
, /* key compare */
475 NULL
, /* key destructor */
476 NULL
/* val destructor */
479 /* Command table. sds string -> command struct pointer. */
480 dictType commandTableDictType
= {
481 dictSdsCaseHash
, /* hash function */
484 dictSdsKeyCaseCompare
, /* key compare */
485 dictSdsDestructor
, /* key destructor */
486 NULL
/* val destructor */
489 /* Hash type hash table (note that small hashes are represented with zimpaps) */
490 dictType hashDictType
= {
491 dictEncObjHash
, /* hash function */
494 dictEncObjKeyCompare
, /* key compare */
495 dictRedisObjectDestructor
, /* key destructor */
496 dictRedisObjectDestructor
/* val destructor */
499 /* Keylist hash table type has unencoded redis objects as keys and
500 * lists as values. It's used for blocking operations (BLPOP) and to
501 * map swapped keys to a list of clients waiting for this keys to be loaded. */
502 dictType keylistDictType
= {
503 dictObjHash
, /* hash function */
506 dictObjKeyCompare
, /* key compare */
507 dictRedisObjectDestructor
, /* key destructor */
508 dictListDestructor
/* val destructor */
511 /* Cluster nodes hash table, mapping nodes addresses 1.2.3.4:6379 to
512 * clusterNode structures. */
513 dictType clusterNodesDictType
= {
514 dictSdsHash
, /* hash function */
517 dictSdsKeyCompare
, /* key compare */
518 dictSdsDestructor
, /* key destructor */
519 NULL
/* val destructor */
522 int htNeedsResize(dict
*dict
) {
523 long long size
, used
;
525 size
= dictSlots(dict
);
526 used
= dictSize(dict
);
527 return (size
&& used
&& size
> DICT_HT_INITIAL_SIZE
&&
528 (used
*100/size
< REDIS_HT_MINFILL
));
531 /* If the percentage of used slots in the HT reaches REDIS_HT_MINFILL
532 * we resize the hash table to save memory */
533 void tryResizeHashTables(void) {
536 for (j
= 0; j
< server
.dbnum
; j
++) {
537 if (htNeedsResize(server
.db
[j
].dict
))
538 dictResize(server
.db
[j
].dict
);
539 if (htNeedsResize(server
.db
[j
].expires
))
540 dictResize(server
.db
[j
].expires
);
544 /* Our hash table implementation performs rehashing incrementally while
545 * we write/read from the hash table. Still if the server is idle, the hash
546 * table will use two tables for a long time. So we try to use 1 millisecond
547 * of CPU time at every serverCron() loop in order to rehash some key. */
548 void incrementallyRehash(void) {
551 for (j
= 0; j
< server
.dbnum
; j
++) {
552 if (dictIsRehashing(server
.db
[j
].dict
)) {
553 dictRehashMilliseconds(server
.db
[j
].dict
,1);
554 break; /* already used our millisecond for this loop... */
559 /* This function is called once a background process of some kind terminates,
560 * as we want to avoid resizing the hash tables when there is a child in order
561 * to play well with copy-on-write (otherwise when a resize happens lots of
562 * memory pages are copied). The goal of this function is to update the ability
563 * for dict.c to resize the hash tables accordingly to the fact we have o not
565 void updateDictResizePolicy(void) {
566 if (server
.rdb_child_pid
== -1 && server
.aof_child_pid
== -1)
572 /* ======================= Cron: called every 100 ms ======================== */
574 /* Try to expire a few timed out keys. The algorithm used is adaptive and
575 * will use few CPU cycles if there are few expiring keys, otherwise
576 * it will get more aggressive to avoid that too much memory is used by
577 * keys that can be removed from the keyspace. */
578 void activeExpireCycle(void) {
581 for (j
= 0; j
< server
.dbnum
; j
++) {
583 redisDb
*db
= server
.db
+j
;
585 /* Continue to expire if at the end of the cycle more than 25%
586 * of the keys were expired. */
588 long num
= dictSize(db
->expires
);
589 long long now
= mstime();
592 if (num
> REDIS_EXPIRELOOKUPS_PER_CRON
)
593 num
= REDIS_EXPIRELOOKUPS_PER_CRON
;
598 if ((de
= dictGetRandomKey(db
->expires
)) == NULL
) break;
599 t
= dictGetSignedIntegerVal(de
);
601 sds key
= dictGetKey(de
);
602 robj
*keyobj
= createStringObject(key
,sdslen(key
));
604 propagateExpire(db
,keyobj
);
606 decrRefCount(keyobj
);
608 server
.stat_expiredkeys
++;
611 } while (expired
> REDIS_EXPIRELOOKUPS_PER_CRON
/4);
615 void updateLRUClock(void) {
616 server
.lruclock
= (time(NULL
)/REDIS_LRU_CLOCK_RESOLUTION
) &
620 int serverCron(struct aeEventLoop
*eventLoop
, long long id
, void *clientData
) {
621 int j
, loops
= server
.cronloops
;
622 REDIS_NOTUSED(eventLoop
);
624 REDIS_NOTUSED(clientData
);
626 /* We take a cached value of the unix time in the global state because
627 * with virtual memory and aging there is to store the current time
628 * in objects at every object access, and accuracy is not needed.
629 * To access a global var is faster than calling time(NULL) */
630 server
.unixtime
= time(NULL
);
632 /* We have just 22 bits per object for LRU information.
633 * So we use an (eventually wrapping) LRU clock with 10 seconds resolution.
634 * 2^22 bits with 10 seconds resoluton is more or less 1.5 years.
636 * Note that even if this will wrap after 1.5 years it's not a problem,
637 * everything will still work but just some object will appear younger
638 * to Redis. But for this to happen a given object should never be touched
641 * Note that you can change the resolution altering the
642 * REDIS_LRU_CLOCK_RESOLUTION define.
646 /* Record the max memory used since the server was started. */
647 if (zmalloc_used_memory() > server
.stat_peak_memory
)
648 server
.stat_peak_memory
= zmalloc_used_memory();
650 /* We received a SIGTERM, shutting down here in a safe way, as it is
651 * not ok doing so inside the signal handler. */
652 if (server
.shutdown_asap
) {
653 if (prepareForShutdown(0) == REDIS_OK
) exit(0);
654 redisLog(REDIS_WARNING
,"SIGTERM received but errors trying to shut down the server, check the logs for more information");
657 /* Show some info about non-empty databases */
658 for (j
= 0; j
< server
.dbnum
; j
++) {
659 long long size
, used
, vkeys
;
661 size
= dictSlots(server
.db
[j
].dict
);
662 used
= dictSize(server
.db
[j
].dict
);
663 vkeys
= dictSize(server
.db
[j
].expires
);
664 if (!(loops
% 50) && (used
|| vkeys
)) {
665 redisLog(REDIS_VERBOSE
,"DB %d: %lld keys (%lld volatile) in %lld slots HT.",j
,used
,vkeys
,size
);
666 /* dictPrintStats(server.dict); */
670 /* We don't want to resize the hash tables while a bacground saving
671 * is in progress: the saving child is created using fork() that is
672 * implemented with a copy-on-write semantic in most modern systems, so
673 * if we resize the HT while there is the saving child at work actually
674 * a lot of memory movements in the parent will cause a lot of pages
676 if (server
.rdb_child_pid
== -1 && server
.aof_child_pid
== -1) {
677 if (!(loops
% 10)) tryResizeHashTables();
678 if (server
.activerehashing
) incrementallyRehash();
681 /* Show information about connected clients */
683 redisLog(REDIS_VERBOSE
,"%d clients connected (%d slaves), %zu bytes in use",
684 listLength(server
.clients
)-listLength(server
.slaves
),
685 listLength(server
.slaves
),
686 zmalloc_used_memory());
689 /* Close connections of timedout clients */
690 if ((server
.maxidletime
&& !(loops
% 100)) || server
.bpop_blocked_clients
)
691 closeTimedoutClients();
693 /* Start a scheduled AOF rewrite if this was requested by the user while
694 * a BGSAVE was in progress. */
695 if (server
.rdb_child_pid
== -1 && server
.aof_child_pid
== -1 &&
696 server
.aof_rewrite_scheduled
)
698 rewriteAppendOnlyFileBackground();
701 /* Check if a background saving or AOF rewrite in progress terminated. */
702 if (server
.rdb_child_pid
!= -1 || server
.aof_child_pid
!= -1) {
706 if ((pid
= wait3(&statloc
,WNOHANG
,NULL
)) != 0) {
707 int exitcode
= WEXITSTATUS(statloc
);
710 if (WIFSIGNALED(statloc
)) bysignal
= WTERMSIG(statloc
);
712 if (pid
== server
.rdb_child_pid
) {
713 backgroundSaveDoneHandler(exitcode
,bysignal
);
715 backgroundRewriteDoneHandler(exitcode
,bysignal
);
717 updateDictResizePolicy();
720 time_t now
= time(NULL
);
722 /* If there is not a background saving/rewrite in progress check if
723 * we have to save/rewrite now */
724 for (j
= 0; j
< server
.saveparamslen
; j
++) {
725 struct saveparam
*sp
= server
.saveparams
+j
;
727 if (server
.dirty
>= sp
->changes
&&
728 now
-server
.lastsave
> sp
->seconds
) {
729 redisLog(REDIS_NOTICE
,"%d changes in %d seconds. Saving...",
730 sp
->changes
, sp
->seconds
);
731 rdbSaveBackground(server
.rdb_filename
);
736 /* Trigger an AOF rewrite if needed */
737 if (server
.rdb_child_pid
== -1 &&
738 server
.aof_child_pid
== -1 &&
739 server
.aof_rewrite_perc
&&
740 server
.aof_current_size
> server
.aof_rewrite_min_size
)
742 long long base
= server
.aof_rewrite_base_size
?
743 server
.aof_rewrite_base_size
: 1;
744 long long growth
= (server
.aof_current_size
*100/base
) - 100;
745 if (growth
>= server
.aof_rewrite_perc
) {
746 redisLog(REDIS_NOTICE
,"Starting automatic rewriting of AOF on %lld%% growth",growth
);
747 rewriteAppendOnlyFileBackground();
753 /* If we postponed an AOF buffer flush, let's try to do it every time the
754 * cron function is called. */
755 if (server
.aof_flush_postponed_start
) flushAppendOnlyFile(0);
757 /* Expire a few keys per cycle, only if this is a master.
758 * On slaves we wait for DEL operations synthesized by the master
759 * in order to guarantee a strict consistency. */
760 if (server
.masterhost
== NULL
) activeExpireCycle();
762 /* Replication cron function -- used to reconnect to master and
763 * to detect transfer failures. */
764 if (!(loops
% 10)) replicationCron();
766 /* Run other sub-systems specific cron jobs */
767 if (server
.cluster_enabled
&& !(loops
% 10)) clusterCron();
773 /* This function gets called every time Redis is entering the
774 * main loop of the event driven library, that is, before to sleep
775 * for ready file descriptors. */
776 void beforeSleep(struct aeEventLoop
*eventLoop
) {
777 REDIS_NOTUSED(eventLoop
);
781 /* Try to process pending commands for clients that were just unblocked. */
782 while (listLength(server
.unblocked_clients
)) {
783 ln
= listFirst(server
.unblocked_clients
);
784 redisAssert(ln
!= NULL
);
786 listDelNode(server
.unblocked_clients
,ln
);
787 c
->flags
&= ~REDIS_UNBLOCKED
;
789 /* Process remaining data in the input buffer. */
790 if (c
->querybuf
&& sdslen(c
->querybuf
) > 0) {
791 server
.current_client
= c
;
792 processInputBuffer(c
);
793 server
.current_client
= NULL
;
797 /* Write the AOF buffer on disk */
798 flushAppendOnlyFile(0);
801 /* =========================== Server initialization ======================== */
803 void createSharedObjects(void) {
806 shared
.crlf
= createObject(REDIS_STRING
,sdsnew("\r\n"));
807 shared
.ok
= createObject(REDIS_STRING
,sdsnew("+OK\r\n"));
808 shared
.err
= createObject(REDIS_STRING
,sdsnew("-ERR\r\n"));
809 shared
.emptybulk
= createObject(REDIS_STRING
,sdsnew("$0\r\n\r\n"));
810 shared
.czero
= createObject(REDIS_STRING
,sdsnew(":0\r\n"));
811 shared
.cone
= createObject(REDIS_STRING
,sdsnew(":1\r\n"));
812 shared
.cnegone
= createObject(REDIS_STRING
,sdsnew(":-1\r\n"));
813 shared
.nullbulk
= createObject(REDIS_STRING
,sdsnew("$-1\r\n"));
814 shared
.nullmultibulk
= createObject(REDIS_STRING
,sdsnew("*-1\r\n"));
815 shared
.emptymultibulk
= createObject(REDIS_STRING
,sdsnew("*0\r\n"));
816 shared
.pong
= createObject(REDIS_STRING
,sdsnew("+PONG\r\n"));
817 shared
.queued
= createObject(REDIS_STRING
,sdsnew("+QUEUED\r\n"));
818 shared
.wrongtypeerr
= createObject(REDIS_STRING
,sdsnew(
819 "-ERR Operation against a key holding the wrong kind of value\r\n"));
820 shared
.nokeyerr
= createObject(REDIS_STRING
,sdsnew(
821 "-ERR no such key\r\n"));
822 shared
.syntaxerr
= createObject(REDIS_STRING
,sdsnew(
823 "-ERR syntax error\r\n"));
824 shared
.sameobjecterr
= createObject(REDIS_STRING
,sdsnew(
825 "-ERR source and destination objects are the same\r\n"));
826 shared
.outofrangeerr
= createObject(REDIS_STRING
,sdsnew(
827 "-ERR index out of range\r\n"));
828 shared
.noscripterr
= createObject(REDIS_STRING
,sdsnew(
829 "-NOSCRIPT No matching script. Please use EVAL.\r\n"));
830 shared
.loadingerr
= createObject(REDIS_STRING
,sdsnew(
831 "-LOADING Redis is loading the dataset in memory\r\n"));
832 shared
.slowscripterr
= createObject(REDIS_STRING
,sdsnew(
833 "-BUSY Redis is busy running a script. You can only call SCRIPT KILL or SHUTDOWN NOSAVE.\r\n"));
834 shared
.space
= createObject(REDIS_STRING
,sdsnew(" "));
835 shared
.colon
= createObject(REDIS_STRING
,sdsnew(":"));
836 shared
.plus
= createObject(REDIS_STRING
,sdsnew("+"));
837 shared
.select0
= createStringObject("select 0\r\n",10);
838 shared
.select1
= createStringObject("select 1\r\n",10);
839 shared
.select2
= createStringObject("select 2\r\n",10);
840 shared
.select3
= createStringObject("select 3\r\n",10);
841 shared
.select4
= createStringObject("select 4\r\n",10);
842 shared
.select5
= createStringObject("select 5\r\n",10);
843 shared
.select6
= createStringObject("select 6\r\n",10);
844 shared
.select7
= createStringObject("select 7\r\n",10);
845 shared
.select8
= createStringObject("select 8\r\n",10);
846 shared
.select9
= createStringObject("select 9\r\n",10);
847 shared
.messagebulk
= createStringObject("$7\r\nmessage\r\n",13);
848 shared
.pmessagebulk
= createStringObject("$8\r\npmessage\r\n",14);
849 shared
.subscribebulk
= createStringObject("$9\r\nsubscribe\r\n",15);
850 shared
.unsubscribebulk
= createStringObject("$11\r\nunsubscribe\r\n",18);
851 shared
.psubscribebulk
= createStringObject("$10\r\npsubscribe\r\n",17);
852 shared
.punsubscribebulk
= createStringObject("$12\r\npunsubscribe\r\n",19);
853 shared
.mbulk3
= createStringObject("*3\r\n",4);
854 shared
.mbulk4
= createStringObject("*4\r\n",4);
855 for (j
= 0; j
< REDIS_SHARED_INTEGERS
; j
++) {
856 shared
.integers
[j
] = createObject(REDIS_STRING
,(void*)(long)j
);
857 shared
.integers
[j
]->encoding
= REDIS_ENCODING_INT
;
861 void initServerConfig() {
862 server
.port
= REDIS_SERVERPORT
;
863 server
.bindaddr
= NULL
;
864 server
.unixsocket
= NULL
;
865 server
.unixsocketperm
= 0;
868 server
.dbnum
= REDIS_DEFAULT_DBNUM
;
869 server
.verbosity
= REDIS_NOTICE
;
870 server
.maxidletime
= REDIS_MAXIDLETIME
;
871 server
.client_max_querybuf_len
= REDIS_MAX_QUERYBUF_LEN
;
872 server
.saveparams
= NULL
;
874 server
.logfile
= NULL
; /* NULL = log on standard output */
875 server
.syslog_enabled
= 0;
876 server
.syslog_ident
= zstrdup("redis");
877 server
.syslog_facility
= LOG_LOCAL0
;
878 server
.daemonize
= 0;
879 server
.aof_state
= REDIS_AOF_OFF
;
880 server
.aof_fsync
= AOF_FSYNC_EVERYSEC
;
881 server
.aof_no_fsync_on_rewrite
= 0;
882 server
.aof_rewrite_perc
= REDIS_AOF_REWRITE_PERC
;
883 server
.aof_rewrite_min_size
= REDIS_AOF_REWRITE_MIN_SIZE
;
884 server
.aof_rewrite_base_size
= 0;
885 server
.aof_rewrite_scheduled
= 0;
886 server
.aof_last_fsync
= time(NULL
);
888 server
.aof_selected_db
= -1; /* Make sure the first time will not match */
889 server
.aof_flush_postponed_start
= 0;
890 server
.pidfile
= zstrdup("/var/run/redis.pid");
891 server
.rdb_filename
= zstrdup("dump.rdb");
892 server
.aof_filename
= zstrdup("appendonly.aof");
893 server
.requirepass
= NULL
;
894 server
.rdb_compression
= 1;
895 server
.activerehashing
= 1;
896 server
.maxclients
= REDIS_MAX_CLIENTS
;
897 server
.bpop_blocked_clients
= 0;
898 server
.maxmemory
= 0;
899 server
.maxmemory_policy
= REDIS_MAXMEMORY_VOLATILE_LRU
;
900 server
.maxmemory_samples
= 3;
901 server
.hash_max_zipmap_entries
= REDIS_HASH_MAX_ZIPMAP_ENTRIES
;
902 server
.hash_max_zipmap_value
= REDIS_HASH_MAX_ZIPMAP_VALUE
;
903 server
.list_max_ziplist_entries
= REDIS_LIST_MAX_ZIPLIST_ENTRIES
;
904 server
.list_max_ziplist_value
= REDIS_LIST_MAX_ZIPLIST_VALUE
;
905 server
.set_max_intset_entries
= REDIS_SET_MAX_INTSET_ENTRIES
;
906 server
.zset_max_ziplist_entries
= REDIS_ZSET_MAX_ZIPLIST_ENTRIES
;
907 server
.zset_max_ziplist_value
= REDIS_ZSET_MAX_ZIPLIST_VALUE
;
908 server
.shutdown_asap
= 0;
909 server
.repl_ping_slave_period
= REDIS_REPL_PING_SLAVE_PERIOD
;
910 server
.repl_timeout
= REDIS_REPL_TIMEOUT
;
911 server
.cluster_enabled
= 0;
912 server
.cluster
.configfile
= zstrdup("nodes.conf");
913 server
.lua_caller
= NULL
;
914 server
.lua_time_limit
= REDIS_LUA_TIME_LIMIT
;
915 server
.lua_client
= NULL
;
916 server
.lua_timedout
= 0;
919 resetServerSaveParams();
921 appendServerSaveParams(60*60,1); /* save after 1 hour and 1 change */
922 appendServerSaveParams(300,100); /* save after 5 minutes and 100 changes */
923 appendServerSaveParams(60,10000); /* save after 1 minute and 10000 changes */
924 /* Replication related */
925 server
.masterauth
= NULL
;
926 server
.masterhost
= NULL
;
927 server
.masterport
= 6379;
928 server
.master
= NULL
;
929 server
.repl_state
= REDIS_REPL_NONE
;
930 server
.repl_syncio_timeout
= REDIS_REPL_SYNCIO_TIMEOUT
;
931 server
.repl_serve_stale_data
= 1;
932 server
.repl_down_since
= -1;
934 /* Double constants initialization */
936 R_PosInf
= 1.0/R_Zero
;
937 R_NegInf
= -1.0/R_Zero
;
938 R_Nan
= R_Zero
/R_Zero
;
940 /* Command table -- we intiialize it here as it is part of the
941 * initial configuration, since command names may be changed via
942 * redis.conf using the rename-command directive. */
943 server
.commands
= dictCreate(&commandTableDictType
,NULL
);
944 populateCommandTable();
945 server
.delCommand
= lookupCommandByCString("del");
946 server
.multiCommand
= lookupCommandByCString("multi");
949 server
.slowlog_log_slower_than
= REDIS_SLOWLOG_LOG_SLOWER_THAN
;
950 server
.slowlog_max_len
= REDIS_SLOWLOG_MAX_LEN
;
953 server
.assert_failed
= "<no assertion failed>";
954 server
.assert_file
= "<no file>";
955 server
.assert_line
= 0;
956 server
.bug_report_start
= 0;
959 /* This function will try to raise the max number of open files accordingly to
960 * the configured max number of clients. It will also account for 32 additional
961 * file descriptors as we need a few more for persistence, listening
962 * sockets, log files and so forth.
964 * If it will not be possible to set the limit accordingly to the configured
965 * max number of clients, the function will do the reverse setting
966 * server.maxclients to the value that we can actually handle. */
967 void adjustOpenFilesLimit(void) {
968 rlim_t maxfiles
= server
.maxclients
+32;
971 if (maxfiles
< 1024) maxfiles
= 1024;
972 if (getrlimit(RLIMIT_NOFILE
,&limit
) == -1) {
973 redisLog(REDIS_WARNING
,"Unable to obtain the current NOFILE limit (%s), assuming 1024 and setting the max clients configuration accordingly.",
975 server
.maxclients
= 1024-32;
977 rlim_t oldlimit
= limit
.rlim_cur
;
979 /* Set the max number of files if the current limit is not enough
981 if (oldlimit
< maxfiles
) {
982 limit
.rlim_cur
= maxfiles
;
983 limit
.rlim_max
= maxfiles
;
984 if (setrlimit(RLIMIT_NOFILE
,&limit
) == -1) {
985 server
.maxclients
= oldlimit
-32;
986 redisLog(REDIS_WARNING
,"Unable to set the max number of files limit to %d (%s), setting the max clients configuration to %d.",
987 (int) maxfiles
, strerror(errno
), (int) server
.maxclients
);
989 redisLog(REDIS_NOTICE
,"Max number of open files set to %d",
999 signal(SIGHUP
, SIG_IGN
);
1000 signal(SIGPIPE
, SIG_IGN
);
1001 setupSignalHandlers();
1003 if (server
.syslog_enabled
) {
1004 openlog(server
.syslog_ident
, LOG_PID
| LOG_NDELAY
| LOG_NOWAIT
,
1005 server
.syslog_facility
);
1008 server
.current_client
= NULL
;
1009 server
.clients
= listCreate();
1010 server
.slaves
= listCreate();
1011 server
.monitors
= listCreate();
1012 server
.unblocked_clients
= listCreate();
1014 createSharedObjects();
1015 adjustOpenFilesLimit();
1016 server
.el
= aeCreateEventLoop(server
.maxclients
+1024);
1017 server
.db
= zmalloc(sizeof(redisDb
)*server
.dbnum
);
1019 if (server
.port
!= 0) {
1020 server
.ipfd
= anetTcpServer(server
.neterr
,server
.port
,server
.bindaddr
);
1021 if (server
.ipfd
== ANET_ERR
) {
1022 redisLog(REDIS_WARNING
, "Opening port %d: %s",
1023 server
.port
, server
.neterr
);
1027 if (server
.unixsocket
!= NULL
) {
1028 unlink(server
.unixsocket
); /* don't care if this fails */
1029 server
.sofd
= anetUnixServer(server
.neterr
,server
.unixsocket
,server
.unixsocketperm
);
1030 if (server
.sofd
== ANET_ERR
) {
1031 redisLog(REDIS_WARNING
, "Opening socket: %s", server
.neterr
);
1035 if (server
.ipfd
< 0 && server
.sofd
< 0) {
1036 redisLog(REDIS_WARNING
, "Configured to not listen anywhere, exiting.");
1039 for (j
= 0; j
< server
.dbnum
; j
++) {
1040 server
.db
[j
].dict
= dictCreate(&dbDictType
,NULL
);
1041 server
.db
[j
].expires
= dictCreate(&keyptrDictType
,NULL
);
1042 server
.db
[j
].blocking_keys
= dictCreate(&keylistDictType
,NULL
);
1043 server
.db
[j
].watched_keys
= dictCreate(&keylistDictType
,NULL
);
1044 server
.db
[j
].id
= j
;
1046 server
.pubsub_channels
= dictCreate(&keylistDictType
,NULL
);
1047 server
.pubsub_patterns
= listCreate();
1048 listSetFreeMethod(server
.pubsub_patterns
,freePubsubPattern
);
1049 listSetMatchMethod(server
.pubsub_patterns
,listMatchPubsubPattern
);
1050 server
.cronloops
= 0;
1051 server
.rdb_child_pid
= -1;
1052 server
.aof_child_pid
= -1;
1053 server
.aof_rewrite_buf
= sdsempty();
1054 server
.aof_buf
= sdsempty();
1055 server
.lastsave
= time(NULL
);
1057 server
.stat_numcommands
= 0;
1058 server
.stat_numconnections
= 0;
1059 server
.stat_expiredkeys
= 0;
1060 server
.stat_evictedkeys
= 0;
1061 server
.stat_starttime
= time(NULL
);
1062 server
.stat_keyspace_misses
= 0;
1063 server
.stat_keyspace_hits
= 0;
1064 server
.stat_peak_memory
= 0;
1065 server
.stat_fork_time
= 0;
1066 server
.stat_rejected_conn
= 0;
1067 server
.unixtime
= time(NULL
);
1068 aeCreateTimeEvent(server
.el
, 1, serverCron
, NULL
, NULL
);
1069 if (server
.ipfd
> 0 && aeCreateFileEvent(server
.el
,server
.ipfd
,AE_READABLE
,
1070 acceptTcpHandler
,NULL
) == AE_ERR
) oom("creating file event");
1071 if (server
.sofd
> 0 && aeCreateFileEvent(server
.el
,server
.sofd
,AE_READABLE
,
1072 acceptUnixHandler
,NULL
) == AE_ERR
) oom("creating file event");
1074 if (server
.aof_state
== REDIS_AOF_ON
) {
1075 server
.aof_fd
= open(server
.aof_filename
,
1076 O_WRONLY
|O_APPEND
|O_CREAT
,0644);
1077 if (server
.aof_fd
== -1) {
1078 redisLog(REDIS_WARNING
, "Can't open the append-only file: %s",
1084 if (server
.cluster_enabled
) clusterInit();
1088 srand(time(NULL
)^getpid());
1092 /* Populates the Redis Command Table starting from the hard coded list
1093 * we have on top of redis.c file. */
1094 void populateCommandTable(void) {
1096 int numcommands
= sizeof(redisCommandTable
)/sizeof(struct redisCommand
);
1098 for (j
= 0; j
< numcommands
; j
++) {
1099 struct redisCommand
*c
= redisCommandTable
+j
;
1100 char *f
= c
->sflags
;
1105 case 'w': c
->flags
|= REDIS_CMD_WRITE
; break;
1106 case 'r': c
->flags
|= REDIS_CMD_READONLY
; break;
1107 case 'm': c
->flags
|= REDIS_CMD_DENYOOM
; break;
1108 case 'a': c
->flags
|= REDIS_CMD_ADMIN
; break;
1109 case 'p': c
->flags
|= REDIS_CMD_PUBSUB
; break;
1110 case 'f': c
->flags
|= REDIS_CMD_FORCE_REPLICATION
; break;
1111 case 's': c
->flags
|= REDIS_CMD_NOSCRIPT
; break;
1112 case 'R': c
->flags
|= REDIS_CMD_RANDOM
; break;
1113 default: redisPanic("Unsupported command flag"); break;
1118 retval
= dictAdd(server
.commands
, sdsnew(c
->name
), c
);
1119 assert(retval
== DICT_OK
);
1123 void resetCommandTableStats(void) {
1124 int numcommands
= sizeof(redisCommandTable
)/sizeof(struct redisCommand
);
1127 for (j
= 0; j
< numcommands
; j
++) {
1128 struct redisCommand
*c
= redisCommandTable
+j
;
1130 c
->microseconds
= 0;
1135 /* ====================== Commands lookup and execution ===================== */
1137 struct redisCommand
*lookupCommand(sds name
) {
1138 return dictFetchValue(server
.commands
, name
);
1141 struct redisCommand
*lookupCommandByCString(char *s
) {
1142 struct redisCommand
*cmd
;
1143 sds name
= sdsnew(s
);
1145 cmd
= dictFetchValue(server
.commands
, name
);
1150 /* Call() is the core of Redis execution of a command */
1151 void call(redisClient
*c
) {
1152 long long dirty
, start
= ustime(), duration
;
1154 dirty
= server
.dirty
;
1156 dirty
= server
.dirty
-dirty
;
1157 duration
= ustime()-start
;
1158 c
->cmd
->microseconds
+= duration
;
1159 slowlogPushEntryIfNeeded(c
->argv
,c
->argc
,duration
);
1162 if (server
.aof_state
!= REDIS_AOF_OFF
&& dirty
> 0)
1163 feedAppendOnlyFile(c
->cmd
,c
->db
->id
,c
->argv
,c
->argc
);
1164 if ((dirty
> 0 || c
->cmd
->flags
& REDIS_CMD_FORCE_REPLICATION
) &&
1165 listLength(server
.slaves
))
1166 replicationFeedSlaves(server
.slaves
,c
->db
->id
,c
->argv
,c
->argc
);
1167 if (listLength(server
.monitors
))
1168 replicationFeedMonitors(server
.monitors
,c
->db
->id
,c
->argv
,c
->argc
);
1169 server
.stat_numcommands
++;
1172 /* If this function gets called we already read a whole
1173 * command, argments are in the client argv/argc fields.
1174 * processCommand() execute the command or prepare the
1175 * server for a bulk read from the client.
1177 * If 1 is returned the client is still alive and valid and
1178 * and other operations can be performed by the caller. Otherwise
1179 * if 0 is returned the client was destroied (i.e. after QUIT). */
1180 int processCommand(redisClient
*c
) {
1181 /* The QUIT command is handled separately. Normal command procs will
1182 * go through checking for replication and QUIT will cause trouble
1183 * when FORCE_REPLICATION is enabled and would be implemented in
1184 * a regular command proc. */
1185 if (!strcasecmp(c
->argv
[0]->ptr
,"quit")) {
1186 addReply(c
,shared
.ok
);
1187 c
->flags
|= REDIS_CLOSE_AFTER_REPLY
;
1191 /* Now lookup the command and check ASAP about trivial error conditions
1192 * such as wrong arity, bad command name and so forth. */
1193 c
->cmd
= c
->lastcmd
= lookupCommand(c
->argv
[0]->ptr
);
1195 addReplyErrorFormat(c
,"unknown command '%s'",
1196 (char*)c
->argv
[0]->ptr
);
1198 } else if ((c
->cmd
->arity
> 0 && c
->cmd
->arity
!= c
->argc
) ||
1199 (c
->argc
< -c
->cmd
->arity
)) {
1200 addReplyErrorFormat(c
,"wrong number of arguments for '%s' command",
1205 /* Check if the user is authenticated */
1206 if (server
.requirepass
&& !c
->authenticated
&& c
->cmd
->proc
!= authCommand
)
1208 addReplyError(c
,"operation not permitted");
1212 /* If cluster is enabled, redirect here */
1213 if (server
.cluster_enabled
&&
1214 !(c
->cmd
->getkeys_proc
== NULL
&& c
->cmd
->firstkey
== 0)) {
1217 if (server
.cluster
.state
!= REDIS_CLUSTER_OK
) {
1218 addReplyError(c
,"The cluster is down. Check with CLUSTER INFO for more information");
1222 clusterNode
*n
= getNodeByQuery(c
,c
->cmd
,c
->argv
,c
->argc
,&hashslot
,&ask
);
1224 addReplyError(c
,"Multi keys request invalid in cluster");
1226 } else if (n
!= server
.cluster
.myself
) {
1227 addReplySds(c
,sdscatprintf(sdsempty(),
1228 "-%s %d %s:%d\r\n", ask
? "ASK" : "MOVED",
1229 hashslot
,n
->ip
,n
->port
));
1235 /* Handle the maxmemory directive.
1237 * First we try to free some memory if possible (if there are volatile
1238 * keys in the dataset). If there are not the only thing we can do
1239 * is returning an error. */
1240 if (server
.maxmemory
) freeMemoryIfNeeded();
1241 if (server
.maxmemory
&& (c
->cmd
->flags
& REDIS_CMD_DENYOOM
) &&
1242 zmalloc_used_memory() > server
.maxmemory
)
1244 addReplyError(c
,"command not allowed when used memory > 'maxmemory'");
1248 /* Only allow SUBSCRIBE and UNSUBSCRIBE in the context of Pub/Sub */
1249 if ((dictSize(c
->pubsub_channels
) > 0 || listLength(c
->pubsub_patterns
) > 0)
1251 c
->cmd
->proc
!= subscribeCommand
&&
1252 c
->cmd
->proc
!= unsubscribeCommand
&&
1253 c
->cmd
->proc
!= psubscribeCommand
&&
1254 c
->cmd
->proc
!= punsubscribeCommand
) {
1255 addReplyError(c
,"only (P)SUBSCRIBE / (P)UNSUBSCRIBE / QUIT allowed in this context");
1259 /* Only allow INFO and SLAVEOF when slave-serve-stale-data is no and
1260 * we are a slave with a broken link with master. */
1261 if (server
.masterhost
&& server
.repl_state
!= REDIS_REPL_CONNECTED
&&
1262 server
.repl_serve_stale_data
== 0 &&
1263 c
->cmd
->proc
!= infoCommand
&& c
->cmd
->proc
!= slaveofCommand
)
1266 "link with MASTER is down and slave-serve-stale-data is set to no");
1270 /* Loading DB? Return an error if the command is not INFO */
1271 if (server
.loading
&& c
->cmd
->proc
!= infoCommand
) {
1272 addReply(c
, shared
.loadingerr
);
1276 /* Lua script too slow? Only allow SHUTDOWN NOSAVE and SCRIPT KILL. */
1277 if (server
.lua_timedout
&&
1278 !(c
->cmd
->proc
!= shutdownCommand
&&
1280 tolower(((char*)c
->argv
[1]->ptr
)[0]) == 'n') &&
1281 !(c
->cmd
->proc
== scriptCommand
&&
1283 tolower(((char*)c
->argv
[1]->ptr
)[0]) == 'k'))
1285 addReply(c
, shared
.slowscripterr
);
1289 /* Exec the command */
1290 if (c
->flags
& REDIS_MULTI
&&
1291 c
->cmd
->proc
!= execCommand
&& c
->cmd
->proc
!= discardCommand
&&
1292 c
->cmd
->proc
!= multiCommand
&& c
->cmd
->proc
!= watchCommand
)
1294 queueMultiCommand(c
);
1295 addReply(c
,shared
.queued
);
1302 /*================================== Shutdown =============================== */
1304 int prepareForShutdown(int flags
) {
1305 int save
= flags
& REDIS_SHUTDOWN_SAVE
;
1306 int nosave
= flags
& REDIS_SHUTDOWN_NOSAVE
;
1308 redisLog(REDIS_WARNING
,"User requested shutdown...");
1309 /* Kill the saving child if there is a background saving in progress.
1310 We want to avoid race conditions, for instance our saving child may
1311 overwrite the synchronous saving did by SHUTDOWN. */
1312 if (server
.rdb_child_pid
!= -1) {
1313 redisLog(REDIS_WARNING
,"There is a child saving an .rdb. Killing it!");
1314 kill(server
.rdb_child_pid
,SIGKILL
);
1315 rdbRemoveTempFile(server
.rdb_child_pid
);
1317 if (server
.aof_state
!= REDIS_AOF_OFF
) {
1318 /* Kill the AOF saving child as the AOF we already have may be longer
1319 * but contains the full dataset anyway. */
1320 if (server
.aof_child_pid
!= -1) {
1321 redisLog(REDIS_WARNING
,
1322 "There is a child rewriting the AOF. Killing it!");
1323 kill(server
.aof_child_pid
,SIGKILL
);
1325 /* Append only file: fsync() the AOF and exit */
1326 redisLog(REDIS_NOTICE
,"Calling fsync() on the AOF file.");
1327 aof_fsync(server
.aof_fd
);
1329 if ((server
.saveparamslen
> 0 && !nosave
) || save
) {
1330 redisLog(REDIS_NOTICE
,"Saving the final RDB snapshot before exiting.");
1331 /* Snapshotting. Perform a SYNC SAVE and exit */
1332 if (rdbSave(server
.rdb_filename
) != REDIS_OK
) {
1333 /* Ooops.. error saving! The best we can do is to continue
1334 * operating. Note that if there was a background saving process,
1335 * in the next cron() Redis will be notified that the background
1336 * saving aborted, handling special stuff like slaves pending for
1337 * synchronization... */
1338 redisLog(REDIS_WARNING
,"Error trying to save the DB, can't exit.");
1342 if (server
.daemonize
) {
1343 redisLog(REDIS_NOTICE
,"Removing the pid file.");
1344 unlink(server
.pidfile
);
1346 /* Close the listening sockets. Apparently this allows faster restarts. */
1347 if (server
.ipfd
!= -1) close(server
.ipfd
);
1348 if (server
.sofd
!= -1) close(server
.sofd
);
1349 if (server
.unixsocket
) {
1350 redisLog(REDIS_NOTICE
,"Removing the unix socket file.");
1351 unlink(server
.unixsocket
); /* don't care if this fails */
1354 redisLog(REDIS_WARNING
,"Redis is now ready to exit, bye bye...");
1358 /*================================== Commands =============================== */
1360 void authCommand(redisClient
*c
) {
1361 if (!server
.requirepass
) {
1362 addReplyError(c
,"Client sent AUTH, but no password is set");
1363 } else if (!strcmp(c
->argv
[1]->ptr
, server
.requirepass
)) {
1364 c
->authenticated
= 1;
1365 addReply(c
,shared
.ok
);
1367 c
->authenticated
= 0;
1368 addReplyError(c
,"invalid password");
1372 void pingCommand(redisClient
*c
) {
1373 addReply(c
,shared
.pong
);
1376 void echoCommand(redisClient
*c
) {
1377 addReplyBulk(c
,c
->argv
[1]);
1380 /* Convert an amount of bytes into a human readable string in the form
1381 * of 100B, 2G, 100M, 4K, and so forth. */
1382 void bytesToHuman(char *s
, unsigned long long n
) {
1387 sprintf(s
,"%lluB",n
);
1389 } else if (n
< (1024*1024)) {
1390 d
= (double)n
/(1024);
1391 sprintf(s
,"%.2fK",d
);
1392 } else if (n
< (1024LL*1024*1024)) {
1393 d
= (double)n
/(1024*1024);
1394 sprintf(s
,"%.2fM",d
);
1395 } else if (n
< (1024LL*1024*1024*1024)) {
1396 d
= (double)n
/(1024LL*1024*1024);
1397 sprintf(s
,"%.2fG",d
);
1401 /* Create the string returned by the INFO command. This is decoupled
1402 * by the INFO command itself as we need to report the same information
1403 * on memory corruption problems. */
1404 sds
genRedisInfoString(char *section
) {
1405 sds info
= sdsempty();
1406 time_t uptime
= time(NULL
)-server
.stat_starttime
;
1408 struct rusage self_ru
, c_ru
;
1409 unsigned long lol
, bib
;
1410 int allsections
= 0, defsections
= 0;
1414 allsections
= strcasecmp(section
,"all") == 0;
1415 defsections
= strcasecmp(section
,"default") == 0;
1418 getrusage(RUSAGE_SELF
, &self_ru
);
1419 getrusage(RUSAGE_CHILDREN
, &c_ru
);
1420 getClientsMaxBuffers(&lol
,&bib
);
1423 if (allsections
|| defsections
|| !strcasecmp(section
,"server")) {
1424 if (sections
++) info
= sdscat(info
,"\r\n");
1425 info
= sdscatprintf(info
,
1427 "redis_version:%s\r\n"
1428 "redis_git_sha1:%s\r\n"
1429 "redis_git_dirty:%d\r\n"
1431 "multiplexing_api:%s\r\n"
1432 "gcc_version:%d.%d.%d\r\n"
1433 "process_id:%ld\r\n"
1435 "uptime_in_seconds:%ld\r\n"
1436 "uptime_in_days:%ld\r\n"
1437 "lru_clock:%ld\r\n",
1440 strtol(redisGitDirty(),NULL
,10) > 0,
1441 (sizeof(long) == 8) ? "64" : "32",
1444 __GNUC__
,__GNUC_MINOR__
,__GNUC_PATCHLEVEL__
,
1452 (unsigned long) server
.lruclock
);
1456 if (allsections
|| defsections
|| !strcasecmp(section
,"clients")) {
1457 if (sections
++) info
= sdscat(info
,"\r\n");
1458 info
= sdscatprintf(info
,
1460 "connected_clients:%d\r\n"
1461 "client_longest_output_list:%lu\r\n"
1462 "client_biggest_input_buf:%lu\r\n"
1463 "blocked_clients:%d\r\n",
1464 listLength(server
.clients
)-listLength(server
.slaves
),
1466 server
.bpop_blocked_clients
);
1470 if (allsections
|| defsections
|| !strcasecmp(section
,"memory")) {
1474 bytesToHuman(hmem
,zmalloc_used_memory());
1475 bytesToHuman(peak_hmem
,server
.stat_peak_memory
);
1476 if (sections
++) info
= sdscat(info
,"\r\n");
1477 info
= sdscatprintf(info
,
1479 "used_memory:%zu\r\n"
1480 "used_memory_human:%s\r\n"
1481 "used_memory_rss:%zu\r\n"
1482 "used_memory_peak:%zu\r\n"
1483 "used_memory_peak_human:%s\r\n"
1484 "used_memory_lua:%lld\r\n"
1485 "mem_fragmentation_ratio:%.2f\r\n"
1486 "mem_allocator:%s\r\n",
1487 zmalloc_used_memory(),
1490 server
.stat_peak_memory
,
1492 ((long long)lua_gc(server
.lua
,LUA_GCCOUNT
,0))*1024LL,
1493 zmalloc_get_fragmentation_ratio(),
1499 if (allsections
|| defsections
|| !strcasecmp(section
,"persistence")) {
1500 if (sections
++) info
= sdscat(info
,"\r\n");
1501 info
= sdscatprintf(info
,
1504 "aof_enabled:%d\r\n"
1505 "changes_since_last_save:%lld\r\n"
1506 "bgsave_in_progress:%d\r\n"
1507 "last_save_time:%ld\r\n"
1508 "bgrewriteaof_in_progress:%d\r\n",
1510 server
.aof_state
!= REDIS_AOF_OFF
,
1512 server
.rdb_child_pid
!= -1,
1514 server
.aof_child_pid
!= -1);
1516 if (server
.aof_state
!= REDIS_AOF_OFF
) {
1517 info
= sdscatprintf(info
,
1518 "aof_current_size:%lld\r\n"
1519 "aof_base_size:%lld\r\n"
1520 "aof_pending_rewrite:%d\r\n"
1521 "aof_buffer_length:%zu\r\n"
1522 "aof_pending_bio_fsync:%llu\r\n",
1523 (long long) server
.aof_current_size
,
1524 (long long) server
.aof_rewrite_base_size
,
1525 server
.aof_rewrite_scheduled
,
1526 sdslen(server
.aof_buf
),
1527 bioPendingJobsOfType(REDIS_BIO_AOF_FSYNC
));
1530 if (server
.loading
) {
1532 time_t eta
, elapsed
;
1533 off_t remaining_bytes
= server
.loading_total_bytes
-
1534 server
.loading_loaded_bytes
;
1536 perc
= ((double)server
.loading_loaded_bytes
/
1537 server
.loading_total_bytes
) * 100;
1539 elapsed
= time(NULL
)-server
.loading_start_time
;
1541 eta
= 1; /* A fake 1 second figure if we don't have
1544 eta
= (elapsed
*remaining_bytes
)/server
.loading_loaded_bytes
;
1547 info
= sdscatprintf(info
,
1548 "loading_start_time:%ld\r\n"
1549 "loading_total_bytes:%llu\r\n"
1550 "loading_loaded_bytes:%llu\r\n"
1551 "loading_loaded_perc:%.2f\r\n"
1552 "loading_eta_seconds:%ld\r\n"
1553 ,(unsigned long) server
.loading_start_time
,
1554 (unsigned long long) server
.loading_total_bytes
,
1555 (unsigned long long) server
.loading_loaded_bytes
,
1563 if (allsections
|| defsections
|| !strcasecmp(section
,"stats")) {
1564 if (sections
++) info
= sdscat(info
,"\r\n");
1565 info
= sdscatprintf(info
,
1567 "total_connections_received:%lld\r\n"
1568 "total_commands_processed:%lld\r\n"
1569 "rejected_connections:%lld\r\n"
1570 "expired_keys:%lld\r\n"
1571 "evicted_keys:%lld\r\n"
1572 "keyspace_hits:%lld\r\n"
1573 "keyspace_misses:%lld\r\n"
1574 "pubsub_channels:%ld\r\n"
1575 "pubsub_patterns:%u\r\n"
1576 "latest_fork_usec:%lld\r\n",
1577 server
.stat_numconnections
,
1578 server
.stat_numcommands
,
1579 server
.stat_rejected_conn
,
1580 server
.stat_expiredkeys
,
1581 server
.stat_evictedkeys
,
1582 server
.stat_keyspace_hits
,
1583 server
.stat_keyspace_misses
,
1584 dictSize(server
.pubsub_channels
),
1585 listLength(server
.pubsub_patterns
),
1586 server
.stat_fork_time
);
1590 if (allsections
|| defsections
|| !strcasecmp(section
,"replication")) {
1591 if (sections
++) info
= sdscat(info
,"\r\n");
1592 info
= sdscatprintf(info
,
1595 server
.masterhost
== NULL
? "master" : "slave");
1596 if (server
.masterhost
) {
1597 info
= sdscatprintf(info
,
1598 "master_host:%s\r\n"
1599 "master_port:%d\r\n"
1600 "master_link_status:%s\r\n"
1601 "master_last_io_seconds_ago:%d\r\n"
1602 "master_sync_in_progress:%d\r\n"
1605 (server
.repl_state
== REDIS_REPL_CONNECTED
) ?
1608 ((int)(time(NULL
)-server
.master
->lastinteraction
)) : -1,
1609 server
.repl_state
== REDIS_REPL_TRANSFER
1612 if (server
.repl_state
== REDIS_REPL_TRANSFER
) {
1613 info
= sdscatprintf(info
,
1614 "master_sync_left_bytes:%ld\r\n"
1615 "master_sync_last_io_seconds_ago:%d\r\n"
1616 ,(long)server
.repl_transfer_left
,
1617 (int)(time(NULL
)-server
.repl_transfer_lastio
)
1621 if (server
.repl_state
!= REDIS_REPL_CONNECTED
) {
1622 info
= sdscatprintf(info
,
1623 "master_link_down_since_seconds:%ld\r\n",
1624 (long)time(NULL
)-server
.repl_down_since
);
1627 info
= sdscatprintf(info
,
1628 "connected_slaves:%d\r\n",
1629 listLength(server
.slaves
));
1630 if (listLength(server
.slaves
)) {
1635 listRewind(server
.slaves
,&li
);
1636 while((ln
= listNext(&li
))) {
1637 redisClient
*slave
= listNodeValue(ln
);
1642 if (anetPeerToString(slave
->fd
,ip
,&port
) == -1) continue;
1643 switch(slave
->replstate
) {
1644 case REDIS_REPL_WAIT_BGSAVE_START
:
1645 case REDIS_REPL_WAIT_BGSAVE_END
:
1646 state
= "wait_bgsave";
1648 case REDIS_REPL_SEND_BULK
:
1649 state
= "send_bulk";
1651 case REDIS_REPL_ONLINE
:
1655 if (state
== NULL
) continue;
1656 info
= sdscatprintf(info
,"slave%d:%s,%d,%s\r\n",
1657 slaveid
,ip
,port
,state
);
1664 if (allsections
|| defsections
|| !strcasecmp(section
,"cpu")) {
1665 if (sections
++) info
= sdscat(info
,"\r\n");
1666 info
= sdscatprintf(info
,
1668 "used_cpu_sys:%.2f\r\n"
1669 "used_cpu_user:%.2f\r\n"
1670 "used_cpu_sys_children:%.2f\r\n"
1671 "used_cpu_user_children:%.2f\r\n",
1672 (float)self_ru
.ru_stime
.tv_sec
+(float)self_ru
.ru_stime
.tv_usec
/1000000,
1673 (float)self_ru
.ru_utime
.tv_sec
+(float)self_ru
.ru_utime
.tv_usec
/1000000,
1674 (float)c_ru
.ru_stime
.tv_sec
+(float)c_ru
.ru_stime
.tv_usec
/1000000,
1675 (float)c_ru
.ru_utime
.tv_sec
+(float)c_ru
.ru_utime
.tv_usec
/1000000);
1679 if (allsections
|| !strcasecmp(section
,"commandstats")) {
1680 if (sections
++) info
= sdscat(info
,"\r\n");
1681 info
= sdscatprintf(info
, "# Commandstats\r\n");
1682 numcommands
= sizeof(redisCommandTable
)/sizeof(struct redisCommand
);
1683 for (j
= 0; j
< numcommands
; j
++) {
1684 struct redisCommand
*c
= redisCommandTable
+j
;
1686 if (!c
->calls
) continue;
1687 info
= sdscatprintf(info
,
1688 "cmdstat_%s:calls=%lld,usec=%lld,usec_per_call=%.2f\r\n",
1689 c
->name
, c
->calls
, c
->microseconds
,
1690 (c
->calls
== 0) ? 0 : ((float)c
->microseconds
/c
->calls
));
1695 if (allsections
|| defsections
|| !strcasecmp(section
,"cluster")) {
1696 if (sections
++) info
= sdscat(info
,"\r\n");
1697 info
= sdscatprintf(info
,
1699 "cluster_enabled:%d\r\n",
1700 server
.cluster_enabled
);
1704 if (allsections
|| defsections
|| !strcasecmp(section
,"keyspace")) {
1705 if (sections
++) info
= sdscat(info
,"\r\n");
1706 info
= sdscatprintf(info
, "# Keyspace\r\n");
1707 for (j
= 0; j
< server
.dbnum
; j
++) {
1708 long long keys
, vkeys
;
1710 keys
= dictSize(server
.db
[j
].dict
);
1711 vkeys
= dictSize(server
.db
[j
].expires
);
1712 if (keys
|| vkeys
) {
1713 info
= sdscatprintf(info
, "db%d:keys=%lld,expires=%lld\r\n",
1721 void infoCommand(redisClient
*c
) {
1722 char *section
= c
->argc
== 2 ? c
->argv
[1]->ptr
: "default";
1725 addReply(c
,shared
.syntaxerr
);
1728 sds info
= genRedisInfoString(section
);
1729 addReplySds(c
,sdscatprintf(sdsempty(),"$%lu\r\n",
1730 (unsigned long)sdslen(info
)));
1731 addReplySds(c
,info
);
1732 addReply(c
,shared
.crlf
);
1735 void monitorCommand(redisClient
*c
) {
1736 /* ignore MONITOR if aleady slave or in monitor mode */
1737 if (c
->flags
& REDIS_SLAVE
) return;
1739 c
->flags
|= (REDIS_SLAVE
|REDIS_MONITOR
);
1741 listAddNodeTail(server
.monitors
,c
);
1742 addReply(c
,shared
.ok
);
1745 /* ============================ Maxmemory directive ======================== */
1747 /* This function gets called when 'maxmemory' is set on the config file to limit
1748 * the max memory used by the server, and we are out of memory.
1749 * This function will try to, in order:
1751 * - Free objects from the free list
1752 * - Try to remove keys with an EXPIRE set
1754 * It is not possible to free enough memory to reach used-memory < maxmemory
1755 * the server will start refusing commands that will enlarge even more the
1758 void freeMemoryIfNeeded(void) {
1759 /* Remove keys accordingly to the active policy as long as we are
1760 * over the memory limit. */
1761 if (server
.maxmemory_policy
== REDIS_MAXMEMORY_NO_EVICTION
) return;
1763 while (server
.maxmemory
&& zmalloc_used_memory() > server
.maxmemory
) {
1764 int j
, k
, freed
= 0;
1766 for (j
= 0; j
< server
.dbnum
; j
++) {
1767 long bestval
= 0; /* just to prevent warning */
1769 struct dictEntry
*de
;
1770 redisDb
*db
= server
.db
+j
;
1773 if (server
.maxmemory_policy
== REDIS_MAXMEMORY_ALLKEYS_LRU
||
1774 server
.maxmemory_policy
== REDIS_MAXMEMORY_ALLKEYS_RANDOM
)
1776 dict
= server
.db
[j
].dict
;
1778 dict
= server
.db
[j
].expires
;
1780 if (dictSize(dict
) == 0) continue;
1782 /* volatile-random and allkeys-random policy */
1783 if (server
.maxmemory_policy
== REDIS_MAXMEMORY_ALLKEYS_RANDOM
||
1784 server
.maxmemory_policy
== REDIS_MAXMEMORY_VOLATILE_RANDOM
)
1786 de
= dictGetRandomKey(dict
);
1787 bestkey
= dictGetKey(de
);
1790 /* volatile-lru and allkeys-lru policy */
1791 else if (server
.maxmemory_policy
== REDIS_MAXMEMORY_ALLKEYS_LRU
||
1792 server
.maxmemory_policy
== REDIS_MAXMEMORY_VOLATILE_LRU
)
1794 for (k
= 0; k
< server
.maxmemory_samples
; k
++) {
1799 de
= dictGetRandomKey(dict
);
1800 thiskey
= dictGetKey(de
);
1801 /* When policy is volatile-lru we need an additonal lookup
1802 * to locate the real key, as dict is set to db->expires. */
1803 if (server
.maxmemory_policy
== REDIS_MAXMEMORY_VOLATILE_LRU
)
1804 de
= dictFind(db
->dict
, thiskey
);
1806 thisval
= estimateObjectIdleTime(o
);
1808 /* Higher idle time is better candidate for deletion */
1809 if (bestkey
== NULL
|| thisval
> bestval
) {
1817 else if (server
.maxmemory_policy
== REDIS_MAXMEMORY_VOLATILE_TTL
) {
1818 for (k
= 0; k
< server
.maxmemory_samples
; k
++) {
1822 de
= dictGetRandomKey(dict
);
1823 thiskey
= dictGetKey(de
);
1824 thisval
= (long) dictGetVal(de
);
1826 /* Expire sooner (minor expire unix timestamp) is better
1827 * candidate for deletion */
1828 if (bestkey
== NULL
|| thisval
< bestval
) {
1835 /* Finally remove the selected key. */
1837 robj
*keyobj
= createStringObject(bestkey
,sdslen(bestkey
));
1838 propagateExpire(db
,keyobj
);
1839 dbDelete(db
,keyobj
);
1840 server
.stat_evictedkeys
++;
1841 decrRefCount(keyobj
);
1845 if (!freed
) return; /* nothing to free... */
1849 /* =================================== Main! ================================ */
1852 int linuxOvercommitMemoryValue(void) {
1853 FILE *fp
= fopen("/proc/sys/vm/overcommit_memory","r");
1857 if (fgets(buf
,64,fp
) == NULL
) {
1866 void linuxOvercommitMemoryWarning(void) {
1867 if (linuxOvercommitMemoryValue() == 0) {
1868 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.");
1871 #endif /* __linux__ */
1873 void createPidFile(void) {
1874 /* Try to write the pid file in a best-effort way. */
1875 FILE *fp
= fopen(server
.pidfile
,"w");
1877 fprintf(fp
,"%d\n",(int)getpid());
1882 void daemonize(void) {
1885 if (fork() != 0) exit(0); /* parent exits */
1886 setsid(); /* create a new session */
1888 /* Every output goes to /dev/null. If Redis is daemonized but
1889 * the 'logfile' is set to 'stdout' in the configuration file
1890 * it will not log at all. */
1891 if ((fd
= open("/dev/null", O_RDWR
, 0)) != -1) {
1892 dup2(fd
, STDIN_FILENO
);
1893 dup2(fd
, STDOUT_FILENO
);
1894 dup2(fd
, STDERR_FILENO
);
1895 if (fd
> STDERR_FILENO
) close(fd
);
1900 printf("Redis server version %s (%s:%d)\n", REDIS_VERSION
,
1901 redisGitSHA1(), atoi(redisGitDirty()) > 0);
1906 fprintf(stderr
,"Usage: ./redis-server [/path/to/redis.conf] [options]\n");
1907 fprintf(stderr
," ./redis-server - (read config from stdin)\n");
1908 fprintf(stderr
," ./redis-server -v or --version\n");
1909 fprintf(stderr
," ./redis-server -h or --help\n\n");
1910 fprintf(stderr
,"Examples:\n");
1911 fprintf(stderr
," ./redis-server (run the server with default conf)\n");
1912 fprintf(stderr
," ./redis-server /etc/redis/6379.conf\n");
1913 fprintf(stderr
," ./redis-server --port 7777\n");
1914 fprintf(stderr
," ./redis-server --port 7777 --slaveof 127.0.0.1 8888\n");
1915 fprintf(stderr
," ./redis-server /etc/myredis.conf --loglevel verbose\n");
1919 void redisAsciiArt(void) {
1920 #include "asciilogo.h"
1921 char *buf
= zmalloc(1024*16);
1923 snprintf(buf
,1024*16,ascii_logo
,
1926 strtol(redisGitDirty(),NULL
,10) > 0,
1927 (sizeof(long) == 8) ? "64" : "32",
1928 server
.cluster_enabled
? "cluster" : "stand alone",
1932 redisLogRaw(REDIS_NOTICE
|REDIS_LOG_RAW
,buf
);
1936 #ifdef HAVE_BACKTRACE
1937 static void *getMcontextEip(ucontext_t
*uc
) {
1938 #if defined(__FreeBSD__)
1939 return (void*) uc
->uc_mcontext
.mc_eip
;
1940 #elif defined(__dietlibc__)
1941 return (void*) uc
->uc_mcontext
.eip
;
1942 #elif defined(__APPLE__) && !defined(MAC_OS_X_VERSION_10_6)
1944 return (void*) uc
->uc_mcontext
->__ss
.__rip
;
1946 return (void*) uc
->uc_mcontext
->__ss
.__eip
;
1948 return (void*) uc
->uc_mcontext
->__ss
.__srr0
;
1950 #elif defined(__APPLE__) && defined(MAC_OS_X_VERSION_10_6)
1951 #if defined(_STRUCT_X86_THREAD_STATE64) && !defined(__i386__)
1952 return (void*) uc
->uc_mcontext
->__ss
.__rip
;
1954 return (void*) uc
->uc_mcontext
->__ss
.__eip
;
1956 #elif defined(__i386__)
1957 return (void*) uc
->uc_mcontext
.gregs
[14]; /* Linux 32 */
1958 #elif defined(__X86_64__) || defined(__x86_64__)
1959 return (void*) uc
->uc_mcontext
.gregs
[16]; /* Linux 64 */
1960 #elif defined(__ia64__) /* Linux IA64 */
1961 return (void*) uc
->uc_mcontext
.sc_ip
;
1967 void bugReportStart(void) {
1968 if (server
.bug_report_start
== 0) {
1969 redisLog(REDIS_WARNING
,
1970 "=== REDIS BUG REPORT START: Cut & paste starting from here ===");
1971 server
.bug_report_start
= 1;
1975 static void sigsegvHandler(int sig
, siginfo_t
*info
, void *secret
) {
1977 char **messages
= NULL
;
1978 int i
, trace_size
= 0;
1979 ucontext_t
*uc
= (ucontext_t
*) secret
;
1980 sds infostring
, clients
;
1981 struct sigaction act
;
1982 REDIS_NOTUSED(info
);
1985 redisLog(REDIS_WARNING
,
1986 " Redis %s crashed by signal: %d", REDIS_VERSION
, sig
);
1987 redisLog(REDIS_WARNING
,
1988 " Failed assertion: %s (%s:%d)", server
.assert_failed
,
1989 server
.assert_file
, server
.assert_line
);
1991 /* Generate the stack trace */
1992 trace_size
= backtrace(trace
, 100);
1994 /* overwrite sigaction with caller's address */
1995 if (getMcontextEip(uc
) != NULL
) {
1996 trace
[1] = getMcontextEip(uc
);
1998 messages
= backtrace_symbols(trace
, trace_size
);
1999 redisLog(REDIS_WARNING
, "--- STACK TRACE");
2000 for (i
=1; i
<trace_size
; ++i
)
2001 redisLog(REDIS_WARNING
,"%s", messages
[i
]);
2003 /* Log INFO and CLIENT LIST */
2004 redisLog(REDIS_WARNING
, "--- INFO OUTPUT");
2005 infostring
= genRedisInfoString("all");
2006 redisLogRaw(REDIS_WARNING
, infostring
);
2007 redisLog(REDIS_WARNING
, "--- CLIENT LIST OUTPUT");
2008 clients
= getAllClientsInfoString();
2009 redisLogRaw(REDIS_WARNING
, clients
);
2010 /* Don't sdsfree() strings to avoid a crash. Memory may be corrupted. */
2012 /* Log CURRENT CLIENT info */
2013 if (server
.current_client
) {
2014 redisClient
*cc
= server
.current_client
;
2018 redisLog(REDIS_WARNING
, "--- CURRENT CLIENT INFO");
2019 client
= getClientInfoString(cc
);
2020 redisLog(REDIS_WARNING
,"client: %s", client
);
2021 /* Missing sdsfree(client) to avoid crash if memory is corrupted. */
2022 for (j
= 0; j
< cc
->argc
; j
++) {
2025 decoded
= getDecodedObject(cc
->argv
[j
]);
2026 redisLog(REDIS_WARNING
,"argv[%d]: '%s'", j
, (char*)decoded
->ptr
);
2027 decrRefCount(decoded
);
2029 /* Check if the first argument, usually a key, is found inside the
2030 * selected DB, and if so print info about the associated object. */
2031 if (cc
->argc
>= 1) {
2035 key
= getDecodedObject(cc
->argv
[1]);
2036 de
= dictFind(cc
->db
->dict
, key
->ptr
);
2038 val
= dictGetVal(de
);
2039 redisLog(REDIS_WARNING
,"key '%s' found in DB containing the following object:", key
->ptr
);
2040 redisLogObjectDebugInfo(val
);
2046 redisLog(REDIS_WARNING
,
2047 "=== REDIS BUG REPORT END. Make sure to include from START to END. ===\n\n"
2048 " Please report the crash opening an issue on github:\n\n"
2049 " http://github.com/antirez/redis/issues\n\n"
2051 /* free(messages); Don't call free() with possibly corrupted memory. */
2052 if (server
.daemonize
) unlink(server
.pidfile
);
2054 /* Make sure we exit with the right signal at the end. So for instance
2055 * the core will be dumped if enabled. */
2056 sigemptyset (&act
.sa_mask
);
2057 /* When the SA_SIGINFO flag is set in sa_flags then sa_sigaction
2058 * is used. Otherwise, sa_handler is used */
2059 act
.sa_flags
= SA_NODEFER
| SA_ONSTACK
| SA_RESETHAND
;
2060 act
.sa_handler
= SIG_DFL
;
2061 sigaction (sig
, &act
, NULL
);
2064 #endif /* HAVE_BACKTRACE */
2066 static void sigtermHandler(int sig
) {
2069 redisLog(REDIS_WARNING
,"Received SIGTERM, scheduling shutdown...");
2070 server
.shutdown_asap
= 1;
2073 void setupSignalHandlers(void) {
2074 struct sigaction act
;
2076 /* When the SA_SIGINFO flag is set in sa_flags then sa_sigaction is used.
2077 * Otherwise, sa_handler is used. */
2078 sigemptyset(&act
.sa_mask
);
2079 act
.sa_flags
= SA_NODEFER
| SA_ONSTACK
| SA_RESETHAND
;
2080 act
.sa_handler
= sigtermHandler
;
2081 sigaction(SIGTERM
, &act
, NULL
);
2083 #ifdef HAVE_BACKTRACE
2084 sigemptyset(&act
.sa_mask
);
2085 act
.sa_flags
= SA_NODEFER
| SA_ONSTACK
| SA_RESETHAND
| SA_SIGINFO
;
2086 act
.sa_sigaction
= sigsegvHandler
;
2087 sigaction(SIGSEGV
, &act
, NULL
);
2088 sigaction(SIGBUS
, &act
, NULL
);
2089 sigaction(SIGFPE
, &act
, NULL
);
2090 sigaction(SIGILL
, &act
, NULL
);
2095 int main(int argc
, char **argv
) {
2098 zmalloc_enable_thread_safeness();
2101 int j
= 1; /* First option to parse in argv[] */
2102 sds options
= sdsempty();
2103 char *configfile
= NULL
;
2105 /* Handle special options --help and --version */
2106 if (strcmp(argv
[1], "-v") == 0 ||
2107 strcmp(argv
[1], "--version") == 0) version();
2108 if (strcmp(argv
[1], "--help") == 0 ||
2109 strcmp(argv
[1], "-h") == 0) usage();
2110 /* First argument is the config file name? */
2111 if (argv
[j
][0] != '-' || argv
[j
][1] != '-')
2112 configfile
= argv
[j
++];
2113 /* All the other options are parsed and conceptually appended to the
2114 * configuration file. For instance --port 6380 will generate the
2115 * string "port 6380\n" to be parsed after the actual file name
2116 * is parsed, if any. */
2118 if (argv
[j
][0] == '-' && argv
[j
][1] == '-') {
2120 if (sdslen(options
)) options
= sdscat(options
,"\n");
2121 options
= sdscat(options
,argv
[j
]+2);
2122 options
= sdscat(options
," ");
2124 /* Option argument */
2125 options
= sdscatrepr(options
,argv
[j
],strlen(argv
[j
]));
2126 options
= sdscat(options
," ");
2130 resetServerSaveParams();
2131 loadServerConfig(configfile
,options
);
2134 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'");
2136 if (server
.daemonize
) daemonize();
2138 if (server
.daemonize
) createPidFile();
2140 redisLog(REDIS_WARNING
,"Server started, Redis version " REDIS_VERSION
);
2142 linuxOvercommitMemoryWarning();
2145 if (server
.aof_state
== REDIS_AOF_ON
) {
2146 if (loadAppendOnlyFile(server
.aof_filename
) == REDIS_OK
)
2147 redisLog(REDIS_NOTICE
,"DB loaded from append only file: %.3f seconds",(float)(ustime()-start
)/1000000);
2149 if (rdbLoad(server
.rdb_filename
) == REDIS_OK
) {
2150 redisLog(REDIS_NOTICE
,"DB loaded from disk: %.3f seconds",
2151 (float)(ustime()-start
)/1000000);
2152 } else if (errno
!= ENOENT
) {
2153 redisLog(REDIS_WARNING
,"Fatal error loading the DB. Exiting.");
2157 if (server
.ipfd
> 0)
2158 redisLog(REDIS_NOTICE
,"The server is now ready to accept connections on port %d", server
.port
);
2159 if (server
.sofd
> 0)
2160 redisLog(REDIS_NOTICE
,"The server is now ready to accept connections at %s", server
.unixsocket
);
2161 aeSetBeforeSleepProc(server
.el
,beforeSleep
);
2163 aeDeleteEventLoop(server
.el
);