/usr/share/perl5/Regexp/Common/net.pm is in libregexp-common-perl 2011121001-1.
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 | package Regexp::Common::net;
use Regexp::Common qw /pattern clean no_defaults/;
use strict;
use warnings;
use vars qw /$VERSION/;
$VERSION = '2010010201';
my %IPunit = (
dec => q{(?k:25[0-5]|2[0-4][0-9]|[0-1]?[0-9]{1,2})},
oct => q{(?k:[0-3]?[0-7]{1,2})},
hex => q{(?k:[0-9a-fA-F]{1,2})},
bin => q{(?k:[0-1]{1,8})},
);
my %MACunit = (
%IPunit,
hex => q{(?k:[0-9a-fA-F]{1,2})},
);
sub dec {$_};
sub bin {oct "0b$_"}
my $IPdefsep = '[.]';
my $MACdefsep = ':';
pattern name => [qw (net IPv4)],
create => "(?k:$IPunit{dec}$IPdefsep$IPunit{dec}$IPdefsep" .
"$IPunit{dec}$IPdefsep$IPunit{dec})",
;
pattern name => [qw (net MAC)],
create => "(?k:" . join ($MACdefsep => ($MACunit{hex}) x 6) . ")",
subs => sub {
$_ [1] = join ":" => map {sprintf "%02x" => hex}
split /$MACdefsep/ => $_ [1]
if $_ [1] =~ /$_[0]/
},
;
foreach my $type (qw /dec oct hex bin/) {
pattern name => [qw (net IPv4), $type, "-sep=$IPdefsep"],
create => sub {my $sep = $_ [1] -> {-sep};
"(?k:$IPunit{$type}$sep$IPunit{$type}$sep" .
"$IPunit{$type}$sep$IPunit{$type})"
},
;
pattern name => [qw (net MAC), $type, "-sep=$MACdefsep"],
create => sub {my $sep = $_ [1] -> {-sep};
"(?k:" . join ($sep => ($MACunit{$type}) x 6) . ")",
},
subs => sub {
return if $] < 5.006 and $type eq 'bin';
$_ [1] = join ":" => map {sprintf "%02x" => eval $type}
$2, $3, $4, $5, $6, $7
if $_ [1] =~ $RE {net} {MAC} {$type}
{-sep => $_ [0] -> {flags} {-sep}}
{-keep};
},
;
}
my $letter = "[A-Za-z]";
my $let_dig = "[A-Za-z0-9]";
my $let_dig_hyp = "[-A-Za-z0-9]";
# Domain names, from RFC 1035.
pattern name => [qw (net domain -nospace=)],
create => sub {
if (exists $_ [1] {-nospace} && !defined $_ [1] {-nospace}) {
return "(?k:$let_dig(?:(?:$let_dig_hyp){0,61}$let_dig)?" .
"(?:\\.$letter(?:(?:$let_dig_hyp){0,61}$let_dig)?)*)"
}
else {
return "(?k: |(?:$let_dig(?:(?:$let_dig_hyp){0,61}$let_dig)?" .
"(?:\\.$letter(?:(?:$let_dig_hyp){0,61}$let_dig)?)*))"
}
},
;
1;
__END__
=head1 NAME
Regexp::Common::net -- provide regexes for IPv4 addresses.
=head1 SYNOPSIS
use Regexp::Common qw /net/;
while (<>) {
/$RE{net}{IPv4}/ and print "Dotted decimal IP address";
/$RE{net}{IPv4}{hex}/ and print "Dotted hexadecimal IP address";
/$RE{net}{IPv4}{oct}{-sep => ':'}/ and
print "Colon separated octal IP address";
/$RE{net}{IPv4}{bin}/ and print "Dotted binary IP address";
/$RE{net}{MAC}/ and print "MAC address";
/$RE{net}{MAC}{oct}{-sep => " "}/ and
print "Space separated octal MAC address";
}
=head1 DESCRIPTION
Please consult the manual of L<Regexp::Common> for a general description
of the works of this interface.
Do not use this module directly, but load it via I<Regexp::Common>.
This modules gives you regular expressions for various style IPv4
and MAC (or ethernet) addresses.
=head2 C<$RE{net}{IPv4}>
Returns a pattern that matches a valid IP address in "dotted decimal".
Note that while C<318.99.183.11> is not a valid IP address, it does
match C</$RE{net}{IPv4}/>, but this is because C<318.99.183.11> contains
a valid IP address, namely C<18.99.183.11>. To prevent the unwanted
matching, one needs to anchor the regexp: C</^$RE{net}{IPv4}$/>.
For this pattern and the next four, under C<-keep> (See L<Regexp::Common>):
=over 4
=item $1
captures the entire match
=item $2
captures the first component of the address
=item $3
captures the second component of the address
=item $4
captures the third component of the address
=item $5
captures the final component of the address
=back
=head2 C<$RE{net}{IPv4}{dec}{-sep}>
Returns a pattern that matches a valid IP address in "dotted decimal"
If C<< -sep=I<P> >> is specified the pattern I<P> is used as the separator.
By default I<P> is C<qr/[.]/>.
=head2 C<$RE{net}{IPv4}{hex}{-sep}>
Returns a pattern that matches a valid IP address in "dotted hexadecimal",
with the letters C<A> to C<F> capitalized.
If C<< -sep=I<P> >> is specified the pattern I<P> is used as the separator.
By default I<P> is C<qr/[.]/>. C<< -sep="" >> and
C<< -sep=" " >> are useful alternatives.
=head2 C<$RE{net}{IPv4}{oct}{-sep}>
Returns a pattern that matches a valid IP address in "dotted octal"
If C<< -sep=I<P> >> is specified the pattern I<P> is used as the separator.
By default I<P> is C<qr/[.]/>.
=head2 C<$RE{net}{IPv4}{bin}{-sep}>
Returns a pattern that matches a valid IP address in "dotted binary"
If C<< -sep=I<P> >> is specified the pattern I<P> is used as the separator.
By default I<P> is C<qr/[.]/>.
=head2 C<$RE{net}{MAC}>
Returns a pattern that matches a valid MAC or ethernet address as
colon separated hexadecimals.
For this pattern, and the next four, under C<-keep> (See L<Regexp::Common>):
=over 4
=item $1
captures the entire match
=item $2
captures the first component of the address
=item $3
captures the second component of the address
=item $4
captures the third component of the address
=item $5
captures the fourth component of the address
=item $6
captures the fifth component of the address
=item $7
captures the sixth and final component of the address
=back
This pattern, and the next four, have a C<subs> method as well, which
will transform a matching MAC address into so called canonical format.
Canonical format means that every component of the address will be
exactly two hexadecimals (with a leading zero if necessary), and the
components will be separated by a colon.
The C<subs> method will not work for binary MAC addresses if the
Perl version predates 5.6.0.
=head2 C<$RE{net}{MAC}{dec}{-sep}>
Returns a pattern that matches a valid MAC address as colon separated
decimals.
If C<< -sep=I<P> >> is specified the pattern I<P> is used as the separator.
By default I<P> is C<qr/:/>.
=head2 C<$RE{net}{MAC}{hex}{-sep}>
Returns a pattern that matches a valid MAC address as colon separated
hexadecimals, with the letters C<a> to C<f> in lower case.
If C<< -sep=I<P> >> is specified the pattern I<P> is used as the separator.
By default I<P> is C<qr/:/>.
=head2 C<$RE{net}{MAC}{oct}{-sep}>
Returns a pattern that matches a valid MAC address as colon separated
octals.
If C<< -sep=I<P> >> is specified the pattern I<P> is used as the separator.
By default I<P> is C<qr/:/>.
=head2 C<$RE{net}{MAC}{bin}{-sep}>
Returns a pattern that matches a valid MAC address as colon separated
binary numbers.
If C<< -sep=I<P> >> is specified the pattern I<P> is used as the separator.
By default I<P> is C<qr/:/>.
=head2 $RE{net}{domain}
Returns a pattern to match domains (and hosts) as defined in RFC 1035.
Under I{-keep} only the entire domain name is returned.
RFC 1035 says that a single space can be a domainname too. So, the
pattern returned by C<$RE{net}{domain}> recognizes a single space
as well. This is not always what people want. If you want to recognize
domainnames, but not a space, you can do one of two things, either use
/(?! )$RE{net}{domain}/
or use the C<{-nospace}> option (without an argument).
=head1 REFERENCES
=over 4
=item B<RFC 1035>
Mockapetris, P.: I<DOMAIN NAMES - IMPLEMENTATION AND SPECIFICATION>.
November 1987.
=back
=head1 SEE ALSO
L<Regexp::Common> for a general description of how to use this interface.
=head1 AUTHOR
Damian Conway I<damian@conway.org>.
=head1 MAINTAINANCE
This package is maintained by Abigail S<(I<regexp-common@abigail.be>)>.
=head1 BUGS AND IRRITATIONS
Bound to be plenty.
For a start, there are many common regexes missing.
Send them in to I<regexp-common@abigail.be>.
=head1 LICENSE and COPYRIGHT
This software is Copyright (c) 2001 - 2009, Damian Conway and Abigail.
This module is free software, and maybe used under any of the following
licenses:
1) The Perl Artistic License. See the file COPYRIGHT.AL.
2) The Perl Artistic License 2.0. See the file COPYRIGHT.AL2.
3) The BSD Licence. See the file COPYRIGHT.BSD.
4) The MIT Licence. See the file COPYRIGHT.MIT.
=cut
|