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