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