add counters for select_called, select_ready and select_processed
[l2tpns.git] / cluster.c
1 // L2TPNS Clustering Stuff
2
3 char const *cvs_id_cluster = "$Id: cluster.c,v 1.26 2004-12-16 23:40:31 bodea Exp $";
4
5 #include <stdio.h>
6 #include <stdlib.h>
7 #include <stdarg.h>
8 #include <unistd.h>
9 #include <inttypes.h>
10 #include <sys/file.h>
11 #include <sys/stat.h>
12 #include <sys/socket.h>
13 #include <netinet/in.h>
14 #include <arpa/inet.h>
15 #include <sys/ioctl.h>
16 #include <net/if.h>
17 #include <string.h>
18 #include <malloc.h>
19 #include <errno.h>
20 #include <libcli.h>
21
22 #include "l2tpns.h"
23 #include "cluster.h"
24 #include "util.h"
25 #include "tbf.h"
26
27 #ifdef BGP
28 #include "bgp.h"
29 #endif
30 /*
31 * All cluster packets have the same format.
32 *
33 * One or more instances of
34 * a 32 bit 'type' id.
35 * a 32 bit 'extra' data dependant on the 'type'.
36 * zero or more bytes of structure data, dependant on the type.
37 *
38 */
39
40 // Module variables.
41 int cluster_sockfd = 0; // The filedescriptor for the cluster communications port.
42
43 in_addr_t 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.
46
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!
49
50 static struct {
51 int type;
52 int id;
53 } cluster_changes[MAX_CHANGES]; // Queue of changed structures that need to go out when next heartbeat.
54
55 static struct {
56 int seq;
57 int size;
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.
61
62 static struct {
63 in_addr_t peer;
64 uint32_t basetime;
65 clockt timestamp;
66 int uptodate;
67 } peers[CLUSTER_MAX_SIZE]; // List of all the peers we've heard from.
68 static int num_peers; // Number of peers in list.
69
70 static int rle_decompress(uint8_t **src_p, int ssize, uint8_t *dst, int dsize);
71 static int rle_compress(uint8_t **src_p, int ssize, uint8_t *dst, int dsize);
72
73 //
74 // Create a listening socket
75 //
76 // This joins the cluster multi-cast group.
77 //
78 int cluster_init()
79 {
80 struct sockaddr_in addr;
81 struct sockaddr_in interface_addr;
82 struct ip_mreq mreq;
83 struct ifreq ifr;
84 int opt;
85
86 config->cluster_undefined_sessions = MAXSESSION-1;
87 config->cluster_undefined_tunnels = MAXTUNNEL-1;
88
89 if (!config->cluster_address)
90 return 0;
91 if (!*config->cluster_interface)
92 return 0;
93
94 cluster_sockfd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
95
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));
101
102 opt = fcntl(cluster_sockfd, F_GETFL, 0);
103 fcntl(cluster_sockfd, F_SETFL, opt | O_NONBLOCK);
104
105 if (bind(cluster_sockfd, (void *) &addr, sizeof(addr)) < 0)
106 {
107 LOG(0, 0, 0, "Failed to bind cluster socket: %s\n", strerror(errno));
108 return -1;
109 }
110
111 strcpy(ifr.ifr_name, config->cluster_interface);
112 if (ioctl(cluster_sockfd, SIOCGIFADDR, &ifr) < 0)
113 {
114 LOG(0, 0, 0, "Failed to get interface address for (%s): %s\n", config->cluster_interface, strerror(errno));
115 return -1;
116 }
117
118 memcpy(&interface_addr, &ifr.ifr_addr, sizeof(interface_addr));
119 my_address = interface_addr.sin_addr.s_addr;
120
121 // Join multicast group.
122 mreq.imr_multiaddr.s_addr = config->cluster_address;
123 mreq.imr_interface = interface_addr.sin_addr;
124
125
126 opt = 0; // Turn off multicast loopback.
127 setsockopt(cluster_sockfd, IPPROTO_IP, IP_MULTICAST_LOOP, &opt, sizeof(opt));
128
129 if (setsockopt(cluster_sockfd, IPPROTO_IP, IP_ADD_MEMBERSHIP, &mreq, sizeof(mreq)) < 0)
130 {
131 LOG(0, 0, 0, "Failed to setsockopt (join mcast group): %s\n", strerror(errno));
132 return -1;
133 }
134
135 if (setsockopt(cluster_sockfd, IPPROTO_IP, IP_MULTICAST_IF, &interface_addr, sizeof(interface_addr)) < 0)
136 {
137 LOG(0, 0, 0, "Failed to setsockopt (set mcast interface): %s\n", strerror(errno));
138 return -1;
139 }
140
141 config->cluster_last_hb = TIME;
142 config->cluster_seq_number = -1;
143
144 return cluster_sockfd;
145 }
146
147
148 //
149 // Send a chunk of data to the entire cluster (usually via the multicast
150 // address ).
151 //
152
153 static int cluster_send_data(void *data, int datalen)
154 {
155 struct sockaddr_in addr = {0};
156
157 if (!cluster_sockfd) return -1;
158 if (!config->cluster_address) return 0;
159
160 addr.sin_addr.s_addr = config->cluster_address;
161 addr.sin_port = htons(CLUSTERPORT);
162 addr.sin_family = AF_INET;
163
164 LOG(5, 0, 0, "Cluster send data: %d bytes\n", datalen);
165
166 if (sendto(cluster_sockfd, data, datalen, MSG_NOSIGNAL, (void *) &addr, sizeof(addr)) < 0)
167 {
168 LOG(0, 0, 0, "sendto: %s\n", strerror(errno));
169 return -1;
170 }
171
172 return 0;
173 }
174
175 //
176 // Add a chunk of data to a heartbeat packet.
177 // Maintains the format. Assumes that the caller
178 // has passed in a big enough buffer!
179 //
180 static void add_type(char **p, int type, int more, char *data, int size)
181 {
182 *((uint32_t *) (*p)) = type;
183 *p += sizeof(uint32_t);
184
185 *((uint32_t *)(*p)) = more;
186 *p += sizeof(uint32_t);
187
188 if (data && size > 0) {
189 memcpy(*p, data, size);
190 *p += size;
191 }
192 }
193
194 // advertise our presence via BGP or gratuitous ARP
195 static void advertise(void)
196 {
197 #ifdef BGP
198 if (bgp_configured)
199 bgp_enable_routing(1);
200 else
201 #endif /* BGP */
202 if (config->send_garp)
203 send_garp(config->bind_address); // Start taking traffic.
204 }
205
206 static void cluster_uptodate(void)
207 {
208 if (config->cluster_iam_uptodate)
209 return;
210
211 if (config->cluster_undefined_sessions || config->cluster_undefined_tunnels)
212 return;
213
214 config->cluster_iam_uptodate = 1;
215
216 LOG(0, 0, 0, "Now uptodate with master.\n");
217 advertise();
218 }
219
220 //
221 // Send a unicast UDP packet to a peer with 'data' as the
222 // contents.
223 //
224 static int peer_send_data(in_addr_t peer, char *data, int size)
225 {
226 struct sockaddr_in addr = {0};
227
228 if (!cluster_sockfd) return -1;
229 if (!config->cluster_address) return 0;
230
231 if (!peer) // Odd??
232 return -1;
233
234 addr.sin_addr.s_addr = peer;
235 addr.sin_port = htons(CLUSTERPORT);
236 addr.sin_family = AF_INET;
237
238 LOG_HEX(5, "Peer send", data, size);
239
240 if (sendto(cluster_sockfd, data, size, MSG_NOSIGNAL, (void *) &addr, sizeof(addr)) < 0)
241 {
242 LOG(0, 0, 0, "sendto: %s\n", strerror(errno));
243 return -1;
244 }
245
246 return 0;
247 }
248
249 //
250 // Send a structured message to a peer with a single element of type 'type'.
251 //
252 static int peer_send_message(in_addr_t peer, int type, int more, char *data, int size)
253 {
254 char buf[65536]; // Vast overkill.
255 char *p = buf;
256
257 LOG(4, 0, 0, "Sending message to peer (type %d, more %d, size %d)\n", type, more, size);
258 add_type(&p, type, more, data, size);
259
260 return peer_send_data(peer, buf, (p-buf) );
261 }
262
263 //
264 // Forward a state changing packet to the master.
265 //
266 // The master just processes the payload as if it had
267 // received it off the tun device.
268 //
269 int master_forward_packet(char *data, int size, in_addr_t addr, int port)
270 {
271 char buf[65536]; // Vast overkill.
272 char *p = buf;
273
274 if (!config->cluster_master_address) // No election has been held yet. Just skip it.
275 return -1;
276
277 LOG(4, 0, 0, "Forwarding packet from %s to master (size %d)\n", fmtaddr(addr, 0), size);
278
279 STAT(c_forwarded);
280 add_type(&p, C_FORWARD, addr, (char *) &port, sizeof(port));
281 memcpy(p, data, size);
282 p += size;
283
284 return peer_send_data(config->cluster_master_address, buf, (p - buf));
285 }
286
287 //
288 // Forward a throttled packet to the master for handling.
289 //
290 // The master just drops the packet into the appropriate
291 // token bucket queue, and lets normal processing take care
292 // of it.
293 //
294 int master_throttle_packet(int tbfid, char *data, int size)
295 {
296 char buf[65536]; // Vast overkill.
297 char *p = buf;
298
299 if (!config->cluster_master_address) // No election has been held yet. Just skip it.
300 return -1;
301
302 LOG(4, 0, 0, "Throttling packet master (size %d, tbfid %d)\n", size, tbfid);
303
304 add_type(&p, C_THROTTLE, tbfid, data, size);
305
306 return peer_send_data(config->cluster_master_address, buf, (p-buf) );
307
308 }
309
310 //
311 // Forward a walled garden packet to the master for handling.
312 //
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)
316 //
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)
320 {
321 char buf[65536]; // Vast overkill.
322 char *p = buf;
323
324 if (!config->cluster_master_address) // No election has been held yet. Just skip it.
325 return -1;
326
327 LOG(4, 0, 0, "Walled garden packet to master (size %d)\n", size);
328
329 add_type(&p, C_GARDEN, s, data, size);
330
331 return peer_send_data(config->cluster_master_address, buf, (p-buf));
332
333 }
334
335 //
336 // Send a chunk of data as a heartbeat..
337 // We save it in the history buffer as we do so.
338 //
339 static void send_heartbeat(int seq, char *data, int size)
340 {
341 int i;
342
343 if (size > sizeof(past_hearts[0].data))
344 {
345 LOG(0, 0, 0, "Tried to heartbeat something larger than the maximum packet!\n");
346 kill(0, SIGTERM);
347 exit(1);
348 }
349 i = seq % HB_HISTORY_SIZE;
350 past_hearts[i].seq = seq;
351 past_hearts[i].size = size;
352 memcpy(&past_hearts[i].data, data, size); // Save it.
353 cluster_send_data(data, size);
354 }
355
356 //
357 // Send an 'i am alive' message to every machine in the cluster.
358 //
359 void cluster_send_ping(time_t basetime)
360 {
361 char buff[100 + sizeof(pingt)];
362 char *p = buff;
363 pingt x;
364
365 if (config->cluster_iam_master && basetime) // We're heartbeating so no need to ping.
366 return;
367
368 LOG(5, 0, 0, "Sending cluster ping...\n");
369
370 x.ver = 1;
371 x.addr = config->bind_address;
372 x.undef = config->cluster_undefined_sessions + config->cluster_undefined_tunnels;
373 x.basetime = basetime;
374
375 add_type(&p, C_PING, basetime, (char *) &x, sizeof(x));
376 cluster_send_data(buff, (p-buff) );
377 }
378
379 //
380 // Walk the session counters looking for non-zero ones to send
381 // to the master. We send up to 600 of them at one time.
382 // We examine a maximum of 3000 sessions.
383 // (50k max session should mean that we normally
384 // examine the entire session table every 25 seconds).
385
386 #define MAX_B_RECS (600)
387 void master_update_counts(void)
388 {
389 int i, c;
390 bytest b[MAX_B_RECS+1];
391
392 if (config->cluster_iam_master) // Only happens on the slaves.
393 return;
394
395 if (!config->cluster_master_address) // If we don't have a master, skip it for a while.
396 return;
397
398 i = MAX_B_RECS * 5; // Examine max 2000 sessions;
399 if (config->cluster_highest_sessionid > i)
400 i = config->cluster_highest_sessionid;
401
402 for ( c = 0; i > 0 ; --i) {
403 // Next session to look at.
404 walk_session_number++;
405 if ( walk_session_number > config->cluster_highest_sessionid)
406 walk_session_number = 1;
407
408 if (!sess_count[walk_session_number].cin && !sess_count[walk_session_number].cout)
409 continue; // Unused. Skip it.
410
411 b[c].sid = walk_session_number;
412 b[c].in = sess_count[walk_session_number].cin;
413 b[c].out = sess_count[walk_session_number].cout;
414
415 if (++c > MAX_B_RECS) // Send a max of 400 elements in a packet.
416 break;
417
418 // Reset counters.
419 sess_count[walk_session_number].cin = sess_count[walk_session_number].cout = 0;
420 }
421
422 if (!c) // Didn't find any that changes. Get out of here!
423 return;
424
425
426 // Forward the data to the master.
427 LOG(4, 0, 0, "Sending byte counters to master (%d elements)\n", c);
428 peer_send_message(config->cluster_master_address, C_BYTES, c, (char *) &b, sizeof(b[0]) * c);
429 return;
430 }
431
432 //
433 // On the master, check how our slaves are going. If
434 // one of them's not up-to-date we'll heartbeat faster.
435 // If we don't have any of them, then we need to turn
436 // on our own packet handling!
437 //
438 void cluster_check_slaves(void)
439 {
440 int i;
441 static int have_peers = 0;
442 int had_peers = have_peers;
443 clockt t = TIME;
444
445 if (!config->cluster_iam_master)
446 return; // Only runs on the master...
447
448 config->cluster_iam_uptodate = 1; // cleared in loop below
449
450 for (i = have_peers = 0; i < num_peers; i++)
451 {
452 if ((peers[i].timestamp + config->cluster_hb_timeout) < t)
453 continue; // Stale peer! Skip them.
454
455 if (!peers[i].basetime)
456 continue; // Shutdown peer! Skip them.
457
458 if (peers[i].uptodate)
459 have_peers = 1;
460
461 if (!peers[i].uptodate)
462 config->cluster_iam_uptodate = 0; // Start fast heartbeats
463 }
464
465 #ifdef BGP
466 // in a cluster, withdraw/add routes when we get a peer/lose all peers
467 if (bgp_configured && have_peers != had_peers)
468 bgp_enable_routing(!have_peers);
469 #endif /* BGP */
470 }
471
472 //
473 // Check that we have a master. If it's been too
474 // long since we heard from a master then hold an election.
475 //
476 void cluster_check_master(void)
477 {
478 int i, count, tcount, high_unique_id = 0;
479 int last_free = 0;
480 clockt t = TIME;
481 static int probed = 0;
482
483 if (config->cluster_iam_master)
484 return; // Only runs on the slaves...
485
486 // If the master is late (missed 2 hearbeats by a second and a
487 // hair) it may be that the switch has dropped us from the
488 // multicast group, try unicasting one probe to the master
489 // which will hopefully respond with a unicast heartbeat that
490 // will allow us to limp along until the querier next runs.
491 if (TIME > (config->cluster_last_hb + 2 * config->cluster_hb_interval + 11))
492 {
493 if (!probed && config->cluster_master_address)
494 {
495 probed = 1;
496 LOG(1, 0, 0, "Heartbeat from master %.1fs late, probing...\n",
497 0.1 * (TIME - (config->cluster_last_hb + config->cluster_hb_interval)));
498
499 peer_send_message(config->cluster_master_address,
500 C_LASTSEEN, config->cluster_seq_number, NULL, 0);
501 }
502 } else { // We got a recent heartbeat; reset the probe flag.
503 probed = 0;
504 }
505
506 if (TIME < (config->cluster_last_hb + config->cluster_hb_timeout))
507 return; // Everything's ok!
508
509 config->cluster_last_hb = TIME + 1; // Just the one election thanks.
510
511 LOG(0, 0, 0, "Master timed out! Holding election...\n");
512
513 for (i = 0; i < num_peers; i++)
514 {
515 if ((peers[i].timestamp + config->cluster_hb_timeout) < t)
516 continue; // Stale peer! Skip them.
517
518 if (!peers[i].basetime)
519 continue; // Shutdown peer! Skip them.
520
521 if (peers[i].basetime < basetime) {
522 LOG(1, 0, 0, "Expecting %s to become master\n", fmtaddr(peers[i].peer, 0));
523 return; // They'll win the election. Get out of here.
524 }
525
526 if (peers[i].basetime == basetime &&
527 peers[i].peer > my_address) {
528 LOG(1, 0, 0, "Expecting %s to become master\n", fmtaddr(peers[i].peer, 0));
529 return; // They'll win the election. Wait for them to come up.
530 }
531 }
532
533 // Wow. it's been ages since I last heard a heartbeat
534 // and I'm better than an of my peers so it's time
535 // to become a master!!!
536
537 config->cluster_iam_master = 1;
538 config->cluster_master_address = 0;
539
540 LOG(0, 0, 0, "I am declaring myself the master!\n");
541
542 if (config->cluster_seq_number == -1)
543 config->cluster_seq_number = 0;
544
545 //
546 // Go through and mark all the tunnels as defined.
547 // Count the highest used tunnel number as well.
548 //
549 config->cluster_highest_tunnelid = 0;
550 for (i = 0, tcount = 0; i < MAXTUNNEL; ++i) {
551 if (tunnel[i].state == TUNNELUNDEF)
552 tunnel[i].state = TUNNELFREE;
553
554 if (tunnel[i].state != TUNNELFREE && i > config->cluster_highest_tunnelid)
555 config->cluster_highest_tunnelid = i;
556 }
557
558 //
559 // Go through and mark all the sessions as being defined.
560 // reset the idle timeouts.
561 // add temporary byte counters to permanent ones.
562 // Re-string the free list.
563 // Find the ID of the highest session.
564 last_free = 0;
565 high_unique_id = 0;
566 config->cluster_highest_sessionid = 0;
567 for (i = 0, count = 0; i < MAXSESSION; ++i) {
568 if (session[i].tunnel == T_UNDEF) {
569 session[i].tunnel = T_FREE;
570 ++count;
571 }
572
573 if (session[i].tunnel == T_FREE) { // Unused session. Add to free list.
574 session[last_free].next = i;
575 session[i].next = 0;
576 last_free = i;
577 }
578
579 // Reset all the idle timeouts..
580 session[i].last_packet = time_now;
581
582 // Accumulate un-sent byte counters.
583 session[i].cin += sess_count[i].cin;
584 session[i].cout += sess_count[i].cout;
585 session[i].total_cin += sess_count[i].cin;
586 session[i].total_cout += sess_count[i].cout;
587
588 sess_count[i].cin = sess_count[i].cout = 0;
589
590 session[i].radius = 0; // Reset authentication as the radius blocks aren't up to date.
591
592 if (session[i].unique_id >= high_unique_id) // This is different to the index into the session table!!!
593 high_unique_id = session[i].unique_id+1;
594
595
596 session[i].tbf_in = session[i].tbf_out = 0; // Remove stale pointers from old master.
597 throttle_session(i, session[i].throttle_in, session[i].throttle_out);
598
599 if (session[i].tunnel != T_FREE && i > config->cluster_highest_sessionid)
600 config->cluster_highest_sessionid = i;
601 }
602
603 session[last_free].next = 0; // End of chain.
604 last_id = high_unique_id; // Keep track of the highest used session ID.
605
606 become_master();
607
608 rebuild_address_pool();
609
610 // If we're not the very first master, this is a big issue!
611 if(count>0)
612 LOG(0, 0, 0, "Warning: Fixed %d uninitialized sessions in becoming master!\n", count);
613
614 config->cluster_undefined_sessions = 0;
615 config->cluster_undefined_tunnels = 0;
616 config->cluster_iam_uptodate = 1; // assume all peers are up-to-date
617
618 if (!num_peers) // lone master
619 advertise();
620
621 // FIXME. We need to fix up the tunnel control message
622 // queue here! There's a number of other variables we
623 // should also update.
624 }
625
626
627 //
628 // Check that our session table is validly matching what the
629 // master has in mind.
630 //
631 // In particular, if we have too many sessions marked 'undefined'
632 // we fix it up here, and we ensure that the 'first free session'
633 // pointer is valid.
634 //
635 static void cluster_check_sessions(int highsession, int freesession_ptr, int hightunnel)
636 {
637 int i;
638
639 sessionfree = freesession_ptr; // Keep the freesession ptr valid.
640
641 if (config->cluster_iam_uptodate)
642 return;
643
644 if (highsession > config->cluster_undefined_sessions && hightunnel > config->cluster_undefined_tunnels)
645 return;
646
647 // Clear out defined sessions, counting the number of
648 // undefs remaining.
649 config->cluster_undefined_sessions = 0;
650 for (i = 1 ; i < MAXSESSION; ++i) {
651 if (i > highsession) {
652 session[i].tunnel = 0; // Defined.
653 continue;
654 }
655 if (session[i].tunnel != T_UNDEF)
656 continue;
657 ++config->cluster_undefined_sessions;
658 }
659
660 // Clear out defined tunnels, counting the number of
661 // undefs remaining.
662 config->cluster_undefined_tunnels = 0;
663 for (i = 1 ; i < MAXTUNNEL; ++i) {
664 if (i > hightunnel) {
665 tunnel[i].state = TUNNELFREE; // Defined.
666 continue;
667 }
668 if (tunnel[i].state != TUNNELUNDEF)
669 continue;
670 ++config->cluster_undefined_tunnels;
671 }
672
673
674 if (config->cluster_undefined_sessions || config->cluster_undefined_tunnels) {
675 LOG(2, 0, 0, "Cleared undefined sessions/tunnels. %d sess (high %d), %d tunn (high %d)\n",
676 config->cluster_undefined_sessions, highsession, config->cluster_undefined_tunnels, hightunnel);
677 return;
678 }
679
680 // Are we up to date?
681
682 if (!config->cluster_iam_uptodate)
683 cluster_uptodate();
684 }
685
686 static int hb_add_type(char **p, int type, int id)
687 {
688 switch (type) {
689 case C_CSESSION: { // Compressed C_SESSION.
690 uint8_t c[sizeof(sessiont) * 2]; // Bigger than worst case.
691 uint8_t *d = (uint8_t *) &session[id];
692 uint8_t *orig = d;
693 int size;
694
695 size = rle_compress( &d, sizeof(sessiont), c, sizeof(c) );
696
697 // Did we compress the full structure, and is the size actually
698 // reduced??
699 if ( (d - orig) == sizeof(sessiont) && size < sizeof(sessiont) ) {
700 add_type(p, C_CSESSION, id, (char *) c, size);
701 break;
702 }
703 // Failed to compress : Fall through.
704 }
705 case C_SESSION: add_type(p, C_SESSION, id,
706 (char *) &session[id], sizeof(sessiont));
707 break;
708
709 case C_CTUNNEL: { // Compressed C_TUNNEL
710 uint8_t c[sizeof(tunnelt) * 2]; // Bigger than worst case.
711 uint8_t *d = (uint8_t *) &tunnel[id];
712 uint8_t *orig = d;
713 int size;
714
715 size = rle_compress( &d, sizeof(tunnelt), c, sizeof(c) );
716
717 // Did we compress the full structure, and is the size actually
718 // reduced??
719 if ( (d - orig) == sizeof(tunnelt) && size < sizeof(tunnelt) ) {
720 add_type(p, C_CTUNNEL, id, c, size);
721 break;
722 }
723 // Failed to compress : Fall through.
724 }
725 case C_TUNNEL: add_type(p, C_TUNNEL, id,
726 (char *) &tunnel[id], sizeof(tunnelt));
727 break;
728 default:
729 LOG(0, 0, 0, "Found an invalid type in heart queue! (%d)\n", type);
730 kill(0, SIGTERM);
731 exit(1);
732 }
733 return 0;
734 }
735
736 //
737 // Send a heartbeat, incidently sending out any queued changes..
738 //
739 void cluster_heartbeat()
740 {
741 int i, count = 0, tcount = 0;
742 char buff[MAX_HEART_SIZE + sizeof(heartt) + sizeof(int) ];
743 heartt h;
744 char *p = buff;
745
746 if (!config->cluster_iam_master) // Only the master does this.
747 return;
748
749 config->cluster_table_version += config->cluster_num_changes;
750
751 // Fill out the heartbeat header.
752 memset(&h, 0, sizeof(h));
753
754 h.version = HB_VERSION;
755 h.seq = config->cluster_seq_number;
756 h.basetime = basetime;
757 h.clusterid = config->bind_address; // Will this do??
758 h.basetime = basetime;
759 h.highsession = config->cluster_highest_sessionid;
760 h.freesession = sessionfree;
761 h.hightunnel = config->cluster_highest_tunnelid;
762 h.size_sess = sizeof(sessiont); // Just in case.
763 h.size_tunn = sizeof(tunnelt);
764 h.interval = config->cluster_hb_interval;
765 h.timeout = config->cluster_hb_timeout;
766 h.table_version = config->cluster_table_version;
767
768 add_type(&p, C_HEARTBEAT, HB_VERSION, (char *) &h, sizeof(h));
769
770 for (i = 0; i < config->cluster_num_changes; ++i) {
771 hb_add_type(&p, cluster_changes[i].type, cluster_changes[i].id);
772 }
773
774 if (p > (buff + sizeof(buff))) { // Did we somehow manage to overun the buffer?
775 LOG(0, 0, 0, "FATAL: Overran the heartbeat buffer! This is fatal. Exiting. (size %d)\n", (int) (p - buff));
776 kill(0, SIGTERM);
777 exit(1);
778 }
779
780 //
781 // Fill out the packet with sessions from the session table...
782 // (not forgetting to leave space so we can get some tunnels in too )
783 while ( (p + sizeof(uint32_t) * 2 + sizeof(sessiont) * 2 ) < (buff + MAX_HEART_SIZE) ) {
784
785 if (!walk_session_number) // session #0 isn't valid.
786 ++walk_session_number;
787
788 if (count >= config->cluster_highest_sessionid) // If we're a small cluster, don't go wild.
789 break;
790
791 hb_add_type(&p, C_CSESSION, walk_session_number);
792 walk_session_number = (1+walk_session_number)%(config->cluster_highest_sessionid+1); // +1 avoids divide by zero.
793
794 ++count; // Count the number of extra sessions we're sending.
795 }
796
797 //
798 // Fill out the packet with tunnels from the tunnel table...
799 // This effectively means we walk the tunnel table more quickly
800 // than the session table. This is good because stuffing up a
801 // tunnel is a much bigger deal than stuffing up a session.
802 //
803 while ( (p + sizeof(uint32_t) * 2 + sizeof(tunnelt) ) < (buff + MAX_HEART_SIZE) ) {
804
805 if (!walk_tunnel_number) // tunnel #0 isn't valid.
806 ++walk_tunnel_number;
807
808 if (tcount >= config->cluster_highest_tunnelid)
809 break;
810
811 hb_add_type(&p, C_CTUNNEL, walk_tunnel_number);
812 walk_tunnel_number = (1+walk_tunnel_number)%(config->cluster_highest_tunnelid+1); // +1 avoids divide by zero.
813
814 ++tcount;
815 }
816
817 //
818 // Did we do something wrong?
819 if (p > (buff + sizeof(buff))) { // Did we somehow manage to overun the buffer?
820 LOG(0, 0, 0, "Overran the heartbeat buffer now! This is fatal. Exiting. (size %d)\n", (int) (p - buff));
821 kill(0, SIGTERM);
822 exit(1);
823 }
824
825 LOG(3, 0, 0, "Sending v%d heartbeat #%d, change #%" PRIu64 " with %d changes "
826 "(%d x-sess, %d x-tunnels, %d highsess, %d hightun, size %d)\n",
827 HB_VERSION, h.seq, h.table_version, config->cluster_num_changes,
828 count, tcount, config->cluster_highest_sessionid,
829 config->cluster_highest_tunnelid, (int) (p - buff));
830
831 config->cluster_num_changes = 0;
832
833 send_heartbeat(h.seq, buff, (p-buff) ); // Send out the heartbeat to the cluster, keeping a copy of it.
834
835 config->cluster_seq_number = (config->cluster_seq_number+1)%HB_MAX_SEQ; // Next seq number to use.
836 }
837
838 //
839 // A structure of type 'type' has changed; Add it to the queue to send.
840 //
841 static int type_changed(int type, int id)
842 {
843 int i;
844
845 for (i = 0 ; i < config->cluster_num_changes ; ++i)
846 if ( cluster_changes[i].id == id &&
847 cluster_changes[i].type == type)
848 return 0; // Already marked for change.
849
850 cluster_changes[i].type = type;
851 cluster_changes[i].id = id;
852 ++config->cluster_num_changes;
853
854 if (config->cluster_num_changes > MAX_CHANGES)
855 cluster_heartbeat(); // flush now
856
857 return 1;
858 }
859
860
861 // A particular session has been changed!
862 int cluster_send_session(int sid)
863 {
864 if (!config->cluster_iam_master) {
865 LOG(0, sid, 0, "I'm not a master, but I just tried to change a session!\n");
866 return -1;
867 }
868
869 return type_changed(C_CSESSION, sid);
870 }
871
872 // A particular tunnel has been changed!
873 int cluster_send_tunnel(int tid)
874 {
875 if (!config->cluster_iam_master) {
876 LOG(0, 0, tid, "I'm not a master, but I just tried to change a tunnel!\n");
877 return -1;
878 }
879
880 return type_changed(C_CTUNNEL, tid);
881 }
882
883
884 //
885 // We're a master, and a slave has just told us that it's
886 // missed a packet. We'll resend it every packet since
887 // the last one it's seen.
888 //
889 static int cluster_catchup_slave(int seq, in_addr_t slave)
890 {
891 int s;
892 int diff;
893
894 LOG(1, 0, 0, "Slave %s sent LASTSEEN with seq %d\n", fmtaddr(slave, 0), seq);
895
896 diff = config->cluster_seq_number - seq; // How many packet do we need to send?
897 if (diff < 0)
898 diff += HB_MAX_SEQ;
899
900 if (diff >= HB_HISTORY_SIZE) { // Ouch. We don't have the packet to send it!
901 LOG(0, 0, 0, "A slave asked for message %d when our seq number is %d. Killing it.\n",
902 seq, config->cluster_seq_number);
903 return peer_send_message(slave, C_KILL, seq, NULL, 0);// Kill the slave. Nothing else to do.
904 }
905
906 // Now resend every packet that it missed, in order.
907 while (seq != config->cluster_seq_number) {
908 s = seq%HB_HISTORY_SIZE;
909 if (seq != past_hearts[s].seq) {
910 LOG(0, 0, 0, "Tried to re-send heartbeat for %s but %d doesn't match %d! (%d,%d)\n",
911 fmtaddr(slave, 0), seq, past_hearts[s].seq, s, config->cluster_seq_number);
912 return -1; // What to do here!?
913 }
914 peer_send_data(slave, past_hearts[s].data, past_hearts[s].size);
915 seq = (seq+1)%HB_MAX_SEQ; // Increment to next seq number.
916 }
917 return 0; // All good!
918 }
919
920 //
921 // We've heard from another peer! Add it to the list
922 // that we select from at election time.
923 //
924 static int cluster_add_peer(in_addr_t peer, time_t basetime, pingt *pp, int size)
925 {
926 int i;
927 in_addr_t clusterid;
928 pingt p;
929
930 // Allow for backward compatability.
931 // Just the ping packet into a new structure to allow
932 // for the possibility that we might have received
933 // more or fewer elements than we were expecting.
934 if (size > sizeof(p))
935 size = sizeof(p);
936
937 memset( (void *) &p, 0, sizeof(p) );
938 memcpy( (void *) &p, (void *) pp, size);
939
940 clusterid = p.addr;
941 if (clusterid != config->bind_address)
942 {
943 // Is this for us?
944 LOG(4, 0, 0, "Skipping ping from %s (different cluster)\n", fmtaddr(peer, 0));
945 return 0;
946 }
947
948 for (i = 0; i < num_peers ; ++i)
949 {
950 if (peers[i].peer != peer)
951 continue;
952
953 // This peer already exists. Just update the timestamp.
954 peers[i].basetime = basetime;
955 peers[i].timestamp = TIME;
956 peers[i].uptodate = !p.undef;
957 break;
958 }
959
960 // Is this the master shutting down??
961 if (peer == config->cluster_master_address && !basetime) {
962 LOG(3, 0, 0, "Master %s shutting down...\n", fmtaddr(config->cluster_master_address, 0));
963 config->cluster_master_address = 0;
964 config->cluster_last_hb = 0; // Force an election.
965 cluster_check_master();
966 return 0;
967 }
968
969 if (i >= num_peers)
970 {
971 LOG(4, 0, 0, "Adding %s as a peer\n", fmtaddr(peer, 0));
972
973 // Not found. Is there a stale slot to re-use?
974 for (i = 0; i < num_peers ; ++i)
975 {
976 if (!peers[i].basetime) // Shutdown
977 break;
978
979 if ((peers[i].timestamp + config->cluster_hb_timeout * 10) < TIME) // Stale.
980 break;
981 }
982
983 if (i >= CLUSTER_MAX_SIZE)
984 {
985 // Too many peers!!
986 LOG(0, 0, 0, "Tried to add %s as a peer, but I already have %d of them!\n", fmtaddr(peer, 0), i);
987 return -1;
988 }
989
990 peers[i].peer = peer;
991 peers[i].basetime = basetime;
992 peers[i].timestamp = TIME;
993 peers[i].uptodate = !p.undef;
994 if (i == num_peers)
995 ++num_peers;
996
997 LOG(1, 0, 0, "Added %s as a new peer. Now %d peers\n", fmtaddr(peer, 0), num_peers);
998 }
999
1000 return 1;
1001 }
1002
1003 /* Handle the slave updating the byte counters for the master. */
1004 //
1005 // Note that we don't mark the session as dirty; We rely on
1006 // the slow table walk to propogate this back out to the slaves.
1007 //
1008 static int cluster_handle_bytes(char *data, int size)
1009 {
1010 bytest *b;
1011
1012 b = (bytest *) data;
1013
1014 LOG(3, 0, 0, "Got byte counter update (size %d)\n", size);
1015
1016 /* Loop around, adding the byte
1017 counts to each of the sessions. */
1018
1019 while (size >= sizeof(*b) ) {
1020 if (b->sid > MAXSESSION) {
1021 LOG(0, 0, 0, "Got C_BYTES with session #%d!\n", b->sid);
1022 return -1; /* Abort processing */
1023 }
1024
1025 session[b->sid].total_cin += b->in;
1026 session[b->sid].total_cout += b->out;
1027
1028 session[b->sid].cin += b->in;
1029 session[b->sid].cout += b->out;
1030 session[b->sid].last_packet = time_now; // Reset idle timer!
1031
1032 size -= sizeof(*b);
1033 ++b;
1034 }
1035
1036 if (size != 0)
1037 LOG(0, 0, 0, "Got C_BYTES with %d bytes of trailing junk!\n", size);
1038
1039 return size;
1040 }
1041
1042 //
1043 // Handle receiving a session structure in a heartbeat packet.
1044 //
1045 static int cluster_recv_session(int more, uint8_t *p)
1046 {
1047 if (more >= MAXSESSION) {
1048 LOG(0, 0, 0, "DANGER: Received a heartbeat session id > MAXSESSION!\n");
1049 return -1;
1050 }
1051
1052 if (session[more].tunnel == T_UNDEF) {
1053 if (config->cluster_iam_uptodate) { // Sanity.
1054 LOG(0, 0, 0, "I thought I was uptodate but I just found an undefined session!\n");
1055 } else {
1056 --config->cluster_undefined_sessions;
1057 }
1058 }
1059
1060 load_session(more, (sessiont *) p); // Copy session into session table..
1061
1062 LOG(5, more, 0, "Received session update (%d undef)\n", config->cluster_undefined_sessions);
1063
1064 if (!config->cluster_iam_uptodate)
1065 cluster_uptodate(); // Check to see if we're up to date.
1066
1067 return 0;
1068 }
1069
1070 static int cluster_recv_tunnel(int more, uint8_t *p)
1071 {
1072 if (more >= MAXTUNNEL) {
1073 LOG(0, 0, 0, "DANGER: Received a tunnel session id > MAXTUNNEL!\n");
1074 return -1;
1075 }
1076
1077 if (tunnel[more].state == TUNNELUNDEF) {
1078 if (config->cluster_iam_uptodate) { // Sanity.
1079 LOG(0, 0, 0, "I thought I was uptodate but I just found an undefined tunnel!\n");
1080 } else {
1081 --config->cluster_undefined_tunnels;
1082 }
1083 }
1084
1085 memcpy(&tunnel[more], p, sizeof(tunnel[more]) );
1086
1087 //
1088 // Clear tunnel control messages. These are dynamically allocated.
1089 // If we get unlucky, this may cause the tunnel to drop!
1090 //
1091 tunnel[more].controls = tunnel[more].controle = NULL;
1092 tunnel[more].controlc = 0;
1093
1094 LOG(5, 0, more, "Received tunnel update\n");
1095
1096 if (!config->cluster_iam_uptodate)
1097 cluster_uptodate(); // Check to see if we're up to date.
1098
1099 return 0;
1100 }
1101
1102
1103 //
1104 // Process a heartbeat..
1105 //
1106 // v3: added interval, timeout
1107 // v4: added table_version
1108 static int cluster_process_heartbeat(uint8_t *data, int size, int more, uint8_t *p, in_addr_t addr)
1109 {
1110 heartt *h;
1111 int s = size - (p-data);
1112 int i, type;
1113
1114 #if HB_VERSION != 4
1115 # error "need to update cluster_process_heartbeat()"
1116 #endif
1117
1118 // we handle versions 3 through 4
1119 if (more < 3 || more > HB_VERSION) {
1120 LOG(0, 0, 0, "Received a heartbeat version that I don't support (%d)!\n", more);
1121 return -1; // Ignore it??
1122 }
1123
1124 // Ok. It's a heartbeat packet from a cluster master!
1125 if (s < sizeof(*h))
1126 goto shortpacket;
1127
1128 h = (heartt *) p;
1129 p += sizeof(*h);
1130 s -= sizeof(*h);
1131
1132 if (h->clusterid != config->bind_address)
1133 return -1; // It's not part of our cluster.
1134
1135 if (config->cluster_iam_master) { // Sanity...
1136 // Note that this MUST match the election process above!
1137
1138 LOG(0, 0, 0, "I just got a heartbeat from master %s, but _I_ am the master!\n", fmtaddr(addr, 0));
1139 if (!h->basetime) {
1140 LOG(0, 0, 0, "Heartbeat with zero basetime! Ignoring\n");
1141 return -1; // Skip it.
1142 }
1143
1144 if (more >= 4) {
1145 if (h->table_version > config->cluster_table_version) {
1146 LOG(0, 0, 0, "They've seen more state changes (%" PRIu64 " vs my %" PRIu64 ") so I'm gone!\n",
1147 h->table_version, config->cluster_table_version);
1148
1149 kill(0, SIGTERM);
1150 exit(1);
1151 }
1152 if (h->table_version < config->cluster_table_version)
1153 return -1;
1154 }
1155
1156 if (basetime > h->basetime) {
1157 LOG(0, 0, 0, "They're an older master than me so I'm gone!\n");
1158 kill(0, SIGTERM);
1159 exit(1);
1160 }
1161
1162 if (basetime < h->basetime)
1163 return -1;
1164
1165 if (my_address < addr) { // Tie breaker.
1166 LOG(0, 0, 0, "They're a higher IP address than me, so I'm gone!\n");
1167 kill(0, SIGTERM);
1168 exit(1);
1169 }
1170
1171 return -1; // Skip it.
1172 }
1173
1174 if (config->cluster_seq_number == -1) // Don't have one. Just align to the master...
1175 config->cluster_seq_number = h->seq;
1176
1177 config->cluster_last_hb = TIME; // Reset to ensure that we don't become master!!
1178
1179 if (config->cluster_seq_number != h->seq) { // Out of sequence heartbeat!
1180 LOG(1, 0, 0, "HB: Got seq# %d but was expecting %d. asking for resend.\n", h->seq, config->cluster_seq_number);
1181
1182 peer_send_message(addr, C_LASTSEEN, config->cluster_seq_number, NULL, 0);
1183
1184 config->cluster_last_hb = TIME; // Reset to ensure that we don't become master!!
1185
1186 // Just drop the packet. The master will resend it as part of the catchup.
1187
1188 return 0;
1189 }
1190 // Save the packet in our buffer.
1191 // This is needed in case we become the master.
1192 config->cluster_seq_number = (h->seq+1)%HB_MAX_SEQ;
1193 i = h->seq % HB_HISTORY_SIZE;
1194 past_hearts[i].seq = h->seq;
1195 past_hearts[i].size = size;
1196 memcpy(&past_hearts[i].data, data, size); // Save it.
1197
1198
1199 // Check that we don't have too many undefined sessions, and
1200 // that the free session pointer is correct.
1201 cluster_check_sessions(h->highsession, h->freesession, h->hightunnel);
1202
1203 if (h->interval != config->cluster_hb_interval)
1204 {
1205 LOG(2, 0, 0, "Master set ping/heartbeat interval to %u (was %u)\n",
1206 h->interval, config->cluster_hb_interval);
1207
1208 config->cluster_hb_interval = h->interval;
1209 }
1210
1211 if (h->timeout != config->cluster_hb_timeout)
1212 {
1213 LOG(2, 0, 0, "Master set heartbeat timeout to %u (was %u)\n",
1214 h->timeout, config->cluster_hb_timeout);
1215
1216 config->cluster_hb_timeout = h->timeout;
1217 }
1218
1219 // Ok. process the packet...
1220 while ( s > 0) {
1221
1222 type = *((uint32_t *) p);
1223 p += sizeof(uint32_t);
1224 s -= sizeof(uint32_t);
1225
1226 more = *((uint32_t *) p);
1227 p += sizeof(uint32_t);
1228 s -= sizeof(uint32_t);
1229
1230 switch (type) {
1231 case C_CSESSION: { // Compressed session structure.
1232 uint8_t c[ sizeof(sessiont) + 2];
1233 int size;
1234 uint8_t *orig_p = p;
1235
1236 size = rle_decompress((uint8_t **) &p, s, c, sizeof(c) );
1237 s -= (p - orig_p);
1238
1239 if (size != sizeof(sessiont) ) { // Ouch! Very very bad!
1240 LOG(0, 0, 0, "DANGER: Received a CSESSION that didn't decompress correctly!\n");
1241 // Now what? Should exit! No-longer up to date!
1242 break;
1243 }
1244
1245 cluster_recv_session(more, c);
1246 break;
1247 }
1248 case C_SESSION:
1249 if ( s < sizeof(session[more]))
1250 goto shortpacket;
1251
1252 cluster_recv_session(more, p);
1253
1254 p += sizeof(session[more]);
1255 s -= sizeof(session[more]);
1256 break;
1257
1258 case C_CTUNNEL: { // Compressed tunnel structure.
1259 uint8_t c[ sizeof(tunnelt) + 2];
1260 int size;
1261 uint8_t *orig_p = p;
1262
1263 size = rle_decompress((uint8_t **) &p, s, c, sizeof(c));
1264 s -= (p - orig_p);
1265
1266 if (size != sizeof(tunnelt) ) { // Ouch! Very very bad!
1267 LOG(0, 0, 0, "DANGER: Received a CSESSION that didn't decompress correctly!\n");
1268 // Now what? Should exit! No-longer up to date!
1269 break;
1270 }
1271
1272 cluster_recv_tunnel(more, c);
1273 break;
1274
1275 }
1276 case C_TUNNEL:
1277 if ( s < sizeof(tunnel[more]))
1278 goto shortpacket;
1279
1280 cluster_recv_tunnel(more, p);
1281
1282 p += sizeof(tunnel[more]);
1283 s -= sizeof(tunnel[more]);
1284 break;
1285 default:
1286 LOG(0, 0, 0, "DANGER: I received a heartbeat element where I didn't understand the type! (%d)\n", type);
1287 return -1; // can't process any more of the packet!!
1288 }
1289 }
1290
1291 if (config->cluster_master_address != addr)
1292 {
1293 LOG(0, 0, 0, "My master just changed from %s to %s!\n",
1294 fmtaddr(config->cluster_master_address, 0), fmtaddr(addr, 1));
1295
1296 config->cluster_master_address = addr;
1297 }
1298
1299 config->cluster_last_hb = TIME; // Successfully received a heartbeat!
1300 config->cluster_table_version = h->table_version;
1301 return 0;
1302
1303 shortpacket:
1304 LOG(0, 0, 0, "I got an incomplete heartbeat packet! This means I'm probably out of sync!!\n");
1305 return -1;
1306 }
1307
1308 //
1309 // We got a packet on the cluster port!
1310 // Handle pings, lastseens, and heartbeats!
1311 //
1312 int processcluster(char *data, int size, in_addr_t addr)
1313 {
1314 int type, more;
1315 char *p = data;
1316 int s = size;
1317
1318 if (addr == my_address)
1319 return -1; // Ignore it. Something looped back the multicast!
1320
1321 LOG(5, 0, 0, "Process cluster: %d bytes from %s\n", size, fmtaddr(addr, 0));
1322
1323 if (s <= 0) // Any data there??
1324 return -1;
1325
1326 if (s < 8)
1327 goto shortpacket;
1328
1329 type = *((uint32_t *) p);
1330 p += sizeof(uint32_t);
1331 s -= sizeof(uint32_t);
1332
1333 more = *((uint32_t *) p);
1334 p += sizeof(uint32_t);
1335 s -= sizeof(uint32_t);
1336
1337 switch (type) {
1338 case C_PING: // Update the peers table.
1339 return cluster_add_peer(addr, more, (pingt *) p, s);
1340
1341 case C_LASTSEEN: // Catch up a slave (slave missed a packet).
1342 return cluster_catchup_slave(more, addr);
1343
1344 case C_FORWARD: { // Forwarded control packet. pass off to processudp.
1345 struct sockaddr_in a;
1346 a.sin_addr.s_addr = more;
1347
1348 a.sin_port = *(int *) p;
1349 s -= sizeof(int);
1350 p += sizeof(int);
1351
1352 if (!config->cluster_iam_master) { // huh?
1353 LOG(0, 0, 0, "I'm not the master, but I got a C_FORWARD from %s?\n", fmtaddr(addr, 0));
1354 return -1;
1355 }
1356
1357 LOG(4, 0, 0, "Got a forwarded packet... (%s:%d)\n", fmtaddr(more, 0), a.sin_port);
1358 STAT(recv_forward);
1359 processudp(p, s, &a);
1360 return 0;
1361 }
1362 case C_THROTTLE: { // Receive a forwarded packet from a slave.
1363 if (!config->cluster_iam_master) {
1364 LOG(0, 0, 0, "I'm not the master, but I got a C_THROTTLE from %s?\n", fmtaddr(addr, 0));
1365 return -1;
1366 }
1367
1368 tbf_queue_packet(more, p, s); // The TBF id tells wether it goes in or out.
1369 return 0;
1370 }
1371 case C_GARDEN:
1372 // Receive a walled garden packet from a slave.
1373 if (!config->cluster_iam_master) {
1374 LOG(0, 0, 0, "I'm not the master, but I got a C_GARDEN from %s?\n", fmtaddr(addr, 0));
1375 return -1;
1376 }
1377
1378 tun_write(p, s);
1379 return 0;
1380
1381 case C_BYTES:
1382 return cluster_handle_bytes(p, s);
1383
1384 case C_KILL: // The master asked us to die!? (usually because we're too out of date).
1385 if (config->cluster_iam_master) {
1386 LOG(0, 0, 0, "_I_ am master, but I received a C_KILL from %s! (Seq# %d)\n", fmtaddr(addr, 0), more);
1387 return -1;
1388 }
1389 if (more != config->cluster_seq_number) {
1390 LOG(0, 0, 0, "The master asked us to die but the seq number didn't match!?\n");
1391 return -1;
1392 }
1393
1394 if (addr != config->cluster_master_address) {
1395 LOG(0, 0, 0, "Received a C_KILL from %s which doesn't match config->cluster_master_address (%s)\n",
1396 fmtaddr(addr, 0), fmtaddr(config->cluster_master_address, 1));
1397 // We can only warn about it. The master might really have switched!
1398 }
1399
1400 LOG(0, 0, 0, "Received a valid C_KILL: I'm going to die now.\n");
1401 kill(0, SIGTERM);
1402 exit(0); // Lets be paranoid;
1403 return -1; // Just signalling the compiler.
1404
1405 case C_HEARTBEAT:
1406 LOG(4, 0, 0, "Got a heartbeat from %s\n", fmtaddr(addr, 0));
1407 return cluster_process_heartbeat(data, size, more, p, addr);
1408
1409 default:
1410 LOG(0, 0, 0, "Strange type packet received on cluster socket (%d)\n", type);
1411 return -1;
1412 }
1413 return 0;
1414
1415 shortpacket:
1416 LOG(0, 0, 0, "I got a _short_ cluster heartbeat packet! This means I'm probably out of sync!!\n");
1417 return -1;
1418 }
1419
1420 //====================================================================================================
1421
1422 int cmd_show_cluster(struct cli_def *cli, char *command, char **argv, int argc)
1423 {
1424 int i;
1425
1426 if (CLI_HELP_REQUESTED)
1427 return CLI_HELP_NO_ARGS;
1428
1429 cli_print(cli, "Cluster status : %s", config->cluster_iam_master ? "Master" : "Slave" );
1430 cli_print(cli, "My address : %s", fmtaddr(my_address, 0));
1431 cli_print(cli, "VIP address : %s", fmtaddr(config->bind_address, 0));
1432 cli_print(cli, "Multicast address: %s", fmtaddr(config->cluster_address, 0));
1433 cli_print(cli, "Multicast i'face : %s", config->cluster_interface);
1434
1435 if (!config->cluster_iam_master) {
1436 cli_print(cli, "My master : %s (last heartbeat %.1f seconds old)",
1437 config->cluster_master_address
1438 ? fmtaddr(config->cluster_master_address, 0)
1439 : "Not defined",
1440 0.1 * (TIME - config->cluster_last_hb));
1441 cli_print(cli, "Uptodate : %s", config->cluster_iam_uptodate ? "Yes" : "No");
1442 cli_print(cli, "Table version # : %" PRIu64, config->cluster_table_version);
1443 cli_print(cli, "Next sequence number expected: %d", config->cluster_seq_number);
1444 cli_print(cli, "%d sessions undefined of %d", config->cluster_undefined_sessions, config->cluster_highest_sessionid);
1445 cli_print(cli, "%d tunnels undefined of %d", config->cluster_undefined_tunnels, config->cluster_highest_tunnelid);
1446 } else {
1447 cli_print(cli, "Table version # : %" PRIu64, config->cluster_table_version);
1448 cli_print(cli, "Next heartbeat # : %d", config->cluster_seq_number);
1449 cli_print(cli, "Highest session : %d", config->cluster_highest_sessionid);
1450 cli_print(cli, "Highest tunnel : %d", config->cluster_highest_tunnelid);
1451 cli_print(cli, "%d changes queued for sending", config->cluster_num_changes);
1452 }
1453 cli_print(cli, "%d peers.", num_peers);
1454
1455 if (num_peers)
1456 cli_print(cli, "%20s %10s %8s", "Address", "Basetime", "Age");
1457 for (i = 0; i < num_peers; ++i) {
1458 cli_print(cli, "%20s %10u %8d", fmtaddr(peers[i].peer, 0),
1459 peers[i].basetime, TIME - peers[i].timestamp);
1460 }
1461 return CLI_OK;
1462 }
1463
1464 //
1465 // Simple run-length-encoding compression.
1466 // Format is
1467 // 1 byte < 128 = count of non-zero bytes following. // Not legal to be zero.
1468 // n non-zero bytes;
1469 // or
1470 // 1 byte > 128 = (count - 128) run of zero bytes. //
1471 // repeat.
1472 // count == 0 indicates end of compressed stream.
1473 //
1474 // Compress from 'src' into 'dst'. return number of bytes
1475 // used from 'dst'.
1476 // Updates *src_p to indicate 1 past last bytes used.
1477 //
1478 // We could get an extra byte in the zero runs by storing (count-1)
1479 // but I'm playing it safe.
1480 //
1481 // Worst case is a 50% expansion in space required (trying to
1482 // compress { 0x00, 0x01 } * N )
1483 static int rle_compress(uint8_t **src_p, int ssize, uint8_t *dst, int dsize)
1484 {
1485 int count;
1486 int orig_dsize = dsize;
1487 uint8_t *x, *src;
1488 src = *src_p;
1489
1490 while (ssize > 0 && dsize > 2) {
1491 count = 0;
1492 x = dst++; --dsize; // Reserve space for count byte..
1493
1494 if (*src) { // Copy a run of non-zero bytes.
1495 while (*src && count < 127 && ssize > 0 && dsize > 1) { // Count number of non-zero bytes.
1496 *dst++ = *src++;
1497 --dsize; --ssize;
1498 ++count;
1499 }
1500 *x = count; // Store number of non-zero bytes. Guarenteed to be non-zero!
1501
1502 } else { // Compress a run of zero bytes.
1503 while (*src == 0 && count < 127 && ssize > 0) {
1504 ++src;
1505 --ssize;
1506 ++count;
1507 }
1508 *x = count | 0x80 ;
1509 }
1510 }
1511
1512 *dst++ = 0x0; // Add Stop byte.
1513 --dsize;
1514
1515 *src_p = src;
1516 return (orig_dsize - dsize);
1517 }
1518
1519 //
1520 // Decompress the buffer into **p.
1521 // 'psize' is the size of the decompression buffer available.
1522 //
1523 // Returns the number of bytes decompressed.
1524 //
1525 // Decompresses from '*src_p' into 'dst'.
1526 // Return the number of dst bytes used.
1527 // Updates the 'src_p' pointer to point to the
1528 // first un-used byte.
1529 static int rle_decompress(uint8_t **src_p, int ssize, uint8_t *dst, int dsize)
1530 {
1531 int count;
1532 int orig_dsize = dsize;
1533 char *src = *src_p;
1534
1535 while (ssize >0 && dsize > 0) { // While there's more to decompress, and there's room in the decompress buffer...
1536 count = *src++; --ssize; // get the count byte from the source.
1537 if (count == 0x0) // End marker reached? If so, finish.
1538 break;
1539
1540 if (count & 0x80) { // Decompress a run of zeros
1541 for (count &= 0x7f ; count > 0 && dsize > 0; --count) {
1542 *dst++ = 0x0;
1543 --dsize;
1544 }
1545 } else { // Copy run of non-zero bytes.
1546 for ( ; count > 0 && ssize && dsize; --count) { // Copy non-zero bytes across.
1547 *dst++ = *src++;
1548 --ssize; --dsize;
1549 }
1550 }
1551 }
1552 *src_p = src;
1553 return (orig_dsize - dsize);
1554 }