3 # Copyright (C) 2014 Todd Lyons
4 # License GPLv2: GNU GPL version 2
5 # <http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>
7 # This script emulates a proxy which uses Proxy Protocol to communicate
8 # to a backend server. It should be run from an IP which is configured
9 # to be a Proxy Protocol connection (or not, if you are testing error
10 # scenarios) because Proxy Protocol specs require not to fall back to a
13 # The script is interactive, so when you run it, you are expected to
14 # perform whatever conversation is required for the protocol being
15 # tested. It uses STDIN/STDOUT, so you can also pipe output to/from the
16 # script. It was originally written to test Exim's Proxy Protocol
17 # code, and it could be tested like this:
19 # swaks --pipe 'perl proxy_protocol_client.pl --server-ip
20 # host.internal.lan' --from user@example.com --to user@example.net
41 &usage() if ($opts{help} || !$opts{'server-ip'});
43 my ($dest_ip,$source_ip,$dest_port,$source_port);
45 my $status_line = "Testing Proxy Protocol Version " .
46 ($opts{version} ? $opts{version} : '2') .
49 # All ip's and ports are in network byte order in version 2 mode, but are
50 # simple strings when in version 1 mode. The binary_pack_*() functions
51 # return the required data for the Proxy Protocol version being used.
53 # Use provided source or fall back to www.mrball.net
54 $source_ip = $opts{'source-ip'} ? binary_pack_ip($opts{'source-ip'}) :
56 binary_pack_ip("2001:470:d:367::50") :
57 binary_pack_ip("208.89.139.252");
58 $source_port = $opts{'source-port'} ?
59 binary_pack_port($opts{'source-port'}) :
60 binary_pack_port(43118);
62 $status_line .= "-> " if (!$opts{version} || $opts{version} == 2);
64 # Use provided dest or fall back to mail.exim.org
65 $dest_ip = $opts{'dest-ip'} ? binary_pack_ip($opts{'dest-ip'}) :
67 binary_pack_ip("2001:630:212:8:204:23ff:fed6:b664") :
68 binary_pack_ip("131.111.8.192");
69 $dest_port = $opts{'dest-port'} ?
70 binary_pack_port($opts{'dest-port'}) :
73 # The IP and port of the Proxy Protocol backend real server being tested,
74 # don't binary pack it.
75 my $server_ip = $opts{'server-ip'};
76 my $server_port = $opts{'server-port'} ? $opts{'server-port'} : 25;
78 my $s = IO::Select->new(); # for socket polling
80 sub generate_preamble {
82 if (!$opts{version} || $opts{version} == 2) {
84 "\x0D\x0A\x0D\x0A\x00\x0D\x0A\x51\x55\x49\x54\x0A", # 12 byte v2 header
85 "\x21", # top 4 bits declares v2
86 # bottom 4 bits is command
87 $opts{6} ? "\x21" : "\x11", # inet6/4 and TCP (stream)
88 $opts{6} ? "\x00\x24" : "\x00\x0b", # 36 bytes / 12 bytes
97 "PROXY", " ", # Request proxy mode
98 $opts{6} ? "TCP6" : "TCP4", " ", # inet6/4 and TCP (stream)
105 $status_line .= join "", @preamble;
107 print "\n", $status_line, "\n";
108 print "\n" if (!$opts{version} || $opts{version} == 2);
112 sub binary_pack_port {
114 if ($opts{version} && $opts{version} == 1) {
116 if ($port && $port =~ /^\d+$/ && $port > 0 && $port < 65536);
117 die "Not a valid port: $port";
119 $status_line .= $port." ";
120 $port = pack "S", $port;
126 if ( $ip =~ m/\./ && !$opts{6}) {
127 if (IP4_valid($ip)) {
128 return $ip if ($opts{version} && $opts{version} == 1);
129 $status_line .= $ip.":";
130 $ip = pack "C*", split /\./, $ip;
132 else { die "Invalid IPv4: $ip"; }
134 elsif ($ip =~ m/:/ && $opts{6}) {
136 if (IP6_valid($ip)) {
137 return $ip if ($opts{version} && $opts{version} == 1);
138 $status_line .= $ip.":";
139 $ip = pack "S>*", map hex, split /:/, $ip;
141 else { die "Invalid IPv6: $ip"; }
143 else { die "Mismatching IP families passed: $ip"; }
149 my @ip = split /:/, $ip;
150 my $segments = scalar @ip;
151 return $ip if ($segments == 8);
153 for (my $count=1; $count <= $segments; $count++) {
154 my $block = $ip[$count-1];
157 $ip .= ":" unless $count == $segments;
159 elsif ($count == 1) {
160 # Somebody passed us ::1, fix it, but it's not really valid
164 $ip .= join ":", map "0", 0..(8-$segments);
174 return 0 unless ($ip =~ /^[0-9a-f:]+$/);
175 my @ip = split /:/, $ip;
176 return 0 if (scalar @ip != 8);
182 $ip =~ /^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/;
183 foreach ($1,$2,$3,$4){
184 if ($_ <256 && $_ >0) {next;}
193 # Check for input on both ends, recheck every 5 sec
194 for my $socket ($s->can_read(5)) {
195 my $remote = $socket_map{$socket};
197 my $read = $socket->sysread($buffer, 4096);
199 $remote->syswrite($buffer);
208 sub connect_stdin_to_proxy {
209 my $sock = new IO::Socket::INET(
210 PeerAddr => $server_ip,
211 PeerPort => $server_port,
215 die "Could not create socket: $!\n" unless $sock;
216 # Add sockets to the Select group
219 # Tie the sockets together using this hash
220 $socket_map{\*STDIN} = $sock;
221 $socket_map{$sock} = \*STDOUT;
226 chomp(my $prog = `basename $0`);
228 Usage: $prog [required] [optional]
230 --server-ip IP of server to test proxy configuration,
231 a hostname is ok, but for only this setting
233 --server-port Port server is listening on (default 25)
234 --6 IPv6 source/dest (default IPv4), if none specified,
235 some default, reverse resolvable IP's are used for
236 the source and dest ip/port
237 --dest-ip Public IP of the proxy server
238 --dest-port Port of public IP of proxy server
239 --source-ip IP connecting to the proxy server
240 --source-port Port of IP connecting to the proxy server
247 my $sock = connect_stdin_to_proxy();
248 my @preamble = generate_preamble();
249 print $sock @preamble;