/usr/share/perl5/Net/IPv4Addr.pm is in libnetwork-ipv4addr-perl 0.10.ds-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 | # IPv4Addr.pm - Perl module to manipulate IPv4 addresses.
#
# Author: Francis J. Lacoste <francis.lacoste@iNsu.COM>
#
# Copyright (C) 1999, 2000 iNsu Innovations Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms as perl itself.
#
package Net::IPv4Addr;
use strict;
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
BEGIN {
require Exporter;
require AutoLoader;
@ISA = qw(Exporter AutoLoader);
@EXPORT = qw();
%EXPORT_TAGS = (
all => [qw{ ipv4_parse ipv4_chkip
ipv4_network ipv4_broadcast
ipv4_cidr2msk ipv4_msk2cidr
ipv4_in_network ipv4_dflt_netmask
} ],
);
@EXPORT_OK = qw();
Exporter::export_ok_tags('all');
$VERSION = '0.10';
}
# Preloaded methods go here.
use Carp;
# Functions to manipulate IPV4 address
my $ip_rgx = "\\d+\\.\\d+\\.\\d+\\.\\d+";
# Given an IPv4 address in host, ip/netmask or cidr format
# returns a ip / cidr pair.
sub ipv4_parse($;$) {
my ($ip,$msk);
# Called with 2 args, assume first is IP address
if ( defined $_[1] ) {
$ip = $_[0];
$msk= $_[1];
} else {
($ip) = $_[0] =~ /($ip_rgx)/o;
($msk) = $_[0] =~ m!/(.+)!o;
}
# Remove white spaces
$ip = ipv4_chkip( $ip ) or
croak __PACKAGE__, ": invalid IPv4 address: ", $ip, "\n";
$msk =~ s/\s//g if defined $msk;
# Check Netmask to see if it is a CIDR or Network
if (defined $msk ) {
if ($msk =~ /^\d{1,2}$/) {
# Check cidr
croak __PACKAGE__, ": invalid cidr: ", $msk, "\n"
if $msk < 0 or $msk > 32;
} elsif ($msk =~ /^$ip_rgx$/o ) {
$msk = ipv4_msk2cidr($msk);
} else {
croak __PACKAGE__, ": invalid netmask specification: ", $msk, "\n";
}
} else {
# Host
return $ip;
}
wantarray ? ($ip,$msk) : "$ip/$msk";
}
sub ipv4_dflt_netmask($) {
my ($ip) = ipv4_parse($_[0]);
my ($b1) = split /\./, $ip;
return "255.0.0.0" if $b1 <= 127;
return "255.255.0.0" if $b1 <= 191;
return "255.255.255.0";
}
# Check form a valid IPv4 address.
sub ipv4_chkip($) {
my ($ip) = $_[0] =~ /($ip_rgx)/o;
return undef unless $ip;
# Check that bytes are in range
for (split /\./, $ip ) {
return undef if $_ < 0 or $_ > 255;
}
return $ip;
}
# Transform a netmask in a CIDR mask length
sub ipv4_msk2cidr($) {
my $msk = ipv4_chkip( $_[0] )
or croak __PACKAGE__, ": invalid netmask: ", $_[0], "\n";
my @bytes = split /\./, $msk;
my $cidr = 0;
for (@bytes) {
my $bits = unpack( "B*", pack( "C", $_ ) );
$cidr += $bits =~ tr /1/1/;
}
return $cidr;
}
# Transform a CIDR mask length in a netmask
sub ipv4_cidr2msk($) {
my $cidr = shift;
croak __PACKAGE__, ": invalid cidr: ", $cidr, "\n"
if $cidr < 0 or $cidr > 32;
my $bits = "1" x $cidr . "0" x (32 - $cidr);
return join ".", (unpack 'CCCC', pack("B*", $bits ));
}
# Return the network address of
# an IPv4 address
sub ipv4_network($;$) {
my ($ip,$cidr) = ipv4_parse( $_[0], $_[1] );
# If only an host is given, use the default netmask
unless (defined $cidr) {
$cidr = ipv4_msk2cidr( ipv4_dflt_netmask($ip) );
}
my $u32 = unpack "N", pack "CCCC", split /\./, $ip;
my $bits = "1" x $cidr . "0" x (32 - $cidr );
my $msk = unpack "N", pack "B*", $bits;
my $net = join ".", unpack "CCCC", pack "N", $u32 & $msk;
wantarray ? ( $net, $cidr) : "$net/$cidr";
}
sub ipv4_broadcast($;$) {
my ($ip,$cidr) = ipv4_parse( $_[0], $_[1] );
# If only an host is given, use the default netmask
unless (defined $cidr) {
$cidr = ipv4_msk2cidr( ipv4_dflt_netmask($ip) );
}
my $u32 = unpack "N", pack "CCCC", split /\./, $ip;
my $bits = "1" x $cidr . "0" x (32 - $cidr );
my $msk = unpack "N", pack "B*", $bits;
my $broadcast = join ".", unpack "CCCC", pack "N", $u32 | ~$msk;
$broadcast;
}
sub ipv4_in_network($$;$$) {
my ($ip1,$cidr1,$ip2,$cidr2);
if ( @_ >= 3) {
($ip1,$cidr1) = ipv4_parse( $_[0], $_[1] );
($ip2,$cidr2) = ipv4_parse( $_[2], $_[3] );
} else {
($ip1,$cidr1) = ipv4_parse( $_[0]);
($ip2,$cidr2) = ipv4_parse( $_[1]);
}
# Check for magic addresses.
return 1 if ($ip1 eq "255.255.255.255" or $ip1 eq "0.0.0.0")
and !defined $cidr1;
return 1 if ($ip2 eq "255.255.255.255" or $ip2 eq "0.0.0.0")
and !defined $cidr2;
# Case where first argument is really an host
return $ip1 eq $ip2 unless (defined $cidr1);
# Case where second argument is an host
if ( not defined $cidr2) {
return ipv4_network( $ip1, $cidr1) eq ipv4_network( $ip2, $cidr1 );
} elsif ( $cidr2 >= $cidr1 ) {
# Network 2 is smaller or equal than network 1
return ipv4_network( $ip1, $cidr1 ) eq ipv4_network( $ip2, $cidr1 );
} else {
# Network 2 is bigger, so can't be wholly contained.
return 0;
}
}
# Autoload methods go after =cut, and are processed by the autosplit program.
1;
__END__
# Below is the stub of documentation for your module. You better edit it!
=pod
=head1 NAME
Net::IPv4Addr - Perl extension for manipulating IPv4 addresses.
=head1 SYNOPSIS
use Net::IPv4Addr qw( :all );
my ($ip,$cidr) = ipv4_parse( "127.0.0.1/24" );
my ($ip,$cidr) = ipv4_parse( "192.168.100.10 / 255.255.255.0" );
my ($net,$msk) = ipv4_network( "192.168.100.30" );
my $broadcast = ipv4_broadcast( "192.168.100.30/26" );
if ( ipv4_in_network( "192.168.100.0", $her_ip ) ) {
print "Welcome !";
}
etc.
=head1 DESCRIPTION
Net::IPv4Addr provides functions for parsing IPv4 addresses both
in traditional address/netmask format and in the new CIDR format.
There are also methods for calculating the network and broadcast
address and also to check if a given address is in a specific
network.
=head1 ADDRESSES
All of Net::IPv4Addr functions accept addresses in many
formats. The parsing is very liberal.
All these addresses would be accepted:
127.0.0.1
192.168.001.010/24
192.168.10.10/255.255.255.0
192.168.30.10 / 21
10.0.0.0 / 255.0.0.0
255.255.0.0
Those wouldn't though:
272.135.234.0
192.168/16
Most functions accepts the address and netmask or masklength in the
same scalar value or as separate values. That is either
my($ip,$masklength) = ipv4_parse($cidr_str);
my($ip,$masklength) = ipv4_parse($ip_str,$msk_str);
=head1 USING
No functions are exported by default. Either use the C<:all> tag
to import them all or explicitly import those you need.
=head1 FUNCTIONS
=over
=item ipv4_parse
my ($ip,$msklen) = ipv4_parse($cidr_str);
my $cidr = ipv4_parse($ip_str,$msk_str);
my ($ip) = ipv4_parse($ip_str,$msk_str);
Parse an IPv4 address and return in scalar context the address in CIDR
format, in an array context the address and the mask length.
If the parameters doesn't contains a netmask or a mask length,
in scalar context only the IPv4 address is returned and in an
array context the mask length is undefined.
If the function cannot parse its input, it croaks. Trap it using
C<eval> if you don't like that.
=item ipv4_broadcast
my ($broadcast) = ipv4_broadcast($ip_str);
my $broadcast = ipv4_broadcast($ip_str,$msk_str);
This function returns the broadcast address. If the input doesn't
contain a netmask or mask length, the default netmask is assumed.
This function croaks if the input is invalid.
=item ipv4_network
my $cidr = ipv4_network($ip_str);
my $cidr = ipv4_network($cidr_str);
my ($net,$msk) = ipv4_network( $net_str, $msk_str);
In scalar context, this function returns the network in CIDR format in
which the address is. In array context, it returns the network address and
its mask length as a two elements array. If the input is a host without
a netmask or mask length, the default netmask is assumed.
Again, the function croaks if the input is invalid.
=item ipv4_in_network
print "Yes" if ipv4_in_network( $cidr_str1, $cidr_str2);
print "Yes" if ipv4_in_network( $ip_str1, $mask_str1, $cidr_str2 );
print "Yes" if ipv4_in_network( $ip1, $mask1, $ip2, $msk2 );
This function checks if the second network is contained in
the first one and it implements the following semantics :
If net1 or net2 is a magic address (0.0.0.0 or 255.255.255.255)
then this function returns true.
If net1 is a host, net2 will be in the same net only if
it is the same host.
If net2 is a host, it will be contained in net1 only if
it is part of net1.
net2 is only part of net1 if it is entirely contained in
net1.
Trap bad input with C<eval> or else.
=item ipv4_chkip
if ($ip = ipv4_chkip($str) ) {
# Do something
}
Return the IPv4 address in the string or undef if the input
doesn't contain a valid IPv4 address.
=item ipv4_cidr2msk
my $netmask = ipv4_cidr2msk( $cidr );
Returns the netmask corresponding to the mask length given in the input.
As usual, croaks if it doesn't like your input (in this case a number
between 0 and 32).
=item ipv4_msk2cidr
my $masklen = ipv4_msk2cidr( $msk );
Returns the mask length of the netmask in the input. As usual, croaks if it
doesn't like your input.
=back
=head1 AUTHOR
Francis J. Lacoste <francis.lacoste@iNsu.COM>
=head1 COPYRIGHT
Copyright (c) 1999, 2000 iNsu Innovations Inc.
All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the terms as perl itself.
=head1 SEE ALSO
perl(1) ipv4calc(1).
=cut
|