]> git.saurik.com Git - redis.git/blame - src/cluster.c
ASCII ART FTW
[redis.git] / src / cluster.c
CommitLineData
ecc91094 1#include "redis.h"
2
3#include <arpa/inet.h>
c7c7cfbd 4#include <fcntl.h>
5#include <unistd.h>
ecc91094 6
7void clusterAcceptHandler(aeEventLoop *el, int fd, void *privdata, int mask);
8void clusterReadHandler(aeEventLoop *el, int fd, void *privdata, int mask);
9void clusterSendPing(clusterLink *link, int type);
10void clusterSendFail(char *nodename);
11void clusterUpdateState(void);
12int clusterNodeGetSlotBit(clusterNode *n, int slot);
c7c7cfbd 13sds clusterGenNodesDescription(void);
92690d29 14clusterNode *clusterLookupNode(char *name);
15int clusterNodeAddSlave(clusterNode *master, clusterNode *slave);
1793752d 16int clusterAddSlot(clusterNode *n, int slot);
ecc91094 17
18/* -----------------------------------------------------------------------------
19 * Initialization
20 * -------------------------------------------------------------------------- */
21
22void clusterGetRandomName(char *p) {
23 FILE *fp = fopen("/dev/urandom","r");
24 char *charset = "0123456789abcdef";
25 int j;
26
27 if (!fp) {
28 redisLog(REDIS_WARNING,
29 "Unrecovarable error: can't open /dev/urandom:%s" ,strerror(errno));
30 exit(1);
31 }
32 fread(p,REDIS_CLUSTER_NAMELEN,1,fp);
33 for (j = 0; j < REDIS_CLUSTER_NAMELEN; j++)
34 p[j] = charset[p[j] & 0x0F];
35 fclose(fp);
36}
37
38int clusterLoadConfig(char *filename) {
39 FILE *fp = fopen(filename,"r");
726a39c1 40 char *line;
92690d29 41 int maxline, j;
c7c7cfbd 42
ecc91094 43 if (fp == NULL) return REDIS_ERR;
726a39c1 44
45 /* Parse the file. Note that single liens of the cluster config file can
46 * be really long as they include all the hash slots of the node.
47 * This means in the worst possible case REDIS_CLUSTER_SLOTS/2 integers.
48 * To simplify we allocate 1024+REDIS_CLUSTER_SLOTS*16 bytes per line. */
49 maxline = 1024+REDIS_CLUSTER_SLOTS*16;
50 line = zmalloc(maxline);
51 while(fgets(line,maxline,fp) != NULL) {
52 int argc;
53 sds *argv = sdssplitargs(line,&argc);
92690d29 54 clusterNode *n, *master;
55 char *p, *s;
56
57 /* Create this node if it does not exist */
58 n = clusterLookupNode(argv[0]);
59 if (!n) {
60 n = createClusterNode(argv[0],0);
61 clusterAddNode(n);
62 }
63 /* Address and port */
64 if ((p = strchr(argv[1],':')) == NULL) goto fmterr;
65 *p = '\0';
66 memcpy(n->ip,argv[1],strlen(argv[1])+1);
67 n->port = atoi(p+1);
68
69 /* Parse flags */
70 p = s = argv[2];
71 while(p) {
72 p = strchr(s,',');
73 if (p) *p = '\0';
74 if (!strcasecmp(s,"myself")) {
75 redisAssert(server.cluster.myself == NULL);
76 server.cluster.myself = n;
77 n->flags |= REDIS_NODE_MYSELF;
78 } else if (!strcasecmp(s,"master")) {
79 n->flags |= REDIS_NODE_MASTER;
80 } else if (!strcasecmp(s,"slave")) {
81 n->flags |= REDIS_NODE_SLAVE;
82 } else if (!strcasecmp(s,"fail?")) {
83 n->flags |= REDIS_NODE_PFAIL;
84 } else if (!strcasecmp(s,"fail")) {
85 n->flags |= REDIS_NODE_FAIL;
86 } else if (!strcasecmp(s,"handshake")) {
87 n->flags |= REDIS_NODE_HANDSHAKE;
88 } else if (!strcasecmp(s,"noaddr")) {
89 n->flags |= REDIS_NODE_NOADDR;
d01a6bb3 90 } else if (!strcasecmp(s,"noflags")) {
91 /* nothing to do */
92690d29 92 } else {
93 redisPanic("Unknown flag in redis cluster config file");
94 }
95 if (p) s = p+1;
96 }
97
98 /* Get master if any. Set the master and populate master's
99 * slave list. */
100 if (argv[3][0] != '-') {
101 master = clusterLookupNode(argv[3]);
102 if (!master) {
103 master = createClusterNode(argv[3],0);
104 clusterAddNode(master);
105 }
106 n->slaveof = master;
107 clusterNodeAddSlave(master,n);
108 }
109
152d937b 110 /* Set ping sent / pong received timestamps */
111 if (atoi(argv[4])) n->ping_sent = time(NULL);
112 if (atoi(argv[5])) n->pong_received = time(NULL);
113
92690d29 114 /* Populate hash slots served by this instance. */
115 for (j = 7; j < argc; j++) {
116 int start, stop;
117
118 if ((p = strchr(argv[j],'-')) != NULL) {
119 *p = '\0';
120 start = atoi(argv[j]);
121 stop = atoi(p+1);
122 } else {
123 start = stop = atoi(argv[j]);
124 }
125 while(start <= stop) clusterAddSlot(n, start++);
126 }
726a39c1 127
128 sdssplitargs_free(argv,argc);
129 }
130 zfree(line);
ecc91094 131 fclose(fp);
132
726a39c1 133 /* Config sanity check */
92690d29 134 redisAssert(server.cluster.myself != NULL);
ecc91094 135 redisLog(REDIS_NOTICE,"Node configuration loaded, I'm %.40s",
136 server.cluster.myself->name);
5a547b27 137 clusterUpdateState();
ecc91094 138 return REDIS_OK;
139
140fmterr:
ef21ab96 141 redisLog(REDIS_WARNING,"Unrecovarable error: corrupted cluster config file.");
ecc91094 142 fclose(fp);
143 exit(1);
144}
145
c7c7cfbd 146/* Cluster node configuration is exactly the same as CLUSTER NODES output.
147 *
148 * This function writes the node config and returns 0, on error -1
149 * is returned. */
ef21ab96 150int clusterSaveConfig(void) {
c7c7cfbd 151 sds ci = clusterGenNodesDescription();
152 int fd;
153
726a39c1 154 if ((fd = open(server.cluster.configfile,O_WRONLY|O_CREAT|O_TRUNC,0644))
155 == -1) goto err;
c7c7cfbd 156 if (write(fd,ci,sdslen(ci)) != (ssize_t)sdslen(ci)) goto err;
157 close(fd);
158 sdsfree(ci);
159 return 0;
160
161err:
162 sdsfree(ci);
163 return -1;
164}
165
ef21ab96 166void clusterSaveConfigOrDie(void) {
167 if (clusterSaveConfig() == -1) {
168 redisLog(REDIS_WARNING,"Fatal: can't update cluster config file.");
169 exit(1);
170 }
171}
172
ecc91094 173void clusterInit(void) {
4b72c561 174 int saveconf = 0;
175
92690d29 176 server.cluster.myself = NULL;
ecc91094 177 server.cluster.state = REDIS_CLUSTER_FAIL;
178 server.cluster.nodes = dictCreate(&clusterNodesDictType,NULL);
179 server.cluster.node_timeout = 15;
180 memset(server.cluster.migrating_slots_to,0,
181 sizeof(server.cluster.migrating_slots_to));
182 memset(server.cluster.importing_slots_from,0,
183 sizeof(server.cluster.importing_slots_from));
184 memset(server.cluster.slots,0,
185 sizeof(server.cluster.slots));
ef21ab96 186 if (clusterLoadConfig(server.cluster.configfile) == REDIS_ERR) {
ecc91094 187 /* No configuration found. We will just use the random name provided
188 * by the createClusterNode() function. */
92690d29 189 server.cluster.myself = createClusterNode(NULL,REDIS_NODE_MYSELF);
ecc91094 190 redisLog(REDIS_NOTICE,"No cluster configuration found, I'm %.40s",
191 server.cluster.myself->name);
6c390c0b 192 clusterAddNode(server.cluster.myself);
4b72c561 193 saveconf = 1;
194 }
ef21ab96 195 if (saveconf) clusterSaveConfigOrDie();
ecc91094 196 /* We need a listening TCP port for our cluster messaging needs */
197 server.cfd = anetTcpServer(server.neterr,
198 server.port+REDIS_CLUSTER_PORT_INCR, server.bindaddr);
199 if (server.cfd == -1) {
200 redisLog(REDIS_WARNING, "Opening cluster TCP port: %s", server.neterr);
201 exit(1);
202 }
203 if (aeCreateFileEvent(server.el, server.cfd, AE_READABLE,
204 clusterAcceptHandler, NULL) == AE_ERR) oom("creating file event");
205}
206
207/* -----------------------------------------------------------------------------
208 * CLUSTER communication link
209 * -------------------------------------------------------------------------- */
210
211clusterLink *createClusterLink(clusterNode *node) {
212 clusterLink *link = zmalloc(sizeof(*link));
213 link->sndbuf = sdsempty();
214 link->rcvbuf = sdsempty();
215 link->node = node;
216 link->fd = -1;
217 return link;
218}
219
220/* Free a cluster link, but does not free the associated node of course.
221 * Just this function will make sure that the original node associated
222 * with this link will have the 'link' field set to NULL. */
223void freeClusterLink(clusterLink *link) {
224 if (link->fd != -1) {
225 aeDeleteFileEvent(server.el, link->fd, AE_WRITABLE);
226 aeDeleteFileEvent(server.el, link->fd, AE_READABLE);
227 }
228 sdsfree(link->sndbuf);
229 sdsfree(link->rcvbuf);
230 if (link->node)
231 link->node->link = NULL;
232 close(link->fd);
233 zfree(link);
234}
235
236void clusterAcceptHandler(aeEventLoop *el, int fd, void *privdata, int mask) {
237 int cport, cfd;
238 char cip[128];
239 clusterLink *link;
240 REDIS_NOTUSED(el);
241 REDIS_NOTUSED(mask);
242 REDIS_NOTUSED(privdata);
243
244 cfd = anetTcpAccept(server.neterr, fd, cip, &cport);
245 if (cfd == AE_ERR) {
246 redisLog(REDIS_VERBOSE,"Accepting cluster node: %s", server.neterr);
247 return;
248 }
249 redisLog(REDIS_VERBOSE,"Accepted cluster node %s:%d", cip, cport);
250 /* We need to create a temporary node in order to read the incoming
251 * packet in a valid contest. This node will be released once we
252 * read the packet and reply. */
253 link = createClusterLink(NULL);
254 link->fd = cfd;
255 aeCreateFileEvent(server.el,cfd,AE_READABLE,clusterReadHandler,link);
256}
257
258/* -----------------------------------------------------------------------------
259 * Key space handling
260 * -------------------------------------------------------------------------- */
261
262/* We have 4096 hash slots. The hash slot of a given key is obtained
263 * as the least significant 12 bits of the crc16 of the key. */
264unsigned int keyHashSlot(char *key, int keylen) {
265 return crc16(key,keylen) & 0x0FFF;
266}
267
268/* -----------------------------------------------------------------------------
269 * CLUSTER node API
270 * -------------------------------------------------------------------------- */
271
272/* Create a new cluster node, with the specified flags.
273 * If "nodename" is NULL this is considered a first handshake and a random
274 * node name is assigned to this node (it will be fixed later when we'll
275 * receive the first pong).
276 *
277 * The node is created and returned to the user, but it is not automatically
278 * added to the nodes hash table. */
279clusterNode *createClusterNode(char *nodename, int flags) {
280 clusterNode *node = zmalloc(sizeof(*node));
281
282 if (nodename)
283 memcpy(node->name, nodename, REDIS_CLUSTER_NAMELEN);
284 else
285 clusterGetRandomName(node->name);
286 node->flags = flags;
287 memset(node->slots,0,sizeof(node->slots));
288 node->numslaves = 0;
289 node->slaves = NULL;
290 node->slaveof = NULL;
291 node->ping_sent = node->pong_received = 0;
292 node->configdigest = NULL;
293 node->configdigest_ts = 0;
294 node->link = NULL;
295 return node;
296}
297
298int clusterNodeRemoveSlave(clusterNode *master, clusterNode *slave) {
299 int j;
300
301 for (j = 0; j < master->numslaves; j++) {
302 if (master->slaves[j] == slave) {
303 memmove(master->slaves+j,master->slaves+(j+1),
304 (master->numslaves-1)-j);
305 master->numslaves--;
306 return REDIS_OK;
307 }
308 }
309 return REDIS_ERR;
310}
311
312int clusterNodeAddSlave(clusterNode *master, clusterNode *slave) {
313 int j;
314
315 /* If it's already a slave, don't add it again. */
316 for (j = 0; j < master->numslaves; j++)
317 if (master->slaves[j] == slave) return REDIS_ERR;
318 master->slaves = zrealloc(master->slaves,
319 sizeof(clusterNode*)*(master->numslaves+1));
320 master->slaves[master->numslaves] = slave;
321 master->numslaves++;
322 return REDIS_OK;
323}
324
325void clusterNodeResetSlaves(clusterNode *n) {
326 zfree(n->slaves);
327 n->numslaves = 0;
328}
329
330void freeClusterNode(clusterNode *n) {
331 sds nodename;
332
333 nodename = sdsnewlen(n->name, REDIS_CLUSTER_NAMELEN);
334 redisAssert(dictDelete(server.cluster.nodes,nodename) == DICT_OK);
335 sdsfree(nodename);
336 if (n->slaveof) clusterNodeRemoveSlave(n->slaveof, n);
337 if (n->link) freeClusterLink(n->link);
338 zfree(n);
339}
340
341/* Add a node to the nodes hash table */
342int clusterAddNode(clusterNode *node) {
343 int retval;
344
345 retval = dictAdd(server.cluster.nodes,
346 sdsnewlen(node->name,REDIS_CLUSTER_NAMELEN), node);
347 return (retval == DICT_OK) ? REDIS_OK : REDIS_ERR;
348}
349
350/* Node lookup by name */
351clusterNode *clusterLookupNode(char *name) {
352 sds s = sdsnewlen(name, REDIS_CLUSTER_NAMELEN);
353 struct dictEntry *de;
354
355 de = dictFind(server.cluster.nodes,s);
356 sdsfree(s);
357 if (de == NULL) return NULL;
358 return dictGetEntryVal(de);
359}
360
361/* This is only used after the handshake. When we connect a given IP/PORT
362 * as a result of CLUSTER MEET we don't have the node name yet, so we
363 * pick a random one, and will fix it when we receive the PONG request using
364 * this function. */
365void clusterRenameNode(clusterNode *node, char *newname) {
366 int retval;
367 sds s = sdsnewlen(node->name, REDIS_CLUSTER_NAMELEN);
368
369 redisLog(REDIS_DEBUG,"Renaming node %.40s into %.40s",
370 node->name, newname);
371 retval = dictDelete(server.cluster.nodes, s);
372 sdsfree(s);
373 redisAssert(retval == DICT_OK);
374 memcpy(node->name, newname, REDIS_CLUSTER_NAMELEN);
375 clusterAddNode(node);
376}
377
378/* -----------------------------------------------------------------------------
379 * CLUSTER messages exchange - PING/PONG and gossip
380 * -------------------------------------------------------------------------- */
381
382/* Process the gossip section of PING or PONG packets.
383 * Note that this function assumes that the packet is already sanity-checked
384 * by the caller, not in the content of the gossip section, but in the
385 * length. */
386void clusterProcessGossipSection(clusterMsg *hdr, clusterLink *link) {
387 uint16_t count = ntohs(hdr->count);
388 clusterMsgDataGossip *g = (clusterMsgDataGossip*) hdr->data.ping.gossip;
389 clusterNode *sender = link->node ? link->node : clusterLookupNode(hdr->sender);
390
391 while(count--) {
392 sds ci = sdsempty();
393 uint16_t flags = ntohs(g->flags);
394 clusterNode *node;
395
396 if (flags == 0) ci = sdscat(ci,"noflags,");
397 if (flags & REDIS_NODE_MYSELF) ci = sdscat(ci,"myself,");
398 if (flags & REDIS_NODE_MASTER) ci = sdscat(ci,"master,");
399 if (flags & REDIS_NODE_SLAVE) ci = sdscat(ci,"slave,");
400 if (flags & REDIS_NODE_PFAIL) ci = sdscat(ci,"fail?,");
401 if (flags & REDIS_NODE_FAIL) ci = sdscat(ci,"fail,");
402 if (flags & REDIS_NODE_HANDSHAKE) ci = sdscat(ci,"handshake,");
403 if (flags & REDIS_NODE_NOADDR) ci = sdscat(ci,"noaddr,");
404 if (ci[sdslen(ci)-1] == ',') ci[sdslen(ci)-1] = ' ';
405
406 redisLog(REDIS_DEBUG,"GOSSIP %.40s %s:%d %s",
407 g->nodename,
408 g->ip,
409 ntohs(g->port),
410 ci);
411 sdsfree(ci);
412
413 /* Update our state accordingly to the gossip sections */
414 node = clusterLookupNode(g->nodename);
415 if (node != NULL) {
416 /* We already know this node. Let's start updating the last
417 * time PONG figure if it is newer than our figure.
418 * Note that it's not a problem if we have a PING already
419 * in progress against this node. */
420 if (node->pong_received < ntohl(g->pong_received)) {
421 redisLog(REDIS_DEBUG,"Node pong_received updated by gossip");
422 node->pong_received = ntohl(g->pong_received);
423 }
424 /* Mark this node as FAILED if we think it is possibly failing
425 * and another node also thinks it's failing. */
426 if (node->flags & REDIS_NODE_PFAIL &&
427 (flags & (REDIS_NODE_FAIL|REDIS_NODE_PFAIL)))
428 {
429 redisLog(REDIS_NOTICE,"Received a PFAIL acknowledge from node %.40s, marking node %.40s as FAIL!", hdr->sender, node->name);
430 node->flags &= ~REDIS_NODE_PFAIL;
431 node->flags |= REDIS_NODE_FAIL;
432 /* Broadcast the failing node name to everybody */
433 clusterSendFail(node->name);
434 clusterUpdateState();
726a39c1 435 clusterSaveConfigOrDie();
ecc91094 436 }
437 } else {
438 /* If it's not in NOADDR state and we don't have it, we
439 * start an handshake process against this IP/PORT pairs.
440 *
441 * Note that we require that the sender of this gossip message
442 * is a well known node in our cluster, otherwise we risk
443 * joining another cluster. */
444 if (sender && !(flags & REDIS_NODE_NOADDR)) {
445 clusterNode *newnode;
446
447 redisLog(REDIS_DEBUG,"Adding the new node");
448 newnode = createClusterNode(NULL,REDIS_NODE_HANDSHAKE);
449 memcpy(newnode->ip,g->ip,sizeof(g->ip));
450 newnode->port = ntohs(g->port);
451 clusterAddNode(newnode);
452 }
453 }
454
455 /* Next node */
456 g++;
457 }
458}
459
460/* IP -> string conversion. 'buf' is supposed to at least be 16 bytes. */
461void nodeIp2String(char *buf, clusterLink *link) {
462 struct sockaddr_in sa;
463 socklen_t salen = sizeof(sa);
464
465 if (getpeername(link->fd, (struct sockaddr*) &sa, &salen) == -1)
466 redisPanic("getpeername() failed.");
467 strncpy(buf,inet_ntoa(sa.sin_addr),sizeof(link->node->ip));
468}
469
470
471/* Update the node address to the IP address that can be extracted
472 * from link->fd, and at the specified port. */
473void nodeUpdateAddress(clusterNode *node, clusterLink *link, int port) {
474}
475
476/* When this function is called, there is a packet to process starting
477 * at node->rcvbuf. Releasing the buffer is up to the caller, so this
478 * function should just handle the higher level stuff of processing the
479 * packet, modifying the cluster state if needed.
480 *
481 * The function returns 1 if the link is still valid after the packet
482 * was processed, otherwise 0 if the link was freed since the packet
483 * processing lead to some inconsistency error (for instance a PONG
484 * received from the wrong sender ID). */
485int clusterProcessPacket(clusterLink *link) {
486 clusterMsg *hdr = (clusterMsg*) link->rcvbuf;
487 uint32_t totlen = ntohl(hdr->totlen);
488 uint16_t type = ntohs(hdr->type);
489 clusterNode *sender;
490
491 redisLog(REDIS_DEBUG,"--- packet to process %lu bytes (%lu) ---",
492 (unsigned long) totlen, sdslen(link->rcvbuf));
493 if (totlen < 8) return 1;
494 if (totlen > sdslen(link->rcvbuf)) return 1;
495 if (type == CLUSTERMSG_TYPE_PING || type == CLUSTERMSG_TYPE_PONG ||
496 type == CLUSTERMSG_TYPE_MEET)
497 {
498 uint16_t count = ntohs(hdr->count);
499 uint32_t explen; /* expected length of this packet */
500
501 explen = sizeof(clusterMsg)-sizeof(union clusterMsgData);
502 explen += (sizeof(clusterMsgDataGossip)*count);
503 if (totlen != explen) return 1;
504 }
505 if (type == CLUSTERMSG_TYPE_FAIL) {
506 uint32_t explen = sizeof(clusterMsg)-sizeof(union clusterMsgData);
507
508 explen += sizeof(clusterMsgDataFail);
509 if (totlen != explen) return 1;
510 }
511
512 sender = clusterLookupNode(hdr->sender);
513 if (type == CLUSTERMSG_TYPE_PING || type == CLUSTERMSG_TYPE_MEET) {
2bc52b2c 514 int update_config = 0;
ecc91094 515 redisLog(REDIS_DEBUG,"Ping packet received: %p", link->node);
516
517 /* Add this node if it is new for us and the msg type is MEET.
518 * In this stage we don't try to add the node with the right
519 * flags, slaveof pointer, and so forth, as this details will be
520 * resolved when we'll receive PONGs from the server. */
521 if (!sender && type == CLUSTERMSG_TYPE_MEET) {
522 clusterNode *node;
523
524 node = createClusterNode(NULL,REDIS_NODE_HANDSHAKE);
525 nodeIp2String(node->ip,link);
526 node->port = ntohs(hdr->port);
527 clusterAddNode(node);
2bc52b2c 528 update_config = 1;
ecc91094 529 }
530
531 /* Get info from the gossip section */
532 clusterProcessGossipSection(hdr,link);
533
534 /* Anyway reply with a PONG */
535 clusterSendPing(link,CLUSTERMSG_TYPE_PONG);
2bc52b2c 536
537 /* Update config if needed */
538 if (update_config) clusterSaveConfigOrDie();
ecc91094 539 } else if (type == CLUSTERMSG_TYPE_PONG) {
d01a6bb3 540 int update_state = 0;
541 int update_config = 0;
ecc91094 542
543 redisLog(REDIS_DEBUG,"Pong packet received: %p", link->node);
544 if (link->node) {
545 if (link->node->flags & REDIS_NODE_HANDSHAKE) {
546 /* If we already have this node, try to change the
547 * IP/port of the node with the new one. */
548 if (sender) {
549 redisLog(REDIS_WARNING,
550 "Handshake error: we already know node %.40s, updating the address if needed.", sender->name);
551 nodeUpdateAddress(sender,link,ntohs(hdr->port));
552 freeClusterNode(link->node); /* will free the link too */
553 return 0;
554 }
555
556 /* First thing to do is replacing the random name with the
557 * right node name if this was an handshake stage. */
558 clusterRenameNode(link->node, hdr->sender);
559 redisLog(REDIS_DEBUG,"Handshake with node %.40s completed.",
560 link->node->name);
561 link->node->flags &= ~REDIS_NODE_HANDSHAKE;
d01a6bb3 562 update_config = 1;
ecc91094 563 } else if (memcmp(link->node->name,hdr->sender,
564 REDIS_CLUSTER_NAMELEN) != 0)
565 {
566 /* If the reply has a non matching node ID we
567 * disconnect this node and set it as not having an associated
568 * address. */
569 redisLog(REDIS_DEBUG,"PONG contains mismatching sender ID");
570 link->node->flags |= REDIS_NODE_NOADDR;
571 freeClusterLink(link);
d01a6bb3 572 update_config = 1;
ecc91094 573 /* FIXME: remove this node if we already have it.
574 *
575 * If we already have it but the IP is different, use
576 * the new one if the old node is in FAIL, PFAIL, or NOADDR
577 * status... */
578 return 0;
579 }
580 }
581 /* Update our info about the node */
582 link->node->pong_received = time(NULL);
583
584 /* Update master/slave info */
585 if (sender) {
586 if (!memcmp(hdr->slaveof,REDIS_NODE_NULL_NAME,
587 sizeof(hdr->slaveof)))
588 {
589 sender->flags &= ~REDIS_NODE_SLAVE;
590 sender->flags |= REDIS_NODE_MASTER;
591 sender->slaveof = NULL;
592 } else {
593 clusterNode *master = clusterLookupNode(hdr->slaveof);
594
595 sender->flags &= ~REDIS_NODE_MASTER;
596 sender->flags |= REDIS_NODE_SLAVE;
597 if (sender->numslaves) clusterNodeResetSlaves(sender);
598 if (master) clusterNodeAddSlave(master,sender);
599 }
600 }
601
602 /* Update our info about served slots if this new node is serving
603 * slots that are not served from our point of view. */
604 if (sender && sender->flags & REDIS_NODE_MASTER) {
605 int newslots, j;
606
607 newslots =
608 memcmp(sender->slots,hdr->myslots,sizeof(hdr->myslots)) != 0;
609 memcpy(sender->slots,hdr->myslots,sizeof(hdr->myslots));
610 if (newslots) {
611 for (j = 0; j < REDIS_CLUSTER_SLOTS; j++) {
612 if (clusterNodeGetSlotBit(sender,j)) {
613 if (server.cluster.slots[j] == sender) continue;
614 if (server.cluster.slots[j] == NULL ||
615 server.cluster.slots[j]->flags & REDIS_NODE_FAIL)
616 {
617 server.cluster.slots[j] = sender;
d01a6bb3 618 update_state = update_config = 1;
ecc91094 619 }
620 }
621 }
622 }
623 }
624
625 /* Get info from the gossip section */
626 clusterProcessGossipSection(hdr,link);
627
628 /* Update the cluster state if needed */
d01a6bb3 629 if (update_state) clusterUpdateState();
630 if (update_config) clusterSaveConfigOrDie();
ecc91094 631 } else if (type == CLUSTERMSG_TYPE_FAIL && sender) {
632 clusterNode *failing;
633
634 failing = clusterLookupNode(hdr->data.fail.about.nodename);
fd7a584f 635 if (failing && !(failing->flags & (REDIS_NODE_FAIL|REDIS_NODE_MYSELF)))
636 {
ecc91094 637 redisLog(REDIS_NOTICE,
638 "FAIL message received from %.40s about %.40s",
639 hdr->sender, hdr->data.fail.about.nodename);
640 failing->flags |= REDIS_NODE_FAIL;
641 failing->flags &= ~REDIS_NODE_PFAIL;
642 clusterUpdateState();
726a39c1 643 clusterSaveConfigOrDie();
ecc91094 644 }
645 } else {
646 redisLog(REDIS_NOTICE,"Received unknown packet type: %d", type);
647 }
648 return 1;
649}
650
651/* This function is called when we detect the link with this node is lost.
652 We set the node as no longer connected. The Cluster Cron will detect
653 this connection and will try to get it connected again.
654
655 Instead if the node is a temporary node used to accept a query, we
656 completely free the node on error. */
657void handleLinkIOError(clusterLink *link) {
658 freeClusterLink(link);
659}
660
661/* Send data. This is handled using a trivial send buffer that gets
662 * consumed by write(). We don't try to optimize this for speed too much
663 * as this is a very low traffic channel. */
664void clusterWriteHandler(aeEventLoop *el, int fd, void *privdata, int mask) {
665 clusterLink *link = (clusterLink*) privdata;
666 ssize_t nwritten;
667 REDIS_NOTUSED(el);
668 REDIS_NOTUSED(mask);
669
670 nwritten = write(fd, link->sndbuf, sdslen(link->sndbuf));
671 if (nwritten <= 0) {
672 redisLog(REDIS_NOTICE,"I/O error writing to node link: %s",
673 strerror(errno));
674 handleLinkIOError(link);
675 return;
676 }
677 link->sndbuf = sdsrange(link->sndbuf,nwritten,-1);
678 if (sdslen(link->sndbuf) == 0)
679 aeDeleteFileEvent(server.el, link->fd, AE_WRITABLE);
680}
681
682/* Read data. Try to read the first field of the header first to check the
683 * full length of the packet. When a whole packet is in memory this function
684 * will call the function to process the packet. And so forth. */
685void clusterReadHandler(aeEventLoop *el, int fd, void *privdata, int mask) {
686 char buf[1024];
687 ssize_t nread;
688 clusterMsg *hdr;
689 clusterLink *link = (clusterLink*) privdata;
690 int readlen;
691 REDIS_NOTUSED(el);
692 REDIS_NOTUSED(mask);
693
694again:
695 if (sdslen(link->rcvbuf) >= 4) {
696 hdr = (clusterMsg*) link->rcvbuf;
697 readlen = ntohl(hdr->totlen) - sdslen(link->rcvbuf);
698 } else {
699 readlen = 4 - sdslen(link->rcvbuf);
700 }
701
702 nread = read(fd,buf,readlen);
703 if (nread == -1 && errno == EAGAIN) return; /* Just no data */
704
705 if (nread <= 0) {
706 /* I/O error... */
707 redisLog(REDIS_NOTICE,"I/O error reading from node link: %s",
708 (nread == 0) ? "connection closed" : strerror(errno));
709 handleLinkIOError(link);
710 return;
711 } else {
712 /* Read data and recast the pointer to the new buffer. */
713 link->rcvbuf = sdscatlen(link->rcvbuf,buf,nread);
714 hdr = (clusterMsg*) link->rcvbuf;
715 }
716
717 /* Total length obtained? read the payload now instead of burning
718 * cycles waiting for a new event to fire. */
719 if (sdslen(link->rcvbuf) == 4) goto again;
720
721 /* Whole packet in memory? We can process it. */
722 if (sdslen(link->rcvbuf) == ntohl(hdr->totlen)) {
723 if (clusterProcessPacket(link)) {
724 sdsfree(link->rcvbuf);
725 link->rcvbuf = sdsempty();
726 }
727 }
728}
729
730/* Put stuff into the send buffer. */
731void clusterSendMessage(clusterLink *link, unsigned char *msg, size_t msglen) {
732 if (sdslen(link->sndbuf) == 0 && msglen != 0)
733 aeCreateFileEvent(server.el,link->fd,AE_WRITABLE,
734 clusterWriteHandler,link);
735
736 link->sndbuf = sdscatlen(link->sndbuf, msg, msglen);
737}
738
739/* Build the message header */
740void clusterBuildMessageHdr(clusterMsg *hdr, int type) {
741 int totlen;
742
743 memset(hdr,0,sizeof(*hdr));
744 hdr->type = htons(type);
745 memcpy(hdr->sender,server.cluster.myself->name,REDIS_CLUSTER_NAMELEN);
746 memcpy(hdr->myslots,server.cluster.myself->slots,
747 sizeof(hdr->myslots));
748 memset(hdr->slaveof,0,REDIS_CLUSTER_NAMELEN);
749 if (server.cluster.myself->slaveof != NULL) {
750 memcpy(hdr->slaveof,server.cluster.myself->slaveof->name,
751 REDIS_CLUSTER_NAMELEN);
752 }
753 hdr->port = htons(server.port);
754 hdr->state = server.cluster.state;
755 memset(hdr->configdigest,0,32); /* FIXME: set config digest */
756
757 if (type == CLUSTERMSG_TYPE_FAIL) {
758 totlen = sizeof(clusterMsg)-sizeof(union clusterMsgData);
759 totlen += sizeof(clusterMsgDataFail);
760 }
761 hdr->totlen = htonl(totlen);
762 /* For PING, PONG, and MEET, fixing the totlen field is up to the caller */
763}
764
765/* Send a PING or PONG packet to the specified node, making sure to add enough
766 * gossip informations. */
767void clusterSendPing(clusterLink *link, int type) {
768 unsigned char buf[1024];
769 clusterMsg *hdr = (clusterMsg*) buf;
770 int gossipcount = 0, totlen;
771 /* freshnodes is the number of nodes we can still use to populate the
772 * gossip section of the ping packet. Basically we start with the nodes
773 * we have in memory minus two (ourself and the node we are sending the
774 * message to). Every time we add a node we decrement the counter, so when
775 * it will drop to <= zero we know there is no more gossip info we can
776 * send. */
777 int freshnodes = dictSize(server.cluster.nodes)-2;
778
779 if (link->node && type == CLUSTERMSG_TYPE_PING)
780 link->node->ping_sent = time(NULL);
781 clusterBuildMessageHdr(hdr,type);
782
783 /* Populate the gossip fields */
784 while(freshnodes > 0 && gossipcount < 3) {
785 struct dictEntry *de = dictGetRandomKey(server.cluster.nodes);
786 clusterNode *this = dictGetEntryVal(de);
787 clusterMsgDataGossip *gossip;
788 int j;
789
790 /* Not interesting to gossip about ourself.
791 * Nor to send gossip info about HANDSHAKE state nodes (zero info). */
792 if (this == server.cluster.myself ||
793 this->flags & REDIS_NODE_HANDSHAKE) {
794 freshnodes--; /* otherwise we may loop forever. */
795 continue;
796 }
797
798 /* Check if we already added this node */
799 for (j = 0; j < gossipcount; j++) {
800 if (memcmp(hdr->data.ping.gossip[j].nodename,this->name,
801 REDIS_CLUSTER_NAMELEN) == 0) break;
802 }
803 if (j != gossipcount) continue;
804
805 /* Add it */
806 freshnodes--;
807 gossip = &(hdr->data.ping.gossip[gossipcount]);
808 memcpy(gossip->nodename,this->name,REDIS_CLUSTER_NAMELEN);
809 gossip->ping_sent = htonl(this->ping_sent);
810 gossip->pong_received = htonl(this->pong_received);
811 memcpy(gossip->ip,this->ip,sizeof(this->ip));
812 gossip->port = htons(this->port);
813 gossip->flags = htons(this->flags);
814 gossipcount++;
815 }
816 totlen = sizeof(clusterMsg)-sizeof(union clusterMsgData);
817 totlen += (sizeof(clusterMsgDataGossip)*gossipcount);
818 hdr->count = htons(gossipcount);
819 hdr->totlen = htonl(totlen);
820 clusterSendMessage(link,buf,totlen);
821}
822
823/* Send a message to all the nodes with a reliable link */
824void clusterBroadcastMessage(void *buf, size_t len) {
825 dictIterator *di;
826 dictEntry *de;
827
828 di = dictGetIterator(server.cluster.nodes);
829 while((de = dictNext(di)) != NULL) {
830 clusterNode *node = dictGetEntryVal(de);
831
832 if (!node->link) continue;
833 if (node->flags & (REDIS_NODE_MYSELF|REDIS_NODE_NOADDR)) continue;
834 clusterSendMessage(node->link,buf,len);
835 }
836 dictReleaseIterator(di);
837}
838
839/* Send a FAIL message to all the nodes we are able to contact.
840 * The FAIL message is sent when we detect that a node is failing
841 * (REDIS_NODE_PFAIL) and we also receive a gossip confirmation of this:
842 * we switch the node state to REDIS_NODE_FAIL and ask all the other
843 * nodes to do the same ASAP. */
844void clusterSendFail(char *nodename) {
845 unsigned char buf[1024];
846 clusterMsg *hdr = (clusterMsg*) buf;
847
848 clusterBuildMessageHdr(hdr,CLUSTERMSG_TYPE_FAIL);
849 memcpy(hdr->data.fail.about.nodename,nodename,REDIS_CLUSTER_NAMELEN);
850 clusterBroadcastMessage(buf,ntohl(hdr->totlen));
851}
852
853/* -----------------------------------------------------------------------------
854 * CLUSTER cron job
855 * -------------------------------------------------------------------------- */
856
857/* This is executed 1 time every second */
858void clusterCron(void) {
859 dictIterator *di;
860 dictEntry *de;
861 int j;
862 time_t min_ping_sent = 0;
863 clusterNode *min_ping_node = NULL;
864
865 /* Check if we have disconnected nodes and reestablish the connection. */
866 di = dictGetIterator(server.cluster.nodes);
867 while((de = dictNext(di)) != NULL) {
868 clusterNode *node = dictGetEntryVal(de);
869
870 if (node->flags & (REDIS_NODE_MYSELF|REDIS_NODE_NOADDR)) continue;
871 if (node->link == NULL) {
872 int fd;
873 clusterLink *link;
874
875 fd = anetTcpNonBlockConnect(server.neterr, node->ip,
876 node->port+REDIS_CLUSTER_PORT_INCR);
877 if (fd == -1) continue;
878 link = createClusterLink(node);
879 link->fd = fd;
880 node->link = link;
881 aeCreateFileEvent(server.el,link->fd,AE_READABLE,clusterReadHandler,link);
882 /* If the node is flagged as MEET, we send a MEET message instead
883 * of a PING one, to force the receiver to add us in its node
884 * table. */
885 clusterSendPing(link, node->flags & REDIS_NODE_MEET ?
886 CLUSTERMSG_TYPE_MEET : CLUSTERMSG_TYPE_PING);
887 /* We can clear the flag after the first packet is sent.
888 * If we'll never receive a PONG, we'll never send new packets
889 * to this node. Instead after the PONG is received and we
890 * are no longer in meet/handshake status, we want to send
891 * normal PING packets. */
892 node->flags &= ~REDIS_NODE_MEET;
893
2bc52b2c 894 redisLog(REDIS_NOTICE,"Connecting with Node %.40s at %s:%d", node->name, node->ip, node->port+REDIS_CLUSTER_PORT_INCR);
ecc91094 895 }
896 }
897 dictReleaseIterator(di);
898
899 /* Ping some random node. Check a few random nodes and ping the one with
900 * the oldest ping_sent time */
901 for (j = 0; j < 5; j++) {
902 de = dictGetRandomKey(server.cluster.nodes);
903 clusterNode *this = dictGetEntryVal(de);
904
905 if (this->link == NULL) continue;
906 if (this->flags & (REDIS_NODE_MYSELF|REDIS_NODE_HANDSHAKE)) continue;
907 if (min_ping_node == NULL || min_ping_sent > this->ping_sent) {
908 min_ping_node = this;
909 min_ping_sent = this->ping_sent;
910 }
911 }
912 if (min_ping_node) {
913 redisLog(REDIS_DEBUG,"Pinging node %40s", min_ping_node->name);
914 clusterSendPing(min_ping_node->link, CLUSTERMSG_TYPE_PING);
915 }
916
917 /* Iterate nodes to check if we need to flag something as failing */
918 di = dictGetIterator(server.cluster.nodes);
919 while((de = dictNext(di)) != NULL) {
920 clusterNode *node = dictGetEntryVal(de);
921 int delay;
922
923 if (node->flags &
93666e58 924 (REDIS_NODE_MYSELF|REDIS_NODE_NOADDR|REDIS_NODE_HANDSHAKE))
925 continue;
ecc91094 926 /* Check only if we already sent a ping and did not received
927 * a reply yet. */
928 if (node->ping_sent == 0 ||
929 node->ping_sent <= node->pong_received) continue;
930
931 delay = time(NULL) - node->pong_received;
152d937b 932 if (delay < server.cluster.node_timeout) {
ecc91094 933 /* The PFAIL condition can be reversed without external
934 * help if it is not transitive (that is, if it does not
152d937b 935 * turn into a FAIL state).
936 *
937 * The FAIL condition is also reversible if there are no slaves
938 * for this host, so no slave election should be in progress.
939 *
940 * TODO: consider all the implications of resurrecting a
941 * FAIL node. */
942 if (node->flags & REDIS_NODE_PFAIL) {
ecc91094 943 node->flags &= ~REDIS_NODE_PFAIL;
152d937b 944 } else if (node->flags & REDIS_NODE_FAIL && !node->numslaves) {
945 node->flags &= ~REDIS_NODE_FAIL;
8d727af8 946 clusterUpdateState();
152d937b 947 }
ecc91094 948 } else {
152d937b 949 /* Timeout reached. Set the noad se possibly failing if it is
950 * not already in this state. */
93666e58 951 if (!(node->flags & (REDIS_NODE_PFAIL|REDIS_NODE_FAIL))) {
ecc91094 952 redisLog(REDIS_DEBUG,"*** NODE %.40s possibly failing",
953 node->name);
954 node->flags |= REDIS_NODE_PFAIL;
955 }
956 }
957 }
958 dictReleaseIterator(di);
959}
960
961/* -----------------------------------------------------------------------------
962 * Slots management
963 * -------------------------------------------------------------------------- */
964
965/* Set the slot bit and return the old value. */
966int clusterNodeSetSlotBit(clusterNode *n, int slot) {
967 off_t byte = slot/8;
968 int bit = slot&7;
969 int old = (n->slots[byte] & (1<<bit)) != 0;
970 n->slots[byte] |= 1<<bit;
971 return old;
972}
973
974/* Clear the slot bit and return the old value. */
975int clusterNodeClearSlotBit(clusterNode *n, int slot) {
976 off_t byte = slot/8;
977 int bit = slot&7;
978 int old = (n->slots[byte] & (1<<bit)) != 0;
979 n->slots[byte] &= ~(1<<bit);
980 return old;
981}
982
983/* Return the slot bit from the cluster node structure. */
984int clusterNodeGetSlotBit(clusterNode *n, int slot) {
985 off_t byte = slot/8;
986 int bit = slot&7;
987 return (n->slots[byte] & (1<<bit)) != 0;
988}
989
990/* Add the specified slot to the list of slots that node 'n' will
991 * serve. Return REDIS_OK if the operation ended with success.
992 * If the slot is already assigned to another instance this is considered
993 * an error and REDIS_ERR is returned. */
994int clusterAddSlot(clusterNode *n, int slot) {
995 redisAssert(clusterNodeSetSlotBit(n,slot) == 0);
a55c7868 996 server.cluster.slots[slot] = n;
ecc91094 997 printf("SLOT %d added to %.40s\n", slot, n->name);
998 return REDIS_OK;
999}
1000
1001/* -----------------------------------------------------------------------------
1002 * Cluster state evaluation function
1003 * -------------------------------------------------------------------------- */
1004void clusterUpdateState(void) {
1005 int ok = 1;
1006 int j;
1007
1008 for (j = 0; j < REDIS_CLUSTER_SLOTS; j++) {
1009 if (server.cluster.slots[j] == NULL ||
1010 server.cluster.slots[j]->flags & (REDIS_NODE_FAIL))
1011 {
1012 ok = 0;
1013 break;
1014 }
1015 }
1016 if (ok) {
1017 if (server.cluster.state == REDIS_CLUSTER_NEEDHELP) {
1018 server.cluster.state = REDIS_CLUSTER_NEEDHELP;
1019 } else {
1020 server.cluster.state = REDIS_CLUSTER_OK;
1021 }
1022 } else {
1023 server.cluster.state = REDIS_CLUSTER_FAIL;
1024 }
1025}
1026
1027/* -----------------------------------------------------------------------------
1028 * CLUSTER command
1029 * -------------------------------------------------------------------------- */
1030
c7c7cfbd 1031sds clusterGenNodesDescription(void) {
1032 sds ci = sdsempty();
1033 dictIterator *di;
1034 dictEntry *de;
ef21ab96 1035 int j, start;
c7c7cfbd 1036
1037 di = dictGetIterator(server.cluster.nodes);
1038 while((de = dictNext(di)) != NULL) {
1039 clusterNode *node = dictGetEntryVal(de);
1040
1041 /* Node coordinates */
1042 ci = sdscatprintf(ci,"%.40s %s:%d ",
1043 node->name,
1044 node->ip,
1045 node->port);
1046
1047 /* Flags */
1048 if (node->flags == 0) ci = sdscat(ci,"noflags,");
1049 if (node->flags & REDIS_NODE_MYSELF) ci = sdscat(ci,"myself,");
1050 if (node->flags & REDIS_NODE_MASTER) ci = sdscat(ci,"master,");
1051 if (node->flags & REDIS_NODE_SLAVE) ci = sdscat(ci,"slave,");
1052 if (node->flags & REDIS_NODE_PFAIL) ci = sdscat(ci,"fail?,");
1053 if (node->flags & REDIS_NODE_FAIL) ci = sdscat(ci,"fail,");
1054 if (node->flags & REDIS_NODE_HANDSHAKE) ci =sdscat(ci,"handshake,");
1055 if (node->flags & REDIS_NODE_NOADDR) ci = sdscat(ci,"noaddr,");
1056 if (ci[sdslen(ci)-1] == ',') ci[sdslen(ci)-1] = ' ';
1057
1058 /* Slave of... or just "-" */
1059 if (node->slaveof)
1060 ci = sdscatprintf(ci,"%.40s ",node->slaveof->name);
1061 else
1062 ci = sdscatprintf(ci,"- ");
1063
1064 /* Latency from the POV of this node, link status */
ef21ab96 1065 ci = sdscatprintf(ci,"%ld %ld %s",
c7c7cfbd 1066 (long) node->ping_sent,
1067 (long) node->pong_received,
1068 node->link ? "connected" : "disconnected");
ef21ab96 1069
1070 /* Slots served by this instance */
1071 start = -1;
1072 for (j = 0; j < REDIS_CLUSTER_SLOTS; j++) {
1073 int bit;
1074
1075 if ((bit = clusterNodeGetSlotBit(node,j)) != 0) {
1076 if (start == -1) start = j;
1077 }
1078 if (start != -1 && (!bit || j == REDIS_CLUSTER_SLOTS-1)) {
1079 if (j == REDIS_CLUSTER_SLOTS-1) j++;
1080
1081 if (start == j-1) {
1082 ci = sdscatprintf(ci," %d",start);
1083 } else {
1084 ci = sdscatprintf(ci," %d-%d",start,j-1);
1085 }
1086 start = -1;
1087 }
1088 }
d01a6bb3 1089 ci = sdscatlen(ci,"\n",1);
c7c7cfbd 1090 }
1091 dictReleaseIterator(di);
1092 return ci;
1093}
1094
ecc91094 1095void clusterCommand(redisClient *c) {
1096 if (server.cluster_enabled == 0) {
1097 addReplyError(c,"This instance has cluster support disabled");
1098 return;
1099 }
1100
1101 if (!strcasecmp(c->argv[1]->ptr,"meet") && c->argc == 4) {
1102 clusterNode *n;
1103 struct sockaddr_in sa;
1104 long port;
1105
1106 /* Perform sanity checks on IP/port */
1107 if (inet_aton(c->argv[2]->ptr,&sa.sin_addr) == 0) {
1108 addReplyError(c,"Invalid IP address in MEET");
1109 return;
1110 }
1111 if (getLongFromObjectOrReply(c, c->argv[3], &port, NULL) != REDIS_OK ||
1112 port < 0 || port > (65535-REDIS_CLUSTER_PORT_INCR))
1113 {
1114 addReplyError(c,"Invalid TCP port specified");
1115 return;
1116 }
1117
1118 /* Finally add the node to the cluster with a random name, this
1119 * will get fixed in the first handshake (ping/pong). */
1120 n = createClusterNode(NULL,REDIS_NODE_HANDSHAKE|REDIS_NODE_MEET);
1121 strncpy(n->ip,inet_ntoa(sa.sin_addr),sizeof(n->ip));
1122 n->port = port;
1123 clusterAddNode(n);
1124 addReply(c,shared.ok);
1125 } else if (!strcasecmp(c->argv[1]->ptr,"nodes") && c->argc == 2) {
ecc91094 1126 robj *o;
c7c7cfbd 1127 sds ci = clusterGenNodesDescription();
ecc91094 1128
ecc91094 1129 o = createObject(REDIS_STRING,ci);
1130 addReplyBulk(c,o);
1131 decrRefCount(o);
1132 } else if (!strcasecmp(c->argv[1]->ptr,"addslots") && c->argc >= 3) {
1133 int j;
1134 long long slot;
1135 unsigned char *slots = zmalloc(REDIS_CLUSTER_SLOTS);
1136
1137 memset(slots,0,REDIS_CLUSTER_SLOTS);
1138 /* Check that all the arguments are parsable and that all the
1139 * slots are not already busy. */
1140 for (j = 2; j < c->argc; j++) {
1141 if (getLongLongFromObject(c->argv[j],&slot) != REDIS_OK ||
1142 slot < 0 || slot > REDIS_CLUSTER_SLOTS)
1143 {
1144 addReplyError(c,"Invalid or out of range slot index");
1145 zfree(slots);
1146 return;
1147 }
1148 if (server.cluster.slots[slot]) {
1149 addReplyErrorFormat(c,"Slot %lld is already busy", slot);
1150 zfree(slots);
1151 return;
1152 }
1153 if (slots[slot]++ == 1) {
1154 addReplyErrorFormat(c,"Slot %d specified multiple times",
1155 (int)slot);
1156 zfree(slots);
1157 return;
1158 }
1159 }
1160 for (j = 0; j < REDIS_CLUSTER_SLOTS; j++) {
1161 if (slots[j]) {
1162 int retval = clusterAddSlot(server.cluster.myself,j);
1163
1164 redisAssert(retval == REDIS_OK);
1165 }
1166 }
1167 zfree(slots);
1168 clusterUpdateState();
726a39c1 1169 clusterSaveConfigOrDie();
ecc91094 1170 addReply(c,shared.ok);
1171 } else if (!strcasecmp(c->argv[1]->ptr,"info") && c->argc == 2) {
1172 char *statestr[] = {"ok","fail","needhelp"};
1173 int slots_assigned = 0, slots_ok = 0, slots_pfail = 0, slots_fail = 0;
1174 int j;
1175
1176 for (j = 0; j < REDIS_CLUSTER_SLOTS; j++) {
1177 clusterNode *n = server.cluster.slots[j];
1178
1179 if (n == NULL) continue;
1180 slots_assigned++;
1181 if (n->flags & REDIS_NODE_FAIL) {
1182 slots_fail++;
1183 } else if (n->flags & REDIS_NODE_PFAIL) {
1184 slots_pfail++;
1185 } else {
1186 slots_ok++;
1187 }
1188 }
1189
1190 sds info = sdscatprintf(sdsempty(),
1191 "cluster_state:%s\r\n"
1192 "cluster_slots_assigned:%d\r\n"
1193 "cluster_slots_ok:%d\r\n"
1194 "cluster_slots_pfail:%d\r\n"
1195 "cluster_slots_fail:%d\r\n"
8c4c5090 1196 "cluster_known_nodes:%lu\r\n"
ecc91094 1197 , statestr[server.cluster.state],
1198 slots_assigned,
1199 slots_ok,
1200 slots_pfail,
8c4c5090
SS
1201 slots_fail,
1202 dictSize(server.cluster.nodes)
ecc91094 1203 );
1204 addReplySds(c,sdscatprintf(sdsempty(),"$%lu\r\n",
1205 (unsigned long)sdslen(info)));
1206 addReplySds(c,info);
1207 addReply(c,shared.crlf);
1208 } else {
1209 addReplyError(c,"Wrong CLUSTER subcommand or number of arguments");
1210 }
1211}
1212
1213/* -----------------------------------------------------------------------------
1214 * RESTORE and MIGRATE commands
1215 * -------------------------------------------------------------------------- */
1216
1217/* RESTORE key ttl serialized-value */
1218void restoreCommand(redisClient *c) {
1219 FILE *fp;
1220 char buf[64];
1221 robj *o;
1222 unsigned char *data;
1223 long ttl;
1224
1225 /* Make sure this key does not already exist here... */
1226 if (dbExists(c->db,c->argv[1])) {
1227 addReplyError(c,"Target key name is busy.");
1228 return;
1229 }
1230
1231 /* Check if the TTL value makes sense */
1232 if (getLongFromObjectOrReply(c,c->argv[2],&ttl,NULL) != REDIS_OK) {
1233 return;
1234 } else if (ttl < 0) {
1235 addReplyError(c,"Invalid TTL value, must be >= 0");
1236 return;
1237 }
1238
1239 /* rdbLoadObject() only works against file descriptors so we need to
1240 * dump the serialized object into a file and reload. */
1241 snprintf(buf,sizeof(buf),"redis-restore-%d.tmp",getpid());
1242 fp = fopen(buf,"w+");
1243 if (!fp) {
1244 redisLog(REDIS_WARNING,"Can't open tmp file for RESTORE: %s",
1245 strerror(errno));
1246 addReplyErrorFormat(c,"RESTORE failed, tmp file creation error: %s",
1247 strerror(errno));
1248 return;
1249 }
1250 unlink(buf);
1251
1252 /* Write the actual data and rewind the file */
1253 data = (unsigned char*) c->argv[3]->ptr;
1254 if (fwrite(data+1,sdslen((sds)data)-1,1,fp) != 1) {
1255 redisLog(REDIS_WARNING,"Can't write against tmp file for RESTORE: %s",
1256 strerror(errno));
1257 addReplyError(c,"RESTORE failed, tmp file I/O error.");
1258 fclose(fp);
1259 return;
1260 }
1261 rewind(fp);
1262
1263 /* Finally create the object from the serialized dump and
1264 * store it at the specified key. */
f797c7dc 1265 if ((data[0] > 4 && data[0] < 9) ||
1266 data[0] > 11 ||
1267 (o = rdbLoadObject(data[0],fp)) == NULL)
1268 {
ecc91094 1269 addReplyError(c,"Bad data format.");
1270 fclose(fp);
1271 return;
1272 }
1273 fclose(fp);
1274
1275 /* Create the key and set the TTL if any */
1276 dbAdd(c->db,c->argv[1],o);
1277 if (ttl) setExpire(c->db,c->argv[1],time(NULL)+ttl);
1278 addReply(c,shared.ok);
1279}
1280
1281/* MIGRATE host port key dbid timeout */
1282void migrateCommand(redisClient *c) {
1283 int fd;
1284 long timeout;
1285 long dbid;
1286 char buf[64];
1287 FILE *fp;
1288 time_t ttl;
1289 robj *o;
1290 unsigned char type;
1291 off_t payload_len;
1292
1293 /* Sanity check */
1294 if (getLongFromObjectOrReply(c,c->argv[5],&timeout,NULL) != REDIS_OK)
1295 return;
1296 if (getLongFromObjectOrReply(c,c->argv[4],&dbid,NULL) != REDIS_OK)
1297 return;
1298 if (timeout <= 0) timeout = 1;
1299
1300 /* Check if the key is here. If not we reply with success as there is
1301 * nothing to migrate (for instance the key expired in the meantime), but
1302 * we include such information in the reply string. */
1303 if ((o = lookupKeyRead(c->db,c->argv[3])) == NULL) {
1304 addReplySds(c,sdsnew("+NOKEY"));
1305 return;
1306 }
1307
1308 /* Connect */
1309 fd = anetTcpNonBlockConnect(server.neterr,c->argv[1]->ptr,
1310 atoi(c->argv[2]->ptr));
1311 if (fd == -1) {
1312 addReplyErrorFormat(c,"Can't connect to target node: %s",
1313 server.neterr);
1314 return;
1315 }
1316 if ((aeWait(fd,AE_WRITABLE,timeout*1000) & AE_WRITABLE) == 0) {
1317 addReplyError(c,"Timeout connecting to the client");
1318 return;
1319 }
1320
1321 /* Create temp file */
1322 snprintf(buf,sizeof(buf),"redis-migrate-%d.tmp",getpid());
1323 fp = fopen(buf,"w+");
1324 if (!fp) {
1325 redisLog(REDIS_WARNING,"Can't open tmp file for MIGRATE: %s",
1326 strerror(errno));
1327 addReplyErrorFormat(c,"MIGRATE failed, tmp file creation error: %s.",
1328 strerror(errno));
1329 return;
1330 }
1331 unlink(buf);
1332
1333 /* Build the SELECT + RESTORE query writing it in our temp file. */
1334 if (fwriteBulkCount(fp,'*',2) == 0) goto file_wr_err;
1335 if (fwriteBulkString(fp,"SELECT",6) == 0) goto file_wr_err;
1336 if (fwriteBulkLongLong(fp,dbid) == 0) goto file_wr_err;
1337
1338 ttl = getExpire(c->db,c->argv[3]);
1339 type = o->type;
1340 if (fwriteBulkCount(fp,'*',4) == 0) goto file_wr_err;
1341 if (fwriteBulkString(fp,"RESTORE",7) == 0) goto file_wr_err;
1342 if (fwriteBulkObject(fp,c->argv[3]) == 0) goto file_wr_err;
1343 if (fwriteBulkLongLong(fp, (ttl == -1) ? 0 : ttl) == 0) goto file_wr_err;
1344
1345 /* Finally the last argument that is the serailized object payload
1346 * in the form: <type><rdb-serailized-object>. */
1347 payload_len = rdbSavedObjectLen(o);
1348 if (fwriteBulkCount(fp,'$',payload_len+1) == 0) goto file_wr_err;
1349 if (fwrite(&type,1,1,fp) == 0) goto file_wr_err;
1350 if (rdbSaveObject(fp,o) == -1) goto file_wr_err;
1351 if (fwrite("\r\n",2,1,fp) == 0) goto file_wr_err;
1352
1353 /* Tranfer the query to the other node */
1354 rewind(fp);
1355 {
1356 char buf[4096];
1357 size_t nread;
1358
1359 while ((nread = fread(buf,1,sizeof(buf),fp)) != 0) {
1360 int nwritten;
1361
1362 nwritten = syncWrite(fd,buf,nread,timeout);
1363 if (nwritten != (signed)nread) goto socket_wr_err;
1364 }
1365 if (ferror(fp)) goto file_rd_err;
1366 }
1367
1368 /* Read back the reply */
1369 {
1370 char buf1[1024];
1371 char buf2[1024];
1372
1373 /* Read the two replies */
1374 if (syncReadLine(fd, buf1, sizeof(buf1), timeout) <= 0)
1375 goto socket_rd_err;
1376 if (syncReadLine(fd, buf2, sizeof(buf2), timeout) <= 0)
1377 goto socket_rd_err;
1378 if (buf1[0] == '-' || buf2[0] == '-') {
1379 addReplyErrorFormat(c,"Target instance replied with error: %s",
1380 (buf1[0] == '-') ? buf1+1 : buf2+1);
1381 } else {
1382 dbDelete(c->db,c->argv[3]);
1383 addReply(c,shared.ok);
1384 }
1385 }
1386 fclose(fp);
1387 close(fd);
1388 return;
1389
1390file_wr_err:
1391 redisLog(REDIS_WARNING,"Can't write on tmp file for MIGRATE: %s",
1392 strerror(errno));
1393 addReplyErrorFormat(c,"MIGRATE failed, tmp file write error: %s.",
1394 strerror(errno));
1395 fclose(fp);
1396 close(fd);
626f6b2d 1397 return;
ecc91094 1398
1399file_rd_err:
1400 redisLog(REDIS_WARNING,"Can't read from tmp file for MIGRATE: %s",
1401 strerror(errno));
1402 addReplyErrorFormat(c,"MIGRATE failed, tmp file read error: %s.",
1403 strerror(errno));
1404 fclose(fp);
1405 close(fd);
626f6b2d 1406 return;
ecc91094 1407
1408socket_wr_err:
1409 redisLog(REDIS_NOTICE,"Can't write to target node for MIGRATE: %s",
1410 strerror(errno));
1411 addReplyErrorFormat(c,"MIGRATE failed, writing to target node: %s.",
1412 strerror(errno));
1413 fclose(fp);
1414 close(fd);
626f6b2d 1415 return;
ecc91094 1416
1417socket_rd_err:
1418 redisLog(REDIS_NOTICE,"Can't read from target node for MIGRATE: %s",
1419 strerror(errno));
1420 addReplyErrorFormat(c,"MIGRATE failed, reading from target node: %s.",
1421 strerror(errno));
1422 fclose(fp);
1423 close(fd);
626f6b2d 1424 return;
1425}
1426
1427/* DUMP keyname
1428 * DUMP is actually not used by Redis Cluster but it is the obvious
1429 * complement of RESTORE and can be useful for different applications. */
1430void dumpCommand(redisClient *c) {
1431 char buf[64];
1432 FILE *fp;
1433 robj *o, *dumpobj;
1434 sds dump = NULL;
1435 off_t payload_len;
1436 unsigned int type;
1437
1438 /* Check if the key is here. */
1439 if ((o = lookupKeyRead(c->db,c->argv[1])) == NULL) {
1440 addReply(c,shared.nullbulk);
1441 return;
1442 }
1443
1444 /* Create temp file */
1445 snprintf(buf,sizeof(buf),"redis-dump-%d.tmp",getpid());
1446 fp = fopen(buf,"w+");
1447 if (!fp) {
1448 redisLog(REDIS_WARNING,"Can't open tmp file for MIGRATE: %s",
1449 strerror(errno));
1450 addReplyErrorFormat(c,"DUMP failed, tmp file creation error: %s.",
1451 strerror(errno));
1452 return;
1453 }
1454 unlink(buf);
1455
1456 /* Dump the serailized object and read it back in memory.
1457 * We prefix it with a one byte containing the type ID.
1458 * This is the serialization format understood by RESTORE. */
1459 if (rdbSaveObject(fp,o) == -1) goto file_wr_err;
1460 payload_len = ftello(fp);
1461 if (fseeko(fp,0,SEEK_SET) == -1) goto file_rd_err;
1462 dump = sdsnewlen(NULL,payload_len+1);
1463 if (payload_len && fread(dump+1,payload_len,1,fp) != 1) goto file_rd_err;
1464 fclose(fp);
1465 type = o->type;
1466 if (type == REDIS_LIST && o->encoding == REDIS_ENCODING_ZIPLIST)
1467 type = REDIS_LIST_ZIPLIST;
1468 else if (type == REDIS_HASH && o->encoding == REDIS_ENCODING_ZIPMAP)
1469 type = REDIS_HASH_ZIPMAP;
1470 else if (type == REDIS_SET && o->encoding == REDIS_ENCODING_INTSET)
1471 type = REDIS_SET_INTSET;
1472 else
1473 type = o->type;
1474 dump[0] = type;
1475
1476 /* Transfer to the client */
1477 dumpobj = createObject(REDIS_STRING,dump);
1478 addReplyBulk(c,dumpobj);
1479 decrRefCount(dumpobj);
1480 return;
1481
1482file_wr_err:
1483 redisLog(REDIS_WARNING,"Can't write on tmp file for DUMP: %s",
1484 strerror(errno));
1485 addReplyErrorFormat(c,"DUMP failed, tmp file write error: %s.",
1486 strerror(errno));
1487 sdsfree(dump);
1488 fclose(fp);
1489 return;
1490
1491file_rd_err:
1492 redisLog(REDIS_WARNING,"Can't read from tmp file for DUMP: %s",
1493 strerror(errno));
1494 addReplyErrorFormat(c,"DUMP failed, tmp file read error: %s.",
1495 strerror(errno));
1496 sdsfree(dump);
1497 fclose(fp);
1498 return;
ecc91094 1499}
1500
1501/* -----------------------------------------------------------------------------
1502 * Cluster functions related to serving / redirecting clients
1503 * -------------------------------------------------------------------------- */
1504
1505/* Return the pointer to the cluster node that is able to serve the query
1506 * as all the keys belong to hash slots for which the node is in charge.
1507 *
1508 * If keys in query spawn multiple nodes NULL is returned. */
1509clusterNode *getNodeByQuery(redisClient *c, struct redisCommand *cmd, robj **argv, int argc, int *hashslot) {
1510 clusterNode *n = NULL;
1511 multiState *ms, _ms;
1512 multiCmd mc;
1513 int i;
1514
1515 /* We handle all the cases as if they were EXEC commands, so we have
1516 * a common code path for everything */
1517 if (cmd->proc == execCommand) {
1518 /* If REDIS_MULTI flag is not set EXEC is just going to return an
1519 * error. */
1520 if (!(c->flags & REDIS_MULTI)) return server.cluster.myself;
1521 ms = &c->mstate;
1522 } else {
1523 /* Create a fake Multi State structure, with just one command */
1524 ms = &_ms;
1525 _ms.commands = &mc;
1526 _ms.count = 1;
1527 mc.argv = argv;
1528 mc.argc = argc;
1529 mc.cmd = cmd;
1530 }
1531
1532 for (i = 0; i < ms->count; i++) {
1533 struct redisCommand *mcmd;
1534 robj **margv;
1535 int margc, *keyindex, numkeys, j;
1536
1537 mcmd = ms->commands[i].cmd;
1538 margc = ms->commands[i].argc;
1539 margv = ms->commands[i].argv;
1540
1541 keyindex = getKeysFromCommand(mcmd,margv,margc,&numkeys,
1542 REDIS_GETKEYS_PRELOAD);
1543 for (j = 0; j < numkeys; j++) {
1544 int slot = keyHashSlot((char*)margv[keyindex[j]]->ptr,
1545 sdslen(margv[keyindex[j]]->ptr));
1546 struct clusterNode *slotnode;
1547
1548 slotnode = server.cluster.slots[slot];
1549 if (hashslot) *hashslot = slot;
1550 /* Node not assigned? (Should never happen actually
1551 * if we reached this function).
1552 * Different node than the previous one?
1553 * Return NULL, the cluster can't serve multi-node requests */
1554 if (slotnode == NULL || (n && slotnode != n)) {
1555 getKeysFreeResult(keyindex);
1556 return NULL;
1557 } else {
1558 n = slotnode;
1559 }
1560 }
1561 getKeysFreeResult(keyindex);
1562 }
1563 return (n == NULL) ? server.cluster.myself : n;
1564}