1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
|
#!/usr/bin/perl
# make sure that ACK to error response gets passed through proxy
use strict;
use warnings;
use Test::More;
do './testlib.pl' || do './t/testlib.pl' || die "no testlib";
use Net::SIP ':all';
use Net::SIP::NATHelper::Local;
use Net::SIP::NATHelper::Server;
use Net::SIP::NATHelper::Client;
use Net::SIP::Blocker;
my @tests;
for my $transport (qw(udp tcp tls)) {
for my $family (qw(ip4 ip6)) {
for my $nat ('no-nat', 'inline-nat', 'remote-nat') {
push @tests, [ $transport, $family, $nat ];
}
}
}
#@tests = ['udp','ip4','no-nat'];
my $testsize = 19;
plan tests => $testsize*@tests;
for my $t (@tests) {
my ($transport,$family,$nat) = @$t;
SKIP: {
if (my $err = test_use_config($family,$transport)) {
skip $err,$testsize;
next;
}
note("------- test with family $family transport $transport $nat");
do_test($transport,$nat)
}
}
killall();
sub do_test {
my ($transport,$natspec) = @_;
my ($luac,$luas,@lproxy);
for (
[ 'caller.sip.test', \$luac ],
[ 'listen.sip.test', \$luas ],
[ 'proxy.sip.test', \$lproxy[0] ],
[ 'proxy.sip.test', \$lproxy[1] ],
) {
my ($name,$config) = @$_;
my ($sock,$addr) = create_socket($transport);
$$config = {
name => $name,
sock => $sock,
addr => $addr,
uri => test_sip_uri($addr),
};
}
note( "UAS on $luas->{addr} " );
note( "UAC on $luac->{addr} " );
note( "PROXY on $lproxy[0]{addr} $lproxy[1]{addr} " );
# restrict legs of proxy so that packets gets routed even
# if all is on the same interface. Enable dumping on
# incoing and outgoing packets to check NAT
for ( $luac,$luas,$lproxy[0],$lproxy[1] ) {
$_->{leg} = TestLeg->new(
sock => $_->{sock},
dump_incoming => [ \&sip_dump_media,'I<' ],
dump_outgoing => [ \&sip_dump_media,'O>' ],
$_ == $lproxy[0] ? ( can_deliver_to => $luac->{addr} ) :(),
$_ == $lproxy[1] ? ( can_deliver_to => $luas->{addr} ) :(),
test_leg_args($_->{name}),
);
}
# socket for nathelper server
my ($nath_sock,$nath_addr) = create_socket('tcp') or die $!;
my $natcb;
if ( $natspec eq 'inline-nat' ) {
$natcb = sub { NATHelper_Local->new( shift ) };
ok(1,'no fork nathelper');
} elsif ( $natspec eq 'remote-nat' ) {
fork_sub( 'nathelper',$nath_sock );
$natcb = sub { NATHelper_Client->new( $nath_addr ) }
} else {
ok(1,'no fork nathelper');
}
# start proxy and UAS and wait until they are ready
my $proxy = fork_sub( 'proxy', @lproxy,$luas->{uri},$natcb );
my $uas = fork_sub( 'uas', $luas );
fd_grep_ok( 'ready',10,$proxy ) || die;
fd_grep_ok( 'ready',10,$uas ) || die;
# UAC: invite
my $uac = fork_sub( 'uac', $luac, $lproxy[0]{uri} );
fd_grep_ok( 'ready',10,$uac ) || die;
fd_grep_ok( qr{O>.*REQ\(INVITE\) SDP: audio=\S+},5,$uac ) || die;
fd_grep_ok( qr{I<.*REQ\(INVITE\) SDP: audio=\S+},5,$proxy ) || die;
fd_grep_ok( qr{O>.*REQ\(INVITE\) SDP: audio=\S+},1,$proxy ) || die;
fd_grep_ok( qr{I<.*REQ\(INVITE\) SDP: audio=\S+},1,$uas ) || die;
# UAS: reject with error 404 - propagate to uac via proxy
fd_grep_ok( qr{O>.*RSP\(INVITE,404\)},5,$uas) || die;
fd_grep_ok( qr{I<.*RSP\(INVITE,404\)},5,$proxy) || die;
fd_grep_ok( qr{O>.*RSP\(INVITE,404\)},1,$proxy) || die;
fd_grep_ok( qr{I<.*RSP\(INVITE,404\)},1,$uac) || die;
# UAC: reply with ACK to error - propagate to uas via proxy
fd_grep_ok( qr{O>.*REQ\(ACK\)},5,$uac ) || die;
fd_grep_ok( qr{I<.*REQ\(ACK\)},5,$proxy ) || die;
fd_grep_ok( qr{O>.*REQ\(ACK\)},1,$proxy ) || die;
fd_grep_ok( qr{I<.*REQ\(ACK\)},1,$uas ) || die;
killall();
}
killall();
#############################################################################
# Proxy
#############################################################################
sub proxy {
my ($lsock_c,$lsock_s,$proxy_uri,$natcb) = @_;
# need loop separately
my $loop = Dispatcher_Eventloop->new;
my $nathelper = invoke_callback( $natcb,$loop );
# create Net::SIP::Simple object
my $proxy = Simple->new(
loop => $loop,
legs => [ $lsock_c->{leg}, $lsock_s->{leg} ],
domain2proxy => { 'example.com' => $proxy_uri },
);
$proxy->create_stateless_proxy(
nathelper => $nathelper
);
print "ready\n";
$proxy->loop;
}
#############################################################################
# UAC
#############################################################################
sub uac {
my ($leg,$proxy_uri) = @_;
my $ua = Simple->new(
from => '<sip:me.uac@example.com>',
leg => $leg->{leg},
outgoing_proxy => $proxy_uri,
);
print "ready\n";
my $done;
my $call = $ua->invite('<sip:you.uas@example.com>',
cb_final => \$done,
) or die;
$ua->loop(10,\$done);
$ua->cleanup;
}
#############################################################################
# UAS
#############################################################################
sub uas {
my ($leg) = @_;
print "UAS created\n";
my $ua = Simple->new(
from => '<sip:me.uas@example.com>',
leg => $leg->{leg},
);
print "ready\n";
$ua->listen(
cb_invite => sub {
my ($self,$request) = @_;
return $request->create_response('404','unknown',{});
}
);
$ua->loop(10);
}
# --------------------------------------------------------------
# NATHelper::Server
# --------------------------------------------------------------
sub nathelper {
my $sock = shift;
NATHelper_Server->new( $sock )->loop;
}
|