]> git.saurik.com Git - redis.git/blob - src/sentinel.c
f9b7453a4a574737cb917e4ea80f2c0d9698b375
[redis.git] / src / sentinel.c
1 /* Redis Sentinel implementation
2 * -----------------------------
3 *
4 * Copyright (c) 2009-2012, Salvatore Sanfilippo <antirez at gmail dot com>
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are met:
9 *
10 * * Redistributions of source code must retain the above copyright notice,
11 * this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * * Neither the name of Redis nor the names of its contributors may be used
16 * to endorse or promote products derived from this software without
17 * specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
23 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
30 */
31
32 #include "redis.h"
33 #include "hiredis.h"
34 #include "async.h"
35
36 #include <ctype.h>
37 #include <arpa/inet.h>
38 #include <sys/socket.h>
39 #include <sys/wait.h>
40
41 extern char **environ;
42
43 #define REDIS_SENTINEL_PORT 26379
44
45 /* ======================== Sentinel global state =========================== */
46
47 typedef long long mstime_t; /* millisecond time type. */
48
49 /* Address object, used to describe an ip:port pair. */
50 typedef struct sentinelAddr {
51 char *ip;
52 int port;
53 } sentinelAddr;
54
55 /* A Sentinel Redis Instance object is monitoring. */
56 #define SRI_MASTER (1<<0)
57 #define SRI_SLAVE (1<<1)
58 #define SRI_SENTINEL (1<<2)
59 #define SRI_DISCONNECTED (1<<3)
60 #define SRI_S_DOWN (1<<4) /* Subjectively down (no quorum). */
61 #define SRI_O_DOWN (1<<5) /* Objectively down (quorum reached). */
62 #define SRI_MASTER_DOWN (1<<6) /* A Sentinel with this flag set thinks that
63 its master is down. */
64 /* SRI_CAN_FAILOVER when set in an SRI_MASTER instance means that we are
65 * allowed to perform the failover for this master.
66 * When set in a SRI_SENTINEL instance means that sentinel is allowed to
67 * perform the failover on its master. */
68 #define SRI_CAN_FAILOVER (1<<7)
69 #define SRI_FAILOVER_IN_PROGRESS (1<<8) /* Failover is in progress for
70 this master. */
71 #define SRI_I_AM_THE_LEADER (1<<9) /* We are the leader for this master. */
72 #define SRI_PROMOTED (1<<10) /* Slave selected for promotion. */
73 #define SRI_RECONF_SENT (1<<11) /* SLAVEOF <newmaster> sent. */
74 #define SRI_RECONF_INPROG (1<<12) /* Slave synchronization in progress. */
75 #define SRI_RECONF_DONE (1<<13) /* Slave synchronized with new master. */
76
77 #define SENTINEL_INFO_PERIOD 10000
78 #define SENTINEL_PING_PERIOD 1000
79 #define SENTINEL_ASK_PERIOD 1000
80 #define SENTINEL_PUBLISH_PERIOD 5000
81 #define SENTINEL_DOWN_AFTER_PERIOD 30000
82 #define SENTINEL_HELLO_CHANNEL "__sentinel__:hello"
83 #define SENTINEL_TILT_TRIGGER 2000
84 #define SENTINEL_TILT_PERIOD (SENTINEL_PING_PERIOD*30)
85 #define SENTINEL_DEFAULT_SLAVE_PRIORITY 100
86 #define SENTINEL_PROMOTION_RETRY_PERIOD 30000
87 #define SENTINEL_SLAVE_RECONF_RETRY_PERIOD 10000
88 #define SENTINEL_DEFAULT_PARALLEL_SYNCS 1
89 #define SENTINEL_MIN_LINK_RECONNECT_PERIOD 15000
90 #define SENTINEL_DEFAULT_FAILOVER_TIMEOUT (60*15*1000)
91 #define SENTINEL_MAX_PENDING_COMMANDS 100
92 #define SENTINEL_EXTENDED_SDOWN_MULTIPLIER 10
93
94 /* How many milliseconds is an information valid? This applies for instance
95 * to the reply to SENTINEL IS-MASTER-DOWN-BY-ADDR replies. */
96 #define SENTINEL_INFO_VALIDITY_TIME 5000
97 #define SENTINEL_FAILOVER_FIXED_DELAY 5000
98 #define SENTINEL_FAILOVER_MAX_RANDOM_DELAY 10000
99
100 /* Failover machine different states. */
101 #define SENTINEL_FAILOVER_STATE_NONE 0 /* No failover in progress. */
102 #define SENTINEL_FAILOVER_STATE_WAIT_START 1 /* Wait for failover_start_time*/
103 #define SENTINEL_FAILOVER_STATE_SELECT_SLAVE 2 /* Select slave to promote */
104 #define SENTINEL_FAILOVER_STATE_SEND_SLAVEOF_NOONE 3 /* Slave -> Master */
105 #define SENTINEL_FAILOVER_STATE_WAIT_PROMOTION 4 /* Wait slave to change role */
106 #define SENTINEL_FAILOVER_STATE_RECONF_SLAVES 5 /* SLAVEOF newmaster */
107 #define SENTINEL_FAILOVER_STATE_WAIT_NEXT_SLAVE 6 /* wait replication */
108 #define SENTINEL_FAILOVER_STATE_ALERT_CLIENTS 7 /* Run user script. */
109 #define SENTINEL_FAILOVER_STATE_WAIT_ALERT_SCRIPT 8 /* Wait script exec. */
110 #define SENTINEL_FAILOVER_STATE_DETECT_END 9 /* Check for failover end. */
111 #define SENTINEL_FAILOVER_STATE_UPDATE_CONFIG 10 /* Monitor promoted slave. */
112
113 #define SENTINEL_MASTER_LINK_STATUS_UP 0
114 #define SENTINEL_MASTER_LINK_STATUS_DOWN 1
115
116 /* Generic flags that can be used with different functions. */
117 #define SENTINEL_NO_FLAGS 0
118 #define SENTINEL_GENERATE_EVENT 1
119
120 /* Script execution flags and limits. */
121 #define SENTINEL_SCRIPT_NONE 0
122 #define SENTINEL_SCRIPT_RUNNING 1
123 #define SENTINEL_SCRIPT_MAX_QUEUE 256
124 #define SENTINEL_SCRIPT_MAX_RUNNING 16
125 #define SENTINEL_SCRIPT_MAX_RUNTIME 60000 /* 60 seconds max exec time. */
126 #define SENTINEL_SCRIPT_MAX_RETRY 10
127 #define SENTINEL_SCRIPT_RETRY_DELAY 30000 /* 30 seconds between retries. */
128
129 typedef struct sentinelRedisInstance {
130 int flags; /* See SRI_... defines */
131 char *name; /* Master name from the point of view of this sentinel. */
132 char *runid; /* run ID of this instance. */
133 sentinelAddr *addr; /* Master host. */
134 redisAsyncContext *cc; /* Hiredis context for commands. */
135 redisAsyncContext *pc; /* Hiredis context for Pub / Sub. */
136 int pending_commands; /* Number of commands sent waiting for a reply. */
137 mstime_t cc_conn_time; /* cc connection time. */
138 mstime_t pc_conn_time; /* pc connection time. */
139 mstime_t pc_last_activity; /* Last time we received any message. */
140 mstime_t last_avail_time; /* Last time the instance replied to ping with
141 a reply we consider valid. */
142 mstime_t last_pong_time; /* Last time the instance replied to ping,
143 whatever the reply was. That's used to check
144 if the link is idle and must be reconnected. */
145 mstime_t last_pub_time; /* Last time we sent hello via Pub/Sub. */
146 mstime_t last_hello_time; /* Only used if SRI_SENTINEL is set. Last time
147 we received an hello from this Sentinel
148 via Pub/Sub. */
149 mstime_t last_master_down_reply_time; /* Time of last reply to
150 SENTINEL is-master-down command. */
151 mstime_t s_down_since_time; /* Subjectively down since time. */
152 mstime_t o_down_since_time; /* Objectively down since time. */
153 mstime_t down_after_period; /* Consider it down after that period. */
154 mstime_t info_refresh; /* Time at which we received INFO output from it. */
155
156 /* Master specific. */
157 dict *sentinels; /* Other sentinels monitoring the same master. */
158 dict *slaves; /* Slaves for this master instance. */
159 int quorum; /* Number of sentinels that need to agree on failure. */
160 int parallel_syncs; /* How many slaves to reconfigure at same time. */
161
162 /* Slave specific. */
163 mstime_t master_link_down_time; /* Slave replication link down time. */
164 int slave_priority; /* Slave priority according to its INFO output. */
165 mstime_t slave_reconf_sent_time; /* Time at which we sent SLAVE OF <new> */
166 struct sentinelRedisInstance *master; /* Master instance if SRI_SLAVE is set. */
167 char *slave_master_host; /* Master host as reported by INFO */
168 int slave_master_port; /* Master port as reported by INFO */
169 int slave_master_link_status; /* Master link status as reported by INFO */
170 /* Failover */
171 char *leader; /* If this is a master instance, this is the runid of
172 the Sentinel that should perform the failover. If
173 this is a Sentinel, this is the runid of the Sentinel
174 that this other Sentinel is voting as leader.
175 This field is valid only if SRI_MASTER_DOWN is
176 set on the Sentinel instance. */
177 int failover_state; /* See SENTINEL_FAILOVER_STATE_* defines. */
178 mstime_t failover_state_change_time;
179 mstime_t failover_start_time; /* When to start to failover if leader. */
180 mstime_t failover_timeout; /* Max time to refresh failover state. */
181 struct sentinelRedisInstance *promoted_slave; /* Promoted slave instance. */
182 /* Scripts executed to notify admin or reconfigure clients: when they
183 * are set to NULL no script is executed. */
184 char *notification_script;
185 char *client_reconfig_script;
186 } sentinelRedisInstance;
187
188 /* Main state. */
189 struct sentinelState {
190 dict *masters; /* Dictionary of master sentinelRedisInstances.
191 Key is the instance name, value is the
192 sentinelRedisInstance structure pointer. */
193 int tilt; /* Are we in TILT mode? */
194 int running_scripts; /* Number of scripts in execution right now. */
195 mstime_t tilt_start_time; /* When TITL started. */
196 mstime_t previous_time; /* Time last time we ran the time handler. */
197 list *scripts_queue; /* Queue of user scripts to execute. */
198 } sentinel;
199
200 /* A script execution job. */
201 typedef struct sentinelScriptJob {
202 int flags; /* Script job flags: SENTINEL_SCRIPT_* */
203 int retry_num; /* Number of times we tried to execute it. */
204 char **argv; /* Arguments to call the script. */
205 mstime_t start_time; /* Script execution time if the script is running,
206 otherwise 0 if we are allowed to retry the
207 execution at any time. If the script is not
208 running and it's not 0, it means: do not run
209 before the specified time. */
210 pid_t pid; /* Script execution pid. */
211 } sentinelScriptJob;
212
213 /* ======================= hiredis ae.c adapters =============================
214 * Note: this implementation is taken from hiredis/adapters/ae.h, however
215 * we have our modified copy for Sentinel in order to use our allocator
216 * and to have full control over how the adapter works. */
217
218 typedef struct redisAeEvents {
219 redisAsyncContext *context;
220 aeEventLoop *loop;
221 int fd;
222 int reading, writing;
223 } redisAeEvents;
224
225 static void redisAeReadEvent(aeEventLoop *el, int fd, void *privdata, int mask) {
226 ((void)el); ((void)fd); ((void)mask);
227
228 redisAeEvents *e = (redisAeEvents*)privdata;
229 redisAsyncHandleRead(e->context);
230 }
231
232 static void redisAeWriteEvent(aeEventLoop *el, int fd, void *privdata, int mask) {
233 ((void)el); ((void)fd); ((void)mask);
234
235 redisAeEvents *e = (redisAeEvents*)privdata;
236 redisAsyncHandleWrite(e->context);
237 }
238
239 static void redisAeAddRead(void *privdata) {
240 redisAeEvents *e = (redisAeEvents*)privdata;
241 aeEventLoop *loop = e->loop;
242 if (!e->reading) {
243 e->reading = 1;
244 aeCreateFileEvent(loop,e->fd,AE_READABLE,redisAeReadEvent,e);
245 }
246 }
247
248 static void redisAeDelRead(void *privdata) {
249 redisAeEvents *e = (redisAeEvents*)privdata;
250 aeEventLoop *loop = e->loop;
251 if (e->reading) {
252 e->reading = 0;
253 aeDeleteFileEvent(loop,e->fd,AE_READABLE);
254 }
255 }
256
257 static void redisAeAddWrite(void *privdata) {
258 redisAeEvents *e = (redisAeEvents*)privdata;
259 aeEventLoop *loop = e->loop;
260 if (!e->writing) {
261 e->writing = 1;
262 aeCreateFileEvent(loop,e->fd,AE_WRITABLE,redisAeWriteEvent,e);
263 }
264 }
265
266 static void redisAeDelWrite(void *privdata) {
267 redisAeEvents *e = (redisAeEvents*)privdata;
268 aeEventLoop *loop = e->loop;
269 if (e->writing) {
270 e->writing = 0;
271 aeDeleteFileEvent(loop,e->fd,AE_WRITABLE);
272 }
273 }
274
275 static void redisAeCleanup(void *privdata) {
276 redisAeEvents *e = (redisAeEvents*)privdata;
277 redisAeDelRead(privdata);
278 redisAeDelWrite(privdata);
279 zfree(e);
280 }
281
282 static int redisAeAttach(aeEventLoop *loop, redisAsyncContext *ac) {
283 redisContext *c = &(ac->c);
284 redisAeEvents *e;
285
286 /* Nothing should be attached when something is already attached */
287 if (ac->ev.data != NULL)
288 return REDIS_ERR;
289
290 /* Create container for context and r/w events */
291 e = (redisAeEvents*)zmalloc(sizeof(*e));
292 e->context = ac;
293 e->loop = loop;
294 e->fd = c->fd;
295 e->reading = e->writing = 0;
296
297 /* Register functions to start/stop listening for events */
298 ac->ev.addRead = redisAeAddRead;
299 ac->ev.delRead = redisAeDelRead;
300 ac->ev.addWrite = redisAeAddWrite;
301 ac->ev.delWrite = redisAeDelWrite;
302 ac->ev.cleanup = redisAeCleanup;
303 ac->ev.data = e;
304
305 return REDIS_OK;
306 }
307
308 /* ============================= Prototypes ================================= */
309
310 void sentinelLinkEstablishedCallback(const redisAsyncContext *c, int status);
311 void sentinelDisconnectCallback(const redisAsyncContext *c, int status);
312 void sentinelReceiveHelloMessages(redisAsyncContext *c, void *reply, void *privdata);
313 sentinelRedisInstance *sentinelGetMasterByName(char *name);
314 char *sentinelGetSubjectiveLeader(sentinelRedisInstance *master);
315 char *sentinelGetObjectiveLeader(sentinelRedisInstance *master);
316 int yesnotoi(char *s);
317 void sentinelDisconnectInstanceFromContext(const redisAsyncContext *c);
318 void sentinelKillLink(sentinelRedisInstance *ri, redisAsyncContext *c);
319 const char *sentinelRedisInstanceTypeStr(sentinelRedisInstance *ri);
320 void sentinelAbortFailover(sentinelRedisInstance *ri);
321 void sentinelEvent(int level, char *type, sentinelRedisInstance *ri, const char *fmt, ...);
322 sentinelRedisInstance *sentinelSelectSlave(sentinelRedisInstance *master);
323 void sentinelScheduleScriptExecution(char *path, ...);
324
325 /* ========================= Dictionary types =============================== */
326
327 unsigned int dictSdsHash(const void *key);
328 int dictSdsKeyCompare(void *privdata, const void *key1, const void *key2);
329 void releaseSentinelRedisInstance(sentinelRedisInstance *ri);
330
331 void dictInstancesValDestructor (void *privdata, void *obj) {
332 releaseSentinelRedisInstance(obj);
333 }
334
335 /* Instance name (sds) -> instance (sentinelRedisInstance pointer)
336 *
337 * also used for: sentinelRedisInstance->sentinels dictionary that maps
338 * sentinels ip:port to last seen time in Pub/Sub hello message. */
339 dictType instancesDictType = {
340 dictSdsHash, /* hash function */
341 NULL, /* key dup */
342 NULL, /* val dup */
343 dictSdsKeyCompare, /* key compare */
344 NULL, /* key destructor */
345 dictInstancesValDestructor /* val destructor */
346 };
347
348 /* Instance runid (sds) -> votes (long casted to void*)
349 *
350 * This is useful into sentinelGetObjectiveLeader() function in order to
351 * count the votes and understand who is the leader. */
352 dictType leaderVotesDictType = {
353 dictSdsHash, /* hash function */
354 NULL, /* key dup */
355 NULL, /* val dup */
356 dictSdsKeyCompare, /* key compare */
357 NULL, /* key destructor */
358 NULL /* val destructor */
359 };
360
361 /* =========================== Initialization =============================== */
362
363 void sentinelCommand(redisClient *c);
364
365 struct redisCommand sentinelcmds[] = {
366 {"ping",pingCommand,1,"",0,NULL,0,0,0,0,0},
367 {"sentinel",sentinelCommand,-2,"",0,NULL,0,0,0,0,0},
368 {"subscribe",subscribeCommand,-2,"",0,NULL,0,0,0,0,0},
369 {"unsubscribe",unsubscribeCommand,-1,"",0,NULL,0,0,0,0,0},
370 {"psubscribe",psubscribeCommand,-2,"",0,NULL,0,0,0,0,0},
371 {"punsubscribe",punsubscribeCommand,-1,"",0,NULL,0,0,0,0,0}
372 };
373
374 /* This function overwrites a few normal Redis config default with Sentinel
375 * specific defaults. */
376 void initSentinelConfig(void) {
377 server.port = REDIS_SENTINEL_PORT;
378 }
379
380 /* Perform the Sentinel mode initialization. */
381 void initSentinel(void) {
382 int j;
383
384 /* Remove usual Redis commands from the command table, then just add
385 * the SENTINEL command. */
386 dictEmpty(server.commands);
387 for (j = 0; j < sizeof(sentinelcmds)/sizeof(sentinelcmds[0]); j++) {
388 int retval;
389 struct redisCommand *cmd = sentinelcmds+j;
390
391 retval = dictAdd(server.commands, sdsnew(cmd->name), cmd);
392 redisAssert(retval == DICT_OK);
393 }
394
395 /* Initialize various data structures. */
396 sentinel.masters = dictCreate(&instancesDictType,NULL);
397 sentinel.tilt = 0;
398 sentinel.tilt_start_time = mstime();
399 sentinel.previous_time = mstime();
400 sentinel.running_scripts = 0;
401 sentinel.scripts_queue = listCreate();
402 }
403
404 /* ============================== sentinelAddr ============================== */
405
406 /* Create a sentinelAddr object and return it on success.
407 * On error NULL is returned and errno is set to:
408 * ENOENT: Can't resolve the hostname.
409 * EINVAL: Invalid port number.
410 */
411 sentinelAddr *createSentinelAddr(char *hostname, int port) {
412 char buf[32];
413 sentinelAddr *sa;
414
415 if (port <= 0 || port > 65535) {
416 errno = EINVAL;
417 return NULL;
418 }
419 if (anetResolve(NULL,hostname,buf) == ANET_ERR) {
420 errno = ENOENT;
421 return NULL;
422 }
423 sa = zmalloc(sizeof(*sa));
424 sa->ip = sdsnew(buf);
425 sa->port = port;
426 return sa;
427 }
428
429 /* Free a Sentinel address. Can't fail. */
430 void releaseSentinelAddr(sentinelAddr *sa) {
431 sdsfree(sa->ip);
432 zfree(sa);
433 }
434
435 /* =========================== Events notification ========================== */
436
437 /* Send an event to log, pub/sub, user notification script.
438 *
439 * 'level' is the log level for logging. Only REDIS_WARNING events will trigger
440 * the execution of the user notification script.
441 *
442 * 'type' is the message type, also used as a pub/sub channel name.
443 *
444 * 'ri', is the redis instance target of this event if applicable, and is
445 * used to obtain the path of the notification script to execute.
446 *
447 * The remaining arguments are printf-alike.
448 * If the format specifier starts with the two characters "%@" then ri is
449 * not NULL, and the message is prefixed with an instance identifier in the
450 * following format:
451 *
452 * <instance type> <instance name> <ip> <port>
453 *
454 * If the instance type is not master, than the additional string is
455 * added to specify the originating master:
456 *
457 * @ <master name> <master ip> <master port>
458 *
459 * Any other specifier after "%@" is processed by printf itself.
460 */
461 void sentinelEvent(int level, char *type, sentinelRedisInstance *ri,
462 const char *fmt, ...) {
463 va_list ap;
464 char msg[REDIS_MAX_LOGMSG_LEN];
465 robj *channel, *payload;
466
467 /* Handle %@ */
468 if (fmt[0] == '%' && fmt[1] == '@') {
469 sentinelRedisInstance *master = (ri->flags & SRI_MASTER) ?
470 NULL : ri->master;
471
472 if (master) {
473 snprintf(msg, sizeof(msg), "%s %s %s %d @ %s %s %d",
474 sentinelRedisInstanceTypeStr(ri),
475 ri->name, ri->addr->ip, ri->addr->port,
476 master->name, master->addr->ip, master->addr->port);
477 } else {
478 snprintf(msg, sizeof(msg), "%s %s %s %d",
479 sentinelRedisInstanceTypeStr(ri),
480 ri->name, ri->addr->ip, ri->addr->port);
481 }
482 fmt += 2;
483 } else {
484 msg[0] = '\0';
485 }
486
487 /* Use vsprintf for the rest of the formatting if any. */
488 if (fmt[0] != '\0') {
489 va_start(ap, fmt);
490 vsnprintf(msg+strlen(msg), sizeof(msg)-strlen(msg), fmt, ap);
491 va_end(ap);
492 }
493
494 /* Log the message if the log level allows it to be logged. */
495 if (level >= server.verbosity)
496 redisLog(level,"%s %s",type,msg);
497
498 /* Publish the message via Pub/Sub if it's not a debugging one. */
499 if (level != REDIS_DEBUG) {
500 channel = createStringObject(type,strlen(type));
501 payload = createStringObject(msg,strlen(msg));
502 pubsubPublishMessage(channel,payload);
503 decrRefCount(channel);
504 decrRefCount(payload);
505 }
506
507 /* Call the notification script if applicable. */
508 if (level == REDIS_WARNING && ri != NULL) {
509 sentinelRedisInstance *master = (ri->flags & SRI_MASTER) ?
510 ri : ri->master;
511 if (master->notification_script) {
512 sentinelScheduleScriptExecution(master->notification_script,
513 type,msg,NULL);
514 }
515 }
516 }
517
518 /* ============================ script execution ============================ */
519
520 /* Release a script job structure and all the associated data. */
521 void sentinelReleaseScriptJob(sentinelScriptJob *sj) {
522 int j = 0;
523
524 while(sj->argv[j]) sdsfree(sj->argv[j++]);
525 zfree(sj->argv);
526 zfree(sj);
527 }
528
529 #define SENTINEL_SCRIPT_MAX_ARGS 16
530 void sentinelScheduleScriptExecution(char *path, ...) {
531 va_list ap;
532 char *argv[SENTINEL_SCRIPT_MAX_ARGS+1];
533 int argc = 1;
534 sentinelScriptJob *sj;
535
536 va_start(ap, path);
537 while(argc < SENTINEL_SCRIPT_MAX_ARGS) {
538 argv[argc] = va_arg(ap,char*);
539 if (!argv[argc]) break;
540 argv[argc] = sdsnew(argv[argc]); /* Copy the string. */
541 argc++;
542 }
543 va_end(ap);
544 argv[0] = sdsnew(path);
545
546 sj = zmalloc(sizeof(*sj));
547 sj->flags = SENTINEL_SCRIPT_NONE;
548 sj->retry_num = 0;
549 sj->argv = zmalloc(sizeof(char*)*(argc+1));
550 sj->start_time = 0;
551 sj->pid = 0;
552 memcpy(sj->argv,argv,sizeof(char*)*(argc+1));
553
554 listAddNodeTail(sentinel.scripts_queue,sj);
555
556 /* Remove the oldest non running script if we already hit the limit. */
557 if (listLength(sentinel.scripts_queue) > SENTINEL_SCRIPT_MAX_QUEUE) {
558 listNode *ln;
559 listIter li;
560
561 listRewind(sentinel.scripts_queue,&li);
562 while ((ln = listNext(&li)) != NULL) {
563 sj = ln->value;
564
565 if (sj->flags & SENTINEL_SCRIPT_RUNNING) continue;
566 /* The first node is the oldest as we add on tail. */
567 listDelNode(sentinel.scripts_queue,ln);
568 sentinelReleaseScriptJob(sj);
569 break;
570 }
571 redisAssert(listLength(sentinel.scripts_queue) <=
572 SENTINEL_SCRIPT_MAX_QUEUE);
573 }
574 }
575
576 /* Lookup a script in the scripts queue via pid, and returns the list node
577 * (so that we can easily remove it from the queue if needed). */
578 listNode *sentinelGetScriptListNodeByPid(pid_t pid) {
579 listNode *ln;
580 listIter li;
581
582 listRewind(sentinel.scripts_queue,&li);
583 while ((ln = listNext(&li)) != NULL) {
584 sentinelScriptJob *sj = ln->value;
585
586 if ((sj->flags & SENTINEL_SCRIPT_RUNNING) && sj->pid == pid)
587 return ln;
588 }
589 return NULL;
590 }
591
592 /* Run pending scripts if we are not already at max number of running
593 * scripts. */
594 void sentinelRunPendingScripts(void) {
595 listNode *ln;
596 listIter li;
597 mstime_t now = mstime();
598
599 /* Find jobs that are not running and run them, from the top to the
600 * tail of the queue, so we run older jobs first. */
601 listRewind(sentinel.scripts_queue,&li);
602 while (sentinel.running_scripts < SENTINEL_SCRIPT_MAX_RUNNING &&
603 (ln = listNext(&li)) != NULL)
604 {
605 sentinelScriptJob *sj = ln->value;
606 pid_t pid;
607
608 /* Skip if already running. */
609 if (sj->flags & SENTINEL_SCRIPT_RUNNING) continue;
610
611 /* Skip if it's a retry, but not enough time has elapsed. */
612 if (sj->start_time && sj->start_time > now) continue;
613
614 sj->flags |= SENTINEL_SCRIPT_RUNNING;
615 sj->start_time = mstime();
616 sj->retry_num++;
617 pid = fork();
618
619 if (pid == -1) {
620 /* Parent (fork error).
621 * We report fork errors as signal 99, in order to unify the
622 * reporting with other kind of errors. */
623 sentinelEvent(REDIS_WARNING,"-script-error",NULL,
624 "%s %d %d", sj->argv[0], 99, 0);
625 sj->flags &= ~SENTINEL_SCRIPT_RUNNING;
626 sj->pid = 0;
627 } else if (pid == 0) {
628 /* Child */
629 execve(sj->argv[0],sj->argv,environ);
630 /* If we are here an error occurred. */
631 _exit(2); /* Don't retry execution. */
632 } else {
633 sentinel.running_scripts++;
634 sj->pid = pid;
635 sentinelEvent(REDIS_DEBUG,"+script-child",NULL,"%ld",(long)pid);
636 }
637 }
638 }
639
640 /* How much to delay the execution of a script that we need to retry after
641 * an error?
642 *
643 * We double the retry delay for every further retry we do. So for instance
644 * if RETRY_DELAY is set to 30 seconds and the max number of retries is 10
645 * starting from the second attempt to execute the script the delays are:
646 * 30 sec, 60 sec, 2 min, 4 min, 8 min, 16 min, 32 min, 64 min, 128 min. */
647 mstime_t sentinelScriptRetryDelay(int retry_num) {
648 mstime_t delay = SENTINEL_SCRIPT_RETRY_DELAY;
649
650 while (retry_num-- > 1) delay *= 2;
651 return delay;
652 }
653
654 /* Check for scripts that terminated, and remove them from the queue if the
655 * script terminated successfully. If instead the script was terminated by
656 * a signal, or returned exit code "1", it is scheduled to run again if
657 * the max number of retries did not already elapsed. */
658 void sentinelCollectTerminatedScripts(void) {
659 int statloc;
660 pid_t pid;
661
662 while ((pid = wait3(&statloc,WNOHANG,NULL)) > 0) {
663 int exitcode = WEXITSTATUS(statloc);
664 int bysignal = 0;
665 listNode *ln;
666 sentinelScriptJob *sj;
667
668 if (WIFSIGNALED(statloc)) bysignal = WTERMSIG(statloc);
669 sentinelEvent(REDIS_DEBUG,"-script-child",NULL,"%ld %d %d",
670 (long)pid, exitcode, bysignal);
671
672 ln = sentinelGetScriptListNodeByPid(pid);
673 if (ln == NULL) {
674 redisLog(REDIS_WARNING,"wait3() returned a pid (%ld) we can't find in our scripts execution queue!", (long)pid);
675 continue;
676 }
677 sj = ln->value;
678
679 /* If the script was terminated by a signal or returns an
680 * exit code of "1" (that means: please retry), we reschedule it
681 * if the max number of retries is not already reached. */
682 if ((bysignal || exitcode == 1) &&
683 sj->retry_num != SENTINEL_SCRIPT_MAX_RETRY)
684 {
685 sj->flags &= ~SENTINEL_SCRIPT_RUNNING;
686 sj->pid = 0;
687 sj->start_time = mstime() +
688 sentinelScriptRetryDelay(sj->retry_num);
689 } else {
690 /* Otherwise let's remove the script, but log the event if the
691 * execution did not terminated in the best of the ways. */
692 if (bysignal || exitcode != 0) {
693 sentinelEvent(REDIS_WARNING,"-script-error",NULL,
694 "%s %d %d", sj->argv[0], bysignal, exitcode);
695 }
696 listDelNode(sentinel.scripts_queue,ln);
697 sentinelReleaseScriptJob(sj);
698 sentinel.running_scripts--;
699 }
700 }
701 }
702
703 /* Kill scripts in timeout, they'll be collected by the
704 * sentinelCollectTerminatedScripts() function. */
705 void sentinelKillTimedoutScripts(void) {
706 listNode *ln;
707 listIter li;
708 mstime_t now = mstime();
709
710 listRewind(sentinel.scripts_queue,&li);
711 while ((ln = listNext(&li)) != NULL) {
712 sentinelScriptJob *sj = ln->value;
713
714 if (sj->flags & SENTINEL_SCRIPT_RUNNING &&
715 (now - sj->start_time) > SENTINEL_SCRIPT_MAX_RUNTIME)
716 {
717 sentinelEvent(REDIS_WARNING,"-script-timeout",NULL,"%s %ld",
718 sj->argv[0], (long)sj->pid);
719 kill(sj->pid,SIGKILL);
720 }
721 }
722 }
723
724 /* Implements SENTINEL PENDING-SCRIPTS command. */
725 void sentinelPendingScriptsCommand(redisClient *c) {
726 listNode *ln;
727 listIter li;
728
729 addReplyMultiBulkLen(c,listLength(sentinel.scripts_queue));
730 listRewind(sentinel.scripts_queue,&li);
731 while ((ln = listNext(&li)) != NULL) {
732 sentinelScriptJob *sj = ln->value;
733 int j = 0;
734
735 addReplyMultiBulkLen(c,10);
736
737 addReplyBulkCString(c,"argv");
738 while (sj->argv[j]) j++;
739 addReplyMultiBulkLen(c,j);
740 j = 0;
741 while (sj->argv[j]) addReplyBulkCString(c,sj->argv[j++]);
742
743 addReplyBulkCString(c,"flags");
744 addReplyBulkCString(c,
745 (sj->flags & SENTINEL_SCRIPT_RUNNING) ? "running" : "scheduled");
746
747 addReplyBulkCString(c,"pid");
748 addReplyBulkLongLong(c,sj->pid);
749
750 if (sj->flags & SENTINEL_SCRIPT_RUNNING) {
751 addReplyBulkCString(c,"run-time");
752 addReplyBulkLongLong(c,mstime() - sj->start_time);
753 } else {
754 mstime_t delay = sj->start_time ? (sj->start_time-mstime()) : 0;
755 if (delay < 0) delay = 0;
756 addReplyBulkCString(c,"run-delay");
757 addReplyBulkLongLong(c,delay);
758 }
759
760 addReplyBulkCString(c,"retry-num");
761 addReplyBulkLongLong(c,sj->retry_num);
762 }
763 }
764
765 /* ========================== sentinelRedisInstance ========================= */
766
767 /* Create a redis instance, the following fields must be populated by the
768 * caller if needed:
769 * runid: set to NULL but will be populated once INFO output is received.
770 * info_refresh: is set to 0 to mean that we never received INFO so far.
771 *
772 * If SRI_MASTER is set into initial flags the instance is added to
773 * sentinel.masters table.
774 *
775 * if SRI_SLAVE or SRI_SENTINEL is set then 'master' must be not NULL and the
776 * instance is added into master->slaves or master->sentinels table.
777 *
778 * If the instance is a slave or sentinel, the name parameter is ignored and
779 * is created automatically as hostname:port.
780 *
781 * The function fails if hostname can't be resolved or port is out of range.
782 * When this happens NULL is returned and errno is set accordingly to the
783 * createSentinelAddr() function.
784 *
785 * The function may also fail and return NULL with errno set to EBUSY if
786 * a master or slave with the same name already exists. */
787 sentinelRedisInstance *createSentinelRedisInstance(char *name, int flags, char *hostname, int port, int quorum, sentinelRedisInstance *master) {
788 sentinelRedisInstance *ri;
789 sentinelAddr *addr;
790 dict *table;
791 char slavename[128], *sdsname;
792
793 redisAssert(flags & (SRI_MASTER|SRI_SLAVE|SRI_SENTINEL));
794 redisAssert((flags & SRI_MASTER) || master != NULL);
795
796 /* Check address validity. */
797 addr = createSentinelAddr(hostname,port);
798 if (addr == NULL) return NULL;
799
800 /* For slaves and sentinel we use ip:port as name. */
801 if (flags & (SRI_SLAVE|SRI_SENTINEL)) {
802 snprintf(slavename,sizeof(slavename),"%s:%d",hostname,port);
803 name = slavename;
804 }
805
806 /* Make sure the entry is not duplicated. This may happen when the same
807 * name for a master is used multiple times inside the configuration or
808 * if we try to add multiple times a slave or sentinel with same ip/port
809 * to a master. */
810 if (flags & SRI_MASTER) table = sentinel.masters;
811 else if (flags & SRI_SLAVE) table = master->slaves;
812 else if (flags & SRI_SENTINEL) table = master->sentinels;
813 sdsname = sdsnew(name);
814 if (dictFind(table,sdsname)) {
815 sdsfree(sdsname);
816 errno = EBUSY;
817 return NULL;
818 }
819
820 /* Create the instance object. */
821 ri = zmalloc(sizeof(*ri));
822 /* Note that all the instances are started in the disconnected state,
823 * the event loop will take care of connecting them. */
824 ri->flags = flags | SRI_DISCONNECTED;
825 ri->name = sdsname;
826 ri->runid = NULL;
827 ri->addr = addr;
828 ri->cc = NULL;
829 ri->pc = NULL;
830 ri->pending_commands = 0;
831 ri->cc_conn_time = 0;
832 ri->pc_conn_time = 0;
833 ri->pc_last_activity = 0;
834 ri->last_avail_time = mstime();
835 ri->last_pong_time = mstime();
836 ri->last_pub_time = mstime();
837 ri->last_hello_time = mstime();
838 ri->last_master_down_reply_time = mstime();
839 ri->s_down_since_time = 0;
840 ri->o_down_since_time = 0;
841 ri->down_after_period = master ? master->down_after_period :
842 SENTINEL_DOWN_AFTER_PERIOD;
843 ri->master_link_down_time = 0;
844 ri->slave_priority = SENTINEL_DEFAULT_SLAVE_PRIORITY;
845 ri->slave_reconf_sent_time = 0;
846 ri->slave_master_host = NULL;
847 ri->slave_master_port = 0;
848 ri->slave_master_link_status = SENTINEL_MASTER_LINK_STATUS_DOWN;
849 ri->sentinels = dictCreate(&instancesDictType,NULL);
850 ri->quorum = quorum;
851 ri->parallel_syncs = SENTINEL_DEFAULT_PARALLEL_SYNCS;
852 ri->master = master;
853 ri->slaves = dictCreate(&instancesDictType,NULL);
854 ri->info_refresh = 0;
855
856 /* Failover state. */
857 ri->leader = NULL;
858 ri->failover_state = SENTINEL_FAILOVER_STATE_NONE;
859 ri->failover_state_change_time = 0;
860 ri->failover_start_time = 0;
861 ri->failover_timeout = SENTINEL_DEFAULT_FAILOVER_TIMEOUT;
862 ri->promoted_slave = NULL;
863 ri->notification_script = NULL;
864 ri->client_reconfig_script = NULL;
865
866 /* Add into the right table. */
867 dictAdd(table, ri->name, ri);
868 return ri;
869 }
870
871 /* Release this instance and all its slaves, sentinels, hiredis connections.
872 * This function also takes care of unlinking the instance from the main
873 * masters table (if it is a master) or from its master sentinels/slaves table
874 * if it is a slave or sentinel. */
875 void releaseSentinelRedisInstance(sentinelRedisInstance *ri) {
876 /* Release all its slaves or sentinels if any. */
877 dictRelease(ri->sentinels);
878 dictRelease(ri->slaves);
879
880 /* Release hiredis connections. */
881 if (ri->cc) sentinelKillLink(ri,ri->cc);
882 if (ri->pc) sentinelKillLink(ri,ri->pc);
883
884 /* Free other resources. */
885 sdsfree(ri->name);
886 sdsfree(ri->runid);
887 sdsfree(ri->notification_script);
888 sdsfree(ri->client_reconfig_script);
889 sdsfree(ri->slave_master_host);
890 sdsfree(ri->leader);
891 releaseSentinelAddr(ri->addr);
892
893 /* Clear state into the master if needed. */
894 if ((ri->flags & SRI_SLAVE) && (ri->flags & SRI_PROMOTED) && ri->master)
895 ri->master->promoted_slave = NULL;
896
897 zfree(ri);
898 }
899
900 /* Lookup a slave in a master Redis instance, by ip and port. */
901 sentinelRedisInstance *sentinelRedisInstanceLookupSlave(
902 sentinelRedisInstance *ri, char *ip, int port)
903 {
904 sds key;
905 sentinelRedisInstance *slave;
906
907 redisAssert(ri->flags & SRI_MASTER);
908 key = sdscatprintf(sdsempty(),"%s:%d",ip,port);
909 slave = dictFetchValue(ri->slaves,key);
910 sdsfree(key);
911 return slave;
912 }
913
914 /* Return the name of the type of the instance as a string. */
915 const char *sentinelRedisInstanceTypeStr(sentinelRedisInstance *ri) {
916 if (ri->flags & SRI_MASTER) return "master";
917 else if (ri->flags & SRI_SLAVE) return "slave";
918 else if (ri->flags & SRI_SENTINEL) return "sentinel";
919 else return "unknown";
920 }
921
922 /* This function removes all the instances found in the dictionary of instances
923 * 'd', having either:
924 *
925 * 1) The same ip/port as specified.
926 * 2) The same runid.
927 *
928 * "1" and "2" don't need to verify at the same time, just one is enough.
929 * If "runid" is NULL it is not checked.
930 * Similarly if "ip" is NULL it is not checked.
931 *
932 * This function is useful because every time we add a new Sentinel into
933 * a master's Sentinels dictionary, we want to be very sure about not
934 * having duplicated instances for any reason. This is so important because
935 * we use those other sentinels in order to run our quorum protocol to
936 * understand if it's time to proceeed with the fail over.
937 *
938 * Making sure no duplication is possible we greately improve the robustness
939 * of the quorum (otherwise we may end counting the same instance multiple
940 * times for some reason).
941 *
942 * The function returns the number of Sentinels removed. */
943 int removeMatchingSentinelsFromMaster(sentinelRedisInstance *master, char *ip, int port, char *runid) {
944 dictIterator *di;
945 dictEntry *de;
946 int removed = 0;
947
948 di = dictGetSafeIterator(master->sentinels);
949 while((de = dictNext(di)) != NULL) {
950 sentinelRedisInstance *ri = dictGetVal(de);
951
952 if ((ri->runid && runid && strcmp(ri->runid,runid) == 0) ||
953 (ip && strcmp(ri->addr->ip,ip) == 0 && port == ri->addr->port))
954 {
955 dictDelete(master->sentinels,ri->name);
956 removed++;
957 }
958 }
959 dictReleaseIterator(di);
960 return removed;
961 }
962
963 /* Search an instance with the same runid, ip and port into a dictionary
964 * of instances. Return NULL if not found, otherwise return the instance
965 * pointer.
966 *
967 * runid or ip can be NULL. In such a case the search is performed only
968 * by the non-NULL field. */
969 sentinelRedisInstance *getSentinelRedisInstanceByAddrAndRunID(dict *instances, char *ip, int port, char *runid) {
970 dictIterator *di;
971 dictEntry *de;
972 sentinelRedisInstance *instance = NULL;
973
974 redisAssert(ip || runid); /* User must pass at least one search param. */
975 di = dictGetIterator(instances);
976 while((de = dictNext(di)) != NULL) {
977 sentinelRedisInstance *ri = dictGetVal(de);
978
979 if (runid && !ri->runid) continue;
980 if ((runid == NULL || strcmp(ri->runid, runid) == 0) &&
981 (ip == NULL || (strcmp(ri->addr->ip, ip) == 0 &&
982 ri->addr->port == port)))
983 {
984 instance = ri;
985 break;
986 }
987 }
988 dictReleaseIterator(di);
989 return instance;
990 }
991
992 /* Simple master lookup by name */
993 sentinelRedisInstance *sentinelGetMasterByName(char *name) {
994 sentinelRedisInstance *ri;
995 sds sdsname = sdsnew(name);
996
997 ri = dictFetchValue(sentinel.masters,sdsname);
998 sdsfree(sdsname);
999 return ri;
1000 }
1001
1002 /* Add the specified flags to all the instances in the specified dictionary. */
1003 void sentinelAddFlagsToDictOfRedisInstances(dict *instances, int flags) {
1004 dictIterator *di;
1005 dictEntry *de;
1006
1007 di = dictGetIterator(instances);
1008 while((de = dictNext(di)) != NULL) {
1009 sentinelRedisInstance *ri = dictGetVal(de);
1010 ri->flags |= flags;
1011 }
1012 dictReleaseIterator(di);
1013 }
1014
1015 /* Remove the specified flags to all the instances in the specified
1016 * dictionary. */
1017 void sentinelDelFlagsToDictOfRedisInstances(dict *instances, int flags) {
1018 dictIterator *di;
1019 dictEntry *de;
1020
1021 di = dictGetIterator(instances);
1022 while((de = dictNext(di)) != NULL) {
1023 sentinelRedisInstance *ri = dictGetVal(de);
1024 ri->flags &= ~flags;
1025 }
1026 dictReleaseIterator(di);
1027 }
1028
1029 /* Reset the state of a monitored master:
1030 * 1) Remove all slaves.
1031 * 2) Remove all sentinels.
1032 * 3) Remove most of the flags resulting from runtime operations.
1033 * 4) Reset timers to their default value.
1034 * 5) In the process of doing this undo the failover if in progress.
1035 * 6) Disconnect the connections with the master (will reconnect automatically).
1036 */
1037 void sentinelResetMaster(sentinelRedisInstance *ri, int flags) {
1038 redisAssert(ri->flags & SRI_MASTER);
1039 dictRelease(ri->slaves);
1040 dictRelease(ri->sentinels);
1041 ri->slaves = dictCreate(&instancesDictType,NULL);
1042 ri->sentinels = dictCreate(&instancesDictType,NULL);
1043 if (ri->cc) sentinelKillLink(ri,ri->cc);
1044 if (ri->pc) sentinelKillLink(ri,ri->pc);
1045 ri->flags &= SRI_MASTER|SRI_CAN_FAILOVER|SRI_DISCONNECTED;
1046 if (ri->leader) {
1047 sdsfree(ri->leader);
1048 ri->leader = NULL;
1049 }
1050 ri->failover_state = SENTINEL_FAILOVER_STATE_NONE;
1051 ri->failover_state_change_time = 0;
1052 ri->failover_start_time = 0;
1053 ri->promoted_slave = NULL;
1054 sdsfree(ri->runid);
1055 sdsfree(ri->slave_master_host);
1056 ri->runid = NULL;
1057 ri->slave_master_host = NULL;
1058 ri->last_avail_time = mstime();
1059 ri->last_pong_time = mstime();
1060 if (flags & SENTINEL_GENERATE_EVENT)
1061 sentinelEvent(REDIS_WARNING,"+reset-master",ri,"%@");
1062 }
1063
1064 /* Call sentinelResetMaster() on every master with a name matching the specified
1065 * pattern. */
1066 int sentinelResetMastersByPattern(char *pattern, int flags) {
1067 dictIterator *di;
1068 dictEntry *de;
1069 int reset = 0;
1070
1071 di = dictGetIterator(sentinel.masters);
1072 while((de = dictNext(di)) != NULL) {
1073 sentinelRedisInstance *ri = dictGetVal(de);
1074
1075 if (ri->name) {
1076 if (stringmatch(pattern,ri->name,0)) {
1077 sentinelResetMaster(ri,flags);
1078 reset++;
1079 }
1080 }
1081 }
1082 dictReleaseIterator(di);
1083 return reset;
1084 }
1085
1086 /* Reset the specified master with sentinelResetMaster(), and also change
1087 * the ip:port address, but take the name of the instance unmodified.
1088 *
1089 * This is used to handle the +switch-master and +redirect-to-master events.
1090 *
1091 * The function returns REDIS_ERR if the address can't be resolved for some
1092 * reason. Otherwise REDIS_OK is returned.
1093 *
1094 * TODO: make this reset so that original sentinels are re-added with
1095 * same ip / port / runid.
1096 */
1097
1098 int sentinelResetMasterAndChangeAddress(sentinelRedisInstance *master, char *ip, int port) {
1099 sentinelAddr *oldaddr, *newaddr;
1100
1101 newaddr = createSentinelAddr(ip,port);
1102 if (newaddr == NULL) return REDIS_ERR;
1103 sentinelResetMaster(master,SENTINEL_NO_FLAGS);
1104 oldaddr = master->addr;
1105 master->addr = newaddr;
1106 /* Release the old address at the end so we are safe even if the function
1107 * gets the master->addr->ip and master->addr->port as arguments. */
1108 releaseSentinelAddr(oldaddr);
1109 return REDIS_OK;
1110 }
1111
1112 /* ============================ Config handling ============================= */
1113 char *sentinelHandleConfiguration(char **argv, int argc) {
1114 sentinelRedisInstance *ri;
1115
1116 if (!strcasecmp(argv[0],"monitor") && argc == 5) {
1117 /* monitor <name> <host> <port> <quorum> */
1118 int quorum = atoi(argv[4]);
1119
1120 if (quorum <= 0) return "Quorum must be 1 or greater.";
1121 if (createSentinelRedisInstance(argv[1],SRI_MASTER,argv[2],
1122 atoi(argv[3]),quorum,NULL) == NULL)
1123 {
1124 switch(errno) {
1125 case EBUSY: return "Duplicated master name.";
1126 case ENOENT: return "Can't resolve master instance hostname.";
1127 case EINVAL: return "Invalid port number";
1128 }
1129 }
1130 } else if (!strcasecmp(argv[0],"down-after-milliseconds") && argc == 3) {
1131 /* down-after-milliseconds <name> <milliseconds> */
1132 ri = sentinelGetMasterByName(argv[1]);
1133 if (!ri) return "No such master with specified name.";
1134 ri->down_after_period = atoi(argv[2]);
1135 if (ri->down_after_period <= 0)
1136 return "negative or zero time parameter.";
1137 } else if (!strcasecmp(argv[0],"failover-timeout") && argc == 3) {
1138 /* failover-timeout <name> <milliseconds> */
1139 ri = sentinelGetMasterByName(argv[1]);
1140 if (!ri) return "No such master with specified name.";
1141 ri->failover_timeout = atoi(argv[2]);
1142 if (ri->failover_timeout <= 0)
1143 return "negative or zero time parameter.";
1144 } else if (!strcasecmp(argv[0],"can-failover") && argc == 3) {
1145 /* can-failover <name> <yes/no> */
1146 int yesno = yesnotoi(argv[2]);
1147
1148 ri = sentinelGetMasterByName(argv[1]);
1149 if (!ri) return "No such master with specified name.";
1150 if (yesno == -1) return "Argument must be either yes or no.";
1151 if (yesno)
1152 ri->flags |= SRI_CAN_FAILOVER;
1153 else
1154 ri->flags &= ~SRI_CAN_FAILOVER;
1155 } else if (!strcasecmp(argv[0],"parallel-syncs") && argc == 3) {
1156 /* parallel-syncs <name> <milliseconds> */
1157 ri = sentinelGetMasterByName(argv[1]);
1158 if (!ri) return "No such master with specified name.";
1159 ri->parallel_syncs = atoi(argv[2]);
1160 } else if (!strcasecmp(argv[0],"notification-script") && argc == 3) {
1161 /* notification-script <name> <path> */
1162 ri = sentinelGetMasterByName(argv[1]);
1163 if (!ri) return "No such master with specified name.";
1164 if (access(argv[2],X_OK) == -1)
1165 return "Notification script seems non existing or non executable.";
1166 ri->notification_script = sdsnew(argv[2]);
1167 } else if (!strcasecmp(argv[0],"client-reconfig-script") && argc == 3) {
1168 /* client-reconfig-script <name> <path> */
1169 ri = sentinelGetMasterByName(argv[1]);
1170 if (!ri) return "No such master with specified name.";
1171 if (access(argv[2],X_OK) == -1)
1172 return "Client reconfiguration script seems non existing or "
1173 "non executable.";
1174 ri->client_reconfig_script = sdsnew(argv[2]);
1175 } else {
1176 return "Unrecognized sentinel configuration statement.";
1177 }
1178 return NULL;
1179 }
1180
1181 /* ====================== hiredis connection handling ======================= */
1182
1183 /* Completely disconnect an hiredis link from an instance. */
1184 void sentinelKillLink(sentinelRedisInstance *ri, redisAsyncContext *c) {
1185 if (ri->cc == c) {
1186 ri->cc = NULL;
1187 ri->pending_commands = 0;
1188 }
1189 if (ri->pc == c) ri->pc = NULL;
1190 c->data = NULL;
1191 ri->flags |= SRI_DISCONNECTED;
1192 redisAsyncFree(c);
1193 }
1194
1195 /* This function takes an hiredis context that is in an error condition
1196 * and make sure to mark the instance as disconnected performing the
1197 * cleanup needed.
1198 *
1199 * Note: we don't free the hiredis context as hiredis will do it for us
1200 * for async conenctions. */
1201 void sentinelDisconnectInstanceFromContext(const redisAsyncContext *c) {
1202 sentinelRedisInstance *ri = c->data;
1203 int pubsub;
1204
1205 if (ri == NULL) return; /* The instance no longer exists. */
1206
1207 pubsub = (ri->pc == c);
1208 sentinelEvent(REDIS_DEBUG, pubsub ? "-pubsub-link" : "-cmd-link", ri,
1209 "%@ #%s", c->errstr);
1210 if (pubsub)
1211 ri->pc = NULL;
1212 else
1213 ri->cc = NULL;
1214 ri->flags |= SRI_DISCONNECTED;
1215 }
1216
1217 void sentinelLinkEstablishedCallback(const redisAsyncContext *c, int status) {
1218 if (status != REDIS_OK) {
1219 sentinelDisconnectInstanceFromContext(c);
1220 } else {
1221 sentinelRedisInstance *ri = c->data;
1222 int pubsub = (ri->pc == c);
1223
1224 sentinelEvent(REDIS_DEBUG, pubsub ? "+pubsub-link" : "+cmd-link", ri,
1225 "%@");
1226 }
1227 }
1228
1229 void sentinelDisconnectCallback(const redisAsyncContext *c, int status) {
1230 sentinelDisconnectInstanceFromContext(c);
1231 }
1232
1233 /* Create the async connections for the specified instance if the instance
1234 * is disconnected. Note that the SRI_DISCONNECTED flag is set even if just
1235 * one of the two links (commands and pub/sub) is missing. */
1236 void sentinelReconnectInstance(sentinelRedisInstance *ri) {
1237 if (!(ri->flags & SRI_DISCONNECTED)) return;
1238
1239 /* Commands connection. */
1240 if (ri->cc == NULL) {
1241 ri->cc = redisAsyncConnect(ri->addr->ip,ri->addr->port);
1242 if (ri->cc->err) {
1243 sentinelEvent(REDIS_DEBUG,"-cmd-link-reconnection",ri,"%@ #%s",
1244 ri->cc->errstr);
1245 sentinelKillLink(ri,ri->cc);
1246 } else {
1247 ri->cc_conn_time = mstime();
1248 ri->cc->data = ri;
1249 redisAeAttach(server.el,ri->cc);
1250 redisAsyncSetConnectCallback(ri->cc,
1251 sentinelLinkEstablishedCallback);
1252 redisAsyncSetDisconnectCallback(ri->cc,
1253 sentinelDisconnectCallback);
1254 }
1255 }
1256 /* Pub / Sub */
1257 if ((ri->flags & SRI_MASTER) && ri->pc == NULL) {
1258 ri->pc = redisAsyncConnect(ri->addr->ip,ri->addr->port);
1259 if (ri->pc->err) {
1260 sentinelEvent(REDIS_DEBUG,"-pubsub-link-reconnection",ri,"%@ #%s",
1261 ri->pc->errstr);
1262 sentinelKillLink(ri,ri->pc);
1263 } else {
1264 int retval;
1265
1266 ri->pc_conn_time = mstime();
1267 ri->pc->data = ri;
1268 redisAeAttach(server.el,ri->pc);
1269 redisAsyncSetConnectCallback(ri->pc,
1270 sentinelLinkEstablishedCallback);
1271 redisAsyncSetDisconnectCallback(ri->pc,
1272 sentinelDisconnectCallback);
1273 /* Now we subscribe to the Sentinels "Hello" channel. */
1274 retval = redisAsyncCommand(ri->pc,
1275 sentinelReceiveHelloMessages, NULL, "SUBSCRIBE %s",
1276 SENTINEL_HELLO_CHANNEL);
1277 if (retval != REDIS_OK) {
1278 /* If we can't subscribe, the Pub/Sub connection is useless
1279 * and we can simply disconnect it and try again. */
1280 sentinelKillLink(ri,ri->pc);
1281 return;
1282 }
1283 }
1284 }
1285 /* Clear the DISCONNECTED flags only if we have both the connections
1286 * (or just the commands connection if this is a slave or a
1287 * sentinel instance). */
1288 if (ri->cc && (ri->flags & (SRI_SLAVE|SRI_SENTINEL) || ri->pc))
1289 ri->flags &= ~SRI_DISCONNECTED;
1290 }
1291
1292 /* ======================== Redis instances pinging ======================== */
1293
1294 /* Process the INFO output from masters. */
1295 void sentinelRefreshInstanceInfo(sentinelRedisInstance *ri, const char *info) {
1296 sds *lines;
1297 int numlines, j;
1298 int role = 0;
1299 int runid_changed = 0; /* true if runid changed. */
1300 int first_runid = 0; /* true if this is the first runid we receive. */
1301
1302 /* The following fields must be reset to a given value in the case they
1303 * are not found at all in the INFO output. */
1304 ri->master_link_down_time = 0;
1305
1306 /* Process line by line. */
1307 lines = sdssplitlen(info,strlen(info),"\r\n",2,&numlines);
1308 for (j = 0; j < numlines; j++) {
1309 sentinelRedisInstance *slave;
1310 sds l = lines[j];
1311
1312 /* run_id:<40 hex chars>*/
1313 if (sdslen(l) >= 47 && !memcmp(l,"run_id:",7)) {
1314 if (ri->runid == NULL) {
1315 ri->runid = sdsnewlen(l+7,40);
1316 first_runid = 1;
1317 } else {
1318 if (strncmp(ri->runid,l+7,40) != 0) {
1319 runid_changed = 1;
1320 sentinelEvent(REDIS_NOTICE,"+reboot",ri,"%@");
1321 sdsfree(ri->runid);
1322 ri->runid = sdsnewlen(l+7,40);
1323 }
1324 }
1325 }
1326
1327 /* slave0:<ip>,<port>,<state> */
1328 if ((ri->flags & SRI_MASTER) &&
1329 sdslen(l) >= 7 &&
1330 !memcmp(l,"slave",5) && isdigit(l[5]))
1331 {
1332 char *ip, *port, *end;
1333
1334 ip = strchr(l,':'); if (!ip) continue;
1335 ip++; /* Now ip points to start of ip address. */
1336 port = strchr(ip,','); if (!port) continue;
1337 *port = '\0'; /* nul term for easy access. */
1338 port++; /* Now port points to start of port number. */
1339 end = strchr(port,','); if (!end) continue;
1340 *end = '\0'; /* nul term for easy access. */
1341
1342 /* Check if we already have this slave into our table,
1343 * otherwise add it. */
1344 if (sentinelRedisInstanceLookupSlave(ri,ip,atoi(port)) == NULL) {
1345 if ((slave = createSentinelRedisInstance(NULL,SRI_SLAVE,ip,
1346 atoi(port), ri->quorum,ri)) != NULL)
1347 {
1348 sentinelEvent(REDIS_NOTICE,"+slave",slave,"%@");
1349 }
1350 }
1351 }
1352
1353 /* master_link_down_since_seconds:<seconds> */
1354 if (sdslen(l) >= 32 &&
1355 !memcmp(l,"master_link_down_since_seconds",30))
1356 {
1357 ri->master_link_down_time = strtoll(l+31,NULL,10)*1000;
1358 }
1359
1360 /* role:<role> */
1361 if (!memcmp(l,"role:master",11)) role = SRI_MASTER;
1362 else if (!memcmp(l,"role:slave",10)) role = SRI_SLAVE;
1363
1364 if (role == SRI_SLAVE) {
1365 /* master_host:<host> */
1366 if (sdslen(l) >= 12 && !memcmp(l,"master_host:",12)) {
1367 sdsfree(ri->slave_master_host);
1368 ri->slave_master_host = sdsnew(l+12);
1369 }
1370
1371 /* master_port:<port> */
1372 if (sdslen(l) >= 12 && !memcmp(l,"master_port:",12))
1373 ri->slave_master_port = atoi(l+12);
1374
1375 /* master_link_status:<status> */
1376 if (sdslen(l) >= 19 && !memcmp(l,"master_link_status:",19)) {
1377 ri->slave_master_link_status =
1378 (strcasecmp(l+19,"up") == 0) ?
1379 SENTINEL_MASTER_LINK_STATUS_UP :
1380 SENTINEL_MASTER_LINK_STATUS_DOWN;
1381 }
1382 }
1383 }
1384 ri->info_refresh = mstime();
1385 sdsfreesplitres(lines,numlines);
1386
1387 /* ---------------------------- Acting half ----------------------------- */
1388 if (sentinel.tilt) return;
1389
1390 /* Act if a master turned into a slave. */
1391 if ((ri->flags & SRI_MASTER) && role == SRI_SLAVE) {
1392 if (first_runid && ri->slave_master_host) {
1393 /* If it is the first time we receive INFO from it, but it's
1394 * a slave while it was configured as a master, we want to monitor
1395 * its master instead. */
1396 sentinelEvent(REDIS_WARNING,"+redirect-to-master",ri,
1397 "%s %s %d %s %d",
1398 ri->name, ri->addr->ip, ri->addr->port,
1399 ri->slave_master_host, ri->slave_master_port);
1400 sentinelResetMasterAndChangeAddress(ri,ri->slave_master_host,
1401 ri->slave_master_port);
1402 return;
1403 }
1404 }
1405
1406 /* Act if a slave turned into a master. */
1407 if ((ri->flags & SRI_SLAVE) && role == SRI_MASTER) {
1408 if (!(ri->master->flags & SRI_FAILOVER_IN_PROGRESS) &&
1409 (runid_changed || first_runid))
1410 {
1411 /* If a slave turned into maser but:
1412 *
1413 * 1) Failover not in progress.
1414 * 2) RunID hs changed, or its the first time we see an INFO output.
1415 *
1416 * We assume this is a reboot with a wrong configuration.
1417 * Log the event and remove the slave. */
1418 int retval;
1419
1420 sentinelEvent(REDIS_WARNING,"-slave-restart-as-master",ri,"%@ #removing it from the attached slaves");
1421 retval = dictDelete(ri->master->slaves,ri->name);
1422 redisAssert(retval == REDIS_OK);
1423 return;
1424 } else if (ri->flags & SRI_PROMOTED) {
1425 /* If this is a promoted slave we can change state to the
1426 * failover state machine. */
1427 if (ri->master &&
1428 (ri->master->flags & SRI_FAILOVER_IN_PROGRESS) &&
1429 (ri->master->flags & SRI_I_AM_THE_LEADER) &&
1430 (ri->master->failover_state ==
1431 SENTINEL_FAILOVER_STATE_WAIT_PROMOTION))
1432 {
1433 ri->master->failover_state = SENTINEL_FAILOVER_STATE_RECONF_SLAVES;
1434 ri->master->failover_state_change_time = mstime();
1435 sentinelEvent(REDIS_WARNING,"+promoted-slave",ri,"%@");
1436 sentinelEvent(REDIS_WARNING,"+failover-state-reconf-slaves",
1437 ri->master,"%@");
1438 }
1439 } else {
1440 /* Otherwise we interpret this as the start of the failover. */
1441 if (ri->master &&
1442 (ri->master->flags & SRI_FAILOVER_IN_PROGRESS) == 0)
1443 {
1444 ri->master->flags |= SRI_FAILOVER_IN_PROGRESS;
1445 sentinelEvent(REDIS_WARNING,"failover-detected",ri->master,"%@");
1446 ri->master->failover_state = SENTINEL_FAILOVER_STATE_DETECT_END;
1447 ri->master->failover_state_change_time = mstime();
1448 ri->master->promoted_slave = ri;
1449 ri->flags |= SRI_PROMOTED;
1450 /* We are an observer, so we can only assume that the leader
1451 * is reconfiguring the slave instances. For this reason we
1452 * set all the instances as RECONF_SENT waiting for progresses
1453 * on this side. */
1454 sentinelAddFlagsToDictOfRedisInstances(ri->master->slaves,
1455 SRI_RECONF_SENT);
1456 }
1457 }
1458 }
1459
1460 /* Detect if the slave that is in the process of being reconfigured
1461 * changed state. */
1462 if ((ri->flags & SRI_SLAVE) && role == SRI_SLAVE &&
1463 (ri->flags & (SRI_RECONF_SENT|SRI_RECONF_INPROG)))
1464 {
1465 /* SRI_RECONF_SENT -> SRI_RECONF_INPROG. */
1466 if ((ri->flags & SRI_RECONF_SENT) &&
1467 ri->slave_master_host &&
1468 strcmp(ri->slave_master_host,
1469 ri->master->promoted_slave->addr->ip) == 0 &&
1470 ri->slave_master_port == ri->master->promoted_slave->addr->port)
1471 {
1472 ri->flags &= ~SRI_RECONF_SENT;
1473 ri->flags |= SRI_RECONF_INPROG;
1474 sentinelEvent(REDIS_NOTICE,"+slave-reconf-inprog",ri,"%@");
1475 }
1476
1477 /* SRI_RECONF_INPROG -> SRI_RECONF_DONE */
1478 if ((ri->flags & SRI_RECONF_INPROG) &&
1479 ri->slave_master_link_status == SENTINEL_MASTER_LINK_STATUS_UP)
1480 {
1481 ri->flags &= ~SRI_RECONF_INPROG;
1482 ri->flags |= SRI_RECONF_DONE;
1483 sentinelEvent(REDIS_NOTICE,"+slave-reconf-done",ri,"%@");
1484 /* If we are moving forward (a new slave is now configured)
1485 * we update the change_time as we are conceptually passing
1486 * to the next slave. */
1487 ri->failover_state_change_time = mstime();
1488 }
1489 }
1490 }
1491
1492 void sentinelInfoReplyCallback(redisAsyncContext *c, void *reply, void *privdata) {
1493 sentinelRedisInstance *ri = c->data;
1494 redisReply *r;
1495
1496 if (ri) ri->pending_commands--;
1497 if (!reply || !ri) return;
1498 r = reply;
1499
1500 if (r->type == REDIS_REPLY_STRING) {
1501 sentinelRefreshInstanceInfo(ri,r->str);
1502 }
1503 }
1504
1505 /* Just discard the reply. We use this when we are not monitoring the return
1506 * value of the command but its effects directly. */
1507 void sentinelDiscardReplyCallback(redisAsyncContext *c, void *reply, void *privdata) {
1508 sentinelRedisInstance *ri = c->data;
1509
1510 if (ri) ri->pending_commands--;
1511 }
1512
1513 void sentinelPingReplyCallback(redisAsyncContext *c, void *reply, void *privdata) {
1514 sentinelRedisInstance *ri = c->data;
1515 redisReply *r;
1516
1517 if (ri) ri->pending_commands--;
1518 if (!reply || !ri) return;
1519 r = reply;
1520
1521 if (r->type == REDIS_REPLY_STATUS ||
1522 r->type == REDIS_REPLY_ERROR) {
1523 /* Update the "instance available" field only if this is an
1524 * acceptable reply. */
1525 if (strncmp(r->str,"PONG",4) == 0 ||
1526 strncmp(r->str,"LOADING",7) == 0 ||
1527 strncmp(r->str,"MASTERDOWN",10) == 0)
1528 {
1529 ri->last_avail_time = mstime();
1530 }
1531 }
1532 ri->last_pong_time = mstime();
1533 }
1534
1535 /* This is called when we get the reply about the PUBLISH command we send
1536 * to the master to advertise this sentinel. */
1537 void sentinelPublishReplyCallback(redisAsyncContext *c, void *reply, void *privdata) {
1538 sentinelRedisInstance *ri = c->data;
1539 redisReply *r;
1540
1541 if (ri) ri->pending_commands--;
1542 if (!reply || !ri) return;
1543 r = reply;
1544
1545 /* Only update pub_time if we actually published our message. Otherwise
1546 * we'll retry against in 100 milliseconds. */
1547 if (r->type != REDIS_REPLY_ERROR)
1548 ri->last_pub_time = mstime();
1549 }
1550
1551 /* This is our Pub/Sub callback for the Hello channel. It's useful in order
1552 * to discover other sentinels attached at the same master. */
1553 void sentinelReceiveHelloMessages(redisAsyncContext *c, void *reply, void *privdata) {
1554 sentinelRedisInstance *ri = c->data;
1555 redisReply *r;
1556
1557 if (!reply || !ri) return;
1558 r = reply;
1559
1560 /* Update the last activity in the pubsub channel. Note that since we
1561 * receive our messages as well this timestamp can be used to detect
1562 * if the link is probably diconnected even if it seems otherwise. */
1563 ri->pc_last_activity = mstime();
1564
1565 /* Sanity check in the reply we expect, so that the code that follows
1566 * can avoid to check for details. */
1567 if (r->type != REDIS_REPLY_ARRAY ||
1568 r->elements != 3 ||
1569 r->element[0]->type != REDIS_REPLY_STRING ||
1570 r->element[1]->type != REDIS_REPLY_STRING ||
1571 r->element[2]->type != REDIS_REPLY_STRING ||
1572 strcmp(r->element[0]->str,"message") != 0) return;
1573
1574 /* We are not interested in meeting ourselves */
1575 if (strstr(r->element[2]->str,server.runid) != NULL) return;
1576
1577 {
1578 int numtokens, port, removed, canfailover;
1579 char **token = sdssplitlen(r->element[2]->str,
1580 r->element[2]->len,
1581 ":",1,&numtokens);
1582 sentinelRedisInstance *sentinel;
1583
1584 if (numtokens == 4) {
1585 /* First, try to see if we already have this sentinel. */
1586 port = atoi(token[1]);
1587 canfailover = atoi(token[3]);
1588 sentinel = getSentinelRedisInstanceByAddrAndRunID(
1589 ri->sentinels,token[0],port,token[2]);
1590
1591 if (!sentinel) {
1592 /* If not, remove all the sentinels that have the same runid
1593 * OR the same ip/port, because it's either a restart or a
1594 * network topology change. */
1595 removed = removeMatchingSentinelsFromMaster(ri,token[0],port,
1596 token[2]);
1597 if (removed) {
1598 sentinelEvent(REDIS_NOTICE,"-dup-sentinel",ri,
1599 "%@ #duplicate of %s:%d or %s",
1600 token[0],port,token[2]);
1601 }
1602
1603 /* Add the new sentinel. */
1604 sentinel = createSentinelRedisInstance(NULL,SRI_SENTINEL,
1605 token[0],port,ri->quorum,ri);
1606 if (sentinel) {
1607 sentinelEvent(REDIS_NOTICE,"+sentinel",sentinel,"%@");
1608 /* The runid is NULL after a new instance creation and
1609 * for Sentinels we don't have a later chance to fill it,
1610 * so do it now. */
1611 sentinel->runid = sdsnew(token[2]);
1612 }
1613 }
1614
1615 /* Update the state of the Sentinel. */
1616 if (sentinel) {
1617 sentinel->last_hello_time = mstime();
1618 if (canfailover)
1619 sentinel->flags |= SRI_CAN_FAILOVER;
1620 else
1621 sentinel->flags &= ~SRI_CAN_FAILOVER;
1622 }
1623 }
1624 sdsfreesplitres(token,numtokens);
1625 }
1626 }
1627
1628 void sentinelPingInstance(sentinelRedisInstance *ri) {
1629 mstime_t now = mstime();
1630 mstime_t info_period;
1631 int retval;
1632
1633 /* Return ASAP if we have already a PING or INFO already pending, or
1634 * in the case the instance is not properly connected. */
1635 if (ri->flags & SRI_DISCONNECTED) return;
1636
1637 /* For INFO, PING, PUBLISH that are not critical commands to send we
1638 * also have a limit of SENTINEL_MAX_PENDING_COMMANDS. We don't
1639 * want to use a lot of memory just because a link is not working
1640 * properly (note that anyway there is a redundant protection about this,
1641 * that is, the link will be disconnected and reconnected if a long
1642 * timeout condition is detected. */
1643 if (ri->pending_commands >= SENTINEL_MAX_PENDING_COMMANDS) return;
1644
1645 /* If this is a slave of a master in O_DOWN condition we start sending
1646 * it INFO every second, instead of the usual SENTINEL_INFO_PERIOD
1647 * period. In this state we want to closely monitor slaves in case they
1648 * are turned into masters by another Sentinel, or by the sysadmin. */
1649 if ((ri->flags & SRI_SLAVE) &&
1650 (ri->master->flags & (SRI_O_DOWN|SRI_FAILOVER_IN_PROGRESS))) {
1651 info_period = 1000;
1652 } else {
1653 info_period = SENTINEL_INFO_PERIOD;
1654 }
1655
1656 if ((ri->flags & SRI_SENTINEL) == 0 &&
1657 (ri->info_refresh == 0 ||
1658 (now - ri->info_refresh) > info_period))
1659 {
1660 /* Send INFO to masters and slaves, not sentinels. */
1661 retval = redisAsyncCommand(ri->cc,
1662 sentinelInfoReplyCallback, NULL, "INFO");
1663 if (retval != REDIS_OK) return;
1664 ri->pending_commands++;
1665 } else if ((now - ri->last_pong_time) > SENTINEL_PING_PERIOD) {
1666 /* Send PING to all the three kinds of instances. */
1667 retval = redisAsyncCommand(ri->cc,
1668 sentinelPingReplyCallback, NULL, "PING");
1669 if (retval != REDIS_OK) return;
1670 ri->pending_commands++;
1671 } else if ((ri->flags & SRI_MASTER) &&
1672 (now - ri->last_pub_time) > SENTINEL_PUBLISH_PERIOD)
1673 {
1674 /* PUBLISH hello messages only to masters. */
1675 struct sockaddr_in sa;
1676 socklen_t salen = sizeof(sa);
1677
1678 if (getsockname(ri->cc->c.fd,(struct sockaddr*)&sa,&salen) != -1) {
1679 char myaddr[128];
1680
1681 snprintf(myaddr,sizeof(myaddr),"%s:%d:%s:%d",
1682 inet_ntoa(sa.sin_addr), server.port, server.runid,
1683 (ri->flags & SRI_CAN_FAILOVER) != 0);
1684 retval = redisAsyncCommand(ri->cc,
1685 sentinelPublishReplyCallback, NULL, "PUBLISH %s %s",
1686 SENTINEL_HELLO_CHANNEL,myaddr);
1687 if (retval != REDIS_OK) return;
1688 ri->pending_commands++;
1689 }
1690 }
1691 }
1692
1693 /* =========================== SENTINEL command ============================= */
1694
1695 const char *sentinelFailoverStateStr(int state) {
1696 switch(state) {
1697 case SENTINEL_FAILOVER_STATE_NONE: return "none";
1698 case SENTINEL_FAILOVER_STATE_WAIT_START: return "wait_start";
1699 case SENTINEL_FAILOVER_STATE_SELECT_SLAVE: return "select_slave";
1700 case SENTINEL_FAILOVER_STATE_SEND_SLAVEOF_NOONE: return "send_slaveof_noone";
1701 case SENTINEL_FAILOVER_STATE_WAIT_PROMOTION: return "wait_promotion";
1702 case SENTINEL_FAILOVER_STATE_RECONF_SLAVES: return "reconf_slaves";
1703 case SENTINEL_FAILOVER_STATE_ALERT_CLIENTS: return "alert_clients";
1704 case SENTINEL_FAILOVER_STATE_DETECT_END: return "detect_end";
1705 case SENTINEL_FAILOVER_STATE_UPDATE_CONFIG: return "update_config";
1706 default: return "unknown";
1707 }
1708 }
1709
1710 /* Redis instance to Redis protocol representation. */
1711 void addReplySentinelRedisInstance(redisClient *c, sentinelRedisInstance *ri) {
1712 char *flags = sdsempty();
1713 void *mbl;
1714 int fields = 0;
1715
1716 mbl = addDeferredMultiBulkLength(c);
1717
1718 addReplyBulkCString(c,"name");
1719 addReplyBulkCString(c,ri->name);
1720 fields++;
1721
1722 addReplyBulkCString(c,"ip");
1723 addReplyBulkCString(c,ri->addr->ip);
1724 fields++;
1725
1726 addReplyBulkCString(c,"port");
1727 addReplyBulkLongLong(c,ri->addr->port);
1728 fields++;
1729
1730 addReplyBulkCString(c,"runid");
1731 addReplyBulkCString(c,ri->runid ? ri->runid : "");
1732 fields++;
1733
1734 addReplyBulkCString(c,"flags");
1735 if (ri->flags & SRI_S_DOWN) flags = sdscat(flags,"s_down,");
1736 if (ri->flags & SRI_O_DOWN) flags = sdscat(flags,"o_down,");
1737 if (ri->flags & SRI_MASTER) flags = sdscat(flags,"master,");
1738 if (ri->flags & SRI_SLAVE) flags = sdscat(flags,"slave,");
1739 if (ri->flags & SRI_SENTINEL) flags = sdscat(flags,"sentinel,");
1740 if (ri->flags & SRI_DISCONNECTED) flags = sdscat(flags,"disconnected,");
1741 if (ri->flags & SRI_MASTER_DOWN) flags = sdscat(flags,"master_down,");
1742 if (ri->flags & SRI_FAILOVER_IN_PROGRESS)
1743 flags = sdscat(flags,"failover_in_progress,");
1744 if (ri->flags & SRI_I_AM_THE_LEADER)
1745 flags = sdscat(flags,"i_am_the_leader,");
1746 if (ri->flags & SRI_PROMOTED) flags = sdscat(flags,"promoted,");
1747 if (ri->flags & SRI_RECONF_SENT) flags = sdscat(flags,"reconf_sent,");
1748 if (ri->flags & SRI_RECONF_INPROG) flags = sdscat(flags,"reconf_inprog,");
1749 if (ri->flags & SRI_RECONF_DONE) flags = sdscat(flags,"reconf_done,");
1750
1751 if (sdslen(flags) != 0) flags = sdsrange(flags,0,-2); /* remove last "," */
1752 addReplyBulkCString(c,flags);
1753 sdsfree(flags);
1754 fields++;
1755
1756 addReplyBulkCString(c,"pending-commands");
1757 addReplyBulkLongLong(c,ri->pending_commands);
1758 fields++;
1759
1760 if (ri->flags & SRI_FAILOVER_IN_PROGRESS) {
1761 addReplyBulkCString(c,"failover-state");
1762 addReplyBulkCString(c,(char*)sentinelFailoverStateStr(ri->failover_state));
1763 fields++;
1764 }
1765
1766 addReplyBulkCString(c,"last-ok-ping-reply");
1767 addReplyBulkLongLong(c,mstime() - ri->last_avail_time);
1768 fields++;
1769
1770 addReplyBulkCString(c,"last-ping-reply");
1771 addReplyBulkLongLong(c,mstime() - ri->last_pong_time);
1772 fields++;
1773
1774 if (ri->flags & SRI_S_DOWN) {
1775 addReplyBulkCString(c,"s-down-time");
1776 addReplyBulkLongLong(c,mstime()-ri->s_down_since_time);
1777 fields++;
1778 }
1779
1780 if (ri->flags & SRI_O_DOWN) {
1781 addReplyBulkCString(c,"o-down-time");
1782 addReplyBulkLongLong(c,mstime()-ri->o_down_since_time);
1783 fields++;
1784 }
1785
1786 /* Masters and Slaves */
1787 if (ri->flags & (SRI_MASTER|SRI_SLAVE)) {
1788 addReplyBulkCString(c,"info-refresh");
1789 addReplyBulkLongLong(c,mstime() - ri->info_refresh);
1790 fields++;
1791 }
1792
1793 /* Only masters */
1794 if (ri->flags & SRI_MASTER) {
1795 addReplyBulkCString(c,"num-slaves");
1796 addReplyBulkLongLong(c,dictSize(ri->slaves));
1797 fields++;
1798
1799 addReplyBulkCString(c,"num-other-sentinels");
1800 addReplyBulkLongLong(c,dictSize(ri->sentinels));
1801 fields++;
1802
1803 addReplyBulkCString(c,"quorum");
1804 addReplyBulkLongLong(c,ri->quorum);
1805 fields++;
1806 }
1807
1808 /* Only slaves */
1809 if (ri->flags & SRI_SLAVE) {
1810 addReplyBulkCString(c,"master-link-down-time");
1811 addReplyBulkLongLong(c,ri->master_link_down_time);
1812 fields++;
1813
1814 addReplyBulkCString(c,"master-link-status");
1815 addReplyBulkCString(c,
1816 (ri->slave_master_link_status == SENTINEL_MASTER_LINK_STATUS_UP) ?
1817 "ok" : "err");
1818 fields++;
1819
1820 addReplyBulkCString(c,"master-host");
1821 addReplyBulkCString(c,
1822 ri->slave_master_host ? ri->slave_master_host : "?");
1823 fields++;
1824
1825 addReplyBulkCString(c,"master-port");
1826 addReplyBulkLongLong(c,ri->slave_master_port);
1827 fields++;
1828 }
1829
1830 /* Only sentinels */
1831 if (ri->flags & SRI_SENTINEL) {
1832 addReplyBulkCString(c,"last-hello-message");
1833 addReplyBulkLongLong(c,mstime() - ri->last_hello_time);
1834 fields++;
1835
1836 addReplyBulkCString(c,"can-failover-its-master");
1837 addReplyBulkLongLong(c,(ri->flags & SRI_CAN_FAILOVER) != 0);
1838 fields++;
1839
1840 if (ri->flags & SRI_MASTER_DOWN) {
1841 addReplyBulkCString(c,"subjective-leader");
1842 addReplyBulkCString(c,ri->leader ? ri->leader : "?");
1843 fields++;
1844 }
1845 }
1846
1847 setDeferredMultiBulkLength(c,mbl,fields*2);
1848 }
1849
1850 /* Output a number of instances contanined inside a dictionary as
1851 * Redis protocol. */
1852 void addReplyDictOfRedisInstances(redisClient *c, dict *instances) {
1853 dictIterator *di;
1854 dictEntry *de;
1855
1856 di = dictGetIterator(instances);
1857 addReplyMultiBulkLen(c,dictSize(instances));
1858 while((de = dictNext(di)) != NULL) {
1859 sentinelRedisInstance *ri = dictGetVal(de);
1860
1861 addReplySentinelRedisInstance(c,ri);
1862 }
1863 dictReleaseIterator(di);
1864 }
1865
1866 /* Lookup the named master into sentinel.masters.
1867 * If the master is not found reply to the client with an error and returns
1868 * NULL. */
1869 sentinelRedisInstance *sentinelGetMasterByNameOrReplyError(redisClient *c,
1870 robj *name)
1871 {
1872 sentinelRedisInstance *ri;
1873
1874 ri = dictFetchValue(sentinel.masters,c->argv[2]->ptr);
1875 if (!ri) {
1876 addReplyError(c,"No such master with that name");
1877 return NULL;
1878 }
1879 return ri;
1880 }
1881
1882 void sentinelCommand(redisClient *c) {
1883 if (!strcasecmp(c->argv[1]->ptr,"masters")) {
1884 /* SENTINEL MASTERS */
1885 if (c->argc != 2) goto numargserr;
1886
1887 addReplyDictOfRedisInstances(c,sentinel.masters);
1888 } else if (!strcasecmp(c->argv[1]->ptr,"slaves")) {
1889 /* SENTINEL SLAVES <master-name> */
1890 sentinelRedisInstance *ri;
1891
1892 if (c->argc != 3) goto numargserr;
1893 if ((ri = sentinelGetMasterByNameOrReplyError(c,c->argv[2])) == NULL)
1894 return;
1895 addReplyDictOfRedisInstances(c,ri->slaves);
1896 } else if (!strcasecmp(c->argv[1]->ptr,"sentinels")) {
1897 /* SENTINEL SENTINELS <master-name> */
1898 sentinelRedisInstance *ri;
1899
1900 if (c->argc != 3) goto numargserr;
1901 if ((ri = sentinelGetMasterByNameOrReplyError(c,c->argv[2])) == NULL)
1902 return;
1903 addReplyDictOfRedisInstances(c,ri->sentinels);
1904 } else if (!strcasecmp(c->argv[1]->ptr,"is-master-down-by-addr")) {
1905 /* SENTINEL IS-MASTER-DOWN-BY-ADDR <ip> <port> */
1906 sentinelRedisInstance *ri;
1907 char *leader = NULL;
1908 long port;
1909 int isdown = 0;
1910
1911 if (c->argc != 4) goto numargserr;
1912 if (getLongFromObjectOrReply(c,c->argv[3],&port,NULL) != REDIS_OK)
1913 return;
1914 ri = getSentinelRedisInstanceByAddrAndRunID(sentinel.masters,
1915 c->argv[2]->ptr,port,NULL);
1916
1917 /* It exists? Is actually a master? Is subjectively down? It's down.
1918 * Note: if we are in tilt mode we always reply with "0". */
1919 if (!sentinel.tilt && ri && (ri->flags & SRI_S_DOWN) &&
1920 (ri->flags & SRI_MASTER))
1921 isdown = 1;
1922 if (ri) leader = sentinelGetSubjectiveLeader(ri);
1923
1924 /* Reply with a two-elements multi-bulk reply: down state, leader. */
1925 addReplyMultiBulkLen(c,2);
1926 addReply(c, isdown ? shared.cone : shared.czero);
1927 addReplyBulkCString(c, leader ? leader : "?");
1928 if (leader) sdsfree(leader);
1929 } else if (!strcasecmp(c->argv[1]->ptr,"reset")) {
1930 /* SENTINEL RESET <pattern> */
1931 if (c->argc != 3) goto numargserr;
1932 addReplyLongLong(c,sentinelResetMastersByPattern(c->argv[2]->ptr,SENTINEL_GENERATE_EVENT));
1933 } else if (!strcasecmp(c->argv[1]->ptr,"get-master-addr-by-name")) {
1934 /* SENTINEL GET-MASTER-ADDR-BY-NAME <master-name> */
1935 sentinelRedisInstance *ri;
1936
1937 if (c->argc != 3) goto numargserr;
1938 ri = sentinelGetMasterByName(c->argv[2]->ptr);
1939 if (ri == NULL) {
1940 addReply(c,shared.nullmultibulk);
1941 } else {
1942 sentinelAddr *addr = ri->addr;
1943
1944 if ((ri->flags & SRI_FAILOVER_IN_PROGRESS) && ri->promoted_slave)
1945 addr = ri->promoted_slave->addr;
1946 addReplyMultiBulkLen(c,2);
1947 addReplyBulkCString(c,addr->ip);
1948 addReplyBulkLongLong(c,addr->port);
1949 }
1950 } else if (!strcasecmp(c->argv[1]->ptr,"pending-scripts")) {
1951 /* SENTINEL PENDING-SCRIPTS */
1952
1953 if (c->argc != 2) goto numargserr;
1954 sentinelPendingScriptsCommand(c);
1955 } else {
1956 addReplyErrorFormat(c,"Unknown sentinel subcommand '%s'",
1957 (char*)c->argv[1]->ptr);
1958 }
1959 return;
1960
1961 numargserr:
1962 addReplyErrorFormat(c,"Wrong number of commands for 'sentinel %s'",
1963 (char*)c->argv[1]->ptr);
1964 }
1965
1966 /* ===================== SENTINEL availability checks ======================= */
1967
1968 /* Is this instance down from our point of view? */
1969 void sentinelCheckSubjectivelyDown(sentinelRedisInstance *ri) {
1970 mstime_t elapsed = mstime() - ri->last_avail_time;
1971
1972 /* Check if we are in need for a reconnection of one of the
1973 * links, because we are detecting low activity.
1974 *
1975 * 1) Check if the command link seems connected, was connected not less
1976 * than SENTINEL_MIN_LINK_RECONNECT_PERIOD, but still we have an
1977 * idle time that is greater than down_after_period / 2 seconds. */
1978 if (ri->cc &&
1979 (mstime() - ri->cc_conn_time) > SENTINEL_MIN_LINK_RECONNECT_PERIOD &&
1980 (mstime() - ri->last_pong_time) > (ri->down_after_period/2))
1981 {
1982 sentinelKillLink(ri,ri->cc);
1983 }
1984
1985 /* 2) Check if the pubsub link seems connected, was connected not less
1986 * than SENTINEL_MIN_LINK_RECONNECT_PERIOD, but still we have no
1987 * activity in the Pub/Sub channel for more than
1988 * SENTINEL_PUBLISH_PERIOD * 3.
1989 */
1990 if (ri->pc &&
1991 (mstime() - ri->pc_conn_time) > SENTINEL_MIN_LINK_RECONNECT_PERIOD &&
1992 (mstime() - ri->pc_last_activity) > (SENTINEL_PUBLISH_PERIOD*3))
1993 {
1994 sentinelKillLink(ri,ri->pc);
1995 }
1996
1997 /* Update the subjectively down flag. */
1998 if (elapsed > ri->down_after_period) {
1999 /* Is subjectively down */
2000 if ((ri->flags & SRI_S_DOWN) == 0) {
2001 sentinelEvent(REDIS_WARNING,"+sdown",ri,"%@");
2002 ri->s_down_since_time = mstime();
2003 ri->flags |= SRI_S_DOWN;
2004 }
2005 } else {
2006 /* Is subjectively up */
2007 if (ri->flags & SRI_S_DOWN) {
2008 sentinelEvent(REDIS_WARNING,"-sdown",ri,"%@");
2009 ri->flags &= ~SRI_S_DOWN;
2010 }
2011 }
2012 }
2013
2014 /* Is this instance down accordingly to the configured quorum? */
2015 void sentinelCheckObjectivelyDown(sentinelRedisInstance *master) {
2016 dictIterator *di;
2017 dictEntry *de;
2018 int quorum = 0, odown = 0;
2019
2020 if (master->flags & SRI_S_DOWN) {
2021 /* Is down for enough sentinels? */
2022 quorum = 1; /* the current sentinel. */
2023 /* Count all the other sentinels. */
2024 di = dictGetIterator(master->sentinels);
2025 while((de = dictNext(di)) != NULL) {
2026 sentinelRedisInstance *ri = dictGetVal(de);
2027
2028 if (ri->flags & SRI_MASTER_DOWN) quorum++;
2029 }
2030 dictReleaseIterator(di);
2031 if (quorum >= master->quorum) odown = 1;
2032 }
2033
2034 /* Set the flag accordingly to the outcome. */
2035 if (odown) {
2036 if ((master->flags & SRI_O_DOWN) == 0) {
2037 sentinelEvent(REDIS_WARNING,"+odown",master,"%@ #quorum %d/%d",
2038 quorum, master->quorum);
2039 master->flags |= SRI_O_DOWN;
2040 master->o_down_since_time = mstime();
2041 }
2042 } else {
2043 if (master->flags & SRI_O_DOWN) {
2044 sentinelEvent(REDIS_WARNING,"-odown",master,"%@");
2045 master->flags &= ~SRI_O_DOWN;
2046 }
2047 }
2048 }
2049
2050 /* Receive the SENTINEL is-master-down-by-addr reply, see the
2051 * sentinelAskMasterStateToOtherSentinels() function for more information. */
2052 void sentinelReceiveIsMasterDownReply(redisAsyncContext *c, void *reply, void *privdata) {
2053 sentinelRedisInstance *ri = c->data;
2054 redisReply *r;
2055
2056 if (ri) ri->pending_commands--;
2057 if (!reply || !ri) return;
2058 r = reply;
2059
2060 /* Ignore every error or unexpected reply.
2061 * Note that if the command returns an error for any reason we'll
2062 * end clearing the SRI_MASTER_DOWN flag for timeout anyway. */
2063 if (r->type == REDIS_REPLY_ARRAY && r->elements == 2 &&
2064 r->element[0]->type == REDIS_REPLY_INTEGER &&
2065 r->element[1]->type == REDIS_REPLY_STRING)
2066 {
2067 ri->last_master_down_reply_time = mstime();
2068 if (r->element[0]->integer == 1) {
2069 ri->flags |= SRI_MASTER_DOWN;
2070 } else {
2071 ri->flags &= ~SRI_MASTER_DOWN;
2072 }
2073 sdsfree(ri->leader);
2074 ri->leader = sdsnew(r->element[1]->str);
2075 }
2076 }
2077
2078 /* If we think (subjectively) the master is down, we start sending
2079 * SENTINEL IS-MASTER-DOWN-BY-ADDR requests to other sentinels
2080 * in order to get the replies that allow to reach the quorum and
2081 * possibly also mark the master as objectively down. */
2082 void sentinelAskMasterStateToOtherSentinels(sentinelRedisInstance *master) {
2083 dictIterator *di;
2084 dictEntry *de;
2085
2086 di = dictGetIterator(master->sentinels);
2087 while((de = dictNext(di)) != NULL) {
2088 sentinelRedisInstance *ri = dictGetVal(de);
2089 mstime_t elapsed = mstime() - ri->last_master_down_reply_time;
2090 char port[32];
2091 int retval;
2092
2093 /* If the master state from other sentinel is too old, we clear it. */
2094 if (elapsed > SENTINEL_INFO_VALIDITY_TIME) {
2095 ri->flags &= ~SRI_MASTER_DOWN;
2096 sdsfree(ri->leader);
2097 ri->leader = NULL;
2098 }
2099
2100 /* Only ask if master is down to other sentinels if:
2101 *
2102 * 1) We believe it is down, or there is a failover in progress.
2103 * 2) Sentinel is connected.
2104 * 3) We did not received the info within SENTINEL_ASK_PERIOD ms. */
2105 if ((master->flags & (SRI_S_DOWN|SRI_FAILOVER_IN_PROGRESS)) == 0)
2106 continue;
2107 if (ri->flags & SRI_DISCONNECTED) continue;
2108 if (mstime() - ri->last_master_down_reply_time < SENTINEL_ASK_PERIOD)
2109 continue;
2110
2111 /* Ask */
2112 ll2string(port,sizeof(port),master->addr->port);
2113 retval = redisAsyncCommand(ri->cc,
2114 sentinelReceiveIsMasterDownReply, NULL,
2115 "SENTINEL is-master-down-by-addr %s %s",
2116 master->addr->ip, port);
2117 if (retval == REDIS_OK) ri->pending_commands++;
2118 }
2119 dictReleaseIterator(di);
2120 }
2121
2122 /* =============================== FAILOVER ================================= */
2123
2124 /* Given a master get the "subjective leader", that is, among all the sentinels
2125 * with given characteristics, the one with the lexicographically smaller
2126 * runid. The characteristics required are:
2127 *
2128 * 1) Has SRI_CAN_FAILOVER flag.
2129 * 2) Is not disconnected.
2130 * 3) Recently answered to our ping (no longer than
2131 * SENTINEL_INFO_VALIDITY_TIME milliseconds ago).
2132 *
2133 * The function returns a pointer to an sds string representing the runid of the
2134 * leader sentinel instance (from our point of view). Otherwise NULL is
2135 * returned if there are no suitable sentinels.
2136 */
2137
2138 int compareRunID(const void *a, const void *b) {
2139 char **aptrptr = (char**)a, **bptrptr = (char**)b;
2140 return strcasecmp(*aptrptr, *bptrptr);
2141 }
2142
2143 char *sentinelGetSubjectiveLeader(sentinelRedisInstance *master) {
2144 dictIterator *di;
2145 dictEntry *de;
2146 char **instance =
2147 zmalloc(sizeof(char*)*(dictSize(master->sentinels)+1));
2148 int instances = 0;
2149 char *leader = NULL;
2150
2151 if (master->flags & SRI_CAN_FAILOVER) {
2152 /* Add myself if I'm a Sentinel that can failover this master. */
2153 instance[instances++] = server.runid;
2154 }
2155
2156 di = dictGetIterator(master->sentinels);
2157 while((de = dictNext(di)) != NULL) {
2158 sentinelRedisInstance *ri = dictGetVal(de);
2159 mstime_t lag = mstime() - ri->last_avail_time;
2160
2161 if (lag > SENTINEL_INFO_VALIDITY_TIME ||
2162 !(ri->flags & SRI_CAN_FAILOVER) ||
2163 (ri->flags & SRI_DISCONNECTED) ||
2164 ri->runid == NULL)
2165 continue;
2166 instance[instances++] = ri->runid;
2167 }
2168 dictReleaseIterator(di);
2169
2170 /* If we have at least one instance passing our checks, order the array
2171 * by runid. */
2172 if (instances) {
2173 qsort(instance,instances,sizeof(char*),compareRunID);
2174 leader = sdsnew(instance[0]);
2175 }
2176 zfree(instance);
2177 return leader;
2178 }
2179
2180 struct sentinelLeader {
2181 char *runid;
2182 unsigned long votes;
2183 };
2184
2185 /* Helper function for sentinelGetObjectiveLeader, increment the counter
2186 * relative to the specified runid. */
2187 void sentinelObjectiveLeaderIncr(dict *counters, char *runid) {
2188 dictEntry *de = dictFind(counters,runid);
2189 uint64_t oldval;
2190
2191 if (de) {
2192 oldval = dictGetUnsignedIntegerVal(de);
2193 dictSetUnsignedIntegerVal(de,oldval+1);
2194 } else {
2195 de = dictAddRaw(counters,runid);
2196 redisAssert(de != NULL);
2197 dictSetUnsignedIntegerVal(de,1);
2198 }
2199 }
2200
2201 /* Scan all the Sentinels attached to this master to check what is the
2202 * most voted leader among Sentinels. */
2203 char *sentinelGetObjectiveLeader(sentinelRedisInstance *master) {
2204 dict *counters;
2205 dictIterator *di;
2206 dictEntry *de;
2207 unsigned int voters = 0, voters_quorum;
2208 char *myvote;
2209 char *winner = NULL;
2210
2211 redisAssert(master->flags & (SRI_O_DOWN|SRI_FAILOVER_IN_PROGRESS));
2212 counters = dictCreate(&leaderVotesDictType,NULL);
2213
2214 /* Count my vote. */
2215 myvote = sentinelGetSubjectiveLeader(master);
2216 if (myvote) {
2217 sentinelObjectiveLeaderIncr(counters,myvote);
2218 voters++;
2219 }
2220
2221 /* Count other sentinels votes */
2222 di = dictGetIterator(master->sentinels);
2223 while((de = dictNext(di)) != NULL) {
2224 sentinelRedisInstance *ri = dictGetVal(de);
2225 if (ri->leader == NULL) continue;
2226 /* If the failover is not already in progress we are only interested
2227 * in Sentinels that believe the master is down. Otherwise the leader
2228 * selection is useful for the "failover-takedown" when the original
2229 * leader fails. In that case we consider all the voters. */
2230 if (!(master->flags & SRI_FAILOVER_IN_PROGRESS) &&
2231 !(ri->flags & SRI_MASTER_DOWN)) continue;
2232 sentinelObjectiveLeaderIncr(counters,ri->leader);
2233 voters++;
2234 }
2235 dictReleaseIterator(di);
2236 voters_quorum = voters/2+1;
2237
2238 /* Check what's the winner. For the winner to win, it needs two conditions:
2239 * 1) Absolute majority between voters (50% + 1).
2240 * 2) And anyway at least master->quorum votes. */
2241 {
2242 uint64_t max_votes = 0; /* Max votes so far. */
2243
2244 di = dictGetIterator(counters);
2245 while((de = dictNext(di)) != NULL) {
2246 uint64_t votes = dictGetUnsignedIntegerVal(de);
2247
2248 if (max_votes < votes) {
2249 max_votes = votes;
2250 winner = dictGetKey(de);
2251 }
2252 }
2253 dictReleaseIterator(di);
2254 if (winner && (max_votes < voters_quorum || max_votes < master->quorum))
2255 winner = NULL;
2256 }
2257 winner = winner ? sdsnew(winner) : NULL;
2258 sdsfree(myvote);
2259 dictRelease(counters);
2260 return winner;
2261 }
2262
2263 /* This function checks if there are the conditions to start the failover,
2264 * that is:
2265 *
2266 * 1) Enough time has passed since O_DOWN.
2267 * 2) The master is marked as SRI_CAN_FAILOVER, so we can failover it.
2268 * 3) We are the objectively leader for this master.
2269 *
2270 * If the conditions are met we flag the master as SRI_FAILOVER_IN_PROGRESS
2271 * and SRI_I_AM_THE_LEADER.
2272 */
2273 void sentinelStartFailover(sentinelRedisInstance *master) {
2274 char *leader;
2275 int isleader;
2276
2277 /* We can't failover if the master is not in O_DOWN state or if
2278 * there is not already a failover in progress (to perform the
2279 * takedown if the leader died) or if this Sentinel is not allowed
2280 * to start a failover. */
2281 if (!(master->flags & SRI_CAN_FAILOVER) ||
2282 !(master->flags & (SRI_O_DOWN|SRI_FAILOVER_IN_PROGRESS))) return;
2283
2284 leader = sentinelGetObjectiveLeader(master);
2285 isleader = leader && strcasecmp(leader,server.runid) == 0;
2286 sdsfree(leader);
2287
2288 /* If I'm not the leader, I can't failover for sure. */
2289 if (!isleader) return;
2290
2291 /* If the failover is already in progress there are two options... */
2292 if (master->flags & SRI_FAILOVER_IN_PROGRESS) {
2293 if (master->flags & SRI_I_AM_THE_LEADER) {
2294 /* 1) I'm flagged as leader so I already started the failover.
2295 * Just return. */
2296 return;
2297 } else {
2298 mstime_t elapsed = mstime() - master->failover_state_change_time;
2299
2300 /* 2) I'm the new leader, but I'm not flagged as leader in the
2301 * master: I did not started the failover, but the original
2302 * leader has no longer the leadership.
2303 *
2304 * In this case if the failover appears to be lagging
2305 * for at least 25% of the configured failover timeout,
2306 * I can assume I can take control. Otherwise
2307 * it's better to return and wait more. */
2308 if (elapsed < (master->failover_timeout/4)) return;
2309 sentinelEvent(REDIS_WARNING,"+failover-takedown",master,"%@");
2310 /* We have already an elected slave if we are in
2311 * FAILOVER_IN_PROGRESS state, that is, the slave that we
2312 * observed turning into a master. */
2313 master->failover_state = SENTINEL_FAILOVER_STATE_RECONF_SLAVES;
2314 /* As an observer we flagged all the slaves as RECONF_SENT but
2315 * now we are in charge of actually sending the reconfiguration
2316 * command so let's clear this flag for all the instances. */
2317 sentinelDelFlagsToDictOfRedisInstances(master->slaves,
2318 SRI_RECONF_SENT);
2319 }
2320 } else {
2321 /* Brand new failover as SRI_FAILOVER_IN_PROGRESS was not set.
2322 *
2323 * Do we have a slave to promote? Otherwise don't start a failover
2324 * at all. */
2325 if (sentinelSelectSlave(master) == NULL) return;
2326 master->failover_state = SENTINEL_FAILOVER_STATE_WAIT_START;
2327 }
2328
2329 master->flags |= SRI_FAILOVER_IN_PROGRESS|SRI_I_AM_THE_LEADER;
2330 sentinelEvent(REDIS_WARNING,"+failover-triggered",master,"%@");
2331
2332 /* Pick a random delay if it's a fresh failover (WAIT_START), and not
2333 * a recovery of a failover started by another sentinel. */
2334 if (master->failover_state == SENTINEL_FAILOVER_STATE_WAIT_START) {
2335 master->failover_start_time = mstime() +
2336 SENTINEL_FAILOVER_FIXED_DELAY +
2337 (rand() % SENTINEL_FAILOVER_MAX_RANDOM_DELAY);
2338 sentinelEvent(REDIS_WARNING,"+failover-state-wait-start",master,
2339 "%@ #starting in %lld milliseconds",
2340 master->failover_start_time-mstime());
2341 }
2342 master->failover_state_change_time = mstime();
2343 }
2344
2345 /* Select a suitable slave to promote. The current algorithm only uses
2346 * the following parameters:
2347 *
2348 * 1) None of the following conditions: S_DOWN, O_DOWN, DISCONNECTED.
2349 * 2) last_avail_time more recent than SENTINEL_INFO_VALIDITY_TIME.
2350 * 3) info_refresh more recent than SENTINEL_INFO_VALIDITY_TIME.
2351 * 4) master_link_down_time no more than:
2352 * (now - master->s_down_since_time) + (master->down_after_period * 10).
2353 *
2354 * Among all the slaves matching the above conditions we select the slave
2355 * with lower slave_priority. If priority is the same we select the slave
2356 * with lexicographically smaller runid.
2357 *
2358 * The function returns the pointer to the selected slave, otherwise
2359 * NULL if no suitable slave was found.
2360 */
2361
2362 int compareSlavesForPromotion(const void *a, const void *b) {
2363 sentinelRedisInstance **sa = (sentinelRedisInstance **)a,
2364 **sb = (sentinelRedisInstance **)b;
2365 if ((*sa)->slave_priority != (*sb)->slave_priority)
2366 return (*sa)->slave_priority - (*sb)->slave_priority;
2367 return strcasecmp((*sa)->runid,(*sb)->runid);
2368 }
2369
2370 sentinelRedisInstance *sentinelSelectSlave(sentinelRedisInstance *master) {
2371 sentinelRedisInstance **instance =
2372 zmalloc(sizeof(instance[0])*dictSize(master->slaves));
2373 sentinelRedisInstance *selected = NULL;
2374 int instances = 0;
2375 dictIterator *di;
2376 dictEntry *de;
2377 mstime_t max_master_down_time;
2378
2379 max_master_down_time = (mstime() - master->s_down_since_time) +
2380 (master->down_after_period * 10);
2381
2382 di = dictGetIterator(master->slaves);
2383 while((de = dictNext(di)) != NULL) {
2384 sentinelRedisInstance *slave = dictGetVal(de);
2385 mstime_t info_validity_time = mstime()-SENTINEL_INFO_VALIDITY_TIME;
2386
2387 if (slave->flags & (SRI_S_DOWN|SRI_O_DOWN|SRI_DISCONNECTED)) continue;
2388 if (slave->last_avail_time < info_validity_time) continue;
2389 if (slave->info_refresh < info_validity_time) continue;
2390 if (slave->master_link_down_time > max_master_down_time) continue;
2391 instance[instances++] = slave;
2392 }
2393 dictReleaseIterator(di);
2394 if (instances) {
2395 qsort(instance,instances,sizeof(sentinelRedisInstance*),
2396 compareSlavesForPromotion);
2397 selected = instance[0];
2398 }
2399 zfree(instance);
2400 return selected;
2401 }
2402
2403 /* ---------------- Failover state machine implementation ------------------- */
2404 void sentinelFailoverWaitStart(sentinelRedisInstance *ri) {
2405 /* If we in "wait start" but the master is no longer in ODOWN nor in
2406 * SDOWN condition we abort the failover. This is important as it
2407 * prevents a useless failover in a a notable case of netsplit, where
2408 * the senitnels are split from the redis instances. In this case
2409 * the failover will not start while there is the split because no
2410 * good slave can be reached. However when the split is resolved, we
2411 * can go to waitstart if the slave is back rechable a few milliseconds
2412 * before the master is. In that case when the master is back online
2413 * we cancel the failover. */
2414 if ((ri->flags & (SRI_S_DOWN|SRI_O_DOWN)) == 0) {
2415 sentinelEvent(REDIS_WARNING,"-failover-abort-master-is-back",
2416 ri,"%@");
2417 sentinelAbortFailover(ri);
2418 return;
2419 }
2420
2421 /* Start the failover going to the next state if enough time has
2422 * elapsed. */
2423 if (mstime() >= ri->failover_start_time) {
2424 ri->failover_state = SENTINEL_FAILOVER_STATE_SELECT_SLAVE;
2425 ri->failover_state_change_time = mstime();
2426 sentinelEvent(REDIS_WARNING,"+failover-state-select-slave",ri,"%@");
2427 }
2428 }
2429
2430 void sentinelFailoverSelectSlave(sentinelRedisInstance *ri) {
2431 sentinelRedisInstance *slave = sentinelSelectSlave(ri);
2432
2433 if (slave == NULL) {
2434 sentinelEvent(REDIS_WARNING,"-failover-abort-no-good-slave",ri,"%@");
2435 sentinelAbortFailover(ri);
2436 } else {
2437 sentinelEvent(REDIS_WARNING,"+selected-slave",slave,"%@");
2438 slave->flags |= SRI_PROMOTED;
2439 ri->promoted_slave = slave;
2440 ri->failover_state = SENTINEL_FAILOVER_STATE_SEND_SLAVEOF_NOONE;
2441 ri->failover_state_change_time = mstime();
2442 sentinelEvent(REDIS_NOTICE,"+failover-state-send-slaveof-noone",
2443 slave, "%@");
2444 }
2445 }
2446
2447 void sentinelFailoverSendSlaveOfNoOne(sentinelRedisInstance *ri) {
2448 int retval;
2449
2450 if (ri->promoted_slave->flags & SRI_DISCONNECTED) return;
2451
2452 /* Send SLAVEOF NO ONE command to turn the slave into a master.
2453 * We actually register a generic callback for this command as we don't
2454 * really care about the reply. We check if it worked indirectly observing
2455 * if INFO returns a different role (master instead of slave). */
2456 retval = redisAsyncCommand(ri->promoted_slave->cc,
2457 sentinelDiscardReplyCallback, NULL, "SLAVEOF NO ONE");
2458 if (retval != REDIS_OK) return;
2459 ri->promoted_slave->pending_commands++;
2460 sentinelEvent(REDIS_NOTICE, "+failover-state-wait-promotion",
2461 ri->promoted_slave,"%@");
2462 ri->failover_state = SENTINEL_FAILOVER_STATE_WAIT_PROMOTION;
2463 ri->failover_state_change_time = mstime();
2464 }
2465
2466 /* We actually wait for promotion indirectly checking with INFO when the
2467 * slave turns into a master. */
2468 void sentinelFailoverWaitPromotion(sentinelRedisInstance *ri) {
2469 mstime_t elapsed = mstime() - ri->failover_state_change_time;
2470
2471 if (elapsed >= SENTINEL_PROMOTION_RETRY_PERIOD) {
2472 sentinelEvent(REDIS_WARNING,"-promotion-timeout",ri->promoted_slave,
2473 "%@");
2474 sentinelEvent(REDIS_WARNING,"+failover-state-select-slave",ri,"%@");
2475 ri->failover_state = SENTINEL_FAILOVER_STATE_SELECT_SLAVE;
2476 ri->failover_state_change_time = mstime();
2477 ri->promoted_slave->flags &= ~SRI_PROMOTED;
2478 ri->promoted_slave = NULL;
2479 }
2480 }
2481
2482 void sentinelFailoverDetectEnd(sentinelRedisInstance *master) {
2483 int not_reconfigured = 0, timeout = 0;
2484 dictIterator *di;
2485 dictEntry *de;
2486 mstime_t elapsed = mstime() - master->failover_state_change_time;
2487
2488 /* We can't consider failover finished if the promoted slave is
2489 * not reachable. */
2490 if (master->promoted_slave == NULL ||
2491 master->promoted_slave->flags & SRI_S_DOWN) return;
2492
2493 /* The failover terminates once all the reachable slaves are properly
2494 * configured. */
2495 di = dictGetIterator(master->slaves);
2496 while((de = dictNext(di)) != NULL) {
2497 sentinelRedisInstance *slave = dictGetVal(de);
2498
2499 if (slave->flags & (SRI_PROMOTED|SRI_RECONF_DONE)) continue;
2500 if (slave->flags & SRI_S_DOWN) continue;
2501 not_reconfigured++;
2502 }
2503 dictReleaseIterator(di);
2504
2505 /* Force end of failover on timeout. */
2506 if (elapsed > master->failover_timeout) {
2507 not_reconfigured = 0;
2508 timeout = 1;
2509 sentinelEvent(REDIS_WARNING,"+failover-end-for-timeout",master,"%@");
2510 }
2511
2512 if (not_reconfigured == 0) {
2513 sentinelEvent(REDIS_WARNING,"+failover-end",master,"%@");
2514 master->failover_state = SENTINEL_FAILOVER_STATE_UPDATE_CONFIG;
2515 master->failover_state_change_time = mstime();
2516 }
2517
2518 /* If I'm the leader it is a good idea to send a best effort SLAVEOF
2519 * command to all the slaves still not reconfigured to replicate with
2520 * the new master. */
2521 if (timeout && (master->flags & SRI_I_AM_THE_LEADER)) {
2522 dictIterator *di;
2523 dictEntry *de;
2524 char master_port[32];
2525
2526 ll2string(master_port,sizeof(master_port),
2527 master->promoted_slave->addr->port);
2528
2529 di = dictGetIterator(master->slaves);
2530 while((de = dictNext(di)) != NULL) {
2531 sentinelRedisInstance *slave = dictGetVal(de);
2532 int retval;
2533
2534 if (slave->flags &
2535 (SRI_RECONF_DONE|SRI_RECONF_SENT|SRI_DISCONNECTED)) continue;
2536
2537 retval = redisAsyncCommand(slave->cc,
2538 sentinelDiscardReplyCallback, NULL, "SLAVEOF %s %s",
2539 master->promoted_slave->addr->ip,
2540 master_port);
2541 if (retval == REDIS_OK) {
2542 sentinelEvent(REDIS_NOTICE,"+slave-reconf-sent-be",slave,"%@");
2543 slave->flags |= SRI_RECONF_SENT;
2544 }
2545 }
2546 dictReleaseIterator(di);
2547 }
2548 }
2549
2550 /* Send SLAVE OF <new master address> to all the remaining slaves that
2551 * still don't appear to have the configuration updated. */
2552 void sentinelFailoverReconfNextSlave(sentinelRedisInstance *master) {
2553 dictIterator *di;
2554 dictEntry *de;
2555 int in_progress = 0;
2556
2557 di = dictGetIterator(master->slaves);
2558 while((de = dictNext(di)) != NULL) {
2559 sentinelRedisInstance *slave = dictGetVal(de);
2560
2561 if (slave->flags & (SRI_RECONF_SENT|SRI_RECONF_INPROG))
2562 in_progress++;
2563 }
2564 dictReleaseIterator(di);
2565
2566 di = dictGetIterator(master->slaves);
2567 while(in_progress < master->parallel_syncs &&
2568 (de = dictNext(di)) != NULL)
2569 {
2570 sentinelRedisInstance *slave = dictGetVal(de);
2571 int retval;
2572 char master_port[32];
2573
2574 /* Skip the promoted slave, and already configured slaves. */
2575 if (slave->flags & (SRI_PROMOTED|SRI_RECONF_DONE)) continue;
2576
2577 /* Clear the SRI_RECONF_SENT flag if too much time elapsed without
2578 * the slave moving forward to the next state. */
2579 if ((slave->flags & SRI_RECONF_SENT) &&
2580 (mstime() - slave->slave_reconf_sent_time) >
2581 SENTINEL_SLAVE_RECONF_RETRY_PERIOD)
2582 {
2583 sentinelEvent(REDIS_NOTICE,"-slave-reconf-sent-timeout",slave,"%@");
2584 slave->flags &= ~SRI_RECONF_SENT;
2585 }
2586
2587 /* Nothing to do for instances that are disconnected or already
2588 * in RECONF_SENT state. */
2589 if (slave->flags & (SRI_DISCONNECTED|SRI_RECONF_SENT|SRI_RECONF_INPROG))
2590 continue;
2591
2592 /* Send SLAVEOF <new master>. */
2593 ll2string(master_port,sizeof(master_port),
2594 master->promoted_slave->addr->port);
2595 retval = redisAsyncCommand(slave->cc,
2596 sentinelDiscardReplyCallback, NULL, "SLAVEOF %s %s",
2597 master->promoted_slave->addr->ip,
2598 master_port);
2599 if (retval == REDIS_OK) {
2600 slave->flags |= SRI_RECONF_SENT;
2601 slave->pending_commands++;
2602 slave->slave_reconf_sent_time = mstime();
2603 sentinelEvent(REDIS_NOTICE,"+slave-reconf-sent",slave,"%@");
2604 in_progress++;
2605 }
2606 }
2607 dictReleaseIterator(di);
2608 sentinelFailoverDetectEnd(master);
2609 }
2610
2611 /* This function is called when the slave is in
2612 * SENTINEL_FAILOVER_STATE_UPDATE_CONFIG state. In this state we need
2613 * to remove it from the master table and add the promoted slave instead.
2614 *
2615 * If there are no promoted slaves as this instance is unique, we remove
2616 * and re-add it with the same address to trigger a complete state
2617 * refresh. */
2618 void sentinelFailoverSwitchToPromotedSlave(sentinelRedisInstance *master) {
2619 sentinelRedisInstance *ref = master->promoted_slave ?
2620 master->promoted_slave : master;
2621
2622 sentinelEvent(REDIS_WARNING,"+switch-master",master,"%s %s %d %s %d",
2623 master->name, master->addr->ip, master->addr->port,
2624 ref->addr->ip, ref->addr->port);
2625
2626 sentinelResetMasterAndChangeAddress(master,ref->addr->ip,ref->addr->port);
2627 }
2628
2629 void sentinelFailoverStateMachine(sentinelRedisInstance *ri) {
2630 redisAssert(ri->flags & SRI_MASTER);
2631
2632 if (!(ri->flags & SRI_FAILOVER_IN_PROGRESS)) return;
2633
2634 switch(ri->failover_state) {
2635 case SENTINEL_FAILOVER_STATE_WAIT_START:
2636 sentinelFailoverWaitStart(ri);
2637 break;
2638 case SENTINEL_FAILOVER_STATE_SELECT_SLAVE:
2639 sentinelFailoverSelectSlave(ri);
2640 break;
2641 case SENTINEL_FAILOVER_STATE_SEND_SLAVEOF_NOONE:
2642 sentinelFailoverSendSlaveOfNoOne(ri);
2643 break;
2644 case SENTINEL_FAILOVER_STATE_WAIT_PROMOTION:
2645 sentinelFailoverWaitPromotion(ri);
2646 break;
2647 case SENTINEL_FAILOVER_STATE_RECONF_SLAVES:
2648 sentinelFailoverReconfNextSlave(ri);
2649 break;
2650 case SENTINEL_FAILOVER_STATE_DETECT_END:
2651 sentinelFailoverDetectEnd(ri);
2652 break;
2653 }
2654 }
2655
2656 /* Abort a failover in progress with the following steps:
2657 * 1) If this instance is the leaer send a SLAVEOF command to all the already
2658 * reconfigured slaves if any to configure them to replicate with the
2659 * original master.
2660 * 2) For both leaders and observers: clear the failover flags and state in
2661 * the master instance.
2662 * 3) If there is already a promoted slave and we are the leader, and this
2663 * slave is not DISCONNECTED, try to reconfigure it to replicate
2664 * back to the master as well, sending a best effort SLAVEOF command.
2665 */
2666 void sentinelAbortFailover(sentinelRedisInstance *ri) {
2667 char master_port[32];
2668 dictIterator *di;
2669 dictEntry *de;
2670
2671 redisAssert(ri->flags & SRI_FAILOVER_IN_PROGRESS);
2672 ll2string(master_port,sizeof(master_port),ri->addr->port);
2673
2674 /* Clear failover related flags from slaves.
2675 * Also if we are the leader make sure to send SLAVEOF commands to all the
2676 * already reconfigured slaves in order to turn them back into slaves of
2677 * the original master. */
2678 di = dictGetIterator(ri->slaves);
2679 while((de = dictNext(di)) != NULL) {
2680 sentinelRedisInstance *slave = dictGetVal(de);
2681 if ((ri->flags & SRI_I_AM_THE_LEADER) &&
2682 !(slave->flags & SRI_DISCONNECTED) &&
2683 (slave->flags & (SRI_PROMOTED|SRI_RECONF_SENT|SRI_RECONF_INPROG|
2684 SRI_RECONF_DONE)))
2685 {
2686 int retval;
2687
2688 retval = redisAsyncCommand(slave->cc,
2689 sentinelDiscardReplyCallback, NULL, "SLAVEOF %s %s",
2690 ri->addr->ip,
2691 master_port);
2692 if (retval == REDIS_OK)
2693 sentinelEvent(REDIS_NOTICE,"-slave-reconf-undo",slave,"%@");
2694 }
2695 slave->flags &= ~(SRI_RECONF_SENT|SRI_RECONF_INPROG|SRI_RECONF_DONE);
2696 }
2697 dictReleaseIterator(di);
2698
2699 ri->flags &= ~(SRI_FAILOVER_IN_PROGRESS|SRI_I_AM_THE_LEADER);
2700 ri->failover_state = SENTINEL_FAILOVER_STATE_NONE;
2701 ri->failover_state_change_time = mstime();
2702 if (ri->promoted_slave) {
2703 ri->promoted_slave->flags &= ~SRI_PROMOTED;
2704 ri->promoted_slave = NULL;
2705 }
2706 }
2707
2708 /* The following is called only for master instances and will abort the
2709 * failover process if:
2710 *
2711 * 1) The failover is in progress.
2712 * 2) We already promoted a slave.
2713 * 3) The promoted slave is in extended SDOWN condition.
2714 */
2715 void sentinelAbortFailoverIfNeeded(sentinelRedisInstance *ri) {
2716 /* Failover is in progress? Do we have a promoted slave? */
2717 if (!(ri->flags & SRI_FAILOVER_IN_PROGRESS) || !ri->promoted_slave) return;
2718
2719 /* Is the promoted slave into an extended SDOWN state? */
2720 if (!(ri->promoted_slave->flags & SRI_S_DOWN) ||
2721 (mstime() - ri->promoted_slave->s_down_since_time) <
2722 (ri->down_after_period * SENTINEL_EXTENDED_SDOWN_MULTIPLIER)) return;
2723
2724 sentinelEvent(REDIS_WARNING,"-failover-abort-x-sdown",ri->promoted_slave,"%@");
2725 sentinelAbortFailover(ri);
2726 }
2727
2728 /* ======================== SENTINEL timer handler ==========================
2729 * This is the "main" our Sentinel, being sentinel completely non blocking
2730 * in design. The function is called every second.
2731 * -------------------------------------------------------------------------- */
2732
2733 /* Perform scheduled operations for the specified Redis instance. */
2734 void sentinelHandleRedisInstance(sentinelRedisInstance *ri) {
2735 /* ========== MONITORING HALF ============ */
2736 /* Every kind of instance */
2737 sentinelReconnectInstance(ri);
2738 sentinelPingInstance(ri);
2739
2740 /* Masters and slaves */
2741 if (ri->flags & (SRI_MASTER|SRI_SLAVE)) {
2742 /* Nothing so far. */
2743 }
2744
2745 /* Only masters */
2746 if (ri->flags & SRI_MASTER) {
2747 sentinelAskMasterStateToOtherSentinels(ri);
2748 }
2749
2750 /* ============== ACTING HALF ============= */
2751 /* We don't proceed with the acting half if we are in TILT mode.
2752 * TILT happens when we find something odd with the time, like a
2753 * sudden change in the clock. */
2754 if (sentinel.tilt) {
2755 if (mstime()-sentinel.tilt_start_time < SENTINEL_TILT_PERIOD) return;
2756 sentinel.tilt = 0;
2757 sentinelEvent(REDIS_WARNING,"-tilt",NULL,"#tilt mode exited");
2758 }
2759
2760 /* Every kind of instance */
2761 sentinelCheckSubjectivelyDown(ri);
2762
2763 /* Masters and slaves */
2764 if (ri->flags & (SRI_MASTER|SRI_SLAVE)) {
2765 /* Nothing so far. */
2766 }
2767
2768 /* Only masters */
2769 if (ri->flags & SRI_MASTER) {
2770 sentinelCheckObjectivelyDown(ri);
2771 sentinelStartFailover(ri);
2772 sentinelFailoverStateMachine(ri);
2773 sentinelAbortFailoverIfNeeded(ri);
2774 }
2775 }
2776
2777 /* Perform scheduled operations for all the instances in the dictionary.
2778 * Recursively call the function against dictionaries of slaves. */
2779 void sentinelHandleDictOfRedisInstances(dict *instances) {
2780 dictIterator *di;
2781 dictEntry *de;
2782 sentinelRedisInstance *switch_to_promoted = NULL;
2783
2784 /* There are a number of things we need to perform against every master. */
2785 di = dictGetIterator(instances);
2786 while((de = dictNext(di)) != NULL) {
2787 sentinelRedisInstance *ri = dictGetVal(de);
2788
2789 sentinelHandleRedisInstance(ri);
2790 if (ri->flags & SRI_MASTER) {
2791 sentinelHandleDictOfRedisInstances(ri->slaves);
2792 sentinelHandleDictOfRedisInstances(ri->sentinels);
2793 if (ri->failover_state == SENTINEL_FAILOVER_STATE_UPDATE_CONFIG) {
2794 switch_to_promoted = ri;
2795 }
2796 }
2797 }
2798 if (switch_to_promoted)
2799 sentinelFailoverSwitchToPromotedSlave(switch_to_promoted);
2800 dictReleaseIterator(di);
2801 }
2802
2803 /* This function checks if we need to enter the TITL mode.
2804 *
2805 * The TILT mode is entered if we detect that between two invocations of the
2806 * timer interrupt, a negative amount of time, or too much time has passed.
2807 * Note that we expect that more or less just 100 milliseconds will pass
2808 * if everything is fine. However we'll see a negative number or a
2809 * difference bigger than SENTINEL_TILT_TRIGGER milliseconds if one of the
2810 * following conditions happen:
2811 *
2812 * 1) The Sentiel process for some time is blocked, for every kind of
2813 * random reason: the load is huge, the computer was freezed for some time
2814 * in I/O or alike, the process was stopped by a signal. Everything.
2815 * 2) The system clock was altered significantly.
2816 *
2817 * Under both this conditions we'll see everything as timed out and failing
2818 * without good reasons. Instead we enter the TILT mode and wait
2819 * for SENTIENL_TILT_PERIOD to elapse before starting to act again.
2820 *
2821 * During TILT time we still collect information, we just do not act. */
2822 void sentinelCheckTiltCondition(void) {
2823 mstime_t now = mstime();
2824 mstime_t delta = now - sentinel.previous_time;
2825
2826 if (delta < 0 || delta > SENTINEL_TILT_TRIGGER) {
2827 sentinel.tilt = 1;
2828 sentinel.tilt_start_time = mstime();
2829 sentinelEvent(REDIS_WARNING,"+tilt",NULL,"#tilt mode entered");
2830 }
2831 sentinel.previous_time = mstime();
2832 }
2833
2834 void sentinelTimer(void) {
2835 sentinelCheckTiltCondition();
2836 sentinelHandleDictOfRedisInstances(sentinel.masters);
2837 sentinelRunPendingScripts();
2838 sentinelCollectTerminatedScripts();
2839 sentinelKillTimedoutScripts();
2840 }
2841