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