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