]>
Commit | Line | Data |
---|---|---|
e2641e09 | 1 | /* |
2 | * Copyright (c) 2009-2010, Salvatore Sanfilippo <antirez at gmail dot com> | |
3 | * All rights reserved. | |
4 | * | |
5 | * Redistribution and use in source and binary forms, with or without | |
6 | * modification, are permitted provided that the following conditions are met: | |
7 | * | |
8 | * * Redistributions of source code must retain the above copyright notice, | |
9 | * this list of conditions and the following disclaimer. | |
10 | * * Redistributions in binary form must reproduce the above copyright | |
11 | * notice, this list of conditions and the following disclaimer in the | |
12 | * documentation and/or other materials provided with the distribution. | |
13 | * * Neither the name of Redis nor the names of its contributors may be used | |
14 | * to endorse or promote products derived from this software without | |
15 | * specific prior written permission. | |
16 | * | |
17 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | |
18 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
19 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
20 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE | |
21 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
22 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | |
23 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | |
24 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | |
25 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | |
26 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
27 | * POSSIBILITY OF SUCH DAMAGE. | |
28 | */ | |
29 | ||
30 | #include "redis.h" | |
daa70b17 | 31 | #include "slowlog.h" |
8f61a72f | 32 | #include "bio.h" |
e2641e09 | 33 | |
34 | #ifdef HAVE_BACKTRACE | |
35 | #include <execinfo.h> | |
36 | #include <ucontext.h> | |
37 | #endif /* HAVE_BACKTRACE */ | |
38 | ||
39 | #include <time.h> | |
40 | #include <signal.h> | |
41 | #include <sys/wait.h> | |
42 | #include <errno.h> | |
43 | #include <assert.h> | |
44 | #include <ctype.h> | |
45 | #include <stdarg.h> | |
e2641e09 | 46 | #include <arpa/inet.h> |
47 | #include <sys/stat.h> | |
48 | #include <fcntl.h> | |
49 | #include <sys/time.h> | |
50 | #include <sys/resource.h> | |
51 | #include <sys/uio.h> | |
52 | #include <limits.h> | |
53 | #include <float.h> | |
54 | #include <math.h> | |
2b00385d | 55 | #include <sys/resource.h> |
e2641e09 | 56 | |
57 | /* Our shared "common" objects */ | |
58 | ||
59 | struct sharedObjectsStruct shared; | |
60 | ||
c74b7c77 | 61 | /* Global vars that are actually used as constants. The following double |
e2641e09 | 62 | * values are used for double on-disk serialization, and are initialized |
63 | * at runtime to avoid strange compiler optimizations. */ | |
64 | ||
65 | double R_Zero, R_PosInf, R_NegInf, R_Nan; | |
66 | ||
67 | /*================================= Globals ================================= */ | |
68 | ||
69 | /* Global vars */ | |
70 | struct redisServer server; /* server global state */ | |
71 | struct redisCommand *commandTable; | |
5d02b00f | 72 | |
7501c66f | 73 | /* Our command table. |
74 | * | |
75 | * Every entry is composed of the following fields: | |
76 | * | |
77 | * name: a string representing the command name. | |
78 | * function: pointer to the C function implementing the command. | |
79 | * arity: number of arguments, it is possible to use -N to say >= N | |
80 | * sflags: command flags as string. See below for a table of flags. | |
81 | * flags: flags as bitmask. Computed by Redis using the 'sflags' field. | |
82 | * get_keys_proc: an optional function to get key arguments from a command. | |
83 | * This is only used when the following three fields are not | |
84 | * enough to specify what arguments are keys. | |
85 | * first_key_index: first argument that is a key | |
86 | * last_key_index: last argument that is a key | |
87 | * key_step: step to get all the keys from first to last argument. For instance | |
88 | * in MSET the step is two since arguments are key,val,key,val,... | |
89 | * microseconds: microseconds of total execution time for this command. | |
90 | * calls: total number of calls of this command. | |
91 | * | |
92 | * The flags, microseconds and calls fields are computed by Redis and should | |
93 | * always be set to zero. | |
94 | * | |
95 | * Command flags are expressed using strings where every character represents | |
96 | * a flag. Later the populateCommandTable() function will take care of | |
97 | * populating the real 'flags' field using this characters. | |
5d02b00f | 98 | * |
99 | * This is the meaning of the flags: | |
100 | * | |
101 | * w: write command (may modify the key space). | |
102 | * r: read command (will never modify the key space). | |
103 | * m: may increase memory usage once called. Don't allow if out of memory. | |
104 | * a: admin command, like SAVE or SHUTDOWN. | |
105 | * p: Pub/Sub related command. | |
b60ed6e8 | 106 | * f: force replication of this command, regarless of server.dirty. |
107 | * s: command not allowed in scripts. | |
7e14a208 | 108 | * R: random command. Command is not deterministic, that is, the same command |
b60ed6e8 | 109 | * with the same arguments, with the same key space, may have different |
110 | * results. For instance SPOP and RANDOMKEY are two random commands. */ | |
d7ed7fd2 | 111 | struct redisCommand redisCommandTable[] = { |
5d02b00f | 112 | {"get",getCommand,2,"r",0,NULL,1,1,1,0,0}, |
113 | {"set",setCommand,3,"wm",0,noPreloadGetKeys,1,1,1,0,0}, | |
114 | {"setnx",setnxCommand,3,"wm",0,noPreloadGetKeys,1,1,1,0,0}, | |
39da5d1f | 115 | {"setex",setexCommand,4,"wm",0,noPreloadGetKeys,1,1,1,0,0}, |
116 | {"psetex",psetexCommand,4,"wm",0,noPreloadGetKeys,1,1,1,0,0}, | |
5d02b00f | 117 | {"append",appendCommand,3,"wm",0,NULL,1,1,1,0,0}, |
118 | {"strlen",strlenCommand,2,"r",0,NULL,1,1,1,0,0}, | |
119 | {"del",delCommand,-2,"w",0,noPreloadGetKeys,1,-1,1,0,0}, | |
120 | {"exists",existsCommand,2,"r",0,NULL,1,1,1,0,0}, | |
121 | {"setbit",setbitCommand,4,"wm",0,NULL,1,1,1,0,0}, | |
122 | {"getbit",getbitCommand,3,"r",0,NULL,1,1,1,0,0}, | |
123 | {"setrange",setrangeCommand,4,"wm",0,NULL,1,1,1,0,0}, | |
124 | {"getrange",getrangeCommand,4,"r",0,NULL,1,1,1,0,0}, | |
125 | {"substr",getrangeCommand,4,"r",0,NULL,1,1,1,0,0}, | |
126 | {"incr",incrCommand,2,"wm",0,NULL,1,1,1,0,0}, | |
127 | {"decr",decrCommand,2,"wm",0,NULL,1,1,1,0,0}, | |
128 | {"mget",mgetCommand,-2,"r",0,NULL,1,-1,1,0,0}, | |
129 | {"rpush",rpushCommand,-3,"wm",0,NULL,1,1,1,0,0}, | |
130 | {"lpush",lpushCommand,-3,"wm",0,NULL,1,1,1,0,0}, | |
131 | {"rpushx",rpushxCommand,3,"wm",0,NULL,1,1,1,0,0}, | |
132 | {"lpushx",lpushxCommand,3,"wm",0,NULL,1,1,1,0,0}, | |
133 | {"linsert",linsertCommand,5,"wm",0,NULL,1,1,1,0,0}, | |
134 | {"rpop",rpopCommand,2,"w",0,NULL,1,1,1,0,0}, | |
135 | {"lpop",lpopCommand,2,"w",0,NULL,1,1,1,0,0}, | |
e41677b4 | 136 | {"brpop",brpopCommand,-3,"ws",0,NULL,1,1,1,0,0}, |
137 | {"brpoplpush",brpoplpushCommand,4,"wms",0,NULL,1,2,1,0,0}, | |
138 | {"blpop",blpopCommand,-3,"ws",0,NULL,1,-2,1,0,0}, | |
5d02b00f | 139 | {"llen",llenCommand,2,"r",0,NULL,1,1,1,0,0}, |
140 | {"lindex",lindexCommand,3,"r",0,NULL,1,1,1,0,0}, | |
141 | {"lset",lsetCommand,4,"wm",0,NULL,1,1,1,0,0}, | |
142 | {"lrange",lrangeCommand,4,"r",0,NULL,1,1,1,0,0}, | |
143 | {"ltrim",ltrimCommand,4,"w",0,NULL,1,1,1,0,0}, | |
144 | {"lrem",lremCommand,4,"w",0,NULL,1,1,1,0,0}, | |
145 | {"rpoplpush",rpoplpushCommand,3,"wm",0,NULL,1,2,1,0,0}, | |
146 | {"sadd",saddCommand,-3,"wm",0,NULL,1,1,1,0,0}, | |
147 | {"srem",sremCommand,-3,"w",0,NULL,1,1,1,0,0}, | |
148 | {"smove",smoveCommand,4,"w",0,NULL,1,2,1,0,0}, | |
149 | {"sismember",sismemberCommand,3,"r",0,NULL,1,1,1,0,0}, | |
150 | {"scard",scardCommand,2,"r",0,NULL,1,1,1,0,0}, | |
15ef6053 | 151 | {"spop",spopCommand,2,"wRs",0,NULL,1,1,1,0,0}, |
b60ed6e8 | 152 | {"srandmember",srandmemberCommand,2,"rR",0,NULL,1,1,1,0,0}, |
5d02b00f | 153 | {"sinter",sinterCommand,-2,"r",0,NULL,1,-1,1,0,0}, |
1bcfa0f6 | 154 | {"sinterstore",sinterstoreCommand,-3,"wm",0,NULL,1,-1,1,0,0}, |
5d02b00f | 155 | {"sunion",sunionCommand,-2,"r",0,NULL,1,-1,1,0,0}, |
1bcfa0f6 | 156 | {"sunionstore",sunionstoreCommand,-3,"wm",0,NULL,1,-1,1,0,0}, |
5d02b00f | 157 | {"sdiff",sdiffCommand,-2,"r",0,NULL,1,-1,1,0,0}, |
1bcfa0f6 | 158 | {"sdiffstore",sdiffstoreCommand,-3,"wm",0,NULL,1,-1,1,0,0}, |
5d02b00f | 159 | {"smembers",sinterCommand,2,"r",0,NULL,1,1,1,0,0}, |
160 | {"zadd",zaddCommand,-4,"wm",0,NULL,1,1,1,0,0}, | |
161 | {"zincrby",zincrbyCommand,4,"wm",0,NULL,1,1,1,0,0}, | |
162 | {"zrem",zremCommand,-3,"w",0,NULL,1,1,1,0,0}, | |
163 | {"zremrangebyscore",zremrangebyscoreCommand,4,"w",0,NULL,1,1,1,0,0}, | |
164 | {"zremrangebyrank",zremrangebyrankCommand,4,"w",0,NULL,1,1,1,0,0}, | |
165 | {"zunionstore",zunionstoreCommand,-4,"wm",0,zunionInterGetKeys,0,0,0,0,0}, | |
166 | {"zinterstore",zinterstoreCommand,-4,"wm",0,zunionInterGetKeys,0,0,0,0,0}, | |
167 | {"zrange",zrangeCommand,-4,"r",0,NULL,1,1,1,0,0}, | |
168 | {"zrangebyscore",zrangebyscoreCommand,-4,"r",0,NULL,1,1,1,0,0}, | |
169 | {"zrevrangebyscore",zrevrangebyscoreCommand,-4,"r",0,NULL,1,1,1,0,0}, | |
170 | {"zcount",zcountCommand,4,"r",0,NULL,1,1,1,0,0}, | |
171 | {"zrevrange",zrevrangeCommand,-4,"r",0,NULL,1,1,1,0,0}, | |
172 | {"zcard",zcardCommand,2,"r",0,NULL,1,1,1,0,0}, | |
173 | {"zscore",zscoreCommand,3,"r",0,NULL,1,1,1,0,0}, | |
174 | {"zrank",zrankCommand,3,"r",0,NULL,1,1,1,0,0}, | |
175 | {"zrevrank",zrevrankCommand,3,"r",0,NULL,1,1,1,0,0}, | |
176 | {"hset",hsetCommand,4,"wm",0,NULL,1,1,1,0,0}, | |
177 | {"hsetnx",hsetnxCommand,4,"wm",0,NULL,1,1,1,0,0}, | |
178 | {"hget",hgetCommand,3,"r",0,NULL,1,1,1,0,0}, | |
179 | {"hmset",hmsetCommand,-4,"wm",0,NULL,1,1,1,0,0}, | |
180 | {"hmget",hmgetCommand,-3,"r",0,NULL,1,1,1,0,0}, | |
181 | {"hincrby",hincrbyCommand,4,"wm",0,NULL,1,1,1,0,0}, | |
68bfe993 | 182 | {"hincrbyfloat",hincrbyfloatCommand,4,"wm",0,NULL,1,1,1,0,0}, |
5d02b00f | 183 | {"hdel",hdelCommand,-3,"w",0,NULL,1,1,1,0,0}, |
184 | {"hlen",hlenCommand,2,"r",0,NULL,1,1,1,0,0}, | |
185 | {"hkeys",hkeysCommand,2,"r",0,NULL,1,1,1,0,0}, | |
186 | {"hvals",hvalsCommand,2,"r",0,NULL,1,1,1,0,0}, | |
187 | {"hgetall",hgetallCommand,2,"r",0,NULL,1,1,1,0,0}, | |
188 | {"hexists",hexistsCommand,3,"r",0,NULL,1,1,1,0,0}, | |
189 | {"incrby",incrbyCommand,3,"wm",0,NULL,1,1,1,0,0}, | |
190 | {"decrby",decrbyCommand,3,"wm",0,NULL,1,1,1,0,0}, | |
5574b53e | 191 | {"incrbyfloat",incrbyfloatCommand,3,"wm",0,NULL,1,1,1,0,0}, |
5d02b00f | 192 | {"getset",getsetCommand,3,"wm",0,NULL,1,1,1,0,0}, |
193 | {"mset",msetCommand,-3,"wm",0,NULL,1,-1,2,0,0}, | |
194 | {"msetnx",msetnxCommand,-3,"wm",0,NULL,1,-1,2,0,0}, | |
b60ed6e8 | 195 | {"randomkey",randomkeyCommand,1,"rR",0,NULL,0,0,0,0,0}, |
5d02b00f | 196 | {"select",selectCommand,2,"r",0,NULL,0,0,0,0,0}, |
197 | {"move",moveCommand,3,"w",0,NULL,1,1,1,0,0}, | |
198 | {"rename",renameCommand,3,"w",0,renameGetKeys,1,2,1,0,0}, | |
199 | {"renamenx",renamenxCommand,3,"w",0,renameGetKeys,1,2,1,0,0}, | |
12d293ca | 200 | {"expire",expireCommand,3,"w",0,NULL,1,1,1,0,0}, |
201 | {"expireat",expireatCommand,3,"w",0,NULL,1,1,1,0,0}, | |
202 | {"pexpire",pexpireCommand,3,"w",0,NULL,1,1,1,0,0}, | |
203 | {"pexpireat",pexpireatCommand,3,"w",0,NULL,1,1,1,0,0}, | |
5d02b00f | 204 | {"keys",keysCommand,2,"r",0,NULL,0,0,0,0,0}, |
205 | {"dbsize",dbsizeCommand,1,"r",0,NULL,0,0,0,0,0}, | |
e41677b4 | 206 | {"auth",authCommand,2,"rs",0,NULL,0,0,0,0,0}, |
5d02b00f | 207 | {"ping",pingCommand,1,"r",0,NULL,0,0,0,0,0}, |
208 | {"echo",echoCommand,2,"r",0,NULL,0,0,0,0,0}, | |
e41677b4 | 209 | {"save",saveCommand,1,"ars",0,NULL,0,0,0,0,0}, |
5d02b00f | 210 | {"bgsave",bgsaveCommand,1,"ar",0,NULL,0,0,0,0,0}, |
211 | {"bgrewriteaof",bgrewriteaofCommand,1,"ar",0,NULL,0,0,0,0,0}, | |
4ab8695d | 212 | {"shutdown",shutdownCommand,-1,"ar",0,NULL,0,0,0,0,0}, |
5d02b00f | 213 | {"lastsave",lastsaveCommand,1,"r",0,NULL,0,0,0,0,0}, |
214 | {"type",typeCommand,2,"r",0,NULL,1,1,1,0,0}, | |
b60ed6e8 | 215 | {"multi",multiCommand,1,"rs",0,NULL,0,0,0,0,0}, |
216 | {"exec",execCommand,1,"wms",0,NULL,0,0,0,0,0}, | |
217 | {"discard",discardCommand,1,"rs",0,NULL,0,0,0,0,0}, | |
218 | {"sync",syncCommand,1,"ars",0,NULL,0,0,0,0,0}, | |
5d02b00f | 219 | {"flushdb",flushdbCommand,1,"w",0,NULL,0,0,0,0,0}, |
220 | {"flushall",flushallCommand,1,"w",0,NULL,0,0,0,0,0}, | |
221 | {"sort",sortCommand,-2,"wm",0,NULL,1,1,1,0,0}, | |
222 | {"info",infoCommand,-1,"r",0,NULL,0,0,0,0,0}, | |
b60ed6e8 | 223 | {"monitor",monitorCommand,1,"ars",0,NULL,0,0,0,0,0}, |
12d293ca | 224 | {"ttl",ttlCommand,2,"r",0,NULL,1,1,1,0,0}, |
225 | {"pttl",pttlCommand,2,"r",0,NULL,1,1,1,0,0}, | |
5d02b00f | 226 | {"persist",persistCommand,2,"w",0,NULL,1,1,1,0,0}, |
b60ed6e8 | 227 | {"slaveof",slaveofCommand,3,"aws",0,NULL,0,0,0,0,0}, |
e41677b4 | 228 | {"debug",debugCommand,-2,"aws",0,NULL,0,0,0,0,0}, |
5d02b00f | 229 | {"config",configCommand,-2,"ar",0,NULL,0,0,0,0,0}, |
b60ed6e8 | 230 | {"subscribe",subscribeCommand,-2,"rps",0,NULL,0,0,0,0,0}, |
231 | {"unsubscribe",unsubscribeCommand,-1,"rps",0,NULL,0,0,0,0,0}, | |
232 | {"psubscribe",psubscribeCommand,-2,"rps",0,NULL,0,0,0,0,0}, | |
233 | {"punsubscribe",punsubscribeCommand,-1,"rps",0,NULL,0,0,0,0,0}, | |
5d02b00f | 234 | {"publish",publishCommand,3,"rpf",0,NULL,0,0,0,0,0}, |
b60ed6e8 | 235 | {"watch",watchCommand,-2,"rs",0,noPreloadGetKeys,1,-1,1,0,0}, |
236 | {"unwatch",unwatchCommand,1,"rs",0,NULL,0,0,0,0,0}, | |
5d02b00f | 237 | {"cluster",clusterCommand,-2,"ar",0,NULL,0,0,0,0,0}, |
7afc3a96 | 238 | {"restore",restoreCommand,4,"awm",0,NULL,1,1,1,0,0}, |
5d02b00f | 239 | {"migrate",migrateCommand,6,"aw",0,NULL,0,0,0,0,0}, |
6856c7b4 | 240 | {"asking",askingCommand,1,"r",0,NULL,0,0,0,0,0}, |
1bcfa0f6 | 241 | {"dump",dumpCommand,2,"ar",0,NULL,1,1,1,0,0}, |
242 | {"object",objectCommand,-2,"r",0,NULL,2,2,2,0,0}, | |
5d02b00f | 243 | {"client",clientCommand,-2,"ar",0,NULL,0,0,0,0,0}, |
b60ed6e8 | 244 | {"eval",evalCommand,-3,"wms",0,zunionInterGetKeys,0,0,0,0,0}, |
245 | {"evalsha",evalShaCommand,-3,"wms",0,zunionInterGetKeys,0,0,0,0,0}, | |
070e3945 | 246 | {"slowlog",slowlogCommand,-2,"r",0,NULL,0,0,0,0,0}, |
247 | {"script",scriptCommand,-2,"ras",0,NULL,0,0,0,0,0} | |
e2641e09 | 248 | }; |
249 | ||
250 | /*============================ Utility functions ============================ */ | |
251 | ||
9c104c68 | 252 | /* Low level logging. To use only for very big messages, otherwise |
253 | * redisLog() is to prefer. */ | |
254 | void redisLogRaw(int level, const char *msg) { | |
e1a586ee JH |
255 | const int syslogLevelMap[] = { LOG_DEBUG, LOG_INFO, LOG_NOTICE, LOG_WARNING }; |
256 | const char *c = ".-*#"; | |
257 | time_t now = time(NULL); | |
e2641e09 | 258 | FILE *fp; |
23072961 | 259 | char buf[64]; |
996d503d | 260 | int rawmode = (level & REDIS_LOG_RAW); |
23072961 | 261 | |
996d503d | 262 | level &= 0xff; /* clear flags */ |
23072961 | 263 | if (level < server.verbosity) return; |
e2641e09 | 264 | |
265 | fp = (server.logfile == NULL) ? stdout : fopen(server.logfile,"a"); | |
266 | if (!fp) return; | |
267 | ||
996d503d | 268 | if (rawmode) { |
269 | fprintf(fp,"%s",msg); | |
270 | } else { | |
271 | strftime(buf,sizeof(buf),"%d %b %H:%M:%S",localtime(&now)); | |
272 | fprintf(fp,"[%d] %s %c %s\n",(int)getpid(),buf,c[level],msg); | |
273 | } | |
e1a586ee JH |
274 | fflush(fp); |
275 | ||
e2641e09 | 276 | if (server.logfile) fclose(fp); |
e1a586ee JH |
277 | |
278 | if (server.syslog_enabled) syslog(syslogLevelMap[level], "%s", msg); | |
e2641e09 | 279 | } |
280 | ||
9c104c68 | 281 | /* Like redisLogRaw() but with printf-alike support. This is the funciton that |
282 | * is used across the code. The raw version is only used in order to dump | |
283 | * the INFO output on crash. */ | |
284 | void redisLog(int level, const char *fmt, ...) { | |
285 | va_list ap; | |
286 | char msg[REDIS_MAX_LOGMSG_LEN]; | |
287 | ||
996d503d | 288 | if ((level&0xff) < server.verbosity) return; |
9c104c68 | 289 | |
290 | va_start(ap, fmt); | |
291 | vsnprintf(msg, sizeof(msg), fmt, ap); | |
292 | va_end(ap); | |
293 | ||
294 | redisLogRaw(level,msg); | |
295 | } | |
296 | ||
e2641e09 | 297 | /* Redis generally does not try to recover from out of memory conditions |
298 | * when allocating objects or strings, it is not clear if it will be possible | |
299 | * to report this condition to the client since the networking layer itself | |
300 | * is based on heap allocation for send buffers, so we simply abort. | |
301 | * At least the code will be simpler to read... */ | |
302 | void oom(const char *msg) { | |
303 | redisLog(REDIS_WARNING, "%s: Out of memory\n",msg); | |
304 | sleep(1); | |
305 | abort(); | |
306 | } | |
307 | ||
d9cb288c | 308 | /* Return the UNIX time in microseconds */ |
309 | long long ustime(void) { | |
310 | struct timeval tv; | |
311 | long long ust; | |
312 | ||
313 | gettimeofday(&tv, NULL); | |
314 | ust = ((long long)tv.tv_sec)*1000000; | |
315 | ust += tv.tv_usec; | |
316 | return ust; | |
317 | } | |
318 | ||
2c2b2085 | 319 | /* Return the UNIX time in milliseconds */ |
320 | long long mstime(void) { | |
321 | return ustime()/1000; | |
322 | } | |
323 | ||
e2641e09 | 324 | /*====================== Hash table type implementation ==================== */ |
325 | ||
326 | /* This is an hash table type that uses the SDS dynamic strings libary as | |
327 | * keys and radis objects as values (objects can hold SDS strings, | |
328 | * lists, sets). */ | |
329 | ||
330 | void dictVanillaFree(void *privdata, void *val) | |
331 | { | |
332 | DICT_NOTUSED(privdata); | |
333 | zfree(val); | |
334 | } | |
335 | ||
336 | void dictListDestructor(void *privdata, void *val) | |
337 | { | |
338 | DICT_NOTUSED(privdata); | |
339 | listRelease((list*)val); | |
340 | } | |
341 | ||
342 | int dictSdsKeyCompare(void *privdata, const void *key1, | |
343 | const void *key2) | |
344 | { | |
345 | int l1,l2; | |
346 | DICT_NOTUSED(privdata); | |
347 | ||
348 | l1 = sdslen((sds)key1); | |
349 | l2 = sdslen((sds)key2); | |
350 | if (l1 != l2) return 0; | |
351 | return memcmp(key1, key2, l1) == 0; | |
352 | } | |
353 | ||
1b1f47c9 | 354 | /* A case insensitive version used for the command lookup table. */ |
355 | int dictSdsKeyCaseCompare(void *privdata, const void *key1, | |
356 | const void *key2) | |
357 | { | |
358 | DICT_NOTUSED(privdata); | |
359 | ||
360 | return strcasecmp(key1, key2) == 0; | |
361 | } | |
362 | ||
e2641e09 | 363 | void dictRedisObjectDestructor(void *privdata, void *val) |
364 | { | |
365 | DICT_NOTUSED(privdata); | |
366 | ||
367 | if (val == NULL) return; /* Values of swapped out keys as set to NULL */ | |
368 | decrRefCount(val); | |
369 | } | |
370 | ||
371 | void dictSdsDestructor(void *privdata, void *val) | |
372 | { | |
373 | DICT_NOTUSED(privdata); | |
374 | ||
375 | sdsfree(val); | |
376 | } | |
377 | ||
378 | int dictObjKeyCompare(void *privdata, const void *key1, | |
379 | const void *key2) | |
380 | { | |
381 | const robj *o1 = key1, *o2 = key2; | |
382 | return dictSdsKeyCompare(privdata,o1->ptr,o2->ptr); | |
383 | } | |
384 | ||
385 | unsigned int dictObjHash(const void *key) { | |
386 | const robj *o = key; | |
387 | return dictGenHashFunction(o->ptr, sdslen((sds)o->ptr)); | |
388 | } | |
389 | ||
390 | unsigned int dictSdsHash(const void *key) { | |
391 | return dictGenHashFunction((unsigned char*)key, sdslen((char*)key)); | |
392 | } | |
393 | ||
1b1f47c9 | 394 | unsigned int dictSdsCaseHash(const void *key) { |
395 | return dictGenCaseHashFunction((unsigned char*)key, sdslen((char*)key)); | |
396 | } | |
397 | ||
e2641e09 | 398 | int dictEncObjKeyCompare(void *privdata, const void *key1, |
399 | const void *key2) | |
400 | { | |
401 | robj *o1 = (robj*) key1, *o2 = (robj*) key2; | |
402 | int cmp; | |
403 | ||
404 | if (o1->encoding == REDIS_ENCODING_INT && | |
405 | o2->encoding == REDIS_ENCODING_INT) | |
406 | return o1->ptr == o2->ptr; | |
407 | ||
408 | o1 = getDecodedObject(o1); | |
409 | o2 = getDecodedObject(o2); | |
410 | cmp = dictSdsKeyCompare(privdata,o1->ptr,o2->ptr); | |
411 | decrRefCount(o1); | |
412 | decrRefCount(o2); | |
413 | return cmp; | |
414 | } | |
415 | ||
416 | unsigned int dictEncObjHash(const void *key) { | |
417 | robj *o = (robj*) key; | |
418 | ||
419 | if (o->encoding == REDIS_ENCODING_RAW) { | |
420 | return dictGenHashFunction(o->ptr, sdslen((sds)o->ptr)); | |
421 | } else { | |
422 | if (o->encoding == REDIS_ENCODING_INT) { | |
423 | char buf[32]; | |
424 | int len; | |
425 | ||
426 | len = ll2string(buf,32,(long)o->ptr); | |
427 | return dictGenHashFunction((unsigned char*)buf, len); | |
428 | } else { | |
429 | unsigned int hash; | |
430 | ||
431 | o = getDecodedObject(o); | |
432 | hash = dictGenHashFunction(o->ptr, sdslen((sds)o->ptr)); | |
433 | decrRefCount(o); | |
434 | return hash; | |
435 | } | |
436 | } | |
437 | } | |
438 | ||
4dd444bb | 439 | /* Sets type hash table */ |
e2641e09 | 440 | dictType setDictType = { |
441 | dictEncObjHash, /* hash function */ | |
442 | NULL, /* key dup */ | |
443 | NULL, /* val dup */ | |
444 | dictEncObjKeyCompare, /* key compare */ | |
445 | dictRedisObjectDestructor, /* key destructor */ | |
446 | NULL /* val destructor */ | |
447 | }; | |
448 | ||
449 | /* Sorted sets hash (note: a skiplist is used in addition to the hash table) */ | |
450 | dictType zsetDictType = { | |
451 | dictEncObjHash, /* hash function */ | |
452 | NULL, /* key dup */ | |
453 | NULL, /* val dup */ | |
454 | dictEncObjKeyCompare, /* key compare */ | |
455 | dictRedisObjectDestructor, /* key destructor */ | |
69ef89f2 | 456 | NULL /* val destructor */ |
e2641e09 | 457 | }; |
458 | ||
459 | /* Db->dict, keys are sds strings, vals are Redis objects. */ | |
460 | dictType dbDictType = { | |
461 | dictSdsHash, /* hash function */ | |
462 | NULL, /* key dup */ | |
463 | NULL, /* val dup */ | |
464 | dictSdsKeyCompare, /* key compare */ | |
465 | dictSdsDestructor, /* key destructor */ | |
466 | dictRedisObjectDestructor /* val destructor */ | |
467 | }; | |
468 | ||
469 | /* Db->expires */ | |
470 | dictType keyptrDictType = { | |
471 | dictSdsHash, /* hash function */ | |
472 | NULL, /* key dup */ | |
473 | NULL, /* val dup */ | |
474 | dictSdsKeyCompare, /* key compare */ | |
475 | NULL, /* key destructor */ | |
476 | NULL /* val destructor */ | |
477 | }; | |
478 | ||
1b1f47c9 | 479 | /* Command table. sds string -> command struct pointer. */ |
480 | dictType commandTableDictType = { | |
481 | dictSdsCaseHash, /* hash function */ | |
482 | NULL, /* key dup */ | |
483 | NULL, /* val dup */ | |
484 | dictSdsKeyCaseCompare, /* key compare */ | |
485 | dictSdsDestructor, /* key destructor */ | |
486 | NULL /* val destructor */ | |
487 | }; | |
488 | ||
e2641e09 | 489 | /* Hash type hash table (note that small hashes are represented with zimpaps) */ |
490 | dictType hashDictType = { | |
491 | dictEncObjHash, /* hash function */ | |
492 | NULL, /* key dup */ | |
493 | NULL, /* val dup */ | |
494 | dictEncObjKeyCompare, /* key compare */ | |
495 | dictRedisObjectDestructor, /* key destructor */ | |
496 | dictRedisObjectDestructor /* val destructor */ | |
497 | }; | |
498 | ||
499 | /* Keylist hash table type has unencoded redis objects as keys and | |
500 | * lists as values. It's used for blocking operations (BLPOP) and to | |
501 | * map swapped keys to a list of clients waiting for this keys to be loaded. */ | |
502 | dictType keylistDictType = { | |
503 | dictObjHash, /* hash function */ | |
504 | NULL, /* key dup */ | |
505 | NULL, /* val dup */ | |
506 | dictObjKeyCompare, /* key compare */ | |
507 | dictRedisObjectDestructor, /* key destructor */ | |
508 | dictListDestructor /* val destructor */ | |
509 | }; | |
510 | ||
ecc91094 | 511 | /* Cluster nodes hash table, mapping nodes addresses 1.2.3.4:6379 to |
512 | * clusterNode structures. */ | |
513 | dictType clusterNodesDictType = { | |
514 | dictSdsHash, /* hash function */ | |
515 | NULL, /* key dup */ | |
516 | NULL, /* val dup */ | |
517 | dictSdsKeyCompare, /* key compare */ | |
518 | dictSdsDestructor, /* key destructor */ | |
519 | NULL /* val destructor */ | |
520 | }; | |
521 | ||
e2641e09 | 522 | int htNeedsResize(dict *dict) { |
523 | long long size, used; | |
524 | ||
525 | size = dictSlots(dict); | |
526 | used = dictSize(dict); | |
527 | return (size && used && size > DICT_HT_INITIAL_SIZE && | |
528 | (used*100/size < REDIS_HT_MINFILL)); | |
529 | } | |
530 | ||
531 | /* If the percentage of used slots in the HT reaches REDIS_HT_MINFILL | |
532 | * we resize the hash table to save memory */ | |
533 | void tryResizeHashTables(void) { | |
534 | int j; | |
535 | ||
536 | for (j = 0; j < server.dbnum; j++) { | |
537 | if (htNeedsResize(server.db[j].dict)) | |
538 | dictResize(server.db[j].dict); | |
539 | if (htNeedsResize(server.db[j].expires)) | |
540 | dictResize(server.db[j].expires); | |
541 | } | |
542 | } | |
543 | ||
544 | /* Our hash table implementation performs rehashing incrementally while | |
545 | * we write/read from the hash table. Still if the server is idle, the hash | |
546 | * table will use two tables for a long time. So we try to use 1 millisecond | |
547 | * of CPU time at every serverCron() loop in order to rehash some key. */ | |
548 | void incrementallyRehash(void) { | |
549 | int j; | |
550 | ||
551 | for (j = 0; j < server.dbnum; j++) { | |
552 | if (dictIsRehashing(server.db[j].dict)) { | |
553 | dictRehashMilliseconds(server.db[j].dict,1); | |
554 | break; /* already used our millisecond for this loop... */ | |
555 | } | |
556 | } | |
557 | } | |
558 | ||
559 | /* This function is called once a background process of some kind terminates, | |
560 | * as we want to avoid resizing the hash tables when there is a child in order | |
561 | * to play well with copy-on-write (otherwise when a resize happens lots of | |
562 | * memory pages are copied). The goal of this function is to update the ability | |
563 | * for dict.c to resize the hash tables accordingly to the fact we have o not | |
564 | * running childs. */ | |
565 | void updateDictResizePolicy(void) { | |
f48cd4b9 | 566 | if (server.rdb_child_pid == -1 && server.aof_child_pid == -1) |
e2641e09 | 567 | dictEnableResize(); |
568 | else | |
569 | dictDisableResize(); | |
570 | } | |
571 | ||
572 | /* ======================= Cron: called every 100 ms ======================== */ | |
573 | ||
bcf2995c | 574 | /* Try to expire a few timed out keys. The algorithm used is adaptive and |
575 | * will use few CPU cycles if there are few expiring keys, otherwise | |
576 | * it will get more aggressive to avoid that too much memory is used by | |
577 | * keys that can be removed from the keyspace. */ | |
578 | void activeExpireCycle(void) { | |
579 | int j; | |
580 | ||
581 | for (j = 0; j < server.dbnum; j++) { | |
582 | int expired; | |
583 | redisDb *db = server.db+j; | |
584 | ||
585 | /* Continue to expire if at the end of the cycle more than 25% | |
586 | * of the keys were expired. */ | |
587 | do { | |
588 | long num = dictSize(db->expires); | |
4be855e7 | 589 | long long now = mstime(); |
bcf2995c | 590 | |
591 | expired = 0; | |
592 | if (num > REDIS_EXPIRELOOKUPS_PER_CRON) | |
593 | num = REDIS_EXPIRELOOKUPS_PER_CRON; | |
594 | while (num--) { | |
595 | dictEntry *de; | |
4be855e7 | 596 | long long t; |
bcf2995c | 597 | |
598 | if ((de = dictGetRandomKey(db->expires)) == NULL) break; | |
4be855e7 | 599 | t = dictGetSignedIntegerVal(de); |
bcf2995c | 600 | if (now > t) { |
c0ba9ebe | 601 | sds key = dictGetKey(de); |
bcf2995c | 602 | robj *keyobj = createStringObject(key,sdslen(key)); |
603 | ||
604 | propagateExpire(db,keyobj); | |
605 | dbDelete(db,keyobj); | |
606 | decrRefCount(keyobj); | |
607 | expired++; | |
608 | server.stat_expiredkeys++; | |
609 | } | |
610 | } | |
611 | } while (expired > REDIS_EXPIRELOOKUPS_PER_CRON/4); | |
612 | } | |
613 | } | |
614 | ||
165346ca | 615 | void updateLRUClock(void) { |
616 | server.lruclock = (time(NULL)/REDIS_LRU_CLOCK_RESOLUTION) & | |
617 | REDIS_LRU_CLOCK_MAX; | |
618 | } | |
bcf2995c | 619 | |
e2641e09 | 620 | int serverCron(struct aeEventLoop *eventLoop, long long id, void *clientData) { |
89a1433e | 621 | int j, loops = server.cronloops; |
e2641e09 | 622 | REDIS_NOTUSED(eventLoop); |
623 | REDIS_NOTUSED(id); | |
624 | REDIS_NOTUSED(clientData); | |
625 | ||
626 | /* We take a cached value of the unix time in the global state because | |
627 | * with virtual memory and aging there is to store the current time | |
628 | * in objects at every object access, and accuracy is not needed. | |
629 | * To access a global var is faster than calling time(NULL) */ | |
630 | server.unixtime = time(NULL); | |
4f06867a | 631 | |
ef59a8bc | 632 | /* We have just 22 bits per object for LRU information. |
165346ca | 633 | * So we use an (eventually wrapping) LRU clock with 10 seconds resolution. |
634 | * 2^22 bits with 10 seconds resoluton is more or less 1.5 years. | |
e2641e09 | 635 | * |
165346ca | 636 | * Note that even if this will wrap after 1.5 years it's not a problem, |
ef59a8bc | 637 | * everything will still work but just some object will appear younger |
165346ca | 638 | * to Redis. But for this to happen a given object should never be touched |
639 | * for 1.5 years. | |
640 | * | |
641 | * Note that you can change the resolution altering the | |
642 | * REDIS_LRU_CLOCK_RESOLUTION define. | |
e2641e09 | 643 | */ |
165346ca | 644 | updateLRUClock(); |
e2641e09 | 645 | |
17b24ff3 | 646 | /* Record the max memory used since the server was started. */ |
647 | if (zmalloc_used_memory() > server.stat_peak_memory) | |
648 | server.stat_peak_memory = zmalloc_used_memory(); | |
649 | ||
e2641e09 | 650 | /* We received a SIGTERM, shutting down here in a safe way, as it is |
651 | * not ok doing so inside the signal handler. */ | |
652 | if (server.shutdown_asap) { | |
4ab8695d | 653 | if (prepareForShutdown(0) == REDIS_OK) exit(0); |
e2641e09 | 654 | redisLog(REDIS_WARNING,"SIGTERM received but errors trying to shut down the server, check the logs for more information"); |
655 | } | |
656 | ||
657 | /* Show some info about non-empty databases */ | |
658 | for (j = 0; j < server.dbnum; j++) { | |
659 | long long size, used, vkeys; | |
660 | ||
661 | size = dictSlots(server.db[j].dict); | |
662 | used = dictSize(server.db[j].dict); | |
663 | vkeys = dictSize(server.db[j].expires); | |
664 | if (!(loops % 50) && (used || vkeys)) { | |
665 | redisLog(REDIS_VERBOSE,"DB %d: %lld keys (%lld volatile) in %lld slots HT.",j,used,vkeys,size); | |
666 | /* dictPrintStats(server.dict); */ | |
667 | } | |
668 | } | |
669 | ||
670 | /* We don't want to resize the hash tables while a bacground saving | |
671 | * is in progress: the saving child is created using fork() that is | |
672 | * implemented with a copy-on-write semantic in most modern systems, so | |
673 | * if we resize the HT while there is the saving child at work actually | |
674 | * a lot of memory movements in the parent will cause a lot of pages | |
675 | * copied. */ | |
f48cd4b9 | 676 | if (server.rdb_child_pid == -1 && server.aof_child_pid == -1) { |
e2641e09 | 677 | if (!(loops % 10)) tryResizeHashTables(); |
678 | if (server.activerehashing) incrementallyRehash(); | |
679 | } | |
680 | ||
681 | /* Show information about connected clients */ | |
682 | if (!(loops % 50)) { | |
683 | redisLog(REDIS_VERBOSE,"%d clients connected (%d slaves), %zu bytes in use", | |
684 | listLength(server.clients)-listLength(server.slaves), | |
685 | listLength(server.slaves), | |
ca734d17 | 686 | zmalloc_used_memory()); |
e2641e09 | 687 | } |
688 | ||
689 | /* Close connections of timedout clients */ | |
5fa95ad7 | 690 | if ((server.maxidletime && !(loops % 100)) || server.bpop_blocked_clients) |
e2641e09 | 691 | closeTimedoutClients(); |
692 | ||
b333e239 | 693 | /* Start a scheduled AOF rewrite if this was requested by the user while |
694 | * a BGSAVE was in progress. */ | |
f48cd4b9 | 695 | if (server.rdb_child_pid == -1 && server.aof_child_pid == -1 && |
2c915bcf | 696 | server.aof_rewrite_scheduled) |
b333e239 | 697 | { |
698 | rewriteAppendOnlyFileBackground(); | |
699 | } | |
700 | ||
f03fe802 | 701 | /* Check if a background saving or AOF rewrite in progress terminated. */ |
f48cd4b9 | 702 | if (server.rdb_child_pid != -1 || server.aof_child_pid != -1) { |
e2641e09 | 703 | int statloc; |
704 | pid_t pid; | |
705 | ||
706 | if ((pid = wait3(&statloc,WNOHANG,NULL)) != 0) { | |
36c17a53 | 707 | int exitcode = WEXITSTATUS(statloc); |
708 | int bysignal = 0; | |
709 | ||
710 | if (WIFSIGNALED(statloc)) bysignal = WTERMSIG(statloc); | |
711 | ||
f48cd4b9 | 712 | if (pid == server.rdb_child_pid) { |
36c17a53 | 713 | backgroundSaveDoneHandler(exitcode,bysignal); |
e2641e09 | 714 | } else { |
36c17a53 | 715 | backgroundRewriteDoneHandler(exitcode,bysignal); |
e2641e09 | 716 | } |
717 | updateDictResizePolicy(); | |
718 | } | |
c9d0c362 | 719 | } else { |
e2641e09 | 720 | time_t now = time(NULL); |
b333e239 | 721 | |
722 | /* If there is not a background saving/rewrite in progress check if | |
723 | * we have to save/rewrite now */ | |
e2641e09 | 724 | for (j = 0; j < server.saveparamslen; j++) { |
725 | struct saveparam *sp = server.saveparams+j; | |
726 | ||
727 | if (server.dirty >= sp->changes && | |
728 | now-server.lastsave > sp->seconds) { | |
729 | redisLog(REDIS_NOTICE,"%d changes in %d seconds. Saving...", | |
730 | sp->changes, sp->seconds); | |
f48cd4b9 | 731 | rdbSaveBackground(server.rdb_filename); |
e2641e09 | 732 | break; |
733 | } | |
734 | } | |
b333e239 | 735 | |
736 | /* Trigger an AOF rewrite if needed */ | |
f48cd4b9 | 737 | if (server.rdb_child_pid == -1 && |
ff2145ad | 738 | server.aof_child_pid == -1 && |
2c915bcf | 739 | server.aof_rewrite_perc && |
740 | server.aof_current_size > server.aof_rewrite_min_size) | |
b333e239 | 741 | { |
2c915bcf | 742 | long long base = server.aof_rewrite_base_size ? |
743 | server.aof_rewrite_base_size : 1; | |
744 | long long growth = (server.aof_current_size*100/base) - 100; | |
745 | if (growth >= server.aof_rewrite_perc) { | |
19b46c9a | 746 | redisLog(REDIS_NOTICE,"Starting automatic rewriting of AOF on %lld%% growth",growth); |
b333e239 | 747 | rewriteAppendOnlyFileBackground(); |
748 | } | |
749 | } | |
e2641e09 | 750 | } |
751 | ||
db3c2a4f | 752 | |
753 | /* If we postponed an AOF buffer flush, let's try to do it every time the | |
754 | * cron function is called. */ | |
755 | if (server.aof_flush_postponed_start) flushAppendOnlyFile(0); | |
756 | ||
bcf2995c | 757 | /* Expire a few keys per cycle, only if this is a master. |
758 | * On slaves we wait for DEL operations synthesized by the master | |
759 | * in order to guarantee a strict consistency. */ | |
760 | if (server.masterhost == NULL) activeExpireCycle(); | |
e2641e09 | 761 | |
f4aa600b | 762 | /* Replication cron function -- used to reconnect to master and |
763 | * to detect transfer failures. */ | |
62ec599c | 764 | if (!(loops % 10)) replicationCron(); |
f4aa600b | 765 | |
ecc91094 | 766 | /* Run other sub-systems specific cron jobs */ |
767 | if (server.cluster_enabled && !(loops % 10)) clusterCron(); | |
768 | ||
89a1433e | 769 | server.cronloops++; |
e2641e09 | 770 | return 100; |
771 | } | |
772 | ||
773 | /* This function gets called every time Redis is entering the | |
774 | * main loop of the event driven library, that is, before to sleep | |
775 | * for ready file descriptors. */ | |
776 | void beforeSleep(struct aeEventLoop *eventLoop) { | |
777 | REDIS_NOTUSED(eventLoop); | |
a4ce7581 PN |
778 | listNode *ln; |
779 | redisClient *c; | |
e2641e09 | 780 | |
a4ce7581 PN |
781 | /* Try to process pending commands for clients that were just unblocked. */ |
782 | while (listLength(server.unblocked_clients)) { | |
783 | ln = listFirst(server.unblocked_clients); | |
784 | redisAssert(ln != NULL); | |
785 | c = ln->value; | |
786 | listDelNode(server.unblocked_clients,ln); | |
3bcffcbe | 787 | c->flags &= ~REDIS_UNBLOCKED; |
a4ce7581 PN |
788 | |
789 | /* Process remaining data in the input buffer. */ | |
790 | if (c->querybuf && sdslen(c->querybuf) > 0) | |
791 | processInputBuffer(c); | |
792 | } | |
793 | ||
e2641e09 | 794 | /* Write the AOF buffer on disk */ |
db3c2a4f | 795 | flushAppendOnlyFile(0); |
e2641e09 | 796 | } |
797 | ||
798 | /* =========================== Server initialization ======================== */ | |
799 | ||
800 | void createSharedObjects(void) { | |
801 | int j; | |
802 | ||
803 | shared.crlf = createObject(REDIS_STRING,sdsnew("\r\n")); | |
804 | shared.ok = createObject(REDIS_STRING,sdsnew("+OK\r\n")); | |
805 | shared.err = createObject(REDIS_STRING,sdsnew("-ERR\r\n")); | |
806 | shared.emptybulk = createObject(REDIS_STRING,sdsnew("$0\r\n\r\n")); | |
807 | shared.czero = createObject(REDIS_STRING,sdsnew(":0\r\n")); | |
808 | shared.cone = createObject(REDIS_STRING,sdsnew(":1\r\n")); | |
809 | shared.cnegone = createObject(REDIS_STRING,sdsnew(":-1\r\n")); | |
810 | shared.nullbulk = createObject(REDIS_STRING,sdsnew("$-1\r\n")); | |
811 | shared.nullmultibulk = createObject(REDIS_STRING,sdsnew("*-1\r\n")); | |
812 | shared.emptymultibulk = createObject(REDIS_STRING,sdsnew("*0\r\n")); | |
813 | shared.pong = createObject(REDIS_STRING,sdsnew("+PONG\r\n")); | |
814 | shared.queued = createObject(REDIS_STRING,sdsnew("+QUEUED\r\n")); | |
815 | shared.wrongtypeerr = createObject(REDIS_STRING,sdsnew( | |
816 | "-ERR Operation against a key holding the wrong kind of value\r\n")); | |
817 | shared.nokeyerr = createObject(REDIS_STRING,sdsnew( | |
818 | "-ERR no such key\r\n")); | |
819 | shared.syntaxerr = createObject(REDIS_STRING,sdsnew( | |
820 | "-ERR syntax error\r\n")); | |
821 | shared.sameobjecterr = createObject(REDIS_STRING,sdsnew( | |
822 | "-ERR source and destination objects are the same\r\n")); | |
823 | shared.outofrangeerr = createObject(REDIS_STRING,sdsnew( | |
824 | "-ERR index out of range\r\n")); | |
7229d60d | 825 | shared.noscripterr = createObject(REDIS_STRING,sdsnew( |
826 | "-NOSCRIPT No matching script. Please use EVAL.\r\n")); | |
97e7f8ae | 827 | shared.loadingerr = createObject(REDIS_STRING,sdsnew( |
828 | "-LOADING Redis is loading the dataset in memory\r\n")); | |
115e3ff3 | 829 | shared.slowscripterr = createObject(REDIS_STRING,sdsnew( |
4ab8695d | 830 | "-BUSY Redis is busy running a script. You can only call SCRIPT KILL or SHUTDOWN NOSAVE.\r\n")); |
e2641e09 | 831 | shared.space = createObject(REDIS_STRING,sdsnew(" ")); |
832 | shared.colon = createObject(REDIS_STRING,sdsnew(":")); | |
833 | shared.plus = createObject(REDIS_STRING,sdsnew("+")); | |
834 | shared.select0 = createStringObject("select 0\r\n",10); | |
835 | shared.select1 = createStringObject("select 1\r\n",10); | |
836 | shared.select2 = createStringObject("select 2\r\n",10); | |
837 | shared.select3 = createStringObject("select 3\r\n",10); | |
838 | shared.select4 = createStringObject("select 4\r\n",10); | |
839 | shared.select5 = createStringObject("select 5\r\n",10); | |
840 | shared.select6 = createStringObject("select 6\r\n",10); | |
841 | shared.select7 = createStringObject("select 7\r\n",10); | |
842 | shared.select8 = createStringObject("select 8\r\n",10); | |
843 | shared.select9 = createStringObject("select 9\r\n",10); | |
844 | shared.messagebulk = createStringObject("$7\r\nmessage\r\n",13); | |
845 | shared.pmessagebulk = createStringObject("$8\r\npmessage\r\n",14); | |
846 | shared.subscribebulk = createStringObject("$9\r\nsubscribe\r\n",15); | |
847 | shared.unsubscribebulk = createStringObject("$11\r\nunsubscribe\r\n",18); | |
848 | shared.psubscribebulk = createStringObject("$10\r\npsubscribe\r\n",17); | |
849 | shared.punsubscribebulk = createStringObject("$12\r\npunsubscribe\r\n",19); | |
850 | shared.mbulk3 = createStringObject("*3\r\n",4); | |
851 | shared.mbulk4 = createStringObject("*4\r\n",4); | |
852 | for (j = 0; j < REDIS_SHARED_INTEGERS; j++) { | |
853 | shared.integers[j] = createObject(REDIS_STRING,(void*)(long)j); | |
854 | shared.integers[j]->encoding = REDIS_ENCODING_INT; | |
855 | } | |
856 | } | |
857 | ||
858 | void initServerConfig() { | |
e2641e09 | 859 | server.port = REDIS_SERVERPORT; |
a5639e7d | 860 | server.bindaddr = NULL; |
5d10923f | 861 | server.unixsocket = NULL; |
85238765 | 862 | server.unixsocketperm = 0; |
a5639e7d PN |
863 | server.ipfd = -1; |
864 | server.sofd = -1; | |
865 | server.dbnum = REDIS_DEFAULT_DBNUM; | |
c6f9ee88 | 866 | server.verbosity = REDIS_NOTICE; |
e2641e09 | 867 | server.maxidletime = REDIS_MAXIDLETIME; |
becf5fdb | 868 | server.client_max_querybuf_len = REDIS_MAX_QUERYBUF_LEN; |
e2641e09 | 869 | server.saveparams = NULL; |
97e7f8ae | 870 | server.loading = 0; |
e2641e09 | 871 | server.logfile = NULL; /* NULL = log on standard output */ |
e1a586ee JH |
872 | server.syslog_enabled = 0; |
873 | server.syslog_ident = zstrdup("redis"); | |
874 | server.syslog_facility = LOG_LOCAL0; | |
e2641e09 | 875 | server.daemonize = 0; |
e394114d | 876 | server.aof_state = REDIS_AOF_OFF; |
2c915bcf | 877 | server.aof_fsync = AOF_FSYNC_EVERYSEC; |
878 | server.aof_no_fsync_on_rewrite = 0; | |
879 | server.aof_rewrite_perc = REDIS_AOF_REWRITE_PERC; | |
880 | server.aof_rewrite_min_size = REDIS_AOF_REWRITE_MIN_SIZE; | |
881 | server.aof_rewrite_base_size = 0; | |
882 | server.aof_rewrite_scheduled = 0; | |
ff2145ad | 883 | server.aof_last_fsync = time(NULL); |
884 | server.aof_fd = -1; | |
885 | server.aof_selected_db = -1; /* Make sure the first time will not match */ | |
db3c2a4f | 886 | server.aof_flush_postponed_start = 0; |
e2641e09 | 887 | server.pidfile = zstrdup("/var/run/redis.pid"); |
f48cd4b9 | 888 | server.rdb_filename = zstrdup("dump.rdb"); |
2c915bcf | 889 | server.aof_filename = zstrdup("appendonly.aof"); |
e2641e09 | 890 | server.requirepass = NULL; |
f48cd4b9 | 891 | server.rdb_compression = 1; |
e2641e09 | 892 | server.activerehashing = 1; |
58732c23 | 893 | server.maxclients = REDIS_MAX_CLIENTS; |
5fa95ad7 | 894 | server.bpop_blocked_clients = 0; |
e2641e09 | 895 | server.maxmemory = 0; |
165346ca | 896 | server.maxmemory_policy = REDIS_MAXMEMORY_VOLATILE_LRU; |
897 | server.maxmemory_samples = 3; | |
e2641e09 | 898 | server.hash_max_zipmap_entries = REDIS_HASH_MAX_ZIPMAP_ENTRIES; |
899 | server.hash_max_zipmap_value = REDIS_HASH_MAX_ZIPMAP_VALUE; | |
900 | server.list_max_ziplist_entries = REDIS_LIST_MAX_ZIPLIST_ENTRIES; | |
901 | server.list_max_ziplist_value = REDIS_LIST_MAX_ZIPLIST_VALUE; | |
96ffb2fe | 902 | server.set_max_intset_entries = REDIS_SET_MAX_INTSET_ENTRIES; |
3ea204e1 PN |
903 | server.zset_max_ziplist_entries = REDIS_ZSET_MAX_ZIPLIST_ENTRIES; |
904 | server.zset_max_ziplist_value = REDIS_ZSET_MAX_ZIPLIST_VALUE; | |
e2641e09 | 905 | server.shutdown_asap = 0; |
aeecbdfa | 906 | server.repl_ping_slave_period = REDIS_REPL_PING_SLAVE_PERIOD; |
907 | server.repl_timeout = REDIS_REPL_TIMEOUT; | |
ecc91094 | 908 | server.cluster_enabled = 0; |
ef21ab96 | 909 | server.cluster.configfile = zstrdup("nodes.conf"); |
4ab8695d | 910 | server.lua_caller = NULL; |
eeffcf38 | 911 | server.lua_time_limit = REDIS_LUA_TIME_LIMIT; |
070e3945 | 912 | server.lua_client = NULL; |
115e3ff3 | 913 | server.lua_timedout = 0; |
e2641e09 | 914 | |
95506e46 | 915 | updateLRUClock(); |
e2641e09 | 916 | resetServerSaveParams(); |
917 | ||
918 | appendServerSaveParams(60*60,1); /* save after 1 hour and 1 change */ | |
919 | appendServerSaveParams(300,100); /* save after 5 minutes and 100 changes */ | |
920 | appendServerSaveParams(60,10000); /* save after 1 minute and 10000 changes */ | |
921 | /* Replication related */ | |
e2641e09 | 922 | server.masterauth = NULL; |
923 | server.masterhost = NULL; | |
924 | server.masterport = 6379; | |
925 | server.master = NULL; | |
1844f990 | 926 | server.repl_state = REDIS_REPL_NONE; |
890a2ed9 | 927 | server.repl_syncio_timeout = REDIS_REPL_SYNCIO_TIMEOUT; |
4ebfc455 | 928 | server.repl_serve_stale_data = 1; |
07486df6 | 929 | server.repl_down_since = -1; |
e2641e09 | 930 | |
931 | /* Double constants initialization */ | |
932 | R_Zero = 0.0; | |
933 | R_PosInf = 1.0/R_Zero; | |
934 | R_NegInf = -1.0/R_Zero; | |
935 | R_Nan = R_Zero/R_Zero; | |
8d3e063a | 936 | |
937 | /* Command table -- we intiialize it here as it is part of the | |
938 | * initial configuration, since command names may be changed via | |
939 | * redis.conf using the rename-command directive. */ | |
940 | server.commands = dictCreate(&commandTableDictType,NULL); | |
941 | populateCommandTable(); | |
942 | server.delCommand = lookupCommandByCString("del"); | |
943 | server.multiCommand = lookupCommandByCString("multi"); | |
daa70b17 | 944 | |
945 | /* Slow log */ | |
946 | server.slowlog_log_slower_than = REDIS_SLOWLOG_LOG_SLOWER_THAN; | |
947 | server.slowlog_max_len = REDIS_SLOWLOG_MAX_LEN; | |
fa5af017 | 948 | |
949 | /* Assert */ | |
950 | server.assert_failed = "<no assertion failed>"; | |
951 | server.assert_file = "<no file>"; | |
952 | server.assert_line = 0; | |
953 | server.bug_report_start = 0; | |
e2641e09 | 954 | } |
955 | ||
e074416b | 956 | /* This function will try to raise the max number of open files accordingly to |
957 | * the configured max number of clients. It will also account for 32 additional | |
958 | * file descriptors as we need a few more for persistence, listening | |
959 | * sockets, log files and so forth. | |
960 | * | |
961 | * If it will not be possible to set the limit accordingly to the configured | |
962 | * max number of clients, the function will do the reverse setting | |
963 | * server.maxclients to the value that we can actually handle. */ | |
964 | void adjustOpenFilesLimit(void) { | |
965 | rlim_t maxfiles = server.maxclients+32; | |
966 | struct rlimit limit; | |
967 | ||
968 | if (maxfiles < 1024) maxfiles = 1024; | |
969 | if (getrlimit(RLIMIT_NOFILE,&limit) == -1) { | |
970 | redisLog(REDIS_WARNING,"Unable to obtain the current NOFILE limit (%s), assuming 1024 and setting the max clients configuration accordingly.", | |
971 | strerror(errno)); | |
972 | server.maxclients = 1024-32; | |
973 | } else { | |
974 | rlim_t oldlimit = limit.rlim_cur; | |
975 | ||
976 | /* Set the max number of files if the current limit is not enough | |
977 | * for our needs. */ | |
978 | if (oldlimit < maxfiles) { | |
979 | limit.rlim_cur = maxfiles; | |
980 | limit.rlim_max = maxfiles; | |
981 | if (setrlimit(RLIMIT_NOFILE,&limit) == -1) { | |
982 | server.maxclients = oldlimit-32; | |
983 | redisLog(REDIS_WARNING,"Unable to set the max number of files limit to %d (%s), setting the max clients configuration to %d.", | |
984 | (int) maxfiles, strerror(errno), (int) server.maxclients); | |
985 | } else { | |
986 | redisLog(REDIS_NOTICE,"Max number of open files set to %d", | |
987 | (int) maxfiles); | |
988 | } | |
989 | } | |
990 | } | |
991 | } | |
992 | ||
e2641e09 | 993 | void initServer() { |
994 | int j; | |
995 | ||
996 | signal(SIGHUP, SIG_IGN); | |
997 | signal(SIGPIPE, SIG_IGN); | |
633a9410 | 998 | setupSignalHandlers(); |
e2641e09 | 999 | |
e1a586ee JH |
1000 | if (server.syslog_enabled) { |
1001 | openlog(server.syslog_ident, LOG_PID | LOG_NDELAY | LOG_NOWAIT, | |
1002 | server.syslog_facility); | |
1003 | } | |
1004 | ||
e2641e09 | 1005 | server.clients = listCreate(); |
1006 | server.slaves = listCreate(); | |
1007 | server.monitors = listCreate(); | |
a4ce7581 | 1008 | server.unblocked_clients = listCreate(); |
cea8c5cd | 1009 | |
e2641e09 | 1010 | createSharedObjects(); |
e074416b | 1011 | adjustOpenFilesLimit(); |
1012 | server.el = aeCreateEventLoop(server.maxclients+1024); | |
e2641e09 | 1013 | server.db = zmalloc(sizeof(redisDb)*server.dbnum); |
68d6345d | 1014 | |
a53b4c24 | 1015 | if (server.port != 0) { |
68d6345d | 1016 | server.ipfd = anetTcpServer(server.neterr,server.port,server.bindaddr); |
a53b4c24 | 1017 | if (server.ipfd == ANET_ERR) { |
eef17490 | 1018 | redisLog(REDIS_WARNING, "Opening port %d: %s", |
1019 | server.port, server.neterr); | |
a53b4c24 | 1020 | exit(1); |
1021 | } | |
a5639e7d | 1022 | } |
5d10923f PN |
1023 | if (server.unixsocket != NULL) { |
1024 | unlink(server.unixsocket); /* don't care if this fails */ | |
85238765 | 1025 | server.sofd = anetUnixServer(server.neterr,server.unixsocket,server.unixsocketperm); |
a5639e7d PN |
1026 | if (server.sofd == ANET_ERR) { |
1027 | redisLog(REDIS_WARNING, "Opening socket: %s", server.neterr); | |
1028 | exit(1); | |
1029 | } | |
c61e6925 | 1030 | } |
a5639e7d PN |
1031 | if (server.ipfd < 0 && server.sofd < 0) { |
1032 | redisLog(REDIS_WARNING, "Configured to not listen anywhere, exiting."); | |
e2641e09 | 1033 | exit(1); |
1034 | } | |
1035 | for (j = 0; j < server.dbnum; j++) { | |
1036 | server.db[j].dict = dictCreate(&dbDictType,NULL); | |
1037 | server.db[j].expires = dictCreate(&keyptrDictType,NULL); | |
1038 | server.db[j].blocking_keys = dictCreate(&keylistDictType,NULL); | |
1039 | server.db[j].watched_keys = dictCreate(&keylistDictType,NULL); | |
e2641e09 | 1040 | server.db[j].id = j; |
1041 | } | |
1042 | server.pubsub_channels = dictCreate(&keylistDictType,NULL); | |
1043 | server.pubsub_patterns = listCreate(); | |
1044 | listSetFreeMethod(server.pubsub_patterns,freePubsubPattern); | |
1045 | listSetMatchMethod(server.pubsub_patterns,listMatchPubsubPattern); | |
1046 | server.cronloops = 0; | |
f48cd4b9 | 1047 | server.rdb_child_pid = -1; |
ff2145ad | 1048 | server.aof_child_pid = -1; |
1049 | server.aof_rewrite_buf = sdsempty(); | |
1050 | server.aof_buf = sdsempty(); | |
e2641e09 | 1051 | server.lastsave = time(NULL); |
1052 | server.dirty = 0; | |
1053 | server.stat_numcommands = 0; | |
1054 | server.stat_numconnections = 0; | |
1055 | server.stat_expiredkeys = 0; | |
f21779ff | 1056 | server.stat_evictedkeys = 0; |
e2641e09 | 1057 | server.stat_starttime = time(NULL); |
53eeeaff | 1058 | server.stat_keyspace_misses = 0; |
1059 | server.stat_keyspace_hits = 0; | |
17b24ff3 | 1060 | server.stat_peak_memory = 0; |
615e414c | 1061 | server.stat_fork_time = 0; |
3c95e721 | 1062 | server.stat_rejected_conn = 0; |
e2641e09 | 1063 | server.unixtime = time(NULL); |
1064 | aeCreateTimeEvent(server.el, 1, serverCron, NULL, NULL); | |
a5639e7d | 1065 | if (server.ipfd > 0 && aeCreateFileEvent(server.el,server.ipfd,AE_READABLE, |
ab17b909 | 1066 | acceptTcpHandler,NULL) == AE_ERR) oom("creating file event"); |
a5639e7d | 1067 | if (server.sofd > 0 && aeCreateFileEvent(server.el,server.sofd,AE_READABLE, |
ab17b909 | 1068 | acceptUnixHandler,NULL) == AE_ERR) oom("creating file event"); |
e2641e09 | 1069 | |
e394114d | 1070 | if (server.aof_state == REDIS_AOF_ON) { |
ff2145ad | 1071 | server.aof_fd = open(server.aof_filename, |
e394114d | 1072 | O_WRONLY|O_APPEND|O_CREAT,0644); |
ff2145ad | 1073 | if (server.aof_fd == -1) { |
e2641e09 | 1074 | redisLog(REDIS_WARNING, "Can't open the append-only file: %s", |
1075 | strerror(errno)); | |
1076 | exit(1); | |
1077 | } | |
1078 | } | |
1079 | ||
ecc91094 | 1080 | if (server.cluster_enabled) clusterInit(); |
7585836e | 1081 | scriptingInit(); |
daa70b17 | 1082 | slowlogInit(); |
8f61a72f | 1083 | bioInit(); |
29920dce | 1084 | srand(time(NULL)^getpid()); |
58732c23 | 1085 | |
e2641e09 | 1086 | } |
1087 | ||
1b1f47c9 | 1088 | /* Populates the Redis Command Table starting from the hard coded list |
1089 | * we have on top of redis.c file. */ | |
1090 | void populateCommandTable(void) { | |
1091 | int j; | |
d7ed7fd2 | 1092 | int numcommands = sizeof(redisCommandTable)/sizeof(struct redisCommand); |
1b1f47c9 | 1093 | |
1094 | for (j = 0; j < numcommands; j++) { | |
d7ed7fd2 | 1095 | struct redisCommand *c = redisCommandTable+j; |
5d02b00f | 1096 | char *f = c->sflags; |
1b1f47c9 | 1097 | int retval; |
e2641e09 | 1098 | |
5d02b00f | 1099 | while(*f != '\0') { |
1100 | switch(*f) { | |
1101 | case 'w': c->flags |= REDIS_CMD_WRITE; break; | |
1102 | case 'r': c->flags |= REDIS_CMD_READONLY; break; | |
1103 | case 'm': c->flags |= REDIS_CMD_DENYOOM; break; | |
1104 | case 'a': c->flags |= REDIS_CMD_ADMIN; break; | |
1105 | case 'p': c->flags |= REDIS_CMD_PUBSUB; break; | |
1106 | case 'f': c->flags |= REDIS_CMD_FORCE_REPLICATION; break; | |
b60ed6e8 | 1107 | case 's': c->flags |= REDIS_CMD_NOSCRIPT; break; |
1108 | case 'R': c->flags |= REDIS_CMD_RANDOM; break; | |
5d02b00f | 1109 | default: redisPanic("Unsupported command flag"); break; |
1110 | } | |
1111 | f++; | |
1112 | } | |
1113 | ||
1b1f47c9 | 1114 | retval = dictAdd(server.commands, sdsnew(c->name), c); |
1115 | assert(retval == DICT_OK); | |
1116 | } | |
e2641e09 | 1117 | } |
1118 | ||
d7ed7fd2 | 1119 | void resetCommandTableStats(void) { |
1120 | int numcommands = sizeof(redisCommandTable)/sizeof(struct redisCommand); | |
1121 | int j; | |
1122 | ||
1123 | for (j = 0; j < numcommands; j++) { | |
1124 | struct redisCommand *c = redisCommandTable+j; | |
1125 | ||
1126 | c->microseconds = 0; | |
1127 | c->calls = 0; | |
1128 | } | |
1129 | } | |
1130 | ||
e2641e09 | 1131 | /* ====================== Commands lookup and execution ===================== */ |
1132 | ||
1b1f47c9 | 1133 | struct redisCommand *lookupCommand(sds name) { |
1134 | return dictFetchValue(server.commands, name); | |
1135 | } | |
1136 | ||
1137 | struct redisCommand *lookupCommandByCString(char *s) { | |
1138 | struct redisCommand *cmd; | |
1139 | sds name = sdsnew(s); | |
1140 | ||
1141 | cmd = dictFetchValue(server.commands, name); | |
1142 | sdsfree(name); | |
1143 | return cmd; | |
e2641e09 | 1144 | } |
1145 | ||
1146 | /* Call() is the core of Redis execution of a command */ | |
09e2d9ee | 1147 | void call(redisClient *c) { |
daa70b17 | 1148 | long long dirty, start = ustime(), duration; |
e2641e09 | 1149 | |
1150 | dirty = server.dirty; | |
09e2d9ee | 1151 | c->cmd->proc(c); |
e2641e09 | 1152 | dirty = server.dirty-dirty; |
daa70b17 | 1153 | duration = ustime()-start; |
09e2d9ee | 1154 | c->cmd->microseconds += duration; |
daa70b17 | 1155 | slowlogPushEntryIfNeeded(c->argv,c->argc,duration); |
09e2d9ee | 1156 | c->cmd->calls++; |
e2641e09 | 1157 | |
e394114d | 1158 | if (server.aof_state != REDIS_AOF_OFF && dirty > 0) |
09e2d9ee | 1159 | feedAppendOnlyFile(c->cmd,c->db->id,c->argv,c->argc); |
6468a6fa | 1160 | if ((dirty > 0 || c->cmd->flags & REDIS_CMD_FORCE_REPLICATION) && |
e2641e09 | 1161 | listLength(server.slaves)) |
1162 | replicationFeedSlaves(server.slaves,c->db->id,c->argv,c->argc); | |
1163 | if (listLength(server.monitors)) | |
1164 | replicationFeedMonitors(server.monitors,c->db->id,c->argv,c->argc); | |
1165 | server.stat_numcommands++; | |
1166 | } | |
1167 | ||
1168 | /* If this function gets called we already read a whole | |
1169 | * command, argments are in the client argv/argc fields. | |
1170 | * processCommand() execute the command or prepare the | |
1171 | * server for a bulk read from the client. | |
1172 | * | |
1173 | * If 1 is returned the client is still alive and valid and | |
1174 | * and other operations can be performed by the caller. Otherwise | |
1175 | * if 0 is returned the client was destroied (i.e. after QUIT). */ | |
1176 | int processCommand(redisClient *c) { | |
941c9fa2 PN |
1177 | /* The QUIT command is handled separately. Normal command procs will |
1178 | * go through checking for replication and QUIT will cause trouble | |
1179 | * when FORCE_REPLICATION is enabled and would be implemented in | |
1180 | * a regular command proc. */ | |
e2641e09 | 1181 | if (!strcasecmp(c->argv[0]->ptr,"quit")) { |
941c9fa2 | 1182 | addReply(c,shared.ok); |
5e78edb3 | 1183 | c->flags |= REDIS_CLOSE_AFTER_REPLY; |
cd8788f2 | 1184 | return REDIS_ERR; |
e2641e09 | 1185 | } |
1186 | ||
1187 | /* Now lookup the command and check ASAP about trivial error conditions | |
09e2d9ee | 1188 | * such as wrong arity, bad command name and so forth. */ |
2c74a9f9 | 1189 | c->cmd = c->lastcmd = lookupCommand(c->argv[0]->ptr); |
09e2d9ee | 1190 | if (!c->cmd) { |
3ab20376 PN |
1191 | addReplyErrorFormat(c,"unknown command '%s'", |
1192 | (char*)c->argv[0]->ptr); | |
cd8788f2 | 1193 | return REDIS_OK; |
09e2d9ee | 1194 | } else if ((c->cmd->arity > 0 && c->cmd->arity != c->argc) || |
1195 | (c->argc < -c->cmd->arity)) { | |
3ab20376 | 1196 | addReplyErrorFormat(c,"wrong number of arguments for '%s' command", |
09e2d9ee | 1197 | c->cmd->name); |
cd8788f2 | 1198 | return REDIS_OK; |
e2641e09 | 1199 | } |
e2641e09 | 1200 | |
1201 | /* Check if the user is authenticated */ | |
09e2d9ee | 1202 | if (server.requirepass && !c->authenticated && c->cmd->proc != authCommand) |
1203 | { | |
3ab20376 | 1204 | addReplyError(c,"operation not permitted"); |
cd8788f2 | 1205 | return REDIS_OK; |
e2641e09 | 1206 | } |
1207 | ||
ecc91094 | 1208 | /* If cluster is enabled, redirect here */ |
1209 | if (server.cluster_enabled && | |
09e2d9ee | 1210 | !(c->cmd->getkeys_proc == NULL && c->cmd->firstkey == 0)) { |
ecc91094 | 1211 | int hashslot; |
1212 | ||
1213 | if (server.cluster.state != REDIS_CLUSTER_OK) { | |
1214 | addReplyError(c,"The cluster is down. Check with CLUSTER INFO for more information"); | |
1215 | return REDIS_OK; | |
1216 | } else { | |
eda827f8 | 1217 | int ask; |
09e2d9ee | 1218 | clusterNode *n = getNodeByQuery(c,c->cmd,c->argv,c->argc,&hashslot,&ask); |
ecc91094 | 1219 | if (n == NULL) { |
eda827f8 | 1220 | addReplyError(c,"Multi keys request invalid in cluster"); |
ecc91094 | 1221 | return REDIS_OK; |
1222 | } else if (n != server.cluster.myself) { | |
1223 | addReplySds(c,sdscatprintf(sdsempty(), | |
eda827f8 | 1224 | "-%s %d %s:%d\r\n", ask ? "ASK" : "MOVED", |
1225 | hashslot,n->ip,n->port)); | |
ecc91094 | 1226 | return REDIS_OK; |
1227 | } | |
1228 | } | |
1229 | } | |
1230 | ||
1dd10ca2 | 1231 | /* Handle the maxmemory directive. |
1232 | * | |
1233 | * First we try to free some memory if possible (if there are volatile | |
1234 | * keys in the dataset). If there are not the only thing we can do | |
1235 | * is returning an error. */ | |
1236 | if (server.maxmemory) freeMemoryIfNeeded(); | |
09e2d9ee | 1237 | if (server.maxmemory && (c->cmd->flags & REDIS_CMD_DENYOOM) && |
ca734d17 | 1238 | zmalloc_used_memory() > server.maxmemory) |
e2641e09 | 1239 | { |
3ab20376 | 1240 | addReplyError(c,"command not allowed when used memory > 'maxmemory'"); |
cd8788f2 | 1241 | return REDIS_OK; |
e2641e09 | 1242 | } |
1243 | ||
1244 | /* Only allow SUBSCRIBE and UNSUBSCRIBE in the context of Pub/Sub */ | |
1245 | if ((dictSize(c->pubsub_channels) > 0 || listLength(c->pubsub_patterns) > 0) | |
1246 | && | |
09e2d9ee | 1247 | c->cmd->proc != subscribeCommand && |
1248 | c->cmd->proc != unsubscribeCommand && | |
1249 | c->cmd->proc != psubscribeCommand && | |
1250 | c->cmd->proc != punsubscribeCommand) { | |
3ab20376 | 1251 | addReplyError(c,"only (P)SUBSCRIBE / (P)UNSUBSCRIBE / QUIT allowed in this context"); |
cd8788f2 | 1252 | return REDIS_OK; |
e2641e09 | 1253 | } |
1254 | ||
4ebfc455 | 1255 | /* Only allow INFO and SLAVEOF when slave-serve-stale-data is no and |
1256 | * we are a slave with a broken link with master. */ | |
1844f990 | 1257 | if (server.masterhost && server.repl_state != REDIS_REPL_CONNECTED && |
4ebfc455 | 1258 | server.repl_serve_stale_data == 0 && |
09e2d9ee | 1259 | c->cmd->proc != infoCommand && c->cmd->proc != slaveofCommand) |
4ebfc455 | 1260 | { |
1261 | addReplyError(c, | |
1262 | "link with MASTER is down and slave-serve-stale-data is set to no"); | |
1263 | return REDIS_OK; | |
1264 | } | |
1265 | ||
97e7f8ae | 1266 | /* Loading DB? Return an error if the command is not INFO */ |
09e2d9ee | 1267 | if (server.loading && c->cmd->proc != infoCommand) { |
97e7f8ae | 1268 | addReply(c, shared.loadingerr); |
1269 | return REDIS_OK; | |
1270 | } | |
1271 | ||
4ab8695d | 1272 | /* Lua script too slow? Only allow SHUTDOWN NOSAVE and SCRIPT KILL. */ |
1273 | if (server.lua_timedout && | |
1274 | !(c->cmd->proc != shutdownCommand && | |
1275 | c->argc == 2 && | |
1276 | tolower(((char*)c->argv[1]->ptr)[0]) == 'n') && | |
1277 | !(c->cmd->proc == scriptCommand && | |
1278 | c->argc == 2 && | |
1279 | tolower(((char*)c->argv[1]->ptr)[0]) == 'k')) | |
1280 | { | |
115e3ff3 | 1281 | addReply(c, shared.slowscripterr); |
1282 | return REDIS_OK; | |
1283 | } | |
1284 | ||
e2641e09 | 1285 | /* Exec the command */ |
1286 | if (c->flags & REDIS_MULTI && | |
09e2d9ee | 1287 | c->cmd->proc != execCommand && c->cmd->proc != discardCommand && |
1288 | c->cmd->proc != multiCommand && c->cmd->proc != watchCommand) | |
e2641e09 | 1289 | { |
09e2d9ee | 1290 | queueMultiCommand(c); |
e2641e09 | 1291 | addReply(c,shared.queued); |
1292 | } else { | |
09e2d9ee | 1293 | call(c); |
e2641e09 | 1294 | } |
cd8788f2 | 1295 | return REDIS_OK; |
e2641e09 | 1296 | } |
1297 | ||
1298 | /*================================== Shutdown =============================== */ | |
1299 | ||
4ab8695d | 1300 | int prepareForShutdown(int flags) { |
1301 | int save = flags & REDIS_SHUTDOWN_SAVE; | |
1302 | int nosave = flags & REDIS_SHUTDOWN_NOSAVE; | |
1303 | ||
adae85cd | 1304 | redisLog(REDIS_WARNING,"User requested shutdown..."); |
e2641e09 | 1305 | /* Kill the saving child if there is a background saving in progress. |
1306 | We want to avoid race conditions, for instance our saving child may | |
1307 | overwrite the synchronous saving did by SHUTDOWN. */ | |
f48cd4b9 | 1308 | if (server.rdb_child_pid != -1) { |
adae85cd | 1309 | redisLog(REDIS_WARNING,"There is a child saving an .rdb. Killing it!"); |
f48cd4b9 | 1310 | kill(server.rdb_child_pid,SIGKILL); |
1311 | rdbRemoveTempFile(server.rdb_child_pid); | |
e2641e09 | 1312 | } |
e394114d | 1313 | if (server.aof_state != REDIS_AOF_OFF) { |
adae85cd | 1314 | /* Kill the AOF saving child as the AOF we already have may be longer |
1315 | * but contains the full dataset anyway. */ | |
ff2145ad | 1316 | if (server.aof_child_pid != -1) { |
adae85cd | 1317 | redisLog(REDIS_WARNING, |
1318 | "There is a child rewriting the AOF. Killing it!"); | |
ff2145ad | 1319 | kill(server.aof_child_pid,SIGKILL); |
adae85cd | 1320 | } |
e2641e09 | 1321 | /* Append only file: fsync() the AOF and exit */ |
adae85cd | 1322 | redisLog(REDIS_NOTICE,"Calling fsync() on the AOF file."); |
ff2145ad | 1323 | aof_fsync(server.aof_fd); |
adae85cd | 1324 | } |
4ab8695d | 1325 | if ((server.saveparamslen > 0 && !nosave) || save) { |
adae85cd | 1326 | redisLog(REDIS_NOTICE,"Saving the final RDB snapshot before exiting."); |
e2641e09 | 1327 | /* Snapshotting. Perform a SYNC SAVE and exit */ |
f48cd4b9 | 1328 | if (rdbSave(server.rdb_filename) != REDIS_OK) { |
e2641e09 | 1329 | /* Ooops.. error saving! The best we can do is to continue |
1330 | * operating. Note that if there was a background saving process, | |
1331 | * in the next cron() Redis will be notified that the background | |
1332 | * saving aborted, handling special stuff like slaves pending for | |
1333 | * synchronization... */ | |
adae85cd | 1334 | redisLog(REDIS_WARNING,"Error trying to save the DB, can't exit."); |
e2641e09 | 1335 | return REDIS_ERR; |
1336 | } | |
1337 | } | |
adae85cd | 1338 | if (server.daemonize) { |
1339 | redisLog(REDIS_NOTICE,"Removing the pid file."); | |
1340 | unlink(server.pidfile); | |
1341 | } | |
80e87a46 | 1342 | /* Close the listening sockets. Apparently this allows faster restarts. */ |
1343 | if (server.ipfd != -1) close(server.ipfd); | |
1344 | if (server.sofd != -1) close(server.sofd); | |
56209f72 NF |
1345 | if (server.unixsocket) { |
1346 | redisLog(REDIS_NOTICE,"Removing the unix socket file."); | |
1347 | unlink(server.unixsocket); /* don't care if this fails */ | |
1348 | } | |
80e87a46 | 1349 | |
adae85cd | 1350 | redisLog(REDIS_WARNING,"Redis is now ready to exit, bye bye..."); |
e2641e09 | 1351 | return REDIS_OK; |
1352 | } | |
1353 | ||
1354 | /*================================== Commands =============================== */ | |
1355 | ||
1356 | void authCommand(redisClient *c) { | |
ab52d1f4 | 1357 | if (!server.requirepass) { |
1358 | addReplyError(c,"Client sent AUTH, but no password is set"); | |
1359 | } else if (!strcmp(c->argv[1]->ptr, server.requirepass)) { | |
e2641e09 | 1360 | c->authenticated = 1; |
1361 | addReply(c,shared.ok); | |
1362 | } else { | |
1363 | c->authenticated = 0; | |
3ab20376 | 1364 | addReplyError(c,"invalid password"); |
e2641e09 | 1365 | } |
1366 | } | |
1367 | ||
1368 | void pingCommand(redisClient *c) { | |
1369 | addReply(c,shared.pong); | |
1370 | } | |
1371 | ||
1372 | void echoCommand(redisClient *c) { | |
1373 | addReplyBulk(c,c->argv[1]); | |
1374 | } | |
1375 | ||
1376 | /* Convert an amount of bytes into a human readable string in the form | |
1377 | * of 100B, 2G, 100M, 4K, and so forth. */ | |
1378 | void bytesToHuman(char *s, unsigned long long n) { | |
1379 | double d; | |
1380 | ||
1381 | if (n < 1024) { | |
1382 | /* Bytes */ | |
1383 | sprintf(s,"%lluB",n); | |
1384 | return; | |
1385 | } else if (n < (1024*1024)) { | |
1386 | d = (double)n/(1024); | |
1387 | sprintf(s,"%.2fK",d); | |
1388 | } else if (n < (1024LL*1024*1024)) { | |
1389 | d = (double)n/(1024*1024); | |
1390 | sprintf(s,"%.2fM",d); | |
1391 | } else if (n < (1024LL*1024*1024*1024)) { | |
1392 | d = (double)n/(1024LL*1024*1024); | |
1393 | sprintf(s,"%.2fG",d); | |
1394 | } | |
1395 | } | |
1396 | ||
1397 | /* Create the string returned by the INFO command. This is decoupled | |
1398 | * by the INFO command itself as we need to report the same information | |
1399 | * on memory corruption problems. */ | |
1b085c9f | 1400 | sds genRedisInfoString(char *section) { |
1401 | sds info = sdsempty(); | |
e2641e09 | 1402 | time_t uptime = time(NULL)-server.stat_starttime; |
d9cb288c | 1403 | int j, numcommands; |
2b00385d | 1404 | struct rusage self_ru, c_ru; |
7a1fd61e | 1405 | unsigned long lol, bib; |
1b085c9f | 1406 | int allsections = 0, defsections = 0; |
1407 | int sections = 0; | |
1408 | ||
1409 | if (section) { | |
1410 | allsections = strcasecmp(section,"all") == 0; | |
0d808ef2 | 1411 | defsections = strcasecmp(section,"default") == 0; |
1b085c9f | 1412 | } |
2b00385d | 1413 | |
1414 | getrusage(RUSAGE_SELF, &self_ru); | |
1415 | getrusage(RUSAGE_CHILDREN, &c_ru); | |
7a1fd61e | 1416 | getClientsMaxBuffers(&lol,&bib); |
1b085c9f | 1417 | |
1418 | /* Server */ | |
1419 | if (allsections || defsections || !strcasecmp(section,"server")) { | |
1420 | if (sections++) info = sdscat(info,"\r\n"); | |
e2641e09 | 1421 | info = sdscatprintf(info, |
1b085c9f | 1422 | "# Server\r\n" |
1423 | "redis_version:%s\r\n" | |
1424 | "redis_git_sha1:%s\r\n" | |
1425 | "redis_git_dirty:%d\r\n" | |
1426 | "arch_bits:%s\r\n" | |
1427 | "multiplexing_api:%s\r\n" | |
1428 | "process_id:%ld\r\n" | |
1429 | "tcp_port:%d\r\n" | |
1430 | "uptime_in_seconds:%ld\r\n" | |
1431 | "uptime_in_days:%ld\r\n" | |
1432 | "lru_clock:%ld\r\n", | |
1433 | REDIS_VERSION, | |
1434 | redisGitSHA1(), | |
1435 | strtol(redisGitDirty(),NULL,10) > 0, | |
1436 | (sizeof(long) == 8) ? "64" : "32", | |
1437 | aeGetApiName(), | |
1438 | (long) getpid(), | |
1439 | server.port, | |
1440 | uptime, | |
1441 | uptime/(3600*24), | |
1442 | (unsigned long) server.lruclock); | |
1443 | } | |
1444 | ||
1445 | /* Clients */ | |
1446 | if (allsections || defsections || !strcasecmp(section,"clients")) { | |
1447 | if (sections++) info = sdscat(info,"\r\n"); | |
1448 | info = sdscatprintf(info, | |
1449 | "# Clients\r\n" | |
1450 | "connected_clients:%d\r\n" | |
1451 | "client_longest_output_list:%lu\r\n" | |
1452 | "client_biggest_input_buf:%lu\r\n" | |
1453 | "blocked_clients:%d\r\n", | |
1454 | listLength(server.clients)-listLength(server.slaves), | |
1455 | lol, bib, | |
1456 | server.bpop_blocked_clients); | |
1457 | } | |
1458 | ||
1459 | /* Memory */ | |
1460 | if (allsections || defsections || !strcasecmp(section,"memory")) { | |
17b24ff3 | 1461 | char hmem[64]; |
1462 | char peak_hmem[64]; | |
1463 | ||
1464 | bytesToHuman(hmem,zmalloc_used_memory()); | |
1465 | bytesToHuman(peak_hmem,server.stat_peak_memory); | |
1b085c9f | 1466 | if (sections++) info = sdscat(info,"\r\n"); |
1467 | info = sdscatprintf(info, | |
1468 | "# Memory\r\n" | |
1469 | "used_memory:%zu\r\n" | |
1470 | "used_memory_human:%s\r\n" | |
1471 | "used_memory_rss:%zu\r\n" | |
17b24ff3 | 1472 | "used_memory_peak:%zu\r\n" |
1473 | "used_memory_peak_human:%s\r\n" | |
8c3402df | 1474 | "used_memory_lua:%lld\r\n" |
1b085c9f | 1475 | "mem_fragmentation_ratio:%.2f\r\n" |
32f99c51 | 1476 | "mem_allocator:%s\r\n", |
1b085c9f | 1477 | zmalloc_used_memory(), |
1478 | hmem, | |
1479 | zmalloc_get_rss(), | |
17b24ff3 | 1480 | server.stat_peak_memory, |
1481 | peak_hmem, | |
8c3402df | 1482 | ((long long)lua_gc(server.lua,LUA_GCCOUNT,0))*1024LL, |
1b085c9f | 1483 | zmalloc_get_fragmentation_ratio(), |
fec5a664 | 1484 | ZMALLOC_LIB |
12ebe2ac | 1485 | ); |
0d808ef2 | 1486 | } |
1487 | ||
1b085c9f | 1488 | /* Persistence */ |
1489 | if (allsections || defsections || !strcasecmp(section,"persistence")) { | |
1490 | if (sections++) info = sdscat(info,"\r\n"); | |
e2641e09 | 1491 | info = sdscatprintf(info, |
1b085c9f | 1492 | "# Persistence\r\n" |
1493 | "loading:%d\r\n" | |
1494 | "aof_enabled:%d\r\n" | |
1495 | "changes_since_last_save:%lld\r\n" | |
1496 | "bgsave_in_progress:%d\r\n" | |
1497 | "last_save_time:%ld\r\n" | |
1498 | "bgrewriteaof_in_progress:%d\r\n", | |
1499 | server.loading, | |
e394114d | 1500 | server.aof_state != REDIS_AOF_OFF, |
1b085c9f | 1501 | server.dirty, |
f48cd4b9 | 1502 | server.rdb_child_pid != -1, |
1b085c9f | 1503 | server.lastsave, |
ff2145ad | 1504 | server.aof_child_pid != -1); |
1b085c9f | 1505 | |
e394114d | 1506 | if (server.aof_state != REDIS_AOF_OFF) { |
d630abcd | 1507 | info = sdscatprintf(info, |
1508 | "aof_current_size:%lld\r\n" | |
1509 | "aof_base_size:%lld\r\n" | |
e7ef418c | 1510 | "aof_pending_rewrite:%d\r\n" |
1511 | "aof_buffer_length:%zu\r\n" | |
1512 | "aof_pending_bio_fsync:%llu\r\n", | |
2c915bcf | 1513 | (long long) server.aof_current_size, |
1514 | (long long) server.aof_rewrite_base_size, | |
1515 | server.aof_rewrite_scheduled, | |
ff2145ad | 1516 | sdslen(server.aof_buf), |
e7ef418c | 1517 | bioPendingJobsOfType(REDIS_BIO_AOF_FSYNC)); |
d630abcd | 1518 | } |
1519 | ||
1b085c9f | 1520 | if (server.loading) { |
1521 | double perc; | |
1522 | time_t eta, elapsed; | |
1523 | off_t remaining_bytes = server.loading_total_bytes- | |
1524 | server.loading_loaded_bytes; | |
1525 | ||
1526 | perc = ((double)server.loading_loaded_bytes / | |
1527 | server.loading_total_bytes) * 100; | |
1528 | ||
1529 | elapsed = time(NULL)-server.loading_start_time; | |
1530 | if (elapsed == 0) { | |
1531 | eta = 1; /* A fake 1 second figure if we don't have | |
1532 | enough info */ | |
1533 | } else { | |
1534 | eta = (elapsed*remaining_bytes)/server.loading_loaded_bytes; | |
1535 | } | |
1536 | ||
1537 | info = sdscatprintf(info, | |
1538 | "loading_start_time:%ld\r\n" | |
1539 | "loading_total_bytes:%llu\r\n" | |
1540 | "loading_loaded_bytes:%llu\r\n" | |
1541 | "loading_loaded_perc:%.2f\r\n" | |
1542 | "loading_eta_seconds:%ld\r\n" | |
1543 | ,(unsigned long) server.loading_start_time, | |
1544 | (unsigned long long) server.loading_total_bytes, | |
1545 | (unsigned long long) server.loading_loaded_bytes, | |
1546 | perc, | |
1547 | eta | |
1548 | ); | |
1549 | } | |
e2641e09 | 1550 | } |
1b085c9f | 1551 | |
1b085c9f | 1552 | /* Stats */ |
1553 | if (allsections || defsections || !strcasecmp(section,"stats")) { | |
1554 | if (sections++) info = sdscat(info,"\r\n"); | |
97e7f8ae | 1555 | info = sdscatprintf(info, |
1b085c9f | 1556 | "# Stats\r\n" |
1557 | "total_connections_received:%lld\r\n" | |
1558 | "total_commands_processed:%lld\r\n" | |
3c95e721 | 1559 | "rejected_connections:%lld\r\n" |
1b085c9f | 1560 | "expired_keys:%lld\r\n" |
1561 | "evicted_keys:%lld\r\n" | |
1562 | "keyspace_hits:%lld\r\n" | |
1563 | "keyspace_misses:%lld\r\n" | |
1564 | "pubsub_channels:%ld\r\n" | |
615e414c | 1565 | "pubsub_patterns:%u\r\n" |
1566 | "latest_fork_usec:%lld\r\n", | |
1b085c9f | 1567 | server.stat_numconnections, |
1568 | server.stat_numcommands, | |
3c95e721 | 1569 | server.stat_rejected_conn, |
1b085c9f | 1570 | server.stat_expiredkeys, |
1571 | server.stat_evictedkeys, | |
1572 | server.stat_keyspace_hits, | |
1573 | server.stat_keyspace_misses, | |
1574 | dictSize(server.pubsub_channels), | |
615e414c | 1575 | listLength(server.pubsub_patterns), |
1576 | server.stat_fork_time); | |
97e7f8ae | 1577 | } |
67a1810b | 1578 | |
1b085c9f | 1579 | /* Replication */ |
1580 | if (allsections || defsections || !strcasecmp(section,"replication")) { | |
1581 | if (sections++) info = sdscat(info,"\r\n"); | |
1582 | info = sdscatprintf(info, | |
1583 | "# Replication\r\n" | |
1584 | "role:%s\r\n", | |
1585 | server.masterhost == NULL ? "master" : "slave"); | |
1586 | if (server.masterhost) { | |
1587 | info = sdscatprintf(info, | |
1588 | "master_host:%s\r\n" | |
1589 | "master_port:%d\r\n" | |
1590 | "master_link_status:%s\r\n" | |
1591 | "master_last_io_seconds_ago:%d\r\n" | |
1592 | "master_sync_in_progress:%d\r\n" | |
1593 | ,server.masterhost, | |
1594 | server.masterport, | |
1844f990 | 1595 | (server.repl_state == REDIS_REPL_CONNECTED) ? |
1b085c9f | 1596 | "up" : "down", |
1597 | server.master ? | |
1598 | ((int)(time(NULL)-server.master->lastinteraction)) : -1, | |
1844f990 | 1599 | server.repl_state == REDIS_REPL_TRANSFER |
1b085c9f | 1600 | ); |
1601 | ||
1844f990 | 1602 | if (server.repl_state == REDIS_REPL_TRANSFER) { |
1b085c9f | 1603 | info = sdscatprintf(info, |
1604 | "master_sync_left_bytes:%ld\r\n" | |
1605 | "master_sync_last_io_seconds_ago:%d\r\n" | |
1606 | ,(long)server.repl_transfer_left, | |
1607 | (int)(time(NULL)-server.repl_transfer_lastio) | |
1608 | ); | |
1609 | } | |
07486df6 | 1610 | |
1844f990 | 1611 | if (server.repl_state != REDIS_REPL_CONNECTED) { |
07486df6 | 1612 | info = sdscatprintf(info, |
1613 | "master_link_down_since_seconds:%ld\r\n", | |
1614 | (long)time(NULL)-server.repl_down_since); | |
1615 | } | |
67a1810b | 1616 | } |
1b085c9f | 1617 | info = sdscatprintf(info, |
1618 | "connected_slaves:%d\r\n", | |
1619 | listLength(server.slaves)); | |
503d87a8 | 1620 | if (listLength(server.slaves)) { |
1621 | int slaveid = 0; | |
1622 | listNode *ln; | |
1623 | listIter li; | |
1624 | ||
1625 | listRewind(server.slaves,&li); | |
1626 | while((ln = listNext(&li))) { | |
1627 | redisClient *slave = listNodeValue(ln); | |
1628 | char *state = NULL; | |
1629 | char ip[32]; | |
1630 | int port; | |
1631 | ||
1632 | if (anetPeerToString(slave->fd,ip,&port) == -1) continue; | |
1633 | switch(slave->replstate) { | |
1634 | case REDIS_REPL_WAIT_BGSAVE_START: | |
1635 | case REDIS_REPL_WAIT_BGSAVE_END: | |
1636 | state = "wait_bgsave"; | |
1637 | break; | |
1638 | case REDIS_REPL_SEND_BULK: | |
1639 | state = "send_bulk"; | |
1640 | break; | |
1641 | case REDIS_REPL_ONLINE: | |
1642 | state = "online"; | |
1643 | break; | |
1644 | } | |
1645 | if (state == NULL) continue; | |
1646 | info = sdscatprintf(info,"slave%d:%s,%d,%s\r\n", | |
1647 | slaveid,ip,port,state); | |
1648 | slaveid++; | |
1649 | } | |
1650 | } | |
67a1810b | 1651 | } |
67a1810b | 1652 | |
0d808ef2 | 1653 | /* CPU */ |
1654 | if (allsections || defsections || !strcasecmp(section,"cpu")) { | |
1b085c9f | 1655 | if (sections++) info = sdscat(info,"\r\n"); |
1656 | info = sdscatprintf(info, | |
0d808ef2 | 1657 | "# CPU\r\n" |
1b085c9f | 1658 | "used_cpu_sys:%.2f\r\n" |
1659 | "used_cpu_user:%.2f\r\n" | |
5a9dd97c | 1660 | "used_cpu_sys_children:%.2f\r\n" |
1661 | "used_cpu_user_children:%.2f\r\n", | |
1b085c9f | 1662 | (float)self_ru.ru_stime.tv_sec+(float)self_ru.ru_stime.tv_usec/1000000, |
d83eda48 | 1663 | (float)self_ru.ru_utime.tv_sec+(float)self_ru.ru_utime.tv_usec/1000000, |
1664 | (float)c_ru.ru_stime.tv_sec+(float)c_ru.ru_stime.tv_usec/1000000, | |
1665 | (float)c_ru.ru_utime.tv_sec+(float)c_ru.ru_utime.tv_usec/1000000); | |
0d808ef2 | 1666 | } |
1b085c9f | 1667 | |
0d808ef2 | 1668 | /* cmdtime */ |
1669 | if (allsections || !strcasecmp(section,"commandstats")) { | |
1670 | if (sections++) info = sdscat(info,"\r\n"); | |
1671 | info = sdscatprintf(info, "# Commandstats\r\n"); | |
d7ed7fd2 | 1672 | numcommands = sizeof(redisCommandTable)/sizeof(struct redisCommand); |
1b085c9f | 1673 | for (j = 0; j < numcommands; j++) { |
d7ed7fd2 | 1674 | struct redisCommand *c = redisCommandTable+j; |
0d808ef2 | 1675 | |
d7ed7fd2 | 1676 | if (!c->calls) continue; |
1677 | info = sdscatprintf(info, | |
1678 | "cmdstat_%s:calls=%lld,usec=%lld,usec_per_call=%.2f\r\n", | |
1679 | c->name, c->calls, c->microseconds, | |
1680 | (c->calls == 0) ? 0 : ((float)c->microseconds/c->calls)); | |
1b085c9f | 1681 | } |
d9cb288c | 1682 | } |
1683 | ||
1c708b25 SS |
1684 | /* Clusetr */ |
1685 | if (allsections || defsections || !strcasecmp(section,"cluster")) { | |
1686 | if (sections++) info = sdscat(info,"\r\n"); | |
1687 | info = sdscatprintf(info, | |
1688 | "# Cluster\r\n" | |
1689 | "cluster_enabled:%d\r\n", | |
1690 | server.cluster_enabled); | |
1691 | } | |
1692 | ||
1b085c9f | 1693 | /* Key space */ |
1694 | if (allsections || defsections || !strcasecmp(section,"keyspace")) { | |
1695 | if (sections++) info = sdscat(info,"\r\n"); | |
1696 | info = sdscatprintf(info, "# Keyspace\r\n"); | |
1697 | for (j = 0; j < server.dbnum; j++) { | |
1698 | long long keys, vkeys; | |
e2641e09 | 1699 | |
1b085c9f | 1700 | keys = dictSize(server.db[j].dict); |
1701 | vkeys = dictSize(server.db[j].expires); | |
1702 | if (keys || vkeys) { | |
1703 | info = sdscatprintf(info, "db%d:keys=%lld,expires=%lld\r\n", | |
1704 | j, keys, vkeys); | |
1705 | } | |
e2641e09 | 1706 | } |
1707 | } | |
1708 | return info; | |
1709 | } | |
1710 | ||
1711 | void infoCommand(redisClient *c) { | |
1b085c9f | 1712 | char *section = c->argc == 2 ? c->argv[1]->ptr : "default"; |
1713 | ||
1714 | if (c->argc > 2) { | |
1715 | addReply(c,shared.syntaxerr); | |
1716 | return; | |
1717 | } | |
1718 | sds info = genRedisInfoString(section); | |
e2641e09 | 1719 | addReplySds(c,sdscatprintf(sdsempty(),"$%lu\r\n", |
1720 | (unsigned long)sdslen(info))); | |
1721 | addReplySds(c,info); | |
1722 | addReply(c,shared.crlf); | |
1723 | } | |
1724 | ||
1725 | void monitorCommand(redisClient *c) { | |
1726 | /* ignore MONITOR if aleady slave or in monitor mode */ | |
1727 | if (c->flags & REDIS_SLAVE) return; | |
1728 | ||
1729 | c->flags |= (REDIS_SLAVE|REDIS_MONITOR); | |
1730 | c->slaveseldb = 0; | |
1731 | listAddNodeTail(server.monitors,c); | |
1732 | addReply(c,shared.ok); | |
1733 | } | |
1734 | ||
1735 | /* ============================ Maxmemory directive ======================== */ | |
1736 | ||
e2641e09 | 1737 | /* This function gets called when 'maxmemory' is set on the config file to limit |
1738 | * the max memory used by the server, and we are out of memory. | |
1739 | * This function will try to, in order: | |
1740 | * | |
1741 | * - Free objects from the free list | |
1742 | * - Try to remove keys with an EXPIRE set | |
1743 | * | |
1744 | * It is not possible to free enough memory to reach used-memory < maxmemory | |
1745 | * the server will start refusing commands that will enlarge even more the | |
1746 | * memory usage. | |
1747 | */ | |
1748 | void freeMemoryIfNeeded(void) { | |
165346ca | 1749 | /* Remove keys accordingly to the active policy as long as we are |
1750 | * over the memory limit. */ | |
5402c426 | 1751 | if (server.maxmemory_policy == REDIS_MAXMEMORY_NO_EVICTION) return; |
1752 | ||
ca734d17 | 1753 | while (server.maxmemory && zmalloc_used_memory() > server.maxmemory) { |
e2641e09 | 1754 | int j, k, freed = 0; |
1755 | ||
165346ca | 1756 | for (j = 0; j < server.dbnum; j++) { |
10c12171 | 1757 | long bestval = 0; /* just to prevent warning */ |
165346ca | 1758 | sds bestkey = NULL; |
1759 | struct dictEntry *de; | |
1760 | redisDb *db = server.db+j; | |
1761 | dict *dict; | |
1762 | ||
1763 | if (server.maxmemory_policy == REDIS_MAXMEMORY_ALLKEYS_LRU || | |
1764 | server.maxmemory_policy == REDIS_MAXMEMORY_ALLKEYS_RANDOM) | |
1765 | { | |
1766 | dict = server.db[j].dict; | |
1767 | } else { | |
1768 | dict = server.db[j].expires; | |
1769 | } | |
1770 | if (dictSize(dict) == 0) continue; | |
1771 | ||
1772 | /* volatile-random and allkeys-random policy */ | |
1773 | if (server.maxmemory_policy == REDIS_MAXMEMORY_ALLKEYS_RANDOM || | |
1774 | server.maxmemory_policy == REDIS_MAXMEMORY_VOLATILE_RANDOM) | |
1775 | { | |
1776 | de = dictGetRandomKey(dict); | |
c0ba9ebe | 1777 | bestkey = dictGetKey(de); |
165346ca | 1778 | } |
1779 | ||
1780 | /* volatile-lru and allkeys-lru policy */ | |
1781 | else if (server.maxmemory_policy == REDIS_MAXMEMORY_ALLKEYS_LRU || | |
1782 | server.maxmemory_policy == REDIS_MAXMEMORY_VOLATILE_LRU) | |
1783 | { | |
1784 | for (k = 0; k < server.maxmemory_samples; k++) { | |
1785 | sds thiskey; | |
1786 | long thisval; | |
1787 | robj *o; | |
1788 | ||
1789 | de = dictGetRandomKey(dict); | |
c0ba9ebe | 1790 | thiskey = dictGetKey(de); |
0c2f75c6 | 1791 | /* When policy is volatile-lru we need an additonal lookup |
1792 | * to locate the real key, as dict is set to db->expires. */ | |
1793 | if (server.maxmemory_policy == REDIS_MAXMEMORY_VOLATILE_LRU) | |
1794 | de = dictFind(db->dict, thiskey); | |
c0ba9ebe | 1795 | o = dictGetVal(de); |
165346ca | 1796 | thisval = estimateObjectIdleTime(o); |
1797 | ||
1798 | /* Higher idle time is better candidate for deletion */ | |
1799 | if (bestkey == NULL || thisval > bestval) { | |
1800 | bestkey = thiskey; | |
1801 | bestval = thisval; | |
1802 | } | |
1803 | } | |
1804 | } | |
1805 | ||
1806 | /* volatile-ttl */ | |
1807 | else if (server.maxmemory_policy == REDIS_MAXMEMORY_VOLATILE_TTL) { | |
1808 | for (k = 0; k < server.maxmemory_samples; k++) { | |
1809 | sds thiskey; | |
1810 | long thisval; | |
1811 | ||
1812 | de = dictGetRandomKey(dict); | |
c0ba9ebe | 1813 | thiskey = dictGetKey(de); |
1814 | thisval = (long) dictGetVal(de); | |
165346ca | 1815 | |
1816 | /* Expire sooner (minor expire unix timestamp) is better | |
1817 | * candidate for deletion */ | |
1818 | if (bestkey == NULL || thisval < bestval) { | |
1819 | bestkey = thiskey; | |
1820 | bestval = thisval; | |
1821 | } | |
1822 | } | |
1823 | } | |
1824 | ||
1825 | /* Finally remove the selected key. */ | |
1826 | if (bestkey) { | |
1827 | robj *keyobj = createStringObject(bestkey,sdslen(bestkey)); | |
452229b6 | 1828 | propagateExpire(db,keyobj); |
165346ca | 1829 | dbDelete(db,keyobj); |
f21779ff | 1830 | server.stat_evictedkeys++; |
165346ca | 1831 | decrRefCount(keyobj); |
1832 | freed++; | |
1833 | } | |
1834 | } | |
1835 | if (!freed) return; /* nothing to free... */ | |
1836 | } | |
e2641e09 | 1837 | } |
1838 | ||
1839 | /* =================================== Main! ================================ */ | |
1840 | ||
1841 | #ifdef __linux__ | |
1842 | int linuxOvercommitMemoryValue(void) { | |
1843 | FILE *fp = fopen("/proc/sys/vm/overcommit_memory","r"); | |
1844 | char buf[64]; | |
1845 | ||
1846 | if (!fp) return -1; | |
1847 | if (fgets(buf,64,fp) == NULL) { | |
1848 | fclose(fp); | |
1849 | return -1; | |
1850 | } | |
1851 | fclose(fp); | |
1852 | ||
1853 | return atoi(buf); | |
1854 | } | |
1855 | ||
1856 | void linuxOvercommitMemoryWarning(void) { | |
1857 | if (linuxOvercommitMemoryValue() == 0) { | |
1858 | redisLog(REDIS_WARNING,"WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect."); | |
1859 | } | |
1860 | } | |
1861 | #endif /* __linux__ */ | |
1862 | ||
695fe874 | 1863 | void createPidFile(void) { |
1864 | /* Try to write the pid file in a best-effort way. */ | |
1865 | FILE *fp = fopen(server.pidfile,"w"); | |
1866 | if (fp) { | |
8ce39260 | 1867 | fprintf(fp,"%d\n",(int)getpid()); |
695fe874 | 1868 | fclose(fp); |
1869 | } | |
1870 | } | |
1871 | ||
e2641e09 | 1872 | void daemonize(void) { |
1873 | int fd; | |
e2641e09 | 1874 | |
1875 | if (fork() != 0) exit(0); /* parent exits */ | |
1876 | setsid(); /* create a new session */ | |
1877 | ||
1878 | /* Every output goes to /dev/null. If Redis is daemonized but | |
1879 | * the 'logfile' is set to 'stdout' in the configuration file | |
1880 | * it will not log at all. */ | |
1881 | if ((fd = open("/dev/null", O_RDWR, 0)) != -1) { | |
1882 | dup2(fd, STDIN_FILENO); | |
1883 | dup2(fd, STDOUT_FILENO); | |
1884 | dup2(fd, STDERR_FILENO); | |
1885 | if (fd > STDERR_FILENO) close(fd); | |
1886 | } | |
e2641e09 | 1887 | } |
1888 | ||
1889 | void version() { | |
1890 | printf("Redis server version %s (%s:%d)\n", REDIS_VERSION, | |
1891 | redisGitSHA1(), atoi(redisGitDirty()) > 0); | |
1892 | exit(0); | |
1893 | } | |
1894 | ||
1895 | void usage() { | |
9268a5b5 | 1896 | fprintf(stderr,"Usage: ./redis-server [/path/to/redis.conf] [options]\n"); |
e2641e09 | 1897 | fprintf(stderr," ./redis-server - (read config from stdin)\n"); |
9268a5b5 | 1898 | fprintf(stderr," ./redis-server -v or --version\n"); |
1899 | fprintf(stderr," ./redis-server -h or --help\n\n"); | |
1900 | fprintf(stderr,"Examples:\n"); | |
1901 | fprintf(stderr," ./redis-server (run the server with default conf)\n"); | |
1902 | fprintf(stderr," ./redis-server /etc/redis/6379.conf\n"); | |
1903 | fprintf(stderr," ./redis-server --port 7777\n"); | |
1904 | fprintf(stderr," ./redis-server --port 7777 --slaveof 127.0.0.1 8888\n"); | |
1905 | fprintf(stderr," ./redis-server /etc/myredis.conf --loglevel verbose\n"); | |
e2641e09 | 1906 | exit(1); |
1907 | } | |
1908 | ||
996d503d | 1909 | void redisAsciiArt(void) { |
1910 | #include "asciilogo.h" | |
1911 | char *buf = zmalloc(1024*16); | |
1912 | ||
1913 | snprintf(buf,1024*16,ascii_logo, | |
1914 | REDIS_VERSION, | |
1915 | redisGitSHA1(), | |
1916 | strtol(redisGitDirty(),NULL,10) > 0, | |
1917 | (sizeof(long) == 8) ? "64" : "32", | |
1918 | server.cluster_enabled ? "cluster" : "stand alone", | |
1919 | server.port, | |
1920 | (long) getpid() | |
1921 | ); | |
1922 | redisLogRaw(REDIS_NOTICE|REDIS_LOG_RAW,buf); | |
1923 | zfree(buf); | |
1924 | } | |
1925 | ||
e2641e09 | 1926 | #ifdef HAVE_BACKTRACE |
633a9410 | 1927 | static void *getMcontextEip(ucontext_t *uc) { |
e2641e09 | 1928 | #if defined(__FreeBSD__) |
1929 | return (void*) uc->uc_mcontext.mc_eip; | |
1930 | #elif defined(__dietlibc__) | |
1931 | return (void*) uc->uc_mcontext.eip; | |
1932 | #elif defined(__APPLE__) && !defined(MAC_OS_X_VERSION_10_6) | |
1933 | #if __x86_64__ | |
1934 | return (void*) uc->uc_mcontext->__ss.__rip; | |
ef9444e0 | 1935 | #elif __i386__ |
e2641e09 | 1936 | return (void*) uc->uc_mcontext->__ss.__eip; |
ef9444e0 KT |
1937 | #else |
1938 | return (void*) uc->uc_mcontext->__ss.__srr0; | |
e2641e09 | 1939 | #endif |
1940 | #elif defined(__APPLE__) && defined(MAC_OS_X_VERSION_10_6) | |
1941 | #if defined(_STRUCT_X86_THREAD_STATE64) && !defined(__i386__) | |
1942 | return (void*) uc->uc_mcontext->__ss.__rip; | |
1943 | #else | |
1944 | return (void*) uc->uc_mcontext->__ss.__eip; | |
1945 | #endif | |
3688d7f3 | 1946 | #elif defined(__i386__) |
1947 | return (void*) uc->uc_mcontext.gregs[14]; /* Linux 32 */ | |
1948 | #elif defined(__X86_64__) || defined(__x86_64__) | |
1949 | return (void*) uc->uc_mcontext.gregs[16]; /* Linux 64 */ | |
e2641e09 | 1950 | #elif defined(__ia64__) /* Linux IA64 */ |
1951 | return (void*) uc->uc_mcontext.sc_ip; | |
1952 | #else | |
1953 | return NULL; | |
1954 | #endif | |
1955 | } | |
1956 | ||
fa5af017 | 1957 | void bugReportStart(void) { |
1958 | if (server.bug_report_start == 0) { | |
1959 | redisLog(REDIS_WARNING, | |
1960 | "=== REDIS BUG REPORT START: Cut & paste starting from here ==="); | |
1961 | server.bug_report_start = 1; | |
1962 | } | |
1963 | } | |
1964 | ||
633a9410 | 1965 | static void sigsegvHandler(int sig, siginfo_t *info, void *secret) { |
e2641e09 | 1966 | void *trace[100]; |
1967 | char **messages = NULL; | |
1968 | int i, trace_size = 0; | |
1969 | ucontext_t *uc = (ucontext_t*) secret; | |
fa5af017 | 1970 | sds infostring, clients; |
da47440d | 1971 | struct sigaction act; |
e2641e09 | 1972 | REDIS_NOTUSED(info); |
1973 | ||
fa5af017 | 1974 | bugReportStart(); |
e2641e09 | 1975 | redisLog(REDIS_WARNING, |
fa5af017 | 1976 | " Redis %s crashed by signal: %d", REDIS_VERSION, sig); |
1977 | redisLog(REDIS_WARNING, | |
1978 | " Failed assertion: %s (%s:%d)", server.assert_failed, | |
1979 | server.assert_file, server.assert_line); | |
e2641e09 | 1980 | |
fa5af017 | 1981 | /* Generate the stack trace */ |
e2641e09 | 1982 | trace_size = backtrace(trace, 100); |
fa5af017 | 1983 | |
e2641e09 | 1984 | /* overwrite sigaction with caller's address */ |
1985 | if (getMcontextEip(uc) != NULL) { | |
1986 | trace[1] = getMcontextEip(uc); | |
1987 | } | |
1988 | messages = backtrace_symbols(trace, trace_size); | |
fa5af017 | 1989 | redisLog(REDIS_WARNING, "--- STACK TRACE"); |
e2641e09 | 1990 | for (i=1; i<trace_size; ++i) |
1991 | redisLog(REDIS_WARNING,"%s", messages[i]); | |
1992 | ||
fa5af017 | 1993 | /* Log INFO and CLIENT LIST */ |
1994 | redisLog(REDIS_WARNING, "--- INFO OUTPUT"); | |
1995 | infostring = genRedisInfoString("all"); | |
1996 | redisLogRaw(REDIS_WARNING, infostring); | |
1997 | redisLog(REDIS_WARNING, "--- CLIENT LIST OUTPUT"); | |
1998 | clients = getAllClientsInfoString(); | |
1999 | redisLogRaw(REDIS_WARNING, clients); | |
2000 | /* Don't sdsfree() strings to avoid a crash. Memory may be corrupted. */ | |
2001 | ||
2002 | redisLog(REDIS_WARNING, | |
2003 | "=== REDIS BUG REPORT END. Make sure to include from START to END. ===\n\n" | |
2004 | " Please report the crash opening an issue on github:\n\n" | |
2005 | " http://github.com/antirez/redis/issues\n\n" | |
2006 | ); | |
e2641e09 | 2007 | /* free(messages); Don't call free() with possibly corrupted memory. */ |
695fe874 | 2008 | if (server.daemonize) unlink(server.pidfile); |
da47440d | 2009 | |
2010 | /* Make sure we exit with the right signal at the end. So for instance | |
2011 | * the core will be dumped if enabled. */ | |
2012 | sigemptyset (&act.sa_mask); | |
2013 | /* When the SA_SIGINFO flag is set in sa_flags then sa_sigaction | |
2014 | * is used. Otherwise, sa_handler is used */ | |
2015 | act.sa_flags = SA_NODEFER | SA_ONSTACK | SA_RESETHAND; | |
2016 | act.sa_handler = SIG_DFL; | |
2017 | sigaction (sig, &act, NULL); | |
2018 | kill(getpid(),sig); | |
e2641e09 | 2019 | } |
633a9410 | 2020 | #endif /* HAVE_BACKTRACE */ |
e2641e09 | 2021 | |
633a9410 | 2022 | static void sigtermHandler(int sig) { |
e2641e09 | 2023 | REDIS_NOTUSED(sig); |
2024 | ||
633a9410 | 2025 | redisLog(REDIS_WARNING,"Received SIGTERM, scheduling shutdown..."); |
e2641e09 | 2026 | server.shutdown_asap = 1; |
2027 | } | |
2028 | ||
633a9410 | 2029 | void setupSignalHandlers(void) { |
e2641e09 | 2030 | struct sigaction act; |
2031 | ||
633a9410 PN |
2032 | /* When the SA_SIGINFO flag is set in sa_flags then sa_sigaction is used. |
2033 | * Otherwise, sa_handler is used. */ | |
2034 | sigemptyset(&act.sa_mask); | |
e2641e09 | 2035 | act.sa_flags = SA_NODEFER | SA_ONSTACK | SA_RESETHAND; |
2036 | act.sa_handler = sigtermHandler; | |
633a9410 | 2037 | sigaction(SIGTERM, &act, NULL); |
e2641e09 | 2038 | |
633a9410 PN |
2039 | #ifdef HAVE_BACKTRACE |
2040 | sigemptyset(&act.sa_mask); | |
2041 | act.sa_flags = SA_NODEFER | SA_ONSTACK | SA_RESETHAND | SA_SIGINFO; | |
2042 | act.sa_sigaction = sigsegvHandler; | |
2043 | sigaction(SIGSEGV, &act, NULL); | |
2044 | sigaction(SIGBUS, &act, NULL); | |
2045 | sigaction(SIGFPE, &act, NULL); | |
2046 | sigaction(SIGILL, &act, NULL); | |
2047 | #endif | |
2048 | return; | |
e2641e09 | 2049 | } |
e2641e09 | 2050 | |
39ca1713 | 2051 | int main(int argc, char **argv) { |
2052 | long long start; | |
2053 | ||
2054 | zmalloc_enable_thread_safeness(); | |
2055 | initServerConfig(); | |
67c6f0f6 | 2056 | if (argc >= 2) { |
2057 | int j = 1; /* First option to parse in argv[] */ | |
2058 | sds options = sdsempty(); | |
2059 | char *configfile = NULL; | |
2060 | ||
2061 | /* Handle special options --help and --version */ | |
39ca1713 | 2062 | if (strcmp(argv[1], "-v") == 0 || |
2063 | strcmp(argv[1], "--version") == 0) version(); | |
4c8bd905 | 2064 | if (strcmp(argv[1], "--help") == 0 || |
2065 | strcmp(argv[1], "-h") == 0) usage(); | |
67c6f0f6 | 2066 | /* First argument is the config file name? */ |
2067 | if (argv[j][0] != '-' || argv[j][1] != '-') | |
2068 | configfile = argv[j++]; | |
2069 | /* All the other options are parsed and conceptually appended to the | |
2070 | * configuration file. For instance --port 6380 will generate the | |
2071 | * string "port 6380\n" to be parsed after the actual file name | |
2072 | * is parsed, if any. */ | |
2073 | while(j != argc) { | |
2074 | if (argv[j][0] == '-' && argv[j][1] == '-') { | |
2075 | /* Option name */ | |
2076 | if (sdslen(options)) options = sdscat(options,"\n"); | |
2077 | options = sdscat(options,argv[j]+2); | |
2078 | options = sdscat(options," "); | |
2079 | } else { | |
2080 | /* Option argument */ | |
2081 | options = sdscatrepr(options,argv[j],strlen(argv[j])); | |
2082 | options = sdscat(options," "); | |
2083 | } | |
2084 | j++; | |
2085 | } | |
39ca1713 | 2086 | resetServerSaveParams(); |
67c6f0f6 | 2087 | loadServerConfig(configfile,options); |
2088 | sdsfree(options); | |
39ca1713 | 2089 | } else { |
2090 | redisLog(REDIS_WARNING,"Warning: no config file specified, using the default config. In order to specify a config file use 'redis-server /path/to/redis.conf'"); | |
2091 | } | |
2092 | if (server.daemonize) daemonize(); | |
2093 | initServer(); | |
2094 | if (server.daemonize) createPidFile(); | |
2095 | redisAsciiArt(); | |
27ccb94a | 2096 | redisLog(REDIS_WARNING,"Server started, Redis version " REDIS_VERSION); |
39ca1713 | 2097 | #ifdef __linux__ |
2098 | linuxOvercommitMemoryWarning(); | |
2099 | #endif | |
2100 | start = ustime(); | |
e394114d | 2101 | if (server.aof_state == REDIS_AOF_ON) { |
2c915bcf | 2102 | if (loadAppendOnlyFile(server.aof_filename) == REDIS_OK) |
39ca1713 | 2103 | redisLog(REDIS_NOTICE,"DB loaded from append only file: %.3f seconds",(float)(ustime()-start)/1000000); |
2104 | } else { | |
f48cd4b9 | 2105 | if (rdbLoad(server.rdb_filename) == REDIS_OK) { |
39ca1713 | 2106 | redisLog(REDIS_NOTICE,"DB loaded from disk: %.3f seconds", |
2107 | (float)(ustime()-start)/1000000); | |
2108 | } else if (errno != ENOENT) { | |
2109 | redisLog(REDIS_WARNING,"Fatal error loading the DB. Exiting."); | |
2110 | exit(1); | |
2111 | } | |
2112 | } | |
2113 | if (server.ipfd > 0) | |
2114 | redisLog(REDIS_NOTICE,"The server is now ready to accept connections on port %d", server.port); | |
2115 | if (server.sofd > 0) | |
2116 | redisLog(REDIS_NOTICE,"The server is now ready to accept connections at %s", server.unixsocket); | |
2117 | aeSetBeforeSleepProc(server.el,beforeSleep); | |
2118 | aeMain(server.el); | |
2119 | aeDeleteEventLoop(server.el); | |
2120 | return 0; | |
2121 | } | |
2122 | ||
e2641e09 | 2123 | /* The End */ |