2 # This has been taken from the 'Advanced Perl Programming' book by Sriram Srinivasan
4 # I am presuming that the code is distributed on the same basis as perl itself.
6 # I have modified it to suit my devious purposes (Dirk Koopman G1TLH)
21 use vars qw(%rd_callbacks %wt_callbacks %er_callbacks $rd_handles $wt_handles $er_handles $now %conns $noconns $blocking_supported $cnum $total_in $total_out $io_socket);
26 $rd_handles = IO::Select->new();
27 $wt_handles = IO::Select->new();
28 $er_handles = IO::Select->new();
29 $total_in = $total_out = 0;
34 # Checks if blocking is supported
37 require POSIX; POSIX->import(qw(O_NONBLOCK F_SETFL F_GETFL))
42 require IO::Socket::INET6;
48 $io_socket = 'IO::Socket::INET';
50 $io_socket = 'IO::Socket::INET6';
54 if ($@ || $main::is_win) {
55 $blocking_supported = $io_socket->can('blocking') ? 2 : 0;
57 $blocking_supported = $io_socket->can('blocking') ? 2 : 1;
61 # import as many of these errno values as are available
64 require Errno; Errno->import(qw(EAGAIN EINPROGRESS EWOULDBLOCK));
67 unless ($^O eq 'MSWin32') {
71 require Socket; Socket->import(qw(IPPROTO_TCP TCP_NODELAY));
74 dbg("IPPROTO_TCP and TCP_NODELAY manually defined");
75 eval 'sub IPPROTO_TCP { 6 };';
76 eval 'sub TCP_NODELAY { 1 };';
79 # http://support.microsoft.com/support/kb/articles/Q150/5/37.asp
80 # defines EINPROGRESS as 10035. We provide it here because some
81 # Win32 users report POSIX::EINPROGRESS is not vendor-supported.
82 if ($^O eq 'MSWin32') {
83 eval '*EINPROGRESS = sub { 10036 };' unless defined *EINPROGRESS;
84 eval '*EWOULDBLOCK = *EAGAIN = sub { 10035 };' unless defined *EWOULDBLOCK;
85 eval '*F_GETFL = sub { 0 };' unless defined *F_GETFL;
86 eval '*F_SETFL = sub { 0 };' unless defined *F_SETFL;
87 eval 'sub IPPROTO_TCP { 6 };';
88 eval 'sub TCP_NODELAY { 1 };';
89 $blocking_supported = 0; # it appears that this DOESN'T work :-(
95 my $eagain = eval {EAGAIN()};
96 my $einprogress = eval {EINPROGRESS()};
97 my $ewouldblock = eval {EWOULDBLOCK()};
103 #-----------------------------------------------------------------
104 # Generalised initializer
108 my ($pkg, $rproc) = @_;
110 my $class = $obj || $pkg;
121 cnum => (($cnum < 999) ? (++$cnum) : ($cnum = 1)),
126 dbg("$class Connection $conn->{cnum} created (total $noconns)") if isdbg('connll');
127 return bless $conn, $class;
133 my $callback = shift;
134 $conn->{eproc} = $callback;
135 set_event_handler($conn->{sock}, error => $callback) if exists $conn->{sock};
141 my $callback = shift;
142 $conn->{rproc} = $callback;
147 return unless $blocking_supported;
149 # Make the handle stop blocking, the Windows way.
150 if ($blocking_supported) {
151 $_[0]->blocking($_[1]);
153 my $flags = fcntl ($_[0], F_GETFL, 0);
155 $flags &= ~O_NONBLOCK;
157 $flags |= O_NONBLOCK;
159 fcntl ($_[0], F_SETFL, $flags);
171 $call = $pkg->{call} unless $call;
172 return undef unless $call;
173 dbg((ref $pkg) . " changing $pkg->{call} to $call") if isdbg('connll') && exists $pkg->{call} && $call ne $pkg->{call};
174 delete $conns{$pkg->{call}} if exists $pkg->{call} && exists $conns{$pkg->{call}} && $pkg->{call} ne $call;
175 $pkg->{call} = $call;
176 $ref = $conns{$call} = $pkg;
177 dbg((ref $pkg) . " Connection $pkg->{cnum} $call stored") if isdbg('connll');
179 $ref = $conns{$call};
184 # this is only called by any dependent processes going away unexpectedly
187 my ($pkg, $pid) = @_;
189 my @pid = grep {$_->{pid} == $pid} values %conns;
190 foreach my $p (@pid) {
191 &{$p->{eproc}}($p, "$pid has gorn") if exists $p->{eproc};
199 return $conn->{csort} eq 'ax25';
205 $conn->{peerhost} ||= 'ax25' if $conn->ax25;
206 $conn->{peerhost} ||= $conn->{sock}->peerhost if $conn->{sock} && $conn->{sock}->isa('IO::Socket::INET');
207 $conn->{peerhost} ||= 'UNKNOWN';
208 return $conn->{peerhost};
211 #-----------------------------------------------------------------
214 my ($pkg, $to_host, $to_port, $rproc) = @_;
216 # Create a connection end-point object
219 $conn = $pkg->new($rproc);
221 $conn->{peerhost} = $to_host;
222 $conn->{peerport} = $to_port;
223 $conn->{sort} = 'Outgoing';
225 dbg((ref $conn) . " connecting $conn->{cnum} to $to_host:$to_port") if isdbg('connll');
228 if ($blocking_supported) {
229 $sock = $io_socket->new(PeerAddr => $to_host, PeerPort => $to_port, Proto => 'tcp', Blocking =>0) or return undef;
231 # Create a new internet socket
232 $sock = $io_socket->new();
233 return undef unless $sock;
235 my $proto = getprotobyname('tcp');
236 $sock->socket(AF_INET, SOCK_STREAM, $proto) or return undef;
239 $conn->{blocking} = 0;
241 # does the host resolve?
242 my $ip = gethostbyname($to_host);
243 return undef unless $ip;
245 my $r = connect($sock, pack_sockaddr_in($to_port, $ip));
246 return undef unless $r || _err_will_block($!);
249 $conn->{sock} = $sock;
250 # $conn->{peerhost} = $sock->peerhost; # for consistency
252 dbg((ref $conn) . " connected $conn->{cnum} to $to_host:$to_port") if isdbg('connll');
254 if ($conn->{rproc}) {
255 my $callback = sub {$conn->_rcv};
256 set_event_handler ($sock, read => $callback);
263 my ($conn, $line, $sort) = @_;
266 local $^F = 10000; # make sure it ain't closed on exec
267 my ($a, $b) = $io_socket->socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC);
276 $conn->{csort} = $sort;
277 $conn->{lineend} = "\cM" if $sort eq 'ax25';
279 if ($conn->{rproc}) {
280 my $callback = sub {$conn->_rcv};
281 Msg::set_event_handler ($a, read => $callback);
283 dbg("connect $conn->{cnum}: started pid: $conn->{pid} as $line") if isdbg('connect');
290 *STDIN = IO::File->new_from_fd($b, 'r') or die;
291 *STDOUT = IO::File->new_from_fd($b, 'w') or die;
292 *STDERR = IO::File->new_from_fd($b, 'w') or die;
294 unless ($main::is_win) {
295 # $SIG{HUP} = 'IGNORE';
296 $SIG{HUP} = $SIG{CHLD} = $SIG{TERM} = $SIG{INT} = 'DEFAULT';
299 exec "$line" or dbg("exec '$line' failed $!");
302 dbg("cannot fork for $line");
305 dbg("no socket pair $! for $line");
313 return if exists $conn->{disconnecting};
315 $conn->{disconnecting} = 1;
316 my $sock = delete $conn->{sock};
317 $conn->{state} = 'E';
318 $conn->{timeout}->del if $conn->{timeout};
320 # be careful to delete the correct one
322 if ($call = $conn->{call}) {
323 my $ref = $conns{$call};
324 delete $conns{$call} if $ref && $ref == $conn;
326 $call ||= 'unallocated';
327 dbg((ref $conn) . " Connection $conn->{cnum} $call disconnected") if isdbg('connll');
329 # get rid of any references
331 if (ref($conn->{$_})) {
336 if (defined($sock)) {
337 set_event_handler ($sock, read => undef, write => undef, error => undef);
342 unless ($main::is_win) {
343 kill 'TERM', $conn->{pid} if exists $conn->{pid};
348 my ($conn, $msg) = @_;
349 $conn->enqueue($msg);
350 $conn->_send (1); # 1 ==> flush
354 my ($conn, $msg) = @_;
355 $conn->enqueue($msg);
356 my $sock = $conn->{sock};
357 return unless defined($sock);
358 set_event_handler ($sock, write => sub {$conn->_send(0)});
363 push (@{$conn->{outqueue}}, defined $_[0] ? $_[0] : '');
367 my ($conn, $flush) = @_;
368 my $sock = $conn->{sock};
369 return unless defined($sock);
370 my $rq = $conn->{outqueue};
372 # If $flush is set, set the socket to blocking, and send all
373 # messages in the queue - return only if there's an error
374 # If $flush is 0 (deferred mode) make the socket non-blocking, and
375 # return to the event loop only after every message, or if it
376 # is likely to block in the middle of a message.
378 # if ($conn->{blocking} != $flush) {
379 # blocking($sock, $flush);
380 # $conn->{blocking} = $flush;
382 my $offset = (exists $conn->{send_offset}) ? $conn->{send_offset} : 0;
386 my $mlth = length($msg);
387 my $bytes_to_write = $mlth - $offset;
388 my $bytes_written = 0;
389 confess("Negative Length! msg: '$msg' lth: $mlth offset: $offset") if $bytes_to_write < 0;
390 while ($bytes_to_write > 0) {
391 $bytes_written = syswrite ($sock, $msg,
392 $bytes_to_write, $offset);
393 if (!defined($bytes_written)) {
394 if (_err_will_block($!)) {
395 # Should happen only in deferred mode. Record how
396 # much we have already sent.
397 $conn->{send_offset} = $offset;
398 # Event handler should already be set, so we will
399 # be called back eventually, and will resume sending
402 &{$conn->{eproc}}($conn, $!) if exists $conn->{eproc};
404 return 0; # fail. Message remains in queue ..
406 } elsif (isdbg('raw')) {
407 my $call = $conn->{call} || 'none';
408 dbgdump('raw', "$call send $bytes_written: ", $msg);
410 $total_out += $bytes_written;
411 $offset += $bytes_written;
412 $bytes_to_write -= $bytes_written;
414 delete $conn->{send_offset};
417 #last unless $flush; # Go back to select and wait
418 # for it to fire again.
420 # Call me back if queue has not been drained.
422 set_event_handler ($sock, write => undef);
423 if (exists $conn->{close_on_empty}) {
424 &{$conn->{eproc}}($conn, undef) if exists $conn->{eproc};
434 my $oldsock = $conn->{sock};
435 my $rc = $rd_callbacks{$oldsock};
436 my $wc = $wt_callbacks{$oldsock};
437 my $ec = $er_callbacks{$oldsock};
438 my $sock = $oldsock->new_from_fd($oldsock, "w+");
440 set_event_handler($oldsock, read=>undef, write=>undef, error=>undef);
441 $conn->{sock} = $sock;
442 set_event_handler($sock, read=>$rc, write=>$wc, error=>$ec);
447 sub _err_will_block {
448 return 0 unless $blocking_supported;
449 return ($_[0] == $eagain || $_[0] == $ewouldblock || $_[0] == $einprogress);
455 $conn->{close_on_empty} = 1;
458 #-----------------------------------------------------------------
459 # Receive side routines
462 @_ == 4 || die "Msg->new_server (myhost, myport, login_proc\n";
463 my ($pkg, $my_host, $my_port, $login_proc) = @_;
464 my $self = $pkg->new($login_proc);
466 $self->{sock} = $io_socket->new (
467 LocalAddr => $my_host,
468 LocalPort => $my_port,
472 die "Could not create socket: $! \n" unless $self->{sock};
473 set_event_handler ($self->{sock}, read => sub { $self->new_client } );
482 unless ($main::is_win) {
484 my ($l, $t) = unpack "ll", getsockopt($conn->{sock}, SOL_SOCKET, SO_LINGER);
485 my $k = unpack 'l', getsockopt($conn->{sock}, SOL_SOCKET, SO_KEEPALIVE);
486 my $n = $main::is_win ? 0 : unpack "l", getsockopt($conn->{sock}, IPPROTO_TCP, TCP_NODELAY);
487 dbg("Linger is: $l $t, keepalive: $k, nagle: $n");
490 eval {setsockopt($conn->{sock}, SOL_SOCKET, SO_KEEPALIVE, 1)} or dbg("setsockopt keepalive: $!");
491 eval {setsockopt($conn->{sock}, SOL_SOCKET, SO_LINGER, pack("ll", 0, 0))} or dbg("setsockopt linger: $!");
492 eval {setsockopt($conn->{sock}, IPPROTO_TCP, TCP_NODELAY, 1)} or eval {setsockopt($conn->{sock}, SOL_SOCKET, TCP_NODELAY, 1)} or dbg("setsockopt tcp_nodelay: $!");
493 $conn->{sock}->autoflush(0);
496 my ($l, $t) = unpack "ll", getsockopt($conn->{sock}, SOL_SOCKET, SO_LINGER);
497 my $k = unpack 'l', getsockopt($conn->{sock}, SOL_SOCKET, SO_KEEPALIVE);
498 my $n = $main::is_win ? 0 : unpack "l", getsockopt($conn->{sock}, IPPROTO_TCP, TCP_NODELAY);
499 dbg("Linger is: $l $t, keepalive: $k, nagle: $n");
507 return if $conn->{disconnecting};
509 if ($conn->{msg} =~ /\cJ/) {
510 my @lines = split /\cM?\cJ/, $conn->{msg};
511 if ($conn->{msg} =~ /\cM?\cJ$/) {
514 $conn->{msg} = pop @lines;
517 last if $conn->{disconnecting};
518 &{$conn->{rproc}}($conn, defined $_ ? $_ : '');
523 sub _rcv { # Complement to _send
524 my $conn = shift; # $rcv_now complement of $flush
525 # Find out how much has already been received, if at all
526 my ($msg, $offset, $bytes_to_read, $bytes_read);
527 my $sock = $conn->{sock};
528 return unless defined($sock);
531 # if ($conn->{blocking}) {
532 # blocking($sock, 0);
533 # $conn->{blocking} = 0;
535 $bytes_read = sysread ($sock, $msg, 1024, 0);
536 if (defined ($bytes_read)) {
537 if ($bytes_read > 0) {
538 $total_in += $bytes_read;
540 my $call = $conn->{call} || 'none';
541 dbgdump('raw', "$call read $bytes_read: ", $msg);
544 my @ch = split //, $msg;
549 $conn->{msg} =~ s/.$//;
556 set_event_handler ($sock, write => sub{$conn->_send(0)});
557 push @{$conn->{outqueue}}, $out;
560 $conn->{msg} .= $msg;
564 if (_err_will_block($!)) {
572 if (defined $bytes_read && $bytes_read == 0) {
573 &{$conn->{eproc}}($conn, $!) if exists $conn->{eproc};
576 unless ($conn->{disable_read}) {
577 $conn->dequeue if exists $conn->{msg};
583 my $server_conn = shift;
584 my $sock = $server_conn->{sock}->accept();
586 my $conn = $server_conn->new($server_conn->{rproc});
587 $conn->{sock} = $sock;
590 $conn->{blocking} = 0;
591 my ($rproc, $eproc) = &{$server_conn->{rproc}} ($conn, $conn->{peerhost} = $sock->peerhost(), $conn->{peerport} = $sock->peerport());
592 $conn->{sort} = 'Incoming';
594 $conn->{eproc} = $eproc;
595 set_event_handler ($sock, error => $eproc);
598 $conn->{rproc} = $rproc;
599 my $callback = sub {$conn->_rcv};
600 set_event_handler ($sock, read => $callback);
601 } else { # Login failed
602 &{$conn->{eproc}}($conn, undef) if exists $conn->{eproc};
606 dbg("Msg: error on accept ($!)") if isdbg('err');
613 set_event_handler ($conn->{sock}, read => undef, write => undef, error => undef );
614 $conn->{sock}->close;
617 # close all clients (this is for forking really)
618 sub close_all_clients
620 foreach my $conn (values %conns) {
628 set_event_handler ($conn->{sock}, read => undef);
629 return $_[0] ? $conn->{disable_read} = $_[0] : $_[0];
633 #----------------------------------------------------
634 # Event loop routines used by both client and server
636 sub set_event_handler {
637 shift unless ref($_[0]); # shift if first arg is package name
638 my ($handle, %args) = @_;
640 if (exists $args{'write'}) {
641 $callback = $args{'write'};
643 $wt_callbacks{$handle} = $callback;
644 $wt_handles->add($handle);
646 delete $wt_callbacks{$handle};
647 $wt_handles->remove($handle);
650 if (exists $args{'read'}) {
651 $callback = $args{'read'};
653 $rd_callbacks{$handle} = $callback;
654 $rd_handles->add($handle);
656 delete $rd_callbacks{$handle};
657 $rd_handles->remove($handle);
660 if (exists $args{'error'}) {
661 $callback = $args{'error'};
663 $er_callbacks{$handle} = $callback;
664 $er_handles->add($handle);
666 delete $er_callbacks{$handle};
667 $er_handles->remove($handle);
673 my ($pkg, $loop_count, $timeout, $wronly) = @_; # event_loop(1) to process events once
674 my ($conn, $r, $w, $e, $rset, $wset, $eset);
677 # Quit the loop if no handles left to process
679 last unless $wt_handles->count();
681 ($rset, $wset, $eset) = IO::Select->select(undef, $wt_handles, undef, $timeout);
683 foreach $w (@$wset) {
684 &{$wt_callbacks{$w}}($w) if exists $wt_callbacks{$w};
688 last unless ($rd_handles->count() || $wt_handles->count());
690 ($rset, $wset, $eset) = IO::Select->select($rd_handles, $wt_handles, $er_handles, $timeout);
692 foreach $e (@$eset) {
693 &{$er_callbacks{$e}}($e) if exists $er_callbacks{$e};
695 foreach $r (@$rset) {
696 &{$rd_callbacks{$r}}($r) if exists $rd_callbacks{$r};
698 foreach $w (@$wset) {
699 &{$wt_callbacks{$w}}($w) if exists $wt_callbacks{$w};
705 if (defined($loop_count)) {
706 last unless --$loop_count;
713 my ($pkg, $interval) = @_;
715 while (time - $now < $interval) {
716 $pkg->event_loop(10, 0.01);
723 my $call = $conn->{call} || 'unallocated';
724 my $host = $conn->{peerhost} || '';
725 my $port = $conn->{peerport} || '';
727 dbg((ref $conn) . " Connection $conn->{cnum} $call [$host $port] being destroyed (total $noconns)") if isdbg('connll');