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';
225 # Create a new internet socket
226 my $sock = $io_socket->new();
227 return undef unless $sock;
229 my $proto = getprotobyname('tcp');
230 $sock->socket(AF_INET, SOCK_STREAM, $proto) or return undef;
233 $conn->{blocking} = 0;
235 # does the host resolve?
236 my $ip = gethostbyname($to_host);
237 return undef unless $ip;
239 my $r = connect($sock, pack_sockaddr_in($to_port, $ip));
240 return undef unless $r || _err_will_block($!);
242 $conn->{sock} = $sock;
243 $conn->{peerhost} = $sock->peerhost; # for consistency
245 if ($conn->{rproc}) {
246 my $callback = sub {$conn->_rcv};
247 set_event_handler ($sock, read => $callback);
254 my ($conn, $line, $sort) = @_;
257 local $^F = 10000; # make sure it ain't closed on exec
258 my ($a, $b) = $io_socket->socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC);
267 $conn->{csort} = $sort;
268 $conn->{lineend} = "\cM" if $sort eq 'ax25';
270 if ($conn->{rproc}) {
271 my $callback = sub {$conn->_rcv};
272 Msg::set_event_handler ($a, read => $callback);
274 dbg("connect $conn->{cnum}: started pid: $conn->{pid} as $line") if isdbg('connect');
281 *STDIN = IO::File->new_from_fd($b, 'r') or die;
282 *STDOUT = IO::File->new_from_fd($b, 'w') or die;
283 *STDERR = IO::File->new_from_fd($b, 'w') or die;
285 unless ($main::is_win) {
286 # $SIG{HUP} = 'IGNORE';
287 $SIG{HUP} = $SIG{CHLD} = $SIG{TERM} = $SIG{INT} = 'DEFAULT';
290 exec "$line" or dbg("exec '$line' failed $!");
293 dbg("cannot fork for $line");
296 dbg("no socket pair $! for $line");
304 return if exists $conn->{disconnecting};
306 $conn->{disconnecting} = 1;
307 my $sock = delete $conn->{sock};
308 $conn->{state} = 'E';
309 $conn->{timeout}->del if $conn->{timeout};
311 # be careful to delete the correct one
313 if ($call = $conn->{call}) {
314 my $ref = $conns{$call};
315 delete $conns{$call} if $ref && $ref == $conn;
317 $call ||= 'unallocated';
318 dbg("Connection $conn->{cnum} $call disconnected") if isdbg('connll');
320 # get rid of any references
322 if (ref($conn->{$_})) {
327 if (defined($sock)) {
328 set_event_handler ($sock, read => undef, write => undef, error => undef);
333 unless ($main::is_win) {
334 kill 'TERM', $conn->{pid} if exists $conn->{pid};
339 my ($conn, $msg) = @_;
340 $conn->enqueue($msg);
341 $conn->_send (1); # 1 ==> flush
345 my ($conn, $msg) = @_;
346 $conn->enqueue($msg);
347 my $sock = $conn->{sock};
348 return unless defined($sock);
349 set_event_handler ($sock, write => sub {$conn->_send(0)});
354 push (@{$conn->{outqueue}}, defined $_[0] ? $_[0] : '');
358 my ($conn, $flush) = @_;
359 my $sock = $conn->{sock};
360 return unless defined($sock);
361 my $rq = $conn->{outqueue};
363 # If $flush is set, set the socket to blocking, and send all
364 # messages in the queue - return only if there's an error
365 # If $flush is 0 (deferred mode) make the socket non-blocking, and
366 # return to the event loop only after every message, or if it
367 # is likely to block in the middle of a message.
369 # if ($conn->{blocking} != $flush) {
370 # blocking($sock, $flush);
371 # $conn->{blocking} = $flush;
373 my $offset = (exists $conn->{send_offset}) ? $conn->{send_offset} : 0;
377 my $mlth = length($msg);
378 my $bytes_to_write = $mlth - $offset;
379 my $bytes_written = 0;
380 confess("Negative Length! msg: '$msg' lth: $mlth offset: $offset") if $bytes_to_write < 0;
381 while ($bytes_to_write > 0) {
382 $bytes_written = syswrite ($sock, $msg,
383 $bytes_to_write, $offset);
384 if (!defined($bytes_written)) {
385 if (_err_will_block($!)) {
386 # Should happen only in deferred mode. Record how
387 # much we have already sent.
388 $conn->{send_offset} = $offset;
389 # Event handler should already be set, so we will
390 # be called back eventually, and will resume sending
393 &{$conn->{eproc}}($conn, $!) if exists $conn->{eproc};
395 return 0; # fail. Message remains in queue ..
397 } elsif (isdbg('raw')) {
398 my $call = $conn->{call} || 'none';
399 dbgdump('raw', "$call send $bytes_written: ", $msg);
401 $total_out += $bytes_written;
402 $offset += $bytes_written;
403 $bytes_to_write -= $bytes_written;
405 delete $conn->{send_offset};
408 #last unless $flush; # Go back to select and wait
409 # for it to fire again.
411 # Call me back if queue has not been drained.
413 set_event_handler ($sock, write => undef);
414 if (exists $conn->{close_on_empty}) {
415 &{$conn->{eproc}}($conn, undef) if exists $conn->{eproc};
425 my $oldsock = $conn->{sock};
426 my $rc = $rd_callbacks{$oldsock};
427 my $wc = $wt_callbacks{$oldsock};
428 my $ec = $er_callbacks{$oldsock};
429 my $sock = $oldsock->new_from_fd($oldsock, "w+");
431 set_event_handler($oldsock, read=>undef, write=>undef, error=>undef);
432 $conn->{sock} = $sock;
433 set_event_handler($sock, read=>$rc, write=>$wc, error=>$ec);
438 sub _err_will_block {
439 return 0 unless $blocking_supported;
440 return ($_[0] == $eagain || $_[0] == $ewouldblock || $_[0] == $einprogress);
446 $conn->{close_on_empty} = 1;
449 #-----------------------------------------------------------------
450 # Receive side routines
453 @_ == 4 || die "Msg->new_server (myhost, myport, login_proc\n";
454 my ($pkg, $my_host, $my_port, $login_proc) = @_;
455 my $self = $pkg->new($login_proc);
457 $self->{sock} = $io_socket->new (
458 LocalAddr => "$my_host:$my_port",
459 # LocalPort => $my_port,
463 die "Could not create socket: $! \n" unless $self->{sock};
464 set_event_handler ($self->{sock}, read => sub { $self->new_client } );
473 unless ($main::is_win) {
475 my ($l, $t) = unpack "ll", getsockopt($conn->{sock}, SOL_SOCKET, SO_LINGER);
476 my $k = unpack 'l', getsockopt($conn->{sock}, SOL_SOCKET, SO_KEEPALIVE);
477 my $n = $main::is_win ? 0 : unpack "l", getsockopt($conn->{sock}, IPPROTO_TCP, TCP_NODELAY);
478 dbg("Linger is: $l $t, keepalive: $k, nagle: $n");
481 eval {setsockopt($conn->{sock}, SOL_SOCKET, SO_KEEPALIVE, 1)} or dbg("setsockopt keepalive: $!");
482 eval {setsockopt($conn->{sock}, SOL_SOCKET, SO_LINGER, pack("ll", 0, 0))} or dbg("setsockopt linger: $!");
483 eval {setsockopt($conn->{sock}, IPPROTO_TCP, TCP_NODELAY, 1)} or eval {setsockopt($conn->{sock}, SOL_SOCKET, TCP_NODELAY, 1)} or dbg("setsockopt tcp_nodelay: $!");
484 $conn->{sock}->autoflush(0);
487 my ($l, $t) = unpack "ll", getsockopt($conn->{sock}, SOL_SOCKET, SO_LINGER);
488 my $k = unpack 'l', getsockopt($conn->{sock}, SOL_SOCKET, SO_KEEPALIVE);
489 my $n = $main::is_win ? 0 : unpack "l", getsockopt($conn->{sock}, IPPROTO_TCP, TCP_NODELAY);
490 dbg("Linger is: $l $t, keepalive: $k, nagle: $n");
499 if ($conn->{msg} =~ /\n/) {
500 my @lines = split /\r?\n/, $conn->{msg};
501 if ($conn->{msg} =~ /\n$/) {
504 $conn->{msg} = pop @lines;
507 &{$conn->{rproc}}($conn, defined $_ ? $_ : '');
512 sub _rcv { # Complement to _send
513 my $conn = shift; # $rcv_now complement of $flush
514 # Find out how much has already been received, if at all
515 my ($msg, $offset, $bytes_to_read, $bytes_read);
516 my $sock = $conn->{sock};
517 return unless defined($sock);
520 # if ($conn->{blocking}) {
521 # blocking($sock, 0);
522 # $conn->{blocking} = 0;
524 $bytes_read = sysread ($sock, $msg, 1024, 0);
525 if (defined ($bytes_read)) {
526 if ($bytes_read > 0) {
527 $total_in += $bytes_read;
529 my $call = $conn->{call} || 'none';
530 dbgdump('raw', "$call read $bytes_read: ", $msg);
533 my @ch = split //, $msg;
538 $conn->{msg} =~ s/.$//;
545 set_event_handler ($sock, write => sub{$conn->_send(0)});
546 push @{$conn->{outqueue}}, $out;
549 $conn->{msg} .= $msg;
553 if (_err_will_block($!)) {
561 if (defined $bytes_read && $bytes_read == 0) {
562 &{$conn->{eproc}}($conn, $!) if exists $conn->{eproc};
565 unless ($conn->{disable_read}) {
566 $conn->dequeue if exists $conn->{msg};
572 my $server_conn = shift;
573 my $sock = $server_conn->{sock}->accept();
575 my $conn = $server_conn->new($server_conn->{rproc});
576 $conn->{sock} = $sock;
579 $conn->{blocking} = 0;
580 my ($rproc, $eproc) = &{$server_conn->{rproc}} ($conn, $conn->{peerhost} = $sock->peerhost(), $conn->{peerport} = $sock->peerport());
581 $conn->{sort} = 'Incoming';
583 $conn->{eproc} = $eproc;
584 set_event_handler ($sock, error => $eproc);
587 $conn->{rproc} = $rproc;
588 my $callback = sub {$conn->_rcv};
589 set_event_handler ($sock, read => $callback);
590 } else { # Login failed
591 &{$conn->{eproc}}($conn, undef) if exists $conn->{eproc};
595 dbg("Msg: error on accept ($!)") if isdbg('err');
602 set_event_handler ($conn->{sock}, read => undef, write => undef, error => undef );
603 $conn->{sock}->close;
606 # close all clients (this is for forking really)
607 sub close_all_clients
609 foreach my $conn (values %conns) {
617 set_event_handler ($conn->{sock}, read => undef);
618 return $_[0] ? $conn->{disable_read} = $_[0] : $_[0];
622 #----------------------------------------------------
623 # Event loop routines used by both client and server
625 sub set_event_handler {
626 shift unless ref($_[0]); # shift if first arg is package name
627 my ($handle, %args) = @_;
629 if (exists $args{'write'}) {
630 $callback = $args{'write'};
632 $wt_callbacks{$handle} = $callback;
633 $wt_handles->add($handle);
635 delete $wt_callbacks{$handle};
636 $wt_handles->remove($handle);
639 if (exists $args{'read'}) {
640 $callback = $args{'read'};
642 $rd_callbacks{$handle} = $callback;
643 $rd_handles->add($handle);
645 delete $rd_callbacks{$handle};
646 $rd_handles->remove($handle);
649 if (exists $args{'error'}) {
650 $callback = $args{'error'};
652 $er_callbacks{$handle} = $callback;
653 $er_handles->add($handle);
655 delete $er_callbacks{$handle};
656 $er_handles->remove($handle);
662 my ($pkg, $loop_count, $timeout, $wronly) = @_; # event_loop(1) to process events once
663 my ($conn, $r, $w, $e, $rset, $wset, $eset);
666 # Quit the loop if no handles left to process
668 last unless $wt_handles->count();
670 ($rset, $wset, $eset) = IO::Select->select(undef, $wt_handles, undef, $timeout);
672 foreach $w (@$wset) {
673 &{$wt_callbacks{$w}}($w) if exists $wt_callbacks{$w};
677 last unless ($rd_handles->count() || $wt_handles->count());
679 ($rset, $wset, $eset) = IO::Select->select($rd_handles, $wt_handles, $er_handles, $timeout);
681 foreach $e (@$eset) {
682 &{$er_callbacks{$e}}($e) if exists $er_callbacks{$e};
684 foreach $r (@$rset) {
685 &{$rd_callbacks{$r}}($r) if exists $rd_callbacks{$r};
687 foreach $w (@$wset) {
688 &{$wt_callbacks{$w}}($w) if exists $wt_callbacks{$w};
694 if (defined($loop_count)) {
695 last unless --$loop_count;
702 my ($pkg, $interval) = @_;
704 while (time - $now < $interval) {
705 $pkg->event_loop(10, 0.01);
712 my $call = $conn->{call} || 'unallocated';
713 my $host = $conn->{peerhost} || '';
714 my $port = $conn->{peerport} || '';
715 dbg("Connection $conn->{cnum} $call [$host $port] being destroyed") if isdbg('connll');