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