4 static void setProtocolError(redisClient
*c
, int pos
);
6 void *dupClientReplyValue(void *o
) {
7 incrRefCount((robj
*)o
);
11 int listMatchObjects(void *a
, void *b
) {
12 return equalStringObjects(a
,b
);
15 redisClient
*createClient(int fd
) {
16 redisClient
*c
= zmalloc(sizeof(redisClient
));
19 /* passing -1 as fd it is possible to create a non connected client.
20 * This is useful since all the Redis commands needs to be executed
21 * in the context of a client. When commands are executed in other
22 * contexts (for instance a Lua script) we need a non connected client. */
24 anetNonBlock(NULL
,fd
);
25 anetTcpNoDelay(NULL
,fd
);
26 if (aeCreateFileEvent(server
.el
,fd
,AE_READABLE
,
27 readQueryFromClient
, c
) == AE_ERR
)
37 c
->querybuf
= sdsempty();
41 c
->cmd
= c
->lastcmd
= NULL
;
46 c
->lastinteraction
= time(NULL
);
48 c
->replstate
= REDIS_REPL_NONE
;
49 c
->reply
= listCreate();
51 listSetFreeMethod(c
->reply
,decrRefCount
);
52 listSetDupMethod(c
->reply
,dupClientReplyValue
);
56 c
->bpop
.target
= NULL
;
57 c
->io_keys
= listCreate();
58 c
->watched_keys
= listCreate();
59 listSetFreeMethod(c
->io_keys
,decrRefCount
);
60 c
->pubsub_channels
= dictCreate(&setDictType
,NULL
);
61 c
->pubsub_patterns
= listCreate();
62 listSetFreeMethod(c
->pubsub_patterns
,decrRefCount
);
63 listSetMatchMethod(c
->pubsub_patterns
,listMatchObjects
);
64 if (fd
!= -1) listAddNodeTail(server
.clients
,c
);
65 initClientMultiState(c
);
69 /* Set the event loop to listen for write events on the client's socket.
70 * Typically gets called every time a reply is built. */
71 int _installWriteEvent(redisClient
*c
) {
72 if (c
->flags
& REDIS_LUA_CLIENT
) return REDIS_OK
;
73 if (c
->fd
<= 0) return REDIS_ERR
;
74 if (c
->bufpos
== 0 && listLength(c
->reply
) == 0 &&
75 (c
->replstate
== REDIS_REPL_NONE
||
76 c
->replstate
== REDIS_REPL_ONLINE
) &&
77 aeCreateFileEvent(server
.el
, c
->fd
, AE_WRITABLE
,
78 sendReplyToClient
, c
) == AE_ERR
) return REDIS_ERR
;
82 /* Create a duplicate of the last object in the reply list when
83 * it is not exclusively owned by the reply list. */
84 robj
*dupLastObjectIfNeeded(list
*reply
) {
87 redisAssert(listLength(reply
) > 0);
89 cur
= listNodeValue(ln
);
90 if (cur
->refcount
> 1) {
91 new = dupStringObject(cur
);
93 listNodeValue(ln
) = new;
95 return listNodeValue(ln
);
98 /* -----------------------------------------------------------------------------
99 * Low level functions to add more data to output buffers.
100 * -------------------------------------------------------------------------- */
102 int _addReplyToBuffer(redisClient
*c
, char *s
, size_t len
) {
103 size_t available
= sizeof(c
->buf
)-c
->bufpos
;
105 if (c
->flags
& REDIS_CLOSE_AFTER_REPLY
) return REDIS_OK
;
107 /* If there already are entries in the reply list, we cannot
108 * add anything more to the static buffer. */
109 if (listLength(c
->reply
) > 0) return REDIS_ERR
;
111 /* Check that the buffer has enough space available for this string. */
112 if (len
> available
) return REDIS_ERR
;
114 memcpy(c
->buf
+c
->bufpos
,s
,len
);
119 void _addReplyObjectToList(redisClient
*c
, robj
*o
) {
122 if (c
->flags
& REDIS_CLOSE_AFTER_REPLY
) return;
124 if (listLength(c
->reply
) == 0) {
126 listAddNodeTail(c
->reply
,o
);
128 tail
= listNodeValue(listLast(c
->reply
));
130 /* Append to this object when possible. */
131 if (tail
->ptr
!= NULL
&&
132 sdslen(tail
->ptr
)+sdslen(o
->ptr
) <= REDIS_REPLY_CHUNK_BYTES
)
134 tail
= dupLastObjectIfNeeded(c
->reply
);
135 tail
->ptr
= sdscatlen(tail
->ptr
,o
->ptr
,sdslen(o
->ptr
));
138 listAddNodeTail(c
->reply
,o
);
141 c
->reply_bytes
+= sdslen(o
->ptr
);
144 /* This method takes responsibility over the sds. When it is no longer
145 * needed it will be free'd, otherwise it ends up in a robj. */
146 void _addReplySdsToList(redisClient
*c
, sds s
) {
149 if (c
->flags
& REDIS_CLOSE_AFTER_REPLY
) {
154 c
->reply_bytes
+= sdslen(s
);
155 if (listLength(c
->reply
) == 0) {
156 listAddNodeTail(c
->reply
,createObject(REDIS_STRING
,s
));
158 tail
= listNodeValue(listLast(c
->reply
));
160 /* Append to this object when possible. */
161 if (tail
->ptr
!= NULL
&&
162 sdslen(tail
->ptr
)+sdslen(s
) <= REDIS_REPLY_CHUNK_BYTES
)
164 tail
= dupLastObjectIfNeeded(c
->reply
);
165 tail
->ptr
= sdscatlen(tail
->ptr
,s
,sdslen(s
));
168 listAddNodeTail(c
->reply
,createObject(REDIS_STRING
,s
));
173 void _addReplyStringToList(redisClient
*c
, char *s
, size_t len
) {
176 if (c
->flags
& REDIS_CLOSE_AFTER_REPLY
) return;
178 if (listLength(c
->reply
) == 0) {
179 listAddNodeTail(c
->reply
,createStringObject(s
,len
));
181 tail
= listNodeValue(listLast(c
->reply
));
183 /* Append to this object when possible. */
184 if (tail
->ptr
!= NULL
&&
185 sdslen(tail
->ptr
)+len
<= REDIS_REPLY_CHUNK_BYTES
)
187 tail
= dupLastObjectIfNeeded(c
->reply
);
188 tail
->ptr
= sdscatlen(tail
->ptr
,s
,len
);
190 listAddNodeTail(c
->reply
,createStringObject(s
,len
));
193 c
->reply_bytes
+= len
;
196 /* -----------------------------------------------------------------------------
197 * Higher level functions to queue data on the client output buffer.
198 * The following functions are the ones that commands implementations will call.
199 * -------------------------------------------------------------------------- */
201 void addReply(redisClient
*c
, robj
*obj
) {
202 if (_installWriteEvent(c
) != REDIS_OK
) return;
204 /* This is an important place where we can avoid copy-on-write
205 * when there is a saving child running, avoiding touching the
206 * refcount field of the object if it's not needed.
208 * If the encoding is RAW and there is room in the static buffer
209 * we'll be able to send the object to the client without
210 * messing with its page. */
211 if (obj
->encoding
== REDIS_ENCODING_RAW
) {
212 if (_addReplyToBuffer(c
,obj
->ptr
,sdslen(obj
->ptr
)) != REDIS_OK
)
213 _addReplyObjectToList(c
,obj
);
215 /* FIXME: convert the long into string and use _addReplyToBuffer()
216 * instead of calling getDecodedObject. As this place in the
217 * code is too performance critical. */
218 obj
= getDecodedObject(obj
);
219 if (_addReplyToBuffer(c
,obj
->ptr
,sdslen(obj
->ptr
)) != REDIS_OK
)
220 _addReplyObjectToList(c
,obj
);
225 void addReplySds(redisClient
*c
, sds s
) {
226 if (_installWriteEvent(c
) != REDIS_OK
) {
227 /* The caller expects the sds to be free'd. */
231 if (_addReplyToBuffer(c
,s
,sdslen(s
)) == REDIS_OK
) {
234 /* This method free's the sds when it is no longer needed. */
235 _addReplySdsToList(c
,s
);
239 void addReplyString(redisClient
*c
, char *s
, size_t len
) {
240 if (_installWriteEvent(c
) != REDIS_OK
) return;
241 if (_addReplyToBuffer(c
,s
,len
) != REDIS_OK
)
242 _addReplyStringToList(c
,s
,len
);
245 void _addReplyError(redisClient
*c
, char *s
, size_t len
) {
246 addReplyString(c
,"-ERR ",5);
247 addReplyString(c
,s
,len
);
248 addReplyString(c
,"\r\n",2);
251 void addReplyError(redisClient
*c
, char *err
) {
252 _addReplyError(c
,err
,strlen(err
));
255 void addReplyErrorFormat(redisClient
*c
, const char *fmt
, ...) {
259 sds s
= sdscatvprintf(sdsempty(),fmt
,ap
);
261 /* Make sure there are no newlines in the string, otherwise invalid protocol
264 for (j
= 0; j
< l
; j
++) {
265 if (s
[j
] == '\r' || s
[j
] == '\n') s
[j
] = ' ';
267 _addReplyError(c
,s
,sdslen(s
));
271 void _addReplyStatus(redisClient
*c
, char *s
, size_t len
) {
272 addReplyString(c
,"+",1);
273 addReplyString(c
,s
,len
);
274 addReplyString(c
,"\r\n",2);
277 void addReplyStatus(redisClient
*c
, char *status
) {
278 _addReplyStatus(c
,status
,strlen(status
));
281 void addReplyStatusFormat(redisClient
*c
, const char *fmt
, ...) {
284 sds s
= sdscatvprintf(sdsempty(),fmt
,ap
);
286 _addReplyStatus(c
,s
,sdslen(s
));
290 /* Adds an empty object to the reply list that will contain the multi bulk
291 * length, which is not known when this function is called. */
292 void *addDeferredMultiBulkLength(redisClient
*c
) {
293 /* Note that we install the write event here even if the object is not
294 * ready to be sent, since we are sure that before returning to the
295 * event loop setDeferredMultiBulkLength() will be called. */
296 if (_installWriteEvent(c
) != REDIS_OK
) return NULL
;
297 listAddNodeTail(c
->reply
,createObject(REDIS_STRING
,NULL
));
298 return listLast(c
->reply
);
301 /* Populate the length object and try glueing it to the next chunk. */
302 void setDeferredMultiBulkLength(redisClient
*c
, void *node
, long length
) {
303 listNode
*ln
= (listNode
*)node
;
306 /* Abort when *node is NULL (see addDeferredMultiBulkLength). */
307 if (node
== NULL
) return;
309 len
= listNodeValue(ln
);
310 len
->ptr
= sdscatprintf(sdsempty(),"*%ld\r\n",length
);
311 c
->reply_bytes
+= sdslen(len
->ptr
);
312 if (ln
->next
!= NULL
) {
313 next
= listNodeValue(ln
->next
);
315 /* Only glue when the next node is non-NULL (an sds in this case) */
316 if (next
->ptr
!= NULL
) {
317 len
->ptr
= sdscatlen(len
->ptr
,next
->ptr
,sdslen(next
->ptr
));
318 listDelNode(c
->reply
,ln
->next
);
323 /* Add a duble as a bulk reply */
324 void addReplyDouble(redisClient
*c
, double d
) {
325 char dbuf
[128], sbuf
[128];
327 dlen
= snprintf(dbuf
,sizeof(dbuf
),"%.17g",d
);
328 slen
= snprintf(sbuf
,sizeof(sbuf
),"$%d\r\n%s\r\n",dlen
,dbuf
);
329 addReplyString(c
,sbuf
,slen
);
332 /* Add a long long as integer reply or bulk len / multi bulk count.
333 * Basically this is used to output <prefix><long long><crlf>. */
334 void _addReplyLongLong(redisClient
*c
, long long ll
, char prefix
) {
338 len
= ll2string(buf
+1,sizeof(buf
)-1,ll
);
341 addReplyString(c
,buf
,len
+3);
344 void addReplyLongLong(redisClient
*c
, long long ll
) {
346 addReply(c
,shared
.czero
);
348 addReply(c
,shared
.cone
);
350 _addReplyLongLong(c
,ll
,':');
353 void addReplyMultiBulkLen(redisClient
*c
, long length
) {
354 _addReplyLongLong(c
,length
,'*');
357 /* Create the length prefix of a bulk reply, example: $2234 */
358 void addReplyBulkLen(redisClient
*c
, robj
*obj
) {
361 if (obj
->encoding
== REDIS_ENCODING_RAW
) {
362 len
= sdslen(obj
->ptr
);
364 long n
= (long)obj
->ptr
;
366 /* Compute how many bytes will take this integer as a radix 10 string */
372 while((n
= n
/10) != 0) {
376 _addReplyLongLong(c
,len
,'$');
379 /* Add a Redis Object as a bulk reply */
380 void addReplyBulk(redisClient
*c
, robj
*obj
) {
381 addReplyBulkLen(c
,obj
);
383 addReply(c
,shared
.crlf
);
386 /* Add a C buffer as bulk reply */
387 void addReplyBulkCBuffer(redisClient
*c
, void *p
, size_t len
) {
388 _addReplyLongLong(c
,len
,'$');
389 addReplyString(c
,p
,len
);
390 addReply(c
,shared
.crlf
);
393 /* Add a C nul term string as bulk reply */
394 void addReplyBulkCString(redisClient
*c
, char *s
) {
396 addReply(c
,shared
.nullbulk
);
398 addReplyBulkCBuffer(c
,s
,strlen(s
));
402 /* Add a long long as a bulk reply */
403 void addReplyBulkLongLong(redisClient
*c
, long long ll
) {
407 len
= ll2string(buf
,64,ll
);
408 addReplyBulkCBuffer(c
,buf
,len
);
411 /* Copy 'src' client output buffers into 'dst' client output buffers.
412 * The function takes care of freeing the old output buffers of the
413 * destination client. */
414 void copyClientOutputBuffer(redisClient
*dst
, redisClient
*src
) {
415 listRelease(dst
->reply
);
416 dst
->reply
= listDup(src
->reply
);
417 memcpy(dst
->buf
,src
->buf
,src
->bufpos
);
418 dst
->bufpos
= src
->bufpos
;
419 dst
->reply_bytes
= src
->reply_bytes
;
422 static void acceptCommonHandler(int fd
) {
424 if ((c
= createClient(fd
)) == NULL
) {
425 redisLog(REDIS_WARNING
,"Error allocating resoures for the client");
426 close(fd
); /* May be already closed, just ingore errors */
429 /* If maxclient directive is set and this is one client more... close the
430 * connection. Note that we create the client instead to check before
431 * for this condition, since now the socket is already set in nonblocking
432 * mode and we can send an error for free using the Kernel I/O */
433 if (listLength(server
.clients
) > server
.maxclients
) {
434 char *err
= "-ERR max number of clients reached\r\n";
436 /* That's a best effort error message, don't check write errors */
437 if (write(c
->fd
,err
,strlen(err
)) == -1) {
438 /* Nothing to do, Just to avoid the warning... */
440 server
.stat_rejected_conn
++;
444 server
.stat_numconnections
++;
447 void acceptTcpHandler(aeEventLoop
*el
, int fd
, void *privdata
, int mask
) {
452 REDIS_NOTUSED(privdata
);
454 cfd
= anetTcpAccept(server
.neterr
, fd
, cip
, &cport
);
456 redisLog(REDIS_WARNING
,"Accepting client connection: %s", server
.neterr
);
459 redisLog(REDIS_VERBOSE
,"Accepted %s:%d", cip
, cport
);
460 acceptCommonHandler(cfd
);
463 void acceptUnixHandler(aeEventLoop
*el
, int fd
, void *privdata
, int mask
) {
467 REDIS_NOTUSED(privdata
);
469 cfd
= anetUnixAccept(server
.neterr
, fd
);
471 redisLog(REDIS_WARNING
,"Accepting client connection: %s", server
.neterr
);
474 redisLog(REDIS_VERBOSE
,"Accepted connection to %s", server
.unixsocket
);
475 acceptCommonHandler(cfd
);
479 static void freeClientArgv(redisClient
*c
) {
481 for (j
= 0; j
< c
->argc
; j
++)
482 decrRefCount(c
->argv
[j
]);
487 void freeClient(redisClient
*c
) {
490 /* If this is marked as current client unset it */
491 if (server
.current_client
== c
) server
.current_client
= NULL
;
493 /* Note that if the client we are freeing is blocked into a blocking
494 * call, we have to set querybuf to NULL *before* to call
495 * unblockClientWaitingData() to avoid processInputBuffer() will get
496 * called. Also it is important to remove the file events after
497 * this, because this call adds the READABLE event. */
498 sdsfree(c
->querybuf
);
500 if (c
->flags
& REDIS_BLOCKED
)
501 unblockClientWaitingData(c
);
503 /* UNWATCH all the keys */
505 listRelease(c
->watched_keys
);
506 /* Unsubscribe from all the pubsub channels */
507 pubsubUnsubscribeAllChannels(c
,0);
508 pubsubUnsubscribeAllPatterns(c
,0);
509 dictRelease(c
->pubsub_channels
);
510 listRelease(c
->pubsub_patterns
);
511 /* Obvious cleanup */
512 aeDeleteFileEvent(server
.el
,c
->fd
,AE_READABLE
);
513 aeDeleteFileEvent(server
.el
,c
->fd
,AE_WRITABLE
);
514 listRelease(c
->reply
);
517 /* Remove from the list of clients */
518 ln
= listSearchKey(server
.clients
,c
);
519 redisAssert(ln
!= NULL
);
520 listDelNode(server
.clients
,ln
);
521 /* When client was just unblocked because of a blocking operation,
522 * remove it from the list with unblocked clients. */
523 if (c
->flags
& REDIS_UNBLOCKED
) {
524 ln
= listSearchKey(server
.unblocked_clients
,c
);
525 redisAssert(ln
!= NULL
);
526 listDelNode(server
.unblocked_clients
,ln
);
528 listRelease(c
->io_keys
);
529 /* Master/slave cleanup.
530 * Case 1: we lost the connection with a slave. */
531 if (c
->flags
& REDIS_SLAVE
) {
532 if (c
->replstate
== REDIS_REPL_SEND_BULK
&& c
->repldbfd
!= -1)
534 list
*l
= (c
->flags
& REDIS_MONITOR
) ? server
.monitors
: server
.slaves
;
535 ln
= listSearchKey(l
,c
);
536 redisAssert(ln
!= NULL
);
540 /* Case 2: we lost the connection with the master. */
541 if (c
->flags
& REDIS_MASTER
) {
542 server
.master
= NULL
;
543 server
.repl_state
= REDIS_REPL_CONNECT
;
544 server
.repl_down_since
= time(NULL
);
545 /* Since we lost the connection with the master, we should also
546 * close the connection with all our slaves if we have any, so
547 * when we'll resync with the master the other slaves will sync again
548 * with us as well. Note that also when the slave is not connected
549 * to the master it will keep refusing connections by other slaves.
551 * We do this only if server.masterhost != NULL. If it is NULL this
552 * means the user called SLAVEOF NO ONE and we are freeing our
553 * link with the master, so no need to close link with slaves. */
554 if (server
.masterhost
!= NULL
) {
555 while (listLength(server
.slaves
)) {
556 ln
= listFirst(server
.slaves
);
557 freeClient((redisClient
*)ln
->value
);
563 freeClientMultiState(c
);
567 void sendReplyToClient(aeEventLoop
*el
, int fd
, void *privdata
, int mask
) {
568 redisClient
*c
= privdata
;
569 int nwritten
= 0, totwritten
= 0, objlen
;
574 while(c
->bufpos
> 0 || listLength(c
->reply
)) {
576 if (c
->flags
& REDIS_MASTER
) {
577 /* Don't reply to a master */
578 nwritten
= c
->bufpos
- c
->sentlen
;
580 nwritten
= write(fd
,c
->buf
+c
->sentlen
,c
->bufpos
-c
->sentlen
);
581 if (nwritten
<= 0) break;
583 c
->sentlen
+= nwritten
;
584 totwritten
+= nwritten
;
586 /* If the buffer was sent, set bufpos to zero to continue with
587 * the remainder of the reply. */
588 if (c
->sentlen
== c
->bufpos
) {
593 o
= listNodeValue(listFirst(c
->reply
));
594 objlen
= sdslen(o
->ptr
);
597 listDelNode(c
->reply
,listFirst(c
->reply
));
601 if (c
->flags
& REDIS_MASTER
) {
602 /* Don't reply to a master */
603 nwritten
= objlen
- c
->sentlen
;
605 nwritten
= write(fd
, ((char*)o
->ptr
)+c
->sentlen
,objlen
-c
->sentlen
);
606 if (nwritten
<= 0) break;
608 c
->sentlen
+= nwritten
;
609 totwritten
+= nwritten
;
611 /* If we fully sent the object on head go to the next one */
612 if (c
->sentlen
== objlen
) {
613 listDelNode(c
->reply
,listFirst(c
->reply
));
615 c
->reply_bytes
-= objlen
;
618 /* Note that we avoid to send more thank REDIS_MAX_WRITE_PER_EVENT
619 * bytes, in a single threaded server it's a good idea to serve
620 * other clients as well, even if a very large request comes from
621 * super fast link that is always able to accept data (in real world
622 * scenario think about 'KEYS *' against the loopback interfae) */
623 if (totwritten
> REDIS_MAX_WRITE_PER_EVENT
) break;
625 if (nwritten
== -1) {
626 if (errno
== EAGAIN
) {
629 redisLog(REDIS_VERBOSE
,
630 "Error writing to client: %s", strerror(errno
));
635 if (totwritten
> 0) c
->lastinteraction
= time(NULL
);
636 if (c
->bufpos
== 0 && listLength(c
->reply
) == 0) {
638 aeDeleteFileEvent(server
.el
,c
->fd
,AE_WRITABLE
);
640 /* Close connection after entire reply has been sent. */
641 if (c
->flags
& REDIS_CLOSE_AFTER_REPLY
) freeClient(c
);
645 /* resetClient prepare the client to process the next command */
646 void resetClient(redisClient
*c
) {
651 /* We clear the ASKING flag as well if we are not inside a MULTI. */
652 if (!(c
->flags
& REDIS_MULTI
)) c
->flags
&= (~REDIS_ASKING
);
655 void closeTimedoutClients(void) {
658 time_t now
= time(NULL
);
661 listRewind(server
.clients
,&li
);
662 while ((ln
= listNext(&li
)) != NULL
) {
663 c
= listNodeValue(ln
);
664 if (server
.maxidletime
&&
665 !(c
->flags
& REDIS_SLAVE
) && /* no timeout for slaves */
666 !(c
->flags
& REDIS_MASTER
) && /* no timeout for masters */
667 !(c
->flags
& REDIS_BLOCKED
) && /* no timeout for BLPOP */
668 dictSize(c
->pubsub_channels
) == 0 && /* no timeout for pubsub */
669 listLength(c
->pubsub_patterns
) == 0 &&
670 (now
- c
->lastinteraction
> server
.maxidletime
))
672 redisLog(REDIS_VERBOSE
,"Closing idle client");
674 } else if (c
->flags
& REDIS_BLOCKED
) {
675 if (c
->bpop
.timeout
!= 0 && c
->bpop
.timeout
< now
) {
676 addReply(c
,shared
.nullmultibulk
);
677 unblockClientWaitingData(c
);
683 int processInlineBuffer(redisClient
*c
) {
684 char *newline
= strstr(c
->querybuf
,"\r\n");
689 /* Nothing to do without a \r\n */
690 if (newline
== NULL
) {
691 if (sdslen(c
->querybuf
) > REDIS_INLINE_MAX_SIZE
) {
692 addReplyError(c
,"Protocol error: too big inline request");
693 setProtocolError(c
,0);
698 /* Split the input buffer up to the \r\n */
699 querylen
= newline
-(c
->querybuf
);
700 argv
= sdssplitlen(c
->querybuf
,querylen
," ",1,&argc
);
702 /* Leave data after the first line of the query in the buffer */
703 c
->querybuf
= sdsrange(c
->querybuf
,querylen
+2,-1);
705 /* Setup argv array on client structure */
706 if (c
->argv
) zfree(c
->argv
);
707 c
->argv
= zmalloc(sizeof(robj
*)*argc
);
709 /* Create redis objects for all arguments. */
710 for (c
->argc
= 0, j
= 0; j
< argc
; j
++) {
711 if (sdslen(argv
[j
])) {
712 c
->argv
[c
->argc
] = createObject(REDIS_STRING
,argv
[j
]);
722 /* Helper function. Trims query buffer to make the function that processes
723 * multi bulk requests idempotent. */
724 static void setProtocolError(redisClient
*c
, int pos
) {
725 if (server
.verbosity
>= REDIS_VERBOSE
) {
726 sds client
= getClientInfoString(c
);
727 redisLog(REDIS_VERBOSE
,
728 "Protocol error from client: %s", client
);
731 c
->flags
|= REDIS_CLOSE_AFTER_REPLY
;
732 c
->querybuf
= sdsrange(c
->querybuf
,pos
,-1);
735 int processMultibulkBuffer(redisClient
*c
) {
736 char *newline
= NULL
;
740 if (c
->multibulklen
== 0) {
741 /* The client should have been reset */
742 redisAssertWithInfo(c
,NULL
,c
->argc
== 0);
744 /* Multi bulk length cannot be read without a \r\n */
745 newline
= strchr(c
->querybuf
,'\r');
746 if (newline
== NULL
) {
747 if (sdslen(c
->querybuf
) > REDIS_INLINE_MAX_SIZE
) {
748 addReplyError(c
,"Protocol error: too big mbulk count string");
749 setProtocolError(c
,0);
754 /* Buffer should also contain \n */
755 if (newline
-(c
->querybuf
) > ((signed)sdslen(c
->querybuf
)-2))
758 /* We know for sure there is a whole line since newline != NULL,
759 * so go ahead and find out the multi bulk length. */
760 redisAssertWithInfo(c
,NULL
,c
->querybuf
[0] == '*');
761 ok
= string2ll(c
->querybuf
+1,newline
-(c
->querybuf
+1),&ll
);
762 if (!ok
|| ll
> 1024*1024) {
763 addReplyError(c
,"Protocol error: invalid multibulk length");
764 setProtocolError(c
,pos
);
768 pos
= (newline
-c
->querybuf
)+2;
770 c
->querybuf
= sdsrange(c
->querybuf
,pos
,-1);
774 c
->multibulklen
= ll
;
776 /* Setup argv array on client structure */
777 if (c
->argv
) zfree(c
->argv
);
778 c
->argv
= zmalloc(sizeof(robj
*)*c
->multibulklen
);
781 redisAssertWithInfo(c
,NULL
,c
->multibulklen
> 0);
782 while(c
->multibulklen
) {
783 /* Read bulk length if unknown */
784 if (c
->bulklen
== -1) {
785 newline
= strchr(c
->querybuf
+pos
,'\r');
786 if (newline
== NULL
) {
787 if (sdslen(c
->querybuf
) > REDIS_INLINE_MAX_SIZE
) {
788 addReplyError(c
,"Protocol error: too big bulk count string");
789 setProtocolError(c
,0);
794 /* Buffer should also contain \n */
795 if (newline
-(c
->querybuf
) > ((signed)sdslen(c
->querybuf
)-2))
798 if (c
->querybuf
[pos
] != '$') {
799 addReplyErrorFormat(c
,
800 "Protocol error: expected '$', got '%c'",
802 setProtocolError(c
,pos
);
806 ok
= string2ll(c
->querybuf
+pos
+1,newline
-(c
->querybuf
+pos
+1),&ll
);
807 if (!ok
|| ll
< 0 || ll
> 512*1024*1024) {
808 addReplyError(c
,"Protocol error: invalid bulk length");
809 setProtocolError(c
,pos
);
813 pos
+= newline
-(c
->querybuf
+pos
)+2;
814 if (ll
>= REDIS_MBULK_BIG_ARG
) {
815 /* If we are going to read a large object from network
816 * try to make it likely that it will start at c->querybuf
817 * boundary so that we can optimized object creation
818 * avoiding a large copy of data. */
819 c
->querybuf
= sdsrange(c
->querybuf
,pos
,-1);
821 /* Hint the sds library about the amount of bytes this string is
822 * going to contain. */
823 c
->querybuf
= sdsMakeRoomFor(c
->querybuf
,ll
+2);
828 /* Read bulk argument */
829 if (sdslen(c
->querybuf
)-pos
< (unsigned)(c
->bulklen
+2)) {
830 /* Not enough data (+2 == trailing \r\n) */
833 /* Optimization: if the buffer contanins JUST our bulk element
834 * instead of creating a new object by *copying* the sds we
835 * just use the current sds string. */
837 c
->bulklen
>= REDIS_MBULK_BIG_ARG
&&
838 (signed) sdslen(c
->querybuf
) == c
->bulklen
+2)
840 c
->argv
[c
->argc
++] = createObject(REDIS_STRING
,c
->querybuf
);
841 sdsIncrLen(c
->querybuf
,-2); /* remove CRLF */
842 c
->querybuf
= sdsempty();
843 /* Assume that if we saw a fat argument we'll see another one
845 c
->querybuf
= sdsMakeRoomFor(c
->querybuf
,c
->bulklen
+2);
849 createStringObject(c
->querybuf
+pos
,c
->bulklen
);
858 if (pos
) c
->querybuf
= sdsrange(c
->querybuf
,pos
,-1);
860 /* We're done when c->multibulk == 0 */
861 if (c
->multibulklen
== 0) return REDIS_OK
;
863 /* Still not read to process the command */
867 void processInputBuffer(redisClient
*c
) {
868 /* Keep processing while there is something in the input buffer */
869 while(sdslen(c
->querybuf
)) {
870 /* Immediately abort if the client is in the middle of something. */
871 if (c
->flags
& REDIS_BLOCKED
) return;
873 /* REDIS_CLOSE_AFTER_REPLY closes the connection once the reply is
874 * written to the client. Make sure to not let the reply grow after
875 * this flag has been set (i.e. don't process more commands). */
876 if (c
->flags
& REDIS_CLOSE_AFTER_REPLY
) return;
878 /* Determine request type when unknown. */
880 if (c
->querybuf
[0] == '*') {
881 c
->reqtype
= REDIS_REQ_MULTIBULK
;
883 c
->reqtype
= REDIS_REQ_INLINE
;
887 if (c
->reqtype
== REDIS_REQ_INLINE
) {
888 if (processInlineBuffer(c
) != REDIS_OK
) break;
889 } else if (c
->reqtype
== REDIS_REQ_MULTIBULK
) {
890 if (processMultibulkBuffer(c
) != REDIS_OK
) break;
892 redisPanic("Unknown request type");
895 /* Multibulk processing could see a <= 0 length. */
899 /* Only reset the client when the command was executed. */
900 if (processCommand(c
) == REDIS_OK
)
906 void readQueryFromClient(aeEventLoop
*el
, int fd
, void *privdata
, int mask
) {
907 redisClient
*c
= (redisClient
*) privdata
;
913 server
.current_client
= c
;
914 readlen
= REDIS_IOBUF_LEN
;
915 /* If this is a multi bulk request, and we are processing a bulk reply
916 * that is large enough, try to maximize the probabilty that the query
917 * buffer contains excatly the SDS string representing the object, even
918 * at the risk of requring more read(2) calls. This way the function
919 * processMultiBulkBuffer() can avoid copying buffers to create the
920 * Redis Object representing the argument. */
921 if (c
->reqtype
== REDIS_REQ_MULTIBULK
&& c
->multibulklen
&& c
->bulklen
!= -1
922 && c
->bulklen
>= REDIS_MBULK_BIG_ARG
)
924 int remaining
= (unsigned)(c
->bulklen
+2)-sdslen(c
->querybuf
);
926 if (remaining
< readlen
) readlen
= remaining
;
929 qblen
= sdslen(c
->querybuf
);
930 c
->querybuf
= sdsMakeRoomFor(c
->querybuf
, readlen
);
931 nread
= read(fd
, c
->querybuf
+qblen
, readlen
);
933 if (errno
== EAGAIN
) {
936 redisLog(REDIS_VERBOSE
, "Reading from client: %s",strerror(errno
));
940 } else if (nread
== 0) {
941 redisLog(REDIS_VERBOSE
, "Client closed connection");
946 sdsIncrLen(c
->querybuf
,nread
);
947 c
->lastinteraction
= time(NULL
);
949 server
.current_client
= NULL
;
952 if (sdslen(c
->querybuf
) > server
.client_max_querybuf_len
) {
953 sds ci
= getClientInfoString(c
), bytes
= sdsempty();
955 bytes
= sdscatrepr(bytes
,c
->querybuf
,64);
956 redisLog(REDIS_WARNING
,"Closing client that reached max query buffer length: %s (qbuf initial bytes: %s)", ci
, bytes
);
962 processInputBuffer(c
);
963 server
.current_client
= NULL
;
966 void getClientsMaxBuffers(unsigned long *longest_output_list
,
967 unsigned long *biggest_input_buffer
) {
971 unsigned long lol
= 0, bib
= 0;
973 listRewind(server
.clients
,&li
);
974 while ((ln
= listNext(&li
)) != NULL
) {
975 c
= listNodeValue(ln
);
977 if (listLength(c
->reply
) > lol
) lol
= listLength(c
->reply
);
978 if (sdslen(c
->querybuf
) > bib
) bib
= sdslen(c
->querybuf
);
980 *longest_output_list
= lol
;
981 *biggest_input_buffer
= bib
;
984 /* Turn a Redis client into an sds string representing its state. */
985 sds
getClientInfoString(redisClient
*client
) {
986 char ip
[32], flags
[16], events
[3], *p
;
988 time_t now
= time(NULL
);
991 if (anetPeerToString(client
->fd
,ip
,&port
) == -1) {
997 if (client
->flags
& REDIS_SLAVE
) {
998 if (client
->flags
& REDIS_MONITOR
)
1003 if (client
->flags
& REDIS_MASTER
) *p
++ = 'M';
1004 if (client
->flags
& REDIS_MULTI
) *p
++ = 'x';
1005 if (client
->flags
& REDIS_BLOCKED
) *p
++ = 'b';
1006 if (client
->flags
& REDIS_DIRTY_CAS
) *p
++ = 'd';
1007 if (client
->flags
& REDIS_CLOSE_AFTER_REPLY
) *p
++ = 'c';
1008 if (client
->flags
& REDIS_UNBLOCKED
) *p
++ = 'u';
1009 if (p
== flags
) *p
++ = 'N';
1012 emask
= client
->fd
== -1 ? 0 : aeGetFileEvents(server
.el
,client
->fd
);
1014 if (emask
& AE_READABLE
) *p
++ = 'r';
1015 if (emask
& AE_WRITABLE
) *p
++ = 'w';
1017 return sdscatprintf(sdsempty(),
1018 "addr=%s:%d fd=%d idle=%ld flags=%s db=%d sub=%d psub=%d qbuf=%lu obl=%lu oll=%lu omem=%lu events=%s cmd=%s",
1020 (long)(now
- client
->lastinteraction
),
1023 (int) dictSize(client
->pubsub_channels
),
1024 (int) listLength(client
->pubsub_patterns
),
1025 (unsigned long) sdslen(client
->querybuf
),
1026 (unsigned long) client
->bufpos
,
1027 (unsigned long) listLength(client
->reply
),
1028 getClientOutputBufferMemoryUsage(client
),
1030 client
->lastcmd
? client
->lastcmd
->name
: "NULL");
1033 sds
getAllClientsInfoString(void) {
1036 redisClient
*client
;
1039 listRewind(server
.clients
,&li
);
1040 while ((ln
= listNext(&li
)) != NULL
) {
1043 client
= listNodeValue(ln
);
1044 cs
= getClientInfoString(client
);
1045 o
= sdscatsds(o
,cs
);
1047 o
= sdscatlen(o
,"\n",1);
1052 void clientCommand(redisClient
*c
) {
1055 redisClient
*client
;
1057 if (!strcasecmp(c
->argv
[1]->ptr
,"list") && c
->argc
== 2) {
1058 sds o
= getAllClientsInfoString();
1059 addReplyBulkCBuffer(c
,o
,sdslen(o
));
1061 } else if (!strcasecmp(c
->argv
[1]->ptr
,"kill") && c
->argc
== 3) {
1062 listRewind(server
.clients
,&li
);
1063 while ((ln
= listNext(&li
)) != NULL
) {
1064 char ip
[32], addr
[64];
1067 client
= listNodeValue(ln
);
1068 if (anetPeerToString(client
->fd
,ip
,&port
) == -1) continue;
1069 snprintf(addr
,sizeof(addr
),"%s:%d",ip
,port
);
1070 if (strcmp(addr
,c
->argv
[2]->ptr
) == 0) {
1071 addReply(c
,shared
.ok
);
1073 client
->flags
|= REDIS_CLOSE_AFTER_REPLY
;
1080 addReplyError(c
,"No such client");
1082 addReplyError(c
, "Syntax error, try CLIENT (LIST | KILL ip:port)");
1086 /* Rewrite the command vector of the client. All the new objects ref count
1087 * is incremented. The old command vector is freed, and the old objects
1088 * ref count is decremented. */
1089 void rewriteClientCommandVector(redisClient
*c
, int argc
, ...) {
1092 robj
**argv
; /* The new argument vector */
1094 argv
= zmalloc(sizeof(robj
*)*argc
);
1096 for (j
= 0; j
< argc
; j
++) {
1099 a
= va_arg(ap
, robj
*);
1103 /* We free the objects in the original vector at the end, so we are
1104 * sure that if the same objects are reused in the new vector the
1105 * refcount gets incremented before it gets decremented. */
1106 for (j
= 0; j
< c
->argc
; j
++) decrRefCount(c
->argv
[j
]);
1108 /* Replace argv and argc with our new versions. */
1111 c
->cmd
= lookupCommand(c
->argv
[0]->ptr
);
1112 redisAssertWithInfo(c
,NULL
,c
->cmd
!= NULL
);
1116 /* Rewrite a single item in the command vector.
1117 * The new val ref count is incremented, and the old decremented. */
1118 void rewriteClientCommandArgument(redisClient
*c
, int i
, robj
*newval
) {
1121 redisAssertWithInfo(c
,NULL
,i
< c
->argc
);
1122 oldval
= c
->argv
[i
];
1123 c
->argv
[i
] = newval
;
1124 incrRefCount(newval
);
1125 decrRefCount(oldval
);
1127 /* If this is the command name make sure to fix c->cmd. */
1129 c
->cmd
= lookupCommand(c
->argv
[0]->ptr
);
1130 redisAssertWithInfo(c
,NULL
,c
->cmd
!= NULL
);
1134 /* This function returns the number of bytes that Redis is virtually
1135 * using to store the reply still not read by the client.
1136 * It is "virtual" since the reply output list may contain objects that
1137 * are shared and are not really using additional memory.
1139 * The function returns the total sum of the length of all the objects
1140 * stored in the output list, plus the memory used to allocate every
1141 * list node. The static reply buffer is not taken into account since it
1142 * is allocated anyway.
1144 * Note: this function is very fast so can be called as many time as
1145 * the caller wishes. The main usage of this function currently is
1146 * enforcing the client output lenght limits. */
1147 unsigned long getClientOutputBufferMemoryUsage(redisClient
*c
) {
1148 unsigned long list_item_size
= sizeof(listNode
);
1150 return c
->reply_bytes
+ (list_item_size
*listLength(c
->reply
));