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     /* 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. */ 
  22         anetNonBlock(NULL
,fd
); 
  23         anetTcpNoDelay(NULL
,fd
); 
  24         if (aeCreateFileEvent(server
.el
,fd
,AE_READABLE
, 
  25             readQueryFromClient
, c
) == AE_ERR
) 
  35     c
->querybuf 
= sdsempty(); 
  39     c
->cmd 
= c
->lastcmd 
= NULL
; 
  44     c
->lastinteraction 
= time(NULL
); 
  46     c
->replstate 
= REDIS_REPL_NONE
; 
  47     c
->reply 
= listCreate(); 
  48     listSetFreeMethod(c
->reply
,decrRefCount
); 
  49     listSetDupMethod(c
->reply
,dupClientReplyValue
); 
  53     c
->bpop
.target 
= NULL
; 
  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
); 
  61     if (fd 
!= -1) listAddNodeTail(server
.clients
,c
); 
  62     initClientMultiState(c
); 
  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. */ 
  68 int _installWriteEvent(redisClient 
*c
) { 
  69     if (c
->flags 
& REDIS_LUA_CLIENT
) return REDIS_OK
; 
  70     if (c
->fd 
<= 0) return REDIS_ERR
; 
  71     if (c
->bufpos 
== 0 && listLength(c
->reply
) == 0 && 
  72         (c
->replstate 
== REDIS_REPL_NONE 
|| 
  73          c
->replstate 
== REDIS_REPL_ONLINE
) && 
  74         aeCreateFileEvent(server
.el
, c
->fd
, AE_WRITABLE
, 
  75         sendReplyToClient
, c
) == AE_ERR
) return REDIS_ERR
; 
  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
) { 
  84     redisAssert(listLength(reply
) > 0); 
  86     cur 
= listNodeValue(ln
); 
  87     if (cur
->refcount 
> 1) { 
  88         new = dupStringObject(cur
); 
  90         listNodeValue(ln
) = new; 
  92     return listNodeValue(ln
); 
  95 /* ----------------------------------------------------------------------------- 
  96  * Low level functions to add more data to output buffers. 
  97  * -------------------------------------------------------------------------- */ 
  99 int _addReplyToBuffer(redisClient 
*c
, char *s
, size_t len
) { 
 100     size_t available 
= sizeof(c
->buf
)-c
->bufpos
; 
 102     if (c
->flags 
& REDIS_CLOSE_AFTER_REPLY
) return REDIS_OK
; 
 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
; 
 108     /* Check that the buffer has enough space available for this string. */ 
 109     if (len 
> available
) return REDIS_ERR
; 
 111     memcpy(c
->buf
+c
->bufpos
,s
,len
); 
 116 void _addReplyObjectToList(redisClient 
*c
, robj 
*o
) { 
 119     if (c
->flags 
& REDIS_CLOSE_AFTER_REPLY
) return; 
 121     if (listLength(c
->reply
) == 0) { 
 123         listAddNodeTail(c
->reply
,o
); 
 125         tail 
= listNodeValue(listLast(c
->reply
)); 
 127         /* Append to this object when possible. */ 
 128         if (tail
->ptr 
!= NULL 
&& 
 129             sdslen(tail
->ptr
)+sdslen(o
->ptr
) <= REDIS_REPLY_CHUNK_BYTES
) 
 131             tail 
= dupLastObjectIfNeeded(c
->reply
); 
 132             tail
->ptr 
= sdscatlen(tail
->ptr
,o
->ptr
,sdslen(o
->ptr
)); 
 135             listAddNodeTail(c
->reply
,o
); 
 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
) { 
 145     if (c
->flags 
& REDIS_CLOSE_AFTER_REPLY
) { 
 150     if (listLength(c
->reply
) == 0) { 
 151         listAddNodeTail(c
->reply
,createObject(REDIS_STRING
,s
)); 
 153         tail 
= listNodeValue(listLast(c
->reply
)); 
 155         /* Append to this object when possible. */ 
 156         if (tail
->ptr 
!= NULL 
&& 
 157             sdslen(tail
->ptr
)+sdslen(s
) <= REDIS_REPLY_CHUNK_BYTES
) 
 159             tail 
= dupLastObjectIfNeeded(c
->reply
); 
 160             tail
->ptr 
= sdscatlen(tail
->ptr
,s
,sdslen(s
)); 
 163             listAddNodeTail(c
->reply
,createObject(REDIS_STRING
,s
)); 
 168 void _addReplyStringToList(redisClient 
*c
, char *s
, size_t len
) { 
 171     if (c
->flags 
& REDIS_CLOSE_AFTER_REPLY
) return; 
 173     if (listLength(c
->reply
) == 0) { 
 174         listAddNodeTail(c
->reply
,createStringObject(s
,len
)); 
 176         tail 
= listNodeValue(listLast(c
->reply
)); 
 178         /* Append to this object when possible. */ 
 179         if (tail
->ptr 
!= NULL 
&& 
 180             sdslen(tail
->ptr
)+len 
<= REDIS_REPLY_CHUNK_BYTES
) 
 182             tail 
= dupLastObjectIfNeeded(c
->reply
); 
 183             tail
->ptr 
= sdscatlen(tail
->ptr
,s
,len
); 
 185             listAddNodeTail(c
->reply
,createStringObject(s
,len
)); 
 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  * -------------------------------------------------------------------------- */ 
 195 void addReply(redisClient 
*c
, robj 
*obj
) { 
 196     if (_installWriteEvent(c
) != REDIS_OK
) return; 
 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. 
 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
); 
 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. */ 
 212         obj 
= getDecodedObject(obj
); 
 213         if (_addReplyToBuffer(c
,obj
->ptr
,sdslen(obj
->ptr
)) != REDIS_OK
) 
 214             _addReplyObjectToList(c
,obj
); 
 219 void addReplySds(redisClient 
*c
, sds s
) { 
 220     if (_installWriteEvent(c
) != REDIS_OK
) { 
 221         /* The caller expects the sds to be free'd. */ 
 225     if (_addReplyToBuffer(c
,s
,sdslen(s
)) == REDIS_OK
) { 
 228         /* This method free's the sds when it is no longer needed. */ 
 229         _addReplySdsToList(c
,s
); 
 233 void addReplyString(redisClient 
*c
, char *s
, size_t len
) { 
 234     if (_installWriteEvent(c
) != REDIS_OK
) return; 
 235     if (_addReplyToBuffer(c
,s
,len
) != REDIS_OK
) 
 236         _addReplyStringToList(c
,s
,len
); 
 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); 
 245 void addReplyError(redisClient 
*c
, char *err
) { 
 246     _addReplyError(c
,err
,strlen(err
)); 
 249 void addReplyErrorFormat(redisClient 
*c
, const char *fmt
, ...) { 
 253     sds s 
= sdscatvprintf(sdsempty(),fmt
,ap
); 
 255     /* Make sure there are no newlines in the string, otherwise invalid protocol 
 258     for (j 
= 0; j 
< l
; j
++) { 
 259         if (s
[j
] == '\r' || s
[j
] == '\n') s
[j
] = ' '; 
 261     _addReplyError(c
,s
,sdslen(s
)); 
 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); 
 271 void addReplyStatus(redisClient 
*c
, char *status
) { 
 272     _addReplyStatus(c
,status
,strlen(status
)); 
 275 void addReplyStatusFormat(redisClient 
*c
, const char *fmt
, ...) { 
 278     sds s 
= sdscatvprintf(sdsempty(),fmt
,ap
); 
 280     _addReplyStatus(c
,s
,sdslen(s
)); 
 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
) { 
 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
; 
 291     listAddNodeTail(c
->reply
,createObject(REDIS_STRING
,NULL
)); 
 292     return listLast(c
->reply
); 
 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
; 
 300     /* Abort when *node is NULL (see addDeferredMultiBulkLength). */ 
 301     if (node 
== NULL
) return; 
 303     len 
= listNodeValue(ln
); 
 304     len
->ptr 
= sdscatprintf(sdsempty(),"*%ld\r\n",length
); 
 305     if (ln
->next 
!= NULL
) { 
 306         next 
= listNodeValue(ln
->next
); 
 308         /* Only glue when the next node is non-NULL (an sds in this case) */ 
 309         if (next
->ptr 
!= NULL
) { 
 310             len
->ptr 
= sdscatlen(len
->ptr
,next
->ptr
,sdslen(next
->ptr
)); 
 311             listDelNode(c
->reply
,ln
->next
); 
 316 /* Add a duble as a bulk reply */ 
 317 void addReplyDouble(redisClient 
*c
, double d
) { 
 318     char dbuf
[128], sbuf
[128]; 
 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
); 
 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>. */ 
 327 void _addReplyLongLong(redisClient 
*c
, long long ll
, char prefix
) { 
 331     len 
= ll2string(buf
+1,sizeof(buf
)-1,ll
); 
 334     addReplyString(c
,buf
,len
+3); 
 337 void addReplyLongLong(redisClient 
*c
, long long ll
) { 
 339         addReply(c
,shared
.czero
); 
 341         addReply(c
,shared
.cone
); 
 343         _addReplyLongLong(c
,ll
,':'); 
 346 void addReplyMultiBulkLen(redisClient 
*c
, long length
) { 
 347     _addReplyLongLong(c
,length
,'*'); 
 350 /* Create the length prefix of a bulk reply, example: $2234 */ 
 351 void addReplyBulkLen(redisClient 
*c
, robj 
*obj
) { 
 354     if (obj
->encoding 
== REDIS_ENCODING_RAW
) { 
 355         len 
= sdslen(obj
->ptr
); 
 357         long n 
= (long)obj
->ptr
; 
 359         /* Compute how many bytes will take this integer as a radix 10 string */ 
 365         while((n 
= n
/10) != 0) { 
 369     _addReplyLongLong(c
,len
,'$'); 
 372 /* Add a Redis Object as a bulk reply */ 
 373 void addReplyBulk(redisClient 
*c
, robj 
*obj
) { 
 374     addReplyBulkLen(c
,obj
); 
 376     addReply(c
,shared
.crlf
); 
 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
); 
 386 /* Add a C nul term string as bulk reply */ 
 387 void addReplyBulkCString(redisClient 
*c
, char *s
) { 
 389         addReply(c
,shared
.nullbulk
); 
 391         addReplyBulkCBuffer(c
,s
,strlen(s
)); 
 395 /* Add a long long as a bulk reply */ 
 396 void addReplyBulkLongLong(redisClient 
*c
, long long ll
) { 
 400     len 
= ll2string(buf
,64,ll
); 
 401     addReplyBulkCBuffer(c
,buf
,len
); 
 404 static void acceptCommonHandler(int fd
) { 
 406     if ((c 
= createClient(fd
)) == NULL
) { 
 407         redisLog(REDIS_WARNING
,"Error allocating resoures for the client"); 
 408         close(fd
); /* May be already closed, just ingore errors */ 
 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 */ 
 415     if (listLength(server
.clients
) > server
.maxclients
) { 
 416         char *err 
= "-ERR max number of clients reached\r\n"; 
 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... */ 
 422         server
.stat_rejected_conn
++; 
 426     server
.stat_numconnections
++; 
 429 void acceptTcpHandler(aeEventLoop 
*el
, int fd
, void *privdata
, int mask
) { 
 434     REDIS_NOTUSED(privdata
); 
 436     cfd 
= anetTcpAccept(server
.neterr
, fd
, cip
, &cport
); 
 438         redisLog(REDIS_WARNING
,"Accepting client connection: %s", server
.neterr
); 
 441     redisLog(REDIS_VERBOSE
,"Accepted %s:%d", cip
, cport
); 
 442     acceptCommonHandler(cfd
); 
 445 void acceptUnixHandler(aeEventLoop 
*el
, int fd
, void *privdata
, int mask
) { 
 449     REDIS_NOTUSED(privdata
); 
 451     cfd 
= anetUnixAccept(server
.neterr
, fd
); 
 453         redisLog(REDIS_WARNING
,"Accepting client connection: %s", server
.neterr
); 
 456     redisLog(REDIS_VERBOSE
,"Accepted connection to %s", server
.unixsocket
); 
 457     acceptCommonHandler(cfd
); 
 461 static void freeClientArgv(redisClient 
*c
) { 
 463     for (j 
= 0; j 
< c
->argc
; j
++) 
 464         decrRefCount(c
->argv
[j
]); 
 469 void freeClient(redisClient 
*c
) { 
 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
); 
 479     if (c
->flags 
& REDIS_BLOCKED
) 
 480         unblockClientWaitingData(c
); 
 482     /* UNWATCH all the keys */ 
 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
); 
 496     /* Remove from the list of clients */ 
 497     ln 
= listSearchKey(server
.clients
,c
); 
 498     redisAssert(ln 
!= NULL
); 
 499     listDelNode(server
.clients
,ln
); 
 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
); 
 507     listRelease(c
->io_keys
); 
 508     /* Master/slave cleanup. 
 509      * Case 1: we lost the connection with a slave. */ 
 510     if (c
->flags 
& REDIS_SLAVE
) { 
 511         if (c
->replstate 
== REDIS_REPL_SEND_BULK 
&& c
->repldbfd 
!= -1) 
 513         list 
*l 
= (c
->flags 
& REDIS_MONITOR
) ? server
.monitors 
: server
.slaves
; 
 514         ln 
= listSearchKey(l
,c
); 
 515         redisAssert(ln 
!= NULL
); 
 519     /* Case 2: we lost the connection with the master. */ 
 520     if (c
->flags 
& REDIS_MASTER
) { 
 521         server
.master 
= NULL
; 
 522         server
.replstate 
= REDIS_REPL_CONNECT
; 
 523         server
.repl_down_since 
= time(NULL
); 
 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 
 528          * to the master it will keep refusing connections by other slaves. 
 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
); 
 542     freeClientMultiState(c
); 
 546 void sendReplyToClient(aeEventLoop 
*el
, int fd
, void *privdata
, int mask
) { 
 547     redisClient 
*c 
= privdata
; 
 548     int nwritten 
= 0, totwritten 
= 0, objlen
; 
 553     while(c
->bufpos 
> 0 || listLength(c
->reply
)) { 
 555             if (c
->flags 
& REDIS_MASTER
) { 
 556                 /* Don't reply to a master */ 
 557                 nwritten 
= c
->bufpos 
- c
->sentlen
; 
 559                 nwritten 
= write(fd
,c
->buf
+c
->sentlen
,c
->bufpos
-c
->sentlen
); 
 560                 if (nwritten 
<= 0) break; 
 562             c
->sentlen 
+= nwritten
; 
 563             totwritten 
+= nwritten
; 
 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
) { 
 572             o 
= listNodeValue(listFirst(c
->reply
)); 
 573             objlen 
= sdslen(o
->ptr
); 
 576                 listDelNode(c
->reply
,listFirst(c
->reply
)); 
 580             if (c
->flags 
& REDIS_MASTER
) { 
 581                 /* Don't reply to a master */ 
 582                 nwritten 
= objlen 
- c
->sentlen
; 
 584                 nwritten 
= write(fd
, ((char*)o
->ptr
)+c
->sentlen
,objlen
-c
->sentlen
); 
 585                 if (nwritten 
<= 0) break; 
 587             c
->sentlen 
+= nwritten
; 
 588             totwritten 
+= nwritten
; 
 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
)); 
 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; 
 603     if (nwritten 
== -1) { 
 604         if (errno 
== EAGAIN
) { 
 607             redisLog(REDIS_VERBOSE
, 
 608                 "Error writing to client: %s", strerror(errno
)); 
 613     if (totwritten 
> 0) c
->lastinteraction 
= time(NULL
); 
 614     if (c
->bufpos 
== 0 && listLength(c
->reply
) == 0) { 
 616         aeDeleteFileEvent(server
.el
,c
->fd
,AE_WRITABLE
); 
 618         /* Close connection after entire reply has been sent. */ 
 619         if (c
->flags 
& REDIS_CLOSE_AFTER_REPLY
) freeClient(c
); 
 623 /* resetClient prepare the client to process the next command */ 
 624 void resetClient(redisClient 
*c
) { 
 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
); 
 633 void closeTimedoutClients(void) { 
 636     time_t now 
= time(NULL
); 
 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 */ 
 645             !(c
->flags 
& REDIS_BLOCKED
) &&  /* no timeout for BLPOP */ 
 646             dictSize(c
->pubsub_channels
) == 0 && /* no timeout for pubsub */ 
 647             listLength(c
->pubsub_patterns
) == 0 && 
 648             (now 
- c
->lastinteraction 
> server
.maxidletime
)) 
 650             redisLog(REDIS_VERBOSE
,"Closing idle client"); 
 652         } else if (c
->flags 
& REDIS_BLOCKED
) { 
 653             if (c
->bpop
.timeout 
!= 0 && c
->bpop
.timeout 
< now
) { 
 654                 addReply(c
,shared
.nullmultibulk
); 
 655                 unblockClientWaitingData(c
); 
 661 int processInlineBuffer(redisClient 
*c
) { 
 662     char *newline 
= strstr(c
->querybuf
,"\r\n"); 
 667     /* Nothing to do without a \r\n */ 
 671     /* Split the input buffer up to the \r\n */ 
 672     querylen 
= newline
-(c
->querybuf
); 
 673     argv 
= sdssplitlen(c
->querybuf
,querylen
," ",1,&argc
); 
 675     /* Leave data after the first line of the query in the buffer */ 
 676     c
->querybuf 
= sdsrange(c
->querybuf
,querylen
+2,-1); 
 678     /* Setup argv array on client structure */ 
 679     if (c
->argv
) zfree(c
->argv
); 
 680     c
->argv 
= zmalloc(sizeof(robj
*)*argc
); 
 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
]); 
 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
) { 
 698     c
->flags 
|= REDIS_CLOSE_AFTER_REPLY
; 
 699     c
->querybuf 
= sdsrange(c
->querybuf
,pos
,-1); 
 702 int processMultibulkBuffer(redisClient 
*c
) { 
 703     char *newline 
= NULL
; 
 707     if (c
->multibulklen 
== 0) { 
 708         /* The client should have been reset */ 
 709         redisAssertWithInfo(c
,NULL
,c
->argc 
== 0); 
 711         /* Multi bulk length cannot be read without a \r\n */ 
 712         newline 
= strchr(c
->querybuf
,'\r'); 
 716         /* Buffer should also contain \n */ 
 717         if (newline
-(c
->querybuf
) > ((signed)sdslen(c
->querybuf
)-2)) 
 720         /* We know for sure there is a whole line since newline != NULL, 
 721          * so go ahead and find out the multi bulk length. */ 
 722         redisAssertWithInfo(c
,NULL
,c
->querybuf
[0] == '*'); 
 723         ok 
= string2ll(c
->querybuf
+1,newline
-(c
->querybuf
+1),&ll
); 
 724         if (!ok 
|| ll 
> 1024*1024) { 
 725             addReplyError(c
,"Protocol error: invalid multibulk length"); 
 726             setProtocolError(c
,pos
); 
 730         pos 
= (newline
-c
->querybuf
)+2; 
 732             c
->querybuf 
= sdsrange(c
->querybuf
,pos
,-1); 
 736         c
->multibulklen 
= ll
; 
 738         /* Setup argv array on client structure */ 
 739         if (c
->argv
) zfree(c
->argv
); 
 740         c
->argv 
= zmalloc(sizeof(robj
*)*c
->multibulklen
); 
 743     redisAssertWithInfo(c
,NULL
,c
->multibulklen 
> 0); 
 744     while(c
->multibulklen
) { 
 745         /* Read bulk length if unknown */ 
 746         if (c
->bulklen 
== -1) { 
 747             newline 
= strchr(c
->querybuf
+pos
,'\r'); 
 751             /* Buffer should also contain \n */ 
 752             if (newline
-(c
->querybuf
) > ((signed)sdslen(c
->querybuf
)-2)) 
 755             if (c
->querybuf
[pos
] != '$') { 
 756                 addReplyErrorFormat(c
, 
 757                     "Protocol error: expected '$', got '%c'", 
 759                 setProtocolError(c
,pos
); 
 763             ok 
= string2ll(c
->querybuf
+pos
+1,newline
-(c
->querybuf
+pos
+1),&ll
); 
 764             if (!ok 
|| ll 
< 0 || ll 
> 512*1024*1024) { 
 765                 addReplyError(c
,"Protocol error: invalid bulk length"); 
 766                 setProtocolError(c
,pos
); 
 770             pos 
+= newline
-(c
->querybuf
+pos
)+2; 
 771             if (ll 
>= REDIS_MBULK_BIG_ARG
) { 
 772                 /* If we are going to read a large object from network 
 773                  * try to make it likely that it will start at c->querybuf 
 774                  * boundary so that we can optimized object creation 
 775                  * avoiding a large copy of data. */ 
 776                 c
->querybuf 
= sdsrange(c
->querybuf
,pos
,-1); 
 778                 /* Hint the sds library about the amount of bytes this string is 
 779                  * going to contain. */ 
 780                 c
->querybuf 
= sdsMakeRoomFor(c
->querybuf
,ll
+2); 
 785         /* Read bulk argument */ 
 786         if (sdslen(c
->querybuf
)-pos 
< (unsigned)(c
->bulklen
+2)) { 
 787             /* Not enough data (+2 == trailing \r\n) */ 
 790             /* Optimization: if the buffer contanins JUST our bulk element 
 791              * instead of creating a new object by *copying* the sds we 
 792              * just use the current sds string. */ 
 794                 c
->bulklen 
>= REDIS_MBULK_BIG_ARG 
&& 
 795                 (signed) sdslen(c
->querybuf
) == c
->bulklen
+2) 
 797                 c
->argv
[c
->argc
++] = createObject(REDIS_STRING
,c
->querybuf
); 
 798                 sdsIncrLen(c
->querybuf
,-2); /* remove CRLF */ 
 799                 c
->querybuf 
= sdsempty(); 
 800                 /* Assume that if we saw a fat argument we'll see another one 
 802                 c
->querybuf 
= sdsMakeRoomFor(c
->querybuf
,c
->bulklen
+2); 
 806                     createStringObject(c
->querybuf
+pos
,c
->bulklen
); 
 815     if (pos
) c
->querybuf 
= sdsrange(c
->querybuf
,pos
,-1); 
 817     /* We're done when c->multibulk == 0 */ 
 818     if (c
->multibulklen 
== 0) { 
 824 void processInputBuffer(redisClient 
*c
) { 
 825     /* Keep processing while there is something in the input buffer */ 
 826     while(sdslen(c
->querybuf
)) { 
 827         /* Immediately abort if the client is in the middle of something. */ 
 828         if (c
->flags 
& REDIS_BLOCKED
) return; 
 830         /* REDIS_CLOSE_AFTER_REPLY closes the connection once the reply is 
 831          * written to the client. Make sure to not let the reply grow after 
 832          * this flag has been set (i.e. don't process more commands). */ 
 833         if (c
->flags 
& REDIS_CLOSE_AFTER_REPLY
) return; 
 835         /* Determine request type when unknown. */ 
 837             if (c
->querybuf
[0] == '*') { 
 838                 c
->reqtype 
= REDIS_REQ_MULTIBULK
; 
 840                 c
->reqtype 
= REDIS_REQ_INLINE
; 
 844         if (c
->reqtype 
== REDIS_REQ_INLINE
) { 
 845             if (processInlineBuffer(c
) != REDIS_OK
) break; 
 846         } else if (c
->reqtype 
== REDIS_REQ_MULTIBULK
) { 
 847             if (processMultibulkBuffer(c
) != REDIS_OK
) break; 
 849             redisPanic("Unknown request type"); 
 852         /* Multibulk processing could see a <= 0 length. */ 
 856             /* Only reset the client when the command was executed. */ 
 857             if (processCommand(c
) == REDIS_OK
) 
 863 void readQueryFromClient(aeEventLoop 
*el
, int fd
, void *privdata
, int mask
) { 
 864     redisClient 
*c 
= (redisClient
*) privdata
; 
 870     readlen 
= REDIS_IOBUF_LEN
; 
 871     /* If this is a multi bulk request, and we are processing a bulk reply 
 872      * that is large enough, try to maximize the probabilty that the query 
 873      * buffer contains excatly the SDS string representing the object, even 
 874      * at the risk of requring more read(2) calls. This way the function 
 875      * processMultiBulkBuffer() can avoid copying buffers to create the 
 876      * Redis Object representing the argument. */ 
 877     if (c
->reqtype 
== REDIS_REQ_MULTIBULK 
&& c
->multibulklen 
&& c
->bulklen 
!= -1 
 878         && c
->bulklen 
>= REDIS_MBULK_BIG_ARG
) 
 880         int remaining 
= (unsigned)(c
->bulklen
+2)-sdslen(c
->querybuf
); 
 882         if (remaining 
< readlen
) readlen 
= remaining
; 
 885     qblen 
= sdslen(c
->querybuf
); 
 886     c
->querybuf 
= sdsMakeRoomFor(c
->querybuf
, readlen
); 
 887     nread 
= read(fd
, c
->querybuf
+qblen
, readlen
); 
 889         if (errno 
== EAGAIN
) { 
 892             redisLog(REDIS_VERBOSE
, "Reading from client: %s",strerror(errno
)); 
 896     } else if (nread 
== 0) { 
 897         redisLog(REDIS_VERBOSE
, "Client closed connection"); 
 902         sdsIncrLen(c
->querybuf
,nread
); 
 903         c
->lastinteraction 
= time(NULL
); 
 907     if (sdslen(c
->querybuf
) > server
.client_max_querybuf_len
) { 
 908         sds ci 
= getClientInfoString(c
); 
 909         redisLog(REDIS_WARNING
,"Closing client that reached max query buffer length: %s", ci
); 
 914     processInputBuffer(c
); 
 917 void getClientsMaxBuffers(unsigned long *longest_output_list
, 
 918                           unsigned long *biggest_input_buffer
) { 
 922     unsigned long lol 
= 0, bib 
= 0; 
 924     listRewind(server
.clients
,&li
); 
 925     while ((ln 
= listNext(&li
)) != NULL
) { 
 926         c 
= listNodeValue(ln
); 
 928         if (listLength(c
->reply
) > lol
) lol 
= listLength(c
->reply
); 
 929         if (sdslen(c
->querybuf
) > bib
) bib 
= sdslen(c
->querybuf
); 
 931     *longest_output_list 
= lol
; 
 932     *biggest_input_buffer 
= bib
; 
 935 /* Turn a Redis client into an sds string representing its state. */ 
 936 sds 
getClientInfoString(redisClient 
*client
) { 
 937     char ip
[32], flags
[16], events
[3], *p
; 
 939     time_t now 
= time(NULL
); 
 942     if (anetPeerToString(client
->fd
,ip
,&port
) == -1) { 
 948     if (client
->flags 
& REDIS_SLAVE
) { 
 949         if (client
->flags 
& REDIS_MONITOR
) 
 954     if (client
->flags 
& REDIS_MASTER
) *p
++ = 'M'; 
 955     if (client
->flags 
& REDIS_MULTI
) *p
++ = 'x'; 
 956     if (client
->flags 
& REDIS_BLOCKED
) *p
++ = 'b'; 
 957     if (client
->flags 
& REDIS_DIRTY_CAS
) *p
++ = 'd'; 
 958     if (client
->flags 
& REDIS_CLOSE_AFTER_REPLY
) *p
++ = 'c'; 
 959     if (client
->flags 
& REDIS_UNBLOCKED
) *p
++ = 'u'; 
 960     if (p 
== flags
) *p
++ = 'N'; 
 963     emask 
= client
->fd 
== -1 ? 0 : aeGetFileEvents(server
.el
,client
->fd
); 
 965     if (emask 
& AE_READABLE
) *p
++ = 'r'; 
 966     if (emask 
& AE_WRITABLE
) *p
++ = 'w'; 
 968     return sdscatprintf(sdsempty(), 
 969         "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", 
 971         (long)(now 
- client
->lastinteraction
), 
 974         (int) dictSize(client
->pubsub_channels
), 
 975         (int) listLength(client
->pubsub_patterns
), 
 976         (unsigned long) sdslen(client
->querybuf
), 
 977         (unsigned long) client
->bufpos
, 
 978         (unsigned long) listLength(client
->reply
), 
 980         client
->lastcmd 
? client
->lastcmd
->name 
: "NULL"); 
 983 void clientCommand(redisClient 
*c
) { 
 988     if (!strcasecmp(c
->argv
[1]->ptr
,"list") && c
->argc 
== 2) { 
 991         listRewind(server
.clients
,&li
); 
 992         while ((ln 
= listNext(&li
)) != NULL
) { 
 993             client 
= listNodeValue(ln
); 
 994             o 
= sdscatsds(o
,getClientInfoString(client
)); 
 995             o 
= sdscatlen(o
,"\n",1); 
 997         addReplyBulkCBuffer(c
,o
,sdslen(o
)); 
 999     } else if (!strcasecmp(c
->argv
[1]->ptr
,"kill") && c
->argc 
== 3) { 
1000         listRewind(server
.clients
,&li
); 
1001         while ((ln 
= listNext(&li
)) != NULL
) { 
1002             char ip
[32], addr
[64]; 
1005             client 
= listNodeValue(ln
); 
1006             if (anetPeerToString(client
->fd
,ip
,&port
) == -1) continue; 
1007             snprintf(addr
,sizeof(addr
),"%s:%d",ip
,port
); 
1008             if (strcmp(addr
,c
->argv
[2]->ptr
) == 0) { 
1009                 addReply(c
,shared
.ok
); 
1011                     client
->flags 
|= REDIS_CLOSE_AFTER_REPLY
; 
1018         addReplyError(c
,"No such client"); 
1020         addReplyError(c
, "Syntax error, try CLIENT (LIST | KILL ip:port)"); 
1024 /* Rewrite the command vector of the client. All the new objects ref count 
1025  * is incremented. The old command vector is freed, and the old objects 
1026  * ref count is decremented. */ 
1027 void rewriteClientCommandVector(redisClient 
*c
, int argc
, ...) { 
1030     robj 
**argv
; /* The new argument vector */ 
1032     argv 
= zmalloc(sizeof(robj
*)*argc
); 
1034     for (j 
= 0; j 
< argc
; j
++) { 
1037         a 
= va_arg(ap
, robj
*); 
1041     /* We free the objects in the original vector at the end, so we are 
1042      * sure that if the same objects are reused in the new vector the 
1043      * refcount gets incremented before it gets decremented. */ 
1044     for (j 
= 0; j 
< c
->argc
; j
++) decrRefCount(c
->argv
[j
]); 
1046     /* Replace argv and argc with our new versions. */ 
1049     c
->cmd 
= lookupCommand(c
->argv
[0]->ptr
); 
1050     redisAssertWithInfo(c
,NULL
,c
->cmd 
!= NULL
); 
1054 /* Rewrite a single item in the command vector. 
1055  * The new val ref count is incremented, and the old decremented. */ 
1056 void rewriteClientCommandArgument(redisClient 
*c
, int i
, robj 
*newval
) { 
1059     redisAssertWithInfo(c
,NULL
,i 
< c
->argc
); 
1060     oldval 
= c
->argv
[i
]; 
1061     c
->argv
[i
] = newval
; 
1062     incrRefCount(newval
); 
1063     decrRefCount(oldval
); 
1065     /* If this is the command name make sure to fix c->cmd. */ 
1067         c
->cmd 
= lookupCommand(c
->argv
[0]->ptr
); 
1068         redisAssertWithInfo(c
,NULL
,c
->cmd 
!= NULL
);