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