1 // L2TPNS Clustering Stuff
10 #include <sys/socket.h>
11 #include <netinet/in.h>
12 #include <arpa/inet.h>
13 #include <sys/ioctl.h>
19 #include <linux/rtnetlink.h>
31 * All cluster packets have the same format.
33 * One or more instances of
35 * a 32 bit 'extra' data dependant on the 'type'.
36 * zero or more bytes of structure data, dependant on the type.
41 extern int cluster_sockfd
; // The filedescriptor for the cluster communications port.
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_bundle_number
= 0; // The next bundle to send when doing the slow table walk.
46 static int walk_tunnel_number
= 0; // The next tunnel to send when doing the slow table walk.
47 static int walk_groupe_number
= 0; // The next groupe to send when doing the slow table walk.
48 int forked
= 0; // Sanity check: CLI must not diddle with heartbeat table
50 #define MAX_HEART_SIZE (8192) // Maximum size of heartbeat packet. Must be less than max IP packet size :)
51 #define MAX_CHANGES (MAX_HEART_SIZE/(sizeof(sessiont) + sizeof(int) ) - 2) // Assumes a session is the biggest type!
56 } cluster_changes
[MAX_CHANGES
]; // Queue of changed structures that need to go out when next heartbeat.
61 uint8_t data
[MAX_HEART_SIZE
];
62 } past_hearts
[HB_HISTORY_SIZE
]; // Ring buffer of heartbeats that we've recently sent out. Needed so
63 // we can re-transmit if needed.
70 } peers
[CLUSTER_MAX_SIZE
]; // List of all the peers we've heard from.
71 static int num_peers
; // Number of peers in list.
73 static int rle_decompress(uint8_t **src_p
, int ssize
, uint8_t *dst
, int dsize
);
74 static int rle_compress(uint8_t **src_p
, int ssize
, uint8_t *dst
, int dsize
);
77 // Create a listening socket
79 // This joins the cluster multi-cast group.
83 struct sockaddr_in addr
;
84 struct sockaddr_in interface_addr
;
89 config
->cluster_undefined_sessions
= MAXSESSION
-1;
90 config
->cluster_undefined_bundles
= MAXBUNDLE
-1;
91 config
->cluster_undefined_tunnels
= MAXTUNNEL
-1;
92 config
->cluster_undefined_groupes
= MAXGROUPE
-1;
94 if (!config
->cluster_address
)
96 if (!*config
->cluster_interface
)
99 cluster_sockfd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
101 memset(&addr
, 0, sizeof(addr
));
102 addr
.sin_family
= AF_INET
;
103 addr
.sin_port
= htons(CLUSTERPORT
);
104 addr
.sin_addr
.s_addr
= INADDR_ANY
;
105 setsockopt(cluster_sockfd
, SOL_SOCKET
, SO_REUSEADDR
, &addr
, sizeof(addr
));
107 opt
= fcntl(cluster_sockfd
, F_GETFL
, 0);
108 fcntl(cluster_sockfd
, F_SETFL
, opt
| O_NONBLOCK
);
110 if (bind(cluster_sockfd
, (void *) &addr
, sizeof(addr
)) < 0)
112 LOG(0, 0, 0, "Failed to bind cluster socket: %s\n", strerror(errno
));
116 strcpy(ifr
.ifr_name
, config
->cluster_interface
);
117 if (ioctl(cluster_sockfd
, SIOCGIFADDR
, &ifr
) < 0)
119 LOG(0, 0, 0, "Failed to get interface address for (%s): %s\n", config
->cluster_interface
, strerror(errno
));
123 memcpy(&interface_addr
, &ifr
.ifr_addr
, sizeof(interface_addr
));
124 my_address
= interface_addr
.sin_addr
.s_addr
;
126 // Join multicast group.
127 mreq
.imr_multiaddr
.s_addr
= config
->cluster_address
;
128 mreq
.imr_interface
= interface_addr
.sin_addr
;
131 opt
= 0; // Turn off multicast loopback.
132 setsockopt(cluster_sockfd
, IPPROTO_IP
, IP_MULTICAST_LOOP
, &opt
, sizeof(opt
));
134 if (config
->cluster_mcast_ttl
!= 1)
137 if (config
->cluster_mcast_ttl
> 0)
138 ttl
= config
->cluster_mcast_ttl
< 256 ? config
->cluster_mcast_ttl
: 255;
140 setsockopt(cluster_sockfd
, IPPROTO_IP
, IP_MULTICAST_TTL
, &ttl
, sizeof(ttl
));
143 if (setsockopt(cluster_sockfd
, IPPROTO_IP
, IP_ADD_MEMBERSHIP
, &mreq
, sizeof(mreq
)) < 0)
145 LOG(0, 0, 0, "Failed to setsockopt (join mcast group): %s\n", strerror(errno
));
149 if (setsockopt(cluster_sockfd
, IPPROTO_IP
, IP_MULTICAST_IF
, &interface_addr
, sizeof(interface_addr
)) < 0)
151 LOG(0, 0, 0, "Failed to setsockopt (set mcast interface): %s\n", strerror(errno
));
155 config
->cluster_last_hb
= TIME
;
156 config
->cluster_seq_number
= -1;
158 return cluster_sockfd
;
163 // Send a chunk of data to the entire cluster (usually via the multicast
167 static int cluster_send_data(void *data
, int datalen
)
169 struct sockaddr_in addr
= {0};
171 if (!cluster_sockfd
) return -1;
172 if (!config
->cluster_address
) return 0;
174 addr
.sin_addr
.s_addr
= config
->cluster_address
;
175 addr
.sin_port
= htons(CLUSTERPORT
);
176 addr
.sin_family
= AF_INET
;
178 LOG(5, 0, 0, "Cluster send data: %d bytes\n", datalen
);
180 if (sendto(cluster_sockfd
, data
, datalen
, MSG_NOSIGNAL
, (void *) &addr
, sizeof(addr
)) < 0)
182 LOG(0, 0, 0, "sendto: %s\n", strerror(errno
));
190 // Add a chunk of data to a heartbeat packet.
191 // Maintains the format. Assumes that the caller
192 // has passed in a big enough buffer!
194 static void add_type(uint8_t **p
, int type
, int more
, uint8_t *data
, int size
)
196 *((uint32_t *) (*p
)) = type
;
197 *p
+= sizeof(uint32_t);
199 *((uint32_t *)(*p
)) = more
;
200 *p
+= sizeof(uint32_t);
202 if (data
&& size
> 0) {
203 memcpy(*p
, data
, size
);
208 // advertise our presence via BGP or gratuitous ARP
209 static void advertise_routes(void)
213 bgp_enable_routing(1);
216 if (config
->send_garp
)
217 send_garp(config
->bind_address
); // Start taking traffic.
220 // withdraw our routes (BGP only)
221 static void withdraw_routes(void)
225 bgp_enable_routing(0);
229 static void cluster_uptodate(void)
231 if (config
->cluster_iam_uptodate
)
234 if (config
->cluster_undefined_sessions
|| config
->cluster_undefined_tunnels
||
235 config
->cluster_undefined_bundles
|| config
->cluster_undefined_groupes
)
238 config
->cluster_iam_uptodate
= 1;
240 LOG(0, 0, 0, "Now uptodate with master.\n");
245 // Send a unicast UDP packet to a peer with 'data' as the
248 static int peer_send_data(in_addr_t peer
, uint8_t *data
, int size
)
250 struct sockaddr_in addr
= {0};
252 if (!cluster_sockfd
) return -1;
253 if (!config
->cluster_address
) return 0;
258 addr
.sin_addr
.s_addr
= peer
;
259 addr
.sin_port
= htons(CLUSTERPORT
);
260 addr
.sin_family
= AF_INET
;
262 LOG_HEX(5, "Peer send", data
, size
);
264 if (sendto(cluster_sockfd
, data
, size
, MSG_NOSIGNAL
, (void *) &addr
, sizeof(addr
)) < 0)
266 LOG(0, 0, 0, "sendto: %s\n", strerror(errno
));
274 // Send a structured message to a peer with a single element of type 'type'.
276 static int peer_send_message(in_addr_t peer
, int type
, int more
, uint8_t *data
, int size
)
278 uint8_t buf
[65536]; // Vast overkill.
281 LOG(4, 0, 0, "Sending message to peer (type %d, more %d, size %d)\n", type
, more
, size
);
282 add_type(&p
, type
, more
, data
, size
);
284 return peer_send_data(peer
, buf
, (p
-buf
) );
287 // send a packet to the master
288 static int _forward_packet(uint8_t *data
, int size
, in_addr_t addr
, int port
, int type
)
290 uint8_t buf
[65536]; // Vast overkill.
293 if (!config
->cluster_master_address
) // No election has been held yet. Just skip it.
296 LOG(4, 0, 0, "Forwarding packet from %s to master (size %d)\n", fmtaddr(addr
, 0), size
);
299 add_type(&p
, type
, addr
, (uint8_t *) &port
, sizeof(port
)); // ick. should be uint16_t
300 memcpy(p
, data
, size
);
303 return peer_send_data(config
->cluster_master_address
, buf
, (p
- buf
));
307 // Forward a state changing packet to the master.
309 // The master just processes the payload as if it had
310 // received it off the tun device.
311 //(note: THIS ROUTINE WRITES TO pack[-6]).
312 int master_forward_packet(uint8_t *data
, int size
, in_addr_t addr
, uint16_t port
, uint16_t indexudp
)
314 uint8_t *p
= data
- (3 * sizeof(uint32_t));
316 uint32_t indexandport
= port
| ((indexudp
<< 16) & 0xFFFF0000);
318 if (!config
->cluster_master_address
) // No election has been held yet. Just skip it.
321 LOG(4, 0, 0, "Forwarding packet from %s to master (size %d)\n", fmtaddr(addr
, 0), size
);
324 add_type(&p
, C_FORWARD
, addr
, (uint8_t *) &indexandport
, sizeof(indexandport
));
326 return peer_send_data(config
->cluster_master_address
, psave
, size
+ (3 * sizeof(uint32_t)));
329 // Forward PPPOE packet to the master.
330 //(note: THIS ROUTINE WRITES TO pack[-4]).
331 int master_forward_pppoe_packet(uint8_t *data
, int size
, uint8_t codepad
)
333 uint8_t *p
= data
- (2 * sizeof(uint32_t));
336 if (!config
->cluster_master_address
) // No election has been held yet. Just skip it.
339 LOG(4, 0, 0, "Forward PPPOE packet to master, code %s (size %d)\n", get_string_codepad(codepad
), size
);
342 add_type(&p
, C_PPPOE_FORWARD
, codepad
, NULL
, 0);
344 return peer_send_data(config
->cluster_master_address
, psave
, size
+ (2 * sizeof(uint32_t)));
347 // Forward a DAE RADIUS packet to the master.
348 int master_forward_dae_packet(uint8_t *data
, int size
, in_addr_t addr
, int port
)
350 return _forward_packet(data
, size
, addr
, port
, C_FORWARD_DAE
);
354 // Forward a throttled packet to the master for handling.
356 // The master just drops the packet into the appropriate
357 // token bucket queue, and lets normal processing take care
360 int master_throttle_packet(int tbfid
, uint8_t *data
, int size
)
362 uint8_t buf
[65536]; // Vast overkill.
365 if (!config
->cluster_master_address
) // No election has been held yet. Just skip it.
368 LOG(4, 0, 0, "Throttling packet master (size %d, tbfid %d)\n", size
, tbfid
);
370 add_type(&p
, C_THROTTLE
, tbfid
, data
, size
);
372 return peer_send_data(config
->cluster_master_address
, buf
, (p
-buf
) );
377 // Forward a walled garden packet to the master for handling.
379 // The master just writes the packet straight to the tun
380 // device (where is will normally loop through the
381 // firewall rules, and come back in on the tun device)
383 // (Note that this must be called with the tun header
384 // as the start of the data).
385 int master_garden_packet(sessionidt s
, uint8_t *data
, int size
)
387 uint8_t buf
[65536]; // Vast overkill.
390 if (!config
->cluster_master_address
) // No election has been held yet. Just skip it.
393 LOG(4, 0, 0, "Walled garden packet to master (size %d)\n", size
);
395 add_type(&p
, C_GARDEN
, s
, data
, size
);
397 return peer_send_data(config
->cluster_master_address
, buf
, (p
-buf
));
402 // Forward a MPPP packet to the master for handling.
404 // (Note that this must be called with the tun header
405 // as the start of the data).
406 // (i.e. this routine writes to data[-8]).
407 int master_forward_mppp_packet(sessionidt s
, uint8_t *data
, int size
)
409 uint8_t *p
= data
- (2 * sizeof(uint32_t));
412 if (!config
->cluster_master_address
) // No election has been held yet. Just skip it.
415 LOG(4, 0, 0, "Forward MPPP packet to master (size %d)\n", size
);
417 add_type(&p
, C_MPPP_FORWARD
, s
, NULL
, 0);
419 return peer_send_data(config
->cluster_master_address
, psave
, size
+ (2 * sizeof(uint32_t)));
424 // Send a chunk of data as a heartbeat..
425 // We save it in the history buffer as we do so.
427 static void send_heartbeat(int seq
, uint8_t *data
, int size
)
431 if (size
> sizeof(past_hearts
[0].data
))
433 LOG(0, 0, 0, "Tried to heartbeat something larger than the maximum packet!\n");
437 i
= seq
% HB_HISTORY_SIZE
;
438 past_hearts
[i
].seq
= seq
;
439 past_hearts
[i
].size
= size
;
440 memcpy(&past_hearts
[i
].data
, data
, size
); // Save it.
441 cluster_send_data(data
, size
);
445 // Send an 'i am alive' message to every machine in the cluster.
447 void cluster_send_ping(time_t basetime
)
449 uint8_t buff
[100 + sizeof(pingt
)];
453 if (config
->cluster_iam_master
&& basetime
) // We're heartbeating so no need to ping.
456 LOG(5, 0, 0, "Sending cluster ping...\n");
459 x
.addr
= config
->bind_address
;
460 x
.undef
= config
->cluster_undefined_sessions
+ config
->cluster_undefined_tunnels
+
461 config
->cluster_undefined_groupes
+ config
->cluster_undefined_bundles
;
462 x
.basetime
= basetime
;
464 add_type(&p
, C_PING
, basetime
, (uint8_t *) &x
, sizeof(x
));
465 cluster_send_data(buff
, (p
-buff
) );
469 // Walk the session counters looking for non-zero ones to send
470 // to the master. We send up to 600 of them at one time.
471 // We examine a maximum of 3000 sessions.
472 // (50k max session should mean that we normally
473 // examine the entire session table every 25 seconds).
475 #define MAX_B_RECS (600)
476 void master_update_counts(void)
479 bytest b
[MAX_B_RECS
+1];
481 if (config
->cluster_iam_master
) // Only happens on the slaves.
484 if (!config
->cluster_master_address
) // If we don't have a master, skip it for a while.
487 i
= MAX_B_RECS
* 5; // Examine max 3000 sessions;
488 if (config
->cluster_highest_sessionid
> i
)
489 i
= config
->cluster_highest_sessionid
;
491 for ( c
= 0; i
> 0 ; --i
) {
492 // Next session to look at.
493 walk_session_number
++;
494 if ( walk_session_number
> config
->cluster_highest_sessionid
)
495 walk_session_number
= 1;
497 if (!sess_local
[walk_session_number
].cin
&& !sess_local
[walk_session_number
].cout
)
498 continue; // Unchanged. Skip it.
500 b
[c
].sid
= walk_session_number
;
501 b
[c
].pin
= sess_local
[walk_session_number
].pin
;
502 b
[c
].pout
= sess_local
[walk_session_number
].pout
;
503 b
[c
].cin
= sess_local
[walk_session_number
].cin
;
504 b
[c
].cout
= sess_local
[walk_session_number
].cout
;
507 sess_local
[walk_session_number
].pin
= sess_local
[walk_session_number
].pout
= 0;
508 sess_local
[walk_session_number
].cin
= sess_local
[walk_session_number
].cout
= 0;
510 if (++c
> MAX_B_RECS
) // Send a max of 600 elements in a packet.
514 if (!c
) // Didn't find any that changes. Get out of here!
518 // Forward the data to the master.
519 LOG(4, 0, 0, "Sending byte counters to master (%d elements)\n", c
);
520 peer_send_message(config
->cluster_master_address
, C_BYTES
, c
, (uint8_t *) &b
, sizeof(b
[0]) * c
);
525 // On the master, check how our slaves are going. If
526 // one of them's not up-to-date we'll heartbeat faster.
527 // If we don't have any of them, then we need to turn
528 // on our own packet handling!
530 void cluster_check_slaves(void)
533 static int have_peers
= 0;
534 int had_peers
= have_peers
;
537 if (!config
->cluster_iam_master
)
538 return; // Only runs on the master...
540 config
->cluster_iam_uptodate
= 1; // cleared in loop below
542 for (i
= have_peers
= 0; i
< num_peers
; i
++)
544 if ((peers
[i
].timestamp
+ config
->cluster_hb_timeout
) < t
)
545 continue; // Stale peer! Skip them.
547 if (!peers
[i
].basetime
)
548 continue; // Shutdown peer! Skip them.
550 if (peers
[i
].uptodate
)
553 config
->cluster_iam_uptodate
= 0; // Start fast heartbeats
556 // in a cluster, withdraw/add routes when we get a peer/lose peers
557 if (have_peers
!= had_peers
)
559 if (had_peers
< config
->cluster_master_min_adv
&&
560 have_peers
>= config
->cluster_master_min_adv
)
563 else if (had_peers
>= config
->cluster_master_min_adv
&&
564 have_peers
< config
->cluster_master_min_adv
)
570 // Check that we have a master. If it's been too
571 // long since we heard from a master then hold an election.
573 void cluster_check_master(void)
575 int i
, count
, high_unique_id
= 0;
578 static int probed
= 0;
581 if (config
->cluster_iam_master
)
582 return; // Only runs on the slaves...
584 // If the master is late (missed 2 hearbeats by a second and a
585 // hair) it may be that the switch has dropped us from the
586 // multicast group, try unicasting probes to the master
587 // which will hopefully respond with a unicast heartbeat that
588 // will allow us to limp along until the querier next runs.
589 if (config
->cluster_master_address
590 && TIME
> (config
->cluster_last_hb
+ 2 * config
->cluster_hb_interval
+ 11))
592 if (!probed
|| (TIME
> (probed
+ 2 * config
->cluster_hb_interval
)))
595 LOG(1, 0, 0, "Heartbeat from master %.1fs late, probing...\n",
596 0.1 * (TIME
- (config
->cluster_last_hb
+ config
->cluster_hb_interval
)));
598 peer_send_message(config
->cluster_master_address
,
599 C_LASTSEEN
, config
->cluster_seq_number
, NULL
, 0);
601 } else { // We got a recent heartbeat; reset the probe flag.
605 if (TIME
< (config
->cluster_last_hb
+ config
->cluster_hb_timeout
))
606 return; // Everything's ok!
608 config
->cluster_last_hb
= TIME
+ 1; // Just the one election thanks.
609 config
->cluster_master_address
= 0;
611 LOG(0, 0, 0, "Master timed out! Holding election...\n");
613 // In the process of shutting down, can't be master
617 for (i
= have_peers
= 0; i
< num_peers
; i
++)
619 if ((peers
[i
].timestamp
+ config
->cluster_hb_timeout
) < t
)
620 continue; // Stale peer! Skip them.
622 if (!peers
[i
].basetime
)
623 continue; // Shutdown peer! Skip them.
625 if (peers
[i
].basetime
< basetime
) {
626 LOG(1, 0, 0, "Expecting %s to become master\n", fmtaddr(peers
[i
].peer
, 0));
627 return; // They'll win the election. Get out of here.
630 if (peers
[i
].basetime
== basetime
&&
631 peers
[i
].peer
> my_address
) {
632 LOG(1, 0, 0, "Expecting %s to become master\n", fmtaddr(peers
[i
].peer
, 0));
633 return; // They'll win the election. Wait for them to come up.
636 if (peers
[i
].uptodate
)
640 // Wow. it's been ages since I last heard a heartbeat
641 // and I'm better than an of my peers so it's time
642 // to become a master!!!
644 config
->cluster_iam_master
= 1;
645 pppoe_send_garp(); // gratuitous arp of the pppoe interface
647 LOG(0, 0, 0, "I am declaring myself the master!\n");
649 if (have_peers
< config
->cluster_master_min_adv
)
654 if (config
->cluster_seq_number
== -1)
655 config
->cluster_seq_number
= 0;
658 // Go through and mark all the tunnels as defined.
659 // Count the highest used tunnel number as well.
661 config
->cluster_highest_tunnelid
= 0;
662 for (i
= 0; i
< MAXTUNNEL
; ++i
) {
663 if (tunnel
[i
].state
== TUNNELUNDEF
)
664 tunnel
[i
].state
= TUNNELFREE
;
666 if (tunnel
[i
].state
!= TUNNELFREE
&& i
> config
->cluster_highest_tunnelid
)
667 config
->cluster_highest_tunnelid
= i
;
671 // Go through and mark all the bundles as defined.
672 // Count the highest used bundle number as well.
674 config
->cluster_highest_bundleid
= 0;
675 for (i
= 0; i
< MAXBUNDLE
; ++i
) {
676 if (bundle
[i
].state
== BUNDLEUNDEF
)
677 bundle
[i
].state
= BUNDLEFREE
;
679 if (bundle
[i
].state
!= BUNDLEFREE
&& i
> config
->cluster_highest_bundleid
)
680 config
->cluster_highest_bundleid
= i
;
684 // Go through and mark all the groupes as defined.
685 // Count the highest used groupe number as well.
687 config
->cluster_highest_groupeid
= 0;
688 for (i
= 0; i
< MAXGROUPE
; ++i
)
690 if (grpsession
[i
].state
== GROUPEUNDEF
)
691 grpsession
[i
].state
= GROUPEFREE
;
693 if (grpsession
[i
].state
!= GROUPEFREE
&& i
> config
->cluster_highest_groupeid
)
694 config
->cluster_highest_groupeid
= i
;
698 // Go through and mark all the sessions as being defined.
699 // reset the idle timeouts.
700 // add temporary byte counters to permanent ones.
701 // Re-string the free list.
702 // Find the ID of the highest session.
705 config
->cluster_highest_sessionid
= 0;
706 for (i
= 0, count
= 0; i
< MAXSESSION
; ++i
) {
707 if (session
[i
].tunnel
== T_UNDEF
) {
708 session
[i
].tunnel
= T_FREE
;
712 if (!session
[i
].opened
) { // Unused session. Add to free list.
713 memset(&session
[i
], 0, sizeof(session
[i
]));
714 session
[i
].tunnel
= T_FREE
;
715 session
[last_free
].next
= i
;
721 // Reset idle timeouts..
722 session
[i
].last_packet
= session
[i
].last_data
= time_now
;
724 // Reset die relative to our uptime rather than the old master's
725 if (session
[i
].die
) session
[i
].die
= TIME
;
727 // Accumulate un-sent byte/packet counters.
728 increment_counter(&session
[i
].cin
, &session
[i
].cin_wrap
, sess_local
[i
].cin
);
729 increment_counter(&session
[i
].cout
, &session
[i
].cout_wrap
, sess_local
[i
].cout
);
730 session
[i
].cin_delta
+= sess_local
[i
].cin
;
731 session
[i
].cout_delta
+= sess_local
[i
].cout
;
733 session
[i
].pin
+= sess_local
[i
].pin
;
734 session
[i
].pout
+= sess_local
[i
].pout
;
736 sess_local
[i
].cin
= sess_local
[i
].cout
= 0;
737 sess_local
[i
].pin
= sess_local
[i
].pout
= 0;
739 sess_local
[i
].radius
= 0; // Reset authentication as the radius blocks aren't up to date.
741 if (session
[i
].unique_id
>= high_unique_id
) // This is different to the index into the session table!!!
742 high_unique_id
= session
[i
].unique_id
+1;
744 session
[i
].tbf_in
= session
[i
].tbf_out
= 0; // Remove stale pointers from old master.
745 throttle_session(i
, session
[i
].throttle_in
, session
[i
].throttle_out
);
747 config
->cluster_highest_sessionid
= i
;
750 session
[last_free
].next
= 0; // End of chain.
751 last_id
= high_unique_id
; // Keep track of the highest used session ID.
755 rebuild_address_pool();
757 // If we're not the very first master, this is a big issue!
759 LOG(0, 0, 0, "Warning: Fixed %d uninitialized sessions in becoming master!\n", count
);
761 config
->cluster_undefined_sessions
= 0;
762 config
->cluster_undefined_bundles
= 0;
763 config
->cluster_undefined_tunnels
= 0;
764 config
->cluster_undefined_groupes
= 0;
765 config
->cluster_iam_uptodate
= 1; // assume all peers are up-to-date
767 // FIXME. We need to fix up the tunnel control message
768 // queue here! There's a number of other variables we
769 // should also update.
774 // Check that our session table is validly matching what the
775 // master has in mind.
777 // In particular, if we have too many sessions marked 'undefined'
778 // we fix it up here, and we ensure that the 'first free session'
781 static void cluster_check_sessions(int highsession
, int freesession_ptr
, int highbundle
, int hightunnel
, int highgroupe
)
785 sessionfree
= freesession_ptr
; // Keep the freesession ptr valid.
787 if (config
->cluster_iam_uptodate
)
790 if (highsession
> config
->cluster_undefined_sessions
&& highbundle
> config
->cluster_undefined_bundles
&&
791 highgroupe
> config
->cluster_undefined_groupes
&& hightunnel
> config
->cluster_undefined_tunnels
)
794 // Clear out defined sessions, counting the number of
796 config
->cluster_undefined_sessions
= 0;
797 for (i
= 1 ; i
< MAXSESSION
; ++i
) {
798 if (i
> highsession
) {
799 if (session
[i
].tunnel
== T_UNDEF
) session
[i
].tunnel
= T_FREE
; // Defined.
803 if (session
[i
].tunnel
== T_UNDEF
)
804 ++config
->cluster_undefined_sessions
;
807 // Clear out defined bundles, counting the number of
809 config
->cluster_undefined_bundles
= 0;
810 for (i
= 1 ; i
< MAXBUNDLE
; ++i
) {
811 if (i
> highbundle
) {
812 if (bundle
[i
].state
== BUNDLEUNDEF
) bundle
[i
].state
= BUNDLEFREE
; // Defined.
816 if (bundle
[i
].state
== BUNDLEUNDEF
)
817 ++config
->cluster_undefined_bundles
;
820 // Clear out defined tunnels, counting the number of
822 config
->cluster_undefined_tunnels
= 0;
823 for (i
= 1 ; i
< MAXTUNNEL
; ++i
) {
824 if (i
> hightunnel
) {
825 if (tunnel
[i
].state
== TUNNELUNDEF
) tunnel
[i
].state
= TUNNELFREE
; // Defined.
829 if (tunnel
[i
].state
== TUNNELUNDEF
)
830 ++config
->cluster_undefined_tunnels
;
833 // Clear out defined groupe, counting the number of
835 config
->cluster_undefined_groupes
= 0;
836 for (i
= 1 ; i
< MAXGROUPE
; ++i
) {
837 if (i
> highgroupe
) {
838 if (grpsession
[i
].state
== GROUPEUNDEF
) grpsession
[i
].state
= GROUPEFREE
; // Defined.
842 if (grpsession
[i
].state
== GROUPEUNDEF
)
843 ++config
->cluster_undefined_groupes
;
846 if (config
->cluster_undefined_sessions
|| config
->cluster_undefined_tunnels
|| config
->cluster_undefined_bundles
|| config
->cluster_undefined_groupes
) {
847 LOG(2, 0, 0, "Cleared undefined sessions/bundles/tunnels. %d sess (high %d), %d bund (high %d), %d grp (high %d), %d tunn (high %d)\n",
848 config
->cluster_undefined_sessions
, highsession
, config
->cluster_undefined_bundles
, highbundle
,
849 config
->cluster_undefined_groupes
, highgroupe
, config
->cluster_undefined_tunnels
, hightunnel
);
853 // Are we up to date?
855 if (!config
->cluster_iam_uptodate
)
859 static int hb_add_type(uint8_t **p
, int type
, int id
)
862 case C_CSESSION
: { // Compressed C_SESSION.
863 uint8_t c
[sizeof(sessiont
) * 2]; // Bigger than worst case.
864 uint8_t *d
= (uint8_t *) &session
[id
];
868 size
= rle_compress( &d
, sizeof(sessiont
), c
, sizeof(c
) );
870 // Did we compress the full structure, and is the size actually
872 if ( (d
- orig
) == sizeof(sessiont
) && size
< sizeof(sessiont
) ) {
873 add_type(p
, C_CSESSION
, id
, c
, size
);
876 // Failed to compress : Fall through.
879 add_type(p
, C_SESSION
, id
, (uint8_t *) &session
[id
], sizeof(sessiont
));
882 case C_CBUNDLE
: { // Compressed C_BUNDLE
883 uint8_t c
[sizeof(bundlet
) * 2]; // Bigger than worst case.
884 uint8_t *d
= (uint8_t *) &bundle
[id
];
888 size
= rle_compress( &d
, sizeof(bundlet
), c
, sizeof(c
) );
890 // Did we compress the full structure, and is the size actually
892 if ( (d
- orig
) == sizeof(bundlet
) && size
< sizeof(bundlet
) ) {
893 add_type(p
, C_CBUNDLE
, id
, c
, size
);
896 // Failed to compress : Fall through.
900 add_type(p
, C_BUNDLE
, id
, (uint8_t *) &bundle
[id
], sizeof(bundlet
));
903 case C_CGROUPE
: { // Compressed C_GROUPE
904 uint8_t c
[sizeof(groupsesst
) * 2]; // Bigger than worst case.
905 uint8_t *d
= (uint8_t *) &grpsession
[id
];
909 size
= rle_compress( &d
, sizeof(groupsesst
), c
, sizeof(c
) );
911 // Did we compress the full structure, and is the size actually
913 if ( (d
- orig
) == sizeof(groupsesst
) && size
< sizeof(groupsesst
) )
915 add_type(p
, C_CGROUPE
, id
, c
, size
);
918 // Failed to compress : Fall through.
921 add_type(p
, C_GROUPE
, id
, (uint8_t *) &grpsession
[id
], sizeof(groupsesst
));
924 case C_CTUNNEL
: { // Compressed C_TUNNEL
925 uint8_t c
[sizeof(tunnelt
) * 2]; // Bigger than worst case.
926 uint8_t *d
= (uint8_t *) &tunnel
[id
];
930 size
= rle_compress( &d
, sizeof(tunnelt
), c
, sizeof(c
) );
932 // Did we compress the full structure, and is the size actually
934 if ( (d
- orig
) == sizeof(tunnelt
) && size
< sizeof(tunnelt
) ) {
935 add_type(p
, C_CTUNNEL
, id
, c
, size
);
938 // Failed to compress : Fall through.
941 add_type(p
, C_TUNNEL
, id
, (uint8_t *) &tunnel
[id
], sizeof(tunnelt
));
944 LOG(0, 0, 0, "Found an invalid type in heart queue! (%d)\n", type
);
952 // Send a heartbeat, incidently sending out any queued changes..
954 void cluster_heartbeat()
956 int i
, count
= 0, tcount
= 0, bcount
= 0, gcount
= 0;
957 uint8_t buff
[MAX_HEART_SIZE
+ sizeof(heartt
) + sizeof(int) ];
961 if (!config
->cluster_iam_master
) // Only the master does this.
964 config
->cluster_table_version
+= config
->cluster_num_changes
;
966 // Fill out the heartbeat header.
967 memset(&h
, 0, sizeof(h
));
969 h
.version
= HB_VERSION
;
970 h
.seq
= config
->cluster_seq_number
;
971 h
.basetime
= basetime
;
972 h
.clusterid
= config
->bind_address
; // Will this do??
973 h
.basetime
= basetime
;
974 h
.highsession
= config
->cluster_highest_sessionid
;
975 h
.freesession
= sessionfree
;
976 h
.hightunnel
= config
->cluster_highest_tunnelid
;
977 h
.highbundle
= config
->cluster_highest_bundleid
;
978 h
.highgroupe
= config
->cluster_highest_groupeid
;
979 h
.size_sess
= sizeof(sessiont
); // Just in case.
980 h
.size_bund
= sizeof(bundlet
);
981 h
.size_tunn
= sizeof(tunnelt
);
982 h
.nextgrpid
= gnextgrpid
;
983 h
.interval
= config
->cluster_hb_interval
;
984 h
.timeout
= config
->cluster_hb_timeout
;
985 h
.table_version
= config
->cluster_table_version
;
987 add_type(&p
, C_HEARTBEAT
, HB_VERSION
, (uint8_t *) &h
, sizeof(h
));
989 for (i
= 0; i
< config
->cluster_num_changes
; ++i
) {
990 hb_add_type(&p
, cluster_changes
[i
].type
, cluster_changes
[i
].id
);
993 if (p
> (buff
+ sizeof(buff
))) { // Did we somehow manage to overun the buffer?
994 LOG(0, 0, 0, "FATAL: Overran the heartbeat buffer! This is fatal. Exiting. (size %d)\n", (int) (p
- buff
));
1000 // Fill out the packet with sessions from the session table...
1001 // (not forgetting to leave space so we can get some tunnels,bundle,groupe in too )
1002 while ( (p
+ sizeof(uint32_t) * 2 + sizeof(sessiont
) * 2 ) < (buff
+ MAX_HEART_SIZE
) ) {
1004 if (!walk_session_number
) // session #0 isn't valid.
1005 ++walk_session_number
;
1007 if (count
>= config
->cluster_highest_sessionid
) // If we're a small cluster, don't go wild.
1010 hb_add_type(&p
, C_CSESSION
, walk_session_number
);
1011 walk_session_number
= (1+walk_session_number
)%(config
->cluster_highest_sessionid
+1); // +1 avoids divide by zero.
1013 ++count
; // Count the number of extra sessions we're sending.
1017 // Fill out the packet with tunnels from the tunnel table...
1018 // This effectively means we walk the tunnel table more quickly
1019 // than the session table. This is good because stuffing up a
1020 // tunnel is a much bigger deal than stuffing up a session.
1022 int maxsize
= (sizeof(tunnelt
) < sizeof(bundlet
)) ? sizeof(bundlet
):sizeof(tunnelt
);
1023 maxsize
= (sizeof(groupsesst
) < maxsize
) ? maxsize
:sizeof(groupsesst
);
1024 maxsize
+= (sizeof(uint32_t) * 2);
1026 // Fill out the packet with tunnels,bundlets, groupes from the tables...
1027 while ( (p
+ maxsize
) < (buff
+ MAX_HEART_SIZE
) )
1029 if ((tcount
>= config
->cluster_highest_tunnelid
) &&
1030 (bcount
>= config
->cluster_highest_bundleid
) &&
1031 (gcount
>= config
->cluster_highest_groupeid
))
1034 if ( ((p
+ sizeof(uint32_t) * 2 + sizeof(tunnelt
) ) < (buff
+ MAX_HEART_SIZE
)) &&
1035 (tcount
< config
->cluster_highest_tunnelid
))
1037 if (!walk_tunnel_number
) // tunnel #0 isn't valid.
1038 ++walk_tunnel_number
;
1040 hb_add_type(&p
, C_CTUNNEL
, walk_tunnel_number
);
1041 walk_tunnel_number
= (1+walk_tunnel_number
)%(config
->cluster_highest_tunnelid
+1); // +1 avoids divide by zero.
1046 if ( ((p
+ sizeof(uint32_t) * 2 + sizeof(bundlet
) ) < (buff
+ MAX_HEART_SIZE
)) &&
1047 (bcount
< config
->cluster_highest_bundleid
))
1049 if (!walk_bundle_number
) // bundle #0 isn't valid.
1050 ++walk_bundle_number
;
1052 hb_add_type(&p
, C_CBUNDLE
, walk_bundle_number
);
1053 walk_bundle_number
= (1+walk_bundle_number
)%(config
->cluster_highest_bundleid
+1); // +1 avoids divide by zero.
1058 if ( ((p
+ sizeof(uint32_t) * 2 + sizeof(groupsesst
) ) < (buff
+ MAX_HEART_SIZE
)) &&
1059 (gcount
< config
->cluster_highest_groupeid
))
1061 if (!walk_groupe_number
) // groupe #0 isn't valid.
1062 ++walk_groupe_number
;
1064 hb_add_type(&p
, C_CGROUPE
, walk_groupe_number
);
1065 walk_groupe_number
= (1+walk_groupe_number
)%(config
->cluster_highest_groupeid
+1); // +1 avoids divide by zero.
1071 // Did we do something wrong?
1072 if (p
> (buff
+ sizeof(buff
))) { // Did we somehow manage to overun the buffer?
1073 LOG(0, 0, 0, "Overran the heartbeat buffer now! This is fatal. Exiting. (size %d)\n", (int) (p
- buff
));
1078 LOG(4, 0, 0, "Sending v%d heartbeat #%d, change #%" PRIu64
" with %d changes "
1079 "(%d x-sess, %d x-bundles, %d x-tunnels, %d x-groupes, %d highsess, %d highbund, %d hightun, %d highgrp, size %d)\n",
1080 HB_VERSION
, h
.seq
, h
.table_version
, config
->cluster_num_changes
,
1081 count
, bcount
, tcount
, gcount
, config
->cluster_highest_sessionid
, config
->cluster_highest_bundleid
,
1082 config
->cluster_highest_tunnelid
, config
->cluster_highest_groupeid
, (int) (p
- buff
));
1084 config
->cluster_num_changes
= 0;
1086 send_heartbeat(h
.seq
, buff
, (p
-buff
) ); // Send out the heartbeat to the cluster, keeping a copy of it.
1088 config
->cluster_seq_number
= (config
->cluster_seq_number
+1)%HB_MAX_SEQ
; // Next seq number to use.
1092 // A structure of type 'type' has changed; Add it to the queue to send.
1094 static int type_changed(int type
, int id
)
1098 for (i
= 0 ; i
< config
->cluster_num_changes
; ++i
)
1100 if ( cluster_changes
[i
].id
== id
&& cluster_changes
[i
].type
== type
)
1102 // Already marked for change, remove it
1103 --config
->cluster_num_changes
;
1104 memmove(&cluster_changes
[i
],
1105 &cluster_changes
[i
+1],
1106 (config
->cluster_num_changes
- i
) * sizeof(cluster_changes
[i
]));
1111 cluster_changes
[config
->cluster_num_changes
].type
= type
;
1112 cluster_changes
[config
->cluster_num_changes
].id
= id
;
1113 ++config
->cluster_num_changes
;
1115 if (config
->cluster_num_changes
> MAX_CHANGES
)
1116 cluster_heartbeat(); // flush now
1121 // A particular session has been changed!
1122 int cluster_send_session(int sid
)
1124 if (!config
->cluster_iam_master
) {
1125 LOG(0, sid
, 0, "I'm not a master, but I just tried to change a session!\n");
1130 LOG(0, sid
, 0, "cluster_send_session called from child process!\n");
1134 return type_changed(C_CSESSION
, sid
);
1137 // A particular bundle has been changed!
1138 int cluster_send_bundle(int bid
)
1140 if (!config
->cluster_iam_master
) {
1141 LOG(0, 0, bid
, "I'm not a master, but I just tried to change a bundle!\n");
1145 return type_changed(C_CBUNDLE
, bid
);
1148 // A particular groupe has been changed!
1149 int cluster_send_groupe(int gid
)
1151 if (!config
->cluster_iam_master
)
1153 LOG(0, 0, gid
, "I'm not a master, but I just tried to change a groupe!\n");
1157 return type_changed(C_CGROUPE
, gid
);
1160 // A particular tunnel has been changed!
1161 int cluster_send_tunnel(int tid
)
1163 if (!config
->cluster_iam_master
) {
1164 LOG(0, 0, tid
, "I'm not a master, but I just tried to change a tunnel!\n");
1168 return type_changed(C_CTUNNEL
, tid
);
1173 // We're a master, and a slave has just told us that it's
1174 // missed a packet. We'll resend it every packet since
1175 // the last one it's seen.
1177 static int cluster_catchup_slave(int seq
, in_addr_t slave
)
1182 LOG(1, 0, 0, "Slave %s sent LASTSEEN with seq %d\n", fmtaddr(slave
, 0), seq
);
1183 if (!config
->cluster_iam_master
) {
1184 LOG(1, 0, 0, "Got LASTSEEN but I'm not a master! Redirecting it to %s.\n",
1185 fmtaddr(config
->cluster_master_address
, 0));
1187 peer_send_message(slave
, C_MASTER
, config
->cluster_master_address
, NULL
, 0);
1191 diff
= config
->cluster_seq_number
- seq
; // How many packet do we need to send?
1195 if (diff
>= HB_HISTORY_SIZE
) { // Ouch. We don't have the packet to send it!
1196 LOG(0, 0, 0, "A slave asked for message %d when our seq number is %d. Killing it.\n",
1197 seq
, config
->cluster_seq_number
);
1198 return peer_send_message(slave
, C_KILL
, seq
, NULL
, 0);// Kill the slave. Nothing else to do.
1201 LOG(1, 0, 0, "Sending %d catchup packets to slave %s\n", diff
, fmtaddr(slave
, 0) );
1203 // Now resend every packet that it missed, in order.
1204 while (seq
!= config
->cluster_seq_number
) {
1205 s
= seq
% HB_HISTORY_SIZE
;
1206 if (seq
!= past_hearts
[s
].seq
) {
1207 LOG(0, 0, 0, "Tried to re-send heartbeat for %s but %d doesn't match %d! (%d,%d)\n",
1208 fmtaddr(slave
, 0), seq
, past_hearts
[s
].seq
, s
, config
->cluster_seq_number
);
1209 return -1; // What to do here!?
1211 peer_send_data(slave
, past_hearts
[s
].data
, past_hearts
[s
].size
);
1212 seq
= (seq
+1)%HB_MAX_SEQ
; // Increment to next seq number.
1214 return 0; // All good!
1218 // We've heard from another peer! Add it to the list
1219 // that we select from at election time.
1221 static int cluster_add_peer(in_addr_t peer
, time_t basetime
, pingt
*pp
, int size
)
1224 in_addr_t clusterid
;
1227 // Allow for backward compatability.
1228 // Just the ping packet into a new structure to allow
1229 // for the possibility that we might have received
1230 // more or fewer elements than we were expecting.
1231 if (size
> sizeof(p
))
1234 memset( (void *) &p
, 0, sizeof(p
) );
1235 memcpy( (void *) &p
, (void *) pp
, size
);
1238 if (clusterid
!= config
->bind_address
)
1241 LOG(4, 0, 0, "Skipping ping from %s (different cluster)\n", fmtaddr(peer
, 0));
1245 for (i
= 0; i
< num_peers
; ++i
)
1247 if (peers
[i
].peer
!= peer
)
1250 // This peer already exists. Just update the timestamp.
1251 peers
[i
].basetime
= basetime
;
1252 peers
[i
].timestamp
= TIME
;
1253 peers
[i
].uptodate
= !p
.undef
;
1257 // Is this the master shutting down??
1258 if (peer
== config
->cluster_master_address
) {
1259 LOG(3, 0, 0, "Master %s %s\n", fmtaddr(config
->cluster_master_address
, 0),
1260 basetime
? "has restarted!" : "shutting down...");
1262 config
->cluster_master_address
= 0;
1263 config
->cluster_last_hb
= 0; // Force an election.
1264 cluster_check_master();
1269 LOG(4, 0, 0, "Adding %s as a peer\n", fmtaddr(peer
, 0));
1271 // Not found. Is there a stale slot to re-use?
1272 for (i
= 0; i
< num_peers
; ++i
)
1274 if (!peers
[i
].basetime
) // Shutdown
1277 if ((peers
[i
].timestamp
+ config
->cluster_hb_timeout
* 10) < TIME
) // Stale.
1281 if (i
>= CLUSTER_MAX_SIZE
)
1284 LOG(0, 0, 0, "Tried to add %s as a peer, but I already have %d of them!\n", fmtaddr(peer
, 0), i
);
1288 peers
[i
].peer
= peer
;
1289 peers
[i
].basetime
= basetime
;
1290 peers
[i
].timestamp
= TIME
;
1291 peers
[i
].uptodate
= !p
.undef
;
1295 LOG(1, 0, 0, "Added %s as a new peer. Now %d peers\n", fmtaddr(peer
, 0), num_peers
);
1301 // A slave responds with C_MASTER when it gets a message which should have gone to a master.
1302 static int cluster_set_master(in_addr_t peer
, in_addr_t master
)
1304 if (config
->cluster_iam_master
) // Sanity...
1307 LOG(3, 0, 0, "Peer %s set the master to %s...\n", fmtaddr(peer
, 0),
1308 fmtaddr(master
, 1));
1310 config
->cluster_master_address
= master
;
1313 // catchup with new master
1314 peer_send_message(master
, C_LASTSEEN
, config
->cluster_seq_number
, NULL
, 0);
1316 // delay next election
1317 config
->cluster_last_hb
= TIME
;
1320 // run election (or reset "probed" if master was set)
1321 cluster_check_master();
1325 /* Handle the slave updating the byte counters for the master. */
1327 // Note that we don't mark the session as dirty; We rely on
1328 // the slow table walk to propogate this back out to the slaves.
1330 static int cluster_handle_bytes(uint8_t *data
, int size
)
1334 b
= (bytest
*) data
;
1336 LOG(3, 0, 0, "Got byte counter update (size %d)\n", size
);
1338 /* Loop around, adding the byte
1339 counts to each of the sessions. */
1341 while (size
>= sizeof(*b
) ) {
1342 if (b
->sid
> MAXSESSION
) {
1343 LOG(0, 0, 0, "Got C_BYTES with session #%d!\n", b
->sid
);
1344 return -1; /* Abort processing */
1347 session
[b
->sid
].pin
+= b
->pin
;
1348 session
[b
->sid
].pout
+= b
->pout
;
1350 increment_counter(&session
[b
->sid
].cin
, &session
[b
->sid
].cin_wrap
, b
->cin
);
1351 increment_counter(&session
[b
->sid
].cout
, &session
[b
->sid
].cout_wrap
, b
->cout
);
1353 session
[b
->sid
].cin_delta
+= b
->cin
;
1354 session
[b
->sid
].cout_delta
+= b
->cout
;
1357 session
[b
->sid
].last_packet
= session
[b
->sid
].last_data
= time_now
;
1359 session
[b
->sid
].last_data
= time_now
;
1366 LOG(0, 0, 0, "Got C_BYTES with %d bytes of trailing junk!\n", size
);
1372 // Handle receiving a session structure in a heartbeat packet.
1374 static int cluster_recv_session(int more
, uint8_t *p
)
1376 if (more
>= MAXSESSION
) {
1377 LOG(0, 0, 0, "DANGER: Received a heartbeat session id > MAXSESSION!\n");
1381 if (session
[more
].tunnel
== T_UNDEF
) {
1382 if (config
->cluster_iam_uptodate
) { // Sanity.
1383 LOG(0, 0, 0, "I thought I was uptodate but I just found an undefined session!\n");
1385 --config
->cluster_undefined_sessions
;
1389 load_session(more
, (sessiont
*) p
); // Copy session into session table..
1391 LOG(5, more
, 0, "Received session update (%d undef)\n", config
->cluster_undefined_sessions
);
1393 if (!config
->cluster_iam_uptodate
)
1394 cluster_uptodate(); // Check to see if we're up to date.
1399 static int cluster_recv_bundle(int more
, uint8_t *p
)
1401 if (more
>= MAXBUNDLE
) {
1402 LOG(0, 0, 0, "DANGER: Received a bundle id > MAXBUNDLE!\n");
1406 if (bundle
[more
].state
== BUNDLEUNDEF
) {
1407 if (config
->cluster_iam_uptodate
) { // Sanity.
1408 LOG(0, 0, 0, "I thought I was uptodate but I just found an undefined bundle!\n");
1410 --config
->cluster_undefined_bundles
;
1414 memcpy(&bundle
[more
], p
, sizeof(bundle
[more
]) );
1416 LOG(5, 0, more
, "Received bundle update\n");
1418 if (!config
->cluster_iam_uptodate
)
1419 cluster_uptodate(); // Check to see if we're up to date.
1424 static int cluster_recv_groupe(int more
, uint8_t *p
)
1426 if (more
>= MAXGROUPE
) {
1427 LOG(0, 0, 0, "DANGER: Received a group id > MAXGROUPE!\n");
1431 if (grpsession
[more
].state
== GROUPEUNDEF
) {
1432 if (config
->cluster_iam_uptodate
) { // Sanity.
1433 LOG(0, 0, 0, "I thought I was uptodate but I just found an undefined group!\n");
1435 --config
->cluster_undefined_groupes
;
1439 grp_cluster_load_groupe(more
, (groupsesst
*) p
); // Copy groupe into groupe table..
1441 LOG(5, 0, more
, "Received group update (%d undef)\n", config
->cluster_undefined_groupes
);
1443 if (!config
->cluster_iam_uptodate
)
1444 cluster_uptodate(); // Check to see if we're up to date.
1449 static int cluster_recv_tunnel(int more
, uint8_t *p
)
1451 if (more
>= MAXTUNNEL
) {
1452 LOG(0, 0, 0, "DANGER: Received a tunnel session id > MAXTUNNEL!\n");
1456 if (tunnel
[more
].state
== TUNNELUNDEF
) {
1457 if (config
->cluster_iam_uptodate
) { // Sanity.
1458 LOG(0, 0, 0, "I thought I was uptodate but I just found an undefined tunnel!\n");
1460 --config
->cluster_undefined_tunnels
;
1464 memcpy(&tunnel
[more
], p
, sizeof(tunnel
[more
]) );
1467 // Clear tunnel control messages. These are dynamically allocated.
1468 // If we get unlucky, this may cause the tunnel to drop!
1470 tunnel
[more
].controls
= tunnel
[more
].controle
= NULL
;
1471 tunnel
[more
].controlc
= 0;
1473 LOG(5, 0, more
, "Received tunnel update\n");
1475 if (!config
->cluster_iam_uptodate
)
1476 cluster_uptodate(); // Check to see if we're up to date.
1482 // pre v6 heartbeat session structure
1503 uint32_t cin_wrap
, cout_wrap
;
1504 uint32_t cin_delta
, cout_delta
;
1505 uint16_t throttle_in
;
1506 uint16_t throttle_out
;
1512 uint32_t session_timeout
;
1513 uint32_t idle_timeout
;
1516 in_addr_t dns1
, dns2
;
1517 routet route
[MAXROUTE
];
1520 int random_vector_length
;
1521 uint8_t random_vector
[MAXTEL
];
1523 char called
[MAXTEL
];
1524 char calling
[MAXTEL
];
1525 uint32_t tx_connect_speed
;
1526 uint32_t rx_connect_speed
;
1533 uint16_t snoop_port
;
1534 uint8_t walled_garden
;
1535 uint8_t ipv6prefixlen
;
1536 struct in6_addr ipv6route
;
1537 char reserved_3
[11];
1540 static uint8_t *convert_session(struct oldsession
*old
)
1542 static sessiont
new;
1545 memset(&new, 0, sizeof(new));
1547 new.next
= old
->next
;
1549 new.tunnel
= old
->tunnel
;
1550 new.flags
= old
->flags
;
1551 new.ppp
.phase
= old
->ppp
.phase
;
1552 new.ppp
.lcp
= old
->ppp
.lcp
;
1553 new.ppp
.ipcp
= old
->ppp
.ipcp
;
1554 new.ppp
.ipv6cp
= old
->ppp
.ipv6cp
;
1555 new.ppp
.ccp
= old
->ppp
.ccp
;
1557 new.ip_pool_index
= old
->ip_pool_index
;
1558 new.unique_id
= old
->unique_id
;
1559 new.magic
= old
->magic
;
1561 new.pout
= old
->pout
;
1563 new.cout
= old
->cout
;
1564 new.cin_wrap
= old
->cin_wrap
;
1565 new.cout_wrap
= old
->cout_wrap
;
1566 new.cin_delta
= old
->cin_delta
;
1567 new.cout_delta
= old
->cout_delta
;
1568 new.throttle_in
= old
->throttle_in
;
1569 new.throttle_out
= old
->throttle_out
;
1570 new.filter_in
= old
->filter_in
;
1571 new.filter_out
= old
->filter_out
;
1573 new.opened
= old
->opened
;
1575 new.session_timeout
= old
->session_timeout
;
1576 new.idle_timeout
= old
->idle_timeout
;
1577 new.last_packet
= old
->last_packet
;
1578 new.last_data
= old
->last_data
;
1579 new.dns1
= old
->dns1
;
1580 new.dns2
= old
->dns2
;
1581 new.tbf_in
= old
->tbf_in
;
1582 new.tbf_out
= old
->tbf_out
;
1583 new.random_vector_length
= old
->random_vector_length
;
1584 new.tx_connect_speed
= old
->tx_connect_speed
;
1585 new.rx_connect_speed
= old
->rx_connect_speed
;
1586 new.timeout
= old
->timeout
;
1587 new.mrru
= old
->mrru
;
1588 new.mssf
= old
->mssf
;
1589 new.epdis
= old
->epdis
;
1590 new.bundle
= old
->bundle
;
1591 new.snoop_ip
= old
->snoop_ip
;
1592 new.snoop_port
= old
->snoop_port
;
1593 new.walled_garden
= old
->walled_garden
;
1594 new.ipv6prefixlen
= old
->ipv6prefixlen
;
1595 new.ipv6route
= old
->ipv6route
;
1597 memcpy(new.random_vector
, old
->random_vector
, sizeof(new.random_vector
));
1598 memcpy(new.user
, old
->user
, sizeof(new.user
));
1599 memcpy(new.called
, old
->called
, sizeof(new.called
));
1600 memcpy(new.calling
, old
->calling
, sizeof(new.calling
));
1602 for (i
= 0; i
< MAXROUTE
; i
++)
1603 memcpy(&new.route
[i
], &old
->route
[i
], sizeof(new.route
[i
]));
1605 return (uint8_t *) &new;
1609 // Process a heartbeat..
1611 // v6: added RADIUS class attribute, re-ordered session structure
1612 // v7: added tunnelt attribute at the end of struct (tunnelt size change)
1613 static int cluster_process_heartbeat(uint8_t *data
, int size
, int more
, uint8_t *p
, in_addr_t addr
)
1616 int s
= size
- (p
-data
);
1621 # error "need to update cluster_process_heartbeat()"
1624 // we handle versions 5 through 7
1625 if (hb_ver
< 5 || hb_ver
> HB_VERSION
) {
1626 LOG(0, 0, 0, "Received a heartbeat version that I don't support (%d)!\n", hb_ver
);
1627 return -1; // Ignore it??
1630 if (size
> sizeof(past_hearts
[0].data
)) {
1631 LOG(0, 0, 0, "Received an oversize heartbeat from %s (%d)!\n", fmtaddr(addr
, 0), size
);
1642 if (h
->clusterid
!= config
->bind_address
)
1643 return -1; // It's not part of our cluster.
1645 if (config
->cluster_iam_master
) { // Sanity...
1646 // Note that this MUST match the election process above!
1648 LOG(0, 0, 0, "I just got a heartbeat from master %s, but _I_ am the master!\n", fmtaddr(addr
, 0));
1650 LOG(0, 0, 0, "Heartbeat with zero basetime! Ignoring\n");
1651 return -1; // Skip it.
1654 if (h
->table_version
> config
->cluster_table_version
) {
1655 LOG(0, 0, 0, "They've seen more state changes (%" PRIu64
" vs my %" PRIu64
") so I'm gone!\n",
1656 h
->table_version
, config
->cluster_table_version
);
1662 if (h
->table_version
< config
->cluster_table_version
)
1665 if (basetime
> h
->basetime
) {
1666 LOG(0, 0, 0, "They're an older master than me so I'm gone!\n");
1671 if (basetime
< h
->basetime
)
1674 if (my_address
< addr
) { // Tie breaker.
1675 LOG(0, 0, 0, "They're a higher IP address than me, so I'm gone!\n");
1681 // Send it a unicast heartbeat to see give it a chance to die.
1682 // NOTE: It's actually safe to do seq-number - 1 without checking
1685 cluster_catchup_slave(config
->cluster_seq_number
- 1, addr
);
1687 return -1; // Skip it.
1691 // Try and guard against a stray master appearing.
1693 // Ignore heartbeats received from another master before the
1694 // timeout (less a smidgen) for the old master has elapsed.
1696 // Note that after a clean failover, the cluster_master_address
1697 // is cleared, so this doesn't run.
1699 if (config
->cluster_master_address
&& addr
!= config
->cluster_master_address
) {
1700 LOG(0, 0, 0, "Ignoring stray heartbeat from %s, current master %s has not yet timed out (last heartbeat %.1f seconds ago).\n",
1701 fmtaddr(addr
, 0), fmtaddr(config
->cluster_master_address
, 1),
1702 0.1 * (TIME
- config
->cluster_last_hb
));
1703 return -1; // ignore
1706 if (config
->cluster_seq_number
== -1) // Don't have one. Just align to the master...
1707 config
->cluster_seq_number
= h
->seq
;
1709 config
->cluster_last_hb
= TIME
; // Reset to ensure that we don't become master!!
1710 config
->cluster_last_hb_ver
= hb_ver
; // remember what cluster version the master is using
1712 if (config
->cluster_seq_number
!= h
->seq
) { // Out of sequence heartbeat!
1713 static int lastseen_seq
= 0;
1714 static time_t lastseen_time
= 0;
1716 // limit to once per second for a particular seq#
1717 int ask
= (config
->cluster_seq_number
!= lastseen_seq
|| time_now
!= lastseen_time
);
1719 LOG(1, 0, 0, "HB: Got seq# %d but was expecting %d. %s.\n",
1720 h
->seq
, config
->cluster_seq_number
,
1721 ask
? "Asking for resend" : "Ignoring");
1725 lastseen_seq
= config
->cluster_seq_number
;
1726 lastseen_time
= time_now
;
1727 peer_send_message(addr
, C_LASTSEEN
, config
->cluster_seq_number
, NULL
, 0);
1730 config
->cluster_last_hb
= TIME
; // Reset to ensure that we don't become master!!
1732 // Just drop the packet. The master will resend it as part of the catchup.
1736 // Save the packet in our buffer.
1737 // This is needed in case we become the master.
1738 config
->cluster_seq_number
= (h
->seq
+1)%HB_MAX_SEQ
;
1739 i
= h
->seq
% HB_HISTORY_SIZE
;
1740 past_hearts
[i
].seq
= h
->seq
;
1741 past_hearts
[i
].size
= size
;
1742 memcpy(&past_hearts
[i
].data
, data
, size
); // Save it.
1745 // Check that we don't have too many undefined sessions, and
1746 // that the free session pointer is correct.
1747 gnextgrpid
= h
->nextgrpid
;
1748 cluster_check_sessions(h
->highsession
, h
->freesession
, h
->highbundle
, h
->hightunnel
, h
->highgroupe
);
1750 if (h
->interval
!= config
->cluster_hb_interval
)
1752 LOG(2, 0, 0, "Master set ping/heartbeat interval to %u (was %u)\n",
1753 h
->interval
, config
->cluster_hb_interval
);
1755 config
->cluster_hb_interval
= h
->interval
;
1758 if (h
->timeout
!= config
->cluster_hb_timeout
)
1760 LOG(2, 0, 0, "Master set heartbeat timeout to %u (was %u)\n",
1761 h
->timeout
, config
->cluster_hb_timeout
);
1763 config
->cluster_hb_timeout
= h
->timeout
;
1766 // Ok. process the packet...
1769 type
= *((uint32_t *) p
);
1770 p
+= sizeof(uint32_t);
1771 s
-= sizeof(uint32_t);
1773 more
= *((uint32_t *) p
);
1774 p
+= sizeof(uint32_t);
1775 s
-= sizeof(uint32_t);
1778 case C_CSESSION
: { // Compressed session structure.
1779 uint8_t c
[ sizeof(sessiont
) + 2];
1781 uint8_t *orig_p
= p
;
1783 size
= rle_decompress((uint8_t **) &p
, s
, c
, sizeof(c
) );
1786 // session struct changed with v5
1789 if (size
!= sizeof(struct oldsession
)) {
1790 LOG(0, 0, 0, "DANGER: Received a v%d CSESSION that didn't decompress correctly!\n", hb_ver
);
1791 // Now what? Should exit! No-longer up to date!
1794 cluster_recv_session(more
, convert_session((struct oldsession
*) c
));
1798 if (size
!= sizeof(sessiont
) ) { // Ouch! Very very bad!
1799 LOG(0, 0, 0, "DANGER: Received a CSESSION that didn't decompress correctly!\n");
1800 // Now what? Should exit! No-longer up to date!
1804 cluster_recv_session(more
, c
);
1810 if (s
< sizeof(struct oldsession
))
1813 cluster_recv_session(more
, convert_session((struct oldsession
*) p
));
1815 p
+= sizeof(struct oldsession
);
1816 s
-= sizeof(struct oldsession
);
1820 if ( s
< sizeof(session
[more
]))
1823 cluster_recv_session(more
, p
);
1825 p
+= sizeof(session
[more
]);
1826 s
-= sizeof(session
[more
]);
1829 case C_CTUNNEL
: { // Compressed tunnel structure.
1830 uint8_t c
[ sizeof(tunnelt
) + 2];
1832 uint8_t *orig_p
= p
;
1834 size
= rle_decompress((uint8_t **) &p
, s
, c
, sizeof(c
));
1837 if ( ((hb_ver
>= HB_VERSION
) && (size
!= sizeof(tunnelt
))) ||
1838 ((hb_ver
< HB_VERSION
) && (size
> sizeof(tunnelt
))) )
1839 { // Ouch! Very very bad!
1840 LOG(0, 0, 0, "DANGER: Received a CTUNNEL that didn't decompress correctly!\n");
1841 // Now what? Should exit! No-longer up to date!
1845 cluster_recv_tunnel(more
, c
);
1850 if ( s
< sizeof(tunnel
[more
]))
1853 cluster_recv_tunnel(more
, p
);
1855 p
+= sizeof(tunnel
[more
]);
1856 s
-= sizeof(tunnel
[more
]);
1859 case C_CBUNDLE
: { // Compressed bundle structure.
1860 uint8_t c
[ sizeof(bundlet
) + 2];
1862 uint8_t *orig_p
= p
;
1864 size
= rle_decompress((uint8_t **) &p
, s
, c
, sizeof(c
));
1867 if (size
!= sizeof(bundlet
) ) { // Ouch! Very very bad!
1868 LOG(0, 0, 0, "DANGER: Received a CBUNDLE that didn't decompress correctly!\n");
1869 // Now what? Should exit! No-longer up to date!
1873 cluster_recv_bundle(more
, c
);
1878 if ( s
< sizeof(bundle
[more
]))
1881 cluster_recv_bundle(more
, p
);
1883 p
+= sizeof(bundle
[more
]);
1884 s
-= sizeof(bundle
[more
]);
1888 { // Compressed Groupe structure.
1889 uint8_t c
[ sizeof(groupsesst
) + 2];
1891 uint8_t *orig_p
= p
;
1893 size
= rle_decompress((uint8_t **) &p
, s
, c
, sizeof(c
));
1896 if (size
!= sizeof(groupsesst
) )
1897 { // Ouch! Very very bad!
1898 LOG(0, 0, 0, "DANGER: Received a C_CGROUPE that didn't decompress correctly!\n");
1899 // Now what? Should exit! No-longer up to date!
1903 cluster_recv_groupe(more
, c
);
1907 if ( s
< sizeof(grpsession
[more
]))
1910 cluster_recv_groupe(more
, p
);
1912 p
+= sizeof(grpsession
[more
]);
1913 s
-= sizeof(grpsession
[more
]);
1917 LOG(0, 0, 0, "DANGER: I received a heartbeat element where I didn't understand the type! (%d)\n", type
);
1918 return -1; // can't process any more of the packet!!
1922 if (config
->cluster_master_address
!= addr
)
1924 LOG(0, 0, 0, "My master just changed from %s to %s!\n",
1925 fmtaddr(config
->cluster_master_address
, 0), fmtaddr(addr
, 1));
1927 config
->cluster_master_address
= addr
;
1930 config
->cluster_last_hb
= TIME
; // Successfully received a heartbeat!
1931 config
->cluster_table_version
= h
->table_version
;
1935 LOG(0, 0, 0, "I got an incomplete heartbeat packet! This means I'm probably out of sync!!\n");
1940 // We got a packet on the cluster port!
1941 // Handle pings, lastseens, and heartbeats!
1943 int processcluster(uint8_t *data
, int size
, in_addr_t addr
)
1949 if (addr
== my_address
)
1950 return -1; // Ignore it. Something looped back the multicast!
1952 LOG(5, 0, 0, "Process cluster: %d bytes from %s\n", size
, fmtaddr(addr
, 0));
1954 if (s
<= 0) // Any data there??
1960 type
= *((uint32_t *) p
);
1961 p
+= sizeof(uint32_t);
1962 s
-= sizeof(uint32_t);
1964 more
= *((uint32_t *) p
);
1965 p
+= sizeof(uint32_t);
1966 s
-= sizeof(uint32_t);
1970 case C_PING
: // Update the peers table.
1971 return cluster_add_peer(addr
, more
, (pingt
*) p
, s
);
1973 case C_MASTER
: // Our master is wrong
1974 return cluster_set_master(addr
, more
);
1976 case C_LASTSEEN
: // Catch up a slave (slave missed a packet).
1977 return cluster_catchup_slave(more
, addr
);
1979 case C_FORWARD
: // Forwarded control packet. pass off to processudp.
1980 case C_FORWARD_DAE
: // Forwarded DAE packet. pass off to processdae.
1981 if (!config
->cluster_iam_master
)
1983 LOG(0, 0, 0, "I'm not the master, but I got a C_FORWARD%s from %s?\n",
1984 type
== C_FORWARD_DAE
? "_DAE" : "", fmtaddr(addr
, 0));
1990 struct sockaddr_in a
;
1992 a
.sin_addr
.s_addr
= more
;
1994 a
.sin_port
= (*(int *) p
) & 0xFFFF;
1995 indexudp
= ((*(int *) p
) >> 16) & 0xFFFF;
1999 LOG(4, 0, 0, "Got a forwarded %spacket... (%s:%d)\n",
2000 type
== C_FORWARD_DAE
? "DAE " : "", fmtaddr(more
, 0), a
.sin_port
);
2003 if (type
== C_FORWARD_DAE
)
2005 struct in_addr local
;
2006 local
.s_addr
= config
->bind_address
? config
->bind_address
: my_address
;
2007 processdae(p
, s
, &a
, sizeof(a
), &local
);
2010 processudp(p
, s
, &a
, indexudp
);
2014 case C_PPPOE_FORWARD
:
2015 if (!config
->cluster_iam_master
)
2017 LOG(0, 0, 0, "I'm not the master, but I got a C_PPPOE_FORWARD from %s?\n", fmtaddr(addr
, 0));
2022 pppoe_process_forward(p
, s
, addr
);
2026 case C_MPPP_FORWARD
:
2027 // Receive a MPPP packet from a slave.
2028 if (!config
->cluster_iam_master
) {
2029 LOG(0, 0, 0, "I'm not the master, but I got a C_MPPP_FORWARD from %s?\n", fmtaddr(addr
, 0));
2036 case C_THROTTLE
: { // Receive a forwarded packet from a slave.
2037 if (!config
->cluster_iam_master
) {
2038 LOG(0, 0, 0, "I'm not the master, but I got a C_THROTTLE from %s?\n", fmtaddr(addr
, 0));
2042 tbf_queue_packet(more
, p
, s
); // The TBF id tells wether it goes in or out.
2046 // Receive a walled garden packet from a slave.
2047 if (!config
->cluster_iam_master
) {
2048 LOG(0, 0, 0, "I'm not the master, but I got a C_GARDEN from %s?\n", fmtaddr(addr
, 0));
2056 if (!config
->cluster_iam_master
) {
2057 LOG(0, 0, 0, "I'm not the master, but I got a C_BYTES from %s?\n", fmtaddr(addr
, 0));
2061 return cluster_handle_bytes(p
, s
);
2063 case C_KILL
: // The master asked us to die!? (usually because we're too out of date).
2064 if (config
->cluster_iam_master
) {
2065 LOG(0, 0, 0, "_I_ am master, but I received a C_KILL from %s! (Seq# %d)\n", fmtaddr(addr
, 0), more
);
2068 if (more
!= config
->cluster_seq_number
) {
2069 LOG(0, 0, 0, "The master asked us to die but the seq number didn't match!?\n");
2073 if (addr
!= config
->cluster_master_address
) {
2074 LOG(0, 0, 0, "Received a C_KILL from %s which doesn't match config->cluster_master_address (%s)\n",
2075 fmtaddr(addr
, 0), fmtaddr(config
->cluster_master_address
, 1));
2076 // We can only warn about it. The master might really have switched!
2079 LOG(0, 0, 0, "Received a valid C_KILL: I'm going to die now.\n");
2081 exit(0); // Lets be paranoid;
2082 return -1; // Just signalling the compiler.
2085 LOG(4, 0, 0, "Got a heartbeat from %s\n", fmtaddr(addr
, 0));
2086 return cluster_process_heartbeat(data
, size
, more
, p
, addr
);
2089 LOG(0, 0, 0, "Strange type packet received on cluster socket (%d)\n", type
);
2095 LOG(0, 0, 0, "I got a _short_ cluster heartbeat packet! This means I'm probably out of sync!!\n");
2099 //====================================================================================================
2101 int cmd_show_cluster(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
2105 if (CLI_HELP_REQUESTED
)
2106 return CLI_HELP_NO_ARGS
;
2108 cli_print(cli
, "Cluster status : %s", config
->cluster_iam_master
? "Master" : "Slave" );
2109 cli_print(cli
, "My address : %s", fmtaddr(my_address
, 0));
2110 cli_print(cli
, "VIP address : %s", fmtaddr(config
->bind_address
, 0));
2111 cli_print(cli
, "Multicast address: %s", fmtaddr(config
->cluster_address
, 0));
2112 cli_print(cli
, "Multicast i'face : %s", config
->cluster_interface
);
2114 if (!config
->cluster_iam_master
) {
2115 cli_print(cli
, "My master : %s (last heartbeat %.1f seconds old)",
2116 config
->cluster_master_address
2117 ? fmtaddr(config
->cluster_master_address
, 0)
2119 0.1 * (TIME
- config
->cluster_last_hb
));
2120 cli_print(cli
, "Uptodate : %s", config
->cluster_iam_uptodate
? "Yes" : "No");
2121 cli_print(cli
, "Table version # : %" PRIu64
, config
->cluster_table_version
);
2122 cli_print(cli
, "Next sequence number expected: %d", config
->cluster_seq_number
);
2123 cli_print(cli
, "%d sessions undefined of %d", config
->cluster_undefined_sessions
, config
->cluster_highest_sessionid
);
2124 cli_print(cli
, "%d bundles undefined of %d", config
->cluster_undefined_bundles
, config
->cluster_highest_bundleid
);
2125 cli_print(cli
, "%d groupes undefined of %d", config
->cluster_undefined_groupes
, config
->cluster_highest_groupeid
);
2126 cli_print(cli
, "%d tunnels undefined of %d", config
->cluster_undefined_tunnels
, config
->cluster_highest_tunnelid
);
2128 cli_print(cli
, "Table version # : %" PRIu64
, config
->cluster_table_version
);
2129 cli_print(cli
, "Next heartbeat # : %d", config
->cluster_seq_number
);
2130 cli_print(cli
, "Highest session : %d", config
->cluster_highest_sessionid
);
2131 cli_print(cli
, "Highest bundle : %d", config
->cluster_highest_bundleid
);
2132 cli_print(cli
, "Highest groupe : %d", config
->cluster_highest_groupeid
);
2133 cli_print(cli
, "Highest tunnel : %d", config
->cluster_highest_tunnelid
);
2134 cli_print(cli
, "%d changes queued for sending", config
->cluster_num_changes
);
2136 cli_print(cli
, "%d peers.", num_peers
);
2139 cli_print(cli
, "%20s %10s %8s", "Address", "Basetime", "Age");
2140 for (i
= 0; i
< num_peers
; ++i
) {
2141 cli_print(cli
, "%20s %10u %8d", fmtaddr(peers
[i
].peer
, 0),
2142 peers
[i
].basetime
, TIME
- peers
[i
].timestamp
);
2148 // Simple run-length-encoding compression.
2150 // 1 byte < 128 = count of non-zero bytes following. // Not legal to be zero.
2151 // n non-zero bytes;
2153 // 1 byte > 128 = (count - 128) run of zero bytes. //
2155 // count == 0 indicates end of compressed stream.
2157 // Compress from 'src' into 'dst'. return number of bytes
2159 // Updates *src_p to indicate 1 past last bytes used.
2161 // We could get an extra byte in the zero runs by storing (count-1)
2162 // but I'm playing it safe.
2164 // Worst case is a 50% expansion in space required (trying to
2165 // compress { 0x00, 0x01 } * N )
2166 static int rle_compress(uint8_t **src_p
, int ssize
, uint8_t *dst
, int dsize
)
2169 int orig_dsize
= dsize
;
2173 while (ssize
> 0 && dsize
> 2) {
2175 x
= dst
++; --dsize
; // Reserve space for count byte..
2177 if (*src
) { // Copy a run of non-zero bytes.
2178 while (*src
&& count
< 127 && ssize
> 0 && dsize
> 1) { // Count number of non-zero bytes.
2183 *x
= count
; // Store number of non-zero bytes. Guarenteed to be non-zero!
2185 } else { // Compress a run of zero bytes.
2186 while (*src
== 0 && count
< 127 && ssize
> 0) {
2195 *dst
++ = 0x0; // Add Stop byte.
2199 return (orig_dsize
- dsize
);
2203 // Decompress the buffer into **p.
2204 // 'psize' is the size of the decompression buffer available.
2206 // Returns the number of bytes decompressed.
2208 // Decompresses from '*src_p' into 'dst'.
2209 // Return the number of dst bytes used.
2210 // Updates the 'src_p' pointer to point to the
2211 // first un-used byte.
2212 static int rle_decompress(uint8_t **src_p
, int ssize
, uint8_t *dst
, int dsize
)
2215 int orig_dsize
= dsize
;
2216 uint8_t *src
= *src_p
;
2218 while (ssize
>0 && dsize
> 0) { // While there's more to decompress, and there's room in the decompress buffer...
2219 count
= *src
++; --ssize
; // get the count byte from the source.
2220 if (count
== 0x0) // End marker reached? If so, finish.
2223 if (count
& 0x80) { // Decompress a run of zeros
2224 for (count
&= 0x7f ; count
> 0 && dsize
> 0; --count
) {
2228 } else { // Copy run of non-zero bytes.
2229 for ( ; count
> 0 && ssize
&& dsize
; --count
) { // Copy non-zero bytes across.
2236 return (orig_dsize
- dsize
);