]>
git.saurik.com Git - redis.git/blob - src/cluster.c
7 void clusterAcceptHandler(aeEventLoop
*el
, int fd
, void *privdata
, int mask
);
8 void clusterReadHandler(aeEventLoop
*el
, int fd
, void *privdata
, int mask
);
9 void clusterSendPing(clusterLink
*link
, int type
);
10 void clusterSendFail(char *nodename
);
11 void clusterUpdateState(void);
12 int clusterNodeGetSlotBit(clusterNode
*n
, int slot
);
13 sds
clusterGenNodesDescription(void);
14 clusterNode
*clusterLookupNode(char *name
);
15 int clusterNodeAddSlave(clusterNode
*master
, clusterNode
*slave
);
16 int clusterAddSlot(clusterNode
*n
, int slot
);
18 /* -----------------------------------------------------------------------------
20 * -------------------------------------------------------------------------- */
22 void clusterGetRandomName(char *p
) {
23 FILE *fp
= fopen("/dev/urandom","r");
24 char *charset
= "0123456789abcdef";
28 redisLog(REDIS_WARNING
,
29 "Unrecovarable error: can't open /dev/urandom:%s" ,strerror(errno
));
32 fread(p
,REDIS_CLUSTER_NAMELEN
,1,fp
);
33 for (j
= 0; j
< REDIS_CLUSTER_NAMELEN
; j
++)
34 p
[j
] = charset
[p
[j
] & 0x0F];
38 int clusterLoadConfig(char *filename
) {
39 FILE *fp
= fopen(filename
,"r");
43 if (fp
== NULL
) return REDIS_ERR
;
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
) {
53 sds
*argv
= sdssplitargs(line
,&argc
);
54 clusterNode
*n
, *master
;
57 /* Create this node if it does not exist */
58 n
= clusterLookupNode(argv
[0]);
60 n
= createClusterNode(argv
[0],0);
63 /* Address and port */
64 if ((p
= strchr(argv
[1],':')) == NULL
) goto fmterr
;
66 memcpy(n
->ip
,argv
[1],strlen(argv
[1])+1);
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
;
90 } else if (!strcasecmp(s
,"noflags")) {
93 redisPanic("Unknown flag in redis cluster config file");
98 /* Get master if any. Set the master and populate master's
100 if (argv
[3][0] != '-') {
101 master
= clusterLookupNode(argv
[3]);
103 master
= createClusterNode(argv
[3],0);
104 clusterAddNode(master
);
107 clusterNodeAddSlave(master
,n
);
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
);
114 /* Populate hash slots served by this instance. */
115 for (j
= 7; j
< argc
; j
++) {
118 if ((p
= strchr(argv
[j
],'-')) != NULL
) {
120 start
= atoi(argv
[j
]);
123 start
= stop
= atoi(argv
[j
]);
125 while(start
<= stop
) clusterAddSlot(n
, start
++);
128 sdssplitargs_free(argv
,argc
);
133 /* Config sanity check */
134 redisAssert(server
.cluster
.myself
!= NULL
);
135 redisLog(REDIS_NOTICE
,"Node configuration loaded, I'm %.40s",
136 server
.cluster
.myself
->name
);
137 clusterUpdateState();
141 redisLog(REDIS_WARNING
,"Unrecovarable error: corrupted cluster config file.");
146 /* Cluster node configuration is exactly the same as CLUSTER NODES output.
148 * This function writes the node config and returns 0, on error -1
150 int clusterSaveConfig(void) {
151 sds ci
= clusterGenNodesDescription();
154 if ((fd
= open(server
.cluster
.configfile
,O_WRONLY
|O_CREAT
|O_TRUNC
,0644))
156 if (write(fd
,ci
,sdslen(ci
)) != (ssize_t
)sdslen(ci
)) goto err
;
166 void clusterSaveConfigOrDie(void) {
167 if (clusterSaveConfig() == -1) {
168 redisLog(REDIS_WARNING
,"Fatal: can't update cluster config file.");
173 void clusterInit(void) {
176 server
.cluster
.myself
= NULL
;
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
));
186 if (clusterLoadConfig(server
.cluster
.configfile
) == REDIS_ERR
) {
187 /* No configuration found. We will just use the random name provided
188 * by the createClusterNode() function. */
189 server
.cluster
.myself
= createClusterNode(NULL
,REDIS_NODE_MYSELF
);
190 redisLog(REDIS_NOTICE
,"No cluster configuration found, I'm %.40s",
191 server
.cluster
.myself
->name
);
192 clusterAddNode(server
.cluster
.myself
);
195 if (saveconf
) clusterSaveConfigOrDie();
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
);
203 if (aeCreateFileEvent(server
.el
, server
.cfd
, AE_READABLE
,
204 clusterAcceptHandler
, NULL
) == AE_ERR
) oom("creating file event");
207 /* -----------------------------------------------------------------------------
208 * CLUSTER communication link
209 * -------------------------------------------------------------------------- */
211 clusterLink
*createClusterLink(clusterNode
*node
) {
212 clusterLink
*link
= zmalloc(sizeof(*link
));
213 link
->sndbuf
= sdsempty();
214 link
->rcvbuf
= sdsempty();
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. */
223 void freeClusterLink(clusterLink
*link
) {
224 if (link
->fd
!= -1) {
225 aeDeleteFileEvent(server
.el
, link
->fd
, AE_WRITABLE
);
226 aeDeleteFileEvent(server
.el
, link
->fd
, AE_READABLE
);
228 sdsfree(link
->sndbuf
);
229 sdsfree(link
->rcvbuf
);
231 link
->node
->link
= NULL
;
236 void clusterAcceptHandler(aeEventLoop
*el
, int fd
, void *privdata
, int mask
) {
242 REDIS_NOTUSED(privdata
);
244 cfd
= anetTcpAccept(server
.neterr
, fd
, cip
, &cport
);
246 redisLog(REDIS_VERBOSE
,"Accepting cluster node: %s", server
.neterr
);
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
);
255 aeCreateFileEvent(server
.el
,cfd
,AE_READABLE
,clusterReadHandler
,link
);
258 /* -----------------------------------------------------------------------------
260 * -------------------------------------------------------------------------- */
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. */
264 unsigned int keyHashSlot(char *key
, int keylen
) {
265 return crc16(key
,keylen
) & 0x0FFF;
268 /* -----------------------------------------------------------------------------
270 * -------------------------------------------------------------------------- */
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).
277 * The node is created and returned to the user, but it is not automatically
278 * added to the nodes hash table. */
279 clusterNode
*createClusterNode(char *nodename
, int flags
) {
280 clusterNode
*node
= zmalloc(sizeof(*node
));
283 memcpy(node
->name
, nodename
, REDIS_CLUSTER_NAMELEN
);
285 clusterGetRandomName(node
->name
);
287 memset(node
->slots
,0,sizeof(node
->slots
));
290 node
->slaveof
= NULL
;
291 node
->ping_sent
= node
->pong_received
= 0;
292 node
->configdigest
= NULL
;
293 node
->configdigest_ts
= 0;
298 int clusterNodeRemoveSlave(clusterNode
*master
, clusterNode
*slave
) {
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
);
312 int clusterNodeAddSlave(clusterNode
*master
, clusterNode
*slave
) {
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
;
325 void clusterNodeResetSlaves(clusterNode
*n
) {
330 void freeClusterNode(clusterNode
*n
) {
333 nodename
= sdsnewlen(n
->name
, REDIS_CLUSTER_NAMELEN
);
334 redisAssert(dictDelete(server
.cluster
.nodes
,nodename
) == DICT_OK
);
336 if (n
->slaveof
) clusterNodeRemoveSlave(n
->slaveof
, n
);
337 if (n
->link
) freeClusterLink(n
->link
);
341 /* Add a node to the nodes hash table */
342 int clusterAddNode(clusterNode
*node
) {
345 retval
= dictAdd(server
.cluster
.nodes
,
346 sdsnewlen(node
->name
,REDIS_CLUSTER_NAMELEN
), node
);
347 return (retval
== DICT_OK
) ? REDIS_OK
: REDIS_ERR
;
350 /* Node lookup by name */
351 clusterNode
*clusterLookupNode(char *name
) {
352 sds s
= sdsnewlen(name
, REDIS_CLUSTER_NAMELEN
);
353 struct dictEntry
*de
;
355 de
= dictFind(server
.cluster
.nodes
,s
);
357 if (de
== NULL
) return NULL
;
358 return dictGetEntryVal(de
);
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
365 void clusterRenameNode(clusterNode
*node
, char *newname
) {
367 sds s
= sdsnewlen(node
->name
, REDIS_CLUSTER_NAMELEN
);
369 redisLog(REDIS_DEBUG
,"Renaming node %.40s into %.40s",
370 node
->name
, newname
);
371 retval
= dictDelete(server
.cluster
.nodes
, s
);
373 redisAssert(retval
== DICT_OK
);
374 memcpy(node
->name
, newname
, REDIS_CLUSTER_NAMELEN
);
375 clusterAddNode(node
);
378 /* -----------------------------------------------------------------------------
379 * CLUSTER messages exchange - PING/PONG and gossip
380 * -------------------------------------------------------------------------- */
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
386 void 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
);
393 uint16_t flags
= ntohs(g
->flags
);
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] = ' ';
406 redisLog(REDIS_DEBUG
,"GOSSIP %.40s %s:%d %s",
413 /* Update our state accordingly to the gossip sections */
414 node
= clusterLookupNode(g
->nodename
);
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
);
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
)))
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();
435 clusterSaveConfigOrDie();
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.
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
;
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
);
460 /* IP -> string conversion. 'buf' is supposed to at least be 16 bytes. */
461 void nodeIp2String(char *buf
, clusterLink
*link
) {
462 struct sockaddr_in sa
;
463 socklen_t salen
= sizeof(sa
);
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
));
471 /* Update the node address to the IP address that can be extracted
472 * from link->fd, and at the specified port. */
473 void nodeUpdateAddress(clusterNode
*node
, clusterLink
*link
, int port
) {
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.
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). */
485 int clusterProcessPacket(clusterLink
*link
) {
486 clusterMsg
*hdr
= (clusterMsg
*) link
->rcvbuf
;
487 uint32_t totlen
= ntohl(hdr
->totlen
);
488 uint16_t type
= ntohs(hdr
->type
);
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
)
498 uint16_t count
= ntohs(hdr
->count
);
499 uint32_t explen
; /* expected length of this packet */
501 explen
= sizeof(clusterMsg
)-sizeof(union clusterMsgData
);
502 explen
+= (sizeof(clusterMsgDataGossip
)*count
);
503 if (totlen
!= explen
) return 1;
505 if (type
== CLUSTERMSG_TYPE_FAIL
) {
506 uint32_t explen
= sizeof(clusterMsg
)-sizeof(union clusterMsgData
);
508 explen
+= sizeof(clusterMsgDataFail
);
509 if (totlen
!= explen
) return 1;
512 sender
= clusterLookupNode(hdr
->sender
);
513 if (type
== CLUSTERMSG_TYPE_PING
|| type
== CLUSTERMSG_TYPE_MEET
) {
514 int update_config
= 0;
515 redisLog(REDIS_DEBUG
,"Ping packet received: %p", link
->node
);
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
) {
524 node
= createClusterNode(NULL
,REDIS_NODE_HANDSHAKE
);
525 nodeIp2String(node
->ip
,link
);
526 node
->port
= ntohs(hdr
->port
);
527 clusterAddNode(node
);
531 /* Get info from the gossip section */
532 clusterProcessGossipSection(hdr
,link
);
534 /* Anyway reply with a PONG */
535 clusterSendPing(link
,CLUSTERMSG_TYPE_PONG
);
537 /* Update config if needed */
538 if (update_config
) clusterSaveConfigOrDie();
539 } else if (type
== CLUSTERMSG_TYPE_PONG
) {
540 int update_state
= 0;
541 int update_config
= 0;
543 redisLog(REDIS_DEBUG
,"Pong packet received: %p", 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. */
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 */
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.",
561 link
->node
->flags
&= ~REDIS_NODE_HANDSHAKE
;
563 } else if (memcmp(link
->node
->name
,hdr
->sender
,
564 REDIS_CLUSTER_NAMELEN
) != 0)
566 /* If the reply has a non matching node ID we
567 * disconnect this node and set it as not having an associated
569 redisLog(REDIS_DEBUG
,"PONG contains mismatching sender ID");
570 link
->node
->flags
|= REDIS_NODE_NOADDR
;
571 freeClusterLink(link
);
573 /* FIXME: remove this node if we already have it.
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
581 /* Update our info about the node */
582 link
->node
->pong_received
= time(NULL
);
584 /* Update master/slave info */
586 if (!memcmp(hdr
->slaveof
,REDIS_NODE_NULL_NAME
,
587 sizeof(hdr
->slaveof
)))
589 sender
->flags
&= ~REDIS_NODE_SLAVE
;
590 sender
->flags
|= REDIS_NODE_MASTER
;
591 sender
->slaveof
= NULL
;
593 clusterNode
*master
= clusterLookupNode(hdr
->slaveof
);
595 sender
->flags
&= ~REDIS_NODE_MASTER
;
596 sender
->flags
|= REDIS_NODE_SLAVE
;
597 if (sender
->numslaves
) clusterNodeResetSlaves(sender
);
598 if (master
) clusterNodeAddSlave(master
,sender
);
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
) {
608 memcmp(sender
->slots
,hdr
->myslots
,sizeof(hdr
->myslots
)) != 0;
609 memcpy(sender
->slots
,hdr
->myslots
,sizeof(hdr
->myslots
));
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
)
617 server
.cluster
.slots
[j
] = sender
;
618 update_state
= update_config
= 1;
625 /* Get info from the gossip section */
626 clusterProcessGossipSection(hdr
,link
);
628 /* Update the cluster state if needed */
629 if (update_state
) clusterUpdateState();
630 if (update_config
) clusterSaveConfigOrDie();
631 } else if (type
== CLUSTERMSG_TYPE_FAIL
&& sender
) {
632 clusterNode
*failing
;
634 failing
= clusterLookupNode(hdr
->data
.fail
.about
.nodename
);
635 if (failing
&& !(failing
->flags
& (REDIS_NODE_FAIL
|REDIS_NODE_MYSELF
)))
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();
643 clusterSaveConfigOrDie();
646 redisLog(REDIS_NOTICE
,"Received unknown packet type: %d", type
);
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.
655 Instead if the node is a temporary node used to accept a query, we
656 completely free the node on error. */
657 void handleLinkIOError(clusterLink
*link
) {
658 freeClusterLink(link
);
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. */
664 void clusterWriteHandler(aeEventLoop
*el
, int fd
, void *privdata
, int mask
) {
665 clusterLink
*link
= (clusterLink
*) privdata
;
670 nwritten
= write(fd
, link
->sndbuf
, sdslen(link
->sndbuf
));
672 redisLog(REDIS_NOTICE
,"I/O error writing to node link: %s",
674 handleLinkIOError(link
);
677 link
->sndbuf
= sdsrange(link
->sndbuf
,nwritten
,-1);
678 if (sdslen(link
->sndbuf
) == 0)
679 aeDeleteFileEvent(server
.el
, link
->fd
, AE_WRITABLE
);
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. */
685 void clusterReadHandler(aeEventLoop
*el
, int fd
, void *privdata
, int mask
) {
689 clusterLink
*link
= (clusterLink
*) privdata
;
695 if (sdslen(link
->rcvbuf
) >= 4) {
696 hdr
= (clusterMsg
*) link
->rcvbuf
;
697 readlen
= ntohl(hdr
->totlen
) - sdslen(link
->rcvbuf
);
699 readlen
= 4 - sdslen(link
->rcvbuf
);
702 nread
= read(fd
,buf
,readlen
);
703 if (nread
== -1 && errno
== EAGAIN
) return; /* Just no data */
707 redisLog(REDIS_NOTICE
,"I/O error reading from node link: %s",
708 (nread
== 0) ? "connection closed" : strerror(errno
));
709 handleLinkIOError(link
);
712 /* Read data and recast the pointer to the new buffer. */
713 link
->rcvbuf
= sdscatlen(link
->rcvbuf
,buf
,nread
);
714 hdr
= (clusterMsg
*) link
->rcvbuf
;
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
;
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();
730 /* Put stuff into the send buffer. */
731 void 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
);
736 link
->sndbuf
= sdscatlen(link
->sndbuf
, msg
, msglen
);
739 /* Build the message header */
740 void clusterBuildMessageHdr(clusterMsg
*hdr
, int type
) {
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
);
753 hdr
->port
= htons(server
.port
);
754 hdr
->state
= server
.cluster
.state
;
755 memset(hdr
->configdigest
,0,32); /* FIXME: set config digest */
757 if (type
== CLUSTERMSG_TYPE_FAIL
) {
758 totlen
= sizeof(clusterMsg
)-sizeof(union clusterMsgData
);
759 totlen
+= sizeof(clusterMsgDataFail
);
761 hdr
->totlen
= htonl(totlen
);
762 /* For PING, PONG, and MEET, fixing the totlen field is up to the caller */
765 /* Send a PING or PONG packet to the specified node, making sure to add enough
766 * gossip informations. */
767 void 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
777 int freshnodes
= dictSize(server
.cluster
.nodes
)-2;
779 if (link
->node
&& type
== CLUSTERMSG_TYPE_PING
)
780 link
->node
->ping_sent
= time(NULL
);
781 clusterBuildMessageHdr(hdr
,type
);
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
;
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. */
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;
803 if (j
!= gossipcount
) continue;
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
);
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
);
823 /* Send a message to all the nodes with a reliable link */
824 void clusterBroadcastMessage(void *buf
, size_t len
) {
828 di
= dictGetIterator(server
.cluster
.nodes
);
829 while((de
= dictNext(di
)) != NULL
) {
830 clusterNode
*node
= dictGetEntryVal(de
);
832 if (!node
->link
) continue;
833 if (node
->flags
& (REDIS_NODE_MYSELF
|REDIS_NODE_NOADDR
)) continue;
834 clusterSendMessage(node
->link
,buf
,len
);
836 dictReleaseIterator(di
);
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. */
844 void clusterSendFail(char *nodename
) {
845 unsigned char buf
[1024];
846 clusterMsg
*hdr
= (clusterMsg
*) buf
;
848 clusterBuildMessageHdr(hdr
,CLUSTERMSG_TYPE_FAIL
);
849 memcpy(hdr
->data
.fail
.about
.nodename
,nodename
,REDIS_CLUSTER_NAMELEN
);
850 clusterBroadcastMessage(buf
,ntohl(hdr
->totlen
));
853 /* -----------------------------------------------------------------------------
855 * -------------------------------------------------------------------------- */
857 /* This is executed 1 time every second */
858 void clusterCron(void) {
862 time_t min_ping_sent
= 0;
863 clusterNode
*min_ping_node
= NULL
;
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
);
870 if (node
->flags
& (REDIS_NODE_MYSELF
|REDIS_NODE_NOADDR
)) continue;
871 if (node
->link
== NULL
) {
875 fd
= anetTcpNonBlockConnect(server
.neterr
, node
->ip
,
876 node
->port
+REDIS_CLUSTER_PORT_INCR
);
877 if (fd
== -1) continue;
878 link
= createClusterLink(node
);
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
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
;
894 redisLog(REDIS_NOTICE
,"Connecting with Node %.40s at %s:%d", node
->name
, node
->ip
, node
->port
+REDIS_CLUSTER_PORT_INCR
);
897 dictReleaseIterator(di
);
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
);
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
;
913 redisLog(REDIS_DEBUG
,"Pinging node %40s", min_ping_node
->name
);
914 clusterSendPing(min_ping_node
->link
, CLUSTERMSG_TYPE_PING
);
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
);
924 (REDIS_NODE_MYSELF
|REDIS_NODE_NOADDR
|REDIS_NODE_HANDSHAKE
))
926 /* Check only if we already sent a ping and did not received
928 if (node
->ping_sent
== 0 ||
929 node
->ping_sent
<= node
->pong_received
) continue;
931 delay
= time(NULL
) - node
->pong_received
;
932 if (delay
< server
.cluster
.node_timeout
) {
933 /* The PFAIL condition can be reversed without external
934 * help if it is not transitive (that is, if it does not
935 * turn into a FAIL state).
937 * The FAIL condition is also reversible if there are no slaves
938 * for this host, so no slave election should be in progress.
940 * TODO: consider all the implications of resurrecting a
942 if (node
->flags
& REDIS_NODE_PFAIL
) {
943 node
->flags
&= ~REDIS_NODE_PFAIL
;
944 } else if (node
->flags
& REDIS_NODE_FAIL
&& !node
->numslaves
) {
945 node
->flags
&= ~REDIS_NODE_FAIL
;
946 clusterUpdateState();
949 /* Timeout reached. Set the noad se possibly failing if it is
950 * not already in this state. */
951 if (!(node
->flags
& (REDIS_NODE_PFAIL
|REDIS_NODE_FAIL
))) {
952 redisLog(REDIS_DEBUG
,"*** NODE %.40s possibly failing",
954 node
->flags
|= REDIS_NODE_PFAIL
;
958 dictReleaseIterator(di
);
961 /* -----------------------------------------------------------------------------
963 * -------------------------------------------------------------------------- */
965 /* Set the slot bit and return the old value. */
966 int clusterNodeSetSlotBit(clusterNode
*n
, int slot
) {
969 int old
= (n
->slots
[byte
] & (1<<bit
)) != 0;
970 n
->slots
[byte
] |= 1<<bit
;
974 /* Clear the slot bit and return the old value. */
975 int clusterNodeClearSlotBit(clusterNode
*n
, int slot
) {
978 int old
= (n
->slots
[byte
] & (1<<bit
)) != 0;
979 n
->slots
[byte
] &= ~(1<<bit
);
983 /* Return the slot bit from the cluster node structure. */
984 int clusterNodeGetSlotBit(clusterNode
*n
, int slot
) {
987 return (n
->slots
[byte
] & (1<<bit
)) != 0;
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. */
994 int clusterAddSlot(clusterNode
*n
, int slot
) {
995 redisAssert(clusterNodeSetSlotBit(n
,slot
) == 0);
996 server
.cluster
.slots
[slot
] = n
;
1000 /* -----------------------------------------------------------------------------
1001 * Cluster state evaluation function
1002 * -------------------------------------------------------------------------- */
1003 void clusterUpdateState(void) {
1007 for (j
= 0; j
< REDIS_CLUSTER_SLOTS
; j
++) {
1008 if (server
.cluster
.slots
[j
] == NULL
||
1009 server
.cluster
.slots
[j
]->flags
& (REDIS_NODE_FAIL
))
1016 if (server
.cluster
.state
== REDIS_CLUSTER_NEEDHELP
) {
1017 server
.cluster
.state
= REDIS_CLUSTER_NEEDHELP
;
1019 server
.cluster
.state
= REDIS_CLUSTER_OK
;
1022 server
.cluster
.state
= REDIS_CLUSTER_FAIL
;
1026 /* -----------------------------------------------------------------------------
1028 * -------------------------------------------------------------------------- */
1030 sds
clusterGenNodesDescription(void) {
1031 sds ci
= sdsempty();
1036 di
= dictGetIterator(server
.cluster
.nodes
);
1037 while((de
= dictNext(di
)) != NULL
) {
1038 clusterNode
*node
= dictGetEntryVal(de
);
1040 /* Node coordinates */
1041 ci
= sdscatprintf(ci
,"%.40s %s:%d ",
1047 if (node
->flags
== 0) ci
= sdscat(ci
,"noflags,");
1048 if (node
->flags
& REDIS_NODE_MYSELF
) ci
= sdscat(ci
,"myself,");
1049 if (node
->flags
& REDIS_NODE_MASTER
) ci
= sdscat(ci
,"master,");
1050 if (node
->flags
& REDIS_NODE_SLAVE
) ci
= sdscat(ci
,"slave,");
1051 if (node
->flags
& REDIS_NODE_PFAIL
) ci
= sdscat(ci
,"fail?,");
1052 if (node
->flags
& REDIS_NODE_FAIL
) ci
= sdscat(ci
,"fail,");
1053 if (node
->flags
& REDIS_NODE_HANDSHAKE
) ci
=sdscat(ci
,"handshake,");
1054 if (node
->flags
& REDIS_NODE_NOADDR
) ci
= sdscat(ci
,"noaddr,");
1055 if (ci
[sdslen(ci
)-1] == ',') ci
[sdslen(ci
)-1] = ' ';
1057 /* Slave of... or just "-" */
1059 ci
= sdscatprintf(ci
,"%.40s ",node
->slaveof
->name
);
1061 ci
= sdscatprintf(ci
,"- ");
1063 /* Latency from the POV of this node, link status */
1064 ci
= sdscatprintf(ci
,"%ld %ld %s",
1065 (long) node
->ping_sent
,
1066 (long) node
->pong_received
,
1067 node
->link
? "connected" : "disconnected");
1069 /* Slots served by this instance */
1071 for (j
= 0; j
< REDIS_CLUSTER_SLOTS
; j
++) {
1074 if ((bit
= clusterNodeGetSlotBit(node
,j
)) != 0) {
1075 if (start
== -1) start
= j
;
1077 if (start
!= -1 && (!bit
|| j
== REDIS_CLUSTER_SLOTS
-1)) {
1078 if (j
== REDIS_CLUSTER_SLOTS
-1) j
++;
1081 ci
= sdscatprintf(ci
," %d",start
);
1083 ci
= sdscatprintf(ci
," %d-%d",start
,j
-1);
1088 ci
= sdscatlen(ci
,"\n",1);
1090 dictReleaseIterator(di
);
1094 void clusterCommand(redisClient
*c
) {
1095 if (server
.cluster_enabled
== 0) {
1096 addReplyError(c
,"This instance has cluster support disabled");
1100 if (!strcasecmp(c
->argv
[1]->ptr
,"meet") && c
->argc
== 4) {
1102 struct sockaddr_in sa
;
1105 /* Perform sanity checks on IP/port */
1106 if (inet_aton(c
->argv
[2]->ptr
,&sa
.sin_addr
) == 0) {
1107 addReplyError(c
,"Invalid IP address in MEET");
1110 if (getLongFromObjectOrReply(c
, c
->argv
[3], &port
, NULL
) != REDIS_OK
||
1111 port
< 0 || port
> (65535-REDIS_CLUSTER_PORT_INCR
))
1113 addReplyError(c
,"Invalid TCP port specified");
1117 /* Finally add the node to the cluster with a random name, this
1118 * will get fixed in the first handshake (ping/pong). */
1119 n
= createClusterNode(NULL
,REDIS_NODE_HANDSHAKE
|REDIS_NODE_MEET
);
1120 strncpy(n
->ip
,inet_ntoa(sa
.sin_addr
),sizeof(n
->ip
));
1123 addReply(c
,shared
.ok
);
1124 } else if (!strcasecmp(c
->argv
[1]->ptr
,"nodes") && c
->argc
== 2) {
1126 sds ci
= clusterGenNodesDescription();
1128 o
= createObject(REDIS_STRING
,ci
);
1131 } else if (!strcasecmp(c
->argv
[1]->ptr
,"addslots") && c
->argc
>= 3) {
1134 unsigned char *slots
= zmalloc(REDIS_CLUSTER_SLOTS
);
1136 memset(slots
,0,REDIS_CLUSTER_SLOTS
);
1137 /* Check that all the arguments are parsable and that all the
1138 * slots are not already busy. */
1139 for (j
= 2; j
< c
->argc
; j
++) {
1140 if (getLongLongFromObject(c
->argv
[j
],&slot
) != REDIS_OK
||
1141 slot
< 0 || slot
> REDIS_CLUSTER_SLOTS
)
1143 addReplyError(c
,"Invalid or out of range slot index");
1147 if (server
.cluster
.slots
[slot
]) {
1148 addReplyErrorFormat(c
,"Slot %lld is already busy", slot
);
1152 if (slots
[slot
]++ == 1) {
1153 addReplyErrorFormat(c
,"Slot %d specified multiple times",
1159 for (j
= 0; j
< REDIS_CLUSTER_SLOTS
; j
++) {
1161 int retval
= clusterAddSlot(server
.cluster
.myself
,j
);
1163 redisAssert(retval
== REDIS_OK
);
1167 clusterUpdateState();
1168 clusterSaveConfigOrDie();
1169 addReply(c
,shared
.ok
);
1170 } else if (!strcasecmp(c
->argv
[1]->ptr
,"info") && c
->argc
== 2) {
1171 char *statestr
[] = {"ok","fail","needhelp"};
1172 int slots_assigned
= 0, slots_ok
= 0, slots_pfail
= 0, slots_fail
= 0;
1175 for (j
= 0; j
< REDIS_CLUSTER_SLOTS
; j
++) {
1176 clusterNode
*n
= server
.cluster
.slots
[j
];
1178 if (n
== NULL
) continue;
1180 if (n
->flags
& REDIS_NODE_FAIL
) {
1182 } else if (n
->flags
& REDIS_NODE_PFAIL
) {
1189 sds info
= sdscatprintf(sdsempty(),
1190 "cluster_state:%s\r\n"
1191 "cluster_slots_assigned:%d\r\n"
1192 "cluster_slots_ok:%d\r\n"
1193 "cluster_slots_pfail:%d\r\n"
1194 "cluster_slots_fail:%d\r\n"
1195 "cluster_known_nodes:%lu\r\n"
1196 , statestr
[server
.cluster
.state
],
1201 dictSize(server
.cluster
.nodes
)
1203 addReplySds(c
,sdscatprintf(sdsempty(),"$%lu\r\n",
1204 (unsigned long)sdslen(info
)));
1205 addReplySds(c
,info
);
1206 addReply(c
,shared
.crlf
);
1208 addReplyError(c
,"Wrong CLUSTER subcommand or number of arguments");
1212 /* -----------------------------------------------------------------------------
1213 * RESTORE and MIGRATE commands
1214 * -------------------------------------------------------------------------- */
1216 /* RESTORE key ttl serialized-value */
1217 void restoreCommand(redisClient
*c
) {
1221 unsigned char *data
;
1224 /* Make sure this key does not already exist here... */
1225 if (dbExists(c
->db
,c
->argv
[1])) {
1226 addReplyError(c
,"Target key name is busy.");
1230 /* Check if the TTL value makes sense */
1231 if (getLongFromObjectOrReply(c
,c
->argv
[2],&ttl
,NULL
) != REDIS_OK
) {
1233 } else if (ttl
< 0) {
1234 addReplyError(c
,"Invalid TTL value, must be >= 0");
1238 /* rdbLoadObject() only works against file descriptors so we need to
1239 * dump the serialized object into a file and reload. */
1240 snprintf(buf
,sizeof(buf
),"redis-restore-%d.tmp",getpid());
1241 fp
= fopen(buf
,"w+");
1243 redisLog(REDIS_WARNING
,"Can't open tmp file for RESTORE: %s",
1245 addReplyErrorFormat(c
,"RESTORE failed, tmp file creation error: %s",
1251 /* Write the actual data and rewind the file */
1252 data
= (unsigned char*) c
->argv
[3]->ptr
;
1253 if (fwrite(data
+1,sdslen((sds
)data
)-1,1,fp
) != 1) {
1254 redisLog(REDIS_WARNING
,"Can't write against tmp file for RESTORE: %s",
1256 addReplyError(c
,"RESTORE failed, tmp file I/O error.");
1262 /* Finally create the object from the serialized dump and
1263 * store it at the specified key. */
1264 if ((data
[0] > 4 && data
[0] < 9) ||
1266 (o
= rdbLoadObject(data
[0],fp
)) == NULL
)
1268 addReplyError(c
,"Bad data format.");
1274 /* Create the key and set the TTL if any */
1275 dbAdd(c
->db
,c
->argv
[1],o
);
1276 if (ttl
) setExpire(c
->db
,c
->argv
[1],time(NULL
)+ttl
);
1277 addReply(c
,shared
.ok
);
1280 /* MIGRATE host port key dbid timeout */
1281 void migrateCommand(redisClient
*c
) {
1293 if (getLongFromObjectOrReply(c
,c
->argv
[5],&timeout
,NULL
) != REDIS_OK
)
1295 if (getLongFromObjectOrReply(c
,c
->argv
[4],&dbid
,NULL
) != REDIS_OK
)
1297 if (timeout
<= 0) timeout
= 1;
1299 /* Check if the key is here. If not we reply with success as there is
1300 * nothing to migrate (for instance the key expired in the meantime), but
1301 * we include such information in the reply string. */
1302 if ((o
= lookupKeyRead(c
->db
,c
->argv
[3])) == NULL
) {
1303 addReplySds(c
,sdsnew("+NOKEY"));
1308 fd
= anetTcpNonBlockConnect(server
.neterr
,c
->argv
[1]->ptr
,
1309 atoi(c
->argv
[2]->ptr
));
1311 addReplyErrorFormat(c
,"Can't connect to target node: %s",
1315 if ((aeWait(fd
,AE_WRITABLE
,timeout
*1000) & AE_WRITABLE
) == 0) {
1316 addReplyError(c
,"Timeout connecting to the client");
1320 /* Create temp file */
1321 snprintf(buf
,sizeof(buf
),"redis-migrate-%d.tmp",getpid());
1322 fp
= fopen(buf
,"w+");
1324 redisLog(REDIS_WARNING
,"Can't open tmp file for MIGRATE: %s",
1326 addReplyErrorFormat(c
,"MIGRATE failed, tmp file creation error: %s.",
1332 /* Build the SELECT + RESTORE query writing it in our temp file. */
1333 if (fwriteBulkCount(fp
,'*',2) == 0) goto file_wr_err
;
1334 if (fwriteBulkString(fp
,"SELECT",6) == 0) goto file_wr_err
;
1335 if (fwriteBulkLongLong(fp
,dbid
) == 0) goto file_wr_err
;
1337 ttl
= getExpire(c
->db
,c
->argv
[3]);
1339 if (fwriteBulkCount(fp
,'*',4) == 0) goto file_wr_err
;
1340 if (fwriteBulkString(fp
,"RESTORE",7) == 0) goto file_wr_err
;
1341 if (fwriteBulkObject(fp
,c
->argv
[3]) == 0) goto file_wr_err
;
1342 if (fwriteBulkLongLong(fp
, (ttl
== -1) ? 0 : ttl
) == 0) goto file_wr_err
;
1344 /* Finally the last argument that is the serailized object payload
1345 * in the form: <type><rdb-serailized-object>. */
1346 payload_len
= rdbSavedObjectLen(o
);
1347 if (fwriteBulkCount(fp
,'$',payload_len
+1) == 0) goto file_wr_err
;
1348 if (fwrite(&type
,1,1,fp
) == 0) goto file_wr_err
;
1349 if (rdbSaveObject(fp
,o
) == -1) goto file_wr_err
;
1350 if (fwrite("\r\n",2,1,fp
) == 0) goto file_wr_err
;
1352 /* Tranfer the query to the other node */
1358 while ((nread
= fread(buf
,1,sizeof(buf
),fp
)) != 0) {
1361 nwritten
= syncWrite(fd
,buf
,nread
,timeout
);
1362 if (nwritten
!= (signed)nread
) goto socket_wr_err
;
1364 if (ferror(fp
)) goto file_rd_err
;
1367 /* Read back the reply */
1372 /* Read the two replies */
1373 if (syncReadLine(fd
, buf1
, sizeof(buf1
), timeout
) <= 0)
1375 if (syncReadLine(fd
, buf2
, sizeof(buf2
), timeout
) <= 0)
1377 if (buf1
[0] == '-' || buf2
[0] == '-') {
1378 addReplyErrorFormat(c
,"Target instance replied with error: %s",
1379 (buf1
[0] == '-') ? buf1
+1 : buf2
+1);
1381 dbDelete(c
->db
,c
->argv
[3]);
1382 addReply(c
,shared
.ok
);
1390 redisLog(REDIS_WARNING
,"Can't write on tmp file for MIGRATE: %s",
1392 addReplyErrorFormat(c
,"MIGRATE failed, tmp file write error: %s.",
1399 redisLog(REDIS_WARNING
,"Can't read from tmp file for MIGRATE: %s",
1401 addReplyErrorFormat(c
,"MIGRATE failed, tmp file read error: %s.",
1408 redisLog(REDIS_NOTICE
,"Can't write to target node for MIGRATE: %s",
1410 addReplyErrorFormat(c
,"MIGRATE failed, writing to target node: %s.",
1417 redisLog(REDIS_NOTICE
,"Can't read from target node for MIGRATE: %s",
1419 addReplyErrorFormat(c
,"MIGRATE failed, reading from target node: %s.",
1427 * DUMP is actually not used by Redis Cluster but it is the obvious
1428 * complement of RESTORE and can be useful for different applications. */
1429 void dumpCommand(redisClient
*c
) {
1437 /* Check if the key is here. */
1438 if ((o
= lookupKeyRead(c
->db
,c
->argv
[1])) == NULL
) {
1439 addReply(c
,shared
.nullbulk
);
1443 /* Create temp file */
1444 snprintf(buf
,sizeof(buf
),"redis-dump-%d.tmp",getpid());
1445 fp
= fopen(buf
,"w+");
1447 redisLog(REDIS_WARNING
,"Can't open tmp file for MIGRATE: %s",
1449 addReplyErrorFormat(c
,"DUMP failed, tmp file creation error: %s.",
1455 /* Dump the serailized object and read it back in memory.
1456 * We prefix it with a one byte containing the type ID.
1457 * This is the serialization format understood by RESTORE. */
1458 if (rdbSaveObject(fp
,o
) == -1) goto file_wr_err
;
1459 payload_len
= ftello(fp
);
1460 if (fseeko(fp
,0,SEEK_SET
) == -1) goto file_rd_err
;
1461 dump
= sdsnewlen(NULL
,payload_len
+1);
1462 if (payload_len
&& fread(dump
+1,payload_len
,1,fp
) != 1) goto file_rd_err
;
1465 if (type
== REDIS_LIST
&& o
->encoding
== REDIS_ENCODING_ZIPLIST
)
1466 type
= REDIS_LIST_ZIPLIST
;
1467 else if (type
== REDIS_HASH
&& o
->encoding
== REDIS_ENCODING_ZIPMAP
)
1468 type
= REDIS_HASH_ZIPMAP
;
1469 else if (type
== REDIS_SET
&& o
->encoding
== REDIS_ENCODING_INTSET
)
1470 type
= REDIS_SET_INTSET
;
1475 /* Transfer to the client */
1476 dumpobj
= createObject(REDIS_STRING
,dump
);
1477 addReplyBulk(c
,dumpobj
);
1478 decrRefCount(dumpobj
);
1482 redisLog(REDIS_WARNING
,"Can't write on tmp file for DUMP: %s",
1484 addReplyErrorFormat(c
,"DUMP failed, tmp file write error: %s.",
1491 redisLog(REDIS_WARNING
,"Can't read from tmp file for DUMP: %s",
1493 addReplyErrorFormat(c
,"DUMP failed, tmp file read error: %s.",
1500 /* -----------------------------------------------------------------------------
1501 * Cluster functions related to serving / redirecting clients
1502 * -------------------------------------------------------------------------- */
1504 /* Return the pointer to the cluster node that is able to serve the query
1505 * as all the keys belong to hash slots for which the node is in charge.
1507 * If keys in query spawn multiple nodes NULL is returned. */
1508 clusterNode
*getNodeByQuery(redisClient
*c
, struct redisCommand
*cmd
, robj
**argv
, int argc
, int *hashslot
) {
1509 clusterNode
*n
= NULL
;
1510 multiState
*ms
, _ms
;
1514 /* We handle all the cases as if they were EXEC commands, so we have
1515 * a common code path for everything */
1516 if (cmd
->proc
== execCommand
) {
1517 /* If REDIS_MULTI flag is not set EXEC is just going to return an
1519 if (!(c
->flags
& REDIS_MULTI
)) return server
.cluster
.myself
;
1522 /* Create a fake Multi State structure, with just one command */
1531 for (i
= 0; i
< ms
->count
; i
++) {
1532 struct redisCommand
*mcmd
;
1534 int margc
, *keyindex
, numkeys
, j
;
1536 mcmd
= ms
->commands
[i
].cmd
;
1537 margc
= ms
->commands
[i
].argc
;
1538 margv
= ms
->commands
[i
].argv
;
1540 keyindex
= getKeysFromCommand(mcmd
,margv
,margc
,&numkeys
,
1541 REDIS_GETKEYS_PRELOAD
);
1542 for (j
= 0; j
< numkeys
; j
++) {
1543 int slot
= keyHashSlot((char*)margv
[keyindex
[j
]]->ptr
,
1544 sdslen(margv
[keyindex
[j
]]->ptr
));
1545 struct clusterNode
*slotnode
;
1547 slotnode
= server
.cluster
.slots
[slot
];
1548 if (hashslot
) *hashslot
= slot
;
1549 /* Node not assigned? (Should never happen actually
1550 * if we reached this function).
1551 * Different node than the previous one?
1552 * Return NULL, the cluster can't serve multi-node requests */
1553 if (slotnode
== NULL
|| (n
&& slotnode
!= n
)) {
1554 getKeysFreeResult(keyindex
);
1560 getKeysFreeResult(keyindex
);
1562 return (n
== NULL
) ? server
.cluster
.myself
: n
;