# Author: Chris "BinGOs" Williams # # This module may be used, modified, and distributed under the same # terms as Perl itself. Please see the license that came with your Perl # distribution for details. # package POE::Component::Client::Ident; use strict; use warnings; use Socket; use POE qw(Component::Client::Ident::Agent); use Carp; use vars qw($VERSION); $VERSION = '1.14'; sub spawn { my ( $package, $alias ) = splice @_, 0, 2; my $self = bless { alias => $alias }, $package; $self->{session_id} = POE::Session->create ( object_states => [ $self => [qw(_start _child query)], $self => { ident_agent_reply => '_ident_agent_reply', ident_agent_error => '_ident_agent_error', shutdown => '_shutdown', }, ], )->ID(); return $self; } sub session_id { $_[0]->{session_id}; } sub shutdown { my $self = shift; $poe_kernel->call( $self->{session_id}, @_ ); } sub _start { my ($kernel,$self,$session) = @_[KERNEL,OBJECT,SESSION]; $self->{session_id} = $session->ID(); $kernel->alias_set( $self->{alias} ) if $self->{alias}; $kernel->refcount_increment( $self->{session_id}, __PACKAGE__ ) unless $self->{alias}; undef; } sub _child { my ($kernel,$self,$what,$child) = @_[KERNEL,OBJECT,ARG0,ARG1]; if ( $what eq 'create' ) { # Stuff here to match up to our query $self->{children}->{ $child->ID() } = 1; } if ( $what eq 'lose' ) { delete $self->{children}->{ $child->ID() }; } undef; } sub _shutdown { my ($kernel,$self) = @_[KERNEL,OBJECT]; $kernel->call( $_ => 'shutdown' ) for keys %{ $self->{children} }; $kernel->alias_remove($_) for $kernel->alias_list(); $kernel->refcount_decrement( $self->{session_id}, __PACKAGE__ ) unless $self->{alias}; undef; } sub query { my ($kernel,$self,$sender) = @_[KERNEL,OBJECT,SENDER]; my $package = ref $self; my ($peeraddr,$peerport,$sockaddr,$sockport,$socket) = _parse_arguments( @_[ARG0 .. $#_] ); unless ( $peeraddr and $peerport and $sockaddr and $sockport ) { croak "Not enough arguments/items for $package->query"; } $kernel->refcount_increment( $sender->ID() => __PACKAGE__ ); POE::Component::Client::Ident::Agent->spawn( @_[ARG0 .. $#_], Reference => $sender->ID() ); undef; } sub _ident_agent_reply { my ($kernel,$self,$ref) = @_[KERNEL,OBJECT,ARG0]; my $requester = delete $ref->{Reference}; $kernel->post( $requester, 'ident_client_reply' , $ref, @_[ARG1 .. $#_] ); $kernel->refcount_decrement( $requester => __PACKAGE__ ); undef; } sub _ident_agent_error { my ($kernel,$self,$ref) = @_[KERNEL,OBJECT,ARG0]; my $requester = delete $ref->{Reference}; $kernel->post( $requester, 'ident_client_error', $ref, @_[ARG1 .. $#_] ); $kernel->refcount_decrement( $requester => __PACKAGE__ ); undef; } sub _parse_arguments { my %hash = @_; my @returns; # If we get a socket it takes precedence over any other arguments SWITCH: { if ( defined $hash{'Socket'} ) { $returns[0] = inet_ntoa( (unpack_sockaddr_in( getpeername $hash{'Socket'} ))[1] ); $returns[1] = (unpack_sockaddr_in( getpeername $hash{'Socket'} ))[0]; $returns[2] = inet_ntoa( (unpack_sockaddr_in( getsockname $hash{'Socket'} ))[1] ); $returns[3] = (unpack_sockaddr_in( getsockname $hash{'Socket'} ))[0]; $returns[4] = $hash{'Socket'}; last SWITCH; } if ( defined $hash{'PeerAddr'} and defined $hash{'PeerPort'} and defined $hash{'SockAddr'} and defined $hash{'SockAddr'} ) { $returns[0] = $hash{'PeerAddr'}; $returns[1] = $hash{'PeerPort'}; $returns[2] = $hash{'SockAddr'}; $returns[3] = $hash{'SockPort'}; last SWITCH; } } return @returns; } 'Who are you?'; __END__ =head1 NAME POE::Component::Client::Ident - A component that provides non-blocking ident lookups to your sessions. =head1 SYNOPSIS use POE::Component::Client::Ident; my $poco_obj = POE::Component::Client::Ident->spawn ( 'Ident-Client' ); $kernel->post ( 'Ident-Client' => query => Socket => $socket ); $kernel->post ( 'Ident-Client' => query => PeerAddr => '10.0.0.1', PeerPort => 2345, SockAddr => '192.168.1.254', SockPort => 6669, BuggyIdentd => 1, TimeOut => 30 ); =head1 DESCRIPTION POE::Component::Client::Ident is a POE component that provides non-blocking Ident lookup services to other components and sessions. The Ident protocol is described in RFC 1413 L. The component takes requests in the form of events, spawns L sessions to perform the Ident queries and returns the appropriate responses to the requesting session. =head1 CONSTRUCTOR =over =item spawn Takes one argument, a kernel alias to christen the new component with. Returns an object. =back =head1 METHODS These methods are available on the poco object returned by spawn(). =over =item session_id Returns the component's session ID. =item shutdown Takes no arguments. Causes the component to terminate gracefully. Any pending Ident::Agent components that are running will be closed without returning events. =back =head1 INPUT The component accepts the following events: =over =item query Takes either the arguments: "PeerAddr", the remote IP address where a TCP connection has originated; "PeerPort", the port where the TCP has originated from; "SockAddr", the address of our end of the connection; "SockPort", the port of our end of the connection; OR: "Socket", the socket handle of the connection, the component will work out all the details for you. If Socket is defined, it will override the settings of the other arguments. See the documentation for Ident-Agent for extra parameters you may pass. =item shutdown Takes no arguments. Causes the component to terminate gracefully. Any pending Ident::Agent components that are running will be closed without returning events. =back =head1 OUTPUT The events you can expect to receive having submitted a 'query'. All the events returned by the component have a hashref as ARG0. This hashref contains the arguments that were passed to the component. If a socket handle was passed, the hashref will contain the appropriate PeerAddr, PeerPort, SockAddr and Sock Port. =over =item ident_client_reply Returned when the component receives a USERID response from the identd. ARG0 is hashref, ARG1 is the opsys field and ARG2 is the userid or something else depending on whether the opsys field is set to 'OTHER' ( Don't blame me, read the RFC ). =item ident_client_error Returned when the component receives an ERROR response from the identd, there was some sort of communication error with the remote host ( ie. no identd running ) or it had some other problem with making the connection to the other host. No matter. ARG0 is hashref, ARG1 is the type of error. =back =head1 AUTHOR Chris Williams, Echris@bingosnet.co.uk =head1 LICENSE Copyright C<(c)> Chris Williams. This module may be used, modified, and distributed under the same terms as Perl itself. Please see the license that came with your Perl distribution for details. =head1 SEE ALSO RFC 1413 L L