networking.c 50.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
/*
 * Copyright (c) 2009-2012, Salvatore Sanfilippo <antirez at gmail dot com>
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 *   * Redistributions of source code must retain the above copyright notice,
 *     this list of conditions and the following disclaimer.
 *   * Redistributions in binary form must reproduce the above copyright
 *     notice, this list of conditions and the following disclaimer in the
 *     documentation and/or other materials provided with the distribution.
 *   * Neither the name of Redis nor the names of its contributors may be used
 *     to endorse or promote products derived from this software without
 *     specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

30 31 32
#include "redis.h"
#include <sys/uio.h>

33 34
static void setProtocolError(redisClient *c, int pos);

35 36 37 38 39 40 41 42
/* To evaluate the output buffer size of a client we need to get size of
 * allocated objects, however we can't used zmalloc_size() directly on sds
 * strings because of the trick they use to work (the header is before the
 * returned pointer), so we use this helper function. */
size_t zmalloc_size_sds(sds s) {
    return zmalloc_size(s-sizeof(struct sdshdr));
}

43 44 45 46 47 48 49 50 51 52
void *dupClientReplyValue(void *o) {
    incrRefCount((robj*)o);
    return o;
}

int listMatchObjects(void *a, void *b) {
    return equalStringObjects(a,b);
}

redisClient *createClient(int fd) {
53
    redisClient *c = zmalloc(sizeof(redisClient));
54

55 56 57 58 59 60
    /* passing -1 as fd it is possible to create a non connected client.
     * This is useful since all the Redis commands needs to be executed
     * in the context of a client. When commands are executed in other
     * contexts (for instance a Lua script) we need a non connected client. */
    if (fd != -1) {
        anetNonBlock(NULL,fd);
61
        anetEnableTcpNoDelay(NULL,fd);
62 63
        if (server.tcpkeepalive)
            anetKeepAlive(NULL,fd,server.tcpkeepalive);
64 65 66 67 68 69 70
        if (aeCreateFileEvent(server.el,fd,AE_READABLE,
            readQueryFromClient, c) == AE_ERR)
        {
            close(fd);
            zfree(c);
            return NULL;
        }
71 72
    }

73 74
    selectDb(c,0);
    c->fd = fd;
75
    c->name = NULL;
76
    c->bufpos = 0;
77
    c->querybuf = sdsempty();
78
    c->querybuf_peak = 0;
79
    c->reqtype = 0;
80 81
    c->argc = 0;
    c->argv = NULL;
82
    c->cmd = c->lastcmd = NULL;
83
    c->multibulklen = 0;
84 85 86
    c->bulklen = -1;
    c->sentlen = 0;
    c->flags = 0;
87
    c->ctime = c->lastinteraction = server.unixtime;
88 89
    c->authenticated = 0;
    c->replstate = REDIS_REPL_NONE;
90
    c->reploff = 0;
A
antirez 已提交
91
    c->slave_listening_port = 0;
92
    c->reply = listCreate();
93
    c->reply_bytes = 0;
94
    c->obuf_soft_limit_reached_time = 0;
95
    listSetFreeMethod(c->reply,decrRefCountVoid);
96
    listSetDupMethod(c->reply,dupClientReplyValue);
97
    c->bpop.keys = dictCreate(&setDictType,NULL);
98 99
    c->bpop.timeout = 0;
    c->bpop.target = NULL;
100 101
    c->io_keys = listCreate();
    c->watched_keys = listCreate();
102
    listSetFreeMethod(c->io_keys,decrRefCountVoid);
103 104
    c->pubsub_channels = dictCreate(&setDictType,NULL);
    c->pubsub_patterns = listCreate();
105
    listSetFreeMethod(c->pubsub_patterns,decrRefCountVoid);
106
    listSetMatchMethod(c->pubsub_patterns,listMatchObjects);
107
    if (fd != -1) listAddNodeTail(server.clients,c);
108 109 110 111
    initClientMultiState(c);
    return c;
}

112 113 114 115 116 117 118 119
/* This function is called every time we are going to transmit new data
 * to the client. The behavior is the following:
 *
 * If the client should receive new data (normal clients will) the function
 * returns REDIS_OK, and make sure to install the write handler in our event
 * loop so that when the socket is writable new data gets written.
 *
 * If the client should not receive new data, because it is a fake client
120 121
 * or a slave not yet online, or because the setup of the write handler
 * failed, the function returns REDIS_ERR.
122 123 124 125 126
 *
 * Typically gets called every time a reply is built, before adding more
 * data to the clients output buffers. If the function returns REDIS_ERR no
 * data should be appended to the output buffers. */
int prepareClientToWrite(redisClient *c) {
127
    if (c->flags & REDIS_LUA_CLIENT) return REDIS_OK;
128
    if (c->fd <= 0) return REDIS_ERR; /* Fake client */
129
    if (c->bufpos == 0 && listLength(c->reply) == 0 &&
130 131 132
        (c->replstate == REDIS_REPL_NONE ||
         c->replstate == REDIS_REPL_ONLINE) &&
        aeCreateFileEvent(server.el, c->fd, AE_WRITABLE,
133 134 135 136
        sendReplyToClient, c) == AE_ERR) return REDIS_ERR;
    return REDIS_OK;
}

137 138 139 140 141 142 143 144 145 146 147 148 149 150
/* Create a duplicate of the last object in the reply list when
 * it is not exclusively owned by the reply list. */
robj *dupLastObjectIfNeeded(list *reply) {
    robj *new, *cur;
    listNode *ln;
    redisAssert(listLength(reply) > 0);
    ln = listLast(reply);
    cur = listNodeValue(ln);
    if (cur->refcount > 1) {
        new = dupStringObject(cur);
        decrRefCount(cur);
        listNodeValue(ln) = new;
    }
    return listNodeValue(ln);
151 152
}

153 154 155 156
/* -----------------------------------------------------------------------------
 * Low level functions to add more data to output buffers.
 * -------------------------------------------------------------------------- */

157
int _addReplyToBuffer(redisClient *c, char *s, size_t len) {
158
    size_t available = sizeof(c->buf)-c->bufpos;
159

160 161
    if (c->flags & REDIS_CLOSE_AFTER_REPLY) return REDIS_OK;

162 163 164 165 166 167
    /* If there already are entries in the reply list, we cannot
     * add anything more to the static buffer. */
    if (listLength(c->reply) > 0) return REDIS_ERR;

    /* Check that the buffer has enough space available for this string. */
    if (len > available) return REDIS_ERR;
168

169 170 171
    memcpy(c->buf+c->bufpos,s,len);
    c->bufpos+=len;
    return REDIS_OK;
172 173
}

174 175
void _addReplyObjectToList(redisClient *c, robj *o) {
    robj *tail;
176 177 178

    if (c->flags & REDIS_CLOSE_AFTER_REPLY) return;

179 180 181
    if (listLength(c->reply) == 0) {
        incrRefCount(o);
        listAddNodeTail(c->reply,o);
182
        c->reply_bytes += zmalloc_size_sds(o->ptr);
183 184 185 186 187 188 189
    } else {
        tail = listNodeValue(listLast(c->reply));

        /* Append to this object when possible. */
        if (tail->ptr != NULL &&
            sdslen(tail->ptr)+sdslen(o->ptr) <= REDIS_REPLY_CHUNK_BYTES)
        {
190
            c->reply_bytes -= zmalloc_size_sds(tail->ptr);
191 192
            tail = dupLastObjectIfNeeded(c->reply);
            tail->ptr = sdscatlen(tail->ptr,o->ptr,sdslen(o->ptr));
193
            c->reply_bytes += zmalloc_size_sds(tail->ptr);
194 195 196
        } else {
            incrRefCount(o);
            listAddNodeTail(c->reply,o);
197
            c->reply_bytes += zmalloc_size_sds(o->ptr);
198 199
        }
    }
200
    asyncCloseClientOnOutputBufferLimitReached(c);
201
}
202

203 204 205 206
/* This method takes responsibility over the sds. When it is no longer
 * needed it will be free'd, otherwise it ends up in a robj. */
void _addReplySdsToList(redisClient *c, sds s) {
    robj *tail;
207

208 209 210 211
    if (c->flags & REDIS_CLOSE_AFTER_REPLY) {
        sdsfree(s);
        return;
    }
212

213 214
    if (listLength(c->reply) == 0) {
        listAddNodeTail(c->reply,createObject(REDIS_STRING,s));
215
        c->reply_bytes += zmalloc_size_sds(s);
216 217 218 219 220 221 222
    } else {
        tail = listNodeValue(listLast(c->reply));

        /* Append to this object when possible. */
        if (tail->ptr != NULL &&
            sdslen(tail->ptr)+sdslen(s) <= REDIS_REPLY_CHUNK_BYTES)
        {
223
            c->reply_bytes -= zmalloc_size_sds(tail->ptr);
224 225
            tail = dupLastObjectIfNeeded(c->reply);
            tail->ptr = sdscatlen(tail->ptr,s,sdslen(s));
226
            c->reply_bytes += zmalloc_size_sds(tail->ptr);
227
            sdsfree(s);
228
        } else {
229
            listAddNodeTail(c->reply,createObject(REDIS_STRING,s));
230
            c->reply_bytes += zmalloc_size_sds(s);
231
        }
232
    }
233
    asyncCloseClientOnOutputBufferLimitReached(c);
234 235 236 237
}

void _addReplyStringToList(redisClient *c, char *s, size_t len) {
    robj *tail;
238 239 240

    if (c->flags & REDIS_CLOSE_AFTER_REPLY) return;

241
    if (listLength(c->reply) == 0) {
242 243 244
        robj *o = createStringObject(s,len);

        listAddNodeTail(c->reply,o);
245
        c->reply_bytes += zmalloc_size_sds(o->ptr);
246
    } else {
247 248 249 250 251 252
        tail = listNodeValue(listLast(c->reply));

        /* Append to this object when possible. */
        if (tail->ptr != NULL &&
            sdslen(tail->ptr)+len <= REDIS_REPLY_CHUNK_BYTES)
        {
253
            c->reply_bytes -= zmalloc_size_sds(tail->ptr);
254 255
            tail = dupLastObjectIfNeeded(c->reply);
            tail->ptr = sdscatlen(tail->ptr,s,len);
256
            c->reply_bytes += zmalloc_size_sds(tail->ptr);
257
        } else {
258 259 260
            robj *o = createStringObject(s,len);

            listAddNodeTail(c->reply,o);
261
            c->reply_bytes += zmalloc_size_sds(o->ptr);
262 263
        }
    }
264
    asyncCloseClientOnOutputBufferLimitReached(c);
265
}
266

267 268 269 270 271
/* -----------------------------------------------------------------------------
 * Higher level functions to queue data on the client output buffer.
 * The following functions are the ones that commands implementations will call.
 * -------------------------------------------------------------------------- */

272
void addReply(redisClient *c, robj *obj) {
273
    if (prepareClientToWrite(c) != REDIS_OK) return;
274 275 276 277 278 279 280 281 282 283 284

    /* This is an important place where we can avoid copy-on-write
     * when there is a saving child running, avoiding touching the
     * refcount field of the object if it's not needed.
     *
     * If the encoding is RAW and there is room in the static buffer
     * we'll be able to send the object to the client without
     * messing with its page. */
    if (obj->encoding == REDIS_ENCODING_RAW) {
        if (_addReplyToBuffer(c,obj->ptr,sdslen(obj->ptr)) != REDIS_OK)
            _addReplyObjectToList(c,obj);
285 286 287 288 289 290 291 292 293 294 295 296 297 298
    } else if (obj->encoding == REDIS_ENCODING_INT) {
        /* Optimization: if there is room in the static buffer for 32 bytes
         * (more than the max chars a 64 bit integer can take as string) we
         * avoid decoding the object and go for the lower level approach. */
        if (listLength(c->reply) == 0 && (sizeof(c->buf) - c->bufpos) >= 32) {
            char buf[32];
            int len;

            len = ll2string(buf,sizeof(buf),(long)obj->ptr);
            if (_addReplyToBuffer(c,buf,len) == REDIS_OK)
                return;
            /* else... continue with the normal code path, but should never
             * happen actually since we verified there is room. */
        }
299
        obj = getDecodedObject(obj);
300 301 302
        if (_addReplyToBuffer(c,obj->ptr,sdslen(obj->ptr)) != REDIS_OK)
            _addReplyObjectToList(c,obj);
        decrRefCount(obj);
303 304
    } else {
        redisPanic("Wrong obj->encoding in addReply()");
305 306 307 308
    }
}

void addReplySds(redisClient *c, sds s) {
309
    if (prepareClientToWrite(c) != REDIS_OK) {
310 311 312 313
        /* The caller expects the sds to be free'd. */
        sdsfree(s);
        return;
    }
314
    if (_addReplyToBuffer(c,s,sdslen(s)) == REDIS_OK) {
315 316
        sdsfree(s);
    } else {
317 318
        /* This method free's the sds when it is no longer needed. */
        _addReplySdsToList(c,s);
319
    }
320 321
}

322
void addReplyString(redisClient *c, char *s, size_t len) {
323
    if (prepareClientToWrite(c) != REDIS_OK) return;
324 325
    if (_addReplyToBuffer(c,s,len) != REDIS_OK)
        _addReplyStringToList(c,s,len);
326
}
327

328
void addReplyErrorLength(redisClient *c, char *s, size_t len) {
329 330 331
    addReplyString(c,"-ERR ",5);
    addReplyString(c,s,len);
    addReplyString(c,"\r\n",2);
332 333
}

334
void addReplyError(redisClient *c, char *err) {
335
    addReplyErrorLength(c,err,strlen(err));
336
}
337

338
void addReplyErrorFormat(redisClient *c, const char *fmt, ...) {
339
    size_t l, j;
340 341 342 343
    va_list ap;
    va_start(ap,fmt);
    sds s = sdscatvprintf(sdsempty(),fmt,ap);
    va_end(ap);
344 345 346 347 348 349
    /* Make sure there are no newlines in the string, otherwise invalid protocol
     * is emitted. */
    l = sdslen(s);
    for (j = 0; j < l; j++) {
        if (s[j] == '\r' || s[j] == '\n') s[j] = ' ';
    }
350
    addReplyErrorLength(c,s,sdslen(s));
351 352 353
    sdsfree(s);
}

354
void addReplyStatusLength(redisClient *c, char *s, size_t len) {
355 356 357 358 359 360
    addReplyString(c,"+",1);
    addReplyString(c,s,len);
    addReplyString(c,"\r\n",2);
}

void addReplyStatus(redisClient *c, char *status) {
361
    addReplyStatusLength(c,status,strlen(status));
362 363 364 365 366 367 368
}

void addReplyStatusFormat(redisClient *c, const char *fmt, ...) {
    va_list ap;
    va_start(ap,fmt);
    sds s = sdscatvprintf(sdsempty(),fmt,ap);
    va_end(ap);
369
    addReplyStatusLength(c,s,sdslen(s));
370 371 372
    sdsfree(s);
}

373 374 375
/* Adds an empty object to the reply list that will contain the multi bulk
 * length, which is not known when this function is called. */
void *addDeferredMultiBulkLength(redisClient *c) {
376 377 378
    /* Note that we install the write event here even if the object is not
     * ready to be sent, since we are sure that before returning to the
     * event loop setDeferredMultiBulkLength() will be called. */
379
    if (prepareClientToWrite(c) != REDIS_OK) return NULL;
380
    listAddNodeTail(c->reply,createObject(REDIS_STRING,NULL));
381 382 383
    return listLast(c->reply);
}

G
guiquanz 已提交
384
/* Populate the length object and try gluing it to the next chunk. */
385 386 387 388 389 390 391 392 393
void setDeferredMultiBulkLength(redisClient *c, void *node, long length) {
    listNode *ln = (listNode*)node;
    robj *len, *next;

    /* Abort when *node is NULL (see addDeferredMultiBulkLength). */
    if (node == NULL) return;

    len = listNodeValue(ln);
    len->ptr = sdscatprintf(sdsempty(),"*%ld\r\n",length);
394
    c->reply_bytes += zmalloc_size_sds(len->ptr);
395 396
    if (ln->next != NULL) {
        next = listNodeValue(ln->next);
397

398
        /* Only glue when the next node is non-NULL (an sds in this case) */
399
        if (next->ptr != NULL) {
400 401
            c->reply_bytes -= zmalloc_size_sds(len->ptr);
            c->reply_bytes -= zmalloc_size_sds(next->ptr);
402
            len->ptr = sdscatlen(len->ptr,next->ptr,sdslen(next->ptr));
403
            c->reply_bytes += zmalloc_size_sds(len->ptr);
404 405
            listDelNode(c->reply,ln->next);
        }
406
    }
407
    asyncCloseClientOnOutputBufferLimitReached(c);
408 409
}

G
guiquanz 已提交
410
/* Add a double as a bulk reply */
411 412 413 414 415 416
void addReplyDouble(redisClient *c, double d) {
    char dbuf[128], sbuf[128];
    int dlen, slen;
    dlen = snprintf(dbuf,sizeof(dbuf),"%.17g",d);
    slen = snprintf(sbuf,sizeof(sbuf),"$%d\r\n%s\r\n",dlen,dbuf);
    addReplyString(c,sbuf,slen);
417 418
}

419 420
/* Add a long long as integer reply or bulk len / multi bulk count.
 * Basically this is used to output <prefix><long long><crlf>. */
421
void addReplyLongLongWithPrefix(redisClient *c, long long ll, char prefix) {
422
    char buf[128];
423
    int len;
424 425 426 427 428 429 430 431 432 433 434 435

    /* Things like $3\r\n or *2\r\n are emitted very often by the protocol
     * so we have a few shared objects to use if the integer is small
     * like it is most of the times. */
    if (prefix == '*' && ll < REDIS_SHARED_BULKHDR_LEN) {
        addReply(c,shared.mbulkhdr[ll]);
        return;
    } else if (prefix == '$' && ll < REDIS_SHARED_BULKHDR_LEN) {
        addReply(c,shared.bulkhdr[ll]);
        return;
    }

436
    buf[0] = prefix;
437 438 439
    len = ll2string(buf+1,sizeof(buf)-1,ll);
    buf[len+1] = '\r';
    buf[len+2] = '\n';
440
    addReplyString(c,buf,len+3);
441 442
}

443
void addReplyLongLong(redisClient *c, long long ll) {
444 445 446 447 448
    if (ll == 0)
        addReply(c,shared.czero);
    else if (ll == 1)
        addReply(c,shared.cone);
    else
449
        addReplyLongLongWithPrefix(c,ll,':');
450
}
451

452
void addReplyMultiBulkLen(redisClient *c, long length) {
453
    addReplyLongLongWithPrefix(c,length,'*');
454 455
}

456
/* Create the length prefix of a bulk reply, example: $2234 */
457
void addReplyBulkLen(redisClient *c, robj *obj) {
458
    size_t len;
459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474

    if (obj->encoding == REDIS_ENCODING_RAW) {
        len = sdslen(obj->ptr);
    } else {
        long n = (long)obj->ptr;

        /* Compute how many bytes will take this integer as a radix 10 string */
        len = 1;
        if (n < 0) {
            len++;
            n = -n;
        }
        while((n = n/10) != 0) {
            len++;
        }
    }
475
    addReplyLongLongWithPrefix(c,len,'$');
476 477
}

478
/* Add a Redis Object as a bulk reply */
479 480 481 482 483 484
void addReplyBulk(redisClient *c, robj *obj) {
    addReplyBulkLen(c,obj);
    addReply(c,obj);
    addReply(c,shared.crlf);
}

485 486
/* Add a C buffer as bulk reply */
void addReplyBulkCBuffer(redisClient *c, void *p, size_t len) {
487
    addReplyLongLongWithPrefix(c,len,'$');
488 489 490 491 492
    addReplyString(c,p,len);
    addReply(c,shared.crlf);
}

/* Add a C nul term string as bulk reply */
493 494 495 496
void addReplyBulkCString(redisClient *c, char *s) {
    if (s == NULL) {
        addReply(c,shared.nullbulk);
    } else {
497
        addReplyBulkCBuffer(c,s,strlen(s));
498 499 500
    }
}

501 502 503 504 505 506 507 508 509
/* Add a long long as a bulk reply */
void addReplyBulkLongLong(redisClient *c, long long ll) {
    char buf[64];
    int len;

    len = ll2string(buf,64,ll);
    addReplyBulkCBuffer(c,buf,len);
}

510 511 512 513 514 515 516 517
/* Copy 'src' client output buffers into 'dst' client output buffers.
 * The function takes care of freeing the old output buffers of the
 * destination client. */
void copyClientOutputBuffer(redisClient *dst, redisClient *src) {
    listRelease(dst->reply);
    dst->reply = listDup(src->reply);
    memcpy(dst->buf,src->buf,src->bufpos);
    dst->bufpos = src->bufpos;
518
    dst->reply_bytes = src->reply_bytes;
519 520
}

521
static void acceptCommonHandler(int fd, int flags) {
522
    redisClient *c;
523
    if ((c = createClient(fd)) == NULL) {
524 525 526
        redisLog(REDIS_WARNING,
            "Error registering fd event for the new client: %s (fd=%d)",
            strerror(errno),fd);
527
        close(fd); /* May be already closed, just ignore errors */
528 529 530 531
        return;
    }
    /* If maxclient directive is set and this is one client more... close the
     * connection. Note that we create the client instead to check before
G
guiquanz 已提交
532
     * for this condition, since now the socket is already set in non-blocking
533
     * mode and we can send an error for free using the Kernel I/O */
534
    if (listLength(server.clients) > server.maxclients) {
535 536 537 538 539 540
        char *err = "-ERR max number of clients reached\r\n";

        /* That's a best effort error message, don't check write errors */
        if (write(c->fd,err,strlen(err)) == -1) {
            /* Nothing to do, Just to avoid the warning... */
        }
541
        server.stat_rejected_conn++;
542 543 544 545
        freeClient(c);
        return;
    }
    server.stat_numconnections++;
546
    c->flags |= flags;
547 548
}

549 550 551 552 553 554 555 556 557
void acceptTcpHandler(aeEventLoop *el, int fd, void *privdata, int mask) {
    int cport, cfd;
    char cip[128];
    REDIS_NOTUSED(el);
    REDIS_NOTUSED(mask);
    REDIS_NOTUSED(privdata);

    cfd = anetTcpAccept(server.neterr, fd, cip, &cport);
    if (cfd == AE_ERR) {
558
        redisLog(REDIS_WARNING,"Accepting client connection: %s", server.neterr);
559 560 561
        return;
    }
    redisLog(REDIS_VERBOSE,"Accepted %s:%d", cip, cport);
562
    acceptCommonHandler(cfd,0);
563 564 565 566 567 568 569 570
}

void acceptUnixHandler(aeEventLoop *el, int fd, void *privdata, int mask) {
    int cfd;
    REDIS_NOTUSED(el);
    REDIS_NOTUSED(mask);
    REDIS_NOTUSED(privdata);

571
    cfd = anetUnixAccept(server.neterr, fd);
572
    if (cfd == AE_ERR) {
573
        redisLog(REDIS_WARNING,"Accepting client connection: %s", server.neterr);
574 575 576
        return;
    }
    redisLog(REDIS_VERBOSE,"Accepted connection to %s", server.unixsocket);
577
    acceptCommonHandler(cfd,REDIS_UNIX_SOCKET);
578 579 580
}


581 582 583 584 585
static void freeClientArgv(redisClient *c) {
    int j;
    for (j = 0; j < c->argc; j++)
        decrRefCount(c->argv[j]);
    c->argc = 0;
586
    c->cmd = NULL;
587 588
}

589 590 591 592 593 594 595 596 597 598
/* Close all the slaves connections. This is useful in chained replication
 * when we resync with our own master and want to force all our slaves to
 * resync with us as well. */
void disconnectSlaves(void) {
    while (listLength(server.slaves)) {
        listNode *ln = listFirst(server.slaves);
        freeClient((redisClient*)ln->value);
    }
}

599 600 601 602 603 604 605 606 607 608 609 610 611 612
/* This function is called when the slave lose the connection with the
 * master into an unexpected way. */
void replicationHandleMasterDisconnection(void) {
    server.master = NULL;
    server.repl_state = REDIS_REPL_CONNECT;
    server.repl_down_since = server.unixtime;
    /* We lost connection with our master, force our slaves to resync
     * with us as well to load the new data set.
     *
     * If server.masterhost is NULL the user called SLAVEOF NO ONE so
     * slave resync is not needed. */
    if (server.masterhost != NULL) disconnectSlaves();
}

613 614 615
void freeClient(redisClient *c) {
    listNode *ln;

616 617 618
    /* If this is marked as current client unset it */
    if (server.current_client == c) server.current_client = NULL;

619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634
    /* If it is our master that's beging disconnected we should make sure
     * to cache the state to try a partial resynchronization later.
     *
     * Note that before doing this we make sure that the client is not in
     * some unexpected state, by checking its flags. */
    if (server.master &&
         (c->flags & REDIS_MASTER) &&
        !(c->flags & (REDIS_CLOSE_AFTER_REPLY|
                     REDIS_CLOSE_ASAP|
                     REDIS_BLOCKED|
                     REDIS_UNBLOCKED)))
    {
        replicationCacheMaster(c);
        return;
    }

635 636 637 638 639 640 641 642 643
    /* Note that if the client we are freeing is blocked into a blocking
     * call, we have to set querybuf to NULL *before* to call
     * unblockClientWaitingData() to avoid processInputBuffer() will get
     * called. Also it is important to remove the file events after
     * this, because this call adds the READABLE event. */
    sdsfree(c->querybuf);
    c->querybuf = NULL;
    if (c->flags & REDIS_BLOCKED)
        unblockClientWaitingData(c);
644
    dictRelease(c->bpop.keys);
645 646 647 648 649 650 651 652 653

    /* UNWATCH all the keys */
    unwatchAllKeys(c);
    listRelease(c->watched_keys);
    /* Unsubscribe from all the pubsub channels */
    pubsubUnsubscribeAllChannels(c,0);
    pubsubUnsubscribeAllPatterns(c,0);
    dictRelease(c->pubsub_channels);
    listRelease(c->pubsub_patterns);
654 655 656 657 658 659 660
    /* Close socket, unregister events, and remove list of replies and
     * accumulated arguments. */
    if (c->fd != -1) {
        aeDeleteFileEvent(server.el,c->fd,AE_READABLE);
        aeDeleteFileEvent(server.el,c->fd,AE_WRITABLE);
        close(c->fd);
    }
661 662 663
    listRelease(c->reply);
    freeClientArgv(c);
    /* Remove from the list of clients */
664 665 666 667 668
    if (c->fd != -1) {
        ln = listSearchKey(server.clients,c);
        redisAssert(ln != NULL);
        listDelNode(server.clients,ln);
    }
669 670 671 672 673 674 675
    /* When client was just unblocked because of a blocking operation,
     * remove it from the list with unblocked clients. */
    if (c->flags & REDIS_UNBLOCKED) {
        ln = listSearchKey(server.unblocked_clients,c);
        redisAssert(ln != NULL);
        listDelNode(server.unblocked_clients,ln);
    }
676
    listRelease(c->io_keys);
677 678
    /* Master/slave cleanup.
     * Case 1: we lost the connection with a slave. */
679 680 681 682 683 684 685
    if (c->flags & REDIS_SLAVE) {
        if (c->replstate == REDIS_REPL_SEND_BULK && c->repldbfd != -1)
            close(c->repldbfd);
        list *l = (c->flags & REDIS_MONITOR) ? server.monitors : server.slaves;
        ln = listSearchKey(l,c);
        redisAssert(ln != NULL);
        listDelNode(l,ln);
686 687 688 689 690
        /* We need to remember the time when we started to have zero
         * attached slaves, as after some time we'll free the replication
         * backlog. */
        if (c->flags & REDIS_SLAVE && listLength(server.slaves) == 0)
            server.repl_no_slaves_since = server.unixtime;
691
    }
692 693

    /* Case 2: we lost the connection with the master. */
694
    if (c->flags & REDIS_MASTER) replicationHandleMasterDisconnection();
695 696 697 698 699 700 701 702 703

    /* If this client was scheduled for async freeing we need to remove it
     * from the queue. */
    if (c->flags & REDIS_CLOSE_ASAP) {
        ln = listSearchKey(server.clients_to_close,c);
        redisAssert(ln != NULL);
        listDelNode(server.clients_to_close,ln);
    }

704
    /* Release memory */
705
    if (c->name) decrRefCount(c->name);
706 707 708 709 710
    zfree(c->argv);
    freeClientMultiState(c);
    zfree(c);
}

711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731
/* Schedule a client to free it at a safe time in the serverCron() function.
 * This function is useful when we need to terminate a client but we are in
 * a context where calling freeClient() is not possible, because the client
 * should be valid for the continuation of the flow of the program. */
void freeClientAsync(redisClient *c) {
    if (c->flags & REDIS_CLOSE_ASAP) return;
    c->flags |= REDIS_CLOSE_ASAP;
    listAddNodeTail(server.clients_to_close,c);
}

void freeClientsInAsyncFreeQueue(void) {
    while (listLength(server.clients_to_close)) {
        listNode *ln = listFirst(server.clients_to_close);
        redisClient *c = listNodeValue(ln);

        c->flags &= ~REDIS_CLOSE_ASAP;
        freeClient(c);
        listDelNode(server.clients_to_close,ln);
    }
}

732 733 734
void sendReplyToClient(aeEventLoop *el, int fd, void *privdata, int mask) {
    redisClient *c = privdata;
    int nwritten = 0, totwritten = 0, objlen;
735
    size_t objmem;
736 737 738 739
    robj *o;
    REDIS_NOTUSED(el);
    REDIS_NOTUSED(mask);

740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760
    while(c->bufpos > 0 || listLength(c->reply)) {
        if (c->bufpos > 0) {
            if (c->flags & REDIS_MASTER) {
                /* Don't reply to a master */
                nwritten = c->bufpos - c->sentlen;
            } else {
                nwritten = write(fd,c->buf+c->sentlen,c->bufpos-c->sentlen);
                if (nwritten <= 0) break;
            }
            c->sentlen += nwritten;
            totwritten += nwritten;

            /* If the buffer was sent, set bufpos to zero to continue with
             * the remainder of the reply. */
            if (c->sentlen == c->bufpos) {
                c->bufpos = 0;
                c->sentlen = 0;
            }
        } else {
            o = listNodeValue(listFirst(c->reply));
            objlen = sdslen(o->ptr);
761
            objmem = zmalloc_size_sds(o->ptr);
762

763 764 765 766
            if (objlen == 0) {
                listDelNode(c->reply,listFirst(c->reply));
                continue;
            }
767

768 769 770 771 772 773 774 775 776
            if (c->flags & REDIS_MASTER) {
                /* Don't reply to a master */
                nwritten = objlen - c->sentlen;
            } else {
                nwritten = write(fd, ((char*)o->ptr)+c->sentlen,objlen-c->sentlen);
                if (nwritten <= 0) break;
            }
            c->sentlen += nwritten;
            totwritten += nwritten;
777

778 779 780 781
            /* If we fully sent the object on head go to the next one */
            if (c->sentlen == objlen) {
                listDelNode(c->reply,listFirst(c->reply));
                c->sentlen = 0;
782
                c->reply_bytes -= objmem;
783
            }
784
        }
785
        /* Note that we avoid to send more than REDIS_MAX_WRITE_PER_EVENT
786 787 788
         * bytes, in a single threaded server it's a good idea to serve
         * other clients as well, even if a very large request comes from
         * super fast link that is always able to accept data (in real world
789 790 791 792 793 794 795
         * scenario think about 'KEYS *' against the loopback interface).
         *
         * However if we are over the maxmemory limit we ignore that and
         * just deliver as much data as it is possible to deliver. */
        if (totwritten > REDIS_MAX_WRITE_PER_EVENT &&
            (server.maxmemory == 0 ||
             zmalloc_used_memory() < server.maxmemory)) break;
796 797 798 799 800 801 802 803 804 805 806
    }
    if (nwritten == -1) {
        if (errno == EAGAIN) {
            nwritten = 0;
        } else {
            redisLog(REDIS_VERBOSE,
                "Error writing to client: %s", strerror(errno));
            freeClient(c);
            return;
        }
    }
807
    if (totwritten > 0) c->lastinteraction = server.unixtime;
808
    if (c->bufpos == 0 && listLength(c->reply) == 0) {
809 810
        c->sentlen = 0;
        aeDeleteFileEvent(server.el,c->fd,AE_WRITABLE);
P
Pieter Noordhuis 已提交
811 812

        /* Close connection after entire reply has been sent. */
813
        if (c->flags & REDIS_CLOSE_AFTER_REPLY) freeClient(c);
814 815 816 817 818
    }
}

/* resetClient prepare the client to process the next command */
void resetClient(redisClient *c) {
819 820
    redisCommandProc *prevcmd = c->cmd ? c->cmd->proc : NULL;

821
    freeClientArgv(c);
822 823
    c->reqtype = 0;
    c->multibulklen = 0;
824
    c->bulklen = -1;
825 826 827 828
    /* We clear the ASKING flag as well if we are not inside a MULTI, and
     * if what we just executed is not the ASKING command itself. */
    if (!(c->flags & REDIS_MULTI) && prevcmd != askingCommand)
        c->flags &= (~REDIS_ASKING);
829 830
}

831 832 833 834 835 836 837
int processInlineBuffer(redisClient *c) {
    char *newline = strstr(c->querybuf,"\r\n");
    int argc, j;
    sds *argv;
    size_t querylen;

    /* Nothing to do without a \r\n */
838 839 840 841 842
    if (newline == NULL) {
        if (sdslen(c->querybuf) > REDIS_INLINE_MAX_SIZE) {
            addReplyError(c,"Protocol error: too big inline request");
            setProtocolError(c,0);
        }
843
        return REDIS_ERR;
844
    }
845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872

    /* Split the input buffer up to the \r\n */
    querylen = newline-(c->querybuf);
    argv = sdssplitlen(c->querybuf,querylen," ",1,&argc);

    /* Leave data after the first line of the query in the buffer */
    c->querybuf = sdsrange(c->querybuf,querylen+2,-1);

    /* Setup argv array on client structure */
    if (c->argv) zfree(c->argv);
    c->argv = zmalloc(sizeof(robj*)*argc);

    /* Create redis objects for all arguments. */
    for (c->argc = 0, j = 0; j < argc; j++) {
        if (sdslen(argv[j])) {
            c->argv[c->argc] = createObject(REDIS_STRING,argv[j]);
            c->argc++;
        } else {
            sdsfree(argv[j]);
        }
    }
    zfree(argv);
    return REDIS_OK;
}

/* Helper function. Trims query buffer to make the function that processes
 * multi bulk requests idempotent. */
static void setProtocolError(redisClient *c, int pos) {
873 874 875 876 877 878
    if (server.verbosity >= REDIS_VERBOSE) {
        sds client = getClientInfoString(c);
        redisLog(REDIS_VERBOSE,
            "Protocol error from client: %s", client);
        sdsfree(client);
    }
879 880 881 882 883 884
    c->flags |= REDIS_CLOSE_AFTER_REPLY;
    c->querybuf = sdsrange(c->querybuf,pos,-1);
}

int processMultibulkBuffer(redisClient *c) {
    char *newline = NULL;
885 886
    int pos = 0, ok;
    long long ll;
887 888 889

    if (c->multibulklen == 0) {
        /* The client should have been reset */
890
        redisAssertWithInfo(c,NULL,c->argc == 0);
891 892

        /* Multi bulk length cannot be read without a \r\n */
893
        newline = strchr(c->querybuf,'\r');
894 895 896 897 898
        if (newline == NULL) {
            if (sdslen(c->querybuf) > REDIS_INLINE_MAX_SIZE) {
                addReplyError(c,"Protocol error: too big mbulk count string");
                setProtocolError(c,0);
            }
899
            return REDIS_ERR;
900
        }
901

P
Pieter Noordhuis 已提交
902 903 904 905
        /* Buffer should also contain \n */
        if (newline-(c->querybuf) > ((signed)sdslen(c->querybuf)-2))
            return REDIS_ERR;

906 907
        /* We know for sure there is a whole line since newline != NULL,
         * so go ahead and find out the multi bulk length. */
908
        redisAssertWithInfo(c,NULL,c->querybuf[0] == '*');
909 910
        ok = string2ll(c->querybuf+1,newline-(c->querybuf+1),&ll);
        if (!ok || ll > 1024*1024) {
911 912 913
            addReplyError(c,"Protocol error: invalid multibulk length");
            setProtocolError(c,pos);
            return REDIS_ERR;
914
        }
P
Pieter Noordhuis 已提交
915 916 917 918 919 920 921

        pos = (newline-c->querybuf)+2;
        if (ll <= 0) {
            c->querybuf = sdsrange(c->querybuf,pos,-1);
            return REDIS_OK;
        }

922
        c->multibulklen = ll;
923 924 925 926 927 928

        /* Setup argv array on client structure */
        if (c->argv) zfree(c->argv);
        c->argv = zmalloc(sizeof(robj*)*c->multibulklen);
    }

929
    redisAssertWithInfo(c,NULL,c->multibulklen > 0);
930 931 932
    while(c->multibulklen) {
        /* Read bulk length if unknown */
        if (c->bulklen == -1) {
933
            newline = strchr(c->querybuf+pos,'\r');
934 935 936 937 938
            if (newline == NULL) {
                if (sdslen(c->querybuf) > REDIS_INLINE_MAX_SIZE) {
                    addReplyError(c,"Protocol error: too big bulk count string");
                    setProtocolError(c,0);
                }
P
Pieter Noordhuis 已提交
939
                break;
940
            }
P
Pieter Noordhuis 已提交
941 942 943

            /* Buffer should also contain \n */
            if (newline-(c->querybuf) > ((signed)sdslen(c->querybuf)-2))
944
                break;
P
Pieter Noordhuis 已提交
945 946 947 948 949 950 951

            if (c->querybuf[pos] != '$') {
                addReplyErrorFormat(c,
                    "Protocol error: expected '$', got '%c'",
                    c->querybuf[pos]);
                setProtocolError(c,pos);
                return REDIS_ERR;
952
            }
P
Pieter Noordhuis 已提交
953 954 955 956 957 958 959 960 961

            ok = string2ll(c->querybuf+pos+1,newline-(c->querybuf+pos+1),&ll);
            if (!ok || ll < 0 || ll > 512*1024*1024) {
                addReplyError(c,"Protocol error: invalid bulk length");
                setProtocolError(c,pos);
                return REDIS_ERR;
            }

            pos += newline-(c->querybuf+pos)+2;
962
            if (ll >= REDIS_MBULK_BIG_ARG) {
963 964 965 966 967 968
                /* If we are going to read a large object from network
                 * try to make it likely that it will start at c->querybuf
                 * boundary so that we can optimized object creation
                 * avoiding a large copy of data. */
                c->querybuf = sdsrange(c->querybuf,pos,-1);
                pos = 0;
A
antirez 已提交
969 970
                /* Hint the sds library about the amount of bytes this string is
                 * going to contain. */
971
                c->querybuf = sdsMakeRoomFor(c->querybuf,ll+2);
A
antirez 已提交
972
            }
P
Pieter Noordhuis 已提交
973
            c->bulklen = ll;
974 975 976 977 978 979 980
        }

        /* Read bulk argument */
        if (sdslen(c->querybuf)-pos < (unsigned)(c->bulklen+2)) {
            /* Not enough data (+2 == trailing \r\n) */
            break;
        } else {
981
            /* Optimization: if the buffer contains JUST our bulk element
982 983 984
             * instead of creating a new object by *copying* the sds we
             * just use the current sds string. */
            if (pos == 0 &&
985
                c->bulklen >= REDIS_MBULK_BIG_ARG &&
986 987 988 989 990 991 992 993 994 995 996 997 998 999
                (signed) sdslen(c->querybuf) == c->bulklen+2)
            {
                c->argv[c->argc++] = createObject(REDIS_STRING,c->querybuf);
                sdsIncrLen(c->querybuf,-2); /* remove CRLF */
                c->querybuf = sdsempty();
                /* Assume that if we saw a fat argument we'll see another one
                 * likely... */
                c->querybuf = sdsMakeRoomFor(c->querybuf,c->bulklen+2);
                pos = 0;
            } else {
                c->argv[c->argc++] =
                    createStringObject(c->querybuf+pos,c->bulklen);
                pos += c->bulklen+2;
            }
1000 1001 1002 1003 1004 1005
            c->bulklen = -1;
            c->multibulklen--;
        }
    }

    /* Trim to pos */
1006
    if (pos) c->querybuf = sdsrange(c->querybuf,pos,-1);
1007 1008

    /* We're done when c->multibulk == 0 */
1009 1010 1011
    if (c->multibulklen == 0) return REDIS_OK;

    /* Still not read to process the command */
1012 1013 1014 1015 1016 1017
    return REDIS_ERR;
}

void processInputBuffer(redisClient *c) {
    /* Keep processing while there is something in the input buffer */
    while(sdslen(c->querybuf)) {
1018 1019 1020
        /* Immediately abort if the client is in the middle of something. */
        if (c->flags & REDIS_BLOCKED) return;

1021 1022 1023 1024
        /* REDIS_CLOSE_AFTER_REPLY closes the connection once the reply is
         * written to the client. Make sure to not let the reply grow after
         * this flag has been set (i.e. don't process more commands). */
        if (c->flags & REDIS_CLOSE_AFTER_REPLY) return;
1025 1026 1027 1028 1029

        /* Determine request type when unknown. */
        if (!c->reqtype) {
            if (c->querybuf[0] == '*') {
                c->reqtype = REDIS_REQ_MULTIBULK;
1030
            } else {
1031
                c->reqtype = REDIS_REQ_INLINE;
1032 1033
            }
        }
1034 1035 1036 1037 1038 1039 1040

        if (c->reqtype == REDIS_REQ_INLINE) {
            if (processInlineBuffer(c) != REDIS_OK) break;
        } else if (c->reqtype == REDIS_REQ_MULTIBULK) {
            if (processMultibulkBuffer(c) != REDIS_OK) break;
        } else {
            redisPanic("Unknown request type");
1041
        }
1042 1043

        /* Multibulk processing could see a <= 0 length. */
1044 1045 1046 1047 1048 1049 1050
        if (c->argc == 0) {
            resetClient(c);
        } else {
            /* Only reset the client when the command was executed. */
            if (processCommand(c) == REDIS_OK)
                resetClient(c);
        }
1051 1052 1053 1054 1055
    }
}

void readQueryFromClient(aeEventLoop *el, int fd, void *privdata, int mask) {
    redisClient *c = (redisClient*) privdata;
1056
    int nread, readlen;
1057
    size_t qblen;
1058 1059 1060
    REDIS_NOTUSED(el);
    REDIS_NOTUSED(mask);

1061
    server.current_client = c;
1062 1063
    readlen = REDIS_IOBUF_LEN;
    /* If this is a multi bulk request, and we are processing a bulk reply
1064 1065 1066
     * that is large enough, try to maximize the probability that the query
     * buffer contains exactly the SDS string representing the object, even
     * at the risk of requiring more read(2) calls. This way the function
1067 1068 1069
     * processMultiBulkBuffer() can avoid copying buffers to create the
     * Redis Object representing the argument. */
    if (c->reqtype == REDIS_REQ_MULTIBULK && c->multibulklen && c->bulklen != -1
1070
        && c->bulklen >= REDIS_MBULK_BIG_ARG)
1071 1072 1073 1074 1075 1076
    {
        int remaining = (unsigned)(c->bulklen+2)-sdslen(c->querybuf);

        if (remaining < readlen) readlen = remaining;
    }

1077
    qblen = sdslen(c->querybuf);
1078
    if (c->querybuf_peak < qblen) c->querybuf_peak = qblen;
1079 1080
    c->querybuf = sdsMakeRoomFor(c->querybuf, readlen);
    nread = read(fd, c->querybuf+qblen, readlen);
1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094
    if (nread == -1) {
        if (errno == EAGAIN) {
            nread = 0;
        } else {
            redisLog(REDIS_VERBOSE, "Reading from client: %s",strerror(errno));
            freeClient(c);
            return;
        }
    } else if (nread == 0) {
        redisLog(REDIS_VERBOSE, "Client closed connection");
        freeClient(c);
        return;
    }
    if (nread) {
1095
        sdsIncrLen(c->querybuf,nread);
1096
        c->lastinteraction = server.unixtime;
1097
        if (c->flags & REDIS_MASTER) c->reploff += nread;
1098
    } else {
1099
        server.current_client = NULL;
1100 1101
        return;
    }
1102
    if (sdslen(c->querybuf) > server.client_max_querybuf_len) {
1103 1104 1105 1106
        sds ci = getClientInfoString(c), bytes = sdsempty();

        bytes = sdscatrepr(bytes,c->querybuf,64);
        redisLog(REDIS_WARNING,"Closing client that reached max query buffer length: %s (qbuf initial bytes: %s)", ci, bytes);
1107
        sdsfree(ci);
1108
        sdsfree(bytes);
1109 1110 1111
        freeClient(c);
        return;
    }
1112
    processInputBuffer(c);
1113
    server.current_client = NULL;
1114
}
1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133

void getClientsMaxBuffers(unsigned long *longest_output_list,
                          unsigned long *biggest_input_buffer) {
    redisClient *c;
    listNode *ln;
    listIter li;
    unsigned long lol = 0, bib = 0;

    listRewind(server.clients,&li);
    while ((ln = listNext(&li)) != NULL) {
        c = listNodeValue(ln);

        if (listLength(c->reply) > lol) lol = listLength(c->reply);
        if (sdslen(c->querybuf) > bib) bib = sdslen(c->querybuf);
    }
    *longest_output_list = lol;
    *biggest_input_buffer = bib;
}

1134 1135
/* Turn a Redis client into an sds string representing its state. */
sds getClientInfoString(redisClient *client) {
1136
    char ip[32], flags[16], events[3], *p;
1137
    int port = 0; /* initialized to zero for the unix socket case. */
1138
    int emask;
1139

1140 1141
    if (!(client->flags & REDIS_UNIX_SOCKET))
        anetPeerToString(client->fd,ip,&port);
1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154
    p = flags;
    if (client->flags & REDIS_SLAVE) {
        if (client->flags & REDIS_MONITOR)
            *p++ = 'O';
        else
            *p++ = 'S';
    }
    if (client->flags & REDIS_MASTER) *p++ = 'M';
    if (client->flags & REDIS_MULTI) *p++ = 'x';
    if (client->flags & REDIS_BLOCKED) *p++ = 'b';
    if (client->flags & REDIS_DIRTY_CAS) *p++ = 'd';
    if (client->flags & REDIS_CLOSE_AFTER_REPLY) *p++ = 'c';
    if (client->flags & REDIS_UNBLOCKED) *p++ = 'u';
1155
    if (client->flags & REDIS_CLOSE_ASAP) *p++ = 'A';
1156
    if (client->flags & REDIS_UNIX_SOCKET) *p++ = 'U';
1157
    if (p == flags) *p++ = 'N';
1158
    *p++ = '\0';
1159 1160 1161 1162 1163 1164

    emask = client->fd == -1 ? 0 : aeGetFileEvents(server.el,client->fd);
    p = events;
    if (emask & AE_READABLE) *p++ = 'r';
    if (emask & AE_WRITABLE) *p++ = 'w';
    *p = '\0';
1165
    return sdscatprintf(sdsempty(),
1166
        "addr=%s:%d fd=%d name=%s age=%ld idle=%ld flags=%s db=%d sub=%d psub=%d multi=%d qbuf=%lu qbuf-free=%lu obl=%lu oll=%lu omem=%lu events=%s cmd=%s",
1167
        (client->flags & REDIS_UNIX_SOCKET) ? server.unixsocket : ip,
1168 1169 1170
        port,
        client->fd,
        client->name ? (char*)client->name->ptr : "",
1171 1172
        (long)(server.unixtime - client->ctime),
        (long)(server.unixtime - client->lastinteraction),
1173 1174 1175
        flags,
        client->db->id,
        (int) dictSize(client->pubsub_channels),
1176
        (int) listLength(client->pubsub_patterns),
1177
        (client->flags & REDIS_MULTI) ? client->mstate.count : -1,
1178
        (unsigned long) sdslen(client->querybuf),
1179
        (unsigned long) sdsavail(client->querybuf),
1180
        (unsigned long) client->bufpos,
1181
        (unsigned long) listLength(client->reply),
1182
        getClientOutputBufferMemoryUsage(client),
1183 1184
        events,
        client->lastcmd ? client->lastcmd->name : "NULL");
1185 1186
}

1187 1188 1189 1190 1191 1192 1193 1194
sds getAllClientsInfoString(void) {
    listNode *ln;
    listIter li;
    redisClient *client;
    sds o = sdsempty();

    listRewind(server.clients,&li);
    while ((ln = listNext(&li)) != NULL) {
1195 1196
        sds cs;

1197
        client = listNodeValue(ln);
1198 1199 1200
        cs = getClientInfoString(client);
        o = sdscatsds(o,cs);
        sdsfree(cs);
1201 1202 1203 1204 1205
        o = sdscatlen(o,"\n",1);
    }
    return o;
}

A
antirez 已提交
1206
void clientCommand(redisClient *c) {
A
antirez 已提交
1207 1208 1209 1210
    listNode *ln;
    listIter li;
    redisClient *client;

A
antirez 已提交
1211
    if (!strcasecmp(c->argv[1]->ptr,"list") && c->argc == 2) {
1212
        sds o = getAllClientsInfoString();
A
antirez 已提交
1213 1214
        addReplyBulkCBuffer(c,o,sdslen(o));
        sdsfree(o);
A
antirez 已提交
1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234
    } else if (!strcasecmp(c->argv[1]->ptr,"kill") && c->argc == 3) {
        listRewind(server.clients,&li);
        while ((ln = listNext(&li)) != NULL) {
            char ip[32], addr[64];
            int port;

            client = listNodeValue(ln);
            if (anetPeerToString(client->fd,ip,&port) == -1) continue;
            snprintf(addr,sizeof(addr),"%s:%d",ip,port);
            if (strcmp(addr,c->argv[2]->ptr) == 0) {
                addReply(c,shared.ok);
                if (c == client) {
                    client->flags |= REDIS_CLOSE_AFTER_REPLY;
                } else {
                    freeClient(client);
                }
                return;
            }
        }
        addReplyError(c,"No such client");
1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251
    } else if (!strcasecmp(c->argv[1]->ptr,"setname") && c->argc == 3) {
        int j, len = sdslen(c->argv[2]->ptr);
        char *p = c->argv[2]->ptr;

        /* Setting the client name to an empty string actually removes
         * the current name. */
        if (len == 0) {
            if (c->name) decrRefCount(c->name);
            c->name = NULL;
            addReply(c,shared.ok);
            return;
        }

        /* Otherwise check if the charset is ok. We need to do this otherwise
         * CLIENT LIST format will break. You should always be able to
         * split by space to get the different fields. */
        for (j = 0; j < len; j++) {
A
antirez 已提交
1252
            if (p[j] < '!' || p[j] > '~') { /* ASCII is assumed. */
1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267
                addReplyError(c,
                    "Client names cannot contain spaces, "
                    "newlines or special characters.");
                return;
            }
        }
        if (c->name) decrRefCount(c->name);
        c->name = c->argv[2];
        incrRefCount(c->name);
        addReply(c,shared.ok);
    } else if (!strcasecmp(c->argv[1]->ptr,"getname") && c->argc == 2) {
        if (c->name)
            addReplyBulk(c,c->name);
        else
            addReply(c,shared.nullbulk);
A
antirez 已提交
1268
    } else {
B
bitterb 已提交
1269
        addReplyError(c, "Syntax error, try CLIENT (LIST | KILL ip:port | GETNAME | SETNAME connection-name)");
A
antirez 已提交
1270 1271
    }
}
1272

1273 1274 1275
/* Rewrite the command vector of the client. All the new objects ref count
 * is incremented. The old command vector is freed, and the old objects
 * ref count is decremented. */
1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297
void rewriteClientCommandVector(redisClient *c, int argc, ...) {
    va_list ap;
    int j;
    robj **argv; /* The new argument vector */

    argv = zmalloc(sizeof(robj*)*argc);
    va_start(ap,argc);
    for (j = 0; j < argc; j++) {
        robj *a;
        
        a = va_arg(ap, robj*);
        argv[j] = a;
        incrRefCount(a);
    }
    /* We free the objects in the original vector at the end, so we are
     * sure that if the same objects are reused in the new vector the
     * refcount gets incremented before it gets decremented. */
    for (j = 0; j < c->argc; j++) decrRefCount(c->argv[j]);
    zfree(c->argv);
    /* Replace argv and argc with our new versions. */
    c->argv = argv;
    c->argc = argc;
1298
    c->cmd = lookupCommandOrOriginal(c->argv[0]->ptr);
1299
    redisAssertWithInfo(c,NULL,c->cmd != NULL);
1300 1301
    va_end(ap);
}
1302 1303 1304 1305 1306 1307

/* Rewrite a single item in the command vector.
 * The new val ref count is incremented, and the old decremented. */
void rewriteClientCommandArgument(redisClient *c, int i, robj *newval) {
    robj *oldval;
   
1308
    redisAssertWithInfo(c,NULL,i < c->argc);
1309 1310 1311 1312 1313 1314 1315
    oldval = c->argv[i];
    c->argv[i] = newval;
    incrRefCount(newval);
    decrRefCount(oldval);

    /* If this is the command name make sure to fix c->cmd. */
    if (i == 0) {
1316
        c->cmd = lookupCommandOrOriginal(c->argv[0]->ptr);
1317
        redisAssertWithInfo(c,NULL,c->cmd != NULL);
1318 1319
    }
}
1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332

/* This function returns the number of bytes that Redis is virtually
 * using to store the reply still not read by the client.
 * It is "virtual" since the reply output list may contain objects that
 * are shared and are not really using additional memory.
 *
 * The function returns the total sum of the length of all the objects
 * stored in the output list, plus the memory used to allocate every
 * list node. The static reply buffer is not taken into account since it
 * is allocated anyway.
 *
 * Note: this function is very fast so can be called as many time as
 * the caller wishes. The main usage of this function currently is
A
antirez 已提交
1333
 * enforcing the client output length limits. */
1334
unsigned long getClientOutputBufferMemoryUsage(redisClient *c) {
1335
    unsigned long list_item_size = sizeof(listNode)+sizeof(robj);
1336 1337 1338

    return c->reply_bytes + (list_item_size*listLength(c->reply));
}
1339

1340
/* Get the class of a client, used in order to enforce limits to different
1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353
 * classes of clients.
 *
 * The function will return one of the following:
 * REDIS_CLIENT_LIMIT_CLASS_NORMAL -> Normal client
 * REDIS_CLIENT_LIMIT_CLASS_SLAVE  -> Slave or client executing MONITOR command
 * REDIS_CLIENT_LIMIT_CLASS_PUBSUB -> Client subscribed to Pub/Sub channels
 */
int getClientLimitClass(redisClient *c) {
    if (c->flags & REDIS_SLAVE) return REDIS_CLIENT_LIMIT_CLASS_SLAVE;
    if (dictSize(c->pubsub_channels) || listLength(c->pubsub_patterns))
        return REDIS_CLIENT_LIMIT_CLASS_PUBSUB;
    return REDIS_CLIENT_LIMIT_CLASS_NORMAL;
}
1354

1355 1356 1357
int getClientLimitClassByName(char *name) {
    if (!strcasecmp(name,"normal")) return REDIS_CLIENT_LIMIT_CLASS_NORMAL;
    else if (!strcasecmp(name,"slave")) return REDIS_CLIENT_LIMIT_CLASS_SLAVE;
1358
    else if (!strcasecmp(name,"pubsub")) return REDIS_CLIENT_LIMIT_CLASS_PUBSUB;
1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370
    else return -1;
}

char *getClientLimitClassName(int class) {
    switch(class) {
    case REDIS_CLIENT_LIMIT_CLASS_NORMAL:   return "normal";
    case REDIS_CLIENT_LIMIT_CLASS_SLAVE:    return "slave";
    case REDIS_CLIENT_LIMIT_CLASS_PUBSUB:   return "pubsub";
    default:                                return NULL;
    }
}

1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411
/* The function checks if the client reached output buffer soft or hard
 * limit, and also update the state needed to check the soft limit as
 * a side effect.
 *
 * Return value: non-zero if the client reached the soft or the hard limit.
 *               Otherwise zero is returned. */
int checkClientOutputBufferLimits(redisClient *c) {
    int soft = 0, hard = 0, class;
    unsigned long used_mem = getClientOutputBufferMemoryUsage(c);

    class = getClientLimitClass(c);
    if (server.client_obuf_limits[class].hard_limit_bytes &&
        used_mem >= server.client_obuf_limits[class].hard_limit_bytes)
        hard = 1;
    if (server.client_obuf_limits[class].soft_limit_bytes &&
        used_mem >= server.client_obuf_limits[class].soft_limit_bytes)
        soft = 1;

    /* We need to check if the soft limit is reached continuously for the
     * specified amount of seconds. */
    if (soft) {
        if (c->obuf_soft_limit_reached_time == 0) {
            c->obuf_soft_limit_reached_time = server.unixtime;
            soft = 0; /* First time we see the soft limit reached */
        } else {
            time_t elapsed = server.unixtime - c->obuf_soft_limit_reached_time;

            if (elapsed <=
                server.client_obuf_limits[class].soft_limit_seconds) {
                soft = 0; /* The client still did not reached the max number of
                             seconds for the soft limit to be considered
                             reached. */
            }
        }
    } else {
        c->obuf_soft_limit_reached_time = 0;
    }
    return soft || hard;
}

/* Asynchronously close a client if soft or hard limit is reached on the
1412 1413
 * output buffer size. The caller can check if the client will be closed
 * checking if the client REDIS_CLOSE_ASAP flag is set.
1414 1415 1416 1417
 *
 * Note: we need to close the client asynchronously because this function is
 * called from contexts where the client can't be freed safely, i.e. from the
 * lower level functions pushing data inside the client output buffers. */
1418
void asyncCloseClientOnOutputBufferLimitReached(redisClient *c) {
1419
    redisAssert(c->reply_bytes < ULONG_MAX-(1024*64));
1420
    if (c->reply_bytes == 0 || c->flags & REDIS_CLOSE_ASAP) return;
1421 1422 1423 1424
    if (checkClientOutputBufferLimits(c)) {
        sds client = getClientInfoString(c);

        freeClientAsync(c);
1425
        redisLog(REDIS_WARNING,"Client %s scheduled to be closed ASAP for overcoming of output buffer limits.", client);
1426 1427 1428
        sdsfree(client);
    }
}
A
antirez 已提交
1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449

/* Helper function used by freeMemoryIfNeeded() in order to flush slaves
 * output buffers without returning control to the event loop. */
void flushSlavesOutputBuffers(void) {
    listIter li;
    listNode *ln;

    listRewind(server.slaves,&li);
    while((ln = listNext(&li))) {
        redisClient *slave = listNodeValue(ln);
        int events;

        events = aeGetFileEvents(server.el,slave->fd);
        if (events & AE_WRITABLE &&
            slave->replstate == REDIS_REPL_ONLINE &&
            listLength(slave->reply))
        {
            sendReplyToClient(server.el,slave->fd,slave,0);
        }
    }
}