1 // L2TPNS Clustering Stuff
3 char const *cvs_id_cluster
= "$Id: cluster.c,v 1.9 2004-07-11 07:57:35 bodea Exp $";
8 #include <sys/socket.h>
9 #include <netinet/in.h>
10 #include <arpa/inet.h>
11 #include <sys/ioctl.h>
31 * All cluster packets have the same format.
33 * One or more instances of
35 * a 32 bit 'extra' data dependant on the 'type'.
36 * zero or more bytes of structure data, dependant on the type.
41 int cluster_sockfd
= 0; // The filedescriptor for the cluster communications port.
43 ipt my_address
= 0; // The network address of my ethernet port.
44 static int walk_session_number
= 0; // The next session to send when doing the slow table walk.
45 static int walk_tunnel_number
= 0; // The next tunnel to send when doing the slow table walk.
47 #define MAX_HEART_SIZE (8192) // Maximum size of heartbeat packet. Must be less than max IP packet size :)
48 #define MAX_CHANGES (MAX_HEART_SIZE/(sizeof(sessiont) + sizeof(int) ) - 2) // Assumes a session is the biggest type!
53 } cluster_changes
[MAX_CHANGES
]; // Queue of changed structures that need to go out when next heartbeat.
58 char data
[MAX_HEART_SIZE
];
59 } past_hearts
[HB_HISTORY_SIZE
]; // Ring buffer of heartbeats that we've recently sent out. Needed so
60 // we can re-transmit if needed.
67 } peers
[CLUSTER_MAX_SIZE
]; // List of all the peers we've heard from.
68 static int num_peers
; // Number of peers in list.
70 int rle_decompress(u8
** src_p
, int ssize
, u8
*dst
, int dsize
);
71 int rle_compress(u8
** src_p
, int ssize
, u8
*dst
, int dsize
);
74 // Create a listening socket
76 // This joins the cluster multi-cast group.
80 struct sockaddr_in addr
;
81 struct sockaddr_in interface_addr
;
86 config
->cluster_undefined_sessions
= MAXSESSION
-1;
87 config
->cluster_undefined_tunnels
= MAXTUNNEL
-1;
89 if (!config
->cluster_address
)
91 if (!*config
->cluster_interface
)
94 cluster_sockfd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
96 memset(&addr
, 0, sizeof(addr
));
97 addr
.sin_family
= AF_INET
;
98 addr
.sin_port
= htons(CLUSTERPORT
);
99 addr
.sin_addr
.s_addr
= INADDR_ANY
;
100 setsockopt(cluster_sockfd
, SOL_SOCKET
, SO_REUSEADDR
, &addr
, sizeof(addr
));
102 if (bind(cluster_sockfd
, (void *) &addr
, sizeof(addr
)) < 0)
104 log(0, 0, 0, 0, "Failed to bind cluster socket: %s\n", strerror(errno
));
108 strcpy(ifr
.ifr_name
, config
->cluster_interface
);
109 if (ioctl(cluster_sockfd
, SIOCGIFADDR
, &ifr
) < 0) {
110 log(0, 0, 0, 0, "Failed to get interface address for (%s): %s\n", config
->cluster_interface
, strerror(errno
));
114 memcpy(&interface_addr
, &ifr
.ifr_addr
, sizeof(interface_addr
) );
115 my_address
= interface_addr
.sin_addr
.s_addr
;
117 // Join multicast group.
118 mreq
.imr_multiaddr
.s_addr
= config
->cluster_address
;
119 mreq
.imr_interface
= interface_addr
.sin_addr
;
122 opt
= 0; // Turn off multicast loopback.
123 setsockopt(cluster_sockfd
, IPPROTO_IP
, IP_MULTICAST_LOOP
, &opt
, sizeof(opt
));
125 if (setsockopt(cluster_sockfd
, IPPROTO_IP
, IP_ADD_MEMBERSHIP
, &mreq
, sizeof(mreq
)) < 0) {
126 log(0, 0, 0, 0, "Failed to setsockopt (join mcast group): %s\n", strerror(errno
));
130 if (setsockopt (cluster_sockfd
, IPPROTO_IP
, IP_MULTICAST_IF
, &interface_addr
, sizeof(interface_addr
)) < 0) {
131 log(0, 0, 0, 0, "Failed to setsockopt (set mcast interface): %s\n", strerror(errno
));
135 config
->cluster_last_hb
= TIME
;
136 config
->cluster_seq_number
= -1;
138 return cluster_sockfd
;
143 // Send a chunk of data to the entire cluster (usually via the multicast
147 int cluster_send_data(void *data
, int datalen
)
149 struct sockaddr_in addr
= {0};
151 if (!cluster_sockfd
) return -1;
152 if (!config
->cluster_address
) return 0;
154 addr
.sin_addr
.s_addr
= config
->cluster_address
;
155 addr
.sin_port
= htons(CLUSTERPORT
);
156 addr
.sin_family
= AF_INET
;
158 log(5,0,0,0, "Cluster send data: %d bytes\n", datalen
);
160 if (sendto(cluster_sockfd
, data
, datalen
, MSG_NOSIGNAL
, (void *) &addr
, sizeof(addr
)) < 0)
162 log(0, 0, 0, 0, "sendto: %s\n", strerror(errno
));
170 // Add a chunk of data to a heartbeat packet.
171 // Maintains the format. Assumes that the caller
172 // has passed in a big enough buffer!
174 static void add_type(char ** p
, int type
, int more
, char * data
, int size
)
176 * ( (u32
*)(*p
) ) = type
;
179 * ( (u32
*)(*p
) ) = more
;
182 if (data
&& size
> 0) {
183 memcpy(*p
, data
, size
);
188 void cluster_uptodate(void)
190 if (config
->cluster_iam_uptodate
)
193 if (config
->cluster_undefined_sessions
|| config
->cluster_undefined_tunnels
)
196 config
->cluster_iam_uptodate
= 1;
198 log(0,0,0,0, "Now uptodate with master.\n");
202 bgp_enable_routing(1);
205 if (config
->send_garp
)
206 send_garp(config
->bind_address
); // Start taking traffic.
210 // Send a unicast UDP packet to a peer with 'data' as the
213 int peer_send_data(u32 peer
, char * data
, int size
)
215 struct sockaddr_in addr
= {0};
217 if (!cluster_sockfd
) return -1;
218 if (!config
->cluster_address
) return 0;
223 addr
.sin_addr
.s_addr
= peer
;
224 addr
.sin_port
= htons(CLUSTERPORT
);
225 addr
.sin_family
= AF_INET
;
227 log_hex(5, "Peer send", data
, size
);
229 if (sendto(cluster_sockfd
, data
, size
, MSG_NOSIGNAL
, (void *) &addr
, sizeof(addr
)) < 0)
231 log(0, 0, 0, 0, "sendto: %s\n", strerror(errno
));
239 // Send a structured message to a peer with a single element of type 'type'.
241 int peer_send_message(u32 peer
, int type
, int more
, char * data
, int size
)
243 char buf
[65536]; // Vast overkill.
246 log(4,0,0,0, "Sending message to peer (type %d, more %d, size %d)\n", type
, more
, size
);
247 add_type(&p
, type
, more
, data
, size
);
249 return peer_send_data(peer
, buf
, (p
-buf
) );
253 // Forward a state changing packet to the master.
255 // The master just processes the payload as if it had
256 // received it off the tap device.
258 int master_forward_packet(char * data
, int size
, u32 addr
, int port
)
260 char buf
[65536]; // Vast overkill.
263 if (!config
->cluster_master_address
) // No election has been held yet. Just skip it.
266 log(4,0,0,0, "Forwarding packet from %s to master (size %d)\n", inet_toa(addr
), size
);
269 add_type(&p
, C_FORWARD
, addr
, (char*) &port
, sizeof(port
) );
270 memcpy(p
, data
, size
);
273 return peer_send_data(config
->cluster_master_address
, buf
, (p
-buf
) );
278 // Forward a throttled packet to the master for handling.
280 // The master just drops the packet into the appropriate
281 // token bucket queue, and lets normal processing take care
284 int master_throttle_packet(int tbfid
, char * data
, int size
)
286 char buf
[65536]; // Vast overkill.
289 if (!config
->cluster_master_address
) // No election has been held yet. Just skip it.
292 log(4,0,0,0, "Throttling packet master (size %d, tbfid %d)\n", size
, tbfid
);
294 add_type(&p
, C_THROTTLE
, tbfid
, data
, size
);
296 return peer_send_data(config
->cluster_master_address
, buf
, (p
-buf
) );
301 // Forward a walled garden packet to the master for handling.
303 // The master just writes the packet straight to the tun
304 // device (where is will normally loop through the
305 // firewall rules, and come back in on the tun device)
307 // (Note that this must be called with the tun header
308 // as the start of the data).
309 int master_garden_packet(sessionidt s
, char *data
, int size
)
311 char buf
[65536]; // Vast overkill.
314 if (!config
->cluster_master_address
) // No election has been held yet. Just skip it.
317 log(4,0,0,0, "Walled garden packet to master (size %d)\n", size
);
319 add_type(&p
, C_GARDEN
, s
, data
, size
);
321 return peer_send_data(config
->cluster_master_address
, buf
, (p
-buf
));
326 // Send a chunk of data as a heartbeat..
327 // We save it in the history buffer as we do so.
329 static void send_heartbeat(int seq
, char * data
, int size
)
333 if (size
> sizeof(past_hearts
[0].data
)) {
334 log(0,0,0,0, "Tried to heartbeat something larger than the maximum packet!\n");
338 i
= seq
% HB_HISTORY_SIZE
;
339 past_hearts
[i
].seq
= seq
;
340 past_hearts
[i
].size
= size
;
341 memcpy(&past_hearts
[i
].data
, data
, size
); // Save it.
342 cluster_send_data(data
, size
);
346 // Send an 'i am alive' message to every machine in the cluster.
348 void cluster_send_ping(time_t basetime
)
350 char buff
[100 + sizeof(pingt
)];
354 if (config
->cluster_iam_master
&& basetime
) // We're heartbeating so no need to ping.
357 log(5,0,0,0, "Sending cluster ping...\n");
360 x
.addr
= config
->bind_address
;
361 x
.undef
= config
->cluster_undefined_sessions
+ config
->cluster_undefined_tunnels
;
362 x
.basetime
= basetime
;
364 add_type(&p
, C_PING
, basetime
, (char *) &x
, sizeof(x
));
365 cluster_send_data(buff
, (p
-buff
) );
369 // Walk the session counters looking for non-zero ones to send
370 // to the master. We send up to 100 of them at one time.
371 // We examine a maximum of 2000 sessions.
372 // (50k max session should mean that we normally
373 // examine the entire session table every 25 seconds).
375 #define MAX_B_RECS (400)
376 void master_update_counts(void)
379 bytest b
[MAX_B_RECS
+1];
381 if (config
->cluster_iam_master
) // Only happens on the slaves.
384 if (!config
->cluster_master_address
) // If we don't have a master, skip it for a while.
387 i
= MAX_B_RECS
* 5; // Examine max 2000 sessions;
388 if (config
->cluster_highest_sessionid
> i
)
389 i
= config
->cluster_highest_sessionid
;
391 for ( c
= 0; i
> 0 ; --i
) {
392 // Next session to look at.
393 walk_session_number
++;
394 if ( walk_session_number
> config
->cluster_highest_sessionid
)
395 walk_session_number
= 1;
397 if (!sess_count
[walk_session_number
].cin
&& !sess_count
[walk_session_number
].cout
)
398 continue; // Unused. Skip it.
400 b
[c
].sid
= walk_session_number
;
401 b
[c
].in
= sess_count
[walk_session_number
].cin
;
402 b
[c
].out
= sess_count
[walk_session_number
].cout
;
404 if (++c
> MAX_B_RECS
) // Send a max of 400 elements in a packet.
408 sess_count
[walk_session_number
].cin
= sess_count
[walk_session_number
].cout
= 0;
411 if (!c
) // Didn't find any that changes. Get out of here!
415 // Forward the data to the master.
416 log(4,0,0,0, "Sending byte counters to master (%d elements)\n", c
);
417 peer_send_message(config
->cluster_master_address
, C_BYTES
, c
, (char*) &b
, sizeof(b
[0]) * c
);
422 // On the master, check how our slaves are going. If
423 // one of them's not up-to-date we'll heartbeat faster.
424 // If we don't have any of them, then we need to turn
425 // on our own packet handling!
427 void cluster_check_slaves(void)
430 static int have_peers
= 0;
431 int had_peers
= have_peers
;
434 if (!config
->cluster_iam_master
)
435 return; // Only runs on the master...
437 config
->cluster_iam_uptodate
= 1; // cleared in loop below
439 for (i
= have_peers
= 0; i
< num_peers
; i
++)
441 if ((peers
[i
].timestamp
+ config
->cluster_hb_timeout
) < t
)
442 continue; // Stale peer! Skip them.
444 if (!peers
[i
].basetime
)
445 continue; // Shutdown peer! Skip them.
447 if (peers
[i
].uptodate
)
450 if (!peers
[i
].uptodate
)
451 config
->cluster_iam_uptodate
= 0; // Start fast heartbeats
455 // master lost all slaves, need to handle traffic ourself
456 if (bgp_configured
&& had_peers
&& !have_peers
)
457 bgp_enable_routing(1);
458 else if (bgp_configured
&& !had_peers
&& have_peers
)
459 bgp_enable_routing(0);
464 // Check that we have a master. If it's been too
465 // long since we heard from a master then hold an election.
467 void cluster_check_master(void)
469 int i
, count
, tcount
, high_sid
= 0;
472 static int probed
= 0;
474 if (config
->cluster_iam_master
)
475 return; // Only runs on the slaves...
477 // If the master is late (missed 2 hearbeats by a second and a
478 // hair) it may be that the switch has dropped us from the
479 // multicast group, try unicasting one probe to the master
480 // which will hopefully respond with a unicast heartbeat that
481 // will allow us to limp along until the querier next runs.
482 if (TIME
> (config
->cluster_last_hb
+ 2 * config
->cluster_hb_interval
+ 11))
484 if (!probed
&& config
->cluster_master_address
)
487 log(1, 0, 0, 0, "Heartbeat from master %.1fs late, probing...\n",
488 0.1 * (TIME
- (config
->cluster_last_hb
+ config
->cluster_hb_interval
)));
490 peer_send_message(config
->cluster_master_address
,
491 C_LASTSEEN
, config
->cluster_seq_number
, NULL
, 0);
493 } else { // We got a recent heartbeat; reset the probe flag.
497 if (TIME
< (config
->cluster_last_hb
+ config
->cluster_hb_timeout
))
498 return; // Everything's ok!
500 config
->cluster_last_hb
= TIME
+ 1; // Just the one election thanks.
502 log(0,0,0,0, "Master timed out! Holding election...\n");
504 for (i
= 0; i
< num_peers
; i
++)
506 if ((peers
[i
].timestamp
+ config
->cluster_hb_timeout
) < t
)
507 continue; // Stale peer! Skip them.
509 if (!peers
[i
].basetime
)
510 continue; // Shutdown peer! Skip them.
512 if (peers
[i
].basetime
< basetime
) {
513 log(1,0,0,0, "Expecting %s to become master\n", inet_toa(peers
[i
].peer
) );
514 return; // They'll win the election. Get out of here.
517 if (peers
[i
].basetime
== basetime
&&
518 peers
[i
].peer
> my_address
) {
519 log(1,0,0,0, "Expecting %s to become master\n", inet_toa(peers
[i
].peer
) );
520 return; // They'll win the election. Wait for them to come up.
524 // Wow. it's been ages since I last heard a heartbeat
525 // and I'm better than an of my peers so it's time
526 // to become a master!!!
528 config
->cluster_iam_master
= 1;
529 config
->cluster_master_address
= 0;
531 log(0,0,0,0, "I am declaring myself the master!\n");
533 if (config
->cluster_seq_number
== -1)
534 config
->cluster_seq_number
= 0;
537 // Go through and mark all the tunnels as defined.
538 // Count the highest used tunnel number as well.
540 config
->cluster_highest_tunnelid
= 0;
541 for (i
= 0, tcount
= 0; i
< MAXTUNNEL
; ++i
) {
542 if (tunnel
[i
].state
== TUNNELUNDEF
)
543 tunnel
[i
].state
= TUNNELFREE
;
545 if (tunnel
[i
].state
!= TUNNELFREE
&& i
> config
->cluster_highest_tunnelid
)
546 config
->cluster_highest_tunnelid
= i
;
550 // Go through and mark all the sessions as being defined.
551 // reset the idle timeouts.
552 // add temporary byte counters to permanent ones.
553 // Re-string the free list.
554 // Find the ID of the highest session.
557 config
->cluster_highest_sessionid
= 0;
558 for (i
= 0, count
= 0; i
< MAXSESSION
; ++i
) {
559 if (session
[i
].tunnel
== T_UNDEF
) {
560 session
[i
].tunnel
= T_FREE
;
564 if (session
[i
].tunnel
== T_FREE
) { // Unused session. Add to free list.
565 session
[last_free
].next
= i
;
570 // Reset all the idle timeouts..
571 session
[i
].last_packet
= time_now
;
573 // Accumulate un-sent byte counters.
574 session
[i
].cin
+= sess_count
[i
].cin
;
575 session
[i
].cout
+= sess_count
[i
].cout
;
576 session
[i
].total_cin
+= sess_count
[i
].cin
;
577 session
[i
].total_cout
+= sess_count
[i
].cout
;
579 sess_count
[i
].cin
= sess_count
[i
].cout
= 0;
581 session
[i
].radius
= 0; // Reset authentication as the radius blocks aren't up to date.
583 if (session
[i
].sid
>= high_sid
) // This is different to the index into the session table!!!
584 high_sid
= session
[i
].sid
+1;
587 session
[i
].tbf_in
= session
[i
].tbf_out
= 0; // Remove stale pointers from old master.
588 throttle_session(i
, session
[i
].throttle
);
590 // I'm unsure about this. --mo
591 // It's potentially a good thing, but it could send a
593 // if (session[i].throttle)
594 // cluster_send_session(s); // Tell the slaves about the new tbf indexes.
596 if (session
[i
].tunnel
!= T_FREE
&& i
> config
->cluster_highest_sessionid
)
597 config
->cluster_highest_sessionid
= i
;
601 session
[last_free
].next
= 0; // End of chain.
602 last_sid
= high_sid
; // Keep track of the highest used session ID.
606 rebuild_address_pool();
608 // If we're not the very first master, this is a big issue!
610 log(0,0,0,0, "Warning: Fixed %d uninitialized sessions in becoming master!\n", count
);
612 config
->cluster_undefined_sessions
= 0;
613 config
->cluster_undefined_tunnels
= 0;
614 config
->cluster_iam_uptodate
= 1; // assume all peers are up-to-date
616 // FIXME. We need to fix up the tunnel control message
617 // queue here! There's a number of other variables we
618 // should also update.
623 // Check that our session table is validly matching what the
624 // master has in mind.
626 // In particular, if we have too many sessions marked 'undefined'
627 // we fix it up here, and we ensure that the 'first free session'
630 static void cluster_check_sessions(int highsession
, int freesession_ptr
, int hightunnel
)
634 sessionfree
= freesession_ptr
; // Keep the freesession ptr valid.
636 if (config
->cluster_iam_uptodate
)
639 if (highsession
> config
->cluster_undefined_sessions
&& hightunnel
> config
->cluster_undefined_tunnels
)
642 // Clear out defined sessions, counting the number of
644 config
->cluster_undefined_sessions
= 0;
645 for (i
= 1 ; i
< MAXSESSION
; ++i
) {
646 if (i
> highsession
) {
647 session
[i
].tunnel
= 0; // Defined.
650 if (session
[i
].tunnel
!= T_UNDEF
)
652 ++config
->cluster_undefined_sessions
;
655 // Clear out defined tunnels, counting the number of
657 config
->cluster_undefined_tunnels
= 0;
658 for (i
= 1 ; i
< MAXTUNNEL
; ++i
) {
659 if (i
> hightunnel
) {
660 tunnel
[i
].state
= TUNNELFREE
; // Defined.
663 if (tunnel
[i
].state
!= TUNNELUNDEF
)
665 ++config
->cluster_undefined_tunnels
;
669 if (config
->cluster_undefined_sessions
|| config
->cluster_undefined_tunnels
) {
670 log(2,0,0,0, "Cleared undefined sessions/tunnels. %d sess (high %d), %d tunn (high %d)\n",
671 config
->cluster_undefined_sessions
, highsession
, config
->cluster_undefined_tunnels
, hightunnel
);
675 // Are we up to date?
677 if (!config
->cluster_iam_uptodate
)
681 int hb_add_type(char **p
, int type
, int id
)
684 case C_CSESSION
: { // Compressed C_SESSION.
685 u8 c
[sizeof(sessiont
) * 2]; // Bigger than worst case.
686 u8
*d
= (u8
*) &session
[id
];
690 size
= rle_compress( &d
, sizeof(sessiont
), c
, sizeof(c
) );
692 // Did we compress the full structure, and is the size actually
694 if ( (d
- orig
) == sizeof(sessiont
) && size
< sizeof(sessiont
) ) {
695 add_type(p
, C_CSESSION
, id
, (char*) c
, size
);
698 // Failed to compress : Fall through.
700 case C_SESSION
: add_type(p
, C_SESSION
, id
,
701 (char*) &session
[id
], sizeof(sessiont
));
704 case C_CTUNNEL
: { // Compressed C_TUNNEL
705 u8 c
[sizeof(tunnelt
) * 2]; // Bigger than worst case.
706 u8
*d
= (u8
*) &tunnel
[id
];
710 size
= rle_compress( &d
, sizeof(tunnelt
), c
, sizeof(c
) );
712 // Did we compress the full structure, and is the size actually
714 if ( (d
- orig
) == sizeof(tunnelt
) && size
< sizeof(tunnelt
) ) {
715 add_type(p
, C_CTUNNEL
, id
, c
, size
);
718 // Failed to compress : Fall through.
720 case C_TUNNEL
: add_type(p
, C_TUNNEL
, id
,
721 (char*) &tunnel
[id
], sizeof(tunnelt
));
724 log(0,0,0,0, "Found an invalid type in heart queue! (%d)\n", type
);
732 // Send a heartbeat, incidently sending out any queued changes..
734 void cluster_heartbeat()
736 int i
, count
= 0, tcount
= 0;
737 char buff
[MAX_HEART_SIZE
+ sizeof(heartt
) + sizeof(int) ];
741 if (!config
->cluster_iam_master
) // Only the master does this.
744 // Fill out the heartbeat header.
745 memset(&h
, 0, sizeof(h
));
747 h
.version
= HB_VERSION
;
748 h
.seq
= config
->cluster_seq_number
;
749 h
.basetime
= basetime
;
750 h
.clusterid
= config
->bind_address
; // Will this do??
751 h
.basetime
= basetime
;
752 h
.highsession
= config
->cluster_highest_sessionid
;
753 h
.freesession
= sessionfree
;
754 h
.hightunnel
= config
->cluster_highest_tunnelid
;
755 h
.size_sess
= sizeof(sessiont
); // Just in case.
756 h
.size_tunn
= sizeof(tunnelt
);
757 h
.interval
= config
->cluster_hb_interval
;
758 h
.timeout
= config
->cluster_hb_timeout
;
760 add_type(&p
, C_HEARTBEAT
, HB_VERSION
, (char*) &h
, sizeof(h
));
762 for (i
= 0; i
< config
->cluster_num_changes
; ++i
) {
763 hb_add_type(&p
, cluster_changes
[i
].type
, cluster_changes
[i
].id
);
766 if (p
> (buff
+ sizeof(buff
))) { // Did we somehow manage to overun the buffer?
767 log(0,0,0,0, "FATAL: Overran the heartbeat buffer! This is fatal. Exiting. (size %d)\n", p
- buff
);
773 // Fill out the packet with sessions from the session table...
774 // (not forgetting to leave space so we can get some tunnels in too )
775 while ( (p
+ sizeof(u32
) * 2 + sizeof(sessiont
) * 2 ) < (buff
+ MAX_HEART_SIZE
) ) {
777 if (!walk_session_number
) // session #0 isn't valid.
778 ++walk_session_number
;
780 if (count
>= config
->cluster_highest_sessionid
) // If we're a small cluster, don't go wild.
783 hb_add_type(&p
, C_CSESSION
, walk_session_number
);
784 walk_session_number
= (1+walk_session_number
)%(config
->cluster_highest_sessionid
+1); // +1 avoids divide by zero.
786 ++count
; // Count the number of extra sessions we're sending.
790 // Fill out the packet with tunnels from the tunnel table...
791 // This effectively means we walk the tunnel table more quickly
792 // than the session table. This is good because stuffing up a
793 // tunnel is a much bigger deal than stuffing up a session.
795 while ( (p
+ sizeof(u32
) * 2 + sizeof(tunnelt
) ) < (buff
+ MAX_HEART_SIZE
) ) {
797 if (!walk_tunnel_number
) // tunnel #0 isn't valid.
798 ++walk_tunnel_number
;
800 if (tcount
>= config
->cluster_highest_tunnelid
)
803 hb_add_type(&p
, C_CTUNNEL
, walk_tunnel_number
);
804 walk_tunnel_number
= (1+walk_tunnel_number
)%(config
->cluster_highest_tunnelid
+1); // +1 avoids divide by zero.
810 // Did we do something wrong?
811 if (p
> (buff
+ sizeof(buff
))) { // Did we somehow manage to overun the buffer?
812 log(0,0,0,0, "Overran the heartbeat buffer now! This is fatal. Exiting. (size %d)\n", p
- buff
);
817 log(3,0,0,0, "Sending heartbeat #%d with %d changes (%d x-sess, %d x-tunnels, %d highsess, %d hightun size %d)\n",
818 h
.seq
, config
->cluster_num_changes
, count
, tcount
, config
->cluster_highest_sessionid
,
819 config
->cluster_highest_tunnelid
, (p
-buff
));
821 config
->cluster_num_changes
= 0;
823 send_heartbeat(h
.seq
, buff
, (p
-buff
) ); // Send out the heartbeat to the cluster, keeping a copy of it.
825 config
->cluster_seq_number
= (config
->cluster_seq_number
+1)%HB_MAX_SEQ
; // Next seq number to use.
829 // A structure of type 'type' has changed; Add it to the queue to send.
831 int type_changed(int type
, int id
)
835 for (i
= 0 ; i
< config
->cluster_num_changes
; ++i
)
836 if ( cluster_changes
[i
].id
== id
&&
837 cluster_changes
[i
].type
== type
)
838 return 0; // Already marked for change.
840 cluster_changes
[i
].type
= type
;
841 cluster_changes
[i
].id
= id
;
842 ++config
->cluster_num_changes
;
844 if (config
->cluster_num_changes
> MAX_CHANGES
)
845 cluster_heartbeat(); // flush now
851 // A particular session has been changed!
852 int cluster_send_session(int sid
)
854 if (!config
->cluster_iam_master
) {
855 log(0,0,sid
,0, "I'm not a master, but I just tried to change a session!\n");
859 return type_changed(C_CSESSION
, sid
);
862 // A particular tunnel has been changed!
863 int cluster_send_tunnel(int tid
)
865 if (!config
->cluster_iam_master
) {
866 log(0,0,0,tid
, "I'm not a master, but I just tried to change a tunnel!\n");
870 return type_changed(C_CTUNNEL
, tid
);
875 // We're a master, and a slave has just told us that it's
876 // missed a packet. We'll resend it every packet since
877 // the last one it's seen.
879 int cluster_catchup_slave(int seq
, u32 slave
)
884 log(1,0,0,0, "Slave %s sent LASTSEEN with seq %d\n", inet_toa(slave
), seq
);
886 diff
= config
->cluster_seq_number
- seq
; // How many packet do we need to send?
890 if (diff
>= HB_HISTORY_SIZE
) { // Ouch. We don't have the packet to send it!
891 log(0,0,0,0, "A slaved asked for message %d when our seq number is %d. Killing it.\n",
892 seq
, config
->cluster_seq_number
);
893 return peer_send_message(slave
, C_KILL
, seq
, NULL
, 0);// Kill the slave. Nothing else to do.
896 // Now resend every packet that it missed, in order.
897 while (seq
!= config
->cluster_seq_number
) {
898 s
= seq
%HB_HISTORY_SIZE
;
899 if (seq
!= past_hearts
[s
].seq
) {
900 log(0,0,0,0, "Tried to re-send heartbeat for %s but %d doesn't match %d! (%d,%d)\n",
901 inet_toa(slave
), seq
, past_hearts
[s
].seq
, s
, config
->cluster_seq_number
);
902 return -1; // What to do here!?
904 peer_send_data(slave
, past_hearts
[s
].data
, past_hearts
[s
].size
);
905 seq
= (seq
+1)%HB_MAX_SEQ
; // Increment to next seq number.
907 return 0; // All good!
911 // We've heard from another peer! Add it to the list
912 // that we select from at election time.
914 int cluster_add_peer(u32 peer
, time_t basetime
, pingt
*pp
, int size
)
921 // Allow for backward compatability.
922 // Just the ping packet into a new structure to allow
923 // for the possibility that we might have received
924 // more or fewer elements than we were expecting.
925 if (size
> sizeof(p
))
928 memset( (void*) &p
, 0, sizeof(p
) );
929 memcpy( (void*) &p
, (void*) pp
, size
);
933 if (clusterid
!= config
->bind_address
)
936 log(4,0,0,0, "Skipping ping from %s (different cluster)\n", inet_toa(peer
));
940 for (i
= 0; i
< num_peers
; ++i
)
942 if (peers
[i
].peer
!= peer
)
945 // This peer already exists. Just update the timestamp.
946 peers
[i
].basetime
= basetime
;
947 peers
[i
].timestamp
= TIME
;
948 peers
[i
].uptodate
= !p
.undef
;
952 // Is this the master shutting down??
953 if (peer
== config
->cluster_master_address
&& !basetime
) {
954 log(3,0,0,0, "Master %s shutting down...\n", inet_toa(config
->cluster_master_address
));
955 config
->cluster_master_address
= 0;
956 config
->cluster_last_hb
= 0; // Force an election.
957 cluster_check_master();
963 log(4,0,0,0, "Adding %s as a peer\n", inet_toa(peer
));
965 // Not found. Is there a stale slot to re-use?
966 for (i
= 0; i
< num_peers
; ++i
)
968 if (!peers
[i
].basetime
) // Shutdown
971 if ((peers
[i
].timestamp
+ config
->cluster_hb_timeout
* 10) < TIME
) // Stale.
975 if (i
>= CLUSTER_MAX_SIZE
)
978 log(0,0,0,0, "Tried to add %s as a peer, but I already have %d of them!\n", inet_toa(peer
), i
);
982 peers
[i
].peer
= peer
;
983 peers
[i
].basetime
= basetime
;
984 peers
[i
].timestamp
= TIME
;
985 peers
[i
].uptodate
= !p
.undef
;
989 log(1,0,0,0, "Added %s as a new peer. Now %d peers\n", inet_toa(peer
), num_peers
);
995 /* Handle the slave updating the byte counters for the master. */
997 // Note that we don't mark the session as dirty; We rely on
998 // the slow table walk to propogate this back out to the slaves.
1000 int cluster_handle_bytes(char * data
, int size
)
1006 log(3,0,0,0, "Got byte counter update (size %d)\n", size
);
1008 /* Loop around, adding the byte
1009 counts to each of the sessions. */
1011 while (size
>= sizeof(*b
) ) {
1012 if (b
->sid
> MAXSESSION
) {
1013 log(0,0,0,0, "Got C_BYTES with session #%d!\n", b
->sid
);
1014 return -1; /* Abort processing */
1017 session
[b
->sid
].total_cin
+= b
->in
;
1018 session
[b
->sid
].total_cout
+= b
->out
;
1020 session
[b
->sid
].cin
+= b
->in
;
1021 session
[b
->sid
].cout
+= b
->out
;
1022 session
[b
->sid
].last_packet
= time_now
; // Reset idle timer!
1029 log(0,0,0,0, "Got C_BYTES with %d bytes of trailing junk!\n", size
);
1035 // Handle receiving a session structure in a heartbeat packet.
1037 static int cluster_recv_session(int more
, u8
* p
)
1039 if (more
>= MAXSESSION
) {
1040 log(0,0,0,0, "DANGER: Received a heartbeat session id > MAXSESSION!\n");
1044 if (session
[more
].tunnel
== T_UNDEF
) {
1045 if (config
->cluster_iam_uptodate
) { // Sanity.
1046 log(0,0,0,0, "I thought I was uptodate but I just found an undefined session!\n");
1048 --config
->cluster_undefined_sessions
;
1052 load_session(more
, (sessiont
*) p
); // Copy session into session table..
1054 log(5,0,more
,0, "Received session update (%d undef)\n", config
->cluster_undefined_sessions
);
1056 if (!config
->cluster_iam_uptodate
)
1057 cluster_uptodate(); // Check to see if we're up to date.
1062 static int cluster_recv_tunnel(int more
, u8
*p
)
1064 if (more
>= MAXTUNNEL
) {
1065 log(0,0,0,0, "DANGER: Received a tunnel session id > MAXTUNNEL!\n");
1069 if (tunnel
[more
].state
== TUNNELUNDEF
) {
1070 if (config
->cluster_iam_uptodate
) { // Sanity.
1071 log(0,0,0,0, "I thought I was uptodate but I just found an undefined tunnel!\n");
1073 --config
->cluster_undefined_tunnels
;
1077 memcpy(&tunnel
[more
], p
, sizeof(tunnel
[more
]) );
1080 // Clear tunnel control messages. These are dynamically allocated.
1081 // If we get unlucky, this may cause the tunnel to drop!
1083 tunnel
[more
].controls
= tunnel
[more
].controle
= NULL
;
1084 tunnel
[more
].controlc
= 0;
1086 log(5,0,0,more
, "Received tunnel update\n");
1088 if (!config
->cluster_iam_uptodate
)
1089 cluster_uptodate(); // Check to see if we're up to date.
1096 // Process a heartbeat..
1098 static int cluster_process_heartbeat(u8
* data
, int size
, int more
, u8
* p
, u32 addr
)
1101 int s
= size
- (p
-data
);
1105 # error "need to update cluster_process_heartbeat()"
1108 // we handle version 2+
1109 if (more
< 2 || more
> HB_VERSION
) {
1110 log(0,0,0,0, "Received a heartbeat version that I don't support (%d)!\n", more
);
1111 return -1; // Ignore it??
1114 // Ok. It's a heartbeat packet from a cluster master!
1122 if (h
->clusterid
!= config
->bind_address
)
1123 return -1; // It's not part of our cluster.
1125 if (config
->cluster_iam_master
) { // Sanity...
1126 // Note that this MUST match the election process above!
1128 log(0,0,0,0, "I just got a packet claiming to be from a master but _I_ am the master!\n");
1130 log(0,0,0,0, "Heartbeat from addr %s with zero basetime!\n", inet_toa(addr
) );
1131 return -1; // Skip it.
1133 if (basetime
> h
->basetime
) {
1134 log(0,0,0,0, "They're (%s) an older master than me so I'm gone!\n", inet_toa(addr
));
1138 if (basetime
== h
->basetime
&& my_address
< addr
) { // Tie breaker.
1139 log(0,0,0,0, "They're a higher IP address than me, so I'm gone!\n");
1143 return -1; // Skip it.
1146 if (config
->cluster_seq_number
== -1) // Don't have one. Just align to the master...
1147 config
->cluster_seq_number
= h
->seq
;
1149 config
->cluster_last_hb
= TIME
; // Reset to ensure that we don't become master!!
1151 if (config
->cluster_seq_number
!= h
->seq
) { // Out of sequence heartbeat!
1152 log(1,0,0,0, "HB: Got seq# %d but was expecting %d. asking for resend.\n", h
->seq
, config
->cluster_seq_number
);
1154 peer_send_message(addr
, C_LASTSEEN
, config
->cluster_seq_number
, NULL
, 0);
1156 config
->cluster_last_hb
= TIME
; // Reset to ensure that we don't become master!!
1158 // Just drop the packet. The master will resend it as part of the catchup.
1162 // Save the packet in our buffer.
1163 // This is needed in case we become the master.
1164 config
->cluster_seq_number
= (h
->seq
+1)%HB_MAX_SEQ
;
1165 i
= h
->seq
% HB_HISTORY_SIZE
;
1166 past_hearts
[i
].seq
= h
->seq
;
1167 past_hearts
[i
].size
= size
;
1168 memcpy(&past_hearts
[i
].data
, data
, size
); // Save it.
1171 // Check that we don't have too many undefined sessions, and
1172 // that the free session pointer is correct.
1173 cluster_check_sessions(h
->highsession
, h
->freesession
, h
->hightunnel
);
1175 if (more
> 2) // reserved section of heartt was not initialized prior to v3
1177 if (h
->interval
!= config
->cluster_hb_interval
)
1179 log(2, 0, 0, 0, "Master set ping/heartbeat interval to %u (was %u)\n",
1180 h
->interval
, config
->cluster_hb_interval
);
1182 config
->cluster_hb_interval
= h
->interval
;
1185 if (h
->timeout
!= config
->cluster_hb_timeout
)
1187 log(2, 0, 0, 0, "Master set heartbeat timeout to %u (was %u)\n",
1188 h
->timeout
, config
->cluster_hb_timeout
);
1190 config
->cluster_hb_timeout
= h
->timeout
;
1194 // Ok. process the packet...
1197 type
= * ((u32
*) p
);
1201 more
= * ((u32
*) p
);
1206 case C_CSESSION
: { // Compressed session structure.
1207 u8 c
[ sizeof(sessiont
) + 2];
1211 size
= rle_decompress((u8
**) &p
, s
, c
, sizeof(c
) );
1214 if (size
!= sizeof(sessiont
) ) { // Ouch! Very very bad!
1215 log(0,0,0,0, "DANGER: Received a CSESSION that didn't decompress correctly!\n");
1216 // Now what? Should exit! No-longer up to date!
1220 cluster_recv_session(more
, c
);
1224 if ( s
< sizeof(session
[more
]))
1227 cluster_recv_session(more
, p
);
1229 p
+= sizeof(session
[more
]);
1230 s
-= sizeof(session
[more
]);
1233 case C_CTUNNEL
: { // Compressed tunnel structure.
1234 u8 c
[ sizeof(tunnelt
) + 2];
1238 size
= rle_decompress( (u8
**) &p
, s
, c
, sizeof(c
) );
1241 if (size
!= sizeof(tunnelt
) ) { // Ouch! Very very bad!
1242 log(0,0,0,0, "DANGER: Received a CSESSION that didn't decompress correctly!\n");
1243 // Now what? Should exit! No-longer up to date!
1247 cluster_recv_tunnel(more
, c
);
1252 if ( s
< sizeof(tunnel
[more
]))
1255 cluster_recv_tunnel(more
, p
);
1257 p
+= sizeof(tunnel
[more
]);
1258 s
-= sizeof(tunnel
[more
]);
1261 log(0,0,0,0, "DANGER: I received a heartbeat element where I didn't understand the type! (%d)\n", type
);
1262 return -1; // can't process any more of the packet!!
1265 if (config
->cluster_master_address
!= addr
)
1268 str
= strdup(inet_toa(config
->cluster_master_address
));
1269 log(0,0,0,0, "My master just changed from %s to %s!\n", str
, inet_toa(addr
));
1273 config
->cluster_master_address
= addr
;
1274 config
->cluster_last_hb
= TIME
; // Successfully received a heartbeat!
1278 log(0,0,0,0, "I got an incomplete heartbeat packet! This means I'm probably out of sync!!\n");
1283 // We got a packet on the cluster port!
1284 // Handle pings, lastseens, and heartbeats!
1286 int processcluster(char * data
, int size
, u32 addr
)
1292 if (addr
== my_address
)
1293 return -1; // Ignore it. Something looped back the multicast!
1295 log(5,0,0,0, "Process cluster: %d bytes from %s\n", size
, inet_toa(addr
));
1297 if (s
<= 0) // Any data there??
1303 type
= * ((u32
*) p
);
1307 more
= * ((u32
*) p
);
1312 case C_PING
: // Update the peers table.
1313 return cluster_add_peer(addr
, more
, (pingt
*)p
, s
);
1315 case C_LASTSEEN
: // Catch up a slave (slave missed a packet).
1316 return cluster_catchup_slave(more
, addr
);
1318 case C_FORWARD
: { // Forwarded control packet. pass off to processudp.
1319 struct sockaddr_in a
;
1320 a
.sin_addr
.s_addr
= more
;
1322 a
.sin_port
= * (int*) p
;
1326 if (!config
->cluster_iam_master
) { // huh?
1327 log(0,0,0,0, "I'm not the master, but I got a C_FORWARD from %s?\n", inet_toa(addr
));
1331 log(4,0,0,0, "Got a forwarded packet... (%s:%d)\n", inet_toa(more
), a
.sin_port
);
1333 processudp(p
, s
, &a
);
1336 case C_THROTTLE
: { // Receive a forwarded packet from a slave.
1337 if (!config
->cluster_iam_master
) {
1338 log(0,0,0,0, "I'm not the master, but I got a C_THROTTLE from %s?\n", inet_toa(addr
));
1342 tbf_queue_packet(more
, p
, s
); // The TBF id tells wether it goes in or out.
1346 // Receive a walled garden packet from a slave.
1347 if (!config
->cluster_iam_master
) {
1348 log(0,0,0,0, "I'm not the master, but I got a C_GARDEN from %s?\n", inet_toa(addr
));
1356 return cluster_handle_bytes(p
, s
);
1358 case C_KILL
: // The master asked us to die!? (usually because we're too out of date).
1359 if (config
->cluster_iam_master
) {
1360 log(0,0,0,0, "_I_ am master, but I received a C_KILL from %s! (Seq# %d)\n", inet_toa(addr
), more
);
1363 if (more
!= config
->cluster_seq_number
) {
1364 log(0,0,0,0, "The master asked us to die but the seq number didn't match!?\n");
1368 if (addr
!= config
->cluster_master_address
) {
1369 log(0,0,0,0, "Received a C_KILL from %s which doesn't match config->cluster_master_address (%x)\n",
1370 inet_toa(addr
), config
->cluster_master_address
);
1371 // We can only warn about it. The master might really have switched!
1374 log(0,0,0,0, "Received a valid C_KILL: I'm going to die now.\n");
1376 exit(0); // Lets be paranoid;
1377 return -1; // Just signalling the compiler.
1380 log(4,0,0,0, "Got a heartbeat from %s\n", inet_toa(addr
));
1381 return cluster_process_heartbeat(data
, size
, more
, p
, addr
);
1384 log(0,0,0,0, "Strange type packet received on cluster socket (%d)\n", type
);
1390 log(0,0,0,0, "I got an cluster heartbeat packet! This means I'm probably out of sync!!\n");
1394 //====================================================================================================
1396 int cmd_show_cluster(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1400 if (CLI_HELP_REQUESTED
)
1401 return CLI_HELP_NO_ARGS
;
1403 cli_print(cli
, "Cluster status : %s", config
->cluster_iam_master
? "Master" : "Slave" );
1404 cli_print(cli
, "My address : %s", inet_toa(my_address
));
1405 cli_print(cli
, "VIP address : %s", inet_toa(config
->bind_address
));
1406 cli_print(cli
, "Multicast address: %s", inet_toa(config
->cluster_address
));
1407 cli_print(cli
, "Multicast i'face : %s", config
->cluster_interface
);
1409 if (!config
->cluster_iam_master
) {
1410 cli_print(cli
, "My master : %s (last heartbeat %.1f seconds old)",
1411 config
->cluster_master_address
? inet_toa(config
->cluster_master_address
) : "Not defined",
1412 0.1 * (TIME
- config
->cluster_last_hb
));
1413 cli_print(cli
, "Uptodate : %s", config
->cluster_iam_uptodate
? "Yes" : "No");
1414 cli_print(cli
, "Next sequence number expected: %d", config
->cluster_seq_number
);
1415 cli_print(cli
, "%d sessions undefined of %d", config
->cluster_undefined_sessions
, config
->cluster_highest_sessionid
);
1416 cli_print(cli
, "%d tunnels undefined of %d", config
->cluster_undefined_tunnels
, config
->cluster_highest_tunnelid
);
1418 cli_print(cli
, "Next heartbeat # : %d", config
->cluster_seq_number
);
1419 cli_print(cli
, "Highest session : %d", config
->cluster_highest_sessionid
);
1420 cli_print(cli
, "Highest tunnel : %d", config
->cluster_highest_tunnelid
);
1421 cli_print(cli
, "%d changes queued for sending", config
->cluster_num_changes
);
1423 cli_print(cli
, "%d peers.", num_peers
);
1426 cli_print(cli
, "%20s %10s %8s", "Address", "Basetime", "Age");
1427 for (i
= 0; i
< num_peers
; ++i
) {
1428 cli_print(cli
, "%20s %10d %8d", inet_toa(peers
[i
].peer
),
1429 peers
[i
].basetime
, TIME
- peers
[i
].timestamp
);
1435 // Simple run-length-encoding compression.
1437 // 1 byte < 128 = count of non-zero bytes following. // Not legal to be zero.
1438 // n non-zero bytes;
1440 // 1 byte > 128 = (count - 128) run of zero bytes. //
1442 // count == 0 indicates end of compressed stream.
1444 // Compress from 'src' into 'dst'. return number of bytes
1446 // Updates *src_p to indicate 1 past last bytes used.
1448 // We could get an extra byte in the zero runs by storing (count-1)
1449 // but I'm playing it safe.
1451 // Worst case is a 50% expansion in space required (trying to
1452 // compress { 0x00, 0x01 } * N )
1453 int rle_compress(u8
** src_p
, int ssize
, u8
*dst
, int dsize
)
1456 int orig_dsize
= dsize
;
1460 while (ssize
> 0 && dsize
> 2) {
1462 x
= dst
++; --dsize
; // Reserve space for count byte..
1464 if (*src
) { // Copy a run of non-zero bytes.
1465 while (*src
&& count
< 127 && ssize
> 0 && dsize
> 1) { // Count number of non-zero bytes.
1470 *x
= count
; // Store number of non-zero bytes. Guarenteed to be non-zero!
1472 } else { // Compress a run of zero bytes.
1473 while (*src
== 0 && count
< 127 && ssize
> 0) {
1482 *dst
++ = 0x0; // Add Stop byte.
1486 return (orig_dsize
- dsize
);
1490 // Decompress the buffer into **p.
1491 // 'psize' is the size of the decompression buffer available.
1493 // Returns the number of bytes decompressed.
1495 // Decompresses from '*src_p' into 'dst'.
1496 // Return the number of dst bytes used.
1497 // Updates the 'src_p' pointer to point to the
1498 // first un-used byte.
1499 int rle_decompress(u8
** src_p
, int ssize
, u8
*dst
, int dsize
)
1502 int orig_dsize
= dsize
;
1503 char * src
= *src_p
;
1505 while (ssize
>0 && dsize
> 0) { // While there's more to decompress, and there's room in the decompress buffer...
1506 count
= *src
++; --ssize
; // get the count byte from the source.
1507 if (count
== 0x0) // End marker reached? If so, finish.
1510 if (count
& 0x80) { // Decompress a run of zeros
1511 for (count
&= 0x7f ; count
> 0 && dsize
> 0; --count
) {
1515 } else { // Copy run of non-zero bytes.
1516 for ( ; count
> 0 && ssize
&& dsize
; --count
) { // Copy non-zero bytes across.
1523 return (orig_dsize
- dsize
);