2  * Copyright (c) 2009-2010, Salvatore Sanfilippo <antirez at gmail dot com> 
   5  * Redistribution and use in source and binary forms, with or without 
   6  * modification, are permitted provided that the following conditions are met: 
   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. 
  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. 
  35 #endif /* HAVE_BACKTRACE */ 
  44 #include <arpa/inet.h> 
  48 #include <sys/resource.h> 
  54 #include <sys/resource.h> 
  56 /* Our shared "common" objects */ 
  58 struct sharedObjectsStruct shared
; 
  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. */ 
  64 double R_Zero
, R_PosInf
, R_NegInf
, R_Nan
; 
  66 /*================================= Globals ================================= */ 
  69 struct redisServer server
; /* server global state */ 
  70 struct redisCommand 
*commandTable
; 
  71 struct redisCommand readonlyCommandTable
[] = { 
  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}, 
  77     {"substr",substrCommand
,4,0,NULL
,1,1,1}, 
  78     {"strlen",strlenCommand
,2,0,NULL
,1,1,1}, 
  79     {"del",delCommand
,-2,0,NULL
,0,0,0}, 
  80     {"exists",existsCommand
,2,0,NULL
,1,1,1}, 
  81     {"incr",incrCommand
,2,REDIS_CMD_DENYOOM
,NULL
,1,1,1}, 
  82     {"decr",decrCommand
,2,REDIS_CMD_DENYOOM
,NULL
,1,1,1}, 
  83     {"mget",mgetCommand
,-2,0,NULL
,1,-1,1}, 
  84     {"rpush",rpushCommand
,3,REDIS_CMD_DENYOOM
,NULL
,1,1,1}, 
  85     {"lpush",lpushCommand
,3,REDIS_CMD_DENYOOM
,NULL
,1,1,1}, 
  86     {"rpushx",rpushxCommand
,3,REDIS_CMD_DENYOOM
,NULL
,1,1,1}, 
  87     {"lpushx",lpushxCommand
,3,REDIS_CMD_DENYOOM
,NULL
,1,1,1}, 
  88     {"linsert",linsertCommand
,5,REDIS_CMD_DENYOOM
,NULL
,1,1,1}, 
  89     {"rpop",rpopCommand
,2,0,NULL
,1,1,1}, 
  90     {"lpop",lpopCommand
,2,0,NULL
,1,1,1}, 
  91     {"brpop",brpopCommand
,-3,0,NULL
,1,1,1}, 
  92     {"blpop",blpopCommand
,-3,0,NULL
,1,1,1}, 
  93     {"llen",llenCommand
,2,0,NULL
,1,1,1}, 
  94     {"lindex",lindexCommand
,3,0,NULL
,1,1,1}, 
  95     {"lset",lsetCommand
,4,REDIS_CMD_DENYOOM
,NULL
,1,1,1}, 
  96     {"lrange",lrangeCommand
,4,0,NULL
,1,1,1}, 
  97     {"ltrim",ltrimCommand
,4,0,NULL
,1,1,1}, 
  98     {"lrem",lremCommand
,4,0,NULL
,1,1,1}, 
  99     {"rpoplpush",rpoplpushcommand
,3,REDIS_CMD_DENYOOM
,NULL
,1,2,1}, 
 100     {"sadd",saddCommand
,3,REDIS_CMD_DENYOOM
,NULL
,1,1,1}, 
 101     {"srem",sremCommand
,3,0,NULL
,1,1,1}, 
 102     {"smove",smoveCommand
,4,0,NULL
,1,2,1}, 
 103     {"sismember",sismemberCommand
,3,0,NULL
,1,1,1}, 
 104     {"scard",scardCommand
,2,0,NULL
,1,1,1}, 
 105     {"spop",spopCommand
,2,0,NULL
,1,1,1}, 
 106     {"srandmember",srandmemberCommand
,2,0,NULL
,1,1,1}, 
 107     {"sinter",sinterCommand
,-2,REDIS_CMD_DENYOOM
,NULL
,1,-1,1}, 
 108     {"sinterstore",sinterstoreCommand
,-3,REDIS_CMD_DENYOOM
,NULL
,2,-1,1}, 
 109     {"sunion",sunionCommand
,-2,REDIS_CMD_DENYOOM
,NULL
,1,-1,1}, 
 110     {"sunionstore",sunionstoreCommand
,-3,REDIS_CMD_DENYOOM
,NULL
,2,-1,1}, 
 111     {"sdiff",sdiffCommand
,-2,REDIS_CMD_DENYOOM
,NULL
,1,-1,1}, 
 112     {"sdiffstore",sdiffstoreCommand
,-3,REDIS_CMD_DENYOOM
,NULL
,2,-1,1}, 
 113     {"smembers",sinterCommand
,2,0,NULL
,1,1,1}, 
 114     {"zadd",zaddCommand
,4,REDIS_CMD_DENYOOM
,NULL
,1,1,1}, 
 115     {"zincrby",zincrbyCommand
,4,REDIS_CMD_DENYOOM
,NULL
,1,1,1}, 
 116     {"zrem",zremCommand
,3,0,NULL
,1,1,1}, 
 117     {"zremrangebyscore",zremrangebyscoreCommand
,4,0,NULL
,1,1,1}, 
 118     {"zremrangebyrank",zremrangebyrankCommand
,4,0,NULL
,1,1,1}, 
 119     {"zunionstore",zunionstoreCommand
,-4,REDIS_CMD_DENYOOM
,zunionInterBlockClientOnSwappedKeys
,0,0,0}, 
 120     {"zinterstore",zinterstoreCommand
,-4,REDIS_CMD_DENYOOM
,zunionInterBlockClientOnSwappedKeys
,0,0,0}, 
 121     {"zrange",zrangeCommand
,-4,0,NULL
,1,1,1}, 
 122     {"zrangebyscore",zrangebyscoreCommand
,-4,0,NULL
,1,1,1}, 
 123     {"zrevrangebyscore",zrevrangebyscoreCommand
,-4,0,NULL
,1,1,1}, 
 124     {"zcount",zcountCommand
,4,0,NULL
,1,1,1}, 
 125     {"zrevrange",zrevrangeCommand
,-4,0,NULL
,1,1,1}, 
 126     {"zcard",zcardCommand
,2,0,NULL
,1,1,1}, 
 127     {"zscore",zscoreCommand
,3,0,NULL
,1,1,1}, 
 128     {"zrank",zrankCommand
,3,0,NULL
,1,1,1}, 
 129     {"zrevrank",zrevrankCommand
,3,0,NULL
,1,1,1}, 
 130     {"hset",hsetCommand
,4,REDIS_CMD_DENYOOM
,NULL
,1,1,1}, 
 131     {"hsetnx",hsetnxCommand
,4,REDIS_CMD_DENYOOM
,NULL
,1,1,1}, 
 132     {"hget",hgetCommand
,3,0,NULL
,1,1,1}, 
 133     {"hmset",hmsetCommand
,-4,REDIS_CMD_DENYOOM
,NULL
,1,1,1}, 
 134     {"hmget",hmgetCommand
,-3,0,NULL
,1,1,1}, 
 135     {"hincrby",hincrbyCommand
,4,REDIS_CMD_DENYOOM
,NULL
,1,1,1}, 
 136     {"hdel",hdelCommand
,3,0,NULL
,1,1,1}, 
 137     {"hlen",hlenCommand
,2,0,NULL
,1,1,1}, 
 138     {"hkeys",hkeysCommand
,2,0,NULL
,1,1,1}, 
 139     {"hvals",hvalsCommand
,2,0,NULL
,1,1,1}, 
 140     {"hgetall",hgetallCommand
,2,0,NULL
,1,1,1}, 
 141     {"hexists",hexistsCommand
,3,0,NULL
,1,1,1}, 
 142     {"incrby",incrbyCommand
,3,REDIS_CMD_DENYOOM
,NULL
,1,1,1}, 
 143     {"decrby",decrbyCommand
,3,REDIS_CMD_DENYOOM
,NULL
,1,1,1}, 
 144     {"getset",getsetCommand
,3,REDIS_CMD_DENYOOM
,NULL
,1,1,1}, 
 145     {"mset",msetCommand
,-3,REDIS_CMD_DENYOOM
,NULL
,1,-1,2}, 
 146     {"msetnx",msetnxCommand
,-3,REDIS_CMD_DENYOOM
,NULL
,1,-1,2}, 
 147     {"randomkey",randomkeyCommand
,1,0,NULL
,0,0,0}, 
 148     {"select",selectCommand
,2,0,NULL
,0,0,0}, 
 149     {"move",moveCommand
,3,0,NULL
,1,1,1}, 
 150     {"rename",renameCommand
,3,0,NULL
,1,1,1}, 
 151     {"renamenx",renamenxCommand
,3,0,NULL
,1,1,1}, 
 152     {"expire",expireCommand
,3,0,NULL
,0,0,0}, 
 153     {"expireat",expireatCommand
,3,0,NULL
,0,0,0}, 
 154     {"keys",keysCommand
,2,0,NULL
,0,0,0}, 
 155     {"dbsize",dbsizeCommand
,1,0,NULL
,0,0,0}, 
 156     {"auth",authCommand
,2,0,NULL
,0,0,0}, 
 157     {"ping",pingCommand
,1,0,NULL
,0,0,0}, 
 158     {"echo",echoCommand
,2,0,NULL
,0,0,0}, 
 159     {"save",saveCommand
,1,0,NULL
,0,0,0}, 
 160     {"bgsave",bgsaveCommand
,1,0,NULL
,0,0,0}, 
 161     {"bgrewriteaof",bgrewriteaofCommand
,1,0,NULL
,0,0,0}, 
 162     {"shutdown",shutdownCommand
,1,0,NULL
,0,0,0}, 
 163     {"lastsave",lastsaveCommand
,1,0,NULL
,0,0,0}, 
 164     {"type",typeCommand
,2,0,NULL
,1,1,1}, 
 165     {"multi",multiCommand
,1,0,NULL
,0,0,0}, 
 166     {"exec",execCommand
,1,REDIS_CMD_DENYOOM
,execBlockClientOnSwappedKeys
,0,0,0}, 
 167     {"discard",discardCommand
,1,0,NULL
,0,0,0}, 
 168     {"sync",syncCommand
,1,0,NULL
,0,0,0}, 
 169     {"flushdb",flushdbCommand
,1,0,NULL
,0,0,0}, 
 170     {"flushall",flushallCommand
,1,0,NULL
,0,0,0}, 
 171     {"sort",sortCommand
,-2,REDIS_CMD_DENYOOM
,NULL
,1,1,1}, 
 172     {"info",infoCommand
,1,0,NULL
,0,0,0}, 
 173     {"monitor",monitorCommand
,1,0,NULL
,0,0,0}, 
 174     {"ttl",ttlCommand
,2,0,NULL
,1,1,1}, 
 175     {"persist",persistCommand
,2,0,NULL
,1,1,1}, 
 176     {"slaveof",slaveofCommand
,3,0,NULL
,0,0,0}, 
 177     {"debug",debugCommand
,-2,0,NULL
,0,0,0}, 
 178     {"config",configCommand
,-2,0,NULL
,0,0,0}, 
 179     {"subscribe",subscribeCommand
,-2,0,NULL
,0,0,0}, 
 180     {"unsubscribe",unsubscribeCommand
,-1,0,NULL
,0,0,0}, 
 181     {"psubscribe",psubscribeCommand
,-2,0,NULL
,0,0,0}, 
 182     {"punsubscribe",punsubscribeCommand
,-1,0,NULL
,0,0,0}, 
 183     {"publish",publishCommand
,3,REDIS_CMD_FORCE_REPLICATION
,NULL
,0,0,0}, 
 184     {"watch",watchCommand
,-2,0,NULL
,0,0,0}, 
 185     {"unwatch",unwatchCommand
,1,0,NULL
,0,0,0} 
 188 /*============================ Utility functions ============================ */ 
 190 void redisLog(int level
, const char *fmt
, ...) { 
 197     if (level 
< server
.verbosity
) return; 
 199     fp 
= (server
.logfile 
== NULL
) ? stdout 
: fopen(server
.logfile
,"a"); 
 204     strftime(buf
,64,"%d %b %H:%M:%S",localtime(&now
)); 
 205     fprintf(fp
,"[%d] %s %c ",(int)getpid(),buf
,c
[level
]); 
 206     vfprintf(fp
, fmt
, ap
); 
 211     if (server
.logfile
) fclose(fp
); 
 214 /* Redis generally does not try to recover from out of memory conditions 
 215  * when allocating objects or strings, it is not clear if it will be possible 
 216  * to report this condition to the client since the networking layer itself 
 217  * is based on heap allocation for send buffers, so we simply abort. 
 218  * At least the code will be simpler to read... */ 
 219 void oom(const char *msg
) { 
 220     redisLog(REDIS_WARNING
, "%s: Out of memory\n",msg
); 
 225 /*====================== Hash table type implementation  ==================== */ 
 227 /* This is an hash table type that uses the SDS dynamic strings libary as 
 228  * keys and radis objects as values (objects can hold SDS strings, 
 231 void dictVanillaFree(void *privdata
, void *val
) 
 233     DICT_NOTUSED(privdata
); 
 237 void dictListDestructor(void *privdata
, void *val
) 
 239     DICT_NOTUSED(privdata
); 
 240     listRelease((list
*)val
); 
 243 int dictSdsKeyCompare(void *privdata
, const void *key1
, 
 247     DICT_NOTUSED(privdata
); 
 249     l1 
= sdslen((sds
)key1
); 
 250     l2 
= sdslen((sds
)key2
); 
 251     if (l1 
!= l2
) return 0; 
 252     return memcmp(key1
, key2
, l1
) == 0; 
 255 /* A case insensitive version used for the command lookup table. */ 
 256 int dictSdsKeyCaseCompare(void *privdata
, const void *key1
, 
 259     DICT_NOTUSED(privdata
); 
 261     return strcasecmp(key1
, key2
) == 0; 
 264 void dictRedisObjectDestructor(void *privdata
, void *val
) 
 266     DICT_NOTUSED(privdata
); 
 268     if (val 
== NULL
) return; /* Values of swapped out keys as set to NULL */ 
 272 void dictSdsDestructor(void *privdata
, void *val
) 
 274     DICT_NOTUSED(privdata
); 
 279 int dictObjKeyCompare(void *privdata
, const void *key1
, 
 282     const robj 
*o1 
= key1
, *o2 
= key2
; 
 283     return dictSdsKeyCompare(privdata
,o1
->ptr
,o2
->ptr
); 
 286 unsigned int dictObjHash(const void *key
) { 
 288     return dictGenHashFunction(o
->ptr
, sdslen((sds
)o
->ptr
)); 
 291 unsigned int dictSdsHash(const void *key
) { 
 292     return dictGenHashFunction((unsigned char*)key
, sdslen((char*)key
)); 
 295 unsigned int dictSdsCaseHash(const void *key
) { 
 296     return dictGenCaseHashFunction((unsigned char*)key
, sdslen((char*)key
)); 
 299 int dictEncObjKeyCompare(void *privdata
, const void *key1
, 
 302     robj 
*o1 
= (robj
*) key1
, *o2 
= (robj
*) key2
; 
 305     if (o1
->encoding 
== REDIS_ENCODING_INT 
&& 
 306         o2
->encoding 
== REDIS_ENCODING_INT
) 
 307             return o1
->ptr 
== o2
->ptr
; 
 309     o1 
= getDecodedObject(o1
); 
 310     o2 
= getDecodedObject(o2
); 
 311     cmp 
= dictSdsKeyCompare(privdata
,o1
->ptr
,o2
->ptr
); 
 317 unsigned int dictEncObjHash(const void *key
) { 
 318     robj 
*o 
= (robj
*) key
; 
 320     if (o
->encoding 
== REDIS_ENCODING_RAW
) { 
 321         return dictGenHashFunction(o
->ptr
, sdslen((sds
)o
->ptr
)); 
 323         if (o
->encoding 
== REDIS_ENCODING_INT
) { 
 327             len 
= ll2string(buf
,32,(long)o
->ptr
); 
 328             return dictGenHashFunction((unsigned char*)buf
, len
); 
 332             o 
= getDecodedObject(o
); 
 333             hash 
= dictGenHashFunction(o
->ptr
, sdslen((sds
)o
->ptr
)); 
 341 dictType setDictType 
= { 
 342     dictEncObjHash
,            /* hash function */ 
 345     dictEncObjKeyCompare
,      /* key compare */ 
 346     dictRedisObjectDestructor
, /* key destructor */ 
 347     NULL                       
/* val destructor */ 
 350 /* Sorted sets hash (note: a skiplist is used in addition to the hash table) */ 
 351 dictType zsetDictType 
= { 
 352     dictEncObjHash
,            /* hash function */ 
 355     dictEncObjKeyCompare
,      /* key compare */ 
 356     dictRedisObjectDestructor
, /* key destructor */ 
 357     NULL                       
/* val destructor */ 
 360 /* Db->dict, keys are sds strings, vals are Redis objects. */ 
 361 dictType dbDictType 
= { 
 362     dictSdsHash
,                /* hash function */ 
 365     dictSdsKeyCompare
,          /* key compare */ 
 366     dictSdsDestructor
,          /* key destructor */ 
 367     dictRedisObjectDestructor   
/* val destructor */ 
 371 dictType keyptrDictType 
= { 
 372     dictSdsHash
,               /* hash function */ 
 375     dictSdsKeyCompare
,         /* key compare */ 
 376     NULL
,                      /* key destructor */ 
 377     NULL                       
/* val destructor */ 
 380 /* Command table. sds string -> command struct pointer. */ 
 381 dictType commandTableDictType 
= { 
 382     dictSdsCaseHash
,           /* hash function */ 
 385     dictSdsKeyCaseCompare
,     /* key compare */ 
 386     dictSdsDestructor
,         /* key destructor */ 
 387     NULL                       
/* val destructor */ 
 390 /* Hash type hash table (note that small hashes are represented with zimpaps) */ 
 391 dictType hashDictType 
= { 
 392     dictEncObjHash
,             /* hash function */ 
 395     dictEncObjKeyCompare
,       /* key compare */ 
 396     dictRedisObjectDestructor
,  /* key destructor */ 
 397     dictRedisObjectDestructor   
/* val destructor */ 
 400 /* Keylist hash table type has unencoded redis objects as keys and 
 401  * lists as values. It's used for blocking operations (BLPOP) and to 
 402  * map swapped keys to a list of clients waiting for this keys to be loaded. */ 
 403 dictType keylistDictType 
= { 
 404     dictObjHash
,                /* hash function */ 
 407     dictObjKeyCompare
,          /* key compare */ 
 408     dictRedisObjectDestructor
,  /* key destructor */ 
 409     dictListDestructor          
/* val destructor */ 
 412 int htNeedsResize(dict 
*dict
) { 
 413     long long size
, used
; 
 415     size 
= dictSlots(dict
); 
 416     used 
= dictSize(dict
); 
 417     return (size 
&& used 
&& size 
> DICT_HT_INITIAL_SIZE 
&& 
 418             (used
*100/size 
< REDIS_HT_MINFILL
)); 
 421 /* If the percentage of used slots in the HT reaches REDIS_HT_MINFILL 
 422  * we resize the hash table to save memory */ 
 423 void tryResizeHashTables(void) { 
 426     for (j 
= 0; j 
< server
.dbnum
; j
++) { 
 427         if (htNeedsResize(server
.db
[j
].dict
)) 
 428             dictResize(server
.db
[j
].dict
); 
 429         if (htNeedsResize(server
.db
[j
].expires
)) 
 430             dictResize(server
.db
[j
].expires
); 
 434 /* Our hash table implementation performs rehashing incrementally while 
 435  * we write/read from the hash table. Still if the server is idle, the hash 
 436  * table will use two tables for a long time. So we try to use 1 millisecond 
 437  * of CPU time at every serverCron() loop in order to rehash some key. */ 
 438 void incrementallyRehash(void) { 
 441     for (j 
= 0; j 
< server
.dbnum
; j
++) { 
 442         if (dictIsRehashing(server
.db
[j
].dict
)) { 
 443             dictRehashMilliseconds(server
.db
[j
].dict
,1); 
 444             break; /* already used our millisecond for this loop... */ 
 449 /* This function is called once a background process of some kind terminates, 
 450  * as we want to avoid resizing the hash tables when there is a child in order 
 451  * to play well with copy-on-write (otherwise when a resize happens lots of 
 452  * memory pages are copied). The goal of this function is to update the ability 
 453  * for dict.c to resize the hash tables accordingly to the fact we have o not 
 455 void updateDictResizePolicy(void) { 
 456     if (server
.bgsavechildpid 
== -1 && server
.bgrewritechildpid 
== -1) 
 462 /* ======================= Cron: called every 100 ms ======================== */ 
 464 /* Try to expire a few timed out keys. The algorithm used is adaptive and 
 465  * will use few CPU cycles if there are few expiring keys, otherwise 
 466  * it will get more aggressive to avoid that too much memory is used by 
 467  * keys that can be removed from the keyspace. */ 
 468 void activeExpireCycle(void) { 
 471     for (j 
= 0; j 
< server
.dbnum
; j
++) { 
 473         redisDb 
*db 
= server
.db
+j
; 
 475         /* Continue to expire if at the end of the cycle more than 25% 
 476          * of the keys were expired. */ 
 478             long num 
= dictSize(db
->expires
); 
 479             time_t now 
= time(NULL
); 
 482             if (num 
> REDIS_EXPIRELOOKUPS_PER_CRON
) 
 483                 num 
= REDIS_EXPIRELOOKUPS_PER_CRON
; 
 488                 if ((de 
= dictGetRandomKey(db
->expires
)) == NULL
) break; 
 489                 t 
= (time_t) dictGetEntryVal(de
); 
 491                     sds key 
= dictGetEntryKey(de
); 
 492                     robj 
*keyobj 
= createStringObject(key
,sdslen(key
)); 
 494                     propagateExpire(db
,keyobj
); 
 496                     decrRefCount(keyobj
); 
 498                     server
.stat_expiredkeys
++; 
 501         } while (expired 
> REDIS_EXPIRELOOKUPS_PER_CRON
/4); 
 505 void updateLRUClock(void) { 
 506     server
.lruclock 
= (time(NULL
)/REDIS_LRU_CLOCK_RESOLUTION
) & 
 510 int serverCron(struct aeEventLoop 
*eventLoop
, long long id
, void *clientData
) { 
 511     int j
, loops 
= server
.cronloops
++; 
 512     REDIS_NOTUSED(eventLoop
); 
 514     REDIS_NOTUSED(clientData
); 
 516     /* We take a cached value of the unix time in the global state because 
 517      * with virtual memory and aging there is to store the current time 
 518      * in objects at every object access, and accuracy is not needed. 
 519      * To access a global var is faster than calling time(NULL) */ 
 520     server
.unixtime 
= time(NULL
); 
 521     /* We have just 22 bits per object for LRU information. 
 522      * So we use an (eventually wrapping) LRU clock with 10 seconds resolution. 
 523      * 2^22 bits with 10 seconds resoluton is more or less 1.5 years. 
 525      * Note that even if this will wrap after 1.5 years it's not a problem, 
 526      * everything will still work but just some object will appear younger 
 527      * to Redis. But for this to happen a given object should never be touched 
 530      * Note that you can change the resolution altering the 
 531      * REDIS_LRU_CLOCK_RESOLUTION define. 
 535     /* We received a SIGTERM, shutting down here in a safe way, as it is 
 536      * not ok doing so inside the signal handler. */ 
 537     if (server
.shutdown_asap
) { 
 538         if (prepareForShutdown() == REDIS_OK
) exit(0); 
 539         redisLog(REDIS_WARNING
,"SIGTERM received but errors trying to shut down the server, check the logs for more information"); 
 542     /* Show some info about non-empty databases */ 
 543     for (j 
= 0; j 
< server
.dbnum
; j
++) { 
 544         long long size
, used
, vkeys
; 
 546         size 
= dictSlots(server
.db
[j
].dict
); 
 547         used 
= dictSize(server
.db
[j
].dict
); 
 548         vkeys 
= dictSize(server
.db
[j
].expires
); 
 549         if (!(loops 
% 50) && (used 
|| vkeys
)) { 
 550             redisLog(REDIS_VERBOSE
,"DB %d: %lld keys (%lld volatile) in %lld slots HT.",j
,used
,vkeys
,size
); 
 551             /* dictPrintStats(server.dict); */ 
 555     /* We don't want to resize the hash tables while a bacground saving 
 556      * is in progress: the saving child is created using fork() that is 
 557      * implemented with a copy-on-write semantic in most modern systems, so 
 558      * if we resize the HT while there is the saving child at work actually 
 559      * a lot of memory movements in the parent will cause a lot of pages 
 561     if (server
.bgsavechildpid 
== -1 && server
.bgrewritechildpid 
== -1) { 
 562         if (!(loops 
% 10)) tryResizeHashTables(); 
 563         if (server
.activerehashing
) incrementallyRehash(); 
 566     /* Show information about connected clients */ 
 568         redisLog(REDIS_VERBOSE
,"%d clients connected (%d slaves), %zu bytes in use", 
 569             listLength(server
.clients
)-listLength(server
.slaves
), 
 570             listLength(server
.slaves
), 
 571             zmalloc_used_memory()); 
 574     /* Close connections of timedout clients */ 
 575     if ((server
.maxidletime 
&& !(loops 
% 100)) || server
.blpop_blocked_clients
) 
 576         closeTimedoutClients(); 
 578     /* Check if a background saving or AOF rewrite in progress terminated */ 
 579     if (server
.bgsavechildpid 
!= -1 || server
.bgrewritechildpid 
!= -1) { 
 583         if ((pid 
= wait3(&statloc
,WNOHANG
,NULL
)) != 0) { 
 584             if (pid 
== server
.bgsavechildpid
) { 
 585                 backgroundSaveDoneHandler(statloc
); 
 587                 backgroundRewriteDoneHandler(statloc
); 
 589             updateDictResizePolicy(); 
 592         /* If there is not a background saving in progress check if 
 593          * we have to save now */ 
 594          time_t now 
= time(NULL
); 
 595          for (j 
= 0; j 
< server
.saveparamslen
; j
++) { 
 596             struct saveparam 
*sp 
= server
.saveparams
+j
; 
 598             if (server
.dirty 
>= sp
->changes 
&& 
 599                 now
-server
.lastsave 
> sp
->seconds
) { 
 600                 redisLog(REDIS_NOTICE
,"%d changes in %d seconds. Saving...", 
 601                     sp
->changes
, sp
->seconds
); 
 602                 rdbSaveBackground(server
.dbfilename
); 
 608     /* Expire a few keys per cycle, only if this is a master. 
 609      * On slaves we wait for DEL operations synthesized by the master 
 610      * in order to guarantee a strict consistency. */ 
 611     if (server
.masterhost 
== NULL
) activeExpireCycle(); 
 613     /* Swap a few keys on disk if we are over the memory limit and VM 
 614      * is enbled. Try to free objects from the free list first. */ 
 615     if (vmCanSwapOut()) { 
 616         while (server
.vm_enabled 
&& zmalloc_used_memory() > 
 617                 server
.vm_max_memory
) 
 619             int retval 
= (server
.vm_max_threads 
== 0) ? 
 620                         vmSwapOneObjectBlocking() : 
 621                         vmSwapOneObjectThreaded(); 
 622             if (retval 
== REDIS_ERR 
&& !(loops 
% 300) && 
 623                 zmalloc_used_memory() > 
 624                 (server
.vm_max_memory
+server
.vm_max_memory
/10)) 
 626                 redisLog(REDIS_WARNING
,"WARNING: vm-max-memory limit exceeded by more than 10%% but unable to swap more objects out!"); 
 628             /* Note that when using threade I/O we free just one object, 
 629              * because anyway when the I/O thread in charge to swap this 
 630              * object out will finish, the handler of completed jobs 
 631              * will try to swap more objects if we are still out of memory. */ 
 632             if (retval 
== REDIS_ERR 
|| server
.vm_max_threads 
> 0) break; 
 636     /* Replication cron function -- used to reconnect to master and 
 637      * to detect transfer failures. */ 
 638     if (!(loops 
% 10)) replicationCron(); 
 643 /* This function gets called every time Redis is entering the 
 644  * main loop of the event driven library, that is, before to sleep 
 645  * for ready file descriptors. */ 
 646 void beforeSleep(struct aeEventLoop 
*eventLoop
) { 
 647     REDIS_NOTUSED(eventLoop
); 
 649     /* Awake clients that got all the swapped keys they requested */ 
 650     if (server
.vm_enabled 
&& listLength(server
.io_ready_clients
)) { 
 654         listRewind(server
.io_ready_clients
,&li
); 
 655         while((ln 
= listNext(&li
))) { 
 656             redisClient 
*c 
= ln
->value
; 
 657             struct redisCommand 
*cmd
; 
 659             /* Resume the client. */ 
 660             listDelNode(server
.io_ready_clients
,ln
); 
 661             c
->flags 
&= (~REDIS_IO_WAIT
); 
 662             server
.vm_blocked_clients
--; 
 663             aeCreateFileEvent(server
.el
, c
->fd
, AE_READABLE
, 
 664                 readQueryFromClient
, c
); 
 665             cmd 
= lookupCommand(c
->argv
[0]->ptr
); 
 666             redisAssert(cmd 
!= NULL
); 
 669             /* There may be more data to process in the input buffer. */ 
 670             if (c
->querybuf 
&& sdslen(c
->querybuf
) > 0) 
 671                 processInputBuffer(c
); 
 674     /* Write the AOF buffer on disk */ 
 675     flushAppendOnlyFile(); 
 678 /* =========================== Server initialization ======================== */ 
 680 void createSharedObjects(void) { 
 683     shared
.crlf 
= createObject(REDIS_STRING
,sdsnew("\r\n")); 
 684     shared
.ok 
= createObject(REDIS_STRING
,sdsnew("+OK\r\n")); 
 685     shared
.err 
= createObject(REDIS_STRING
,sdsnew("-ERR\r\n")); 
 686     shared
.emptybulk 
= createObject(REDIS_STRING
,sdsnew("$0\r\n\r\n")); 
 687     shared
.czero 
= createObject(REDIS_STRING
,sdsnew(":0\r\n")); 
 688     shared
.cone 
= createObject(REDIS_STRING
,sdsnew(":1\r\n")); 
 689     shared
.cnegone 
= createObject(REDIS_STRING
,sdsnew(":-1\r\n")); 
 690     shared
.nullbulk 
= createObject(REDIS_STRING
,sdsnew("$-1\r\n")); 
 691     shared
.nullmultibulk 
= createObject(REDIS_STRING
,sdsnew("*-1\r\n")); 
 692     shared
.emptymultibulk 
= createObject(REDIS_STRING
,sdsnew("*0\r\n")); 
 693     shared
.pong 
= createObject(REDIS_STRING
,sdsnew("+PONG\r\n")); 
 694     shared
.queued 
= createObject(REDIS_STRING
,sdsnew("+QUEUED\r\n")); 
 695     shared
.wrongtypeerr 
= createObject(REDIS_STRING
,sdsnew( 
 696         "-ERR Operation against a key holding the wrong kind of value\r\n")); 
 697     shared
.nokeyerr 
= createObject(REDIS_STRING
,sdsnew( 
 698         "-ERR no such key\r\n")); 
 699     shared
.syntaxerr 
= createObject(REDIS_STRING
,sdsnew( 
 700         "-ERR syntax error\r\n")); 
 701     shared
.sameobjecterr 
= createObject(REDIS_STRING
,sdsnew( 
 702         "-ERR source and destination objects are the same\r\n")); 
 703     shared
.outofrangeerr 
= createObject(REDIS_STRING
,sdsnew( 
 704         "-ERR index out of range\r\n")); 
 705     shared
.loadingerr 
= createObject(REDIS_STRING
,sdsnew( 
 706         "-LOADING Redis is loading the dataset in memory\r\n")); 
 707     shared
.space 
= createObject(REDIS_STRING
,sdsnew(" ")); 
 708     shared
.colon 
= createObject(REDIS_STRING
,sdsnew(":")); 
 709     shared
.plus 
= createObject(REDIS_STRING
,sdsnew("+")); 
 710     shared
.select0 
= createStringObject("select 0\r\n",10); 
 711     shared
.select1 
= createStringObject("select 1\r\n",10); 
 712     shared
.select2 
= createStringObject("select 2\r\n",10); 
 713     shared
.select3 
= createStringObject("select 3\r\n",10); 
 714     shared
.select4 
= createStringObject("select 4\r\n",10); 
 715     shared
.select5 
= createStringObject("select 5\r\n",10); 
 716     shared
.select6 
= createStringObject("select 6\r\n",10); 
 717     shared
.select7 
= createStringObject("select 7\r\n",10); 
 718     shared
.select8 
= createStringObject("select 8\r\n",10); 
 719     shared
.select9 
= createStringObject("select 9\r\n",10); 
 720     shared
.messagebulk 
= createStringObject("$7\r\nmessage\r\n",13); 
 721     shared
.pmessagebulk 
= createStringObject("$8\r\npmessage\r\n",14); 
 722     shared
.subscribebulk 
= createStringObject("$9\r\nsubscribe\r\n",15); 
 723     shared
.unsubscribebulk 
= createStringObject("$11\r\nunsubscribe\r\n",18); 
 724     shared
.psubscribebulk 
= createStringObject("$10\r\npsubscribe\r\n",17); 
 725     shared
.punsubscribebulk 
= createStringObject("$12\r\npunsubscribe\r\n",19); 
 726     shared
.mbulk3 
= createStringObject("*3\r\n",4); 
 727     shared
.mbulk4 
= createStringObject("*4\r\n",4); 
 728     for (j 
= 0; j 
< REDIS_SHARED_INTEGERS
; j
++) { 
 729         shared
.integers
[j
] = createObject(REDIS_STRING
,(void*)(long)j
); 
 730         shared
.integers
[j
]->encoding 
= REDIS_ENCODING_INT
; 
 734 void initServerConfig() { 
 735     server
.port 
= REDIS_SERVERPORT
; 
 736     server
.bindaddr 
= NULL
; 
 737     server
.unixsocket 
= NULL
; 
 740     server
.dbnum 
= REDIS_DEFAULT_DBNUM
; 
 741     server
.verbosity 
= REDIS_VERBOSE
; 
 742     server
.maxidletime 
= REDIS_MAXIDLETIME
; 
 743     server
.saveparams 
= NULL
; 
 745     server
.logfile 
= NULL
; /* NULL = log on standard output */ 
 746     server
.glueoutputbuf 
= 1; 
 747     server
.daemonize 
= 0; 
 748     server
.appendonly 
= 0; 
 749     server
.appendfsync 
= APPENDFSYNC_EVERYSEC
; 
 750     server
.no_appendfsync_on_rewrite 
= 0; 
 751     server
.lastfsync 
= time(NULL
); 
 752     server
.appendfd 
= -1; 
 753     server
.appendseldb 
= -1; /* Make sure the first time will not match */ 
 754     server
.pidfile 
= zstrdup("/var/run/redis.pid"); 
 755     server
.dbfilename 
= zstrdup("dump.rdb"); 
 756     server
.appendfilename 
= zstrdup("appendonly.aof"); 
 757     server
.requirepass 
= NULL
; 
 758     server
.rdbcompression 
= 1; 
 759     server
.activerehashing 
= 1; 
 760     server
.maxclients 
= 0; 
 761     server
.blpop_blocked_clients 
= 0; 
 762     server
.maxmemory 
= 0; 
 763     server
.maxmemory_policy 
= REDIS_MAXMEMORY_VOLATILE_LRU
; 
 764     server
.maxmemory_samples 
= 3; 
 765     server
.vm_enabled 
= 0; 
 766     server
.vm_swap_file 
= zstrdup("/tmp/redis-%p.vm"); 
 767     server
.vm_page_size 
= 256;          /* 256 bytes per page */ 
 768     server
.vm_pages 
= 1024*1024*100;    /* 104 millions of pages */ 
 769     server
.vm_max_memory 
= 1024LL*1024*1024*1; /* 1 GB of RAM */ 
 770     server
.vm_max_threads 
= 4; 
 771     server
.vm_blocked_clients 
= 0; 
 772     server
.hash_max_zipmap_entries 
= REDIS_HASH_MAX_ZIPMAP_ENTRIES
; 
 773     server
.hash_max_zipmap_value 
= REDIS_HASH_MAX_ZIPMAP_VALUE
; 
 774     server
.list_max_ziplist_entries 
= REDIS_LIST_MAX_ZIPLIST_ENTRIES
; 
 775     server
.list_max_ziplist_value 
= REDIS_LIST_MAX_ZIPLIST_VALUE
; 
 776     server
.set_max_intset_entries 
= REDIS_SET_MAX_INTSET_ENTRIES
; 
 777     server
.shutdown_asap 
= 0; 
 780     resetServerSaveParams(); 
 782     appendServerSaveParams(60*60,1);  /* save after 1 hour and 1 change */ 
 783     appendServerSaveParams(300,100);  /* save after 5 minutes and 100 changes */ 
 784     appendServerSaveParams(60,10000); /* save after 1 minute and 10000 changes */ 
 785     /* Replication related */ 
 787     server
.masterauth 
= NULL
; 
 788     server
.masterhost 
= NULL
; 
 789     server
.masterport 
= 6379; 
 790     server
.master 
= NULL
; 
 791     server
.replstate 
= REDIS_REPL_NONE
; 
 792     server
.repl_serve_stale_data 
= 1; 
 794     /* Double constants initialization */ 
 796     R_PosInf 
= 1.0/R_Zero
; 
 797     R_NegInf 
= -1.0/R_Zero
; 
 798     R_Nan 
= R_Zero
/R_Zero
; 
 800     /* Command table -- we intiialize it here as it is part of the 
 801      * initial configuration, since command names may be changed via 
 802      * redis.conf using the rename-command directive. */ 
 803     server
.commands 
= dictCreate(&commandTableDictType
,NULL
); 
 804     populateCommandTable(); 
 805     server
.delCommand 
= lookupCommandByCString("del"); 
 806     server
.multiCommand 
= lookupCommandByCString("multi"); 
 812     signal(SIGHUP
, SIG_IGN
); 
 813     signal(SIGPIPE
, SIG_IGN
); 
 814     setupSigSegvAction(); 
 816     server
.mainthread 
= pthread_self(); 
 817     server
.clients 
= listCreate(); 
 818     server
.slaves 
= listCreate(); 
 819     server
.monitors 
= listCreate(); 
 820     createSharedObjects(); 
 821     server
.el 
= aeCreateEventLoop(); 
 822     server
.db 
= zmalloc(sizeof(redisDb
)*server
.dbnum
); 
 823     server
.ipfd 
= anetTcpServer(server
.neterr
,server
.port
,server
.bindaddr
); 
 824     if (server
.ipfd 
== ANET_ERR
) { 
 825         redisLog(REDIS_WARNING
, "Opening port: %s", server
.neterr
); 
 828     if (server
.unixsocket 
!= NULL
) { 
 829         unlink(server
.unixsocket
); /* don't care if this fails */ 
 830         server
.sofd 
= anetUnixServer(server
.neterr
,server
.unixsocket
); 
 831         if (server
.sofd 
== ANET_ERR
) { 
 832             redisLog(REDIS_WARNING
, "Opening socket: %s", server
.neterr
); 
 836     if (server
.ipfd 
< 0 && server
.sofd 
< 0) { 
 837         redisLog(REDIS_WARNING
, "Configured to not listen anywhere, exiting."); 
 840     for (j 
= 0; j 
< server
.dbnum
; j
++) { 
 841         server
.db
[j
].dict 
= dictCreate(&dbDictType
,NULL
); 
 842         server
.db
[j
].expires 
= dictCreate(&keyptrDictType
,NULL
); 
 843         server
.db
[j
].blocking_keys 
= dictCreate(&keylistDictType
,NULL
); 
 844         server
.db
[j
].watched_keys 
= dictCreate(&keylistDictType
,NULL
); 
 845         if (server
.vm_enabled
) 
 846             server
.db
[j
].io_keys 
= dictCreate(&keylistDictType
,NULL
); 
 849     server
.pubsub_channels 
= dictCreate(&keylistDictType
,NULL
); 
 850     server
.pubsub_patterns 
= listCreate(); 
 851     listSetFreeMethod(server
.pubsub_patterns
,freePubsubPattern
); 
 852     listSetMatchMethod(server
.pubsub_patterns
,listMatchPubsubPattern
); 
 853     server
.cronloops 
= 0; 
 854     server
.bgsavechildpid 
= -1; 
 855     server
.bgrewritechildpid 
= -1; 
 856     server
.bgrewritebuf 
= sdsempty(); 
 857     server
.aofbuf 
= sdsempty(); 
 858     server
.lastsave 
= time(NULL
); 
 860     server
.stat_numcommands 
= 0; 
 861     server
.stat_numconnections 
= 0; 
 862     server
.stat_expiredkeys 
= 0; 
 863     server
.stat_starttime 
= time(NULL
); 
 864     server
.stat_keyspace_misses 
= 0; 
 865     server
.stat_keyspace_hits 
= 0; 
 866     server
.unixtime 
= time(NULL
); 
 867     aeCreateTimeEvent(server
.el
, 1, serverCron
, NULL
, NULL
); 
 868     if (server
.ipfd 
> 0 && aeCreateFileEvent(server
.el
,server
.ipfd
,AE_READABLE
, 
 869         acceptTcpHandler
,NULL
) == AE_ERR
) oom("creating file event"); 
 870     if (server
.sofd 
> 0 && aeCreateFileEvent(server
.el
,server
.sofd
,AE_READABLE
, 
 871         acceptUnixHandler
,NULL
) == AE_ERR
) oom("creating file event"); 
 873     if (server
.appendonly
) { 
 874         server
.appendfd 
= open(server
.appendfilename
,O_WRONLY
|O_APPEND
|O_CREAT
,0644); 
 875         if (server
.appendfd 
== -1) { 
 876             redisLog(REDIS_WARNING
, "Can't open the append-only file: %s", 
 882     if (server
.vm_enabled
) vmInit(); 
 885 /* Populates the Redis Command Table starting from the hard coded list 
 886  * we have on top of redis.c file. */ 
 887 void populateCommandTable(void) { 
 889     int numcommands 
= sizeof(readonlyCommandTable
)/sizeof(struct redisCommand
); 
 891     for (j 
= 0; j 
< numcommands
; j
++) { 
 892         struct redisCommand 
*c 
= readonlyCommandTable
+j
; 
 895         retval 
= dictAdd(server
.commands
, sdsnew(c
->name
), c
); 
 896         assert(retval 
== DICT_OK
); 
 900 /* ====================== Commands lookup and execution ===================== */ 
 902 struct redisCommand 
*lookupCommand(sds name
) { 
 903     return dictFetchValue(server
.commands
, name
); 
 906 struct redisCommand 
*lookupCommandByCString(char *s
) { 
 907     struct redisCommand 
*cmd
; 
 908     sds name 
= sdsnew(s
); 
 910     cmd 
= dictFetchValue(server
.commands
, name
); 
 915 /* Call() is the core of Redis execution of a command */ 
 916 void call(redisClient 
*c
, struct redisCommand 
*cmd
) { 
 919     dirty 
= server
.dirty
; 
 921     dirty 
= server
.dirty
-dirty
; 
 923     if (server
.appendonly 
&& dirty
) 
 924         feedAppendOnlyFile(cmd
,c
->db
->id
,c
->argv
,c
->argc
); 
 925     if ((dirty 
|| cmd
->flags 
& REDIS_CMD_FORCE_REPLICATION
) && 
 926         listLength(server
.slaves
)) 
 927         replicationFeedSlaves(server
.slaves
,c
->db
->id
,c
->argv
,c
->argc
); 
 928     if (listLength(server
.monitors
)) 
 929         replicationFeedMonitors(server
.monitors
,c
->db
->id
,c
->argv
,c
->argc
); 
 930     server
.stat_numcommands
++; 
 933 /* If this function gets called we already read a whole 
 934  * command, argments are in the client argv/argc fields. 
 935  * processCommand() execute the command or prepare the 
 936  * server for a bulk read from the client. 
 938  * If 1 is returned the client is still alive and valid and 
 939  * and other operations can be performed by the caller. Otherwise 
 940  * if 0 is returned the client was destroied (i.e. after QUIT). */ 
 941 int processCommand(redisClient 
*c
) { 
 942     struct redisCommand 
*cmd
; 
 944     /* The QUIT command is handled separately. Normal command procs will 
 945      * go through checking for replication and QUIT will cause trouble 
 946      * when FORCE_REPLICATION is enabled and would be implemented in 
 947      * a regular command proc. */ 
 948     if (!strcasecmp(c
->argv
[0]->ptr
,"quit")) { 
 949         addReply(c
,shared
.ok
); 
 950         c
->flags 
|= REDIS_CLOSE_AFTER_REPLY
; 
 954     /* Now lookup the command and check ASAP about trivial error conditions 
 955      * such wrong arity, bad command name and so forth. */ 
 956     cmd 
= lookupCommand(c
->argv
[0]->ptr
); 
 958         addReplyErrorFormat(c
,"unknown command '%s'", 
 959             (char*)c
->argv
[0]->ptr
); 
 961     } else if ((cmd
->arity 
> 0 && cmd
->arity 
!= c
->argc
) || 
 962                (c
->argc 
< -cmd
->arity
)) { 
 963         addReplyErrorFormat(c
,"wrong number of arguments for '%s' command", 
 968     /* Check if the user is authenticated */ 
 969     if (server
.requirepass 
&& !c
->authenticated 
&& cmd
->proc 
!= authCommand
) { 
 970         addReplyError(c
,"operation not permitted"); 
 974     /* Handle the maxmemory directive. 
 976      * First we try to free some memory if possible (if there are volatile 
 977      * keys in the dataset). If there are not the only thing we can do 
 978      * is returning an error. */ 
 979     if (server
.maxmemory
) freeMemoryIfNeeded(); 
 980     if (server
.maxmemory 
&& (cmd
->flags 
& REDIS_CMD_DENYOOM
) && 
 981         zmalloc_used_memory() > server
.maxmemory
) 
 983         addReplyError(c
,"command not allowed when used memory > 'maxmemory'"); 
 987     /* Only allow SUBSCRIBE and UNSUBSCRIBE in the context of Pub/Sub */ 
 988     if ((dictSize(c
->pubsub_channels
) > 0 || listLength(c
->pubsub_patterns
) > 0) 
 990         cmd
->proc 
!= subscribeCommand 
&& cmd
->proc 
!= unsubscribeCommand 
&& 
 991         cmd
->proc 
!= psubscribeCommand 
&& cmd
->proc 
!= punsubscribeCommand
) { 
 992         addReplyError(c
,"only (P)SUBSCRIBE / (P)UNSUBSCRIBE / QUIT allowed in this context"); 
 996     /* Only allow INFO and SLAVEOF when slave-serve-stale-data is no and 
 997      * we are a slave with a broken link with master. */ 
 998     if (server
.masterhost 
&& server
.replstate 
!= REDIS_REPL_CONNECTED 
&& 
 999         server
.repl_serve_stale_data 
== 0 && 
1000         cmd
->proc 
!= infoCommand 
&& cmd
->proc 
!= slaveofCommand
) 
1003             "link with MASTER is down and slave-serve-stale-data is set to no"); 
1007     /* Loading DB? Return an error if the command is not INFO */ 
1008     if (server
.loading 
&& cmd
->proc 
!= infoCommand
) { 
1009         addReply(c
, shared
.loadingerr
); 
1013     /* Exec the command */ 
1014     if (c
->flags 
& REDIS_MULTI 
&& 
1015         cmd
->proc 
!= execCommand 
&& cmd
->proc 
!= discardCommand 
&& 
1016         cmd
->proc 
!= multiCommand 
&& cmd
->proc 
!= watchCommand
) 
1018         queueMultiCommand(c
,cmd
); 
1019         addReply(c
,shared
.queued
); 
1021         if (server
.vm_enabled 
&& server
.vm_max_threads 
> 0 && 
1022             blockClientOnSwappedKeys(c
,cmd
)) return REDIS_ERR
; 
1028 /*================================== Shutdown =============================== */ 
1030 int prepareForShutdown() { 
1031     redisLog(REDIS_WARNING
,"User requested shutdown, saving DB..."); 
1032     /* Kill the saving child if there is a background saving in progress. 
1033        We want to avoid race conditions, for instance our saving child may 
1034        overwrite the synchronous saving did by SHUTDOWN. */ 
1035     if (server
.bgsavechildpid 
!= -1) { 
1036         redisLog(REDIS_WARNING
,"There is a live saving child. Killing it!"); 
1037         kill(server
.bgsavechildpid
,SIGKILL
); 
1038         rdbRemoveTempFile(server
.bgsavechildpid
); 
1040     if (server
.appendonly
) { 
1041         /* Append only file: fsync() the AOF and exit */ 
1042         aof_fsync(server
.appendfd
); 
1043         if (server
.vm_enabled
) unlink(server
.vm_swap_file
); 
1044     } else if (server
.saveparamslen 
> 0) { 
1045         /* Snapshotting. Perform a SYNC SAVE and exit */ 
1046         if (rdbSave(server
.dbfilename
) != REDIS_OK
) { 
1047             /* Ooops.. error saving! The best we can do is to continue 
1048              * operating. Note that if there was a background saving process, 
1049              * in the next cron() Redis will be notified that the background 
1050              * saving aborted, handling special stuff like slaves pending for 
1051              * synchronization... */ 
1052             redisLog(REDIS_WARNING
,"Error trying to save the DB, can't exit"); 
1056         redisLog(REDIS_WARNING
,"Not saving DB."); 
1058     if (server
.daemonize
) unlink(server
.pidfile
); 
1059     redisLog(REDIS_WARNING
,"Server exit now, bye bye..."); 
1063 /*================================== Commands =============================== */ 
1065 void authCommand(redisClient 
*c
) { 
1066     if (!server
.requirepass 
|| !strcmp(c
->argv
[1]->ptr
, server
.requirepass
)) { 
1067       c
->authenticated 
= 1; 
1068       addReply(c
,shared
.ok
); 
1070       c
->authenticated 
= 0; 
1071       addReplyError(c
,"invalid password"); 
1075 void pingCommand(redisClient 
*c
) { 
1076     addReply(c
,shared
.pong
); 
1079 void echoCommand(redisClient 
*c
) { 
1080     addReplyBulk(c
,c
->argv
[1]); 
1083 /* Convert an amount of bytes into a human readable string in the form 
1084  * of 100B, 2G, 100M, 4K, and so forth. */ 
1085 void bytesToHuman(char *s
, unsigned long long n
) { 
1090         sprintf(s
,"%lluB",n
); 
1092     } else if (n 
< (1024*1024)) { 
1093         d 
= (double)n
/(1024); 
1094         sprintf(s
,"%.2fK",d
); 
1095     } else if (n 
< (1024LL*1024*1024)) { 
1096         d 
= (double)n
/(1024*1024); 
1097         sprintf(s
,"%.2fM",d
); 
1098     } else if (n 
< (1024LL*1024*1024*1024)) { 
1099         d 
= (double)n
/(1024LL*1024*1024); 
1100         sprintf(s
,"%.2fG",d
); 
1104 /* Create the string returned by the INFO command. This is decoupled 
1105  * by the INFO command itself as we need to report the same information 
1106  * on memory corruption problems. */ 
1107 sds 
genRedisInfoString(void) { 
1109     time_t uptime 
= time(NULL
)-server
.stat_starttime
; 
1112     struct rusage self_ru
, c_ru
; 
1114     getrusage(RUSAGE_SELF
, &self_ru
); 
1115     getrusage(RUSAGE_CHILDREN
, &c_ru
); 
1117     bytesToHuman(hmem
,zmalloc_used_memory()); 
1118     info 
= sdscatprintf(sdsempty(), 
1119         "redis_version:%s\r\n" 
1120         "redis_git_sha1:%s\r\n" 
1121         "redis_git_dirty:%d\r\n" 
1123         "multiplexing_api:%s\r\n" 
1124         "process_id:%ld\r\n" 
1125         "uptime_in_seconds:%ld\r\n" 
1126         "uptime_in_days:%ld\r\n" 
1128         "used_cpu_sys:%.2f\r\n" 
1129         "used_cpu_user:%.2f\r\n" 
1130         "used_cpu_sys_childrens:%.2f\r\n" 
1131         "used_cpu_user_childrens:%.2f\r\n" 
1132         "connected_clients:%d\r\n" 
1133         "connected_slaves:%d\r\n" 
1134         "blocked_clients:%d\r\n" 
1135         "used_memory:%zu\r\n" 
1136         "used_memory_human:%s\r\n" 
1137         "used_memory_rss:%zu\r\n" 
1138         "mem_fragmentation_ratio:%.2f\r\n" 
1139         "use_tcmalloc:%d\r\n" 
1141         "aof_enabled:%d\r\n" 
1142         "changes_since_last_save:%lld\r\n" 
1143         "bgsave_in_progress:%d\r\n" 
1144         "last_save_time:%ld\r\n" 
1145         "bgrewriteaof_in_progress:%d\r\n" 
1146         "total_connections_received:%lld\r\n" 
1147         "total_commands_processed:%lld\r\n" 
1148         "expired_keys:%lld\r\n" 
1149         "keyspace_hits:%lld\r\n" 
1150         "keyspace_misses:%lld\r\n" 
1151         "hash_max_zipmap_entries:%zu\r\n" 
1152         "hash_max_zipmap_value:%zu\r\n" 
1153         "pubsub_channels:%ld\r\n" 
1154         "pubsub_patterns:%u\r\n" 
1159         strtol(redisGitDirty(),NULL
,10) > 0, 
1160         (sizeof(long) == 8) ? "64" : "32", 
1165         (unsigned long) server
.lruclock
, 
1166         (float)self_ru
.ru_utime
.tv_sec
+(float)self_ru
.ru_utime
.tv_usec
/1000000, 
1167         (float)self_ru
.ru_stime
.tv_sec
+(float)self_ru
.ru_stime
.tv_usec
/1000000, 
1168         (float)c_ru
.ru_utime
.tv_sec
+(float)c_ru
.ru_utime
.tv_usec
/1000000, 
1169         (float)c_ru
.ru_stime
.tv_sec
+(float)c_ru
.ru_stime
.tv_usec
/1000000, 
1170         listLength(server
.clients
)-listLength(server
.slaves
), 
1171         listLength(server
.slaves
), 
1172         server
.blpop_blocked_clients
, 
1173         zmalloc_used_memory(), 
1176         zmalloc_get_fragmentation_ratio(), 
1185         server
.bgsavechildpid 
!= -1, 
1187         server
.bgrewritechildpid 
!= -1, 
1188         server
.stat_numconnections
, 
1189         server
.stat_numcommands
, 
1190         server
.stat_expiredkeys
, 
1191         server
.stat_keyspace_hits
, 
1192         server
.stat_keyspace_misses
, 
1193         server
.hash_max_zipmap_entries
, 
1194         server
.hash_max_zipmap_value
, 
1195         dictSize(server
.pubsub_channels
), 
1196         listLength(server
.pubsub_patterns
), 
1197         server
.vm_enabled 
!= 0, 
1198         server
.masterhost 
== NULL 
? "master" : "slave" 
1200     if (server
.masterhost
) { 
1201         info 
= sdscatprintf(info
, 
1202             "master_host:%s\r\n" 
1203             "master_port:%d\r\n" 
1204             "master_link_status:%s\r\n" 
1205             "master_last_io_seconds_ago:%d\r\n" 
1206             "master_sync_in_progress:%d\r\n" 
1209             (server
.replstate 
== REDIS_REPL_CONNECTED
) ? 
1211             server
.master 
? ((int)(time(NULL
)-server
.master
->lastinteraction
)) : -1, 
1212             server
.replstate 
== REDIS_REPL_TRANSFER
 
1215         if (server
.replstate 
== REDIS_REPL_TRANSFER
) { 
1216             info 
= sdscatprintf(info
, 
1217                 "master_sync_left_bytes:%ld\r\n" 
1218                 "master_sync_last_io_seconds_ago:%d\r\n" 
1219                 ,(long)server
.repl_transfer_left
, 
1220                 (int)(time(NULL
)-server
.repl_transfer_lastio
) 
1224     if (server
.vm_enabled
) { 
1226         info 
= sdscatprintf(info
, 
1227             "vm_conf_max_memory:%llu\r\n" 
1228             "vm_conf_page_size:%llu\r\n" 
1229             "vm_conf_pages:%llu\r\n" 
1230             "vm_stats_used_pages:%llu\r\n" 
1231             "vm_stats_swapped_objects:%llu\r\n" 
1232             "vm_stats_swappin_count:%llu\r\n" 
1233             "vm_stats_swappout_count:%llu\r\n" 
1234             "vm_stats_io_newjobs_len:%lu\r\n" 
1235             "vm_stats_io_processing_len:%lu\r\n" 
1236             "vm_stats_io_processed_len:%lu\r\n" 
1237             "vm_stats_io_active_threads:%lu\r\n" 
1238             "vm_stats_blocked_clients:%lu\r\n" 
1239             ,(unsigned long long) server
.vm_max_memory
, 
1240             (unsigned long long) server
.vm_page_size
, 
1241             (unsigned long long) server
.vm_pages
, 
1242             (unsigned long long) server
.vm_stats_used_pages
, 
1243             (unsigned long long) server
.vm_stats_swapped_objects
, 
1244             (unsigned long long) server
.vm_stats_swapins
, 
1245             (unsigned long long) server
.vm_stats_swapouts
, 
1246             (unsigned long) listLength(server
.io_newjobs
), 
1247             (unsigned long) listLength(server
.io_processing
), 
1248             (unsigned long) listLength(server
.io_processed
), 
1249             (unsigned long) server
.io_active_threads
, 
1250             (unsigned long) server
.vm_blocked_clients
 
1254     if (server
.loading
) { 
1256         time_t eta
, elapsed
; 
1257         off_t remaining_bytes 
= server
.loading_total_bytes
- 
1258                                 server
.loading_loaded_bytes
; 
1260         perc 
= ((double)server
.loading_loaded_bytes 
/ 
1261                server
.loading_total_bytes
) * 100; 
1263         elapsed 
= time(NULL
)-server
.loading_start_time
; 
1265             eta 
= 1; /* A fake 1 second figure if we don't have enough info */ 
1267             eta 
= (elapsed
*remaining_bytes
)/server
.loading_loaded_bytes
; 
1270         info 
= sdscatprintf(info
, 
1271             "loading_start_time:%ld\r\n" 
1272             "loading_total_bytes:%llu\r\n" 
1273             "loading_loaded_bytes:%llu\r\n" 
1274             "loading_loaded_perc:%.2f\r\n" 
1275             "loading_eta_seconds:%ld\r\n" 
1276             ,(unsigned long) server
.loading_start_time
, 
1277             (unsigned long long) server
.loading_total_bytes
, 
1278             (unsigned long long) server
.loading_loaded_bytes
, 
1283     for (j 
= 0; j 
< server
.dbnum
; j
++) { 
1284         long long keys
, vkeys
; 
1286         keys 
= dictSize(server
.db
[j
].dict
); 
1287         vkeys 
= dictSize(server
.db
[j
].expires
); 
1288         if (keys 
|| vkeys
) { 
1289             info 
= sdscatprintf(info
, "db%d:keys=%lld,expires=%lld\r\n", 
1296 void infoCommand(redisClient 
*c
) { 
1297     sds info 
= genRedisInfoString(); 
1298     addReplySds(c
,sdscatprintf(sdsempty(),"$%lu\r\n", 
1299         (unsigned long)sdslen(info
))); 
1300     addReplySds(c
,info
); 
1301     addReply(c
,shared
.crlf
); 
1304 void monitorCommand(redisClient 
*c
) { 
1305     /* ignore MONITOR if aleady slave or in monitor mode */ 
1306     if (c
->flags 
& REDIS_SLAVE
) return; 
1308     c
->flags 
|= (REDIS_SLAVE
|REDIS_MONITOR
); 
1310     listAddNodeTail(server
.monitors
,c
); 
1311     addReply(c
,shared
.ok
); 
1314 /* ============================ Maxmemory directive  ======================== */ 
1316 /* This function gets called when 'maxmemory' is set on the config file to limit 
1317  * the max memory used by the server, and we are out of memory. 
1318  * This function will try to, in order: 
1320  * - Free objects from the free list 
1321  * - Try to remove keys with an EXPIRE set 
1323  * It is not possible to free enough memory to reach used-memory < maxmemory 
1324  * the server will start refusing commands that will enlarge even more the 
1327 void freeMemoryIfNeeded(void) { 
1328     /* Remove keys accordingly to the active policy as long as we are 
1329      * over the memory limit. */ 
1330     if (server
.maxmemory_policy 
== REDIS_MAXMEMORY_NO_EVICTION
) return; 
1332     while (server
.maxmemory 
&& zmalloc_used_memory() > server
.maxmemory
) { 
1333         int j
, k
, freed 
= 0; 
1335         for (j 
= 0; j 
< server
.dbnum
; j
++) { 
1336             long bestval 
= 0; /* just to prevent warning */ 
1338             struct dictEntry 
*de
; 
1339             redisDb 
*db 
= server
.db
+j
; 
1342             if (server
.maxmemory_policy 
== REDIS_MAXMEMORY_ALLKEYS_LRU 
|| 
1343                 server
.maxmemory_policy 
== REDIS_MAXMEMORY_ALLKEYS_RANDOM
) 
1345                 dict 
= server
.db
[j
].dict
; 
1347                 dict 
= server
.db
[j
].expires
; 
1349             if (dictSize(dict
) == 0) continue; 
1351             /* volatile-random and allkeys-random policy */ 
1352             if (server
.maxmemory_policy 
== REDIS_MAXMEMORY_ALLKEYS_RANDOM 
|| 
1353                 server
.maxmemory_policy 
== REDIS_MAXMEMORY_VOLATILE_RANDOM
) 
1355                 de 
= dictGetRandomKey(dict
); 
1356                 bestkey 
= dictGetEntryKey(de
); 
1359             /* volatile-lru and allkeys-lru policy */ 
1360             else if (server
.maxmemory_policy 
== REDIS_MAXMEMORY_ALLKEYS_LRU 
|| 
1361                 server
.maxmemory_policy 
== REDIS_MAXMEMORY_VOLATILE_LRU
) 
1363                 for (k 
= 0; k 
< server
.maxmemory_samples
; k
++) { 
1368                     de 
= dictGetRandomKey(dict
); 
1369                     thiskey 
= dictGetEntryKey(de
); 
1370                     /* When policy is volatile-lru we need an additonal lookup 
1371                      * to locate the real key, as dict is set to db->expires. */ 
1372                     if (server
.maxmemory_policy 
== REDIS_MAXMEMORY_VOLATILE_LRU
) 
1373                         de 
= dictFind(db
->dict
, thiskey
); 
1374                     o 
= dictGetEntryVal(de
); 
1375                     thisval 
= estimateObjectIdleTime(o
); 
1377                     /* Higher idle time is better candidate for deletion */ 
1378                     if (bestkey 
== NULL 
|| thisval 
> bestval
) { 
1386             else if (server
.maxmemory_policy 
== REDIS_MAXMEMORY_VOLATILE_TTL
) { 
1387                 for (k 
= 0; k 
< server
.maxmemory_samples
; k
++) { 
1391                     de 
= dictGetRandomKey(dict
); 
1392                     thiskey 
= dictGetEntryKey(de
); 
1393                     thisval 
= (long) dictGetEntryVal(de
); 
1395                     /* Expire sooner (minor expire unix timestamp) is better 
1396                      * candidate for deletion */ 
1397                     if (bestkey 
== NULL 
|| thisval 
< bestval
) { 
1404             /* Finally remove the selected key. */ 
1406                 robj 
*keyobj 
= createStringObject(bestkey
,sdslen(bestkey
)); 
1407                 dbDelete(db
,keyobj
); 
1408                 server
.stat_expiredkeys
++; 
1409                 decrRefCount(keyobj
); 
1413         if (!freed
) return; /* nothing to free... */ 
1417         int j
, k
, freed 
= 0; 
1418         for (j 
= 0; j 
< server
.dbnum
; j
++) { 
1421             robj 
*keyobj 
= NULL
; 
1422             struct dictEntry 
*de
; 
1424             if (dictSize(server
.db
[j
].expires
)) { 
1426                 /* From a sample of three keys drop the one nearest to 
1427                  * the natural expire */ 
1428                 for (k 
= 0; k 
< 3; k
++) { 
1431                     de 
= dictGetRandomKey(server
.db
[j
].expires
); 
1432                     t 
= (time_t) dictGetEntryVal(de
); 
1433                     if (minttl 
== -1 || t 
< minttl
) { 
1434                         minkey 
= dictGetEntryKey(de
); 
1438                 keyobj 
= createStringObject(minkey
,sdslen(minkey
)); 
1439                 dbDelete(server
.db
+j
,keyobj
); 
1440                 server
.stat_expiredkeys
++; 
1441                 decrRefCount(keyobj
); 
1444         if (!freed
) return; /* nothing to free... */ 
1448 /* =================================== Main! ================================ */ 
1451 int linuxOvercommitMemoryValue(void) { 
1452     FILE *fp 
= fopen("/proc/sys/vm/overcommit_memory","r"); 
1456     if (fgets(buf
,64,fp
) == NULL
) { 
1465 void linuxOvercommitMemoryWarning(void) { 
1466     if (linuxOvercommitMemoryValue() == 0) { 
1467         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."); 
1470 #endif /* __linux__ */ 
1472 void createPidFile(void) { 
1473     /* Try to write the pid file in a best-effort way. */ 
1474     FILE *fp 
= fopen(server
.pidfile
,"w"); 
1476         fprintf(fp
,"%d\n",getpid()); 
1481 void daemonize(void) { 
1484     if (fork() != 0) exit(0); /* parent exits */ 
1485     setsid(); /* create a new session */ 
1487     /* Every output goes to /dev/null. If Redis is daemonized but 
1488      * the 'logfile' is set to 'stdout' in the configuration file 
1489      * it will not log at all. */ 
1490     if ((fd 
= open("/dev/null", O_RDWR
, 0)) != -1) { 
1491         dup2(fd
, STDIN_FILENO
); 
1492         dup2(fd
, STDOUT_FILENO
); 
1493         dup2(fd
, STDERR_FILENO
); 
1494         if (fd 
> STDERR_FILENO
) close(fd
); 
1499     printf("Redis server version %s (%s:%d)\n", REDIS_VERSION
, 
1500         redisGitSHA1(), atoi(redisGitDirty()) > 0); 
1505     fprintf(stderr
,"Usage: ./redis-server [/path/to/redis.conf]\n"); 
1506     fprintf(stderr
,"       ./redis-server - (read config from stdin)\n"); 
1510 int main(int argc
, char **argv
) { 
1515         if (strcmp(argv
[1], "-v") == 0 || 
1516             strcmp(argv
[1], "--version") == 0) version(); 
1517         if (strcmp(argv
[1], "--help") == 0) usage(); 
1518         resetServerSaveParams(); 
1519         loadServerConfig(argv
[1]); 
1520     } else if ((argc 
> 2)) { 
1523         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'"); 
1525     if (server
.daemonize
) daemonize(); 
1527     if (server
.daemonize
) createPidFile(); 
1528     redisLog(REDIS_NOTICE
,"Server started, Redis version " REDIS_VERSION
); 
1530     linuxOvercommitMemoryWarning(); 
1533     if (server
.appendonly
) { 
1534         if (loadAppendOnlyFile(server
.appendfilename
) == REDIS_OK
) 
1535             redisLog(REDIS_NOTICE
,"DB loaded from append only file: %ld seconds",time(NULL
)-start
); 
1537         if (rdbLoad(server
.dbfilename
) == REDIS_OK
) 
1538             redisLog(REDIS_NOTICE
,"DB loaded from disk: %ld seconds",time(NULL
)-start
); 
1540     if (server
.ipfd 
> 0) 
1541         redisLog(REDIS_NOTICE
,"The server is now ready to accept connections on port %d", server
.port
); 
1542     if (server
.sofd 
> 0) 
1543         redisLog(REDIS_NOTICE
,"The server is now ready to accept connections at %s", server
.unixsocket
); 
1544     aeSetBeforeSleepProc(server
.el
,beforeSleep
); 
1546     aeDeleteEventLoop(server
.el
); 
1550 /* ============================= Backtrace support ========================= */ 
1552 #ifdef HAVE_BACKTRACE 
1553 void *getMcontextEip(ucontext_t 
*uc
) { 
1554 #if defined(__FreeBSD__) 
1555     return (void*) uc
->uc_mcontext
.mc_eip
; 
1556 #elif defined(__dietlibc__) 
1557     return (void*) uc
->uc_mcontext
.eip
; 
1558 #elif defined(__APPLE__) && !defined(MAC_OS_X_VERSION_10_6) 
1560     return (void*) uc
->uc_mcontext
->__ss
.__rip
; 
1562     return (void*) uc
->uc_mcontext
->__ss
.__eip
; 
1564 #elif defined(__APPLE__) && defined(MAC_OS_X_VERSION_10_6) 
1565   #if defined(_STRUCT_X86_THREAD_STATE64) && !defined(__i386__) 
1566     return (void*) uc
->uc_mcontext
->__ss
.__rip
; 
1568     return (void*) uc
->uc_mcontext
->__ss
.__eip
; 
1570 #elif defined(__i386__) 
1571     return (void*) uc
->uc_mcontext
.gregs
[14]; /* Linux 32 */ 
1572 #elif defined(__X86_64__) || defined(__x86_64__) 
1573     return (void*) uc
->uc_mcontext
.gregs
[16]; /* Linux 64 */ 
1574 #elif defined(__ia64__) /* Linux IA64 */ 
1575     return (void*) uc
->uc_mcontext
.sc_ip
; 
1581 void segvHandler(int sig
, siginfo_t 
*info
, void *secret
) { 
1583     char **messages 
= NULL
; 
1584     int i
, trace_size 
= 0; 
1585     ucontext_t 
*uc 
= (ucontext_t
*) secret
; 
1587     struct sigaction act
; 
1588     REDIS_NOTUSED(info
); 
1590     redisLog(REDIS_WARNING
, 
1591         "======= Ooops! Redis %s got signal: -%d- =======", REDIS_VERSION
, sig
); 
1592     infostring 
= genRedisInfoString(); 
1593     redisLog(REDIS_WARNING
, "%s",infostring
); 
1594     /* It's not safe to sdsfree() the returned string under memory 
1595      * corruption conditions. Let it leak as we are going to abort */ 
1597     trace_size 
= backtrace(trace
, 100); 
1598     /* overwrite sigaction with caller's address */ 
1599     if (getMcontextEip(uc
) != NULL
) { 
1600         trace
[1] = getMcontextEip(uc
); 
1602     messages 
= backtrace_symbols(trace
, trace_size
); 
1604     for (i
=1; i
<trace_size
; ++i
) 
1605         redisLog(REDIS_WARNING
,"%s", messages
[i
]); 
1607     /* free(messages); Don't call free() with possibly corrupted memory. */ 
1608     if (server
.daemonize
) unlink(server
.pidfile
); 
1610     /* Make sure we exit with the right signal at the end. So for instance 
1611      * the core will be dumped if enabled. */ 
1612     sigemptyset (&act
.sa_mask
); 
1613     /* When the SA_SIGINFO flag is set in sa_flags then sa_sigaction 
1614      * is used. Otherwise, sa_handler is used */ 
1615     act
.sa_flags 
= SA_NODEFER 
| SA_ONSTACK 
| SA_RESETHAND
; 
1616     act
.sa_handler 
= SIG_DFL
; 
1617     sigaction (sig
, &act
, NULL
); 
1621 void sigtermHandler(int sig
) { 
1624     redisLog(REDIS_WARNING
,"SIGTERM received, scheduling shutting down..."); 
1625     server
.shutdown_asap 
= 1; 
1628 void setupSigSegvAction(void) { 
1629     struct sigaction act
; 
1631     sigemptyset (&act
.sa_mask
); 
1632     /* When the SA_SIGINFO flag is set in sa_flags then sa_sigaction 
1633      * is used. Otherwise, sa_handler is used */ 
1634     act
.sa_flags 
= SA_NODEFER 
| SA_ONSTACK 
| SA_RESETHAND 
| SA_SIGINFO
; 
1635     act
.sa_sigaction 
= segvHandler
; 
1636     sigaction (SIGSEGV
, &act
, NULL
); 
1637     sigaction (SIGBUS
, &act
, NULL
); 
1638     sigaction (SIGFPE
, &act
, NULL
); 
1639     sigaction (SIGILL
, &act
, NULL
); 
1640     sigaction (SIGBUS
, &act
, NULL
); 
1642     act
.sa_flags 
= SA_NODEFER 
| SA_ONSTACK 
| SA_RESETHAND
; 
1643     act
.sa_handler 
= sigtermHandler
; 
1644     sigaction (SIGTERM
, &act
, NULL
); 
1648 #else /* HAVE_BACKTRACE */ 
1649 void setupSigSegvAction(void) { 
1651 #endif /* HAVE_BACKTRACE */