5 void *dupClientReplyValue(void *o
) {
6 incrRefCount((robj
*)o
);
10 int listMatchObjects(void *a
, void *b
) {
11 return equalStringObjects(a
,b
);
14 redisClient
*createClient(int fd
) {
15 redisClient
*c
= zmalloc(sizeof(*c
));
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();
39 c
->lastinteraction
= time(NULL
);
41 c
->replstate
= REDIS_REPL_NONE
;
42 c
->reply
= listCreate();
43 listSetFreeMethod(c
->reply
,decrRefCount
);
44 listSetDupMethod(c
->reply
,dupClientReplyValue
);
45 c
->blocking_keys
= NULL
;
46 c
->blocking_keys_num
= 0;
47 c
->io_keys
= listCreate();
48 c
->watched_keys
= listCreate();
49 listSetFreeMethod(c
->io_keys
,decrRefCount
);
50 c
->pubsub_channels
= dictCreate(&setDictType
,NULL
);
51 c
->pubsub_patterns
= listCreate();
52 listSetFreeMethod(c
->pubsub_patterns
,decrRefCount
);
53 listSetMatchMethod(c
->pubsub_patterns
,listMatchObjects
);
54 listAddNodeTail(server
.clients
,c
);
55 initClientMultiState(c
);
59 void addReply(redisClient
*c
, robj
*obj
) {
60 if (listLength(c
->reply
) == 0 &&
61 (c
->replstate
== REDIS_REPL_NONE
||
62 c
->replstate
== REDIS_REPL_ONLINE
) &&
63 aeCreateFileEvent(server
.el
, c
->fd
, AE_WRITABLE
,
64 sendReplyToClient
, c
) == AE_ERR
) return;
66 if (server
.vm_enabled
&& obj
->storage
!= REDIS_VM_MEMORY
) {
67 obj
= dupStringObject(obj
);
68 obj
->refcount
= 0; /* getDecodedObject() will increment the refcount */
70 listAddNodeTail(c
->reply
,getDecodedObject(obj
));
73 void addReplySds(redisClient
*c
, sds s
) {
74 robj
*o
= createObject(REDIS_STRING
,s
);
79 void addReplyDouble(redisClient
*c
, double d
) {
82 snprintf(buf
,sizeof(buf
),"%.17g",d
);
83 addReplySds(c
,sdscatprintf(sdsempty(),"$%lu\r\n%s\r\n",
84 (unsigned long) strlen(buf
),buf
));
87 void addReplyLongLong(redisClient
*c
, long long ll
) {
92 addReply(c
,shared
.czero
);
95 addReply(c
,shared
.cone
);
99 len
= ll2string(buf
+1,sizeof(buf
)-1,ll
);
102 addReplySds(c
,sdsnewlen(buf
,len
+3));
105 void addReplyUlong(redisClient
*c
, unsigned long ul
) {
110 addReply(c
,shared
.czero
);
112 } else if (ul
== 1) {
113 addReply(c
,shared
.cone
);
116 len
= snprintf(buf
,sizeof(buf
),":%lu\r\n",ul
);
117 addReplySds(c
,sdsnewlen(buf
,len
));
120 void addReplyBulkLen(redisClient
*c
, robj
*obj
) {
124 if (obj
->encoding
== REDIS_ENCODING_RAW
) {
125 len
= sdslen(obj
->ptr
);
127 long n
= (long)obj
->ptr
;
129 /* Compute how many bytes will take this integer as a radix 10 string */
135 while((n
= n
/10) != 0) {
140 intlen
= ll2string(buf
+1,sizeof(buf
)-1,(long long)len
);
141 buf
[intlen
+1] = '\r';
142 buf
[intlen
+2] = '\n';
143 addReplySds(c
,sdsnewlen(buf
,intlen
+3));
146 void addReplyBulk(redisClient
*c
, robj
*obj
) {
147 addReplyBulkLen(c
,obj
);
149 addReply(c
,shared
.crlf
);
152 /* In the CONFIG command we need to add vanilla C string as bulk replies */
153 void addReplyBulkCString(redisClient
*c
, char *s
) {
155 addReply(c
,shared
.nullbulk
);
157 robj
*o
= createStringObject(s
,strlen(s
));
163 void acceptHandler(aeEventLoop
*el
, int fd
, void *privdata
, int mask
) {
169 REDIS_NOTUSED(privdata
);
171 cfd
= anetAccept(server
.neterr
, fd
, cip
, &cport
);
173 redisLog(REDIS_VERBOSE
,"Accepting client connection: %s", server
.neterr
);
176 redisLog(REDIS_VERBOSE
,"Accepted %s:%d", cip
, cport
);
177 if ((c
= createClient(cfd
)) == NULL
) {
178 redisLog(REDIS_WARNING
,"Error allocating resoures for the client");
179 close(cfd
); /* May be already closed, just ingore errors */
182 /* If maxclient directive is set and this is one client more... close the
183 * connection. Note that we create the client instead to check before
184 * for this condition, since now the socket is already set in nonblocking
185 * mode and we can send an error for free using the Kernel I/O */
186 if (server
.maxclients
&& listLength(server
.clients
) > server
.maxclients
) {
187 char *err
= "-ERR max number of clients reached\r\n";
189 /* That's a best effort error message, don't check write errors */
190 if (write(c
->fd
,err
,strlen(err
)) == -1) {
191 /* Nothing to do, Just to avoid the warning... */
196 server
.stat_numconnections
++;
199 static void freeClientArgv(redisClient
*c
) {
202 for (j
= 0; j
< c
->argc
; j
++)
203 decrRefCount(c
->argv
[j
]);
204 for (j
= 0; j
< c
->mbargc
; j
++)
205 decrRefCount(c
->mbargv
[j
]);
210 void freeClient(redisClient
*c
) {
213 /* Note that if the client we are freeing is blocked into a blocking
214 * call, we have to set querybuf to NULL *before* to call
215 * unblockClientWaitingData() to avoid processInputBuffer() will get
216 * called. Also it is important to remove the file events after
217 * this, because this call adds the READABLE event. */
218 sdsfree(c
->querybuf
);
220 if (c
->flags
& REDIS_BLOCKED
)
221 unblockClientWaitingData(c
);
223 /* UNWATCH all the keys */
225 listRelease(c
->watched_keys
);
226 /* Unsubscribe from all the pubsub channels */
227 pubsubUnsubscribeAllChannels(c
,0);
228 pubsubUnsubscribeAllPatterns(c
,0);
229 dictRelease(c
->pubsub_channels
);
230 listRelease(c
->pubsub_patterns
);
231 /* Obvious cleanup */
232 aeDeleteFileEvent(server
.el
,c
->fd
,AE_READABLE
);
233 aeDeleteFileEvent(server
.el
,c
->fd
,AE_WRITABLE
);
234 listRelease(c
->reply
);
237 /* Remove from the list of clients */
238 ln
= listSearchKey(server
.clients
,c
);
239 redisAssert(ln
!= NULL
);
240 listDelNode(server
.clients
,ln
);
241 /* Remove from the list of clients waiting for swapped keys, or ready
242 * to be restarted, but not yet woken up again. */
243 if (c
->flags
& REDIS_IO_WAIT
) {
244 redisAssert(server
.vm_enabled
);
245 if (listLength(c
->io_keys
) == 0) {
246 ln
= listSearchKey(server
.io_ready_clients
,c
);
248 /* When this client is waiting to be woken up (REDIS_IO_WAIT),
249 * it should be present in the list io_ready_clients */
250 redisAssert(ln
!= NULL
);
251 listDelNode(server
.io_ready_clients
,ln
);
253 while (listLength(c
->io_keys
)) {
254 ln
= listFirst(c
->io_keys
);
255 dontWaitForSwappedKey(c
,ln
->value
);
258 server
.vm_blocked_clients
--;
260 listRelease(c
->io_keys
);
261 /* Master/slave cleanup.
262 * Case 1: we lost the connection with a slave. */
263 if (c
->flags
& REDIS_SLAVE
) {
264 if (c
->replstate
== REDIS_REPL_SEND_BULK
&& c
->repldbfd
!= -1)
266 list
*l
= (c
->flags
& REDIS_MONITOR
) ? server
.monitors
: server
.slaves
;
267 ln
= listSearchKey(l
,c
);
268 redisAssert(ln
!= NULL
);
272 /* Case 2: we lost the connection with the master. */
273 if (c
->flags
& REDIS_MASTER
) {
274 server
.master
= NULL
;
275 server
.replstate
= REDIS_REPL_CONNECT
;
276 /* Since we lost the connection with the master, we should also
277 * close the connection with all our slaves if we have any, so
278 * when we'll resync with the master the other slaves will sync again
279 * with us as well. Note that also when the slave is not connected
280 * to the master it will keep refusing connections by other slaves. */
281 while (listLength(server
.slaves
)) {
282 ln
= listFirst(server
.slaves
);
283 freeClient((redisClient
*)ln
->value
);
289 freeClientMultiState(c
);
293 #define GLUEREPLY_UP_TO (1024)
294 static void glueReplyBuffersIfNeeded(redisClient
*c
) {
296 char buf
[GLUEREPLY_UP_TO
];
301 listRewind(c
->reply
,&li
);
302 while((ln
= listNext(&li
))) {
306 objlen
= sdslen(o
->ptr
);
307 if (copylen
+ objlen
<= GLUEREPLY_UP_TO
) {
308 memcpy(buf
+copylen
,o
->ptr
,objlen
);
310 listDelNode(c
->reply
,ln
);
312 if (copylen
== 0) return;
316 /* Now the output buffer is empty, add the new single element */
317 o
= createObject(REDIS_STRING
,sdsnewlen(buf
,copylen
));
318 listAddNodeHead(c
->reply
,o
);
321 void sendReplyToClient(aeEventLoop
*el
, int fd
, void *privdata
, int mask
) {
322 redisClient
*c
= privdata
;
323 int nwritten
= 0, totwritten
= 0, objlen
;
328 /* Use writev() if we have enough buffers to send */
329 if (!server
.glueoutputbuf
&&
330 listLength(c
->reply
) > REDIS_WRITEV_THRESHOLD
&&
331 !(c
->flags
& REDIS_MASTER
))
333 sendReplyToClientWritev(el
, fd
, privdata
, mask
);
337 while(listLength(c
->reply
)) {
338 if (server
.glueoutputbuf
&& listLength(c
->reply
) > 1)
339 glueReplyBuffersIfNeeded(c
);
341 o
= listNodeValue(listFirst(c
->reply
));
342 objlen
= sdslen(o
->ptr
);
345 listDelNode(c
->reply
,listFirst(c
->reply
));
349 if (c
->flags
& REDIS_MASTER
) {
350 /* Don't reply to a master */
351 nwritten
= objlen
- c
->sentlen
;
353 nwritten
= write(fd
, ((char*)o
->ptr
)+c
->sentlen
, objlen
- c
->sentlen
);
354 if (nwritten
<= 0) break;
356 c
->sentlen
+= nwritten
;
357 totwritten
+= nwritten
;
358 /* If we fully sent the object on head go to the next one */
359 if (c
->sentlen
== objlen
) {
360 listDelNode(c
->reply
,listFirst(c
->reply
));
363 /* Note that we avoid to send more thank REDIS_MAX_WRITE_PER_EVENT
364 * bytes, in a single threaded server it's a good idea to serve
365 * other clients as well, even if a very large request comes from
366 * super fast link that is always able to accept data (in real world
367 * scenario think about 'KEYS *' against the loopback interfae) */
368 if (totwritten
> REDIS_MAX_WRITE_PER_EVENT
) break;
370 if (nwritten
== -1) {
371 if (errno
== EAGAIN
) {
374 redisLog(REDIS_VERBOSE
,
375 "Error writing to client: %s", strerror(errno
));
380 if (totwritten
> 0) c
->lastinteraction
= time(NULL
);
381 if (listLength(c
->reply
) == 0) {
383 aeDeleteFileEvent(server
.el
,c
->fd
,AE_WRITABLE
);
387 void sendReplyToClientWritev(aeEventLoop
*el
, int fd
, void *privdata
, int mask
)
389 redisClient
*c
= privdata
;
390 int nwritten
= 0, totwritten
= 0, objlen
, willwrite
;
392 struct iovec iov
[REDIS_WRITEV_IOVEC_COUNT
];
398 while (listLength(c
->reply
)) {
403 /* fill-in the iov[] array */
404 for(node
= listFirst(c
->reply
); node
; node
= listNextNode(node
)) {
405 o
= listNodeValue(node
);
406 objlen
= sdslen(o
->ptr
);
408 if (totwritten
+ objlen
- offset
> REDIS_MAX_WRITE_PER_EVENT
)
411 if(ion
== REDIS_WRITEV_IOVEC_COUNT
)
412 break; /* no more iovecs */
414 iov
[ion
].iov_base
= ((char*)o
->ptr
) + offset
;
415 iov
[ion
].iov_len
= objlen
- offset
;
416 willwrite
+= objlen
- offset
;
417 offset
= 0; /* just for the first item */
424 /* write all collected blocks at once */
425 if((nwritten
= writev(fd
, iov
, ion
)) < 0) {
426 if (errno
!= EAGAIN
) {
427 redisLog(REDIS_VERBOSE
,
428 "Error writing to client: %s", strerror(errno
));
435 totwritten
+= nwritten
;
438 /* remove written robjs from c->reply */
439 while (nwritten
&& listLength(c
->reply
)) {
440 o
= listNodeValue(listFirst(c
->reply
));
441 objlen
= sdslen(o
->ptr
);
443 if(nwritten
>= objlen
- offset
) {
444 listDelNode(c
->reply
, listFirst(c
->reply
));
445 nwritten
-= objlen
- offset
;
449 c
->sentlen
+= nwritten
;
457 c
->lastinteraction
= time(NULL
);
459 if (listLength(c
->reply
) == 0) {
461 aeDeleteFileEvent(server
.el
,c
->fd
,AE_WRITABLE
);
465 /* resetClient prepare the client to process the next command */
466 void resetClient(redisClient
*c
) {
472 void closeTimedoutClients(void) {
475 time_t now
= time(NULL
);
478 listRewind(server
.clients
,&li
);
479 while ((ln
= listNext(&li
)) != NULL
) {
480 c
= listNodeValue(ln
);
481 if (server
.maxidletime
&&
482 !(c
->flags
& REDIS_SLAVE
) && /* no timeout for slaves */
483 !(c
->flags
& REDIS_MASTER
) && /* no timeout for masters */
484 !(c
->flags
& REDIS_BLOCKED
) && /* no timeout for BLPOP */
485 dictSize(c
->pubsub_channels
) == 0 && /* no timeout for pubsub */
486 listLength(c
->pubsub_patterns
) == 0 &&
487 (now
- c
->lastinteraction
> server
.maxidletime
))
489 redisLog(REDIS_VERBOSE
,"Closing idle client");
491 } else if (c
->flags
& REDIS_BLOCKED
) {
492 if (c
->blockingto
!= 0 && c
->blockingto
< now
) {
493 addReply(c
,shared
.nullmultibulk
);
494 unblockClientWaitingData(c
);
500 void processInputBuffer(redisClient
*c
) {
502 /* Before to process the input buffer, make sure the client is not
503 * waitig for a blocking operation such as BLPOP. Note that the first
504 * iteration the client is never blocked, otherwise the processInputBuffer
505 * would not be called at all, but after the execution of the first commands
506 * in the input buffer the client may be blocked, and the "goto again"
507 * will try to reiterate. The following line will make it return asap. */
508 if (c
->flags
& REDIS_BLOCKED
|| c
->flags
& REDIS_IO_WAIT
) return;
509 if (c
->bulklen
== -1) {
510 /* Read the first line of the query */
511 char *p
= strchr(c
->querybuf
,'\n');
519 c
->querybuf
= sdsempty();
520 querylen
= 1+(p
-(query
));
521 if (sdslen(query
) > querylen
) {
522 /* leave data after the first line of the query in the buffer */
523 c
->querybuf
= sdscatlen(c
->querybuf
,query
+querylen
,sdslen(query
)-querylen
);
525 *p
= '\0'; /* remove "\n" */
526 if (*(p
-1) == '\r') *(p
-1) = '\0'; /* and "\r" if any */
529 /* Now we can split the query in arguments */
530 argv
= sdssplitlen(query
,sdslen(query
)," ",1,&argc
);
533 if (c
->argv
) zfree(c
->argv
);
534 c
->argv
= zmalloc(sizeof(robj
*)*argc
);
536 for (j
= 0; j
< argc
; j
++) {
537 if (sdslen(argv
[j
])) {
538 c
->argv
[c
->argc
] = createObject(REDIS_STRING
,argv
[j
]);
546 /* Execute the command. If the client is still valid
547 * after processCommand() return and there is something
548 * on the query buffer try to process the next command. */
549 if (processCommand(c
) && sdslen(c
->querybuf
)) goto again
;
551 /* Nothing to process, argc == 0. Just process the query
552 * buffer if it's not empty or return to the caller */
553 if (sdslen(c
->querybuf
)) goto again
;
556 } else if (sdslen(c
->querybuf
) >= REDIS_REQUEST_MAX_SIZE
) {
557 redisLog(REDIS_VERBOSE
, "Client protocol error");
562 /* Bulk read handling. Note that if we are at this point
563 the client already sent a command terminated with a newline,
564 we are reading the bulk data that is actually the last
565 argument of the command. */
566 int qbl
= sdslen(c
->querybuf
);
568 if (c
->bulklen
<= qbl
) {
569 /* Copy everything but the final CRLF as final argument */
570 c
->argv
[c
->argc
] = createStringObject(c
->querybuf
,c
->bulklen
-2);
572 c
->querybuf
= sdsrange(c
->querybuf
,c
->bulklen
,-1);
573 /* Process the command. If the client is still valid after
574 * the processing and there is more data in the buffer
575 * try to parse it. */
576 if (processCommand(c
) && sdslen(c
->querybuf
)) goto again
;
582 void readQueryFromClient(aeEventLoop
*el
, int fd
, void *privdata
, int mask
) {
583 redisClient
*c
= (redisClient
*) privdata
;
584 char buf
[REDIS_IOBUF_LEN
];
589 nread
= read(fd
, buf
, REDIS_IOBUF_LEN
);
591 if (errno
== EAGAIN
) {
594 redisLog(REDIS_VERBOSE
, "Reading from client: %s",strerror(errno
));
598 } else if (nread
== 0) {
599 redisLog(REDIS_VERBOSE
, "Client closed connection");
604 c
->querybuf
= sdscatlen(c
->querybuf
, buf
, nread
);
605 c
->lastinteraction
= time(NULL
);
609 processInputBuffer(c
);