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