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