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