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