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>
53 #include <sys/resource.h>
55 /* Our shared "common" objects */
57 struct sharedObjectsStruct shared
;
59 /* Global vars that are actally used as constants. The following double
60 * values are used for double on-disk serialization, and are initialized
61 * at runtime to avoid strange compiler optimizations. */
63 double R_Zero
, R_PosInf
, R_NegInf
, R_Nan
;
65 /*================================= Globals ================================= */
68 struct redisServer server
; /* server global state */
69 struct redisCommand
*commandTable
;
70 struct redisCommand redisCommandTable
[] = {
71 {"get",getCommand
,2,0,NULL
,1,1,1,0,0},
72 {"set",setCommand
,3,REDIS_CMD_DENYOOM
,noPreloadGetKeys
,1,1,1,0,0},
73 {"setnx",setnxCommand
,3,REDIS_CMD_DENYOOM
,noPreloadGetKeys
,1,1,1,0,0},
74 {"setex",setexCommand
,4,REDIS_CMD_DENYOOM
,noPreloadGetKeys
,2,2,1,0,0},
75 {"append",appendCommand
,3,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0,0},
76 {"strlen",strlenCommand
,2,0,NULL
,1,1,1,0,0},
77 {"del",delCommand
,-2,0,noPreloadGetKeys
,1,-1,1,0,0},
78 {"exists",existsCommand
,2,0,NULL
,1,1,1,0,0},
79 {"setbit",setbitCommand
,4,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0,0},
80 {"getbit",getbitCommand
,3,0,NULL
,1,1,1,0,0},
81 {"setrange",setrangeCommand
,4,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0,0},
82 {"getrange",getrangeCommand
,4,0,NULL
,1,1,1,0,0},
83 {"substr",getrangeCommand
,4,0,NULL
,1,1,1,0,0},
84 {"incr",incrCommand
,2,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0,0},
85 {"decr",decrCommand
,2,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0,0},
86 {"mget",mgetCommand
,-2,0,NULL
,1,-1,1,0,0},
87 {"rpush",rpushCommand
,-3,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0,0},
88 {"lpush",lpushCommand
,-3,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0,0},
89 {"rpushx",rpushxCommand
,3,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0,0},
90 {"lpushx",lpushxCommand
,3,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0,0},
91 {"linsert",linsertCommand
,5,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0,0},
92 {"rpop",rpopCommand
,2,0,NULL
,1,1,1,0,0},
93 {"lpop",lpopCommand
,2,0,NULL
,1,1,1,0,0},
94 {"brpop",brpopCommand
,-3,0,NULL
,1,1,1,0,0},
95 {"brpoplpush",brpoplpushCommand
,4,REDIS_CMD_DENYOOM
,NULL
,1,2,1,0,0},
96 {"blpop",blpopCommand
,-3,0,NULL
,1,-2,1,0,0},
97 {"llen",llenCommand
,2,0,NULL
,1,1,1,0,0},
98 {"lindex",lindexCommand
,3,0,NULL
,1,1,1,0,0},
99 {"lset",lsetCommand
,4,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0,0},
100 {"lrange",lrangeCommand
,4,0,NULL
,1,1,1,0,0},
101 {"ltrim",ltrimCommand
,4,0,NULL
,1,1,1,0,0},
102 {"lrem",lremCommand
,4,0,NULL
,1,1,1,0,0},
103 {"rpoplpush",rpoplpushCommand
,3,REDIS_CMD_DENYOOM
,NULL
,1,2,1,0,0},
104 {"sadd",saddCommand
,-3,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0,0},
105 {"srem",sremCommand
,-3,0,NULL
,1,1,1,0,0},
106 {"smove",smoveCommand
,4,0,NULL
,1,2,1,0,0},
107 {"sismember",sismemberCommand
,3,0,NULL
,1,1,1,0,0},
108 {"scard",scardCommand
,2,0,NULL
,1,1,1,0,0},
109 {"spop",spopCommand
,2,0,NULL
,1,1,1,0,0},
110 {"srandmember",srandmemberCommand
,2,0,NULL
,1,1,1,0,0},
111 {"sinter",sinterCommand
,-2,REDIS_CMD_DENYOOM
,NULL
,1,-1,1,0,0},
112 {"sinterstore",sinterstoreCommand
,-3,REDIS_CMD_DENYOOM
,NULL
,2,-1,1,0,0},
113 {"sunion",sunionCommand
,-2,REDIS_CMD_DENYOOM
,NULL
,1,-1,1,0,0},
114 {"sunionstore",sunionstoreCommand
,-3,REDIS_CMD_DENYOOM
,NULL
,2,-1,1,0,0},
115 {"sdiff",sdiffCommand
,-2,REDIS_CMD_DENYOOM
,NULL
,1,-1,1,0,0},
116 {"sdiffstore",sdiffstoreCommand
,-3,REDIS_CMD_DENYOOM
,NULL
,2,-1,1,0,0},
117 {"smembers",sinterCommand
,2,0,NULL
,1,1,1,0,0},
118 {"zadd",zaddCommand
,-4,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0,0},
119 {"zincrby",zincrbyCommand
,4,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0,0},
120 {"zrem",zremCommand
,-3,0,NULL
,1,1,1,0,0},
121 {"zremrangebyscore",zremrangebyscoreCommand
,4,0,NULL
,1,1,1,0,0},
122 {"zremrangebyrank",zremrangebyrankCommand
,4,0,NULL
,1,1,1,0,0},
123 {"zunionstore",zunionstoreCommand
,-4,REDIS_CMD_DENYOOM
,zunionInterGetKeys
,0,0,0,0,0},
124 {"zinterstore",zinterstoreCommand
,-4,REDIS_CMD_DENYOOM
,zunionInterGetKeys
,0,0,0,0,0},
125 {"zrange",zrangeCommand
,-4,0,NULL
,1,1,1,0,0},
126 {"zrangebyscore",zrangebyscoreCommand
,-4,0,NULL
,1,1,1,0,0},
127 {"zrevrangebyscore",zrevrangebyscoreCommand
,-4,0,NULL
,1,1,1,0,0},
128 {"zcount",zcountCommand
,4,0,NULL
,1,1,1,0,0},
129 {"zrevrange",zrevrangeCommand
,-4,0,NULL
,1,1,1,0,0},
130 {"zcard",zcardCommand
,2,0,NULL
,1,1,1,0,0},
131 {"zscore",zscoreCommand
,3,0,NULL
,1,1,1,0,0},
132 {"zrank",zrankCommand
,3,0,NULL
,1,1,1,0,0},
133 {"zrevrank",zrevrankCommand
,3,0,NULL
,1,1,1,0,0},
134 {"hset",hsetCommand
,4,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0,0},
135 {"hsetnx",hsetnxCommand
,4,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0,0},
136 {"hget",hgetCommand
,3,0,NULL
,1,1,1,0,0},
137 {"hmset",hmsetCommand
,-4,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0,0},
138 {"hmget",hmgetCommand
,-3,0,NULL
,1,1,1,0,0},
139 {"hincrby",hincrbyCommand
,4,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0,0},
140 {"hdel",hdelCommand
,-3,0,NULL
,1,1,1,0,0},
141 {"hlen",hlenCommand
,2,0,NULL
,1,1,1,0,0},
142 {"hkeys",hkeysCommand
,2,0,NULL
,1,1,1,0,0},
143 {"hvals",hvalsCommand
,2,0,NULL
,1,1,1,0,0},
144 {"hgetall",hgetallCommand
,2,0,NULL
,1,1,1,0,0},
145 {"hexists",hexistsCommand
,3,0,NULL
,1,1,1,0,0},
146 {"incrby",incrbyCommand
,3,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0,0},
147 {"decrby",decrbyCommand
,3,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0,0},
148 {"getset",getsetCommand
,3,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0,0},
149 {"mset",msetCommand
,-3,REDIS_CMD_DENYOOM
,NULL
,1,-1,2,0,0},
150 {"msetnx",msetnxCommand
,-3,REDIS_CMD_DENYOOM
,NULL
,1,-1,2,0,0},
151 {"randomkey",randomkeyCommand
,1,0,NULL
,0,0,0,0,0},
152 {"select",selectCommand
,2,0,NULL
,0,0,0,0,0},
153 {"move",moveCommand
,3,0,NULL
,1,1,1,0,0},
154 {"rename",renameCommand
,3,0,renameGetKeys
,1,2,1,0,0},
155 {"renamenx",renamenxCommand
,3,0,renameGetKeys
,1,2,1,0,0},
156 {"expire",expireCommand
,3,0,NULL
,1,1,1,0,0},
157 {"expireat",expireatCommand
,3,0,NULL
,1,1,1,0,0},
158 {"keys",keysCommand
,2,0,NULL
,0,0,0,0,0},
159 {"dbsize",dbsizeCommand
,1,0,NULL
,0,0,0,0,0},
160 {"auth",authCommand
,2,0,NULL
,0,0,0,0,0},
161 {"ping",pingCommand
,1,0,NULL
,0,0,0,0,0},
162 {"echo",echoCommand
,2,0,NULL
,0,0,0,0,0},
163 {"save",saveCommand
,1,0,NULL
,0,0,0,0,0},
164 {"bgsave",bgsaveCommand
,1,0,NULL
,0,0,0,0,0},
165 {"bgrewriteaof",bgrewriteaofCommand
,1,0,NULL
,0,0,0,0,0},
166 {"shutdown",shutdownCommand
,1,0,NULL
,0,0,0,0,0},
167 {"lastsave",lastsaveCommand
,1,0,NULL
,0,0,0,0,0},
168 {"type",typeCommand
,2,0,NULL
,1,1,1,0,0},
169 {"multi",multiCommand
,1,0,NULL
,0,0,0,0,0},
170 {"exec",execCommand
,1,REDIS_CMD_DENYOOM
,NULL
,0,0,0,0,0},
171 {"discard",discardCommand
,1,0,NULL
,0,0,0,0,0},
172 {"sync",syncCommand
,1,0,NULL
,0,0,0,0,0},
173 {"flushdb",flushdbCommand
,1,0,NULL
,0,0,0,0,0},
174 {"flushall",flushallCommand
,1,0,NULL
,0,0,0,0,0},
175 {"sort",sortCommand
,-2,REDIS_CMD_DENYOOM
,NULL
,1,1,1,0,0},
176 {"info",infoCommand
,-1,0,NULL
,0,0,0,0,0},
177 {"monitor",monitorCommand
,1,0,NULL
,0,0,0,0,0},
178 {"ttl",ttlCommand
,2,0,NULL
,1,1,1,0,0},
179 {"persist",persistCommand
,2,0,NULL
,1,1,1,0,0},
180 {"slaveof",slaveofCommand
,3,0,NULL
,0,0,0,0,0},
181 {"debug",debugCommand
,-2,0,NULL
,0,0,0,0,0},
182 {"config",configCommand
,-2,0,NULL
,0,0,0,0,0},
183 {"subscribe",subscribeCommand
,-2,0,NULL
,0,0,0,0,0},
184 {"unsubscribe",unsubscribeCommand
,-1,0,NULL
,0,0,0,0,0},
185 {"psubscribe",psubscribeCommand
,-2,0,NULL
,0,0,0,0,0},
186 {"punsubscribe",punsubscribeCommand
,-1,0,NULL
,0,0,0,0,0},
187 {"publish",publishCommand
,3,REDIS_CMD_FORCE_REPLICATION
,NULL
,0,0,0,0,0},
188 {"watch",watchCommand
,-2,0,noPreloadGetKeys
,1,-1,1,0,0},
189 {"unwatch",unwatchCommand
,1,0,NULL
,0,0,0,0,0},
190 {"cluster",clusterCommand
,-2,0,NULL
,0,0,0,0,0},
191 {"restore",restoreCommand
,4,0,NULL
,0,0,0,0,0},
192 {"migrate",migrateCommand
,6,0,NULL
,0,0,0,0,0},
193 {"dump",dumpCommand
,2,0,NULL
,0,0,0,0,0},
194 {"object",objectCommand
,-2,0,NULL
,0,0,0,0,0},
195 {"client",clientCommand
,-2,0,NULL
,0,0,0,0,0}
198 /*============================ Utility functions ============================ */
200 /* Low level logging. To use only for very big messages, otherwise
201 * redisLog() is to prefer. */
202 void redisLogRaw(int level
, const char *msg
) {
203 const int syslogLevelMap
[] = { LOG_DEBUG
, LOG_INFO
, LOG_NOTICE
, LOG_WARNING
};
204 const char *c
= ".-*#";
205 time_t now
= time(NULL
);
208 int rawmode
= (level
& REDIS_LOG_RAW
);
210 level
&= 0xff; /* clear flags */
211 if (level
< server
.verbosity
) return;
213 fp
= (server
.logfile
== NULL
) ? stdout
: fopen(server
.logfile
,"a");
217 fprintf(fp
,"%s",msg
);
219 strftime(buf
,sizeof(buf
),"%d %b %H:%M:%S",localtime(&now
));
220 fprintf(fp
,"[%d] %s %c %s\n",(int)getpid(),buf
,c
[level
],msg
);
224 if (server
.logfile
) fclose(fp
);
226 if (server
.syslog_enabled
) syslog(syslogLevelMap
[level
], "%s", msg
);
229 /* Like redisLogRaw() but with printf-alike support. This is the funciton that
230 * is used across the code. The raw version is only used in order to dump
231 * the INFO output on crash. */
232 void redisLog(int level
, const char *fmt
, ...) {
234 char msg
[REDIS_MAX_LOGMSG_LEN
];
236 if ((level
&0xff) < server
.verbosity
) return;
239 vsnprintf(msg
, sizeof(msg
), fmt
, ap
);
242 redisLogRaw(level
,msg
);
245 /* Redis generally does not try to recover from out of memory conditions
246 * when allocating objects or strings, it is not clear if it will be possible
247 * to report this condition to the client since the networking layer itself
248 * is based on heap allocation for send buffers, so we simply abort.
249 * At least the code will be simpler to read... */
250 void oom(const char *msg
) {
251 redisLog(REDIS_WARNING
, "%s: Out of memory\n",msg
);
256 /* Return the UNIX time in microseconds */
257 long long ustime(void) {
261 gettimeofday(&tv
, NULL
);
262 ust
= ((long long)tv
.tv_sec
)*1000000;
267 /*====================== Hash table type implementation ==================== */
269 /* This is an hash table type that uses the SDS dynamic strings libary as
270 * keys and radis objects as values (objects can hold SDS strings,
273 void dictVanillaFree(void *privdata
, void *val
)
275 DICT_NOTUSED(privdata
);
279 void dictListDestructor(void *privdata
, void *val
)
281 DICT_NOTUSED(privdata
);
282 listRelease((list
*)val
);
285 int dictSdsKeyCompare(void *privdata
, const void *key1
,
289 DICT_NOTUSED(privdata
);
291 l1
= sdslen((sds
)key1
);
292 l2
= sdslen((sds
)key2
);
293 if (l1
!= l2
) return 0;
294 return memcmp(key1
, key2
, l1
) == 0;
297 /* A case insensitive version used for the command lookup table. */
298 int dictSdsKeyCaseCompare(void *privdata
, const void *key1
,
301 DICT_NOTUSED(privdata
);
303 return strcasecmp(key1
, key2
) == 0;
306 void dictRedisObjectDestructor(void *privdata
, void *val
)
308 DICT_NOTUSED(privdata
);
310 if (val
== NULL
) return; /* Values of swapped out keys as set to NULL */
314 void dictSdsDestructor(void *privdata
, void *val
)
316 DICT_NOTUSED(privdata
);
321 int dictObjKeyCompare(void *privdata
, const void *key1
,
324 const robj
*o1
= key1
, *o2
= key2
;
325 return dictSdsKeyCompare(privdata
,o1
->ptr
,o2
->ptr
);
328 unsigned int dictObjHash(const void *key
) {
330 return dictGenHashFunction(o
->ptr
, sdslen((sds
)o
->ptr
));
333 unsigned int dictSdsHash(const void *key
) {
334 return dictGenHashFunction((unsigned char*)key
, sdslen((char*)key
));
337 unsigned int dictSdsCaseHash(const void *key
) {
338 return dictGenCaseHashFunction((unsigned char*)key
, sdslen((char*)key
));
341 int dictEncObjKeyCompare(void *privdata
, const void *key1
,
344 robj
*o1
= (robj
*) key1
, *o2
= (robj
*) key2
;
347 if (o1
->encoding
== REDIS_ENCODING_INT
&&
348 o2
->encoding
== REDIS_ENCODING_INT
)
349 return o1
->ptr
== o2
->ptr
;
351 o1
= getDecodedObject(o1
);
352 o2
= getDecodedObject(o2
);
353 cmp
= dictSdsKeyCompare(privdata
,o1
->ptr
,o2
->ptr
);
359 unsigned int dictEncObjHash(const void *key
) {
360 robj
*o
= (robj
*) key
;
362 if (o
->encoding
== REDIS_ENCODING_RAW
) {
363 return dictGenHashFunction(o
->ptr
, sdslen((sds
)o
->ptr
));
365 if (o
->encoding
== REDIS_ENCODING_INT
) {
369 len
= ll2string(buf
,32,(long)o
->ptr
);
370 return dictGenHashFunction((unsigned char*)buf
, len
);
374 o
= getDecodedObject(o
);
375 hash
= dictGenHashFunction(o
->ptr
, sdslen((sds
)o
->ptr
));
382 /* Sets type and diskstore negative caching hash table */
383 dictType setDictType
= {
384 dictEncObjHash
, /* hash function */
387 dictEncObjKeyCompare
, /* key compare */
388 dictRedisObjectDestructor
, /* key destructor */
389 NULL
/* val destructor */
392 /* Sorted sets hash (note: a skiplist is used in addition to the hash table) */
393 dictType zsetDictType
= {
394 dictEncObjHash
, /* hash function */
397 dictEncObjKeyCompare
, /* key compare */
398 dictRedisObjectDestructor
, /* key destructor */
399 NULL
/* val destructor */
402 /* Db->dict, keys are sds strings, vals are Redis objects. */
403 dictType dbDictType
= {
404 dictSdsHash
, /* hash function */
407 dictSdsKeyCompare
, /* key compare */
408 dictSdsDestructor
, /* key destructor */
409 dictRedisObjectDestructor
/* val destructor */
413 dictType keyptrDictType
= {
414 dictSdsHash
, /* hash function */
417 dictSdsKeyCompare
, /* key compare */
418 NULL
, /* key destructor */
419 NULL
/* val destructor */
422 /* Command table. sds string -> command struct pointer. */
423 dictType commandTableDictType
= {
424 dictSdsCaseHash
, /* hash function */
427 dictSdsKeyCaseCompare
, /* key compare */
428 dictSdsDestructor
, /* key destructor */
429 NULL
/* val destructor */
432 /* Hash type hash table (note that small hashes are represented with zimpaps) */
433 dictType hashDictType
= {
434 dictEncObjHash
, /* hash function */
437 dictEncObjKeyCompare
, /* key compare */
438 dictRedisObjectDestructor
, /* key destructor */
439 dictRedisObjectDestructor
/* val destructor */
442 /* Keylist hash table type has unencoded redis objects as keys and
443 * lists as values. It's used for blocking operations (BLPOP) and to
444 * map swapped keys to a list of clients waiting for this keys to be loaded. */
445 dictType keylistDictType
= {
446 dictObjHash
, /* hash function */
449 dictObjKeyCompare
, /* key compare */
450 dictRedisObjectDestructor
, /* key destructor */
451 dictListDestructor
/* val destructor */
454 /* Cluster nodes hash table, mapping nodes addresses 1.2.3.4:6379 to
455 * clusterNode structures. */
456 dictType clusterNodesDictType
= {
457 dictSdsHash
, /* hash function */
460 dictSdsKeyCompare
, /* key compare */
461 dictSdsDestructor
, /* key destructor */
462 NULL
/* val destructor */
465 int htNeedsResize(dict
*dict
) {
466 long long size
, used
;
468 size
= dictSlots(dict
);
469 used
= dictSize(dict
);
470 return (size
&& used
&& size
> DICT_HT_INITIAL_SIZE
&&
471 (used
*100/size
< REDIS_HT_MINFILL
));
474 /* If the percentage of used slots in the HT reaches REDIS_HT_MINFILL
475 * we resize the hash table to save memory */
476 void tryResizeHashTables(void) {
479 for (j
= 0; j
< server
.dbnum
; j
++) {
480 if (htNeedsResize(server
.db
[j
].dict
))
481 dictResize(server
.db
[j
].dict
);
482 if (htNeedsResize(server
.db
[j
].expires
))
483 dictResize(server
.db
[j
].expires
);
487 /* Our hash table implementation performs rehashing incrementally while
488 * we write/read from the hash table. Still if the server is idle, the hash
489 * table will use two tables for a long time. So we try to use 1 millisecond
490 * of CPU time at every serverCron() loop in order to rehash some key. */
491 void incrementallyRehash(void) {
494 for (j
= 0; j
< server
.dbnum
; j
++) {
495 if (dictIsRehashing(server
.db
[j
].dict
)) {
496 dictRehashMilliseconds(server
.db
[j
].dict
,1);
497 break; /* already used our millisecond for this loop... */
502 /* This function is called once a background process of some kind terminates,
503 * as we want to avoid resizing the hash tables when there is a child in order
504 * to play well with copy-on-write (otherwise when a resize happens lots of
505 * memory pages are copied). The goal of this function is to update the ability
506 * for dict.c to resize the hash tables accordingly to the fact we have o not
508 void updateDictResizePolicy(void) {
509 if (server
.bgsavechildpid
== -1 && server
.bgrewritechildpid
== -1)
515 /* ======================= Cron: called every 100 ms ======================== */
517 /* Try to expire a few timed out keys. The algorithm used is adaptive and
518 * will use few CPU cycles if there are few expiring keys, otherwise
519 * it will get more aggressive to avoid that too much memory is used by
520 * keys that can be removed from the keyspace. */
521 void activeExpireCycle(void) {
524 for (j
= 0; j
< server
.dbnum
; j
++) {
526 redisDb
*db
= server
.db
+j
;
528 /* Continue to expire if at the end of the cycle more than 25%
529 * of the keys were expired. */
531 long num
= dictSize(db
->expires
);
532 time_t now
= time(NULL
);
535 if (num
> REDIS_EXPIRELOOKUPS_PER_CRON
)
536 num
= REDIS_EXPIRELOOKUPS_PER_CRON
;
541 if ((de
= dictGetRandomKey(db
->expires
)) == NULL
) break;
542 t
= (time_t) dictGetEntryVal(de
);
544 sds key
= dictGetEntryKey(de
);
545 robj
*keyobj
= createStringObject(key
,sdslen(key
));
547 propagateExpire(db
,keyobj
);
549 decrRefCount(keyobj
);
551 server
.stat_expiredkeys
++;
554 } while (expired
> REDIS_EXPIRELOOKUPS_PER_CRON
/4);
558 void updateLRUClock(void) {
559 server
.lruclock
= (time(NULL
)/REDIS_LRU_CLOCK_RESOLUTION
) &
563 int serverCron(struct aeEventLoop
*eventLoop
, long long id
, void *clientData
) {
564 int j
, loops
= server
.cronloops
;
565 REDIS_NOTUSED(eventLoop
);
567 REDIS_NOTUSED(clientData
);
569 /* We take a cached value of the unix time in the global state because
570 * with virtual memory and aging there is to store the current time
571 * in objects at every object access, and accuracy is not needed.
572 * To access a global var is faster than calling time(NULL) */
573 server
.unixtime
= time(NULL
);
574 /* We have just 22 bits per object for LRU information.
575 * So we use an (eventually wrapping) LRU clock with 10 seconds resolution.
576 * 2^22 bits with 10 seconds resoluton is more or less 1.5 years.
578 * Note that even if this will wrap after 1.5 years it's not a problem,
579 * everything will still work but just some object will appear younger
580 * to Redis. But for this to happen a given object should never be touched
583 * Note that you can change the resolution altering the
584 * REDIS_LRU_CLOCK_RESOLUTION define.
588 /* Record the max memory used since the server was started. */
589 if (zmalloc_used_memory() > server
.stat_peak_memory
)
590 server
.stat_peak_memory
= zmalloc_used_memory();
592 /* We received a SIGTERM, shutting down here in a safe way, as it is
593 * not ok doing so inside the signal handler. */
594 if (server
.shutdown_asap
) {
595 if (prepareForShutdown() == REDIS_OK
) exit(0);
596 redisLog(REDIS_WARNING
,"SIGTERM received but errors trying to shut down the server, check the logs for more information");
599 /* Show some info about non-empty databases */
600 for (j
= 0; j
< server
.dbnum
; j
++) {
601 long long size
, used
, vkeys
;
603 size
= dictSlots(server
.db
[j
].dict
);
604 used
= dictSize(server
.db
[j
].dict
);
605 vkeys
= dictSize(server
.db
[j
].expires
);
606 if (!(loops
% 50) && (used
|| vkeys
)) {
607 redisLog(REDIS_VERBOSE
,"DB %d: %lld keys (%lld volatile) in %lld slots HT.",j
,used
,vkeys
,size
);
608 /* dictPrintStats(server.dict); */
612 /* We don't want to resize the hash tables while a bacground saving
613 * is in progress: the saving child is created using fork() that is
614 * implemented with a copy-on-write semantic in most modern systems, so
615 * if we resize the HT while there is the saving child at work actually
616 * a lot of memory movements in the parent will cause a lot of pages
618 if (server
.bgsavechildpid
== -1 && server
.bgrewritechildpid
== -1) {
619 if (!(loops
% 10)) tryResizeHashTables();
620 if (server
.activerehashing
) incrementallyRehash();
623 /* Show information about connected clients */
625 redisLog(REDIS_VERBOSE
,"%d clients connected (%d slaves), %zu bytes in use",
626 listLength(server
.clients
)-listLength(server
.slaves
),
627 listLength(server
.slaves
),
628 zmalloc_used_memory());
631 /* Close connections of timedout clients */
632 if ((server
.maxidletime
&& !(loops
% 100)) || server
.bpop_blocked_clients
)
633 closeTimedoutClients();
635 /* Start a scheduled AOF rewrite if this was requested by the user while
636 * a BGSAVE was in progress. */
637 if (server
.bgsavechildpid
== -1 && server
.bgrewritechildpid
== -1 &&
638 server
.aofrewrite_scheduled
)
640 rewriteAppendOnlyFileBackground();
643 /* Check if a background saving or AOF rewrite in progress terminated. */
644 if (server
.bgsavechildpid
!= -1 || server
.bgrewritechildpid
!= -1) {
648 if ((pid
= wait3(&statloc
,WNOHANG
,NULL
)) != 0) {
649 int exitcode
= WEXITSTATUS(statloc
);
652 if (WIFSIGNALED(statloc
)) bysignal
= WTERMSIG(statloc
);
654 if (pid
== server
.bgsavechildpid
) {
655 backgroundSaveDoneHandler(exitcode
,bysignal
);
657 backgroundRewriteDoneHandler(exitcode
,bysignal
);
659 updateDictResizePolicy();
662 time_t now
= time(NULL
);
664 /* If there is not a background saving/rewrite in progress check if
665 * we have to save/rewrite now */
666 for (j
= 0; j
< server
.saveparamslen
; j
++) {
667 struct saveparam
*sp
= server
.saveparams
+j
;
669 if (server
.dirty
>= sp
->changes
&&
670 now
-server
.lastsave
> sp
->seconds
) {
671 redisLog(REDIS_NOTICE
,"%d changes in %d seconds. Saving...",
672 sp
->changes
, sp
->seconds
);
673 rdbSaveBackground(server
.dbfilename
);
678 /* Trigger an AOF rewrite if needed */
679 if (server
.bgsavechildpid
== -1 &&
680 server
.bgrewritechildpid
== -1 &&
681 server
.auto_aofrewrite_perc
&&
682 server
.appendonly_current_size
> server
.auto_aofrewrite_min_size
)
684 int base
= server
.auto_aofrewrite_base_size
?
685 server
.auto_aofrewrite_base_size
: 1;
686 long long growth
= (server
.appendonly_current_size
*100/base
) - 100;
687 if (growth
>= server
.auto_aofrewrite_perc
) {
688 redisLog(REDIS_NOTICE
,"Starting automatic rewriting of AOF on %lld%% growth",growth
);
689 rewriteAppendOnlyFileBackground();
694 /* Expire a few keys per cycle, only if this is a master.
695 * On slaves we wait for DEL operations synthesized by the master
696 * in order to guarantee a strict consistency. */
697 if (server
.masterhost
== NULL
) activeExpireCycle();
699 /* Replication cron function -- used to reconnect to master and
700 * to detect transfer failures. */
701 if (!(loops
% 10)) replicationCron();
703 /* Run other sub-systems specific cron jobs */
704 if (server
.cluster_enabled
&& !(loops
% 10)) clusterCron();
710 /* This function gets called every time Redis is entering the
711 * main loop of the event driven library, that is, before to sleep
712 * for ready file descriptors. */
713 void beforeSleep(struct aeEventLoop
*eventLoop
) {
714 REDIS_NOTUSED(eventLoop
);
718 /* Try to process pending commands for clients that were just unblocked. */
719 while (listLength(server
.unblocked_clients
)) {
720 ln
= listFirst(server
.unblocked_clients
);
721 redisAssert(ln
!= NULL
);
723 listDelNode(server
.unblocked_clients
,ln
);
724 c
->flags
&= ~REDIS_UNBLOCKED
;
726 /* Process remaining data in the input buffer. */
727 if (c
->querybuf
&& sdslen(c
->querybuf
) > 0)
728 processInputBuffer(c
);
731 /* Write the AOF buffer on disk */
732 flushAppendOnlyFile();
735 /* =========================== Server initialization ======================== */
737 void createSharedObjects(void) {
740 shared
.crlf
= createObject(REDIS_STRING
,sdsnew("\r\n"));
741 shared
.ok
= createObject(REDIS_STRING
,sdsnew("+OK\r\n"));
742 shared
.err
= createObject(REDIS_STRING
,sdsnew("-ERR\r\n"));
743 shared
.emptybulk
= createObject(REDIS_STRING
,sdsnew("$0\r\n\r\n"));
744 shared
.czero
= createObject(REDIS_STRING
,sdsnew(":0\r\n"));
745 shared
.cone
= createObject(REDIS_STRING
,sdsnew(":1\r\n"));
746 shared
.cnegone
= createObject(REDIS_STRING
,sdsnew(":-1\r\n"));
747 shared
.nullbulk
= createObject(REDIS_STRING
,sdsnew("$-1\r\n"));
748 shared
.nullmultibulk
= createObject(REDIS_STRING
,sdsnew("*-1\r\n"));
749 shared
.emptymultibulk
= createObject(REDIS_STRING
,sdsnew("*0\r\n"));
750 shared
.pong
= createObject(REDIS_STRING
,sdsnew("+PONG\r\n"));
751 shared
.queued
= createObject(REDIS_STRING
,sdsnew("+QUEUED\r\n"));
752 shared
.wrongtypeerr
= createObject(REDIS_STRING
,sdsnew(
753 "-ERR Operation against a key holding the wrong kind of value\r\n"));
754 shared
.nokeyerr
= createObject(REDIS_STRING
,sdsnew(
755 "-ERR no such key\r\n"));
756 shared
.syntaxerr
= createObject(REDIS_STRING
,sdsnew(
757 "-ERR syntax error\r\n"));
758 shared
.sameobjecterr
= createObject(REDIS_STRING
,sdsnew(
759 "-ERR source and destination objects are the same\r\n"));
760 shared
.outofrangeerr
= createObject(REDIS_STRING
,sdsnew(
761 "-ERR index out of range\r\n"));
762 shared
.loadingerr
= createObject(REDIS_STRING
,sdsnew(
763 "-LOADING Redis is loading the dataset in memory\r\n"));
764 shared
.space
= createObject(REDIS_STRING
,sdsnew(" "));
765 shared
.colon
= createObject(REDIS_STRING
,sdsnew(":"));
766 shared
.plus
= createObject(REDIS_STRING
,sdsnew("+"));
767 shared
.select0
= createStringObject("select 0\r\n",10);
768 shared
.select1
= createStringObject("select 1\r\n",10);
769 shared
.select2
= createStringObject("select 2\r\n",10);
770 shared
.select3
= createStringObject("select 3\r\n",10);
771 shared
.select4
= createStringObject("select 4\r\n",10);
772 shared
.select5
= createStringObject("select 5\r\n",10);
773 shared
.select6
= createStringObject("select 6\r\n",10);
774 shared
.select7
= createStringObject("select 7\r\n",10);
775 shared
.select8
= createStringObject("select 8\r\n",10);
776 shared
.select9
= createStringObject("select 9\r\n",10);
777 shared
.messagebulk
= createStringObject("$7\r\nmessage\r\n",13);
778 shared
.pmessagebulk
= createStringObject("$8\r\npmessage\r\n",14);
779 shared
.subscribebulk
= createStringObject("$9\r\nsubscribe\r\n",15);
780 shared
.unsubscribebulk
= createStringObject("$11\r\nunsubscribe\r\n",18);
781 shared
.psubscribebulk
= createStringObject("$10\r\npsubscribe\r\n",17);
782 shared
.punsubscribebulk
= createStringObject("$12\r\npunsubscribe\r\n",19);
783 shared
.mbulk3
= createStringObject("*3\r\n",4);
784 shared
.mbulk4
= createStringObject("*4\r\n",4);
785 for (j
= 0; j
< REDIS_SHARED_INTEGERS
; j
++) {
786 shared
.integers
[j
] = createObject(REDIS_STRING
,(void*)(long)j
);
787 shared
.integers
[j
]->encoding
= REDIS_ENCODING_INT
;
791 void initServerConfig() {
792 server
.port
= REDIS_SERVERPORT
;
793 server
.bindaddr
= NULL
;
794 server
.unixsocket
= NULL
;
797 server
.dbnum
= REDIS_DEFAULT_DBNUM
;
798 server
.verbosity
= REDIS_VERBOSE
;
799 server
.maxidletime
= REDIS_MAXIDLETIME
;
800 server
.saveparams
= NULL
;
802 server
.logfile
= NULL
; /* NULL = log on standard output */
803 server
.syslog_enabled
= 0;
804 server
.syslog_ident
= zstrdup("redis");
805 server
.syslog_facility
= LOG_LOCAL0
;
806 server
.daemonize
= 0;
807 server
.appendonly
= 0;
808 server
.appendfsync
= APPENDFSYNC_EVERYSEC
;
809 server
.no_appendfsync_on_rewrite
= 0;
810 server
.auto_aofrewrite_perc
= REDIS_AUTO_AOFREWRITE_PERC
;
811 server
.auto_aofrewrite_min_size
= REDIS_AUTO_AOFREWRITE_MIN_SIZE
;
812 server
.auto_aofrewrite_base_size
= 0;
813 server
.aofrewrite_scheduled
= 0;
814 server
.lastfsync
= time(NULL
);
815 server
.appendfd
= -1;
816 server
.appendseldb
= -1; /* Make sure the first time will not match */
817 server
.pidfile
= zstrdup("/var/run/redis.pid");
818 server
.dbfilename
= zstrdup("dump.rdb");
819 server
.appendfilename
= zstrdup("appendonly.aof");
820 server
.requirepass
= NULL
;
821 server
.rdbcompression
= 1;
822 server
.activerehashing
= 1;
823 server
.maxclients
= 0;
824 server
.bpop_blocked_clients
= 0;
825 server
.maxmemory
= 0;
826 server
.maxmemory_policy
= REDIS_MAXMEMORY_VOLATILE_LRU
;
827 server
.maxmemory_samples
= 3;
828 server
.hash_max_zipmap_entries
= REDIS_HASH_MAX_ZIPMAP_ENTRIES
;
829 server
.hash_max_zipmap_value
= REDIS_HASH_MAX_ZIPMAP_VALUE
;
830 server
.list_max_ziplist_entries
= REDIS_LIST_MAX_ZIPLIST_ENTRIES
;
831 server
.list_max_ziplist_value
= REDIS_LIST_MAX_ZIPLIST_VALUE
;
832 server
.set_max_intset_entries
= REDIS_SET_MAX_INTSET_ENTRIES
;
833 server
.zset_max_ziplist_entries
= REDIS_ZSET_MAX_ZIPLIST_ENTRIES
;
834 server
.zset_max_ziplist_value
= REDIS_ZSET_MAX_ZIPLIST_VALUE
;
835 server
.shutdown_asap
= 0;
836 server
.cluster_enabled
= 0;
837 server
.cluster
.configfile
= zstrdup("nodes.conf");
840 resetServerSaveParams();
842 appendServerSaveParams(60*60,1); /* save after 1 hour and 1 change */
843 appendServerSaveParams(300,100); /* save after 5 minutes and 100 changes */
844 appendServerSaveParams(60,10000); /* save after 1 minute and 10000 changes */
845 /* Replication related */
847 server
.masterauth
= NULL
;
848 server
.masterhost
= NULL
;
849 server
.masterport
= 6379;
850 server
.master
= NULL
;
851 server
.replstate
= REDIS_REPL_NONE
;
852 server
.repl_syncio_timeout
= REDIS_REPL_SYNCIO_TIMEOUT
;
853 server
.repl_serve_stale_data
= 1;
854 server
.repl_down_since
= -1;
856 /* Double constants initialization */
858 R_PosInf
= 1.0/R_Zero
;
859 R_NegInf
= -1.0/R_Zero
;
860 R_Nan
= R_Zero
/R_Zero
;
862 /* Command table -- we intiialize it here as it is part of the
863 * initial configuration, since command names may be changed via
864 * redis.conf using the rename-command directive. */
865 server
.commands
= dictCreate(&commandTableDictType
,NULL
);
866 populateCommandTable();
867 server
.delCommand
= lookupCommandByCString("del");
868 server
.multiCommand
= lookupCommandByCString("multi");
874 signal(SIGHUP
, SIG_IGN
);
875 signal(SIGPIPE
, SIG_IGN
);
876 setupSignalHandlers();
878 if (server
.syslog_enabled
) {
879 openlog(server
.syslog_ident
, LOG_PID
| LOG_NDELAY
| LOG_NOWAIT
,
880 server
.syslog_facility
);
883 server
.clients
= listCreate();
884 server
.slaves
= listCreate();
885 server
.monitors
= listCreate();
886 server
.unblocked_clients
= listCreate();
888 createSharedObjects();
889 server
.el
= aeCreateEventLoop();
890 server
.db
= zmalloc(sizeof(redisDb
)*server
.dbnum
);
892 if (server
.port
!= 0) {
893 server
.ipfd
= anetTcpServer(server
.neterr
,server
.port
,server
.bindaddr
);
894 if (server
.ipfd
== ANET_ERR
) {
895 redisLog(REDIS_WARNING
, "Opening port: %s", server
.neterr
);
899 if (server
.unixsocket
!= NULL
) {
900 unlink(server
.unixsocket
); /* don't care if this fails */
901 server
.sofd
= anetUnixServer(server
.neterr
,server
.unixsocket
);
902 if (server
.sofd
== ANET_ERR
) {
903 redisLog(REDIS_WARNING
, "Opening socket: %s", server
.neterr
);
907 if (server
.ipfd
< 0 && server
.sofd
< 0) {
908 redisLog(REDIS_WARNING
, "Configured to not listen anywhere, exiting.");
911 for (j
= 0; j
< server
.dbnum
; j
++) {
912 server
.db
[j
].dict
= dictCreate(&dbDictType
,NULL
);
913 server
.db
[j
].expires
= dictCreate(&keyptrDictType
,NULL
);
914 server
.db
[j
].blocking_keys
= dictCreate(&keylistDictType
,NULL
);
915 server
.db
[j
].watched_keys
= dictCreate(&keylistDictType
,NULL
);
918 server
.pubsub_channels
= dictCreate(&keylistDictType
,NULL
);
919 server
.pubsub_patterns
= listCreate();
920 listSetFreeMethod(server
.pubsub_patterns
,freePubsubPattern
);
921 listSetMatchMethod(server
.pubsub_patterns
,listMatchPubsubPattern
);
922 server
.cronloops
= 0;
923 server
.bgsavechildpid
= -1;
924 server
.bgrewritechildpid
= -1;
925 server
.bgrewritebuf
= sdsempty();
926 server
.aofbuf
= sdsempty();
927 server
.lastsave
= time(NULL
);
929 server
.stat_numcommands
= 0;
930 server
.stat_numconnections
= 0;
931 server
.stat_expiredkeys
= 0;
932 server
.stat_evictedkeys
= 0;
933 server
.stat_starttime
= time(NULL
);
934 server
.stat_keyspace_misses
= 0;
935 server
.stat_keyspace_hits
= 0;
936 server
.stat_peak_memory
= 0;
937 server
.stat_fork_time
= 0;
938 server
.unixtime
= time(NULL
);
939 aeCreateTimeEvent(server
.el
, 1, serverCron
, NULL
, NULL
);
940 if (server
.ipfd
> 0 && aeCreateFileEvent(server
.el
,server
.ipfd
,AE_READABLE
,
941 acceptTcpHandler
,NULL
) == AE_ERR
) oom("creating file event");
942 if (server
.sofd
> 0 && aeCreateFileEvent(server
.el
,server
.sofd
,AE_READABLE
,
943 acceptUnixHandler
,NULL
) == AE_ERR
) oom("creating file event");
945 if (server
.appendonly
) {
946 server
.appendfd
= open(server
.appendfilename
,O_WRONLY
|O_APPEND
|O_CREAT
,0644);
947 if (server
.appendfd
== -1) {
948 redisLog(REDIS_WARNING
, "Can't open the append-only file: %s",
954 if (server
.cluster_enabled
) clusterInit();
955 srand(time(NULL
)^getpid());
958 /* Populates the Redis Command Table starting from the hard coded list
959 * we have on top of redis.c file. */
960 void populateCommandTable(void) {
962 int numcommands
= sizeof(redisCommandTable
)/sizeof(struct redisCommand
);
964 for (j
= 0; j
< numcommands
; j
++) {
965 struct redisCommand
*c
= redisCommandTable
+j
;
968 retval
= dictAdd(server
.commands
, sdsnew(c
->name
), c
);
969 assert(retval
== DICT_OK
);
973 void resetCommandTableStats(void) {
974 int numcommands
= sizeof(redisCommandTable
)/sizeof(struct redisCommand
);
977 for (j
= 0; j
< numcommands
; j
++) {
978 struct redisCommand
*c
= redisCommandTable
+j
;
985 /* ====================== Commands lookup and execution ===================== */
987 struct redisCommand
*lookupCommand(sds name
) {
988 return dictFetchValue(server
.commands
, name
);
991 struct redisCommand
*lookupCommandByCString(char *s
) {
992 struct redisCommand
*cmd
;
993 sds name
= sdsnew(s
);
995 cmd
= dictFetchValue(server
.commands
, name
);
1000 /* Call() is the core of Redis execution of a command */
1001 void call(redisClient
*c
, struct redisCommand
*cmd
) {
1002 long long dirty
, start
= ustime();
1004 dirty
= server
.dirty
;
1006 dirty
= server
.dirty
-dirty
;
1007 cmd
->microseconds
+= ustime()-start
;
1010 if (server
.appendonly
&& dirty
)
1011 feedAppendOnlyFile(cmd
,c
->db
->id
,c
->argv
,c
->argc
);
1012 if ((dirty
|| cmd
->flags
& REDIS_CMD_FORCE_REPLICATION
) &&
1013 listLength(server
.slaves
))
1014 replicationFeedSlaves(server
.slaves
,c
->db
->id
,c
->argv
,c
->argc
);
1015 if (listLength(server
.monitors
))
1016 replicationFeedMonitors(server
.monitors
,c
->db
->id
,c
->argv
,c
->argc
);
1017 server
.stat_numcommands
++;
1020 /* If this function gets called we already read a whole
1021 * command, argments are in the client argv/argc fields.
1022 * processCommand() execute the command or prepare the
1023 * server for a bulk read from the client.
1025 * If 1 is returned the client is still alive and valid and
1026 * and other operations can be performed by the caller. Otherwise
1027 * if 0 is returned the client was destroied (i.e. after QUIT). */
1028 int processCommand(redisClient
*c
) {
1029 struct redisCommand
*cmd
;
1031 /* The QUIT command is handled separately. Normal command procs will
1032 * go through checking for replication and QUIT will cause trouble
1033 * when FORCE_REPLICATION is enabled and would be implemented in
1034 * a regular command proc. */
1035 if (!strcasecmp(c
->argv
[0]->ptr
,"quit")) {
1036 addReply(c
,shared
.ok
);
1037 c
->flags
|= REDIS_CLOSE_AFTER_REPLY
;
1041 /* Now lookup the command and check ASAP about trivial error conditions
1042 * such wrong arity, bad command name and so forth. */
1043 cmd
= lookupCommand(c
->argv
[0]->ptr
);
1045 addReplyErrorFormat(c
,"unknown command '%s'",
1046 (char*)c
->argv
[0]->ptr
);
1048 } else if ((cmd
->arity
> 0 && cmd
->arity
!= c
->argc
) ||
1049 (c
->argc
< -cmd
->arity
)) {
1050 addReplyErrorFormat(c
,"wrong number of arguments for '%s' command",
1055 /* Check if the user is authenticated */
1056 if (server
.requirepass
&& !c
->authenticated
&& cmd
->proc
!= authCommand
) {
1057 addReplyError(c
,"operation not permitted");
1061 /* If cluster is enabled, redirect here */
1062 if (server
.cluster_enabled
&&
1063 !(cmd
->getkeys_proc
== NULL
&& cmd
->firstkey
== 0)) {
1066 if (server
.cluster
.state
!= REDIS_CLUSTER_OK
) {
1067 addReplyError(c
,"The cluster is down. Check with CLUSTER INFO for more information");
1071 clusterNode
*n
= getNodeByQuery(c
,cmd
,c
->argv
,c
->argc
,&hashslot
,&ask
);
1073 addReplyError(c
,"Multi keys request invalid in cluster");
1075 } else if (n
!= server
.cluster
.myself
) {
1076 addReplySds(c
,sdscatprintf(sdsempty(),
1077 "-%s %d %s:%d\r\n", ask
? "ASK" : "MOVED",
1078 hashslot
,n
->ip
,n
->port
));
1084 /* Handle the maxmemory directive.
1086 * First we try to free some memory if possible (if there are volatile
1087 * keys in the dataset). If there are not the only thing we can do
1088 * is returning an error. */
1089 if (server
.maxmemory
) freeMemoryIfNeeded();
1090 if (server
.maxmemory
&& (cmd
->flags
& REDIS_CMD_DENYOOM
) &&
1091 zmalloc_used_memory() > server
.maxmemory
)
1093 addReplyError(c
,"command not allowed when used memory > 'maxmemory'");
1097 /* Only allow SUBSCRIBE and UNSUBSCRIBE in the context of Pub/Sub */
1098 if ((dictSize(c
->pubsub_channels
) > 0 || listLength(c
->pubsub_patterns
) > 0)
1100 cmd
->proc
!= subscribeCommand
&& cmd
->proc
!= unsubscribeCommand
&&
1101 cmd
->proc
!= psubscribeCommand
&& cmd
->proc
!= punsubscribeCommand
) {
1102 addReplyError(c
,"only (P)SUBSCRIBE / (P)UNSUBSCRIBE / QUIT allowed in this context");
1106 /* Only allow INFO and SLAVEOF when slave-serve-stale-data is no and
1107 * we are a slave with a broken link with master. */
1108 if (server
.masterhost
&& server
.replstate
!= REDIS_REPL_CONNECTED
&&
1109 server
.repl_serve_stale_data
== 0 &&
1110 cmd
->proc
!= infoCommand
&& cmd
->proc
!= slaveofCommand
)
1113 "link with MASTER is down and slave-serve-stale-data is set to no");
1117 /* Loading DB? Return an error if the command is not INFO */
1118 if (server
.loading
&& cmd
->proc
!= infoCommand
) {
1119 addReply(c
, shared
.loadingerr
);
1123 /* Exec the command */
1124 if (c
->flags
& REDIS_MULTI
&&
1125 cmd
->proc
!= execCommand
&& cmd
->proc
!= discardCommand
&&
1126 cmd
->proc
!= multiCommand
&& cmd
->proc
!= watchCommand
)
1128 queueMultiCommand(c
,cmd
);
1129 addReply(c
,shared
.queued
);
1136 /*================================== Shutdown =============================== */
1138 int prepareForShutdown() {
1139 redisLog(REDIS_WARNING
,"User requested shutdown, saving DB...");
1140 /* Kill the saving child if there is a background saving in progress.
1141 We want to avoid race conditions, for instance our saving child may
1142 overwrite the synchronous saving did by SHUTDOWN. */
1143 if (server
.bgsavechildpid
!= -1) {
1144 redisLog(REDIS_WARNING
,"There is a live saving child. Killing it!");
1145 kill(server
.bgsavechildpid
,SIGKILL
);
1146 rdbRemoveTempFile(server
.bgsavechildpid
);
1148 if (server
.appendonly
) {
1149 /* Append only file: fsync() the AOF and exit */
1150 aof_fsync(server
.appendfd
);
1151 } else if (server
.saveparamslen
> 0) {
1152 /* Snapshotting. Perform a SYNC SAVE and exit */
1153 if (rdbSave(server
.dbfilename
) != REDIS_OK
) {
1154 /* Ooops.. error saving! The best we can do is to continue
1155 * operating. Note that if there was a background saving process,
1156 * in the next cron() Redis will be notified that the background
1157 * saving aborted, handling special stuff like slaves pending for
1158 * synchronization... */
1159 redisLog(REDIS_WARNING
,"Error trying to save the DB, can't exit");
1163 redisLog(REDIS_WARNING
,"Not saving DB.");
1165 if (server
.daemonize
) unlink(server
.pidfile
);
1166 redisLog(REDIS_WARNING
,"Server exit now, bye bye...");
1170 /*================================== Commands =============================== */
1172 void authCommand(redisClient
*c
) {
1173 if (!server
.requirepass
|| !strcmp(c
->argv
[1]->ptr
, server
.requirepass
)) {
1174 c
->authenticated
= 1;
1175 addReply(c
,shared
.ok
);
1177 c
->authenticated
= 0;
1178 addReplyError(c
,"invalid password");
1182 void pingCommand(redisClient
*c
) {
1183 addReply(c
,shared
.pong
);
1186 void echoCommand(redisClient
*c
) {
1187 addReplyBulk(c
,c
->argv
[1]);
1190 /* Convert an amount of bytes into a human readable string in the form
1191 * of 100B, 2G, 100M, 4K, and so forth. */
1192 void bytesToHuman(char *s
, unsigned long long n
) {
1197 sprintf(s
,"%lluB",n
);
1199 } else if (n
< (1024*1024)) {
1200 d
= (double)n
/(1024);
1201 sprintf(s
,"%.2fK",d
);
1202 } else if (n
< (1024LL*1024*1024)) {
1203 d
= (double)n
/(1024*1024);
1204 sprintf(s
,"%.2fM",d
);
1205 } else if (n
< (1024LL*1024*1024*1024)) {
1206 d
= (double)n
/(1024LL*1024*1024);
1207 sprintf(s
,"%.2fG",d
);
1211 /* Create the string returned by the INFO command. This is decoupled
1212 * by the INFO command itself as we need to report the same information
1213 * on memory corruption problems. */
1214 sds
genRedisInfoString(char *section
) {
1215 sds info
= sdsempty();
1216 time_t uptime
= time(NULL
)-server
.stat_starttime
;
1218 struct rusage self_ru
, c_ru
;
1219 unsigned long lol
, bib
;
1220 int allsections
= 0, defsections
= 0;
1224 allsections
= strcasecmp(section
,"all") == 0;
1225 defsections
= strcasecmp(section
,"default") == 0;
1228 getrusage(RUSAGE_SELF
, &self_ru
);
1229 getrusage(RUSAGE_CHILDREN
, &c_ru
);
1230 getClientsMaxBuffers(&lol
,&bib
);
1233 if (allsections
|| defsections
|| !strcasecmp(section
,"server")) {
1234 if (sections
++) info
= sdscat(info
,"\r\n");
1235 info
= sdscatprintf(info
,
1237 "redis_version:%s\r\n"
1238 "redis_git_sha1:%s\r\n"
1239 "redis_git_dirty:%d\r\n"
1241 "multiplexing_api:%s\r\n"
1242 "process_id:%ld\r\n"
1244 "uptime_in_seconds:%ld\r\n"
1245 "uptime_in_days:%ld\r\n"
1246 "lru_clock:%ld\r\n",
1249 strtol(redisGitDirty(),NULL
,10) > 0,
1250 (sizeof(long) == 8) ? "64" : "32",
1256 (unsigned long) server
.lruclock
);
1260 if (allsections
|| defsections
|| !strcasecmp(section
,"clients")) {
1261 if (sections
++) info
= sdscat(info
,"\r\n");
1262 info
= sdscatprintf(info
,
1264 "connected_clients:%d\r\n"
1265 "client_longest_output_list:%lu\r\n"
1266 "client_biggest_input_buf:%lu\r\n"
1267 "blocked_clients:%d\r\n",
1268 listLength(server
.clients
)-listLength(server
.slaves
),
1270 server
.bpop_blocked_clients
);
1274 if (allsections
|| defsections
|| !strcasecmp(section
,"memory")) {
1278 bytesToHuman(hmem
,zmalloc_used_memory());
1279 bytesToHuman(peak_hmem
,server
.stat_peak_memory
);
1280 if (sections
++) info
= sdscat(info
,"\r\n");
1281 info
= sdscatprintf(info
,
1283 "used_memory:%zu\r\n"
1284 "used_memory_human:%s\r\n"
1285 "used_memory_rss:%zu\r\n"
1286 "used_memory_peak:%zu\r\n"
1287 "used_memory_peak_human:%s\r\n"
1288 "mem_fragmentation_ratio:%.2f\r\n"
1289 "mem_allocator:%s\r\n",
1290 zmalloc_used_memory(),
1293 server
.stat_peak_memory
,
1295 zmalloc_get_fragmentation_ratio(),
1300 /* Allocation statistics */
1301 if (allsections
|| !strcasecmp(section
,"allocstats")) {
1302 if (sections
++) info
= sdscat(info
,"\r\n");
1303 info
= sdscat(info
, "# Allocstats\r\nallocation_stats:");
1304 for (j
= 0; j
<= ZMALLOC_MAX_ALLOC_STAT
; j
++) {
1305 size_t count
= zmalloc_allocations_for_size(j
);
1307 if (info
[sdslen(info
)-1] != ':') info
= sdscatlen(info
,",",1);
1308 info
= sdscatprintf(info
,"%s%d=%zu",
1309 (j
== ZMALLOC_MAX_ALLOC_STAT
) ? ">=" : "",
1313 info
= sdscat(info
,"\r\n");
1317 if (allsections
|| defsections
|| !strcasecmp(section
,"persistence")) {
1318 if (sections
++) info
= sdscat(info
,"\r\n");
1319 info
= sdscatprintf(info
,
1322 "aof_enabled:%d\r\n"
1323 "changes_since_last_save:%lld\r\n"
1324 "bgsave_in_progress:%d\r\n"
1325 "last_save_time:%ld\r\n"
1326 "bgrewriteaof_in_progress:%d\r\n",
1330 server
.bgsavechildpid
!= -1,
1332 server
.bgrewritechildpid
!= -1);
1334 if (server
.appendonly
) {
1335 info
= sdscatprintf(info
,
1336 "aof_current_size:%lld\r\n"
1337 "aof_base_size:%lld\r\n"
1338 "aof_pending_rewrite:%d\r\n",
1339 (long long) server
.appendonly_current_size
,
1340 (long long) server
.auto_aofrewrite_base_size
,
1341 server
.aofrewrite_scheduled
);
1344 if (server
.loading
) {
1346 time_t eta
, elapsed
;
1347 off_t remaining_bytes
= server
.loading_total_bytes
-
1348 server
.loading_loaded_bytes
;
1350 perc
= ((double)server
.loading_loaded_bytes
/
1351 server
.loading_total_bytes
) * 100;
1353 elapsed
= time(NULL
)-server
.loading_start_time
;
1355 eta
= 1; /* A fake 1 second figure if we don't have
1358 eta
= (elapsed
*remaining_bytes
)/server
.loading_loaded_bytes
;
1361 info
= sdscatprintf(info
,
1362 "loading_start_time:%ld\r\n"
1363 "loading_total_bytes:%llu\r\n"
1364 "loading_loaded_bytes:%llu\r\n"
1365 "loading_loaded_perc:%.2f\r\n"
1366 "loading_eta_seconds:%ld\r\n"
1367 ,(unsigned long) server
.loading_start_time
,
1368 (unsigned long long) server
.loading_total_bytes
,
1369 (unsigned long long) server
.loading_loaded_bytes
,
1377 if (allsections
|| defsections
|| !strcasecmp(section
,"stats")) {
1378 if (sections
++) info
= sdscat(info
,"\r\n");
1379 info
= sdscatprintf(info
,
1381 "total_connections_received:%lld\r\n"
1382 "total_commands_processed:%lld\r\n"
1383 "expired_keys:%lld\r\n"
1384 "evicted_keys:%lld\r\n"
1385 "keyspace_hits:%lld\r\n"
1386 "keyspace_misses:%lld\r\n"
1387 "pubsub_channels:%ld\r\n"
1388 "pubsub_patterns:%u\r\n"
1389 "latest_fork_usec:%lld\r\n",
1390 server
.stat_numconnections
,
1391 server
.stat_numcommands
,
1392 server
.stat_expiredkeys
,
1393 server
.stat_evictedkeys
,
1394 server
.stat_keyspace_hits
,
1395 server
.stat_keyspace_misses
,
1396 dictSize(server
.pubsub_channels
),
1397 listLength(server
.pubsub_patterns
),
1398 server
.stat_fork_time
);
1402 if (allsections
|| defsections
|| !strcasecmp(section
,"replication")) {
1403 if (sections
++) info
= sdscat(info
,"\r\n");
1404 info
= sdscatprintf(info
,
1407 server
.masterhost
== NULL
? "master" : "slave");
1408 if (server
.masterhost
) {
1409 info
= sdscatprintf(info
,
1410 "master_host:%s\r\n"
1411 "master_port:%d\r\n"
1412 "master_link_status:%s\r\n"
1413 "master_last_io_seconds_ago:%d\r\n"
1414 "master_sync_in_progress:%d\r\n"
1417 (server
.replstate
== REDIS_REPL_CONNECTED
) ?
1420 ((int)(time(NULL
)-server
.master
->lastinteraction
)) : -1,
1421 server
.replstate
== REDIS_REPL_TRANSFER
1424 if (server
.replstate
== REDIS_REPL_TRANSFER
) {
1425 info
= sdscatprintf(info
,
1426 "master_sync_left_bytes:%ld\r\n"
1427 "master_sync_last_io_seconds_ago:%d\r\n"
1428 ,(long)server
.repl_transfer_left
,
1429 (int)(time(NULL
)-server
.repl_transfer_lastio
)
1433 if (server
.replstate
!= REDIS_REPL_CONNECTED
) {
1434 info
= sdscatprintf(info
,
1435 "master_link_down_since_seconds:%ld\r\n",
1436 (long)time(NULL
)-server
.repl_down_since
);
1439 info
= sdscatprintf(info
,
1440 "connected_slaves:%d\r\n",
1441 listLength(server
.slaves
));
1445 if (allsections
|| defsections
|| !strcasecmp(section
,"cpu")) {
1446 if (sections
++) info
= sdscat(info
,"\r\n");
1447 info
= sdscatprintf(info
,
1449 "used_cpu_sys:%.2f\r\n"
1450 "used_cpu_user:%.2f\r\n"
1451 "used_cpu_sys_childrens:%.2f\r\n"
1452 "used_cpu_user_childrens:%.2f\r\n",
1453 (float)self_ru
.ru_utime
.tv_sec
+(float)self_ru
.ru_utime
.tv_usec
/1000000,
1454 (float)self_ru
.ru_stime
.tv_sec
+(float)self_ru
.ru_stime
.tv_usec
/1000000,
1455 (float)c_ru
.ru_utime
.tv_sec
+(float)c_ru
.ru_utime
.tv_usec
/1000000,
1456 (float)c_ru
.ru_stime
.tv_sec
+(float)c_ru
.ru_stime
.tv_usec
/1000000);
1460 if (allsections
|| !strcasecmp(section
,"commandstats")) {
1461 if (sections
++) info
= sdscat(info
,"\r\n");
1462 info
= sdscatprintf(info
, "# Commandstats\r\n");
1463 numcommands
= sizeof(redisCommandTable
)/sizeof(struct redisCommand
);
1464 for (j
= 0; j
< numcommands
; j
++) {
1465 struct redisCommand
*c
= redisCommandTable
+j
;
1467 if (!c
->calls
) continue;
1468 info
= sdscatprintf(info
,
1469 "cmdstat_%s:calls=%lld,usec=%lld,usec_per_call=%.2f\r\n",
1470 c
->name
, c
->calls
, c
->microseconds
,
1471 (c
->calls
== 0) ? 0 : ((float)c
->microseconds
/c
->calls
));
1476 if (allsections
|| defsections
|| !strcasecmp(section
,"cluster")) {
1477 if (sections
++) info
= sdscat(info
,"\r\n");
1478 info
= sdscatprintf(info
,
1480 "cluster_enabled:%d\r\n",
1481 server
.cluster_enabled
);
1485 if (allsections
|| defsections
|| !strcasecmp(section
,"keyspace")) {
1486 if (sections
++) info
= sdscat(info
,"\r\n");
1487 info
= sdscatprintf(info
, "# Keyspace\r\n");
1488 for (j
= 0; j
< server
.dbnum
; j
++) {
1489 long long keys
, vkeys
;
1491 keys
= dictSize(server
.db
[j
].dict
);
1492 vkeys
= dictSize(server
.db
[j
].expires
);
1493 if (keys
|| vkeys
) {
1494 info
= sdscatprintf(info
, "db%d:keys=%lld,expires=%lld\r\n",
1502 void infoCommand(redisClient
*c
) {
1503 char *section
= c
->argc
== 2 ? c
->argv
[1]->ptr
: "default";
1506 addReply(c
,shared
.syntaxerr
);
1509 sds info
= genRedisInfoString(section
);
1510 addReplySds(c
,sdscatprintf(sdsempty(),"$%lu\r\n",
1511 (unsigned long)sdslen(info
)));
1512 addReplySds(c
,info
);
1513 addReply(c
,shared
.crlf
);
1516 void monitorCommand(redisClient
*c
) {
1517 /* ignore MONITOR if aleady slave or in monitor mode */
1518 if (c
->flags
& REDIS_SLAVE
) return;
1520 c
->flags
|= (REDIS_SLAVE
|REDIS_MONITOR
);
1522 listAddNodeTail(server
.monitors
,c
);
1523 addReply(c
,shared
.ok
);
1526 /* ============================ Maxmemory directive ======================== */
1528 /* This function gets called when 'maxmemory' is set on the config file to limit
1529 * the max memory used by the server, and we are out of memory.
1530 * This function will try to, in order:
1532 * - Free objects from the free list
1533 * - Try to remove keys with an EXPIRE set
1535 * It is not possible to free enough memory to reach used-memory < maxmemory
1536 * the server will start refusing commands that will enlarge even more the
1539 void freeMemoryIfNeeded(void) {
1540 /* Remove keys accordingly to the active policy as long as we are
1541 * over the memory limit. */
1542 if (server
.maxmemory_policy
== REDIS_MAXMEMORY_NO_EVICTION
) return;
1544 while (server
.maxmemory
&& zmalloc_used_memory() > server
.maxmemory
) {
1545 int j
, k
, freed
= 0;
1547 for (j
= 0; j
< server
.dbnum
; j
++) {
1548 long bestval
= 0; /* just to prevent warning */
1550 struct dictEntry
*de
;
1551 redisDb
*db
= server
.db
+j
;
1554 if (server
.maxmemory_policy
== REDIS_MAXMEMORY_ALLKEYS_LRU
||
1555 server
.maxmemory_policy
== REDIS_MAXMEMORY_ALLKEYS_RANDOM
)
1557 dict
= server
.db
[j
].dict
;
1559 dict
= server
.db
[j
].expires
;
1561 if (dictSize(dict
) == 0) continue;
1563 /* volatile-random and allkeys-random policy */
1564 if (server
.maxmemory_policy
== REDIS_MAXMEMORY_ALLKEYS_RANDOM
||
1565 server
.maxmemory_policy
== REDIS_MAXMEMORY_VOLATILE_RANDOM
)
1567 de
= dictGetRandomKey(dict
);
1568 bestkey
= dictGetEntryKey(de
);
1571 /* volatile-lru and allkeys-lru policy */
1572 else if (server
.maxmemory_policy
== REDIS_MAXMEMORY_ALLKEYS_LRU
||
1573 server
.maxmemory_policy
== REDIS_MAXMEMORY_VOLATILE_LRU
)
1575 for (k
= 0; k
< server
.maxmemory_samples
; k
++) {
1580 de
= dictGetRandomKey(dict
);
1581 thiskey
= dictGetEntryKey(de
);
1582 /* When policy is volatile-lru we need an additonal lookup
1583 * to locate the real key, as dict is set to db->expires. */
1584 if (server
.maxmemory_policy
== REDIS_MAXMEMORY_VOLATILE_LRU
)
1585 de
= dictFind(db
->dict
, thiskey
);
1586 o
= dictGetEntryVal(de
);
1587 thisval
= estimateObjectIdleTime(o
);
1589 /* Higher idle time is better candidate for deletion */
1590 if (bestkey
== NULL
|| thisval
> bestval
) {
1598 else if (server
.maxmemory_policy
== REDIS_MAXMEMORY_VOLATILE_TTL
) {
1599 for (k
= 0; k
< server
.maxmemory_samples
; k
++) {
1603 de
= dictGetRandomKey(dict
);
1604 thiskey
= dictGetEntryKey(de
);
1605 thisval
= (long) dictGetEntryVal(de
);
1607 /* Expire sooner (minor expire unix timestamp) is better
1608 * candidate for deletion */
1609 if (bestkey
== NULL
|| thisval
< bestval
) {
1616 /* Finally remove the selected key. */
1618 robj
*keyobj
= createStringObject(bestkey
,sdslen(bestkey
));
1619 propagateExpire(db
,keyobj
);
1620 dbDelete(db
,keyobj
);
1621 server
.stat_evictedkeys
++;
1622 decrRefCount(keyobj
);
1626 if (!freed
) return; /* nothing to free... */
1630 /* =================================== Main! ================================ */
1633 int linuxOvercommitMemoryValue(void) {
1634 FILE *fp
= fopen("/proc/sys/vm/overcommit_memory","r");
1638 if (fgets(buf
,64,fp
) == NULL
) {
1647 void linuxOvercommitMemoryWarning(void) {
1648 if (linuxOvercommitMemoryValue() == 0) {
1649 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.");
1652 #endif /* __linux__ */
1654 void createPidFile(void) {
1655 /* Try to write the pid file in a best-effort way. */
1656 FILE *fp
= fopen(server
.pidfile
,"w");
1658 fprintf(fp
,"%d\n",(int)getpid());
1663 void daemonize(void) {
1666 if (fork() != 0) exit(0); /* parent exits */
1667 setsid(); /* create a new session */
1669 /* Every output goes to /dev/null. If Redis is daemonized but
1670 * the 'logfile' is set to 'stdout' in the configuration file
1671 * it will not log at all. */
1672 if ((fd
= open("/dev/null", O_RDWR
, 0)) != -1) {
1673 dup2(fd
, STDIN_FILENO
);
1674 dup2(fd
, STDOUT_FILENO
);
1675 dup2(fd
, STDERR_FILENO
);
1676 if (fd
> STDERR_FILENO
) close(fd
);
1681 printf("Redis server version %s (%s:%d)\n", REDIS_VERSION
,
1682 redisGitSHA1(), atoi(redisGitDirty()) > 0);
1687 fprintf(stderr
,"Usage: ./redis-server [/path/to/redis.conf]\n");
1688 fprintf(stderr
," ./redis-server - (read config from stdin)\n");
1692 void redisAsciiArt(void) {
1693 #include "asciilogo.h"
1694 char *buf
= zmalloc(1024*16);
1696 snprintf(buf
,1024*16,ascii_logo
,
1699 strtol(redisGitDirty(),NULL
,10) > 0,
1700 (sizeof(long) == 8) ? "64" : "32",
1701 server
.cluster_enabled
? "cluster" : "stand alone",
1705 redisLogRaw(REDIS_NOTICE
|REDIS_LOG_RAW
,buf
);
1709 int main(int argc
, char **argv
) {
1714 if (strcmp(argv
[1], "-v") == 0 ||
1715 strcmp(argv
[1], "--version") == 0) version();
1716 if (strcmp(argv
[1], "--help") == 0) usage();
1717 resetServerSaveParams();
1718 loadServerConfig(argv
[1]);
1719 } else if ((argc
> 2)) {
1722 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'");
1724 if (server
.daemonize
) daemonize();
1726 if (server
.daemonize
) createPidFile();
1728 redisLog(REDIS_NOTICE
,"Server started, Redis version " REDIS_VERSION
);
1730 linuxOvercommitMemoryWarning();
1733 if (server
.appendonly
) {
1734 if (loadAppendOnlyFile(server
.appendfilename
) == REDIS_OK
)
1735 redisLog(REDIS_NOTICE
,"DB loaded from append only file: %.3f seconds",(float)(ustime()-start
)/1000000);
1737 if (rdbLoad(server
.dbfilename
) == REDIS_OK
)
1738 redisLog(REDIS_NOTICE
,"DB loaded from disk: %.3f seconds",(float)(ustime()-start
)/1000000);
1740 if (server
.ipfd
> 0)
1741 redisLog(REDIS_NOTICE
,"The server is now ready to accept connections on port %d", server
.port
);
1742 if (server
.sofd
> 0)
1743 redisLog(REDIS_NOTICE
,"The server is now ready to accept connections at %s", server
.unixsocket
);
1744 aeSetBeforeSleepProc(server
.el
,beforeSleep
);
1746 aeDeleteEventLoop(server
.el
);
1750 #ifdef HAVE_BACKTRACE
1751 static void *getMcontextEip(ucontext_t
*uc
) {
1752 #if defined(__FreeBSD__)
1753 return (void*) uc
->uc_mcontext
.mc_eip
;
1754 #elif defined(__dietlibc__)
1755 return (void*) uc
->uc_mcontext
.eip
;
1756 #elif defined(__APPLE__) && !defined(MAC_OS_X_VERSION_10_6)
1758 return (void*) uc
->uc_mcontext
->__ss
.__rip
;
1760 return (void*) uc
->uc_mcontext
->__ss
.__eip
;
1762 #elif defined(__APPLE__) && defined(MAC_OS_X_VERSION_10_6)
1763 #if defined(_STRUCT_X86_THREAD_STATE64) && !defined(__i386__)
1764 return (void*) uc
->uc_mcontext
->__ss
.__rip
;
1766 return (void*) uc
->uc_mcontext
->__ss
.__eip
;
1768 #elif defined(__i386__)
1769 return (void*) uc
->uc_mcontext
.gregs
[14]; /* Linux 32 */
1770 #elif defined(__X86_64__) || defined(__x86_64__)
1771 return (void*) uc
->uc_mcontext
.gregs
[16]; /* Linux 64 */
1772 #elif defined(__ia64__) /* Linux IA64 */
1773 return (void*) uc
->uc_mcontext
.sc_ip
;
1779 static void sigsegvHandler(int sig
, siginfo_t
*info
, void *secret
) {
1781 char **messages
= NULL
;
1782 int i
, trace_size
= 0;
1783 ucontext_t
*uc
= (ucontext_t
*) secret
;
1785 struct sigaction act
;
1786 REDIS_NOTUSED(info
);
1788 redisLog(REDIS_WARNING
,
1789 "======= Ooops! Redis %s got signal: -%d- =======", REDIS_VERSION
, sig
);
1790 infostring
= genRedisInfoString("all");
1791 redisLogRaw(REDIS_WARNING
, infostring
);
1792 /* It's not safe to sdsfree() the returned string under memory
1793 * corruption conditions. Let it leak as we are going to abort */
1795 trace_size
= backtrace(trace
, 100);
1796 /* overwrite sigaction with caller's address */
1797 if (getMcontextEip(uc
) != NULL
) {
1798 trace
[1] = getMcontextEip(uc
);
1800 messages
= backtrace_symbols(trace
, trace_size
);
1802 for (i
=1; i
<trace_size
; ++i
)
1803 redisLog(REDIS_WARNING
,"%s", messages
[i
]);
1805 /* free(messages); Don't call free() with possibly corrupted memory. */
1806 if (server
.daemonize
) unlink(server
.pidfile
);
1808 /* Make sure we exit with the right signal at the end. So for instance
1809 * the core will be dumped if enabled. */
1810 sigemptyset (&act
.sa_mask
);
1811 /* When the SA_SIGINFO flag is set in sa_flags then sa_sigaction
1812 * is used. Otherwise, sa_handler is used */
1813 act
.sa_flags
= SA_NODEFER
| SA_ONSTACK
| SA_RESETHAND
;
1814 act
.sa_handler
= SIG_DFL
;
1815 sigaction (sig
, &act
, NULL
);
1818 #endif /* HAVE_BACKTRACE */
1820 static void sigtermHandler(int sig
) {
1823 redisLog(REDIS_WARNING
,"Received SIGTERM, scheduling shutdown...");
1824 server
.shutdown_asap
= 1;
1827 void setupSignalHandlers(void) {
1828 struct sigaction act
;
1830 /* When the SA_SIGINFO flag is set in sa_flags then sa_sigaction is used.
1831 * Otherwise, sa_handler is used. */
1832 sigemptyset(&act
.sa_mask
);
1833 act
.sa_flags
= SA_NODEFER
| SA_ONSTACK
| SA_RESETHAND
;
1834 act
.sa_handler
= sigtermHandler
;
1835 sigaction(SIGTERM
, &act
, NULL
);
1837 #ifdef HAVE_BACKTRACE
1838 sigemptyset(&act
.sa_mask
);
1839 act
.sa_flags
= SA_NODEFER
| SA_ONSTACK
| SA_RESETHAND
| SA_SIGINFO
;
1840 act
.sa_sigaction
= sigsegvHandler
;
1841 sigaction(SIGSEGV
, &act
, NULL
);
1842 sigaction(SIGBUS
, &act
, NULL
);
1843 sigaction(SIGFPE
, &act
, NULL
);
1844 sigaction(SIGILL
, &act
, NULL
);