1 // L2TPNS Clustering Stuff
3 char const *cvs_id_cluster
= "$Id: cluster.c,v 1.4 2004-06-28 02:43:13 fred_nerk 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 static int hsess
, fsess
; // Saved copies of the highest used session id, and the first free one.
49 #define MAX_HEART_SIZE (8192) // Maximum size of heartbeat packet. Must be less than max IP packet size :)
50 #define MAX_CHANGES (MAX_HEART_SIZE/(sizeof(sessiont) + sizeof(int) ) - 2) // Assumes a session is the biggest type!
55 } cluster_changes
[MAX_CHANGES
]; // Queue of changed structures that need to go out when next heartbeat.
60 char data
[MAX_HEART_SIZE
];
61 } past_hearts
[HB_HISTORY_SIZE
]; // Ring buffer of heartbeats that we've recently sent out. Needed so
62 // we can re-transmit if needed.
69 } peers
[CLUSTER_MAX_SIZE
]; // List of all the peers we've heard from.
70 static int num_peers
; // Number of peers in list.
71 static int have_peers
; // At least one peer
73 int rle_decompress(u8
** src_p
, int ssize
, u8
*dst
, int dsize
);
74 int rle_compress(u8
** src_p
, int ssize
, u8
*dst
, int dsize
);
77 // Create a listening socket
79 // This joins the cluster multi-cast group.
83 struct sockaddr_in addr
;
84 struct sockaddr_in interface_addr
;
89 config
->cluster_undefined_sessions
= MAXSESSION
-1;
90 config
->cluster_undefined_tunnels
= MAXTUNNEL
-1;
92 if (!config
->cluster_address
)
94 if (!*config
->cluster_interface
)
97 cluster_sockfd
= socket(AF_INET
, SOCK_DGRAM
, UDP
);
99 memset(&addr
, 0, sizeof(addr
));
100 addr
.sin_family
= AF_INET
;
101 addr
.sin_port
= htons(CLUSTERPORT
);
102 addr
.sin_addr
.s_addr
= INADDR_ANY
;
103 setsockopt(cluster_sockfd
, SOL_SOCKET
, SO_REUSEADDR
, &addr
, sizeof(addr
));
105 if (bind(cluster_sockfd
, (void *) &addr
, sizeof(addr
)) < 0)
107 log(0, 0, 0, 0, "Failed to bind cluster socket: %s\n", strerror(errno
));
111 strcpy(ifr
.ifr_name
, config
->cluster_interface
);
112 if (ioctl(cluster_sockfd
, SIOCGIFADDR
, &ifr
) < 0) {
113 log(0, 0, 0, 0, "Failed to get interface address for (%s): %s\n", config
->cluster_interface
, strerror(errno
));
117 memcpy(&interface_addr
, &ifr
.ifr_addr
, sizeof(interface_addr
) );
118 my_address
= interface_addr
.sin_addr
.s_addr
;
120 // Join multicast group.
121 mreq
.imr_multiaddr
.s_addr
= config
->cluster_address
;
122 mreq
.imr_interface
= interface_addr
.sin_addr
;
125 opt
= 0; // Turn off multicast loopback.
126 setsockopt(cluster_sockfd
, IPPROTO_IP
, IP_MULTICAST_LOOP
, &opt
, sizeof(opt
));
128 if (setsockopt(cluster_sockfd
, IPPROTO_IP
, IP_ADD_MEMBERSHIP
, &mreq
, sizeof(mreq
)) < 0) {
129 log(0, 0, 0, 0, "Failed to setsockopt (join mcast group): %s\n", strerror(errno
));
133 if (setsockopt (cluster_sockfd
, IPPROTO_IP
, IP_MULTICAST_IF
, &interface_addr
, sizeof(interface_addr
)) < 0) {
134 log(0, 0, 0, 0, "Failed to setsockopt (set mcast interface): %s\n", strerror(errno
));
138 config
->cluster_last_hb
= TIME
;
139 config
->cluster_seq_number
= -1;
141 return cluster_sockfd
;
146 // Send a chunk of data to the entire cluster (usually via the multicast
150 int cluster_send_data(void *data
, int datalen
)
152 struct sockaddr_in addr
= {0};
154 if (!cluster_sockfd
) return -1;
155 if (!config
->cluster_address
) return 0;
157 addr
.sin_addr
.s_addr
= config
->cluster_address
;
158 addr
.sin_port
= htons(CLUSTERPORT
);
159 addr
.sin_family
= AF_INET
;
161 // log_hex(4, "Cluster send", data, datalen); // VERY big data packets. How about we don't..
163 log(5,0,0,0, "Cluster send data: %d bytes\n", datalen
);
165 if (sendto(cluster_sockfd
, data
, datalen
, MSG_NOSIGNAL
, (void *) &addr
, sizeof(addr
)) < 0)
167 log(0, 0, 0, 0, "sendto: %s\n", strerror(errno
));
175 // Add a chunk of data to a heartbeat packet.
176 // Maintains the format. Assumes that the caller
177 // has passed in a big enough buffer!
179 static void add_type(char ** p
, int type
, int more
, char * data
, int size
)
181 * ( (u32
*)(*p
) ) = type
;
184 * ( (u32
*)(*p
) ) = more
;
187 if (data
&& size
> 0) {
188 memcpy(*p
, data
, size
);
193 void cluster_uptodate(void)
195 if (config
->cluster_iam_uptodate
)
198 if (config
->cluster_undefined_sessions
|| config
->cluster_undefined_tunnels
)
201 config
->cluster_iam_uptodate
= 1;
203 log(0,0,0,0, "Now uptodate with master.\n");
205 // If we're not a master, or if we have no slaves
206 // then start taking traffic..
207 if (!config
->cluster_iam_master
|| !have_peers
)
211 bgp_enable_routing(1);
214 if (config
->send_garp
)
215 send_garp(config
->bind_address
); // Start taking traffic.
220 // Send a unicast UDP packet to a peer with 'data' as the
223 int peer_send_data(u32 peer
, char * data
, int size
)
225 struct sockaddr_in addr
= {0};
227 if (!cluster_sockfd
) return -1;
228 if (!config
->cluster_address
) return 0;
233 addr
.sin_addr
.s_addr
= peer
;
234 addr
.sin_port
= htons(CLUSTERPORT
);
235 addr
.sin_family
= AF_INET
;
237 log_hex(5, "Peer send", data
, size
);
239 if (sendto(cluster_sockfd
, data
, size
, MSG_NOSIGNAL
, (void *) &addr
, sizeof(addr
)) < 0)
241 log(0, 0, 0, 0, "sendto: %s\n", strerror(errno
));
249 // Send a structured message to a peer with a single element of type 'type'.
251 int peer_send_message(u32 peer
, int type
, int more
, char * data
, int size
)
253 char buf
[65536]; // Vast overkill.
256 log(4,0,0,0, "Sending message to peer (type %d, more %d, size %d)\n", type
, more
, size
);
257 add_type(&p
, type
, more
, data
, size
);
259 return peer_send_data(peer
, buf
, (p
-buf
) );
263 // Forward a state changing packet to the master.
265 // The master just processes the payload as if it had
266 // received it off the tap device.
268 int master_forward_packet(char * data
, int size
, u32 addr
, int port
)
270 char buf
[65536]; // Vast overkill.
273 if (!config
->cluster_master_address
) // No election has been held yet. Just skip it.
276 log(4,0,0,0, "Forwarding packet from %s to master (size %d)\n", inet_toa(addr
), size
);
279 add_type(&p
, C_FORWARD
, addr
, (char*) &port
, sizeof(port
) );
280 memcpy(p
, data
, size
);
283 return peer_send_data(config
->cluster_master_address
, buf
, (p
-buf
) );
288 // Forward a throttled packet to the master for handling.
290 // The master just drops the packet into the appropriate
291 // token bucket queue, and lets normal processing take care
294 int master_throttle_packet(int tbfid
, char * data
, int size
)
296 char buf
[65536]; // Vast overkill.
299 if (!config
->cluster_master_address
) // No election has been held yet. Just skip it.
302 log(4,0,0,0, "Throttling packet master (size %d, tbfid %d)\n", size
, tbfid
);
304 add_type(&p
, C_THROTTLE
, tbfid
, data
, size
);
306 return peer_send_data(config
->cluster_master_address
, buf
, (p
-buf
) );
311 // Forward a walled garden packet to the master for handling.
313 // The master just writes the packet straight to the tun
314 // device (where is will normally loop through the
315 // firewall rules, and come back in on the tun device)
317 // (Note that this must be called with the tun header
318 // as the start of the data).
319 int master_garden_packet(sessionidt s
, char *data
, int size
)
321 char buf
[65536]; // Vast overkill.
324 if (!config
->cluster_master_address
) // No election has been held yet. Just skip it.
327 log(4,0,0,0, "Walled garden packet to master (size %d)\n", size
);
329 add_type(&p
, C_GARDEN
, s
, data
, size
);
331 return peer_send_data(config
->cluster_master_address
, buf
, (p
-buf
));
336 // Send a chunk of data as a heartbeat..
337 // We save it in the history buffer as we do so.
339 static void send_heartbeat(int seq
, char * data
, int size
)
343 if (size
> sizeof(past_hearts
[0].data
)) {
344 log(0,0,0,0, "Tried to heartbeat something larger than the maximum packet!\n");
347 i
= seq
% HB_HISTORY_SIZE
;
348 past_hearts
[i
].seq
= seq
;
349 past_hearts
[i
].size
= size
;
350 memcpy(&past_hearts
[i
].data
, data
, size
); // Save it.
351 cluster_send_data(data
, size
);
355 // Send an 'i am alive' message to every machine in the cluster.
357 void cluster_send_ping(time_t basetime
)
359 char buff
[100 + sizeof(pingt
)];
363 if (config
->cluster_iam_master
&& basetime
) // We're heartbeating so no need to ping.
366 log(5,0,0,0, "Sending cluster ping...\n");
369 x
.addr
= config
->bind_address
;
370 x
.undef
= config
->cluster_undefined_sessions
+ config
->cluster_undefined_tunnels
;
371 x
.basetime
= basetime
;
373 add_type(&p
, C_PING
, basetime
, (char *) &x
, sizeof(x
));
374 cluster_send_data(buff
, (p
-buff
) );
378 // Walk the session counters looking for non-zero ones to send
379 // to the master. We send up to 100 of them at one time.
380 // We examine a maximum of 2000 sessions.
381 // (50k max session should mean that we normally
382 // examine the entire session table every 25 seconds).
384 #define MAX_B_RECS (400)
385 void master_update_counts(void)
388 bytest b
[MAX_B_RECS
+1];
390 if (config
->cluster_iam_master
) // Only happens on the slaves.
393 if (!config
->cluster_master_address
) // If we don't have a master, skip it for a while.
396 i
= MAX_B_RECS
* 5; // Examine max 2000 sessions;
397 if (config
->cluster_highest_sessionid
> i
)
398 i
= config
->cluster_highest_sessionid
;
400 for ( c
= 0; i
> 0 ; --i
) {
401 // Next session to look at.
402 walk_session_number
++;
403 if ( walk_session_number
> config
->cluster_highest_sessionid
)
404 walk_session_number
= 1;
406 if (!sess_count
[walk_session_number
].cin
&& !sess_count
[walk_session_number
].cout
)
407 continue; // Unused. Skip it.
409 b
[c
].sid
= walk_session_number
;
410 b
[c
].in
= sess_count
[walk_session_number
].cin
;
411 b
[c
].out
= sess_count
[walk_session_number
].cout
;
413 if (++c
> MAX_B_RECS
) // Send a max of 400 elements in a packet.
417 sess_count
[walk_session_number
].cin
= sess_count
[walk_session_number
].cout
= 0;
420 if (!c
) // Didn't find any that changes. Get out of here!
424 // Forward the data to the master.
425 log(4,0,0,0, "Sending byte counters to master (%d elements)\n", c
);
426 peer_send_message(config
->cluster_master_address
, C_BYTES
, c
, (char*) &b
, sizeof(b
[0]) * c
);
431 // Check that we have a master. If it's been too
432 // long since we heard from a master then hold an election.
434 void cluster_check_master(void)
436 int i
, count
, tcount
, high_sid
= 0;
438 int had_peers
= have_peers
;
441 if (TIME
< (config
->cluster_last_hb
+ config
->cluster_hb_timeout
) )
442 return; // Everything's ok. return.
444 if (!config
->cluster_iam_master
)
445 log(0,0,0,0, "Master timed out! Holding election...\n");
447 config
->cluster_last_hb
= TIME
+ 1;
449 for (i
= have_peers
= 0; i
< num_peers
; ++i
) {
450 if ((peers
[i
].timestamp
+ config
->cluster_hb_timeout
) < t
)
451 continue; // Stale peer! Skip them.
453 if (!peers
[i
].basetime
)
454 continue; // Shutdown peer! Skip them.
457 if (peers
[i
].basetime
< basetime
) {
458 log(1,0,0,0, "Expecting %s to become master\n", inet_toa(peers
[i
].peer
) );
459 return; // They'll win the election. Get out of here.
462 if (peers
[i
].basetime
== basetime
&&
463 peers
[i
].peer
> my_address
) {
464 log(1,0,0,0, "Expecting %s to become master\n", inet_toa(peers
[i
].peer
) );
465 return; // They'll win the election. Wait for them to come up.
469 if (config
->cluster_iam_master
) // If we're the master, we've already won
472 // master lost all slaves, need to handle traffic ourself
473 if (bgp_configured
&& had_peers
&& !have_peers
)
474 bgp_enable_routing(1);
479 // Wow. it's been ages since I last heard a heartbeat
480 // and I'm better than an of my peers so it's time
481 // to become a master!!!
483 config
->cluster_iam_master
= 1;
484 config
->cluster_master_address
= 0;
486 log(0,0,0,0, "I am declaring myself the master!\n");
489 if (bgp_configured
&& have_peers
)
490 bgp_enable_routing(0); /* stop handling traffic */
493 if (config
->cluster_seq_number
== -1)
494 config
->cluster_seq_number
= 0;
497 // Go through and mark all the tunnels as defined.
498 // Count the highest used tunnel number as well.
500 config
->cluster_highest_tunnelid
= 0;
501 for (i
= 0, tcount
= 0; i
< MAXTUNNEL
; ++i
) {
502 if (tunnel
[i
].state
== TUNNELUNDEF
)
503 tunnel
[i
].state
= TUNNELFREE
;
505 if (tunnel
[i
].state
!= TUNNELFREE
&& i
> config
->cluster_highest_tunnelid
)
506 config
->cluster_highest_tunnelid
= i
;
510 // Go through and mark all the sessions as being defined.
511 // reset the idle timeouts.
512 // add temporary byte counters to permanent ones.
513 // Re-string the free list.
514 // Find the ID of the highest session.
517 config
->cluster_highest_sessionid
= 0;
518 for (i
= 0, count
= 0; i
< MAXSESSION
; ++i
) {
519 if (session
[i
].tunnel
== T_UNDEF
) {
520 session
[i
].tunnel
= T_FREE
;
524 if (session
[i
].tunnel
== T_FREE
) { // Unused session. Add to free list.
525 session
[last_free
].next
= i
;
530 // Reset all the idle timeouts..
531 session
[i
].last_packet
= time_now
;
533 // Accumulate un-sent byte counters.
534 session
[i
].cin
+= sess_count
[i
].cin
;
535 session
[i
].cout
+= sess_count
[i
].cout
;
536 session
[i
].total_cin
+= sess_count
[i
].cin
;
537 session
[i
].total_cout
+= sess_count
[i
].cout
;
539 sess_count
[i
].cin
= sess_count
[i
].cout
= 0;
541 session
[i
].radius
= 0; // Reset authentication as the radius blocks aren't up to date.
543 if (session
[i
].sid
>= high_sid
) // This is different to the index into the session table!!!
544 high_sid
= session
[i
].sid
+1;
547 session
[i
].tbf_in
= session
[i
].tbf_out
= 0; // Remove stale pointers from old master.
548 throttle_session(i
, session
[i
].throttle
);
550 // I'm unsure about this. --mo
551 // It's potentially a good thing, but it could send a
553 // if (session[i].throttle)
554 // cluster_send_session(s); // Tell the slaves about the new tbf indexes.
556 if (session
[i
].tunnel
!= T_FREE
&& i
> config
->cluster_highest_sessionid
)
557 config
->cluster_highest_sessionid
= i
;
561 session
[last_free
].next
= 0; // End of chain.
562 last_sid
= high_sid
; // Keep track of the highest used session ID.
566 rebuild_address_pool();
568 // If we're not the very first master, this is a big issue!
570 log(0,0,0,0, "Warning: Fixed %d uninitialized sessions in becoming master!\n", count
);
572 config
->cluster_undefined_sessions
= 0;
573 config
->cluster_undefined_tunnels
= 0;
576 // FIXME. We need to fix up the tunnel control message
577 // queue here! There's a number of other variables we
578 // should also update.
584 // Check that our session table is validly matching what the
585 // master has in mind.
587 // In particular, if we have too many sessions marked 'undefined'
588 // we fix it up here, and we ensure that the 'first free session'
591 static void cluster_check_sessions(int highsession
, int freesession_ptr
, int hightunnel
)
595 sessionfree
= freesession_ptr
; // Keep the freesession ptr valid.
597 if (config
->cluster_iam_uptodate
)
600 if (highsession
> config
->cluster_undefined_sessions
&& hightunnel
> config
->cluster_undefined_tunnels
)
603 // Clear out defined sessions, counting the number of
605 config
->cluster_undefined_sessions
= 0;
606 for (i
= 1 ; i
< MAXSESSION
; ++i
) {
607 if (i
> highsession
) {
608 session
[i
].tunnel
= 0; // Defined.
611 if (session
[i
].tunnel
!= T_UNDEF
)
613 ++config
->cluster_undefined_sessions
;
616 // Clear out defined tunnels, counting the number of
618 config
->cluster_undefined_tunnels
= 0;
619 for (i
= 1 ; i
< MAXTUNNEL
; ++i
) {
620 if (i
> hightunnel
) {
621 tunnel
[i
].state
= TUNNELFREE
; // Defined.
624 if (tunnel
[i
].state
!= TUNNELUNDEF
)
626 ++config
->cluster_undefined_tunnels
;
630 if (config
->cluster_undefined_sessions
|| config
->cluster_undefined_tunnels
) {
631 log(2,0,0,0, "Cleared undefined sessions/tunnels. %d sess (high %d), %d tunn (high %d)\n",
632 config
->cluster_undefined_sessions
, highsession
, config
->cluster_undefined_tunnels
, hightunnel
);
636 // Are we up to date?
638 if (!config
->cluster_iam_uptodate
)
642 int hb_add_type(char **p
, int type
, int id
)
645 case C_CSESSION
: { // Compressed C_SESSION.
646 u8 c
[sizeof(sessiont
) * 2]; // Bigger than worst case.
647 u8
*d
= (u8
*) &session
[id
];
651 size
= rle_compress( &d
, sizeof(sessiont
), c
, sizeof(c
) );
653 // Did we compress the full structure, and is the size actually
655 if ( (d
- orig
) == sizeof(sessiont
) && size
< sizeof(sessiont
) ) {
656 add_type(p
, C_CSESSION
, id
, (char*) c
, size
);
659 // Failed to compress : Fall through.
661 case C_SESSION
: add_type(p
, C_SESSION
, id
,
662 (char*) &session
[id
], sizeof(sessiont
));
665 case C_CTUNNEL
: { // Compressed C_TUNNEL
666 u8 c
[sizeof(tunnelt
) * 2]; // Bigger than worst case.
667 u8
*d
= (u8
*) &tunnel
[id
];
671 size
= rle_compress( &d
, sizeof(tunnelt
), c
, sizeof(c
) );
673 // Did we compress the full structure, and is the size actually
675 if ( (d
- orig
) == sizeof(tunnelt
) && size
< sizeof(tunnelt
) ) {
676 add_type(p
, C_CTUNNEL
, id
, c
, size
);
679 // Failed to compress : Fall through.
681 case C_TUNNEL
: add_type(p
, C_TUNNEL
, id
,
682 (char*) &tunnel
[id
], sizeof(tunnelt
));
685 log(0,0,0,0, "Found an invalid type in heart queue! (%d)\n", type
);
692 // Send a heartbeat, incidently sending out any queued changes..
694 void cluster_heartbeat(int highsession
, int freesession
, int hightunnel
)
696 int i
, count
= 0, tcount
= 0;
697 char buff
[MAX_HEART_SIZE
+ sizeof(heartt
) + sizeof(int) ];
701 if (!config
->cluster_iam_master
) // Only the master does this.
706 // Fill out the heartbeat header.
707 h
.version
= HB_VERSION
;
708 h
.seq
= config
->cluster_seq_number
;
709 h
.basetime
= basetime
;
710 h
.clusterid
= config
->bind_address
; // Will this do??
711 h
.basetime
= basetime
;
712 h
.highsession
= highsession
;
713 h
.freesession
= freesession
;
714 h
.hightunnel
= hightunnel
;
715 h
.size_sess
= sizeof(sessiont
); // Just in case.
716 h
.size_tunn
= sizeof(tunnelt
);
718 add_type(&p
, C_HEARTBEAT
, HB_VERSION
, (char*) &h
, sizeof(h
) );
720 for (i
= 0; i
< config
->cluster_num_changes
; ++i
) {
721 hb_add_type(&p
, cluster_changes
[i
].type
, cluster_changes
[i
].id
);
724 if (p
> (buff
+ sizeof(buff
))) { // Did we somehow manage to overun the buffer?
725 log(0,0,0,0, "FATAL: Overran the heartbeat buffer! This is fatal. Exiting. (size %d)\n", p
- buff
);
730 // Fill out the packet with sessions from the session table...
731 // (not forgetting to leave space so we can get some tunnels in too )
732 while ( (p
+ sizeof(u32
) * 2 + sizeof(sessiont
) * 2 ) < (buff
+ MAX_HEART_SIZE
) ) {
734 if (!walk_session_number
) // session #0 isn't valid.
735 ++walk_session_number
;
737 if (count
>= highsession
) // If we're a small cluster, don't go wild.
740 hb_add_type(&p
, C_CSESSION
, walk_session_number
);
741 walk_session_number
= (1+walk_session_number
)%(highsession
+1); // +1 avoids divide by zero.
743 ++count
; // Count the number of extra sessions we're sending.
747 // Fill out the packet with tunnels from the tunnel table...
748 // This effectively means we walk the tunnel table more quickly
749 // than the session table. This is good because stuffing up a
750 // tunnel is a much bigger deal than stuffing up a session.
752 while ( (p
+ sizeof(u32
) * 2 + sizeof(tunnelt
) ) < (buff
+ MAX_HEART_SIZE
) ) {
754 if (!walk_tunnel_number
) // tunnel #0 isn't valid.
755 ++walk_tunnel_number
;
757 if (tcount
>= config
->cluster_highest_tunnelid
)
760 hb_add_type(&p
, C_CTUNNEL
, walk_tunnel_number
);
761 walk_tunnel_number
= (1+walk_tunnel_number
)%(config
->cluster_highest_tunnelid
+1); // +1 avoids divide by zero.
767 // Did we do something wrong?
768 if (p
> (buff
+ sizeof(buff
))) { // Did we somehow manage to overun the buffer?
769 log(0,0,0,0, "Overran the heartbeat buffer now! This is fatal. Exiting. (size %d)\n", p
- buff
);
773 log(3,0,0,0, "Sending heartbeat with %d changes (%d x-sess, %d x-tunnels, %d highsess, %d hightun size %d)\n",
774 config
->cluster_num_changes
, count
, tcount
, config
->cluster_highest_sessionid
,
775 config
->cluster_highest_tunnelid
, (p
-buff
));
777 config
->cluster_num_changes
= 0;
779 send_heartbeat(h
.seq
, buff
, (p
-buff
) ); // Send out the heartbeat to the cluster, keeping a copy of it.
781 config
->cluster_seq_number
= (config
->cluster_seq_number
+1)%HB_MAX_SEQ
; // Next seq number to use.
785 // A structure of type 'type' has changed; Add it to the queue to send.
787 int type_changed(int type
, int id
)
791 for (i
= 0 ; i
< config
->cluster_num_changes
; ++i
)
792 if ( cluster_changes
[i
].id
== id
&&
793 cluster_changes
[i
].type
== type
)
794 return 0; // Already marked for change.
796 cluster_changes
[i
].type
= type
;
797 cluster_changes
[i
].id
= id
;
798 ++config
->cluster_num_changes
;
800 if (config
->cluster_num_changes
> MAX_CHANGES
)
801 cluster_heartbeat(config
->cluster_highest_sessionid
, fsess
, config
->cluster_highest_tunnelid
);
807 // A particular session has been changed!
808 int cluster_send_session(int sid
)
810 if (!config
->cluster_iam_master
) {
811 log(0,0,sid
,0, "I'm not a master, but I just tried to change a session!\n");
815 return type_changed(C_CSESSION
, sid
);
818 // A particular tunnel has been changed!
819 int cluster_send_tunnel(int tid
)
821 if (!config
->cluster_iam_master
) {
822 log(0,0,0,tid
, "I'm not a master, but I just tried to change a tunnel!\n");
826 return type_changed(C_CTUNNEL
, tid
);
831 // We're a master, and a slave has just told us that it's
832 // missed a packet. We'll resend it every packet since
833 // the last one it's seen.
835 int cluster_catchup_slave(int seq
, u32 slave
)
840 log(1,0,0,0, "Slave %s sent LASTSEEN with seq %d\n", inet_toa(slave
), seq
);
842 diff
= config
->cluster_seq_number
- seq
; // How many packet do we need to send?
846 if (diff
>= HB_HISTORY_SIZE
) { // Ouch. We don't have the packet to send it!
847 log(0,0,0,0, "A slaved asked for message %d when our seq number is %d. Killing it.\n",
848 seq
, config
->cluster_seq_number
);
849 return peer_send_message(slave
, C_KILL
, seq
, NULL
, 0);// Kill the slave. Nothing else to do.
852 // Now resend every packet that it missed, in order.
853 while (seq
!= config
->cluster_seq_number
) {
854 s
= seq
%HB_HISTORY_SIZE
;
855 if (seq
!= past_hearts
[s
].seq
) {
856 log(0,0,0,0, "Tried to re-send heartbeat for %s but %d doesn't match %d! (%d,%d)\n",
857 inet_toa(slave
), seq
, past_hearts
[s
].seq
, s
, config
->cluster_seq_number
);
858 return -1; // What to do here!?
860 peer_send_data(slave
, past_hearts
[s
].data
, past_hearts
[s
].size
);
861 seq
= (seq
+1)%HB_MAX_SEQ
; // Increment to next seq number.
863 return 0; // All good!
867 // We've heard from another peer! Add it to the list
868 // that we select from at election time.
870 int cluster_add_peer(u32 peer
, time_t basetime
, pingt
*p
)
876 if (clusterid
!= config
->bind_address
)
879 log(4,0,0,0, "Skipping ping from %s (different cluster)\n", inet_toa(peer
));
883 // Is this the master shutting down??
884 if (peer
== config
->cluster_master_address
&& !basetime
) {
885 config
->cluster_master_address
= 0;
886 config
->cluster_last_hb
= 0; // Force an election.
887 cluster_check_master();
891 for (i
= 0; i
< num_peers
; ++i
)
893 if (peers
[i
].peer
!= peer
)
896 // This peer already exists. Just update the timestamp.
897 peers
[i
].basetime
= basetime
;
898 peers
[i
].timestamp
= TIME
;
904 log(4,0,0,0, "Adding %s as a peer\n", inet_toa(peer
));
906 // Not found. Is there a stale slot to re-use?
907 for (i
= 0; i
< num_peers
; ++i
)
909 if (peers
[i
].peer
!= peer
)
911 if ((peers
[i
].timestamp
+ config
->cluster_hb_timeout
* 10) < TIME
) // Stale.
915 if (i
>= CLUSTER_MAX_SIZE
)
918 log(0,0,0,0, "Tried to add %s as a peer, but I already have %d of them!\n", inet_toa(peer
), i
);
922 peers
[i
].peer
= peer
;
923 peers
[i
].basetime
= basetime
;
924 peers
[i
].timestamp
= TIME
;
928 log(1,0,0,0, "Added %s as a new peer. Now %d peers\n", inet_toa(peer
), num_peers
);
932 /* drop routes if we've now got a peer */
933 if (bgp_configured
&& config
->cluster_iam_master
&& !have_peers
)
934 bgp_enable_routing(0);
942 /* Handle the slave updating the byte counters for the master. */
944 // Note that we don't mark the session as dirty; We rely on
945 // the slow table walk to propogate this back out to the slaves.
947 int cluster_handle_bytes(char * data
, int size
)
953 log(3,0,0,0, "Got byte counter update (size %d)\n", size
);
955 /* Loop around, adding the byte
956 counts to each of the sessions. */
958 while (size
>= sizeof(*b
) ) {
959 if (b
->sid
> MAXSESSION
) {
960 log(0,0,0,0, "Got C_BYTES with session #%d!\n", b
->sid
);
961 return -1; /* Abort processing */
964 session
[b
->sid
].total_cin
+= b
->in
;
965 session
[b
->sid
].total_cout
+= b
->out
;
967 session
[b
->sid
].cin
+= b
->in
;
968 session
[b
->sid
].cout
+= b
->out
;
969 session
[b
->sid
].last_packet
= time_now
; // Reset idle timer!
976 log(0,0,0,0, "Got C_BYTES with %d bytes of trailing junk!\n", size
);
982 // Handle receiving a session structure in a heartbeat packet.
984 static int cluster_recv_session(int more
, u8
* p
)
986 if (more
>= MAXSESSION
) {
987 log(0,0,0,0, "DANGER: Received a heartbeat session id > MAXSESSION!\n");
991 if (session
[more
].tunnel
== T_UNDEF
) {
992 if (config
->cluster_iam_uptodate
) { // Sanity.
993 log(0,0,0,0, "I thought I was uptodate but I just found an undefined session!\n");
995 --config
->cluster_undefined_sessions
;
999 load_session(more
, (sessiont
*) p
); // Copy session into session table..
1001 log(5,0,more
,0, "Received session update (%d undef)\n", config
->cluster_undefined_sessions
);
1003 if (!config
->cluster_iam_uptodate
)
1004 cluster_uptodate(); // Check to see if we're up to date.
1008 static int cluster_recv_tunnel(int more
, u8
*p
)
1010 if (more
>= MAXTUNNEL
) {
1011 log(0,0,0,0, "DANGER: Received a tunnel session id > MAXTUNNEL!\n");
1015 if (tunnel
[more
].state
== TUNNELUNDEF
) {
1016 if (config
->cluster_iam_uptodate
) { // Sanity.
1017 log(0,0,0,0, "I thought I was uptodate but I just found an undefined tunnel!\n");
1019 --config
->cluster_undefined_tunnels
;
1023 memcpy(&tunnel
[more
], p
, sizeof(tunnel
[more
]) );
1026 // Clear tunnel control messages. These are dynamically allocated.
1027 // If we get unlucky, this may cause the tunnel to drop!
1029 tunnel
[more
].controls
= tunnel
[more
].controle
= NULL
;
1030 tunnel
[more
].controlc
= 0;
1032 log(5,0,0,more
, "Received tunnel update\n");
1034 if (!config
->cluster_iam_uptodate
)
1035 cluster_uptodate(); // Check to see if we're up to date.
1042 // Process a version one heartbeat..
1044 static int cluster_process_heartbeat_v2(u8
* data
, int size
, int more
, u8
* p
, u32 addr
)
1047 int s
= size
- (p
-data
);
1050 if (more
!= HB_VERSION
) {
1051 log(0,0,0,0, "Received a heartbeat version that I don't understand!\n");
1052 return -1; // Ignore it??
1054 // Ok. It's a heartbeat packet from a cluster master!
1063 if (h
->clusterid
!= config
->bind_address
)
1064 return -1; // It's not part of our cluster.
1066 if (config
->cluster_iam_master
) { // Sanity...
1067 // Note that this MUST match the election process above!
1069 log(0,0,0,0, "I just got a packet claiming to be from a master but _I_ am the master!\n");
1071 log(0,0,0,0, "Heartbeat from addr %s with zero basetime!\n", inet_toa(htonl(addr
)) );
1072 return -1; // Skip it.
1074 if (basetime
> h
->basetime
) {
1075 log(0,0,0,0, "They're (%s) an older master than me so I'm gone!\n", inet_toa(htonl(addr
)));
1078 if (basetime
== h
->basetime
&& my_address
< addr
) { // Tie breaker.
1079 log(0,0,0,0, "They're a higher IP address than me, so I'm gone!\n");
1082 return -1; // Skip it.
1085 if (config
->cluster_seq_number
== -1) // Don't have one. Just align to the master...
1086 config
->cluster_seq_number
= h
->seq
;
1088 config
->cluster_last_hb
= TIME
; // Reset to ensure that we don't become master!!
1090 if (config
->cluster_seq_number
!= h
->seq
) { // Out of sequence heartbeat!
1091 log(1,0,0,0, "HB: Got seq# %d but was expecting %d. asking for resend.\n", h
->seq
, config
->cluster_seq_number
);
1093 peer_send_message(addr
, C_LASTSEEN
, config
->cluster_seq_number
, NULL
, 0);
1095 config
->cluster_last_hb
= TIME
; // Reset to ensure that we don't become master!!
1097 // Just drop the packet. The master will resend it as part of the catchup.
1101 // Save the packet in our buffer.
1102 // This is needed in case we become the master.
1103 config
->cluster_seq_number
= (h
->seq
+1)%HB_MAX_SEQ
;
1104 i
= h
->seq
% HB_HISTORY_SIZE
;
1105 past_hearts
[i
].seq
= h
->seq
;
1106 past_hearts
[i
].size
= size
;
1107 memcpy(&past_hearts
[i
].data
, data
, size
); // Save it.
1110 // Check that we don't have too many undefined sessions, and
1111 // that the free session pointer is correct.
1112 cluster_check_sessions(h
->highsession
, h
->freesession
, h
->hightunnel
);
1114 // Ok. process the packet...
1117 type
= * ((u32
*) p
);
1121 more
= * ((u32
*) p
);
1126 case C_CSESSION
: { // Compressed session structure.
1127 u8 c
[ sizeof(sessiont
) + 2];
1131 size
= rle_decompress((u8
**) &p
, s
, c
, sizeof(c
) );
1134 if (size
!= sizeof(sessiont
) ) { // Ouch! Very very bad!
1135 log(0,0,0,0, "DANGER: Received a CSESSION that didn't decompress correctly!\n");
1136 // Now what? Should exit! No-longer up to date!
1140 cluster_recv_session(more
, c
);
1144 if ( s
< sizeof(session
[more
]))
1147 cluster_recv_session(more
, p
);
1149 p
+= sizeof(session
[more
]);
1150 s
-= sizeof(session
[more
]);
1153 case C_CTUNNEL
: { // Compressed tunnel structure.
1154 u8 c
[ sizeof(tunnelt
) + 2];
1158 size
= rle_decompress( (u8
**) &p
, s
, c
, sizeof(c
) );
1161 if (size
!= sizeof(tunnelt
) ) { // Ouch! Very very bad!
1162 log(0,0,0,0, "DANGER: Received a CSESSION that didn't decompress correctly!\n");
1163 // Now what? Should exit! No-longer up to date!
1167 cluster_recv_tunnel(more
, c
);
1172 if ( s
< sizeof(tunnel
[more
]))
1175 cluster_recv_tunnel(more
, p
);
1177 p
+= sizeof(tunnel
[more
]);
1178 s
-= sizeof(tunnel
[more
]);
1181 log(0,0,0,0, "DANGER: I received a heartbeat element where I didn't understand the type! (%d)\n", type
);
1182 return -1; // can't process any more of the packet!!
1185 if (config
->cluster_master_address
!= addr
)
1188 str
= strdup(inet_toa(config
->cluster_master_address
));
1189 log(0,0,0,0, "My master just changed from %s to %s!\n", str
, inet_toa(addr
));
1193 config
->cluster_master_address
= addr
;
1194 config
->cluster_last_hb
= TIME
; // Successfully received a heartbeat!
1198 log(0,0,0,0, "I got an incomplete heartbeat packet! This means I'm probably out of sync!!\n");
1203 // We got a packet on the cluster port!
1204 // Handle pings, lastseens, and heartbeats!
1206 int processcluster(char * data
, int size
, u32 addr
)
1212 if (addr
== my_address
)
1213 return -1; // Ignore it. Something looped back the multicast!
1215 log(5,0,0,0, "Process cluster: %d bytes from %s\n", size
, inet_toa(addr
));
1217 if (s
<= 0) // Any data there??
1223 type
= * ((u32
*) p
);
1227 more
= * ((u32
*) p
);
1232 case C_PING
: // Update the peers table.
1233 return cluster_add_peer(addr
, more
, (pingt
*)p
);
1235 case C_LASTSEEN
: // Catch up a slave (slave missed a packet).
1236 return cluster_catchup_slave(more
, addr
);
1238 case C_FORWARD
: { // Forwarded control packet. pass off to processudp.
1239 struct sockaddr_in a
;
1240 a
.sin_addr
.s_addr
= more
;
1242 a
.sin_port
= * (int*) p
;
1246 if (!config
->cluster_iam_master
) { // huh?
1247 log(0,0,0,0, "I'm not the master, but I got a C_FORWARD from %s?\n", inet_toa(addr
));
1251 log(4,0,0,0, "Got a forwarded packet... (%s:%d)\n", inet_toa(more
), a
.sin_port
);
1253 processudp(p
, s
, &a
);
1256 case C_THROTTLE
: { // Receive a forwarded packet from a slave.
1257 if (!config
->cluster_iam_master
) {
1258 log(0,0,0,0, "I'm not the master, but I got a C_THROTTLE from %s?\n", inet_toa(addr
));
1262 tbf_queue_packet(more
, p
, s
); // The TBF id tells wether it goes in or out.
1266 // Receive a walled garden packet from a slave.
1267 if (!config
->cluster_iam_master
) {
1268 log(0,0,0,0, "I'm not the master, but I got a C_GARDEN from %s?\n", inet_toa(addr
));
1276 return cluster_handle_bytes(p
, s
);
1278 case C_KILL
: // The master asked us to die!? (usually because we're too out of date).
1279 if (config
->cluster_iam_master
) {
1280 log(0,0,0,0, "_I_ am master, but I received a C_KILL from %s! (Seq# %d)\n", inet_toa(addr
), more
);
1283 if (more
!= config
->cluster_seq_number
) {
1284 log(0,0,0,0, "The master asked us to die but the seq number didn't match!?\n");
1288 if (addr
!= config
->cluster_master_address
) {
1289 log(0,0,0,0, "Received a C_KILL from %s which doesn't match config->cluster_master_address (%x)\n",
1290 inet_toa(addr
), config
->cluster_master_address
);
1291 // We can only warn about it. The master might really have switched!
1294 log(0,0,0,0, "Received a valid C_KILL: I'm going to die now.\n");
1296 exit(0); // Lets be paranoid;
1297 return -1; // Just signalling the compiler.
1300 log(4,0,0,0, "Got a heartbeat from %s\n", inet_toa(addr
));
1302 return cluster_process_heartbeat_v2(data
, size
, more
, p
, addr
);
1305 log(0,0,0,0, "Strange type packet received on cluster socket (%d)\n", type
);
1310 log(0,0,0,0, "I got an cluster heartbeat packet! This means I'm probably out of sync!!\n");
1314 //====================================================================================================
1316 int cmd_show_cluster(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1320 if (CLI_HELP_REQUESTED
)
1321 return CLI_HELP_NO_ARGS
;
1323 cli_print(cli
, "Cluster status : %s", config
->cluster_iam_master
? "Master" : "Slave" );
1324 cli_print(cli
, "My address : %s", inet_toa(my_address
));
1325 cli_print(cli
, "VIP address : %s", inet_toa(config
->bind_address
));
1326 cli_print(cli
, "Multicast address: %s", inet_toa(config
->cluster_address
));
1327 cli_print(cli
, "Multicast i'face : %s", config
->cluster_interface
);
1329 if (!config
->cluster_iam_master
) {
1330 cli_print(cli
, "My master : %s (last heartbeat %.1f seconds old)",
1331 config
->cluster_master_address
? inet_toa(config
->cluster_master_address
) : "Not defined",
1332 0.1 * (TIME
- config
->cluster_last_hb
));
1333 cli_print(cli
, "Uptodate : %s", config
->cluster_iam_uptodate
? "Yes" : "No");
1334 cli_print(cli
, "Next sequence number expected: %d", config
->cluster_seq_number
);
1335 cli_print(cli
, "%d sessions undefined of %d", config
->cluster_undefined_sessions
, config
->cluster_highest_sessionid
);
1336 cli_print(cli
, "%d tunnels undefined of %d", config
->cluster_undefined_tunnels
, config
->cluster_highest_tunnelid
);
1338 cli_print(cli
, "Next heartbeat # : %d", config
->cluster_seq_number
);
1339 cli_print(cli
, "Highest session : %d", config
->cluster_highest_sessionid
);
1340 cli_print(cli
, "Highest tunnel : %d", config
->cluster_highest_tunnelid
);
1341 cli_print(cli
, "%d changes queued for sending", config
->cluster_num_changes
);
1343 cli_print(cli
, "%d peers.", num_peers
);
1346 cli_print(cli
, "%20s %10s %8s", "Address", "Basetime", "Age");
1347 for (i
= 0; i
< num_peers
; ++i
) {
1348 cli_print(cli
, "%20s %10d %8d", inet_toa(peers
[i
].peer
),
1349 peers
[i
].basetime
, TIME
- peers
[i
].timestamp
);
1355 // Simple run-length-encoding compression.
1357 // 1 byte < 128 = count of non-zero bytes following. // Not legal to be zero.
1358 // n non-zero bytes;
1360 // 1 byte > 128 = (count - 128) run of zero bytes. //
1362 // count == 0 indicates end of compressed stream.
1364 // Compress from 'src' into 'dst'. return number of bytes
1366 // Updates *src_p to indicate 1 past last bytes used.
1368 // We could get an extra byte in the zero runs by storing (count-1)
1369 // but I'm playing it safe.
1371 // Worst case is a 50% expansion in space required (trying to
1372 // compress { 0x00, 0x01 } * N )
1373 int rle_compress(u8
** src_p
, int ssize
, u8
*dst
, int dsize
)
1376 int orig_dsize
= dsize
;
1380 while (ssize
> 0 && dsize
> 2) {
1382 x
= dst
++; --dsize
; // Reserve space for count byte..
1384 if (*src
) { // Copy a run of non-zero bytes.
1385 while (*src
&& count
< 127 && ssize
> 0 && dsize
> 1) { // Count number of non-zero bytes.
1390 *x
= count
; // Store number of non-zero bytes. Guarenteed to be non-zero!
1392 } else { // Compress a run of zero bytes.
1393 while (*src
== 0 && count
< 127 && ssize
> 0) {
1402 *dst
++ = 0x0; // Add Stop byte.
1406 return (orig_dsize
- dsize
);
1410 // Decompress the buffer into **p.
1411 // 'psize' is the size of the decompression buffer available.
1413 // Returns the number of bytes decompressed.
1415 // Decompresses from '*src_p' into 'dst'.
1416 // Return the number of dst bytes used.
1417 // Updates the 'src_p' pointer to point to the
1418 // first un-used byte.
1419 int rle_decompress(u8
** src_p
, int ssize
, u8
*dst
, int dsize
)
1422 int orig_dsize
= dsize
;
1423 char * src
= *src_p
;
1425 while (ssize
>0 && dsize
> 0) { // While there's more to decompress, and there's room in the decompress buffer...
1426 count
= *src
++; --ssize
; // get the count byte from the source.
1427 if (count
== 0x0) // End marker reached? If so, finish.
1430 if (count
& 0x80) { // Decompress a run of zeros
1431 for (count
&= 0x7f ; count
> 0 && dsize
> 0; --count
) {
1435 } else { // Copy run of non-zero bytes.
1436 for ( ; count
> 0 && ssize
&& dsize
; --count
) { // Copy non-zero bytes across.
1443 return (orig_dsize
- dsize
);