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