]> git.saurik.com Git - redis.git/blame - src/redis.h
Scripting: Reset Lua fake client reply_bytes after command execution.
[redis.git] / src / redis.h
CommitLineData
e2641e09 1#ifndef __REDIS_H
2#define __REDIS_H
3
4#include "fmacros.h"
5#include "config.h"
6
7#if defined(__sun)
8#include "solarisfixes.h"
9#endif
10
11#include <stdio.h>
12#include <stdlib.h>
13#include <string.h>
14#include <time.h>
15#include <limits.h>
16#include <unistd.h>
17#include <errno.h>
3688d7f3 18#include <inttypes.h>
d06a5b23 19#include <pthread.h>
e1a586ee 20#include <syslog.h>
ecc91094 21#include <netinet/in.h>
7585836e 22#include <lua.h>
eea8c7a4 23#include <signal.h>
e2641e09 24
daa70b17 25#include "ae.h" /* Event driven programming library */
26#include "sds.h" /* Dynamic safe strings */
27#include "dict.h" /* Hash tables */
28#include "adlist.h" /* Linked lists */
e2641e09 29#include "zmalloc.h" /* total memory usage aware version of malloc/free */
daa70b17 30#include "anet.h" /* Networking the easy way */
e2641e09 31#include "ziplist.h" /* Compact list data structure */
daa70b17 32#include "intset.h" /* Compact integer set structure */
33#include "version.h" /* Version macro */
34#include "util.h" /* Misc functions useful in many places */
e2641e09 35
36/* Error codes */
37#define REDIS_OK 0
38#define REDIS_ERR -1
39
40/* Static server configuration */
61daf891 41#define REDIS_HZ 100 /* Time interrupt calls/sec. */
e2641e09 42#define REDIS_SERVERPORT 6379 /* TCP port */
3570629f 43#define REDIS_MAXIDLETIME 0 /* default client timeout: infinite */
e2641e09 44#define REDIS_DEFAULT_DBNUM 16
45#define REDIS_CONFIGLINE_MAX 1024
e2641e09 46#define REDIS_EXPIRELOOKUPS_PER_CRON 10 /* lookup 10 expires per loop */
94343492 47#define REDIS_EXPIRELOOKUPS_TIME_PERC 25 /* CPU max % for keys collection */
e2641e09 48#define REDIS_MAX_WRITE_PER_EVENT (1024*64)
f892797e 49#define REDIS_SHARED_SELECT_CMDS 10
e2641e09 50#define REDIS_SHARED_INTEGERS 10000
355f8591 51#define REDIS_SHARED_BULKHDR_LEN 32
e1a586ee 52#define REDIS_MAX_LOGMSG_LEN 1024 /* Default maximum length of syslog messages */
2c915bcf 53#define REDIS_AOF_REWRITE_PERC 100
54#define REDIS_AOF_REWRITE_MIN_SIZE (1024*1024)
55#define REDIS_AOF_REWRITE_ITEMS_PER_CMD 64
daa70b17 56#define REDIS_SLOWLOG_LOG_SLOWER_THAN 10000
d3701d27 57#define REDIS_SLOWLOG_MAX_LEN 128
58732c23 58#define REDIS_MAX_CLIENTS 10000
31a1439b 59#define REDIS_AUTHPASS_MAX_LEN 512
169a44cb 60#define REDIS_DEFAULT_SLAVE_PRIORITY 100
8996bf77 61#define REDIS_REPL_TIMEOUT 60
62#define REDIS_REPL_PING_SLAVE_PERIOD 10
44f508f1 63#define REDIS_RUN_ID_SIZE 40
250e7f69 64#define REDIS_OPS_SEC_SAMPLES 16
44f508f1 65
f42e2f1b 66/* Protocol and I/O related defines */
67#define REDIS_MAX_QUERYBUF_LEN (1024*1024*1024) /* 1GB max query buffer. */
68#define REDIS_IOBUF_LEN (1024*16) /* Generic I/O buffer size */
69#define REDIS_REPLY_CHUNK_BYTES (16*1024) /* 16k output buffer */
11e0c4c5 70#define REDIS_INLINE_MAX_SIZE (1024*64) /* Max size of inline reads */
f42e2f1b 71#define REDIS_MBULK_BIG_ARG (1024*32)
8996bf77 72
e2641e09 73/* Hash table parameters */
74#define REDIS_HT_MINFILL 10 /* Minimal hash table fill 10% */
75
5d02b00f 76/* Command flags. Please check the command table defined in the redis.c file
77 * for more information about the meaning of every flag. */
78#define REDIS_CMD_WRITE 1 /* "w" flag */
79#define REDIS_CMD_READONLY 2 /* "r" flag */
80#define REDIS_CMD_DENYOOM 4 /* "m" flag */
81#define REDIS_CMD_FORCE_REPLICATION 8 /* "f" flag */
82#define REDIS_CMD_ADMIN 16 /* "a" flag */
83#define REDIS_CMD_PUBSUB 32 /* "p" flag */
b60ed6e8 84#define REDIS_CMD_NOSCRIPT 64 /* "s" flag */
85#define REDIS_CMD_RANDOM 128 /* "R" flag */
548efd91 86#define REDIS_CMD_SORT_FOR_SCRIPT 256 /* "S" flag */
5d73073f 87#define REDIS_CMD_LOADING 512 /* "l" flag */
88#define REDIS_CMD_STALE 1024 /* "t" flag */
e2641e09 89
90/* Object types */
91#define REDIS_STRING 0
92#define REDIS_LIST 1
93#define REDIS_SET 2
94#define REDIS_ZSET 3
95#define REDIS_HASH 4
e12b27ac 96
e2641e09 97/* Objects encoding. Some kind of objects like Strings and Hashes can be
98 * internally represented in multiple ways. The 'encoding' field of the object
99 * is set to one of this fields for this object. */
100#define REDIS_ENCODING_RAW 0 /* Raw representation */
101#define REDIS_ENCODING_INT 1 /* Encoded as integer */
102#define REDIS_ENCODING_HT 2 /* Encoded as hash table */
103#define REDIS_ENCODING_ZIPMAP 3 /* Encoded as zipmap */
104#define REDIS_ENCODING_LINKEDLIST 4 /* Encoded as regular linked list */
105#define REDIS_ENCODING_ZIPLIST 5 /* Encoded as ziplist */
96ffb2fe 106#define REDIS_ENCODING_INTSET 6 /* Encoded as intset */
0b7f6d09 107#define REDIS_ENCODING_SKIPLIST 7 /* Encoded as skiplist */
e2641e09 108
e2641e09 109/* Defines related to the dump file format. To store 32 bits lengths for short
110 * keys requires a lot of space, so we check the most significant 2 bits of
111 * the first byte to interpreter the length:
112 *
113 * 00|000000 => if the two MSB are 00 the len is the 6 bits of this byte
114 * 01|000000 00000000 => 01, the len is 14 byes, 6 bits + 8 bits of next byte
115 * 10|000000 [32 bit integer] => if it's 01, a full 32 bit len will follow
116 * 11|000000 this means: specially encoded object will follow. The six bits
117 * number specify the kind of object that follows.
118 * See the REDIS_RDB_ENC_* defines.
119 *
120 * Lenghts up to 63 are stored using a single byte, most DB keys, and may
121 * values, will fit inside. */
122#define REDIS_RDB_6BITLEN 0
123#define REDIS_RDB_14BITLEN 1
124#define REDIS_RDB_32BITLEN 2
125#define REDIS_RDB_ENCVAL 3
126#define REDIS_RDB_LENERR UINT_MAX
127
128/* When a length of a string object stored on disk has the first two bits
129 * set, the remaining two bits specify a special encoding for the object
130 * accordingly to the following defines: */
131#define REDIS_RDB_ENC_INT8 0 /* 8 bit signed integer */
132#define REDIS_RDB_ENC_INT16 1 /* 16 bit signed integer */
133#define REDIS_RDB_ENC_INT32 2 /* 32 bit signed integer */
134#define REDIS_RDB_ENC_LZF 3 /* string compressed with FASTLZ */
135
c6ac7d03 136/* AOF states */
137#define REDIS_AOF_OFF 0 /* AOF is off */
138#define REDIS_AOF_ON 1 /* AOF is on */
139#define REDIS_AOF_WAIT_REWRITE 2 /* AOF waits rewrite to start appending */
140
e2641e09 141/* Client flags */
142#define REDIS_SLAVE 1 /* This client is a slave server */
143#define REDIS_MASTER 2 /* This client is a master server */
144#define REDIS_MONITOR 4 /* This client is a slave monitor, see MONITOR */
145#define REDIS_MULTI 8 /* This client is in a MULTI context */
146#define REDIS_BLOCKED 16 /* The client is waiting in a blocking operation */
e2641e09 147#define REDIS_DIRTY_CAS 64 /* Watched keys modified. EXEC will fail. */
5e78edb3 148#define REDIS_CLOSE_AFTER_REPLY 128 /* Close after writing entire reply. */
3bcffcbe
PN
149#define REDIS_UNBLOCKED 256 /* This client was unblocked and is stored in
150 server.unblocked_clients */
7156f43c 151#define REDIS_LUA_CLIENT 512 /* This is a non connected client used by Lua */
6856c7b4 152#define REDIS_ASKING 1024 /* Client issued the ASKING command */
7eac2a75 153#define REDIS_CLOSE_ASAP 2048 /* Close this client ASAP */
cd8788f2
PN
154
155/* Client request types */
156#define REDIS_REQ_INLINE 1
157#define REDIS_REQ_MULTIBULK 2
e2641e09 158
498dc555 159/* Client classes for client limits, currently used only for
160 * the max-client-output-buffer limit implementation. */
161#define REDIS_CLIENT_LIMIT_CLASS_NORMAL 0
162#define REDIS_CLIENT_LIMIT_CLASS_SLAVE 1
163#define REDIS_CLIENT_LIMIT_CLASS_PUBSUB 2
7eac2a75 164#define REDIS_CLIENT_LIMIT_NUM_CLASSES 3
498dc555 165
e2641e09 166/* Slave replication state - slave side */
a3309139
PN
167#define REDIS_REPL_NONE 0 /* No active replication */
168#define REDIS_REPL_CONNECT 1 /* Must connect to master */
b075621f
PN
169#define REDIS_REPL_CONNECTING 2 /* Connecting to master */
170#define REDIS_REPL_TRANSFER 3 /* Receiving .rdb from master */
171#define REDIS_REPL_CONNECTED 4 /* Connected to master */
e2641e09 172
890a2ed9
PN
173/* Synchronous read timeout - slave side */
174#define REDIS_REPL_SYNCIO_TIMEOUT 5
e2641e09 175
176/* Slave replication state - from the point of view of master
177 * Note that in SEND_BULK and ONLINE state the slave receives new updates
178 * in its output queue. In the WAIT_BGSAVE state instead the server is waiting
179 * to start the next background saving in order to send updates to it. */
180#define REDIS_REPL_WAIT_BGSAVE_START 3 /* master waits bgsave to start feeding it */
181#define REDIS_REPL_WAIT_BGSAVE_END 4 /* master waits bgsave to start bulk DB transmission */
182#define REDIS_REPL_SEND_BULK 5 /* master is sending the bulk DB */
183#define REDIS_REPL_ONLINE 6 /* bulk DB already transmitted, receive updates */
184
185/* List related stuff */
186#define REDIS_HEAD 0
187#define REDIS_TAIL 1
188
189/* Sort operations */
190#define REDIS_SORT_GET 0
191#define REDIS_SORT_ASC 1
192#define REDIS_SORT_DESC 2
193#define REDIS_SORTKEY_MAX 1024
194
195/* Log levels */
196#define REDIS_DEBUG 0
197#define REDIS_VERBOSE 1
198#define REDIS_NOTICE 2
199#define REDIS_WARNING 3
996d503d 200#define REDIS_LOG_RAW (1<<10) /* Modifier to log without timestamp */
e2641e09 201
202/* Anti-warning macro... */
203#define REDIS_NOTUSED(V) ((void) V)
204
205#define ZSKIPLIST_MAXLEVEL 32 /* Should be enough for 2^32 elements */
206#define ZSKIPLIST_P 0.25 /* Skiplist P = 1/4 */
207
208/* Append only defines */
2c915bcf 209#define AOF_FSYNC_NO 0
210#define AOF_FSYNC_ALWAYS 1
211#define AOF_FSYNC_EVERYSEC 2
e2641e09 212
213/* Zip structure related defaults */
ebd85e9a
PN
214#define REDIS_HASH_MAX_ZIPLIST_ENTRIES 512
215#define REDIS_HASH_MAX_ZIPLIST_VALUE 64
6a246b1e 216#define REDIS_LIST_MAX_ZIPLIST_ENTRIES 512
217#define REDIS_LIST_MAX_ZIPLIST_VALUE 64
218#define REDIS_SET_MAX_INTSET_ENTRIES 512
3ea204e1
PN
219#define REDIS_ZSET_MAX_ZIPLIST_ENTRIES 128
220#define REDIS_ZSET_MAX_ZIPLIST_VALUE 64
e2641e09 221
222/* Sets operations codes */
223#define REDIS_OP_UNION 0
224#define REDIS_OP_DIFF 1
225#define REDIS_OP_INTER 2
226
165346ca 227/* Redis maxmemory strategies */
228#define REDIS_MAXMEMORY_VOLATILE_LRU 0
229#define REDIS_MAXMEMORY_VOLATILE_TTL 1
230#define REDIS_MAXMEMORY_VOLATILE_RANDOM 2
231#define REDIS_MAXMEMORY_ALLKEYS_LRU 3
232#define REDIS_MAXMEMORY_ALLKEYS_RANDOM 4
5402c426 233#define REDIS_MAXMEMORY_NO_EVICTION 5
165346ca 234
eeffcf38 235/* Scripting */
8cb8d417 236#define REDIS_LUA_TIME_LIMIT 5000 /* milliseconds */
eeffcf38 237
12d293ca 238/* Units */
239#define UNIT_SECONDS 0
240#define UNIT_MILLISECONDS 1
241
4ab8695d 242/* SHUTDOWN flags */
243#define REDIS_SHUTDOWN_SAVE 1 /* Force SAVE on SHUTDOWN even if no save
244 points are configured. */
245#define REDIS_SHUTDOWN_NOSAVE 2 /* Don't SAVE on SHUTDOWN. */
246
ce8b772b 247/* Command call flags, see call() function */
248#define REDIS_CALL_NONE 0
249#define REDIS_CALL_SLOWLOG 1
250#define REDIS_CALL_STATS 2
251#define REDIS_CALL_PROPAGATE 4
252#define REDIS_CALL_FULL (REDIS_CALL_SLOWLOG | REDIS_CALL_STATS | REDIS_CALL_PROPAGATE)
253
ad08d059 254/* Command propagation flags, see propagate() function */
255#define REDIS_PROPAGATE_NONE 0
256#define REDIS_PROPAGATE_AOF 1
257#define REDIS_PROPAGATE_REPL 2
258
6b5daa2d 259/* Using the following macro you can run code inside serverCron() with the
260 * specified period, specified in milliseconds.
261 * The actual resolution depends on REDIS_HZ. */
262#define run_with_period(_ms_) if (!(server.cronloops%((_ms_)/(1000/REDIS_HZ))))
263
e2641e09 264/* We can print the stacktrace, so our assert is defined this way: */
bab205f7 265#define redisAssertWithInfo(_c,_o,_e) ((_e)?(void)0 : (_redisAssertWithInfo(_c,_o,#_e,__FILE__,__LINE__),_exit(1)))
e2641e09 266#define redisAssert(_e) ((_e)?(void)0 : (_redisAssert(#_e,__FILE__,__LINE__),_exit(1)))
267#define redisPanic(_e) _redisPanic(#_e,__FILE__,__LINE__),_exit(1)
e2641e09 268
269/*-----------------------------------------------------------------------------
270 * Data types
271 *----------------------------------------------------------------------------*/
272
273/* A redis object, that is a type able to hold a string / list / set */
274
275/* The actual Redis Object */
ef59a8bc 276#define REDIS_LRU_CLOCK_MAX ((1<<21)-1) /* Max value of obj->lru */
165346ca 277#define REDIS_LRU_CLOCK_RESOLUTION 10 /* LRU clock resolution in seconds */
e2641e09 278typedef struct redisObject {
279 unsigned type:4;
3be00d7e 280 unsigned notused:2; /* Not used */
e2641e09 281 unsigned encoding:4;
282 unsigned lru:22; /* lru time (relative to server.lruclock) */
283 int refcount;
284 void *ptr;
e2641e09 285} robj;
286
e2641e09 287/* Macro used to initalize a Redis object allocated on the stack.
288 * Note that this macro is taken near the structure definition to make sure
289 * we'll update it when the structure is changed, to avoid bugs like
290 * bug #85 introduced exactly in this way. */
291#define initStaticStringObject(_var,_ptr) do { \
292 _var.refcount = 1; \
293 _var.type = REDIS_STRING; \
294 _var.encoding = REDIS_ENCODING_RAW; \
295 _var.ptr = _ptr; \
e2641e09 296} while(0);
297
298typedef struct redisDb {
299 dict *dict; /* The keyspace for this DB */
300 dict *expires; /* Timeout of keys with a timeout set */
301 dict *blocking_keys; /* Keys with clients waiting for data (BLPOP) */
e2641e09 302 dict *watched_keys; /* WATCHED keys for MULTI/EXEC CAS */
303 int id;
304} redisDb;
305
306/* Client MULTI/EXEC state */
307typedef struct multiCmd {
308 robj **argv;
309 int argc;
310 struct redisCommand *cmd;
311} multiCmd;
312
313typedef struct multiState {
314 multiCmd *commands; /* Array of MULTI commands */
315 int count; /* Total number of MULTI commands */
316} multiState;
317
357a8417
DJMM
318typedef struct blockingState {
319 robj **keys; /* The key we are waiting to terminate a blocking
320 * operation such as BLPOP. Otherwise NULL. */
321 int count; /* Number of blocking keys */
322 time_t timeout; /* Blocking operation timeout. If UNIX current time
323 * is >= timeout then the operation timed out. */
324 robj *target; /* The key that should receive the element,
325 * for BRPOPLPUSH. */
326} blockingState;
327
e2641e09 328/* With multiplexing we need to take per-clinet state.
329 * Clients are taken in a liked list. */
330typedef struct redisClient {
331 int fd;
332 redisDb *db;
333 int dictid;
334 sds querybuf;
ae22bf1e 335 size_t querybuf_peak; /* Recent (100ms or more) peak of querybuf size */
cd8788f2
PN
336 int argc;
337 robj **argv;
2c74a9f9 338 struct redisCommand *cmd, *lastcmd;
cd8788f2
PN
339 int reqtype;
340 int multibulklen; /* number of multi bulk arguments left to read */
341 long bulklen; /* length of bulk argument in multi bulk request */
e2641e09 342 list *reply;
3853c168 343 unsigned long reply_bytes; /* Tot bytes of objects in reply list */
e2641e09 344 int sentlen;
e74dca73 345 time_t ctime; /* Client creation time */
e2641e09 346 time_t lastinteraction; /* time of the last interaction, used for timeout */
7eac2a75 347 time_t obuf_soft_limit_reached_time;
e2641e09 348 int flags; /* REDIS_SLAVE | REDIS_MONITOR | REDIS_MULTI ... */
349 int slaveseldb; /* slave selected db, if this client is a slave */
350 int authenticated; /* when requirepass is non-NULL */
351 int replstate; /* replication state if this is a slave */
352 int repldbfd; /* replication DB file descriptor */
353 long repldboff; /* replication DB file offset */
354 off_t repldbsize; /* replication DB file size */
3a328978 355 int slave_listening_port; /* As configured with: SLAVECONF listening-port */
e2641e09 356 multiState mstate; /* MULTI/EXEC state */
e3c51c4b 357 blockingState bpop; /* blocking state */
e2641e09 358 list *io_keys; /* Keys this client is waiting to be loaded from the
359 * swap file in order to continue. */
360 list *watched_keys; /* Keys WATCHED for MULTI/EXEC CAS */
361 dict *pubsub_channels; /* channels a client is interested in (SUBSCRIBE) */
362 list *pubsub_patterns; /* patterns a client is interested in (SUBSCRIBE) */
834ef78e
PN
363
364 /* Response buffer */
365 int bufpos;
f3357792 366 char buf[REDIS_REPLY_CHUNK_BYTES];
e2641e09 367} redisClient;
368
369struct saveparam {
370 time_t seconds;
371 int changes;
372};
373
374struct sharedObjectsStruct {
375 robj *crlf, *ok, *err, *emptybulk, *czero, *cone, *cnegone, *pong, *space,
376 *colon, *nullbulk, *nullmultibulk, *queued,
377 *emptymultibulk, *wrongtypeerr, *nokeyerr, *syntaxerr, *sameobjecterr,
c25e7eaf 378 *outofrangeerr, *noscripterr, *loadingerr, *slowscripterr, *bgsaveerr,
ae62d29d 379 *masterdownerr, *roslaveerr,
380 *oomerr, *plus, *messagebulk, *pmessagebulk, *subscribebulk,
f892797e
JJ
381 *unsubscribebulk, *psubscribebulk, *punsubscribebulk, *del, *rpop, *lpop,
382 *select[REDIS_SHARED_SELECT_CMDS],
355f8591 383 *integers[REDIS_SHARED_INTEGERS],
384 *mbulkhdr[REDIS_SHARED_BULKHDR_LEN], /* "*<value>\r\n" */
385 *bulkhdr[REDIS_SHARED_BULKHDR_LEN]; /* "$<value>\r\n" */
e2641e09 386};
387
c772d9c6 388/* ZSETs use a specialized version of Skiplists */
389typedef struct zskiplistNode {
390 robj *obj;
391 double score;
392 struct zskiplistNode *backward;
393 struct zskiplistLevel {
394 struct zskiplistNode *forward;
395 unsigned int span;
396 } level[];
397} zskiplistNode;
398
399typedef struct zskiplist {
400 struct zskiplistNode *header, *tail;
401 unsigned long length;
402 int level;
403} zskiplist;
404
405typedef struct zset {
406 dict *dict;
407 zskiplist *zsl;
408} zset;
409
7eac2a75 410typedef struct clientBufferLimitsConfig {
7fe8d49a 411 unsigned long long hard_limit_bytes;
412 unsigned long long soft_limit_bytes;
7eac2a75 413 time_t soft_limit_seconds;
414} clientBufferLimitsConfig;
415
78d6a22d 416/* The redisOp structure defines a Redis Operation, that is an instance of
417 * a command with an argument vector, database ID, propagation target
418 * (REDIS_PROPAGATE_*), and command pointer.
419 *
420 * Currently only used to additionally propagate more commands to AOF/Replication
421 * after the propagation of the executed command. */
422typedef struct redisOp {
eeb34eff 423 robj **argv;
424 int argc, dbid, target;
425 struct redisCommand *cmd;
78d6a22d 426} redisOp;
427
428/* Defines an array of Redis operations. There is an API to add to this
429 * structure in a easy way.
430 *
431 * redisOpArrayInit();
432 * redisOpArrayAppend();
433 * redisOpArrayFree();
434 */
435typedef struct redisOpArray {
436 redisOp *ops;
437 int numops;
438} redisOpArray;
eeb34eff 439
ecc91094 440/*-----------------------------------------------------------------------------
441 * Redis cluster data structures
442 *----------------------------------------------------------------------------*/
443
444#define REDIS_CLUSTER_SLOTS 4096
445#define REDIS_CLUSTER_OK 0 /* Everything looks ok */
446#define REDIS_CLUSTER_FAIL 1 /* The cluster can't work */
447#define REDIS_CLUSTER_NEEDHELP 2 /* The cluster works, but needs some help */
448#define REDIS_CLUSTER_NAMELEN 40 /* sha1 hex length */
449#define REDIS_CLUSTER_PORT_INCR 10000 /* Cluster port = baseport + PORT_INCR */
450
451struct clusterNode;
452
453/* clusterLink encapsulates everything needed to talk with a remote node. */
454typedef struct clusterLink {
455 int fd; /* TCP socket file descriptor */
456 sds sndbuf; /* Packet send buffer */
457 sds rcvbuf; /* Packet reception buffer */
458 struct clusterNode *node; /* Node related to this link if any, or NULL */
459} clusterLink;
460
461/* Node flags */
462#define REDIS_NODE_MASTER 1 /* The node is a master */
463#define REDIS_NODE_SLAVE 2 /* The node is a slave */
464#define REDIS_NODE_PFAIL 4 /* Failure? Need acknowledge */
465#define REDIS_NODE_FAIL 8 /* The node is believed to be malfunctioning */
466#define REDIS_NODE_MYSELF 16 /* This node is myself */
467#define REDIS_NODE_HANDSHAKE 32 /* We have still to exchange the first ping */
468#define REDIS_NODE_NOADDR 64 /* We don't know the address of this node */
469#define REDIS_NODE_MEET 128 /* Send a MEET message to this node */
470#define REDIS_NODE_NULL_NAME "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
471
472struct clusterNode {
473 char name[REDIS_CLUSTER_NAMELEN]; /* Node name, hex string, sha1-size */
474 int flags; /* REDIS_NODE_... */
475 unsigned char slots[REDIS_CLUSTER_SLOTS/8]; /* slots handled by this node */
476 int numslaves; /* Number of slave nodes, if this is a master */
477 struct clusterNode **slaves; /* pointers to slave nodes */
478 struct clusterNode *slaveof; /* pointer to the master node */
479 time_t ping_sent; /* Unix time we sent latest ping */
480 time_t pong_received; /* Unix time we received the pong */
481 char *configdigest; /* Configuration digest of this node */
482 time_t configdigest_ts; /* Configuration digest timestamp */
483 char ip[16]; /* Latest known IP address of this node */
484 int port; /* Latest known port of this node */
485 clusterLink *link; /* TCP/IP link with this node */
486};
487typedef struct clusterNode clusterNode;
488
489typedef struct {
ef21ab96 490 char *configfile;
ecc91094 491 clusterNode *myself; /* This node */
492 int state; /* REDIS_CLUSTER_OK, REDIS_CLUSTER_FAIL, ... */
493 int node_timeout;
494 dict *nodes; /* Hash table of name -> clusterNode structures */
495 clusterNode *migrating_slots_to[REDIS_CLUSTER_SLOTS];
496 clusterNode *importing_slots_from[REDIS_CLUSTER_SLOTS];
497 clusterNode *slots[REDIS_CLUSTER_SLOTS];
c772d9c6 498 zskiplist *slots_to_keys;
ecc91094 499} clusterState;
500
501/* Redis cluster messages header */
502
503/* Note that the PING, PONG and MEET messages are actually the same exact
504 * kind of packet. PONG is the reply to ping, in the extact format as a PING,
505 * while MEET is a special PING that forces the receiver to add the sender
506 * as a node (if it is not already in the list). */
507#define CLUSTERMSG_TYPE_PING 0 /* Ping */
508#define CLUSTERMSG_TYPE_PONG 1 /* Pong (reply to Ping) */
509#define CLUSTERMSG_TYPE_MEET 2 /* Meet "let's join" message */
510#define CLUSTERMSG_TYPE_FAIL 3 /* Mark node xxx as failing */
c563ce46 511#define CLUSTERMSG_TYPE_PUBLISH 4 /* Pub/Sub Publish propatagion */
ecc91094 512
513/* Initially we don't know our "name", but we'll find it once we connect
514 * to the first node, using the getsockname() function. Then we'll use this
515 * address for all the next messages. */
516typedef struct {
517 char nodename[REDIS_CLUSTER_NAMELEN];
518 uint32_t ping_sent;
519 uint32_t pong_received;
520 char ip[16]; /* IP address last time it was seen */
521 uint16_t port; /* port last time it was seen */
522 uint16_t flags;
523 uint32_t notused; /* for 64 bit alignment */
524} clusterMsgDataGossip;
525
526typedef struct {
527 char nodename[REDIS_CLUSTER_NAMELEN];
528} clusterMsgDataFail;
529
c563ce46 530typedef struct {
531 uint32_t channel_len;
532 uint32_t message_len;
533 unsigned char bulk_data[8]; /* defined as 8 just for alignment concerns. */
534} clusterMsgDataPublish;
535
ecc91094 536union clusterMsgData {
537 /* PING, MEET and PONG */
538 struct {
539 /* Array of N clusterMsgDataGossip structures */
540 clusterMsgDataGossip gossip[1];
541 } ping;
c563ce46 542
ecc91094 543 /* FAIL */
544 struct {
545 clusterMsgDataFail about;
546 } fail;
c563ce46 547
548 /* PUBLISH */
549 struct {
550 clusterMsgDataPublish msg;
551 } publish;
ecc91094 552};
553
554typedef struct {
555 uint32_t totlen; /* Total length of this message */
556 uint16_t type; /* Message type */
557 uint16_t count; /* Only used for some kind of messages. */
558 char sender[REDIS_CLUSTER_NAMELEN]; /* Name of the sender node */
559 unsigned char myslots[REDIS_CLUSTER_SLOTS/8];
560 char slaveof[REDIS_CLUSTER_NAMELEN];
561 char configdigest[32];
562 uint16_t port; /* Sender TCP base port */
563 unsigned char state; /* Cluster state from the POV of the sender */
564 unsigned char notused[5]; /* Reserved for future use. For alignment. */
565 union clusterMsgData data;
566} clusterMsg;
567
568/*-----------------------------------------------------------------------------
569 * Global server state
570 *----------------------------------------------------------------------------*/
571
e2641e09 572struct redisServer {
5b831607 573 /* General */
5b831607 574 redisDb *db;
575 dict *commands; /* Command table hahs table */
576 aeEventLoop *el;
c6ac7d03 577 unsigned lruclock:22; /* Clock incrementing every minute, for LRU */
578 unsigned lruclock_padding:10;
579 int shutdown_asap; /* SHUTDOWN needed ASAP */
580 int activerehashing; /* Incremental rehash in serverCron() */
581 char *requirepass; /* Pass for AUTH command, or NULL */
582 char *pidfile; /* PID file path */
75eaac5c 583 int arch_bits; /* 32 or 64 depending on sizeof(long) */
c25e7eaf 584 int cronloops; /* Number of times the cron function run */
91d664d6 585 char runid[REDIS_RUN_ID_SIZE+1]; /* ID always different at every exec. */
6b5daa2d 586 int sentinel_mode; /* True if this instance is a Sentinel. */
5b831607 587 /* Networking */
c6ac7d03 588 int port; /* TCP listening port */
589 char *bindaddr; /* Bind address or NULL */
590 char *unixsocket; /* UNIX socket path */
591 mode_t unixsocketperm; /* UNIX socket permission */
592 int ipfd; /* TCP socket file descriptor */
593 int sofd; /* Unix socket file descriptor */
594 int cfd; /* Cluster bus lisetning socket */
595 list *clients; /* List of active clients */
7eac2a75 596 list *clients_to_close; /* Clients to close asynchronously */
c6ac7d03 597 list *slaves, *monitors; /* List of slaves and MONITORs */
00010fa9 598 redisClient *current_client; /* Current client, only used on crash report */
c6ac7d03 599 char neterr[ANET_ERR_LEN]; /* Error buffer for anet.c */
97e7f8ae 600 /* RDB / AOF loading information */
c6ac7d03 601 int loading; /* We are loading data from disk if true */
97e7f8ae 602 off_t loading_total_bytes;
603 off_t loading_loaded_bytes;
604 time_t loading_start_time;
4ebfc455 605 /* Fast pointers to often looked up command */
eeb34eff 606 struct redisCommand *delCommand, *multiCommand, *lpushCommand;
e2641e09 607 /* Fields used only for stats */
c6ac7d03 608 time_t stat_starttime; /* Server start time */
609 long long stat_numcommands; /* Number of processed commands */
610 long long stat_numconnections; /* Number of connections received */
611 long long stat_expiredkeys; /* Number of expired keys */
612 long long stat_evictedkeys; /* Number of evicted keys (maxmemory) */
613 long long stat_keyspace_hits; /* Number of successful lookups of keys */
614 long long stat_keyspace_misses; /* Number of failed lookups of keys */
615 size_t stat_peak_memory; /* Max used memory record */
616 long long stat_fork_time; /* Time needed to perform latets fork() */
617 long long stat_rejected_conn; /* Clients rejected because of maxclients */
618 list *slowlog; /* SLOWLOG list of commands */
619 long long slowlog_entry_id; /* SLOWLOG current entry ID */
620 long long slowlog_log_slower_than; /* SLOWLOG time limit (to get logged) */
621 unsigned long slowlog_max_len; /* SLOWLOG max number of items logged */
250e7f69 622 /* The following two are used to track instantaneous "load" in terms
623 * of operations per second. */
624 long long ops_sec_last_sample_time; /* Timestamp of last sample (in ms) */
625 long long ops_sec_last_sample_ops; /* numcommands in last sample */
626 long long ops_sec_samples[REDIS_OPS_SEC_SAMPLES];
627 int ops_sec_idx;
e2641e09 628 /* Configuration */
c6ac7d03 629 int verbosity; /* Loglevel in redis.conf */
630 int maxidletime; /* Client timeout in seconds */
631 size_t client_max_querybuf_len; /* Limit for client query buffer length */
632 int dbnum; /* Total number of configured DBs */
633 int daemonize; /* True if running as a daemon */
7eac2a75 634 clientBufferLimitsConfig client_obuf_limits[REDIS_CLIENT_LIMIT_NUM_CLASSES];
c6ac7d03 635 /* AOF persistence */
636 int aof_state; /* REDIS_AOF_(ON|OFF|WAIT_REWRITE) */
2c915bcf 637 int aof_fsync; /* Kind of fsync() policy */
638 char *aof_filename; /* Name of the AOF file */
639 int aof_no_fsync_on_rewrite; /* Don't fsync if a rewrite is in prog. */
640 int aof_rewrite_perc; /* Rewrite AOF if % growth is > M and... */
641 off_t aof_rewrite_min_size; /* the AOF file is at least N bytes. */
642 off_t aof_rewrite_base_size; /* AOF size on latest startup or rewrite. */
643 off_t aof_current_size; /* AOF current size. */
644 int aof_rewrite_scheduled; /* Rewrite once BGSAVE terminates. */
ff2145ad 645 pid_t aof_child_pid; /* PID if rewriting process */
47ca4b6e 646 list *aof_rewrite_buf_blocks; /* Hold changes during an AOF rewrite. */
ff2145ad 647 sds aof_buf; /* AOF buffer, written before entering the event loop */
648 int aof_fd; /* File descriptor of currently selected AOF file */
649 int aof_selected_db; /* Currently selected DB in AOF */
c6ac7d03 650 time_t aof_flush_postponed_start; /* UNIX time of postponed AOF flush */
ff2145ad 651 time_t aof_last_fsync; /* UNIX time of last fsync() */
33e1db36 652 time_t aof_rewrite_time_last; /* Time used by last AOF rewrite run. */
653 time_t aof_rewrite_time_start; /* Current AOF rewrite start time. */
48553a29 654 int aof_lastbgrewrite_status; /* REDIS_OK or REDIS_ERR */
c1d01b3c 655 unsigned long aof_delayed_fsync; /* delayed AOF fsync() counter */
c6ac7d03 656 /* RDB persistence */
657 long long dirty; /* Changes to DB from the last save */
658 long long dirty_before_bgsave; /* Used to restore dirty on failed BGSAVE */
f48cd4b9 659 pid_t rdb_child_pid; /* PID of RDB saving child */
c6ac7d03 660 struct saveparam *saveparams; /* Save points array for RDB */
661 int saveparamslen; /* Number of saving points */
f48cd4b9 662 char *rdb_filename; /* Name of RDB file */
663 int rdb_compression; /* Use compression in RDB? */
84bcd3aa 664 int rdb_checksum; /* Use RDB checksum? */
c25e7eaf 665 time_t lastsave; /* Unix time of last save succeeede */
33e1db36 666 time_t rdb_save_time_last; /* Time used by last RDB save run. */
667 time_t rdb_save_time_start; /* Current RDB save start time. */
c25e7eaf 668 int lastbgsave_status; /* REDIS_OK or REDIS_ERR */
4d3bbf35 669 int stop_writes_on_bgsave_err; /* Don't allow writes if can't BGSAVE */
eeb34eff 670 /* Propagation of commands in AOF / replication */
78d6a22d 671 redisOpArray also_propagate; /* Additional command to propagate. */
36c17a53 672 /* Logging */
c6ac7d03 673 char *logfile; /* Path of log file */
674 int syslog_enabled; /* Is syslog enabled? */
675 char *syslog_ident; /* Syslog ident */
676 int syslog_facility; /* Syslog facility */
f4aa600b 677 /* Slave specific fields */
c6ac7d03 678 char *masterauth; /* AUTH with this password with master */
679 char *masterhost; /* Hostname of master */
680 int masterport; /* Port of master */
681 int repl_ping_slave_period; /* Master pings the salve every N seconds */
682 int repl_timeout; /* Timeout after N seconds of master idle */
683 redisClient *master; /* Client that is master for this slave */
684 int repl_syncio_timeout; /* Timeout for synchronous I/O calls */
1844f990 685 int repl_state; /* Replication status if the instance is a slave */
784b9308 686 off_t repl_transfer_size; /* Size of RDB to read from master during sync. */
687 off_t repl_transfer_read; /* Amount of RDB read from master during sync. */
688 off_t repl_transfer_last_fsync_off; /* Offset when we fsync-ed last time. */
c6ac7d03 689 int repl_transfer_s; /* Slave -> Master SYNC socket */
690 int repl_transfer_fd; /* Slave -> Master SYNC temp file descriptor */
691 char *repl_transfer_tmpfile; /* Slave-> master SYNC temp file name */
692 time_t repl_transfer_lastio; /* Unix time of the latest read, for timeout */
4ebfc455 693 int repl_serve_stale_data; /* Serve stale data when link is down? */
f3fd419f 694 int repl_slave_ro; /* Slave is read only? */
c6ac7d03 695 time_t repl_down_since; /* Unix time at which link with master went down */
169a44cb 696 int slave_priority; /* Reported in INFO and used by Sentinel. */
f4aa600b 697 /* Limits */
c6ac7d03 698 unsigned int maxclients; /* Max number of simultaneous clients */
699 unsigned long long maxmemory; /* Max number of memory bytes to use */
700 int maxmemory_policy; /* Policy for key evition */
701 int maxmemory_samples; /* Pricision of random sampling */
f4aa600b 702 /* Blocked clients */
c6ac7d03 703 unsigned int bpop_blocked_clients; /* Number of clients blocked by lists */
cea8c5cd 704 list *unblocked_clients; /* list of clients to unblock before next loop */
e2641e09 705 /* Sort parameters - qsort_r() is only available under BSD so we
706 * have to take this state global, in order to pass it to sortCompare() */
2c861050 707 int sort_dontsort;
e2641e09 708 int sort_desc;
709 int sort_alpha;
710 int sort_bypattern;
c6ac7d03 711 /* Zip structure config, see redis.conf for more information */
ebd85e9a
PN
712 size_t hash_max_ziplist_entries;
713 size_t hash_max_ziplist_value;
e2641e09 714 size_t list_max_ziplist_entries;
715 size_t list_max_ziplist_value;
96ffb2fe 716 size_t set_max_intset_entries;
3ea204e1
PN
717 size_t zset_max_ziplist_entries;
718 size_t zset_max_ziplist_value;
c6ac7d03 719 time_t unixtime; /* Unix time sampled every second. */
e2641e09 720 /* Pubsub */
c6ac7d03 721 dict *pubsub_channels; /* Map channels to list of subscribed clients */
722 list *pubsub_patterns; /* A list of pubsub_patterns */
c772d9c6 723 /* Cluster */
c6ac7d03 724 int cluster_enabled; /* Is cluster enabled? */
725 clusterState cluster; /* State of the cluster */
7585836e 726 /* Scripting */
4dd444bb 727 lua_State *lua; /* The Lua interpreter. We use just one for all clients */
c6ac7d03 728 redisClient *lua_client; /* The "fake client" to query Redis from Lua */
729 redisClient *lua_caller; /* The client running EVAL right now, or NULL */
730 dict *lua_scripts; /* A dictionary of SHA1 -> Lua scripts */
731 long long lua_time_limit; /* Script timeout in seconds */
732 long long lua_time_start; /* Start time of script */
4ab8695d 733 int lua_write_dirty; /* True if a write command was called during the
734 execution of the current script. */
9f772cc2 735 int lua_random_dirty; /* True if a random command was called during the
4ab8695d 736 execution of the current script. */
115e3ff3 737 int lua_timedout; /* True if we reached the time limit for script
738 execution. */
4ab8695d 739 int lua_kill; /* Kill the script if true. */
fa5af017 740 /* Assert & bug reportign */
741 char *assert_failed;
742 char *assert_file;
743 int assert_line;
c6ac7d03 744 int bug_report_start; /* True if bug report header was already logged. */
39bd025c 745 int watchdog_period; /* Software watchdog period in ms. 0 = off */
e2641e09 746};
747
748typedef struct pubsubPattern {
749 redisClient *client;
750 robj *pattern;
751} pubsubPattern;
752
753typedef void redisCommandProc(redisClient *c);
9791f0f8 754typedef int *redisGetKeysProc(struct redisCommand *cmd, robj **argv, int argc, int *numkeys, int flags);
e2641e09 755struct redisCommand {
756 char *name;
757 redisCommandProc *proc;
758 int arity;
5d02b00f 759 char *sflags; /* Flags as string represenation, one char per flag. */
760 int flags; /* The actual flags, obtained from the 'sflags' field. */
9791f0f8 761 /* Use a function to determine keys arguments in a command line.
c9d0c362 762 * Used for Redis Cluster redirect. */
9791f0f8 763 redisGetKeysProc *getkeys_proc;
e2641e09 764 /* What keys should be loaded in background when calling this command? */
9791f0f8 765 int firstkey; /* The first argument that's a key (0 = no keys) */
766 int lastkey; /* THe last argument that's a key */
767 int keystep; /* The step between first and last key */
0d808ef2 768 long long microseconds, calls;
e2641e09 769};
770
771struct redisFunctionSym {
772 char *name;
773 unsigned long pointer;
774};
775
776typedef struct _redisSortObject {
777 robj *obj;
778 union {
779 double score;
780 robj *cmpobj;
781 } u;
782} redisSortObject;
783
784typedef struct _redisSortOperation {
785 int type;
786 robj *pattern;
787} redisSortOperation;
788
e2641e09 789/* Structure to hold list iteration abstraction. */
790typedef struct {
791 robj *subject;
792 unsigned char encoding;
793 unsigned char direction; /* Iteration direction */
794 unsigned char *zi;
795 listNode *ln;
796} listTypeIterator;
797
798/* Structure for an entry while iterating over a list. */
799typedef struct {
800 listTypeIterator *li;
801 unsigned char *zi; /* Entry in ziplist */
802 listNode *ln; /* Entry in linked list */
803} listTypeEntry;
804
96ffb2fe
PN
805/* Structure to hold set iteration abstraction. */
806typedef struct {
807 robj *subject;
808 int encoding;
809 int ii; /* intset iterator */
810 dictIterator *di;
cb72d0f1 811} setTypeIterator;
96ffb2fe 812
e2641e09 813/* Structure to hold hash iteration abstration. Note that iteration over
814 * hashes involves both fields and values. Because it is possible that
815 * not both are required, store pointers in the iterator to avoid
816 * unnecessary memory allocation for fields/values. */
817typedef struct {
ebd85e9a 818 robj *subject;
e2641e09 819 int encoding;
ebd85e9a
PN
820
821 unsigned char *fptr, *vptr;
e2641e09 822
823 dictIterator *di;
824 dictEntry *de;
825} hashTypeIterator;
826
827#define REDIS_HASH_KEY 1
828#define REDIS_HASH_VALUE 2
829
830/*-----------------------------------------------------------------------------
831 * Extern declarations
832 *----------------------------------------------------------------------------*/
833
834extern struct redisServer server;
835extern struct sharedObjectsStruct shared;
836extern dictType setDictType;
837extern dictType zsetDictType;
ecc91094 838extern dictType clusterNodesDictType;
4dd444bb 839extern dictType dbDictType;
e2641e09 840extern double R_Zero, R_PosInf, R_NegInf, R_Nan;
8af9fe84 841extern dictType hashDictType;
e2641e09 842
843/*-----------------------------------------------------------------------------
844 * Functions prototypes
845 *----------------------------------------------------------------------------*/
846
419e1cca 847/* Utils */
848long long ustime(void);
2c2b2085 849long long mstime(void);
44f508f1 850void getRandomHexChars(char *p, unsigned int len);
88c1d955 851uint64_t crc64(uint64_t crc, const unsigned char *s, uint64_t l);
2cbdab90 852void exitFromChild(int retcode);
419e1cca 853
e2641e09 854/* networking.c -- Networking and Client related operations */
855redisClient *createClient(int fd);
856void closeTimedoutClients(void);
857void freeClient(redisClient *c);
858void resetClient(redisClient *c);
859void sendReplyToClient(aeEventLoop *el, int fd, void *privdata, int mask);
e2641e09 860void addReply(redisClient *c, robj *obj);
b301c1fc
PN
861void *addDeferredMultiBulkLength(redisClient *c);
862void setDeferredMultiBulkLength(redisClient *c, void *node, long length);
e2641e09 863void addReplySds(redisClient *c, sds s);
864void processInputBuffer(redisClient *c);
ab17b909
PN
865void acceptTcpHandler(aeEventLoop *el, int fd, void *privdata, int mask);
866void acceptUnixHandler(aeEventLoop *el, int fd, void *privdata, int mask);
e2641e09 867void readQueryFromClient(aeEventLoop *el, int fd, void *privdata, int mask);
868void addReplyBulk(redisClient *c, robj *obj);
869void addReplyBulkCString(redisClient *c, char *s);
d51ebef5 870void addReplyBulkCBuffer(redisClient *c, void *p, size_t len);
871void addReplyBulkLongLong(redisClient *c, long long ll);
e2641e09 872void acceptHandler(aeEventLoop *el, int fd, void *privdata, int mask);
873void addReply(redisClient *c, robj *obj);
874void addReplySds(redisClient *c, sds s);
3ab20376
PN
875void addReplyError(redisClient *c, char *err);
876void addReplyStatus(redisClient *c, char *status);
e2641e09 877void addReplyDouble(redisClient *c, double d);
878void addReplyLongLong(redisClient *c, long long ll);
0537e7bf 879void addReplyMultiBulkLen(redisClient *c, long length);
1824e3a3 880void copyClientOutputBuffer(redisClient *dst, redisClient *src);
e2641e09 881void *dupClientReplyValue(void *o);
7a1fd61e 882void getClientsMaxBuffers(unsigned long *longest_output_list,
883 unsigned long *biggest_input_buffer);
becf5fdb 884sds getClientInfoString(redisClient *client);
45e7a1ce 885sds getAllClientsInfoString(void);
c1c9d551 886void rewriteClientCommandVector(redisClient *c, int argc, ...);
4dd444bb 887void rewriteClientCommandArgument(redisClient *c, int i, robj *newval);
3853c168 888unsigned long getClientOutputBufferMemoryUsage(redisClient *c);
7eac2a75 889void freeClientsInAsyncFreeQueue(void);
06b3dced 890void asyncCloseClientOnOutputBufferLimitReached(redisClient *c);
7fe8d49a 891int getClientLimitClassByName(char *name);
892char *getClientLimitClassName(int class);
8b7c3455 893void flushSlavesOutputBuffers(void);
179e54d2 894void disconnectSlaves(void);
e2641e09 895
3ab20376
PN
896#ifdef __GNUC__
897void addReplyErrorFormat(redisClient *c, const char *fmt, ...)
898 __attribute__((format(printf, 2, 3)));
899void addReplyStatusFormat(redisClient *c, const char *fmt, ...)
900 __attribute__((format(printf, 2, 3)));
901#else
902void addReplyErrorFormat(redisClient *c, const char *fmt, ...);
903void addReplyStatusFormat(redisClient *c, const char *fmt, ...);
904#endif
905
e2641e09 906/* List data type */
907void listTypeTryConversion(robj *subject, robj *value);
908void listTypePush(robj *subject, robj *value, int where);
909robj *listTypePop(robj *subject, int where);
910unsigned long listTypeLength(robj *subject);
3c08fdae 911listTypeIterator *listTypeInitIterator(robj *subject, long index, unsigned char direction);
e2641e09 912void listTypeReleaseIterator(listTypeIterator *li);
913int listTypeNext(listTypeIterator *li, listTypeEntry *entry);
914robj *listTypeGet(listTypeEntry *entry);
915void listTypeInsert(listTypeEntry *entry, robj *value, int where);
916int listTypeEqual(listTypeEntry *entry, robj *o);
917void listTypeDelete(listTypeEntry *entry);
918void listTypeConvert(robj *subject, int enc);
919void unblockClientWaitingData(redisClient *c);
920int handleClientsWaitingListPush(redisClient *c, robj *key, robj *ele);
921void popGenericCommand(redisClient *c, int where);
922
923/* MULTI/EXEC/WATCH... */
924void unwatchAllKeys(redisClient *c);
925void initClientMultiState(redisClient *c);
926void freeClientMultiState(redisClient *c);
09e2d9ee 927void queueMultiCommand(redisClient *c);
e2641e09 928void touchWatchedKey(redisDb *db, robj *key);
929void touchWatchedKeysOnFlush(int dbid);
f3fd419f 930void discardTransaction(redisClient *c);
e2641e09 931
932/* Redis object implementation */
933void decrRefCount(void *o);
934void incrRefCount(robj *o);
4dd444bb 935robj *resetRefCount(robj *obj);
e2641e09 936void freeStringObject(robj *o);
937void freeListObject(robj *o);
938void freeSetObject(robj *o);
939void freeZsetObject(robj *o);
940void freeHashObject(robj *o);
941robj *createObject(int type, void *ptr);
942robj *createStringObject(char *ptr, size_t len);
943robj *dupStringObject(robj *o);
5d081931 944int isObjectRepresentableAsLongLong(robj *o, long long *llongval);
e2641e09 945robj *tryObjectEncoding(robj *o);
946robj *getDecodedObject(robj *o);
947size_t stringObjectLen(robj *o);
e2641e09 948robj *createStringObjectFromLongLong(long long value);
5574b53e 949robj *createStringObjectFromLongDouble(long double value);
e2641e09 950robj *createListObject(void);
951robj *createZiplistObject(void);
952robj *createSetObject(void);
96ffb2fe 953robj *createIntsetObject(void);
e2641e09 954robj *createHashObject(void);
955robj *createZsetObject(void);
9e7cee0e 956robj *createZsetZiplistObject(void);
e2641e09 957int getLongFromObjectOrReply(redisClient *c, robj *o, long *target, const char *msg);
958int checkType(redisClient *c, robj *o, int type);
959int getLongLongFromObjectOrReply(redisClient *c, robj *o, long long *target, const char *msg);
960int getDoubleFromObjectOrReply(redisClient *c, robj *o, double *target, const char *msg);
961int getLongLongFromObject(robj *o, long long *target);
5574b53e 962int getLongDoubleFromObject(robj *o, long double *target);
963int getLongDoubleFromObjectOrReply(redisClient *c, robj *o, long double *target, const char *msg);
e2641e09 964char *strEncoding(int encoding);
965int compareStringObjects(robj *a, robj *b);
966int equalStringObjects(robj *a, robj *b);
ef59a8bc 967unsigned long estimateObjectIdleTime(robj *o);
e2641e09 968
19e61097 969/* Synchronous I/O with timeout */
04d360fd 970ssize_t syncWrite(int fd, char *ptr, ssize_t size, long long timeout);
971ssize_t syncRead(int fd, char *ptr, ssize_t size, long long timeout);
972ssize_t syncReadLine(int fd, char *ptr, ssize_t size, long long timeout);
19e61097 973
e2641e09 974/* Replication */
975void replicationFeedSlaves(list *slaves, int dictid, robj **argv, int argc);
e31b615e 976void replicationFeedMonitors(redisClient *c, list *monitors, int dictid, robj **argv, int argc);
e2641e09 977void updateSlavesWaitingBgsave(int bgsaveerr);
f4aa600b 978void replicationCron(void);
e2641e09 979
97e7f8ae 980/* Generic persistence functions */
981void startLoading(FILE *fp);
982void loadingProgress(off_t pos);
983void stopLoading(void);
984
e2641e09 985/* RDB persistence */
2e4b0e77 986#include "rdb.h"
e2641e09 987
988/* AOF persistence */
a3fcd6bc 989void flushAppendOnlyFile(int force);
e2641e09 990void feedAppendOnlyFile(struct redisCommand *cmd, int dictid, robj **argv, int argc);
991void aofRemoveTempFile(pid_t childpid);
992int rewriteAppendOnlyFileBackground(void);
993int loadAppendOnlyFile(char *filename);
994void stopAppendOnly(void);
995int startAppendOnly(void);
36c17a53 996void backgroundRewriteDoneHandler(int exitcode, int bysignal);
47ca4b6e 997void aofRewriteBufferReset(void);
998unsigned long aofRewriteBufferSize(void);
e2641e09 999
1000/* Sorted sets data type */
c772d9c6 1001
1002/* Struct to hold a inclusive/exclusive range spec. */
1003typedef struct {
1004 double min, max;
1005 int minex, maxex; /* are min or max exclusive? */
1006} zrangespec;
1007
e2641e09 1008zskiplist *zslCreate(void);
1009void zslFree(zskiplist *zsl);
69ef89f2 1010zskiplistNode *zslInsert(zskiplist *zsl, double score, robj *obj);
8588bfa3 1011unsigned char *zzlInsert(unsigned char *zl, robj *ele, double score);
c772d9c6 1012int zslDelete(zskiplist *zsl, double score, robj *obj);
1013zskiplistNode *zslFirstInRange(zskiplist *zsl, zrangespec range);
dddf5335
PN
1014double zzlGetScore(unsigned char *sptr);
1015void zzlNext(unsigned char *zl, unsigned char **eptr, unsigned char **sptr);
1016void zzlPrev(unsigned char *zl, unsigned char **eptr, unsigned char **sptr);
df26a0ae
PN
1017unsigned int zsetLength(robj *zobj);
1018void zsetConvert(robj *zobj, int encoding);
e2641e09 1019
1020/* Core functions */
f6b32c14 1021int freeMemoryIfNeeded(void);
e2641e09 1022int processCommand(redisClient *c);
633a9410 1023void setupSignalHandlers(void);
1b1f47c9 1024struct redisCommand *lookupCommand(sds name);
1025struct redisCommand *lookupCommandByCString(char *s);
ce8b772b 1026void call(redisClient *c, int flags);
d8b1228b 1027void propagate(struct redisCommand *cmd, int dbid, robj **argv, int argc, int flags);
eeb34eff 1028void alsoPropagate(struct redisCommand *cmd, int dbid, robj **argv, int argc, int target);
e2641e09 1029int prepareForShutdown();
1030void redisLog(int level, const char *fmt, ...);
288f811f 1031void redisLogRaw(int level, const char *msg);
a7d12cba 1032void redisLogFromHandler(int level, const char *msg);
e2641e09 1033void usage();
1034void updateDictResizePolicy(void);
1035int htNeedsResize(dict *dict);
1036void oom(const char *msg);
1b1f47c9 1037void populateCommandTable(void);
d7ed7fd2 1038void resetCommandTableStats(void);
e2641e09 1039
96ffb2fe
PN
1040/* Set data type */
1041robj *setTypeCreate(robj *value);
1042int setTypeAdd(robj *subject, robj *value);
1043int setTypeRemove(robj *subject, robj *value);
1044int setTypeIsMember(robj *subject, robj *value);
cb72d0f1
PN
1045setTypeIterator *setTypeInitIterator(robj *subject);
1046void setTypeReleaseIterator(setTypeIterator *si);
1b508da7 1047int setTypeNext(setTypeIterator *si, robj **objele, int64_t *llele);
1048robj *setTypeNextObject(setTypeIterator *si);
dd48de74 1049int setTypeRandomElement(robj *setobj, robj **objele, int64_t *llele);
96ffb2fe
PN
1050unsigned long setTypeSize(robj *subject);
1051void setTypeConvert(robj *subject, int enc);
1052
e2641e09 1053/* Hash data type */
ebd85e9a 1054void hashTypeConvert(robj *o, int enc);
e2641e09 1055void hashTypeTryConversion(robj *subject, robj **argv, int start, int end);
1056void hashTypeTryObjectEncoding(robj *subject, robj **o1, robj **o2);
3d24304f 1057robj *hashTypeGetObject(robj *o, robj *key);
e2641e09 1058int hashTypeExists(robj *o, robj *key);
1059int hashTypeSet(robj *o, robj *key, robj *value);
1060int hashTypeDelete(robj *o, robj *key);
1061unsigned long hashTypeLength(robj *o);
1062hashTypeIterator *hashTypeInitIterator(robj *subject);
1063void hashTypeReleaseIterator(hashTypeIterator *hi);
1064int hashTypeNext(hashTypeIterator *hi);
ebd85e9a
PN
1065void hashTypeCurrentFromZiplist(hashTypeIterator *hi, int what,
1066 unsigned char **vstr,
1067 unsigned int *vlen,
1068 long long *vll);
1069void hashTypeCurrentFromHashTable(hashTypeIterator *hi, int what, robj **dst);
8c304be3 1070robj *hashTypeCurrentObject(hashTypeIterator *hi, int what);
e2641e09 1071robj *hashTypeLookupWriteOrCreate(redisClient *c, robj *key);
1072
1073/* Pub / Sub */
1074int pubsubUnsubscribeAllChannels(redisClient *c, int notify);
1075int pubsubUnsubscribeAllPatterns(redisClient *c, int notify);
1076void freePubsubPattern(void *p);
1077int listMatchPubsubPattern(void *a, void *b);
d38ef520 1078int pubsubPublishMessage(robj *channel, robj *message);
e2641e09 1079
e2641e09 1080/* Configuration */
67c6f0f6 1081void loadServerConfig(char *filename, char *options);
e2641e09 1082void appendServerSaveParams(time_t seconds, int changes);
1083void resetServerSaveParams();
1084
1085/* db.c -- Keyspace access API */
1086int removeExpire(redisDb *db, robj *key);
bcf2995c 1087void propagateExpire(redisDb *db, robj *key);
e2641e09 1088int expireIfNeeded(redisDb *db, robj *key);
7dcc10b6 1089long long getExpire(redisDb *db, robj *key);
1090void setExpire(redisDb *db, robj *key, long long when);
e2641e09 1091robj *lookupKey(redisDb *db, robj *key);
1092robj *lookupKeyRead(redisDb *db, robj *key);
1093robj *lookupKeyWrite(redisDb *db, robj *key);
1094robj *lookupKeyReadOrReply(redisClient *c, robj *key, robj *reply);
1095robj *lookupKeyWriteOrReply(redisClient *c, robj *key, robj *reply);
f85cd526 1096void dbAdd(redisDb *db, robj *key, robj *val);
1097void dbOverwrite(redisDb *db, robj *key, robj *val);
1098void setKey(redisDb *db, robj *key, robj *val);
e2641e09 1099int dbExists(redisDb *db, robj *key);
1100robj *dbRandomKey(redisDb *db);
1101int dbDelete(redisDb *db, robj *key);
1102long long emptyDb();
1103int selectDb(redisClient *c, int id);
cea8c5cd 1104void signalModifiedKey(redisDb *db, robj *key);
1105void signalFlushedDb(int dbid);
484354ff 1106unsigned int GetKeysInSlot(unsigned int hashslot, robj **keys, unsigned int count);
e2641e09 1107
9791f0f8 1108/* API to get key arguments from commands */
1109#define REDIS_GETKEYS_ALL 0
1110#define REDIS_GETKEYS_PRELOAD 1
1111int *getKeysFromCommand(struct redisCommand *cmd, robj **argv, int argc, int *numkeys, int flags);
1112void getKeysFreeResult(int *result);
1113int *noPreloadGetKeys(struct redisCommand *cmd,robj **argv, int argc, int *numkeys, int flags);
1114int *renameGetKeys(struct redisCommand *cmd,robj **argv, int argc, int *numkeys, int flags);
1115int *zunionInterGetKeys(struct redisCommand *cmd,robj **argv, int argc, int *numkeys, int flags);
1116
ecc91094 1117/* Cluster */
1118void clusterInit(void);
1119unsigned short crc16(const char *buf, int len);
1120unsigned int keyHashSlot(char *key, int keylen);
1121clusterNode *createClusterNode(char *nodename, int flags);
1122int clusterAddNode(clusterNode *node);
1123void clusterCron(void);
eda827f8 1124clusterNode *getNodeByQuery(redisClient *c, struct redisCommand *cmd, robj **argv, int argc, int *hashslot, int *ask);
c563ce46 1125void clusterPropagatePublish(robj *channel, robj *message);
ecc91094 1126
6b5daa2d 1127/* Sentinel */
1128void initSentinelConfig(void);
1129void initSentinel(void);
1130void sentinelTimer(void);
1131char *sentinelHandleConfiguration(char **argv, int argc);
1132
7585836e 1133/* Scripting */
1134void scriptingInit(void);
1135
e2641e09 1136/* Git SHA1 */
1137char *redisGitSHA1(void);
1138char *redisGitDirty(void);
1139
1140/* Commands prototypes */
1141void authCommand(redisClient *c);
1142void pingCommand(redisClient *c);
1143void echoCommand(redisClient *c);
1144void setCommand(redisClient *c);
1145void setnxCommand(redisClient *c);
1146void setexCommand(redisClient *c);
12d293ca 1147void psetexCommand(redisClient *c);
e2641e09 1148void getCommand(redisClient *c);
1149void delCommand(redisClient *c);
1150void existsCommand(redisClient *c);
3c1bf495
PN
1151void setbitCommand(redisClient *c);
1152void getbitCommand(redisClient *c);
9f9e1cea 1153void setrangeCommand(redisClient *c);
ef11bccc 1154void getrangeCommand(redisClient *c);
e2641e09 1155void incrCommand(redisClient *c);
1156void decrCommand(redisClient *c);
1157void incrbyCommand(redisClient *c);
1158void decrbyCommand(redisClient *c);
5574b53e 1159void incrbyfloatCommand(redisClient *c);
e2641e09 1160void selectCommand(redisClient *c);
1161void randomkeyCommand(redisClient *c);
1162void keysCommand(redisClient *c);
1163void dbsizeCommand(redisClient *c);
1164void lastsaveCommand(redisClient *c);
1165void saveCommand(redisClient *c);
1166void bgsaveCommand(redisClient *c);
1167void bgrewriteaofCommand(redisClient *c);
1168void shutdownCommand(redisClient *c);
1169void moveCommand(redisClient *c);
1170void renameCommand(redisClient *c);
1171void renamenxCommand(redisClient *c);
1172void lpushCommand(redisClient *c);
1173void rpushCommand(redisClient *c);
1174void lpushxCommand(redisClient *c);
1175void rpushxCommand(redisClient *c);
1176void linsertCommand(redisClient *c);
1177void lpopCommand(redisClient *c);
1178void rpopCommand(redisClient *c);
1179void llenCommand(redisClient *c);
1180void lindexCommand(redisClient *c);
1181void lrangeCommand(redisClient *c);
1182void ltrimCommand(redisClient *c);
1183void typeCommand(redisClient *c);
1184void lsetCommand(redisClient *c);
1185void saddCommand(redisClient *c);
1186void sremCommand(redisClient *c);
1187void smoveCommand(redisClient *c);
1188void sismemberCommand(redisClient *c);
1189void scardCommand(redisClient *c);
1190void spopCommand(redisClient *c);
1191void srandmemberCommand(redisClient *c);
1192void sinterCommand(redisClient *c);
1193void sinterstoreCommand(redisClient *c);
1194void sunionCommand(redisClient *c);
1195void sunionstoreCommand(redisClient *c);
1196void sdiffCommand(redisClient *c);
1197void sdiffstoreCommand(redisClient *c);
1198void syncCommand(redisClient *c);
1199void flushdbCommand(redisClient *c);
1200void flushallCommand(redisClient *c);
1201void sortCommand(redisClient *c);
1202void lremCommand(redisClient *c);
8a979f03 1203void rpoplpushCommand(redisClient *c);
e2641e09 1204void infoCommand(redisClient *c);
1205void mgetCommand(redisClient *c);
1206void monitorCommand(redisClient *c);
1207void expireCommand(redisClient *c);
1208void expireatCommand(redisClient *c);
12d293ca 1209void pexpireCommand(redisClient *c);
1210void pexpireatCommand(redisClient *c);
e2641e09 1211void getsetCommand(redisClient *c);
1212void ttlCommand(redisClient *c);
12d293ca 1213void pttlCommand(redisClient *c);
a539d29a 1214void persistCommand(redisClient *c);
e2641e09 1215void slaveofCommand(redisClient *c);
1216void debugCommand(redisClient *c);
1217void msetCommand(redisClient *c);
1218void msetnxCommand(redisClient *c);
1219void zaddCommand(redisClient *c);
1220void zincrbyCommand(redisClient *c);
1221void zrangeCommand(redisClient *c);
1222void zrangebyscoreCommand(redisClient *c);
25bb8a44 1223void zrevrangebyscoreCommand(redisClient *c);
e2641e09 1224void zcountCommand(redisClient *c);
1225void zrevrangeCommand(redisClient *c);
1226void zcardCommand(redisClient *c);
1227void zremCommand(redisClient *c);
1228void zscoreCommand(redisClient *c);
1229void zremrangebyscoreCommand(redisClient *c);
1230void multiCommand(redisClient *c);
1231void execCommand(redisClient *c);
1232void discardCommand(redisClient *c);
1233void blpopCommand(redisClient *c);
1234void brpopCommand(redisClient *c);
b2a7fd0c 1235void brpoplpushCommand(redisClient *c);
e2641e09 1236void appendCommand(redisClient *c);
80091bba 1237void strlenCommand(redisClient *c);
e2641e09 1238void zrankCommand(redisClient *c);
1239void zrevrankCommand(redisClient *c);
1240void hsetCommand(redisClient *c);
1241void hsetnxCommand(redisClient *c);
1242void hgetCommand(redisClient *c);
1243void hmsetCommand(redisClient *c);
1244void hmgetCommand(redisClient *c);
1245void hdelCommand(redisClient *c);
1246void hlenCommand(redisClient *c);
1247void zremrangebyrankCommand(redisClient *c);
1248void zunionstoreCommand(redisClient *c);
1249void zinterstoreCommand(redisClient *c);
1250void hkeysCommand(redisClient *c);
1251void hvalsCommand(redisClient *c);
1252void hgetallCommand(redisClient *c);
1253void hexistsCommand(redisClient *c);
1254void configCommand(redisClient *c);
1255void hincrbyCommand(redisClient *c);
68bfe993 1256void hincrbyfloatCommand(redisClient *c);
e2641e09 1257void subscribeCommand(redisClient *c);
1258void unsubscribeCommand(redisClient *c);
1259void psubscribeCommand(redisClient *c);
1260void punsubscribeCommand(redisClient *c);
1261void publishCommand(redisClient *c);
1262void watchCommand(redisClient *c);
1263void unwatchCommand(redisClient *c);
ecc91094 1264void clusterCommand(redisClient *c);
1265void restoreCommand(redisClient *c);
1266void migrateCommand(redisClient *c);
6856c7b4 1267void askingCommand(redisClient *c);
626f6b2d 1268void dumpCommand(redisClient *c);
ece74202 1269void objectCommand(redisClient *c);
3cd12b56 1270void clientCommand(redisClient *c);
7585836e 1271void evalCommand(redisClient *c);
7229d60d 1272void evalShaCommand(redisClient *c);
070e3945 1273void scriptCommand(redisClient *c);
9494f1f1 1274void timeCommand(redisClient *c);
0bd6d68e 1275void bitopCommand(redisClient *c);
1276void bitcountCommand(redisClient *c);
3a328978 1277void replconfCommand(redisClient *c);
e2641e09 1278
b3aa6d71 1279#if defined(__GNUC__)
b3aa6d71 1280void *calloc(size_t count, size_t size) __attribute__ ((deprecated));
1281void free(void *ptr) __attribute__ ((deprecated));
1282void *malloc(size_t size) __attribute__ ((deprecated));
1283void *realloc(void *ptr, size_t size) __attribute__ ((deprecated));
1284#endif
1285
e3e69935 1286/* Debugging stuff */
bab205f7 1287void _redisAssertWithInfo(redisClient *c, robj *o, char *estr, char *file, int line);
e3e69935 1288void _redisAssert(char *estr, char *file, int line);
1289void _redisPanic(char *msg, char *file, int line);
fa5af017 1290void bugReportStart(void);
00010fa9 1291void redisLogObjectDebugInfo(robj *o);
d4d20859 1292void sigsegvHandler(int sig, siginfo_t *info, void *secret);
1293sds genRedisInfoString(char *section);
39bd025c 1294void enableWatchdog(int period);
1295void disableWatchdog(void);
1296void watchdogScheduleSignal(int period);
ee789e15 1297void redisLogHexDump(int level, char *descr, void *value, size_t len);
6b5daa2d 1298
1299#define redisDebug(fmt, ...) \
1300 printf("DEBUG %s:%d > " fmt "\n", __FILE__, __LINE__, __VA_ARGS__)
1301#define redisDebugMark() \
1302 printf("-- MARK %s:%d --\n", __FILE__, __LINE__)
1303
e2641e09 1304#endif