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("Connection created ($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("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("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';
226 if ($blocking_supported) {
227 $sock = $io_socket->new(PeerAddr => $to_host, PeerPort => $to_port, Proto => 'tcp', Blocking =>0) or return undef;
229 # Create a new internet socket
230 $sock = $io_socket->new();
231 return undef unless $sock;
233 my $proto = getprotobyname('tcp');
234 $sock->socket(AF_INET, SOCK_STREAM, $proto) or return undef;
237 $conn->{blocking} = 0;
239 # does the host resolve?
240 my $ip = gethostbyname($to_host);
241 return undef unless $ip;
243 my $r = connect($sock, pack_sockaddr_in($to_port, $ip));
244 return undef unless $r || _err_will_block($!);
247 $conn->{sock} = $sock;
248 $conn->{peerhost} = $sock->peerhost; # for consistency
250 if ($conn->{rproc}) {
251 my $callback = sub {$conn->_rcv};
252 set_event_handler ($sock, read => $callback);
259 my ($conn, $line, $sort) = @_;
262 local $^F = 10000; # make sure it ain't closed on exec
263 my ($a, $b) = $io_socket->socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC);
272 $conn->{csort} = $sort;
273 $conn->{lineend} = "\cM" if $sort eq 'ax25';
275 if ($conn->{rproc}) {
276 my $callback = sub {$conn->_rcv};
277 Msg::set_event_handler ($a, read => $callback);
279 dbg("connect $conn->{cnum}: started pid: $conn->{pid} as $line") if isdbg('connect');
286 *STDIN = IO::File->new_from_fd($b, 'r') or die;
287 *STDOUT = IO::File->new_from_fd($b, 'w') or die;
288 *STDERR = IO::File->new_from_fd($b, 'w') or die;
290 unless ($main::is_win) {
291 # $SIG{HUP} = 'IGNORE';
292 $SIG{HUP} = $SIG{CHLD} = $SIG{TERM} = $SIG{INT} = 'DEFAULT';
295 exec "$line" or dbg("exec '$line' failed $!");
298 dbg("cannot fork for $line");
301 dbg("no socket pair $! for $line");
309 return if exists $conn->{disconnecting};
311 $conn->{disconnecting} = 1;
312 my $sock = delete $conn->{sock};
313 $conn->{state} = 'E';
314 $conn->{timeout}->del if $conn->{timeout};
316 # be careful to delete the correct one
318 if ($call = $conn->{call}) {
319 my $ref = $conns{$call};
320 delete $conns{$call} if $ref && $ref == $conn;
322 $call ||= 'unallocated';
323 dbg("Connection $conn->{cnum} $call disconnected") if isdbg('connll');
325 # get rid of any references
327 if (ref($conn->{$_})) {
332 if (defined($sock)) {
333 set_event_handler ($sock, read => undef, write => undef, error => undef);
338 unless ($main::is_win) {
339 kill 'TERM', $conn->{pid} if exists $conn->{pid};
344 my ($conn, $msg) = @_;
345 $conn->enqueue($msg);
346 $conn->_send (1); # 1 ==> flush
350 my ($conn, $msg) = @_;
351 $conn->enqueue($msg);
352 my $sock = $conn->{sock};
353 return unless defined($sock);
354 set_event_handler ($sock, write => sub {$conn->_send(0)});
359 push (@{$conn->{outqueue}}, defined $_[0] ? $_[0] : '');
363 my ($conn, $flush) = @_;
364 my $sock = $conn->{sock};
365 return unless defined($sock);
366 my $rq = $conn->{outqueue};
368 # If $flush is set, set the socket to blocking, and send all
369 # messages in the queue - return only if there's an error
370 # If $flush is 0 (deferred mode) make the socket non-blocking, and
371 # return to the event loop only after every message, or if it
372 # is likely to block in the middle of a message.
374 # if ($conn->{blocking} != $flush) {
375 # blocking($sock, $flush);
376 # $conn->{blocking} = $flush;
378 my $offset = (exists $conn->{send_offset}) ? $conn->{send_offset} : 0;
382 my $mlth = length($msg);
383 my $bytes_to_write = $mlth - $offset;
384 my $bytes_written = 0;
385 confess("Negative Length! msg: '$msg' lth: $mlth offset: $offset") if $bytes_to_write < 0;
386 while ($bytes_to_write > 0) {
387 $bytes_written = syswrite ($sock, $msg,
388 $bytes_to_write, $offset);
389 if (!defined($bytes_written)) {
390 if (_err_will_block($!)) {
391 # Should happen only in deferred mode. Record how
392 # much we have already sent.
393 $conn->{send_offset} = $offset;
394 # Event handler should already be set, so we will
395 # be called back eventually, and will resume sending
398 &{$conn->{eproc}}($conn, $!) if exists $conn->{eproc};
400 return 0; # fail. Message remains in queue ..
402 } elsif (isdbg('raw')) {
403 my $call = $conn->{call} || 'none';
404 dbgdump('raw', "$call send $bytes_written: ", $msg);
406 $total_out += $bytes_written;
407 $offset += $bytes_written;
408 $bytes_to_write -= $bytes_written;
410 delete $conn->{send_offset};
413 #last unless $flush; # Go back to select and wait
414 # for it to fire again.
416 # Call me back if queue has not been drained.
418 set_event_handler ($sock, write => undef);
419 if (exists $conn->{close_on_empty}) {
420 &{$conn->{eproc}}($conn, undef) if exists $conn->{eproc};
430 my $oldsock = $conn->{sock};
431 my $rc = $rd_callbacks{$oldsock};
432 my $wc = $wt_callbacks{$oldsock};
433 my $ec = $er_callbacks{$oldsock};
434 my $sock = $oldsock->new_from_fd($oldsock, "w+");
436 set_event_handler($oldsock, read=>undef, write=>undef, error=>undef);
437 $conn->{sock} = $sock;
438 set_event_handler($sock, read=>$rc, write=>$wc, error=>$ec);
443 sub _err_will_block {
444 return 0 unless $blocking_supported;
445 return ($_[0] == $eagain || $_[0] == $ewouldblock || $_[0] == $einprogress);
451 $conn->{close_on_empty} = 1;
454 #-----------------------------------------------------------------
455 # Receive side routines
458 @_ == 4 || die "Msg->new_server (myhost, myport, login_proc\n";
459 my ($pkg, $my_host, $my_port, $login_proc) = @_;
460 my $self = $pkg->new($login_proc);
462 $self->{sock} = $io_socket->new (
463 LocalAddr => "$my_host:$my_port",
464 # LocalPort => $my_port,
468 die "Could not create socket: $! \n" unless $self->{sock};
469 set_event_handler ($self->{sock}, read => sub { $self->new_client } );
478 unless ($main::is_win) {
480 my ($l, $t) = unpack "ll", getsockopt($conn->{sock}, SOL_SOCKET, SO_LINGER);
481 my $k = unpack 'l', getsockopt($conn->{sock}, SOL_SOCKET, SO_KEEPALIVE);
482 my $n = $main::is_win ? 0 : unpack "l", getsockopt($conn->{sock}, IPPROTO_TCP, TCP_NODELAY);
483 dbg("Linger is: $l $t, keepalive: $k, nagle: $n");
486 eval {setsockopt($conn->{sock}, SOL_SOCKET, SO_KEEPALIVE, 1)} or dbg("setsockopt keepalive: $!");
487 eval {setsockopt($conn->{sock}, SOL_SOCKET, SO_LINGER, pack("ll", 0, 0))} or dbg("setsockopt linger: $!");
488 eval {setsockopt($conn->{sock}, IPPROTO_TCP, TCP_NODELAY, 1)} or eval {setsockopt($conn->{sock}, SOL_SOCKET, TCP_NODELAY, 1)} or dbg("setsockopt tcp_nodelay: $!");
489 $conn->{sock}->autoflush(0);
492 my ($l, $t) = unpack "ll", getsockopt($conn->{sock}, SOL_SOCKET, SO_LINGER);
493 my $k = unpack 'l', getsockopt($conn->{sock}, SOL_SOCKET, SO_KEEPALIVE);
494 my $n = $main::is_win ? 0 : unpack "l", getsockopt($conn->{sock}, IPPROTO_TCP, TCP_NODELAY);
495 dbg("Linger is: $l $t, keepalive: $k, nagle: $n");
504 if ($conn->{msg} =~ /\n/) {
505 my @lines = split /\r?\n/, $conn->{msg};
506 if ($conn->{msg} =~ /\n$/) {
509 $conn->{msg} = pop @lines;
512 &{$conn->{rproc}}($conn, defined $_ ? $_ : '');
517 sub _rcv { # Complement to _send
518 my $conn = shift; # $rcv_now complement of $flush
519 # Find out how much has already been received, if at all
520 my ($msg, $offset, $bytes_to_read, $bytes_read);
521 my $sock = $conn->{sock};
522 return unless defined($sock);
525 # if ($conn->{blocking}) {
526 # blocking($sock, 0);
527 # $conn->{blocking} = 0;
529 $bytes_read = sysread ($sock, $msg, 1024, 0);
530 if (defined ($bytes_read)) {
531 if ($bytes_read > 0) {
532 $total_in += $bytes_read;
534 my $call = $conn->{call} || 'none';
535 dbgdump('raw', "$call read $bytes_read: ", $msg);
538 my @ch = split //, $msg;
543 $conn->{msg} =~ s/.$//;
550 set_event_handler ($sock, write => sub{$conn->_send(0)});
551 push @{$conn->{outqueue}}, $out;
554 $conn->{msg} .= $msg;
558 if (_err_will_block($!)) {
566 if (defined $bytes_read && $bytes_read == 0) {
567 &{$conn->{eproc}}($conn, $!) if exists $conn->{eproc};
570 unless ($conn->{disable_read}) {
571 $conn->dequeue if exists $conn->{msg};
577 my $server_conn = shift;
578 my $sock = $server_conn->{sock}->accept();
580 my $conn = $server_conn->new($server_conn->{rproc});
581 $conn->{sock} = $sock;
584 $conn->{blocking} = 0;
585 my ($rproc, $eproc) = &{$server_conn->{rproc}} ($conn, $conn->{peerhost} = $sock->peerhost(), $conn->{peerport} = $sock->peerport());
586 $conn->{sort} = 'Incoming';
588 $conn->{eproc} = $eproc;
589 set_event_handler ($sock, error => $eproc);
592 $conn->{rproc} = $rproc;
593 my $callback = sub {$conn->_rcv};
594 set_event_handler ($sock, read => $callback);
595 } else { # Login failed
596 &{$conn->{eproc}}($conn, undef) if exists $conn->{eproc};
600 dbg("Msg: error on accept ($!)") if isdbg('err');
607 set_event_handler ($conn->{sock}, read => undef, write => undef, error => undef );
608 $conn->{sock}->close;
611 # close all clients (this is for forking really)
612 sub close_all_clients
614 foreach my $conn (values %conns) {
622 set_event_handler ($conn->{sock}, read => undef);
623 return $_[0] ? $conn->{disable_read} = $_[0] : $_[0];
627 #----------------------------------------------------
628 # Event loop routines used by both client and server
630 sub set_event_handler {
631 shift unless ref($_[0]); # shift if first arg is package name
632 my ($handle, %args) = @_;
634 if (exists $args{'write'}) {
635 $callback = $args{'write'};
637 $wt_callbacks{$handle} = $callback;
638 $wt_handles->add($handle);
640 delete $wt_callbacks{$handle};
641 $wt_handles->remove($handle);
644 if (exists $args{'read'}) {
645 $callback = $args{'read'};
647 $rd_callbacks{$handle} = $callback;
648 $rd_handles->add($handle);
650 delete $rd_callbacks{$handle};
651 $rd_handles->remove($handle);
654 if (exists $args{'error'}) {
655 $callback = $args{'error'};
657 $er_callbacks{$handle} = $callback;
658 $er_handles->add($handle);
660 delete $er_callbacks{$handle};
661 $er_handles->remove($handle);
667 my ($pkg, $loop_count, $timeout, $wronly) = @_; # event_loop(1) to process events once
668 my ($conn, $r, $w, $e, $rset, $wset, $eset);
671 # Quit the loop if no handles left to process
673 last unless $wt_handles->count();
675 ($rset, $wset, $eset) = IO::Select->select(undef, $wt_handles, undef, $timeout);
677 foreach $w (@$wset) {
678 &{$wt_callbacks{$w}}($w) if exists $wt_callbacks{$w};
682 last unless ($rd_handles->count() || $wt_handles->count());
684 ($rset, $wset, $eset) = IO::Select->select($rd_handles, $wt_handles, $er_handles, $timeout);
686 foreach $e (@$eset) {
687 &{$er_callbacks{$e}}($e) if exists $er_callbacks{$e};
689 foreach $r (@$rset) {
690 &{$rd_callbacks{$r}}($r) if exists $rd_callbacks{$r};
692 foreach $w (@$wset) {
693 &{$wt_callbacks{$w}}($w) if exists $wt_callbacks{$w};
699 if (defined($loop_count)) {
700 last unless --$loop_count;
707 my ($pkg, $interval) = @_;
709 while (time - $now < $interval) {
710 $pkg->event_loop(10, 0.01);
717 my $call = $conn->{call} || 'unallocated';
718 my $host = $conn->{peerhost} || '';
719 my $port = $conn->{peerport} || '';
720 dbg("Connection $conn->{cnum} $call [$host $port] being destroyed") if isdbg('connll');