1 // L2TPNS Clustering Stuff
3 char const *cvs_id_cluster
= "$Id: cluster.c,v 1.26.2.6 2005/05/21 13:05:36 bodea Exp $";
12 #include <sys/socket.h>
13 #include <netinet/in.h>
14 #include <arpa/inet.h>
15 #include <sys/ioctl.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 int cluster_sockfd
= 0; // 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_tunnel_number
= 0; // The next tunnel to send when doing the slow table walk.
47 #define MAX_HEART_SIZE (8192) // Maximum size of heartbeat packet. Must be less than max IP packet size :)
48 #define MAX_CHANGES (MAX_HEART_SIZE/(sizeof(sessiont) + sizeof(int) ) - 2) // Assumes a session is the biggest type!
53 } cluster_changes
[MAX_CHANGES
]; // Queue of changed structures that need to go out when next heartbeat.
58 char data
[MAX_HEART_SIZE
];
59 } past_hearts
[HB_HISTORY_SIZE
]; // Ring buffer of heartbeats that we've recently sent out. Needed so
60 // we can re-transmit if needed.
67 } peers
[CLUSTER_MAX_SIZE
]; // List of all the peers we've heard from.
68 static int num_peers
; // Number of peers in list.
70 static int rle_decompress(uint8_t **src_p
, int ssize
, uint8_t *dst
, int dsize
);
71 static int rle_compress(uint8_t **src_p
, int ssize
, uint8_t *dst
, int dsize
);
74 // Create a listening socket
76 // This joins the cluster multi-cast group.
80 struct sockaddr_in addr
;
81 struct sockaddr_in interface_addr
;
86 config
->cluster_undefined_sessions
= MAXSESSION
-1;
87 config
->cluster_undefined_tunnels
= MAXTUNNEL
-1;
89 if (!config
->cluster_address
)
91 if (!*config
->cluster_interface
)
94 cluster_sockfd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
96 memset(&addr
, 0, sizeof(addr
));
97 addr
.sin_family
= AF_INET
;
98 addr
.sin_port
= htons(CLUSTERPORT
);
99 addr
.sin_addr
.s_addr
= INADDR_ANY
;
100 setsockopt(cluster_sockfd
, SOL_SOCKET
, SO_REUSEADDR
, &addr
, sizeof(addr
));
102 opt
= fcntl(cluster_sockfd
, F_GETFL
, 0);
103 fcntl(cluster_sockfd
, F_SETFL
, opt
| O_NONBLOCK
);
105 if (bind(cluster_sockfd
, (void *) &addr
, sizeof(addr
)) < 0)
107 LOG(0, 0, 0, "Failed to bind cluster socket: %s\n", strerror(errno
));
111 strcpy(ifr
.ifr_name
, config
->cluster_interface
);
112 if (ioctl(cluster_sockfd
, SIOCGIFADDR
, &ifr
) < 0)
114 LOG(0, 0, 0, "Failed to get interface address for (%s): %s\n", config
->cluster_interface
, strerror(errno
));
118 memcpy(&interface_addr
, &ifr
.ifr_addr
, sizeof(interface_addr
));
119 my_address
= interface_addr
.sin_addr
.s_addr
;
121 // Join multicast group.
122 mreq
.imr_multiaddr
.s_addr
= config
->cluster_address
;
123 mreq
.imr_interface
= interface_addr
.sin_addr
;
126 opt
= 0; // Turn off multicast loopback.
127 setsockopt(cluster_sockfd
, IPPROTO_IP
, IP_MULTICAST_LOOP
, &opt
, sizeof(opt
));
129 if (setsockopt(cluster_sockfd
, IPPROTO_IP
, IP_ADD_MEMBERSHIP
, &mreq
, sizeof(mreq
)) < 0)
131 LOG(0, 0, 0, "Failed to setsockopt (join mcast group): %s\n", strerror(errno
));
135 if (setsockopt(cluster_sockfd
, IPPROTO_IP
, IP_MULTICAST_IF
, &interface_addr
, sizeof(interface_addr
)) < 0)
137 LOG(0, 0, 0, "Failed to setsockopt (set mcast interface): %s\n", strerror(errno
));
141 config
->cluster_last_hb
= TIME
;
142 config
->cluster_seq_number
= -1;
144 return cluster_sockfd
;
149 // Send a chunk of data to the entire cluster (usually via the multicast
153 static int cluster_send_data(void *data
, int datalen
)
155 struct sockaddr_in addr
= {0};
157 if (!cluster_sockfd
) return -1;
158 if (!config
->cluster_address
) return 0;
160 addr
.sin_addr
.s_addr
= config
->cluster_address
;
161 addr
.sin_port
= htons(CLUSTERPORT
);
162 addr
.sin_family
= AF_INET
;
164 LOG(5, 0, 0, "Cluster send data: %d bytes\n", datalen
);
166 if (sendto(cluster_sockfd
, data
, datalen
, MSG_NOSIGNAL
, (void *) &addr
, sizeof(addr
)) < 0)
168 LOG(0, 0, 0, "sendto: %s\n", strerror(errno
));
176 // Add a chunk of data to a heartbeat packet.
177 // Maintains the format. Assumes that the caller
178 // has passed in a big enough buffer!
180 static void add_type(char **p
, int type
, int more
, char *data
, int size
)
182 *((uint32_t *) (*p
)) = type
;
183 *p
+= sizeof(uint32_t);
185 *((uint32_t *)(*p
)) = more
;
186 *p
+= sizeof(uint32_t);
188 if (data
&& size
> 0) {
189 memcpy(*p
, data
, size
);
194 // advertise our presence via BGP or gratuitous ARP
195 static void advertise(void)
199 bgp_enable_routing(1);
202 if (config
->send_garp
)
203 send_garp(config
->bind_address
); // Start taking traffic.
206 static void cluster_uptodate(void)
208 if (config
->cluster_iam_uptodate
)
211 if (config
->cluster_undefined_sessions
|| config
->cluster_undefined_tunnels
)
214 config
->cluster_iam_uptodate
= 1;
216 LOG(0, 0, 0, "Now uptodate with master.\n");
221 // Send a unicast UDP packet to a peer with 'data' as the
224 static int peer_send_data(in_addr_t peer
, char *data
, int size
)
226 struct sockaddr_in addr
= {0};
228 if (!cluster_sockfd
) return -1;
229 if (!config
->cluster_address
) return 0;
234 addr
.sin_addr
.s_addr
= peer
;
235 addr
.sin_port
= htons(CLUSTERPORT
);
236 addr
.sin_family
= AF_INET
;
238 LOG_HEX(5, "Peer send", data
, size
);
240 if (sendto(cluster_sockfd
, data
, size
, MSG_NOSIGNAL
, (void *) &addr
, sizeof(addr
)) < 0)
242 LOG(0, 0, 0, "sendto: %s\n", strerror(errno
));
250 // Send a structured message to a peer with a single element of type 'type'.
252 static int peer_send_message(in_addr_t peer
, int type
, int more
, char *data
, int size
)
254 char buf
[65536]; // Vast overkill.
257 LOG(4, 0, 0, "Sending message to peer (type %d, more %d, size %d)\n", type
, more
, size
);
258 add_type(&p
, type
, more
, data
, size
);
260 return peer_send_data(peer
, buf
, (p
-buf
) );
264 // Forward a state changing packet to the master.
266 // The master just processes the payload as if it had
267 // received it off the tun device.
269 int master_forward_packet(char *data
, int size
, in_addr_t addr
, int port
)
271 char buf
[65536]; // Vast overkill.
274 if (!config
->cluster_master_address
) // No election has been held yet. Just skip it.
277 LOG(4, 0, 0, "Forwarding packet from %s to master (size %d)\n", fmtaddr(addr
, 0), size
);
280 add_type(&p
, C_FORWARD
, addr
, (char *) &port
, sizeof(port
));
281 memcpy(p
, data
, size
);
284 return peer_send_data(config
->cluster_master_address
, buf
, (p
- buf
));
288 // Forward a throttled packet to the master for handling.
290 // The master just drops the packet into the appropriate
291 // token bucket queue, and lets normal processing take care
294 int master_throttle_packet(int tbfid
, char *data
, int size
)
296 char buf
[65536]; // Vast overkill.
299 if (!config
->cluster_master_address
) // No election has been held yet. Just skip it.
302 LOG(4, 0, 0, "Throttling packet master (size %d, tbfid %d)\n", size
, tbfid
);
304 add_type(&p
, C_THROTTLE
, tbfid
, data
, size
);
306 return peer_send_data(config
->cluster_master_address
, buf
, (p
-buf
) );
311 // Forward a walled garden packet to the master for handling.
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)
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
)
321 char buf
[65536]; // Vast overkill.
324 if (!config
->cluster_master_address
) // No election has been held yet. Just skip it.
327 LOG(4, 0, 0, "Walled garden packet to master (size %d)\n", size
);
329 add_type(&p
, C_GARDEN
, s
, data
, size
);
331 return peer_send_data(config
->cluster_master_address
, buf
, (p
-buf
));
336 // Send a chunk of data as a heartbeat..
337 // We save it in the history buffer as we do so.
339 static void send_heartbeat(int seq
, char *data
, int size
)
343 if (size
> sizeof(past_hearts
[0].data
))
345 LOG(0, 0, 0, "Tried to heartbeat something larger than the maximum packet!\n");
349 i
= seq
% HB_HISTORY_SIZE
;
350 past_hearts
[i
].seq
= seq
;
351 past_hearts
[i
].size
= size
;
352 memcpy(&past_hearts
[i
].data
, data
, size
); // Save it.
353 cluster_send_data(data
, size
);
357 // Send an 'i am alive' message to every machine in the cluster.
359 void cluster_send_ping(time_t basetime
)
361 char buff
[100 + sizeof(pingt
)];
365 if (config
->cluster_iam_master
&& basetime
) // We're heartbeating so no need to ping.
368 LOG(5, 0, 0, "Sending cluster ping...\n");
371 x
.addr
= config
->bind_address
;
372 x
.undef
= config
->cluster_undefined_sessions
+ config
->cluster_undefined_tunnels
;
373 x
.basetime
= basetime
;
375 add_type(&p
, C_PING
, basetime
, (char *) &x
, sizeof(x
));
376 cluster_send_data(buff
, (p
-buff
) );
380 // Walk the session counters looking for non-zero ones to send
381 // to the master. We send up to 600 of them at one time.
382 // We examine a maximum of 3000 sessions.
383 // (50k max session should mean that we normally
384 // examine the entire session table every 25 seconds).
386 #define MAX_B_RECS (600)
387 void master_update_counts(void)
390 bytest b
[MAX_B_RECS
+1];
392 if (config
->cluster_iam_master
) // Only happens on the slaves.
395 if (!config
->cluster_master_address
) // If we don't have a master, skip it for a while.
398 i
= MAX_B_RECS
* 5; // Examine max 2000 sessions;
399 if (config
->cluster_highest_sessionid
> i
)
400 i
= config
->cluster_highest_sessionid
;
402 for ( c
= 0; i
> 0 ; --i
) {
403 // Next session to look at.
404 walk_session_number
++;
405 if ( walk_session_number
> config
->cluster_highest_sessionid
)
406 walk_session_number
= 1;
408 if (!sess_local
[walk_session_number
].cin
&& !sess_local
[walk_session_number
].cout
)
409 continue; // Unused. Skip it.
411 b
[c
].sid
= walk_session_number
;
412 b
[c
].in
= sess_local
[walk_session_number
].cin
;
413 b
[c
].out
= sess_local
[walk_session_number
].cout
;
415 if (++c
> MAX_B_RECS
) // Send a max of 400 elements in a packet.
419 sess_local
[walk_session_number
].cin
= sess_local
[walk_session_number
].cout
= 0;
422 if (!c
) // Didn't find any that changes. Get out of here!
426 // Forward the data to the master.
427 LOG(4, 0, 0, "Sending byte counters to master (%d elements)\n", c
);
428 peer_send_message(config
->cluster_master_address
, C_BYTES
, c
, (char *) &b
, sizeof(b
[0]) * c
);
433 // On the master, check how our slaves are going. If
434 // one of them's not up-to-date we'll heartbeat faster.
435 // If we don't have any of them, then we need to turn
436 // on our own packet handling!
438 void cluster_check_slaves(void)
441 static int have_peers
= 0;
442 int had_peers
= have_peers
;
445 if (!config
->cluster_iam_master
)
446 return; // Only runs on the master...
448 config
->cluster_iam_uptodate
= 1; // cleared in loop below
450 for (i
= have_peers
= 0; i
< num_peers
; i
++)
452 if ((peers
[i
].timestamp
+ config
->cluster_hb_timeout
) < t
)
453 continue; // Stale peer! Skip them.
455 if (!peers
[i
].basetime
)
456 continue; // Shutdown peer! Skip them.
458 if (peers
[i
].uptodate
)
461 if (!peers
[i
].uptodate
)
462 config
->cluster_iam_uptodate
= 0; // Start fast heartbeats
466 // in a cluster, withdraw/add routes when we get a peer/lose all peers
467 if (bgp_configured
&& have_peers
!= had_peers
)
468 bgp_enable_routing(!have_peers
);
473 // Check that we have a master. If it's been too
474 // long since we heard from a master then hold an election.
476 void cluster_check_master(void)
478 int i
, count
, tcount
, high_unique_id
= 0;
481 static int probed
= 0;
483 if (config
->cluster_iam_master
)
484 return; // Only runs on the slaves...
486 // If the master is late (missed 2 hearbeats by a second and a
487 // hair) it may be that the switch has dropped us from the
488 // multicast group, try unicasting probes to the master
489 // which will hopefully respond with a unicast heartbeat that
490 // will allow us to limp along until the querier next runs.
491 if (config
->cluster_master_address
492 && TIME
> (config
->cluster_last_hb
+ 2 * config
->cluster_hb_interval
+ 11))
494 if (!probed
|| (TIME
> (probed
+ 2 * config
->cluster_hb_interval
)))
497 LOG(1, 0, 0, "Heartbeat from master %.1fs late, probing...\n",
498 0.1 * (TIME
- (config
->cluster_last_hb
+ config
->cluster_hb_interval
)));
500 peer_send_message(config
->cluster_master_address
,
501 C_LASTSEEN
, config
->cluster_seq_number
, NULL
, 0);
503 } else { // We got a recent heartbeat; reset the probe flag.
507 if (TIME
< (config
->cluster_last_hb
+ config
->cluster_hb_timeout
))
508 return; // Everything's ok!
510 config
->cluster_last_hb
= TIME
+ 1; // Just the one election thanks.
512 LOG(0, 0, 0, "Master timed out! Holding election...\n");
514 for (i
= 0; i
< num_peers
; i
++)
516 if ((peers
[i
].timestamp
+ config
->cluster_hb_timeout
) < t
)
517 continue; // Stale peer! Skip them.
519 if (!peers
[i
].basetime
)
520 continue; // Shutdown peer! Skip them.
522 if (peers
[i
].basetime
< basetime
) {
523 LOG(1, 0, 0, "Expecting %s to become master\n", fmtaddr(peers
[i
].peer
, 0));
524 return; // They'll win the election. Get out of here.
527 if (peers
[i
].basetime
== basetime
&&
528 peers
[i
].peer
> my_address
) {
529 LOG(1, 0, 0, "Expecting %s to become master\n", fmtaddr(peers
[i
].peer
, 0));
530 return; // They'll win the election. Wait for them to come up.
534 // Wow. it's been ages since I last heard a heartbeat
535 // and I'm better than an of my peers so it's time
536 // to become a master!!!
538 config
->cluster_iam_master
= 1;
539 config
->cluster_master_address
= 0;
541 LOG(0, 0, 0, "I am declaring myself the master!\n");
543 if (config
->cluster_seq_number
== -1)
544 config
->cluster_seq_number
= 0;
547 // Go through and mark all the tunnels as defined.
548 // Count the highest used tunnel number as well.
550 config
->cluster_highest_tunnelid
= 0;
551 for (i
= 0, tcount
= 0; i
< MAXTUNNEL
; ++i
) {
552 if (tunnel
[i
].state
== TUNNELUNDEF
)
553 tunnel
[i
].state
= TUNNELFREE
;
555 if (tunnel
[i
].state
!= TUNNELFREE
&& i
> config
->cluster_highest_tunnelid
)
556 config
->cluster_highest_tunnelid
= i
;
560 // Go through and mark all the sessions as being defined.
561 // reset the idle timeouts.
562 // add temporary byte counters to permanent ones.
563 // Re-string the free list.
564 // Find the ID of the highest session.
567 config
->cluster_highest_sessionid
= 0;
568 for (i
= 0, count
= 0; i
< MAXSESSION
; ++i
) {
569 if (session
[i
].tunnel
== T_UNDEF
) {
570 session
[i
].tunnel
= T_FREE
;
574 if (!session
[i
].opened
) { // Unused session. Add to free list.
575 memset(&session
[i
], 0, sizeof(session
[i
]));
576 session
[i
].tunnel
= T_FREE
;
577 session
[last_free
].next
= i
;
583 // Reset idle timeouts..
584 session
[i
].last_packet
= time_now
;
586 // Reset die relative to our uptime rather than the old master's
587 if (session
[i
].die
) session
[i
].die
= TIME
;
589 // Accumulate un-sent byte counters.
590 session
[i
].cin
+= sess_local
[i
].cin
;
591 session
[i
].cout
+= sess_local
[i
].cout
;
592 session
[i
].total_cin
+= sess_local
[i
].cin
;
593 session
[i
].total_cout
+= sess_local
[i
].cout
;
595 sess_local
[i
].cin
= sess_local
[i
].cout
= 0;
597 session
[i
].radius
= 0; // Reset authentication as the radius blocks aren't up to date.
599 if (session
[i
].unique_id
>= high_unique_id
) // This is different to the index into the session table!!!
600 high_unique_id
= session
[i
].unique_id
+1;
602 session
[i
].tbf_in
= session
[i
].tbf_out
= 0; // Remove stale pointers from old master.
603 throttle_session(i
, session
[i
].throttle_in
, session
[i
].throttle_out
);
605 config
->cluster_highest_sessionid
= i
;
608 session
[last_free
].next
= 0; // End of chain.
609 last_id
= high_unique_id
; // Keep track of the highest used session ID.
613 rebuild_address_pool();
615 // If we're not the very first master, this is a big issue!
617 LOG(0, 0, 0, "Warning: Fixed %d uninitialized sessions in becoming master!\n", count
);
619 config
->cluster_undefined_sessions
= 0;
620 config
->cluster_undefined_tunnels
= 0;
621 config
->cluster_iam_uptodate
= 1; // assume all peers are up-to-date
623 if (!num_peers
) // lone master
626 else if (bgp_configured
)
627 bgp_enable_routing(0);
631 // FIXME. We need to fix up the tunnel control message
632 // queue here! There's a number of other variables we
633 // should also update.
638 // Check that our session table is validly matching what the
639 // master has in mind.
641 // In particular, if we have too many sessions marked 'undefined'
642 // we fix it up here, and we ensure that the 'first free session'
645 static void cluster_check_sessions(int highsession
, int freesession_ptr
, int hightunnel
)
649 sessionfree
= freesession_ptr
; // Keep the freesession ptr valid.
651 if (config
->cluster_iam_uptodate
)
654 if (highsession
> config
->cluster_undefined_sessions
&& hightunnel
> config
->cluster_undefined_tunnels
)
657 // Clear out defined sessions, counting the number of
659 config
->cluster_undefined_sessions
= 0;
660 for (i
= 1 ; i
< MAXSESSION
; ++i
) {
661 if (i
> highsession
) {
662 if (session
[i
].tunnel
== T_UNDEF
) session
[i
].tunnel
= T_FREE
; // Defined.
666 if (session
[i
].tunnel
== T_UNDEF
)
667 ++config
->cluster_undefined_sessions
;
670 // Clear out defined tunnels, counting the number of
672 config
->cluster_undefined_tunnels
= 0;
673 for (i
= 1 ; i
< MAXTUNNEL
; ++i
) {
674 if (i
> hightunnel
) {
675 if (tunnel
[i
].state
== TUNNELUNDEF
) tunnel
[i
].state
= TUNNELFREE
; // Defined.
679 if (tunnel
[i
].state
== TUNNELUNDEF
)
680 ++config
->cluster_undefined_tunnels
;
684 if (config
->cluster_undefined_sessions
|| config
->cluster_undefined_tunnels
) {
685 LOG(2, 0, 0, "Cleared undefined sessions/tunnels. %d sess (high %d), %d tunn (high %d)\n",
686 config
->cluster_undefined_sessions
, highsession
, config
->cluster_undefined_tunnels
, hightunnel
);
690 // Are we up to date?
692 if (!config
->cluster_iam_uptodate
)
696 static int hb_add_type(char **p
, int type
, int id
)
699 case C_CSESSION
: { // Compressed C_SESSION.
700 uint8_t c
[sizeof(sessiont
) * 2]; // Bigger than worst case.
701 uint8_t *d
= (uint8_t *) &session
[id
];
705 size
= rle_compress( &d
, sizeof(sessiont
), c
, sizeof(c
) );
707 // Did we compress the full structure, and is the size actually
709 if ( (d
- orig
) == sizeof(sessiont
) && size
< sizeof(sessiont
) ) {
710 add_type(p
, C_CSESSION
, id
, (char *) c
, size
);
713 // Failed to compress : Fall through.
715 case C_SESSION
: add_type(p
, C_SESSION
, id
,
716 (char *) &session
[id
], sizeof(sessiont
));
719 case C_CTUNNEL
: { // Compressed C_TUNNEL
720 uint8_t c
[sizeof(tunnelt
) * 2]; // Bigger than worst case.
721 uint8_t *d
= (uint8_t *) &tunnel
[id
];
725 size
= rle_compress( &d
, sizeof(tunnelt
), c
, sizeof(c
) );
727 // Did we compress the full structure, and is the size actually
729 if ( (d
- orig
) == sizeof(tunnelt
) && size
< sizeof(tunnelt
) ) {
730 add_type(p
, C_CTUNNEL
, id
, c
, size
);
733 // Failed to compress : Fall through.
735 case C_TUNNEL
: add_type(p
, C_TUNNEL
, id
,
736 (char *) &tunnel
[id
], sizeof(tunnelt
));
739 LOG(0, 0, 0, "Found an invalid type in heart queue! (%d)\n", type
);
747 // Send a heartbeat, incidently sending out any queued changes..
749 void cluster_heartbeat()
751 int i
, count
= 0, tcount
= 0;
752 char buff
[MAX_HEART_SIZE
+ sizeof(heartt
) + sizeof(int) ];
756 if (!config
->cluster_iam_master
) // Only the master does this.
759 config
->cluster_table_version
+= config
->cluster_num_changes
;
761 // Fill out the heartbeat header.
762 memset(&h
, 0, sizeof(h
));
764 h
.version
= HB_VERSION
;
765 h
.seq
= config
->cluster_seq_number
;
766 h
.basetime
= basetime
;
767 h
.clusterid
= config
->bind_address
; // Will this do??
768 h
.basetime
= basetime
;
769 h
.highsession
= config
->cluster_highest_sessionid
;
770 h
.freesession
= sessionfree
;
771 h
.hightunnel
= config
->cluster_highest_tunnelid
;
772 h
.size_sess
= sizeof(sessiont
); // Just in case.
773 h
.size_tunn
= sizeof(tunnelt
);
774 h
.interval
= config
->cluster_hb_interval
;
775 h
.timeout
= config
->cluster_hb_timeout
;
776 h
.table_version
= config
->cluster_table_version
;
778 add_type(&p
, C_HEARTBEAT
, HB_VERSION
, (char *) &h
, sizeof(h
));
780 for (i
= 0; i
< config
->cluster_num_changes
; ++i
) {
781 hb_add_type(&p
, cluster_changes
[i
].type
, cluster_changes
[i
].id
);
784 if (p
> (buff
+ sizeof(buff
))) { // Did we somehow manage to overun the buffer?
785 LOG(0, 0, 0, "FATAL: Overran the heartbeat buffer! This is fatal. Exiting. (size %d)\n", (int) (p
- buff
));
791 // Fill out the packet with sessions from the session table...
792 // (not forgetting to leave space so we can get some tunnels in too )
793 while ( (p
+ sizeof(uint32_t) * 2 + sizeof(sessiont
) * 2 ) < (buff
+ MAX_HEART_SIZE
) ) {
795 if (!walk_session_number
) // session #0 isn't valid.
796 ++walk_session_number
;
798 if (count
>= config
->cluster_highest_sessionid
) // If we're a small cluster, don't go wild.
801 hb_add_type(&p
, C_CSESSION
, walk_session_number
);
802 walk_session_number
= (1+walk_session_number
)%(config
->cluster_highest_sessionid
+1); // +1 avoids divide by zero.
804 ++count
; // Count the number of extra sessions we're sending.
808 // Fill out the packet with tunnels from the tunnel table...
809 // This effectively means we walk the tunnel table more quickly
810 // than the session table. This is good because stuffing up a
811 // tunnel is a much bigger deal than stuffing up a session.
813 while ( (p
+ sizeof(uint32_t) * 2 + sizeof(tunnelt
) ) < (buff
+ MAX_HEART_SIZE
) ) {
815 if (!walk_tunnel_number
) // tunnel #0 isn't valid.
816 ++walk_tunnel_number
;
818 if (tcount
>= config
->cluster_highest_tunnelid
)
821 hb_add_type(&p
, C_CTUNNEL
, walk_tunnel_number
);
822 walk_tunnel_number
= (1+walk_tunnel_number
)%(config
->cluster_highest_tunnelid
+1); // +1 avoids divide by zero.
828 // Did we do something wrong?
829 if (p
> (buff
+ sizeof(buff
))) { // Did we somehow manage to overun the buffer?
830 LOG(0, 0, 0, "Overran the heartbeat buffer now! This is fatal. Exiting. (size %d)\n", (int) (p
- buff
));
835 LOG(3, 0, 0, "Sending v%d heartbeat #%d, change #%" PRIu64
" with %d changes "
836 "(%d x-sess, %d x-tunnels, %d highsess, %d hightun, size %d)\n",
837 HB_VERSION
, h
.seq
, h
.table_version
, config
->cluster_num_changes
,
838 count
, tcount
, config
->cluster_highest_sessionid
,
839 config
->cluster_highest_tunnelid
, (int) (p
- buff
));
841 config
->cluster_num_changes
= 0;
843 send_heartbeat(h
.seq
, buff
, (p
-buff
) ); // Send out the heartbeat to the cluster, keeping a copy of it.
845 config
->cluster_seq_number
= (config
->cluster_seq_number
+1)%HB_MAX_SEQ
; // Next seq number to use.
849 // A structure of type 'type' has changed; Add it to the queue to send.
851 static int type_changed(int type
, int id
)
855 for (i
= 0 ; i
< config
->cluster_num_changes
; ++i
)
856 if ( cluster_changes
[i
].id
== id
&&
857 cluster_changes
[i
].type
== type
)
858 return 0; // Already marked for change.
860 cluster_changes
[i
].type
= type
;
861 cluster_changes
[i
].id
= id
;
862 ++config
->cluster_num_changes
;
864 if (config
->cluster_num_changes
> MAX_CHANGES
)
865 cluster_heartbeat(); // flush now
871 // A particular session has been changed!
872 int cluster_send_session(int sid
)
874 if (!config
->cluster_iam_master
) {
875 LOG(0, sid
, 0, "I'm not a master, but I just tried to change a session!\n");
879 return type_changed(C_CSESSION
, sid
);
882 // A particular tunnel has been changed!
883 int cluster_send_tunnel(int tid
)
885 if (!config
->cluster_iam_master
) {
886 LOG(0, 0, tid
, "I'm not a master, but I just tried to change a tunnel!\n");
890 return type_changed(C_CTUNNEL
, tid
);
895 // We're a master, and a slave has just told us that it's
896 // missed a packet. We'll resend it every packet since
897 // the last one it's seen.
899 static int cluster_catchup_slave(int seq
, in_addr_t slave
)
904 LOG(1, 0, 0, "Slave %s sent LASTSEEN with seq %d\n", fmtaddr(slave
, 0), seq
);
905 if (!config
->cluster_iam_master
) {
906 LOG(1, 0, 0, "Got LASTSEEN but I'm not a master! Sending a null PING.\n");
907 // Send a ping to the stray slave saying that we're a master that's
908 // just shutdown. This should force the slave to listen for the real
910 peer_send_message(slave
, C_PING
, 0, NULL
, 0);
914 diff
= config
->cluster_seq_number
- seq
; // How many packet do we need to send?
918 if (diff
>= HB_HISTORY_SIZE
) { // Ouch. We don't have the packet to send it!
919 LOG(0, 0, 0, "A slave asked for message %d when our seq number is %d. Killing it.\n",
920 seq
, config
->cluster_seq_number
);
921 return peer_send_message(slave
, C_KILL
, seq
, NULL
, 0);// Kill the slave. Nothing else to do.
924 LOG(1, 0, 0, "Sending %d catchup packets to slave %s\n", diff
, fmtaddr(slave
, 0) );
926 // Now resend every packet that it missed, in order.
927 while (seq
!= config
->cluster_seq_number
) {
928 s
= seq
% HB_HISTORY_SIZE
;
929 if (seq
!= past_hearts
[s
].seq
) {
930 LOG(0, 0, 0, "Tried to re-send heartbeat for %s but %d doesn't match %d! (%d,%d)\n",
931 fmtaddr(slave
, 0), seq
, past_hearts
[s
].seq
, s
, config
->cluster_seq_number
);
932 return -1; // What to do here!?
934 peer_send_data(slave
, past_hearts
[s
].data
, past_hearts
[s
].size
);
935 seq
= (seq
+1)%HB_MAX_SEQ
; // Increment to next seq number.
937 return 0; // All good!
941 // We've heard from another peer! Add it to the list
942 // that we select from at election time.
944 static int cluster_add_peer(in_addr_t peer
, time_t basetime
, pingt
*pp
, int size
)
950 // Allow for backward compatability.
951 // Just the ping packet into a new structure to allow
952 // for the possibility that we might have received
953 // more or fewer elements than we were expecting.
954 if (size
> sizeof(p
))
957 memset( (void *) &p
, 0, sizeof(p
) );
958 memcpy( (void *) &p
, (void *) pp
, size
);
961 if (clusterid
!= config
->bind_address
)
964 LOG(4, 0, 0, "Skipping ping from %s (different cluster)\n", fmtaddr(peer
, 0));
968 for (i
= 0; i
< num_peers
; ++i
)
970 if (peers
[i
].peer
!= peer
)
973 // This peer already exists. Just update the timestamp.
974 peers
[i
].basetime
= basetime
;
975 peers
[i
].timestamp
= TIME
;
976 peers
[i
].uptodate
= !p
.undef
;
980 // Is this the master shutting down??
981 if (peer
== config
->cluster_master_address
&& !basetime
) {
982 LOG(3, 0, 0, "Master %s shutting down...\n", fmtaddr(config
->cluster_master_address
, 0));
983 config
->cluster_master_address
= 0;
984 config
->cluster_last_hb
= 0; // Force an election.
985 cluster_check_master();
991 LOG(4, 0, 0, "Adding %s as a peer\n", fmtaddr(peer
, 0));
993 // Not found. Is there a stale slot to re-use?
994 for (i
= 0; i
< num_peers
; ++i
)
996 if (!peers
[i
].basetime
) // Shutdown
999 if ((peers
[i
].timestamp
+ config
->cluster_hb_timeout
* 10) < TIME
) // Stale.
1003 if (i
>= CLUSTER_MAX_SIZE
)
1006 LOG(0, 0, 0, "Tried to add %s as a peer, but I already have %d of them!\n", fmtaddr(peer
, 0), i
);
1010 peers
[i
].peer
= peer
;
1011 peers
[i
].basetime
= basetime
;
1012 peers
[i
].timestamp
= TIME
;
1013 peers
[i
].uptodate
= !p
.undef
;
1017 LOG(1, 0, 0, "Added %s as a new peer. Now %d peers\n", fmtaddr(peer
, 0), num_peers
);
1023 /* Handle the slave updating the byte counters for the master. */
1025 // Note that we don't mark the session as dirty; We rely on
1026 // the slow table walk to propogate this back out to the slaves.
1028 static int cluster_handle_bytes(char *data
, int size
)
1032 b
= (bytest
*) data
;
1034 LOG(3, 0, 0, "Got byte counter update (size %d)\n", size
);
1036 /* Loop around, adding the byte
1037 counts to each of the sessions. */
1039 while (size
>= sizeof(*b
) ) {
1040 if (b
->sid
> MAXSESSION
) {
1041 LOG(0, 0, 0, "Got C_BYTES with session #%d!\n", b
->sid
);
1042 return -1; /* Abort processing */
1045 session
[b
->sid
].total_cin
+= b
->in
;
1046 session
[b
->sid
].total_cout
+= b
->out
;
1048 session
[b
->sid
].cin
+= b
->in
;
1049 session
[b
->sid
].cout
+= b
->out
;
1052 session
[b
->sid
].last_packet
= time_now
; // Reset idle timer!
1059 LOG(0, 0, 0, "Got C_BYTES with %d bytes of trailing junk!\n", size
);
1065 // Handle receiving a session structure in a heartbeat packet.
1067 static int cluster_recv_session(int more
, uint8_t *p
)
1069 if (more
>= MAXSESSION
) {
1070 LOG(0, 0, 0, "DANGER: Received a heartbeat session id > MAXSESSION!\n");
1074 if (session
[more
].tunnel
== T_UNDEF
) {
1075 if (config
->cluster_iam_uptodate
) { // Sanity.
1076 LOG(0, 0, 0, "I thought I was uptodate but I just found an undefined session!\n");
1078 --config
->cluster_undefined_sessions
;
1082 load_session(more
, (sessiont
*) p
); // Copy session into session table..
1084 LOG(5, more
, 0, "Received session update (%d undef)\n", config
->cluster_undefined_sessions
);
1086 if (!config
->cluster_iam_uptodate
)
1087 cluster_uptodate(); // Check to see if we're up to date.
1092 static int cluster_recv_tunnel(int more
, uint8_t *p
)
1094 if (more
>= MAXTUNNEL
) {
1095 LOG(0, 0, 0, "DANGER: Received a tunnel session id > MAXTUNNEL!\n");
1099 if (tunnel
[more
].state
== TUNNELUNDEF
) {
1100 if (config
->cluster_iam_uptodate
) { // Sanity.
1101 LOG(0, 0, 0, "I thought I was uptodate but I just found an undefined tunnel!\n");
1103 --config
->cluster_undefined_tunnels
;
1107 memcpy(&tunnel
[more
], p
, sizeof(tunnel
[more
]) );
1110 // Clear tunnel control messages. These are dynamically allocated.
1111 // If we get unlucky, this may cause the tunnel to drop!
1113 tunnel
[more
].controls
= tunnel
[more
].controle
= NULL
;
1114 tunnel
[more
].controlc
= 0;
1116 LOG(5, 0, more
, "Received tunnel update\n");
1118 if (!config
->cluster_iam_uptodate
)
1119 cluster_uptodate(); // Check to see if we're up to date.
1126 // Process a heartbeat..
1128 // v3: added interval, timeout
1129 // v4: added table_version
1130 static int cluster_process_heartbeat(uint8_t *data
, int size
, int more
, uint8_t *p
, in_addr_t addr
)
1133 int s
= size
- (p
-data
);
1137 # error "need to update cluster_process_heartbeat()"
1140 // we handle versions 3 through 4
1141 if (more
< 3 || more
> HB_VERSION
) {
1142 LOG(0, 0, 0, "Received a heartbeat version that I don't support (%d)!\n", more
);
1143 return -1; // Ignore it??
1146 // Ok. It's a heartbeat packet from a cluster master!
1154 if (h
->clusterid
!= config
->bind_address
)
1155 return -1; // It's not part of our cluster.
1157 if (config
->cluster_iam_master
) { // Sanity...
1158 // Note that this MUST match the election process above!
1160 LOG(0, 0, 0, "I just got a heartbeat from master %s, but _I_ am the master!\n", fmtaddr(addr
, 0));
1162 LOG(0, 0, 0, "Heartbeat with zero basetime! Ignoring\n");
1163 return -1; // Skip it.
1167 if (h
->table_version
> config
->cluster_table_version
) {
1168 LOG(0, 0, 0, "They've seen more state changes (%" PRIu64
" vs my %" PRIu64
") so I'm gone!\n",
1169 h
->table_version
, config
->cluster_table_version
);
1174 if (h
->table_version
< config
->cluster_table_version
)
1178 if (basetime
> h
->basetime
) {
1179 LOG(0, 0, 0, "They're an older master than me so I'm gone!\n");
1184 if (basetime
< h
->basetime
)
1187 if (my_address
< addr
) { // Tie breaker.
1188 LOG(0, 0, 0, "They're a higher IP address than me, so I'm gone!\n");
1194 // Send it a unicast heartbeat to see give it a chance to die.
1195 // NOTE: It's actually safe to do seq-number - 1 without checking
1198 cluster_catchup_slave(config
->cluster_seq_number
- 1, addr
);
1200 return -1; // Skip it.
1204 // Try and guard against a stray master appearing.
1206 // Ignore heartbeats received from another master before the
1207 // timeout (less a smidgen) for the old master has elapsed.
1209 // Note that after a clean failover, the cluster_master_address
1210 // is cleared, so this doesn't run.
1212 if (config
->cluster_master_address
&& addr
!= config
->cluster_master_address
1213 && (config
->cluster_last_hb
+ config
->cluster_hb_timeout
- 11) > TIME
) {
1214 LOG(0, 0, 0, "Ignoring stray heartbeat from %s, current master %s has not yet timed out (last heartbeat %.1f seconds ago).\n",
1215 fmtaddr(addr
, 0), fmtaddr(config
->cluster_master_address
, 1),
1216 0.1 * (TIME
- config
->cluster_last_hb
));
1217 return -1; // ignore
1220 if (config
->cluster_seq_number
== -1) // Don't have one. Just align to the master...
1221 config
->cluster_seq_number
= h
->seq
;
1223 config
->cluster_last_hb
= TIME
; // Reset to ensure that we don't become master!!
1225 if (config
->cluster_seq_number
!= h
->seq
) { // Out of sequence heartbeat!
1226 static int lastseen_seq
= 0;
1227 static time_t lastseen_time
= 0;
1229 // limit to once per second for a particular seq#
1230 int ask
= (config
->cluster_seq_number
!= lastseen_seq
|| time_now
!= lastseen_time
);
1232 LOG(1, 0, 0, "HB: Got seq# %d but was expecting %d. %s.\n",
1233 h
->seq
, config
->cluster_seq_number
,
1234 ask
? "Asking for resend" : "Ignoring");
1238 lastseen_seq
= config
->cluster_seq_number
;
1239 lastseen_time
= time_now
;
1240 peer_send_message(addr
, C_LASTSEEN
, config
->cluster_seq_number
, NULL
, 0);
1243 config
->cluster_last_hb
= TIME
; // Reset to ensure that we don't become master!!
1245 // Just drop the packet. The master will resend it as part of the catchup.
1249 // Save the packet in our buffer.
1250 // This is needed in case we become the master.
1251 config
->cluster_seq_number
= (h
->seq
+1)%HB_MAX_SEQ
;
1252 i
= h
->seq
% HB_HISTORY_SIZE
;
1253 past_hearts
[i
].seq
= h
->seq
;
1254 past_hearts
[i
].size
= size
;
1255 memcpy(&past_hearts
[i
].data
, data
, size
); // Save it.
1258 // Check that we don't have too many undefined sessions, and
1259 // that the free session pointer is correct.
1260 cluster_check_sessions(h
->highsession
, h
->freesession
, h
->hightunnel
);
1262 if (h
->interval
!= config
->cluster_hb_interval
)
1264 LOG(2, 0, 0, "Master set ping/heartbeat interval to %u (was %u)\n",
1265 h
->interval
, config
->cluster_hb_interval
);
1267 config
->cluster_hb_interval
= h
->interval
;
1270 if (h
->timeout
!= config
->cluster_hb_timeout
)
1272 LOG(2, 0, 0, "Master set heartbeat timeout to %u (was %u)\n",
1273 h
->timeout
, config
->cluster_hb_timeout
);
1275 config
->cluster_hb_timeout
= h
->timeout
;
1278 // Ok. process the packet...
1281 type
= *((uint32_t *) p
);
1282 p
+= sizeof(uint32_t);
1283 s
-= sizeof(uint32_t);
1285 more
= *((uint32_t *) p
);
1286 p
+= sizeof(uint32_t);
1287 s
-= sizeof(uint32_t);
1290 case C_CSESSION
: { // Compressed session structure.
1291 uint8_t c
[ sizeof(sessiont
) + 2];
1293 uint8_t *orig_p
= p
;
1295 size
= rle_decompress((uint8_t **) &p
, s
, c
, sizeof(c
) );
1298 if (size
!= sizeof(sessiont
) ) { // Ouch! Very very bad!
1299 LOG(0, 0, 0, "DANGER: Received a CSESSION that didn't decompress correctly!\n");
1300 // Now what? Should exit! No-longer up to date!
1304 cluster_recv_session(more
, c
);
1308 if ( s
< sizeof(session
[more
]))
1311 cluster_recv_session(more
, p
);
1313 p
+= sizeof(session
[more
]);
1314 s
-= sizeof(session
[more
]);
1317 case C_CTUNNEL
: { // Compressed tunnel structure.
1318 uint8_t c
[ sizeof(tunnelt
) + 2];
1320 uint8_t *orig_p
= p
;
1322 size
= rle_decompress((uint8_t **) &p
, s
, c
, sizeof(c
));
1325 if (size
!= sizeof(tunnelt
) ) { // Ouch! Very very bad!
1326 LOG(0, 0, 0, "DANGER: Received a CSESSION that didn't decompress correctly!\n");
1327 // Now what? Should exit! No-longer up to date!
1331 cluster_recv_tunnel(more
, c
);
1336 if ( s
< sizeof(tunnel
[more
]))
1339 cluster_recv_tunnel(more
, p
);
1341 p
+= sizeof(tunnel
[more
]);
1342 s
-= sizeof(tunnel
[more
]);
1345 LOG(0, 0, 0, "DANGER: I received a heartbeat element where I didn't understand the type! (%d)\n", type
);
1346 return -1; // can't process any more of the packet!!
1350 if (config
->cluster_master_address
!= addr
)
1352 LOG(0, 0, 0, "My master just changed from %s to %s!\n",
1353 fmtaddr(config
->cluster_master_address
, 0), fmtaddr(addr
, 1));
1355 config
->cluster_master_address
= addr
;
1358 config
->cluster_last_hb
= TIME
; // Successfully received a heartbeat!
1359 config
->cluster_table_version
= h
->table_version
;
1363 LOG(0, 0, 0, "I got an incomplete heartbeat packet! This means I'm probably out of sync!!\n");
1368 // We got a packet on the cluster port!
1369 // Handle pings, lastseens, and heartbeats!
1371 int processcluster(char *data
, int size
, in_addr_t addr
)
1377 if (addr
== my_address
)
1378 return -1; // Ignore it. Something looped back the multicast!
1380 LOG(5, 0, 0, "Process cluster: %d bytes from %s\n", size
, fmtaddr(addr
, 0));
1382 if (s
<= 0) // Any data there??
1388 type
= *((uint32_t *) p
);
1389 p
+= sizeof(uint32_t);
1390 s
-= sizeof(uint32_t);
1392 more
= *((uint32_t *) p
);
1393 p
+= sizeof(uint32_t);
1394 s
-= sizeof(uint32_t);
1397 case C_PING
: // Update the peers table.
1398 return cluster_add_peer(addr
, more
, (pingt
*) p
, s
);
1400 case C_LASTSEEN
: // Catch up a slave (slave missed a packet).
1401 return cluster_catchup_slave(more
, addr
);
1403 case C_FORWARD
: { // Forwarded control packet. pass off to processudp.
1404 struct sockaddr_in a
;
1405 a
.sin_addr
.s_addr
= more
;
1407 a
.sin_port
= *(int *) p
;
1411 if (!config
->cluster_iam_master
) { // huh?
1412 LOG(0, 0, 0, "I'm not the master, but I got a C_FORWARD from %s?\n", fmtaddr(addr
, 0));
1416 LOG(4, 0, 0, "Got a forwarded packet... (%s:%d)\n", fmtaddr(more
, 0), a
.sin_port
);
1418 processudp(p
, s
, &a
);
1421 case C_THROTTLE
: { // Receive a forwarded packet from a slave.
1422 if (!config
->cluster_iam_master
) {
1423 LOG(0, 0, 0, "I'm not the master, but I got a C_THROTTLE from %s?\n", fmtaddr(addr
, 0));
1427 tbf_queue_packet(more
, p
, s
); // The TBF id tells wether it goes in or out.
1431 // Receive a walled garden packet from a slave.
1432 if (!config
->cluster_iam_master
) {
1433 LOG(0, 0, 0, "I'm not the master, but I got a C_GARDEN from %s?\n", fmtaddr(addr
, 0));
1441 return cluster_handle_bytes(p
, s
);
1443 case C_KILL
: // The master asked us to die!? (usually because we're too out of date).
1444 if (config
->cluster_iam_master
) {
1445 LOG(0, 0, 0, "_I_ am master, but I received a C_KILL from %s! (Seq# %d)\n", fmtaddr(addr
, 0), more
);
1448 if (more
!= config
->cluster_seq_number
) {
1449 LOG(0, 0, 0, "The master asked us to die but the seq number didn't match!?\n");
1453 if (addr
!= config
->cluster_master_address
) {
1454 LOG(0, 0, 0, "Received a C_KILL from %s which doesn't match config->cluster_master_address (%s)\n",
1455 fmtaddr(addr
, 0), fmtaddr(config
->cluster_master_address
, 1));
1456 // We can only warn about it. The master might really have switched!
1459 LOG(0, 0, 0, "Received a valid C_KILL: I'm going to die now.\n");
1461 exit(0); // Lets be paranoid;
1462 return -1; // Just signalling the compiler.
1465 LOG(4, 0, 0, "Got a heartbeat from %s\n", fmtaddr(addr
, 0));
1466 return cluster_process_heartbeat(data
, size
, more
, p
, addr
);
1469 LOG(0, 0, 0, "Strange type packet received on cluster socket (%d)\n", type
);
1475 LOG(0, 0, 0, "I got a _short_ cluster heartbeat packet! This means I'm probably out of sync!!\n");
1479 //====================================================================================================
1481 int cmd_show_cluster(struct cli_def
*cli
, char *command
, char **argv
, int argc
)
1485 if (CLI_HELP_REQUESTED
)
1486 return CLI_HELP_NO_ARGS
;
1488 cli_print(cli
, "Cluster status : %s", config
->cluster_iam_master
? "Master" : "Slave" );
1489 cli_print(cli
, "My address : %s", fmtaddr(my_address
, 0));
1490 cli_print(cli
, "VIP address : %s", fmtaddr(config
->bind_address
, 0));
1491 cli_print(cli
, "Multicast address: %s", fmtaddr(config
->cluster_address
, 0));
1492 cli_print(cli
, "Multicast i'face : %s", config
->cluster_interface
);
1494 if (!config
->cluster_iam_master
) {
1495 cli_print(cli
, "My master : %s (last heartbeat %.1f seconds old)",
1496 config
->cluster_master_address
1497 ? fmtaddr(config
->cluster_master_address
, 0)
1499 0.1 * (TIME
- config
->cluster_last_hb
));
1500 cli_print(cli
, "Uptodate : %s", config
->cluster_iam_uptodate
? "Yes" : "No");
1501 cli_print(cli
, "Table version # : %" PRIu64
, config
->cluster_table_version
);
1502 cli_print(cli
, "Next sequence number expected: %d", config
->cluster_seq_number
);
1503 cli_print(cli
, "%d sessions undefined of %d", config
->cluster_undefined_sessions
, config
->cluster_highest_sessionid
);
1504 cli_print(cli
, "%d tunnels undefined of %d", config
->cluster_undefined_tunnels
, config
->cluster_highest_tunnelid
);
1506 cli_print(cli
, "Table version # : %" PRIu64
, config
->cluster_table_version
);
1507 cli_print(cli
, "Next heartbeat # : %d", config
->cluster_seq_number
);
1508 cli_print(cli
, "Highest session : %d", config
->cluster_highest_sessionid
);
1509 cli_print(cli
, "Highest tunnel : %d", config
->cluster_highest_tunnelid
);
1510 cli_print(cli
, "%d changes queued for sending", config
->cluster_num_changes
);
1512 cli_print(cli
, "%d peers.", num_peers
);
1515 cli_print(cli
, "%20s %10s %8s", "Address", "Basetime", "Age");
1516 for (i
= 0; i
< num_peers
; ++i
) {
1517 cli_print(cli
, "%20s %10u %8d", fmtaddr(peers
[i
].peer
, 0),
1518 peers
[i
].basetime
, TIME
- peers
[i
].timestamp
);
1524 // Simple run-length-encoding compression.
1526 // 1 byte < 128 = count of non-zero bytes following. // Not legal to be zero.
1527 // n non-zero bytes;
1529 // 1 byte > 128 = (count - 128) run of zero bytes. //
1531 // count == 0 indicates end of compressed stream.
1533 // Compress from 'src' into 'dst'. return number of bytes
1535 // Updates *src_p to indicate 1 past last bytes used.
1537 // We could get an extra byte in the zero runs by storing (count-1)
1538 // but I'm playing it safe.
1540 // Worst case is a 50% expansion in space required (trying to
1541 // compress { 0x00, 0x01 } * N )
1542 static int rle_compress(uint8_t **src_p
, int ssize
, uint8_t *dst
, int dsize
)
1545 int orig_dsize
= dsize
;
1549 while (ssize
> 0 && dsize
> 2) {
1551 x
= dst
++; --dsize
; // Reserve space for count byte..
1553 if (*src
) { // Copy a run of non-zero bytes.
1554 while (*src
&& count
< 127 && ssize
> 0 && dsize
> 1) { // Count number of non-zero bytes.
1559 *x
= count
; // Store number of non-zero bytes. Guarenteed to be non-zero!
1561 } else { // Compress a run of zero bytes.
1562 while (*src
== 0 && count
< 127 && ssize
> 0) {
1571 *dst
++ = 0x0; // Add Stop byte.
1575 return (orig_dsize
- dsize
);
1579 // Decompress the buffer into **p.
1580 // 'psize' is the size of the decompression buffer available.
1582 // Returns the number of bytes decompressed.
1584 // Decompresses from '*src_p' into 'dst'.
1585 // Return the number of dst bytes used.
1586 // Updates the 'src_p' pointer to point to the
1587 // first un-used byte.
1588 static int rle_decompress(uint8_t **src_p
, int ssize
, uint8_t *dst
, int dsize
)
1591 int orig_dsize
= dsize
;
1594 while (ssize
>0 && dsize
> 0) { // While there's more to decompress, and there's room in the decompress buffer...
1595 count
= *src
++; --ssize
; // get the count byte from the source.
1596 if (count
== 0x0) // End marker reached? If so, finish.
1599 if (count
& 0x80) { // Decompress a run of zeros
1600 for (count
&= 0x7f ; count
> 0 && dsize
> 0; --count
) {
1604 } else { // Copy run of non-zero bytes.
1605 for ( ; count
> 0 && ssize
&& dsize
; --count
) { // Copy non-zero bytes across.
1612 return (orig_dsize
- dsize
);