]> git.saurik.com Git - redis.git/blob - src/redis.c
9f5aa4dbf62c199ff58f17281ca295ec2810bb9f
[redis.git] / src / redis.c
1 /*
2 * Copyright (c) 2009-2010, Salvatore Sanfilippo <antirez at gmail dot com>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 *
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.
16 *
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.
28 */
29
30 #include "redis.h"
31 #include "slowlog.h"
32 #include "bio.h"
33
34 #include <time.h>
35 #include <signal.h>
36 #include <sys/wait.h>
37 #include <errno.h>
38 #include <assert.h>
39 #include <ctype.h>
40 #include <stdarg.h>
41 #include <arpa/inet.h>
42 #include <sys/stat.h>
43 #include <fcntl.h>
44 #include <sys/time.h>
45 #include <sys/resource.h>
46 #include <sys/uio.h>
47 #include <limits.h>
48 #include <float.h>
49 #include <math.h>
50 #include <sys/resource.h>
51
52 /* Our shared "common" objects */
53
54 struct sharedObjectsStruct shared;
55
56 /* Global vars that are actually used as constants. The following double
57 * values are used for double on-disk serialization, and are initialized
58 * at runtime to avoid strange compiler optimizations. */
59
60 double R_Zero, R_PosInf, R_NegInf, R_Nan;
61
62 /*================================= Globals ================================= */
63
64 /* Global vars */
65 struct redisServer server; /* server global state */
66 struct redisCommand *commandTable;
67
68 /* Our command table.
69 *
70 * Every entry is composed of the following fields:
71 *
72 * name: a string representing the command name.
73 * function: pointer to the C function implementing the command.
74 * arity: number of arguments, it is possible to use -N to say >= N
75 * sflags: command flags as string. See below for a table of flags.
76 * flags: flags as bitmask. Computed by Redis using the 'sflags' field.
77 * get_keys_proc: an optional function to get key arguments from a command.
78 * This is only used when the following three fields are not
79 * enough to specify what arguments are keys.
80 * first_key_index: first argument that is a key
81 * last_key_index: last argument that is a key
82 * key_step: step to get all the keys from first to last argument. For instance
83 * in MSET the step is two since arguments are key,val,key,val,...
84 * microseconds: microseconds of total execution time for this command.
85 * calls: total number of calls of this command.
86 *
87 * The flags, microseconds and calls fields are computed by Redis and should
88 * always be set to zero.
89 *
90 * Command flags are expressed using strings where every character represents
91 * a flag. Later the populateCommandTable() function will take care of
92 * populating the real 'flags' field using this characters.
93 *
94 * This is the meaning of the flags:
95 *
96 * w: write command (may modify the key space).
97 * r: read command (will never modify the key space).
98 * m: may increase memory usage once called. Don't allow if out of memory.
99 * a: admin command, like SAVE or SHUTDOWN.
100 * p: Pub/Sub related command.
101 * f: force replication of this command, regarless of server.dirty.
102 * s: command not allowed in scripts.
103 * R: random command. Command is not deterministic, that is, the same command
104 * with the same arguments, with the same key space, may have different
105 * results. For instance SPOP and RANDOMKEY are two random commands.
106 * S: Sort command output array if called from script, so that the output
107 * is deterministic.
108 */
109 struct redisCommand redisCommandTable[] = {
110 {"get",getCommand,2,"r",0,NULL,1,1,1,0,0},
111 {"set",setCommand,3,"wm",0,noPreloadGetKeys,1,1,1,0,0},
112 {"setnx",setnxCommand,3,"wm",0,noPreloadGetKeys,1,1,1,0,0},
113 {"setex",setexCommand,4,"wm",0,noPreloadGetKeys,1,1,1,0,0},
114 {"psetex",psetexCommand,4,"wm",0,noPreloadGetKeys,1,1,1,0,0},
115 {"append",appendCommand,3,"wm",0,NULL,1,1,1,0,0},
116 {"strlen",strlenCommand,2,"r",0,NULL,1,1,1,0,0},
117 {"del",delCommand,-2,"w",0,noPreloadGetKeys,1,-1,1,0,0},
118 {"exists",existsCommand,2,"r",0,NULL,1,1,1,0,0},
119 {"setbit",setbitCommand,4,"wm",0,NULL,1,1,1,0,0},
120 {"getbit",getbitCommand,3,"r",0,NULL,1,1,1,0,0},
121 {"setrange",setrangeCommand,4,"wm",0,NULL,1,1,1,0,0},
122 {"getrange",getrangeCommand,4,"r",0,NULL,1,1,1,0,0},
123 {"substr",getrangeCommand,4,"r",0,NULL,1,1,1,0,0},
124 {"incr",incrCommand,2,"wm",0,NULL,1,1,1,0,0},
125 {"decr",decrCommand,2,"wm",0,NULL,1,1,1,0,0},
126 {"mget",mgetCommand,-2,"r",0,NULL,1,-1,1,0,0},
127 {"rpush",rpushCommand,-3,"wm",0,NULL,1,1,1,0,0},
128 {"lpush",lpushCommand,-3,"wm",0,NULL,1,1,1,0,0},
129 {"rpushx",rpushxCommand,3,"wm",0,NULL,1,1,1,0,0},
130 {"lpushx",lpushxCommand,3,"wm",0,NULL,1,1,1,0,0},
131 {"linsert",linsertCommand,5,"wm",0,NULL,1,1,1,0,0},
132 {"rpop",rpopCommand,2,"w",0,NULL,1,1,1,0,0},
133 {"lpop",lpopCommand,2,"w",0,NULL,1,1,1,0,0},
134 {"brpop",brpopCommand,-3,"ws",0,NULL,1,1,1,0,0},
135 {"brpoplpush",brpoplpushCommand,4,"wms",0,NULL,1,2,1,0,0},
136 {"blpop",blpopCommand,-3,"ws",0,NULL,1,-2,1,0,0},
137 {"llen",llenCommand,2,"r",0,NULL,1,1,1,0,0},
138 {"lindex",lindexCommand,3,"r",0,NULL,1,1,1,0,0},
139 {"lset",lsetCommand,4,"wm",0,NULL,1,1,1,0,0},
140 {"lrange",lrangeCommand,4,"r",0,NULL,1,1,1,0,0},
141 {"ltrim",ltrimCommand,4,"w",0,NULL,1,1,1,0,0},
142 {"lrem",lremCommand,4,"w",0,NULL,1,1,1,0,0},
143 {"rpoplpush",rpoplpushCommand,3,"wm",0,NULL,1,2,1,0,0},
144 {"sadd",saddCommand,-3,"wm",0,NULL,1,1,1,0,0},
145 {"srem",sremCommand,-3,"w",0,NULL,1,1,1,0,0},
146 {"smove",smoveCommand,4,"w",0,NULL,1,2,1,0,0},
147 {"sismember",sismemberCommand,3,"r",0,NULL,1,1,1,0,0},
148 {"scard",scardCommand,2,"r",0,NULL,1,1,1,0,0},
149 {"spop",spopCommand,2,"wRs",0,NULL,1,1,1,0,0},
150 {"srandmember",srandmemberCommand,2,"rR",0,NULL,1,1,1,0,0},
151 {"sinter",sinterCommand,-2,"rS",0,NULL,1,-1,1,0,0},
152 {"sinterstore",sinterstoreCommand,-3,"wm",0,NULL,1,-1,1,0,0},
153 {"sunion",sunionCommand,-2,"rS",0,NULL,1,-1,1,0,0},
154 {"sunionstore",sunionstoreCommand,-3,"wm",0,NULL,1,-1,1,0,0},
155 {"sdiff",sdiffCommand,-2,"rS",0,NULL,1,-1,1,0,0},
156 {"sdiffstore",sdiffstoreCommand,-3,"wm",0,NULL,1,-1,1,0,0},
157 {"smembers",sinterCommand,2,"rS",0,NULL,1,1,1,0,0},
158 {"zadd",zaddCommand,-4,"wm",0,NULL,1,1,1,0,0},
159 {"zincrby",zincrbyCommand,4,"wm",0,NULL,1,1,1,0,0},
160 {"zrem",zremCommand,-3,"w",0,NULL,1,1,1,0,0},
161 {"zremrangebyscore",zremrangebyscoreCommand,4,"w",0,NULL,1,1,1,0,0},
162 {"zremrangebyrank",zremrangebyrankCommand,4,"w",0,NULL,1,1,1,0,0},
163 {"zunionstore",zunionstoreCommand,-4,"wm",0,zunionInterGetKeys,0,0,0,0,0},
164 {"zinterstore",zinterstoreCommand,-4,"wm",0,zunionInterGetKeys,0,0,0,0,0},
165 {"zrange",zrangeCommand,-4,"r",0,NULL,1,1,1,0,0},
166 {"zrangebyscore",zrangebyscoreCommand,-4,"r",0,NULL,1,1,1,0,0},
167 {"zrevrangebyscore",zrevrangebyscoreCommand,-4,"r",0,NULL,1,1,1,0,0},
168 {"zcount",zcountCommand,4,"r",0,NULL,1,1,1,0,0},
169 {"zrevrange",zrevrangeCommand,-4,"r",0,NULL,1,1,1,0,0},
170 {"zcard",zcardCommand,2,"r",0,NULL,1,1,1,0,0},
171 {"zscore",zscoreCommand,3,"r",0,NULL,1,1,1,0,0},
172 {"zrank",zrankCommand,3,"r",0,NULL,1,1,1,0,0},
173 {"zrevrank",zrevrankCommand,3,"r",0,NULL,1,1,1,0,0},
174 {"hset",hsetCommand,4,"wm",0,NULL,1,1,1,0,0},
175 {"hsetnx",hsetnxCommand,4,"wm",0,NULL,1,1,1,0,0},
176 {"hget",hgetCommand,3,"r",0,NULL,1,1,1,0,0},
177 {"hmset",hmsetCommand,-4,"wm",0,NULL,1,1,1,0,0},
178 {"hmget",hmgetCommand,-3,"r",0,NULL,1,1,1,0,0},
179 {"hincrby",hincrbyCommand,4,"wm",0,NULL,1,1,1,0,0},
180 {"hincrbyfloat",hincrbyfloatCommand,4,"wm",0,NULL,1,1,1,0,0},
181 {"hdel",hdelCommand,-3,"w",0,NULL,1,1,1,0,0},
182 {"hlen",hlenCommand,2,"r",0,NULL,1,1,1,0,0},
183 {"hkeys",hkeysCommand,2,"rS",0,NULL,1,1,1,0,0},
184 {"hvals",hvalsCommand,2,"rS",0,NULL,1,1,1,0,0},
185 {"hgetall",hgetallCommand,2,"r",0,NULL,1,1,1,0,0},
186 {"hexists",hexistsCommand,3,"r",0,NULL,1,1,1,0,0},
187 {"incrby",incrbyCommand,3,"wm",0,NULL,1,1,1,0,0},
188 {"decrby",decrbyCommand,3,"wm",0,NULL,1,1,1,0,0},
189 {"incrbyfloat",incrbyfloatCommand,3,"wm",0,NULL,1,1,1,0,0},
190 {"getset",getsetCommand,3,"wm",0,NULL,1,1,1,0,0},
191 {"mset",msetCommand,-3,"wm",0,NULL,1,-1,2,0,0},
192 {"msetnx",msetnxCommand,-3,"wm",0,NULL,1,-1,2,0,0},
193 {"randomkey",randomkeyCommand,1,"rR",0,NULL,0,0,0,0,0},
194 {"select",selectCommand,2,"r",0,NULL,0,0,0,0,0},
195 {"move",moveCommand,3,"w",0,NULL,1,1,1,0,0},
196 {"rename",renameCommand,3,"w",0,renameGetKeys,1,2,1,0,0},
197 {"renamenx",renamenxCommand,3,"w",0,renameGetKeys,1,2,1,0,0},
198 {"expire",expireCommand,3,"w",0,NULL,1,1,1,0,0},
199 {"expireat",expireatCommand,3,"w",0,NULL,1,1,1,0,0},
200 {"pexpire",pexpireCommand,3,"w",0,NULL,1,1,1,0,0},
201 {"pexpireat",pexpireatCommand,3,"w",0,NULL,1,1,1,0,0},
202 {"keys",keysCommand,2,"rS",0,NULL,0,0,0,0,0},
203 {"dbsize",dbsizeCommand,1,"r",0,NULL,0,0,0,0,0},
204 {"auth",authCommand,2,"rs",0,NULL,0,0,0,0,0},
205 {"ping",pingCommand,1,"r",0,NULL,0,0,0,0,0},
206 {"echo",echoCommand,2,"r",0,NULL,0,0,0,0,0},
207 {"save",saveCommand,1,"ars",0,NULL,0,0,0,0,0},
208 {"bgsave",bgsaveCommand,1,"ar",0,NULL,0,0,0,0,0},
209 {"bgrewriteaof",bgrewriteaofCommand,1,"ar",0,NULL,0,0,0,0,0},
210 {"shutdown",shutdownCommand,-1,"ar",0,NULL,0,0,0,0,0},
211 {"lastsave",lastsaveCommand,1,"r",0,NULL,0,0,0,0,0},
212 {"type",typeCommand,2,"r",0,NULL,1,1,1,0,0},
213 {"multi",multiCommand,1,"rs",0,NULL,0,0,0,0,0},
214 {"exec",execCommand,1,"wms",0,NULL,0,0,0,0,0},
215 {"discard",discardCommand,1,"rs",0,NULL,0,0,0,0,0},
216 {"sync",syncCommand,1,"ars",0,NULL,0,0,0,0,0},
217 {"flushdb",flushdbCommand,1,"w",0,NULL,0,0,0,0,0},
218 {"flushall",flushallCommand,1,"w",0,NULL,0,0,0,0,0},
219 {"sort",sortCommand,-2,"wmS",0,NULL,1,1,1,0,0},
220 {"info",infoCommand,-1,"r",0,NULL,0,0,0,0,0},
221 {"monitor",monitorCommand,1,"ars",0,NULL,0,0,0,0,0},
222 {"ttl",ttlCommand,2,"r",0,NULL,1,1,1,0,0},
223 {"pttl",pttlCommand,2,"r",0,NULL,1,1,1,0,0},
224 {"persist",persistCommand,2,"w",0,NULL,1,1,1,0,0},
225 {"slaveof",slaveofCommand,3,"aws",0,NULL,0,0,0,0,0},
226 {"debug",debugCommand,-2,"aws",0,NULL,0,0,0,0,0},
227 {"config",configCommand,-2,"ar",0,NULL,0,0,0,0,0},
228 {"subscribe",subscribeCommand,-2,"rps",0,NULL,0,0,0,0,0},
229 {"unsubscribe",unsubscribeCommand,-1,"rps",0,NULL,0,0,0,0,0},
230 {"psubscribe",psubscribeCommand,-2,"rps",0,NULL,0,0,0,0,0},
231 {"punsubscribe",punsubscribeCommand,-1,"rps",0,NULL,0,0,0,0,0},
232 {"publish",publishCommand,3,"rpf",0,NULL,0,0,0,0,0},
233 {"watch",watchCommand,-2,"rs",0,noPreloadGetKeys,1,-1,1,0,0},
234 {"unwatch",unwatchCommand,1,"rs",0,NULL,0,0,0,0,0},
235 {"cluster",clusterCommand,-2,"ar",0,NULL,0,0,0,0,0},
236 {"restore",restoreCommand,4,"awm",0,NULL,1,1,1,0,0},
237 {"migrate",migrateCommand,6,"aw",0,NULL,0,0,0,0,0},
238 {"asking",askingCommand,1,"r",0,NULL,0,0,0,0,0},
239 {"dump",dumpCommand,2,"ar",0,NULL,1,1,1,0,0},
240 {"object",objectCommand,-2,"r",0,NULL,2,2,2,0,0},
241 {"client",clientCommand,-2,"ar",0,NULL,0,0,0,0,0},
242 {"eval",evalCommand,-3,"wms",0,zunionInterGetKeys,0,0,0,0,0},
243 {"evalsha",evalShaCommand,-3,"wms",0,zunionInterGetKeys,0,0,0,0,0},
244 {"slowlog",slowlogCommand,-2,"r",0,NULL,0,0,0,0,0},
245 {"script",scriptCommand,-2,"ras",0,NULL,0,0,0,0,0}
246 };
247
248 /*============================ Utility functions ============================ */
249
250 /* Low level logging. To use only for very big messages, otherwise
251 * redisLog() is to prefer. */
252 void redisLogRaw(int level, const char *msg) {
253 const int syslogLevelMap[] = { LOG_DEBUG, LOG_INFO, LOG_NOTICE, LOG_WARNING };
254 const char *c = ".-*#";
255 time_t now = time(NULL);
256 FILE *fp;
257 char buf[64];
258 int rawmode = (level & REDIS_LOG_RAW);
259
260 level &= 0xff; /* clear flags */
261 if (level < server.verbosity) return;
262
263 fp = (server.logfile == NULL) ? stdout : fopen(server.logfile,"a");
264 if (!fp) return;
265
266 if (rawmode) {
267 fprintf(fp,"%s",msg);
268 } else {
269 strftime(buf,sizeof(buf),"%d %b %H:%M:%S",localtime(&now));
270 fprintf(fp,"[%d] %s %c %s\n",(int)getpid(),buf,c[level],msg);
271 }
272 fflush(fp);
273
274 if (server.logfile) fclose(fp);
275
276 if (server.syslog_enabled) syslog(syslogLevelMap[level], "%s", msg);
277 }
278
279 /* Like redisLogRaw() but with printf-alike support. This is the funciton that
280 * is used across the code. The raw version is only used in order to dump
281 * the INFO output on crash. */
282 void redisLog(int level, const char *fmt, ...) {
283 va_list ap;
284 char msg[REDIS_MAX_LOGMSG_LEN];
285
286 if ((level&0xff) < server.verbosity) return;
287
288 va_start(ap, fmt);
289 vsnprintf(msg, sizeof(msg), fmt, ap);
290 va_end(ap);
291
292 redisLogRaw(level,msg);
293 }
294
295 /* Redis generally does not try to recover from out of memory conditions
296 * when allocating objects or strings, it is not clear if it will be possible
297 * to report this condition to the client since the networking layer itself
298 * is based on heap allocation for send buffers, so we simply abort.
299 * At least the code will be simpler to read... */
300 void oom(const char *msg) {
301 redisLog(REDIS_WARNING, "%s: Out of memory\n",msg);
302 sleep(1);
303 abort();
304 }
305
306 /* Return the UNIX time in microseconds */
307 long long ustime(void) {
308 struct timeval tv;
309 long long ust;
310
311 gettimeofday(&tv, NULL);
312 ust = ((long long)tv.tv_sec)*1000000;
313 ust += tv.tv_usec;
314 return ust;
315 }
316
317 /* Return the UNIX time in milliseconds */
318 long long mstime(void) {
319 return ustime()/1000;
320 }
321
322 /*====================== Hash table type implementation ==================== */
323
324 /* This is an hash table type that uses the SDS dynamic strings libary as
325 * keys and radis objects as values (objects can hold SDS strings,
326 * lists, sets). */
327
328 void dictVanillaFree(void *privdata, void *val)
329 {
330 DICT_NOTUSED(privdata);
331 zfree(val);
332 }
333
334 void dictListDestructor(void *privdata, void *val)
335 {
336 DICT_NOTUSED(privdata);
337 listRelease((list*)val);
338 }
339
340 int dictSdsKeyCompare(void *privdata, const void *key1,
341 const void *key2)
342 {
343 int l1,l2;
344 DICT_NOTUSED(privdata);
345
346 l1 = sdslen((sds)key1);
347 l2 = sdslen((sds)key2);
348 if (l1 != l2) return 0;
349 return memcmp(key1, key2, l1) == 0;
350 }
351
352 /* A case insensitive version used for the command lookup table. */
353 int dictSdsKeyCaseCompare(void *privdata, const void *key1,
354 const void *key2)
355 {
356 DICT_NOTUSED(privdata);
357
358 return strcasecmp(key1, key2) == 0;
359 }
360
361 void dictRedisObjectDestructor(void *privdata, void *val)
362 {
363 DICT_NOTUSED(privdata);
364
365 if (val == NULL) return; /* Values of swapped out keys as set to NULL */
366 decrRefCount(val);
367 }
368
369 void dictSdsDestructor(void *privdata, void *val)
370 {
371 DICT_NOTUSED(privdata);
372
373 sdsfree(val);
374 }
375
376 int dictObjKeyCompare(void *privdata, const void *key1,
377 const void *key2)
378 {
379 const robj *o1 = key1, *o2 = key2;
380 return dictSdsKeyCompare(privdata,o1->ptr,o2->ptr);
381 }
382
383 unsigned int dictObjHash(const void *key) {
384 const robj *o = key;
385 return dictGenHashFunction(o->ptr, sdslen((sds)o->ptr));
386 }
387
388 unsigned int dictSdsHash(const void *key) {
389 return dictGenHashFunction((unsigned char*)key, sdslen((char*)key));
390 }
391
392 unsigned int dictSdsCaseHash(const void *key) {
393 return dictGenCaseHashFunction((unsigned char*)key, sdslen((char*)key));
394 }
395
396 int dictEncObjKeyCompare(void *privdata, const void *key1,
397 const void *key2)
398 {
399 robj *o1 = (robj*) key1, *o2 = (robj*) key2;
400 int cmp;
401
402 if (o1->encoding == REDIS_ENCODING_INT &&
403 o2->encoding == REDIS_ENCODING_INT)
404 return o1->ptr == o2->ptr;
405
406 o1 = getDecodedObject(o1);
407 o2 = getDecodedObject(o2);
408 cmp = dictSdsKeyCompare(privdata,o1->ptr,o2->ptr);
409 decrRefCount(o1);
410 decrRefCount(o2);
411 return cmp;
412 }
413
414 unsigned int dictEncObjHash(const void *key) {
415 robj *o = (robj*) key;
416
417 if (o->encoding == REDIS_ENCODING_RAW) {
418 return dictGenHashFunction(o->ptr, sdslen((sds)o->ptr));
419 } else {
420 if (o->encoding == REDIS_ENCODING_INT) {
421 char buf[32];
422 int len;
423
424 len = ll2string(buf,32,(long)o->ptr);
425 return dictGenHashFunction((unsigned char*)buf, len);
426 } else {
427 unsigned int hash;
428
429 o = getDecodedObject(o);
430 hash = dictGenHashFunction(o->ptr, sdslen((sds)o->ptr));
431 decrRefCount(o);
432 return hash;
433 }
434 }
435 }
436
437 /* Sets type hash table */
438 dictType setDictType = {
439 dictEncObjHash, /* hash function */
440 NULL, /* key dup */
441 NULL, /* val dup */
442 dictEncObjKeyCompare, /* key compare */
443 dictRedisObjectDestructor, /* key destructor */
444 NULL /* val destructor */
445 };
446
447 /* Sorted sets hash (note: a skiplist is used in addition to the hash table) */
448 dictType zsetDictType = {
449 dictEncObjHash, /* hash function */
450 NULL, /* key dup */
451 NULL, /* val dup */
452 dictEncObjKeyCompare, /* key compare */
453 dictRedisObjectDestructor, /* key destructor */
454 NULL /* val destructor */
455 };
456
457 /* Db->dict, keys are sds strings, vals are Redis objects. */
458 dictType dbDictType = {
459 dictSdsHash, /* hash function */
460 NULL, /* key dup */
461 NULL, /* val dup */
462 dictSdsKeyCompare, /* key compare */
463 dictSdsDestructor, /* key destructor */
464 dictRedisObjectDestructor /* val destructor */
465 };
466
467 /* Db->expires */
468 dictType keyptrDictType = {
469 dictSdsHash, /* hash function */
470 NULL, /* key dup */
471 NULL, /* val dup */
472 dictSdsKeyCompare, /* key compare */
473 NULL, /* key destructor */
474 NULL /* val destructor */
475 };
476
477 /* Command table. sds string -> command struct pointer. */
478 dictType commandTableDictType = {
479 dictSdsCaseHash, /* hash function */
480 NULL, /* key dup */
481 NULL, /* val dup */
482 dictSdsKeyCaseCompare, /* key compare */
483 dictSdsDestructor, /* key destructor */
484 NULL /* val destructor */
485 };
486
487 /* Hash type hash table (note that small hashes are represented with zimpaps) */
488 dictType hashDictType = {
489 dictEncObjHash, /* hash function */
490 NULL, /* key dup */
491 NULL, /* val dup */
492 dictEncObjKeyCompare, /* key compare */
493 dictRedisObjectDestructor, /* key destructor */
494 dictRedisObjectDestructor /* val destructor */
495 };
496
497 /* Keylist hash table type has unencoded redis objects as keys and
498 * lists as values. It's used for blocking operations (BLPOP) and to
499 * map swapped keys to a list of clients waiting for this keys to be loaded. */
500 dictType keylistDictType = {
501 dictObjHash, /* hash function */
502 NULL, /* key dup */
503 NULL, /* val dup */
504 dictObjKeyCompare, /* key compare */
505 dictRedisObjectDestructor, /* key destructor */
506 dictListDestructor /* val destructor */
507 };
508
509 /* Cluster nodes hash table, mapping nodes addresses 1.2.3.4:6379 to
510 * clusterNode structures. */
511 dictType clusterNodesDictType = {
512 dictSdsHash, /* hash function */
513 NULL, /* key dup */
514 NULL, /* val dup */
515 dictSdsKeyCompare, /* key compare */
516 dictSdsDestructor, /* key destructor */
517 NULL /* val destructor */
518 };
519
520 int htNeedsResize(dict *dict) {
521 long long size, used;
522
523 size = dictSlots(dict);
524 used = dictSize(dict);
525 return (size && used && size > DICT_HT_INITIAL_SIZE &&
526 (used*100/size < REDIS_HT_MINFILL));
527 }
528
529 /* If the percentage of used slots in the HT reaches REDIS_HT_MINFILL
530 * we resize the hash table to save memory */
531 void tryResizeHashTables(void) {
532 int j;
533
534 for (j = 0; j < server.dbnum; j++) {
535 if (htNeedsResize(server.db[j].dict))
536 dictResize(server.db[j].dict);
537 if (htNeedsResize(server.db[j].expires))
538 dictResize(server.db[j].expires);
539 }
540 }
541
542 /* Our hash table implementation performs rehashing incrementally while
543 * we write/read from the hash table. Still if the server is idle, the hash
544 * table will use two tables for a long time. So we try to use 1 millisecond
545 * of CPU time at every serverCron() loop in order to rehash some key. */
546 void incrementallyRehash(void) {
547 int j;
548
549 for (j = 0; j < server.dbnum; j++) {
550 if (dictIsRehashing(server.db[j].dict)) {
551 dictRehashMilliseconds(server.db[j].dict,1);
552 break; /* already used our millisecond for this loop... */
553 }
554 }
555 }
556
557 /* This function is called once a background process of some kind terminates,
558 * as we want to avoid resizing the hash tables when there is a child in order
559 * to play well with copy-on-write (otherwise when a resize happens lots of
560 * memory pages are copied). The goal of this function is to update the ability
561 * for dict.c to resize the hash tables accordingly to the fact we have o not
562 * running childs. */
563 void updateDictResizePolicy(void) {
564 if (server.rdb_child_pid == -1 && server.aof_child_pid == -1)
565 dictEnableResize();
566 else
567 dictDisableResize();
568 }
569
570 /* ======================= Cron: called every 100 ms ======================== */
571
572 /* Try to expire a few timed out keys. The algorithm used is adaptive and
573 * will use few CPU cycles if there are few expiring keys, otherwise
574 * it will get more aggressive to avoid that too much memory is used by
575 * keys that can be removed from the keyspace. */
576 void activeExpireCycle(void) {
577 int j;
578
579 for (j = 0; j < server.dbnum; j++) {
580 int expired;
581 redisDb *db = server.db+j;
582
583 /* Continue to expire if at the end of the cycle more than 25%
584 * of the keys were expired. */
585 do {
586 long num = dictSize(db->expires);
587 long long now = mstime();
588
589 expired = 0;
590 if (num > REDIS_EXPIRELOOKUPS_PER_CRON)
591 num = REDIS_EXPIRELOOKUPS_PER_CRON;
592 while (num--) {
593 dictEntry *de;
594 long long t;
595
596 if ((de = dictGetRandomKey(db->expires)) == NULL) break;
597 t = dictGetSignedIntegerVal(de);
598 if (now > t) {
599 sds key = dictGetKey(de);
600 robj *keyobj = createStringObject(key,sdslen(key));
601
602 propagateExpire(db,keyobj);
603 dbDelete(db,keyobj);
604 decrRefCount(keyobj);
605 expired++;
606 server.stat_expiredkeys++;
607 }
608 }
609 } while (expired > REDIS_EXPIRELOOKUPS_PER_CRON/4);
610 }
611 }
612
613 void updateLRUClock(void) {
614 server.lruclock = (time(NULL)/REDIS_LRU_CLOCK_RESOLUTION) &
615 REDIS_LRU_CLOCK_MAX;
616 }
617
618 int serverCron(struct aeEventLoop *eventLoop, long long id, void *clientData) {
619 int j, loops = server.cronloops;
620 REDIS_NOTUSED(eventLoop);
621 REDIS_NOTUSED(id);
622 REDIS_NOTUSED(clientData);
623
624 /* We take a cached value of the unix time in the global state because
625 * with virtual memory and aging there is to store the current time
626 * in objects at every object access, and accuracy is not needed.
627 * To access a global var is faster than calling time(NULL) */
628 server.unixtime = time(NULL);
629
630 /* We have just 22 bits per object for LRU information.
631 * So we use an (eventually wrapping) LRU clock with 10 seconds resolution.
632 * 2^22 bits with 10 seconds resoluton is more or less 1.5 years.
633 *
634 * Note that even if this will wrap after 1.5 years it's not a problem,
635 * everything will still work but just some object will appear younger
636 * to Redis. But for this to happen a given object should never be touched
637 * for 1.5 years.
638 *
639 * Note that you can change the resolution altering the
640 * REDIS_LRU_CLOCK_RESOLUTION define.
641 */
642 updateLRUClock();
643
644 /* Record the max memory used since the server was started. */
645 if (zmalloc_used_memory() > server.stat_peak_memory)
646 server.stat_peak_memory = zmalloc_used_memory();
647
648 /* We received a SIGTERM, shutting down here in a safe way, as it is
649 * not ok doing so inside the signal handler. */
650 if (server.shutdown_asap) {
651 if (prepareForShutdown(0) == REDIS_OK) exit(0);
652 redisLog(REDIS_WARNING,"SIGTERM received but errors trying to shut down the server, check the logs for more information");
653 }
654
655 /* Show some info about non-empty databases */
656 for (j = 0; j < server.dbnum; j++) {
657 long long size, used, vkeys;
658
659 size = dictSlots(server.db[j].dict);
660 used = dictSize(server.db[j].dict);
661 vkeys = dictSize(server.db[j].expires);
662 if (!(loops % 50) && (used || vkeys)) {
663 redisLog(REDIS_VERBOSE,"DB %d: %lld keys (%lld volatile) in %lld slots HT.",j,used,vkeys,size);
664 /* dictPrintStats(server.dict); */
665 }
666 }
667
668 /* We don't want to resize the hash tables while a bacground saving
669 * is in progress: the saving child is created using fork() that is
670 * implemented with a copy-on-write semantic in most modern systems, so
671 * if we resize the HT while there is the saving child at work actually
672 * a lot of memory movements in the parent will cause a lot of pages
673 * copied. */
674 if (server.rdb_child_pid == -1 && server.aof_child_pid == -1) {
675 if (!(loops % 10)) tryResizeHashTables();
676 if (server.activerehashing) incrementallyRehash();
677 }
678
679 /* Show information about connected clients */
680 if (!(loops % 50)) {
681 redisLog(REDIS_VERBOSE,"%d clients connected (%d slaves), %zu bytes in use",
682 listLength(server.clients)-listLength(server.slaves),
683 listLength(server.slaves),
684 zmalloc_used_memory());
685 }
686
687 /* Close connections of timedout clients */
688 if ((server.maxidletime && !(loops % 100)) || server.bpop_blocked_clients)
689 closeTimedoutClients();
690
691 /* Start a scheduled AOF rewrite if this was requested by the user while
692 * a BGSAVE was in progress. */
693 if (server.rdb_child_pid == -1 && server.aof_child_pid == -1 &&
694 server.aof_rewrite_scheduled)
695 {
696 rewriteAppendOnlyFileBackground();
697 }
698
699 /* Check if a background saving or AOF rewrite in progress terminated. */
700 if (server.rdb_child_pid != -1 || server.aof_child_pid != -1) {
701 int statloc;
702 pid_t pid;
703
704 if ((pid = wait3(&statloc,WNOHANG,NULL)) != 0) {
705 int exitcode = WEXITSTATUS(statloc);
706 int bysignal = 0;
707
708 if (WIFSIGNALED(statloc)) bysignal = WTERMSIG(statloc);
709
710 if (pid == server.rdb_child_pid) {
711 backgroundSaveDoneHandler(exitcode,bysignal);
712 } else {
713 backgroundRewriteDoneHandler(exitcode,bysignal);
714 }
715 updateDictResizePolicy();
716 }
717 } else {
718 time_t now = time(NULL);
719
720 /* If there is not a background saving/rewrite in progress check if
721 * we have to save/rewrite now */
722 for (j = 0; j < server.saveparamslen; j++) {
723 struct saveparam *sp = server.saveparams+j;
724
725 if (server.dirty >= sp->changes &&
726 now-server.lastsave > sp->seconds) {
727 redisLog(REDIS_NOTICE,"%d changes in %d seconds. Saving...",
728 sp->changes, sp->seconds);
729 rdbSaveBackground(server.rdb_filename);
730 break;
731 }
732 }
733
734 /* Trigger an AOF rewrite if needed */
735 if (server.rdb_child_pid == -1 &&
736 server.aof_child_pid == -1 &&
737 server.aof_rewrite_perc &&
738 server.aof_current_size > server.aof_rewrite_min_size)
739 {
740 long long base = server.aof_rewrite_base_size ?
741 server.aof_rewrite_base_size : 1;
742 long long growth = (server.aof_current_size*100/base) - 100;
743 if (growth >= server.aof_rewrite_perc) {
744 redisLog(REDIS_NOTICE,"Starting automatic rewriting of AOF on %lld%% growth",growth);
745 rewriteAppendOnlyFileBackground();
746 }
747 }
748 }
749
750
751 /* If we postponed an AOF buffer flush, let's try to do it every time the
752 * cron function is called. */
753 if (server.aof_flush_postponed_start) flushAppendOnlyFile(0);
754
755 /* Expire a few keys per cycle, only if this is a master.
756 * On slaves we wait for DEL operations synthesized by the master
757 * in order to guarantee a strict consistency. */
758 if (server.masterhost == NULL) activeExpireCycle();
759
760 /* Close clients that need to be closed asynchronous */
761 freeClientsInAsyncFreeQueue();
762
763 /* Replication cron function -- used to reconnect to master and
764 * to detect transfer failures. */
765 if (!(loops % 10)) replicationCron();
766
767 /* Run other sub-systems specific cron jobs */
768 if (server.cluster_enabled && !(loops % 10)) clusterCron();
769
770 server.cronloops++;
771 return 100;
772 }
773
774 /* This function gets called every time Redis is entering the
775 * main loop of the event driven library, that is, before to sleep
776 * for ready file descriptors. */
777 void beforeSleep(struct aeEventLoop *eventLoop) {
778 REDIS_NOTUSED(eventLoop);
779 listNode *ln;
780 redisClient *c;
781
782 /* Try to process pending commands for clients that were just unblocked. */
783 while (listLength(server.unblocked_clients)) {
784 ln = listFirst(server.unblocked_clients);
785 redisAssert(ln != NULL);
786 c = ln->value;
787 listDelNode(server.unblocked_clients,ln);
788 c->flags &= ~REDIS_UNBLOCKED;
789
790 /* Process remaining data in the input buffer. */
791 if (c->querybuf && sdslen(c->querybuf) > 0) {
792 server.current_client = c;
793 processInputBuffer(c);
794 server.current_client = NULL;
795 }
796 }
797
798 /* Write the AOF buffer on disk */
799 flushAppendOnlyFile(0);
800 }
801
802 /* =========================== Server initialization ======================== */
803
804 void createSharedObjects(void) {
805 int j;
806
807 shared.crlf = createObject(REDIS_STRING,sdsnew("\r\n"));
808 shared.ok = createObject(REDIS_STRING,sdsnew("+OK\r\n"));
809 shared.err = createObject(REDIS_STRING,sdsnew("-ERR\r\n"));
810 shared.emptybulk = createObject(REDIS_STRING,sdsnew("$0\r\n\r\n"));
811 shared.czero = createObject(REDIS_STRING,sdsnew(":0\r\n"));
812 shared.cone = createObject(REDIS_STRING,sdsnew(":1\r\n"));
813 shared.cnegone = createObject(REDIS_STRING,sdsnew(":-1\r\n"));
814 shared.nullbulk = createObject(REDIS_STRING,sdsnew("$-1\r\n"));
815 shared.nullmultibulk = createObject(REDIS_STRING,sdsnew("*-1\r\n"));
816 shared.emptymultibulk = createObject(REDIS_STRING,sdsnew("*0\r\n"));
817 shared.pong = createObject(REDIS_STRING,sdsnew("+PONG\r\n"));
818 shared.queued = createObject(REDIS_STRING,sdsnew("+QUEUED\r\n"));
819 shared.wrongtypeerr = createObject(REDIS_STRING,sdsnew(
820 "-ERR Operation against a key holding the wrong kind of value\r\n"));
821 shared.nokeyerr = createObject(REDIS_STRING,sdsnew(
822 "-ERR no such key\r\n"));
823 shared.syntaxerr = createObject(REDIS_STRING,sdsnew(
824 "-ERR syntax error\r\n"));
825 shared.sameobjecterr = createObject(REDIS_STRING,sdsnew(
826 "-ERR source and destination objects are the same\r\n"));
827 shared.outofrangeerr = createObject(REDIS_STRING,sdsnew(
828 "-ERR index out of range\r\n"));
829 shared.noscripterr = createObject(REDIS_STRING,sdsnew(
830 "-NOSCRIPT No matching script. Please use EVAL.\r\n"));
831 shared.loadingerr = createObject(REDIS_STRING,sdsnew(
832 "-LOADING Redis is loading the dataset in memory\r\n"));
833 shared.slowscripterr = createObject(REDIS_STRING,sdsnew(
834 "-BUSY Redis is busy running a script. You can only call SCRIPT KILL or SHUTDOWN NOSAVE.\r\n"));
835 shared.space = createObject(REDIS_STRING,sdsnew(" "));
836 shared.colon = createObject(REDIS_STRING,sdsnew(":"));
837 shared.plus = createObject(REDIS_STRING,sdsnew("+"));
838 shared.select0 = createStringObject("select 0\r\n",10);
839 shared.select1 = createStringObject("select 1\r\n",10);
840 shared.select2 = createStringObject("select 2\r\n",10);
841 shared.select3 = createStringObject("select 3\r\n",10);
842 shared.select4 = createStringObject("select 4\r\n",10);
843 shared.select5 = createStringObject("select 5\r\n",10);
844 shared.select6 = createStringObject("select 6\r\n",10);
845 shared.select7 = createStringObject("select 7\r\n",10);
846 shared.select8 = createStringObject("select 8\r\n",10);
847 shared.select9 = createStringObject("select 9\r\n",10);
848 shared.messagebulk = createStringObject("$7\r\nmessage\r\n",13);
849 shared.pmessagebulk = createStringObject("$8\r\npmessage\r\n",14);
850 shared.subscribebulk = createStringObject("$9\r\nsubscribe\r\n",15);
851 shared.unsubscribebulk = createStringObject("$11\r\nunsubscribe\r\n",18);
852 shared.psubscribebulk = createStringObject("$10\r\npsubscribe\r\n",17);
853 shared.punsubscribebulk = createStringObject("$12\r\npunsubscribe\r\n",19);
854 shared.mbulk3 = createStringObject("*3\r\n",4);
855 shared.mbulk4 = createStringObject("*4\r\n",4);
856 for (j = 0; j < REDIS_SHARED_INTEGERS; j++) {
857 shared.integers[j] = createObject(REDIS_STRING,(void*)(long)j);
858 shared.integers[j]->encoding = REDIS_ENCODING_INT;
859 }
860 }
861
862 void initServerConfig() {
863 server.arch_bits = (sizeof(long) == 8) ? 64 : 32;
864 server.port = REDIS_SERVERPORT;
865 server.bindaddr = NULL;
866 server.unixsocket = NULL;
867 server.unixsocketperm = 0;
868 server.ipfd = -1;
869 server.sofd = -1;
870 server.dbnum = REDIS_DEFAULT_DBNUM;
871 server.verbosity = REDIS_NOTICE;
872 server.maxidletime = REDIS_MAXIDLETIME;
873 server.client_max_querybuf_len = REDIS_MAX_QUERYBUF_LEN;
874 server.saveparams = NULL;
875 server.loading = 0;
876 server.logfile = NULL; /* NULL = log on standard output */
877 server.syslog_enabled = 0;
878 server.syslog_ident = zstrdup("redis");
879 server.syslog_facility = LOG_LOCAL0;
880 server.daemonize = 0;
881 server.aof_state = REDIS_AOF_OFF;
882 server.aof_fsync = AOF_FSYNC_EVERYSEC;
883 server.aof_no_fsync_on_rewrite = 0;
884 server.aof_rewrite_perc = REDIS_AOF_REWRITE_PERC;
885 server.aof_rewrite_min_size = REDIS_AOF_REWRITE_MIN_SIZE;
886 server.aof_rewrite_base_size = 0;
887 server.aof_rewrite_scheduled = 0;
888 server.aof_last_fsync = time(NULL);
889 server.aof_fd = -1;
890 server.aof_selected_db = -1; /* Make sure the first time will not match */
891 server.aof_flush_postponed_start = 0;
892 server.pidfile = zstrdup("/var/run/redis.pid");
893 server.rdb_filename = zstrdup("dump.rdb");
894 server.aof_filename = zstrdup("appendonly.aof");
895 server.requirepass = NULL;
896 server.rdb_compression = 1;
897 server.activerehashing = 1;
898 server.maxclients = REDIS_MAX_CLIENTS;
899 server.bpop_blocked_clients = 0;
900 server.maxmemory = 0;
901 server.maxmemory_policy = REDIS_MAXMEMORY_VOLATILE_LRU;
902 server.maxmemory_samples = 3;
903 server.hash_max_zipmap_entries = REDIS_HASH_MAX_ZIPMAP_ENTRIES;
904 server.hash_max_zipmap_value = REDIS_HASH_MAX_ZIPMAP_VALUE;
905 server.list_max_ziplist_entries = REDIS_LIST_MAX_ZIPLIST_ENTRIES;
906 server.list_max_ziplist_value = REDIS_LIST_MAX_ZIPLIST_VALUE;
907 server.set_max_intset_entries = REDIS_SET_MAX_INTSET_ENTRIES;
908 server.zset_max_ziplist_entries = REDIS_ZSET_MAX_ZIPLIST_ENTRIES;
909 server.zset_max_ziplist_value = REDIS_ZSET_MAX_ZIPLIST_VALUE;
910 server.shutdown_asap = 0;
911 server.repl_ping_slave_period = REDIS_REPL_PING_SLAVE_PERIOD;
912 server.repl_timeout = REDIS_REPL_TIMEOUT;
913 server.cluster_enabled = 0;
914 server.cluster.configfile = zstrdup("nodes.conf");
915 server.lua_caller = NULL;
916 server.lua_time_limit = REDIS_LUA_TIME_LIMIT;
917 server.lua_client = NULL;
918 server.lua_timedout = 0;
919
920 updateLRUClock();
921 resetServerSaveParams();
922
923 appendServerSaveParams(60*60,1); /* save after 1 hour and 1 change */
924 appendServerSaveParams(300,100); /* save after 5 minutes and 100 changes */
925 appendServerSaveParams(60,10000); /* save after 1 minute and 10000 changes */
926 /* Replication related */
927 server.masterauth = NULL;
928 server.masterhost = NULL;
929 server.masterport = 6379;
930 server.master = NULL;
931 server.repl_state = REDIS_REPL_NONE;
932 server.repl_syncio_timeout = REDIS_REPL_SYNCIO_TIMEOUT;
933 server.repl_serve_stale_data = 1;
934 server.repl_down_since = -1;
935
936 /* Client output buffer limits */
937 server.client_obuf_limits[REDIS_CLIENT_LIMIT_CLASS_NORMAL].hard_limit_bytes = 0;
938 server.client_obuf_limits[REDIS_CLIENT_LIMIT_CLASS_NORMAL].soft_limit_bytes = 0;
939 server.client_obuf_limits[REDIS_CLIENT_LIMIT_CLASS_NORMAL].soft_limit_seconds = 0;
940 server.client_obuf_limits[REDIS_CLIENT_LIMIT_CLASS_SLAVE].hard_limit_bytes = 1024*1024*256;
941 server.client_obuf_limits[REDIS_CLIENT_LIMIT_CLASS_SLAVE].soft_limit_bytes = 1024*1024*64;
942 server.client_obuf_limits[REDIS_CLIENT_LIMIT_CLASS_SLAVE].soft_limit_seconds = 60;
943 server.client_obuf_limits[REDIS_CLIENT_LIMIT_CLASS_PUBSUB].hard_limit_bytes = 1024*1024*32;
944 server.client_obuf_limits[REDIS_CLIENT_LIMIT_CLASS_PUBSUB].soft_limit_bytes = 1024*1024*8;
945 server.client_obuf_limits[REDIS_CLIENT_LIMIT_CLASS_PUBSUB].soft_limit_seconds = 60;
946
947 /* Double constants initialization */
948 R_Zero = 0.0;
949 R_PosInf = 1.0/R_Zero;
950 R_NegInf = -1.0/R_Zero;
951 R_Nan = R_Zero/R_Zero;
952
953 /* Command table -- we intiialize it here as it is part of the
954 * initial configuration, since command names may be changed via
955 * redis.conf using the rename-command directive. */
956 server.commands = dictCreate(&commandTableDictType,NULL);
957 populateCommandTable();
958 server.delCommand = lookupCommandByCString("del");
959 server.multiCommand = lookupCommandByCString("multi");
960
961 /* Slow log */
962 server.slowlog_log_slower_than = REDIS_SLOWLOG_LOG_SLOWER_THAN;
963 server.slowlog_max_len = REDIS_SLOWLOG_MAX_LEN;
964
965 /* Assert */
966 server.assert_failed = "<no assertion failed>";
967 server.assert_file = "<no file>";
968 server.assert_line = 0;
969 server.bug_report_start = 0;
970 }
971
972 /* This function will try to raise the max number of open files accordingly to
973 * the configured max number of clients. It will also account for 32 additional
974 * file descriptors as we need a few more for persistence, listening
975 * sockets, log files and so forth.
976 *
977 * If it will not be possible to set the limit accordingly to the configured
978 * max number of clients, the function will do the reverse setting
979 * server.maxclients to the value that we can actually handle. */
980 void adjustOpenFilesLimit(void) {
981 rlim_t maxfiles = server.maxclients+32;
982 struct rlimit limit;
983
984 if (maxfiles < 1024) maxfiles = 1024;
985 if (getrlimit(RLIMIT_NOFILE,&limit) == -1) {
986 redisLog(REDIS_WARNING,"Unable to obtain the current NOFILE limit (%s), assuming 1024 and setting the max clients configuration accordingly.",
987 strerror(errno));
988 server.maxclients = 1024-32;
989 } else {
990 rlim_t oldlimit = limit.rlim_cur;
991
992 /* Set the max number of files if the current limit is not enough
993 * for our needs. */
994 if (oldlimit < maxfiles) {
995 limit.rlim_cur = maxfiles;
996 limit.rlim_max = maxfiles;
997 if (setrlimit(RLIMIT_NOFILE,&limit) == -1) {
998 server.maxclients = oldlimit-32;
999 redisLog(REDIS_WARNING,"Unable to set the max number of files limit to %d (%s), setting the max clients configuration to %d.",
1000 (int) maxfiles, strerror(errno), (int) server.maxclients);
1001 } else {
1002 redisLog(REDIS_NOTICE,"Max number of open files set to %d",
1003 (int) maxfiles);
1004 }
1005 }
1006 }
1007 }
1008
1009 void initServer() {
1010 int j;
1011
1012 signal(SIGHUP, SIG_IGN);
1013 signal(SIGPIPE, SIG_IGN);
1014 setupSignalHandlers();
1015
1016 if (server.syslog_enabled) {
1017 openlog(server.syslog_ident, LOG_PID | LOG_NDELAY | LOG_NOWAIT,
1018 server.syslog_facility);
1019 }
1020
1021 server.current_client = NULL;
1022 server.clients = listCreate();
1023 server.clients_to_close = listCreate();
1024 server.slaves = listCreate();
1025 server.monitors = listCreate();
1026 server.unblocked_clients = listCreate();
1027
1028 createSharedObjects();
1029 adjustOpenFilesLimit();
1030 server.el = aeCreateEventLoop(server.maxclients+1024);
1031 server.db = zmalloc(sizeof(redisDb)*server.dbnum);
1032
1033 if (server.port != 0) {
1034 server.ipfd = anetTcpServer(server.neterr,server.port,server.bindaddr);
1035 if (server.ipfd == ANET_ERR) {
1036 redisLog(REDIS_WARNING, "Opening port %d: %s",
1037 server.port, server.neterr);
1038 exit(1);
1039 }
1040 }
1041 if (server.unixsocket != NULL) {
1042 unlink(server.unixsocket); /* don't care if this fails */
1043 server.sofd = anetUnixServer(server.neterr,server.unixsocket,server.unixsocketperm);
1044 if (server.sofd == ANET_ERR) {
1045 redisLog(REDIS_WARNING, "Opening socket: %s", server.neterr);
1046 exit(1);
1047 }
1048 }
1049 if (server.ipfd < 0 && server.sofd < 0) {
1050 redisLog(REDIS_WARNING, "Configured to not listen anywhere, exiting.");
1051 exit(1);
1052 }
1053 for (j = 0; j < server.dbnum; j++) {
1054 server.db[j].dict = dictCreate(&dbDictType,NULL);
1055 server.db[j].expires = dictCreate(&keyptrDictType,NULL);
1056 server.db[j].blocking_keys = dictCreate(&keylistDictType,NULL);
1057 server.db[j].watched_keys = dictCreate(&keylistDictType,NULL);
1058 server.db[j].id = j;
1059 }
1060 server.pubsub_channels = dictCreate(&keylistDictType,NULL);
1061 server.pubsub_patterns = listCreate();
1062 listSetFreeMethod(server.pubsub_patterns,freePubsubPattern);
1063 listSetMatchMethod(server.pubsub_patterns,listMatchPubsubPattern);
1064 server.cronloops = 0;
1065 server.rdb_child_pid = -1;
1066 server.aof_child_pid = -1;
1067 server.aof_rewrite_buf = sdsempty();
1068 server.aof_buf = sdsempty();
1069 server.lastsave = time(NULL);
1070 server.dirty = 0;
1071 server.stat_numcommands = 0;
1072 server.stat_numconnections = 0;
1073 server.stat_expiredkeys = 0;
1074 server.stat_evictedkeys = 0;
1075 server.stat_starttime = time(NULL);
1076 server.stat_keyspace_misses = 0;
1077 server.stat_keyspace_hits = 0;
1078 server.stat_peak_memory = 0;
1079 server.stat_fork_time = 0;
1080 server.stat_rejected_conn = 0;
1081 server.unixtime = time(NULL);
1082 aeCreateTimeEvent(server.el, 1, serverCron, NULL, NULL);
1083 if (server.ipfd > 0 && aeCreateFileEvent(server.el,server.ipfd,AE_READABLE,
1084 acceptTcpHandler,NULL) == AE_ERR) oom("creating file event");
1085 if (server.sofd > 0 && aeCreateFileEvent(server.el,server.sofd,AE_READABLE,
1086 acceptUnixHandler,NULL) == AE_ERR) oom("creating file event");
1087
1088 if (server.aof_state == REDIS_AOF_ON) {
1089 server.aof_fd = open(server.aof_filename,
1090 O_WRONLY|O_APPEND|O_CREAT,0644);
1091 if (server.aof_fd == -1) {
1092 redisLog(REDIS_WARNING, "Can't open the append-only file: %s",
1093 strerror(errno));
1094 exit(1);
1095 }
1096 }
1097
1098 /* 32 bit instances are limited to 4GB of address space, so if there is
1099 * no explicit limit in the user provided configuration we set a limit
1100 * at 3.5GB using maxmemory with 'noeviction' policy'. This saves
1101 * useless crashes of the Redis instance. */
1102 if (server.arch_bits == 32 && server.maxmemory == 0) {
1103 redisLog(REDIS_WARNING,"Warning: 32 bit instance detected but no memory limit set. Setting 3.5 GB maxmemory limit with 'noeviction' policy now.");
1104 server.maxmemory = 3584LL*(1024*1024); /* 3584 MB = 3.5 GB */
1105 server.maxmemory_policy = REDIS_MAXMEMORY_NO_EVICTION;
1106 }
1107
1108 if (server.cluster_enabled) clusterInit();
1109 scriptingInit();
1110 slowlogInit();
1111 bioInit();
1112 }
1113
1114 /* Populates the Redis Command Table starting from the hard coded list
1115 * we have on top of redis.c file. */
1116 void populateCommandTable(void) {
1117 int j;
1118 int numcommands = sizeof(redisCommandTable)/sizeof(struct redisCommand);
1119
1120 for (j = 0; j < numcommands; j++) {
1121 struct redisCommand *c = redisCommandTable+j;
1122 char *f = c->sflags;
1123 int retval;
1124
1125 while(*f != '\0') {
1126 switch(*f) {
1127 case 'w': c->flags |= REDIS_CMD_WRITE; break;
1128 case 'r': c->flags |= REDIS_CMD_READONLY; break;
1129 case 'm': c->flags |= REDIS_CMD_DENYOOM; break;
1130 case 'a': c->flags |= REDIS_CMD_ADMIN; break;
1131 case 'p': c->flags |= REDIS_CMD_PUBSUB; break;
1132 case 'f': c->flags |= REDIS_CMD_FORCE_REPLICATION; break;
1133 case 's': c->flags |= REDIS_CMD_NOSCRIPT; break;
1134 case 'R': c->flags |= REDIS_CMD_RANDOM; break;
1135 case 'S': c->flags |= REDIS_CMD_SORT_FOR_SCRIPT; break;
1136 default: redisPanic("Unsupported command flag"); break;
1137 }
1138 f++;
1139 }
1140
1141 retval = dictAdd(server.commands, sdsnew(c->name), c);
1142 assert(retval == DICT_OK);
1143 }
1144 }
1145
1146 void resetCommandTableStats(void) {
1147 int numcommands = sizeof(redisCommandTable)/sizeof(struct redisCommand);
1148 int j;
1149
1150 for (j = 0; j < numcommands; j++) {
1151 struct redisCommand *c = redisCommandTable+j;
1152
1153 c->microseconds = 0;
1154 c->calls = 0;
1155 }
1156 }
1157
1158 /* ====================== Commands lookup and execution ===================== */
1159
1160 struct redisCommand *lookupCommand(sds name) {
1161 return dictFetchValue(server.commands, name);
1162 }
1163
1164 struct redisCommand *lookupCommandByCString(char *s) {
1165 struct redisCommand *cmd;
1166 sds name = sdsnew(s);
1167
1168 cmd = dictFetchValue(server.commands, name);
1169 sdsfree(name);
1170 return cmd;
1171 }
1172
1173 /* Call() is the core of Redis execution of a command */
1174 void call(redisClient *c) {
1175 long long dirty, start = ustime(), duration;
1176
1177 dirty = server.dirty;
1178 c->cmd->proc(c);
1179 dirty = server.dirty-dirty;
1180 duration = ustime()-start;
1181 c->cmd->microseconds += duration;
1182 slowlogPushEntryIfNeeded(c->argv,c->argc,duration);
1183 c->cmd->calls++;
1184
1185 if (server.aof_state != REDIS_AOF_OFF && dirty > 0)
1186 feedAppendOnlyFile(c->cmd,c->db->id,c->argv,c->argc);
1187 if ((dirty > 0 || c->cmd->flags & REDIS_CMD_FORCE_REPLICATION) &&
1188 listLength(server.slaves))
1189 replicationFeedSlaves(server.slaves,c->db->id,c->argv,c->argc);
1190 if (listLength(server.monitors))
1191 replicationFeedMonitors(server.monitors,c->db->id,c->argv,c->argc);
1192 server.stat_numcommands++;
1193 }
1194
1195 /* If this function gets called we already read a whole
1196 * command, argments are in the client argv/argc fields.
1197 * processCommand() execute the command or prepare the
1198 * server for a bulk read from the client.
1199 *
1200 * If 1 is returned the client is still alive and valid and
1201 * and other operations can be performed by the caller. Otherwise
1202 * if 0 is returned the client was destroied (i.e. after QUIT). */
1203 int processCommand(redisClient *c) {
1204 /* The QUIT command is handled separately. Normal command procs will
1205 * go through checking for replication and QUIT will cause trouble
1206 * when FORCE_REPLICATION is enabled and would be implemented in
1207 * a regular command proc. */
1208 if (!strcasecmp(c->argv[0]->ptr,"quit")) {
1209 addReply(c,shared.ok);
1210 c->flags |= REDIS_CLOSE_AFTER_REPLY;
1211 return REDIS_ERR;
1212 }
1213
1214 /* Now lookup the command and check ASAP about trivial error conditions
1215 * such as wrong arity, bad command name and so forth. */
1216 c->cmd = c->lastcmd = lookupCommand(c->argv[0]->ptr);
1217 if (!c->cmd) {
1218 addReplyErrorFormat(c,"unknown command '%s'",
1219 (char*)c->argv[0]->ptr);
1220 return REDIS_OK;
1221 } else if ((c->cmd->arity > 0 && c->cmd->arity != c->argc) ||
1222 (c->argc < -c->cmd->arity)) {
1223 addReplyErrorFormat(c,"wrong number of arguments for '%s' command",
1224 c->cmd->name);
1225 return REDIS_OK;
1226 }
1227
1228 /* Check if the user is authenticated */
1229 if (server.requirepass && !c->authenticated && c->cmd->proc != authCommand)
1230 {
1231 addReplyError(c,"operation not permitted");
1232 return REDIS_OK;
1233 }
1234
1235 /* If cluster is enabled, redirect here */
1236 if (server.cluster_enabled &&
1237 !(c->cmd->getkeys_proc == NULL && c->cmd->firstkey == 0)) {
1238 int hashslot;
1239
1240 if (server.cluster.state != REDIS_CLUSTER_OK) {
1241 addReplyError(c,"The cluster is down. Check with CLUSTER INFO for more information");
1242 return REDIS_OK;
1243 } else {
1244 int ask;
1245 clusterNode *n = getNodeByQuery(c,c->cmd,c->argv,c->argc,&hashslot,&ask);
1246 if (n == NULL) {
1247 addReplyError(c,"Multi keys request invalid in cluster");
1248 return REDIS_OK;
1249 } else if (n != server.cluster.myself) {
1250 addReplySds(c,sdscatprintf(sdsempty(),
1251 "-%s %d %s:%d\r\n", ask ? "ASK" : "MOVED",
1252 hashslot,n->ip,n->port));
1253 return REDIS_OK;
1254 }
1255 }
1256 }
1257
1258 /* Handle the maxmemory directive.
1259 *
1260 * First we try to free some memory if possible (if there are volatile
1261 * keys in the dataset). If there are not the only thing we can do
1262 * is returning an error. */
1263 if (server.maxmemory) freeMemoryIfNeeded();
1264 if (server.maxmemory && (c->cmd->flags & REDIS_CMD_DENYOOM) &&
1265 zmalloc_used_memory() > server.maxmemory)
1266 {
1267 addReplyError(c,"command not allowed when used memory > 'maxmemory'");
1268 return REDIS_OK;
1269 }
1270
1271 /* Only allow SUBSCRIBE and UNSUBSCRIBE in the context of Pub/Sub */
1272 if ((dictSize(c->pubsub_channels) > 0 || listLength(c->pubsub_patterns) > 0)
1273 &&
1274 c->cmd->proc != subscribeCommand &&
1275 c->cmd->proc != unsubscribeCommand &&
1276 c->cmd->proc != psubscribeCommand &&
1277 c->cmd->proc != punsubscribeCommand) {
1278 addReplyError(c,"only (P)SUBSCRIBE / (P)UNSUBSCRIBE / QUIT allowed in this context");
1279 return REDIS_OK;
1280 }
1281
1282 /* Only allow INFO and SLAVEOF when slave-serve-stale-data is no and
1283 * we are a slave with a broken link with master. */
1284 if (server.masterhost && server.repl_state != REDIS_REPL_CONNECTED &&
1285 server.repl_serve_stale_data == 0 &&
1286 c->cmd->proc != infoCommand && c->cmd->proc != slaveofCommand)
1287 {
1288 addReplyError(c,
1289 "link with MASTER is down and slave-serve-stale-data is set to no");
1290 return REDIS_OK;
1291 }
1292
1293 /* Loading DB? Return an error if the command is not INFO */
1294 if (server.loading && c->cmd->proc != infoCommand) {
1295 addReply(c, shared.loadingerr);
1296 return REDIS_OK;
1297 }
1298
1299 /* Lua script too slow? Only allow SHUTDOWN NOSAVE and SCRIPT KILL. */
1300 if (server.lua_timedout &&
1301 !(c->cmd->proc != shutdownCommand &&
1302 c->argc == 2 &&
1303 tolower(((char*)c->argv[1]->ptr)[0]) == 'n') &&
1304 !(c->cmd->proc == scriptCommand &&
1305 c->argc == 2 &&
1306 tolower(((char*)c->argv[1]->ptr)[0]) == 'k'))
1307 {
1308 addReply(c, shared.slowscripterr);
1309 return REDIS_OK;
1310 }
1311
1312 /* Exec the command */
1313 if (c->flags & REDIS_MULTI &&
1314 c->cmd->proc != execCommand && c->cmd->proc != discardCommand &&
1315 c->cmd->proc != multiCommand && c->cmd->proc != watchCommand)
1316 {
1317 queueMultiCommand(c);
1318 addReply(c,shared.queued);
1319 } else {
1320 call(c);
1321 }
1322 return REDIS_OK;
1323 }
1324
1325 /*================================== Shutdown =============================== */
1326
1327 int prepareForShutdown(int flags) {
1328 int save = flags & REDIS_SHUTDOWN_SAVE;
1329 int nosave = flags & REDIS_SHUTDOWN_NOSAVE;
1330
1331 redisLog(REDIS_WARNING,"User requested shutdown...");
1332 /* Kill the saving child if there is a background saving in progress.
1333 We want to avoid race conditions, for instance our saving child may
1334 overwrite the synchronous saving did by SHUTDOWN. */
1335 if (server.rdb_child_pid != -1) {
1336 redisLog(REDIS_WARNING,"There is a child saving an .rdb. Killing it!");
1337 kill(server.rdb_child_pid,SIGKILL);
1338 rdbRemoveTempFile(server.rdb_child_pid);
1339 }
1340 if (server.aof_state != REDIS_AOF_OFF) {
1341 /* Kill the AOF saving child as the AOF we already have may be longer
1342 * but contains the full dataset anyway. */
1343 if (server.aof_child_pid != -1) {
1344 redisLog(REDIS_WARNING,
1345 "There is a child rewriting the AOF. Killing it!");
1346 kill(server.aof_child_pid,SIGKILL);
1347 }
1348 /* Append only file: fsync() the AOF and exit */
1349 redisLog(REDIS_NOTICE,"Calling fsync() on the AOF file.");
1350 aof_fsync(server.aof_fd);
1351 }
1352 if ((server.saveparamslen > 0 && !nosave) || save) {
1353 redisLog(REDIS_NOTICE,"Saving the final RDB snapshot before exiting.");
1354 /* Snapshotting. Perform a SYNC SAVE and exit */
1355 if (rdbSave(server.rdb_filename) != REDIS_OK) {
1356 /* Ooops.. error saving! The best we can do is to continue
1357 * operating. Note that if there was a background saving process,
1358 * in the next cron() Redis will be notified that the background
1359 * saving aborted, handling special stuff like slaves pending for
1360 * synchronization... */
1361 redisLog(REDIS_WARNING,"Error trying to save the DB, can't exit.");
1362 return REDIS_ERR;
1363 }
1364 }
1365 if (server.daemonize) {
1366 redisLog(REDIS_NOTICE,"Removing the pid file.");
1367 unlink(server.pidfile);
1368 }
1369 /* Close the listening sockets. Apparently this allows faster restarts. */
1370 if (server.ipfd != -1) close(server.ipfd);
1371 if (server.sofd != -1) close(server.sofd);
1372 if (server.unixsocket) {
1373 redisLog(REDIS_NOTICE,"Removing the unix socket file.");
1374 unlink(server.unixsocket); /* don't care if this fails */
1375 }
1376
1377 redisLog(REDIS_WARNING,"Redis is now ready to exit, bye bye...");
1378 return REDIS_OK;
1379 }
1380
1381 /*================================== Commands =============================== */
1382
1383 void authCommand(redisClient *c) {
1384 if (!server.requirepass) {
1385 addReplyError(c,"Client sent AUTH, but no password is set");
1386 } else if (!strcmp(c->argv[1]->ptr, server.requirepass)) {
1387 c->authenticated = 1;
1388 addReply(c,shared.ok);
1389 } else {
1390 c->authenticated = 0;
1391 addReplyError(c,"invalid password");
1392 }
1393 }
1394
1395 void pingCommand(redisClient *c) {
1396 addReply(c,shared.pong);
1397 }
1398
1399 void echoCommand(redisClient *c) {
1400 addReplyBulk(c,c->argv[1]);
1401 }
1402
1403 /* Convert an amount of bytes into a human readable string in the form
1404 * of 100B, 2G, 100M, 4K, and so forth. */
1405 void bytesToHuman(char *s, unsigned long long n) {
1406 double d;
1407
1408 if (n < 1024) {
1409 /* Bytes */
1410 sprintf(s,"%lluB",n);
1411 return;
1412 } else if (n < (1024*1024)) {
1413 d = (double)n/(1024);
1414 sprintf(s,"%.2fK",d);
1415 } else if (n < (1024LL*1024*1024)) {
1416 d = (double)n/(1024*1024);
1417 sprintf(s,"%.2fM",d);
1418 } else if (n < (1024LL*1024*1024*1024)) {
1419 d = (double)n/(1024LL*1024*1024);
1420 sprintf(s,"%.2fG",d);
1421 }
1422 }
1423
1424 /* Create the string returned by the INFO command. This is decoupled
1425 * by the INFO command itself as we need to report the same information
1426 * on memory corruption problems. */
1427 sds genRedisInfoString(char *section) {
1428 sds info = sdsempty();
1429 time_t uptime = time(NULL)-server.stat_starttime;
1430 int j, numcommands;
1431 struct rusage self_ru, c_ru;
1432 unsigned long lol, bib;
1433 int allsections = 0, defsections = 0;
1434 int sections = 0;
1435
1436 if (section) {
1437 allsections = strcasecmp(section,"all") == 0;
1438 defsections = strcasecmp(section,"default") == 0;
1439 }
1440
1441 getrusage(RUSAGE_SELF, &self_ru);
1442 getrusage(RUSAGE_CHILDREN, &c_ru);
1443 getClientsMaxBuffers(&lol,&bib);
1444
1445 /* Server */
1446 if (allsections || defsections || !strcasecmp(section,"server")) {
1447 if (sections++) info = sdscat(info,"\r\n");
1448 info = sdscatprintf(info,
1449 "# Server\r\n"
1450 "redis_version:%s\r\n"
1451 "redis_git_sha1:%s\r\n"
1452 "redis_git_dirty:%d\r\n"
1453 "arch_bits:%d\r\n"
1454 "multiplexing_api:%s\r\n"
1455 "gcc_version:%d.%d.%d\r\n"
1456 "process_id:%ld\r\n"
1457 "tcp_port:%d\r\n"
1458 "uptime_in_seconds:%ld\r\n"
1459 "uptime_in_days:%ld\r\n"
1460 "lru_clock:%ld\r\n",
1461 REDIS_VERSION,
1462 redisGitSHA1(),
1463 strtol(redisGitDirty(),NULL,10) > 0,
1464 server.arch_bits,
1465 aeGetApiName(),
1466 #ifdef __GNUC__
1467 __GNUC__,__GNUC_MINOR__,__GNUC_PATCHLEVEL__,
1468 #else
1469 0,0,0,
1470 #endif
1471 (long) getpid(),
1472 server.port,
1473 uptime,
1474 uptime/(3600*24),
1475 (unsigned long) server.lruclock);
1476 }
1477
1478 /* Clients */
1479 if (allsections || defsections || !strcasecmp(section,"clients")) {
1480 if (sections++) info = sdscat(info,"\r\n");
1481 info = sdscatprintf(info,
1482 "# Clients\r\n"
1483 "connected_clients:%lu\r\n"
1484 "client_longest_output_list:%lu\r\n"
1485 "client_biggest_input_buf:%lu\r\n"
1486 "blocked_clients:%d\r\n",
1487 listLength(server.clients)-listLength(server.slaves),
1488 lol, bib,
1489 server.bpop_blocked_clients);
1490 }
1491
1492 /* Memory */
1493 if (allsections || defsections || !strcasecmp(section,"memory")) {
1494 char hmem[64];
1495 char peak_hmem[64];
1496
1497 bytesToHuman(hmem,zmalloc_used_memory());
1498 bytesToHuman(peak_hmem,server.stat_peak_memory);
1499 if (sections++) info = sdscat(info,"\r\n");
1500 info = sdscatprintf(info,
1501 "# Memory\r\n"
1502 "used_memory:%zu\r\n"
1503 "used_memory_human:%s\r\n"
1504 "used_memory_rss:%zu\r\n"
1505 "used_memory_peak:%zu\r\n"
1506 "used_memory_peak_human:%s\r\n"
1507 "used_memory_lua:%lld\r\n"
1508 "mem_fragmentation_ratio:%.2f\r\n"
1509 "mem_allocator:%s\r\n",
1510 zmalloc_used_memory(),
1511 hmem,
1512 zmalloc_get_rss(),
1513 server.stat_peak_memory,
1514 peak_hmem,
1515 ((long long)lua_gc(server.lua,LUA_GCCOUNT,0))*1024LL,
1516 zmalloc_get_fragmentation_ratio(),
1517 ZMALLOC_LIB
1518 );
1519 }
1520
1521 /* Persistence */
1522 if (allsections || defsections || !strcasecmp(section,"persistence")) {
1523 if (sections++) info = sdscat(info,"\r\n");
1524 info = sdscatprintf(info,
1525 "# Persistence\r\n"
1526 "loading:%d\r\n"
1527 "aof_enabled:%d\r\n"
1528 "changes_since_last_save:%lld\r\n"
1529 "bgsave_in_progress:%d\r\n"
1530 "last_save_time:%ld\r\n"
1531 "bgrewriteaof_in_progress:%d\r\n",
1532 server.loading,
1533 server.aof_state != REDIS_AOF_OFF,
1534 server.dirty,
1535 server.rdb_child_pid != -1,
1536 server.lastsave,
1537 server.aof_child_pid != -1);
1538
1539 if (server.aof_state != REDIS_AOF_OFF) {
1540 info = sdscatprintf(info,
1541 "aof_current_size:%lld\r\n"
1542 "aof_base_size:%lld\r\n"
1543 "aof_pending_rewrite:%d\r\n"
1544 "aof_buffer_length:%zu\r\n"
1545 "aof_pending_bio_fsync:%llu\r\n",
1546 (long long) server.aof_current_size,
1547 (long long) server.aof_rewrite_base_size,
1548 server.aof_rewrite_scheduled,
1549 sdslen(server.aof_buf),
1550 bioPendingJobsOfType(REDIS_BIO_AOF_FSYNC));
1551 }
1552
1553 if (server.loading) {
1554 double perc;
1555 time_t eta, elapsed;
1556 off_t remaining_bytes = server.loading_total_bytes-
1557 server.loading_loaded_bytes;
1558
1559 perc = ((double)server.loading_loaded_bytes /
1560 server.loading_total_bytes) * 100;
1561
1562 elapsed = time(NULL)-server.loading_start_time;
1563 if (elapsed == 0) {
1564 eta = 1; /* A fake 1 second figure if we don't have
1565 enough info */
1566 } else {
1567 eta = (elapsed*remaining_bytes)/server.loading_loaded_bytes;
1568 }
1569
1570 info = sdscatprintf(info,
1571 "loading_start_time:%ld\r\n"
1572 "loading_total_bytes:%llu\r\n"
1573 "loading_loaded_bytes:%llu\r\n"
1574 "loading_loaded_perc:%.2f\r\n"
1575 "loading_eta_seconds:%ld\r\n"
1576 ,(unsigned long) server.loading_start_time,
1577 (unsigned long long) server.loading_total_bytes,
1578 (unsigned long long) server.loading_loaded_bytes,
1579 perc,
1580 eta
1581 );
1582 }
1583 }
1584
1585 /* Stats */
1586 if (allsections || defsections || !strcasecmp(section,"stats")) {
1587 if (sections++) info = sdscat(info,"\r\n");
1588 info = sdscatprintf(info,
1589 "# Stats\r\n"
1590 "total_connections_received:%lld\r\n"
1591 "total_commands_processed:%lld\r\n"
1592 "rejected_connections:%lld\r\n"
1593 "expired_keys:%lld\r\n"
1594 "evicted_keys:%lld\r\n"
1595 "keyspace_hits:%lld\r\n"
1596 "keyspace_misses:%lld\r\n"
1597 "pubsub_channels:%ld\r\n"
1598 "pubsub_patterns:%lu\r\n"
1599 "latest_fork_usec:%lld\r\n",
1600 server.stat_numconnections,
1601 server.stat_numcommands,
1602 server.stat_rejected_conn,
1603 server.stat_expiredkeys,
1604 server.stat_evictedkeys,
1605 server.stat_keyspace_hits,
1606 server.stat_keyspace_misses,
1607 dictSize(server.pubsub_channels),
1608 listLength(server.pubsub_patterns),
1609 server.stat_fork_time);
1610 }
1611
1612 /* Replication */
1613 if (allsections || defsections || !strcasecmp(section,"replication")) {
1614 if (sections++) info = sdscat(info,"\r\n");
1615 info = sdscatprintf(info,
1616 "# Replication\r\n"
1617 "role:%s\r\n",
1618 server.masterhost == NULL ? "master" : "slave");
1619 if (server.masterhost) {
1620 info = sdscatprintf(info,
1621 "master_host:%s\r\n"
1622 "master_port:%d\r\n"
1623 "master_link_status:%s\r\n"
1624 "master_last_io_seconds_ago:%d\r\n"
1625 "master_sync_in_progress:%d\r\n"
1626 ,server.masterhost,
1627 server.masterport,
1628 (server.repl_state == REDIS_REPL_CONNECTED) ?
1629 "up" : "down",
1630 server.master ?
1631 ((int)(time(NULL)-server.master->lastinteraction)) : -1,
1632 server.repl_state == REDIS_REPL_TRANSFER
1633 );
1634
1635 if (server.repl_state == REDIS_REPL_TRANSFER) {
1636 info = sdscatprintf(info,
1637 "master_sync_left_bytes:%ld\r\n"
1638 "master_sync_last_io_seconds_ago:%d\r\n"
1639 ,(long)server.repl_transfer_left,
1640 (int)(time(NULL)-server.repl_transfer_lastio)
1641 );
1642 }
1643
1644 if (server.repl_state != REDIS_REPL_CONNECTED) {
1645 info = sdscatprintf(info,
1646 "master_link_down_since_seconds:%ld\r\n",
1647 (long)time(NULL)-server.repl_down_since);
1648 }
1649 }
1650 info = sdscatprintf(info,
1651 "connected_slaves:%lu\r\n",
1652 listLength(server.slaves));
1653 if (listLength(server.slaves)) {
1654 int slaveid = 0;
1655 listNode *ln;
1656 listIter li;
1657
1658 listRewind(server.slaves,&li);
1659 while((ln = listNext(&li))) {
1660 redisClient *slave = listNodeValue(ln);
1661 char *state = NULL;
1662 char ip[32];
1663 int port;
1664
1665 if (anetPeerToString(slave->fd,ip,&port) == -1) continue;
1666 switch(slave->replstate) {
1667 case REDIS_REPL_WAIT_BGSAVE_START:
1668 case REDIS_REPL_WAIT_BGSAVE_END:
1669 state = "wait_bgsave";
1670 break;
1671 case REDIS_REPL_SEND_BULK:
1672 state = "send_bulk";
1673 break;
1674 case REDIS_REPL_ONLINE:
1675 state = "online";
1676 break;
1677 }
1678 if (state == NULL) continue;
1679 info = sdscatprintf(info,"slave%d:%s,%d,%s\r\n",
1680 slaveid,ip,port,state);
1681 slaveid++;
1682 }
1683 }
1684 }
1685
1686 /* CPU */
1687 if (allsections || defsections || !strcasecmp(section,"cpu")) {
1688 if (sections++) info = sdscat(info,"\r\n");
1689 info = sdscatprintf(info,
1690 "# CPU\r\n"
1691 "used_cpu_sys:%.2f\r\n"
1692 "used_cpu_user:%.2f\r\n"
1693 "used_cpu_sys_children:%.2f\r\n"
1694 "used_cpu_user_children:%.2f\r\n",
1695 (float)self_ru.ru_stime.tv_sec+(float)self_ru.ru_stime.tv_usec/1000000,
1696 (float)self_ru.ru_utime.tv_sec+(float)self_ru.ru_utime.tv_usec/1000000,
1697 (float)c_ru.ru_stime.tv_sec+(float)c_ru.ru_stime.tv_usec/1000000,
1698 (float)c_ru.ru_utime.tv_sec+(float)c_ru.ru_utime.tv_usec/1000000);
1699 }
1700
1701 /* cmdtime */
1702 if (allsections || !strcasecmp(section,"commandstats")) {
1703 if (sections++) info = sdscat(info,"\r\n");
1704 info = sdscatprintf(info, "# Commandstats\r\n");
1705 numcommands = sizeof(redisCommandTable)/sizeof(struct redisCommand);
1706 for (j = 0; j < numcommands; j++) {
1707 struct redisCommand *c = redisCommandTable+j;
1708
1709 if (!c->calls) continue;
1710 info = sdscatprintf(info,
1711 "cmdstat_%s:calls=%lld,usec=%lld,usec_per_call=%.2f\r\n",
1712 c->name, c->calls, c->microseconds,
1713 (c->calls == 0) ? 0 : ((float)c->microseconds/c->calls));
1714 }
1715 }
1716
1717 /* Clusetr */
1718 if (allsections || defsections || !strcasecmp(section,"cluster")) {
1719 if (sections++) info = sdscat(info,"\r\n");
1720 info = sdscatprintf(info,
1721 "# Cluster\r\n"
1722 "cluster_enabled:%d\r\n",
1723 server.cluster_enabled);
1724 }
1725
1726 /* Key space */
1727 if (allsections || defsections || !strcasecmp(section,"keyspace")) {
1728 if (sections++) info = sdscat(info,"\r\n");
1729 info = sdscatprintf(info, "# Keyspace\r\n");
1730 for (j = 0; j < server.dbnum; j++) {
1731 long long keys, vkeys;
1732
1733 keys = dictSize(server.db[j].dict);
1734 vkeys = dictSize(server.db[j].expires);
1735 if (keys || vkeys) {
1736 info = sdscatprintf(info, "db%d:keys=%lld,expires=%lld\r\n",
1737 j, keys, vkeys);
1738 }
1739 }
1740 }
1741 return info;
1742 }
1743
1744 void infoCommand(redisClient *c) {
1745 char *section = c->argc == 2 ? c->argv[1]->ptr : "default";
1746
1747 if (c->argc > 2) {
1748 addReply(c,shared.syntaxerr);
1749 return;
1750 }
1751 sds info = genRedisInfoString(section);
1752 addReplySds(c,sdscatprintf(sdsempty(),"$%lu\r\n",
1753 (unsigned long)sdslen(info)));
1754 addReplySds(c,info);
1755 addReply(c,shared.crlf);
1756 }
1757
1758 void monitorCommand(redisClient *c) {
1759 /* ignore MONITOR if aleady slave or in monitor mode */
1760 if (c->flags & REDIS_SLAVE) return;
1761
1762 c->flags |= (REDIS_SLAVE|REDIS_MONITOR);
1763 c->slaveseldb = 0;
1764 listAddNodeTail(server.monitors,c);
1765 addReply(c,shared.ok);
1766 }
1767
1768 /* ============================ Maxmemory directive ======================== */
1769
1770 /* This function gets called when 'maxmemory' is set on the config file to limit
1771 * the max memory used by the server, and we are out of memory.
1772 * This function will try to, in order:
1773 *
1774 * - Free objects from the free list
1775 * - Try to remove keys with an EXPIRE set
1776 *
1777 * It is not possible to free enough memory to reach used-memory < maxmemory
1778 * the server will start refusing commands that will enlarge even more the
1779 * memory usage.
1780 */
1781 void freeMemoryIfNeeded(void) {
1782 /* Remove keys accordingly to the active policy as long as we are
1783 * over the memory limit. */
1784 if (server.maxmemory_policy == REDIS_MAXMEMORY_NO_EVICTION) return;
1785
1786 while (server.maxmemory && zmalloc_used_memory() > server.maxmemory) {
1787 int j, k, freed = 0;
1788
1789 for (j = 0; j < server.dbnum; j++) {
1790 long bestval = 0; /* just to prevent warning */
1791 sds bestkey = NULL;
1792 struct dictEntry *de;
1793 redisDb *db = server.db+j;
1794 dict *dict;
1795
1796 if (server.maxmemory_policy == REDIS_MAXMEMORY_ALLKEYS_LRU ||
1797 server.maxmemory_policy == REDIS_MAXMEMORY_ALLKEYS_RANDOM)
1798 {
1799 dict = server.db[j].dict;
1800 } else {
1801 dict = server.db[j].expires;
1802 }
1803 if (dictSize(dict) == 0) continue;
1804
1805 /* volatile-random and allkeys-random policy */
1806 if (server.maxmemory_policy == REDIS_MAXMEMORY_ALLKEYS_RANDOM ||
1807 server.maxmemory_policy == REDIS_MAXMEMORY_VOLATILE_RANDOM)
1808 {
1809 de = dictGetRandomKey(dict);
1810 bestkey = dictGetKey(de);
1811 }
1812
1813 /* volatile-lru and allkeys-lru policy */
1814 else if (server.maxmemory_policy == REDIS_MAXMEMORY_ALLKEYS_LRU ||
1815 server.maxmemory_policy == REDIS_MAXMEMORY_VOLATILE_LRU)
1816 {
1817 for (k = 0; k < server.maxmemory_samples; k++) {
1818 sds thiskey;
1819 long thisval;
1820 robj *o;
1821
1822 de = dictGetRandomKey(dict);
1823 thiskey = dictGetKey(de);
1824 /* When policy is volatile-lru we need an additonal lookup
1825 * to locate the real key, as dict is set to db->expires. */
1826 if (server.maxmemory_policy == REDIS_MAXMEMORY_VOLATILE_LRU)
1827 de = dictFind(db->dict, thiskey);
1828 o = dictGetVal(de);
1829 thisval = estimateObjectIdleTime(o);
1830
1831 /* Higher idle time is better candidate for deletion */
1832 if (bestkey == NULL || thisval > bestval) {
1833 bestkey = thiskey;
1834 bestval = thisval;
1835 }
1836 }
1837 }
1838
1839 /* volatile-ttl */
1840 else if (server.maxmemory_policy == REDIS_MAXMEMORY_VOLATILE_TTL) {
1841 for (k = 0; k < server.maxmemory_samples; k++) {
1842 sds thiskey;
1843 long thisval;
1844
1845 de = dictGetRandomKey(dict);
1846 thiskey = dictGetKey(de);
1847 thisval = (long) dictGetVal(de);
1848
1849 /* Expire sooner (minor expire unix timestamp) is better
1850 * candidate for deletion */
1851 if (bestkey == NULL || thisval < bestval) {
1852 bestkey = thiskey;
1853 bestval = thisval;
1854 }
1855 }
1856 }
1857
1858 /* Finally remove the selected key. */
1859 if (bestkey) {
1860 robj *keyobj = createStringObject(bestkey,sdslen(bestkey));
1861 propagateExpire(db,keyobj);
1862 dbDelete(db,keyobj);
1863 server.stat_evictedkeys++;
1864 decrRefCount(keyobj);
1865 freed++;
1866 }
1867 }
1868 if (!freed) return; /* nothing to free... */
1869 }
1870 }
1871
1872 /* =================================== Main! ================================ */
1873
1874 #ifdef __linux__
1875 int linuxOvercommitMemoryValue(void) {
1876 FILE *fp = fopen("/proc/sys/vm/overcommit_memory","r");
1877 char buf[64];
1878
1879 if (!fp) return -1;
1880 if (fgets(buf,64,fp) == NULL) {
1881 fclose(fp);
1882 return -1;
1883 }
1884 fclose(fp);
1885
1886 return atoi(buf);
1887 }
1888
1889 void linuxOvercommitMemoryWarning(void) {
1890 if (linuxOvercommitMemoryValue() == 0) {
1891 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.");
1892 }
1893 }
1894 #endif /* __linux__ */
1895
1896 void createPidFile(void) {
1897 /* Try to write the pid file in a best-effort way. */
1898 FILE *fp = fopen(server.pidfile,"w");
1899 if (fp) {
1900 fprintf(fp,"%d\n",(int)getpid());
1901 fclose(fp);
1902 }
1903 }
1904
1905 void daemonize(void) {
1906 int fd;
1907
1908 if (fork() != 0) exit(0); /* parent exits */
1909 setsid(); /* create a new session */
1910
1911 /* Every output goes to /dev/null. If Redis is daemonized but
1912 * the 'logfile' is set to 'stdout' in the configuration file
1913 * it will not log at all. */
1914 if ((fd = open("/dev/null", O_RDWR, 0)) != -1) {
1915 dup2(fd, STDIN_FILENO);
1916 dup2(fd, STDOUT_FILENO);
1917 dup2(fd, STDERR_FILENO);
1918 if (fd > STDERR_FILENO) close(fd);
1919 }
1920 }
1921
1922 void version() {
1923 printf("Redis server version %s (%s:%d)\n", REDIS_VERSION,
1924 redisGitSHA1(), atoi(redisGitDirty()) > 0);
1925 exit(0);
1926 }
1927
1928 void usage() {
1929 fprintf(stderr,"Usage: ./redis-server [/path/to/redis.conf] [options]\n");
1930 fprintf(stderr," ./redis-server - (read config from stdin)\n");
1931 fprintf(stderr," ./redis-server -v or --version\n");
1932 fprintf(stderr," ./redis-server -h or --help\n\n");
1933 fprintf(stderr,"Examples:\n");
1934 fprintf(stderr," ./redis-server (run the server with default conf)\n");
1935 fprintf(stderr," ./redis-server /etc/redis/6379.conf\n");
1936 fprintf(stderr," ./redis-server --port 7777\n");
1937 fprintf(stderr," ./redis-server --port 7777 --slaveof 127.0.0.1 8888\n");
1938 fprintf(stderr," ./redis-server /etc/myredis.conf --loglevel verbose\n");
1939 exit(1);
1940 }
1941
1942 void redisAsciiArt(void) {
1943 #include "asciilogo.h"
1944 char *buf = zmalloc(1024*16);
1945
1946 snprintf(buf,1024*16,ascii_logo,
1947 REDIS_VERSION,
1948 redisGitSHA1(),
1949 strtol(redisGitDirty(),NULL,10) > 0,
1950 (sizeof(long) == 8) ? "64" : "32",
1951 server.cluster_enabled ? "cluster" : "stand alone",
1952 server.port,
1953 (long) getpid()
1954 );
1955 redisLogRaw(REDIS_NOTICE|REDIS_LOG_RAW,buf);
1956 zfree(buf);
1957 }
1958
1959 static void sigtermHandler(int sig) {
1960 REDIS_NOTUSED(sig);
1961
1962 redisLog(REDIS_WARNING,"Received SIGTERM, scheduling shutdown...");
1963 server.shutdown_asap = 1;
1964 }
1965
1966 void setupSignalHandlers(void) {
1967 struct sigaction act;
1968
1969 /* When the SA_SIGINFO flag is set in sa_flags then sa_sigaction is used.
1970 * Otherwise, sa_handler is used. */
1971 sigemptyset(&act.sa_mask);
1972 act.sa_flags = SA_NODEFER | SA_ONSTACK | SA_RESETHAND;
1973 act.sa_handler = sigtermHandler;
1974 sigaction(SIGTERM, &act, NULL);
1975
1976 #ifdef HAVE_BACKTRACE
1977 sigemptyset(&act.sa_mask);
1978 act.sa_flags = SA_NODEFER | SA_ONSTACK | SA_RESETHAND | SA_SIGINFO;
1979 act.sa_sigaction = sigsegvHandler;
1980 sigaction(SIGSEGV, &act, NULL);
1981 sigaction(SIGBUS, &act, NULL);
1982 sigaction(SIGFPE, &act, NULL);
1983 sigaction(SIGILL, &act, NULL);
1984 #endif
1985 return;
1986 }
1987
1988 int main(int argc, char **argv) {
1989 long long start;
1990 struct timeval tv;
1991
1992 /* We need to initialize our libraries, and the server configuration. */
1993 zmalloc_enable_thread_safeness();
1994 srand(time(NULL)^getpid());
1995 gettimeofday(&tv,NULL);
1996 dictSetHashFunctionSeed(tv.tv_sec^tv.tv_usec^getpid());
1997 initServerConfig();
1998
1999 if (argc >= 2) {
2000 int j = 1; /* First option to parse in argv[] */
2001 sds options = sdsempty();
2002 char *configfile = NULL;
2003
2004 /* Handle special options --help and --version */
2005 if (strcmp(argv[1], "-v") == 0 ||
2006 strcmp(argv[1], "--version") == 0) version();
2007 if (strcmp(argv[1], "--help") == 0 ||
2008 strcmp(argv[1], "-h") == 0) usage();
2009 /* First argument is the config file name? */
2010 if (argv[j][0] != '-' || argv[j][1] != '-')
2011 configfile = argv[j++];
2012 /* All the other options are parsed and conceptually appended to the
2013 * configuration file. For instance --port 6380 will generate the
2014 * string "port 6380\n" to be parsed after the actual file name
2015 * is parsed, if any. */
2016 while(j != argc) {
2017 if (argv[j][0] == '-' && argv[j][1] == '-') {
2018 /* Option name */
2019 if (sdslen(options)) options = sdscat(options,"\n");
2020 options = sdscat(options,argv[j]+2);
2021 options = sdscat(options," ");
2022 } else {
2023 /* Option argument */
2024 options = sdscatrepr(options,argv[j],strlen(argv[j]));
2025 options = sdscat(options," ");
2026 }
2027 j++;
2028 }
2029 resetServerSaveParams();
2030 loadServerConfig(configfile,options);
2031 sdsfree(options);
2032 } else {
2033 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'");
2034 }
2035 if (server.daemonize) daemonize();
2036 initServer();
2037 if (server.daemonize) createPidFile();
2038 redisAsciiArt();
2039 redisLog(REDIS_WARNING,"Server started, Redis version " REDIS_VERSION);
2040 #ifdef __linux__
2041 linuxOvercommitMemoryWarning();
2042 #endif
2043 start = ustime();
2044 if (server.aof_state == REDIS_AOF_ON) {
2045 if (loadAppendOnlyFile(server.aof_filename) == REDIS_OK)
2046 redisLog(REDIS_NOTICE,"DB loaded from append only file: %.3f seconds",(float)(ustime()-start)/1000000);
2047 } else {
2048 if (rdbLoad(server.rdb_filename) == REDIS_OK) {
2049 redisLog(REDIS_NOTICE,"DB loaded from disk: %.3f seconds",
2050 (float)(ustime()-start)/1000000);
2051 } else if (errno != ENOENT) {
2052 redisLog(REDIS_WARNING,"Fatal error loading the DB. Exiting.");
2053 exit(1);
2054 }
2055 }
2056 if (server.ipfd > 0)
2057 redisLog(REDIS_NOTICE,"The server is now ready to accept connections on port %d", server.port);
2058 if (server.sofd > 0)
2059 redisLog(REDIS_NOTICE,"The server is now ready to accept connections at %s", server.unixsocket);
2060 aeSetBeforeSleepProc(server.el,beforeSleep);
2061 aeMain(server.el);
2062 aeDeleteEventLoop(server.el);
2063 return 0;
2064 }
2065
2066 /* The End */