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 {"strlen",strlenCommand
,2,0,NULL
,1,1,1},
78 {"del",delCommand
,-2,0,NULL
,0,0,0},
79 {"exists",existsCommand
,2,0,NULL
,1,1,1},
80 {"setbit",setbitCommand
,4,REDIS_CMD_DENYOOM
,NULL
,1,1,1},
81 {"getbit",getbitCommand
,3,0,NULL
,1,1,1},
82 {"setrange",setrangeCommand
,4,REDIS_CMD_DENYOOM
,NULL
,1,1,1},
83 {"getrange",getrangeCommand
,4,0,NULL
,1,1,1},
84 {"substr",getrangeCommand
,4,0,NULL
,1,1,1},
85 {"incr",incrCommand
,2,REDIS_CMD_DENYOOM
,NULL
,1,1,1},
86 {"decr",decrCommand
,2,REDIS_CMD_DENYOOM
,NULL
,1,1,1},
87 {"mget",mgetCommand
,-2,0,NULL
,1,-1,1},
88 {"rpush",rpushCommand
,3,REDIS_CMD_DENYOOM
,NULL
,1,1,1},
89 {"lpush",lpushCommand
,3,REDIS_CMD_DENYOOM
,NULL
,1,1,1},
90 {"rpushx",rpushxCommand
,3,REDIS_CMD_DENYOOM
,NULL
,1,1,1},
91 {"lpushx",lpushxCommand
,3,REDIS_CMD_DENYOOM
,NULL
,1,1,1},
92 {"linsert",linsertCommand
,5,REDIS_CMD_DENYOOM
,NULL
,1,1,1},
93 {"rpop",rpopCommand
,2,0,NULL
,1,1,1},
94 {"lpop",lpopCommand
,2,0,NULL
,1,1,1},
95 {"brpop",brpopCommand
,-3,0,NULL
,1,1,1},
96 {"brpoplpush",brpoplpushCommand
,4,REDIS_CMD_DENYOOM
,NULL
,1,2,1},
97 {"blpop",blpopCommand
,-3,0,NULL
,1,1,1},
98 {"llen",llenCommand
,2,0,NULL
,1,1,1},
99 {"lindex",lindexCommand
,3,0,NULL
,1,1,1},
100 {"lset",lsetCommand
,4,REDIS_CMD_DENYOOM
,NULL
,1,1,1},
101 {"lrange",lrangeCommand
,4,0,NULL
,1,1,1},
102 {"ltrim",ltrimCommand
,4,0,NULL
,1,1,1},
103 {"lrem",lremCommand
,4,0,NULL
,1,1,1},
104 {"rpoplpush",rpoplpushCommand
,3,REDIS_CMD_DENYOOM
,NULL
,1,2,1},
105 {"sadd",saddCommand
,3,REDIS_CMD_DENYOOM
,NULL
,1,1,1},
106 {"srem",sremCommand
,3,0,NULL
,1,1,1},
107 {"smove",smoveCommand
,4,0,NULL
,1,2,1},
108 {"sismember",sismemberCommand
,3,0,NULL
,1,1,1},
109 {"scard",scardCommand
,2,0,NULL
,1,1,1},
110 {"spop",spopCommand
,2,0,NULL
,1,1,1},
111 {"srandmember",srandmemberCommand
,2,0,NULL
,1,1,1},
112 {"sinter",sinterCommand
,-2,REDIS_CMD_DENYOOM
,NULL
,1,-1,1},
113 {"sinterstore",sinterstoreCommand
,-3,REDIS_CMD_DENYOOM
,NULL
,2,-1,1},
114 {"sunion",sunionCommand
,-2,REDIS_CMD_DENYOOM
,NULL
,1,-1,1},
115 {"sunionstore",sunionstoreCommand
,-3,REDIS_CMD_DENYOOM
,NULL
,2,-1,1},
116 {"sdiff",sdiffCommand
,-2,REDIS_CMD_DENYOOM
,NULL
,1,-1,1},
117 {"sdiffstore",sdiffstoreCommand
,-3,REDIS_CMD_DENYOOM
,NULL
,2,-1,1},
118 {"smembers",sinterCommand
,2,0,NULL
,1,1,1},
119 {"zadd",zaddCommand
,4,REDIS_CMD_DENYOOM
,NULL
,1,1,1},
120 {"zincrby",zincrbyCommand
,4,REDIS_CMD_DENYOOM
,NULL
,1,1,1},
121 {"zrem",zremCommand
,3,0,NULL
,1,1,1},
122 {"zremrangebyscore",zremrangebyscoreCommand
,4,0,NULL
,1,1,1},
123 {"zremrangebyrank",zremrangebyrankCommand
,4,0,NULL
,1,1,1},
124 {"zunionstore",zunionstoreCommand
,-4,REDIS_CMD_DENYOOM
,zunionInterBlockClientOnSwappedKeys
,0,0,0},
125 {"zinterstore",zinterstoreCommand
,-4,REDIS_CMD_DENYOOM
,zunionInterBlockClientOnSwappedKeys
,0,0,0},
126 {"zrange",zrangeCommand
,-4,0,NULL
,1,1,1},
127 {"zrangebyscore",zrangebyscoreCommand
,-4,0,NULL
,1,1,1},
128 {"zrevrangebyscore",zrevrangebyscoreCommand
,-4,0,NULL
,1,1,1},
129 {"zcount",zcountCommand
,4,0,NULL
,1,1,1},
130 {"zrevrange",zrevrangeCommand
,-4,0,NULL
,1,1,1},
131 {"zcard",zcardCommand
,2,0,NULL
,1,1,1},
132 {"zscore",zscoreCommand
,3,0,NULL
,1,1,1},
133 {"zrank",zrankCommand
,3,0,NULL
,1,1,1},
134 {"zrevrank",zrevrankCommand
,3,0,NULL
,1,1,1},
135 {"hset",hsetCommand
,4,REDIS_CMD_DENYOOM
,NULL
,1,1,1},
136 {"hsetnx",hsetnxCommand
,4,REDIS_CMD_DENYOOM
,NULL
,1,1,1},
137 {"hget",hgetCommand
,3,0,NULL
,1,1,1},
138 {"hmset",hmsetCommand
,-4,REDIS_CMD_DENYOOM
,NULL
,1,1,1},
139 {"hmget",hmgetCommand
,-3,0,NULL
,1,1,1},
140 {"hincrby",hincrbyCommand
,4,REDIS_CMD_DENYOOM
,NULL
,1,1,1},
141 {"hdel",hdelCommand
,3,0,NULL
,1,1,1},
142 {"hlen",hlenCommand
,2,0,NULL
,1,1,1},
143 {"hkeys",hkeysCommand
,2,0,NULL
,1,1,1},
144 {"hvals",hvalsCommand
,2,0,NULL
,1,1,1},
145 {"hgetall",hgetallCommand
,2,0,NULL
,1,1,1},
146 {"hexists",hexistsCommand
,3,0,NULL
,1,1,1},
147 {"incrby",incrbyCommand
,3,REDIS_CMD_DENYOOM
,NULL
,1,1,1},
148 {"decrby",decrbyCommand
,3,REDIS_CMD_DENYOOM
,NULL
,1,1,1},
149 {"getset",getsetCommand
,3,REDIS_CMD_DENYOOM
,NULL
,1,1,1},
150 {"mset",msetCommand
,-3,REDIS_CMD_DENYOOM
,NULL
,1,-1,2},
151 {"msetnx",msetnxCommand
,-3,REDIS_CMD_DENYOOM
,NULL
,1,-1,2},
152 {"randomkey",randomkeyCommand
,1,0,NULL
,0,0,0},
153 {"select",selectCommand
,2,0,NULL
,0,0,0},
154 {"move",moveCommand
,3,0,NULL
,1,1,1},
155 {"rename",renameCommand
,3,0,NULL
,1,1,1},
156 {"renamenx",renamenxCommand
,3,0,NULL
,1,1,1},
157 {"expire",expireCommand
,3,0,NULL
,0,0,0},
158 {"expireat",expireatCommand
,3,0,NULL
,0,0,0},
159 {"keys",keysCommand
,2,0,NULL
,0,0,0},
160 {"dbsize",dbsizeCommand
,1,0,NULL
,0,0,0},
161 {"auth",authCommand
,2,0,NULL
,0,0,0},
162 {"ping",pingCommand
,1,0,NULL
,0,0,0},
163 {"echo",echoCommand
,2,0,NULL
,0,0,0},
164 {"save",saveCommand
,1,0,NULL
,0,0,0},
165 {"bgsave",bgsaveCommand
,1,0,NULL
,0,0,0},
166 {"bgrewriteaof",bgrewriteaofCommand
,1,0,NULL
,0,0,0},
167 {"shutdown",shutdownCommand
,1,0,NULL
,0,0,0},
168 {"lastsave",lastsaveCommand
,1,0,NULL
,0,0,0},
169 {"type",typeCommand
,2,0,NULL
,1,1,1},
170 {"multi",multiCommand
,1,0,NULL
,0,0,0},
171 {"exec",execCommand
,1,REDIS_CMD_DENYOOM
,execBlockClientOnSwappedKeys
,0,0,0},
172 {"discard",discardCommand
,1,0,NULL
,0,0,0},
173 {"sync",syncCommand
,1,0,NULL
,0,0,0},
174 {"flushdb",flushdbCommand
,1,0,NULL
,0,0,0},
175 {"flushall",flushallCommand
,1,0,NULL
,0,0,0},
176 {"sort",sortCommand
,-2,REDIS_CMD_DENYOOM
,NULL
,1,1,1},
177 {"info",infoCommand
,1,0,NULL
,0,0,0},
178 {"monitor",monitorCommand
,1,0,NULL
,0,0,0},
179 {"ttl",ttlCommand
,2,0,NULL
,1,1,1},
180 {"persist",persistCommand
,2,0,NULL
,1,1,1},
181 {"slaveof",slaveofCommand
,3,0,NULL
,0,0,0},
182 {"debug",debugCommand
,-2,0,NULL
,0,0,0},
183 {"config",configCommand
,-2,0,NULL
,0,0,0},
184 {"subscribe",subscribeCommand
,-2,0,NULL
,0,0,0},
185 {"unsubscribe",unsubscribeCommand
,-1,0,NULL
,0,0,0},
186 {"psubscribe",psubscribeCommand
,-2,0,NULL
,0,0,0},
187 {"punsubscribe",punsubscribeCommand
,-1,0,NULL
,0,0,0},
188 {"publish",publishCommand
,3,REDIS_CMD_FORCE_REPLICATION
,NULL
,0,0,0},
189 {"watch",watchCommand
,-2,0,NULL
,0,0,0},
190 {"unwatch",unwatchCommand
,1,0,NULL
,0,0,0}
193 /*============================ Utility functions ============================ */
195 void redisLog(int level
, const char *fmt
, ...) {
196 const int syslogLevelMap
[] = { LOG_DEBUG
, LOG_INFO
, LOG_NOTICE
, LOG_WARNING
};
197 const char *c
= ".-*#";
198 time_t now
= time(NULL
);
202 char msg
[REDIS_MAX_LOGMSG_LEN
];
204 if (level
< server
.verbosity
) return;
206 fp
= (server
.logfile
== NULL
) ? stdout
: fopen(server
.logfile
,"a");
210 vsnprintf(msg
, sizeof(msg
), fmt
, ap
);
213 strftime(buf
,sizeof(buf
),"%d %b %H:%M:%S",localtime(&now
));
214 fprintf(fp
,"[%d] %s %c %s\n",(int)getpid(),buf
,c
[level
],msg
);
217 if (server
.logfile
) fclose(fp
);
219 if (server
.syslog_enabled
) syslog(syslogLevelMap
[level
], "%s", msg
);
222 /* Redis generally does not try to recover from out of memory conditions
223 * when allocating objects or strings, it is not clear if it will be possible
224 * to report this condition to the client since the networking layer itself
225 * is based on heap allocation for send buffers, so we simply abort.
226 * At least the code will be simpler to read... */
227 void oom(const char *msg
) {
228 redisLog(REDIS_WARNING
, "%s: Out of memory\n",msg
);
233 /*====================== Hash table type implementation ==================== */
235 /* This is an hash table type that uses the SDS dynamic strings libary as
236 * keys and radis objects as values (objects can hold SDS strings,
239 void dictVanillaFree(void *privdata
, void *val
)
241 DICT_NOTUSED(privdata
);
245 void dictListDestructor(void *privdata
, void *val
)
247 DICT_NOTUSED(privdata
);
248 listRelease((list
*)val
);
251 int dictSdsKeyCompare(void *privdata
, const void *key1
,
255 DICT_NOTUSED(privdata
);
257 l1
= sdslen((sds
)key1
);
258 l2
= sdslen((sds
)key2
);
259 if (l1
!= l2
) return 0;
260 return memcmp(key1
, key2
, l1
) == 0;
263 /* A case insensitive version used for the command lookup table. */
264 int dictSdsKeyCaseCompare(void *privdata
, const void *key1
,
267 DICT_NOTUSED(privdata
);
269 return strcasecmp(key1
, key2
) == 0;
272 void dictRedisObjectDestructor(void *privdata
, void *val
)
274 DICT_NOTUSED(privdata
);
276 if (val
== NULL
) return; /* Values of swapped out keys as set to NULL */
280 void dictSdsDestructor(void *privdata
, void *val
)
282 DICT_NOTUSED(privdata
);
287 int dictObjKeyCompare(void *privdata
, const void *key1
,
290 const robj
*o1
= key1
, *o2
= key2
;
291 return dictSdsKeyCompare(privdata
,o1
->ptr
,o2
->ptr
);
294 unsigned int dictObjHash(const void *key
) {
296 return dictGenHashFunction(o
->ptr
, sdslen((sds
)o
->ptr
));
299 unsigned int dictSdsHash(const void *key
) {
300 return dictGenHashFunction((unsigned char*)key
, sdslen((char*)key
));
303 unsigned int dictSdsCaseHash(const void *key
) {
304 return dictGenCaseHashFunction((unsigned char*)key
, sdslen((char*)key
));
307 int dictEncObjKeyCompare(void *privdata
, const void *key1
,
310 robj
*o1
= (robj
*) key1
, *o2
= (robj
*) key2
;
313 if (o1
->encoding
== REDIS_ENCODING_INT
&&
314 o2
->encoding
== REDIS_ENCODING_INT
)
315 return o1
->ptr
== o2
->ptr
;
317 o1
= getDecodedObject(o1
);
318 o2
= getDecodedObject(o2
);
319 cmp
= dictSdsKeyCompare(privdata
,o1
->ptr
,o2
->ptr
);
325 unsigned int dictEncObjHash(const void *key
) {
326 robj
*o
= (robj
*) key
;
328 if (o
->encoding
== REDIS_ENCODING_RAW
) {
329 return dictGenHashFunction(o
->ptr
, sdslen((sds
)o
->ptr
));
331 if (o
->encoding
== REDIS_ENCODING_INT
) {
335 len
= ll2string(buf
,32,(long)o
->ptr
);
336 return dictGenHashFunction((unsigned char*)buf
, len
);
340 o
= getDecodedObject(o
);
341 hash
= dictGenHashFunction(o
->ptr
, sdslen((sds
)o
->ptr
));
349 dictType setDictType
= {
350 dictEncObjHash
, /* hash function */
353 dictEncObjKeyCompare
, /* key compare */
354 dictRedisObjectDestructor
, /* key destructor */
355 NULL
/* val destructor */
358 /* Sorted sets hash (note: a skiplist is used in addition to the hash table) */
359 dictType zsetDictType
= {
360 dictEncObjHash
, /* hash function */
363 dictEncObjKeyCompare
, /* key compare */
364 dictRedisObjectDestructor
, /* key destructor */
365 NULL
/* val destructor */
368 /* Db->dict, keys are sds strings, vals are Redis objects. */
369 dictType dbDictType
= {
370 dictSdsHash
, /* hash function */
373 dictSdsKeyCompare
, /* key compare */
374 dictSdsDestructor
, /* key destructor */
375 dictRedisObjectDestructor
/* val destructor */
379 dictType keyptrDictType
= {
380 dictSdsHash
, /* hash function */
383 dictSdsKeyCompare
, /* key compare */
384 NULL
, /* key destructor */
385 NULL
/* val destructor */
388 /* Command table. sds string -> command struct pointer. */
389 dictType commandTableDictType
= {
390 dictSdsCaseHash
, /* hash function */
393 dictSdsKeyCaseCompare
, /* key compare */
394 dictSdsDestructor
, /* key destructor */
395 NULL
/* val destructor */
398 /* Hash type hash table (note that small hashes are represented with zimpaps) */
399 dictType hashDictType
= {
400 dictEncObjHash
, /* hash function */
403 dictEncObjKeyCompare
, /* key compare */
404 dictRedisObjectDestructor
, /* key destructor */
405 dictRedisObjectDestructor
/* val destructor */
408 /* Keylist hash table type has unencoded redis objects as keys and
409 * lists as values. It's used for blocking operations (BLPOP) and to
410 * map swapped keys to a list of clients waiting for this keys to be loaded. */
411 dictType keylistDictType
= {
412 dictObjHash
, /* hash function */
415 dictObjKeyCompare
, /* key compare */
416 dictRedisObjectDestructor
, /* key destructor */
417 dictListDestructor
/* val destructor */
420 int htNeedsResize(dict
*dict
) {
421 long long size
, used
;
423 size
= dictSlots(dict
);
424 used
= dictSize(dict
);
425 return (size
&& used
&& size
> DICT_HT_INITIAL_SIZE
&&
426 (used
*100/size
< REDIS_HT_MINFILL
));
429 /* If the percentage of used slots in the HT reaches REDIS_HT_MINFILL
430 * we resize the hash table to save memory */
431 void tryResizeHashTables(void) {
434 for (j
= 0; j
< server
.dbnum
; j
++) {
435 if (htNeedsResize(server
.db
[j
].dict
))
436 dictResize(server
.db
[j
].dict
);
437 if (htNeedsResize(server
.db
[j
].expires
))
438 dictResize(server
.db
[j
].expires
);
442 /* Our hash table implementation performs rehashing incrementally while
443 * we write/read from the hash table. Still if the server is idle, the hash
444 * table will use two tables for a long time. So we try to use 1 millisecond
445 * of CPU time at every serverCron() loop in order to rehash some key. */
446 void incrementallyRehash(void) {
449 for (j
= 0; j
< server
.dbnum
; j
++) {
450 if (dictIsRehashing(server
.db
[j
].dict
)) {
451 dictRehashMilliseconds(server
.db
[j
].dict
,1);
452 break; /* already used our millisecond for this loop... */
457 /* This function is called once a background process of some kind terminates,
458 * as we want to avoid resizing the hash tables when there is a child in order
459 * to play well with copy-on-write (otherwise when a resize happens lots of
460 * memory pages are copied). The goal of this function is to update the ability
461 * for dict.c to resize the hash tables accordingly to the fact we have o not
463 void updateDictResizePolicy(void) {
464 if (server
.bgsavechildpid
== -1 && server
.bgrewritechildpid
== -1)
470 /* ======================= Cron: called every 100 ms ======================== */
472 /* Try to expire a few timed out keys. The algorithm used is adaptive and
473 * will use few CPU cycles if there are few expiring keys, otherwise
474 * it will get more aggressive to avoid that too much memory is used by
475 * keys that can be removed from the keyspace. */
476 void activeExpireCycle(void) {
479 for (j
= 0; j
< server
.dbnum
; j
++) {
481 redisDb
*db
= server
.db
+j
;
483 /* Continue to expire if at the end of the cycle more than 25%
484 * of the keys were expired. */
486 long num
= dictSize(db
->expires
);
487 time_t now
= time(NULL
);
490 if (num
> REDIS_EXPIRELOOKUPS_PER_CRON
)
491 num
= REDIS_EXPIRELOOKUPS_PER_CRON
;
496 if ((de
= dictGetRandomKey(db
->expires
)) == NULL
) break;
497 t
= (time_t) dictGetEntryVal(de
);
499 sds key
= dictGetEntryKey(de
);
500 robj
*keyobj
= createStringObject(key
,sdslen(key
));
502 propagateExpire(db
,keyobj
);
504 decrRefCount(keyobj
);
506 server
.stat_expiredkeys
++;
509 } while (expired
> REDIS_EXPIRELOOKUPS_PER_CRON
/4);
513 void updateLRUClock(void) {
514 server
.lruclock
= (time(NULL
)/REDIS_LRU_CLOCK_RESOLUTION
) &
518 int serverCron(struct aeEventLoop
*eventLoop
, long long id
, void *clientData
) {
519 int j
, loops
= server
.cronloops
++;
520 REDIS_NOTUSED(eventLoop
);
522 REDIS_NOTUSED(clientData
);
524 /* We take a cached value of the unix time in the global state because
525 * with virtual memory and aging there is to store the current time
526 * in objects at every object access, and accuracy is not needed.
527 * To access a global var is faster than calling time(NULL) */
528 server
.unixtime
= time(NULL
);
529 /* We have just 22 bits per object for LRU information.
530 * So we use an (eventually wrapping) LRU clock with 10 seconds resolution.
531 * 2^22 bits with 10 seconds resoluton is more or less 1.5 years.
533 * Note that even if this will wrap after 1.5 years it's not a problem,
534 * everything will still work but just some object will appear younger
535 * to Redis. But for this to happen a given object should never be touched
538 * Note that you can change the resolution altering the
539 * REDIS_LRU_CLOCK_RESOLUTION define.
543 /* We received a SIGTERM, shutting down here in a safe way, as it is
544 * not ok doing so inside the signal handler. */
545 if (server
.shutdown_asap
) {
546 if (prepareForShutdown() == REDIS_OK
) exit(0);
547 redisLog(REDIS_WARNING
,"SIGTERM received but errors trying to shut down the server, check the logs for more information");
550 /* Show some info about non-empty databases */
551 for (j
= 0; j
< server
.dbnum
; j
++) {
552 long long size
, used
, vkeys
;
554 size
= dictSlots(server
.db
[j
].dict
);
555 used
= dictSize(server
.db
[j
].dict
);
556 vkeys
= dictSize(server
.db
[j
].expires
);
557 if (!(loops
% 50) && (used
|| vkeys
)) {
558 redisLog(REDIS_VERBOSE
,"DB %d: %lld keys (%lld volatile) in %lld slots HT.",j
,used
,vkeys
,size
);
559 /* dictPrintStats(server.dict); */
563 /* We don't want to resize the hash tables while a bacground saving
564 * is in progress: the saving child is created using fork() that is
565 * implemented with a copy-on-write semantic in most modern systems, so
566 * if we resize the HT while there is the saving child at work actually
567 * a lot of memory movements in the parent will cause a lot of pages
569 if (server
.bgsavechildpid
== -1 && server
.bgrewritechildpid
== -1) {
570 if (!(loops
% 10)) tryResizeHashTables();
571 if (server
.activerehashing
) incrementallyRehash();
574 /* Show information about connected clients */
576 redisLog(REDIS_VERBOSE
,"%d clients connected (%d slaves), %zu bytes in use",
577 listLength(server
.clients
)-listLength(server
.slaves
),
578 listLength(server
.slaves
),
579 zmalloc_used_memory());
582 /* Close connections of timedout clients */
583 if ((server
.maxidletime
&& !(loops
% 100)) || server
.bpop_blocked_clients
)
584 closeTimedoutClients();
586 /* Check if a background saving or AOF rewrite in progress terminated */
587 if (server
.bgsavechildpid
!= -1 || server
.bgrewritechildpid
!= -1) {
591 if ((pid
= wait3(&statloc
,WNOHANG
,NULL
)) != 0) {
592 if (pid
== server
.bgsavechildpid
) {
593 backgroundSaveDoneHandler(statloc
);
595 backgroundRewriteDoneHandler(statloc
);
597 updateDictResizePolicy();
600 /* If there is not a background saving in progress check if
601 * we have to save now */
602 time_t now
= time(NULL
);
603 for (j
= 0; j
< server
.saveparamslen
; j
++) {
604 struct saveparam
*sp
= server
.saveparams
+j
;
606 if (server
.dirty
>= sp
->changes
&&
607 now
-server
.lastsave
> sp
->seconds
) {
608 redisLog(REDIS_NOTICE
,"%d changes in %d seconds. Saving...",
609 sp
->changes
, sp
->seconds
);
610 rdbSaveBackground(server
.dbfilename
);
616 /* Expire a few keys per cycle, only if this is a master.
617 * On slaves we wait for DEL operations synthesized by the master
618 * in order to guarantee a strict consistency. */
619 if (server
.masterhost
== NULL
) activeExpireCycle();
621 /* Swap a few keys on disk if we are over the memory limit and VM
622 * is enbled. Try to free objects from the free list first. */
623 if (vmCanSwapOut()) {
624 while (server
.vm_enabled
&& zmalloc_used_memory() >
625 server
.vm_max_memory
)
627 int retval
= (server
.vm_max_threads
== 0) ?
628 vmSwapOneObjectBlocking() :
629 vmSwapOneObjectThreaded();
630 if (retval
== REDIS_ERR
&& !(loops
% 300) &&
631 zmalloc_used_memory() >
632 (server
.vm_max_memory
+server
.vm_max_memory
/10))
634 redisLog(REDIS_WARNING
,"WARNING: vm-max-memory limit exceeded by more than 10%% but unable to swap more objects out!");
636 /* Note that when using threade I/O we free just one object,
637 * because anyway when the I/O thread in charge to swap this
638 * object out will finish, the handler of completed jobs
639 * will try to swap more objects if we are still out of memory. */
640 if (retval
== REDIS_ERR
|| server
.vm_max_threads
> 0) break;
644 /* Replication cron function -- used to reconnect to master and
645 * to detect transfer failures. */
646 if (!(loops
% 10)) replicationCron();
651 /* This function gets called every time Redis is entering the
652 * main loop of the event driven library, that is, before to sleep
653 * for ready file descriptors. */
654 void beforeSleep(struct aeEventLoop
*eventLoop
) {
655 REDIS_NOTUSED(eventLoop
);
659 /* Awake clients that got all the swapped keys they requested */
660 if (server
.vm_enabled
&& listLength(server
.io_ready_clients
)) {
663 listRewind(server
.io_ready_clients
,&li
);
664 while((ln
= listNext(&li
))) {
666 struct redisCommand
*cmd
;
668 /* Resume the client. */
669 listDelNode(server
.io_ready_clients
,ln
);
670 c
->flags
&= (~REDIS_IO_WAIT
);
671 server
.vm_blocked_clients
--;
672 aeCreateFileEvent(server
.el
, c
->fd
, AE_READABLE
,
673 readQueryFromClient
, c
);
674 cmd
= lookupCommand(c
->argv
[0]->ptr
);
675 redisAssert(cmd
!= NULL
);
678 /* There may be more data to process in the input buffer. */
679 if (c
->querybuf
&& sdslen(c
->querybuf
) > 0)
680 processInputBuffer(c
);
684 /* Try to process pending commands for clients that were just unblocked. */
685 while (listLength(server
.unblocked_clients
)) {
686 ln
= listFirst(server
.unblocked_clients
);
687 redisAssert(ln
!= NULL
);
689 listDelNode(server
.unblocked_clients
,ln
);
691 /* Process remaining data in the input buffer. */
692 if (c
->querybuf
&& sdslen(c
->querybuf
) > 0)
693 processInputBuffer(c
);
696 /* Write the AOF buffer on disk */
697 flushAppendOnlyFile();
700 /* =========================== Server initialization ======================== */
702 void createSharedObjects(void) {
705 shared
.crlf
= createObject(REDIS_STRING
,sdsnew("\r\n"));
706 shared
.ok
= createObject(REDIS_STRING
,sdsnew("+OK\r\n"));
707 shared
.err
= createObject(REDIS_STRING
,sdsnew("-ERR\r\n"));
708 shared
.emptybulk
= createObject(REDIS_STRING
,sdsnew("$0\r\n\r\n"));
709 shared
.czero
= createObject(REDIS_STRING
,sdsnew(":0\r\n"));
710 shared
.cone
= createObject(REDIS_STRING
,sdsnew(":1\r\n"));
711 shared
.cnegone
= createObject(REDIS_STRING
,sdsnew(":-1\r\n"));
712 shared
.nullbulk
= createObject(REDIS_STRING
,sdsnew("$-1\r\n"));
713 shared
.nullmultibulk
= createObject(REDIS_STRING
,sdsnew("*-1\r\n"));
714 shared
.emptymultibulk
= createObject(REDIS_STRING
,sdsnew("*0\r\n"));
715 shared
.pong
= createObject(REDIS_STRING
,sdsnew("+PONG\r\n"));
716 shared
.queued
= createObject(REDIS_STRING
,sdsnew("+QUEUED\r\n"));
717 shared
.wrongtypeerr
= createObject(REDIS_STRING
,sdsnew(
718 "-ERR Operation against a key holding the wrong kind of value\r\n"));
719 shared
.nokeyerr
= createObject(REDIS_STRING
,sdsnew(
720 "-ERR no such key\r\n"));
721 shared
.syntaxerr
= createObject(REDIS_STRING
,sdsnew(
722 "-ERR syntax error\r\n"));
723 shared
.sameobjecterr
= createObject(REDIS_STRING
,sdsnew(
724 "-ERR source and destination objects are the same\r\n"));
725 shared
.outofrangeerr
= createObject(REDIS_STRING
,sdsnew(
726 "-ERR index out of range\r\n"));
727 shared
.loadingerr
= createObject(REDIS_STRING
,sdsnew(
728 "-LOADING Redis is loading the dataset in memory\r\n"));
729 shared
.space
= createObject(REDIS_STRING
,sdsnew(" "));
730 shared
.colon
= createObject(REDIS_STRING
,sdsnew(":"));
731 shared
.plus
= createObject(REDIS_STRING
,sdsnew("+"));
732 shared
.select0
= createStringObject("select 0\r\n",10);
733 shared
.select1
= createStringObject("select 1\r\n",10);
734 shared
.select2
= createStringObject("select 2\r\n",10);
735 shared
.select3
= createStringObject("select 3\r\n",10);
736 shared
.select4
= createStringObject("select 4\r\n",10);
737 shared
.select5
= createStringObject("select 5\r\n",10);
738 shared
.select6
= createStringObject("select 6\r\n",10);
739 shared
.select7
= createStringObject("select 7\r\n",10);
740 shared
.select8
= createStringObject("select 8\r\n",10);
741 shared
.select9
= createStringObject("select 9\r\n",10);
742 shared
.messagebulk
= createStringObject("$7\r\nmessage\r\n",13);
743 shared
.pmessagebulk
= createStringObject("$8\r\npmessage\r\n",14);
744 shared
.subscribebulk
= createStringObject("$9\r\nsubscribe\r\n",15);
745 shared
.unsubscribebulk
= createStringObject("$11\r\nunsubscribe\r\n",18);
746 shared
.psubscribebulk
= createStringObject("$10\r\npsubscribe\r\n",17);
747 shared
.punsubscribebulk
= createStringObject("$12\r\npunsubscribe\r\n",19);
748 shared
.mbulk3
= createStringObject("*3\r\n",4);
749 shared
.mbulk4
= createStringObject("*4\r\n",4);
750 for (j
= 0; j
< REDIS_SHARED_INTEGERS
; j
++) {
751 shared
.integers
[j
] = createObject(REDIS_STRING
,(void*)(long)j
);
752 shared
.integers
[j
]->encoding
= REDIS_ENCODING_INT
;
756 void initServerConfig() {
757 server
.port
= REDIS_SERVERPORT
;
758 server
.bindaddr
= NULL
;
759 server
.unixsocket
= NULL
;
762 server
.dbnum
= REDIS_DEFAULT_DBNUM
;
763 server
.verbosity
= REDIS_VERBOSE
;
764 server
.maxidletime
= REDIS_MAXIDLETIME
;
765 server
.saveparams
= NULL
;
767 server
.logfile
= NULL
; /* NULL = log on standard output */
768 server
.syslog_enabled
= 0;
769 server
.syslog_ident
= zstrdup("redis");
770 server
.syslog_facility
= LOG_LOCAL0
;
771 server
.glueoutputbuf
= 1;
772 server
.daemonize
= 0;
773 server
.appendonly
= 0;
774 server
.appendfsync
= APPENDFSYNC_EVERYSEC
;
775 server
.no_appendfsync_on_rewrite
= 0;
776 server
.lastfsync
= time(NULL
);
777 server
.appendfd
= -1;
778 server
.appendseldb
= -1; /* Make sure the first time will not match */
779 server
.pidfile
= zstrdup("/var/run/redis.pid");
780 server
.dbfilename
= zstrdup("dump.rdb");
781 server
.appendfilename
= zstrdup("appendonly.aof");
782 server
.requirepass
= NULL
;
783 server
.rdbcompression
= 1;
784 server
.activerehashing
= 1;
785 server
.maxclients
= 0;
786 server
.bpop_blocked_clients
= 0;
787 server
.maxmemory
= 0;
788 server
.maxmemory_policy
= REDIS_MAXMEMORY_VOLATILE_LRU
;
789 server
.maxmemory_samples
= 3;
790 server
.vm_enabled
= 0;
791 server
.vm_swap_file
= zstrdup("/tmp/redis-%p.vm");
792 server
.vm_page_size
= 256; /* 256 bytes per page */
793 server
.vm_pages
= 1024*1024*100; /* 104 millions of pages */
794 server
.vm_max_memory
= 1024LL*1024*1024*1; /* 1 GB of RAM */
795 server
.vm_max_threads
= 4;
796 server
.vm_blocked_clients
= 0;
797 server
.hash_max_zipmap_entries
= REDIS_HASH_MAX_ZIPMAP_ENTRIES
;
798 server
.hash_max_zipmap_value
= REDIS_HASH_MAX_ZIPMAP_VALUE
;
799 server
.list_max_ziplist_entries
= REDIS_LIST_MAX_ZIPLIST_ENTRIES
;
800 server
.list_max_ziplist_value
= REDIS_LIST_MAX_ZIPLIST_VALUE
;
801 server
.set_max_intset_entries
= REDIS_SET_MAX_INTSET_ENTRIES
;
802 server
.shutdown_asap
= 0;
805 resetServerSaveParams();
807 appendServerSaveParams(60*60,1); /* save after 1 hour and 1 change */
808 appendServerSaveParams(300,100); /* save after 5 minutes and 100 changes */
809 appendServerSaveParams(60,10000); /* save after 1 minute and 10000 changes */
810 /* Replication related */
812 server
.masterauth
= NULL
;
813 server
.masterhost
= NULL
;
814 server
.masterport
= 6379;
815 server
.master
= NULL
;
816 server
.replstate
= REDIS_REPL_NONE
;
817 server
.repl_serve_stale_data
= 1;
819 /* Double constants initialization */
821 R_PosInf
= 1.0/R_Zero
;
822 R_NegInf
= -1.0/R_Zero
;
823 R_Nan
= R_Zero
/R_Zero
;
825 /* Command table -- we intiialize it here as it is part of the
826 * initial configuration, since command names may be changed via
827 * redis.conf using the rename-command directive. */
828 server
.commands
= dictCreate(&commandTableDictType
,NULL
);
829 populateCommandTable();
830 server
.delCommand
= lookupCommandByCString("del");
831 server
.multiCommand
= lookupCommandByCString("multi");
837 signal(SIGHUP
, SIG_IGN
);
838 signal(SIGPIPE
, SIG_IGN
);
839 setupSigSegvAction();
841 if (server
.syslog_enabled
) {
842 openlog(server
.syslog_ident
, LOG_PID
| LOG_NDELAY
| LOG_NOWAIT
,
843 server
.syslog_facility
);
846 server
.mainthread
= pthread_self();
847 server
.clients
= listCreate();
848 server
.slaves
= listCreate();
849 server
.monitors
= listCreate();
850 server
.unblocked_clients
= listCreate();
851 createSharedObjects();
852 server
.el
= aeCreateEventLoop();
853 server
.db
= zmalloc(sizeof(redisDb
)*server
.dbnum
);
854 server
.ipfd
= anetTcpServer(server
.neterr
,server
.port
,server
.bindaddr
);
855 if (server
.ipfd
== ANET_ERR
) {
856 redisLog(REDIS_WARNING
, "Opening port: %s", server
.neterr
);
859 if (server
.unixsocket
!= NULL
) {
860 unlink(server
.unixsocket
); /* don't care if this fails */
861 server
.sofd
= anetUnixServer(server
.neterr
,server
.unixsocket
);
862 if (server
.sofd
== ANET_ERR
) {
863 redisLog(REDIS_WARNING
, "Opening socket: %s", server
.neterr
);
867 if (server
.ipfd
< 0 && server
.sofd
< 0) {
868 redisLog(REDIS_WARNING
, "Configured to not listen anywhere, exiting.");
871 for (j
= 0; j
< server
.dbnum
; j
++) {
872 server
.db
[j
].dict
= dictCreate(&dbDictType
,NULL
);
873 server
.db
[j
].expires
= dictCreate(&keyptrDictType
,NULL
);
874 server
.db
[j
].blocking_keys
= dictCreate(&keylistDictType
,NULL
);
875 server
.db
[j
].watched_keys
= dictCreate(&keylistDictType
,NULL
);
876 if (server
.vm_enabled
)
877 server
.db
[j
].io_keys
= dictCreate(&keylistDictType
,NULL
);
880 server
.pubsub_channels
= dictCreate(&keylistDictType
,NULL
);
881 server
.pubsub_patterns
= listCreate();
882 listSetFreeMethod(server
.pubsub_patterns
,freePubsubPattern
);
883 listSetMatchMethod(server
.pubsub_patterns
,listMatchPubsubPattern
);
884 server
.cronloops
= 0;
885 server
.bgsavechildpid
= -1;
886 server
.bgrewritechildpid
= -1;
887 server
.bgrewritebuf
= sdsempty();
888 server
.aofbuf
= sdsempty();
889 server
.lastsave
= time(NULL
);
891 server
.stat_numcommands
= 0;
892 server
.stat_numconnections
= 0;
893 server
.stat_expiredkeys
= 0;
894 server
.stat_evictedkeys
= 0;
895 server
.stat_starttime
= time(NULL
);
896 server
.stat_keyspace_misses
= 0;
897 server
.stat_keyspace_hits
= 0;
898 server
.unixtime
= time(NULL
);
899 aeCreateTimeEvent(server
.el
, 1, serverCron
, NULL
, NULL
);
900 if (server
.ipfd
> 0 && aeCreateFileEvent(server
.el
,server
.ipfd
,AE_READABLE
,
901 acceptTcpHandler
,NULL
) == AE_ERR
) oom("creating file event");
902 if (server
.sofd
> 0 && aeCreateFileEvent(server
.el
,server
.sofd
,AE_READABLE
,
903 acceptUnixHandler
,NULL
) == AE_ERR
) oom("creating file event");
905 if (server
.appendonly
) {
906 server
.appendfd
= open(server
.appendfilename
,O_WRONLY
|O_APPEND
|O_CREAT
,0644);
907 if (server
.appendfd
== -1) {
908 redisLog(REDIS_WARNING
, "Can't open the append-only file: %s",
914 if (server
.vm_enabled
) vmInit();
917 /* Populates the Redis Command Table starting from the hard coded list
918 * we have on top of redis.c file. */
919 void populateCommandTable(void) {
921 int numcommands
= sizeof(readonlyCommandTable
)/sizeof(struct redisCommand
);
923 for (j
= 0; j
< numcommands
; j
++) {
924 struct redisCommand
*c
= readonlyCommandTable
+j
;
927 retval
= dictAdd(server
.commands
, sdsnew(c
->name
), c
);
928 assert(retval
== DICT_OK
);
932 /* ====================== Commands lookup and execution ===================== */
934 struct redisCommand
*lookupCommand(sds name
) {
935 return dictFetchValue(server
.commands
, name
);
938 struct redisCommand
*lookupCommandByCString(char *s
) {
939 struct redisCommand
*cmd
;
940 sds name
= sdsnew(s
);
942 cmd
= dictFetchValue(server
.commands
, name
);
947 /* Call() is the core of Redis execution of a command */
948 void call(redisClient
*c
, struct redisCommand
*cmd
) {
951 dirty
= server
.dirty
;
953 dirty
= server
.dirty
-dirty
;
955 if (server
.appendonly
&& dirty
)
956 feedAppendOnlyFile(cmd
,c
->db
->id
,c
->argv
,c
->argc
);
957 if ((dirty
|| cmd
->flags
& REDIS_CMD_FORCE_REPLICATION
) &&
958 listLength(server
.slaves
))
959 replicationFeedSlaves(server
.slaves
,c
->db
->id
,c
->argv
,c
->argc
);
960 if (listLength(server
.monitors
))
961 replicationFeedMonitors(server
.monitors
,c
->db
->id
,c
->argv
,c
->argc
);
962 server
.stat_numcommands
++;
965 /* If this function gets called we already read a whole
966 * command, argments are in the client argv/argc fields.
967 * processCommand() execute the command or prepare the
968 * server for a bulk read from the client.
970 * If 1 is returned the client is still alive and valid and
971 * and other operations can be performed by the caller. Otherwise
972 * if 0 is returned the client was destroied (i.e. after QUIT). */
973 int processCommand(redisClient
*c
) {
974 struct redisCommand
*cmd
;
976 /* The QUIT command is handled separately. Normal command procs will
977 * go through checking for replication and QUIT will cause trouble
978 * when FORCE_REPLICATION is enabled and would be implemented in
979 * a regular command proc. */
980 if (!strcasecmp(c
->argv
[0]->ptr
,"quit")) {
981 addReply(c
,shared
.ok
);
982 c
->flags
|= REDIS_CLOSE_AFTER_REPLY
;
986 /* Now lookup the command and check ASAP about trivial error conditions
987 * such wrong arity, bad command name and so forth. */
988 cmd
= lookupCommand(c
->argv
[0]->ptr
);
990 addReplyErrorFormat(c
,"unknown command '%s'",
991 (char*)c
->argv
[0]->ptr
);
993 } else if ((cmd
->arity
> 0 && cmd
->arity
!= c
->argc
) ||
994 (c
->argc
< -cmd
->arity
)) {
995 addReplyErrorFormat(c
,"wrong number of arguments for '%s' command",
1000 /* Check if the user is authenticated */
1001 if (server
.requirepass
&& !c
->authenticated
&& cmd
->proc
!= authCommand
) {
1002 addReplyError(c
,"operation not permitted");
1006 /* Handle the maxmemory directive.
1008 * First we try to free some memory if possible (if there are volatile
1009 * keys in the dataset). If there are not the only thing we can do
1010 * is returning an error. */
1011 if (server
.maxmemory
) freeMemoryIfNeeded();
1012 if (server
.maxmemory
&& (cmd
->flags
& REDIS_CMD_DENYOOM
) &&
1013 zmalloc_used_memory() > server
.maxmemory
)
1015 addReplyError(c
,"command not allowed when used memory > 'maxmemory'");
1019 /* Only allow SUBSCRIBE and UNSUBSCRIBE in the context of Pub/Sub */
1020 if ((dictSize(c
->pubsub_channels
) > 0 || listLength(c
->pubsub_patterns
) > 0)
1022 cmd
->proc
!= subscribeCommand
&& cmd
->proc
!= unsubscribeCommand
&&
1023 cmd
->proc
!= psubscribeCommand
&& cmd
->proc
!= punsubscribeCommand
) {
1024 addReplyError(c
,"only (P)SUBSCRIBE / (P)UNSUBSCRIBE / QUIT allowed in this context");
1028 /* Only allow INFO and SLAVEOF when slave-serve-stale-data is no and
1029 * we are a slave with a broken link with master. */
1030 if (server
.masterhost
&& server
.replstate
!= REDIS_REPL_CONNECTED
&&
1031 server
.repl_serve_stale_data
== 0 &&
1032 cmd
->proc
!= infoCommand
&& cmd
->proc
!= slaveofCommand
)
1035 "link with MASTER is down and slave-serve-stale-data is set to no");
1039 /* Loading DB? Return an error if the command is not INFO */
1040 if (server
.loading
&& cmd
->proc
!= infoCommand
) {
1041 addReply(c
, shared
.loadingerr
);
1045 /* Exec the command */
1046 if (c
->flags
& REDIS_MULTI
&&
1047 cmd
->proc
!= execCommand
&& cmd
->proc
!= discardCommand
&&
1048 cmd
->proc
!= multiCommand
&& cmd
->proc
!= watchCommand
)
1050 queueMultiCommand(c
,cmd
);
1051 addReply(c
,shared
.queued
);
1053 if (server
.vm_enabled
&& server
.vm_max_threads
> 0 &&
1054 blockClientOnSwappedKeys(c
,cmd
)) return REDIS_ERR
;
1060 /*================================== Shutdown =============================== */
1062 int prepareForShutdown() {
1063 redisLog(REDIS_WARNING
,"User requested shutdown, saving DB...");
1064 /* Kill the saving child if there is a background saving in progress.
1065 We want to avoid race conditions, for instance our saving child may
1066 overwrite the synchronous saving did by SHUTDOWN. */
1067 if (server
.bgsavechildpid
!= -1) {
1068 redisLog(REDIS_WARNING
,"There is a live saving child. Killing it!");
1069 kill(server
.bgsavechildpid
,SIGKILL
);
1070 rdbRemoveTempFile(server
.bgsavechildpid
);
1072 if (server
.appendonly
) {
1073 /* Append only file: fsync() the AOF and exit */
1074 aof_fsync(server
.appendfd
);
1075 if (server
.vm_enabled
) unlink(server
.vm_swap_file
);
1076 } else if (server
.saveparamslen
> 0) {
1077 /* Snapshotting. Perform a SYNC SAVE and exit */
1078 if (rdbSave(server
.dbfilename
) != REDIS_OK
) {
1079 /* Ooops.. error saving! The best we can do is to continue
1080 * operating. Note that if there was a background saving process,
1081 * in the next cron() Redis will be notified that the background
1082 * saving aborted, handling special stuff like slaves pending for
1083 * synchronization... */
1084 redisLog(REDIS_WARNING
,"Error trying to save the DB, can't exit");
1088 redisLog(REDIS_WARNING
,"Not saving DB.");
1090 if (server
.daemonize
) unlink(server
.pidfile
);
1091 redisLog(REDIS_WARNING
,"Server exit now, bye bye...");
1095 /*================================== Commands =============================== */
1097 void authCommand(redisClient
*c
) {
1098 if (!server
.requirepass
|| !strcmp(c
->argv
[1]->ptr
, server
.requirepass
)) {
1099 c
->authenticated
= 1;
1100 addReply(c
,shared
.ok
);
1102 c
->authenticated
= 0;
1103 addReplyError(c
,"invalid password");
1107 void pingCommand(redisClient
*c
) {
1108 addReply(c
,shared
.pong
);
1111 void echoCommand(redisClient
*c
) {
1112 addReplyBulk(c
,c
->argv
[1]);
1115 /* Convert an amount of bytes into a human readable string in the form
1116 * of 100B, 2G, 100M, 4K, and so forth. */
1117 void bytesToHuman(char *s
, unsigned long long n
) {
1122 sprintf(s
,"%lluB",n
);
1124 } else if (n
< (1024*1024)) {
1125 d
= (double)n
/(1024);
1126 sprintf(s
,"%.2fK",d
);
1127 } else if (n
< (1024LL*1024*1024)) {
1128 d
= (double)n
/(1024*1024);
1129 sprintf(s
,"%.2fM",d
);
1130 } else if (n
< (1024LL*1024*1024*1024)) {
1131 d
= (double)n
/(1024LL*1024*1024);
1132 sprintf(s
,"%.2fG",d
);
1136 /* Create the string returned by the INFO command. This is decoupled
1137 * by the INFO command itself as we need to report the same information
1138 * on memory corruption problems. */
1139 sds
genRedisInfoString(void) {
1141 time_t uptime
= time(NULL
)-server
.stat_starttime
;
1144 struct rusage self_ru
, c_ru
;
1146 getrusage(RUSAGE_SELF
, &self_ru
);
1147 getrusage(RUSAGE_CHILDREN
, &c_ru
);
1149 bytesToHuman(hmem
,zmalloc_used_memory());
1150 info
= sdscatprintf(sdsempty(),
1151 "redis_version:%s\r\n"
1152 "redis_git_sha1:%s\r\n"
1153 "redis_git_dirty:%d\r\n"
1155 "multiplexing_api:%s\r\n"
1156 "process_id:%ld\r\n"
1157 "uptime_in_seconds:%ld\r\n"
1158 "uptime_in_days:%ld\r\n"
1160 "used_cpu_sys:%.2f\r\n"
1161 "used_cpu_user:%.2f\r\n"
1162 "used_cpu_sys_childrens:%.2f\r\n"
1163 "used_cpu_user_childrens:%.2f\r\n"
1164 "connected_clients:%d\r\n"
1165 "connected_slaves:%d\r\n"
1166 "blocked_clients:%d\r\n"
1167 "used_memory:%zu\r\n"
1168 "used_memory_human:%s\r\n"
1169 "used_memory_rss:%zu\r\n"
1170 "mem_fragmentation_ratio:%.2f\r\n"
1171 "use_tcmalloc:%d\r\n"
1173 "aof_enabled:%d\r\n"
1174 "changes_since_last_save:%lld\r\n"
1175 "bgsave_in_progress:%d\r\n"
1176 "last_save_time:%ld\r\n"
1177 "bgrewriteaof_in_progress:%d\r\n"
1178 "total_connections_received:%lld\r\n"
1179 "total_commands_processed:%lld\r\n"
1180 "expired_keys:%lld\r\n"
1181 "evicted_keys:%lld\r\n"
1182 "keyspace_hits:%lld\r\n"
1183 "keyspace_misses:%lld\r\n"
1184 "hash_max_zipmap_entries:%zu\r\n"
1185 "hash_max_zipmap_value:%zu\r\n"
1186 "pubsub_channels:%ld\r\n"
1187 "pubsub_patterns:%u\r\n"
1192 strtol(redisGitDirty(),NULL
,10) > 0,
1193 (sizeof(long) == 8) ? "64" : "32",
1198 (unsigned long) server
.lruclock
,
1199 (float)self_ru
.ru_utime
.tv_sec
+(float)self_ru
.ru_utime
.tv_usec
/1000000,
1200 (float)self_ru
.ru_stime
.tv_sec
+(float)self_ru
.ru_stime
.tv_usec
/1000000,
1201 (float)c_ru
.ru_utime
.tv_sec
+(float)c_ru
.ru_utime
.tv_usec
/1000000,
1202 (float)c_ru
.ru_stime
.tv_sec
+(float)c_ru
.ru_stime
.tv_usec
/1000000,
1203 listLength(server
.clients
)-listLength(server
.slaves
),
1204 listLength(server
.slaves
),
1205 server
.bpop_blocked_clients
,
1206 zmalloc_used_memory(),
1209 zmalloc_get_fragmentation_ratio(),
1218 server
.bgsavechildpid
!= -1,
1220 server
.bgrewritechildpid
!= -1,
1221 server
.stat_numconnections
,
1222 server
.stat_numcommands
,
1223 server
.stat_expiredkeys
,
1224 server
.stat_evictedkeys
,
1225 server
.stat_keyspace_hits
,
1226 server
.stat_keyspace_misses
,
1227 server
.hash_max_zipmap_entries
,
1228 server
.hash_max_zipmap_value
,
1229 dictSize(server
.pubsub_channels
),
1230 listLength(server
.pubsub_patterns
),
1231 server
.vm_enabled
!= 0,
1232 server
.masterhost
== NULL
? "master" : "slave"
1234 if (server
.masterhost
) {
1235 info
= sdscatprintf(info
,
1236 "master_host:%s\r\n"
1237 "master_port:%d\r\n"
1238 "master_link_status:%s\r\n"
1239 "master_last_io_seconds_ago:%d\r\n"
1240 "master_sync_in_progress:%d\r\n"
1243 (server
.replstate
== REDIS_REPL_CONNECTED
) ?
1245 server
.master
? ((int)(time(NULL
)-server
.master
->lastinteraction
)) : -1,
1246 server
.replstate
== REDIS_REPL_TRANSFER
1249 if (server
.replstate
== REDIS_REPL_TRANSFER
) {
1250 info
= sdscatprintf(info
,
1251 "master_sync_left_bytes:%ld\r\n"
1252 "master_sync_last_io_seconds_ago:%d\r\n"
1253 ,(long)server
.repl_transfer_left
,
1254 (int)(time(NULL
)-server
.repl_transfer_lastio
)
1258 if (server
.vm_enabled
) {
1260 info
= sdscatprintf(info
,
1261 "vm_conf_max_memory:%llu\r\n"
1262 "vm_conf_page_size:%llu\r\n"
1263 "vm_conf_pages:%llu\r\n"
1264 "vm_stats_used_pages:%llu\r\n"
1265 "vm_stats_swapped_objects:%llu\r\n"
1266 "vm_stats_swappin_count:%llu\r\n"
1267 "vm_stats_swappout_count:%llu\r\n"
1268 "vm_stats_io_newjobs_len:%lu\r\n"
1269 "vm_stats_io_processing_len:%lu\r\n"
1270 "vm_stats_io_processed_len:%lu\r\n"
1271 "vm_stats_io_active_threads:%lu\r\n"
1272 "vm_stats_blocked_clients:%lu\r\n"
1273 ,(unsigned long long) server
.vm_max_memory
,
1274 (unsigned long long) server
.vm_page_size
,
1275 (unsigned long long) server
.vm_pages
,
1276 (unsigned long long) server
.vm_stats_used_pages
,
1277 (unsigned long long) server
.vm_stats_swapped_objects
,
1278 (unsigned long long) server
.vm_stats_swapins
,
1279 (unsigned long long) server
.vm_stats_swapouts
,
1280 (unsigned long) listLength(server
.io_newjobs
),
1281 (unsigned long) listLength(server
.io_processing
),
1282 (unsigned long) listLength(server
.io_processed
),
1283 (unsigned long) server
.io_active_threads
,
1284 (unsigned long) server
.vm_blocked_clients
1288 if (server
.loading
) {
1290 time_t eta
, elapsed
;
1291 off_t remaining_bytes
= server
.loading_total_bytes
-
1292 server
.loading_loaded_bytes
;
1294 perc
= ((double)server
.loading_loaded_bytes
/
1295 server
.loading_total_bytes
) * 100;
1297 elapsed
= time(NULL
)-server
.loading_start_time
;
1299 eta
= 1; /* A fake 1 second figure if we don't have enough info */
1301 eta
= (elapsed
*remaining_bytes
)/server
.loading_loaded_bytes
;
1304 info
= sdscatprintf(info
,
1305 "loading_start_time:%ld\r\n"
1306 "loading_total_bytes:%llu\r\n"
1307 "loading_loaded_bytes:%llu\r\n"
1308 "loading_loaded_perc:%.2f\r\n"
1309 "loading_eta_seconds:%ld\r\n"
1310 ,(unsigned long) server
.loading_start_time
,
1311 (unsigned long long) server
.loading_total_bytes
,
1312 (unsigned long long) server
.loading_loaded_bytes
,
1317 for (j
= 0; j
< server
.dbnum
; j
++) {
1318 long long keys
, vkeys
;
1320 keys
= dictSize(server
.db
[j
].dict
);
1321 vkeys
= dictSize(server
.db
[j
].expires
);
1322 if (keys
|| vkeys
) {
1323 info
= sdscatprintf(info
, "db%d:keys=%lld,expires=%lld\r\n",
1330 void infoCommand(redisClient
*c
) {
1331 sds info
= genRedisInfoString();
1332 addReplySds(c
,sdscatprintf(sdsempty(),"$%lu\r\n",
1333 (unsigned long)sdslen(info
)));
1334 addReplySds(c
,info
);
1335 addReply(c
,shared
.crlf
);
1338 void monitorCommand(redisClient
*c
) {
1339 /* ignore MONITOR if aleady slave or in monitor mode */
1340 if (c
->flags
& REDIS_SLAVE
) return;
1342 c
->flags
|= (REDIS_SLAVE
|REDIS_MONITOR
);
1344 listAddNodeTail(server
.monitors
,c
);
1345 addReply(c
,shared
.ok
);
1348 /* ============================ Maxmemory directive ======================== */
1350 /* This function gets called when 'maxmemory' is set on the config file to limit
1351 * the max memory used by the server, and we are out of memory.
1352 * This function will try to, in order:
1354 * - Free objects from the free list
1355 * - Try to remove keys with an EXPIRE set
1357 * It is not possible to free enough memory to reach used-memory < maxmemory
1358 * the server will start refusing commands that will enlarge even more the
1361 void freeMemoryIfNeeded(void) {
1362 /* Remove keys accordingly to the active policy as long as we are
1363 * over the memory limit. */
1364 if (server
.maxmemory_policy
== REDIS_MAXMEMORY_NO_EVICTION
) return;
1366 while (server
.maxmemory
&& zmalloc_used_memory() > server
.maxmemory
) {
1367 int j
, k
, freed
= 0;
1369 for (j
= 0; j
< server
.dbnum
; j
++) {
1370 long bestval
= 0; /* just to prevent warning */
1372 struct dictEntry
*de
;
1373 redisDb
*db
= server
.db
+j
;
1376 if (server
.maxmemory_policy
== REDIS_MAXMEMORY_ALLKEYS_LRU
||
1377 server
.maxmemory_policy
== REDIS_MAXMEMORY_ALLKEYS_RANDOM
)
1379 dict
= server
.db
[j
].dict
;
1381 dict
= server
.db
[j
].expires
;
1383 if (dictSize(dict
) == 0) continue;
1385 /* volatile-random and allkeys-random policy */
1386 if (server
.maxmemory_policy
== REDIS_MAXMEMORY_ALLKEYS_RANDOM
||
1387 server
.maxmemory_policy
== REDIS_MAXMEMORY_VOLATILE_RANDOM
)
1389 de
= dictGetRandomKey(dict
);
1390 bestkey
= dictGetEntryKey(de
);
1393 /* volatile-lru and allkeys-lru policy */
1394 else if (server
.maxmemory_policy
== REDIS_MAXMEMORY_ALLKEYS_LRU
||
1395 server
.maxmemory_policy
== REDIS_MAXMEMORY_VOLATILE_LRU
)
1397 for (k
= 0; k
< server
.maxmemory_samples
; k
++) {
1402 de
= dictGetRandomKey(dict
);
1403 thiskey
= dictGetEntryKey(de
);
1404 /* When policy is volatile-lru we need an additonal lookup
1405 * to locate the real key, as dict is set to db->expires. */
1406 if (server
.maxmemory_policy
== REDIS_MAXMEMORY_VOLATILE_LRU
)
1407 de
= dictFind(db
->dict
, thiskey
);
1408 o
= dictGetEntryVal(de
);
1409 thisval
= estimateObjectIdleTime(o
);
1411 /* Higher idle time is better candidate for deletion */
1412 if (bestkey
== NULL
|| thisval
> bestval
) {
1420 else if (server
.maxmemory_policy
== REDIS_MAXMEMORY_VOLATILE_TTL
) {
1421 for (k
= 0; k
< server
.maxmemory_samples
; k
++) {
1425 de
= dictGetRandomKey(dict
);
1426 thiskey
= dictGetEntryKey(de
);
1427 thisval
= (long) dictGetEntryVal(de
);
1429 /* Expire sooner (minor expire unix timestamp) is better
1430 * candidate for deletion */
1431 if (bestkey
== NULL
|| thisval
< bestval
) {
1438 /* Finally remove the selected key. */
1440 robj
*keyobj
= createStringObject(bestkey
,sdslen(bestkey
));
1441 dbDelete(db
,keyobj
);
1442 server
.stat_evictedkeys
++;
1443 decrRefCount(keyobj
);
1447 if (!freed
) return; /* nothing to free... */
1451 /* =================================== Main! ================================ */
1454 int linuxOvercommitMemoryValue(void) {
1455 FILE *fp
= fopen("/proc/sys/vm/overcommit_memory","r");
1459 if (fgets(buf
,64,fp
) == NULL
) {
1468 void linuxOvercommitMemoryWarning(void) {
1469 if (linuxOvercommitMemoryValue() == 0) {
1470 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.");
1473 #endif /* __linux__ */
1475 void createPidFile(void) {
1476 /* Try to write the pid file in a best-effort way. */
1477 FILE *fp
= fopen(server
.pidfile
,"w");
1479 fprintf(fp
,"%d\n",(int)getpid());
1484 void daemonize(void) {
1487 if (fork() != 0) exit(0); /* parent exits */
1488 setsid(); /* create a new session */
1490 /* Every output goes to /dev/null. If Redis is daemonized but
1491 * the 'logfile' is set to 'stdout' in the configuration file
1492 * it will not log at all. */
1493 if ((fd
= open("/dev/null", O_RDWR
, 0)) != -1) {
1494 dup2(fd
, STDIN_FILENO
);
1495 dup2(fd
, STDOUT_FILENO
);
1496 dup2(fd
, STDERR_FILENO
);
1497 if (fd
> STDERR_FILENO
) close(fd
);
1502 printf("Redis server version %s (%s:%d)\n", REDIS_VERSION
,
1503 redisGitSHA1(), atoi(redisGitDirty()) > 0);
1508 fprintf(stderr
,"Usage: ./redis-server [/path/to/redis.conf]\n");
1509 fprintf(stderr
," ./redis-server - (read config from stdin)\n");
1513 int main(int argc
, char **argv
) {
1518 if (strcmp(argv
[1], "-v") == 0 ||
1519 strcmp(argv
[1], "--version") == 0) version();
1520 if (strcmp(argv
[1], "--help") == 0) usage();
1521 resetServerSaveParams();
1522 loadServerConfig(argv
[1]);
1523 } else if ((argc
> 2)) {
1526 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'");
1528 if (server
.daemonize
) daemonize();
1530 if (server
.daemonize
) createPidFile();
1531 redisLog(REDIS_NOTICE
,"Server started, Redis version " REDIS_VERSION
);
1533 linuxOvercommitMemoryWarning();
1536 if (server
.appendonly
) {
1537 if (loadAppendOnlyFile(server
.appendfilename
) == REDIS_OK
)
1538 redisLog(REDIS_NOTICE
,"DB loaded from append only file: %ld seconds",time(NULL
)-start
);
1540 if (rdbLoad(server
.dbfilename
) == REDIS_OK
)
1541 redisLog(REDIS_NOTICE
,"DB loaded from disk: %ld seconds",time(NULL
)-start
);
1543 if (server
.ipfd
> 0)
1544 redisLog(REDIS_NOTICE
,"The server is now ready to accept connections on port %d", server
.port
);
1545 if (server
.sofd
> 0)
1546 redisLog(REDIS_NOTICE
,"The server is now ready to accept connections at %s", server
.unixsocket
);
1547 aeSetBeforeSleepProc(server
.el
,beforeSleep
);
1549 aeDeleteEventLoop(server
.el
);
1553 /* ============================= Backtrace support ========================= */
1555 #ifdef HAVE_BACKTRACE
1556 void *getMcontextEip(ucontext_t
*uc
) {
1557 #if defined(__FreeBSD__)
1558 return (void*) uc
->uc_mcontext
.mc_eip
;
1559 #elif defined(__dietlibc__)
1560 return (void*) uc
->uc_mcontext
.eip
;
1561 #elif defined(__APPLE__) && !defined(MAC_OS_X_VERSION_10_6)
1563 return (void*) uc
->uc_mcontext
->__ss
.__rip
;
1565 return (void*) uc
->uc_mcontext
->__ss
.__eip
;
1567 #elif defined(__APPLE__) && defined(MAC_OS_X_VERSION_10_6)
1568 #if defined(_STRUCT_X86_THREAD_STATE64) && !defined(__i386__)
1569 return (void*) uc
->uc_mcontext
->__ss
.__rip
;
1571 return (void*) uc
->uc_mcontext
->__ss
.__eip
;
1573 #elif defined(__i386__)
1574 return (void*) uc
->uc_mcontext
.gregs
[14]; /* Linux 32 */
1575 #elif defined(__X86_64__) || defined(__x86_64__)
1576 return (void*) uc
->uc_mcontext
.gregs
[16]; /* Linux 64 */
1577 #elif defined(__ia64__) /* Linux IA64 */
1578 return (void*) uc
->uc_mcontext
.sc_ip
;
1584 void segvHandler(int sig
, siginfo_t
*info
, void *secret
) {
1586 char **messages
= NULL
;
1587 int i
, trace_size
= 0;
1588 ucontext_t
*uc
= (ucontext_t
*) secret
;
1590 struct sigaction act
;
1591 REDIS_NOTUSED(info
);
1593 redisLog(REDIS_WARNING
,
1594 "======= Ooops! Redis %s got signal: -%d- =======", REDIS_VERSION
, sig
);
1595 infostring
= genRedisInfoString();
1596 redisLog(REDIS_WARNING
, "%s",infostring
);
1597 /* It's not safe to sdsfree() the returned string under memory
1598 * corruption conditions. Let it leak as we are going to abort */
1600 trace_size
= backtrace(trace
, 100);
1601 /* overwrite sigaction with caller's address */
1602 if (getMcontextEip(uc
) != NULL
) {
1603 trace
[1] = getMcontextEip(uc
);
1605 messages
= backtrace_symbols(trace
, trace_size
);
1607 for (i
=1; i
<trace_size
; ++i
)
1608 redisLog(REDIS_WARNING
,"%s", messages
[i
]);
1610 /* free(messages); Don't call free() with possibly corrupted memory. */
1611 if (server
.daemonize
) unlink(server
.pidfile
);
1613 /* Make sure we exit with the right signal at the end. So for instance
1614 * the core will be dumped if enabled. */
1615 sigemptyset (&act
.sa_mask
);
1616 /* When the SA_SIGINFO flag is set in sa_flags then sa_sigaction
1617 * is used. Otherwise, sa_handler is used */
1618 act
.sa_flags
= SA_NODEFER
| SA_ONSTACK
| SA_RESETHAND
;
1619 act
.sa_handler
= SIG_DFL
;
1620 sigaction (sig
, &act
, NULL
);
1624 void sigtermHandler(int sig
) {
1627 redisLog(REDIS_WARNING
,"SIGTERM received, scheduling shutting down...");
1628 server
.shutdown_asap
= 1;
1631 void setupSigSegvAction(void) {
1632 struct sigaction act
;
1634 sigemptyset (&act
.sa_mask
);
1635 /* When the SA_SIGINFO flag is set in sa_flags then sa_sigaction
1636 * is used. Otherwise, sa_handler is used */
1637 act
.sa_flags
= SA_NODEFER
| SA_ONSTACK
| SA_RESETHAND
| SA_SIGINFO
;
1638 act
.sa_sigaction
= segvHandler
;
1639 sigaction (SIGSEGV
, &act
, NULL
);
1640 sigaction (SIGBUS
, &act
, NULL
);
1641 sigaction (SIGFPE
, &act
, NULL
);
1642 sigaction (SIGILL
, &act
, NULL
);
1643 sigaction (SIGBUS
, &act
, NULL
);
1645 act
.sa_flags
= SA_NODEFER
| SA_ONSTACK
| SA_RESETHAND
;
1646 act
.sa_handler
= sigtermHandler
;
1647 sigaction (SIGTERM
, &act
, NULL
);
1651 #else /* HAVE_BACKTRACE */
1652 void setupSigSegvAction(void) {
1654 #endif /* HAVE_BACKTRACE */