/[cwmp]/google/trunk/lib/CWMP/Session.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /google/trunk/lib/CWMP/Session.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

google/lib/CWMP/Server.pm revision 43 by dpavlin, Tue Jun 19 18:50:28 2007 UTC google/trunk/lib/CWMP/Session.pm revision 119 by dpavlin, Fri Oct 26 15:51:27 2007 UTC
# Line 1  Line 1 
1  # Dobrica Pavlinusic, <dpavlin@rot13.org> 06/18/07 10:19:50 CEST  # Dobrica Pavlinusic, <dpavlin@rot13.org> 06/18/07 10:19:50 CEST
2  package CWMP::Server;  package CWMP::Session;
3    
4  use strict;  use strict;
5  use warnings;  use warnings;
# Line 7  use warnings; Line 7  use warnings;
7  use base qw/Class::Accessor/;  use base qw/Class::Accessor/;
8  __PACKAGE__->mk_accessors( qw/  __PACKAGE__->mk_accessors( qw/
9  debug  debug
10  port  store_path
11    
12  sock  sock
13    state
14    queue
15    store
16  / );  / );
17    
18  use IO::Socket::INET;  use HTTP::Daemon;
19  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
20    use Carp qw/confess cluck croak/;
21    use File::Slurp;
22    
23  use CWMP::Request;  use CWMP::Request;
24  use CWMP::Response;  use CWMP::Response;
25  use Carp qw/confess cluck/;  use CWMP::Store;
26    
27  =head1 NAME  =head1 NAME
28    
29  CWMP::Server - implement logic of CWMP protocol  CWMP::Session - implement logic of CWMP protocol
30    
31  =head1 METHODS  =head1 METHODS
32    
33  =head2 new  =head2 new
34    
35    my $server = CWMP::Server->new({ port => 3333 });    my $server = CWMP::Session->new({
36            sock => $io_socket_object,
37  =head2 run          store_path => 'state.db',
38            queue => [ qw/GetRPCMethods GetParameterNames/ ],
39    $server->run();          debug => 1,
40      });
41    
42  =cut  =cut
43    
44  sub run {  sub new {
45          my $self = shift;          my $class = shift;
46            my $self = $class->SUPER::new( @_ );
47    
48          my $listen = IO::Socket::INET->new(          confess "need sock" unless $self->sock;
                 Listen    => 5,  
 #               LocalAddr => 'localhost',  
                 LocalPort => $self->port,  
                 Proto     => 'tcp',  
                 Blocking  => 1,  
                 ReuseAddr => 1,  
         );  
   
         warn "waiting for request on port ", $self->port, $/;  
   
         while ( my $sock = $listen->accept ) {  
                 $sock->autoflush(1);  
   
                 warn "connection from ", $sock->peerhost, "\n";  
   
                 $self->sock( $sock );   # FIXME this will not work for multiple clients  
                 while ( $self->process_request ) {  
                         warn "...another one bites a dust...\n";  
                 }  
49    
50                  warn "...returning to accepting new connections\n";          $self->debug( 0 ) unless $self->debug;
         }  
 }  
51    
52  sub process_request {          warn "created ", __PACKAGE__, "(", dump( @_ ), ") for ", $self->sock->peerhost, "\n" if $self->debug;
         my $self = shift;  
53    
54          my $sock = $self->sock || die "no sock?";          $self->store( CWMP::Store->new({
55                    debug => $self->debug,
56                    path => $self->store_path,
57            }) );
58    
59          die "not IO::Socket::INET but ", ref( $sock ) unless ( ref($sock) eq 'IO::Socket::INET' );          croak "can't open ", $self->store_path, ": $!" unless $self->store;
60    
61          if ( ! $sock->connected ) {          return $self;
62                  warn "SOCKET NOT CONNECTED";  }
                 return 0;  
         }  
63    
64          $sock->autoflush( 1 );  =head2 process_request
         $sock->blocking( 1 );  
65    
66          ### read the first line of response  One request from client/response from server cycle. Call multiple times to
67          my $line = $sock->getline || $self->error(400, "No Data");  facilitate brain-dead concept of adding state to stateless protocol like
68    HTTP.
69    
70          $line =~ s/[\r\n]+$//;  If used with debugging level of 3 or more, it will also create dumps of
71          if ($line !~ /^ (\w+) \ + (\S+) \ + (HTTP\/1.\d) $ /x) {  requests named C<< dump/nr.request >> where C<nr> is number from 0 to total number
72                  return $self->error(400, "Bad request");  of requests in single session.
         }  
         my ($method, $req, $protocol) = ($1, $2, $3);  
         warn "<<<< ",join(" ", time, $method, $req)."\n";  
73    
74          ### read in other headers  =cut
         $self->read_headers || return $self->error(400, "Strange headers");  
75    
76          ### do we support the type  my $dump_nr = 0;
 #       if ($method !~ /GET|POST|HEAD/) {  
         if ($method !~ /POST/) {  
                 return $self->error(400, "Unsupported Method");  
         }  
77    
78      my $chunk;  sub process_request {
79          my $transfer_encoding = $self->header('Transfer-Encoding');          my $self = shift;
80    
81          if ( $transfer_encoding && $transfer_encoding =~ qr/^chunked/i ) {          my $sock = $self->sock || die "no sock?";
82    
83                  my $len = 0;  #       die "not IO::Socket::INET but ", ref( $sock ) unless ( ref($sock) eq 'Net::Server::Proto::TCP' );
84    
85                  do {          if ( ! $sock->connected ) {
86                    warn "SOCKET NOT CONNECTED\n";
87                    return 0;
88            }
89    
90                          warn "get chunk len\n" if $self->debug;          bless $sock, 'HTTP::Daemon::ClientConn';
                           
                         my $hex;  
                         do {  
                                 $hex = $sock->getline;  
                                 $hex =~ s/[\n\r]+$//;  
                         } until ( $hex ne '' );  
91    
92                          die "chunk size not valid hex: $hex" unless ( $hex =~ m/^[0-9a-f]+$/i);          # why do I have to do this?
93                          $len = hex( $hex );          # solution from http://use.perl.org/~Matts/journal/12896
94            ${*$sock}{'httpd_daemon'} = HTTP::Daemon->new;
95    
96                          warn "getting chunk of $len bytes\n" if $self->debug;          my $r = $sock->get_request || confess "can't get_request";
97    
98                          $sock->read( my $buff, $len );          my $chunk = $r->content;
                         $chunk .= $buff;  
99    
100                          warn "--- $len bytes: --=>||$buff||<=--\n";          my $size = length( $chunk );
101    
102                  } while ( $len > 0 );          warn "<<<< ", $sock->peerhost, " [" . localtime() . "] ", $r->method, " ", $r->uri, " $size bytes\n";
103    
104          } else {          if ( $self->debug > 2 ) {
105                  die "right now, we support only Transfer-Encoding: chunked";                  my $file = sprintf("dump/%04d.request", $dump_nr++);
106                    write_file( $file, $r->as_string );
107                    warn "### request dump: $file\n";
108          }          }
109    
110          warn "handler got ", length($chunk), " bytes\n" if $self->debug;          my $state;
111    
112          warn "<<< " . localtime() . " " . $sock->peerhost . "\n";          if ( $size > 0 ) {
113    
114          die "not SOAP request" unless defined ( $self->header('SOAPAction') );                  die "no SOAPAction header in ",dump($chunk) unless defined ( $r->header('SOAPAction') );
115    
116          my $state;                  $state = CWMP::Request->parse( $chunk );
117    
118          if ( $chunk ) {                  warn "## acquired state = ", dump( $state ), "\n";
                 warn "## request chunk: ",length($chunk)," bytes\n$chunk\n" if $self->debug;  
119    
120                  $state = CWMP::Request->parse( $chunk );                  $self->state( $state );
121                    $self->store->update_state( ID => $state->{ID}, $state );
122    
                 warn "acquired state = ", dump( $state ), "\n";  
           
123          } else {          } else {
                 warn "empty request\n";  
         }  
124    
125                    warn "## empty request\n";
126    
127          my $response = CWMP::Response->new({ debug => $self->debug });                  $state = $self->state;
128                    delete( $state->{_dispatch} );
129                    warn "last request state = ", dump( $state ), "\n" if $self->debug > 1;
130            }
131    
132          $sock->send(join("",  
133                  $self->status(200,'OK'),          $sock->send(join("\r\n",
134                  $self->content_type('text/xml; charset="utf-8"'),                  'HTTP/1.1 200 OK',
135                  "Server: AcmeCWMP/42\r\n",                  'Content-Type: text/xml; charset="utf-8"',
136                  "SOAPServer: AcmeCWMP/42\r\n"                  'Server: AcmeCWMP/42',
137          ));                  'SOAPServer: AcmeCWMP/42'
138            )."\r\n");
139    
140          $sock->send( "Set-Cookie: ID=" . $state->{ID} . "; path=/\r\n" ) if ( $state->{ID} );          $sock->send( "Set-Cookie: ID=" . $state->{ID} . "; path=/\r\n" ) if ( $state->{ID} );
141                    
142          my $xml = '';          my $xml = '';
143    
144          if ( my $dispatch = $state->{_dispatch} ) {          if ( my $dispatch = $state->{_dispatch} ) {
145                  if ( $response->can( $dispatch ) ) {                  $xml = $self->dispatch( $dispatch );
146                          warn ">>> dispatching to $dispatch\n";          } elsif ( $dispatch = shift @{ $self->queue } ) {
147                          $xml = $response->$dispatch( $state ) . "\r\n";                  $xml = $self->dispatch( $dispatch );
148                          warn "## response payload: ",length($xml)," bytes\n$xml\n";          } elsif ( $size == 0 ) {
149                  } else {                  warn ">>> closing connection\n";
150                          confess "can't dispatch to $dispatch";                  return 0;
                 }  
151          } else {          } else {
152                  warn ">>> empty response\n";                  warn ">>> empty response\n";
153                    $state->{NoMoreRequests} = 1;
154                    $xml = $self->dispatch( 'xml', sub {} );
155          }          }
156    
157          $sock->send( "Content-Length: " . length( $xml ) . "\r\n\r\n" );          $sock->send( "Content-Length: " . length( $xml ) . "\r\n\r\n" );
158          $sock->send( "$xml\r\n\r\n" ) or die "can't send response";          $sock->send( $xml ) or die "can't send response";
159    
160          warn "### request over";          warn ">>>> " . $sock->peerhost . " [" . localtime() . "] sent ", length( $xml )," bytes\n";
161    
162  };          warn "### request over\n" if $self->debug;
163    
164            return 1;       # next request
165    };
166    
167  sub read_headers {  =head2 dispatch
   my $self = shift;  
168    
169    $self->{headers} = {};    $xml = $self->dispatch('Inform', $response_arguments );
170    
171    while (defined($_ = $self->sock->getline)) {  If debugging level of 3 or more, it will create dumps of responses named C<< dump/nr.response >>
     s/[\r\n]+$//;  
     last unless length $_;  
         warn "-- $_\n";  
     return 0 if ! /^ ([\w\-]+) :[\ \t]* (.*) $/x;  
     $self->{headers}->{$1} = $2;  
   }  
172    
173    return 1;  =cut
 }  
174    
175  sub header {  sub dispatch {
176          my $self = shift;          my $self = shift;
177          my $header = shift || die "no header?";  
178          if ( defined( $self->{headers}->{$header} )) {          my $dispatch = shift || die "no dispatch?";
179                  return $self->{headers}->{$header};  
180            my $response = CWMP::Response->new({ debug => $self->debug });
181    
182            if ( $response->can( $dispatch ) ) {
183                    warn ">>> dispatching to $dispatch\n";
184                    my $xml = $response->$dispatch( $self->state, @_ );
185                    warn "## response payload: ",length($xml)," bytes\n$xml\n" if $self->debug;
186                    if ( $self->debug > 2 ) {
187                            my $file = sprintf("dump/%04d.response", $dump_nr++);
188                            write_file( $file, $xml );
189                            warn "### response dump: $file\n";
190                    }
191                    return $xml;
192          } else {          } else {
193                  return;                  confess "can't dispatch to $dispatch";
194          }          }
195  }  };
196    
 sub content_type {  
   my ($self, $type) = @_;  
   $self->http_header;  
   return "Content-type: $type\r\n";  
 }  
197    
198  sub error{  =head2 error
   my ($self, $number, $msg) = @_;  
   $self->sock->send( $self->status($number, $msg) . "\r\n" );  
   warn "Error - $number - $msg\n";  
 }  
199    
200  sub status {    return $self->error( 501, 'System error' );
   my ($self, $number, $msg) = @_;  
   $msg = '' if ! defined $msg;  
   return if $self->http_header($number);  
   return "Status $number: $msg\r\n";  
 }  
201    
202  sub http_header {  =cut
203    my $self = shift;  
204    my $number = shift || 200;  sub error {
205    return if ! delete $self->{needs_header};    my ($self, $number, $msg) = @_;
206    $self->sock->send("HTTP/1.1 $number\r\n");    $msg ||= 'ERROR';
207    return 1;    $self->sock->send( "HTTP/1.1 $number $msg\r\n" );
208      warn "Error - $number - $msg\n";
209      return 0;     # close connection
210  }  }
211    
212  1;  1;

Legend:
Removed from v.43  
changed lines
  Added in v.119

  ViewVC Help
Powered by ViewVC 1.1.26