2 package C4
::SIP
::SIPServer
;
8 use Sys::Syslog qw(syslog);
9 use Net
::Server
::PreFork
;
11 use Socket
qw(:DEFAULT :crlf);
12 require UNIVERSAL
::require;
14 use C4
::SIP
::Sip
::Constants
qw(:all);
15 use C4
::SIP
::Sip
::Configuration
;
16 use C4
::SIP
::Sip
::Checksum
qw(checksum verify_cksum);
17 use C4
::SIP
::Sip
::MsgType
qw( handle login_core );
19 use base
qw(Net::Server::PreFork);
21 use constant LOG_SIP
=> "local6"; # Local alias for the logging facility
24 # Main # not really, since package SIPServer
26 # FIXME: Is this a module or a script?
27 # A script with no MAIN namespace?
28 # A module that takes command line args?
31 RAW
=> \
&raw_transport
,
32 telnet
=> \
&telnet_transport
,
38 my $config = C4
::SIP
::Sip
::Configuration
->new( $ARGV[0] );
44 foreach my $svc (keys %{$config->{listeners
}}) {
45 push @parms, "port=" . $svc;
51 # Log lines look like this:
52 # Jun 16 21:21:31 server08 steve_sip[19305]: ILS::Transaction::Checkout performing checkout...
53 # [ TIMESTAMP ] [ HOST ] [ IDENT ] PID : Message...
55 # The IDENT is determined by config file 'server-params' arguments
59 # Server Management: set parameters for the Net::Server::PreFork
60 # module. The module silently ignores parameters that it doesn't
61 # recognize, and complains about invalid values for parameters
64 if (defined($config->{'server-params'})) {
65 while (my ($key, $val) = each %{$config->{'server-params'}}) {
66 push @parms, $key . '=' . $val;
72 # This is the main event.
73 __PACKAGE__
->run(@parms);
79 # process_request is the callback used by Net::Server to handle
80 # an incoming connection request.
85 my ($sockaddr, $port, $proto);
88 $self->{config
} = $config;
90 my $sockname = getsockname(STDIN
);
92 # Check if socket connection is IPv6 before resolving address
93 my $family = Socket
::sockaddr_family
($sockname);
94 if ($family == AF_INET6
) {
95 ($port, $sockaddr) = sockaddr_in6
($sockname);
96 $sockaddr = Socket
::inet_ntop
(AF_INET6
, $sockaddr);
98 ($port, $sockaddr) = sockaddr_in
($sockname);
99 $sockaddr = inet_ntoa
($sockaddr);
101 $proto = $self->{server
}->{client
}->NS_proto();
103 $self->{service
} = $config->find_service($sockaddr, $port, $proto);
105 if (!defined($self->{service
})) {
106 syslog
("LOG_ERR", "process_request: Unknown recognized server connection: %s:%s/%s", $sockaddr, $port, $proto);
107 die "process_request: Bad server connection";
110 $transport = $transports{$self->{service
}->{transport
}};
112 if (!defined($transport)) {
113 syslog
("LOG_WARNING", "Unknown transport '%s', dropping", $service->{transport
});
128 my $service = $self->{service
};
129 # If using Net::Server::PreFork you may already have account set from a previous session
131 if ($self->{account
}) {
132 delete $self->{account
};
135 # Timeout the while loop if we get stuck in it
136 # In practice it should only iterate once but be prepared
137 local $SIG{ALRM
} = sub { die 'raw transport Timed Out!' };
138 my $timeout = $self->get_timeout({ transport
=> 1 });
139 syslog
('LOG_DEBUG', "raw_transport: timeout is $timeout");
141 while (!$self->{account
}) {
142 $input = read_request
();
145 syslog
("LOG_INFO", "raw_transport: shutting down: EOF during login");
148 $input =~ s/[\r\n]+$//sm; # Strip off trailing line terminator(s)
149 my $reg = qr/^${\(LOGIN)}/;
150 last if $input !~ $reg ||
151 C4
::SIP
::Sip
::MsgType
::handle
($input, $self, LOGIN
);
155 syslog
("LOG_DEBUG", "raw_transport: uname/inst: '%s/%s'",
156 $self->{account
}->{id
},
157 $self->{account
}->{institution
});
158 if (! $self->{account
}->{id
}) {
159 syslog
("LOG_ERR","Login failed shutting down");
163 $self->sip_protocol_loop();
164 syslog
("LOG_INFO", "raw_transport: shutting down");
168 sub get_clean_string
{
170 if (defined $string) {
171 syslog
("LOG_DEBUG", "get_clean_string pre-clean(length %s): %s", length($string), $string);
173 $string =~ s/^[^A-z0-9]+//;
174 $string =~ s/[^A-z0-9]+$//;
175 syslog
("LOG_DEBUG", "get_clean_string post-clean(length %s): %s", length($string), $string);
177 syslog
("LOG_INFO", "get_clean_string called on undefined");
182 sub get_clean_input
{
185 $in = get_clean_string
($in);
186 while (my $extra = <STDIN
>){
187 syslog
("LOG_ERR", "get_clean_input got extra lines: %s", $extra);
192 sub telnet_transport
{
198 my $config = $self->{config
};
199 my $timeout = $self->get_timeout({ transport
=> 1 });
200 syslog
("LOG_DEBUG", "telnet_transport: timeout is $timeout");
203 local $SIG{ALRM
} = sub { die "telnet_transport: Timed Out ($timeout seconds)!\n"; };
204 local $| = 1; # Unbuffered output
205 $/ = "\015"; # Internet Record Separator (lax version)
206 # Until the terminal has logged in, we don't trust it
207 # so use a timeout to protect ourselves from hanging.
212 # $uid = &get_clean_input;
215 # $pwd = &get_clean_input || '';
219 syslog
("LOG_DEBUG", "telnet_transport 1: uid length %s, pwd length %s", length($uid), length($pwd));
220 $uid = get_clean_string
($uid);
221 $pwd = get_clean_string
($pwd);
222 syslog
("LOG_DEBUG", "telnet_transport 2: uid length %s, pwd length %s", length($uid), length($pwd));
224 if (exists ($config->{accounts
}->{$uid})
225 && ($pwd eq $config->{accounts
}->{$uid}->{password
})) {
226 $account = $config->{accounts
}->{$uid};
227 if ( C4
::SIP
::Sip
::MsgType
::login_core
($self,$uid,$pwd) ) {
231 syslog
("LOG_WARNING", "Invalid login attempt: '%s'", ($uid||''));
232 print("Invalid login$CRLF");
237 syslog
("LOG_ERR", "telnet_transport: Login timed out");
238 die "Telnet Login Timed out";
239 } elsif (!defined($account)) {
240 syslog
("LOG_ERR", "telnet_transport: Login Failed");
243 print "Login OK. Initiating SIP$CRLF";
246 $self->{account
} = $account;
247 syslog
("LOG_DEBUG", "telnet_transport: uname/inst: '%s/%s'", $account->{id
}, $account->{institution
});
248 $self->sip_protocol_loop();
249 syslog
("LOG_INFO", "telnet_transport: shutting down");
254 # The terminal has logged in, using either the SIP login process
255 # over a raw socket, or via the pseudo-unix login provided by the
256 # telnet transport. From that point on, both the raw and the telnet
257 # processes are the same:
258 sub sip_protocol_loop
{
260 my $service = $self->{service
};
261 my $config = $self->{config
};
262 my $timeout = $self->get_timeout({ client
=> 1 });
264 # The spec says the first message will be:
266 # SIP v2: LOGIN (or SC_STATUS via telnet?)
267 # But it might be SC_REQUEST_RESEND. As long as we get
268 # SC_REQUEST_RESEND, we keep waiting.
270 # Comprise reports that no other ILS actually enforces this
271 # constraint, so we'll relax about it too.
272 # Using the SIP "raw" login process, rather than telnet,
273 # requires the LOGIN message and forces SIP 2.00. In that
274 # case, the LOGIN message has already been processed (above).
276 # In short, we'll take any valid message here.
278 local $SIG{ALRM
} = sub {
279 syslog
( 'LOG_DEBUG', 'Inactive: timed out' );
282 my $previous_alarm = alarm($timeout);
284 while ( my $inputbuf = read_request
() ) {
285 if ( !defined $inputbuf ) {
291 syslog
( "LOG_ERR", "sip_protocol_loop: empty input skipped" );
296 my $status = C4
::SIP
::Sip
::MsgType
::handle
( $inputbuf, $self, q{} );
300 "sip_protocol_loop: failed to handle %s",
301 substr( $inputbuf, 0, 2 )
304 next if $status eq REQUEST_ACS_RESEND
;
306 alarm($previous_alarm);
309 if ( $@
=~ m/timed out/i ) {
319 # proper SPEC: (octal) \015 = (hex) x0D = (dec) 13 = (ascii) carriage return
320 my $buffer = <STDIN
>;
321 if ( defined $buffer ) {
322 STDIN
->flush(); # clear an extra linefeed
324 $raw_length = length $buffer;
325 $buffer =~ s/^\s*[^A-z0-9]+//s;
326 # Every line must start with a "real" character. Not whitespace, control chars, etc.
327 $buffer =~ s/[^A-z0-9]+$//s;
329 # Same for the end. Note this catches the problem some clients have sending empty fields at the end, like |||
330 $buffer =~ s/\015?\012//g; # Extra line breaks must die
331 $buffer =~ s/\015?\012//s; # Extra line breaks must die
332 $buffer =~ s/\015*\012*$//s;
334 # treat as one line to include the extra linebreaks we are trying to remove!
337 syslog
( 'LOG_DEBUG', 'EOF returned on read' );
340 my $len = length $buffer;
341 if ( $len != $raw_length ) {
342 my $trim = $raw_length - $len;
343 syslog
( 'LOG_DEBUG', "read_request trimmed $trim character(s) " );
346 syslog
( 'LOG_INFO', "INPUT MSG: '$buffer'" );
350 # $server->get_timeout({ $type => 1, fallback => $fallback });
351 # where $type is transport | client | policy
353 # Centralizes all timeout logic.
354 # Transport refers to login process, client to active connections.
355 # Policy timeout is transaction timeout (used in ACS status message).
357 # Fallback is optional. If you do not pass transport, client or policy,
358 # you will get fallback or hardcoded default.
361 my ( $server, $params ) = @_;
362 my $fallback = $params->{fallback
} || 30;
363 my $service = $server->{service
} // {};
364 my $config = $server->{config
} // {};
366 if( $params->{transport
} ||
367 ( $params->{client
} && !exists $service->{client_timeout
} )) {
368 # We do not allow zero values here.
369 # Note: config/timeout seems to be deprecated.
370 return $service->{timeout
} || $config->{timeout
} || $fallback;
372 } elsif( $params->{client
} ) {
373 # We know that client_timeout exists now.
374 # We do allow zero values here to indicate no timeout.
375 return 0 if $service->{client_timeout
} =~ /^0+$|\D/;
376 return $service->{client_timeout
};
378 } elsif( $params->{policy
} ) {
379 my $policy = $server->{policy
} // {};
380 my $rv = sprintf( "%03d", $policy->{timeout
} // 0 );
381 if( length($rv) != 3 ) {
382 syslog
( "LOG_ERR", "Policy timeout has wrong size: '%s'", $rv );