]> git.evergreen-ils.org Git - working/SIPServer.git/blob - SIPServer.pm
LP#1227273: Clear account info at start and end of connection
[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->{account} = undef; # New connection, no need to keep login info
117     $self->{config} = $config;
118
119     $sockaddr = $self->{server}->{sockaddr};
120     $port     = $self->{server}->{sockport};
121     $proto    = $self->{server}->{client}->NS_proto();
122     syslog('LOG_INFO', "Inbound connection from $sockaddr on port $port and proto $proto");
123
124     $self->{service} = $config->find_service( $sockaddr, $port, $proto );
125
126     if (! defined($self->{service})) {
127         syslog( "LOG_ERR", "process_request: Unrecognized server connection: %s:%s/%s",
128             $sockaddr, $port, $proto );
129         die "process_request: Bad server connection";
130     }
131
132     $transport = $transports{ $self->{service}->{transport} };
133
134     if ( !defined($transport) ) {
135         syslog("LOG_WARNING", "Unknown transport '%s', dropping", $service->{transport});
136         return;
137     } else {
138         &$transport($self);
139         # Transport has shut down, remove any lingering login info
140         $self->{account} = undef;
141     }
142 }
143
144 #
145 # Transports
146 #
147
148 sub raw_transport {
149     my $self = shift;
150     my ($uid, $pwd);
151     my $input;
152     my $service = $self->{service};
153     my $strikes = 3;
154     my $inst;
155     my $timeout = $self->{service}->{timeout} || $self->{config}->{timeout} || 0;
156
157     eval {
158         local $SIG{ALRM} = sub { die "raw_transport Timed Out!\n"; };
159         syslog("LOG_DEBUG", "raw_transport: timeout is $timeout");
160
161     while ($strikes--) {
162         alarm $timeout;
163         $input = Sip::read_SIP_packet(*STDIN);
164         alarm 0;
165
166         if (!$input) {
167             # EOF on the socket
168             syslog("LOG_INFO", "raw_transport: shutting down: EOF during login");
169             return;
170         } elsif ($input !~ /\S/) {
171             syslog("LOG_INFO", "raw_transport: received whitespace line (length %s) during login, skipping", length($input));
172             next;
173         }
174         $input =~ s/[\r\n]+$//sm;       # Strip off trailing line terminator
175         last if Sip::MsgType::handle($input, $self, LOGIN);
176     }
177     };
178
179     if ($@) {
180         syslog("LOG_ERR", "raw_transport: LOGIN ERROR: '$@'");
181         die "raw_transport: login error (timeout? $@), exiting";
182     } elsif (!$self->{account}) {
183         syslog("LOG_ERR", "raw_transport: LOGIN FAILED");
184         die "raw_transport: Login failed (no account), exiting";
185     }
186
187     syslog("LOG_DEBUG", "raw_transport: uname/inst: '%s/%s'",
188         $self->{account}->{id},
189         $self->{account}->{institution});
190
191     $self->sip_protocol_loop();
192
193     syslog("LOG_INFO", "raw_transport: shutting down");
194 }
195
196 sub telnet_transport {
197     my $self = shift;
198     my ($uid, $pwd);
199     my $strikes = 3;
200     my $account = undef;
201     my $input;
202     my $config = $self->{config};
203     my $timeout = $self->{service}->{timeout} || $config->{timeout} || 0;
204     syslog("LOG_DEBUG", "telnet_transport: timeout is %s", $timeout);
205
206     # Until the terminal has logged in, we don't trust it
207     # so use a timeout to protect ourselves from hanging.
208     eval {
209     local $SIG{ALRM} = sub { die "telnet_transport: Timed Out ($timeout seconds)!\n";; };
210     local $| = 1;                       # Unbuffered output
211
212     while ($strikes--) {
213         print "login: ";
214         alarm $timeout;
215         $uid = <STDIN>;
216         alarm 0;
217
218         print "password: ";
219         alarm $timeout;
220         $pwd = <STDIN>;
221         alarm 0;
222
223         $uid =~ s/[\r\n]+$//;
224         $pwd =~ s/[\r\n]+$//;
225
226         if (exists($config->{accounts}->{$uid})
227         && ($pwd eq $config->{accounts}->{$uid}->password())) {
228             $account = $config->{accounts}->{$uid};
229             last;
230         } else {
231             syslog("LOG_WARNING", "Invalid login attempt: '%s'", $uid);
232             print("Invalid login$CRLF");
233         }
234     }
235     }; # End of eval
236
237     if ($@) {
238         syslog("LOG_ERR", "telnet_transport: Login timed out");
239         die "Telnet Login Timed out";
240     } elsif (!defined($account)) {
241         syslog("LOG_ERR", "telnet_transport: Login Failed");
242         die "Login Failure";
243     } else {
244         print "Login OK.  Initiating SIP$CRLF";
245     }
246
247     $self->{account} = $account;
248     syslog("LOG_DEBUG", "telnet_transport: uname/inst: '%s/%s'", $account->{id}, $account->{institution});
249     $self->sip_protocol_loop();
250     syslog("LOG_INFO", "telnet_transport: shutting down");
251 }
252
253
254 sub http_transport {
255 }
256
257 #
258 # The terminal has logged in, using either the SIP login process
259 # over a raw socket, or via the pseudo-unix login provided by the
260 # telnet transport.  From that point on, both the raw and the telnet
261 # processes are the same:
262 sub sip_protocol_loop {
263     my $self = shift;
264     my $expect;
265     my $service = $self->{service};
266     my $config  = $self->{config};
267     my $input;
268
269     # Now that the terminal has logged in, the first message
270     # we recieve must be an SC_STATUS message.  But it might be
271     # an SC_REQUEST_RESEND.  So, as long as we keep receiving
272     # SC_REQUEST_RESEND, we keep waiting for an SC_STATUS
273
274     # Comprise reports that no other ILS actually enforces this
275     # constraint, so we'll relax about it too.  As long as everybody
276     # uses the SIP "raw" login process, rather than telnet, this
277     # will be fine, becaues the LOGIN protocol exchange will force
278     # us into SIP 2.00 anyway.  Machines that want to log in using
279     # telnet MUST send an SC Status message first, even though we're
280     # not enforcing it.
281     # 
282     #$expect = SC_STATUS;
283     $expect = '';
284
285     while ( $input = Sip::read_SIP_packet(*STDIN) ) {
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     }
304 }