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