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