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