]> git.evergreen-ils.org Git - working/SIPServer.git/blob - SIPServer.pm
f34afa67813957d0f8c2d3ea75756f99b7b49df7
[working/SIPServer.git] / SIPServer.pm
1 #
2 # Copyright (C) 2006-2008  Georgia Public Library Service
3
4 # Author: David J. Fiander
5
6 # This program is free software; you can redistribute it and/or
7 # modify it under the terms of version 2 of the GNU General Public
8 # License as published by the Free Software Foundation.
9
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14
15 # You should have received a copy of the GNU General Public
16 # License along with this program; if not, write to the Free
17 # Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
18 # MA 02111-1307 USA
19
20 package SIPServer;
21
22 use strict;
23 use warnings;
24 use Exporter;
25 use Sys::Syslog qw(syslog);
26 use Net::Server::PreFork;
27 use Net::Server::Proto;
28 use IO::Socket::INET;
29 use Socket qw(:crlf);
30 use Data::Dumper;               # For debugging
31 require UNIVERSAL::require;
32
33 #use Sip qw(readline);
34 use Sip::Constants qw(:all);
35 use Sip::Configuration;
36 use Sip::Checksum qw(checksum verify_cksum);
37 use Sip::MsgType;
38
39 use constant LOG_SIP => "local6"; # Local alias for the logging facility
40
41 our $VERSION = 0.02;
42 our @ISA = qw(Net::Server::PreFork);
43 #
44 # Main
45 #
46
47 my %transports = (
48     RAW    => \&raw_transport,
49     telnet => \&telnet_transport,
50     http   => \&http_transport,
51 );
52
53 # Read configuration
54
55 my $config = Sip::Configuration->new($ARGV[0]);
56
57 my @parms;
58
59 #
60 # Ports to bind
61 #
62 foreach my $svc (keys %{$config->{listeners}}) {
63     push @parms, "port=" . $svc;
64 }
65
66 #
67 # Logging
68 #
69 # Log lines look like this:
70 # Jun 16 21:21:31 server08 steve_sip: Sip::MsgType::_initialize('Login', ...)
71 # [  TIMESTAMP  ] [ HOST ] [ IDENT ]: Message...
72 #
73 # The IDENT is determined by $ENV{SIP_LOG_IDENT}, if present.
74 # Otherwise it is "_sip" appended to $USER, if present, or "acs-server" as a fallback.
75 #
76
77 my $syslog_ident = $ENV{SIP_LOG_IDENT} || ($ENV{USER} ? $ENV{USER} . "_sip" : 'acs-server');
78
79 push @parms,
80     "log_file=Sys::Syslog",
81     "syslog_ident=$syslog_ident",
82     "syslog_facility=" . LOG_SIP;
83
84 #
85 # Server Management: set parameters for the Net::Server::PreFork
86 # module.  The module silently ignores parameters that it doesn't
87 # recognize, and complains about invalid values for parameters
88 # that it does.
89 #
90 if (defined($config->{'server-params'})) {
91     while (my ($key, $val) = each %{$config->{'server-params'}}) {
92         push @parms, $key . '=' . $val;
93     }
94 }
95
96 print Dumper(@parms);
97
98 #
99 # This is the main event.
100 SIPServer->run(@parms);
101
102 #
103 # Child
104 #
105
106 # process_request is the callback used by Net::Server to handle
107 # an incoming connection request.
108
109 sub process_request {
110     my $self = shift;
111     my $service;
112     my $sockname;
113     my ($sockaddr, $port, $proto);
114     my $transport;
115
116     $self->{config} = $config;
117
118     $sockaddr = $self->{server}->{sockaddr};
119     $port     = $self->{server}->{sockport};
120     $proto    = $self->{server}->{client}->NS_proto();
121     syslog('LOG_INFO', "Inbound connection from $sockaddr on port $port and proto $proto");
122
123     $self->{service} = $config->find_service( $sockaddr, $port, $proto );
124
125     if (! defined($self->{service})) {
126         syslog( "LOG_ERR", "process_request: Unrecognized server connection: %s:%s/%s",
127             $sockaddr, $port, $proto );
128         die "process_request: Bad server connection";
129     }
130
131     $transport = $transports{ $self->{service}->{transport} };
132
133     if ( !defined($transport) ) {
134         syslog("LOG_WARNING", "Unknown transport '%s', dropping", $service->{transport});
135         return;
136     } else {
137         &$transport($self);
138     }
139 }
140
141 #
142 # Transports
143 #
144
145 sub raw_transport {
146     my $self = shift;
147     my ($uid, $pwd);
148     my $input;
149     my $service = $self->{service};
150     my $strikes = 3;
151     my $inst;
152     my $timeout = $self->{service}->{timeout} || $self->{config}->{timeout} || 0;
153
154     eval {
155         local $SIG{ALRM} = sub { die "raw_transport Timed Out!\n"; };
156         syslog("LOG_DEBUG", "raw_transport: timeout is $timeout");
157
158     while ($strikes--) {
159         alarm $timeout;
160         $input = Sip::read_SIP_packet(*STDIN);
161         alarm 0;
162
163         if (!$input) {
164             # EOF on the socket
165             syslog("LOG_INFO", "raw_transport: shutting down: EOF during login");
166             return;
167         } elsif ($input !~ /\S/) {
168             syslog("LOG_INFO", "raw_transport: received whitespace line (length %s) during login, skipping", length($input));
169             next;
170         }
171         $input =~ s/[\r\n]+$//sm;       # Strip off trailing line terminator
172         last if Sip::MsgType::handle($input, $self, LOGIN);
173     }
174     };
175
176     if ($@) {
177         syslog("LOG_ERR", "raw_transport: LOGIN ERROR: '$@'");
178         die "raw_transport: login error (timeout? $@), exiting";
179     } elsif (!$self->{account}) {
180         syslog("LOG_ERR", "raw_transport: LOGIN FAILED");
181         die "raw_transport: Login failed (no account), exiting";
182     }
183
184     syslog("LOG_DEBUG", "raw_transport: uname/inst: '%s/%s'",
185         $self->{account}->{id},
186         $self->{account}->{institution});
187
188     $self->sip_protocol_loop();
189
190     syslog("LOG_INFO", "raw_transport: shutting down");
191 }
192
193 sub telnet_transport {
194     my $self = shift;
195     my ($uid, $pwd);
196     my $strikes = 3;
197     my $account = undef;
198     my $input;
199     my $config = $self->{config};
200     my $timeout = $self->{service}->{timeout} || $config->{timeout} || 0;
201     syslog("LOG_DEBUG", "telnet_transport: timeout is %s", $timeout);
202
203     # Until the terminal has logged in, we don't trust it
204     # so use a timeout to protect ourselves from hanging.
205     eval {
206     local $SIG{ALRM} = sub { die "telnet_transport: Timed Out ($timeout seconds)!\n";; };
207     local $| = 1;                       # Unbuffered output
208
209     while ($strikes--) {
210         print "login: ";
211         alarm $timeout;
212         $uid = <STDIN>;
213         alarm 0;
214
215         print "password: ";
216         alarm $timeout;
217         $pwd = <STDIN>;
218         alarm 0;
219
220         $uid =~ s/[\r\n]+$//;
221         $pwd =~ s/[\r\n]+$//;
222
223         if (exists($config->{accounts}->{$uid})
224         && ($pwd eq $config->{accounts}->{$uid}->password())) {
225             $account = $config->{accounts}->{$uid};
226             last;
227         } else {
228             syslog("LOG_WARNING", "Invalid login attempt: '%s'", $uid);
229             print("Invalid login$CRLF");
230         }
231     }
232     }; # End of eval
233
234     if ($@) {
235         syslog("LOG_ERR", "telnet_transport: Login timed out");
236         die "Telnet Login Timed out";
237     } elsif (!defined($account)) {
238         syslog("LOG_ERR", "telnet_transport: Login Failed");
239         die "Login Failure";
240     } else {
241         print "Login OK.  Initiating SIP$CRLF";
242     }
243
244     $self->{account} = $account;
245     syslog("LOG_DEBUG", "telnet_transport: uname/inst: '%s/%s'", $account->{id}, $account->{institution});
246     $self->sip_protocol_loop();
247     syslog("LOG_INFO", "telnet_transport: shutting down");
248 }
249
250
251 sub http_transport {
252 }
253
254 #
255 # The terminal has logged in, using either the SIP login process
256 # over a raw socket, or via the pseudo-unix login provided by the
257 # telnet transport.  From that point on, both the raw and the telnet
258 # processes are the same:
259 sub sip_protocol_loop {
260     my $self = shift;
261     my $expect;
262     my $service = $self->{service};
263     my $config  = $self->{config};
264     my $input;
265     my $timeout = $self->{service}->{timeout} || $config->{timeout} || 0;
266
267     # Now that the terminal has logged in, the first message
268     # we recieve must be an SC_STATUS message.  But it might be
269     # an SC_REQUEST_RESEND.  So, as long as we keep receiving
270     # SC_REQUEST_RESEND, we keep waiting for an SC_STATUS
271
272     # Comprise reports that no other ILS actually enforces this
273     # constraint, so we'll relax about it too.  As long as everybody
274     # uses the SIP "raw" login process, rather than telnet, this
275     # will be fine, becaues the LOGIN protocol exchange will force
276     # us into SIP 2.00 anyway.  Machines that want to log in using
277     # telnet MUST send an SC Status message first, even though we're
278     # not enforcing it.
279     # 
280     #$expect = SC_STATUS;
281     $expect = '';
282
283     alarm $timeout; # First loop timeout
284     while ( $input = Sip::read_SIP_packet(*STDIN) ) {
285         alarm 0; # Don't timeout while we are processing
286         $input =~ s/[\r\n]+$//sm;    # Strip off any trailing line ends
287
288         my $status = Sip::MsgType::handle($input, $self, $expect);
289         next if $status eq REQUEST_ACS_RESEND;
290
291         if (!$status) {
292             syslog("LOG_ERR", "raw_transport: failed to handle %s", substr($input,0,2));
293             die "sip_protocol_loop: failed Sip::MsgType::handle('$input', $self, '$expect')";
294         }
295         elsif ($expect && ($status ne $expect)) {
296             # We received a non-"RESEND" that wasn't what we were expecting.
297             syslog("LOG_ERR", "raw_transport: expected %s, received %s, exiting", $expect, $input);
298             die "sip_protocol_loop: exiting: expected '$expect', received '$status'";
299         }
300
301         # We successfully received and processed what we were expecting
302         $expect = '';
303         alarm $timeout; # Next loop timeout
304     }
305 }