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