]> git.saurik.com Git - redis.git/blob - redis.c
edb2a1228fc963b2ad17efc99b03586a3113c7af
[redis.git] / redis.c
1 /*
2 * Copyright (c) 2006-2009, 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 #define REDIS_VERSION "1.3.2"
31
32 #include "fmacros.h"
33 #include "config.h"
34
35 #include <stdio.h>
36 #include <stdlib.h>
37 #include <string.h>
38 #include <time.h>
39 #include <unistd.h>
40 #define __USE_POSIX199309
41 #include <signal.h>
42
43 #ifdef HAVE_BACKTRACE
44 #include <execinfo.h>
45 #include <ucontext.h>
46 #endif /* HAVE_BACKTRACE */
47
48 #include <sys/wait.h>
49 #include <errno.h>
50 #include <assert.h>
51 #include <ctype.h>
52 #include <stdarg.h>
53 #include <inttypes.h>
54 #include <arpa/inet.h>
55 #include <sys/stat.h>
56 #include <fcntl.h>
57 #include <sys/time.h>
58 #include <sys/resource.h>
59 #include <sys/uio.h>
60 #include <limits.h>
61 #include <math.h>
62 #include <pthread.h>
63
64 #if defined(__sun)
65 #include "solarisfixes.h"
66 #endif
67
68 #include "redis.h"
69 #include "ae.h" /* Event driven programming library */
70 #include "sds.h" /* Dynamic safe strings */
71 #include "anet.h" /* Networking the easy way */
72 #include "dict.h" /* Hash tables */
73 #include "adlist.h" /* Linked lists */
74 #include "zmalloc.h" /* total memory usage aware version of malloc/free */
75 #include "lzf.h" /* LZF compression library */
76 #include "pqsort.h" /* Partial qsort for SORT+LIMIT */
77
78 /* Error codes */
79 #define REDIS_OK 0
80 #define REDIS_ERR -1
81
82 /* Static server configuration */
83 #define REDIS_SERVERPORT 6379 /* TCP port */
84 #define REDIS_MAXIDLETIME (60*5) /* default client timeout */
85 #define REDIS_IOBUF_LEN 1024
86 #define REDIS_LOADBUF_LEN 1024
87 #define REDIS_STATIC_ARGS 4
88 #define REDIS_DEFAULT_DBNUM 16
89 #define REDIS_CONFIGLINE_MAX 1024
90 #define REDIS_OBJFREELIST_MAX 1000000 /* Max number of objects to cache */
91 #define REDIS_MAX_SYNC_TIME 60 /* Slave can't take more to sync */
92 #define REDIS_EXPIRELOOKUPS_PER_CRON 100 /* try to expire 100 keys/second */
93 #define REDIS_MAX_WRITE_PER_EVENT (1024*64)
94 #define REDIS_REQUEST_MAX_SIZE (1024*1024*256) /* max bytes in inline command */
95
96 /* If more then REDIS_WRITEV_THRESHOLD write packets are pending use writev */
97 #define REDIS_WRITEV_THRESHOLD 3
98 /* Max number of iovecs used for each writev call */
99 #define REDIS_WRITEV_IOVEC_COUNT 256
100
101 /* Hash table parameters */
102 #define REDIS_HT_MINFILL 10 /* Minimal hash table fill 10% */
103
104 /* Command flags */
105 #define REDIS_CMD_BULK 1 /* Bulk write command */
106 #define REDIS_CMD_INLINE 2 /* Inline command */
107 /* REDIS_CMD_DENYOOM reserves a longer comment: all the commands marked with
108 this flags will return an error when the 'maxmemory' option is set in the
109 config file and the server is using more than maxmemory bytes of memory.
110 In short this commands are denied on low memory conditions. */
111 #define REDIS_CMD_DENYOOM 4
112
113 /* Object types */
114 #define REDIS_STRING 0
115 #define REDIS_LIST 1
116 #define REDIS_SET 2
117 #define REDIS_ZSET 3
118 #define REDIS_HASH 4
119
120 /* Objects encoding */
121 #define REDIS_ENCODING_RAW 0 /* Raw representation */
122 #define REDIS_ENCODING_INT 1 /* Encoded as integer */
123
124 /* Object types only used for dumping to disk */
125 #define REDIS_EXPIRETIME 253
126 #define REDIS_SELECTDB 254
127 #define REDIS_EOF 255
128
129 /* Defines related to the dump file format. To store 32 bits lengths for short
130 * keys requires a lot of space, so we check the most significant 2 bits of
131 * the first byte to interpreter the length:
132 *
133 * 00|000000 => if the two MSB are 00 the len is the 6 bits of this byte
134 * 01|000000 00000000 => 01, the len is 14 byes, 6 bits + 8 bits of next byte
135 * 10|000000 [32 bit integer] => if it's 01, a full 32 bit len will follow
136 * 11|000000 this means: specially encoded object will follow. The six bits
137 * number specify the kind of object that follows.
138 * See the REDIS_RDB_ENC_* defines.
139 *
140 * Lenghts up to 63 are stored using a single byte, most DB keys, and may
141 * values, will fit inside. */
142 #define REDIS_RDB_6BITLEN 0
143 #define REDIS_RDB_14BITLEN 1
144 #define REDIS_RDB_32BITLEN 2
145 #define REDIS_RDB_ENCVAL 3
146 #define REDIS_RDB_LENERR UINT_MAX
147
148 /* When a length of a string object stored on disk has the first two bits
149 * set, the remaining two bits specify a special encoding for the object
150 * accordingly to the following defines: */
151 #define REDIS_RDB_ENC_INT8 0 /* 8 bit signed integer */
152 #define REDIS_RDB_ENC_INT16 1 /* 16 bit signed integer */
153 #define REDIS_RDB_ENC_INT32 2 /* 32 bit signed integer */
154 #define REDIS_RDB_ENC_LZF 3 /* string compressed with FASTLZ */
155
156 /* Virtual memory object->where field. */
157 #define REDIS_VM_MEMORY 0 /* The object is on memory */
158 #define REDIS_VM_SWAPPED 1 /* The object is on disk */
159 #define REDIS_VM_SWAPPING 2 /* Redis is swapping this object on disk */
160 #define REDIS_VM_LOADING 3 /* Redis is loading this object from disk */
161
162 /* Virtual memory static configuration stuff.
163 * Check vmFindContiguousPages() to know more about this magic numbers. */
164 #define REDIS_VM_MAX_NEAR_PAGES 65536
165 #define REDIS_VM_MAX_RANDOM_JUMP 4096
166 #define REDIS_VM_MAX_THREADS 32
167 #define REDIS_THREAD_STACK_SIZE (1024*1024*4)
168 /* The following is the number of completed I/O jobs to process when the
169 * handelr is called. 1 is the minimum, and also the default, as it allows
170 * to block as little as possible other accessing clients. While Virtual
171 * Memory I/O operations are performed by threads, this operations must
172 * be processed by the main thread when completed to take effect. */
173 #define REDIS_MAX_COMPLETED_JOBS_PROCESSED 1
174
175 /* Client flags */
176 #define REDIS_CLOSE 1 /* This client connection should be closed ASAP */
177 #define REDIS_SLAVE 2 /* This client is a slave server */
178 #define REDIS_MASTER 4 /* This client is a master server */
179 #define REDIS_MONITOR 8 /* This client is a slave monitor, see MONITOR */
180 #define REDIS_MULTI 16 /* This client is in a MULTI context */
181 #define REDIS_BLOCKED 32 /* The client is waiting in a blocking operation */
182 #define REDIS_IO_WAIT 64 /* The client is waiting for Virtual Memory I/O */
183
184 /* Slave replication state - slave side */
185 #define REDIS_REPL_NONE 0 /* No active replication */
186 #define REDIS_REPL_CONNECT 1 /* Must connect to master */
187 #define REDIS_REPL_CONNECTED 2 /* Connected to master */
188
189 /* Slave replication state - from the point of view of master
190 * Note that in SEND_BULK and ONLINE state the slave receives new updates
191 * in its output queue. In the WAIT_BGSAVE state instead the server is waiting
192 * to start the next background saving in order to send updates to it. */
193 #define REDIS_REPL_WAIT_BGSAVE_START 3 /* master waits bgsave to start feeding it */
194 #define REDIS_REPL_WAIT_BGSAVE_END 4 /* master waits bgsave to start bulk DB transmission */
195 #define REDIS_REPL_SEND_BULK 5 /* master is sending the bulk DB */
196 #define REDIS_REPL_ONLINE 6 /* bulk DB already transmitted, receive updates */
197
198 /* List related stuff */
199 #define REDIS_HEAD 0
200 #define REDIS_TAIL 1
201
202 /* Sort operations */
203 #define REDIS_SORT_GET 0
204 #define REDIS_SORT_ASC 1
205 #define REDIS_SORT_DESC 2
206 #define REDIS_SORTKEY_MAX 1024
207
208 /* Log levels */
209 #define REDIS_DEBUG 0
210 #define REDIS_VERBOSE 1
211 #define REDIS_NOTICE 2
212 #define REDIS_WARNING 3
213
214 /* Anti-warning macro... */
215 #define REDIS_NOTUSED(V) ((void) V)
216
217 #define ZSKIPLIST_MAXLEVEL 32 /* Should be enough for 2^32 elements */
218 #define ZSKIPLIST_P 0.25 /* Skiplist P = 1/4 */
219
220 /* Append only defines */
221 #define APPENDFSYNC_NO 0
222 #define APPENDFSYNC_ALWAYS 1
223 #define APPENDFSYNC_EVERYSEC 2
224
225 /* We can print the stacktrace, so our assert is defined this way: */
226 #define redisAssert(_e) ((_e)?(void)0 : (_redisAssert(#_e,__FILE__,__LINE__),exit(1)))
227 static void _redisAssert(char *estr, char *file, int line);
228
229 /*================================= Data types ============================== */
230
231 /* A redis object, that is a type able to hold a string / list / set */
232
233 /* The VM object structure */
234 struct redisObjectVM {
235 off_t page; /* the page at witch the object is stored on disk */
236 off_t usedpages; /* number of pages used on disk */
237 time_t atime; /* Last access time */
238 } vm;
239
240 /* The actual Redis Object */
241 typedef struct redisObject {
242 void *ptr;
243 unsigned char type;
244 unsigned char encoding;
245 unsigned char storage; /* If this object is a key, where is the value?
246 * REDIS_VM_MEMORY, REDIS_VM_SWAPPED, ... */
247 unsigned char vtype; /* If this object is a key, and value is swapped out,
248 * this is the type of the swapped out object. */
249 int refcount;
250 /* VM fields, this are only allocated if VM is active, otherwise the
251 * object allocation function will just allocate
252 * sizeof(redisObjct) minus sizeof(redisObjectVM), so using
253 * Redis without VM active will not have any overhead. */
254 struct redisObjectVM vm;
255 } robj;
256
257 /* Macro used to initalize a Redis object allocated on the stack.
258 * Note that this macro is taken near the structure definition to make sure
259 * we'll update it when the structure is changed, to avoid bugs like
260 * bug #85 introduced exactly in this way. */
261 #define initStaticStringObject(_var,_ptr) do { \
262 _var.refcount = 1; \
263 _var.type = REDIS_STRING; \
264 _var.encoding = REDIS_ENCODING_RAW; \
265 _var.ptr = _ptr; \
266 if (server.vm_enabled) _var.storage = REDIS_VM_MEMORY; \
267 } while(0);
268
269 typedef struct redisDb {
270 dict *dict; /* The keyspace for this DB */
271 dict *expires; /* Timeout of keys with a timeout set */
272 dict *blockingkeys; /* Keys with clients waiting for data (BLPOP) */
273 int id;
274 } redisDb;
275
276 /* Client MULTI/EXEC state */
277 typedef struct multiCmd {
278 robj **argv;
279 int argc;
280 struct redisCommand *cmd;
281 } multiCmd;
282
283 typedef struct multiState {
284 multiCmd *commands; /* Array of MULTI commands */
285 int count; /* Total number of MULTI commands */
286 } multiState;
287
288 /* With multiplexing we need to take per-clinet state.
289 * Clients are taken in a liked list. */
290 typedef struct redisClient {
291 int fd;
292 redisDb *db;
293 int dictid;
294 sds querybuf;
295 robj **argv, **mbargv;
296 int argc, mbargc;
297 int bulklen; /* bulk read len. -1 if not in bulk read mode */
298 int multibulk; /* multi bulk command format active */
299 list *reply;
300 int sentlen;
301 time_t lastinteraction; /* time of the last interaction, used for timeout */
302 int flags; /* REDIS_CLOSE | REDIS_SLAVE | REDIS_MONITOR */
303 /* REDIS_MULTI */
304 int slaveseldb; /* slave selected db, if this client is a slave */
305 int authenticated; /* when requirepass is non-NULL */
306 int replstate; /* replication state if this is a slave */
307 int repldbfd; /* replication DB file descriptor */
308 long repldboff; /* replication DB file offset */
309 off_t repldbsize; /* replication DB file size */
310 multiState mstate; /* MULTI/EXEC state */
311 robj **blockingkeys; /* The key we waiting to terminate a blocking
312 * operation such as BLPOP. Otherwise NULL. */
313 int blockingkeysnum; /* Number of blocking keys */
314 time_t blockingto; /* Blocking operation timeout. If UNIX current time
315 * is >= blockingto then the operation timed out. */
316 list *io_keys; /* Keys this client is waiting to be loaded from the
317 * swap file in order to continue. */
318 } redisClient;
319
320 struct saveparam {
321 time_t seconds;
322 int changes;
323 };
324
325 /* Global server state structure */
326 struct redisServer {
327 int port;
328 int fd;
329 redisDb *db;
330 dict *sharingpool; /* Poll used for object sharing */
331 unsigned int sharingpoolsize;
332 long long dirty; /* changes to DB from the last save */
333 list *clients;
334 list *slaves, *monitors;
335 char neterr[ANET_ERR_LEN];
336 aeEventLoop *el;
337 int cronloops; /* number of times the cron function run */
338 list *objfreelist; /* A list of freed objects to avoid malloc() */
339 time_t lastsave; /* Unix time of last save succeeede */
340 size_t usedmemory; /* Used memory in megabytes */
341 /* Fields used only for stats */
342 time_t stat_starttime; /* server start time */
343 long long stat_numcommands; /* number of processed commands */
344 long long stat_numconnections; /* number of connections received */
345 /* Configuration */
346 int verbosity;
347 int glueoutputbuf;
348 int maxidletime;
349 int dbnum;
350 int daemonize;
351 int appendonly;
352 int appendfsync;
353 time_t lastfsync;
354 int appendfd;
355 int appendseldb;
356 char *pidfile;
357 pid_t bgsavechildpid;
358 pid_t bgrewritechildpid;
359 sds bgrewritebuf; /* buffer taken by parent during oppend only rewrite */
360 struct saveparam *saveparams;
361 int saveparamslen;
362 char *logfile;
363 char *bindaddr;
364 char *dbfilename;
365 char *appendfilename;
366 char *requirepass;
367 int shareobjects;
368 int rdbcompression;
369 /* Replication related */
370 int isslave;
371 char *masterauth;
372 char *masterhost;
373 int masterport;
374 redisClient *master; /* client that is master for this slave */
375 int replstate;
376 unsigned int maxclients;
377 unsigned long long maxmemory;
378 unsigned int blockedclients;
379 /* Sort parameters - qsort_r() is only available under BSD so we
380 * have to take this state global, in order to pass it to sortCompare() */
381 int sort_desc;
382 int sort_alpha;
383 int sort_bypattern;
384 /* Virtual memory configuration */
385 int vm_enabled;
386 off_t vm_page_size;
387 off_t vm_pages;
388 unsigned long long vm_max_memory;
389 /* Virtual memory state */
390 FILE *vm_fp;
391 int vm_fd;
392 off_t vm_next_page; /* Next probably empty page */
393 off_t vm_near_pages; /* Number of pages allocated sequentially */
394 unsigned char *vm_bitmap; /* Bitmap of free/used pages */
395 time_t unixtime; /* Unix time sampled every second. */
396 /* Virtual memory I/O threads stuff */
397 /* An I/O thread process an element taken from the io_jobs queue and
398 * put the result of the operation in the io_done list. While the
399 * job is being processed, it's put on io_processing queue. */
400 list *io_newjobs; /* List of VM I/O jobs yet to be processed */
401 list *io_processing; /* List of VM I/O jobs being processed */
402 list *io_processed; /* List of VM I/O jobs already processed */
403 list *io_clients; /* All the clients waiting for SWAP I/O operations */
404 pthread_mutex_t io_mutex; /* lock to access io_jobs/io_done/io_thread_job */
405 pthread_mutex_t obj_freelist_mutex; /* safe redis objects creation/free */
406 pthread_mutex_t io_swapfile_mutex; /* So we can lseek + write */
407 pthread_attr_t io_threads_attr; /* attributes for threads creation */
408 int io_active_threads; /* Number of running I/O threads */
409 int vm_max_threads; /* Max number of I/O threads running at the same time */
410 /* Our main thread is blocked on the event loop, locking for sockets ready
411 * to be read or written, so when a threaded I/O operation is ready to be
412 * processed by the main thread, the I/O thread will use a unix pipe to
413 * awake the main thread. The followings are the two pipe FDs. */
414 int io_ready_pipe_read;
415 int io_ready_pipe_write;
416 /* Virtual memory stats */
417 unsigned long long vm_stats_used_pages;
418 unsigned long long vm_stats_swapped_objects;
419 unsigned long long vm_stats_swapouts;
420 unsigned long long vm_stats_swapins;
421 FILE *devnull;
422 };
423
424 typedef void redisCommandProc(redisClient *c);
425 struct redisCommand {
426 char *name;
427 redisCommandProc *proc;
428 int arity;
429 int flags;
430 };
431
432 struct redisFunctionSym {
433 char *name;
434 unsigned long pointer;
435 };
436
437 typedef struct _redisSortObject {
438 robj *obj;
439 union {
440 double score;
441 robj *cmpobj;
442 } u;
443 } redisSortObject;
444
445 typedef struct _redisSortOperation {
446 int type;
447 robj *pattern;
448 } redisSortOperation;
449
450 /* ZSETs use a specialized version of Skiplists */
451
452 typedef struct zskiplistNode {
453 struct zskiplistNode **forward;
454 struct zskiplistNode *backward;
455 double score;
456 robj *obj;
457 } zskiplistNode;
458
459 typedef struct zskiplist {
460 struct zskiplistNode *header, *tail;
461 unsigned long length;
462 int level;
463 } zskiplist;
464
465 typedef struct zset {
466 dict *dict;
467 zskiplist *zsl;
468 } zset;
469
470 /* Our shared "common" objects */
471
472 struct sharedObjectsStruct {
473 robj *crlf, *ok, *err, *emptybulk, *czero, *cone, *pong, *space,
474 *colon, *nullbulk, *nullmultibulk, *queued,
475 *emptymultibulk, *wrongtypeerr, *nokeyerr, *syntaxerr, *sameobjecterr,
476 *outofrangeerr, *plus,
477 *select0, *select1, *select2, *select3, *select4,
478 *select5, *select6, *select7, *select8, *select9;
479 } shared;
480
481 /* Global vars that are actally used as constants. The following double
482 * values are used for double on-disk serialization, and are initialized
483 * at runtime to avoid strange compiler optimizations. */
484
485 static double R_Zero, R_PosInf, R_NegInf, R_Nan;
486
487 /* VM threaded I/O request message */
488 #define REDIS_IOJOB_LOAD 0 /* Load from disk to memory */
489 #define REDIS_IOJOB_PREPARE_SWAP 1 /* Compute needed pages */
490 #define REDIS_IOJOB_DO_SWAP 2 /* Swap from memory to disk */
491 typedef struct iojon {
492 int type; /* Request type, REDIS_IOJOB_* */
493 redisDb *db;/* Redis database */
494 robj *key; /* This I/O request is about swapping this key */
495 robj *val; /* the value to swap for REDIS_IOREQ_*_SWAP, otherwise this
496 * field is populated by the I/O thread for REDIS_IOREQ_LOAD. */
497 off_t page; /* Swap page where to read/write the object */
498 off_t pages; /* Swap pages needed to safe object. PREPARE_SWAP return val */
499 int canceled; /* True if this command was canceled by blocking side of VM */
500 pthread_t thread; /* ID of the thread processing this entry */
501 } iojob;
502
503 /*================================ Prototypes =============================== */
504
505 static void freeStringObject(robj *o);
506 static void freeListObject(robj *o);
507 static void freeSetObject(robj *o);
508 static void decrRefCount(void *o);
509 static robj *createObject(int type, void *ptr);
510 static void freeClient(redisClient *c);
511 static int rdbLoad(char *filename);
512 static void addReply(redisClient *c, robj *obj);
513 static void addReplySds(redisClient *c, sds s);
514 static void incrRefCount(robj *o);
515 static int rdbSaveBackground(char *filename);
516 static robj *createStringObject(char *ptr, size_t len);
517 static robj *dupStringObject(robj *o);
518 static void replicationFeedSlaves(list *slaves, struct redisCommand *cmd, int dictid, robj **argv, int argc);
519 static void feedAppendOnlyFile(struct redisCommand *cmd, int dictid, robj **argv, int argc);
520 static int syncWithMaster(void);
521 static robj *tryObjectSharing(robj *o);
522 static int tryObjectEncoding(robj *o);
523 static robj *getDecodedObject(robj *o);
524 static int removeExpire(redisDb *db, robj *key);
525 static int expireIfNeeded(redisDb *db, robj *key);
526 static int deleteIfVolatile(redisDb *db, robj *key);
527 static int deleteIfSwapped(redisDb *db, robj *key);
528 static int deleteKey(redisDb *db, robj *key);
529 static time_t getExpire(redisDb *db, robj *key);
530 static int setExpire(redisDb *db, robj *key, time_t when);
531 static void updateSlavesWaitingBgsave(int bgsaveerr);
532 static void freeMemoryIfNeeded(void);
533 static int processCommand(redisClient *c);
534 static void setupSigSegvAction(void);
535 static void rdbRemoveTempFile(pid_t childpid);
536 static void aofRemoveTempFile(pid_t childpid);
537 static size_t stringObjectLen(robj *o);
538 static void processInputBuffer(redisClient *c);
539 static zskiplist *zslCreate(void);
540 static void zslFree(zskiplist *zsl);
541 static void zslInsert(zskiplist *zsl, double score, robj *obj);
542 static void sendReplyToClientWritev(aeEventLoop *el, int fd, void *privdata, int mask);
543 static void initClientMultiState(redisClient *c);
544 static void freeClientMultiState(redisClient *c);
545 static void queueMultiCommand(redisClient *c, struct redisCommand *cmd);
546 static void unblockClient(redisClient *c);
547 static int handleClientsWaitingListPush(redisClient *c, robj *key, robj *ele);
548 static void vmInit(void);
549 static void vmMarkPagesFree(off_t page, off_t count);
550 static robj *vmLoadObject(robj *key);
551 static robj *vmPreviewObject(robj *key);
552 static int vmSwapOneObjectBlocking(void);
553 static int vmSwapOneObjectThreaded(void);
554 static int vmCanSwapOut(void);
555 static int tryFreeOneObjectFromFreelist(void);
556 static void acceptHandler(aeEventLoop *el, int fd, void *privdata, int mask);
557 static void vmThreadedIOCompletedJob(aeEventLoop *el, int fd, void *privdata, int mask);
558 static void vmCancelThreadedIOJob(robj *o);
559 static void lockThreadedIO(void);
560 static void unlockThreadedIO(void);
561 static int vmSwapObjectThreaded(robj *key, robj *val, redisDb *db);
562 static void freeIOJob(iojob *j);
563 static void queueIOJob(iojob *j);
564 static int vmWriteObjectOnSwap(robj *o, off_t page);
565 static robj *vmReadObjectFromSwap(off_t page, int type);
566 static void waitZeroActiveThreads(void);
567
568 static void authCommand(redisClient *c);
569 static void pingCommand(redisClient *c);
570 static void echoCommand(redisClient *c);
571 static void setCommand(redisClient *c);
572 static void setnxCommand(redisClient *c);
573 static void getCommand(redisClient *c);
574 static void delCommand(redisClient *c);
575 static void existsCommand(redisClient *c);
576 static void incrCommand(redisClient *c);
577 static void decrCommand(redisClient *c);
578 static void incrbyCommand(redisClient *c);
579 static void decrbyCommand(redisClient *c);
580 static void selectCommand(redisClient *c);
581 static void randomkeyCommand(redisClient *c);
582 static void keysCommand(redisClient *c);
583 static void dbsizeCommand(redisClient *c);
584 static void lastsaveCommand(redisClient *c);
585 static void saveCommand(redisClient *c);
586 static void bgsaveCommand(redisClient *c);
587 static void bgrewriteaofCommand(redisClient *c);
588 static void shutdownCommand(redisClient *c);
589 static void moveCommand(redisClient *c);
590 static void renameCommand(redisClient *c);
591 static void renamenxCommand(redisClient *c);
592 static void lpushCommand(redisClient *c);
593 static void rpushCommand(redisClient *c);
594 static void lpopCommand(redisClient *c);
595 static void rpopCommand(redisClient *c);
596 static void llenCommand(redisClient *c);
597 static void lindexCommand(redisClient *c);
598 static void lrangeCommand(redisClient *c);
599 static void ltrimCommand(redisClient *c);
600 static void typeCommand(redisClient *c);
601 static void lsetCommand(redisClient *c);
602 static void saddCommand(redisClient *c);
603 static void sremCommand(redisClient *c);
604 static void smoveCommand(redisClient *c);
605 static void sismemberCommand(redisClient *c);
606 static void scardCommand(redisClient *c);
607 static void spopCommand(redisClient *c);
608 static void srandmemberCommand(redisClient *c);
609 static void sinterCommand(redisClient *c);
610 static void sinterstoreCommand(redisClient *c);
611 static void sunionCommand(redisClient *c);
612 static void sunionstoreCommand(redisClient *c);
613 static void sdiffCommand(redisClient *c);
614 static void sdiffstoreCommand(redisClient *c);
615 static void syncCommand(redisClient *c);
616 static void flushdbCommand(redisClient *c);
617 static void flushallCommand(redisClient *c);
618 static void sortCommand(redisClient *c);
619 static void lremCommand(redisClient *c);
620 static void rpoplpushcommand(redisClient *c);
621 static void infoCommand(redisClient *c);
622 static void mgetCommand(redisClient *c);
623 static void monitorCommand(redisClient *c);
624 static void expireCommand(redisClient *c);
625 static void expireatCommand(redisClient *c);
626 static void getsetCommand(redisClient *c);
627 static void ttlCommand(redisClient *c);
628 static void slaveofCommand(redisClient *c);
629 static void debugCommand(redisClient *c);
630 static void msetCommand(redisClient *c);
631 static void msetnxCommand(redisClient *c);
632 static void zaddCommand(redisClient *c);
633 static void zincrbyCommand(redisClient *c);
634 static void zrangeCommand(redisClient *c);
635 static void zrangebyscoreCommand(redisClient *c);
636 static void zrevrangeCommand(redisClient *c);
637 static void zcardCommand(redisClient *c);
638 static void zremCommand(redisClient *c);
639 static void zscoreCommand(redisClient *c);
640 static void zremrangebyscoreCommand(redisClient *c);
641 static void multiCommand(redisClient *c);
642 static void execCommand(redisClient *c);
643 static void blpopCommand(redisClient *c);
644 static void brpopCommand(redisClient *c);
645
646 /*================================= Globals ================================= */
647
648 /* Global vars */
649 static struct redisServer server; /* server global state */
650 static struct redisCommand cmdTable[] = {
651 {"get",getCommand,2,REDIS_CMD_INLINE},
652 {"set",setCommand,3,REDIS_CMD_BULK|REDIS_CMD_DENYOOM},
653 {"setnx",setnxCommand,3,REDIS_CMD_BULK|REDIS_CMD_DENYOOM},
654 {"del",delCommand,-2,REDIS_CMD_INLINE},
655 {"exists",existsCommand,2,REDIS_CMD_INLINE},
656 {"incr",incrCommand,2,REDIS_CMD_INLINE|REDIS_CMD_DENYOOM},
657 {"decr",decrCommand,2,REDIS_CMD_INLINE|REDIS_CMD_DENYOOM},
658 {"mget",mgetCommand,-2,REDIS_CMD_INLINE},
659 {"rpush",rpushCommand,3,REDIS_CMD_BULK|REDIS_CMD_DENYOOM},
660 {"lpush",lpushCommand,3,REDIS_CMD_BULK|REDIS_CMD_DENYOOM},
661 {"rpop",rpopCommand,2,REDIS_CMD_INLINE},
662 {"lpop",lpopCommand,2,REDIS_CMD_INLINE},
663 {"brpop",brpopCommand,-3,REDIS_CMD_INLINE},
664 {"blpop",blpopCommand,-3,REDIS_CMD_INLINE},
665 {"llen",llenCommand,2,REDIS_CMD_INLINE},
666 {"lindex",lindexCommand,3,REDIS_CMD_INLINE},
667 {"lset",lsetCommand,4,REDIS_CMD_BULK|REDIS_CMD_DENYOOM},
668 {"lrange",lrangeCommand,4,REDIS_CMD_INLINE},
669 {"ltrim",ltrimCommand,4,REDIS_CMD_INLINE},
670 {"lrem",lremCommand,4,REDIS_CMD_BULK},
671 {"rpoplpush",rpoplpushcommand,3,REDIS_CMD_BULK|REDIS_CMD_DENYOOM},
672 {"sadd",saddCommand,3,REDIS_CMD_BULK|REDIS_CMD_DENYOOM},
673 {"srem",sremCommand,3,REDIS_CMD_BULK},
674 {"smove",smoveCommand,4,REDIS_CMD_BULK},
675 {"sismember",sismemberCommand,3,REDIS_CMD_BULK},
676 {"scard",scardCommand,2,REDIS_CMD_INLINE},
677 {"spop",spopCommand,2,REDIS_CMD_INLINE},
678 {"srandmember",srandmemberCommand,2,REDIS_CMD_INLINE},
679 {"sinter",sinterCommand,-2,REDIS_CMD_INLINE|REDIS_CMD_DENYOOM},
680 {"sinterstore",sinterstoreCommand,-3,REDIS_CMD_INLINE|REDIS_CMD_DENYOOM},
681 {"sunion",sunionCommand,-2,REDIS_CMD_INLINE|REDIS_CMD_DENYOOM},
682 {"sunionstore",sunionstoreCommand,-3,REDIS_CMD_INLINE|REDIS_CMD_DENYOOM},
683 {"sdiff",sdiffCommand,-2,REDIS_CMD_INLINE|REDIS_CMD_DENYOOM},
684 {"sdiffstore",sdiffstoreCommand,-3,REDIS_CMD_INLINE|REDIS_CMD_DENYOOM},
685 {"smembers",sinterCommand,2,REDIS_CMD_INLINE},
686 {"zadd",zaddCommand,4,REDIS_CMD_BULK|REDIS_CMD_DENYOOM},
687 {"zincrby",zincrbyCommand,4,REDIS_CMD_BULK|REDIS_CMD_DENYOOM},
688 {"zrem",zremCommand,3,REDIS_CMD_BULK},
689 {"zremrangebyscore",zremrangebyscoreCommand,4,REDIS_CMD_INLINE},
690 {"zrange",zrangeCommand,-4,REDIS_CMD_INLINE},
691 {"zrangebyscore",zrangebyscoreCommand,-4,REDIS_CMD_INLINE},
692 {"zrevrange",zrevrangeCommand,-4,REDIS_CMD_INLINE},
693 {"zcard",zcardCommand,2,REDIS_CMD_INLINE},
694 {"zscore",zscoreCommand,3,REDIS_CMD_BULK|REDIS_CMD_DENYOOM},
695 {"incrby",incrbyCommand,3,REDIS_CMD_INLINE|REDIS_CMD_DENYOOM},
696 {"decrby",decrbyCommand,3,REDIS_CMD_INLINE|REDIS_CMD_DENYOOM},
697 {"getset",getsetCommand,3,REDIS_CMD_BULK|REDIS_CMD_DENYOOM},
698 {"mset",msetCommand,-3,REDIS_CMD_BULK|REDIS_CMD_DENYOOM},
699 {"msetnx",msetnxCommand,-3,REDIS_CMD_BULK|REDIS_CMD_DENYOOM},
700 {"randomkey",randomkeyCommand,1,REDIS_CMD_INLINE},
701 {"select",selectCommand,2,REDIS_CMD_INLINE},
702 {"move",moveCommand,3,REDIS_CMD_INLINE},
703 {"rename",renameCommand,3,REDIS_CMD_INLINE},
704 {"renamenx",renamenxCommand,3,REDIS_CMD_INLINE},
705 {"expire",expireCommand,3,REDIS_CMD_INLINE},
706 {"expireat",expireatCommand,3,REDIS_CMD_INLINE},
707 {"keys",keysCommand,2,REDIS_CMD_INLINE},
708 {"dbsize",dbsizeCommand,1,REDIS_CMD_INLINE},
709 {"auth",authCommand,2,REDIS_CMD_INLINE},
710 {"ping",pingCommand,1,REDIS_CMD_INLINE},
711 {"echo",echoCommand,2,REDIS_CMD_BULK},
712 {"save",saveCommand,1,REDIS_CMD_INLINE},
713 {"bgsave",bgsaveCommand,1,REDIS_CMD_INLINE},
714 {"bgrewriteaof",bgrewriteaofCommand,1,REDIS_CMD_INLINE},
715 {"shutdown",shutdownCommand,1,REDIS_CMD_INLINE},
716 {"lastsave",lastsaveCommand,1,REDIS_CMD_INLINE},
717 {"type",typeCommand,2,REDIS_CMD_INLINE},
718 {"multi",multiCommand,1,REDIS_CMD_INLINE},
719 {"exec",execCommand,1,REDIS_CMD_INLINE},
720 {"sync",syncCommand,1,REDIS_CMD_INLINE},
721 {"flushdb",flushdbCommand,1,REDIS_CMD_INLINE},
722 {"flushall",flushallCommand,1,REDIS_CMD_INLINE},
723 {"sort",sortCommand,-2,REDIS_CMD_INLINE|REDIS_CMD_DENYOOM},
724 {"info",infoCommand,1,REDIS_CMD_INLINE},
725 {"monitor",monitorCommand,1,REDIS_CMD_INLINE},
726 {"ttl",ttlCommand,2,REDIS_CMD_INLINE},
727 {"slaveof",slaveofCommand,3,REDIS_CMD_INLINE},
728 {"debug",debugCommand,-2,REDIS_CMD_INLINE},
729 {NULL,NULL,0,0}
730 };
731
732 /*============================ Utility functions ============================ */
733
734 /* Glob-style pattern matching. */
735 int stringmatchlen(const char *pattern, int patternLen,
736 const char *string, int stringLen, int nocase)
737 {
738 while(patternLen) {
739 switch(pattern[0]) {
740 case '*':
741 while (pattern[1] == '*') {
742 pattern++;
743 patternLen--;
744 }
745 if (patternLen == 1)
746 return 1; /* match */
747 while(stringLen) {
748 if (stringmatchlen(pattern+1, patternLen-1,
749 string, stringLen, nocase))
750 return 1; /* match */
751 string++;
752 stringLen--;
753 }
754 return 0; /* no match */
755 break;
756 case '?':
757 if (stringLen == 0)
758 return 0; /* no match */
759 string++;
760 stringLen--;
761 break;
762 case '[':
763 {
764 int not, match;
765
766 pattern++;
767 patternLen--;
768 not = pattern[0] == '^';
769 if (not) {
770 pattern++;
771 patternLen--;
772 }
773 match = 0;
774 while(1) {
775 if (pattern[0] == '\\') {
776 pattern++;
777 patternLen--;
778 if (pattern[0] == string[0])
779 match = 1;
780 } else if (pattern[0] == ']') {
781 break;
782 } else if (patternLen == 0) {
783 pattern--;
784 patternLen++;
785 break;
786 } else if (pattern[1] == '-' && patternLen >= 3) {
787 int start = pattern[0];
788 int end = pattern[2];
789 int c = string[0];
790 if (start > end) {
791 int t = start;
792 start = end;
793 end = t;
794 }
795 if (nocase) {
796 start = tolower(start);
797 end = tolower(end);
798 c = tolower(c);
799 }
800 pattern += 2;
801 patternLen -= 2;
802 if (c >= start && c <= end)
803 match = 1;
804 } else {
805 if (!nocase) {
806 if (pattern[0] == string[0])
807 match = 1;
808 } else {
809 if (tolower((int)pattern[0]) == tolower((int)string[0]))
810 match = 1;
811 }
812 }
813 pattern++;
814 patternLen--;
815 }
816 if (not)
817 match = !match;
818 if (!match)
819 return 0; /* no match */
820 string++;
821 stringLen--;
822 break;
823 }
824 case '\\':
825 if (patternLen >= 2) {
826 pattern++;
827 patternLen--;
828 }
829 /* fall through */
830 default:
831 if (!nocase) {
832 if (pattern[0] != string[0])
833 return 0; /* no match */
834 } else {
835 if (tolower((int)pattern[0]) != tolower((int)string[0]))
836 return 0; /* no match */
837 }
838 string++;
839 stringLen--;
840 break;
841 }
842 pattern++;
843 patternLen--;
844 if (stringLen == 0) {
845 while(*pattern == '*') {
846 pattern++;
847 patternLen--;
848 }
849 break;
850 }
851 }
852 if (patternLen == 0 && stringLen == 0)
853 return 1;
854 return 0;
855 }
856
857 static void redisLog(int level, const char *fmt, ...) {
858 va_list ap;
859 FILE *fp;
860
861 fp = (server.logfile == NULL) ? stdout : fopen(server.logfile,"a");
862 if (!fp) return;
863
864 va_start(ap, fmt);
865 if (level >= server.verbosity) {
866 char *c = ".-*";
867 char buf[64];
868 time_t now;
869
870 now = time(NULL);
871 strftime(buf,64,"%d %b %H:%M:%S",localtime(&now));
872 fprintf(fp,"%s %c ",buf,c[level]);
873 vfprintf(fp, fmt, ap);
874 fprintf(fp,"\n");
875 fflush(fp);
876 }
877 va_end(ap);
878
879 if (server.logfile) fclose(fp);
880 }
881
882 /*====================== Hash table type implementation ==================== */
883
884 /* This is an hash table type that uses the SDS dynamic strings libary as
885 * keys and radis objects as values (objects can hold SDS strings,
886 * lists, sets). */
887
888 static void dictVanillaFree(void *privdata, void *val)
889 {
890 DICT_NOTUSED(privdata);
891 zfree(val);
892 }
893
894 static void dictListDestructor(void *privdata, void *val)
895 {
896 DICT_NOTUSED(privdata);
897 listRelease((list*)val);
898 }
899
900 static int sdsDictKeyCompare(void *privdata, const void *key1,
901 const void *key2)
902 {
903 int l1,l2;
904 DICT_NOTUSED(privdata);
905
906 l1 = sdslen((sds)key1);
907 l2 = sdslen((sds)key2);
908 if (l1 != l2) return 0;
909 return memcmp(key1, key2, l1) == 0;
910 }
911
912 static void dictRedisObjectDestructor(void *privdata, void *val)
913 {
914 DICT_NOTUSED(privdata);
915
916 if (val == NULL) return; /* Values of swapped out keys as set to NULL */
917 decrRefCount(val);
918 }
919
920 static int dictObjKeyCompare(void *privdata, const void *key1,
921 const void *key2)
922 {
923 const robj *o1 = key1, *o2 = key2;
924 return sdsDictKeyCompare(privdata,o1->ptr,o2->ptr);
925 }
926
927 static unsigned int dictObjHash(const void *key) {
928 const robj *o = key;
929 return dictGenHashFunction(o->ptr, sdslen((sds)o->ptr));
930 }
931
932 static int dictEncObjKeyCompare(void *privdata, const void *key1,
933 const void *key2)
934 {
935 robj *o1 = (robj*) key1, *o2 = (robj*) key2;
936 int cmp;
937
938 o1 = getDecodedObject(o1);
939 o2 = getDecodedObject(o2);
940 cmp = sdsDictKeyCompare(privdata,o1->ptr,o2->ptr);
941 decrRefCount(o1);
942 decrRefCount(o2);
943 return cmp;
944 }
945
946 static unsigned int dictEncObjHash(const void *key) {
947 robj *o = (robj*) key;
948
949 o = getDecodedObject(o);
950 unsigned int hash = dictGenHashFunction(o->ptr, sdslen((sds)o->ptr));
951 decrRefCount(o);
952 return hash;
953 }
954
955 /* Sets type and expires */
956 static dictType setDictType = {
957 dictEncObjHash, /* hash function */
958 NULL, /* key dup */
959 NULL, /* val dup */
960 dictEncObjKeyCompare, /* key compare */
961 dictRedisObjectDestructor, /* key destructor */
962 NULL /* val destructor */
963 };
964
965 /* Sorted sets hash (note: a skiplist is used in addition to the hash table) */
966 static dictType zsetDictType = {
967 dictEncObjHash, /* hash function */
968 NULL, /* key dup */
969 NULL, /* val dup */
970 dictEncObjKeyCompare, /* key compare */
971 dictRedisObjectDestructor, /* key destructor */
972 dictVanillaFree /* val destructor of malloc(sizeof(double)) */
973 };
974
975 /* Db->dict */
976 static dictType hashDictType = {
977 dictObjHash, /* hash function */
978 NULL, /* key dup */
979 NULL, /* val dup */
980 dictObjKeyCompare, /* key compare */
981 dictRedisObjectDestructor, /* key destructor */
982 dictRedisObjectDestructor /* val destructor */
983 };
984
985 /* Db->expires */
986 static dictType keyptrDictType = {
987 dictObjHash, /* hash function */
988 NULL, /* key dup */
989 NULL, /* val dup */
990 dictObjKeyCompare, /* key compare */
991 dictRedisObjectDestructor, /* key destructor */
992 NULL /* val destructor */
993 };
994
995 /* Keylist hash table type has unencoded redis objects as keys and
996 * lists as values. It's used for blocking operations (BLPOP) */
997 static dictType keylistDictType = {
998 dictObjHash, /* hash function */
999 NULL, /* key dup */
1000 NULL, /* val dup */
1001 dictObjKeyCompare, /* key compare */
1002 dictRedisObjectDestructor, /* key destructor */
1003 dictListDestructor /* val destructor */
1004 };
1005
1006 /* ========================= Random utility functions ======================= */
1007
1008 /* Redis generally does not try to recover from out of memory conditions
1009 * when allocating objects or strings, it is not clear if it will be possible
1010 * to report this condition to the client since the networking layer itself
1011 * is based on heap allocation for send buffers, so we simply abort.
1012 * At least the code will be simpler to read... */
1013 static void oom(const char *msg) {
1014 redisLog(REDIS_WARNING, "%s: Out of memory\n",msg);
1015 sleep(1);
1016 abort();
1017 }
1018
1019 /* ====================== Redis server networking stuff ===================== */
1020 static void closeTimedoutClients(void) {
1021 redisClient *c;
1022 listNode *ln;
1023 time_t now = time(NULL);
1024 listIter li;
1025
1026 listRewind(server.clients,&li);
1027 while ((ln = listNext(&li)) != NULL) {
1028 c = listNodeValue(ln);
1029 if (server.maxidletime &&
1030 !(c->flags & REDIS_SLAVE) && /* no timeout for slaves */
1031 !(c->flags & REDIS_MASTER) && /* no timeout for masters */
1032 (now - c->lastinteraction > server.maxidletime))
1033 {
1034 redisLog(REDIS_VERBOSE,"Closing idle client");
1035 freeClient(c);
1036 } else if (c->flags & REDIS_BLOCKED) {
1037 if (c->blockingto != 0 && c->blockingto < now) {
1038 addReply(c,shared.nullmultibulk);
1039 unblockClient(c);
1040 }
1041 }
1042 }
1043 }
1044
1045 static int htNeedsResize(dict *dict) {
1046 long long size, used;
1047
1048 size = dictSlots(dict);
1049 used = dictSize(dict);
1050 return (size && used && size > DICT_HT_INITIAL_SIZE &&
1051 (used*100/size < REDIS_HT_MINFILL));
1052 }
1053
1054 /* If the percentage of used slots in the HT reaches REDIS_HT_MINFILL
1055 * we resize the hash table to save memory */
1056 static void tryResizeHashTables(void) {
1057 int j;
1058
1059 for (j = 0; j < server.dbnum; j++) {
1060 if (htNeedsResize(server.db[j].dict)) {
1061 redisLog(REDIS_VERBOSE,"The hash table %d is too sparse, resize it...",j);
1062 dictResize(server.db[j].dict);
1063 redisLog(REDIS_VERBOSE,"Hash table %d resized.",j);
1064 }
1065 if (htNeedsResize(server.db[j].expires))
1066 dictResize(server.db[j].expires);
1067 }
1068 }
1069
1070 /* A background saving child (BGSAVE) terminated its work. Handle this. */
1071 void backgroundSaveDoneHandler(int statloc) {
1072 int exitcode = WEXITSTATUS(statloc);
1073 int bysignal = WIFSIGNALED(statloc);
1074
1075 if (!bysignal && exitcode == 0) {
1076 redisLog(REDIS_NOTICE,
1077 "Background saving terminated with success");
1078 server.dirty = 0;
1079 server.lastsave = time(NULL);
1080 } else if (!bysignal && exitcode != 0) {
1081 redisLog(REDIS_WARNING, "Background saving error");
1082 } else {
1083 redisLog(REDIS_WARNING,
1084 "Background saving terminated by signal");
1085 rdbRemoveTempFile(server.bgsavechildpid);
1086 }
1087 server.bgsavechildpid = -1;
1088 /* Possibly there are slaves waiting for a BGSAVE in order to be served
1089 * (the first stage of SYNC is a bulk transfer of dump.rdb) */
1090 updateSlavesWaitingBgsave(exitcode == 0 ? REDIS_OK : REDIS_ERR);
1091 }
1092
1093 /* A background append only file rewriting (BGREWRITEAOF) terminated its work.
1094 * Handle this. */
1095 void backgroundRewriteDoneHandler(int statloc) {
1096 int exitcode = WEXITSTATUS(statloc);
1097 int bysignal = WIFSIGNALED(statloc);
1098
1099 if (!bysignal && exitcode == 0) {
1100 int fd;
1101 char tmpfile[256];
1102
1103 redisLog(REDIS_NOTICE,
1104 "Background append only file rewriting terminated with success");
1105 /* Now it's time to flush the differences accumulated by the parent */
1106 snprintf(tmpfile,256,"temp-rewriteaof-bg-%d.aof", (int) server.bgrewritechildpid);
1107 fd = open(tmpfile,O_WRONLY|O_APPEND);
1108 if (fd == -1) {
1109 redisLog(REDIS_WARNING, "Not able to open the temp append only file produced by the child: %s", strerror(errno));
1110 goto cleanup;
1111 }
1112 /* Flush our data... */
1113 if (write(fd,server.bgrewritebuf,sdslen(server.bgrewritebuf)) !=
1114 (signed) sdslen(server.bgrewritebuf)) {
1115 redisLog(REDIS_WARNING, "Error or short write trying to flush the parent diff of the append log file in the child temp file: %s", strerror(errno));
1116 close(fd);
1117 goto cleanup;
1118 }
1119 redisLog(REDIS_NOTICE,"Parent diff flushed into the new append log file with success (%lu bytes)",sdslen(server.bgrewritebuf));
1120 /* Now our work is to rename the temp file into the stable file. And
1121 * switch the file descriptor used by the server for append only. */
1122 if (rename(tmpfile,server.appendfilename) == -1) {
1123 redisLog(REDIS_WARNING,"Can't rename the temp append only file into the stable one: %s", strerror(errno));
1124 close(fd);
1125 goto cleanup;
1126 }
1127 /* Mission completed... almost */
1128 redisLog(REDIS_NOTICE,"Append only file successfully rewritten.");
1129 if (server.appendfd != -1) {
1130 /* If append only is actually enabled... */
1131 close(server.appendfd);
1132 server.appendfd = fd;
1133 fsync(fd);
1134 server.appendseldb = -1; /* Make sure it will issue SELECT */
1135 redisLog(REDIS_NOTICE,"The new append only file was selected for future appends.");
1136 } else {
1137 /* If append only is disabled we just generate a dump in this
1138 * format. Why not? */
1139 close(fd);
1140 }
1141 } else if (!bysignal && exitcode != 0) {
1142 redisLog(REDIS_WARNING, "Background append only file rewriting error");
1143 } else {
1144 redisLog(REDIS_WARNING,
1145 "Background append only file rewriting terminated by signal");
1146 }
1147 cleanup:
1148 sdsfree(server.bgrewritebuf);
1149 server.bgrewritebuf = sdsempty();
1150 aofRemoveTempFile(server.bgrewritechildpid);
1151 server.bgrewritechildpid = -1;
1152 }
1153
1154 static int serverCron(struct aeEventLoop *eventLoop, long long id, void *clientData) {
1155 int j, loops = server.cronloops++;
1156 REDIS_NOTUSED(eventLoop);
1157 REDIS_NOTUSED(id);
1158 REDIS_NOTUSED(clientData);
1159
1160 /* We take a cached value of the unix time in the global state because
1161 * with virtual memory and aging there is to store the current time
1162 * in objects at every object access, and accuracy is not needed.
1163 * To access a global var is faster than calling time(NULL) */
1164 server.unixtime = time(NULL);
1165
1166 /* Update the global state with the amount of used memory */
1167 server.usedmemory = zmalloc_used_memory();
1168
1169 /* Show some info about non-empty databases */
1170 for (j = 0; j < server.dbnum; j++) {
1171 long long size, used, vkeys;
1172
1173 size = dictSlots(server.db[j].dict);
1174 used = dictSize(server.db[j].dict);
1175 vkeys = dictSize(server.db[j].expires);
1176 if (!(loops % 5) && (used || vkeys)) {
1177 redisLog(REDIS_VERBOSE,"DB %d: %lld keys (%lld volatile) in %lld slots HT.",j,used,vkeys,size);
1178 /* dictPrintStats(server.dict); */
1179 }
1180 }
1181
1182 /* We don't want to resize the hash tables while a bacground saving
1183 * is in progress: the saving child is created using fork() that is
1184 * implemented with a copy-on-write semantic in most modern systems, so
1185 * if we resize the HT while there is the saving child at work actually
1186 * a lot of memory movements in the parent will cause a lot of pages
1187 * copied. */
1188 if (server.bgsavechildpid == -1) tryResizeHashTables();
1189
1190 /* Show information about connected clients */
1191 if (!(loops % 5)) {
1192 redisLog(REDIS_VERBOSE,"%d clients connected (%d slaves), %zu bytes in use, %d shared objects",
1193 listLength(server.clients)-listLength(server.slaves),
1194 listLength(server.slaves),
1195 server.usedmemory,
1196 dictSize(server.sharingpool));
1197 }
1198
1199 /* Close connections of timedout clients */
1200 if ((server.maxidletime && !(loops % 10)) || server.blockedclients)
1201 closeTimedoutClients();
1202
1203 /* Check if a background saving or AOF rewrite in progress terminated */
1204 if (server.bgsavechildpid != -1 || server.bgrewritechildpid != -1) {
1205 int statloc;
1206 pid_t pid;
1207
1208 if ((pid = wait3(&statloc,WNOHANG,NULL)) != 0) {
1209 if (pid == server.bgsavechildpid) {
1210 backgroundSaveDoneHandler(statloc);
1211 } else {
1212 backgroundRewriteDoneHandler(statloc);
1213 }
1214 }
1215 } else {
1216 /* If there is not a background saving in progress check if
1217 * we have to save now */
1218 time_t now = time(NULL);
1219 for (j = 0; j < server.saveparamslen; j++) {
1220 struct saveparam *sp = server.saveparams+j;
1221
1222 if (server.dirty >= sp->changes &&
1223 now-server.lastsave > sp->seconds) {
1224 redisLog(REDIS_NOTICE,"%d changes in %d seconds. Saving...",
1225 sp->changes, sp->seconds);
1226 rdbSaveBackground(server.dbfilename);
1227 break;
1228 }
1229 }
1230 }
1231
1232 /* Try to expire a few timed out keys. The algorithm used is adaptive and
1233 * will use few CPU cycles if there are few expiring keys, otherwise
1234 * it will get more aggressive to avoid that too much memory is used by
1235 * keys that can be removed from the keyspace. */
1236 for (j = 0; j < server.dbnum; j++) {
1237 int expired;
1238 redisDb *db = server.db+j;
1239
1240 /* Continue to expire if at the end of the cycle more than 25%
1241 * of the keys were expired. */
1242 do {
1243 long num = dictSize(db->expires);
1244 time_t now = time(NULL);
1245
1246 expired = 0;
1247 if (num > REDIS_EXPIRELOOKUPS_PER_CRON)
1248 num = REDIS_EXPIRELOOKUPS_PER_CRON;
1249 while (num--) {
1250 dictEntry *de;
1251 time_t t;
1252
1253 if ((de = dictGetRandomKey(db->expires)) == NULL) break;
1254 t = (time_t) dictGetEntryVal(de);
1255 if (now > t) {
1256 deleteKey(db,dictGetEntryKey(de));
1257 expired++;
1258 }
1259 }
1260 } while (expired > REDIS_EXPIRELOOKUPS_PER_CRON/4);
1261 }
1262
1263 /* Swap a few keys on disk if we are over the memory limit and VM
1264 * is enbled. Try to free objects from the free list first. */
1265 if (vmCanSwapOut()) {
1266 while (server.vm_enabled && zmalloc_used_memory() >
1267 server.vm_max_memory)
1268 {
1269 int retval;
1270
1271 if (tryFreeOneObjectFromFreelist() == REDIS_OK) continue;
1272 retval = (server.vm_max_threads == 0) ?
1273 vmSwapOneObjectBlocking() :
1274 vmSwapOneObjectThreaded();
1275 if (retval == REDIS_ERR && (loops % 30) == 0 &&
1276 zmalloc_used_memory() >
1277 (server.vm_max_memory+server.vm_max_memory/10))
1278 {
1279 redisLog(REDIS_WARNING,"WARNING: vm-max-memory limit exceeded by more than 10%% but unable to swap more objects out!");
1280 }
1281 /* Note that when using threade I/O we free just one object,
1282 * because anyway when the I/O thread in charge to swap this
1283 * object out will finish, the handler of completed jobs
1284 * will try to swap more objects if we are still out of memory. */
1285 if (retval == REDIS_ERR || server.vm_max_threads > 0) break;
1286 }
1287 }
1288
1289 /* Check if we should connect to a MASTER */
1290 if (server.replstate == REDIS_REPL_CONNECT) {
1291 redisLog(REDIS_NOTICE,"Connecting to MASTER...");
1292 if (syncWithMaster() == REDIS_OK) {
1293 redisLog(REDIS_NOTICE,"MASTER <-> SLAVE sync succeeded");
1294 }
1295 }
1296 return 1000;
1297 }
1298
1299 static void createSharedObjects(void) {
1300 shared.crlf = createObject(REDIS_STRING,sdsnew("\r\n"));
1301 shared.ok = createObject(REDIS_STRING,sdsnew("+OK\r\n"));
1302 shared.err = createObject(REDIS_STRING,sdsnew("-ERR\r\n"));
1303 shared.emptybulk = createObject(REDIS_STRING,sdsnew("$0\r\n\r\n"));
1304 shared.czero = createObject(REDIS_STRING,sdsnew(":0\r\n"));
1305 shared.cone = createObject(REDIS_STRING,sdsnew(":1\r\n"));
1306 shared.nullbulk = createObject(REDIS_STRING,sdsnew("$-1\r\n"));
1307 shared.nullmultibulk = createObject(REDIS_STRING,sdsnew("*-1\r\n"));
1308 shared.emptymultibulk = createObject(REDIS_STRING,sdsnew("*0\r\n"));
1309 shared.pong = createObject(REDIS_STRING,sdsnew("+PONG\r\n"));
1310 shared.queued = createObject(REDIS_STRING,sdsnew("+QUEUED\r\n"));
1311 shared.wrongtypeerr = createObject(REDIS_STRING,sdsnew(
1312 "-ERR Operation against a key holding the wrong kind of value\r\n"));
1313 shared.nokeyerr = createObject(REDIS_STRING,sdsnew(
1314 "-ERR no such key\r\n"));
1315 shared.syntaxerr = createObject(REDIS_STRING,sdsnew(
1316 "-ERR syntax error\r\n"));
1317 shared.sameobjecterr = createObject(REDIS_STRING,sdsnew(
1318 "-ERR source and destination objects are the same\r\n"));
1319 shared.outofrangeerr = createObject(REDIS_STRING,sdsnew(
1320 "-ERR index out of range\r\n"));
1321 shared.space = createObject(REDIS_STRING,sdsnew(" "));
1322 shared.colon = createObject(REDIS_STRING,sdsnew(":"));
1323 shared.plus = createObject(REDIS_STRING,sdsnew("+"));
1324 shared.select0 = createStringObject("select 0\r\n",10);
1325 shared.select1 = createStringObject("select 1\r\n",10);
1326 shared.select2 = createStringObject("select 2\r\n",10);
1327 shared.select3 = createStringObject("select 3\r\n",10);
1328 shared.select4 = createStringObject("select 4\r\n",10);
1329 shared.select5 = createStringObject("select 5\r\n",10);
1330 shared.select6 = createStringObject("select 6\r\n",10);
1331 shared.select7 = createStringObject("select 7\r\n",10);
1332 shared.select8 = createStringObject("select 8\r\n",10);
1333 shared.select9 = createStringObject("select 9\r\n",10);
1334 }
1335
1336 static void appendServerSaveParams(time_t seconds, int changes) {
1337 server.saveparams = zrealloc(server.saveparams,sizeof(struct saveparam)*(server.saveparamslen+1));
1338 server.saveparams[server.saveparamslen].seconds = seconds;
1339 server.saveparams[server.saveparamslen].changes = changes;
1340 server.saveparamslen++;
1341 }
1342
1343 static void resetServerSaveParams() {
1344 zfree(server.saveparams);
1345 server.saveparams = NULL;
1346 server.saveparamslen = 0;
1347 }
1348
1349 static void initServerConfig() {
1350 server.dbnum = REDIS_DEFAULT_DBNUM;
1351 server.port = REDIS_SERVERPORT;
1352 server.verbosity = REDIS_VERBOSE;
1353 server.maxidletime = REDIS_MAXIDLETIME;
1354 server.saveparams = NULL;
1355 server.logfile = NULL; /* NULL = log on standard output */
1356 server.bindaddr = NULL;
1357 server.glueoutputbuf = 1;
1358 server.daemonize = 0;
1359 server.appendonly = 0;
1360 server.appendfsync = APPENDFSYNC_ALWAYS;
1361 server.lastfsync = time(NULL);
1362 server.appendfd = -1;
1363 server.appendseldb = -1; /* Make sure the first time will not match */
1364 server.pidfile = "/var/run/redis.pid";
1365 server.dbfilename = "dump.rdb";
1366 server.appendfilename = "appendonly.aof";
1367 server.requirepass = NULL;
1368 server.shareobjects = 0;
1369 server.rdbcompression = 1;
1370 server.sharingpoolsize = 1024;
1371 server.maxclients = 0;
1372 server.blockedclients = 0;
1373 server.maxmemory = 0;
1374 server.vm_enabled = 0;
1375 server.vm_page_size = 256; /* 256 bytes per page */
1376 server.vm_pages = 1024*1024*100; /* 104 millions of pages */
1377 server.vm_max_memory = 1024LL*1024*1024*1; /* 1 GB of RAM */
1378 server.vm_max_threads = 4;
1379
1380 resetServerSaveParams();
1381
1382 appendServerSaveParams(60*60,1); /* save after 1 hour and 1 change */
1383 appendServerSaveParams(300,100); /* save after 5 minutes and 100 changes */
1384 appendServerSaveParams(60,10000); /* save after 1 minute and 10000 changes */
1385 /* Replication related */
1386 server.isslave = 0;
1387 server.masterauth = NULL;
1388 server.masterhost = NULL;
1389 server.masterport = 6379;
1390 server.master = NULL;
1391 server.replstate = REDIS_REPL_NONE;
1392
1393 /* Double constants initialization */
1394 R_Zero = 0.0;
1395 R_PosInf = 1.0/R_Zero;
1396 R_NegInf = -1.0/R_Zero;
1397 R_Nan = R_Zero/R_Zero;
1398 }
1399
1400 static void initServer() {
1401 int j;
1402
1403 signal(SIGHUP, SIG_IGN);
1404 signal(SIGPIPE, SIG_IGN);
1405 setupSigSegvAction();
1406
1407 server.devnull = fopen("/dev/null","w");
1408 if (server.devnull == NULL) {
1409 redisLog(REDIS_WARNING, "Can't open /dev/null: %s", server.neterr);
1410 exit(1);
1411 }
1412 server.clients = listCreate();
1413 server.slaves = listCreate();
1414 server.monitors = listCreate();
1415 server.objfreelist = listCreate();
1416 createSharedObjects();
1417 server.el = aeCreateEventLoop();
1418 server.db = zmalloc(sizeof(redisDb)*server.dbnum);
1419 server.sharingpool = dictCreate(&setDictType,NULL);
1420 server.fd = anetTcpServer(server.neterr, server.port, server.bindaddr);
1421 if (server.fd == -1) {
1422 redisLog(REDIS_WARNING, "Opening TCP port: %s", server.neterr);
1423 exit(1);
1424 }
1425 for (j = 0; j < server.dbnum; j++) {
1426 server.db[j].dict = dictCreate(&hashDictType,NULL);
1427 server.db[j].expires = dictCreate(&keyptrDictType,NULL);
1428 server.db[j].blockingkeys = dictCreate(&keylistDictType,NULL);
1429 server.db[j].id = j;
1430 }
1431 server.cronloops = 0;
1432 server.bgsavechildpid = -1;
1433 server.bgrewritechildpid = -1;
1434 server.bgrewritebuf = sdsempty();
1435 server.lastsave = time(NULL);
1436 server.dirty = 0;
1437 server.usedmemory = 0;
1438 server.stat_numcommands = 0;
1439 server.stat_numconnections = 0;
1440 server.stat_starttime = time(NULL);
1441 server.unixtime = time(NULL);
1442 aeCreateTimeEvent(server.el, 1, serverCron, NULL, NULL);
1443 if (aeCreateFileEvent(server.el, server.fd, AE_READABLE,
1444 acceptHandler, NULL) == AE_ERR) oom("creating file event");
1445
1446 if (server.appendonly) {
1447 server.appendfd = open(server.appendfilename,O_WRONLY|O_APPEND|O_CREAT,0644);
1448 if (server.appendfd == -1) {
1449 redisLog(REDIS_WARNING, "Can't open the append-only file: %s",
1450 strerror(errno));
1451 exit(1);
1452 }
1453 }
1454
1455 if (server.vm_enabled) vmInit();
1456 }
1457
1458 /* Empty the whole database */
1459 static long long emptyDb() {
1460 int j;
1461 long long removed = 0;
1462
1463 for (j = 0; j < server.dbnum; j++) {
1464 removed += dictSize(server.db[j].dict);
1465 dictEmpty(server.db[j].dict);
1466 dictEmpty(server.db[j].expires);
1467 }
1468 return removed;
1469 }
1470
1471 static int yesnotoi(char *s) {
1472 if (!strcasecmp(s,"yes")) return 1;
1473 else if (!strcasecmp(s,"no")) return 0;
1474 else return -1;
1475 }
1476
1477 /* I agree, this is a very rudimental way to load a configuration...
1478 will improve later if the config gets more complex */
1479 static void loadServerConfig(char *filename) {
1480 FILE *fp;
1481 char buf[REDIS_CONFIGLINE_MAX+1], *err = NULL;
1482 int linenum = 0;
1483 sds line = NULL;
1484
1485 if (filename[0] == '-' && filename[1] == '\0')
1486 fp = stdin;
1487 else {
1488 if ((fp = fopen(filename,"r")) == NULL) {
1489 redisLog(REDIS_WARNING,"Fatal error, can't open config file");
1490 exit(1);
1491 }
1492 }
1493
1494 while(fgets(buf,REDIS_CONFIGLINE_MAX+1,fp) != NULL) {
1495 sds *argv;
1496 int argc, j;
1497
1498 linenum++;
1499 line = sdsnew(buf);
1500 line = sdstrim(line," \t\r\n");
1501
1502 /* Skip comments and blank lines*/
1503 if (line[0] == '#' || line[0] == '\0') {
1504 sdsfree(line);
1505 continue;
1506 }
1507
1508 /* Split into arguments */
1509 argv = sdssplitlen(line,sdslen(line)," ",1,&argc);
1510 sdstolower(argv[0]);
1511
1512 /* Execute config directives */
1513 if (!strcasecmp(argv[0],"timeout") && argc == 2) {
1514 server.maxidletime = atoi(argv[1]);
1515 if (server.maxidletime < 0) {
1516 err = "Invalid timeout value"; goto loaderr;
1517 }
1518 } else if (!strcasecmp(argv[0],"port") && argc == 2) {
1519 server.port = atoi(argv[1]);
1520 if (server.port < 1 || server.port > 65535) {
1521 err = "Invalid port"; goto loaderr;
1522 }
1523 } else if (!strcasecmp(argv[0],"bind") && argc == 2) {
1524 server.bindaddr = zstrdup(argv[1]);
1525 } else if (!strcasecmp(argv[0],"save") && argc == 3) {
1526 int seconds = atoi(argv[1]);
1527 int changes = atoi(argv[2]);
1528 if (seconds < 1 || changes < 0) {
1529 err = "Invalid save parameters"; goto loaderr;
1530 }
1531 appendServerSaveParams(seconds,changes);
1532 } else if (!strcasecmp(argv[0],"dir") && argc == 2) {
1533 if (chdir(argv[1]) == -1) {
1534 redisLog(REDIS_WARNING,"Can't chdir to '%s': %s",
1535 argv[1], strerror(errno));
1536 exit(1);
1537 }
1538 } else if (!strcasecmp(argv[0],"loglevel") && argc == 2) {
1539 if (!strcasecmp(argv[1],"debug")) server.verbosity = REDIS_DEBUG;
1540 else if (!strcasecmp(argv[1],"verbose")) server.verbosity = REDIS_VERBOSE;
1541 else if (!strcasecmp(argv[1],"notice")) server.verbosity = REDIS_NOTICE;
1542 else if (!strcasecmp(argv[1],"warning")) server.verbosity = REDIS_WARNING;
1543 else {
1544 err = "Invalid log level. Must be one of debug, notice, warning";
1545 goto loaderr;
1546 }
1547 } else if (!strcasecmp(argv[0],"logfile") && argc == 2) {
1548 FILE *logfp;
1549
1550 server.logfile = zstrdup(argv[1]);
1551 if (!strcasecmp(server.logfile,"stdout")) {
1552 zfree(server.logfile);
1553 server.logfile = NULL;
1554 }
1555 if (server.logfile) {
1556 /* Test if we are able to open the file. The server will not
1557 * be able to abort just for this problem later... */
1558 logfp = fopen(server.logfile,"a");
1559 if (logfp == NULL) {
1560 err = sdscatprintf(sdsempty(),
1561 "Can't open the log file: %s", strerror(errno));
1562 goto loaderr;
1563 }
1564 fclose(logfp);
1565 }
1566 } else if (!strcasecmp(argv[0],"databases") && argc == 2) {
1567 server.dbnum = atoi(argv[1]);
1568 if (server.dbnum < 1) {
1569 err = "Invalid number of databases"; goto loaderr;
1570 }
1571 } else if (!strcasecmp(argv[0],"maxclients") && argc == 2) {
1572 server.maxclients = atoi(argv[1]);
1573 } else if (!strcasecmp(argv[0],"maxmemory") && argc == 2) {
1574 server.maxmemory = strtoll(argv[1], NULL, 10);
1575 } else if (!strcasecmp(argv[0],"slaveof") && argc == 3) {
1576 server.masterhost = sdsnew(argv[1]);
1577 server.masterport = atoi(argv[2]);
1578 server.replstate = REDIS_REPL_CONNECT;
1579 } else if (!strcasecmp(argv[0],"masterauth") && argc == 2) {
1580 server.masterauth = zstrdup(argv[1]);
1581 } else if (!strcasecmp(argv[0],"glueoutputbuf") && argc == 2) {
1582 if ((server.glueoutputbuf = yesnotoi(argv[1])) == -1) {
1583 err = "argument must be 'yes' or 'no'"; goto loaderr;
1584 }
1585 } else if (!strcasecmp(argv[0],"shareobjects") && argc == 2) {
1586 if ((server.shareobjects = yesnotoi(argv[1])) == -1) {
1587 err = "argument must be 'yes' or 'no'"; goto loaderr;
1588 }
1589 } else if (!strcasecmp(argv[0],"rdbcompression") && argc == 2) {
1590 if ((server.rdbcompression = yesnotoi(argv[1])) == -1) {
1591 err = "argument must be 'yes' or 'no'"; goto loaderr;
1592 }
1593 } else if (!strcasecmp(argv[0],"shareobjectspoolsize") && argc == 2) {
1594 server.sharingpoolsize = atoi(argv[1]);
1595 if (server.sharingpoolsize < 1) {
1596 err = "invalid object sharing pool size"; goto loaderr;
1597 }
1598 } else if (!strcasecmp(argv[0],"daemonize") && argc == 2) {
1599 if ((server.daemonize = yesnotoi(argv[1])) == -1) {
1600 err = "argument must be 'yes' or 'no'"; goto loaderr;
1601 }
1602 } else if (!strcasecmp(argv[0],"appendonly") && argc == 2) {
1603 if ((server.appendonly = yesnotoi(argv[1])) == -1) {
1604 err = "argument must be 'yes' or 'no'"; goto loaderr;
1605 }
1606 } else if (!strcasecmp(argv[0],"appendfsync") && argc == 2) {
1607 if (!strcasecmp(argv[1],"no")) {
1608 server.appendfsync = APPENDFSYNC_NO;
1609 } else if (!strcasecmp(argv[1],"always")) {
1610 server.appendfsync = APPENDFSYNC_ALWAYS;
1611 } else if (!strcasecmp(argv[1],"everysec")) {
1612 server.appendfsync = APPENDFSYNC_EVERYSEC;
1613 } else {
1614 err = "argument must be 'no', 'always' or 'everysec'";
1615 goto loaderr;
1616 }
1617 } else if (!strcasecmp(argv[0],"requirepass") && argc == 2) {
1618 server.requirepass = zstrdup(argv[1]);
1619 } else if (!strcasecmp(argv[0],"pidfile") && argc == 2) {
1620 server.pidfile = zstrdup(argv[1]);
1621 } else if (!strcasecmp(argv[0],"dbfilename") && argc == 2) {
1622 server.dbfilename = zstrdup(argv[1]);
1623 } else if (!strcasecmp(argv[0],"vm-enabled") && argc == 2) {
1624 if ((server.vm_enabled = yesnotoi(argv[1])) == -1) {
1625 err = "argument must be 'yes' or 'no'"; goto loaderr;
1626 }
1627 } else if (!strcasecmp(argv[0],"vm-max-memory") && argc == 2) {
1628 server.vm_max_memory = strtoll(argv[1], NULL, 10);
1629 } else if (!strcasecmp(argv[0],"vm-page-size") && argc == 2) {
1630 server.vm_page_size = strtoll(argv[1], NULL, 10);
1631 } else if (!strcasecmp(argv[0],"vm-pages") && argc == 2) {
1632 server.vm_pages = strtoll(argv[1], NULL, 10);
1633 } else if (!strcasecmp(argv[0],"vm-max-threads") && argc == 2) {
1634 server.vm_max_threads = strtoll(argv[1], NULL, 10);
1635 } else {
1636 err = "Bad directive or wrong number of arguments"; goto loaderr;
1637 }
1638 for (j = 0; j < argc; j++)
1639 sdsfree(argv[j]);
1640 zfree(argv);
1641 sdsfree(line);
1642 }
1643 if (fp != stdin) fclose(fp);
1644 return;
1645
1646 loaderr:
1647 fprintf(stderr, "\n*** FATAL CONFIG FILE ERROR ***\n");
1648 fprintf(stderr, "Reading the configuration file, at line %d\n", linenum);
1649 fprintf(stderr, ">>> '%s'\n", line);
1650 fprintf(stderr, "%s\n", err);
1651 exit(1);
1652 }
1653
1654 static void freeClientArgv(redisClient *c) {
1655 int j;
1656
1657 for (j = 0; j < c->argc; j++)
1658 decrRefCount(c->argv[j]);
1659 for (j = 0; j < c->mbargc; j++)
1660 decrRefCount(c->mbargv[j]);
1661 c->argc = 0;
1662 c->mbargc = 0;
1663 }
1664
1665 static void freeClient(redisClient *c) {
1666 listNode *ln;
1667
1668 /* Note that if the client we are freeing is blocked into a blocking
1669 * call, we have to set querybuf to NULL *before* to call unblockClient()
1670 * to avoid processInputBuffer() will get called. Also it is important
1671 * to remove the file events after this, because this call adds
1672 * the READABLE event. */
1673 sdsfree(c->querybuf);
1674 c->querybuf = NULL;
1675 if (c->flags & REDIS_BLOCKED)
1676 unblockClient(c);
1677
1678 aeDeleteFileEvent(server.el,c->fd,AE_READABLE);
1679 aeDeleteFileEvent(server.el,c->fd,AE_WRITABLE);
1680 listRelease(c->reply);
1681 freeClientArgv(c);
1682 close(c->fd);
1683 /* Remove from the list of clients */
1684 ln = listSearchKey(server.clients,c);
1685 redisAssert(ln != NULL);
1686 listDelNode(server.clients,ln);
1687 /* Remove from the list of clients waiting for VM operations */
1688 if (server.vm_enabled && listLength(c->io_keys)) {
1689 ln = listSearchKey(server.io_clients,c);
1690 if (ln) listDelNode(server.io_clients,ln);
1691 listRelease(c->io_keys);
1692 }
1693 listRelease(c->io_keys);
1694 /* Other cleanup */
1695 if (c->flags & REDIS_SLAVE) {
1696 if (c->replstate == REDIS_REPL_SEND_BULK && c->repldbfd != -1)
1697 close(c->repldbfd);
1698 list *l = (c->flags & REDIS_MONITOR) ? server.monitors : server.slaves;
1699 ln = listSearchKey(l,c);
1700 redisAssert(ln != NULL);
1701 listDelNode(l,ln);
1702 }
1703 if (c->flags & REDIS_MASTER) {
1704 server.master = NULL;
1705 server.replstate = REDIS_REPL_CONNECT;
1706 }
1707 zfree(c->argv);
1708 zfree(c->mbargv);
1709 freeClientMultiState(c);
1710 zfree(c);
1711 }
1712
1713 #define GLUEREPLY_UP_TO (1024)
1714 static void glueReplyBuffersIfNeeded(redisClient *c) {
1715 int copylen = 0;
1716 char buf[GLUEREPLY_UP_TO];
1717 listNode *ln;
1718 listIter li;
1719 robj *o;
1720
1721 listRewind(c->reply,&li);
1722 while((ln = listNext(&li))) {
1723 int objlen;
1724
1725 o = ln->value;
1726 objlen = sdslen(o->ptr);
1727 if (copylen + objlen <= GLUEREPLY_UP_TO) {
1728 memcpy(buf+copylen,o->ptr,objlen);
1729 copylen += objlen;
1730 listDelNode(c->reply,ln);
1731 } else {
1732 if (copylen == 0) return;
1733 break;
1734 }
1735 }
1736 /* Now the output buffer is empty, add the new single element */
1737 o = createObject(REDIS_STRING,sdsnewlen(buf,copylen));
1738 listAddNodeHead(c->reply,o);
1739 }
1740
1741 static void sendReplyToClient(aeEventLoop *el, int fd, void *privdata, int mask) {
1742 redisClient *c = privdata;
1743 int nwritten = 0, totwritten = 0, objlen;
1744 robj *o;
1745 REDIS_NOTUSED(el);
1746 REDIS_NOTUSED(mask);
1747
1748 /* Use writev() if we have enough buffers to send */
1749 if (!server.glueoutputbuf &&
1750 listLength(c->reply) > REDIS_WRITEV_THRESHOLD &&
1751 !(c->flags & REDIS_MASTER))
1752 {
1753 sendReplyToClientWritev(el, fd, privdata, mask);
1754 return;
1755 }
1756
1757 while(listLength(c->reply)) {
1758 if (server.glueoutputbuf && listLength(c->reply) > 1)
1759 glueReplyBuffersIfNeeded(c);
1760
1761 o = listNodeValue(listFirst(c->reply));
1762 objlen = sdslen(o->ptr);
1763
1764 if (objlen == 0) {
1765 listDelNode(c->reply,listFirst(c->reply));
1766 continue;
1767 }
1768
1769 if (c->flags & REDIS_MASTER) {
1770 /* Don't reply to a master */
1771 nwritten = objlen - c->sentlen;
1772 } else {
1773 nwritten = write(fd, ((char*)o->ptr)+c->sentlen, objlen - c->sentlen);
1774 if (nwritten <= 0) break;
1775 }
1776 c->sentlen += nwritten;
1777 totwritten += nwritten;
1778 /* If we fully sent the object on head go to the next one */
1779 if (c->sentlen == objlen) {
1780 listDelNode(c->reply,listFirst(c->reply));
1781 c->sentlen = 0;
1782 }
1783 /* Note that we avoid to send more thank REDIS_MAX_WRITE_PER_EVENT
1784 * bytes, in a single threaded server it's a good idea to serve
1785 * other clients as well, even if a very large request comes from
1786 * super fast link that is always able to accept data (in real world
1787 * scenario think about 'KEYS *' against the loopback interfae) */
1788 if (totwritten > REDIS_MAX_WRITE_PER_EVENT) break;
1789 }
1790 if (nwritten == -1) {
1791 if (errno == EAGAIN) {
1792 nwritten = 0;
1793 } else {
1794 redisLog(REDIS_VERBOSE,
1795 "Error writing to client: %s", strerror(errno));
1796 freeClient(c);
1797 return;
1798 }
1799 }
1800 if (totwritten > 0) c->lastinteraction = time(NULL);
1801 if (listLength(c->reply) == 0) {
1802 c->sentlen = 0;
1803 aeDeleteFileEvent(server.el,c->fd,AE_WRITABLE);
1804 }
1805 }
1806
1807 static void sendReplyToClientWritev(aeEventLoop *el, int fd, void *privdata, int mask)
1808 {
1809 redisClient *c = privdata;
1810 int nwritten = 0, totwritten = 0, objlen, willwrite;
1811 robj *o;
1812 struct iovec iov[REDIS_WRITEV_IOVEC_COUNT];
1813 int offset, ion = 0;
1814 REDIS_NOTUSED(el);
1815 REDIS_NOTUSED(mask);
1816
1817 listNode *node;
1818 while (listLength(c->reply)) {
1819 offset = c->sentlen;
1820 ion = 0;
1821 willwrite = 0;
1822
1823 /* fill-in the iov[] array */
1824 for(node = listFirst(c->reply); node; node = listNextNode(node)) {
1825 o = listNodeValue(node);
1826 objlen = sdslen(o->ptr);
1827
1828 if (totwritten + objlen - offset > REDIS_MAX_WRITE_PER_EVENT)
1829 break;
1830
1831 if(ion == REDIS_WRITEV_IOVEC_COUNT)
1832 break; /* no more iovecs */
1833
1834 iov[ion].iov_base = ((char*)o->ptr) + offset;
1835 iov[ion].iov_len = objlen - offset;
1836 willwrite += objlen - offset;
1837 offset = 0; /* just for the first item */
1838 ion++;
1839 }
1840
1841 if(willwrite == 0)
1842 break;
1843
1844 /* write all collected blocks at once */
1845 if((nwritten = writev(fd, iov, ion)) < 0) {
1846 if (errno != EAGAIN) {
1847 redisLog(REDIS_VERBOSE,
1848 "Error writing to client: %s", strerror(errno));
1849 freeClient(c);
1850 return;
1851 }
1852 break;
1853 }
1854
1855 totwritten += nwritten;
1856 offset = c->sentlen;
1857
1858 /* remove written robjs from c->reply */
1859 while (nwritten && listLength(c->reply)) {
1860 o = listNodeValue(listFirst(c->reply));
1861 objlen = sdslen(o->ptr);
1862
1863 if(nwritten >= objlen - offset) {
1864 listDelNode(c->reply, listFirst(c->reply));
1865 nwritten -= objlen - offset;
1866 c->sentlen = 0;
1867 } else {
1868 /* partial write */
1869 c->sentlen += nwritten;
1870 break;
1871 }
1872 offset = 0;
1873 }
1874 }
1875
1876 if (totwritten > 0)
1877 c->lastinteraction = time(NULL);
1878
1879 if (listLength(c->reply) == 0) {
1880 c->sentlen = 0;
1881 aeDeleteFileEvent(server.el,c->fd,AE_WRITABLE);
1882 }
1883 }
1884
1885 static struct redisCommand *lookupCommand(char *name) {
1886 int j = 0;
1887 while(cmdTable[j].name != NULL) {
1888 if (!strcasecmp(name,cmdTable[j].name)) return &cmdTable[j];
1889 j++;
1890 }
1891 return NULL;
1892 }
1893
1894 /* resetClient prepare the client to process the next command */
1895 static void resetClient(redisClient *c) {
1896 freeClientArgv(c);
1897 c->bulklen = -1;
1898 c->multibulk = 0;
1899 }
1900
1901 /* Call() is the core of Redis execution of a command */
1902 static void call(redisClient *c, struct redisCommand *cmd) {
1903 long long dirty;
1904
1905 dirty = server.dirty;
1906 cmd->proc(c);
1907 if (server.appendonly && server.dirty-dirty)
1908 feedAppendOnlyFile(cmd,c->db->id,c->argv,c->argc);
1909 if (server.dirty-dirty && listLength(server.slaves))
1910 replicationFeedSlaves(server.slaves,cmd,c->db->id,c->argv,c->argc);
1911 if (listLength(server.monitors))
1912 replicationFeedSlaves(server.monitors,cmd,c->db->id,c->argv,c->argc);
1913 server.stat_numcommands++;
1914 }
1915
1916 /* If this function gets called we already read a whole
1917 * command, argments are in the client argv/argc fields.
1918 * processCommand() execute the command or prepare the
1919 * server for a bulk read from the client.
1920 *
1921 * If 1 is returned the client is still alive and valid and
1922 * and other operations can be performed by the caller. Otherwise
1923 * if 0 is returned the client was destroied (i.e. after QUIT). */
1924 static int processCommand(redisClient *c) {
1925 struct redisCommand *cmd;
1926
1927 /* Free some memory if needed (maxmemory setting) */
1928 if (server.maxmemory) freeMemoryIfNeeded();
1929
1930 /* Handle the multi bulk command type. This is an alternative protocol
1931 * supported by Redis in order to receive commands that are composed of
1932 * multiple binary-safe "bulk" arguments. The latency of processing is
1933 * a bit higher but this allows things like multi-sets, so if this
1934 * protocol is used only for MSET and similar commands this is a big win. */
1935 if (c->multibulk == 0 && c->argc == 1 && ((char*)(c->argv[0]->ptr))[0] == '*') {
1936 c->multibulk = atoi(((char*)c->argv[0]->ptr)+1);
1937 if (c->multibulk <= 0) {
1938 resetClient(c);
1939 return 1;
1940 } else {
1941 decrRefCount(c->argv[c->argc-1]);
1942 c->argc--;
1943 return 1;
1944 }
1945 } else if (c->multibulk) {
1946 if (c->bulklen == -1) {
1947 if (((char*)c->argv[0]->ptr)[0] != '$') {
1948 addReplySds(c,sdsnew("-ERR multi bulk protocol error\r\n"));
1949 resetClient(c);
1950 return 1;
1951 } else {
1952 int bulklen = atoi(((char*)c->argv[0]->ptr)+1);
1953 decrRefCount(c->argv[0]);
1954 if (bulklen < 0 || bulklen > 1024*1024*1024) {
1955 c->argc--;
1956 addReplySds(c,sdsnew("-ERR invalid bulk write count\r\n"));
1957 resetClient(c);
1958 return 1;
1959 }
1960 c->argc--;
1961 c->bulklen = bulklen+2; /* add two bytes for CR+LF */
1962 return 1;
1963 }
1964 } else {
1965 c->mbargv = zrealloc(c->mbargv,(sizeof(robj*))*(c->mbargc+1));
1966 c->mbargv[c->mbargc] = c->argv[0];
1967 c->mbargc++;
1968 c->argc--;
1969 c->multibulk--;
1970 if (c->multibulk == 0) {
1971 robj **auxargv;
1972 int auxargc;
1973
1974 /* Here we need to swap the multi-bulk argc/argv with the
1975 * normal argc/argv of the client structure. */
1976 auxargv = c->argv;
1977 c->argv = c->mbargv;
1978 c->mbargv = auxargv;
1979
1980 auxargc = c->argc;
1981 c->argc = c->mbargc;
1982 c->mbargc = auxargc;
1983
1984 /* We need to set bulklen to something different than -1
1985 * in order for the code below to process the command without
1986 * to try to read the last argument of a bulk command as
1987 * a special argument. */
1988 c->bulklen = 0;
1989 /* continue below and process the command */
1990 } else {
1991 c->bulklen = -1;
1992 return 1;
1993 }
1994 }
1995 }
1996 /* -- end of multi bulk commands processing -- */
1997
1998 /* The QUIT command is handled as a special case. Normal command
1999 * procs are unable to close the client connection safely */
2000 if (!strcasecmp(c->argv[0]->ptr,"quit")) {
2001 freeClient(c);
2002 return 0;
2003 }
2004 cmd = lookupCommand(c->argv[0]->ptr);
2005 if (!cmd) {
2006 addReplySds(c,
2007 sdscatprintf(sdsempty(), "-ERR unknown command '%s'\r\n",
2008 (char*)c->argv[0]->ptr));
2009 resetClient(c);
2010 return 1;
2011 } else if ((cmd->arity > 0 && cmd->arity != c->argc) ||
2012 (c->argc < -cmd->arity)) {
2013 addReplySds(c,
2014 sdscatprintf(sdsempty(),
2015 "-ERR wrong number of arguments for '%s' command\r\n",
2016 cmd->name));
2017 resetClient(c);
2018 return 1;
2019 } else if (server.maxmemory && cmd->flags & REDIS_CMD_DENYOOM && zmalloc_used_memory() > server.maxmemory) {
2020 addReplySds(c,sdsnew("-ERR command not allowed when used memory > 'maxmemory'\r\n"));
2021 resetClient(c);
2022 return 1;
2023 } else if (cmd->flags & REDIS_CMD_BULK && c->bulklen == -1) {
2024 int bulklen = atoi(c->argv[c->argc-1]->ptr);
2025
2026 decrRefCount(c->argv[c->argc-1]);
2027 if (bulklen < 0 || bulklen > 1024*1024*1024) {
2028 c->argc--;
2029 addReplySds(c,sdsnew("-ERR invalid bulk write count\r\n"));
2030 resetClient(c);
2031 return 1;
2032 }
2033 c->argc--;
2034 c->bulklen = bulklen+2; /* add two bytes for CR+LF */
2035 /* It is possible that the bulk read is already in the
2036 * buffer. Check this condition and handle it accordingly.
2037 * This is just a fast path, alternative to call processInputBuffer().
2038 * It's a good idea since the code is small and this condition
2039 * happens most of the times. */
2040 if ((signed)sdslen(c->querybuf) >= c->bulklen) {
2041 c->argv[c->argc] = createStringObject(c->querybuf,c->bulklen-2);
2042 c->argc++;
2043 c->querybuf = sdsrange(c->querybuf,c->bulklen,-1);
2044 } else {
2045 return 1;
2046 }
2047 }
2048 /* Let's try to share objects on the command arguments vector */
2049 if (server.shareobjects) {
2050 int j;
2051 for(j = 1; j < c->argc; j++)
2052 c->argv[j] = tryObjectSharing(c->argv[j]);
2053 }
2054 /* Let's try to encode the bulk object to save space. */
2055 if (cmd->flags & REDIS_CMD_BULK)
2056 tryObjectEncoding(c->argv[c->argc-1]);
2057
2058 /* Check if the user is authenticated */
2059 if (server.requirepass && !c->authenticated && cmd->proc != authCommand) {
2060 addReplySds(c,sdsnew("-ERR operation not permitted\r\n"));
2061 resetClient(c);
2062 return 1;
2063 }
2064
2065 /* Exec the command */
2066 if (c->flags & REDIS_MULTI && cmd->proc != execCommand) {
2067 queueMultiCommand(c,cmd);
2068 addReply(c,shared.queued);
2069 } else {
2070 call(c,cmd);
2071 }
2072
2073 /* Prepare the client for the next command */
2074 if (c->flags & REDIS_CLOSE) {
2075 freeClient(c);
2076 return 0;
2077 }
2078 resetClient(c);
2079 return 1;
2080 }
2081
2082 static void replicationFeedSlaves(list *slaves, struct redisCommand *cmd, int dictid, robj **argv, int argc) {
2083 listNode *ln;
2084 listIter li;
2085 int outc = 0, j;
2086 robj **outv;
2087 /* (args*2)+1 is enough room for args, spaces, newlines */
2088 robj *static_outv[REDIS_STATIC_ARGS*2+1];
2089
2090 if (argc <= REDIS_STATIC_ARGS) {
2091 outv = static_outv;
2092 } else {
2093 outv = zmalloc(sizeof(robj*)*(argc*2+1));
2094 }
2095
2096 for (j = 0; j < argc; j++) {
2097 if (j != 0) outv[outc++] = shared.space;
2098 if ((cmd->flags & REDIS_CMD_BULK) && j == argc-1) {
2099 robj *lenobj;
2100
2101 lenobj = createObject(REDIS_STRING,
2102 sdscatprintf(sdsempty(),"%lu\r\n",
2103 (unsigned long) stringObjectLen(argv[j])));
2104 lenobj->refcount = 0;
2105 outv[outc++] = lenobj;
2106 }
2107 outv[outc++] = argv[j];
2108 }
2109 outv[outc++] = shared.crlf;
2110
2111 /* Increment all the refcounts at start and decrement at end in order to
2112 * be sure to free objects if there is no slave in a replication state
2113 * able to be feed with commands */
2114 for (j = 0; j < outc; j++) incrRefCount(outv[j]);
2115 listRewind(slaves,&li);
2116 while((ln = listNext(&li))) {
2117 redisClient *slave = ln->value;
2118
2119 /* Don't feed slaves that are still waiting for BGSAVE to start */
2120 if (slave->replstate == REDIS_REPL_WAIT_BGSAVE_START) continue;
2121
2122 /* Feed all the other slaves, MONITORs and so on */
2123 if (slave->slaveseldb != dictid) {
2124 robj *selectcmd;
2125
2126 switch(dictid) {
2127 case 0: selectcmd = shared.select0; break;
2128 case 1: selectcmd = shared.select1; break;
2129 case 2: selectcmd = shared.select2; break;
2130 case 3: selectcmd = shared.select3; break;
2131 case 4: selectcmd = shared.select4; break;
2132 case 5: selectcmd = shared.select5; break;
2133 case 6: selectcmd = shared.select6; break;
2134 case 7: selectcmd = shared.select7; break;
2135 case 8: selectcmd = shared.select8; break;
2136 case 9: selectcmd = shared.select9; break;
2137 default:
2138 selectcmd = createObject(REDIS_STRING,
2139 sdscatprintf(sdsempty(),"select %d\r\n",dictid));
2140 selectcmd->refcount = 0;
2141 break;
2142 }
2143 addReply(slave,selectcmd);
2144 slave->slaveseldb = dictid;
2145 }
2146 for (j = 0; j < outc; j++) addReply(slave,outv[j]);
2147 }
2148 for (j = 0; j < outc; j++) decrRefCount(outv[j]);
2149 if (outv != static_outv) zfree(outv);
2150 }
2151
2152 static void processInputBuffer(redisClient *c) {
2153 again:
2154 /* Before to process the input buffer, make sure the client is not
2155 * waitig for a blocking operation such as BLPOP. Note that the first
2156 * iteration the client is never blocked, otherwise the processInputBuffer
2157 * would not be called at all, but after the execution of the first commands
2158 * in the input buffer the client may be blocked, and the "goto again"
2159 * will try to reiterate. The following line will make it return asap. */
2160 if (c->flags & REDIS_BLOCKED || c->flags & REDIS_IO_WAIT) return;
2161 if (c->bulklen == -1) {
2162 /* Read the first line of the query */
2163 char *p = strchr(c->querybuf,'\n');
2164 size_t querylen;
2165
2166 if (p) {
2167 sds query, *argv;
2168 int argc, j;
2169
2170 query = c->querybuf;
2171 c->querybuf = sdsempty();
2172 querylen = 1+(p-(query));
2173 if (sdslen(query) > querylen) {
2174 /* leave data after the first line of the query in the buffer */
2175 c->querybuf = sdscatlen(c->querybuf,query+querylen,sdslen(query)-querylen);
2176 }
2177 *p = '\0'; /* remove "\n" */
2178 if (*(p-1) == '\r') *(p-1) = '\0'; /* and "\r" if any */
2179 sdsupdatelen(query);
2180
2181 /* Now we can split the query in arguments */
2182 argv = sdssplitlen(query,sdslen(query)," ",1,&argc);
2183 sdsfree(query);
2184
2185 if (c->argv) zfree(c->argv);
2186 c->argv = zmalloc(sizeof(robj*)*argc);
2187
2188 for (j = 0; j < argc; j++) {
2189 if (sdslen(argv[j])) {
2190 c->argv[c->argc] = createObject(REDIS_STRING,argv[j]);
2191 c->argc++;
2192 } else {
2193 sdsfree(argv[j]);
2194 }
2195 }
2196 zfree(argv);
2197 if (c->argc) {
2198 /* Execute the command. If the client is still valid
2199 * after processCommand() return and there is something
2200 * on the query buffer try to process the next command. */
2201 if (processCommand(c) && sdslen(c->querybuf)) goto again;
2202 } else {
2203 /* Nothing to process, argc == 0. Just process the query
2204 * buffer if it's not empty or return to the caller */
2205 if (sdslen(c->querybuf)) goto again;
2206 }
2207 return;
2208 } else if (sdslen(c->querybuf) >= REDIS_REQUEST_MAX_SIZE) {
2209 redisLog(REDIS_VERBOSE, "Client protocol error");
2210 freeClient(c);
2211 return;
2212 }
2213 } else {
2214 /* Bulk read handling. Note that if we are at this point
2215 the client already sent a command terminated with a newline,
2216 we are reading the bulk data that is actually the last
2217 argument of the command. */
2218 int qbl = sdslen(c->querybuf);
2219
2220 if (c->bulklen <= qbl) {
2221 /* Copy everything but the final CRLF as final argument */
2222 c->argv[c->argc] = createStringObject(c->querybuf,c->bulklen-2);
2223 c->argc++;
2224 c->querybuf = sdsrange(c->querybuf,c->bulklen,-1);
2225 /* Process the command. If the client is still valid after
2226 * the processing and there is more data in the buffer
2227 * try to parse it. */
2228 if (processCommand(c) && sdslen(c->querybuf)) goto again;
2229 return;
2230 }
2231 }
2232 }
2233
2234 static void readQueryFromClient(aeEventLoop *el, int fd, void *privdata, int mask) {
2235 redisClient *c = (redisClient*) privdata;
2236 char buf[REDIS_IOBUF_LEN];
2237 int nread;
2238 REDIS_NOTUSED(el);
2239 REDIS_NOTUSED(mask);
2240
2241 nread = read(fd, buf, REDIS_IOBUF_LEN);
2242 if (nread == -1) {
2243 if (errno == EAGAIN) {
2244 nread = 0;
2245 } else {
2246 redisLog(REDIS_VERBOSE, "Reading from client: %s",strerror(errno));
2247 freeClient(c);
2248 return;
2249 }
2250 } else if (nread == 0) {
2251 redisLog(REDIS_VERBOSE, "Client closed connection");
2252 freeClient(c);
2253 return;
2254 }
2255 if (nread) {
2256 c->querybuf = sdscatlen(c->querybuf, buf, nread);
2257 c->lastinteraction = time(NULL);
2258 } else {
2259 return;
2260 }
2261 processInputBuffer(c);
2262 }
2263
2264 static int selectDb(redisClient *c, int id) {
2265 if (id < 0 || id >= server.dbnum)
2266 return REDIS_ERR;
2267 c->db = &server.db[id];
2268 return REDIS_OK;
2269 }
2270
2271 static void *dupClientReplyValue(void *o) {
2272 incrRefCount((robj*)o);
2273 return 0;
2274 }
2275
2276 static redisClient *createClient(int fd) {
2277 redisClient *c = zmalloc(sizeof(*c));
2278
2279 anetNonBlock(NULL,fd);
2280 anetTcpNoDelay(NULL,fd);
2281 if (!c) return NULL;
2282 selectDb(c,0);
2283 c->fd = fd;
2284 c->querybuf = sdsempty();
2285 c->argc = 0;
2286 c->argv = NULL;
2287 c->bulklen = -1;
2288 c->multibulk = 0;
2289 c->mbargc = 0;
2290 c->mbargv = NULL;
2291 c->sentlen = 0;
2292 c->flags = 0;
2293 c->lastinteraction = time(NULL);
2294 c->authenticated = 0;
2295 c->replstate = REDIS_REPL_NONE;
2296 c->reply = listCreate();
2297 listSetFreeMethod(c->reply,decrRefCount);
2298 listSetDupMethod(c->reply,dupClientReplyValue);
2299 c->blockingkeys = NULL;
2300 c->blockingkeysnum = 0;
2301 c->io_keys = listCreate();
2302 listSetFreeMethod(c->io_keys,decrRefCount);
2303 if (aeCreateFileEvent(server.el, c->fd, AE_READABLE,
2304 readQueryFromClient, c) == AE_ERR) {
2305 freeClient(c);
2306 return NULL;
2307 }
2308 listAddNodeTail(server.clients,c);
2309 initClientMultiState(c);
2310 return c;
2311 }
2312
2313 static void addReply(redisClient *c, robj *obj) {
2314 if (listLength(c->reply) == 0 &&
2315 (c->replstate == REDIS_REPL_NONE ||
2316 c->replstate == REDIS_REPL_ONLINE) &&
2317 aeCreateFileEvent(server.el, c->fd, AE_WRITABLE,
2318 sendReplyToClient, c) == AE_ERR) return;
2319
2320 if (server.vm_enabled && obj->storage != REDIS_VM_MEMORY) {
2321 obj = dupStringObject(obj);
2322 obj->refcount = 0; /* getDecodedObject() will increment the refcount */
2323 }
2324 listAddNodeTail(c->reply,getDecodedObject(obj));
2325 }
2326
2327 static void addReplySds(redisClient *c, sds s) {
2328 robj *o = createObject(REDIS_STRING,s);
2329 addReply(c,o);
2330 decrRefCount(o);
2331 }
2332
2333 static void addReplyDouble(redisClient *c, double d) {
2334 char buf[128];
2335
2336 snprintf(buf,sizeof(buf),"%.17g",d);
2337 addReplySds(c,sdscatprintf(sdsempty(),"$%lu\r\n%s\r\n",
2338 (unsigned long) strlen(buf),buf));
2339 }
2340
2341 static void addReplyBulkLen(redisClient *c, robj *obj) {
2342 size_t len;
2343
2344 if (obj->encoding == REDIS_ENCODING_RAW) {
2345 len = sdslen(obj->ptr);
2346 } else {
2347 long n = (long)obj->ptr;
2348
2349 /* Compute how many bytes will take this integer as a radix 10 string */
2350 len = 1;
2351 if (n < 0) {
2352 len++;
2353 n = -n;
2354 }
2355 while((n = n/10) != 0) {
2356 len++;
2357 }
2358 }
2359 addReplySds(c,sdscatprintf(sdsempty(),"$%lu\r\n",(unsigned long)len));
2360 }
2361
2362 static void acceptHandler(aeEventLoop *el, int fd, void *privdata, int mask) {
2363 int cport, cfd;
2364 char cip[128];
2365 redisClient *c;
2366 REDIS_NOTUSED(el);
2367 REDIS_NOTUSED(mask);
2368 REDIS_NOTUSED(privdata);
2369
2370 cfd = anetAccept(server.neterr, fd, cip, &cport);
2371 if (cfd == AE_ERR) {
2372 redisLog(REDIS_VERBOSE,"Accepting client connection: %s", server.neterr);
2373 return;
2374 }
2375 redisLog(REDIS_VERBOSE,"Accepted %s:%d", cip, cport);
2376 if ((c = createClient(cfd)) == NULL) {
2377 redisLog(REDIS_WARNING,"Error allocating resoures for the client");
2378 close(cfd); /* May be already closed, just ingore errors */
2379 return;
2380 }
2381 /* If maxclient directive is set and this is one client more... close the
2382 * connection. Note that we create the client instead to check before
2383 * for this condition, since now the socket is already set in nonblocking
2384 * mode and we can send an error for free using the Kernel I/O */
2385 if (server.maxclients && listLength(server.clients) > server.maxclients) {
2386 char *err = "-ERR max number of clients reached\r\n";
2387
2388 /* That's a best effort error message, don't check write errors */
2389 if (write(c->fd,err,strlen(err)) == -1) {
2390 /* Nothing to do, Just to avoid the warning... */
2391 }
2392 freeClient(c);
2393 return;
2394 }
2395 server.stat_numconnections++;
2396 }
2397
2398 /* ======================= Redis objects implementation ===================== */
2399
2400 static robj *createObject(int type, void *ptr) {
2401 robj *o;
2402
2403 if (server.vm_enabled) pthread_mutex_lock(&server.obj_freelist_mutex);
2404 if (listLength(server.objfreelist)) {
2405 listNode *head = listFirst(server.objfreelist);
2406 o = listNodeValue(head);
2407 listDelNode(server.objfreelist,head);
2408 if (server.vm_enabled) pthread_mutex_unlock(&server.obj_freelist_mutex);
2409 } else {
2410 if (server.vm_enabled) {
2411 pthread_mutex_unlock(&server.obj_freelist_mutex);
2412 o = zmalloc(sizeof(*o));
2413 } else {
2414 o = zmalloc(sizeof(*o)-sizeof(struct redisObjectVM));
2415 }
2416 }
2417 o->type = type;
2418 o->encoding = REDIS_ENCODING_RAW;
2419 o->ptr = ptr;
2420 o->refcount = 1;
2421 if (server.vm_enabled) {
2422 /* Note that this code may run in the context of an I/O thread
2423 * and accessing to server.unixtime in theory is an error
2424 * (no locks). But in practice this is safe, and even if we read
2425 * garbage Redis will not fail, as it's just a statistical info */
2426 o->vm.atime = server.unixtime;
2427 o->storage = REDIS_VM_MEMORY;
2428 }
2429 return o;
2430 }
2431
2432 static robj *createStringObject(char *ptr, size_t len) {
2433 return createObject(REDIS_STRING,sdsnewlen(ptr,len));
2434 }
2435
2436 static robj *dupStringObject(robj *o) {
2437 assert(o->encoding == REDIS_ENCODING_RAW);
2438 return createStringObject(o->ptr,sdslen(o->ptr));
2439 }
2440
2441 static robj *createListObject(void) {
2442 list *l = listCreate();
2443
2444 listSetFreeMethod(l,decrRefCount);
2445 return createObject(REDIS_LIST,l);
2446 }
2447
2448 static robj *createSetObject(void) {
2449 dict *d = dictCreate(&setDictType,NULL);
2450 return createObject(REDIS_SET,d);
2451 }
2452
2453 static robj *createZsetObject(void) {
2454 zset *zs = zmalloc(sizeof(*zs));
2455
2456 zs->dict = dictCreate(&zsetDictType,NULL);
2457 zs->zsl = zslCreate();
2458 return createObject(REDIS_ZSET,zs);
2459 }
2460
2461 static void freeStringObject(robj *o) {
2462 if (o->encoding == REDIS_ENCODING_RAW) {
2463 sdsfree(o->ptr);
2464 }
2465 }
2466
2467 static void freeListObject(robj *o) {
2468 listRelease((list*) o->ptr);
2469 }
2470
2471 static void freeSetObject(robj *o) {
2472 dictRelease((dict*) o->ptr);
2473 }
2474
2475 static void freeZsetObject(robj *o) {
2476 zset *zs = o->ptr;
2477
2478 dictRelease(zs->dict);
2479 zslFree(zs->zsl);
2480 zfree(zs);
2481 }
2482
2483 static void freeHashObject(robj *o) {
2484 dictRelease((dict*) o->ptr);
2485 }
2486
2487 static void incrRefCount(robj *o) {
2488 redisAssert(!server.vm_enabled || o->storage == REDIS_VM_MEMORY);
2489 o->refcount++;
2490 }
2491
2492 static void decrRefCount(void *obj) {
2493 robj *o = obj;
2494
2495 /* Object is swapped out, or in the process of being loaded. */
2496 if (server.vm_enabled &&
2497 (o->storage == REDIS_VM_SWAPPED || o->storage == REDIS_VM_LOADING))
2498 {
2499 if (o->storage == REDIS_VM_SWAPPED || o->storage == REDIS_VM_LOADING) {
2500 redisAssert(o->refcount == 1);
2501 }
2502 if (o->storage == REDIS_VM_LOADING) vmCancelThreadedIOJob(obj);
2503 redisAssert(o->type == REDIS_STRING);
2504 freeStringObject(o);
2505 vmMarkPagesFree(o->vm.page,o->vm.usedpages);
2506 pthread_mutex_lock(&server.obj_freelist_mutex);
2507 if (listLength(server.objfreelist) > REDIS_OBJFREELIST_MAX ||
2508 !listAddNodeHead(server.objfreelist,o))
2509 zfree(o);
2510 pthread_mutex_unlock(&server.obj_freelist_mutex);
2511 server.vm_stats_swapped_objects--;
2512 return;
2513 }
2514 /* Object is in memory, or in the process of being swapped out. */
2515 if (--(o->refcount) == 0) {
2516 if (server.vm_enabled && o->storage == REDIS_VM_SWAPPING)
2517 vmCancelThreadedIOJob(obj);
2518 switch(o->type) {
2519 case REDIS_STRING: freeStringObject(o); break;
2520 case REDIS_LIST: freeListObject(o); break;
2521 case REDIS_SET: freeSetObject(o); break;
2522 case REDIS_ZSET: freeZsetObject(o); break;
2523 case REDIS_HASH: freeHashObject(o); break;
2524 default: redisAssert(0 != 0); break;
2525 }
2526 if (server.vm_enabled) pthread_mutex_lock(&server.obj_freelist_mutex);
2527 if (listLength(server.objfreelist) > REDIS_OBJFREELIST_MAX ||
2528 !listAddNodeHead(server.objfreelist,o))
2529 zfree(o);
2530 if (server.vm_enabled) pthread_mutex_unlock(&server.obj_freelist_mutex);
2531 }
2532 }
2533
2534 static robj *lookupKey(redisDb *db, robj *key) {
2535 dictEntry *de = dictFind(db->dict,key);
2536 if (de) {
2537 robj *key = dictGetEntryKey(de);
2538 robj *val = dictGetEntryVal(de);
2539
2540 if (server.vm_enabled) {
2541 if (key->storage == REDIS_VM_MEMORY ||
2542 key->storage == REDIS_VM_SWAPPING)
2543 {
2544 /* If we were swapping the object out, stop it, this key
2545 * was requested. */
2546 if (key->storage == REDIS_VM_SWAPPING)
2547 vmCancelThreadedIOJob(key);
2548 /* Update the access time of the key for the aging algorithm. */
2549 key->vm.atime = server.unixtime;
2550 } else {
2551 /* Our value was swapped on disk. Bring it at home. */
2552 redisAssert(val == NULL);
2553 val = vmLoadObject(key);
2554 dictGetEntryVal(de) = val;
2555 }
2556 }
2557 return val;
2558 } else {
2559 return NULL;
2560 }
2561 }
2562
2563 static robj *lookupKeyRead(redisDb *db, robj *key) {
2564 expireIfNeeded(db,key);
2565 return lookupKey(db,key);
2566 }
2567
2568 static robj *lookupKeyWrite(redisDb *db, robj *key) {
2569 deleteIfVolatile(db,key);
2570 return lookupKey(db,key);
2571 }
2572
2573 static int deleteKey(redisDb *db, robj *key) {
2574 int retval;
2575
2576 /* We need to protect key from destruction: after the first dictDelete()
2577 * it may happen that 'key' is no longer valid if we don't increment
2578 * it's count. This may happen when we get the object reference directly
2579 * from the hash table with dictRandomKey() or dict iterators */
2580 incrRefCount(key);
2581 if (dictSize(db->expires)) dictDelete(db->expires,key);
2582 retval = dictDelete(db->dict,key);
2583 decrRefCount(key);
2584
2585 return retval == DICT_OK;
2586 }
2587
2588 /* Try to share an object against the shared objects pool */
2589 static robj *tryObjectSharing(robj *o) {
2590 struct dictEntry *de;
2591 unsigned long c;
2592
2593 if (o == NULL || server.shareobjects == 0) return o;
2594
2595 redisAssert(o->type == REDIS_STRING);
2596 de = dictFind(server.sharingpool,o);
2597 if (de) {
2598 robj *shared = dictGetEntryKey(de);
2599
2600 c = ((unsigned long) dictGetEntryVal(de))+1;
2601 dictGetEntryVal(de) = (void*) c;
2602 incrRefCount(shared);
2603 decrRefCount(o);
2604 return shared;
2605 } else {
2606 /* Here we are using a stream algorihtm: Every time an object is
2607 * shared we increment its count, everytime there is a miss we
2608 * recrement the counter of a random object. If this object reaches
2609 * zero we remove the object and put the current object instead. */
2610 if (dictSize(server.sharingpool) >=
2611 server.sharingpoolsize) {
2612 de = dictGetRandomKey(server.sharingpool);
2613 redisAssert(de != NULL);
2614 c = ((unsigned long) dictGetEntryVal(de))-1;
2615 dictGetEntryVal(de) = (void*) c;
2616 if (c == 0) {
2617 dictDelete(server.sharingpool,de->key);
2618 }
2619 } else {
2620 c = 0; /* If the pool is empty we want to add this object */
2621 }
2622 if (c == 0) {
2623 int retval;
2624
2625 retval = dictAdd(server.sharingpool,o,(void*)1);
2626 redisAssert(retval == DICT_OK);
2627 incrRefCount(o);
2628 }
2629 return o;
2630 }
2631 }
2632
2633 /* Check if the nul-terminated string 's' can be represented by a long
2634 * (that is, is a number that fits into long without any other space or
2635 * character before or after the digits).
2636 *
2637 * If so, the function returns REDIS_OK and *longval is set to the value
2638 * of the number. Otherwise REDIS_ERR is returned */
2639 static int isStringRepresentableAsLong(sds s, long *longval) {
2640 char buf[32], *endptr;
2641 long value;
2642 int slen;
2643
2644 value = strtol(s, &endptr, 10);
2645 if (endptr[0] != '\0') return REDIS_ERR;
2646 slen = snprintf(buf,32,"%ld",value);
2647
2648 /* If the number converted back into a string is not identical
2649 * then it's not possible to encode the string as integer */
2650 if (sdslen(s) != (unsigned)slen || memcmp(buf,s,slen)) return REDIS_ERR;
2651 if (longval) *longval = value;
2652 return REDIS_OK;
2653 }
2654
2655 /* Try to encode a string object in order to save space */
2656 static int tryObjectEncoding(robj *o) {
2657 long value;
2658 sds s = o->ptr;
2659
2660 if (o->encoding != REDIS_ENCODING_RAW)
2661 return REDIS_ERR; /* Already encoded */
2662
2663 /* It's not save to encode shared objects: shared objects can be shared
2664 * everywhere in the "object space" of Redis. Encoded objects can only
2665 * appear as "values" (and not, for instance, as keys) */
2666 if (o->refcount > 1) return REDIS_ERR;
2667
2668 /* Currently we try to encode only strings */
2669 redisAssert(o->type == REDIS_STRING);
2670
2671 /* Check if we can represent this string as a long integer */
2672 if (isStringRepresentableAsLong(s,&value) == REDIS_ERR) return REDIS_ERR;
2673
2674 /* Ok, this object can be encoded */
2675 o->encoding = REDIS_ENCODING_INT;
2676 sdsfree(o->ptr);
2677 o->ptr = (void*) value;
2678 return REDIS_OK;
2679 }
2680
2681 /* Get a decoded version of an encoded object (returned as a new object).
2682 * If the object is already raw-encoded just increment the ref count. */
2683 static robj *getDecodedObject(robj *o) {
2684 robj *dec;
2685
2686 if (o->encoding == REDIS_ENCODING_RAW) {
2687 incrRefCount(o);
2688 return o;
2689 }
2690 if (o->type == REDIS_STRING && o->encoding == REDIS_ENCODING_INT) {
2691 char buf[32];
2692
2693 snprintf(buf,32,"%ld",(long)o->ptr);
2694 dec = createStringObject(buf,strlen(buf));
2695 return dec;
2696 } else {
2697 redisAssert(1 != 1);
2698 }
2699 }
2700
2701 /* Compare two string objects via strcmp() or alike.
2702 * Note that the objects may be integer-encoded. In such a case we
2703 * use snprintf() to get a string representation of the numbers on the stack
2704 * and compare the strings, it's much faster than calling getDecodedObject().
2705 *
2706 * Important note: if objects are not integer encoded, but binary-safe strings,
2707 * sdscmp() from sds.c will apply memcmp() so this function ca be considered
2708 * binary safe. */
2709 static int compareStringObjects(robj *a, robj *b) {
2710 redisAssert(a->type == REDIS_STRING && b->type == REDIS_STRING);
2711 char bufa[128], bufb[128], *astr, *bstr;
2712 int bothsds = 1;
2713
2714 if (a == b) return 0;
2715 if (a->encoding != REDIS_ENCODING_RAW) {
2716 snprintf(bufa,sizeof(bufa),"%ld",(long) a->ptr);
2717 astr = bufa;
2718 bothsds = 0;
2719 } else {
2720 astr = a->ptr;
2721 }
2722 if (b->encoding != REDIS_ENCODING_RAW) {
2723 snprintf(bufb,sizeof(bufb),"%ld",(long) b->ptr);
2724 bstr = bufb;
2725 bothsds = 0;
2726 } else {
2727 bstr = b->ptr;
2728 }
2729 return bothsds ? sdscmp(astr,bstr) : strcmp(astr,bstr);
2730 }
2731
2732 static size_t stringObjectLen(robj *o) {
2733 redisAssert(o->type == REDIS_STRING);
2734 if (o->encoding == REDIS_ENCODING_RAW) {
2735 return sdslen(o->ptr);
2736 } else {
2737 char buf[32];
2738
2739 return snprintf(buf,32,"%ld",(long)o->ptr);
2740 }
2741 }
2742
2743 /*============================ RDB saving/loading =========================== */
2744
2745 static int rdbSaveType(FILE *fp, unsigned char type) {
2746 if (fwrite(&type,1,1,fp) == 0) return -1;
2747 return 0;
2748 }
2749
2750 static int rdbSaveTime(FILE *fp, time_t t) {
2751 int32_t t32 = (int32_t) t;
2752 if (fwrite(&t32,4,1,fp) == 0) return -1;
2753 return 0;
2754 }
2755
2756 /* check rdbLoadLen() comments for more info */
2757 static int rdbSaveLen(FILE *fp, uint32_t len) {
2758 unsigned char buf[2];
2759
2760 if (len < (1<<6)) {
2761 /* Save a 6 bit len */
2762 buf[0] = (len&0xFF)|(REDIS_RDB_6BITLEN<<6);
2763 if (fwrite(buf,1,1,fp) == 0) return -1;
2764 } else if (len < (1<<14)) {
2765 /* Save a 14 bit len */
2766 buf[0] = ((len>>8)&0xFF)|(REDIS_RDB_14BITLEN<<6);
2767 buf[1] = len&0xFF;
2768 if (fwrite(buf,2,1,fp) == 0) return -1;
2769 } else {
2770 /* Save a 32 bit len */
2771 buf[0] = (REDIS_RDB_32BITLEN<<6);
2772 if (fwrite(buf,1,1,fp) == 0) return -1;
2773 len = htonl(len);
2774 if (fwrite(&len,4,1,fp) == 0) return -1;
2775 }
2776 return 0;
2777 }
2778
2779 /* String objects in the form "2391" "-100" without any space and with a
2780 * range of values that can fit in an 8, 16 or 32 bit signed value can be
2781 * encoded as integers to save space */
2782 static int rdbTryIntegerEncoding(sds s, unsigned char *enc) {
2783 long long value;
2784 char *endptr, buf[32];
2785
2786 /* Check if it's possible to encode this value as a number */
2787 value = strtoll(s, &endptr, 10);
2788 if (endptr[0] != '\0') return 0;
2789 snprintf(buf,32,"%lld",value);
2790
2791 /* If the number converted back into a string is not identical
2792 * then it's not possible to encode the string as integer */
2793 if (strlen(buf) != sdslen(s) || memcmp(buf,s,sdslen(s))) return 0;
2794
2795 /* Finally check if it fits in our ranges */
2796 if (value >= -(1<<7) && value <= (1<<7)-1) {
2797 enc[0] = (REDIS_RDB_ENCVAL<<6)|REDIS_RDB_ENC_INT8;
2798 enc[1] = value&0xFF;
2799 return 2;
2800 } else if (value >= -(1<<15) && value <= (1<<15)-1) {
2801 enc[0] = (REDIS_RDB_ENCVAL<<6)|REDIS_RDB_ENC_INT16;
2802 enc[1] = value&0xFF;
2803 enc[2] = (value>>8)&0xFF;
2804 return 3;
2805 } else if (value >= -((long long)1<<31) && value <= ((long long)1<<31)-1) {
2806 enc[0] = (REDIS_RDB_ENCVAL<<6)|REDIS_RDB_ENC_INT32;
2807 enc[1] = value&0xFF;
2808 enc[2] = (value>>8)&0xFF;
2809 enc[3] = (value>>16)&0xFF;
2810 enc[4] = (value>>24)&0xFF;
2811 return 5;
2812 } else {
2813 return 0;
2814 }
2815 }
2816
2817 static int rdbSaveLzfStringObject(FILE *fp, robj *obj) {
2818 unsigned int comprlen, outlen;
2819 unsigned char byte;
2820 void *out;
2821
2822 /* We require at least four bytes compression for this to be worth it */
2823 outlen = sdslen(obj->ptr)-4;
2824 if (outlen <= 0) return 0;
2825 if ((out = zmalloc(outlen+1)) == NULL) return 0;
2826 printf("Calling LZF with ptr: %p\n", (void*)obj->ptr);
2827 fflush(stdout);
2828 comprlen = lzf_compress(obj->ptr, sdslen(obj->ptr), out, outlen);
2829 if (comprlen == 0) {
2830 zfree(out);
2831 return 0;
2832 }
2833 /* Data compressed! Let's save it on disk */
2834 byte = (REDIS_RDB_ENCVAL<<6)|REDIS_RDB_ENC_LZF;
2835 if (fwrite(&byte,1,1,fp) == 0) goto writeerr;
2836 if (rdbSaveLen(fp,comprlen) == -1) goto writeerr;
2837 if (rdbSaveLen(fp,sdslen(obj->ptr)) == -1) goto writeerr;
2838 if (fwrite(out,comprlen,1,fp) == 0) goto writeerr;
2839 zfree(out);
2840 return comprlen;
2841
2842 writeerr:
2843 zfree(out);
2844 return -1;
2845 }
2846
2847 /* Save a string objet as [len][data] on disk. If the object is a string
2848 * representation of an integer value we try to safe it in a special form */
2849 static int rdbSaveStringObjectRaw(FILE *fp, robj *obj) {
2850 size_t len;
2851 int enclen;
2852
2853 len = sdslen(obj->ptr);
2854
2855 /* Try integer encoding */
2856 if (len <= 11) {
2857 unsigned char buf[5];
2858 if ((enclen = rdbTryIntegerEncoding(obj->ptr,buf)) > 0) {
2859 if (fwrite(buf,enclen,1,fp) == 0) return -1;
2860 return 0;
2861 }
2862 }
2863
2864 /* Try LZF compression - under 20 bytes it's unable to compress even
2865 * aaaaaaaaaaaaaaaaaa so skip it */
2866 if (server.rdbcompression && len > 20) {
2867 int retval;
2868
2869 retval = rdbSaveLzfStringObject(fp,obj);
2870 if (retval == -1) return -1;
2871 if (retval > 0) return 0;
2872 /* retval == 0 means data can't be compressed, save the old way */
2873 }
2874
2875 /* Store verbatim */
2876 if (rdbSaveLen(fp,len) == -1) return -1;
2877 if (len && fwrite(obj->ptr,len,1,fp) == 0) return -1;
2878 return 0;
2879 }
2880
2881 /* Like rdbSaveStringObjectRaw() but handle encoded objects */
2882 static int rdbSaveStringObject(FILE *fp, robj *obj) {
2883 int retval;
2884
2885 /* Avoid incr/decr ref count business when possible.
2886 * This plays well with copy-on-write given that we are probably
2887 * in a child process (BGSAVE). Also this makes sure key objects
2888 * of swapped objects are not incRefCount-ed (an assert does not allow
2889 * this in order to avoid bugs) */
2890 if (obj->encoding != REDIS_ENCODING_RAW) {
2891 obj = getDecodedObject(obj);
2892 retval = rdbSaveStringObjectRaw(fp,obj);
2893 decrRefCount(obj);
2894 } else {
2895 retval = rdbSaveStringObjectRaw(fp,obj);
2896 }
2897 return retval;
2898 }
2899
2900 /* Save a double value. Doubles are saved as strings prefixed by an unsigned
2901 * 8 bit integer specifing the length of the representation.
2902 * This 8 bit integer has special values in order to specify the following
2903 * conditions:
2904 * 253: not a number
2905 * 254: + inf
2906 * 255: - inf
2907 */
2908 static int rdbSaveDoubleValue(FILE *fp, double val) {
2909 unsigned char buf[128];
2910 int len;
2911
2912 if (isnan(val)) {
2913 buf[0] = 253;
2914 len = 1;
2915 } else if (!isfinite(val)) {
2916 len = 1;
2917 buf[0] = (val < 0) ? 255 : 254;
2918 } else {
2919 snprintf((char*)buf+1,sizeof(buf)-1,"%.17g",val);
2920 buf[0] = strlen((char*)buf+1);
2921 len = buf[0]+1;
2922 }
2923 if (fwrite(buf,len,1,fp) == 0) return -1;
2924 return 0;
2925 }
2926
2927 /* Save a Redis object. */
2928 static int rdbSaveObject(FILE *fp, robj *o) {
2929 if (o->type == REDIS_STRING) {
2930 /* Save a string value */
2931 if (rdbSaveStringObject(fp,o) == -1) return -1;
2932 } else if (o->type == REDIS_LIST) {
2933 /* Save a list value */
2934 list *list = o->ptr;
2935 listIter li;
2936 listNode *ln;
2937
2938 if (rdbSaveLen(fp,listLength(list)) == -1) return -1;
2939 listRewind(list,&li);
2940 while((ln = listNext(&li))) {
2941 robj *eleobj = listNodeValue(ln);
2942
2943 if (rdbSaveStringObject(fp,eleobj) == -1) return -1;
2944 }
2945 } else if (o->type == REDIS_SET) {
2946 /* Save a set value */
2947 dict *set = o->ptr;
2948 dictIterator *di = dictGetIterator(set);
2949 dictEntry *de;
2950
2951 if (rdbSaveLen(fp,dictSize(set)) == -1) return -1;
2952 while((de = dictNext(di)) != NULL) {
2953 robj *eleobj = dictGetEntryKey(de);
2954
2955 if (rdbSaveStringObject(fp,eleobj) == -1) return -1;
2956 }
2957 dictReleaseIterator(di);
2958 } else if (o->type == REDIS_ZSET) {
2959 /* Save a set value */
2960 zset *zs = o->ptr;
2961 dictIterator *di = dictGetIterator(zs->dict);
2962 dictEntry *de;
2963
2964 if (rdbSaveLen(fp,dictSize(zs->dict)) == -1) return -1;
2965 while((de = dictNext(di)) != NULL) {
2966 robj *eleobj = dictGetEntryKey(de);
2967 double *score = dictGetEntryVal(de);
2968
2969 if (rdbSaveStringObject(fp,eleobj) == -1) return -1;
2970 if (rdbSaveDoubleValue(fp,*score) == -1) return -1;
2971 }
2972 dictReleaseIterator(di);
2973 } else {
2974 redisAssert(0 != 0);
2975 }
2976 return 0;
2977 }
2978
2979 /* Return the length the object will have on disk if saved with
2980 * the rdbSaveObject() function. Currently we use a trick to get
2981 * this length with very little changes to the code. In the future
2982 * we could switch to a faster solution. */
2983 static off_t rdbSavedObjectLen(robj *o, FILE *fp) {
2984 if (fp == NULL) fp = server.devnull;
2985 rewind(fp);
2986 assert(rdbSaveObject(fp,o) != 1);
2987 return ftello(fp);
2988 }
2989
2990 /* Return the number of pages required to save this object in the swap file */
2991 static off_t rdbSavedObjectPages(robj *o, FILE *fp) {
2992 off_t bytes = rdbSavedObjectLen(o,fp);
2993
2994 return (bytes+(server.vm_page_size-1))/server.vm_page_size;
2995 }
2996
2997 /* Save the DB on disk. Return REDIS_ERR on error, REDIS_OK on success */
2998 static int rdbSave(char *filename) {
2999 dictIterator *di = NULL;
3000 dictEntry *de;
3001 FILE *fp;
3002 char tmpfile[256];
3003 int j;
3004 time_t now = time(NULL);
3005
3006 snprintf(tmpfile,256,"temp-%d.rdb", (int) getpid());
3007 fp = fopen(tmpfile,"w");
3008 if (!fp) {
3009 redisLog(REDIS_WARNING, "Failed saving the DB: %s", strerror(errno));
3010 return REDIS_ERR;
3011 }
3012 if (fwrite("REDIS0001",9,1,fp) == 0) goto werr;
3013 for (j = 0; j < server.dbnum; j++) {
3014 redisDb *db = server.db+j;
3015 dict *d = db->dict;
3016 if (dictSize(d) == 0) continue;
3017 di = dictGetIterator(d);
3018 if (!di) {
3019 fclose(fp);
3020 return REDIS_ERR;
3021 }
3022
3023 /* Write the SELECT DB opcode */
3024 if (rdbSaveType(fp,REDIS_SELECTDB) == -1) goto werr;
3025 if (rdbSaveLen(fp,j) == -1) goto werr;
3026
3027 /* Iterate this DB writing every entry */
3028 while((de = dictNext(di)) != NULL) {
3029 robj *key = dictGetEntryKey(de);
3030 robj *o = dictGetEntryVal(de);
3031 time_t expiretime = getExpire(db,key);
3032
3033 /* Save the expire time */
3034 if (expiretime != -1) {
3035 /* If this key is already expired skip it */
3036 if (expiretime < now) continue;
3037 if (rdbSaveType(fp,REDIS_EXPIRETIME) == -1) goto werr;
3038 if (rdbSaveTime(fp,expiretime) == -1) goto werr;
3039 }
3040 /* Save the key and associated value. This requires special
3041 * handling if the value is swapped out. */
3042 if (!server.vm_enabled || key->storage == REDIS_VM_MEMORY ||
3043 key->storage == REDIS_VM_SWAPPING) {
3044 /* Save type, key, value */
3045 if (rdbSaveType(fp,o->type) == -1) goto werr;
3046 if (rdbSaveStringObject(fp,key) == -1) goto werr;
3047 if (rdbSaveObject(fp,o) == -1) goto werr;
3048 } else {
3049 /* REDIS_VM_SWAPPED or REDIS_VM_LOADING */
3050 robj *po;
3051 /* Get a preview of the object in memory */
3052 po = vmPreviewObject(key);
3053 /* Save type, key, value */
3054 if (rdbSaveType(fp,key->vtype) == -1) goto werr;
3055 if (rdbSaveStringObject(fp,key) == -1) goto werr;
3056 if (rdbSaveObject(fp,po) == -1) goto werr;
3057 /* Remove the loaded object from memory */
3058 decrRefCount(po);
3059 }
3060 }
3061 dictReleaseIterator(di);
3062 }
3063 /* EOF opcode */
3064 if (rdbSaveType(fp,REDIS_EOF) == -1) goto werr;
3065
3066 /* Make sure data will not remain on the OS's output buffers */
3067 fflush(fp);
3068 fsync(fileno(fp));
3069 fclose(fp);
3070
3071 /* Use RENAME to make sure the DB file is changed atomically only
3072 * if the generate DB file is ok. */
3073 if (rename(tmpfile,filename) == -1) {
3074 redisLog(REDIS_WARNING,"Error moving temp DB file on the final destination: %s", strerror(errno));
3075 unlink(tmpfile);
3076 return REDIS_ERR;
3077 }
3078 redisLog(REDIS_NOTICE,"DB saved on disk");
3079 server.dirty = 0;
3080 server.lastsave = time(NULL);
3081 return REDIS_OK;
3082
3083 werr:
3084 fclose(fp);
3085 unlink(tmpfile);
3086 redisLog(REDIS_WARNING,"Write error saving DB on disk: %s", strerror(errno));
3087 if (di) dictReleaseIterator(di);
3088 return REDIS_ERR;
3089 }
3090
3091 static int rdbSaveBackground(char *filename) {
3092 pid_t childpid;
3093
3094 if (server.bgsavechildpid != -1) return REDIS_ERR;
3095 if (server.vm_enabled) waitZeroActiveThreads();
3096 if ((childpid = fork()) == 0) {
3097 /* Child */
3098 close(server.fd);
3099 if (rdbSave(filename) == REDIS_OK) {
3100 exit(0);
3101 } else {
3102 exit(1);
3103 }
3104 } else {
3105 /* Parent */
3106 if (childpid == -1) {
3107 redisLog(REDIS_WARNING,"Can't save in background: fork: %s",
3108 strerror(errno));
3109 return REDIS_ERR;
3110 }
3111 redisLog(REDIS_NOTICE,"Background saving started by pid %d",childpid);
3112 server.bgsavechildpid = childpid;
3113 return REDIS_OK;
3114 }
3115 return REDIS_OK; /* unreached */
3116 }
3117
3118 static void rdbRemoveTempFile(pid_t childpid) {
3119 char tmpfile[256];
3120
3121 snprintf(tmpfile,256,"temp-%d.rdb", (int) childpid);
3122 unlink(tmpfile);
3123 }
3124
3125 static int rdbLoadType(FILE *fp) {
3126 unsigned char type;
3127 if (fread(&type,1,1,fp) == 0) return -1;
3128 return type;
3129 }
3130
3131 static time_t rdbLoadTime(FILE *fp) {
3132 int32_t t32;
3133 if (fread(&t32,4,1,fp) == 0) return -1;
3134 return (time_t) t32;
3135 }
3136
3137 /* Load an encoded length from the DB, see the REDIS_RDB_* defines on the top
3138 * of this file for a description of how this are stored on disk.
3139 *
3140 * isencoded is set to 1 if the readed length is not actually a length but
3141 * an "encoding type", check the above comments for more info */
3142 static uint32_t rdbLoadLen(FILE *fp, int *isencoded) {
3143 unsigned char buf[2];
3144 uint32_t len;
3145 int type;
3146
3147 if (isencoded) *isencoded = 0;
3148 if (fread(buf,1,1,fp) == 0) return REDIS_RDB_LENERR;
3149 type = (buf[0]&0xC0)>>6;
3150 if (type == REDIS_RDB_6BITLEN) {
3151 /* Read a 6 bit len */
3152 return buf[0]&0x3F;
3153 } else if (type == REDIS_RDB_ENCVAL) {
3154 /* Read a 6 bit len encoding type */
3155 if (isencoded) *isencoded = 1;
3156 return buf[0]&0x3F;
3157 } else if (type == REDIS_RDB_14BITLEN) {
3158 /* Read a 14 bit len */
3159 if (fread(buf+1,1,1,fp) == 0) return REDIS_RDB_LENERR;
3160 return ((buf[0]&0x3F)<<8)|buf[1];
3161 } else {
3162 /* Read a 32 bit len */
3163 if (fread(&len,4,1,fp) == 0) return REDIS_RDB_LENERR;
3164 return ntohl(len);
3165 }
3166 }
3167
3168 static robj *rdbLoadIntegerObject(FILE *fp, int enctype) {
3169 unsigned char enc[4];
3170 long long val;
3171
3172 if (enctype == REDIS_RDB_ENC_INT8) {
3173 if (fread(enc,1,1,fp) == 0) return NULL;
3174 val = (signed char)enc[0];
3175 } else if (enctype == REDIS_RDB_ENC_INT16) {
3176 uint16_t v;
3177 if (fread(enc,2,1,fp) == 0) return NULL;
3178 v = enc[0]|(enc[1]<<8);
3179 val = (int16_t)v;
3180 } else if (enctype == REDIS_RDB_ENC_INT32) {
3181 uint32_t v;
3182 if (fread(enc,4,1,fp) == 0) return NULL;
3183 v = enc[0]|(enc[1]<<8)|(enc[2]<<16)|(enc[3]<<24);
3184 val = (int32_t)v;
3185 } else {
3186 val = 0; /* anti-warning */
3187 redisAssert(0!=0);
3188 }
3189 return createObject(REDIS_STRING,sdscatprintf(sdsempty(),"%lld",val));
3190 }
3191
3192 static robj *rdbLoadLzfStringObject(FILE*fp) {
3193 unsigned int len, clen;
3194 unsigned char *c = NULL;
3195 sds val = NULL;
3196
3197 if ((clen = rdbLoadLen(fp,NULL)) == REDIS_RDB_LENERR) return NULL;
3198 if ((len = rdbLoadLen(fp,NULL)) == REDIS_RDB_LENERR) return NULL;
3199 if ((c = zmalloc(clen)) == NULL) goto err;
3200 if ((val = sdsnewlen(NULL,len)) == NULL) goto err;
3201 if (fread(c,clen,1,fp) == 0) goto err;
3202 if (lzf_decompress(c,clen,val,len) == 0) goto err;
3203 zfree(c);
3204 return createObject(REDIS_STRING,val);
3205 err:
3206 zfree(c);
3207 sdsfree(val);
3208 return NULL;
3209 }
3210
3211 static robj *rdbLoadStringObject(FILE*fp) {
3212 int isencoded;
3213 uint32_t len;
3214 sds val;
3215
3216 len = rdbLoadLen(fp,&isencoded);
3217 if (isencoded) {
3218 switch(len) {
3219 case REDIS_RDB_ENC_INT8:
3220 case REDIS_RDB_ENC_INT16:
3221 case REDIS_RDB_ENC_INT32:
3222 return tryObjectSharing(rdbLoadIntegerObject(fp,len));
3223 case REDIS_RDB_ENC_LZF:
3224 return tryObjectSharing(rdbLoadLzfStringObject(fp));
3225 default:
3226 redisAssert(0!=0);
3227 }
3228 }
3229
3230 if (len == REDIS_RDB_LENERR) return NULL;
3231 val = sdsnewlen(NULL,len);
3232 if (len && fread(val,len,1,fp) == 0) {
3233 sdsfree(val);
3234 return NULL;
3235 }
3236 return tryObjectSharing(createObject(REDIS_STRING,val));
3237 }
3238
3239 /* For information about double serialization check rdbSaveDoubleValue() */
3240 static int rdbLoadDoubleValue(FILE *fp, double *val) {
3241 char buf[128];
3242 unsigned char len;
3243
3244 if (fread(&len,1,1,fp) == 0) return -1;
3245 switch(len) {
3246 case 255: *val = R_NegInf; return 0;
3247 case 254: *val = R_PosInf; return 0;
3248 case 253: *val = R_Nan; return 0;
3249 default:
3250 if (fread(buf,len,1,fp) == 0) return -1;
3251 buf[len] = '\0';
3252 sscanf(buf, "%lg", val);
3253 return 0;
3254 }
3255 }
3256
3257 /* Load a Redis object of the specified type from the specified file.
3258 * On success a newly allocated object is returned, otherwise NULL. */
3259 static robj *rdbLoadObject(int type, FILE *fp) {
3260 robj *o;
3261
3262 if (type == REDIS_STRING) {
3263 /* Read string value */
3264 if ((o = rdbLoadStringObject(fp)) == NULL) return NULL;
3265 tryObjectEncoding(o);
3266 } else if (type == REDIS_LIST || type == REDIS_SET) {
3267 /* Read list/set value */
3268 uint32_t listlen;
3269
3270 if ((listlen = rdbLoadLen(fp,NULL)) == REDIS_RDB_LENERR) return NULL;
3271 o = (type == REDIS_LIST) ? createListObject() : createSetObject();
3272 /* Load every single element of the list/set */
3273 while(listlen--) {
3274 robj *ele;
3275
3276 if ((ele = rdbLoadStringObject(fp)) == NULL) return NULL;
3277 tryObjectEncoding(ele);
3278 if (type == REDIS_LIST) {
3279 listAddNodeTail((list*)o->ptr,ele);
3280 } else {
3281 dictAdd((dict*)o->ptr,ele,NULL);
3282 }
3283 }
3284 } else if (type == REDIS_ZSET) {
3285 /* Read list/set value */
3286 uint32_t zsetlen;
3287 zset *zs;
3288
3289 if ((zsetlen = rdbLoadLen(fp,NULL)) == REDIS_RDB_LENERR) return NULL;
3290 o = createZsetObject();
3291 zs = o->ptr;
3292 /* Load every single element of the list/set */
3293 while(zsetlen--) {
3294 robj *ele;
3295 double *score = zmalloc(sizeof(double));
3296
3297 if ((ele = rdbLoadStringObject(fp)) == NULL) return NULL;
3298 tryObjectEncoding(ele);
3299 if (rdbLoadDoubleValue(fp,score) == -1) return NULL;
3300 dictAdd(zs->dict,ele,score);
3301 zslInsert(zs->zsl,*score,ele);
3302 incrRefCount(ele); /* added to skiplist */
3303 }
3304 } else {
3305 redisAssert(0 != 0);
3306 }
3307 return o;
3308 }
3309
3310 static int rdbLoad(char *filename) {
3311 FILE *fp;
3312 robj *keyobj = NULL;
3313 uint32_t dbid;
3314 int type, retval, rdbver;
3315 dict *d = server.db[0].dict;
3316 redisDb *db = server.db+0;
3317 char buf[1024];
3318 time_t expiretime = -1, now = time(NULL);
3319 long long loadedkeys = 0;
3320
3321 fp = fopen(filename,"r");
3322 if (!fp) return REDIS_ERR;
3323 if (fread(buf,9,1,fp) == 0) goto eoferr;
3324 buf[9] = '\0';
3325 if (memcmp(buf,"REDIS",5) != 0) {
3326 fclose(fp);
3327 redisLog(REDIS_WARNING,"Wrong signature trying to load DB from file");
3328 return REDIS_ERR;
3329 }
3330 rdbver = atoi(buf+5);
3331 if (rdbver != 1) {
3332 fclose(fp);
3333 redisLog(REDIS_WARNING,"Can't handle RDB format version %d",rdbver);
3334 return REDIS_ERR;
3335 }
3336 while(1) {
3337 robj *o;
3338
3339 /* Read type. */
3340 if ((type = rdbLoadType(fp)) == -1) goto eoferr;
3341 if (type == REDIS_EXPIRETIME) {
3342 if ((expiretime = rdbLoadTime(fp)) == -1) goto eoferr;
3343 /* We read the time so we need to read the object type again */
3344 if ((type = rdbLoadType(fp)) == -1) goto eoferr;
3345 }
3346 if (type == REDIS_EOF) break;
3347 /* Handle SELECT DB opcode as a special case */
3348 if (type == REDIS_SELECTDB) {
3349 if ((dbid = rdbLoadLen(fp,NULL)) == REDIS_RDB_LENERR)
3350 goto eoferr;
3351 if (dbid >= (unsigned)server.dbnum) {
3352 redisLog(REDIS_WARNING,"FATAL: Data file was created with a Redis server configured to handle more than %d databases. Exiting\n", server.dbnum);
3353 exit(1);
3354 }
3355 db = server.db+dbid;
3356 d = db->dict;
3357 continue;
3358 }
3359 /* Read key */
3360 if ((keyobj = rdbLoadStringObject(fp)) == NULL) goto eoferr;
3361 /* Read value */
3362 if ((o = rdbLoadObject(type,fp)) == NULL) goto eoferr;
3363 /* Add the new object in the hash table */
3364 retval = dictAdd(d,keyobj,o);
3365 if (retval == DICT_ERR) {
3366 redisLog(REDIS_WARNING,"Loading DB, duplicated key (%s) found! Unrecoverable error, exiting now.", keyobj->ptr);
3367 exit(1);
3368 }
3369 /* Set the expire time if needed */
3370 if (expiretime != -1) {
3371 setExpire(db,keyobj,expiretime);
3372 /* Delete this key if already expired */
3373 if (expiretime < now) deleteKey(db,keyobj);
3374 expiretime = -1;
3375 }
3376 keyobj = o = NULL;
3377 /* Handle swapping while loading big datasets when VM is on */
3378 loadedkeys++;
3379 if (server.vm_enabled && (loadedkeys % 5000) == 0) {
3380 while (zmalloc_used_memory() > server.vm_max_memory) {
3381 if (vmSwapOneObjectBlocking() == REDIS_ERR) break;
3382 }
3383 }
3384 }
3385 fclose(fp);
3386 return REDIS_OK;
3387
3388 eoferr: /* unexpected end of file is handled here with a fatal exit */
3389 if (keyobj) decrRefCount(keyobj);
3390 redisLog(REDIS_WARNING,"Short read or OOM loading DB. Unrecoverable error, aborting now.");
3391 exit(1);
3392 return REDIS_ERR; /* Just to avoid warning */
3393 }
3394
3395 /*================================== Commands =============================== */
3396
3397 static void authCommand(redisClient *c) {
3398 if (!server.requirepass || !strcmp(c->argv[1]->ptr, server.requirepass)) {
3399 c->authenticated = 1;
3400 addReply(c,shared.ok);
3401 } else {
3402 c->authenticated = 0;
3403 addReplySds(c,sdscatprintf(sdsempty(),"-ERR invalid password\r\n"));
3404 }
3405 }
3406
3407 static void pingCommand(redisClient *c) {
3408 addReply(c,shared.pong);
3409 }
3410
3411 static void echoCommand(redisClient *c) {
3412 addReplyBulkLen(c,c->argv[1]);
3413 addReply(c,c->argv[1]);
3414 addReply(c,shared.crlf);
3415 }
3416
3417 /*=================================== Strings =============================== */
3418
3419 static void setGenericCommand(redisClient *c, int nx) {
3420 int retval;
3421
3422 if (nx) deleteIfVolatile(c->db,c->argv[1]);
3423 retval = dictAdd(c->db->dict,c->argv[1],c->argv[2]);
3424 if (retval == DICT_ERR) {
3425 if (!nx) {
3426 /* If the key is about a swapped value, we want a new key object
3427 * to overwrite the old. So we delete the old key in the database.
3428 * This will also make sure that swap pages about the old object
3429 * will be marked as free. */
3430 if (deleteIfSwapped(c->db,c->argv[1]))
3431 incrRefCount(c->argv[1]);
3432 dictReplace(c->db->dict,c->argv[1],c->argv[2]);
3433 incrRefCount(c->argv[2]);
3434 } else {
3435 addReply(c,shared.czero);
3436 return;
3437 }
3438 } else {
3439 incrRefCount(c->argv[1]);
3440 incrRefCount(c->argv[2]);
3441 }
3442 server.dirty++;
3443 removeExpire(c->db,c->argv[1]);
3444 addReply(c, nx ? shared.cone : shared.ok);
3445 }
3446
3447 static void setCommand(redisClient *c) {
3448 setGenericCommand(c,0);
3449 }
3450
3451 static void setnxCommand(redisClient *c) {
3452 setGenericCommand(c,1);
3453 }
3454
3455 static int getGenericCommand(redisClient *c) {
3456 robj *o = lookupKeyRead(c->db,c->argv[1]);
3457
3458 if (o == NULL) {
3459 addReply(c,shared.nullbulk);
3460 return REDIS_OK;
3461 } else {
3462 if (o->type != REDIS_STRING) {
3463 addReply(c,shared.wrongtypeerr);
3464 return REDIS_ERR;
3465 } else {
3466 addReplyBulkLen(c,o);
3467 addReply(c,o);
3468 addReply(c,shared.crlf);
3469 return REDIS_OK;
3470 }
3471 }
3472 }
3473
3474 static void getCommand(redisClient *c) {
3475 getGenericCommand(c);
3476 }
3477
3478 static void getsetCommand(redisClient *c) {
3479 if (getGenericCommand(c) == REDIS_ERR) return;
3480 if (dictAdd(c->db->dict,c->argv[1],c->argv[2]) == DICT_ERR) {
3481 dictReplace(c->db->dict,c->argv[1],c->argv[2]);
3482 } else {
3483 incrRefCount(c->argv[1]);
3484 }
3485 incrRefCount(c->argv[2]);
3486 server.dirty++;
3487 removeExpire(c->db,c->argv[1]);
3488 }
3489
3490 static void mgetCommand(redisClient *c) {
3491 int j;
3492
3493 addReplySds(c,sdscatprintf(sdsempty(),"*%d\r\n",c->argc-1));
3494 for (j = 1; j < c->argc; j++) {
3495 robj *o = lookupKeyRead(c->db,c->argv[j]);
3496 if (o == NULL) {
3497 addReply(c,shared.nullbulk);
3498 } else {
3499 if (o->type != REDIS_STRING) {
3500 addReply(c,shared.nullbulk);
3501 } else {
3502 addReplyBulkLen(c,o);
3503 addReply(c,o);
3504 addReply(c,shared.crlf);
3505 }
3506 }
3507 }
3508 }
3509
3510 static void msetGenericCommand(redisClient *c, int nx) {
3511 int j, busykeys = 0;
3512
3513 if ((c->argc % 2) == 0) {
3514 addReplySds(c,sdsnew("-ERR wrong number of arguments for MSET\r\n"));
3515 return;
3516 }
3517 /* Handle the NX flag. The MSETNX semantic is to return zero and don't
3518 * set nothing at all if at least one already key exists. */
3519 if (nx) {
3520 for (j = 1; j < c->argc; j += 2) {
3521 if (lookupKeyWrite(c->db,c->argv[j]) != NULL) {
3522 busykeys++;
3523 }
3524 }
3525 }
3526 if (busykeys) {
3527 addReply(c, shared.czero);
3528 return;
3529 }
3530
3531 for (j = 1; j < c->argc; j += 2) {
3532 int retval;
3533
3534 tryObjectEncoding(c->argv[j+1]);
3535 retval = dictAdd(c->db->dict,c->argv[j],c->argv[j+1]);
3536 if (retval == DICT_ERR) {
3537 dictReplace(c->db->dict,c->argv[j],c->argv[j+1]);
3538 incrRefCount(c->argv[j+1]);
3539 } else {
3540 incrRefCount(c->argv[j]);
3541 incrRefCount(c->argv[j+1]);
3542 }
3543 removeExpire(c->db,c->argv[j]);
3544 }
3545 server.dirty += (c->argc-1)/2;
3546 addReply(c, nx ? shared.cone : shared.ok);
3547 }
3548
3549 static void msetCommand(redisClient *c) {
3550 msetGenericCommand(c,0);
3551 }
3552
3553 static void msetnxCommand(redisClient *c) {
3554 msetGenericCommand(c,1);
3555 }
3556
3557 static void incrDecrCommand(redisClient *c, long long incr) {
3558 long long value;
3559 int retval;
3560 robj *o;
3561
3562 o = lookupKeyWrite(c->db,c->argv[1]);
3563 if (o == NULL) {
3564 value = 0;
3565 } else {
3566 if (o->type != REDIS_STRING) {
3567 value = 0;
3568 } else {
3569 char *eptr;
3570
3571 if (o->encoding == REDIS_ENCODING_RAW)
3572 value = strtoll(o->ptr, &eptr, 10);
3573 else if (o->encoding == REDIS_ENCODING_INT)
3574 value = (long)o->ptr;
3575 else
3576 redisAssert(1 != 1);
3577 }
3578 }
3579
3580 value += incr;
3581 o = createObject(REDIS_STRING,sdscatprintf(sdsempty(),"%lld",value));
3582 tryObjectEncoding(o);
3583 retval = dictAdd(c->db->dict,c->argv[1],o);
3584 if (retval == DICT_ERR) {
3585 dictReplace(c->db->dict,c->argv[1],o);
3586 removeExpire(c->db,c->argv[1]);
3587 } else {
3588 incrRefCount(c->argv[1]);
3589 }
3590 server.dirty++;
3591 addReply(c,shared.colon);
3592 addReply(c,o);
3593 addReply(c,shared.crlf);
3594 }
3595
3596 static void incrCommand(redisClient *c) {
3597 incrDecrCommand(c,1);
3598 }
3599
3600 static void decrCommand(redisClient *c) {
3601 incrDecrCommand(c,-1);
3602 }
3603
3604 static void incrbyCommand(redisClient *c) {
3605 long long incr = strtoll(c->argv[2]->ptr, NULL, 10);
3606 incrDecrCommand(c,incr);
3607 }
3608
3609 static void decrbyCommand(redisClient *c) {
3610 long long incr = strtoll(c->argv[2]->ptr, NULL, 10);
3611 incrDecrCommand(c,-incr);
3612 }
3613
3614 /* ========================= Type agnostic commands ========================= */
3615
3616 static void delCommand(redisClient *c) {
3617 int deleted = 0, j;
3618
3619 for (j = 1; j < c->argc; j++) {
3620 if (deleteKey(c->db,c->argv[j])) {
3621 server.dirty++;
3622 deleted++;
3623 }
3624 }
3625 switch(deleted) {
3626 case 0:
3627 addReply(c,shared.czero);
3628 break;
3629 case 1:
3630 addReply(c,shared.cone);
3631 break;
3632 default:
3633 addReplySds(c,sdscatprintf(sdsempty(),":%d\r\n",deleted));
3634 break;
3635 }
3636 }
3637
3638 static void existsCommand(redisClient *c) {
3639 addReply(c,lookupKeyRead(c->db,c->argv[1]) ? shared.cone : shared.czero);
3640 }
3641
3642 static void selectCommand(redisClient *c) {
3643 int id = atoi(c->argv[1]->ptr);
3644
3645 if (selectDb(c,id) == REDIS_ERR) {
3646 addReplySds(c,sdsnew("-ERR invalid DB index\r\n"));
3647 } else {
3648 addReply(c,shared.ok);
3649 }
3650 }
3651
3652 static void randomkeyCommand(redisClient *c) {
3653 dictEntry *de;
3654
3655 while(1) {
3656 de = dictGetRandomKey(c->db->dict);
3657 if (!de || expireIfNeeded(c->db,dictGetEntryKey(de)) == 0) break;
3658 }
3659 if (de == NULL) {
3660 addReply(c,shared.plus);
3661 addReply(c,shared.crlf);
3662 } else {
3663 addReply(c,shared.plus);
3664 addReply(c,dictGetEntryKey(de));
3665 addReply(c,shared.crlf);
3666 }
3667 }
3668
3669 static void keysCommand(redisClient *c) {
3670 dictIterator *di;
3671 dictEntry *de;
3672 sds pattern = c->argv[1]->ptr;
3673 int plen = sdslen(pattern);
3674 unsigned long numkeys = 0, keyslen = 0;
3675 robj *lenobj = createObject(REDIS_STRING,NULL);
3676
3677 di = dictGetIterator(c->db->dict);
3678 addReply(c,lenobj);
3679 decrRefCount(lenobj);
3680 while((de = dictNext(di)) != NULL) {
3681 robj *keyobj = dictGetEntryKey(de);
3682
3683 sds key = keyobj->ptr;
3684 if ((pattern[0] == '*' && pattern[1] == '\0') ||
3685 stringmatchlen(pattern,plen,key,sdslen(key),0)) {
3686 if (expireIfNeeded(c->db,keyobj) == 0) {
3687 if (numkeys != 0)
3688 addReply(c,shared.space);
3689 addReply(c,keyobj);
3690 numkeys++;
3691 keyslen += sdslen(key);
3692 }
3693 }
3694 }
3695 dictReleaseIterator(di);
3696 lenobj->ptr = sdscatprintf(sdsempty(),"$%lu\r\n",keyslen+(numkeys ? (numkeys-1) : 0));
3697 addReply(c,shared.crlf);
3698 }
3699
3700 static void dbsizeCommand(redisClient *c) {
3701 addReplySds(c,
3702 sdscatprintf(sdsempty(),":%lu\r\n",dictSize(c->db->dict)));
3703 }
3704
3705 static void lastsaveCommand(redisClient *c) {
3706 addReplySds(c,
3707 sdscatprintf(sdsempty(),":%lu\r\n",server.lastsave));
3708 }
3709
3710 static void typeCommand(redisClient *c) {
3711 robj *o;
3712 char *type;
3713
3714 o = lookupKeyRead(c->db,c->argv[1]);
3715 if (o == NULL) {
3716 type = "+none";
3717 } else {
3718 switch(o->type) {
3719 case REDIS_STRING: type = "+string"; break;
3720 case REDIS_LIST: type = "+list"; break;
3721 case REDIS_SET: type = "+set"; break;
3722 case REDIS_ZSET: type = "+zset"; break;
3723 default: type = "unknown"; break;
3724 }
3725 }
3726 addReplySds(c,sdsnew(type));
3727 addReply(c,shared.crlf);
3728 }
3729
3730 static void saveCommand(redisClient *c) {
3731 if (server.bgsavechildpid != -1) {
3732 addReplySds(c,sdsnew("-ERR background save in progress\r\n"));
3733 return;
3734 }
3735 if (rdbSave(server.dbfilename) == REDIS_OK) {
3736 addReply(c,shared.ok);
3737 } else {
3738 addReply(c,shared.err);
3739 }
3740 }
3741
3742 static void bgsaveCommand(redisClient *c) {
3743 if (server.bgsavechildpid != -1) {
3744 addReplySds(c,sdsnew("-ERR background save already in progress\r\n"));
3745 return;
3746 }
3747 if (rdbSaveBackground(server.dbfilename) == REDIS_OK) {
3748 char *status = "+Background saving started\r\n";
3749 addReplySds(c,sdsnew(status));
3750 } else {
3751 addReply(c,shared.err);
3752 }
3753 }
3754
3755 static void shutdownCommand(redisClient *c) {
3756 redisLog(REDIS_WARNING,"User requested shutdown, saving DB...");
3757 /* Kill the saving child if there is a background saving in progress.
3758 We want to avoid race conditions, for instance our saving child may
3759 overwrite the synchronous saving did by SHUTDOWN. */
3760 if (server.bgsavechildpid != -1) {
3761 redisLog(REDIS_WARNING,"There is a live saving child. Killing it!");
3762 kill(server.bgsavechildpid,SIGKILL);
3763 rdbRemoveTempFile(server.bgsavechildpid);
3764 }
3765 if (server.appendonly) {
3766 /* Append only file: fsync() the AOF and exit */
3767 fsync(server.appendfd);
3768 exit(0);
3769 } else {
3770 /* Snapshotting. Perform a SYNC SAVE and exit */
3771 if (rdbSave(server.dbfilename) == REDIS_OK) {
3772 if (server.daemonize)
3773 unlink(server.pidfile);
3774 redisLog(REDIS_WARNING,"%zu bytes used at exit",zmalloc_used_memory());
3775 redisLog(REDIS_WARNING,"Server exit now, bye bye...");
3776 exit(0);
3777 } else {
3778 /* Ooops.. error saving! The best we can do is to continue operating.
3779 * Note that if there was a background saving process, in the next
3780 * cron() Redis will be notified that the background saving aborted,
3781 * handling special stuff like slaves pending for synchronization... */
3782 redisLog(REDIS_WARNING,"Error trying to save the DB, can't exit");
3783 addReplySds(c,sdsnew("-ERR can't quit, problems saving the DB\r\n"));
3784 }
3785 }
3786 }
3787
3788 static void renameGenericCommand(redisClient *c, int nx) {
3789 robj *o;
3790
3791 /* To use the same key as src and dst is probably an error */
3792 if (sdscmp(c->argv[1]->ptr,c->argv[2]->ptr) == 0) {
3793 addReply(c,shared.sameobjecterr);
3794 return;
3795 }
3796
3797 o = lookupKeyWrite(c->db,c->argv[1]);
3798 if (o == NULL) {
3799 addReply(c,shared.nokeyerr);
3800 return;
3801 }
3802 incrRefCount(o);
3803 deleteIfVolatile(c->db,c->argv[2]);
3804 if (dictAdd(c->db->dict,c->argv[2],o) == DICT_ERR) {
3805 if (nx) {
3806 decrRefCount(o);
3807 addReply(c,shared.czero);
3808 return;
3809 }
3810 dictReplace(c->db->dict,c->argv[2],o);
3811 } else {
3812 incrRefCount(c->argv[2]);
3813 }
3814 deleteKey(c->db,c->argv[1]);
3815 server.dirty++;
3816 addReply(c,nx ? shared.cone : shared.ok);
3817 }
3818
3819 static void renameCommand(redisClient *c) {
3820 renameGenericCommand(c,0);
3821 }
3822
3823 static void renamenxCommand(redisClient *c) {
3824 renameGenericCommand(c,1);
3825 }
3826
3827 static void moveCommand(redisClient *c) {
3828 robj *o;
3829 redisDb *src, *dst;
3830 int srcid;
3831
3832 /* Obtain source and target DB pointers */
3833 src = c->db;
3834 srcid = c->db->id;
3835 if (selectDb(c,atoi(c->argv[2]->ptr)) == REDIS_ERR) {
3836 addReply(c,shared.outofrangeerr);
3837 return;
3838 }
3839 dst = c->db;
3840 selectDb(c,srcid); /* Back to the source DB */
3841
3842 /* If the user is moving using as target the same
3843 * DB as the source DB it is probably an error. */
3844 if (src == dst) {
3845 addReply(c,shared.sameobjecterr);
3846 return;
3847 }
3848
3849 /* Check if the element exists and get a reference */
3850 o = lookupKeyWrite(c->db,c->argv[1]);
3851 if (!o) {
3852 addReply(c,shared.czero);
3853 return;
3854 }
3855
3856 /* Try to add the element to the target DB */
3857 deleteIfVolatile(dst,c->argv[1]);
3858 if (dictAdd(dst->dict,c->argv[1],o) == DICT_ERR) {
3859 addReply(c,shared.czero);
3860 return;
3861 }
3862 incrRefCount(c->argv[1]);
3863 incrRefCount(o);
3864
3865 /* OK! key moved, free the entry in the source DB */
3866 deleteKey(src,c->argv[1]);
3867 server.dirty++;
3868 addReply(c,shared.cone);
3869 }
3870
3871 /* =================================== Lists ================================ */
3872 static void pushGenericCommand(redisClient *c, int where) {
3873 robj *lobj;
3874 list *list;
3875
3876 lobj = lookupKeyWrite(c->db,c->argv[1]);
3877 if (lobj == NULL) {
3878 if (handleClientsWaitingListPush(c,c->argv[1],c->argv[2])) {
3879 addReply(c,shared.ok);
3880 return;
3881 }
3882 lobj = createListObject();
3883 list = lobj->ptr;
3884 if (where == REDIS_HEAD) {
3885 listAddNodeHead(list,c->argv[2]);
3886 } else {
3887 listAddNodeTail(list,c->argv[2]);
3888 }
3889 dictAdd(c->db->dict,c->argv[1],lobj);
3890 incrRefCount(c->argv[1]);
3891 incrRefCount(c->argv[2]);
3892 } else {
3893 if (lobj->type != REDIS_LIST) {
3894 addReply(c,shared.wrongtypeerr);
3895 return;
3896 }
3897 if (handleClientsWaitingListPush(c,c->argv[1],c->argv[2])) {
3898 addReply(c,shared.ok);
3899 return;
3900 }
3901 list = lobj->ptr;
3902 if (where == REDIS_HEAD) {
3903 listAddNodeHead(list,c->argv[2]);
3904 } else {
3905 listAddNodeTail(list,c->argv[2]);
3906 }
3907 incrRefCount(c->argv[2]);
3908 }
3909 server.dirty++;
3910 addReply(c,shared.ok);
3911 }
3912
3913 static void lpushCommand(redisClient *c) {
3914 pushGenericCommand(c,REDIS_HEAD);
3915 }
3916
3917 static void rpushCommand(redisClient *c) {
3918 pushGenericCommand(c,REDIS_TAIL);
3919 }
3920
3921 static void llenCommand(redisClient *c) {
3922 robj *o;
3923 list *l;
3924
3925 o = lookupKeyRead(c->db,c->argv[1]);
3926 if (o == NULL) {
3927 addReply(c,shared.czero);
3928 return;
3929 } else {
3930 if (o->type != REDIS_LIST) {
3931 addReply(c,shared.wrongtypeerr);
3932 } else {
3933 l = o->ptr;
3934 addReplySds(c,sdscatprintf(sdsempty(),":%d\r\n",listLength(l)));
3935 }
3936 }
3937 }
3938
3939 static void lindexCommand(redisClient *c) {
3940 robj *o;
3941 int index = atoi(c->argv[2]->ptr);
3942
3943 o = lookupKeyRead(c->db,c->argv[1]);
3944 if (o == NULL) {
3945 addReply(c,shared.nullbulk);
3946 } else {
3947 if (o->type != REDIS_LIST) {
3948 addReply(c,shared.wrongtypeerr);
3949 } else {
3950 list *list = o->ptr;
3951 listNode *ln;
3952
3953 ln = listIndex(list, index);
3954 if (ln == NULL) {
3955 addReply(c,shared.nullbulk);
3956 } else {
3957 robj *ele = listNodeValue(ln);
3958 addReplyBulkLen(c,ele);
3959 addReply(c,ele);
3960 addReply(c,shared.crlf);
3961 }
3962 }
3963 }
3964 }
3965
3966 static void lsetCommand(redisClient *c) {
3967 robj *o;
3968 int index = atoi(c->argv[2]->ptr);
3969
3970 o = lookupKeyWrite(c->db,c->argv[1]);
3971 if (o == NULL) {
3972 addReply(c,shared.nokeyerr);
3973 } else {
3974 if (o->type != REDIS_LIST) {
3975 addReply(c,shared.wrongtypeerr);
3976 } else {
3977 list *list = o->ptr;
3978 listNode *ln;
3979
3980 ln = listIndex(list, index);
3981 if (ln == NULL) {
3982 addReply(c,shared.outofrangeerr);
3983 } else {
3984 robj *ele = listNodeValue(ln);
3985
3986 decrRefCount(ele);
3987 listNodeValue(ln) = c->argv[3];
3988 incrRefCount(c->argv[3]);
3989 addReply(c,shared.ok);
3990 server.dirty++;
3991 }
3992 }
3993 }
3994 }
3995
3996 static void popGenericCommand(redisClient *c, int where) {
3997 robj *o;
3998
3999 o = lookupKeyWrite(c->db,c->argv[1]);
4000 if (o == NULL) {
4001 addReply(c,shared.nullbulk);
4002 } else {
4003 if (o->type != REDIS_LIST) {
4004 addReply(c,shared.wrongtypeerr);
4005 } else {
4006 list *list = o->ptr;
4007 listNode *ln;
4008
4009 if (where == REDIS_HEAD)
4010 ln = listFirst(list);
4011 else
4012 ln = listLast(list);
4013
4014 if (ln == NULL) {
4015 addReply(c,shared.nullbulk);
4016 } else {
4017 robj *ele = listNodeValue(ln);
4018 addReplyBulkLen(c,ele);
4019 addReply(c,ele);
4020 addReply(c,shared.crlf);
4021 listDelNode(list,ln);
4022 server.dirty++;
4023 }
4024 }
4025 }
4026 }
4027
4028 static void lpopCommand(redisClient *c) {
4029 popGenericCommand(c,REDIS_HEAD);
4030 }
4031
4032 static void rpopCommand(redisClient *c) {
4033 popGenericCommand(c,REDIS_TAIL);
4034 }
4035
4036 static void lrangeCommand(redisClient *c) {
4037 robj *o;
4038 int start = atoi(c->argv[2]->ptr);
4039 int end = atoi(c->argv[3]->ptr);
4040
4041 o = lookupKeyRead(c->db,c->argv[1]);
4042 if (o == NULL) {
4043 addReply(c,shared.nullmultibulk);
4044 } else {
4045 if (o->type != REDIS_LIST) {
4046 addReply(c,shared.wrongtypeerr);
4047 } else {
4048 list *list = o->ptr;
4049 listNode *ln;
4050 int llen = listLength(list);
4051 int rangelen, j;
4052 robj *ele;
4053
4054 /* convert negative indexes */
4055 if (start < 0) start = llen+start;
4056 if (end < 0) end = llen+end;
4057 if (start < 0) start = 0;
4058 if (end < 0) end = 0;
4059
4060 /* indexes sanity checks */
4061 if (start > end || start >= llen) {
4062 /* Out of range start or start > end result in empty list */
4063 addReply(c,shared.emptymultibulk);
4064 return;
4065 }
4066 if (end >= llen) end = llen-1;
4067 rangelen = (end-start)+1;
4068
4069 /* Return the result in form of a multi-bulk reply */
4070 ln = listIndex(list, start);
4071 addReplySds(c,sdscatprintf(sdsempty(),"*%d\r\n",rangelen));
4072 for (j = 0; j < rangelen; j++) {
4073 ele = listNodeValue(ln);
4074 addReplyBulkLen(c,ele);
4075 addReply(c,ele);
4076 addReply(c,shared.crlf);
4077 ln = ln->next;
4078 }
4079 }
4080 }
4081 }
4082
4083 static void ltrimCommand(redisClient *c) {
4084 robj *o;
4085 int start = atoi(c->argv[2]->ptr);
4086 int end = atoi(c->argv[3]->ptr);
4087
4088 o = lookupKeyWrite(c->db,c->argv[1]);
4089 if (o == NULL) {
4090 addReply(c,shared.ok);
4091 } else {
4092 if (o->type != REDIS_LIST) {
4093 addReply(c,shared.wrongtypeerr);
4094 } else {
4095 list *list = o->ptr;
4096 listNode *ln;
4097 int llen = listLength(list);
4098 int j, ltrim, rtrim;
4099
4100 /* convert negative indexes */
4101 if (start < 0) start = llen+start;
4102 if (end < 0) end = llen+end;
4103 if (start < 0) start = 0;
4104 if (end < 0) end = 0;
4105
4106 /* indexes sanity checks */
4107 if (start > end || start >= llen) {
4108 /* Out of range start or start > end result in empty list */
4109 ltrim = llen;
4110 rtrim = 0;
4111 } else {
4112 if (end >= llen) end = llen-1;
4113 ltrim = start;
4114 rtrim = llen-end-1;
4115 }
4116
4117 /* Remove list elements to perform the trim */
4118 for (j = 0; j < ltrim; j++) {
4119 ln = listFirst(list);
4120 listDelNode(list,ln);
4121 }
4122 for (j = 0; j < rtrim; j++) {
4123 ln = listLast(list);
4124 listDelNode(list,ln);
4125 }
4126 server.dirty++;
4127 addReply(c,shared.ok);
4128 }
4129 }
4130 }
4131
4132 static void lremCommand(redisClient *c) {
4133 robj *o;
4134
4135 o = lookupKeyWrite(c->db,c->argv[1]);
4136 if (o == NULL) {
4137 addReply(c,shared.czero);
4138 } else {
4139 if (o->type != REDIS_LIST) {
4140 addReply(c,shared.wrongtypeerr);
4141 } else {
4142 list *list = o->ptr;
4143 listNode *ln, *next;
4144 int toremove = atoi(c->argv[2]->ptr);
4145 int removed = 0;
4146 int fromtail = 0;
4147
4148 if (toremove < 0) {
4149 toremove = -toremove;
4150 fromtail = 1;
4151 }
4152 ln = fromtail ? list->tail : list->head;
4153 while (ln) {
4154 robj *ele = listNodeValue(ln);
4155
4156 next = fromtail ? ln->prev : ln->next;
4157 if (compareStringObjects(ele,c->argv[3]) == 0) {
4158 listDelNode(list,ln);
4159 server.dirty++;
4160 removed++;
4161 if (toremove && removed == toremove) break;
4162 }
4163 ln = next;
4164 }
4165 addReplySds(c,sdscatprintf(sdsempty(),":%d\r\n",removed));
4166 }
4167 }
4168 }
4169
4170 /* This is the semantic of this command:
4171 * RPOPLPUSH srclist dstlist:
4172 * IF LLEN(srclist) > 0
4173 * element = RPOP srclist
4174 * LPUSH dstlist element
4175 * RETURN element
4176 * ELSE
4177 * RETURN nil
4178 * END
4179 * END
4180 *
4181 * The idea is to be able to get an element from a list in a reliable way
4182 * since the element is not just returned but pushed against another list
4183 * as well. This command was originally proposed by Ezra Zygmuntowicz.
4184 */
4185 static void rpoplpushcommand(redisClient *c) {
4186 robj *sobj;
4187
4188 sobj = lookupKeyWrite(c->db,c->argv[1]);
4189 if (sobj == NULL) {
4190 addReply(c,shared.nullbulk);
4191 } else {
4192 if (sobj->type != REDIS_LIST) {
4193 addReply(c,shared.wrongtypeerr);
4194 } else {
4195 list *srclist = sobj->ptr;
4196 listNode *ln = listLast(srclist);
4197
4198 if (ln == NULL) {
4199 addReply(c,shared.nullbulk);
4200 } else {
4201 robj *dobj = lookupKeyWrite(c->db,c->argv[2]);
4202 robj *ele = listNodeValue(ln);
4203 list *dstlist;
4204
4205 if (dobj && dobj->type != REDIS_LIST) {
4206 addReply(c,shared.wrongtypeerr);
4207 return;
4208 }
4209
4210 /* Add the element to the target list (unless it's directly
4211 * passed to some BLPOP-ing client */
4212 if (!handleClientsWaitingListPush(c,c->argv[2],ele)) {
4213 if (dobj == NULL) {
4214 /* Create the list if the key does not exist */
4215 dobj = createListObject();
4216 dictAdd(c->db->dict,c->argv[2],dobj);
4217 incrRefCount(c->argv[2]);
4218 }
4219 dstlist = dobj->ptr;
4220 listAddNodeHead(dstlist,ele);
4221 incrRefCount(ele);
4222 }
4223
4224 /* Send the element to the client as reply as well */
4225 addReplyBulkLen(c,ele);
4226 addReply(c,ele);
4227 addReply(c,shared.crlf);
4228
4229 /* Finally remove the element from the source list */
4230 listDelNode(srclist,ln);
4231 server.dirty++;
4232 }
4233 }
4234 }
4235 }
4236
4237
4238 /* ==================================== Sets ================================ */
4239
4240 static void saddCommand(redisClient *c) {
4241 robj *set;
4242
4243 set = lookupKeyWrite(c->db,c->argv[1]);
4244 if (set == NULL) {
4245 set = createSetObject();
4246 dictAdd(c->db->dict,c->argv[1],set);
4247 incrRefCount(c->argv[1]);
4248 } else {
4249 if (set->type != REDIS_SET) {
4250 addReply(c,shared.wrongtypeerr);
4251 return;
4252 }
4253 }
4254 if (dictAdd(set->ptr,c->argv[2],NULL) == DICT_OK) {
4255 incrRefCount(c->argv[2]);
4256 server.dirty++;
4257 addReply(c,shared.cone);
4258 } else {
4259 addReply(c,shared.czero);
4260 }
4261 }
4262
4263 static void sremCommand(redisClient *c) {
4264 robj *set;
4265
4266 set = lookupKeyWrite(c->db,c->argv[1]);
4267 if (set == NULL) {
4268 addReply(c,shared.czero);
4269 } else {
4270 if (set->type != REDIS_SET) {
4271 addReply(c,shared.wrongtypeerr);
4272 return;
4273 }
4274 if (dictDelete(set->ptr,c->argv[2]) == DICT_OK) {
4275 server.dirty++;
4276 if (htNeedsResize(set->ptr)) dictResize(set->ptr);
4277 addReply(c,shared.cone);
4278 } else {
4279 addReply(c,shared.czero);
4280 }
4281 }
4282 }
4283
4284 static void smoveCommand(redisClient *c) {
4285 robj *srcset, *dstset;
4286
4287 srcset = lookupKeyWrite(c->db,c->argv[1]);
4288 dstset = lookupKeyWrite(c->db,c->argv[2]);
4289
4290 /* If the source key does not exist return 0, if it's of the wrong type
4291 * raise an error */
4292 if (srcset == NULL || srcset->type != REDIS_SET) {
4293 addReply(c, srcset ? shared.wrongtypeerr : shared.czero);
4294 return;
4295 }
4296 /* Error if the destination key is not a set as well */
4297 if (dstset && dstset->type != REDIS_SET) {
4298 addReply(c,shared.wrongtypeerr);
4299 return;
4300 }
4301 /* Remove the element from the source set */
4302 if (dictDelete(srcset->ptr,c->argv[3]) == DICT_ERR) {
4303 /* Key not found in the src set! return zero */
4304 addReply(c,shared.czero);
4305 return;
4306 }
4307 server.dirty++;
4308 /* Add the element to the destination set */
4309 if (!dstset) {
4310 dstset = createSetObject();
4311 dictAdd(c->db->dict,c->argv[2],dstset);
4312 incrRefCount(c->argv[2]);
4313 }
4314 if (dictAdd(dstset->ptr,c->argv[3],NULL) == DICT_OK)
4315 incrRefCount(c->argv[3]);
4316 addReply(c,shared.cone);
4317 }
4318
4319 static void sismemberCommand(redisClient *c) {
4320 robj *set;
4321
4322 set = lookupKeyRead(c->db,c->argv[1]);
4323 if (set == NULL) {
4324 addReply(c,shared.czero);
4325 } else {
4326 if (set->type != REDIS_SET) {
4327 addReply(c,shared.wrongtypeerr);
4328 return;
4329 }
4330 if (dictFind(set->ptr,c->argv[2]))
4331 addReply(c,shared.cone);
4332 else
4333 addReply(c,shared.czero);
4334 }
4335 }
4336
4337 static void scardCommand(redisClient *c) {
4338 robj *o;
4339 dict *s;
4340
4341 o = lookupKeyRead(c->db,c->argv[1]);
4342 if (o == NULL) {
4343 addReply(c,shared.czero);
4344 return;
4345 } else {
4346 if (o->type != REDIS_SET) {
4347 addReply(c,shared.wrongtypeerr);
4348 } else {
4349 s = o->ptr;
4350 addReplySds(c,sdscatprintf(sdsempty(),":%lu\r\n",
4351 dictSize(s)));
4352 }
4353 }
4354 }
4355
4356 static void spopCommand(redisClient *c) {
4357 robj *set;
4358 dictEntry *de;
4359
4360 set = lookupKeyWrite(c->db,c->argv[1]);
4361 if (set == NULL) {
4362 addReply(c,shared.nullbulk);
4363 } else {
4364 if (set->type != REDIS_SET) {
4365 addReply(c,shared.wrongtypeerr);
4366 return;
4367 }
4368 de = dictGetRandomKey(set->ptr);
4369 if (de == NULL) {
4370 addReply(c,shared.nullbulk);
4371 } else {
4372 robj *ele = dictGetEntryKey(de);
4373
4374 addReplyBulkLen(c,ele);
4375 addReply(c,ele);
4376 addReply(c,shared.crlf);
4377 dictDelete(set->ptr,ele);
4378 if (htNeedsResize(set->ptr)) dictResize(set->ptr);
4379 server.dirty++;
4380 }
4381 }
4382 }
4383
4384 static void srandmemberCommand(redisClient *c) {
4385 robj *set;
4386 dictEntry *de;
4387
4388 set = lookupKeyRead(c->db,c->argv[1]);
4389 if (set == NULL) {
4390 addReply(c,shared.nullbulk);
4391 } else {
4392 if (set->type != REDIS_SET) {
4393 addReply(c,shared.wrongtypeerr);
4394 return;
4395 }
4396 de = dictGetRandomKey(set->ptr);
4397 if (de == NULL) {
4398 addReply(c,shared.nullbulk);
4399 } else {
4400 robj *ele = dictGetEntryKey(de);
4401
4402 addReplyBulkLen(c,ele);
4403 addReply(c,ele);
4404 addReply(c,shared.crlf);
4405 }
4406 }
4407 }
4408
4409 static int qsortCompareSetsByCardinality(const void *s1, const void *s2) {
4410 dict **d1 = (void*) s1, **d2 = (void*) s2;
4411
4412 return dictSize(*d1)-dictSize(*d2);
4413 }
4414
4415 static void sinterGenericCommand(redisClient *c, robj **setskeys, unsigned long setsnum, robj *dstkey) {
4416 dict **dv = zmalloc(sizeof(dict*)*setsnum);
4417 dictIterator *di;
4418 dictEntry *de;
4419 robj *lenobj = NULL, *dstset = NULL;
4420 unsigned long j, cardinality = 0;
4421
4422 for (j = 0; j < setsnum; j++) {
4423 robj *setobj;
4424
4425 setobj = dstkey ?
4426 lookupKeyWrite(c->db,setskeys[j]) :
4427 lookupKeyRead(c->db,setskeys[j]);
4428 if (!setobj) {
4429 zfree(dv);
4430 if (dstkey) {
4431 if (deleteKey(c->db,dstkey))
4432 server.dirty++;
4433 addReply(c,shared.czero);
4434 } else {
4435 addReply(c,shared.nullmultibulk);
4436 }
4437 return;
4438 }
4439 if (setobj->type != REDIS_SET) {
4440 zfree(dv);
4441 addReply(c,shared.wrongtypeerr);
4442 return;
4443 }
4444 dv[j] = setobj->ptr;
4445 }
4446 /* Sort sets from the smallest to largest, this will improve our
4447 * algorithm's performace */
4448 qsort(dv,setsnum,sizeof(dict*),qsortCompareSetsByCardinality);
4449
4450 /* The first thing we should output is the total number of elements...
4451 * since this is a multi-bulk write, but at this stage we don't know
4452 * the intersection set size, so we use a trick, append an empty object
4453 * to the output list and save the pointer to later modify it with the
4454 * right length */
4455 if (!dstkey) {
4456 lenobj = createObject(REDIS_STRING,NULL);
4457 addReply(c,lenobj);
4458 decrRefCount(lenobj);
4459 } else {
4460 /* If we have a target key where to store the resulting set
4461 * create this key with an empty set inside */
4462 dstset = createSetObject();
4463 }
4464
4465 /* Iterate all the elements of the first (smallest) set, and test
4466 * the element against all the other sets, if at least one set does
4467 * not include the element it is discarded */
4468 di = dictGetIterator(dv[0]);
4469
4470 while((de = dictNext(di)) != NULL) {
4471 robj *ele;
4472
4473 for (j = 1; j < setsnum; j++)
4474 if (dictFind(dv[j],dictGetEntryKey(de)) == NULL) break;
4475 if (j != setsnum)
4476 continue; /* at least one set does not contain the member */
4477 ele = dictGetEntryKey(de);
4478 if (!dstkey) {
4479 addReplyBulkLen(c,ele);
4480 addReply(c,ele);
4481 addReply(c,shared.crlf);
4482 cardinality++;
4483 } else {
4484 dictAdd(dstset->ptr,ele,NULL);
4485 incrRefCount(ele);
4486 }
4487 }
4488 dictReleaseIterator(di);
4489
4490 if (dstkey) {
4491 /* Store the resulting set into the target */
4492 deleteKey(c->db,dstkey);
4493 dictAdd(c->db->dict,dstkey,dstset);
4494 incrRefCount(dstkey);
4495 }
4496
4497 if (!dstkey) {
4498 lenobj->ptr = sdscatprintf(sdsempty(),"*%lu\r\n",cardinality);
4499 } else {
4500 addReplySds(c,sdscatprintf(sdsempty(),":%lu\r\n",
4501 dictSize((dict*)dstset->ptr)));
4502 server.dirty++;
4503 }
4504 zfree(dv);
4505 }
4506
4507 static void sinterCommand(redisClient *c) {
4508 sinterGenericCommand(c,c->argv+1,c->argc-1,NULL);
4509 }
4510
4511 static void sinterstoreCommand(redisClient *c) {
4512 sinterGenericCommand(c,c->argv+2,c->argc-2,c->argv[1]);
4513 }
4514
4515 #define REDIS_OP_UNION 0
4516 #define REDIS_OP_DIFF 1
4517
4518 static void sunionDiffGenericCommand(redisClient *c, robj **setskeys, int setsnum, robj *dstkey, int op) {
4519 dict **dv = zmalloc(sizeof(dict*)*setsnum);
4520 dictIterator *di;
4521 dictEntry *de;
4522 robj *dstset = NULL;
4523 int j, cardinality = 0;
4524
4525 for (j = 0; j < setsnum; j++) {
4526 robj *setobj;
4527
4528 setobj = dstkey ?
4529 lookupKeyWrite(c->db,setskeys[j]) :
4530 lookupKeyRead(c->db,setskeys[j]);
4531 if (!setobj) {
4532 dv[j] = NULL;
4533 continue;
4534 }
4535 if (setobj->type != REDIS_SET) {
4536 zfree(dv);
4537 addReply(c,shared.wrongtypeerr);
4538 return;
4539 }
4540 dv[j] = setobj->ptr;
4541 }
4542
4543 /* We need a temp set object to store our union. If the dstkey
4544 * is not NULL (that is, we are inside an SUNIONSTORE operation) then
4545 * this set object will be the resulting object to set into the target key*/
4546 dstset = createSetObject();
4547
4548 /* Iterate all the elements of all the sets, add every element a single
4549 * time to the result set */
4550 for (j = 0; j < setsnum; j++) {
4551 if (op == REDIS_OP_DIFF && j == 0 && !dv[j]) break; /* result set is empty */
4552 if (!dv[j]) continue; /* non existing keys are like empty sets */
4553
4554 di = dictGetIterator(dv[j]);
4555
4556 while((de = dictNext(di)) != NULL) {
4557 robj *ele;
4558
4559 /* dictAdd will not add the same element multiple times */
4560 ele = dictGetEntryKey(de);
4561 if (op == REDIS_OP_UNION || j == 0) {
4562 if (dictAdd(dstset->ptr,ele,NULL) == DICT_OK) {
4563 incrRefCount(ele);
4564 cardinality++;
4565 }
4566 } else if (op == REDIS_OP_DIFF) {
4567 if (dictDelete(dstset->ptr,ele) == DICT_OK) {
4568 cardinality--;
4569 }
4570 }
4571 }
4572 dictReleaseIterator(di);
4573
4574 if (op == REDIS_OP_DIFF && cardinality == 0) break; /* result set is empty */
4575 }
4576
4577 /* Output the content of the resulting set, if not in STORE mode */
4578 if (!dstkey) {
4579 addReplySds(c,sdscatprintf(sdsempty(),"*%d\r\n",cardinality));
4580 di = dictGetIterator(dstset->ptr);
4581 while((de = dictNext(di)) != NULL) {
4582 robj *ele;
4583
4584 ele = dictGetEntryKey(de);
4585 addReplyBulkLen(c,ele);
4586 addReply(c,ele);
4587 addReply(c,shared.crlf);
4588 }
4589 dictReleaseIterator(di);
4590 } else {
4591 /* If we have a target key where to store the resulting set
4592 * create this key with the result set inside */
4593 deleteKey(c->db,dstkey);
4594 dictAdd(c->db->dict,dstkey,dstset);
4595 incrRefCount(dstkey);
4596 }
4597
4598 /* Cleanup */
4599 if (!dstkey) {
4600 decrRefCount(dstset);
4601 } else {
4602 addReplySds(c,sdscatprintf(sdsempty(),":%lu\r\n",
4603 dictSize((dict*)dstset->ptr)));
4604 server.dirty++;
4605 }
4606 zfree(dv);
4607 }
4608
4609 static void sunionCommand(redisClient *c) {
4610 sunionDiffGenericCommand(c,c->argv+1,c->argc-1,NULL,REDIS_OP_UNION);
4611 }
4612
4613 static void sunionstoreCommand(redisClient *c) {
4614 sunionDiffGenericCommand(c,c->argv+2,c->argc-2,c->argv[1],REDIS_OP_UNION);
4615 }
4616
4617 static void sdiffCommand(redisClient *c) {
4618 sunionDiffGenericCommand(c,c->argv+1,c->argc-1,NULL,REDIS_OP_DIFF);
4619 }
4620
4621 static void sdiffstoreCommand(redisClient *c) {
4622 sunionDiffGenericCommand(c,c->argv+2,c->argc-2,c->argv[1],REDIS_OP_DIFF);
4623 }
4624
4625 /* ==================================== ZSets =============================== */
4626
4627 /* ZSETs are ordered sets using two data structures to hold the same elements
4628 * in order to get O(log(N)) INSERT and REMOVE operations into a sorted
4629 * data structure.
4630 *
4631 * The elements are added to an hash table mapping Redis objects to scores.
4632 * At the same time the elements are added to a skip list mapping scores
4633 * to Redis objects (so objects are sorted by scores in this "view"). */
4634
4635 /* This skiplist implementation is almost a C translation of the original
4636 * algorithm described by William Pugh in "Skip Lists: A Probabilistic
4637 * Alternative to Balanced Trees", modified in three ways:
4638 * a) this implementation allows for repeated values.
4639 * b) the comparison is not just by key (our 'score') but by satellite data.
4640 * c) there is a back pointer, so it's a doubly linked list with the back
4641 * pointers being only at "level 1". This allows to traverse the list
4642 * from tail to head, useful for ZREVRANGE. */
4643
4644 static zskiplistNode *zslCreateNode(int level, double score, robj *obj) {
4645 zskiplistNode *zn = zmalloc(sizeof(*zn));
4646
4647 zn->forward = zmalloc(sizeof(zskiplistNode*) * level);
4648 zn->score = score;
4649 zn->obj = obj;
4650 return zn;
4651 }
4652
4653 static zskiplist *zslCreate(void) {
4654 int j;
4655 zskiplist *zsl;
4656
4657 zsl = zmalloc(sizeof(*zsl));
4658 zsl->level = 1;
4659 zsl->length = 0;
4660 zsl->header = zslCreateNode(ZSKIPLIST_MAXLEVEL,0,NULL);
4661 for (j = 0; j < ZSKIPLIST_MAXLEVEL; j++)
4662 zsl->header->forward[j] = NULL;
4663 zsl->header->backward = NULL;
4664 zsl->tail = NULL;
4665 return zsl;
4666 }
4667
4668 static void zslFreeNode(zskiplistNode *node) {
4669 decrRefCount(node->obj);
4670 zfree(node->forward);
4671 zfree(node);
4672 }
4673
4674 static void zslFree(zskiplist *zsl) {
4675 zskiplistNode *node = zsl->header->forward[0], *next;
4676
4677 zfree(zsl->header->forward);
4678 zfree(zsl->header);
4679 while(node) {
4680 next = node->forward[0];
4681 zslFreeNode(node);
4682 node = next;
4683 }
4684 zfree(zsl);
4685 }
4686
4687 static int zslRandomLevel(void) {
4688 int level = 1;
4689 while ((random()&0xFFFF) < (ZSKIPLIST_P * 0xFFFF))
4690 level += 1;
4691 return level;
4692 }
4693
4694 static void zslInsert(zskiplist *zsl, double score, robj *obj) {
4695 zskiplistNode *update[ZSKIPLIST_MAXLEVEL], *x;
4696 int i, level;
4697
4698 x = zsl->header;
4699 for (i = zsl->level-1; i >= 0; i--) {
4700 while (x->forward[i] &&
4701 (x->forward[i]->score < score ||
4702 (x->forward[i]->score == score &&
4703 compareStringObjects(x->forward[i]->obj,obj) < 0)))
4704 x = x->forward[i];
4705 update[i] = x;
4706 }
4707 /* we assume the key is not already inside, since we allow duplicated
4708 * scores, and the re-insertion of score and redis object should never
4709 * happpen since the caller of zslInsert() should test in the hash table
4710 * if the element is already inside or not. */
4711 level = zslRandomLevel();
4712 if (level > zsl->level) {
4713 for (i = zsl->level; i < level; i++)
4714 update[i] = zsl->header;
4715 zsl->level = level;
4716 }
4717 x = zslCreateNode(level,score,obj);
4718 for (i = 0; i < level; i++) {
4719 x->forward[i] = update[i]->forward[i];
4720 update[i]->forward[i] = x;
4721 }
4722 x->backward = (update[0] == zsl->header) ? NULL : update[0];
4723 if (x->forward[0])
4724 x->forward[0]->backward = x;
4725 else
4726 zsl->tail = x;
4727 zsl->length++;
4728 }
4729
4730 /* Delete an element with matching score/object from the skiplist. */
4731 static int zslDelete(zskiplist *zsl, double score, robj *obj) {
4732 zskiplistNode *update[ZSKIPLIST_MAXLEVEL], *x;
4733 int i;
4734
4735 x = zsl->header;
4736 for (i = zsl->level-1; i >= 0; i--) {
4737 while (x->forward[i] &&
4738 (x->forward[i]->score < score ||
4739 (x->forward[i]->score == score &&
4740 compareStringObjects(x->forward[i]->obj,obj) < 0)))
4741 x = x->forward[i];
4742 update[i] = x;
4743 }
4744 /* We may have multiple elements with the same score, what we need
4745 * is to find the element with both the right score and object. */
4746 x = x->forward[0];
4747 if (x && score == x->score && compareStringObjects(x->obj,obj) == 0) {
4748 for (i = 0; i < zsl->level; i++) {
4749 if (update[i]->forward[i] != x) break;
4750 update[i]->forward[i] = x->forward[i];
4751 }
4752 if (x->forward[0]) {
4753 x->forward[0]->backward = (x->backward == zsl->header) ?
4754 NULL : x->backward;
4755 } else {
4756 zsl->tail = x->backward;
4757 }
4758 zslFreeNode(x);
4759 while(zsl->level > 1 && zsl->header->forward[zsl->level-1] == NULL)
4760 zsl->level--;
4761 zsl->length--;
4762 return 1;
4763 } else {
4764 return 0; /* not found */
4765 }
4766 return 0; /* not found */
4767 }
4768
4769 /* Delete all the elements with score between min and max from the skiplist.
4770 * Min and mx are inclusive, so a score >= min || score <= max is deleted.
4771 * Note that this function takes the reference to the hash table view of the
4772 * sorted set, in order to remove the elements from the hash table too. */
4773 static unsigned long zslDeleteRange(zskiplist *zsl, double min, double max, dict *dict) {
4774 zskiplistNode *update[ZSKIPLIST_MAXLEVEL], *x;
4775 unsigned long removed = 0;
4776 int i;
4777
4778 x = zsl->header;
4779 for (i = zsl->level-1; i >= 0; i--) {
4780 while (x->forward[i] && x->forward[i]->score < min)
4781 x = x->forward[i];
4782 update[i] = x;
4783 }
4784 /* We may have multiple elements with the same score, what we need
4785 * is to find the element with both the right score and object. */
4786 x = x->forward[0];
4787 while (x && x->score <= max) {
4788 zskiplistNode *next;
4789
4790 for (i = 0; i < zsl->level; i++) {
4791 if (update[i]->forward[i] != x) break;
4792 update[i]->forward[i] = x->forward[i];
4793 }
4794 if (x->forward[0]) {
4795 x->forward[0]->backward = (x->backward == zsl->header) ?
4796 NULL : x->backward;
4797 } else {
4798 zsl->tail = x->backward;
4799 }
4800 next = x->forward[0];
4801 dictDelete(dict,x->obj);
4802 zslFreeNode(x);
4803 while(zsl->level > 1 && zsl->header->forward[zsl->level-1] == NULL)
4804 zsl->level--;
4805 zsl->length--;
4806 removed++;
4807 x = next;
4808 }
4809 return removed; /* not found */
4810 }
4811
4812 /* Find the first node having a score equal or greater than the specified one.
4813 * Returns NULL if there is no match. */
4814 static zskiplistNode *zslFirstWithScore(zskiplist *zsl, double score) {
4815 zskiplistNode *x;
4816 int i;
4817
4818 x = zsl->header;
4819 for (i = zsl->level-1; i >= 0; i--) {
4820 while (x->forward[i] && x->forward[i]->score < score)
4821 x = x->forward[i];
4822 }
4823 /* We may have multiple elements with the same score, what we need
4824 * is to find the element with both the right score and object. */
4825 return x->forward[0];
4826 }
4827
4828 /* The actual Z-commands implementations */
4829
4830 /* This generic command implements both ZADD and ZINCRBY.
4831 * scoreval is the score if the operation is a ZADD (doincrement == 0) or
4832 * the increment if the operation is a ZINCRBY (doincrement == 1). */
4833 static void zaddGenericCommand(redisClient *c, robj *key, robj *ele, double scoreval, int doincrement) {
4834 robj *zsetobj;
4835 zset *zs;
4836 double *score;
4837
4838 zsetobj = lookupKeyWrite(c->db,key);
4839 if (zsetobj == NULL) {
4840 zsetobj = createZsetObject();
4841 dictAdd(c->db->dict,key,zsetobj);
4842 incrRefCount(key);
4843 } else {
4844 if (zsetobj->type != REDIS_ZSET) {
4845 addReply(c,shared.wrongtypeerr);
4846 return;
4847 }
4848 }
4849 zs = zsetobj->ptr;
4850
4851 /* Ok now since we implement both ZADD and ZINCRBY here the code
4852 * needs to handle the two different conditions. It's all about setting
4853 * '*score', that is, the new score to set, to the right value. */
4854 score = zmalloc(sizeof(double));
4855 if (doincrement) {
4856 dictEntry *de;
4857
4858 /* Read the old score. If the element was not present starts from 0 */
4859 de = dictFind(zs->dict,ele);
4860 if (de) {
4861 double *oldscore = dictGetEntryVal(de);
4862 *score = *oldscore + scoreval;
4863 } else {
4864 *score = scoreval;
4865 }
4866 } else {
4867 *score = scoreval;
4868 }
4869
4870 /* What follows is a simple remove and re-insert operation that is common
4871 * to both ZADD and ZINCRBY... */
4872 if (dictAdd(zs->dict,ele,score) == DICT_OK) {
4873 /* case 1: New element */
4874 incrRefCount(ele); /* added to hash */
4875 zslInsert(zs->zsl,*score,ele);
4876 incrRefCount(ele); /* added to skiplist */
4877 server.dirty++;
4878 if (doincrement)
4879 addReplyDouble(c,*score);
4880 else
4881 addReply(c,shared.cone);
4882 } else {
4883 dictEntry *de;
4884 double *oldscore;
4885
4886 /* case 2: Score update operation */
4887 de = dictFind(zs->dict,ele);
4888 redisAssert(de != NULL);
4889 oldscore = dictGetEntryVal(de);
4890 if (*score != *oldscore) {
4891 int deleted;
4892
4893 /* Remove and insert the element in the skip list with new score */
4894 deleted = zslDelete(zs->zsl,*oldscore,ele);
4895 redisAssert(deleted != 0);
4896 zslInsert(zs->zsl,*score,ele);
4897 incrRefCount(ele);
4898 /* Update the score in the hash table */
4899 dictReplace(zs->dict,ele,score);
4900 server.dirty++;
4901 } else {
4902 zfree(score);
4903 }
4904 if (doincrement)
4905 addReplyDouble(c,*score);
4906 else
4907 addReply(c,shared.czero);
4908 }
4909 }
4910
4911 static void zaddCommand(redisClient *c) {
4912 double scoreval;
4913
4914 scoreval = strtod(c->argv[2]->ptr,NULL);
4915 zaddGenericCommand(c,c->argv[1],c->argv[3],scoreval,0);
4916 }
4917
4918 static void zincrbyCommand(redisClient *c) {
4919 double scoreval;
4920
4921 scoreval = strtod(c->argv[2]->ptr,NULL);
4922 zaddGenericCommand(c,c->argv[1],c->argv[3],scoreval,1);
4923 }
4924
4925 static void zremCommand(redisClient *c) {
4926 robj *zsetobj;
4927 zset *zs;
4928
4929 zsetobj = lookupKeyWrite(c->db,c->argv[1]);
4930 if (zsetobj == NULL) {
4931 addReply(c,shared.czero);
4932 } else {
4933 dictEntry *de;
4934 double *oldscore;
4935 int deleted;
4936
4937 if (zsetobj->type != REDIS_ZSET) {
4938 addReply(c,shared.wrongtypeerr);
4939 return;
4940 }
4941 zs = zsetobj->ptr;
4942 de = dictFind(zs->dict,c->argv[2]);
4943 if (de == NULL) {
4944 addReply(c,shared.czero);
4945 return;
4946 }
4947 /* Delete from the skiplist */
4948 oldscore = dictGetEntryVal(de);
4949 deleted = zslDelete(zs->zsl,*oldscore,c->argv[2]);
4950 redisAssert(deleted != 0);
4951
4952 /* Delete from the hash table */
4953 dictDelete(zs->dict,c->argv[2]);
4954 if (htNeedsResize(zs->dict)) dictResize(zs->dict);
4955 server.dirty++;
4956 addReply(c,shared.cone);
4957 }
4958 }
4959
4960 static void zremrangebyscoreCommand(redisClient *c) {
4961 double min = strtod(c->argv[2]->ptr,NULL);
4962 double max = strtod(c->argv[3]->ptr,NULL);
4963 robj *zsetobj;
4964 zset *zs;
4965
4966 zsetobj = lookupKeyWrite(c->db,c->argv[1]);
4967 if (zsetobj == NULL) {
4968 addReply(c,shared.czero);
4969 } else {
4970 long deleted;
4971
4972 if (zsetobj->type != REDIS_ZSET) {
4973 addReply(c,shared.wrongtypeerr);
4974 return;
4975 }
4976 zs = zsetobj->ptr;
4977 deleted = zslDeleteRange(zs->zsl,min,max,zs->dict);
4978 if (htNeedsResize(zs->dict)) dictResize(zs->dict);
4979 server.dirty += deleted;
4980 addReplySds(c,sdscatprintf(sdsempty(),":%lu\r\n",deleted));
4981 }
4982 }
4983
4984 static void zrangeGenericCommand(redisClient *c, int reverse) {
4985 robj *o;
4986 int start = atoi(c->argv[2]->ptr);
4987 int end = atoi(c->argv[3]->ptr);
4988 int withscores = 0;
4989
4990 if (c->argc == 5 && !strcasecmp(c->argv[4]->ptr,"withscores")) {
4991 withscores = 1;
4992 } else if (c->argc >= 5) {
4993 addReply(c,shared.syntaxerr);
4994 return;
4995 }
4996
4997 o = lookupKeyRead(c->db,c->argv[1]);
4998 if (o == NULL) {
4999 addReply(c,shared.nullmultibulk);
5000 } else {
5001 if (o->type != REDIS_ZSET) {
5002 addReply(c,shared.wrongtypeerr);
5003 } else {
5004 zset *zsetobj = o->ptr;
5005 zskiplist *zsl = zsetobj->zsl;
5006 zskiplistNode *ln;
5007
5008 int llen = zsl->length;
5009 int rangelen, j;
5010 robj *ele;
5011
5012 /* convert negative indexes */
5013 if (start < 0) start = llen+start;
5014 if (end < 0) end = llen+end;
5015 if (start < 0) start = 0;
5016 if (end < 0) end = 0;
5017
5018 /* indexes sanity checks */
5019 if (start > end || start >= llen) {
5020 /* Out of range start or start > end result in empty list */
5021 addReply(c,shared.emptymultibulk);
5022 return;
5023 }
5024 if (end >= llen) end = llen-1;
5025 rangelen = (end-start)+1;
5026
5027 /* Return the result in form of a multi-bulk reply */
5028 if (reverse) {
5029 ln = zsl->tail;
5030 while (start--)
5031 ln = ln->backward;
5032 } else {
5033 ln = zsl->header->forward[0];
5034 while (start--)
5035 ln = ln->forward[0];
5036 }
5037
5038 addReplySds(c,sdscatprintf(sdsempty(),"*%d\r\n",
5039 withscores ? (rangelen*2) : rangelen));
5040 for (j = 0; j < rangelen; j++) {
5041 ele = ln->obj;
5042 addReplyBulkLen(c,ele);
5043 addReply(c,ele);
5044 addReply(c,shared.crlf);
5045 if (withscores)
5046 addReplyDouble(c,ln->score);
5047 ln = reverse ? ln->backward : ln->forward[0];
5048 }
5049 }
5050 }
5051 }
5052
5053 static void zrangeCommand(redisClient *c) {
5054 zrangeGenericCommand(c,0);
5055 }
5056
5057 static void zrevrangeCommand(redisClient *c) {
5058 zrangeGenericCommand(c,1);
5059 }
5060
5061 static void zrangebyscoreCommand(redisClient *c) {
5062 robj *o;
5063 double min = strtod(c->argv[2]->ptr,NULL);
5064 double max = strtod(c->argv[3]->ptr,NULL);
5065 int offset = 0, limit = -1;
5066
5067 if (c->argc != 4 && c->argc != 7) {
5068 addReplySds(c,
5069 sdsnew("-ERR wrong number of arguments for ZRANGEBYSCORE\r\n"));
5070 return;
5071 } else if (c->argc == 7 && strcasecmp(c->argv[4]->ptr,"limit")) {
5072 addReply(c,shared.syntaxerr);
5073 return;
5074 } else if (c->argc == 7) {
5075 offset = atoi(c->argv[5]->ptr);
5076 limit = atoi(c->argv[6]->ptr);
5077 if (offset < 0) offset = 0;
5078 }
5079
5080 o = lookupKeyRead(c->db,c->argv[1]);
5081 if (o == NULL) {
5082 addReply(c,shared.nullmultibulk);
5083 } else {
5084 if (o->type != REDIS_ZSET) {
5085 addReply(c,shared.wrongtypeerr);
5086 } else {
5087 zset *zsetobj = o->ptr;
5088 zskiplist *zsl = zsetobj->zsl;
5089 zskiplistNode *ln;
5090 robj *ele, *lenobj;
5091 unsigned int rangelen = 0;
5092
5093 /* Get the first node with the score >= min */
5094 ln = zslFirstWithScore(zsl,min);
5095 if (ln == NULL) {
5096 /* No element matching the speciifed interval */
5097 addReply(c,shared.emptymultibulk);
5098 return;
5099 }
5100
5101 /* We don't know in advance how many matching elements there
5102 * are in the list, so we push this object that will represent
5103 * the multi-bulk length in the output buffer, and will "fix"
5104 * it later */
5105 lenobj = createObject(REDIS_STRING,NULL);
5106 addReply(c,lenobj);
5107 decrRefCount(lenobj);
5108
5109 while(ln && ln->score <= max) {
5110 if (offset) {
5111 offset--;
5112 ln = ln->forward[0];
5113 continue;
5114 }
5115 if (limit == 0) break;
5116 ele = ln->obj;
5117 addReplyBulkLen(c,ele);
5118 addReply(c,ele);
5119 addReply(c,shared.crlf);
5120 ln = ln->forward[0];
5121 rangelen++;
5122 if (limit > 0) limit--;
5123 }
5124 lenobj->ptr = sdscatprintf(sdsempty(),"*%d\r\n",rangelen);
5125 }
5126 }
5127 }
5128
5129 static void zcardCommand(redisClient *c) {
5130 robj *o;
5131 zset *zs;
5132
5133 o = lookupKeyRead(c->db,c->argv[1]);
5134 if (o == NULL) {
5135 addReply(c,shared.czero);
5136 return;
5137 } else {
5138 if (o->type != REDIS_ZSET) {
5139 addReply(c,shared.wrongtypeerr);
5140 } else {
5141 zs = o->ptr;
5142 addReplySds(c,sdscatprintf(sdsempty(),":%lu\r\n",zs->zsl->length));
5143 }
5144 }
5145 }
5146
5147 static void zscoreCommand(redisClient *c) {
5148 robj *o;
5149 zset *zs;
5150
5151 o = lookupKeyRead(c->db,c->argv[1]);
5152 if (o == NULL) {
5153 addReply(c,shared.nullbulk);
5154 return;
5155 } else {
5156 if (o->type != REDIS_ZSET) {
5157 addReply(c,shared.wrongtypeerr);
5158 } else {
5159 dictEntry *de;
5160
5161 zs = o->ptr;
5162 de = dictFind(zs->dict,c->argv[2]);
5163 if (!de) {
5164 addReply(c,shared.nullbulk);
5165 } else {
5166 double *score = dictGetEntryVal(de);
5167
5168 addReplyDouble(c,*score);
5169 }
5170 }
5171 }
5172 }
5173
5174 /* ========================= Non type-specific commands ==================== */
5175
5176 static void flushdbCommand(redisClient *c) {
5177 server.dirty += dictSize(c->db->dict);
5178 dictEmpty(c->db->dict);
5179 dictEmpty(c->db->expires);
5180 addReply(c,shared.ok);
5181 }
5182
5183 static void flushallCommand(redisClient *c) {
5184 server.dirty += emptyDb();
5185 addReply(c,shared.ok);
5186 rdbSave(server.dbfilename);
5187 server.dirty++;
5188 }
5189
5190 static redisSortOperation *createSortOperation(int type, robj *pattern) {
5191 redisSortOperation *so = zmalloc(sizeof(*so));
5192 so->type = type;
5193 so->pattern = pattern;
5194 return so;
5195 }
5196
5197 /* Return the value associated to the key with a name obtained
5198 * substituting the first occurence of '*' in 'pattern' with 'subst' */
5199 static robj *lookupKeyByPattern(redisDb *db, robj *pattern, robj *subst) {
5200 char *p;
5201 sds spat, ssub;
5202 robj keyobj;
5203 int prefixlen, sublen, postfixlen;
5204 /* Expoit the internal sds representation to create a sds string allocated on the stack in order to make this function faster */
5205 struct {
5206 long len;
5207 long free;
5208 char buf[REDIS_SORTKEY_MAX+1];
5209 } keyname;
5210
5211 /* If the pattern is "#" return the substitution object itself in order
5212 * to implement the "SORT ... GET #" feature. */
5213 spat = pattern->ptr;
5214 if (spat[0] == '#' && spat[1] == '\0') {
5215 return subst;
5216 }
5217
5218 /* The substitution object may be specially encoded. If so we create
5219 * a decoded object on the fly. Otherwise getDecodedObject will just
5220 * increment the ref count, that we'll decrement later. */
5221 subst = getDecodedObject(subst);
5222
5223 ssub = subst->ptr;
5224 if (sdslen(spat)+sdslen(ssub)-1 > REDIS_SORTKEY_MAX) return NULL;
5225 p = strchr(spat,'*');
5226 if (!p) {
5227 decrRefCount(subst);
5228 return NULL;
5229 }
5230
5231 prefixlen = p-spat;
5232 sublen = sdslen(ssub);
5233 postfixlen = sdslen(spat)-(prefixlen+1);
5234 memcpy(keyname.buf,spat,prefixlen);
5235 memcpy(keyname.buf+prefixlen,ssub,sublen);
5236 memcpy(keyname.buf+prefixlen+sublen,p+1,postfixlen);
5237 keyname.buf[prefixlen+sublen+postfixlen] = '\0';
5238 keyname.len = prefixlen+sublen+postfixlen;
5239
5240 initStaticStringObject(keyobj,((char*)&keyname)+(sizeof(long)*2))
5241 decrRefCount(subst);
5242
5243 /* printf("lookup '%s' => %p\n", keyname.buf,de); */
5244 return lookupKeyRead(db,&keyobj);
5245 }
5246
5247 /* sortCompare() is used by qsort in sortCommand(). Given that qsort_r with
5248 * the additional parameter is not standard but a BSD-specific we have to
5249 * pass sorting parameters via the global 'server' structure */
5250 static int sortCompare(const void *s1, const void *s2) {
5251 const redisSortObject *so1 = s1, *so2 = s2;
5252 int cmp;
5253
5254 if (!server.sort_alpha) {
5255 /* Numeric sorting. Here it's trivial as we precomputed scores */
5256 if (so1->u.score > so2->u.score) {
5257 cmp = 1;
5258 } else if (so1->u.score < so2->u.score) {
5259 cmp = -1;
5260 } else {
5261 cmp = 0;
5262 }
5263 } else {
5264 /* Alphanumeric sorting */
5265 if (server.sort_bypattern) {
5266 if (!so1->u.cmpobj || !so2->u.cmpobj) {
5267 /* At least one compare object is NULL */
5268 if (so1->u.cmpobj == so2->u.cmpobj)
5269 cmp = 0;
5270 else if (so1->u.cmpobj == NULL)
5271 cmp = -1;
5272 else
5273 cmp = 1;
5274 } else {
5275 /* We have both the objects, use strcoll */
5276 cmp = strcoll(so1->u.cmpobj->ptr,so2->u.cmpobj->ptr);
5277 }
5278 } else {
5279 /* Compare elements directly */
5280 robj *dec1, *dec2;
5281
5282 dec1 = getDecodedObject(so1->obj);
5283 dec2 = getDecodedObject(so2->obj);
5284 cmp = strcoll(dec1->ptr,dec2->ptr);
5285 decrRefCount(dec1);
5286 decrRefCount(dec2);
5287 }
5288 }
5289 return server.sort_desc ? -cmp : cmp;
5290 }
5291
5292 /* The SORT command is the most complex command in Redis. Warning: this code
5293 * is optimized for speed and a bit less for readability */
5294 static void sortCommand(redisClient *c) {
5295 list *operations;
5296 int outputlen = 0;
5297 int desc = 0, alpha = 0;
5298 int limit_start = 0, limit_count = -1, start, end;
5299 int j, dontsort = 0, vectorlen;
5300 int getop = 0; /* GET operation counter */
5301 robj *sortval, *sortby = NULL, *storekey = NULL;
5302 redisSortObject *vector; /* Resulting vector to sort */
5303
5304 /* Lookup the key to sort. It must be of the right types */
5305 sortval = lookupKeyRead(c->db,c->argv[1]);
5306 if (sortval == NULL) {
5307 addReply(c,shared.nullmultibulk);
5308 return;
5309 }
5310 if (sortval->type != REDIS_SET && sortval->type != REDIS_LIST &&
5311 sortval->type != REDIS_ZSET)
5312 {
5313 addReply(c,shared.wrongtypeerr);
5314 return;
5315 }
5316
5317 /* Create a list of operations to perform for every sorted element.
5318 * Operations can be GET/DEL/INCR/DECR */
5319 operations = listCreate();
5320 listSetFreeMethod(operations,zfree);
5321 j = 2;
5322
5323 /* Now we need to protect sortval incrementing its count, in the future
5324 * SORT may have options able to overwrite/delete keys during the sorting
5325 * and the sorted key itself may get destroied */
5326 incrRefCount(sortval);
5327
5328 /* The SORT command has an SQL-alike syntax, parse it */
5329 while(j < c->argc) {
5330 int leftargs = c->argc-j-1;
5331 if (!strcasecmp(c->argv[j]->ptr,"asc")) {
5332 desc = 0;
5333 } else if (!strcasecmp(c->argv[j]->ptr,"desc")) {
5334 desc = 1;
5335 } else if (!strcasecmp(c->argv[j]->ptr,"alpha")) {
5336 alpha = 1;
5337 } else if (!strcasecmp(c->argv[j]->ptr,"limit") && leftargs >= 2) {
5338 limit_start = atoi(c->argv[j+1]->ptr);
5339 limit_count = atoi(c->argv[j+2]->ptr);
5340 j+=2;
5341 } else if (!strcasecmp(c->argv[j]->ptr,"store") && leftargs >= 1) {
5342 storekey = c->argv[j+1];
5343 j++;
5344 } else if (!strcasecmp(c->argv[j]->ptr,"by") && leftargs >= 1) {
5345 sortby = c->argv[j+1];
5346 /* If the BY pattern does not contain '*', i.e. it is constant,
5347 * we don't need to sort nor to lookup the weight keys. */
5348 if (strchr(c->argv[j+1]->ptr,'*') == NULL) dontsort = 1;
5349 j++;
5350 } else if (!strcasecmp(c->argv[j]->ptr,"get") && leftargs >= 1) {
5351 listAddNodeTail(operations,createSortOperation(
5352 REDIS_SORT_GET,c->argv[j+1]));
5353 getop++;
5354 j++;
5355 } else {
5356 decrRefCount(sortval);
5357 listRelease(operations);
5358 addReply(c,shared.syntaxerr);
5359 return;
5360 }
5361 j++;
5362 }
5363
5364 /* Load the sorting vector with all the objects to sort */
5365 switch(sortval->type) {
5366 case REDIS_LIST: vectorlen = listLength((list*)sortval->ptr); break;
5367 case REDIS_SET: vectorlen = dictSize((dict*)sortval->ptr); break;
5368 case REDIS_ZSET: vectorlen = dictSize(((zset*)sortval->ptr)->dict); break;
5369 default: vectorlen = 0; redisAssert(0); /* Avoid GCC warning */
5370 }
5371 vector = zmalloc(sizeof(redisSortObject)*vectorlen);
5372 j = 0;
5373
5374 if (sortval->type == REDIS_LIST) {
5375 list *list = sortval->ptr;
5376 listNode *ln;
5377 listIter li;
5378
5379 listRewind(list,&li);
5380 while((ln = listNext(&li))) {
5381 robj *ele = ln->value;
5382 vector[j].obj = ele;
5383 vector[j].u.score = 0;
5384 vector[j].u.cmpobj = NULL;
5385 j++;
5386 }
5387 } else {
5388 dict *set;
5389 dictIterator *di;
5390 dictEntry *setele;
5391
5392 if (sortval->type == REDIS_SET) {
5393 set = sortval->ptr;
5394 } else {
5395 zset *zs = sortval->ptr;
5396 set = zs->dict;
5397 }
5398
5399 di = dictGetIterator(set);
5400 while((setele = dictNext(di)) != NULL) {
5401 vector[j].obj = dictGetEntryKey(setele);
5402 vector[j].u.score = 0;
5403 vector[j].u.cmpobj = NULL;
5404 j++;
5405 }
5406 dictReleaseIterator(di);
5407 }
5408 redisAssert(j == vectorlen);
5409
5410 /* Now it's time to load the right scores in the sorting vector */
5411 if (dontsort == 0) {
5412 for (j = 0; j < vectorlen; j++) {
5413 if (sortby) {
5414 robj *byval;
5415
5416 byval = lookupKeyByPattern(c->db,sortby,vector[j].obj);
5417 if (!byval || byval->type != REDIS_STRING) continue;
5418 if (alpha) {
5419 vector[j].u.cmpobj = getDecodedObject(byval);
5420 } else {
5421 if (byval->encoding == REDIS_ENCODING_RAW) {
5422 vector[j].u.score = strtod(byval->ptr,NULL);
5423 } else {
5424 /* Don't need to decode the object if it's
5425 * integer-encoded (the only encoding supported) so
5426 * far. We can just cast it */
5427 if (byval->encoding == REDIS_ENCODING_INT) {
5428 vector[j].u.score = (long)byval->ptr;
5429 } else
5430 redisAssert(1 != 1);
5431 }
5432 }
5433 } else {
5434 if (!alpha) {
5435 if (vector[j].obj->encoding == REDIS_ENCODING_RAW)
5436 vector[j].u.score = strtod(vector[j].obj->ptr,NULL);
5437 else {
5438 if (vector[j].obj->encoding == REDIS_ENCODING_INT)
5439 vector[j].u.score = (long) vector[j].obj->ptr;
5440 else
5441 redisAssert(1 != 1);
5442 }
5443 }
5444 }
5445 }
5446 }
5447
5448 /* We are ready to sort the vector... perform a bit of sanity check
5449 * on the LIMIT option too. We'll use a partial version of quicksort. */
5450 start = (limit_start < 0) ? 0 : limit_start;
5451 end = (limit_count < 0) ? vectorlen-1 : start+limit_count-1;
5452 if (start >= vectorlen) {
5453 start = vectorlen-1;
5454 end = vectorlen-2;
5455 }
5456 if (end >= vectorlen) end = vectorlen-1;
5457
5458 if (dontsort == 0) {
5459 server.sort_desc = desc;
5460 server.sort_alpha = alpha;
5461 server.sort_bypattern = sortby ? 1 : 0;
5462 if (sortby && (start != 0 || end != vectorlen-1))
5463 pqsort(vector,vectorlen,sizeof(redisSortObject),sortCompare, start,end);
5464 else
5465 qsort(vector,vectorlen,sizeof(redisSortObject),sortCompare);
5466 }
5467
5468 /* Send command output to the output buffer, performing the specified
5469 * GET/DEL/INCR/DECR operations if any. */
5470 outputlen = getop ? getop*(end-start+1) : end-start+1;
5471 if (storekey == NULL) {
5472 /* STORE option not specified, sent the sorting result to client */
5473 addReplySds(c,sdscatprintf(sdsempty(),"*%d\r\n",outputlen));
5474 for (j = start; j <= end; j++) {
5475 listNode *ln;
5476 listIter li;
5477
5478 if (!getop) {
5479 addReplyBulkLen(c,vector[j].obj);
5480 addReply(c,vector[j].obj);
5481 addReply(c,shared.crlf);
5482 }
5483 listRewind(operations,&li);
5484 while((ln = listNext(&li))) {
5485 redisSortOperation *sop = ln->value;
5486 robj *val = lookupKeyByPattern(c->db,sop->pattern,
5487 vector[j].obj);
5488
5489 if (sop->type == REDIS_SORT_GET) {
5490 if (!val || val->type != REDIS_STRING) {
5491 addReply(c,shared.nullbulk);
5492 } else {
5493 addReplyBulkLen(c,val);
5494 addReply(c,val);
5495 addReply(c,shared.crlf);
5496 }
5497 } else {
5498 redisAssert(sop->type == REDIS_SORT_GET); /* always fails */
5499 }
5500 }
5501 }
5502 } else {
5503 robj *listObject = createListObject();
5504 list *listPtr = (list*) listObject->ptr;
5505
5506 /* STORE option specified, set the sorting result as a List object */
5507 for (j = start; j <= end; j++) {
5508 listNode *ln;
5509 listIter li;
5510
5511 if (!getop) {
5512 listAddNodeTail(listPtr,vector[j].obj);
5513 incrRefCount(vector[j].obj);
5514 }
5515 listRewind(operations,&li);
5516 while((ln = listNext(&li))) {
5517 redisSortOperation *sop = ln->value;
5518 robj *val = lookupKeyByPattern(c->db,sop->pattern,
5519 vector[j].obj);
5520
5521 if (sop->type == REDIS_SORT_GET) {
5522 if (!val || val->type != REDIS_STRING) {
5523 listAddNodeTail(listPtr,createStringObject("",0));
5524 } else {
5525 listAddNodeTail(listPtr,val);
5526 incrRefCount(val);
5527 }
5528 } else {
5529 redisAssert(sop->type == REDIS_SORT_GET); /* always fails */
5530 }
5531 }
5532 }
5533 if (dictReplace(c->db->dict,storekey,listObject)) {
5534 incrRefCount(storekey);
5535 }
5536 /* Note: we add 1 because the DB is dirty anyway since even if the
5537 * SORT result is empty a new key is set and maybe the old content
5538 * replaced. */
5539 server.dirty += 1+outputlen;
5540 addReplySds(c,sdscatprintf(sdsempty(),":%d\r\n",outputlen));
5541 }
5542
5543 /* Cleanup */
5544 decrRefCount(sortval);
5545 listRelease(operations);
5546 for (j = 0; j < vectorlen; j++) {
5547 if (sortby && alpha && vector[j].u.cmpobj)
5548 decrRefCount(vector[j].u.cmpobj);
5549 }
5550 zfree(vector);
5551 }
5552
5553 /* Convert an amount of bytes into a human readable string in the form
5554 * of 100B, 2G, 100M, 4K, and so forth. */
5555 static void bytesToHuman(char *s, unsigned long long n) {
5556 double d;
5557
5558 if (n < 1024) {
5559 /* Bytes */
5560 sprintf(s,"%lluB",n);
5561 return;
5562 } else if (n < (1024*1024)) {
5563 d = (double)n/(1024);
5564 sprintf(s,"%.2fK",d);
5565 } else if (n < (1024LL*1024*1024)) {
5566 d = (double)n/(1024*1024);
5567 sprintf(s,"%.2fM",d);
5568 } else if (n < (1024LL*1024*1024*1024)) {
5569 d = (double)n/(1024LL*1024*1024);
5570 sprintf(s,"%.2fM",d);
5571 }
5572 }
5573
5574 /* Create the string returned by the INFO command. This is decoupled
5575 * by the INFO command itself as we need to report the same information
5576 * on memory corruption problems. */
5577 static sds genRedisInfoString(void) {
5578 sds info;
5579 time_t uptime = time(NULL)-server.stat_starttime;
5580 int j;
5581 char hmem[64];
5582
5583 bytesToHuman(hmem,server.usedmemory);
5584 info = sdscatprintf(sdsempty(),
5585 "redis_version:%s\r\n"
5586 "arch_bits:%s\r\n"
5587 "multiplexing_api:%s\r\n"
5588 "process_id:%ld\r\n"
5589 "uptime_in_seconds:%ld\r\n"
5590 "uptime_in_days:%ld\r\n"
5591 "connected_clients:%d\r\n"
5592 "connected_slaves:%d\r\n"
5593 "blocked_clients:%d\r\n"
5594 "used_memory:%zu\r\n"
5595 "used_memory_human:%s\r\n"
5596 "changes_since_last_save:%lld\r\n"
5597 "bgsave_in_progress:%d\r\n"
5598 "last_save_time:%ld\r\n"
5599 "bgrewriteaof_in_progress:%d\r\n"
5600 "total_connections_received:%lld\r\n"
5601 "total_commands_processed:%lld\r\n"
5602 "vm_enabled:%d\r\n"
5603 "role:%s\r\n"
5604 ,REDIS_VERSION,
5605 (sizeof(long) == 8) ? "64" : "32",
5606 aeGetApiName(),
5607 (long) getpid(),
5608 uptime,
5609 uptime/(3600*24),
5610 listLength(server.clients)-listLength(server.slaves),
5611 listLength(server.slaves),
5612 server.blockedclients,
5613 server.usedmemory,
5614 hmem,
5615 server.dirty,
5616 server.bgsavechildpid != -1,
5617 server.lastsave,
5618 server.bgrewritechildpid != -1,
5619 server.stat_numconnections,
5620 server.stat_numcommands,
5621 server.vm_enabled != 0,
5622 server.masterhost == NULL ? "master" : "slave"
5623 );
5624 if (server.masterhost) {
5625 info = sdscatprintf(info,
5626 "master_host:%s\r\n"
5627 "master_port:%d\r\n"
5628 "master_link_status:%s\r\n"
5629 "master_last_io_seconds_ago:%d\r\n"
5630 ,server.masterhost,
5631 server.masterport,
5632 (server.replstate == REDIS_REPL_CONNECTED) ?
5633 "up" : "down",
5634 server.master ? ((int)(time(NULL)-server.master->lastinteraction)) : -1
5635 );
5636 }
5637 if (server.vm_enabled) {
5638 lockThreadedIO();
5639 info = sdscatprintf(info,
5640 "vm_conf_max_memory:%llu\r\n"
5641 "vm_conf_page_size:%llu\r\n"
5642 "vm_conf_pages:%llu\r\n"
5643 "vm_stats_used_pages:%llu\r\n"
5644 "vm_stats_swapped_objects:%llu\r\n"
5645 "vm_stats_swappin_count:%llu\r\n"
5646 "vm_stats_swappout_count:%llu\r\n"
5647 "vm_stats_io_newjobs_len:%lu\r\n"
5648 "vm_stats_io_processing_len:%lu\r\n"
5649 "vm_stats_io_processed_len:%lu\r\n"
5650 "vm_stats_io_waiting_clients:%lu\r\n"
5651 "vm_stats_io_active_threads:%lu\r\n"
5652 ,(unsigned long long) server.vm_max_memory,
5653 (unsigned long long) server.vm_page_size,
5654 (unsigned long long) server.vm_pages,
5655 (unsigned long long) server.vm_stats_used_pages,
5656 (unsigned long long) server.vm_stats_swapped_objects,
5657 (unsigned long long) server.vm_stats_swapins,
5658 (unsigned long long) server.vm_stats_swapouts,
5659 (unsigned long) listLength(server.io_newjobs),
5660 (unsigned long) listLength(server.io_processing),
5661 (unsigned long) listLength(server.io_processed),
5662 (unsigned long) listLength(server.io_clients),
5663 (unsigned long) server.io_active_threads
5664 );
5665 unlockThreadedIO();
5666 }
5667 for (j = 0; j < server.dbnum; j++) {
5668 long long keys, vkeys;
5669
5670 keys = dictSize(server.db[j].dict);
5671 vkeys = dictSize(server.db[j].expires);
5672 if (keys || vkeys) {
5673 info = sdscatprintf(info, "db%d:keys=%lld,expires=%lld\r\n",
5674 j, keys, vkeys);
5675 }
5676 }
5677 return info;
5678 }
5679
5680 static void infoCommand(redisClient *c) {
5681 sds info = genRedisInfoString();
5682 addReplySds(c,sdscatprintf(sdsempty(),"$%lu\r\n",
5683 (unsigned long)sdslen(info)));
5684 addReplySds(c,info);
5685 addReply(c,shared.crlf);
5686 }
5687
5688 static void monitorCommand(redisClient *c) {
5689 /* ignore MONITOR if aleady slave or in monitor mode */
5690 if (c->flags & REDIS_SLAVE) return;
5691
5692 c->flags |= (REDIS_SLAVE|REDIS_MONITOR);
5693 c->slaveseldb = 0;
5694 listAddNodeTail(server.monitors,c);
5695 addReply(c,shared.ok);
5696 }
5697
5698 /* ================================= Expire ================================= */
5699 static int removeExpire(redisDb *db, robj *key) {
5700 if (dictDelete(db->expires,key) == DICT_OK) {
5701 return 1;
5702 } else {
5703 return 0;
5704 }
5705 }
5706
5707 static int setExpire(redisDb *db, robj *key, time_t when) {
5708 if (dictAdd(db->expires,key,(void*)when) == DICT_ERR) {
5709 return 0;
5710 } else {
5711 incrRefCount(key);
5712 return 1;
5713 }
5714 }
5715
5716 /* Return the expire time of the specified key, or -1 if no expire
5717 * is associated with this key (i.e. the key is non volatile) */
5718 static time_t getExpire(redisDb *db, robj *key) {
5719 dictEntry *de;
5720
5721 /* No expire? return ASAP */
5722 if (dictSize(db->expires) == 0 ||
5723 (de = dictFind(db->expires,key)) == NULL) return -1;
5724
5725 return (time_t) dictGetEntryVal(de);
5726 }
5727
5728 static int expireIfNeeded(redisDb *db, robj *key) {
5729 time_t when;
5730 dictEntry *de;
5731
5732 /* No expire? return ASAP */
5733 if (dictSize(db->expires) == 0 ||
5734 (de = dictFind(db->expires,key)) == NULL) return 0;
5735
5736 /* Lookup the expire */
5737 when = (time_t) dictGetEntryVal(de);
5738 if (time(NULL) <= when) return 0;
5739
5740 /* Delete the key */
5741 dictDelete(db->expires,key);
5742 return dictDelete(db->dict,key) == DICT_OK;
5743 }
5744
5745 static int deleteIfVolatile(redisDb *db, robj *key) {
5746 dictEntry *de;
5747
5748 /* No expire? return ASAP */
5749 if (dictSize(db->expires) == 0 ||
5750 (de = dictFind(db->expires,key)) == NULL) return 0;
5751
5752 /* Delete the key */
5753 server.dirty++;
5754 dictDelete(db->expires,key);
5755 return dictDelete(db->dict,key) == DICT_OK;
5756 }
5757
5758 static void expireGenericCommand(redisClient *c, robj *key, time_t seconds) {
5759 dictEntry *de;
5760
5761 de = dictFind(c->db->dict,key);
5762 if (de == NULL) {
5763 addReply(c,shared.czero);
5764 return;
5765 }
5766 if (seconds < 0) {
5767 if (deleteKey(c->db,key)) server.dirty++;
5768 addReply(c, shared.cone);
5769 return;
5770 } else {
5771 time_t when = time(NULL)+seconds;
5772 if (setExpire(c->db,key,when)) {
5773 addReply(c,shared.cone);
5774 server.dirty++;
5775 } else {
5776 addReply(c,shared.czero);
5777 }
5778 return;
5779 }
5780 }
5781
5782 static void expireCommand(redisClient *c) {
5783 expireGenericCommand(c,c->argv[1],strtol(c->argv[2]->ptr,NULL,10));
5784 }
5785
5786 static void expireatCommand(redisClient *c) {
5787 expireGenericCommand(c,c->argv[1],strtol(c->argv[2]->ptr,NULL,10)-time(NULL));
5788 }
5789
5790 static void ttlCommand(redisClient *c) {
5791 time_t expire;
5792 int ttl = -1;
5793
5794 expire = getExpire(c->db,c->argv[1]);
5795 if (expire != -1) {
5796 ttl = (int) (expire-time(NULL));
5797 if (ttl < 0) ttl = -1;
5798 }
5799 addReplySds(c,sdscatprintf(sdsempty(),":%d\r\n",ttl));
5800 }
5801
5802 /* ================================ MULTI/EXEC ============================== */
5803
5804 /* Client state initialization for MULTI/EXEC */
5805 static void initClientMultiState(redisClient *c) {
5806 c->mstate.commands = NULL;
5807 c->mstate.count = 0;
5808 }
5809
5810 /* Release all the resources associated with MULTI/EXEC state */
5811 static void freeClientMultiState(redisClient *c) {
5812 int j;
5813
5814 for (j = 0; j < c->mstate.count; j++) {
5815 int i;
5816 multiCmd *mc = c->mstate.commands+j;
5817
5818 for (i = 0; i < mc->argc; i++)
5819 decrRefCount(mc->argv[i]);
5820 zfree(mc->argv);
5821 }
5822 zfree(c->mstate.commands);
5823 }
5824
5825 /* Add a new command into the MULTI commands queue */
5826 static void queueMultiCommand(redisClient *c, struct redisCommand *cmd) {
5827 multiCmd *mc;
5828 int j;
5829
5830 c->mstate.commands = zrealloc(c->mstate.commands,
5831 sizeof(multiCmd)*(c->mstate.count+1));
5832 mc = c->mstate.commands+c->mstate.count;
5833 mc->cmd = cmd;
5834 mc->argc = c->argc;
5835 mc->argv = zmalloc(sizeof(robj*)*c->argc);
5836 memcpy(mc->argv,c->argv,sizeof(robj*)*c->argc);
5837 for (j = 0; j < c->argc; j++)
5838 incrRefCount(mc->argv[j]);
5839 c->mstate.count++;
5840 }
5841
5842 static void multiCommand(redisClient *c) {
5843 c->flags |= REDIS_MULTI;
5844 addReply(c,shared.ok);
5845 }
5846
5847 static void execCommand(redisClient *c) {
5848 int j;
5849 robj **orig_argv;
5850 int orig_argc;
5851
5852 if (!(c->flags & REDIS_MULTI)) {
5853 addReplySds(c,sdsnew("-ERR EXEC without MULTI\r\n"));
5854 return;
5855 }
5856
5857 orig_argv = c->argv;
5858 orig_argc = c->argc;
5859 addReplySds(c,sdscatprintf(sdsempty(),"*%d\r\n",c->mstate.count));
5860 for (j = 0; j < c->mstate.count; j++) {
5861 c->argc = c->mstate.commands[j].argc;
5862 c->argv = c->mstate.commands[j].argv;
5863 call(c,c->mstate.commands[j].cmd);
5864 }
5865 c->argv = orig_argv;
5866 c->argc = orig_argc;
5867 freeClientMultiState(c);
5868 initClientMultiState(c);
5869 c->flags &= (~REDIS_MULTI);
5870 }
5871
5872 /* =========================== Blocking Operations ========================= */
5873
5874 /* Currently Redis blocking operations support is limited to list POP ops,
5875 * so the current implementation is not fully generic, but it is also not
5876 * completely specific so it will not require a rewrite to support new
5877 * kind of blocking operations in the future.
5878 *
5879 * Still it's important to note that list blocking operations can be already
5880 * used as a notification mechanism in order to implement other blocking
5881 * operations at application level, so there must be a very strong evidence
5882 * of usefulness and generality before new blocking operations are implemented.
5883 *
5884 * This is how the current blocking POP works, we use BLPOP as example:
5885 * - If the user calls BLPOP and the key exists and contains a non empty list
5886 * then LPOP is called instead. So BLPOP is semantically the same as LPOP
5887 * if there is not to block.
5888 * - If instead BLPOP is called and the key does not exists or the list is
5889 * empty we need to block. In order to do so we remove the notification for
5890 * new data to read in the client socket (so that we'll not serve new
5891 * requests if the blocking request is not served). Also we put the client
5892 * in a dictionary (db->blockingkeys) mapping keys to a list of clients
5893 * blocking for this keys.
5894 * - If a PUSH operation against a key with blocked clients waiting is
5895 * performed, we serve the first in the list: basically instead to push
5896 * the new element inside the list we return it to the (first / oldest)
5897 * blocking client, unblock the client, and remove it form the list.
5898 *
5899 * The above comment and the source code should be enough in order to understand
5900 * the implementation and modify / fix it later.
5901 */
5902
5903 /* Set a client in blocking mode for the specified key, with the specified
5904 * timeout */
5905 static void blockForKeys(redisClient *c, robj **keys, int numkeys, time_t timeout) {
5906 dictEntry *de;
5907 list *l;
5908 int j;
5909
5910 c->blockingkeys = zmalloc(sizeof(robj*)*numkeys);
5911 c->blockingkeysnum = numkeys;
5912 c->blockingto = timeout;
5913 for (j = 0; j < numkeys; j++) {
5914 /* Add the key in the client structure, to map clients -> keys */
5915 c->blockingkeys[j] = keys[j];
5916 incrRefCount(keys[j]);
5917
5918 /* And in the other "side", to map keys -> clients */
5919 de = dictFind(c->db->blockingkeys,keys[j]);
5920 if (de == NULL) {
5921 int retval;
5922
5923 /* For every key we take a list of clients blocked for it */
5924 l = listCreate();
5925 retval = dictAdd(c->db->blockingkeys,keys[j],l);
5926 incrRefCount(keys[j]);
5927 assert(retval == DICT_OK);
5928 } else {
5929 l = dictGetEntryVal(de);
5930 }
5931 listAddNodeTail(l,c);
5932 }
5933 /* Mark the client as a blocked client */
5934 c->flags |= REDIS_BLOCKED;
5935 aeDeleteFileEvent(server.el,c->fd,AE_READABLE);
5936 server.blockedclients++;
5937 }
5938
5939 /* Unblock a client that's waiting in a blocking operation such as BLPOP */
5940 static void unblockClient(redisClient *c) {
5941 dictEntry *de;
5942 list *l;
5943 int j;
5944
5945 assert(c->blockingkeys != NULL);
5946 /* The client may wait for multiple keys, so unblock it for every key. */
5947 for (j = 0; j < c->blockingkeysnum; j++) {
5948 /* Remove this client from the list of clients waiting for this key. */
5949 de = dictFind(c->db->blockingkeys,c->blockingkeys[j]);
5950 assert(de != NULL);
5951 l = dictGetEntryVal(de);
5952 listDelNode(l,listSearchKey(l,c));
5953 /* If the list is empty we need to remove it to avoid wasting memory */
5954 if (listLength(l) == 0)
5955 dictDelete(c->db->blockingkeys,c->blockingkeys[j]);
5956 decrRefCount(c->blockingkeys[j]);
5957 }
5958 /* Cleanup the client structure */
5959 zfree(c->blockingkeys);
5960 c->blockingkeys = NULL;
5961 c->flags &= (~REDIS_BLOCKED);
5962 server.blockedclients--;
5963 /* Ok now we are ready to get read events from socket, note that we
5964 * can't trap errors here as it's possible that unblockClients() is
5965 * called from freeClient() itself, and the only thing we can do
5966 * if we failed to register the READABLE event is to kill the client.
5967 * Still the following function should never fail in the real world as
5968 * we are sure the file descriptor is sane, and we exit on out of mem. */
5969 aeCreateFileEvent(server.el, c->fd, AE_READABLE, readQueryFromClient, c);
5970 /* As a final step we want to process data if there is some command waiting
5971 * in the input buffer. Note that this is safe even if unblockClient()
5972 * gets called from freeClient() because freeClient() will be smart
5973 * enough to call this function *after* c->querybuf was set to NULL. */
5974 if (c->querybuf && sdslen(c->querybuf) > 0) processInputBuffer(c);
5975 }
5976
5977 /* This should be called from any function PUSHing into lists.
5978 * 'c' is the "pushing client", 'key' is the key it is pushing data against,
5979 * 'ele' is the element pushed.
5980 *
5981 * If the function returns 0 there was no client waiting for a list push
5982 * against this key.
5983 *
5984 * If the function returns 1 there was a client waiting for a list push
5985 * against this key, the element was passed to this client thus it's not
5986 * needed to actually add it to the list and the caller should return asap. */
5987 static int handleClientsWaitingListPush(redisClient *c, robj *key, robj *ele) {
5988 struct dictEntry *de;
5989 redisClient *receiver;
5990 list *l;
5991 listNode *ln;
5992
5993 de = dictFind(c->db->blockingkeys,key);
5994 if (de == NULL) return 0;
5995 l = dictGetEntryVal(de);
5996 ln = listFirst(l);
5997 assert(ln != NULL);
5998 receiver = ln->value;
5999
6000 addReplySds(receiver,sdsnew("*2\r\n"));
6001 addReplyBulkLen(receiver,key);
6002 addReply(receiver,key);
6003 addReply(receiver,shared.crlf);
6004 addReplyBulkLen(receiver,ele);
6005 addReply(receiver,ele);
6006 addReply(receiver,shared.crlf);
6007 unblockClient(receiver);
6008 return 1;
6009 }
6010
6011 /* Blocking RPOP/LPOP */
6012 static void blockingPopGenericCommand(redisClient *c, int where) {
6013 robj *o;
6014 time_t timeout;
6015 int j;
6016
6017 for (j = 1; j < c->argc-1; j++) {
6018 o = lookupKeyWrite(c->db,c->argv[j]);
6019 if (o != NULL) {
6020 if (o->type != REDIS_LIST) {
6021 addReply(c,shared.wrongtypeerr);
6022 return;
6023 } else {
6024 list *list = o->ptr;
6025 if (listLength(list) != 0) {
6026 /* If the list contains elements fall back to the usual
6027 * non-blocking POP operation */
6028 robj *argv[2], **orig_argv;
6029 int orig_argc;
6030
6031 /* We need to alter the command arguments before to call
6032 * popGenericCommand() as the command takes a single key. */
6033 orig_argv = c->argv;
6034 orig_argc = c->argc;
6035 argv[1] = c->argv[j];
6036 c->argv = argv;
6037 c->argc = 2;
6038
6039 /* Also the return value is different, we need to output
6040 * the multi bulk reply header and the key name. The
6041 * "real" command will add the last element (the value)
6042 * for us. If this souds like an hack to you it's just
6043 * because it is... */
6044 addReplySds(c,sdsnew("*2\r\n"));
6045 addReplyBulkLen(c,argv[1]);
6046 addReply(c,argv[1]);
6047 addReply(c,shared.crlf);
6048 popGenericCommand(c,where);
6049
6050 /* Fix the client structure with the original stuff */
6051 c->argv = orig_argv;
6052 c->argc = orig_argc;
6053 return;
6054 }
6055 }
6056 }
6057 }
6058 /* If the list is empty or the key does not exists we must block */
6059 timeout = strtol(c->argv[c->argc-1]->ptr,NULL,10);
6060 if (timeout > 0) timeout += time(NULL);
6061 blockForKeys(c,c->argv+1,c->argc-2,timeout);
6062 }
6063
6064 static void blpopCommand(redisClient *c) {
6065 blockingPopGenericCommand(c,REDIS_HEAD);
6066 }
6067
6068 static void brpopCommand(redisClient *c) {
6069 blockingPopGenericCommand(c,REDIS_TAIL);
6070 }
6071
6072 /* =============================== Replication ============================= */
6073
6074 static int syncWrite(int fd, char *ptr, ssize_t size, int timeout) {
6075 ssize_t nwritten, ret = size;
6076 time_t start = time(NULL);
6077
6078 timeout++;
6079 while(size) {
6080 if (aeWait(fd,AE_WRITABLE,1000) & AE_WRITABLE) {
6081 nwritten = write(fd,ptr,size);
6082 if (nwritten == -1) return -1;
6083 ptr += nwritten;
6084 size -= nwritten;
6085 }
6086 if ((time(NULL)-start) > timeout) {
6087 errno = ETIMEDOUT;
6088 return -1;
6089 }
6090 }
6091 return ret;
6092 }
6093
6094 static int syncRead(int fd, char *ptr, ssize_t size, int timeout) {
6095 ssize_t nread, totread = 0;
6096 time_t start = time(NULL);
6097
6098 timeout++;
6099 while(size) {
6100 if (aeWait(fd,AE_READABLE,1000) & AE_READABLE) {
6101 nread = read(fd,ptr,size);
6102 if (nread == -1) return -1;
6103 ptr += nread;
6104 size -= nread;
6105 totread += nread;
6106 }
6107 if ((time(NULL)-start) > timeout) {
6108 errno = ETIMEDOUT;
6109 return -1;
6110 }
6111 }
6112 return totread;
6113 }
6114
6115 static int syncReadLine(int fd, char *ptr, ssize_t size, int timeout) {
6116 ssize_t nread = 0;
6117
6118 size--;
6119 while(size) {
6120 char c;
6121
6122 if (syncRead(fd,&c,1,timeout) == -1) return -1;
6123 if (c == '\n') {
6124 *ptr = '\0';
6125 if (nread && *(ptr-1) == '\r') *(ptr-1) = '\0';
6126 return nread;
6127 } else {
6128 *ptr++ = c;
6129 *ptr = '\0';
6130 nread++;
6131 }
6132 }
6133 return nread;
6134 }
6135
6136 static void syncCommand(redisClient *c) {
6137 /* ignore SYNC if aleady slave or in monitor mode */
6138 if (c->flags & REDIS_SLAVE) return;
6139
6140 /* SYNC can't be issued when the server has pending data to send to
6141 * the client about already issued commands. We need a fresh reply
6142 * buffer registering the differences between the BGSAVE and the current
6143 * dataset, so that we can copy to other slaves if needed. */
6144 if (listLength(c->reply) != 0) {
6145 addReplySds(c,sdsnew("-ERR SYNC is invalid with pending input\r\n"));
6146 return;
6147 }
6148
6149 redisLog(REDIS_NOTICE,"Slave ask for synchronization");
6150 /* Here we need to check if there is a background saving operation
6151 * in progress, or if it is required to start one */
6152 if (server.bgsavechildpid != -1) {
6153 /* Ok a background save is in progress. Let's check if it is a good
6154 * one for replication, i.e. if there is another slave that is
6155 * registering differences since the server forked to save */
6156 redisClient *slave;
6157 listNode *ln;
6158 listIter li;
6159
6160 listRewind(server.slaves,&li);
6161 while((ln = listNext(&li))) {
6162 slave = ln->value;
6163 if (slave->replstate == REDIS_REPL_WAIT_BGSAVE_END) break;
6164 }
6165 if (ln) {
6166 /* Perfect, the server is already registering differences for
6167 * another slave. Set the right state, and copy the buffer. */
6168 listRelease(c->reply);
6169 c->reply = listDup(slave->reply);
6170 c->replstate = REDIS_REPL_WAIT_BGSAVE_END;
6171 redisLog(REDIS_NOTICE,"Waiting for end of BGSAVE for SYNC");
6172 } else {
6173 /* No way, we need to wait for the next BGSAVE in order to
6174 * register differences */
6175 c->replstate = REDIS_REPL_WAIT_BGSAVE_START;
6176 redisLog(REDIS_NOTICE,"Waiting for next BGSAVE for SYNC");
6177 }
6178 } else {
6179 /* Ok we don't have a BGSAVE in progress, let's start one */
6180 redisLog(REDIS_NOTICE,"Starting BGSAVE for SYNC");
6181 if (rdbSaveBackground(server.dbfilename) != REDIS_OK) {
6182 redisLog(REDIS_NOTICE,"Replication failed, can't BGSAVE");
6183 addReplySds(c,sdsnew("-ERR Unalbe to perform background save\r\n"));
6184 return;
6185 }
6186 c->replstate = REDIS_REPL_WAIT_BGSAVE_END;
6187 }
6188 c->repldbfd = -1;
6189 c->flags |= REDIS_SLAVE;
6190 c->slaveseldb = 0;
6191 listAddNodeTail(server.slaves,c);
6192 return;
6193 }
6194
6195 static void sendBulkToSlave(aeEventLoop *el, int fd, void *privdata, int mask) {
6196 redisClient *slave = privdata;
6197 REDIS_NOTUSED(el);
6198 REDIS_NOTUSED(mask);
6199 char buf[REDIS_IOBUF_LEN];
6200 ssize_t nwritten, buflen;
6201
6202 if (slave->repldboff == 0) {
6203 /* Write the bulk write count before to transfer the DB. In theory here
6204 * we don't know how much room there is in the output buffer of the
6205 * socket, but in pratice SO_SNDLOWAT (the minimum count for output
6206 * operations) will never be smaller than the few bytes we need. */
6207 sds bulkcount;
6208
6209 bulkcount = sdscatprintf(sdsempty(),"$%lld\r\n",(unsigned long long)
6210 slave->repldbsize);
6211 if (write(fd,bulkcount,sdslen(bulkcount)) != (signed)sdslen(bulkcount))
6212 {
6213 sdsfree(bulkcount);
6214 freeClient(slave);
6215 return;
6216 }
6217 sdsfree(bulkcount);
6218 }
6219 lseek(slave->repldbfd,slave->repldboff,SEEK_SET);
6220 buflen = read(slave->repldbfd,buf,REDIS_IOBUF_LEN);
6221 if (buflen <= 0) {
6222 redisLog(REDIS_WARNING,"Read error sending DB to slave: %s",
6223 (buflen == 0) ? "premature EOF" : strerror(errno));
6224 freeClient(slave);
6225 return;
6226 }
6227 if ((nwritten = write(fd,buf,buflen)) == -1) {
6228 redisLog(REDIS_VERBOSE,"Write error sending DB to slave: %s",
6229 strerror(errno));
6230 freeClient(slave);
6231 return;
6232 }
6233 slave->repldboff += nwritten;
6234 if (slave->repldboff == slave->repldbsize) {
6235 close(slave->repldbfd);
6236 slave->repldbfd = -1;
6237 aeDeleteFileEvent(server.el,slave->fd,AE_WRITABLE);
6238 slave->replstate = REDIS_REPL_ONLINE;
6239 if (aeCreateFileEvent(server.el, slave->fd, AE_WRITABLE,
6240 sendReplyToClient, slave) == AE_ERR) {
6241 freeClient(slave);
6242 return;
6243 }
6244 addReplySds(slave,sdsempty());
6245 redisLog(REDIS_NOTICE,"Synchronization with slave succeeded");
6246 }
6247 }
6248
6249 /* This function is called at the end of every backgrond saving.
6250 * The argument bgsaveerr is REDIS_OK if the background saving succeeded
6251 * otherwise REDIS_ERR is passed to the function.
6252 *
6253 * The goal of this function is to handle slaves waiting for a successful
6254 * background saving in order to perform non-blocking synchronization. */
6255 static void updateSlavesWaitingBgsave(int bgsaveerr) {
6256 listNode *ln;
6257 int startbgsave = 0;
6258 listIter li;
6259
6260 listRewind(server.slaves,&li);
6261 while((ln = listNext(&li))) {
6262 redisClient *slave = ln->value;
6263
6264 if (slave->replstate == REDIS_REPL_WAIT_BGSAVE_START) {
6265 startbgsave = 1;
6266 slave->replstate = REDIS_REPL_WAIT_BGSAVE_END;
6267 } else if (slave->replstate == REDIS_REPL_WAIT_BGSAVE_END) {
6268 struct redis_stat buf;
6269
6270 if (bgsaveerr != REDIS_OK) {
6271 freeClient(slave);
6272 redisLog(REDIS_WARNING,"SYNC failed. BGSAVE child returned an error");
6273 continue;
6274 }
6275 if ((slave->repldbfd = open(server.dbfilename,O_RDONLY)) == -1 ||
6276 redis_fstat(slave->repldbfd,&buf) == -1) {
6277 freeClient(slave);
6278 redisLog(REDIS_WARNING,"SYNC failed. Can't open/stat DB after BGSAVE: %s", strerror(errno));
6279 continue;
6280 }
6281 slave->repldboff = 0;
6282 slave->repldbsize = buf.st_size;
6283 slave->replstate = REDIS_REPL_SEND_BULK;
6284 aeDeleteFileEvent(server.el,slave->fd,AE_WRITABLE);
6285 if (aeCreateFileEvent(server.el, slave->fd, AE_WRITABLE, sendBulkToSlave, slave) == AE_ERR) {
6286 freeClient(slave);
6287 continue;
6288 }
6289 }
6290 }
6291 if (startbgsave) {
6292 if (rdbSaveBackground(server.dbfilename) != REDIS_OK) {
6293 listIter li;
6294
6295 listRewind(server.slaves,&li);
6296 redisLog(REDIS_WARNING,"SYNC failed. BGSAVE failed");
6297 while((ln = listNext(&li))) {
6298 redisClient *slave = ln->value;
6299
6300 if (slave->replstate == REDIS_REPL_WAIT_BGSAVE_START)
6301 freeClient(slave);
6302 }
6303 }
6304 }
6305 }
6306
6307 static int syncWithMaster(void) {
6308 char buf[1024], tmpfile[256], authcmd[1024];
6309 int dumpsize;
6310 int fd = anetTcpConnect(NULL,server.masterhost,server.masterport);
6311 int dfd;
6312
6313 if (fd == -1) {
6314 redisLog(REDIS_WARNING,"Unable to connect to MASTER: %s",
6315 strerror(errno));
6316 return REDIS_ERR;
6317 }
6318
6319 /* AUTH with the master if required. */
6320 if(server.masterauth) {
6321 snprintf(authcmd, 1024, "AUTH %s\r\n", server.masterauth);
6322 if (syncWrite(fd, authcmd, strlen(server.masterauth)+7, 5) == -1) {
6323 close(fd);
6324 redisLog(REDIS_WARNING,"Unable to AUTH to MASTER: %s",
6325 strerror(errno));
6326 return REDIS_ERR;
6327 }
6328 /* Read the AUTH result. */
6329 if (syncReadLine(fd,buf,1024,3600) == -1) {
6330 close(fd);
6331 redisLog(REDIS_WARNING,"I/O error reading auth result from MASTER: %s",
6332 strerror(errno));
6333 return REDIS_ERR;
6334 }
6335 if (buf[0] != '+') {
6336 close(fd);
6337 redisLog(REDIS_WARNING,"Cannot AUTH to MASTER, is the masterauth password correct?");
6338 return REDIS_ERR;
6339 }
6340 }
6341
6342 /* Issue the SYNC command */
6343 if (syncWrite(fd,"SYNC \r\n",7,5) == -1) {
6344 close(fd);
6345 redisLog(REDIS_WARNING,"I/O error writing to MASTER: %s",
6346 strerror(errno));
6347 return REDIS_ERR;
6348 }
6349 /* Read the bulk write count */
6350 if (syncReadLine(fd,buf,1024,3600) == -1) {
6351 close(fd);
6352 redisLog(REDIS_WARNING,"I/O error reading bulk count from MASTER: %s",
6353 strerror(errno));
6354 return REDIS_ERR;
6355 }
6356 if (buf[0] != '$') {
6357 close(fd);
6358 redisLog(REDIS_WARNING,"Bad protocol from MASTER, the first byte is not '$', are you sure the host and port are right?");
6359 return REDIS_ERR;
6360 }
6361 dumpsize = atoi(buf+1);
6362 redisLog(REDIS_NOTICE,"Receiving %d bytes data dump from MASTER",dumpsize);
6363 /* Read the bulk write data on a temp file */
6364 snprintf(tmpfile,256,"temp-%d.%ld.rdb",(int)time(NULL),(long int)random());
6365 dfd = open(tmpfile,O_CREAT|O_WRONLY,0644);
6366 if (dfd == -1) {
6367 close(fd);
6368 redisLog(REDIS_WARNING,"Opening the temp file needed for MASTER <-> SLAVE synchronization: %s",strerror(errno));
6369 return REDIS_ERR;
6370 }
6371 while(dumpsize) {
6372 int nread, nwritten;
6373
6374 nread = read(fd,buf,(dumpsize < 1024)?dumpsize:1024);
6375 if (nread == -1) {
6376 redisLog(REDIS_WARNING,"I/O error trying to sync with MASTER: %s",
6377 strerror(errno));
6378 close(fd);
6379 close(dfd);
6380 return REDIS_ERR;
6381 }
6382 nwritten = write(dfd,buf,nread);
6383 if (nwritten == -1) {
6384 redisLog(REDIS_WARNING,"Write error writing to the DB dump file needed for MASTER <-> SLAVE synchrnonization: %s", strerror(errno));
6385 close(fd);
6386 close(dfd);
6387 return REDIS_ERR;
6388 }
6389 dumpsize -= nread;
6390 }
6391 close(dfd);
6392 if (rename(tmpfile,server.dbfilename) == -1) {
6393 redisLog(REDIS_WARNING,"Failed trying to rename the temp DB into dump.rdb in MASTER <-> SLAVE synchronization: %s", strerror(errno));
6394 unlink(tmpfile);
6395 close(fd);
6396 return REDIS_ERR;
6397 }
6398 emptyDb();
6399 if (rdbLoad(server.dbfilename) != REDIS_OK) {
6400 redisLog(REDIS_WARNING,"Failed trying to load the MASTER synchronization DB from disk");
6401 close(fd);
6402 return REDIS_ERR;
6403 }
6404 server.master = createClient(fd);
6405 server.master->flags |= REDIS_MASTER;
6406 server.master->authenticated = 1;
6407 server.replstate = REDIS_REPL_CONNECTED;
6408 return REDIS_OK;
6409 }
6410
6411 static void slaveofCommand(redisClient *c) {
6412 if (!strcasecmp(c->argv[1]->ptr,"no") &&
6413 !strcasecmp(c->argv[2]->ptr,"one")) {
6414 if (server.masterhost) {
6415 sdsfree(server.masterhost);
6416 server.masterhost = NULL;
6417 if (server.master) freeClient(server.master);
6418 server.replstate = REDIS_REPL_NONE;
6419 redisLog(REDIS_NOTICE,"MASTER MODE enabled (user request)");
6420 }
6421 } else {
6422 sdsfree(server.masterhost);
6423 server.masterhost = sdsdup(c->argv[1]->ptr);
6424 server.masterport = atoi(c->argv[2]->ptr);
6425 if (server.master) freeClient(server.master);
6426 server.replstate = REDIS_REPL_CONNECT;
6427 redisLog(REDIS_NOTICE,"SLAVE OF %s:%d enabled (user request)",
6428 server.masterhost, server.masterport);
6429 }
6430 addReply(c,shared.ok);
6431 }
6432
6433 /* ============================ Maxmemory directive ======================== */
6434
6435 /* Try to free one object form the pre-allocated objects free list.
6436 * This is useful under low mem conditions as by default we take 1 million
6437 * free objects allocated. On success REDIS_OK is returned, otherwise
6438 * REDIS_ERR. */
6439 static int tryFreeOneObjectFromFreelist(void) {
6440 robj *o;
6441
6442 if (server.vm_enabled) pthread_mutex_lock(&server.obj_freelist_mutex);
6443 if (listLength(server.objfreelist)) {
6444 listNode *head = listFirst(server.objfreelist);
6445 o = listNodeValue(head);
6446 listDelNode(server.objfreelist,head);
6447 if (server.vm_enabled) pthread_mutex_unlock(&server.obj_freelist_mutex);
6448 zfree(o);
6449 return REDIS_OK;
6450 } else {
6451 if (server.vm_enabled) pthread_mutex_unlock(&server.obj_freelist_mutex);
6452 return REDIS_ERR;
6453 }
6454 }
6455
6456 /* This function gets called when 'maxmemory' is set on the config file to limit
6457 * the max memory used by the server, and we are out of memory.
6458 * This function will try to, in order:
6459 *
6460 * - Free objects from the free list
6461 * - Try to remove keys with an EXPIRE set
6462 *
6463 * It is not possible to free enough memory to reach used-memory < maxmemory
6464 * the server will start refusing commands that will enlarge even more the
6465 * memory usage.
6466 */
6467 static void freeMemoryIfNeeded(void) {
6468 while (server.maxmemory && zmalloc_used_memory() > server.maxmemory) {
6469 int j, k, freed = 0;
6470
6471 if (tryFreeOneObjectFromFreelist() == REDIS_OK) continue;
6472 for (j = 0; j < server.dbnum; j++) {
6473 int minttl = -1;
6474 robj *minkey = NULL;
6475 struct dictEntry *de;
6476
6477 if (dictSize(server.db[j].expires)) {
6478 freed = 1;
6479 /* From a sample of three keys drop the one nearest to
6480 * the natural expire */
6481 for (k = 0; k < 3; k++) {
6482 time_t t;
6483
6484 de = dictGetRandomKey(server.db[j].expires);
6485 t = (time_t) dictGetEntryVal(de);
6486 if (minttl == -1 || t < minttl) {
6487 minkey = dictGetEntryKey(de);
6488 minttl = t;
6489 }
6490 }
6491 deleteKey(server.db+j,minkey);
6492 }
6493 }
6494 if (!freed) return; /* nothing to free... */
6495 }
6496 }
6497
6498 /* ============================== Append Only file ========================== */
6499
6500 static void feedAppendOnlyFile(struct redisCommand *cmd, int dictid, robj **argv, int argc) {
6501 sds buf = sdsempty();
6502 int j;
6503 ssize_t nwritten;
6504 time_t now;
6505 robj *tmpargv[3];
6506
6507 /* The DB this command was targetting is not the same as the last command
6508 * we appendend. To issue a SELECT command is needed. */
6509 if (dictid != server.appendseldb) {
6510 char seldb[64];
6511
6512 snprintf(seldb,sizeof(seldb),"%d",dictid);
6513 buf = sdscatprintf(buf,"*2\r\n$6\r\nSELECT\r\n$%lu\r\n%s\r\n",
6514 (unsigned long)strlen(seldb),seldb);
6515 server.appendseldb = dictid;
6516 }
6517
6518 /* "Fix" the argv vector if the command is EXPIRE. We want to translate
6519 * EXPIREs into EXPIREATs calls */
6520 if (cmd->proc == expireCommand) {
6521 long when;
6522
6523 tmpargv[0] = createStringObject("EXPIREAT",8);
6524 tmpargv[1] = argv[1];
6525 incrRefCount(argv[1]);
6526 when = time(NULL)+strtol(argv[2]->ptr,NULL,10);
6527 tmpargv[2] = createObject(REDIS_STRING,
6528 sdscatprintf(sdsempty(),"%ld",when));
6529 argv = tmpargv;
6530 }
6531
6532 /* Append the actual command */
6533 buf = sdscatprintf(buf,"*%d\r\n",argc);
6534 for (j = 0; j < argc; j++) {
6535 robj *o = argv[j];
6536
6537 o = getDecodedObject(o);
6538 buf = sdscatprintf(buf,"$%lu\r\n",(unsigned long)sdslen(o->ptr));
6539 buf = sdscatlen(buf,o->ptr,sdslen(o->ptr));
6540 buf = sdscatlen(buf,"\r\n",2);
6541 decrRefCount(o);
6542 }
6543
6544 /* Free the objects from the modified argv for EXPIREAT */
6545 if (cmd->proc == expireCommand) {
6546 for (j = 0; j < 3; j++)
6547 decrRefCount(argv[j]);
6548 }
6549
6550 /* We want to perform a single write. This should be guaranteed atomic
6551 * at least if the filesystem we are writing is a real physical one.
6552 * While this will save us against the server being killed I don't think
6553 * there is much to do about the whole server stopping for power problems
6554 * or alike */
6555 nwritten = write(server.appendfd,buf,sdslen(buf));
6556 if (nwritten != (signed)sdslen(buf)) {
6557 /* Ooops, we are in troubles. The best thing to do for now is
6558 * to simply exit instead to give the illusion that everything is
6559 * working as expected. */
6560 if (nwritten == -1) {
6561 redisLog(REDIS_WARNING,"Exiting on error writing to the append-only file: %s",strerror(errno));
6562 } else {
6563 redisLog(REDIS_WARNING,"Exiting on short write while writing to the append-only file: %s",strerror(errno));
6564 }
6565 exit(1);
6566 }
6567 /* If a background append only file rewriting is in progress we want to
6568 * accumulate the differences between the child DB and the current one
6569 * in a buffer, so that when the child process will do its work we
6570 * can append the differences to the new append only file. */
6571 if (server.bgrewritechildpid != -1)
6572 server.bgrewritebuf = sdscatlen(server.bgrewritebuf,buf,sdslen(buf));
6573
6574 sdsfree(buf);
6575 now = time(NULL);
6576 if (server.appendfsync == APPENDFSYNC_ALWAYS ||
6577 (server.appendfsync == APPENDFSYNC_EVERYSEC &&
6578 now-server.lastfsync > 1))
6579 {
6580 fsync(server.appendfd); /* Let's try to get this data on the disk */
6581 server.lastfsync = now;
6582 }
6583 }
6584
6585 /* In Redis commands are always executed in the context of a client, so in
6586 * order to load the append only file we need to create a fake client. */
6587 static struct redisClient *createFakeClient(void) {
6588 struct redisClient *c = zmalloc(sizeof(*c));
6589
6590 selectDb(c,0);
6591 c->fd = -1;
6592 c->querybuf = sdsempty();
6593 c->argc = 0;
6594 c->argv = NULL;
6595 c->flags = 0;
6596 /* We set the fake client as a slave waiting for the synchronization
6597 * so that Redis will not try to send replies to this client. */
6598 c->replstate = REDIS_REPL_WAIT_BGSAVE_START;
6599 c->reply = listCreate();
6600 listSetFreeMethod(c->reply,decrRefCount);
6601 listSetDupMethod(c->reply,dupClientReplyValue);
6602 return c;
6603 }
6604
6605 static void freeFakeClient(struct redisClient *c) {
6606 sdsfree(c->querybuf);
6607 listRelease(c->reply);
6608 zfree(c);
6609 }
6610
6611 /* Replay the append log file. On error REDIS_OK is returned. On non fatal
6612 * error (the append only file is zero-length) REDIS_ERR is returned. On
6613 * fatal error an error message is logged and the program exists. */
6614 int loadAppendOnlyFile(char *filename) {
6615 struct redisClient *fakeClient;
6616 FILE *fp = fopen(filename,"r");
6617 struct redis_stat sb;
6618 unsigned long long loadedkeys = 0;
6619
6620 if (redis_fstat(fileno(fp),&sb) != -1 && sb.st_size == 0)
6621 return REDIS_ERR;
6622
6623 if (fp == NULL) {
6624 redisLog(REDIS_WARNING,"Fatal error: can't open the append log file for reading: %s",strerror(errno));
6625 exit(1);
6626 }
6627
6628 fakeClient = createFakeClient();
6629 while(1) {
6630 int argc, j;
6631 unsigned long len;
6632 robj **argv;
6633 char buf[128];
6634 sds argsds;
6635 struct redisCommand *cmd;
6636
6637 if (fgets(buf,sizeof(buf),fp) == NULL) {
6638 if (feof(fp))
6639 break;
6640 else
6641 goto readerr;
6642 }
6643 if (buf[0] != '*') goto fmterr;
6644 argc = atoi(buf+1);
6645 argv = zmalloc(sizeof(robj*)*argc);
6646 for (j = 0; j < argc; j++) {
6647 if (fgets(buf,sizeof(buf),fp) == NULL) goto readerr;
6648 if (buf[0] != '$') goto fmterr;
6649 len = strtol(buf+1,NULL,10);
6650 argsds = sdsnewlen(NULL,len);
6651 if (len && fread(argsds,len,1,fp) == 0) goto fmterr;
6652 argv[j] = createObject(REDIS_STRING,argsds);
6653 if (fread(buf,2,1,fp) == 0) goto fmterr; /* discard CRLF */
6654 }
6655
6656 /* Command lookup */
6657 cmd = lookupCommand(argv[0]->ptr);
6658 if (!cmd) {
6659 redisLog(REDIS_WARNING,"Unknown command '%s' reading the append only file", argv[0]->ptr);
6660 exit(1);
6661 }
6662 /* Try object sharing and encoding */
6663 if (server.shareobjects) {
6664 int j;
6665 for(j = 1; j < argc; j++)
6666 argv[j] = tryObjectSharing(argv[j]);
6667 }
6668 if (cmd->flags & REDIS_CMD_BULK)
6669 tryObjectEncoding(argv[argc-1]);
6670 /* Run the command in the context of a fake client */
6671 fakeClient->argc = argc;
6672 fakeClient->argv = argv;
6673 cmd->proc(fakeClient);
6674 /* Discard the reply objects list from the fake client */
6675 while(listLength(fakeClient->reply))
6676 listDelNode(fakeClient->reply,listFirst(fakeClient->reply));
6677 /* Clean up, ready for the next command */
6678 for (j = 0; j < argc; j++) decrRefCount(argv[j]);
6679 zfree(argv);
6680 /* Handle swapping while loading big datasets when VM is on */
6681 loadedkeys++;
6682 if (server.vm_enabled && (loadedkeys % 5000) == 0) {
6683 while (zmalloc_used_memory() > server.vm_max_memory) {
6684 if (vmSwapOneObjectBlocking() == REDIS_ERR) break;
6685 }
6686 }
6687 }
6688 fclose(fp);
6689 freeFakeClient(fakeClient);
6690 return REDIS_OK;
6691
6692 readerr:
6693 if (feof(fp)) {
6694 redisLog(REDIS_WARNING,"Unexpected end of file reading the append only file");
6695 } else {
6696 redisLog(REDIS_WARNING,"Unrecoverable error reading the append only file: %s", strerror(errno));
6697 }
6698 exit(1);
6699 fmterr:
6700 redisLog(REDIS_WARNING,"Bad file format reading the append only file");
6701 exit(1);
6702 }
6703
6704 /* Write an object into a file in the bulk format $<count>\r\n<payload>\r\n */
6705 static int fwriteBulk(FILE *fp, robj *obj) {
6706 char buf[128];
6707 int decrrc = 0;
6708
6709 /* Avoid the incr/decr ref count business if possible to help
6710 * copy-on-write (we are often in a child process when this function
6711 * is called).
6712 * Also makes sure that key objects don't get incrRefCount-ed when VM
6713 * is enabled */
6714 if (obj->encoding != REDIS_ENCODING_RAW) {
6715 obj = getDecodedObject(obj);
6716 decrrc = 1;
6717 }
6718 snprintf(buf,sizeof(buf),"$%ld\r\n",(long)sdslen(obj->ptr));
6719 if (fwrite(buf,strlen(buf),1,fp) == 0) goto err;
6720 if (sdslen(obj->ptr) && fwrite(obj->ptr,sdslen(obj->ptr),1,fp) == 0)
6721 goto err;
6722 if (fwrite("\r\n",2,1,fp) == 0) goto err;
6723 if (decrrc) decrRefCount(obj);
6724 return 1;
6725 err:
6726 if (decrrc) decrRefCount(obj);
6727 return 0;
6728 }
6729
6730 /* Write a double value in bulk format $<count>\r\n<payload>\r\n */
6731 static int fwriteBulkDouble(FILE *fp, double d) {
6732 char buf[128], dbuf[128];
6733
6734 snprintf(dbuf,sizeof(dbuf),"%.17g\r\n",d);
6735 snprintf(buf,sizeof(buf),"$%lu\r\n",(unsigned long)strlen(dbuf)-2);
6736 if (fwrite(buf,strlen(buf),1,fp) == 0) return 0;
6737 if (fwrite(dbuf,strlen(dbuf),1,fp) == 0) return 0;
6738 return 1;
6739 }
6740
6741 /* Write a long value in bulk format $<count>\r\n<payload>\r\n */
6742 static int fwriteBulkLong(FILE *fp, long l) {
6743 char buf[128], lbuf[128];
6744
6745 snprintf(lbuf,sizeof(lbuf),"%ld\r\n",l);
6746 snprintf(buf,sizeof(buf),"$%lu\r\n",(unsigned long)strlen(lbuf)-2);
6747 if (fwrite(buf,strlen(buf),1,fp) == 0) return 0;
6748 if (fwrite(lbuf,strlen(lbuf),1,fp) == 0) return 0;
6749 return 1;
6750 }
6751
6752 /* Write a sequence of commands able to fully rebuild the dataset into
6753 * "filename". Used both by REWRITEAOF and BGREWRITEAOF. */
6754 static int rewriteAppendOnlyFile(char *filename) {
6755 dictIterator *di = NULL;
6756 dictEntry *de;
6757 FILE *fp;
6758 char tmpfile[256];
6759 int j;
6760 time_t now = time(NULL);
6761
6762 /* Note that we have to use a different temp name here compared to the
6763 * one used by rewriteAppendOnlyFileBackground() function. */
6764 snprintf(tmpfile,256,"temp-rewriteaof-%d.aof", (int) getpid());
6765 fp = fopen(tmpfile,"w");
6766 if (!fp) {
6767 redisLog(REDIS_WARNING, "Failed rewriting the append only file: %s", strerror(errno));
6768 return REDIS_ERR;
6769 }
6770 for (j = 0; j < server.dbnum; j++) {
6771 char selectcmd[] = "*2\r\n$6\r\nSELECT\r\n";
6772 redisDb *db = server.db+j;
6773 dict *d = db->dict;
6774 if (dictSize(d) == 0) continue;
6775 di = dictGetIterator(d);
6776 if (!di) {
6777 fclose(fp);
6778 return REDIS_ERR;
6779 }
6780
6781 /* SELECT the new DB */
6782 if (fwrite(selectcmd,sizeof(selectcmd)-1,1,fp) == 0) goto werr;
6783 if (fwriteBulkLong(fp,j) == 0) goto werr;
6784
6785 /* Iterate this DB writing every entry */
6786 while((de = dictNext(di)) != NULL) {
6787 robj *key, *o;
6788 time_t expiretime;
6789 int swapped;
6790
6791 key = dictGetEntryKey(de);
6792 /* If the value for this key is swapped, load a preview in memory.
6793 * We use a "swapped" flag to remember if we need to free the
6794 * value object instead to just increment the ref count anyway
6795 * in order to avoid copy-on-write of pages if we are forked() */
6796 if (!server.vm_enabled || key->storage == REDIS_VM_MEMORY ||
6797 key->storage == REDIS_VM_SWAPPING) {
6798 o = dictGetEntryVal(de);
6799 swapped = 0;
6800 } else {
6801 o = vmPreviewObject(key);
6802 swapped = 1;
6803 }
6804 expiretime = getExpire(db,key);
6805
6806 /* Save the key and associated value */
6807 if (o->type == REDIS_STRING) {
6808 /* Emit a SET command */
6809 char cmd[]="*3\r\n$3\r\nSET\r\n";
6810 if (fwrite(cmd,sizeof(cmd)-1,1,fp) == 0) goto werr;
6811 /* Key and value */
6812 if (fwriteBulk(fp,key) == 0) goto werr;
6813 if (fwriteBulk(fp,o) == 0) goto werr;
6814 } else if (o->type == REDIS_LIST) {
6815 /* Emit the RPUSHes needed to rebuild the list */
6816 list *list = o->ptr;
6817 listNode *ln;
6818 listIter li;
6819
6820 listRewind(list,&li);
6821 while((ln = listNext(&li))) {
6822 char cmd[]="*3\r\n$5\r\nRPUSH\r\n";
6823 robj *eleobj = listNodeValue(ln);
6824
6825 if (fwrite(cmd,sizeof(cmd)-1,1,fp) == 0) goto werr;
6826 if (fwriteBulk(fp,key) == 0) goto werr;
6827 if (fwriteBulk(fp,eleobj) == 0) goto werr;
6828 }
6829 } else if (o->type == REDIS_SET) {
6830 /* Emit the SADDs needed to rebuild the set */
6831 dict *set = o->ptr;
6832 dictIterator *di = dictGetIterator(set);
6833 dictEntry *de;
6834
6835 while((de = dictNext(di)) != NULL) {
6836 char cmd[]="*3\r\n$4\r\nSADD\r\n";
6837 robj *eleobj = dictGetEntryKey(de);
6838
6839 if (fwrite(cmd,sizeof(cmd)-1,1,fp) == 0) goto werr;
6840 if (fwriteBulk(fp,key) == 0) goto werr;
6841 if (fwriteBulk(fp,eleobj) == 0) goto werr;
6842 }
6843 dictReleaseIterator(di);
6844 } else if (o->type == REDIS_ZSET) {
6845 /* Emit the ZADDs needed to rebuild the sorted set */
6846 zset *zs = o->ptr;
6847 dictIterator *di = dictGetIterator(zs->dict);
6848 dictEntry *de;
6849
6850 while((de = dictNext(di)) != NULL) {
6851 char cmd[]="*4\r\n$4\r\nZADD\r\n";
6852 robj *eleobj = dictGetEntryKey(de);
6853 double *score = dictGetEntryVal(de);
6854
6855 if (fwrite(cmd,sizeof(cmd)-1,1,fp) == 0) goto werr;
6856 if (fwriteBulk(fp,key) == 0) goto werr;
6857 if (fwriteBulkDouble(fp,*score) == 0) goto werr;
6858 if (fwriteBulk(fp,eleobj) == 0) goto werr;
6859 }
6860 dictReleaseIterator(di);
6861 } else {
6862 redisAssert(0 != 0);
6863 }
6864 /* Save the expire time */
6865 if (expiretime != -1) {
6866 char cmd[]="*3\r\n$8\r\nEXPIREAT\r\n";
6867 /* If this key is already expired skip it */
6868 if (expiretime < now) continue;
6869 if (fwrite(cmd,sizeof(cmd)-1,1,fp) == 0) goto werr;
6870 if (fwriteBulk(fp,key) == 0) goto werr;
6871 if (fwriteBulkLong(fp,expiretime) == 0) goto werr;
6872 }
6873 if (swapped) decrRefCount(o);
6874 }
6875 dictReleaseIterator(di);
6876 }
6877
6878 /* Make sure data will not remain on the OS's output buffers */
6879 fflush(fp);
6880 fsync(fileno(fp));
6881 fclose(fp);
6882
6883 /* Use RENAME to make sure the DB file is changed atomically only
6884 * if the generate DB file is ok. */
6885 if (rename(tmpfile,filename) == -1) {
6886 redisLog(REDIS_WARNING,"Error moving temp append only file on the final destination: %s", strerror(errno));
6887 unlink(tmpfile);
6888 return REDIS_ERR;
6889 }
6890 redisLog(REDIS_NOTICE,"SYNC append only file rewrite performed");
6891 return REDIS_OK;
6892
6893 werr:
6894 fclose(fp);
6895 unlink(tmpfile);
6896 redisLog(REDIS_WARNING,"Write error writing append only file on disk: %s", strerror(errno));
6897 if (di) dictReleaseIterator(di);
6898 return REDIS_ERR;
6899 }
6900
6901 /* This is how rewriting of the append only file in background works:
6902 *
6903 * 1) The user calls BGREWRITEAOF
6904 * 2) Redis calls this function, that forks():
6905 * 2a) the child rewrite the append only file in a temp file.
6906 * 2b) the parent accumulates differences in server.bgrewritebuf.
6907 * 3) When the child finished '2a' exists.
6908 * 4) The parent will trap the exit code, if it's OK, will append the
6909 * data accumulated into server.bgrewritebuf into the temp file, and
6910 * finally will rename(2) the temp file in the actual file name.
6911 * The the new file is reopened as the new append only file. Profit!
6912 */
6913 static int rewriteAppendOnlyFileBackground(void) {
6914 pid_t childpid;
6915
6916 if (server.bgrewritechildpid != -1) return REDIS_ERR;
6917 if (server.vm_enabled) waitZeroActiveThreads();
6918 if ((childpid = fork()) == 0) {
6919 /* Child */
6920 char tmpfile[256];
6921 close(server.fd);
6922
6923 snprintf(tmpfile,256,"temp-rewriteaof-bg-%d.aof", (int) getpid());
6924 if (rewriteAppendOnlyFile(tmpfile) == REDIS_OK) {
6925 exit(0);
6926 } else {
6927 exit(1);
6928 }
6929 } else {
6930 /* Parent */
6931 if (childpid == -1) {
6932 redisLog(REDIS_WARNING,
6933 "Can't rewrite append only file in background: fork: %s",
6934 strerror(errno));
6935 return REDIS_ERR;
6936 }
6937 redisLog(REDIS_NOTICE,
6938 "Background append only file rewriting started by pid %d",childpid);
6939 server.bgrewritechildpid = childpid;
6940 /* We set appendseldb to -1 in order to force the next call to the
6941 * feedAppendOnlyFile() to issue a SELECT command, so the differences
6942 * accumulated by the parent into server.bgrewritebuf will start
6943 * with a SELECT statement and it will be safe to merge. */
6944 server.appendseldb = -1;
6945 return REDIS_OK;
6946 }
6947 return REDIS_OK; /* unreached */
6948 }
6949
6950 static void bgrewriteaofCommand(redisClient *c) {
6951 if (server.bgrewritechildpid != -1) {
6952 addReplySds(c,sdsnew("-ERR background append only file rewriting already in progress\r\n"));
6953 return;
6954 }
6955 if (rewriteAppendOnlyFileBackground() == REDIS_OK) {
6956 char *status = "+Background append only file rewriting started\r\n";
6957 addReplySds(c,sdsnew(status));
6958 } else {
6959 addReply(c,shared.err);
6960 }
6961 }
6962
6963 static void aofRemoveTempFile(pid_t childpid) {
6964 char tmpfile[256];
6965
6966 snprintf(tmpfile,256,"temp-rewriteaof-bg-%d.aof", (int) childpid);
6967 unlink(tmpfile);
6968 }
6969
6970 /* Virtual Memory is composed mainly of two subsystems:
6971 * - Blocking Virutal Memory
6972 * - Threaded Virtual Memory I/O
6973 * The two parts are not fully decoupled, but functions are split among two
6974 * different sections of the source code (delimited by comments) in order to
6975 * make more clear what functionality is about the blocking VM and what about
6976 * the threaded (not blocking) VM.
6977 *
6978 * Redis VM design:
6979 *
6980 * Redis VM is a blocking VM (one that blocks reading swapped values from
6981 * disk into memory when a value swapped out is needed in memory) that is made
6982 * unblocking by trying to examine the command argument vector in order to
6983 * load in background values that will likely be needed in order to exec
6984 * the command. The command is executed only once all the relevant keys
6985 * are loaded into memory.
6986 *
6987 * This basically is almost as simple of a blocking VM, but almost as parallel
6988 * as a fully non-blocking VM.
6989 */
6990
6991 /* =================== Virtual Memory - Blocking Side ====================== */
6992 static void vmInit(void) {
6993 off_t totsize;
6994 int pipefds[2];
6995 size_t stacksize;
6996
6997 server.vm_fp = fopen("/tmp/redisvm","w+b");
6998 if (server.vm_fp == NULL) {
6999 redisLog(REDIS_WARNING,"Impossible to open the swap file. Exiting.");
7000 exit(1);
7001 }
7002 server.vm_fd = fileno(server.vm_fp);
7003 server.vm_next_page = 0;
7004 server.vm_near_pages = 0;
7005 server.vm_stats_used_pages = 0;
7006 server.vm_stats_swapped_objects = 0;
7007 server.vm_stats_swapouts = 0;
7008 server.vm_stats_swapins = 0;
7009 totsize = server.vm_pages*server.vm_page_size;
7010 redisLog(REDIS_NOTICE,"Allocating %lld bytes of swap file",totsize);
7011 if (ftruncate(server.vm_fd,totsize) == -1) {
7012 redisLog(REDIS_WARNING,"Can't ftruncate swap file: %s. Exiting.",
7013 strerror(errno));
7014 exit(1);
7015 } else {
7016 redisLog(REDIS_NOTICE,"Swap file allocated with success");
7017 }
7018 server.vm_bitmap = zmalloc((server.vm_pages+7)/8);
7019 redisLog(REDIS_VERBOSE,"Allocated %lld bytes page table for %lld pages",
7020 (long long) (server.vm_pages+7)/8, server.vm_pages);
7021 memset(server.vm_bitmap,0,(server.vm_pages+7)/8);
7022 /* Try to remove the swap file, so the OS will really delete it from the
7023 * file system when Redis exists. */
7024 unlink("/tmp/redisvm");
7025
7026 /* Initialize threaded I/O (used by Virtual Memory) */
7027 server.io_newjobs = listCreate();
7028 server.io_processing = listCreate();
7029 server.io_processed = listCreate();
7030 server.io_clients = listCreate();
7031 pthread_mutex_init(&server.io_mutex,NULL);
7032 pthread_mutex_init(&server.obj_freelist_mutex,NULL);
7033 pthread_mutex_init(&server.io_swapfile_mutex,NULL);
7034 server.io_active_threads = 0;
7035 if (pipe(pipefds) == -1) {
7036 redisLog(REDIS_WARNING,"Unable to intialized VM: pipe(2): %s. Exiting."
7037 ,strerror(errno));
7038 exit(1);
7039 }
7040 server.io_ready_pipe_read = pipefds[0];
7041 server.io_ready_pipe_write = pipefds[1];
7042 redisAssert(anetNonBlock(NULL,server.io_ready_pipe_read) != ANET_ERR);
7043 /* LZF requires a lot of stack */
7044 pthread_attr_init(&server.io_threads_attr);
7045 pthread_attr_getstacksize(&server.io_threads_attr, &stacksize);
7046 while (stacksize < REDIS_THREAD_STACK_SIZE) stacksize *= 2;
7047 pthread_attr_setstacksize(&server.io_threads_attr, stacksize);
7048 /* Listen for events in the threaded I/O pipe */
7049 if (aeCreateFileEvent(server.el, server.io_ready_pipe_read, AE_READABLE,
7050 vmThreadedIOCompletedJob, NULL) == AE_ERR)
7051 oom("creating file event");
7052 }
7053
7054 /* Mark the page as used */
7055 static void vmMarkPageUsed(off_t page) {
7056 off_t byte = page/8;
7057 int bit = page&7;
7058 server.vm_bitmap[byte] |= 1<<bit;
7059 redisLog(REDIS_DEBUG,"Mark used: %lld (byte:%lld bit:%d)\n",
7060 (long long)page, (long long)byte, bit);
7061 }
7062
7063 /* Mark N contiguous pages as used, with 'page' being the first. */
7064 static void vmMarkPagesUsed(off_t page, off_t count) {
7065 off_t j;
7066
7067 for (j = 0; j < count; j++)
7068 vmMarkPageUsed(page+j);
7069 server.vm_stats_used_pages += count;
7070 }
7071
7072 /* Mark the page as free */
7073 static void vmMarkPageFree(off_t page) {
7074 off_t byte = page/8;
7075 int bit = page&7;
7076 server.vm_bitmap[byte] &= ~(1<<bit);
7077 }
7078
7079 /* Mark N contiguous pages as free, with 'page' being the first. */
7080 static void vmMarkPagesFree(off_t page, off_t count) {
7081 off_t j;
7082
7083 for (j = 0; j < count; j++)
7084 vmMarkPageFree(page+j);
7085 server.vm_stats_used_pages -= count;
7086 }
7087
7088 /* Test if the page is free */
7089 static int vmFreePage(off_t page) {
7090 off_t byte = page/8;
7091 int bit = page&7;
7092 return (server.vm_bitmap[byte] & (1<<bit)) == 0;
7093 }
7094
7095 /* Find N contiguous free pages storing the first page of the cluster in *first.
7096 * Returns REDIS_OK if it was able to find N contiguous pages, otherwise
7097 * REDIS_ERR is returned.
7098 *
7099 * This function uses a simple algorithm: we try to allocate
7100 * REDIS_VM_MAX_NEAR_PAGES sequentially, when we reach this limit we start
7101 * again from the start of the swap file searching for free spaces.
7102 *
7103 * If it looks pretty clear that there are no free pages near our offset
7104 * we try to find less populated places doing a forward jump of
7105 * REDIS_VM_MAX_RANDOM_JUMP, then we start scanning again a few pages
7106 * without hurry, and then we jump again and so forth...
7107 *
7108 * This function can be improved using a free list to avoid to guess
7109 * too much, since we could collect data about freed pages.
7110 *
7111 * note: I implemented this function just after watching an episode of
7112 * Battlestar Galactica, where the hybrid was continuing to say "JUMP!"
7113 */
7114 static int vmFindContiguousPages(off_t *first, off_t n) {
7115 off_t base, offset = 0, since_jump = 0, numfree = 0;
7116
7117 if (server.vm_near_pages == REDIS_VM_MAX_NEAR_PAGES) {
7118 server.vm_near_pages = 0;
7119 server.vm_next_page = 0;
7120 }
7121 server.vm_near_pages++; /* Yet another try for pages near to the old ones */
7122 base = server.vm_next_page;
7123
7124 while(offset < server.vm_pages) {
7125 off_t this = base+offset;
7126
7127 redisLog(REDIS_DEBUG, "THIS: %lld (%c)\n", (long long) this, vmFreePage(this) ? 'F' : 'X');
7128 /* If we overflow, restart from page zero */
7129 if (this >= server.vm_pages) {
7130 this -= server.vm_pages;
7131 if (this == 0) {
7132 /* Just overflowed, what we found on tail is no longer
7133 * interesting, as it's no longer contiguous. */
7134 numfree = 0;
7135 }
7136 }
7137 if (vmFreePage(this)) {
7138 /* This is a free page */
7139 numfree++;
7140 /* Already got N free pages? Return to the caller, with success */
7141 if (numfree == n) {
7142 *first = this-(n-1);
7143 server.vm_next_page = this+1;
7144 return REDIS_OK;
7145 }
7146 } else {
7147 /* The current one is not a free page */
7148 numfree = 0;
7149 }
7150
7151 /* Fast-forward if the current page is not free and we already
7152 * searched enough near this place. */
7153 since_jump++;
7154 if (!numfree && since_jump >= REDIS_VM_MAX_RANDOM_JUMP/4) {
7155 offset += random() % REDIS_VM_MAX_RANDOM_JUMP;
7156 since_jump = 0;
7157 /* Note that even if we rewind after the jump, we are don't need
7158 * to make sure numfree is set to zero as we only jump *if* it
7159 * is set to zero. */
7160 } else {
7161 /* Otherwise just check the next page */
7162 offset++;
7163 }
7164 }
7165 return REDIS_ERR;
7166 }
7167
7168 /* Write the specified object at the specified page of the swap file */
7169 static int vmWriteObjectOnSwap(robj *o, off_t page) {
7170 if (server.vm_enabled) pthread_mutex_lock(&server.io_swapfile_mutex);
7171 if (fseeko(server.vm_fp,page*server.vm_page_size,SEEK_SET) == -1) {
7172 if (server.vm_enabled) pthread_mutex_unlock(&server.io_swapfile_mutex);
7173 redisLog(REDIS_WARNING,
7174 "Critical VM problem in vmSwapObjectBlocking(): can't seek: %s",
7175 strerror(errno));
7176 return REDIS_ERR;
7177 }
7178 rdbSaveObject(server.vm_fp,o);
7179 if (server.vm_enabled) pthread_mutex_unlock(&server.io_swapfile_mutex);
7180 return REDIS_OK;
7181 }
7182
7183 /* Swap the 'val' object relative to 'key' into disk. Store all the information
7184 * needed to later retrieve the object into the key object.
7185 * If we can't find enough contiguous empty pages to swap the object on disk
7186 * REDIS_ERR is returned. */
7187 static int vmSwapObjectBlocking(robj *key, robj *val) {
7188 off_t pages = rdbSavedObjectPages(val,NULL);
7189 off_t page;
7190
7191 assert(key->storage == REDIS_VM_MEMORY);
7192 assert(key->refcount == 1);
7193 if (vmFindContiguousPages(&page,pages) == REDIS_ERR) return REDIS_ERR;
7194 if (vmWriteObjectOnSwap(val,page) == REDIS_ERR) return REDIS_ERR;
7195 key->vm.page = page;
7196 key->vm.usedpages = pages;
7197 key->storage = REDIS_VM_SWAPPED;
7198 key->vtype = val->type;
7199 decrRefCount(val); /* Deallocate the object from memory. */
7200 vmMarkPagesUsed(page,pages);
7201 redisLog(REDIS_DEBUG,"VM: object %s swapped out at %lld (%lld pages)",
7202 (unsigned char*) key->ptr,
7203 (unsigned long long) page, (unsigned long long) pages);
7204 server.vm_stats_swapped_objects++;
7205 server.vm_stats_swapouts++;
7206 fflush(server.vm_fp);
7207 return REDIS_OK;
7208 }
7209
7210 static robj *vmReadObjectFromSwap(off_t page, int type) {
7211 robj *o;
7212
7213 if (server.vm_enabled) pthread_mutex_lock(&server.io_swapfile_mutex);
7214 if (fseeko(server.vm_fp,page*server.vm_page_size,SEEK_SET) == -1) {
7215 redisLog(REDIS_WARNING,
7216 "Unrecoverable VM problem in vmLoadObject(): can't seek: %s",
7217 strerror(errno));
7218 exit(1);
7219 }
7220 o = rdbLoadObject(type,server.vm_fp);
7221 if (o == NULL) {
7222 redisLog(REDIS_WARNING, "Unrecoverable VM problem in vmLoadObject(): can't load object from swap file: %s", strerror(errno));
7223 exit(1);
7224 }
7225 if (server.vm_enabled) pthread_mutex_unlock(&server.io_swapfile_mutex);
7226 return o;
7227 }
7228
7229 /* Load the value object relative to the 'key' object from swap to memory.
7230 * The newly allocated object is returned.
7231 *
7232 * If preview is true the unserialized object is returned to the caller but
7233 * no changes are made to the key object, nor the pages are marked as freed */
7234 static robj *vmGenericLoadObject(robj *key, int preview) {
7235 robj *val;
7236
7237 redisAssert(key->storage == REDIS_VM_SWAPPED);
7238 val = vmReadObjectFromSwap(key->vm.page,key->vtype);
7239 if (!preview) {
7240 key->storage = REDIS_VM_MEMORY;
7241 key->vm.atime = server.unixtime;
7242 vmMarkPagesFree(key->vm.page,key->vm.usedpages);
7243 redisLog(REDIS_DEBUG, "VM: object %s loaded from disk",
7244 (unsigned char*) key->ptr);
7245 server.vm_stats_swapped_objects--;
7246 } else {
7247 redisLog(REDIS_DEBUG, "VM: object %s previewed from disk",
7248 (unsigned char*) key->ptr);
7249 }
7250 server.vm_stats_swapins++;
7251 return val;
7252 }
7253
7254 /* Plain object loading, from swap to memory */
7255 static robj *vmLoadObject(robj *key) {
7256 /* If we are loading the object in background, stop it, we
7257 * need to load this object synchronously ASAP. */
7258 if (key->storage == REDIS_VM_LOADING)
7259 vmCancelThreadedIOJob(key);
7260 return vmGenericLoadObject(key,0);
7261 }
7262
7263 /* Just load the value on disk, without to modify the key.
7264 * This is useful when we want to perform some operation on the value
7265 * without to really bring it from swap to memory, like while saving the
7266 * dataset or rewriting the append only log. */
7267 static robj *vmPreviewObject(robj *key) {
7268 return vmGenericLoadObject(key,1);
7269 }
7270
7271 /* How a good candidate is this object for swapping?
7272 * The better candidate it is, the greater the returned value.
7273 *
7274 * Currently we try to perform a fast estimation of the object size in
7275 * memory, and combine it with aging informations.
7276 *
7277 * Basically swappability = idle-time * log(estimated size)
7278 *
7279 * Bigger objects are preferred over smaller objects, but not
7280 * proportionally, this is why we use the logarithm. This algorithm is
7281 * just a first try and will probably be tuned later. */
7282 static double computeObjectSwappability(robj *o) {
7283 time_t age = server.unixtime - o->vm.atime;
7284 long asize = 0;
7285 list *l;
7286 dict *d;
7287 struct dictEntry *de;
7288 int z;
7289
7290 if (age <= 0) return 0;
7291 switch(o->type) {
7292 case REDIS_STRING:
7293 if (o->encoding != REDIS_ENCODING_RAW) {
7294 asize = sizeof(*o);
7295 } else {
7296 asize = sdslen(o->ptr)+sizeof(*o)+sizeof(long)*2;
7297 }
7298 break;
7299 case REDIS_LIST:
7300 l = o->ptr;
7301 listNode *ln = listFirst(l);
7302
7303 asize = sizeof(list);
7304 if (ln) {
7305 robj *ele = ln->value;
7306 long elesize;
7307
7308 elesize = (ele->encoding == REDIS_ENCODING_RAW) ?
7309 (sizeof(*o)+sdslen(ele->ptr)) :
7310 sizeof(*o);
7311 asize += (sizeof(listNode)+elesize)*listLength(l);
7312 }
7313 break;
7314 case REDIS_SET:
7315 case REDIS_ZSET:
7316 z = (o->type == REDIS_ZSET);
7317 d = z ? ((zset*)o->ptr)->dict : o->ptr;
7318
7319 asize = sizeof(dict)+(sizeof(struct dictEntry*)*dictSlots(d));
7320 if (z) asize += sizeof(zset)-sizeof(dict);
7321 if (dictSize(d)) {
7322 long elesize;
7323 robj *ele;
7324
7325 de = dictGetRandomKey(d);
7326 ele = dictGetEntryKey(de);
7327 elesize = (ele->encoding == REDIS_ENCODING_RAW) ?
7328 (sizeof(*o)+sdslen(ele->ptr)) :
7329 sizeof(*o);
7330 asize += (sizeof(struct dictEntry)+elesize)*dictSize(d);
7331 if (z) asize += sizeof(zskiplistNode)*dictSize(d);
7332 }
7333 break;
7334 }
7335 return (double)asize*log(1+asize);
7336 }
7337
7338 /* Try to swap an object that's a good candidate for swapping.
7339 * Returns REDIS_OK if the object was swapped, REDIS_ERR if it's not possible
7340 * to swap any object at all.
7341 *
7342 * If 'usethreaded' is true, Redis will try to swap the object in background
7343 * using I/O threads. */
7344 static int vmSwapOneObject(int usethreads) {
7345 int j, i;
7346 struct dictEntry *best = NULL;
7347 double best_swappability = 0;
7348 redisDb *best_db = NULL;
7349 robj *key, *val;
7350
7351 for (j = 0; j < server.dbnum; j++) {
7352 redisDb *db = server.db+j;
7353 int maxtries = 1000;
7354
7355 if (dictSize(db->dict) == 0) continue;
7356 for (i = 0; i < 5; i++) {
7357 dictEntry *de;
7358 double swappability;
7359
7360 if (maxtries) maxtries--;
7361 de = dictGetRandomKey(db->dict);
7362 key = dictGetEntryKey(de);
7363 val = dictGetEntryVal(de);
7364 /* Only swap objects that are currently in memory.
7365 *
7366 * Also don't swap shared objects if threaded VM is on, as we
7367 * try to ensure that the main thread does not touch the
7368 * object while the I/O thread is using it, but we can't
7369 * control other keys without adding additional mutex. */
7370 if (key->storage != REDIS_VM_MEMORY ||
7371 (server.vm_max_threads != 0 && val->refcount != 1)) {
7372 if (maxtries) i--; /* don't count this try */
7373 continue;
7374 }
7375 swappability = computeObjectSwappability(val);
7376 if (!best || swappability > best_swappability) {
7377 best = de;
7378 best_swappability = swappability;
7379 best_db = db;
7380 }
7381 }
7382 }
7383 if (best == NULL) {
7384 redisLog(REDIS_DEBUG,"No swappable key found!");
7385 return REDIS_ERR;
7386 }
7387 key = dictGetEntryKey(best);
7388 val = dictGetEntryVal(best);
7389
7390 redisLog(REDIS_DEBUG,"Key with best swappability: %s, %f",
7391 key->ptr, best_swappability);
7392
7393 /* Unshare the key if needed */
7394 if (key->refcount > 1) {
7395 robj *newkey = dupStringObject(key);
7396 decrRefCount(key);
7397 key = dictGetEntryKey(best) = newkey;
7398 }
7399 /* Swap it */
7400 if (usethreads) {
7401 vmSwapObjectThreaded(key,val,best_db);
7402 return REDIS_OK;
7403 } else {
7404 if (vmSwapObjectBlocking(key,val) == REDIS_OK) {
7405 dictGetEntryVal(best) = NULL;
7406 return REDIS_OK;
7407 } else {
7408 return REDIS_ERR;
7409 }
7410 }
7411 }
7412
7413 static int vmSwapOneObjectBlocking() {
7414 return vmSwapOneObject(0);
7415 }
7416
7417 static int vmSwapOneObjectThreaded() {
7418 return vmSwapOneObject(1);
7419 }
7420
7421 /* Return true if it's safe to swap out objects in a given moment.
7422 * Basically we don't want to swap objects out while there is a BGSAVE
7423 * or a BGAEOREWRITE running in backgroud. */
7424 static int vmCanSwapOut(void) {
7425 return (server.bgsavechildpid == -1 && server.bgrewritechildpid == -1);
7426 }
7427
7428 /* Delete a key if swapped. Returns 1 if the key was found, was swapped
7429 * and was deleted. Otherwise 0 is returned. */
7430 static int deleteIfSwapped(redisDb *db, robj *key) {
7431 dictEntry *de;
7432 robj *foundkey;
7433
7434 if ((de = dictFind(db->dict,key)) == NULL) return 0;
7435 foundkey = dictGetEntryKey(de);
7436 if (foundkey->storage == REDIS_VM_MEMORY) return 0;
7437 deleteKey(db,key);
7438 return 1;
7439 }
7440
7441 /* =================== Virtual Memory - Threaded I/O ======================= */
7442
7443 static void freeIOJob(iojob *j) {
7444 if (j->type == REDIS_IOJOB_PREPARE_SWAP ||
7445 j->type == REDIS_IOJOB_DO_SWAP)
7446 decrRefCount(j->val);
7447 decrRefCount(j->key);
7448 zfree(j);
7449 }
7450
7451 /* Every time a thread finished a Job, it writes a byte into the write side
7452 * of an unix pipe in order to "awake" the main thread, and this function
7453 * is called. */
7454 static void vmThreadedIOCompletedJob(aeEventLoop *el, int fd, void *privdata,
7455 int mask)
7456 {
7457 char buf[1];
7458 int retval;
7459 int processed = 0;
7460 REDIS_NOTUSED(el);
7461 REDIS_NOTUSED(mask);
7462 REDIS_NOTUSED(privdata);
7463
7464 /* For every byte we read in the read side of the pipe, there is one
7465 * I/O job completed to process. */
7466 while((retval = read(fd,buf,1)) == 1) {
7467 iojob *j;
7468 listNode *ln;
7469 robj *key;
7470 struct dictEntry *de;
7471
7472 redisLog(REDIS_DEBUG,"Processing I/O completed job");
7473
7474 /* Get the processed element (the oldest one) */
7475 lockThreadedIO();
7476 assert(listLength(server.io_processed) != 0);
7477 ln = listFirst(server.io_processed);
7478 j = ln->value;
7479 listDelNode(server.io_processed,ln);
7480 unlockThreadedIO();
7481 /* If this job is marked as canceled, just ignore it */
7482 if (j->canceled) {
7483 freeIOJob(j);
7484 continue;
7485 }
7486 /* Post process it in the main thread, as there are things we
7487 * can do just here to avoid race conditions and/or invasive locks */
7488 redisLog(REDIS_DEBUG,"Job %p type: %d, key at %p (%s) refcount: %d\n", (void*) j, j->type, (void*)j->key, (char*)j->key->ptr, j->key->refcount);
7489 de = dictFind(j->db->dict,j->key);
7490 assert(de != NULL);
7491 key = dictGetEntryKey(de);
7492 if (j->type == REDIS_IOJOB_LOAD) {
7493 /* Key loaded, bring it at home */
7494 key->storage = REDIS_VM_MEMORY;
7495 key->vm.atime = server.unixtime;
7496 vmMarkPagesFree(key->vm.page,key->vm.usedpages);
7497 redisLog(REDIS_DEBUG, "VM: object %s loaded from disk (threaded)",
7498 (unsigned char*) key->ptr);
7499 server.vm_stats_swapped_objects--;
7500 server.vm_stats_swapins++;
7501 freeIOJob(j);
7502 } else if (j->type == REDIS_IOJOB_PREPARE_SWAP) {
7503 /* Now we know the amount of pages required to swap this object.
7504 * Let's find some space for it, and queue this task again
7505 * rebranded as REDIS_IOJOB_DO_SWAP. */
7506 if (vmFindContiguousPages(&j->page,j->pages) == REDIS_ERR) {
7507 /* Ooops... no space! */
7508 freeIOJob(j);
7509 } else {
7510 /* Note that we need to mark this pages as used now,
7511 * if the job will be canceled, we'll mark them as freed
7512 * again. */
7513 vmMarkPagesUsed(j->page,j->pages);
7514 j->type = REDIS_IOJOB_DO_SWAP;
7515 lockThreadedIO();
7516 queueIOJob(j);
7517 unlockThreadedIO();
7518 }
7519 } else if (j->type == REDIS_IOJOB_DO_SWAP) {
7520 robj *val;
7521
7522 /* Key swapped. We can finally free some memory. */
7523 if (key->storage != REDIS_VM_SWAPPING) {
7524 printf("key->storage: %d\n",key->storage);
7525 printf("key->name: %s\n",(char*)key->ptr);
7526 printf("key->refcount: %d\n",key->refcount);
7527 printf("val: %p\n",(void*)j->val);
7528 printf("val->type: %d\n",j->val->type);
7529 printf("val->ptr: %s\n",(char*)j->val->ptr);
7530 }
7531 redisAssert(key->storage == REDIS_VM_SWAPPING);
7532 val = dictGetEntryVal(de);
7533 key->vm.page = j->page;
7534 key->vm.usedpages = j->pages;
7535 key->storage = REDIS_VM_SWAPPED;
7536 key->vtype = j->val->type;
7537 decrRefCount(val); /* Deallocate the object from memory. */
7538 dictGetEntryVal(de) = NULL;
7539 redisLog(REDIS_DEBUG,
7540 "VM: object %s swapped out at %lld (%lld pages) (threaded)",
7541 (unsigned char*) key->ptr,
7542 (unsigned long long) j->page, (unsigned long long) j->pages);
7543 server.vm_stats_swapped_objects++;
7544 server.vm_stats_swapouts++;
7545 freeIOJob(j);
7546 /* Put a few more swap requests in queue if we are still
7547 * out of memory */
7548 if (zmalloc_used_memory() > server.vm_max_memory) {
7549 int more = 1;
7550 while(more) {
7551 lockThreadedIO();
7552 more = listLength(server.io_newjobs) <
7553 (unsigned) server.vm_max_threads;
7554 unlockThreadedIO();
7555 /* Don't waste CPU time if swappable objects are rare. */
7556 if (vmSwapOneObjectThreaded() == REDIS_ERR) break;
7557 }
7558 }
7559 }
7560 processed++;
7561 if (processed == REDIS_MAX_COMPLETED_JOBS_PROCESSED) return;
7562 }
7563 if (retval < 0 && errno != EAGAIN) {
7564 redisLog(REDIS_WARNING,
7565 "WARNING: read(2) error in vmThreadedIOCompletedJob() %s",
7566 strerror(errno));
7567 }
7568 }
7569
7570 static void lockThreadedIO(void) {
7571 pthread_mutex_lock(&server.io_mutex);
7572 }
7573
7574 static void unlockThreadedIO(void) {
7575 pthread_mutex_unlock(&server.io_mutex);
7576 }
7577
7578 /* Remove the specified object from the threaded I/O queue if still not
7579 * processed, otherwise make sure to flag it as canceled. */
7580 static void vmCancelThreadedIOJob(robj *o) {
7581 list *lists[3] = {
7582 server.io_newjobs, /* 0 */
7583 server.io_processing, /* 1 */
7584 server.io_processed /* 2 */
7585 };
7586 int i;
7587
7588 assert(o->storage == REDIS_VM_LOADING || o->storage == REDIS_VM_SWAPPING);
7589 again:
7590 lockThreadedIO();
7591 /* Search for a matching key in one of the queues */
7592 for (i = 0; i < 3; i++) {
7593 listNode *ln;
7594 listIter li;
7595
7596 listRewind(lists[i],&li);
7597 while ((ln = listNext(&li)) != NULL) {
7598 iojob *job = ln->value;
7599
7600 if (job->canceled) continue; /* Skip this, already canceled. */
7601 if (compareStringObjects(job->key,o) == 0) {
7602 redisLog(REDIS_DEBUG,"*** CANCELED %p (%s) (LIST ID %d)\n",
7603 (void*)job, (char*)o->ptr, i);
7604 /* Mark the pages as free since the swap didn't happened
7605 * or happened but is now discarded. */
7606 if (job->type == REDIS_IOJOB_DO_SWAP)
7607 vmMarkPagesFree(job->page,job->pages);
7608 /* Cancel the job. It depends on the list the job is
7609 * living in. */
7610 switch(i) {
7611 case 0: /* io_newjobs */
7612 /* If the job was yet not processed the best thing to do
7613 * is to remove it from the queue at all */
7614 freeIOJob(job);
7615 listDelNode(lists[i],ln);
7616 break;
7617 case 1: /* io_processing */
7618 /* Oh Shi- the thread is messing with the Job, and
7619 * probably with the object if this is a
7620 * PREPARE_SWAP or DO_SWAP job. Better to wait for the
7621 * job to move into the next queue... */
7622 if (job->type != REDIS_IOJOB_LOAD) {
7623 /* Yes, we try again and again until the job
7624 * is completed. */
7625 unlockThreadedIO();
7626 /* But let's wait some time for the I/O thread
7627 * to finish with this job. After all this condition
7628 * should be very rare. */
7629 usleep(1);
7630 goto again;
7631 } else {
7632 job->canceled = 1;
7633 break;
7634 }
7635 case 2: /* io_processed */
7636 /* The job was already processed, that's easy...
7637 * just mark it as canceled so that we'll ignore it
7638 * when processing completed jobs. */
7639 job->canceled = 1;
7640 break;
7641 }
7642 /* Finally we have to adjust the storage type of the object
7643 * in order to "UNDO" the operaiton. */
7644 if (o->storage == REDIS_VM_LOADING)
7645 o->storage = REDIS_VM_SWAPPED;
7646 else if (o->storage == REDIS_VM_SWAPPING)
7647 o->storage = REDIS_VM_MEMORY;
7648 unlockThreadedIO();
7649 return;
7650 }
7651 }
7652 }
7653 unlockThreadedIO();
7654 assert(1 != 1); /* We should never reach this */
7655 }
7656
7657 static void *IOThreadEntryPoint(void *arg) {
7658 iojob *j;
7659 listNode *ln;
7660 REDIS_NOTUSED(arg);
7661
7662 pthread_detach(pthread_self());
7663 while(1) {
7664 /* Get a new job to process */
7665 lockThreadedIO();
7666 if (listLength(server.io_newjobs) == 0) {
7667 /* No new jobs in queue, exit. */
7668 redisLog(REDIS_DEBUG,"Thread %lld exiting, nothing to do",
7669 (long long) pthread_self());
7670 server.io_active_threads--;
7671 unlockThreadedIO();
7672 return NULL;
7673 }
7674 ln = listFirst(server.io_newjobs);
7675 j = ln->value;
7676 listDelNode(server.io_newjobs,ln);
7677 /* Add the job in the processing queue */
7678 j->thread = pthread_self();
7679 listAddNodeTail(server.io_processing,j);
7680 ln = listLast(server.io_processing); /* We use ln later to remove it */
7681 unlockThreadedIO();
7682 redisLog(REDIS_DEBUG,"Thread %lld got a new job (type %d): %p about key '%s'",
7683 (long long) pthread_self(), j->type, (void*)j, (char*)j->key->ptr);
7684
7685 /* Process the Job */
7686 if (j->type == REDIS_IOJOB_LOAD) {
7687 } else if (j->type == REDIS_IOJOB_PREPARE_SWAP) {
7688 FILE *fp = fopen("/dev/null","w+");
7689 j->pages = rdbSavedObjectPages(j->val,fp);
7690 fclose(fp);
7691 } else if (j->type == REDIS_IOJOB_DO_SWAP) {
7692 if (vmWriteObjectOnSwap(j->val,j->page) == REDIS_ERR)
7693 j->canceled = 1;
7694 }
7695
7696 /* Done: insert the job into the processed queue */
7697 redisLog(REDIS_DEBUG,"Thread %lld completed the job: %p (key %s)",
7698 (long long) pthread_self(), (void*)j, (char*)j->key->ptr);
7699 lockThreadedIO();
7700 listDelNode(server.io_processing,ln);
7701 listAddNodeTail(server.io_processed,j);
7702 unlockThreadedIO();
7703
7704 /* Signal the main thread there is new stuff to process */
7705 assert(write(server.io_ready_pipe_write,"x",1) == 1);
7706 }
7707 return NULL; /* never reached */
7708 }
7709
7710 static void spawnIOThread(void) {
7711 pthread_t thread;
7712
7713 pthread_create(&thread,&server.io_threads_attr,IOThreadEntryPoint,NULL);
7714 server.io_active_threads++;
7715 }
7716
7717 /* We need to wait for the last thread to exit before we are able to
7718 * fork() in order to BGSAVE or BGREWRITEAOF. */
7719 static void waitZeroActiveThreads(void) {
7720 while(1) {
7721 lockThreadedIO();
7722 if (server.io_active_threads == 0) {
7723 unlockThreadedIO();
7724 return;
7725 }
7726 unlockThreadedIO();
7727 usleep(10000); /* 10 milliseconds */
7728 }
7729 }
7730
7731 /* This function must be called while with threaded IO locked */
7732 static void queueIOJob(iojob *j) {
7733 redisLog(REDIS_DEBUG,"Queued IO Job %p type %d about key '%s'\n",
7734 (void*)j, j->type, (char*)j->key->ptr);
7735 listAddNodeTail(server.io_newjobs,j);
7736 if (server.io_active_threads < server.vm_max_threads)
7737 spawnIOThread();
7738 }
7739
7740 static int vmSwapObjectThreaded(robj *key, robj *val, redisDb *db) {
7741 iojob *j;
7742
7743 assert(key->storage == REDIS_VM_MEMORY);
7744 assert(key->refcount == 1);
7745
7746 j = zmalloc(sizeof(*j));
7747 j->type = REDIS_IOJOB_PREPARE_SWAP;
7748 j->db = db;
7749 j->key = dupStringObject(key);
7750 j->val = val;
7751 incrRefCount(val);
7752 j->canceled = 0;
7753 j->thread = (pthread_t) -1;
7754 key->storage = REDIS_VM_SWAPPING;
7755
7756 lockThreadedIO();
7757 queueIOJob(j);
7758 unlockThreadedIO();
7759 return REDIS_OK;
7760 }
7761
7762 /* ================================= Debugging ============================== */
7763
7764 static void debugCommand(redisClient *c) {
7765 if (!strcasecmp(c->argv[1]->ptr,"segfault")) {
7766 *((char*)-1) = 'x';
7767 } else if (!strcasecmp(c->argv[1]->ptr,"reload")) {
7768 if (rdbSave(server.dbfilename) != REDIS_OK) {
7769 addReply(c,shared.err);
7770 return;
7771 }
7772 emptyDb();
7773 if (rdbLoad(server.dbfilename) != REDIS_OK) {
7774 addReply(c,shared.err);
7775 return;
7776 }
7777 redisLog(REDIS_WARNING,"DB reloaded by DEBUG RELOAD");
7778 addReply(c,shared.ok);
7779 } else if (!strcasecmp(c->argv[1]->ptr,"loadaof")) {
7780 emptyDb();
7781 if (loadAppendOnlyFile(server.appendfilename) != REDIS_OK) {
7782 addReply(c,shared.err);
7783 return;
7784 }
7785 redisLog(REDIS_WARNING,"Append Only File loaded by DEBUG LOADAOF");
7786 addReply(c,shared.ok);
7787 } else if (!strcasecmp(c->argv[1]->ptr,"object") && c->argc == 3) {
7788 dictEntry *de = dictFind(c->db->dict,c->argv[2]);
7789 robj *key, *val;
7790
7791 if (!de) {
7792 addReply(c,shared.nokeyerr);
7793 return;
7794 }
7795 key = dictGetEntryKey(de);
7796 val = dictGetEntryVal(de);
7797 if (server.vm_enabled && (key->storage == REDIS_VM_MEMORY ||
7798 key->storage == REDIS_VM_SWAPPING)) {
7799 addReplySds(c,sdscatprintf(sdsempty(),
7800 "+Key at:%p refcount:%d, value at:%p refcount:%d "
7801 "encoding:%d serializedlength:%lld\r\n",
7802 (void*)key, key->refcount, (void*)val, val->refcount,
7803 val->encoding, rdbSavedObjectLen(val,NULL)));
7804 } else {
7805 addReplySds(c,sdscatprintf(sdsempty(),
7806 "+Key at:%p refcount:%d, value swapped at: page %llu "
7807 "using %llu pages\r\n",
7808 (void*)key, key->refcount, (unsigned long long) key->vm.page,
7809 (unsigned long long) key->vm.usedpages));
7810 }
7811 } else if (!strcasecmp(c->argv[1]->ptr,"swapout") && c->argc == 3) {
7812 dictEntry *de = dictFind(c->db->dict,c->argv[2]);
7813 robj *key, *val;
7814
7815 if (!server.vm_enabled) {
7816 addReplySds(c,sdsnew("-ERR Virtual Memory is disabled\r\n"));
7817 return;
7818 }
7819 if (!de) {
7820 addReply(c,shared.nokeyerr);
7821 return;
7822 }
7823 key = dictGetEntryKey(de);
7824 val = dictGetEntryVal(de);
7825 /* If the key is shared we want to create a copy */
7826 if (key->refcount > 1) {
7827 robj *newkey = dupStringObject(key);
7828 decrRefCount(key);
7829 key = dictGetEntryKey(de) = newkey;
7830 }
7831 /* Swap it */
7832 if (key->storage != REDIS_VM_MEMORY) {
7833 addReplySds(c,sdsnew("-ERR This key is not in memory\r\n"));
7834 } else if (vmSwapObjectBlocking(key,val) == REDIS_OK) {
7835 dictGetEntryVal(de) = NULL;
7836 addReply(c,shared.ok);
7837 } else {
7838 addReply(c,shared.err);
7839 }
7840 } else {
7841 addReplySds(c,sdsnew(
7842 "-ERR Syntax error, try DEBUG [SEGFAULT|OBJECT <key>|SWAPOUT <key>|RELOAD]\r\n"));
7843 }
7844 }
7845
7846 static void _redisAssert(char *estr, char *file, int line) {
7847 redisLog(REDIS_WARNING,"=== ASSERTION FAILED ===");
7848 redisLog(REDIS_WARNING,"==> %s:%d '%s' is not true\n",file,line,estr);
7849 #ifdef HAVE_BACKTRACE
7850 redisLog(REDIS_WARNING,"(forcing SIGSEGV in order to print the stack trace)");
7851 *((char*)-1) = 'x';
7852 #endif
7853 }
7854
7855 /* =================================== Main! ================================ */
7856
7857 #ifdef __linux__
7858 int linuxOvercommitMemoryValue(void) {
7859 FILE *fp = fopen("/proc/sys/vm/overcommit_memory","r");
7860 char buf[64];
7861
7862 if (!fp) return -1;
7863 if (fgets(buf,64,fp) == NULL) {
7864 fclose(fp);
7865 return -1;
7866 }
7867 fclose(fp);
7868
7869 return atoi(buf);
7870 }
7871
7872 void linuxOvercommitMemoryWarning(void) {
7873 if (linuxOvercommitMemoryValue() == 0) {
7874 redisLog(REDIS_WARNING,"WARNING overcommit_memory is set to 0! Background save may fail under low condition memory. 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.");
7875 }
7876 }
7877 #endif /* __linux__ */
7878
7879 static void daemonize(void) {
7880 int fd;
7881 FILE *fp;
7882
7883 if (fork() != 0) exit(0); /* parent exits */
7884 setsid(); /* create a new session */
7885
7886 /* Every output goes to /dev/null. If Redis is daemonized but
7887 * the 'logfile' is set to 'stdout' in the configuration file
7888 * it will not log at all. */
7889 if ((fd = open("/dev/null", O_RDWR, 0)) != -1) {
7890 dup2(fd, STDIN_FILENO);
7891 dup2(fd, STDOUT_FILENO);
7892 dup2(fd, STDERR_FILENO);
7893 if (fd > STDERR_FILENO) close(fd);
7894 }
7895 /* Try to write the pid file */
7896 fp = fopen(server.pidfile,"w");
7897 if (fp) {
7898 fprintf(fp,"%d\n",getpid());
7899 fclose(fp);
7900 }
7901 }
7902
7903 int main(int argc, char **argv) {
7904 initServerConfig();
7905 if (argc == 2) {
7906 resetServerSaveParams();
7907 loadServerConfig(argv[1]);
7908 } else if (argc > 2) {
7909 fprintf(stderr,"Usage: ./redis-server [/path/to/redis.conf]\n");
7910 exit(1);
7911 } else {
7912 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'");
7913 }
7914 if (server.daemonize) daemonize();
7915 initServer();
7916 redisLog(REDIS_NOTICE,"Server started, Redis version " REDIS_VERSION);
7917 #ifdef __linux__
7918 linuxOvercommitMemoryWarning();
7919 #endif
7920 if (server.appendonly) {
7921 if (loadAppendOnlyFile(server.appendfilename) == REDIS_OK)
7922 redisLog(REDIS_NOTICE,"DB loaded from append only file");
7923 } else {
7924 if (rdbLoad(server.dbfilename) == REDIS_OK)
7925 redisLog(REDIS_NOTICE,"DB loaded from disk");
7926 }
7927 redisLog(REDIS_NOTICE,"The server is now ready to accept connections on port %d", server.port);
7928 aeMain(server.el);
7929 aeDeleteEventLoop(server.el);
7930 return 0;
7931 }
7932
7933 /* ============================= Backtrace support ========================= */
7934
7935 #ifdef HAVE_BACKTRACE
7936 static char *findFuncName(void *pointer, unsigned long *offset);
7937
7938 static void *getMcontextEip(ucontext_t *uc) {
7939 #if defined(__FreeBSD__)
7940 return (void*) uc->uc_mcontext.mc_eip;
7941 #elif defined(__dietlibc__)
7942 return (void*) uc->uc_mcontext.eip;
7943 #elif defined(__APPLE__) && !defined(MAC_OS_X_VERSION_10_6)
7944 #if __x86_64__
7945 return (void*) uc->uc_mcontext->__ss.__rip;
7946 #else
7947 return (void*) uc->uc_mcontext->__ss.__eip;
7948 #endif
7949 #elif defined(__APPLE__) && defined(MAC_OS_X_VERSION_10_6)
7950 #if defined(_STRUCT_X86_THREAD_STATE64) && !defined(__i386__)
7951 return (void*) uc->uc_mcontext->__ss.__rip;
7952 #else
7953 return (void*) uc->uc_mcontext->__ss.__eip;
7954 #endif
7955 #elif defined(__i386__) || defined(__X86_64__) || defined(__x86_64__)
7956 return (void*) uc->uc_mcontext.gregs[REG_EIP]; /* Linux 32/64 bit */
7957 #elif defined(__ia64__) /* Linux IA64 */
7958 return (void*) uc->uc_mcontext.sc_ip;
7959 #else
7960 return NULL;
7961 #endif
7962 }
7963
7964 static void segvHandler(int sig, siginfo_t *info, void *secret) {
7965 void *trace[100];
7966 char **messages = NULL;
7967 int i, trace_size = 0;
7968 unsigned long offset=0;
7969 ucontext_t *uc = (ucontext_t*) secret;
7970 sds infostring;
7971 REDIS_NOTUSED(info);
7972
7973 redisLog(REDIS_WARNING,
7974 "======= Ooops! Redis %s got signal: -%d- =======", REDIS_VERSION, sig);
7975 infostring = genRedisInfoString();
7976 redisLog(REDIS_WARNING, "%s",infostring);
7977 /* It's not safe to sdsfree() the returned string under memory
7978 * corruption conditions. Let it leak as we are going to abort */
7979
7980 trace_size = backtrace(trace, 100);
7981 /* overwrite sigaction with caller's address */
7982 if (getMcontextEip(uc) != NULL) {
7983 trace[1] = getMcontextEip(uc);
7984 }
7985 messages = backtrace_symbols(trace, trace_size);
7986
7987 for (i=1; i<trace_size; ++i) {
7988 char *fn = findFuncName(trace[i], &offset), *p;
7989
7990 p = strchr(messages[i],'+');
7991 if (!fn || (p && ((unsigned long)strtol(p+1,NULL,10)) < offset)) {
7992 redisLog(REDIS_WARNING,"%s", messages[i]);
7993 } else {
7994 redisLog(REDIS_WARNING,"%d redis-server %p %s + %d", i, trace[i], fn, (unsigned int)offset);
7995 }
7996 }
7997 /* free(messages); Don't call free() with possibly corrupted memory. */
7998 exit(0);
7999 }
8000
8001 static void setupSigSegvAction(void) {
8002 struct sigaction act;
8003
8004 sigemptyset (&act.sa_mask);
8005 /* When the SA_SIGINFO flag is set in sa_flags then sa_sigaction
8006 * is used. Otherwise, sa_handler is used */
8007 act.sa_flags = SA_NODEFER | SA_ONSTACK | SA_RESETHAND | SA_SIGINFO;
8008 act.sa_sigaction = segvHandler;
8009 sigaction (SIGSEGV, &act, NULL);
8010 sigaction (SIGBUS, &act, NULL);
8011 sigaction (SIGFPE, &act, NULL);
8012 sigaction (SIGILL, &act, NULL);
8013 sigaction (SIGBUS, &act, NULL);
8014 return;
8015 }
8016
8017 #include "staticsymbols.h"
8018 /* This function try to convert a pointer into a function name. It's used in
8019 * oreder to provide a backtrace under segmentation fault that's able to
8020 * display functions declared as static (otherwise the backtrace is useless). */
8021 static char *findFuncName(void *pointer, unsigned long *offset){
8022 int i, ret = -1;
8023 unsigned long off, minoff = 0;
8024
8025 /* Try to match against the Symbol with the smallest offset */
8026 for (i=0; symsTable[i].pointer; i++) {
8027 unsigned long lp = (unsigned long) pointer;
8028
8029 if (lp != (unsigned long)-1 && lp >= symsTable[i].pointer) {
8030 off=lp-symsTable[i].pointer;
8031 if (ret < 0 || off < minoff) {
8032 minoff=off;
8033 ret=i;
8034 }
8035 }
8036 }
8037 if (ret == -1) return NULL;
8038 *offset = minoff;
8039 return symsTable[ret].name;
8040 }
8041 #else /* HAVE_BACKTRACE */
8042 static void setupSigSegvAction(void) {
8043 }
8044 #endif /* HAVE_BACKTRACE */
8045
8046
8047
8048 /* The End */
8049
8050
8051