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 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
|
package Net::Proxy::Connector::ssl;
use strict;
use warnings;
use Net::Proxy::Connector;
use IO::Socket::SSL;
use Scalar::Util qw( refaddr );
use Carp;
our @ISA = qw( Net::Proxy::Connector );
my %IS_SSL;
sub init {
my ($self) = @_;
# set up some defaults
$self->{host} ||= 'localhost';
}
# IN
sub listen {
my ($self) = @_;
my $sock;
# start as a SSL socket (default)
if ( !$self->{start_cleartext} ) {
$sock = IO::Socket::SSL->new(
Listen => 1,
LocalAddr => $self->{host},
LocalPort => $self->{port},
Proto => 'tcp',
map { $_ => $self->{$_} } grep { /^SSL_/ } keys %$self
);
# this exception is not catched by Net::Proxy
die "Can't listen on $self->{host} port $self->{port}: "
. IO::Socket::SSL::errstr()
unless $sock;
}
# or as a standard TCP socket, which may be upgraded later
else {
$sock = IO::Socket::INET->new(
Listen => 1,
LocalAddr => $self->{host},
LocalPort => $self->{port},
Proto => 'tcp',
);
# this exception is not catched by Net::Proxy
die "Can't listen on $self->{host} port $self->{port}: $!"
unless $sock;
}
# remember the class of the socket
$IS_SSL{ refaddr $sock } = !$self->{start_cleartext};
Net::Proxy->set_nick( $sock,
'SSL listener ' . $sock->sockhost() . ':' . $sock->sockport() );
Net::Proxy->info( 'Started '
. Net::Proxy->get_nick($sock) . ' as '
. ( $self->{start_cleartext} ? 'cleartext' : 'SSL' ) );
return $sock;
}
sub accept_from {
my ($self, $listen) = @_;
my $sock = $listen->accept();
die IO::Socket::SSL::errstr() if ! $sock;
Net::Proxy->set_nick( $sock,
$sock->peerhost() . ':'
. $sock->peerport() . ' -> '
. $sock->sockhost() . ':'
. $sock->sockport() );
Net::Proxy->notice( 'Accepted ' . Net::Proxy->get_nick( $sock ) );
return $sock;
}
# OUT
sub connect {
my ($self) = @_;
my $sock;
# connect as a SSL socket (default)
if ( !$self->{start_cleartext} ) {
$sock = IO::Socket::SSL->new(
PeerAddr => $self->{host},
PeerPort => $self->{port},
Proto => 'tcp',
Timeout => $self->{timeout},
map { $_ => $self->{$_} } grep { /^SSL_/ } keys %$self
);
}
# or as a standard TCP socket, which may be upgraded later
else {
$sock = IO::Socket::INET->new(
PeerAddr => $self->{host},
PeerPort => $self->{port},
Proto => 'tcp',
Timeout => $self->{timeout},
);
}
die $self->{start_cleartext} ? $! : IO::Socket::SSL::errstr() unless $sock;
return $sock;
}
# READ
*read_from = \&Net::Proxy::Connector::raw_read_from;
# WRITE
*write_to = \&Net::Proxy::Connector::raw_write_to;
# SSL-related methods
# upgrade the socket to SSL (if needed)
sub upgrade_SSL {
my ( $self, $sock ) = @_;
if ( $IS_SSL{ refaddr $sock } ) {
carp( Net::Proxy->get_nick($sock) . ' already is a SSL socket' );
return $sock;
}
IO::Socket::SSL->start_SSL(
$sock,
SSL_server => $self->is_in(),
map { $_ => $self->{$_} } grep { /^SSL_/ } keys %$self
);
$IS_SSL{ refaddr $sock } = 1;
Net::Proxy->notice( 'Upgraded ' . Net::Proxy->get_nick($sock) . ' to SSL' );
return $sock;
}
1;
__END__
=head1 NAME
Net::Proxy::Connector::ssl - SSL Net::Proxy connector
=head1 DESCRIPTION
C<Net::Proxy::Connecter::ssl> is a C<Net::Proxy::Connector>
that can manage SSL connections (thanks to C<IO::Socket::SSL>).
By default, this connector creates SSL sockets. You will need to
subclass it to create "smarter" connectors than can upgrade their
connections to SSL.
In addition to the options listed below, this connector accepts all
C<SSL_...> options to C<IO::Socket::SSL>. They are transparently passed
through to the appropriate C<IO::Socket::SSL> methods when needed.
=head1 CONNECTOR OPTIONS
The connector accept the following options:
=head2 C<in>
=over 4
=item * host
The listening address. If not given, the default is C<localhost>.
=item * port
The listening port.
=item * start_cleartext
If true, the connection will start in cleartext.
It is possible to upgrade a socket to using SSL with
the C<upgrade_SSL()> method.
=back
=head2 C<out>
=over 4
=item * host
The listening address. If not given, the default is C<localhost>.
=item * port
The listening port.
=item * start_cleartext
If true, the connection will start in cleartext.
It is possible to upgrade a socket to using SSL with
the C<upgrade_SSL()> method.
=back
=head1 METHODS
The C<Net::Proxy::Connector::ssl> connector has an extra method:
=over 4
=item upgrade_SSL( $sock )
This method will upgrade a cleartext socket to SSL.
If the socket is already in SSL, it will C<carp()>.
=back
=head1 CREATING A SELF-SIGNED CERTIFICATE
I tend to forget this information, and the openssl documentation
doesn't make this any clearer, so here are the most basic commands
needed to create your own self-signed certificate (courtesy David
Morel):
$ openssl genrsa -out key.pem 1024
$ openssl req -new -key key.pem -x509 -out cert.pem -days 365
A certificate is required is you want to run a SSL server or a proxy
with a C<Net::Proxy::Connector::ssl> as its C<in> connector.
Once the key and certificate have been created, you can use them
in your parameter list to C<< Net::Proxy->new() >> (they are passed through
to C<IO::Socket::SSL>):
Net::Proxy->new(
{
in => {
host => '0.0.0.0',
port => 443,
SSL_key_file => 'key.pem',
SSL_cert_file => 'cert.pem',
},
out => { type => 'tcp', port => '80' }
}
);
=head1 AUTHOR
Philippe 'BooK' Bruhat, C<< <book@cpan.org> >>.
=head1 COPYRIGHT
Copyright 2006 Philippe 'BooK' Bruhat, All Rights Reserved.
=head1 LICENSE
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=cut
|