]>
Commit | Line | Data |
---|---|---|
e2641e09 | 1 | #include "redis.h" |
e2641e09 | 2 | #include <sys/uio.h> |
3 | ||
4 | void *dupClientReplyValue(void *o) { | |
5 | incrRefCount((robj*)o); | |
6 | return o; | |
7 | } | |
8 | ||
9 | int listMatchObjects(void *a, void *b) { | |
10 | return equalStringObjects(a,b); | |
11 | } | |
12 | ||
13 | redisClient *createClient(int fd) { | |
f3357792 | 14 | redisClient *c = zmalloc(sizeof(redisClient)); |
834ef78e | 15 | c->bufpos = 0; |
e2641e09 | 16 | |
0f1d64ca | 17 | /* passing -1 as fd it is possible to create a non connected client. |
18 | * This is useful since all the Redis commands needs to be executed | |
19 | * in the context of a client. When commands are executed in other | |
20 | * contexts (for instance a Lua script) we need a non connected client. */ | |
21 | if (fd != -1) { | |
22 | anetNonBlock(NULL,fd); | |
23 | anetTcpNoDelay(NULL,fd); | |
24 | if (aeCreateFileEvent(server.el,fd,AE_READABLE, | |
25 | readQueryFromClient, c) == AE_ERR) | |
26 | { | |
27 | close(fd); | |
28 | zfree(c); | |
29 | return NULL; | |
30 | } | |
106bd87a PN |
31 | } |
32 | ||
e2641e09 | 33 | selectDb(c,0); |
34 | c->fd = fd; | |
35 | c->querybuf = sdsempty(); | |
cd8788f2 | 36 | c->reqtype = 0; |
e2641e09 | 37 | c->argc = 0; |
38 | c->argv = NULL; | |
2c74a9f9 | 39 | c->cmd = c->lastcmd = NULL; |
cd8788f2 | 40 | c->multibulklen = 0; |
e2641e09 | 41 | c->bulklen = -1; |
e2641e09 | 42 | c->sentlen = 0; |
43 | c->flags = 0; | |
44 | c->lastinteraction = time(NULL); | |
45 | c->authenticated = 0; | |
46 | c->replstate = REDIS_REPL_NONE; | |
47 | c->reply = listCreate(); | |
48 | listSetFreeMethod(c->reply,decrRefCount); | |
49 | listSetDupMethod(c->reply,dupClientReplyValue); | |
e3c51c4b DJMM |
50 | c->bpop.keys = NULL; |
51 | c->bpop.count = 0; | |
52 | c->bpop.timeout = 0; | |
53 | c->bpop.target = NULL; | |
e2641e09 | 54 | c->io_keys = listCreate(); |
55 | c->watched_keys = listCreate(); | |
56 | listSetFreeMethod(c->io_keys,decrRefCount); | |
57 | c->pubsub_channels = dictCreate(&setDictType,NULL); | |
58 | c->pubsub_patterns = listCreate(); | |
59 | listSetFreeMethod(c->pubsub_patterns,decrRefCount); | |
60 | listSetMatchMethod(c->pubsub_patterns,listMatchObjects); | |
7b722727 | 61 | if (fd != -1) listAddNodeTail(server.clients,c); |
e2641e09 | 62 | initClientMultiState(c); |
63 | return c; | |
64 | } | |
65 | ||
a3a323e0 PN |
66 | /* Set the event loop to listen for write events on the client's socket. |
67 | * Typically gets called every time a reply is built. */ | |
4c2e506a | 68 | int _installWriteEvent(redisClient *c) { |
7156f43c | 69 | if (c->flags & REDIS_LUA_CLIENT) return REDIS_OK; |
57b07380 | 70 | if (c->fd <= 0) return REDIS_ERR; |
834ef78e | 71 | if (c->bufpos == 0 && listLength(c->reply) == 0 && |
e2641e09 | 72 | (c->replstate == REDIS_REPL_NONE || |
73 | c->replstate == REDIS_REPL_ONLINE) && | |
74 | aeCreateFileEvent(server.el, c->fd, AE_WRITABLE, | |
834ef78e PN |
75 | sendReplyToClient, c) == AE_ERR) return REDIS_ERR; |
76 | return REDIS_OK; | |
77 | } | |
78 | ||
36c19d03 PN |
79 | /* Create a duplicate of the last object in the reply list when |
80 | * it is not exclusively owned by the reply list. */ | |
81 | robj *dupLastObjectIfNeeded(list *reply) { | |
82 | robj *new, *cur; | |
83 | listNode *ln; | |
84 | redisAssert(listLength(reply) > 0); | |
85 | ln = listLast(reply); | |
86 | cur = listNodeValue(ln); | |
87 | if (cur->refcount > 1) { | |
88 | new = dupStringObject(cur); | |
89 | decrRefCount(cur); | |
90 | listNodeValue(ln) = new; | |
91 | } | |
92 | return listNodeValue(ln); | |
834ef78e PN |
93 | } |
94 | ||
25ef3192 | 95 | /* ----------------------------------------------------------------------------- |
96 | * Low level functions to add more data to output buffers. | |
97 | * -------------------------------------------------------------------------- */ | |
98 | ||
36c19d03 | 99 | int _addReplyToBuffer(redisClient *c, char *s, size_t len) { |
f3357792 | 100 | size_t available = sizeof(c->buf)-c->bufpos; |
36c19d03 | 101 | |
25ef3192 | 102 | if (c->flags & REDIS_CLOSE_AFTER_REPLY) return REDIS_OK; |
103 | ||
36c19d03 PN |
104 | /* If there already are entries in the reply list, we cannot |
105 | * add anything more to the static buffer. */ | |
106 | if (listLength(c->reply) > 0) return REDIS_ERR; | |
107 | ||
108 | /* Check that the buffer has enough space available for this string. */ | |
109 | if (len > available) return REDIS_ERR; | |
e2641e09 | 110 | |
36c19d03 PN |
111 | memcpy(c->buf+c->bufpos,s,len); |
112 | c->bufpos+=len; | |
113 | return REDIS_OK; | |
834ef78e PN |
114 | } |
115 | ||
36c19d03 PN |
116 | void _addReplyObjectToList(redisClient *c, robj *o) { |
117 | robj *tail; | |
25ef3192 | 118 | |
119 | if (c->flags & REDIS_CLOSE_AFTER_REPLY) return; | |
120 | ||
36c19d03 PN |
121 | if (listLength(c->reply) == 0) { |
122 | incrRefCount(o); | |
123 | listAddNodeTail(c->reply,o); | |
124 | } else { | |
125 | tail = listNodeValue(listLast(c->reply)); | |
126 | ||
127 | /* Append to this object when possible. */ | |
128 | if (tail->ptr != NULL && | |
129 | sdslen(tail->ptr)+sdslen(o->ptr) <= REDIS_REPLY_CHUNK_BYTES) | |
130 | { | |
131 | tail = dupLastObjectIfNeeded(c->reply); | |
132 | tail->ptr = sdscatlen(tail->ptr,o->ptr,sdslen(o->ptr)); | |
133 | } else { | |
134 | incrRefCount(o); | |
135 | listAddNodeTail(c->reply,o); | |
136 | } | |
137 | } | |
138 | } | |
834ef78e | 139 | |
36c19d03 PN |
140 | /* This method takes responsibility over the sds. When it is no longer |
141 | * needed it will be free'd, otherwise it ends up in a robj. */ | |
142 | void _addReplySdsToList(redisClient *c, sds s) { | |
143 | robj *tail; | |
25ef3192 | 144 | |
5b94b8ac | 145 | if (c->flags & REDIS_CLOSE_AFTER_REPLY) { |
146 | sdsfree(s); | |
147 | return; | |
148 | } | |
25ef3192 | 149 | |
36c19d03 PN |
150 | if (listLength(c->reply) == 0) { |
151 | listAddNodeTail(c->reply,createObject(REDIS_STRING,s)); | |
152 | } else { | |
153 | tail = listNodeValue(listLast(c->reply)); | |
154 | ||
155 | /* Append to this object when possible. */ | |
156 | if (tail->ptr != NULL && | |
157 | sdslen(tail->ptr)+sdslen(s) <= REDIS_REPLY_CHUNK_BYTES) | |
158 | { | |
159 | tail = dupLastObjectIfNeeded(c->reply); | |
160 | tail->ptr = sdscatlen(tail->ptr,s,sdslen(s)); | |
161 | sdsfree(s); | |
834ef78e | 162 | } else { |
36c19d03 | 163 | listAddNodeTail(c->reply,createObject(REDIS_STRING,s)); |
834ef78e | 164 | } |
36c19d03 PN |
165 | } |
166 | } | |
167 | ||
168 | void _addReplyStringToList(redisClient *c, char *s, size_t len) { | |
169 | robj *tail; | |
25ef3192 | 170 | |
171 | if (c->flags & REDIS_CLOSE_AFTER_REPLY) return; | |
172 | ||
36c19d03 PN |
173 | if (listLength(c->reply) == 0) { |
174 | listAddNodeTail(c->reply,createStringObject(s,len)); | |
834ef78e | 175 | } else { |
36c19d03 PN |
176 | tail = listNodeValue(listLast(c->reply)); |
177 | ||
178 | /* Append to this object when possible. */ | |
179 | if (tail->ptr != NULL && | |
180 | sdslen(tail->ptr)+len <= REDIS_REPLY_CHUNK_BYTES) | |
181 | { | |
182 | tail = dupLastObjectIfNeeded(c->reply); | |
183 | tail->ptr = sdscatlen(tail->ptr,s,len); | |
834ef78e | 184 | } else { |
36c19d03 | 185 | listAddNodeTail(c->reply,createStringObject(s,len)); |
834ef78e PN |
186 | } |
187 | } | |
188 | } | |
e2641e09 | 189 | |
25ef3192 | 190 | /* ----------------------------------------------------------------------------- |
191 | * Higher level functions to queue data on the client output buffer. | |
192 | * The following functions are the ones that commands implementations will call. | |
193 | * -------------------------------------------------------------------------- */ | |
194 | ||
834ef78e | 195 | void addReply(redisClient *c, robj *obj) { |
4c2e506a | 196 | if (_installWriteEvent(c) != REDIS_OK) return; |
4c2e506a | 197 | |
198 | /* This is an important place where we can avoid copy-on-write | |
199 | * when there is a saving child running, avoiding touching the | |
200 | * refcount field of the object if it's not needed. | |
201 | * | |
202 | * If the encoding is RAW and there is room in the static buffer | |
203 | * we'll be able to send the object to the client without | |
204 | * messing with its page. */ | |
205 | if (obj->encoding == REDIS_ENCODING_RAW) { | |
206 | if (_addReplyToBuffer(c,obj->ptr,sdslen(obj->ptr)) != REDIS_OK) | |
207 | _addReplyObjectToList(c,obj); | |
834ef78e | 208 | } else { |
d51ebef5 | 209 | /* FIXME: convert the long into string and use _addReplyToBuffer() |
210 | * instead of calling getDecodedObject. As this place in the | |
211 | * code is too performance critical. */ | |
834ef78e | 212 | obj = getDecodedObject(obj); |
4c2e506a | 213 | if (_addReplyToBuffer(c,obj->ptr,sdslen(obj->ptr)) != REDIS_OK) |
214 | _addReplyObjectToList(c,obj); | |
215 | decrRefCount(obj); | |
e2641e09 | 216 | } |
e2641e09 | 217 | } |
218 | ||
219 | void addReplySds(redisClient *c, sds s) { | |
4c2e506a | 220 | if (_installWriteEvent(c) != REDIS_OK) { |
cd76bb65 PN |
221 | /* The caller expects the sds to be free'd. */ |
222 | sdsfree(s); | |
223 | return; | |
224 | } | |
36c19d03 | 225 | if (_addReplyToBuffer(c,s,sdslen(s)) == REDIS_OK) { |
834ef78e PN |
226 | sdsfree(s); |
227 | } else { | |
36c19d03 PN |
228 | /* This method free's the sds when it is no longer needed. */ |
229 | _addReplySdsToList(c,s); | |
834ef78e | 230 | } |
e2641e09 | 231 | } |
232 | ||
834ef78e | 233 | void addReplyString(redisClient *c, char *s, size_t len) { |
4c2e506a | 234 | if (_installWriteEvent(c) != REDIS_OK) return; |
36c19d03 PN |
235 | if (_addReplyToBuffer(c,s,len) != REDIS_OK) |
236 | _addReplyStringToList(c,s,len); | |
834ef78e | 237 | } |
e2641e09 | 238 | |
3ab20376 PN |
239 | void _addReplyError(redisClient *c, char *s, size_t len) { |
240 | addReplyString(c,"-ERR ",5); | |
241 | addReplyString(c,s,len); | |
242 | addReplyString(c,"\r\n",2); | |
e2641e09 | 243 | } |
244 | ||
3ab20376 PN |
245 | void addReplyError(redisClient *c, char *err) { |
246 | _addReplyError(c,err,strlen(err)); | |
247 | } | |
e2641e09 | 248 | |
3ab20376 | 249 | void addReplyErrorFormat(redisClient *c, const char *fmt, ...) { |
3bb818df | 250 | size_t l, j; |
3ab20376 PN |
251 | va_list ap; |
252 | va_start(ap,fmt); | |
253 | sds s = sdscatvprintf(sdsempty(),fmt,ap); | |
254 | va_end(ap); | |
3bb818df | 255 | /* Make sure there are no newlines in the string, otherwise invalid protocol |
256 | * is emitted. */ | |
257 | l = sdslen(s); | |
258 | for (j = 0; j < l; j++) { | |
259 | if (s[j] == '\r' || s[j] == '\n') s[j] = ' '; | |
260 | } | |
3ab20376 PN |
261 | _addReplyError(c,s,sdslen(s)); |
262 | sdsfree(s); | |
263 | } | |
264 | ||
265 | void _addReplyStatus(redisClient *c, char *s, size_t len) { | |
266 | addReplyString(c,"+",1); | |
267 | addReplyString(c,s,len); | |
268 | addReplyString(c,"\r\n",2); | |
269 | } | |
270 | ||
271 | void addReplyStatus(redisClient *c, char *status) { | |
272 | _addReplyStatus(c,status,strlen(status)); | |
273 | } | |
274 | ||
275 | void addReplyStatusFormat(redisClient *c, const char *fmt, ...) { | |
276 | va_list ap; | |
277 | va_start(ap,fmt); | |
278 | sds s = sdscatvprintf(sdsempty(),fmt,ap); | |
279 | va_end(ap); | |
280 | _addReplyStatus(c,s,sdslen(s)); | |
281 | sdsfree(s); | |
282 | } | |
283 | ||
b301c1fc PN |
284 | /* Adds an empty object to the reply list that will contain the multi bulk |
285 | * length, which is not known when this function is called. */ | |
286 | void *addDeferredMultiBulkLength(redisClient *c) { | |
4c2e506a | 287 | /* Note that we install the write event here even if the object is not |
288 | * ready to be sent, since we are sure that before returning to the | |
289 | * event loop setDeferredMultiBulkLength() will be called. */ | |
290 | if (_installWriteEvent(c) != REDIS_OK) return NULL; | |
36c19d03 | 291 | listAddNodeTail(c->reply,createObject(REDIS_STRING,NULL)); |
b301c1fc PN |
292 | return listLast(c->reply); |
293 | } | |
294 | ||
295 | /* Populate the length object and try glueing it to the next chunk. */ | |
296 | void setDeferredMultiBulkLength(redisClient *c, void *node, long length) { | |
297 | listNode *ln = (listNode*)node; | |
298 | robj *len, *next; | |
299 | ||
300 | /* Abort when *node is NULL (see addDeferredMultiBulkLength). */ | |
301 | if (node == NULL) return; | |
302 | ||
303 | len = listNodeValue(ln); | |
304 | len->ptr = sdscatprintf(sdsempty(),"*%ld\r\n",length); | |
305 | if (ln->next != NULL) { | |
306 | next = listNodeValue(ln->next); | |
36c19d03 | 307 | |
49128f0b | 308 | /* Only glue when the next node is non-NULL (an sds in this case) */ |
36c19d03 | 309 | if (next->ptr != NULL) { |
49128f0b | 310 | len->ptr = sdscatlen(len->ptr,next->ptr,sdslen(next->ptr)); |
b301c1fc PN |
311 | listDelNode(c->reply,ln->next); |
312 | } | |
e2641e09 | 313 | } |
b301c1fc PN |
314 | } |
315 | ||
d51ebef5 | 316 | /* Add a duble as a bulk reply */ |
834ef78e PN |
317 | void addReplyDouble(redisClient *c, double d) { |
318 | char dbuf[128], sbuf[128]; | |
319 | int dlen, slen; | |
320 | dlen = snprintf(dbuf,sizeof(dbuf),"%.17g",d); | |
321 | slen = snprintf(sbuf,sizeof(sbuf),"$%d\r\n%s\r\n",dlen,dbuf); | |
322 | addReplyString(c,sbuf,slen); | |
e2641e09 | 323 | } |
324 | ||
d51ebef5 | 325 | /* Add a long long as integer reply or bulk len / multi bulk count. |
326 | * Basically this is used to output <prefix><long long><crlf>. */ | |
834ef78e | 327 | void _addReplyLongLong(redisClient *c, long long ll, char prefix) { |
e2641e09 | 328 | char buf[128]; |
834ef78e PN |
329 | int len; |
330 | buf[0] = prefix; | |
e2641e09 | 331 | len = ll2string(buf+1,sizeof(buf)-1,ll); |
332 | buf[len+1] = '\r'; | |
333 | buf[len+2] = '\n'; | |
834ef78e | 334 | addReplyString(c,buf,len+3); |
e2641e09 | 335 | } |
336 | ||
834ef78e | 337 | void addReplyLongLong(redisClient *c, long long ll) { |
009db676 | 338 | if (ll == 0) |
339 | addReply(c,shared.czero); | |
340 | else if (ll == 1) | |
341 | addReply(c,shared.cone); | |
342 | else | |
343 | _addReplyLongLong(c,ll,':'); | |
834ef78e | 344 | } |
e2641e09 | 345 | |
0537e7bf PN |
346 | void addReplyMultiBulkLen(redisClient *c, long length) { |
347 | _addReplyLongLong(c,length,'*'); | |
e2641e09 | 348 | } |
349 | ||
d51ebef5 | 350 | /* Create the length prefix of a bulk reply, example: $2234 */ |
e2641e09 | 351 | void addReplyBulkLen(redisClient *c, robj *obj) { |
834ef78e | 352 | size_t len; |
e2641e09 | 353 | |
354 | if (obj->encoding == REDIS_ENCODING_RAW) { | |
355 | len = sdslen(obj->ptr); | |
356 | } else { | |
357 | long n = (long)obj->ptr; | |
358 | ||
359 | /* Compute how many bytes will take this integer as a radix 10 string */ | |
360 | len = 1; | |
361 | if (n < 0) { | |
362 | len++; | |
363 | n = -n; | |
364 | } | |
365 | while((n = n/10) != 0) { | |
366 | len++; | |
367 | } | |
368 | } | |
834ef78e | 369 | _addReplyLongLong(c,len,'$'); |
e2641e09 | 370 | } |
371 | ||
d51ebef5 | 372 | /* Add a Redis Object as a bulk reply */ |
e2641e09 | 373 | void addReplyBulk(redisClient *c, robj *obj) { |
374 | addReplyBulkLen(c,obj); | |
375 | addReply(c,obj); | |
376 | addReply(c,shared.crlf); | |
377 | } | |
378 | ||
d51ebef5 | 379 | /* Add a C buffer as bulk reply */ |
380 | void addReplyBulkCBuffer(redisClient *c, void *p, size_t len) { | |
381 | _addReplyLongLong(c,len,'$'); | |
382 | addReplyString(c,p,len); | |
383 | addReply(c,shared.crlf); | |
384 | } | |
385 | ||
386 | /* Add a C nul term string as bulk reply */ | |
e2641e09 | 387 | void addReplyBulkCString(redisClient *c, char *s) { |
388 | if (s == NULL) { | |
389 | addReply(c,shared.nullbulk); | |
390 | } else { | |
d51ebef5 | 391 | addReplyBulkCBuffer(c,s,strlen(s)); |
e2641e09 | 392 | } |
393 | } | |
394 | ||
d51ebef5 | 395 | /* Add a long long as a bulk reply */ |
396 | void addReplyBulkLongLong(redisClient *c, long long ll) { | |
397 | char buf[64]; | |
398 | int len; | |
399 | ||
400 | len = ll2string(buf,64,ll); | |
401 | addReplyBulkCBuffer(c,buf,len); | |
402 | } | |
403 | ||
ab17b909 | 404 | static void acceptCommonHandler(int fd) { |
e2641e09 | 405 | redisClient *c; |
ab17b909 | 406 | if ((c = createClient(fd)) == NULL) { |
e2641e09 | 407 | redisLog(REDIS_WARNING,"Error allocating resoures for the client"); |
ab17b909 | 408 | close(fd); /* May be already closed, just ingore errors */ |
e2641e09 | 409 | return; |
410 | } | |
411 | /* If maxclient directive is set and this is one client more... close the | |
412 | * connection. Note that we create the client instead to check before | |
413 | * for this condition, since now the socket is already set in nonblocking | |
414 | * mode and we can send an error for free using the Kernel I/O */ | |
58732c23 | 415 | if (listLength(server.clients) > server.maxclients) { |
e2641e09 | 416 | char *err = "-ERR max number of clients reached\r\n"; |
417 | ||
418 | /* That's a best effort error message, don't check write errors */ | |
419 | if (write(c->fd,err,strlen(err)) == -1) { | |
420 | /* Nothing to do, Just to avoid the warning... */ | |
421 | } | |
3c95e721 | 422 | server.stat_rejected_conn++; |
e2641e09 | 423 | freeClient(c); |
424 | return; | |
425 | } | |
426 | server.stat_numconnections++; | |
427 | } | |
428 | ||
ab17b909 PN |
429 | void acceptTcpHandler(aeEventLoop *el, int fd, void *privdata, int mask) { |
430 | int cport, cfd; | |
431 | char cip[128]; | |
432 | REDIS_NOTUSED(el); | |
433 | REDIS_NOTUSED(mask); | |
434 | REDIS_NOTUSED(privdata); | |
435 | ||
436 | cfd = anetTcpAccept(server.neterr, fd, cip, &cport); | |
437 | if (cfd == AE_ERR) { | |
df541bea | 438 | redisLog(REDIS_WARNING,"Accepting client connection: %s", server.neterr); |
ab17b909 PN |
439 | return; |
440 | } | |
441 | redisLog(REDIS_VERBOSE,"Accepted %s:%d", cip, cport); | |
442 | acceptCommonHandler(cfd); | |
443 | } | |
444 | ||
445 | void acceptUnixHandler(aeEventLoop *el, int fd, void *privdata, int mask) { | |
446 | int cfd; | |
ab17b909 PN |
447 | REDIS_NOTUSED(el); |
448 | REDIS_NOTUSED(mask); | |
449 | REDIS_NOTUSED(privdata); | |
450 | ||
4fe83b55 | 451 | cfd = anetUnixAccept(server.neterr, fd); |
ab17b909 | 452 | if (cfd == AE_ERR) { |
df541bea | 453 | redisLog(REDIS_WARNING,"Accepting client connection: %s", server.neterr); |
ab17b909 PN |
454 | return; |
455 | } | |
456 | redisLog(REDIS_VERBOSE,"Accepted connection to %s", server.unixsocket); | |
457 | acceptCommonHandler(cfd); | |
458 | } | |
459 | ||
460 | ||
e2641e09 | 461 | static void freeClientArgv(redisClient *c) { |
462 | int j; | |
e2641e09 | 463 | for (j = 0; j < c->argc; j++) |
464 | decrRefCount(c->argv[j]); | |
e2641e09 | 465 | c->argc = 0; |
09e2d9ee | 466 | c->cmd = NULL; |
e2641e09 | 467 | } |
468 | ||
469 | void freeClient(redisClient *c) { | |
470 | listNode *ln; | |
471 | ||
472 | /* Note that if the client we are freeing is blocked into a blocking | |
473 | * call, we have to set querybuf to NULL *before* to call | |
474 | * unblockClientWaitingData() to avoid processInputBuffer() will get | |
475 | * called. Also it is important to remove the file events after | |
476 | * this, because this call adds the READABLE event. */ | |
477 | sdsfree(c->querybuf); | |
478 | c->querybuf = NULL; | |
479 | if (c->flags & REDIS_BLOCKED) | |
480 | unblockClientWaitingData(c); | |
481 | ||
482 | /* UNWATCH all the keys */ | |
483 | unwatchAllKeys(c); | |
484 | listRelease(c->watched_keys); | |
485 | /* Unsubscribe from all the pubsub channels */ | |
486 | pubsubUnsubscribeAllChannels(c,0); | |
487 | pubsubUnsubscribeAllPatterns(c,0); | |
488 | dictRelease(c->pubsub_channels); | |
489 | listRelease(c->pubsub_patterns); | |
490 | /* Obvious cleanup */ | |
491 | aeDeleteFileEvent(server.el,c->fd,AE_READABLE); | |
492 | aeDeleteFileEvent(server.el,c->fd,AE_WRITABLE); | |
493 | listRelease(c->reply); | |
494 | freeClientArgv(c); | |
495 | close(c->fd); | |
496 | /* Remove from the list of clients */ | |
497 | ln = listSearchKey(server.clients,c); | |
498 | redisAssert(ln != NULL); | |
499 | listDelNode(server.clients,ln); | |
3bcffcbe PN |
500 | /* When client was just unblocked because of a blocking operation, |
501 | * remove it from the list with unblocked clients. */ | |
502 | if (c->flags & REDIS_UNBLOCKED) { | |
503 | ln = listSearchKey(server.unblocked_clients,c); | |
504 | redisAssert(ln != NULL); | |
505 | listDelNode(server.unblocked_clients,ln); | |
506 | } | |
e2641e09 | 507 | listRelease(c->io_keys); |
778b2210 | 508 | /* Master/slave cleanup. |
509 | * Case 1: we lost the connection with a slave. */ | |
e2641e09 | 510 | if (c->flags & REDIS_SLAVE) { |
511 | if (c->replstate == REDIS_REPL_SEND_BULK && c->repldbfd != -1) | |
512 | close(c->repldbfd); | |
513 | list *l = (c->flags & REDIS_MONITOR) ? server.monitors : server.slaves; | |
514 | ln = listSearchKey(l,c); | |
515 | redisAssert(ln != NULL); | |
516 | listDelNode(l,ln); | |
517 | } | |
778b2210 | 518 | |
519 | /* Case 2: we lost the connection with the master. */ | |
e2641e09 | 520 | if (c->flags & REDIS_MASTER) { |
521 | server.master = NULL; | |
522 | server.replstate = REDIS_REPL_CONNECT; | |
07486df6 | 523 | server.repl_down_since = time(NULL); |
778b2210 | 524 | /* Since we lost the connection with the master, we should also |
525 | * close the connection with all our slaves if we have any, so | |
526 | * when we'll resync with the master the other slaves will sync again | |
527 | * with us as well. Note that also when the slave is not connected | |
d37299e3 | 528 | * to the master it will keep refusing connections by other slaves. |
529 | * | |
530 | * We do this only if server.masterhost != NULL. If it is NULL this | |
531 | * means the user called SLAVEOF NO ONE and we are freeing our | |
532 | * link with the master, so no need to close link with slaves. */ | |
533 | if (server.masterhost != NULL) { | |
534 | while (listLength(server.slaves)) { | |
535 | ln = listFirst(server.slaves); | |
536 | freeClient((redisClient*)ln->value); | |
537 | } | |
778b2210 | 538 | } |
e2641e09 | 539 | } |
540 | /* Release memory */ | |
541 | zfree(c->argv); | |
e2641e09 | 542 | freeClientMultiState(c); |
543 | zfree(c); | |
544 | } | |
545 | ||
e2641e09 | 546 | void sendReplyToClient(aeEventLoop *el, int fd, void *privdata, int mask) { |
547 | redisClient *c = privdata; | |
548 | int nwritten = 0, totwritten = 0, objlen; | |
549 | robj *o; | |
550 | REDIS_NOTUSED(el); | |
551 | REDIS_NOTUSED(mask); | |
552 | ||
834ef78e PN |
553 | while(c->bufpos > 0 || listLength(c->reply)) { |
554 | if (c->bufpos > 0) { | |
555 | if (c->flags & REDIS_MASTER) { | |
556 | /* Don't reply to a master */ | |
557 | nwritten = c->bufpos - c->sentlen; | |
558 | } else { | |
559 | nwritten = write(fd,c->buf+c->sentlen,c->bufpos-c->sentlen); | |
560 | if (nwritten <= 0) break; | |
561 | } | |
562 | c->sentlen += nwritten; | |
563 | totwritten += nwritten; | |
564 | ||
565 | /* If the buffer was sent, set bufpos to zero to continue with | |
566 | * the remainder of the reply. */ | |
567 | if (c->sentlen == c->bufpos) { | |
568 | c->bufpos = 0; | |
569 | c->sentlen = 0; | |
570 | } | |
571 | } else { | |
572 | o = listNodeValue(listFirst(c->reply)); | |
573 | objlen = sdslen(o->ptr); | |
e2641e09 | 574 | |
834ef78e PN |
575 | if (objlen == 0) { |
576 | listDelNode(c->reply,listFirst(c->reply)); | |
577 | continue; | |
578 | } | |
e2641e09 | 579 | |
834ef78e PN |
580 | if (c->flags & REDIS_MASTER) { |
581 | /* Don't reply to a master */ | |
582 | nwritten = objlen - c->sentlen; | |
583 | } else { | |
584 | nwritten = write(fd, ((char*)o->ptr)+c->sentlen,objlen-c->sentlen); | |
585 | if (nwritten <= 0) break; | |
586 | } | |
587 | c->sentlen += nwritten; | |
588 | totwritten += nwritten; | |
e2641e09 | 589 | |
834ef78e PN |
590 | /* If we fully sent the object on head go to the next one */ |
591 | if (c->sentlen == objlen) { | |
592 | listDelNode(c->reply,listFirst(c->reply)); | |
593 | c->sentlen = 0; | |
594 | } | |
e2641e09 | 595 | } |
596 | /* Note that we avoid to send more thank REDIS_MAX_WRITE_PER_EVENT | |
597 | * bytes, in a single threaded server it's a good idea to serve | |
598 | * other clients as well, even if a very large request comes from | |
599 | * super fast link that is always able to accept data (in real world | |
600 | * scenario think about 'KEYS *' against the loopback interfae) */ | |
601 | if (totwritten > REDIS_MAX_WRITE_PER_EVENT) break; | |
602 | } | |
603 | if (nwritten == -1) { | |
604 | if (errno == EAGAIN) { | |
605 | nwritten = 0; | |
606 | } else { | |
607 | redisLog(REDIS_VERBOSE, | |
608 | "Error writing to client: %s", strerror(errno)); | |
609 | freeClient(c); | |
610 | return; | |
611 | } | |
612 | } | |
613 | if (totwritten > 0) c->lastinteraction = time(NULL); | |
3bc89500 | 614 | if (c->bufpos == 0 && listLength(c->reply) == 0) { |
e2641e09 | 615 | c->sentlen = 0; |
616 | aeDeleteFileEvent(server.el,c->fd,AE_WRITABLE); | |
941c9fa2 PN |
617 | |
618 | /* Close connection after entire reply has been sent. */ | |
cd8788f2 | 619 | if (c->flags & REDIS_CLOSE_AFTER_REPLY) freeClient(c); |
e2641e09 | 620 | } |
621 | } | |
622 | ||
e2641e09 | 623 | /* resetClient prepare the client to process the next command */ |
624 | void resetClient(redisClient *c) { | |
625 | freeClientArgv(c); | |
cd8788f2 PN |
626 | c->reqtype = 0; |
627 | c->multibulklen = 0; | |
e2641e09 | 628 | c->bulklen = -1; |
6856c7b4 | 629 | /* We clear the ASKING flag as well if we are not inside a MULTI. */ |
630 | if (!(c->flags & REDIS_MULTI)) c->flags &= (~REDIS_ASKING); | |
e2641e09 | 631 | } |
632 | ||
633 | void closeTimedoutClients(void) { | |
634 | redisClient *c; | |
635 | listNode *ln; | |
636 | time_t now = time(NULL); | |
637 | listIter li; | |
638 | ||
639 | listRewind(server.clients,&li); | |
640 | while ((ln = listNext(&li)) != NULL) { | |
641 | c = listNodeValue(ln); | |
642 | if (server.maxidletime && | |
643 | !(c->flags & REDIS_SLAVE) && /* no timeout for slaves */ | |
644 | !(c->flags & REDIS_MASTER) && /* no timeout for masters */ | |
e452436a | 645 | !(c->flags & REDIS_BLOCKED) && /* no timeout for BLPOP */ |
e2641e09 | 646 | dictSize(c->pubsub_channels) == 0 && /* no timeout for pubsub */ |
647 | listLength(c->pubsub_patterns) == 0 && | |
648 | (now - c->lastinteraction > server.maxidletime)) | |
649 | { | |
650 | redisLog(REDIS_VERBOSE,"Closing idle client"); | |
651 | freeClient(c); | |
652 | } else if (c->flags & REDIS_BLOCKED) { | |
e3c51c4b | 653 | if (c->bpop.timeout != 0 && c->bpop.timeout < now) { |
e2641e09 | 654 | addReply(c,shared.nullmultibulk); |
655 | unblockClientWaitingData(c); | |
656 | } | |
657 | } | |
658 | } | |
659 | } | |
660 | ||
cd8788f2 PN |
661 | int processInlineBuffer(redisClient *c) { |
662 | char *newline = strstr(c->querybuf,"\r\n"); | |
663 | int argc, j; | |
664 | sds *argv; | |
665 | size_t querylen; | |
666 | ||
667 | /* Nothing to do without a \r\n */ | |
668 | if (newline == NULL) | |
669 | return REDIS_ERR; | |
670 | ||
671 | /* Split the input buffer up to the \r\n */ | |
672 | querylen = newline-(c->querybuf); | |
673 | argv = sdssplitlen(c->querybuf,querylen," ",1,&argc); | |
674 | ||
675 | /* Leave data after the first line of the query in the buffer */ | |
676 | c->querybuf = sdsrange(c->querybuf,querylen+2,-1); | |
677 | ||
678 | /* Setup argv array on client structure */ | |
679 | if (c->argv) zfree(c->argv); | |
680 | c->argv = zmalloc(sizeof(robj*)*argc); | |
681 | ||
682 | /* Create redis objects for all arguments. */ | |
683 | for (c->argc = 0, j = 0; j < argc; j++) { | |
684 | if (sdslen(argv[j])) { | |
685 | c->argv[c->argc] = createObject(REDIS_STRING,argv[j]); | |
686 | c->argc++; | |
687 | } else { | |
688 | sdsfree(argv[j]); | |
689 | } | |
690 | } | |
691 | zfree(argv); | |
692 | return REDIS_OK; | |
693 | } | |
694 | ||
695 | /* Helper function. Trims query buffer to make the function that processes | |
696 | * multi bulk requests idempotent. */ | |
697 | static void setProtocolError(redisClient *c, int pos) { | |
3e0a975e | 698 | if (server.verbosity >= REDIS_VERBOSE) { |
699 | sds client = getClientInfoString(c); | |
700 | redisLog(REDIS_VERBOSE, | |
701 | "Protocol error from client: %s", client); | |
702 | sdsfree(client); | |
703 | } | |
cd8788f2 PN |
704 | c->flags |= REDIS_CLOSE_AFTER_REPLY; |
705 | c->querybuf = sdsrange(c->querybuf,pos,-1); | |
706 | } | |
707 | ||
708 | int processMultibulkBuffer(redisClient *c) { | |
709 | char *newline = NULL; | |
5af30201 PN |
710 | int pos = 0, ok; |
711 | long long ll; | |
cd8788f2 PN |
712 | |
713 | if (c->multibulklen == 0) { | |
714 | /* The client should have been reset */ | |
eab0e26e | 715 | redisAssertWithInfo(c,NULL,c->argc == 0); |
cd8788f2 PN |
716 | |
717 | /* Multi bulk length cannot be read without a \r\n */ | |
5af30201 | 718 | newline = strchr(c->querybuf,'\r'); |
cd8788f2 PN |
719 | if (newline == NULL) |
720 | return REDIS_ERR; | |
721 | ||
bf9fd5ff PN |
722 | /* Buffer should also contain \n */ |
723 | if (newline-(c->querybuf) > ((signed)sdslen(c->querybuf)-2)) | |
724 | return REDIS_ERR; | |
725 | ||
cd8788f2 PN |
726 | /* We know for sure there is a whole line since newline != NULL, |
727 | * so go ahead and find out the multi bulk length. */ | |
eab0e26e | 728 | redisAssertWithInfo(c,NULL,c->querybuf[0] == '*'); |
5af30201 PN |
729 | ok = string2ll(c->querybuf+1,newline-(c->querybuf+1),&ll); |
730 | if (!ok || ll > 1024*1024) { | |
b19c33d4 PN |
731 | addReplyError(c,"Protocol error: invalid multibulk length"); |
732 | setProtocolError(c,pos); | |
733 | return REDIS_ERR; | |
cd8788f2 | 734 | } |
af0e51f2 PN |
735 | |
736 | pos = (newline-c->querybuf)+2; | |
737 | if (ll <= 0) { | |
738 | c->querybuf = sdsrange(c->querybuf,pos,-1); | |
739 | return REDIS_OK; | |
740 | } | |
741 | ||
5af30201 | 742 | c->multibulklen = ll; |
cd8788f2 PN |
743 | |
744 | /* Setup argv array on client structure */ | |
745 | if (c->argv) zfree(c->argv); | |
746 | c->argv = zmalloc(sizeof(robj*)*c->multibulklen); | |
cd8788f2 PN |
747 | } |
748 | ||
eab0e26e | 749 | redisAssertWithInfo(c,NULL,c->multibulklen > 0); |
cd8788f2 PN |
750 | while(c->multibulklen) { |
751 | /* Read bulk length if unknown */ | |
752 | if (c->bulklen == -1) { | |
5af30201 | 753 | newline = strchr(c->querybuf+pos,'\r'); |
bf9fd5ff PN |
754 | if (newline == NULL) |
755 | break; | |
756 | ||
757 | /* Buffer should also contain \n */ | |
758 | if (newline-(c->querybuf) > ((signed)sdslen(c->querybuf)-2)) | |
cd8788f2 | 759 | break; |
bf9fd5ff PN |
760 | |
761 | if (c->querybuf[pos] != '$') { | |
762 | addReplyErrorFormat(c, | |
763 | "Protocol error: expected '$', got '%c'", | |
764 | c->querybuf[pos]); | |
765 | setProtocolError(c,pos); | |
766 | return REDIS_ERR; | |
e2641e09 | 767 | } |
bf9fd5ff PN |
768 | |
769 | ok = string2ll(c->querybuf+pos+1,newline-(c->querybuf+pos+1),&ll); | |
770 | if (!ok || ll < 0 || ll > 512*1024*1024) { | |
771 | addReplyError(c,"Protocol error: invalid bulk length"); | |
772 | setProtocolError(c,pos); | |
773 | return REDIS_ERR; | |
774 | } | |
775 | ||
776 | pos += newline-(c->querybuf+pos)+2; | |
94d490b9 | 777 | if (ll >= REDIS_MBULK_BIG_ARG) { |
826b5beb | 778 | /* If we are going to read a large object from network |
779 | * try to make it likely that it will start at c->querybuf | |
780 | * boundary so that we can optimized object creation | |
781 | * avoiding a large copy of data. */ | |
782 | c->querybuf = sdsrange(c->querybuf,pos,-1); | |
783 | pos = 0; | |
b9031458 | 784 | /* Hint the sds library about the amount of bytes this string is |
785 | * going to contain. */ | |
94d490b9 | 786 | c->querybuf = sdsMakeRoomFor(c->querybuf,ll+2); |
b9031458 | 787 | } |
bf9fd5ff | 788 | c->bulklen = ll; |
cd8788f2 PN |
789 | } |
790 | ||
791 | /* Read bulk argument */ | |
792 | if (sdslen(c->querybuf)-pos < (unsigned)(c->bulklen+2)) { | |
793 | /* Not enough data (+2 == trailing \r\n) */ | |
794 | break; | |
795 | } else { | |
92170955 | 796 | /* Optimization: if the buffer contanins JUST our bulk element |
797 | * instead of creating a new object by *copying* the sds we | |
798 | * just use the current sds string. */ | |
799 | if (pos == 0 && | |
94d490b9 | 800 | c->bulklen >= REDIS_MBULK_BIG_ARG && |
92170955 | 801 | (signed) sdslen(c->querybuf) == c->bulklen+2) |
802 | { | |
803 | c->argv[c->argc++] = createObject(REDIS_STRING,c->querybuf); | |
804 | sdsIncrLen(c->querybuf,-2); /* remove CRLF */ | |
805 | c->querybuf = sdsempty(); | |
806 | /* Assume that if we saw a fat argument we'll see another one | |
807 | * likely... */ | |
808 | c->querybuf = sdsMakeRoomFor(c->querybuf,c->bulklen+2); | |
809 | pos = 0; | |
810 | } else { | |
811 | c->argv[c->argc++] = | |
812 | createStringObject(c->querybuf+pos,c->bulklen); | |
813 | pos += c->bulklen+2; | |
814 | } | |
cd8788f2 PN |
815 | c->bulklen = -1; |
816 | c->multibulklen--; | |
817 | } | |
818 | } | |
819 | ||
820 | /* Trim to pos */ | |
92170955 | 821 | if (pos) c->querybuf = sdsrange(c->querybuf,pos,-1); |
cd8788f2 PN |
822 | |
823 | /* We're done when c->multibulk == 0 */ | |
824 | if (c->multibulklen == 0) { | |
825 | return REDIS_OK; | |
826 | } | |
827 | return REDIS_ERR; | |
828 | } | |
829 | ||
830 | void processInputBuffer(redisClient *c) { | |
831 | /* Keep processing while there is something in the input buffer */ | |
832 | while(sdslen(c->querybuf)) { | |
64f201c2 HW |
833 | /* Immediately abort if the client is in the middle of something. */ |
834 | if (c->flags & REDIS_BLOCKED) return; | |
835 | ||
5e78edb3 PN |
836 | /* REDIS_CLOSE_AFTER_REPLY closes the connection once the reply is |
837 | * written to the client. Make sure to not let the reply grow after | |
838 | * this flag has been set (i.e. don't process more commands). */ | |
839 | if (c->flags & REDIS_CLOSE_AFTER_REPLY) return; | |
cd8788f2 PN |
840 | |
841 | /* Determine request type when unknown. */ | |
842 | if (!c->reqtype) { | |
843 | if (c->querybuf[0] == '*') { | |
844 | c->reqtype = REDIS_REQ_MULTIBULK; | |
e2641e09 | 845 | } else { |
cd8788f2 | 846 | c->reqtype = REDIS_REQ_INLINE; |
e2641e09 | 847 | } |
e2641e09 | 848 | } |
cd8788f2 PN |
849 | |
850 | if (c->reqtype == REDIS_REQ_INLINE) { | |
851 | if (processInlineBuffer(c) != REDIS_OK) break; | |
852 | } else if (c->reqtype == REDIS_REQ_MULTIBULK) { | |
853 | if (processMultibulkBuffer(c) != REDIS_OK) break; | |
854 | } else { | |
855 | redisPanic("Unknown request type"); | |
e2641e09 | 856 | } |
cd8788f2 PN |
857 | |
858 | /* Multibulk processing could see a <= 0 length. */ | |
9da6caac PN |
859 | if (c->argc == 0) { |
860 | resetClient(c); | |
861 | } else { | |
862 | /* Only reset the client when the command was executed. */ | |
863 | if (processCommand(c) == REDIS_OK) | |
864 | resetClient(c); | |
865 | } | |
e2641e09 | 866 | } |
867 | } | |
868 | ||
869 | void readQueryFromClient(aeEventLoop *el, int fd, void *privdata, int mask) { | |
870 | redisClient *c = (redisClient*) privdata; | |
826b5beb | 871 | int nread, readlen; |
b8d743e1 | 872 | size_t qblen; |
e2641e09 | 873 | REDIS_NOTUSED(el); |
874 | REDIS_NOTUSED(mask); | |
875 | ||
826b5beb | 876 | readlen = REDIS_IOBUF_LEN; |
877 | /* If this is a multi bulk request, and we are processing a bulk reply | |
878 | * that is large enough, try to maximize the probabilty that the query | |
879 | * buffer contains excatly the SDS string representing the object, even | |
880 | * at the risk of requring more read(2) calls. This way the function | |
881 | * processMultiBulkBuffer() can avoid copying buffers to create the | |
882 | * Redis Object representing the argument. */ | |
826b5beb | 883 | if (c->reqtype == REDIS_REQ_MULTIBULK && c->multibulklen && c->bulklen != -1 |
94d490b9 | 884 | && c->bulklen >= REDIS_MBULK_BIG_ARG) |
826b5beb | 885 | { |
886 | int remaining = (unsigned)(c->bulklen+2)-sdslen(c->querybuf); | |
887 | ||
888 | if (remaining < readlen) readlen = remaining; | |
889 | } | |
826b5beb | 890 | |
b8d743e1 | 891 | qblen = sdslen(c->querybuf); |
826b5beb | 892 | c->querybuf = sdsMakeRoomFor(c->querybuf, readlen); |
893 | nread = read(fd, c->querybuf+qblen, readlen); | |
e2641e09 | 894 | if (nread == -1) { |
895 | if (errno == EAGAIN) { | |
896 | nread = 0; | |
897 | } else { | |
898 | redisLog(REDIS_VERBOSE, "Reading from client: %s",strerror(errno)); | |
899 | freeClient(c); | |
900 | return; | |
901 | } | |
902 | } else if (nread == 0) { | |
903 | redisLog(REDIS_VERBOSE, "Client closed connection"); | |
904 | freeClient(c); | |
905 | return; | |
906 | } | |
907 | if (nread) { | |
b8d743e1 | 908 | sdsIncrLen(c->querybuf,nread); |
e2641e09 | 909 | c->lastinteraction = time(NULL); |
910 | } else { | |
911 | return; | |
912 | } | |
becf5fdb | 913 | if (sdslen(c->querybuf) > server.client_max_querybuf_len) { |
63fd1399 | 914 | sds ci = getClientInfoString(c), bytes = sdsempty(); |
915 | ||
916 | bytes = sdscatrepr(bytes,c->querybuf,64); | |
917 | redisLog(REDIS_WARNING,"Closing client that reached max query buffer length: %s (qbuf initial bytes: %s)", ci, bytes); | |
becf5fdb | 918 | sdsfree(ci); |
63fd1399 | 919 | sdsfree(bytes); |
becf5fdb | 920 | freeClient(c); |
921 | return; | |
922 | } | |
e2641e09 | 923 | processInputBuffer(c); |
924 | } | |
7a1fd61e | 925 | |
926 | void getClientsMaxBuffers(unsigned long *longest_output_list, | |
927 | unsigned long *biggest_input_buffer) { | |
928 | redisClient *c; | |
929 | listNode *ln; | |
930 | listIter li; | |
931 | unsigned long lol = 0, bib = 0; | |
932 | ||
933 | listRewind(server.clients,&li); | |
934 | while ((ln = listNext(&li)) != NULL) { | |
935 | c = listNodeValue(ln); | |
936 | ||
937 | if (listLength(c->reply) > lol) lol = listLength(c->reply); | |
938 | if (sdslen(c->querybuf) > bib) bib = sdslen(c->querybuf); | |
939 | } | |
940 | *longest_output_list = lol; | |
941 | *biggest_input_buffer = bib; | |
942 | } | |
943 | ||
17d25a33 | 944 | /* Turn a Redis client into an sds string representing its state. */ |
945 | sds getClientInfoString(redisClient *client) { | |
6621b8ff | 946 | char ip[32], flags[16], events[3], *p; |
17d25a33 | 947 | int port; |
948 | time_t now = time(NULL); | |
6621b8ff | 949 | int emask; |
17d25a33 | 950 | |
951 | if (anetPeerToString(client->fd,ip,&port) == -1) { | |
952 | ip[0] = '?'; | |
953 | ip[1] = '\0'; | |
954 | port = 0; | |
955 | } | |
956 | p = flags; | |
957 | if (client->flags & REDIS_SLAVE) { | |
958 | if (client->flags & REDIS_MONITOR) | |
959 | *p++ = 'O'; | |
960 | else | |
961 | *p++ = 'S'; | |
962 | } | |
963 | if (client->flags & REDIS_MASTER) *p++ = 'M'; | |
17d25a33 | 964 | if (client->flags & REDIS_MULTI) *p++ = 'x'; |
965 | if (client->flags & REDIS_BLOCKED) *p++ = 'b'; | |
966 | if (client->flags & REDIS_DIRTY_CAS) *p++ = 'd'; | |
967 | if (client->flags & REDIS_CLOSE_AFTER_REPLY) *p++ = 'c'; | |
968 | if (client->flags & REDIS_UNBLOCKED) *p++ = 'u'; | |
afd0f06b | 969 | if (p == flags) *p++ = 'N'; |
17d25a33 | 970 | *p++ = '\0'; |
6621b8ff | 971 | |
972 | emask = client->fd == -1 ? 0 : aeGetFileEvents(server.el,client->fd); | |
973 | p = events; | |
974 | if (emask & AE_READABLE) *p++ = 'r'; | |
975 | if (emask & AE_WRITABLE) *p++ = 'w'; | |
976 | *p = '\0'; | |
17d25a33 | 977 | return sdscatprintf(sdsempty(), |
2c74a9f9 | 978 | "addr=%s:%d fd=%d idle=%ld flags=%s db=%d sub=%d psub=%d qbuf=%lu obl=%lu oll=%lu events=%s cmd=%s", |
17d25a33 | 979 | ip,port,client->fd, |
980 | (long)(now - client->lastinteraction), | |
981 | flags, | |
982 | client->db->id, | |
983 | (int) dictSize(client->pubsub_channels), | |
491c1c4e | 984 | (int) listLength(client->pubsub_patterns), |
985 | (unsigned long) sdslen(client->querybuf), | |
986 | (unsigned long) client->bufpos, | |
6621b8ff | 987 | (unsigned long) listLength(client->reply), |
2c74a9f9 | 988 | events, |
989 | client->lastcmd ? client->lastcmd->name : "NULL"); | |
17d25a33 | 990 | } |
991 | ||
45e7a1ce | 992 | sds getAllClientsInfoString(void) { |
993 | listNode *ln; | |
994 | listIter li; | |
995 | redisClient *client; | |
996 | sds o = sdsempty(); | |
997 | ||
998 | listRewind(server.clients,&li); | |
999 | while ((ln = listNext(&li)) != NULL) { | |
1000 | client = listNodeValue(ln); | |
1001 | o = sdscatsds(o,getClientInfoString(client)); | |
1002 | o = sdscatlen(o,"\n",1); | |
1003 | } | |
1004 | return o; | |
1005 | } | |
1006 | ||
3cd12b56 | 1007 | void clientCommand(redisClient *c) { |
b93fdb7b | 1008 | listNode *ln; |
1009 | listIter li; | |
1010 | redisClient *client; | |
1011 | ||
3cd12b56 | 1012 | if (!strcasecmp(c->argv[1]->ptr,"list") && c->argc == 2) { |
45e7a1ce | 1013 | sds o = getAllClientsInfoString(); |
3cd12b56 | 1014 | addReplyBulkCBuffer(c,o,sdslen(o)); |
1015 | sdsfree(o); | |
b93fdb7b | 1016 | } else if (!strcasecmp(c->argv[1]->ptr,"kill") && c->argc == 3) { |
1017 | listRewind(server.clients,&li); | |
1018 | while ((ln = listNext(&li)) != NULL) { | |
1019 | char ip[32], addr[64]; | |
1020 | int port; | |
1021 | ||
1022 | client = listNodeValue(ln); | |
1023 | if (anetPeerToString(client->fd,ip,&port) == -1) continue; | |
1024 | snprintf(addr,sizeof(addr),"%s:%d",ip,port); | |
1025 | if (strcmp(addr,c->argv[2]->ptr) == 0) { | |
1026 | addReply(c,shared.ok); | |
1027 | if (c == client) { | |
1028 | client->flags |= REDIS_CLOSE_AFTER_REPLY; | |
1029 | } else { | |
1030 | freeClient(client); | |
1031 | } | |
1032 | return; | |
1033 | } | |
1034 | } | |
1035 | addReplyError(c,"No such client"); | |
3cd12b56 | 1036 | } else { |
1037 | addReplyError(c, "Syntax error, try CLIENT (LIST | KILL ip:port)"); | |
1038 | } | |
1039 | } | |
c1c9d551 | 1040 | |
4dd444bb | 1041 | /* Rewrite the command vector of the client. All the new objects ref count |
1042 | * is incremented. The old command vector is freed, and the old objects | |
1043 | * ref count is decremented. */ | |
c1c9d551 | 1044 | void rewriteClientCommandVector(redisClient *c, int argc, ...) { |
1045 | va_list ap; | |
1046 | int j; | |
1047 | robj **argv; /* The new argument vector */ | |
1048 | ||
1049 | argv = zmalloc(sizeof(robj*)*argc); | |
1050 | va_start(ap,argc); | |
1051 | for (j = 0; j < argc; j++) { | |
1052 | robj *a; | |
1053 | ||
1054 | a = va_arg(ap, robj*); | |
1055 | argv[j] = a; | |
1056 | incrRefCount(a); | |
1057 | } | |
1058 | /* We free the objects in the original vector at the end, so we are | |
1059 | * sure that if the same objects are reused in the new vector the | |
1060 | * refcount gets incremented before it gets decremented. */ | |
1061 | for (j = 0; j < c->argc; j++) decrRefCount(c->argv[j]); | |
1062 | zfree(c->argv); | |
1063 | /* Replace argv and argc with our new versions. */ | |
1064 | c->argv = argv; | |
1065 | c->argc = argc; | |
09e2d9ee | 1066 | c->cmd = lookupCommand(c->argv[0]->ptr); |
eab0e26e | 1067 | redisAssertWithInfo(c,NULL,c->cmd != NULL); |
c1c9d551 | 1068 | va_end(ap); |
1069 | } | |
4dd444bb | 1070 | |
1071 | /* Rewrite a single item in the command vector. | |
1072 | * The new val ref count is incremented, and the old decremented. */ | |
1073 | void rewriteClientCommandArgument(redisClient *c, int i, robj *newval) { | |
1074 | robj *oldval; | |
1075 | ||
eab0e26e | 1076 | redisAssertWithInfo(c,NULL,i < c->argc); |
4dd444bb | 1077 | oldval = c->argv[i]; |
1078 | c->argv[i] = newval; | |
1079 | incrRefCount(newval); | |
1080 | decrRefCount(oldval); | |
1081 | ||
1082 | /* If this is the command name make sure to fix c->cmd. */ | |
1083 | if (i == 0) { | |
1084 | c->cmd = lookupCommand(c->argv[0]->ptr); | |
eab0e26e | 1085 | redisAssertWithInfo(c,NULL,c->cmd != NULL); |
4dd444bb | 1086 | } |
1087 | } |