8 #include "solarisfixes.h" 
  21 #include <netinet/in.h> 
  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 */ 
  29 #include "zmalloc.h" /* total memory usage aware version of malloc/free */ 
  30 #include "anet.h"    /* Networking the easy way */ 
  31 #include "ziplist.h" /* Compact list data structure */ 
  32 #include "intset.h"  /* Compact integer set structure */ 
  33 #include "version.h" /* Version macro */ 
  34 #include "util.h"    /* Misc functions useful in many places */ 
  40 /* Static server configuration */ 
  41 #define REDIS_HZ                100     /* Time interrupt calls/sec. */ 
  42 #define REDIS_SERVERPORT        6379    /* TCP port */ 
  43 #define REDIS_MAXIDLETIME       0       /* default client timeout: infinite */ 
  44 #define REDIS_DEFAULT_DBNUM     16 
  45 #define REDIS_CONFIGLINE_MAX    1024 
  46 #define REDIS_EXPIRELOOKUPS_PER_CRON    10 /* lookup 10 expires per loop */ 
  47 #define REDIS_EXPIRELOOKUPS_TIME_PERC   25 /* CPU max % for keys collection */ 
  48 #define REDIS_MAX_WRITE_PER_EVENT (1024*64) 
  49 #define REDIS_SHARED_SELECT_CMDS 10 
  50 #define REDIS_SHARED_INTEGERS 10000 
  51 #define REDIS_SHARED_BULKHDR_LEN 32 
  52 #define REDIS_MAX_LOGMSG_LEN    1024 /* Default maximum length of syslog messages */ 
  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 
  56 #define REDIS_SLOWLOG_LOG_SLOWER_THAN 10000 
  57 #define REDIS_SLOWLOG_MAX_LEN 128 
  58 #define REDIS_MAX_CLIENTS 10000 
  59 #define REDIS_AUTHPASS_MAX_LEN 512 
  61 #define REDIS_REPL_TIMEOUT 60 
  62 #define REDIS_REPL_PING_SLAVE_PERIOD 10 
  64 #define REDIS_RUN_ID_SIZE 40 
  65 #define REDIS_OPS_SEC_SAMPLES 16 
  67 /* Protocol and I/O related defines */ 
  68 #define REDIS_MAX_QUERYBUF_LEN  (1024*1024*1024) /* 1GB max query buffer. */ 
  69 #define REDIS_IOBUF_LEN         (1024*16)  /* Generic I/O buffer size */ 
  70 #define REDIS_REPLY_CHUNK_BYTES (16*1024) /* 16k output buffer */ 
  71 #define REDIS_INLINE_MAX_SIZE   (1024*64) /* Max size of inline reads */ 
  72 #define REDIS_MBULK_BIG_ARG     (1024*32) 
  74 /* Hash table parameters */ 
  75 #define REDIS_HT_MINFILL        10      /* Minimal hash table fill 10% */ 
  77 /* Command flags. Please check the command table defined in the redis.c file 
  78  * for more information about the meaning of every flag. */ 
  79 #define REDIS_CMD_WRITE 1                   /* "w" flag */ 
  80 #define REDIS_CMD_READONLY 2                /* "r" flag */ 
  81 #define REDIS_CMD_DENYOOM 4                 /* "m" flag */ 
  82 #define REDIS_CMD_FORCE_REPLICATION 8       /* "f" flag */ 
  83 #define REDIS_CMD_ADMIN 16                  /* "a" flag */ 
  84 #define REDIS_CMD_PUBSUB 32                 /* "p" flag */ 
  85 #define REDIS_CMD_NOSCRIPT  64              /* "s" flag */ 
  86 #define REDIS_CMD_RANDOM 128                /* "R" flag */ 
  87 #define REDIS_CMD_SORT_FOR_SCRIPT 256       /* "S" flag */ 
  90 #define REDIS_STRING 0 
  96 /* Objects encoding. Some kind of objects like Strings and Hashes can be 
  97  * internally represented in multiple ways. The 'encoding' field of the object 
  98  * is set to one of this fields for this object. */ 
  99 #define REDIS_ENCODING_RAW 0     /* Raw representation */ 
 100 #define REDIS_ENCODING_INT 1     /* Encoded as integer */ 
 101 #define REDIS_ENCODING_HT 2      /* Encoded as hash table */ 
 102 #define REDIS_ENCODING_ZIPMAP 3  /* Encoded as zipmap */ 
 103 #define REDIS_ENCODING_LINKEDLIST 4 /* Encoded as regular linked list */ 
 104 #define REDIS_ENCODING_ZIPLIST 5 /* Encoded as ziplist */ 
 105 #define REDIS_ENCODING_INTSET 6  /* Encoded as intset */ 
 106 #define REDIS_ENCODING_SKIPLIST 7  /* Encoded as skiplist */ 
 108 /* Defines related to the dump file format. To store 32 bits lengths for short 
 109  * keys requires a lot of space, so we check the most significant 2 bits of 
 110  * the first byte to interpreter the length: 
 112  * 00|000000 => if the two MSB are 00 the len is the 6 bits of this byte 
 113  * 01|000000 00000000 =>  01, the len is 14 byes, 6 bits + 8 bits of next byte 
 114  * 10|000000 [32 bit integer] => if it's 01, a full 32 bit len will follow 
 115  * 11|000000 this means: specially encoded object will follow. The six bits 
 116  *           number specify the kind of object that follows. 
 117  *           See the REDIS_RDB_ENC_* defines. 
 119  * Lenghts up to 63 are stored using a single byte, most DB keys, and may 
 120  * values, will fit inside. */ 
 121 #define REDIS_RDB_6BITLEN 0 
 122 #define REDIS_RDB_14BITLEN 1 
 123 #define REDIS_RDB_32BITLEN 2 
 124 #define REDIS_RDB_ENCVAL 3 
 125 #define REDIS_RDB_LENERR UINT_MAX 
 127 /* When a length of a string object stored on disk has the first two bits 
 128  * set, the remaining two bits specify a special encoding for the object 
 129  * accordingly to the following defines: */ 
 130 #define REDIS_RDB_ENC_INT8 0        /* 8 bit signed integer */ 
 131 #define REDIS_RDB_ENC_INT16 1       /* 16 bit signed integer */ 
 132 #define REDIS_RDB_ENC_INT32 2       /* 32 bit signed integer */ 
 133 #define REDIS_RDB_ENC_LZF 3         /* string compressed with FASTLZ */ 
 136 #define REDIS_AOF_OFF 0             /* AOF is off */ 
 137 #define REDIS_AOF_ON 1              /* AOF is on */ 
 138 #define REDIS_AOF_WAIT_REWRITE 2    /* AOF waits rewrite to start appending */ 
 141 #define REDIS_SLAVE 1       /* This client is a slave server */ 
 142 #define REDIS_MASTER 2      /* This client is a master server */ 
 143 #define REDIS_MONITOR 4     /* This client is a slave monitor, see MONITOR */ 
 144 #define REDIS_MULTI 8       /* This client is in a MULTI context */ 
 145 #define REDIS_BLOCKED 16    /* The client is waiting in a blocking operation */ 
 146 #define REDIS_DIRTY_CAS 64  /* Watched keys modified. EXEC will fail. */ 
 147 #define REDIS_CLOSE_AFTER_REPLY 128 /* Close after writing entire reply. */ 
 148 #define REDIS_UNBLOCKED 256 /* This client was unblocked and is stored in 
 149                                server.unblocked_clients */ 
 150 #define REDIS_LUA_CLIENT 512 /* This is a non connected client used by Lua */ 
 151 #define REDIS_ASKING 1024   /* Client issued the ASKING command */ 
 152 #define REDIS_CLOSE_ASAP 2048 /* Close this client ASAP */ 
 154 /* Client request types */ 
 155 #define REDIS_REQ_INLINE 1 
 156 #define REDIS_REQ_MULTIBULK 2 
 158 /* Client classes for client limits, currently used only for 
 159  * the max-client-output-buffer limit implementation. */ 
 160 #define REDIS_CLIENT_LIMIT_CLASS_NORMAL 0 
 161 #define REDIS_CLIENT_LIMIT_CLASS_SLAVE 1 
 162 #define REDIS_CLIENT_LIMIT_CLASS_PUBSUB 2 
 163 #define REDIS_CLIENT_LIMIT_NUM_CLASSES 3 
 165 /* Slave replication state - slave side */ 
 166 #define REDIS_REPL_NONE 0 /* No active replication */ 
 167 #define REDIS_REPL_CONNECT 1 /* Must connect to master */ 
 168 #define REDIS_REPL_CONNECTING 2 /* Connecting to master */ 
 169 #define REDIS_REPL_TRANSFER 3 /* Receiving .rdb from master */ 
 170 #define REDIS_REPL_CONNECTED 4 /* Connected to master */ 
 172 /* Synchronous read timeout - slave side */ 
 173 #define REDIS_REPL_SYNCIO_TIMEOUT 5 
 175 /* Slave replication state - from the point of view of master 
 176  * Note that in SEND_BULK and ONLINE state the slave receives new updates 
 177  * in its output queue. In the WAIT_BGSAVE state instead the server is waiting 
 178  * to start the next background saving in order to send updates to it. */ 
 179 #define REDIS_REPL_WAIT_BGSAVE_START 3 /* master waits bgsave to start feeding it */ 
 180 #define REDIS_REPL_WAIT_BGSAVE_END 4 /* master waits bgsave to start bulk DB transmission */ 
 181 #define REDIS_REPL_SEND_BULK 5 /* master is sending the bulk DB */ 
 182 #define REDIS_REPL_ONLINE 6 /* bulk DB already transmitted, receive updates */ 
 184 /* List related stuff */ 
 188 /* Sort operations */ 
 189 #define REDIS_SORT_GET 0 
 190 #define REDIS_SORT_ASC 1 
 191 #define REDIS_SORT_DESC 2 
 192 #define REDIS_SORTKEY_MAX 1024 
 195 #define REDIS_DEBUG 0 
 196 #define REDIS_VERBOSE 1 
 197 #define REDIS_NOTICE 2 
 198 #define REDIS_WARNING 3 
 199 #define REDIS_LOG_RAW (1<<10) /* Modifier to log without timestamp */ 
 201 /* Anti-warning macro... */ 
 202 #define REDIS_NOTUSED(V) ((void) V) 
 204 #define ZSKIPLIST_MAXLEVEL 32 /* Should be enough for 2^32 elements */ 
 205 #define ZSKIPLIST_P 0.25      /* Skiplist P = 1/4 */ 
 207 /* Append only defines */ 
 208 #define AOF_FSYNC_NO 0 
 209 #define AOF_FSYNC_ALWAYS 1 
 210 #define AOF_FSYNC_EVERYSEC 2 
 212 /* Zip structure related defaults */ 
 213 #define REDIS_HASH_MAX_ZIPLIST_ENTRIES 512 
 214 #define REDIS_HASH_MAX_ZIPLIST_VALUE 64 
 215 #define REDIS_LIST_MAX_ZIPLIST_ENTRIES 512 
 216 #define REDIS_LIST_MAX_ZIPLIST_VALUE 64 
 217 #define REDIS_SET_MAX_INTSET_ENTRIES 512 
 218 #define REDIS_ZSET_MAX_ZIPLIST_ENTRIES 128 
 219 #define REDIS_ZSET_MAX_ZIPLIST_VALUE 64 
 221 /* Sets operations codes */ 
 222 #define REDIS_OP_UNION 0 
 223 #define REDIS_OP_DIFF 1 
 224 #define REDIS_OP_INTER 2 
 226 /* Redis maxmemory strategies */ 
 227 #define REDIS_MAXMEMORY_VOLATILE_LRU 0 
 228 #define REDIS_MAXMEMORY_VOLATILE_TTL 1 
 229 #define REDIS_MAXMEMORY_VOLATILE_RANDOM 2 
 230 #define REDIS_MAXMEMORY_ALLKEYS_LRU 3 
 231 #define REDIS_MAXMEMORY_ALLKEYS_RANDOM 4 
 232 #define REDIS_MAXMEMORY_NO_EVICTION 5 
 235 #define REDIS_LUA_TIME_LIMIT 5000 /* milliseconds */ 
 238 #define UNIT_SECONDS 0 
 239 #define UNIT_MILLISECONDS 1 
 242 #define REDIS_SHUTDOWN_SAVE 1       /* Force SAVE on SHUTDOWN even if no save 
 243                                        points are configured. */ 
 244 #define REDIS_SHUTDOWN_NOSAVE 2     /* Don't SAVE on SHUTDOWN. */ 
 246 /* Command call flags, see call() function */ 
 247 #define REDIS_CALL_NONE 0 
 248 #define REDIS_CALL_SLOWLOG 1 
 249 #define REDIS_CALL_STATS 2 
 250 #define REDIS_CALL_PROPAGATE 4 
 251 #define REDIS_CALL_FULL (REDIS_CALL_SLOWLOG | REDIS_CALL_STATS | REDIS_CALL_PROPAGATE) 
 253 /* Command propagation flags, see propagate() function */ 
 254 #define REDIS_PROPAGATE_NONE 0 
 255 #define REDIS_PROPAGATE_AOF 1 
 256 #define REDIS_PROPAGATE_REPL 2 
 258 /* We can print the stacktrace, so our assert is defined this way: */ 
 259 #define redisAssertWithInfo(_c,_o,_e) ((_e)?(void)0 : (_redisAssertWithInfo(_c,_o,#_e,__FILE__,__LINE__),_exit(1))) 
 260 #define redisAssert(_e) ((_e)?(void)0 : (_redisAssert(#_e,__FILE__,__LINE__),_exit(1))) 
 261 #define redisPanic(_e) _redisPanic(#_e,__FILE__,__LINE__),_exit(1) 
 263 /*----------------------------------------------------------------------------- 
 265  *----------------------------------------------------------------------------*/ 
 267 /* A redis object, that is a type able to hold a string / list / set */ 
 269 /* The actual Redis Object */ 
 270 #define REDIS_LRU_CLOCK_MAX ((1<<21)-1) /* Max value of obj->lru */ 
 271 #define REDIS_LRU_CLOCK_RESOLUTION 10 /* LRU clock resolution in seconds */ 
 272 typedef struct redisObject 
{ 
 274     unsigned notused
:2;     /* Not used */ 
 276     unsigned lru
:22;        /* lru time (relative to server.lruclock) */ 
 281 /* Macro used to initalize a Redis object allocated on the stack. 
 282  * Note that this macro is taken near the structure definition to make sure 
 283  * we'll update it when the structure is changed, to avoid bugs like 
 284  * bug #85 introduced exactly in this way. */ 
 285 #define initStaticStringObject(_var,_ptr) do { \ 
 287     _var.type = REDIS_STRING; \ 
 288     _var.encoding = REDIS_ENCODING_RAW; \ 
 292 typedef struct redisDb 
{ 
 293     dict 
*dict
;                 /* The keyspace for this DB */ 
 294     dict 
*expires
;              /* Timeout of keys with a timeout set */ 
 295     dict 
*blocking_keys
;        /* Keys with clients waiting for data (BLPOP) */ 
 296     dict 
*watched_keys
;         /* WATCHED keys for MULTI/EXEC CAS */ 
 300 /* Client MULTI/EXEC state */ 
 301 typedef struct multiCmd 
{ 
 304     struct redisCommand 
*cmd
; 
 307 typedef struct multiState 
{ 
 308     multiCmd 
*commands
;     /* Array of MULTI commands */ 
 309     int count
;              /* Total number of MULTI commands */ 
 312 typedef struct blockingState 
{ 
 313     robj 
**keys
;            /* The key we are waiting to terminate a blocking 
 314                              * operation such as BLPOP. Otherwise NULL. */ 
 315     int count
;              /* Number of blocking keys */ 
 316     time_t timeout
;         /* Blocking operation timeout. If UNIX current time 
 317                              * is >= timeout then the operation timed out. */ 
 318     robj 
*target
;           /* The key that should receive the element, 
 322 /* With multiplexing we need to take per-clinet state. 
 323  * Clients are taken in a liked list. */ 
 324 typedef struct redisClient 
{ 
 329     size_t querybuf_peak
;   /* Recent (100ms or more) peak of querybuf size */ 
 332     struct redisCommand 
*cmd
, *lastcmd
; 
 334     int multibulklen
;       /* number of multi bulk arguments left to read */ 
 335     long bulklen
;           /* length of bulk argument in multi bulk request */ 
 337     unsigned long reply_bytes
; /* Tot bytes of objects in reply list */ 
 339     time_t ctime
;           /* Client creation time */ 
 340     time_t lastinteraction
; /* time of the last interaction, used for timeout */ 
 341     time_t obuf_soft_limit_reached_time
; 
 342     int flags
;              /* REDIS_SLAVE | REDIS_MONITOR | REDIS_MULTI ... */ 
 343     int slaveseldb
;         /* slave selected db, if this client is a slave */ 
 344     int authenticated
;      /* when requirepass is non-NULL */ 
 345     int replstate
;          /* replication state if this is a slave */ 
 346     int repldbfd
;           /* replication DB file descriptor */ 
 347     long repldboff
;         /* replication DB file offset */ 
 348     off_t repldbsize
;       /* replication DB file size */ 
 349     multiState mstate
;      /* MULTI/EXEC state */ 
 350     blockingState bpop
;   /* blocking state */ 
 351     list 
*io_keys
;          /* Keys this client is waiting to be loaded from the 
 352                              * swap file in order to continue. */ 
 353     list 
*watched_keys
;     /* Keys WATCHED for MULTI/EXEC CAS */ 
 354     dict 
*pubsub_channels
;  /* channels a client is interested in (SUBSCRIBE) */ 
 355     list 
*pubsub_patterns
;  /* patterns a client is interested in (SUBSCRIBE) */ 
 357     /* Response buffer */ 
 359     char buf
[REDIS_REPLY_CHUNK_BYTES
]; 
 367 struct sharedObjectsStruct 
{ 
 368     robj 
*crlf
, *ok
, *err
, *emptybulk
, *czero
, *cone
, *cnegone
, *pong
, *space
, 
 369     *colon
, *nullbulk
, *nullmultibulk
, *queued
, 
 370     *emptymultibulk
, *wrongtypeerr
, *nokeyerr
, *syntaxerr
, *sameobjecterr
, 
 371     *outofrangeerr
, *noscripterr
, *loadingerr
, *slowscripterr
, *bgsaveerr
, 
 372     *masterdownerr
, *roslaveerr
, 
 373     *oomerr
, *plus
, *messagebulk
, *pmessagebulk
, *subscribebulk
, 
 374     *unsubscribebulk
, *psubscribebulk
, *punsubscribebulk
, *del
, *rpop
, *lpop
, 
 375     *select
[REDIS_SHARED_SELECT_CMDS
], 
 376     *integers
[REDIS_SHARED_INTEGERS
], 
 377     *mbulkhdr
[REDIS_SHARED_BULKHDR_LEN
], /* "*<value>\r\n" */ 
 378     *bulkhdr
[REDIS_SHARED_BULKHDR_LEN
];  /* "$<value>\r\n" */ 
 381 /* ZSETs use a specialized version of Skiplists */ 
 382 typedef struct zskiplistNode 
{ 
 385     struct zskiplistNode 
*backward
; 
 386     struct zskiplistLevel 
{ 
 387         struct zskiplistNode 
*forward
; 
 392 typedef struct zskiplist 
{ 
 393     struct zskiplistNode 
*header
, *tail
; 
 394     unsigned long length
; 
 398 typedef struct zset 
{ 
 403 typedef struct clientBufferLimitsConfig 
{ 
 404     unsigned long long hard_limit_bytes
; 
 405     unsigned long long soft_limit_bytes
; 
 406     time_t soft_limit_seconds
; 
 407 } clientBufferLimitsConfig
; 
 409 /* The redisOp structure defines a Redis Operation, that is an instance of 
 410  * a command with an argument vector, database ID, propagation target 
 411  * (REDIS_PROPAGATE_*), and command pointer. 
 413  * Currently only used to additionally propagate more commands to AOF/Replication 
 414  * after the propagation of the executed command. */ 
 415 typedef struct redisOp 
{ 
 417     int argc
, dbid
, target
; 
 418     struct redisCommand 
*cmd
; 
 421 /* Defines an array of Redis operations. There is an API to add to this 
 422  * structure in a easy way. 
 424  * redisOpArrayInit(); 
 425  * redisOpArrayAppend(); 
 426  * redisOpArrayFree(); 
 428 typedef struct redisOpArray 
{ 
 433 /*----------------------------------------------------------------------------- 
 434  * Global server state 
 435  *----------------------------------------------------------------------------*/ 
 440     dict 
*commands
;             /* Command table hahs table */ 
 442     unsigned lruclock
:22;       /* Clock incrementing every minute, for LRU */ 
 443     unsigned lruclock_padding
:10; 
 444     int shutdown_asap
;          /* SHUTDOWN needed ASAP */ 
 445     int activerehashing
;        /* Incremental rehash in serverCron() */ 
 446     char *requirepass
;          /* Pass for AUTH command, or NULL */ 
 447     char *pidfile
;              /* PID file path */ 
 448     int arch_bits
;              /* 32 or 64 depending on sizeof(long) */ 
 449     int cronloops
;              /* Number of times the cron function run */ 
 450     char runid
[REDIS_RUN_ID_SIZE
+1];  /* ID always different at every exec. */ 
 452     int port
;                   /* TCP listening port */ 
 453     char *bindaddr
;             /* Bind address or NULL */ 
 454     char *unixsocket
;           /* UNIX socket path */ 
 455     mode_t unixsocketperm
;      /* UNIX socket permission */ 
 456     int ipfd
;                   /* TCP socket file descriptor */ 
 457     int sofd
;                   /* Unix socket file descriptor */ 
 458     list 
*clients
;              /* List of active clients */ 
 459     list 
*clients_to_close
;     /* Clients to close asynchronously */ 
 460     list 
*slaves
, *monitors
;    /* List of slaves and MONITORs */ 
 461     redisClient 
*current_client
; /* Current client, only used on crash report */ 
 462     char neterr
[ANET_ERR_LEN
];  /* Error buffer for anet.c */ 
 463     /* RDB / AOF loading information */ 
 464     int loading
;                /* We are loading data from disk if true */ 
 465     off_t loading_total_bytes
; 
 466     off_t loading_loaded_bytes
; 
 467     time_t loading_start_time
; 
 468     /* Fast pointers to often looked up command */ 
 469     struct redisCommand 
*delCommand
, *multiCommand
, *lpushCommand
; 
 470     /* Fields used only for stats */ 
 471     time_t stat_starttime
;          /* Server start time */ 
 472     long long stat_numcommands
;     /* Number of processed commands */ 
 473     long long stat_numconnections
;  /* Number of connections received */ 
 474     long long stat_expiredkeys
;     /* Number of expired keys */ 
 475     long long stat_evictedkeys
;     /* Number of evicted keys (maxmemory) */ 
 476     long long stat_keyspace_hits
;   /* Number of successful lookups of keys */ 
 477     long long stat_keyspace_misses
; /* Number of failed lookups of keys */ 
 478     size_t stat_peak_memory
;        /* Max used memory record */ 
 479     long long stat_fork_time
;       /* Time needed to perform latets fork() */ 
 480     long long stat_rejected_conn
;   /* Clients rejected because of maxclients */ 
 481     list 
*slowlog
;                  /* SLOWLOG list of commands */ 
 482     long long slowlog_entry_id
;     /* SLOWLOG current entry ID */ 
 483     long long slowlog_log_slower_than
; /* SLOWLOG time limit (to get logged) */ 
 484     unsigned long slowlog_max_len
;     /* SLOWLOG max number of items logged */ 
 485     /* The following two are used to track instantaneous "load" in terms 
 486      * of operations per second. */ 
 487     long long ops_sec_last_sample_time
; /* Timestamp of last sample (in ms) */ 
 488     long long ops_sec_last_sample_ops
;  /* numcommands in last sample */ 
 489     long long ops_sec_samples
[REDIS_OPS_SEC_SAMPLES
]; 
 492     int verbosity
;                  /* Loglevel in redis.conf */ 
 493     int maxidletime
;                /* Client timeout in seconds */ 
 494     size_t client_max_querybuf_len
; /* Limit for client query buffer length */ 
 495     int dbnum
;                      /* Total number of configured DBs */ 
 496     int daemonize
;                  /* True if running as a daemon */ 
 497     clientBufferLimitsConfig client_obuf_limits
[REDIS_CLIENT_LIMIT_NUM_CLASSES
]; 
 498     /* AOF persistence */ 
 499     int aof_state
;                  /* REDIS_AOF_(ON|OFF|WAIT_REWRITE) */ 
 500     int aof_fsync
;                  /* Kind of fsync() policy */ 
 501     char *aof_filename
;             /* Name of the AOF file */ 
 502     int aof_no_fsync_on_rewrite
;    /* Don't fsync if a rewrite is in prog. */ 
 503     int aof_rewrite_perc
;           /* Rewrite AOF if % growth is > M and... */ 
 504     off_t aof_rewrite_min_size
;     /* the AOF file is at least N bytes. */ 
 505     off_t aof_rewrite_base_size
;    /* AOF size on latest startup or rewrite. */ 
 506     off_t aof_current_size
;         /* AOF current size. */ 
 507     int aof_rewrite_scheduled
;      /* Rewrite once BGSAVE terminates. */ 
 508     pid_t aof_child_pid
;            /* PID if rewriting process */ 
 509     list 
*aof_rewrite_buf_blocks
;   /* Hold changes during an AOF rewrite. */ 
 510     sds aof_buf
;      /* AOF buffer, written before entering the event loop */ 
 511     int aof_fd
;       /* File descriptor of currently selected AOF file */ 
 512     int aof_selected_db
; /* Currently selected DB in AOF */ 
 513     time_t aof_flush_postponed_start
; /* UNIX time of postponed AOF flush */ 
 514     time_t aof_last_fsync
;            /* UNIX time of last fsync() */ 
 515     time_t aof_rewrite_time_last
;   /* Time used by last AOF rewrite run. */ 
 516     time_t aof_rewrite_time_start
;  /* Current AOF rewrite start time. */ 
 517     unsigned long aof_delayed_fsync
;  /* delayed AOF fsync() counter */ 
 518     /* RDB persistence */ 
 519     long long dirty
;                /* Changes to DB from the last save */ 
 520     long long dirty_before_bgsave
;  /* Used to restore dirty on failed BGSAVE */ 
 521     pid_t rdb_child_pid
;            /* PID of RDB saving child */ 
 522     struct saveparam 
*saveparams
;   /* Save points array for RDB */ 
 523     int saveparamslen
;              /* Number of saving points */ 
 524     char *rdb_filename
;             /* Name of RDB file */ 
 525     int rdb_compression
;            /* Use compression in RDB? */ 
 526     int rdb_checksum
;               /* Use RDB checksum? */ 
 527     time_t lastsave
;                /* Unix time of last save succeeede */ 
 528     time_t rdb_save_time_last
;      /* Time used by last RDB save run. */ 
 529     time_t rdb_save_time_start
;     /* Current RDB save start time. */ 
 530     int lastbgsave_status
;          /* REDIS_OK or REDIS_ERR */ 
 531     int stop_writes_on_bgsave_err
;  /* Don't allow writes if can't BGSAVE */ 
 532     /* Propagation of commands in AOF / replication */ 
 533     redisOpArray also_propagate
;    /* Additional command to propagate. */ 
 535     char *logfile
;                  /* Path of log file */ 
 536     int syslog_enabled
;             /* Is syslog enabled? */ 
 537     char *syslog_ident
;             /* Syslog ident */ 
 538     int syslog_facility
;            /* Syslog facility */ 
 539     /* Slave specific fields */ 
 540     char *masterauth
;               /* AUTH with this password with master */ 
 541     char *masterhost
;               /* Hostname of master */ 
 542     int masterport
;                 /* Port of master */ 
 543     int repl_ping_slave_period
;     /* Master pings the salve every N seconds */ 
 544     int repl_timeout
;               /* Timeout after N seconds of master idle */ 
 545     redisClient 
*master
;     /* Client that is master for this slave */ 
 546     int repl_syncio_timeout
; /* Timeout for synchronous I/O calls */ 
 547     int repl_state
;          /* Replication status if the instance is a slave */ 
 548     off_t repl_transfer_left
;  /* Bytes left reading .rdb  */ 
 549     int repl_transfer_s
;     /* Slave -> Master SYNC socket */ 
 550     int repl_transfer_fd
;    /* Slave -> Master SYNC temp file descriptor */ 
 551     char *repl_transfer_tmpfile
; /* Slave-> master SYNC temp file name */ 
 552     time_t repl_transfer_lastio
; /* Unix time of the latest read, for timeout */ 
 553     int repl_serve_stale_data
; /* Serve stale data when link is down? */ 
 554     int repl_slave_ro
;          /* Slave is read only? */ 
 555     time_t repl_down_since
; /* Unix time at which link with master went down */ 
 557     unsigned int maxclients
;        /* Max number of simultaneous clients */ 
 558     unsigned long long maxmemory
;   /* Max number of memory bytes to use */ 
 559     int maxmemory_policy
;           /* Policy for key evition */ 
 560     int maxmemory_samples
;          /* Pricision of random sampling */ 
 561     /* Blocked clients */ 
 562     unsigned int bpop_blocked_clients
; /* Number of clients blocked by lists */ 
 563     list 
*unblocked_clients
; /* list of clients to unblock before next loop */ 
 564     /* Sort parameters - qsort_r() is only available under BSD so we 
 565      * have to take this state global, in order to pass it to sortCompare() */ 
 570     /* Zip structure config, see redis.conf for more information  */ 
 571     size_t hash_max_ziplist_entries
; 
 572     size_t hash_max_ziplist_value
; 
 573     size_t list_max_ziplist_entries
; 
 574     size_t list_max_ziplist_value
; 
 575     size_t set_max_intset_entries
; 
 576     size_t zset_max_ziplist_entries
; 
 577     size_t zset_max_ziplist_value
; 
 578     time_t unixtime
;        /* Unix time sampled every second. */ 
 580     dict 
*pubsub_channels
;  /* Map channels to list of subscribed clients */ 
 581     list 
*pubsub_patterns
;  /* A list of pubsub_patterns */ 
 583     lua_State 
*lua
; /* The Lua interpreter. We use just one for all clients */ 
 584     redisClient 
*lua_client
;   /* The "fake client" to query Redis from Lua */ 
 585     redisClient 
*lua_caller
;   /* The client running EVAL right now, or NULL */ 
 586     dict 
*lua_scripts
;         /* A dictionary of SHA1 -> Lua scripts */ 
 587     long long lua_time_limit
;  /* Script timeout in seconds */ 
 588     long long lua_time_start
;  /* Start time of script */ 
 589     int lua_write_dirty
;  /* True if a write command was called during the 
 590                              execution of the current script. */ 
 591     int lua_random_dirty
; /* True if a random command was called during the 
 592                              execution of the current script. */ 
 593     int lua_timedout
;     /* True if we reached the time limit for script 
 595     int lua_kill
;         /* Kill the script if true. */ 
 596     /* Assert & bug reportign */ 
 600     int bug_report_start
; /* True if bug report header was already logged. */ 
 601     int watchdog_period
;  /* Software watchdog period in ms. 0 = off */ 
 604 typedef struct pubsubPattern 
{ 
 609 typedef void redisCommandProc(redisClient 
*c
); 
 610 typedef int *redisGetKeysProc(struct redisCommand 
*cmd
, robj 
**argv
, int argc
, int *numkeys
, int flags
); 
 611 struct redisCommand 
{ 
 613     redisCommandProc 
*proc
; 
 615     char *sflags
; /* Flags as string represenation, one char per flag. */ 
 616     int flags
;    /* The actual flags, obtained from the 'sflags' field. */ 
 617     /* Use a function to determine keys arguments in a command line. */ 
 618     redisGetKeysProc 
*getkeys_proc
; 
 619     /* What keys should be loaded in background when calling this command? */ 
 620     int firstkey
; /* The first argument that's a key (0 = no keys) */ 
 621     int lastkey
;  /* THe last argument that's a key */ 
 622     int keystep
;  /* The step between first and last key */ 
 623     long long microseconds
, calls
; 
 626 struct redisFunctionSym 
{ 
 628     unsigned long pointer
; 
 631 typedef struct _redisSortObject 
{ 
 639 typedef struct _redisSortOperation 
{ 
 642 } redisSortOperation
; 
 644 /* Structure to hold list iteration abstraction. */ 
 647     unsigned char encoding
; 
 648     unsigned char direction
; /* Iteration direction */ 
 653 /* Structure for an entry while iterating over a list. */ 
 655     listTypeIterator 
*li
; 
 656     unsigned char *zi
;  /* Entry in ziplist */ 
 657     listNode 
*ln
;       /* Entry in linked list */ 
 660 /* Structure to hold set iteration abstraction. */ 
 664     int ii
; /* intset iterator */ 
 668 /* Structure to hold hash iteration abstration. Note that iteration over 
 669  * hashes involves both fields and values. Because it is possible that 
 670  * not both are required, store pointers in the iterator to avoid 
 671  * unnecessary memory allocation for fields/values. */ 
 676     unsigned char *fptr
, *vptr
; 
 682 #define REDIS_HASH_KEY 1 
 683 #define REDIS_HASH_VALUE 2 
 685 /*----------------------------------------------------------------------------- 
 686  * Extern declarations 
 687  *----------------------------------------------------------------------------*/ 
 689 extern struct redisServer server
; 
 690 extern struct sharedObjectsStruct shared
; 
 691 extern dictType setDictType
; 
 692 extern dictType zsetDictType
; 
 693 extern dictType dbDictType
; 
 694 extern double R_Zero
, R_PosInf
, R_NegInf
, R_Nan
; 
 695 extern dictType hashDictType
; 
 697 /*----------------------------------------------------------------------------- 
 698  * Functions prototypes 
 699  *----------------------------------------------------------------------------*/ 
 702 long long ustime(void); 
 703 long long mstime(void); 
 704 void getRandomHexChars(char *p
, unsigned int len
); 
 705 uint64_t crc64(uint64_t crc
, const unsigned char *s
, uint64_t l
); 
 706 void exitFromChild(int retcode
); 
 708 /* networking.c -- Networking and Client related operations */ 
 709 redisClient 
*createClient(int fd
); 
 710 void closeTimedoutClients(void); 
 711 void freeClient(redisClient 
*c
); 
 712 void resetClient(redisClient 
*c
); 
 713 void sendReplyToClient(aeEventLoop 
*el
, int fd
, void *privdata
, int mask
); 
 714 void addReply(redisClient 
*c
, robj 
*obj
); 
 715 void *addDeferredMultiBulkLength(redisClient 
*c
); 
 716 void setDeferredMultiBulkLength(redisClient 
*c
, void *node
, long length
); 
 717 void addReplySds(redisClient 
*c
, sds s
); 
 718 void processInputBuffer(redisClient 
*c
); 
 719 void acceptTcpHandler(aeEventLoop 
*el
, int fd
, void *privdata
, int mask
); 
 720 void acceptUnixHandler(aeEventLoop 
*el
, int fd
, void *privdata
, int mask
); 
 721 void readQueryFromClient(aeEventLoop 
*el
, int fd
, void *privdata
, int mask
); 
 722 void addReplyBulk(redisClient 
*c
, robj 
*obj
); 
 723 void addReplyBulkCString(redisClient 
*c
, char *s
); 
 724 void addReplyBulkCBuffer(redisClient 
*c
, void *p
, size_t len
); 
 725 void addReplyBulkLongLong(redisClient 
*c
, long long ll
); 
 726 void acceptHandler(aeEventLoop 
*el
, int fd
, void *privdata
, int mask
); 
 727 void addReply(redisClient 
*c
, robj 
*obj
); 
 728 void addReplySds(redisClient 
*c
, sds s
); 
 729 void addReplyError(redisClient 
*c
, char *err
); 
 730 void addReplyStatus(redisClient 
*c
, char *status
); 
 731 void addReplyDouble(redisClient 
*c
, double d
); 
 732 void addReplyLongLong(redisClient 
*c
, long long ll
); 
 733 void addReplyMultiBulkLen(redisClient 
*c
, long length
); 
 734 void copyClientOutputBuffer(redisClient 
*dst
, redisClient 
*src
); 
 735 void *dupClientReplyValue(void *o
); 
 736 void getClientsMaxBuffers(unsigned long *longest_output_list
, 
 737                           unsigned long *biggest_input_buffer
); 
 738 sds 
getClientInfoString(redisClient 
*client
); 
 739 sds 
getAllClientsInfoString(void); 
 740 void rewriteClientCommandVector(redisClient 
*c
, int argc
, ...); 
 741 void rewriteClientCommandArgument(redisClient 
*c
, int i
, robj 
*newval
); 
 742 unsigned long getClientOutputBufferMemoryUsage(redisClient 
*c
); 
 743 void freeClientsInAsyncFreeQueue(void); 
 744 void asyncCloseClientOnOutputBufferLimitReached(redisClient 
*c
); 
 745 int getClientLimitClassByName(char *name
); 
 746 char *getClientLimitClassName(int class); 
 747 void flushSlavesOutputBuffers(void); 
 748 void disconnectSlaves(void); 
 751 void addReplyErrorFormat(redisClient 
*c
, const char *fmt
, ...) 
 752     __attribute__((format(printf
, 2, 3))); 
 753 void addReplyStatusFormat(redisClient 
*c
, const char *fmt
, ...) 
 754     __attribute__((format(printf
, 2, 3))); 
 756 void addReplyErrorFormat(redisClient 
*c
, const char *fmt
, ...); 
 757 void addReplyStatusFormat(redisClient 
*c
, const char *fmt
, ...); 
 761 void listTypeTryConversion(robj 
*subject
, robj 
*value
); 
 762 void listTypePush(robj 
*subject
, robj 
*value
, int where
); 
 763 robj 
*listTypePop(robj 
*subject
, int where
); 
 764 unsigned long listTypeLength(robj 
*subject
); 
 765 listTypeIterator 
*listTypeInitIterator(robj 
*subject
, long index
, unsigned char direction
); 
 766 void listTypeReleaseIterator(listTypeIterator 
*li
); 
 767 int listTypeNext(listTypeIterator 
*li
, listTypeEntry 
*entry
); 
 768 robj 
*listTypeGet(listTypeEntry 
*entry
); 
 769 void listTypeInsert(listTypeEntry 
*entry
, robj 
*value
, int where
); 
 770 int listTypeEqual(listTypeEntry 
*entry
, robj 
*o
); 
 771 void listTypeDelete(listTypeEntry 
*entry
); 
 772 void listTypeConvert(robj 
*subject
, int enc
); 
 773 void unblockClientWaitingData(redisClient 
*c
); 
 774 int handleClientsWaitingListPush(redisClient 
*c
, robj 
*key
, robj 
*ele
); 
 775 void popGenericCommand(redisClient 
*c
, int where
); 
 777 /* MULTI/EXEC/WATCH... */ 
 778 void unwatchAllKeys(redisClient 
*c
); 
 779 void initClientMultiState(redisClient 
*c
); 
 780 void freeClientMultiState(redisClient 
*c
); 
 781 void queueMultiCommand(redisClient 
*c
); 
 782 void touchWatchedKey(redisDb 
*db
, robj 
*key
); 
 783 void touchWatchedKeysOnFlush(int dbid
); 
 784 void discardTransaction(redisClient 
*c
); 
 786 /* Redis object implementation */ 
 787 void decrRefCount(void *o
); 
 788 void incrRefCount(robj 
*o
); 
 789 robj 
*resetRefCount(robj 
*obj
); 
 790 void freeStringObject(robj 
*o
); 
 791 void freeListObject(robj 
*o
); 
 792 void freeSetObject(robj 
*o
); 
 793 void freeZsetObject(robj 
*o
); 
 794 void freeHashObject(robj 
*o
); 
 795 robj 
*createObject(int type
, void *ptr
); 
 796 robj 
*createStringObject(char *ptr
, size_t len
); 
 797 robj 
*dupStringObject(robj 
*o
); 
 798 int isObjectRepresentableAsLongLong(robj 
*o
, long long *llongval
); 
 799 robj 
*tryObjectEncoding(robj 
*o
); 
 800 robj 
*getDecodedObject(robj 
*o
); 
 801 size_t stringObjectLen(robj 
*o
); 
 802 robj 
*createStringObjectFromLongLong(long long value
); 
 803 robj 
*createStringObjectFromLongDouble(long double value
); 
 804 robj 
*createListObject(void); 
 805 robj 
*createZiplistObject(void); 
 806 robj 
*createSetObject(void); 
 807 robj 
*createIntsetObject(void); 
 808 robj 
*createHashObject(void); 
 809 robj 
*createZsetObject(void); 
 810 robj 
*createZsetZiplistObject(void); 
 811 int getLongFromObjectOrReply(redisClient 
*c
, robj 
*o
, long *target
, const char *msg
); 
 812 int checkType(redisClient 
*c
, robj 
*o
, int type
); 
 813 int getLongLongFromObjectOrReply(redisClient 
*c
, robj 
*o
, long long *target
, const char *msg
); 
 814 int getDoubleFromObjectOrReply(redisClient 
*c
, robj 
*o
, double *target
, const char *msg
); 
 815 int getLongLongFromObject(robj 
*o
, long long *target
); 
 816 int getLongDoubleFromObject(robj 
*o
, long double *target
); 
 817 int getLongDoubleFromObjectOrReply(redisClient 
*c
, robj 
*o
, long double *target
, const char *msg
); 
 818 char *strEncoding(int encoding
); 
 819 int compareStringObjects(robj 
*a
, robj 
*b
); 
 820 int equalStringObjects(robj 
*a
, robj 
*b
); 
 821 unsigned long estimateObjectIdleTime(robj 
*o
); 
 823 /* Synchronous I/O with timeout */ 
 824 ssize_t 
syncWrite(int fd
, char *ptr
, ssize_t size
, long long timeout
); 
 825 ssize_t 
syncRead(int fd
, char *ptr
, ssize_t size
, long long timeout
); 
 826 ssize_t 
syncReadLine(int fd
, char *ptr
, ssize_t size
, long long timeout
); 
 829 void replicationFeedSlaves(list 
*slaves
, int dictid
, robj 
**argv
, int argc
); 
 830 void replicationFeedMonitors(redisClient 
*c
, list 
*monitors
, int dictid
, robj 
**argv
, int argc
); 
 831 void updateSlavesWaitingBgsave(int bgsaveerr
); 
 832 void replicationCron(void); 
 834 /* Generic persistence functions */ 
 835 void startLoading(FILE *fp
); 
 836 void loadingProgress(off_t pos
); 
 837 void stopLoading(void); 
 839 /* RDB persistence */ 
 842 /* AOF persistence */ 
 843 void flushAppendOnlyFile(int force
); 
 844 void feedAppendOnlyFile(struct redisCommand 
*cmd
, int dictid
, robj 
**argv
, int argc
); 
 845 void aofRemoveTempFile(pid_t childpid
); 
 846 int rewriteAppendOnlyFileBackground(void); 
 847 int loadAppendOnlyFile(char *filename
); 
 848 void stopAppendOnly(void); 
 849 int startAppendOnly(void); 
 850 void backgroundRewriteDoneHandler(int exitcode
, int bysignal
); 
 851 void aofRewriteBufferReset(void); 
 852 unsigned long aofRewriteBufferSize(void); 
 854 /* Sorted sets data type */ 
 856 /* Struct to hold a inclusive/exclusive range spec. */ 
 859     int minex
, maxex
; /* are min or max exclusive? */ 
 862 zskiplist 
*zslCreate(void); 
 863 void zslFree(zskiplist 
*zsl
); 
 864 zskiplistNode 
*zslInsert(zskiplist 
*zsl
, double score
, robj 
*obj
); 
 865 unsigned char *zzlInsert(unsigned char *zl
, robj 
*ele
, double score
); 
 866 int zslDelete(zskiplist 
*zsl
, double score
, robj 
*obj
); 
 867 zskiplistNode 
*zslFirstInRange(zskiplist 
*zsl
, zrangespec range
); 
 868 double zzlGetScore(unsigned char *sptr
); 
 869 void zzlNext(unsigned char *zl
, unsigned char **eptr
, unsigned char **sptr
); 
 870 void zzlPrev(unsigned char *zl
, unsigned char **eptr
, unsigned char **sptr
); 
 871 unsigned int zsetLength(robj 
*zobj
); 
 872 void zsetConvert(robj 
*zobj
, int encoding
); 
 875 int freeMemoryIfNeeded(void); 
 876 int processCommand(redisClient 
*c
); 
 877 void setupSignalHandlers(void); 
 878 struct redisCommand 
*lookupCommand(sds name
); 
 879 struct redisCommand 
*lookupCommandByCString(char *s
); 
 880 void call(redisClient 
*c
, int flags
); 
 881 void propagate(struct redisCommand 
*cmd
, int dbid
, robj 
**argv
, int argc
, int flags
); 
 882 void alsoPropagate(struct redisCommand 
*cmd
, int dbid
, robj 
**argv
, int argc
, int target
); 
 883 int prepareForShutdown(); 
 884 void redisLog(int level
, const char *fmt
, ...); 
 885 void redisLogRaw(int level
, const char *msg
); 
 886 void redisLogFromHandler(int level
, const char *msg
); 
 888 void updateDictResizePolicy(void); 
 889 int htNeedsResize(dict 
*dict
); 
 890 void oom(const char *msg
); 
 891 void populateCommandTable(void); 
 892 void resetCommandTableStats(void); 
 895 robj 
*setTypeCreate(robj 
*value
); 
 896 int setTypeAdd(robj 
*subject
, robj 
*value
); 
 897 int setTypeRemove(robj 
*subject
, robj 
*value
); 
 898 int setTypeIsMember(robj 
*subject
, robj 
*value
); 
 899 setTypeIterator 
*setTypeInitIterator(robj 
*subject
); 
 900 void setTypeReleaseIterator(setTypeIterator 
*si
); 
 901 int setTypeNext(setTypeIterator 
*si
, robj 
**objele
, int64_t *llele
); 
 902 robj 
*setTypeNextObject(setTypeIterator 
*si
); 
 903 int setTypeRandomElement(robj 
*setobj
, robj 
**objele
, int64_t *llele
); 
 904 unsigned long setTypeSize(robj 
*subject
); 
 905 void setTypeConvert(robj 
*subject
, int enc
); 
 908 void hashTypeConvert(robj 
*o
, int enc
); 
 909 void hashTypeTryConversion(robj 
*subject
, robj 
**argv
, int start
, int end
); 
 910 void hashTypeTryObjectEncoding(robj 
*subject
, robj 
**o1
, robj 
**o2
); 
 911 robj 
*hashTypeGetObject(robj 
*o
, robj 
*key
); 
 912 int hashTypeExists(robj 
*o
, robj 
*key
); 
 913 int hashTypeSet(robj 
*o
, robj 
*key
, robj 
*value
); 
 914 int hashTypeDelete(robj 
*o
, robj 
*key
); 
 915 unsigned long hashTypeLength(robj 
*o
); 
 916 hashTypeIterator 
*hashTypeInitIterator(robj 
*subject
); 
 917 void hashTypeReleaseIterator(hashTypeIterator 
*hi
); 
 918 int hashTypeNext(hashTypeIterator 
*hi
); 
 919 void hashTypeCurrentFromZiplist(hashTypeIterator 
*hi
, int what
, 
 920                                 unsigned char **vstr
, 
 923 void hashTypeCurrentFromHashTable(hashTypeIterator 
*hi
, int what
, robj 
**dst
); 
 924 robj 
*hashTypeCurrentObject(hashTypeIterator 
*hi
, int what
); 
 925 robj 
*hashTypeLookupWriteOrCreate(redisClient 
*c
, robj 
*key
); 
 928 int pubsubUnsubscribeAllChannels(redisClient 
*c
, int notify
); 
 929 int pubsubUnsubscribeAllPatterns(redisClient 
*c
, int notify
); 
 930 void freePubsubPattern(void *p
); 
 931 int listMatchPubsubPattern(void *a
, void *b
); 
 932 int pubsubPublishMessage(robj 
*channel
, robj 
*message
); 
 935 void loadServerConfig(char *filename
, char *options
); 
 936 void appendServerSaveParams(time_t seconds
, int changes
); 
 937 void resetServerSaveParams(); 
 939 /* db.c -- Keyspace access API */ 
 940 int removeExpire(redisDb 
*db
, robj 
*key
); 
 941 void propagateExpire(redisDb 
*db
, robj 
*key
); 
 942 int expireIfNeeded(redisDb 
*db
, robj 
*key
); 
 943 long long getExpire(redisDb 
*db
, robj 
*key
); 
 944 void setExpire(redisDb 
*db
, robj 
*key
, long long when
); 
 945 robj 
*lookupKey(redisDb 
*db
, robj 
*key
); 
 946 robj 
*lookupKeyRead(redisDb 
*db
, robj 
*key
); 
 947 robj 
*lookupKeyWrite(redisDb 
*db
, robj 
*key
); 
 948 robj 
*lookupKeyReadOrReply(redisClient 
*c
, robj 
*key
, robj 
*reply
); 
 949 robj 
*lookupKeyWriteOrReply(redisClient 
*c
, robj 
*key
, robj 
*reply
); 
 950 void dbAdd(redisDb 
*db
, robj 
*key
, robj 
*val
); 
 951 void dbOverwrite(redisDb 
*db
, robj 
*key
, robj 
*val
); 
 952 void setKey(redisDb 
*db
, robj 
*key
, robj 
*val
); 
 953 int dbExists(redisDb 
*db
, robj 
*key
); 
 954 robj 
*dbRandomKey(redisDb 
*db
); 
 955 int dbDelete(redisDb 
*db
, robj 
*key
); 
 957 int selectDb(redisClient 
*c
, int id
); 
 958 void signalModifiedKey(redisDb 
*db
, robj 
*key
); 
 959 void signalFlushedDb(int dbid
); 
 960 unsigned int GetKeysInSlot(unsigned int hashslot
, robj 
**keys
, unsigned int count
); 
 962 /* API to get key arguments from commands */ 
 963 #define REDIS_GETKEYS_ALL 0 
 964 #define REDIS_GETKEYS_PRELOAD 1 
 965 int *getKeysFromCommand(struct redisCommand 
*cmd
, robj 
**argv
, int argc
, int *numkeys
, int flags
); 
 966 void getKeysFreeResult(int *result
); 
 967 int *noPreloadGetKeys(struct redisCommand 
*cmd
,robj 
**argv
, int argc
, int *numkeys
, int flags
); 
 968 int *renameGetKeys(struct redisCommand 
*cmd
,robj 
**argv
, int argc
, int *numkeys
, int flags
); 
 969 int *zunionInterGetKeys(struct redisCommand 
*cmd
,robj 
**argv
, int argc
, int *numkeys
, int flags
); 
 972 void scriptingInit(void); 
 975 char *redisGitSHA1(void); 
 976 char *redisGitDirty(void); 
 978 /* Commands prototypes */ 
 979 void authCommand(redisClient 
*c
); 
 980 void pingCommand(redisClient 
*c
); 
 981 void echoCommand(redisClient 
*c
); 
 982 void setCommand(redisClient 
*c
); 
 983 void setnxCommand(redisClient 
*c
); 
 984 void setexCommand(redisClient 
*c
); 
 985 void psetexCommand(redisClient 
*c
); 
 986 void getCommand(redisClient 
*c
); 
 987 void delCommand(redisClient 
*c
); 
 988 void existsCommand(redisClient 
*c
); 
 989 void setbitCommand(redisClient 
*c
); 
 990 void getbitCommand(redisClient 
*c
); 
 991 void setrangeCommand(redisClient 
*c
); 
 992 void getrangeCommand(redisClient 
*c
); 
 993 void incrCommand(redisClient 
*c
); 
 994 void decrCommand(redisClient 
*c
); 
 995 void incrbyCommand(redisClient 
*c
); 
 996 void decrbyCommand(redisClient 
*c
); 
 997 void incrbyfloatCommand(redisClient 
*c
); 
 998 void selectCommand(redisClient 
*c
); 
 999 void randomkeyCommand(redisClient 
*c
); 
1000 void keysCommand(redisClient 
*c
); 
1001 void dbsizeCommand(redisClient 
*c
); 
1002 void lastsaveCommand(redisClient 
*c
); 
1003 void saveCommand(redisClient 
*c
); 
1004 void bgsaveCommand(redisClient 
*c
); 
1005 void bgrewriteaofCommand(redisClient 
*c
); 
1006 void shutdownCommand(redisClient 
*c
); 
1007 void moveCommand(redisClient 
*c
); 
1008 void renameCommand(redisClient 
*c
); 
1009 void renamenxCommand(redisClient 
*c
); 
1010 void lpushCommand(redisClient 
*c
); 
1011 void rpushCommand(redisClient 
*c
); 
1012 void lpushxCommand(redisClient 
*c
); 
1013 void rpushxCommand(redisClient 
*c
); 
1014 void linsertCommand(redisClient 
*c
); 
1015 void lpopCommand(redisClient 
*c
); 
1016 void rpopCommand(redisClient 
*c
); 
1017 void llenCommand(redisClient 
*c
); 
1018 void lindexCommand(redisClient 
*c
); 
1019 void lrangeCommand(redisClient 
*c
); 
1020 void ltrimCommand(redisClient 
*c
); 
1021 void typeCommand(redisClient 
*c
); 
1022 void lsetCommand(redisClient 
*c
); 
1023 void saddCommand(redisClient 
*c
); 
1024 void sremCommand(redisClient 
*c
); 
1025 void smoveCommand(redisClient 
*c
); 
1026 void sismemberCommand(redisClient 
*c
); 
1027 void scardCommand(redisClient 
*c
); 
1028 void spopCommand(redisClient 
*c
); 
1029 void srandmemberCommand(redisClient 
*c
); 
1030 void sinterCommand(redisClient 
*c
); 
1031 void sinterstoreCommand(redisClient 
*c
); 
1032 void sunionCommand(redisClient 
*c
); 
1033 void sunionstoreCommand(redisClient 
*c
); 
1034 void sdiffCommand(redisClient 
*c
); 
1035 void sdiffstoreCommand(redisClient 
*c
); 
1036 void syncCommand(redisClient 
*c
); 
1037 void flushdbCommand(redisClient 
*c
); 
1038 void flushallCommand(redisClient 
*c
); 
1039 void sortCommand(redisClient 
*c
); 
1040 void lremCommand(redisClient 
*c
); 
1041 void rpoplpushCommand(redisClient 
*c
); 
1042 void infoCommand(redisClient 
*c
); 
1043 void mgetCommand(redisClient 
*c
); 
1044 void monitorCommand(redisClient 
*c
); 
1045 void expireCommand(redisClient 
*c
); 
1046 void expireatCommand(redisClient 
*c
); 
1047 void pexpireCommand(redisClient 
*c
); 
1048 void pexpireatCommand(redisClient 
*c
); 
1049 void getsetCommand(redisClient 
*c
); 
1050 void ttlCommand(redisClient 
*c
); 
1051 void pttlCommand(redisClient 
*c
); 
1052 void persistCommand(redisClient 
*c
); 
1053 void slaveofCommand(redisClient 
*c
); 
1054 void debugCommand(redisClient 
*c
); 
1055 void msetCommand(redisClient 
*c
); 
1056 void msetnxCommand(redisClient 
*c
); 
1057 void zaddCommand(redisClient 
*c
); 
1058 void zincrbyCommand(redisClient 
*c
); 
1059 void zrangeCommand(redisClient 
*c
); 
1060 void zrangebyscoreCommand(redisClient 
*c
); 
1061 void zrevrangebyscoreCommand(redisClient 
*c
); 
1062 void zcountCommand(redisClient 
*c
); 
1063 void zrevrangeCommand(redisClient 
*c
); 
1064 void zcardCommand(redisClient 
*c
); 
1065 void zremCommand(redisClient 
*c
); 
1066 void zscoreCommand(redisClient 
*c
); 
1067 void zremrangebyscoreCommand(redisClient 
*c
); 
1068 void multiCommand(redisClient 
*c
); 
1069 void execCommand(redisClient 
*c
); 
1070 void discardCommand(redisClient 
*c
); 
1071 void blpopCommand(redisClient 
*c
); 
1072 void brpopCommand(redisClient 
*c
); 
1073 void brpoplpushCommand(redisClient 
*c
); 
1074 void appendCommand(redisClient 
*c
); 
1075 void strlenCommand(redisClient 
*c
); 
1076 void zrankCommand(redisClient 
*c
); 
1077 void zrevrankCommand(redisClient 
*c
); 
1078 void hsetCommand(redisClient 
*c
); 
1079 void hsetnxCommand(redisClient 
*c
); 
1080 void hgetCommand(redisClient 
*c
); 
1081 void hmsetCommand(redisClient 
*c
); 
1082 void hmgetCommand(redisClient 
*c
); 
1083 void hdelCommand(redisClient 
*c
); 
1084 void hlenCommand(redisClient 
*c
); 
1085 void zremrangebyrankCommand(redisClient 
*c
); 
1086 void zunionstoreCommand(redisClient 
*c
); 
1087 void zinterstoreCommand(redisClient 
*c
); 
1088 void hkeysCommand(redisClient 
*c
); 
1089 void hvalsCommand(redisClient 
*c
); 
1090 void hgetallCommand(redisClient 
*c
); 
1091 void hexistsCommand(redisClient 
*c
); 
1092 void configCommand(redisClient 
*c
); 
1093 void hincrbyCommand(redisClient 
*c
); 
1094 void hincrbyfloatCommand(redisClient 
*c
); 
1095 void subscribeCommand(redisClient 
*c
); 
1096 void unsubscribeCommand(redisClient 
*c
); 
1097 void psubscribeCommand(redisClient 
*c
); 
1098 void punsubscribeCommand(redisClient 
*c
); 
1099 void publishCommand(redisClient 
*c
); 
1100 void watchCommand(redisClient 
*c
); 
1101 void unwatchCommand(redisClient 
*c
); 
1102 void restoreCommand(redisClient 
*c
); 
1103 void migrateCommand(redisClient 
*c
); 
1104 void dumpCommand(redisClient 
*c
); 
1105 void objectCommand(redisClient 
*c
); 
1106 void clientCommand(redisClient 
*c
); 
1107 void evalCommand(redisClient 
*c
); 
1108 void evalShaCommand(redisClient 
*c
); 
1109 void scriptCommand(redisClient 
*c
); 
1110 void timeCommand(redisClient 
*c
); 
1111 void bitopCommand(redisClient 
*c
); 
1112 void bitcountCommand(redisClient 
*c
); 
1114 #if defined(__GNUC__) 
1115 void *calloc(size_t count
, size_t size
) __attribute__ ((deprecated
)); 
1116 void free(void *ptr
) __attribute__ ((deprecated
)); 
1117 void *malloc(size_t size
) __attribute__ ((deprecated
)); 
1118 void *realloc(void *ptr
, size_t size
) __attribute__ ((deprecated
)); 
1121 /* Debugging stuff */ 
1122 void _redisAssertWithInfo(redisClient 
*c
, robj 
*o
, char *estr
, char *file
, int line
); 
1123 void _redisAssert(char *estr
, char *file
, int line
); 
1124 void _redisPanic(char *msg
, char *file
, int line
); 
1125 void bugReportStart(void); 
1126 void redisLogObjectDebugInfo(robj 
*o
); 
1127 void sigsegvHandler(int sig
, siginfo_t 
*info
, void *secret
); 
1128 sds 
genRedisInfoString(char *section
); 
1129 void enableWatchdog(int period
); 
1130 void disableWatchdog(void); 
1131 void watchdogScheduleSignal(int period
); 
1132 void redisLogHexDump(int level
, char *descr
, void *value
, size_t len
);