4 void *dupClientReplyValue(void *o
) {
5 incrRefCount((robj
*)o
);
9 int listMatchObjects(void *a
, void *b
) {
10 return equalStringObjects(a
,b
);
13 redisClient
*createClient(int fd
) {
14 redisClient
*c
= zmalloc(sizeof(redisClient
));
17 anetNonBlock(NULL
,fd
);
18 anetTcpNoDelay(NULL
,fd
);
20 if (aeCreateFileEvent(server
.el
,fd
,AE_READABLE
,
21 readQueryFromClient
, c
) == AE_ERR
)
30 c
->querybuf
= sdsempty();
38 c
->lastinteraction
= time(NULL
);
40 c
->replstate
= REDIS_REPL_NONE
;
41 c
->reply
= listCreate();
42 listSetFreeMethod(c
->reply
,decrRefCount
);
43 listSetDupMethod(c
->reply
,dupClientReplyValue
);
47 c
->bpop
.target
= NULL
;
48 c
->io_keys
= listCreate();
49 c
->watched_keys
= listCreate();
50 listSetFreeMethod(c
->io_keys
,decrRefCount
);
51 c
->pubsub_channels
= dictCreate(&setDictType
,NULL
);
52 c
->pubsub_patterns
= listCreate();
53 listSetFreeMethod(c
->pubsub_patterns
,decrRefCount
);
54 listSetMatchMethod(c
->pubsub_patterns
,listMatchObjects
);
55 listAddNodeTail(server
.clients
,c
);
56 initClientMultiState(c
);
60 /* Set the event loop to listen for write events on the client's socket.
61 * Typically gets called every time a reply is built. */
62 int _installWriteEvent(redisClient
*c
) {
63 if (c
->fd
<= 0) return REDIS_ERR
;
64 if (c
->bufpos
== 0 && listLength(c
->reply
) == 0 &&
65 (c
->replstate
== REDIS_REPL_NONE
||
66 c
->replstate
== REDIS_REPL_ONLINE
) &&
67 aeCreateFileEvent(server
.el
, c
->fd
, AE_WRITABLE
,
68 sendReplyToClient
, c
) == AE_ERR
) return REDIS_ERR
;
72 /* Create a duplicate of the last object in the reply list when
73 * it is not exclusively owned by the reply list. */
74 robj
*dupLastObjectIfNeeded(list
*reply
) {
77 redisAssert(listLength(reply
) > 0);
79 cur
= listNodeValue(ln
);
80 if (cur
->refcount
> 1) {
81 new = dupStringObject(cur
);
83 listNodeValue(ln
) = new;
85 return listNodeValue(ln
);
88 /* -----------------------------------------------------------------------------
89 * Low level functions to add more data to output buffers.
90 * -------------------------------------------------------------------------- */
92 int _addReplyToBuffer(redisClient
*c
, char *s
, size_t len
) {
93 size_t available
= sizeof(c
->buf
)-c
->bufpos
;
95 if (c
->flags
& REDIS_CLOSE_AFTER_REPLY
) return REDIS_OK
;
97 /* If there already are entries in the reply list, we cannot
98 * add anything more to the static buffer. */
99 if (listLength(c
->reply
) > 0) return REDIS_ERR
;
101 /* Check that the buffer has enough space available for this string. */
102 if (len
> available
) return REDIS_ERR
;
104 memcpy(c
->buf
+c
->bufpos
,s
,len
);
109 void _addReplyObjectToList(redisClient
*c
, robj
*o
) {
112 if (c
->flags
& REDIS_CLOSE_AFTER_REPLY
) return;
114 if (listLength(c
->reply
) == 0) {
116 listAddNodeTail(c
->reply
,o
);
118 tail
= listNodeValue(listLast(c
->reply
));
120 /* Append to this object when possible. */
121 if (tail
->ptr
!= NULL
&&
122 sdslen(tail
->ptr
)+sdslen(o
->ptr
) <= REDIS_REPLY_CHUNK_BYTES
)
124 tail
= dupLastObjectIfNeeded(c
->reply
);
125 tail
->ptr
= sdscatlen(tail
->ptr
,o
->ptr
,sdslen(o
->ptr
));
128 listAddNodeTail(c
->reply
,o
);
133 /* This method takes responsibility over the sds. When it is no longer
134 * needed it will be free'd, otherwise it ends up in a robj. */
135 void _addReplySdsToList(redisClient
*c
, sds s
) {
138 if (c
->flags
& REDIS_CLOSE_AFTER_REPLY
) {
143 if (listLength(c
->reply
) == 0) {
144 listAddNodeTail(c
->reply
,createObject(REDIS_STRING
,s
));
146 tail
= listNodeValue(listLast(c
->reply
));
148 /* Append to this object when possible. */
149 if (tail
->ptr
!= NULL
&&
150 sdslen(tail
->ptr
)+sdslen(s
) <= REDIS_REPLY_CHUNK_BYTES
)
152 tail
= dupLastObjectIfNeeded(c
->reply
);
153 tail
->ptr
= sdscatlen(tail
->ptr
,s
,sdslen(s
));
156 listAddNodeTail(c
->reply
,createObject(REDIS_STRING
,s
));
161 void _addReplyStringToList(redisClient
*c
, char *s
, size_t len
) {
164 if (c
->flags
& REDIS_CLOSE_AFTER_REPLY
) return;
166 if (listLength(c
->reply
) == 0) {
167 listAddNodeTail(c
->reply
,createStringObject(s
,len
));
169 tail
= listNodeValue(listLast(c
->reply
));
171 /* Append to this object when possible. */
172 if (tail
->ptr
!= NULL
&&
173 sdslen(tail
->ptr
)+len
<= REDIS_REPLY_CHUNK_BYTES
)
175 tail
= dupLastObjectIfNeeded(c
->reply
);
176 tail
->ptr
= sdscatlen(tail
->ptr
,s
,len
);
178 listAddNodeTail(c
->reply
,createStringObject(s
,len
));
183 /* -----------------------------------------------------------------------------
184 * Higher level functions to queue data on the client output buffer.
185 * The following functions are the ones that commands implementations will call.
186 * -------------------------------------------------------------------------- */
188 void addReply(redisClient
*c
, robj
*obj
) {
189 if (_installWriteEvent(c
) != REDIS_OK
) return;
191 /* This is an important place where we can avoid copy-on-write
192 * when there is a saving child running, avoiding touching the
193 * refcount field of the object if it's not needed.
195 * If the encoding is RAW and there is room in the static buffer
196 * we'll be able to send the object to the client without
197 * messing with its page. */
198 if (obj
->encoding
== REDIS_ENCODING_RAW
) {
199 if (_addReplyToBuffer(c
,obj
->ptr
,sdslen(obj
->ptr
)) != REDIS_OK
)
200 _addReplyObjectToList(c
,obj
);
202 /* FIXME: convert the long into string and use _addReplyToBuffer()
203 * instead of calling getDecodedObject. As this place in the
204 * code is too performance critical. */
205 obj
= getDecodedObject(obj
);
206 if (_addReplyToBuffer(c
,obj
->ptr
,sdslen(obj
->ptr
)) != REDIS_OK
)
207 _addReplyObjectToList(c
,obj
);
212 void addReplySds(redisClient
*c
, sds s
) {
213 if (_installWriteEvent(c
) != REDIS_OK
) {
214 /* The caller expects the sds to be free'd. */
218 if (_addReplyToBuffer(c
,s
,sdslen(s
)) == REDIS_OK
) {
221 /* This method free's the sds when it is no longer needed. */
222 _addReplySdsToList(c
,s
);
226 void addReplyString(redisClient
*c
, char *s
, size_t len
) {
227 if (_installWriteEvent(c
) != REDIS_OK
) return;
228 if (_addReplyToBuffer(c
,s
,len
) != REDIS_OK
)
229 _addReplyStringToList(c
,s
,len
);
232 void _addReplyError(redisClient
*c
, char *s
, size_t len
) {
233 addReplyString(c
,"-ERR ",5);
234 addReplyString(c
,s
,len
);
235 addReplyString(c
,"\r\n",2);
238 void addReplyError(redisClient
*c
, char *err
) {
239 _addReplyError(c
,err
,strlen(err
));
242 void addReplyErrorFormat(redisClient
*c
, const char *fmt
, ...) {
245 sds s
= sdscatvprintf(sdsempty(),fmt
,ap
);
247 _addReplyError(c
,s
,sdslen(s
));
251 void _addReplyStatus(redisClient
*c
, char *s
, size_t len
) {
252 addReplyString(c
,"+",1);
253 addReplyString(c
,s
,len
);
254 addReplyString(c
,"\r\n",2);
257 void addReplyStatus(redisClient
*c
, char *status
) {
258 _addReplyStatus(c
,status
,strlen(status
));
261 void addReplyStatusFormat(redisClient
*c
, const char *fmt
, ...) {
264 sds s
= sdscatvprintf(sdsempty(),fmt
,ap
);
266 _addReplyStatus(c
,s
,sdslen(s
));
270 /* Adds an empty object to the reply list that will contain the multi bulk
271 * length, which is not known when this function is called. */
272 void *addDeferredMultiBulkLength(redisClient
*c
) {
273 /* Note that we install the write event here even if the object is not
274 * ready to be sent, since we are sure that before returning to the
275 * event loop setDeferredMultiBulkLength() will be called. */
276 if (_installWriteEvent(c
) != REDIS_OK
) return NULL
;
277 listAddNodeTail(c
->reply
,createObject(REDIS_STRING
,NULL
));
278 return listLast(c
->reply
);
281 /* Populate the length object and try glueing it to the next chunk. */
282 void setDeferredMultiBulkLength(redisClient
*c
, void *node
, long length
) {
283 listNode
*ln
= (listNode
*)node
;
286 /* Abort when *node is NULL (see addDeferredMultiBulkLength). */
287 if (node
== NULL
) return;
289 len
= listNodeValue(ln
);
290 len
->ptr
= sdscatprintf(sdsempty(),"*%ld\r\n",length
);
291 if (ln
->next
!= NULL
) {
292 next
= listNodeValue(ln
->next
);
294 /* Only glue when the next node is non-NULL (an sds in this case) */
295 if (next
->ptr
!= NULL
) {
296 len
->ptr
= sdscatlen(len
->ptr
,next
->ptr
,sdslen(next
->ptr
));
297 listDelNode(c
->reply
,ln
->next
);
302 /* Add a duble as a bulk reply */
303 void addReplyDouble(redisClient
*c
, double d
) {
304 char dbuf
[128], sbuf
[128];
306 dlen
= snprintf(dbuf
,sizeof(dbuf
),"%.17g",d
);
307 slen
= snprintf(sbuf
,sizeof(sbuf
),"$%d\r\n%s\r\n",dlen
,dbuf
);
308 addReplyString(c
,sbuf
,slen
);
311 /* Add a long long as integer reply or bulk len / multi bulk count.
312 * Basically this is used to output <prefix><long long><crlf>. */
313 void _addReplyLongLong(redisClient
*c
, long long ll
, char prefix
) {
317 len
= ll2string(buf
+1,sizeof(buf
)-1,ll
);
320 addReplyString(c
,buf
,len
+3);
323 void addReplyLongLong(redisClient
*c
, long long ll
) {
325 addReply(c
,shared
.czero
);
327 addReply(c
,shared
.cone
);
329 _addReplyLongLong(c
,ll
,':');
332 void addReplyMultiBulkLen(redisClient
*c
, long length
) {
333 _addReplyLongLong(c
,length
,'*');
336 /* Create the length prefix of a bulk reply, example: $2234 */
337 void addReplyBulkLen(redisClient
*c
, robj
*obj
) {
340 if (obj
->encoding
== REDIS_ENCODING_RAW
) {
341 len
= sdslen(obj
->ptr
);
343 long n
= (long)obj
->ptr
;
345 /* Compute how many bytes will take this integer as a radix 10 string */
351 while((n
= n
/10) != 0) {
355 _addReplyLongLong(c
,len
,'$');
358 /* Add a Redis Object as a bulk reply */
359 void addReplyBulk(redisClient
*c
, robj
*obj
) {
360 addReplyBulkLen(c
,obj
);
362 addReply(c
,shared
.crlf
);
365 /* Add a C buffer as bulk reply */
366 void addReplyBulkCBuffer(redisClient
*c
, void *p
, size_t len
) {
367 _addReplyLongLong(c
,len
,'$');
368 addReplyString(c
,p
,len
);
369 addReply(c
,shared
.crlf
);
372 /* Add a C nul term string as bulk reply */
373 void addReplyBulkCString(redisClient
*c
, char *s
) {
375 addReply(c
,shared
.nullbulk
);
377 addReplyBulkCBuffer(c
,s
,strlen(s
));
381 /* Add a long long as a bulk reply */
382 void addReplyBulkLongLong(redisClient
*c
, long long ll
) {
386 len
= ll2string(buf
,64,ll
);
387 addReplyBulkCBuffer(c
,buf
,len
);
390 static void acceptCommonHandler(int fd
) {
392 if ((c
= createClient(fd
)) == NULL
) {
393 redisLog(REDIS_WARNING
,"Error allocating resoures for the client");
394 close(fd
); /* May be already closed, just ingore errors */
397 /* If maxclient directive is set and this is one client more... close the
398 * connection. Note that we create the client instead to check before
399 * for this condition, since now the socket is already set in nonblocking
400 * mode and we can send an error for free using the Kernel I/O */
401 if (server
.maxclients
&& listLength(server
.clients
) > server
.maxclients
) {
402 char *err
= "-ERR max number of clients reached\r\n";
404 /* That's a best effort error message, don't check write errors */
405 if (write(c
->fd
,err
,strlen(err
)) == -1) {
406 /* Nothing to do, Just to avoid the warning... */
411 server
.stat_numconnections
++;
414 void acceptTcpHandler(aeEventLoop
*el
, int fd
, void *privdata
, int mask
) {
419 REDIS_NOTUSED(privdata
);
421 cfd
= anetTcpAccept(server
.neterr
, fd
, cip
, &cport
);
423 redisLog(REDIS_VERBOSE
,"Accepting client connection: %s", server
.neterr
);
426 redisLog(REDIS_VERBOSE
,"Accepted %s:%d", cip
, cport
);
427 acceptCommonHandler(cfd
);
430 void acceptUnixHandler(aeEventLoop
*el
, int fd
, void *privdata
, int mask
) {
434 REDIS_NOTUSED(privdata
);
436 cfd
= anetUnixAccept(server
.neterr
, fd
);
438 redisLog(REDIS_VERBOSE
,"Accepting client connection: %s", server
.neterr
);
441 redisLog(REDIS_VERBOSE
,"Accepted connection to %s", server
.unixsocket
);
442 acceptCommonHandler(cfd
);
446 static void freeClientArgv(redisClient
*c
) {
448 for (j
= 0; j
< c
->argc
; j
++)
449 decrRefCount(c
->argv
[j
]);
453 void freeClient(redisClient
*c
) {
456 /* Note that if the client we are freeing is blocked into a blocking
457 * call, we have to set querybuf to NULL *before* to call
458 * unblockClientWaitingData() to avoid processInputBuffer() will get
459 * called. Also it is important to remove the file events after
460 * this, because this call adds the READABLE event. */
461 sdsfree(c
->querybuf
);
463 if (c
->flags
& REDIS_BLOCKED
)
464 unblockClientWaitingData(c
);
466 /* UNWATCH all the keys */
468 listRelease(c
->watched_keys
);
469 /* Unsubscribe from all the pubsub channels */
470 pubsubUnsubscribeAllChannels(c
,0);
471 pubsubUnsubscribeAllPatterns(c
,0);
472 dictRelease(c
->pubsub_channels
);
473 listRelease(c
->pubsub_patterns
);
474 /* Obvious cleanup */
475 aeDeleteFileEvent(server
.el
,c
->fd
,AE_READABLE
);
476 aeDeleteFileEvent(server
.el
,c
->fd
,AE_WRITABLE
);
477 listRelease(c
->reply
);
480 /* Remove from the list of clients */
481 ln
= listSearchKey(server
.clients
,c
);
482 redisAssert(ln
!= NULL
);
483 listDelNode(server
.clients
,ln
);
484 /* When client was just unblocked because of a blocking operation,
485 * remove it from the list with unblocked clients. */
486 if (c
->flags
& REDIS_UNBLOCKED
) {
487 ln
= listSearchKey(server
.unblocked_clients
,c
);
488 redisAssert(ln
!= NULL
);
489 listDelNode(server
.unblocked_clients
,ln
);
491 /* Remove from the list of clients waiting for swapped keys, or ready
492 * to be restarted, but not yet woken up again. */
493 if (c
->flags
& REDIS_IO_WAIT
) {
494 redisAssert(server
.ds_enabled
);
495 if (listLength(c
->io_keys
) == 0) {
496 ln
= listSearchKey(server
.io_ready_clients
,c
);
498 /* When this client is waiting to be woken up (REDIS_IO_WAIT),
499 * it should be present in the list io_ready_clients */
500 redisAssert(ln
!= NULL
);
501 listDelNode(server
.io_ready_clients
,ln
);
503 while (listLength(c
->io_keys
)) {
504 ln
= listFirst(c
->io_keys
);
505 dontWaitForSwappedKey(c
,ln
->value
);
508 server
.cache_blocked_clients
--;
510 listRelease(c
->io_keys
);
511 /* Master/slave cleanup.
512 * Case 1: we lost the connection with a slave. */
513 if (c
->flags
& REDIS_SLAVE
) {
514 if (c
->replstate
== REDIS_REPL_SEND_BULK
&& c
->repldbfd
!= -1)
516 list
*l
= (c
->flags
& REDIS_MONITOR
) ? server
.monitors
: server
.slaves
;
517 ln
= listSearchKey(l
,c
);
518 redisAssert(ln
!= NULL
);
522 /* Case 2: we lost the connection with the master. */
523 if (c
->flags
& REDIS_MASTER
) {
524 server
.master
= NULL
;
525 server
.replstate
= REDIS_REPL_CONNECT
;
526 /* Since we lost the connection with the master, we should also
527 * close the connection with all our slaves if we have any, so
528 * when we'll resync with the master the other slaves will sync again
529 * with us as well. Note that also when the slave is not connected
530 * to the master it will keep refusing connections by other slaves. */
531 while (listLength(server
.slaves
)) {
532 ln
= listFirst(server
.slaves
);
533 freeClient((redisClient
*)ln
->value
);
538 freeClientMultiState(c
);
542 void sendReplyToClient(aeEventLoop
*el
, int fd
, void *privdata
, int mask
) {
543 redisClient
*c
= privdata
;
544 int nwritten
= 0, totwritten
= 0, objlen
;
549 while(c
->bufpos
> 0 || listLength(c
->reply
)) {
551 if (c
->flags
& REDIS_MASTER
) {
552 /* Don't reply to a master */
553 nwritten
= c
->bufpos
- c
->sentlen
;
555 nwritten
= write(fd
,c
->buf
+c
->sentlen
,c
->bufpos
-c
->sentlen
);
556 if (nwritten
<= 0) break;
558 c
->sentlen
+= nwritten
;
559 totwritten
+= nwritten
;
561 /* If the buffer was sent, set bufpos to zero to continue with
562 * the remainder of the reply. */
563 if (c
->sentlen
== c
->bufpos
) {
568 o
= listNodeValue(listFirst(c
->reply
));
569 objlen
= sdslen(o
->ptr
);
572 listDelNode(c
->reply
,listFirst(c
->reply
));
576 if (c
->flags
& REDIS_MASTER
) {
577 /* Don't reply to a master */
578 nwritten
= objlen
- c
->sentlen
;
580 nwritten
= write(fd
, ((char*)o
->ptr
)+c
->sentlen
,objlen
-c
->sentlen
);
581 if (nwritten
<= 0) break;
583 c
->sentlen
+= nwritten
;
584 totwritten
+= nwritten
;
586 /* If we fully sent the object on head go to the next one */
587 if (c
->sentlen
== objlen
) {
588 listDelNode(c
->reply
,listFirst(c
->reply
));
592 /* Note that we avoid to send more thank REDIS_MAX_WRITE_PER_EVENT
593 * bytes, in a single threaded server it's a good idea to serve
594 * other clients as well, even if a very large request comes from
595 * super fast link that is always able to accept data (in real world
596 * scenario think about 'KEYS *' against the loopback interfae) */
597 if (totwritten
> REDIS_MAX_WRITE_PER_EVENT
) break;
599 if (nwritten
== -1) {
600 if (errno
== EAGAIN
) {
603 redisLog(REDIS_VERBOSE
,
604 "Error writing to client: %s", strerror(errno
));
609 if (totwritten
> 0) c
->lastinteraction
= time(NULL
);
610 if (listLength(c
->reply
) == 0) {
612 aeDeleteFileEvent(server
.el
,c
->fd
,AE_WRITABLE
);
614 /* Close connection after entire reply has been sent. */
615 if (c
->flags
& REDIS_CLOSE_AFTER_REPLY
) freeClient(c
);
619 /* resetClient prepare the client to process the next command */
620 void resetClient(redisClient
*c
) {
627 void closeTimedoutClients(void) {
630 time_t now
= time(NULL
);
633 listRewind(server
.clients
,&li
);
634 while ((ln
= listNext(&li
)) != NULL
) {
635 c
= listNodeValue(ln
);
636 if (server
.maxidletime
&&
637 !(c
->flags
& REDIS_SLAVE
) && /* no timeout for slaves */
638 !(c
->flags
& REDIS_MASTER
) && /* no timeout for masters */
639 !(c
->flags
& REDIS_BLOCKED
) && /* no timeout for BLPOP */
640 dictSize(c
->pubsub_channels
) == 0 && /* no timeout for pubsub */
641 listLength(c
->pubsub_patterns
) == 0 &&
642 (now
- c
->lastinteraction
> server
.maxidletime
))
644 redisLog(REDIS_VERBOSE
,"Closing idle client");
646 } else if (c
->flags
& REDIS_BLOCKED
) {
647 if (c
->bpop
.timeout
!= 0 && c
->bpop
.timeout
< now
) {
648 addReply(c
,shared
.nullmultibulk
);
649 unblockClientWaitingData(c
);
655 int processInlineBuffer(redisClient
*c
) {
656 char *newline
= strstr(c
->querybuf
,"\r\n");
661 /* Nothing to do without a \r\n */
665 /* Split the input buffer up to the \r\n */
666 querylen
= newline
-(c
->querybuf
);
667 argv
= sdssplitlen(c
->querybuf
,querylen
," ",1,&argc
);
669 /* Leave data after the first line of the query in the buffer */
670 c
->querybuf
= sdsrange(c
->querybuf
,querylen
+2,-1);
672 /* Setup argv array on client structure */
673 if (c
->argv
) zfree(c
->argv
);
674 c
->argv
= zmalloc(sizeof(robj
*)*argc
);
676 /* Create redis objects for all arguments. */
677 for (c
->argc
= 0, j
= 0; j
< argc
; j
++) {
678 if (sdslen(argv
[j
])) {
679 c
->argv
[c
->argc
] = createObject(REDIS_STRING
,argv
[j
]);
689 /* Helper function. Trims query buffer to make the function that processes
690 * multi bulk requests idempotent. */
691 static void setProtocolError(redisClient
*c
, int pos
) {
692 c
->flags
|= REDIS_CLOSE_AFTER_REPLY
;
693 c
->querybuf
= sdsrange(c
->querybuf
,pos
,-1);
696 int processMultibulkBuffer(redisClient
*c
) {
697 char *newline
= NULL
;
702 if (c
->multibulklen
== 0) {
703 /* The client should have been reset */
704 redisAssert(c
->argc
== 0);
706 /* Multi bulk length cannot be read without a \r\n */
707 newline
= strstr(c
->querybuf
,"\r\n");
711 /* We know for sure there is a whole line since newline != NULL,
712 * so go ahead and find out the multi bulk length. */
713 redisAssert(c
->querybuf
[0] == '*');
714 c
->multibulklen
= strtol(c
->querybuf
+1,&eptr
,10);
715 pos
= (newline
-c
->querybuf
)+2;
716 if (c
->multibulklen
<= 0) {
717 c
->querybuf
= sdsrange(c
->querybuf
,pos
,-1);
719 } else if (c
->multibulklen
> 1024*1024) {
720 addReplyError(c
,"Protocol error: invalid multibulk length");
721 setProtocolError(c
,pos
);
725 /* Setup argv array on client structure */
726 if (c
->argv
) zfree(c
->argv
);
727 c
->argv
= zmalloc(sizeof(robj
*)*c
->multibulklen
);
729 /* Search new newline */
730 newline
= strstr(c
->querybuf
+pos
,"\r\n");
733 redisAssert(c
->multibulklen
> 0);
734 while(c
->multibulklen
) {
735 /* Read bulk length if unknown */
736 if (c
->bulklen
== -1) {
737 newline
= strstr(c
->querybuf
+pos
,"\r\n");
738 if (newline
!= NULL
) {
739 if (c
->querybuf
[pos
] != '$') {
740 addReplyErrorFormat(c
,
741 "Protocol error: expected '$', got '%c'",
743 setProtocolError(c
,pos
);
747 bulklen
= strtol(c
->querybuf
+pos
+1,&eptr
,10);
748 tolerr
= (eptr
[0] != '\r');
749 if (tolerr
|| bulklen
== LONG_MIN
|| bulklen
== LONG_MAX
||
750 bulklen
< 0 || bulklen
> 512*1024*1024)
752 addReplyError(c
,"Protocol error: invalid bulk length");
753 setProtocolError(c
,pos
);
756 pos
+= eptr
-(c
->querybuf
+pos
)+2;
757 c
->bulklen
= bulklen
;
759 /* No newline in current buffer, so wait for more data */
764 /* Read bulk argument */
765 if (sdslen(c
->querybuf
)-pos
< (unsigned)(c
->bulklen
+2)) {
766 /* Not enough data (+2 == trailing \r\n) */
769 c
->argv
[c
->argc
++] = createStringObject(c
->querybuf
+pos
,c
->bulklen
);
777 c
->querybuf
= sdsrange(c
->querybuf
,pos
,-1);
779 /* We're done when c->multibulk == 0 */
780 if (c
->multibulklen
== 0) {
786 void processInputBuffer(redisClient
*c
) {
787 /* Keep processing while there is something in the input buffer */
788 while(sdslen(c
->querybuf
)) {
789 /* Immediately abort if the client is in the middle of something. */
790 if (c
->flags
& REDIS_BLOCKED
|| c
->flags
& REDIS_IO_WAIT
) return;
792 /* REDIS_CLOSE_AFTER_REPLY closes the connection once the reply is
793 * written to the client. Make sure to not let the reply grow after
794 * this flag has been set (i.e. don't process more commands). */
795 if (c
->flags
& REDIS_CLOSE_AFTER_REPLY
) return;
797 /* Determine request type when unknown. */
799 if (c
->querybuf
[0] == '*') {
800 c
->reqtype
= REDIS_REQ_MULTIBULK
;
802 c
->reqtype
= REDIS_REQ_INLINE
;
806 if (c
->reqtype
== REDIS_REQ_INLINE
) {
807 if (processInlineBuffer(c
) != REDIS_OK
) break;
808 } else if (c
->reqtype
== REDIS_REQ_MULTIBULK
) {
809 if (processMultibulkBuffer(c
) != REDIS_OK
) break;
811 redisPanic("Unknown request type");
814 /* Multibulk processing could see a <= 0 length. */
818 /* Only reset the client when the command was executed. */
819 if (processCommand(c
) == REDIS_OK
)
825 void readQueryFromClient(aeEventLoop
*el
, int fd
, void *privdata
, int mask
) {
826 redisClient
*c
= (redisClient
*) privdata
;
827 char buf
[REDIS_IOBUF_LEN
];
832 nread
= read(fd
, buf
, REDIS_IOBUF_LEN
);
834 if (errno
== EAGAIN
) {
837 redisLog(REDIS_VERBOSE
, "Reading from client: %s",strerror(errno
));
841 } else if (nread
== 0) {
842 redisLog(REDIS_VERBOSE
, "Client closed connection");
847 c
->querybuf
= sdscatlen(c
->querybuf
,buf
,nread
);
848 c
->lastinteraction
= time(NULL
);
852 processInputBuffer(c
);
855 void getClientsMaxBuffers(unsigned long *longest_output_list
,
856 unsigned long *biggest_input_buffer
) {
860 unsigned long lol
= 0, bib
= 0;
862 listRewind(server
.clients
,&li
);
863 while ((ln
= listNext(&li
)) != NULL
) {
864 c
= listNodeValue(ln
);
866 if (listLength(c
->reply
) > lol
) lol
= listLength(c
->reply
);
867 if (sdslen(c
->querybuf
) > bib
) bib
= sdslen(c
->querybuf
);
869 *longest_output_list
= lol
;
870 *biggest_input_buffer
= bib
;