/usr/share/perl5/Mail/SPF/Term.pm is in libmail-spf-perl 2.9.0-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 | #
# Mail::SPF::Term
# SPF record term class.
#
# (C) 2005-2012 Julian Mehnle <julian@mehnle.net>
# 2005 Shevek <cpan@anarres.org>
# $Id: Term.pm 57 2012-01-30 08:15:31Z julian $
#
##############################################################################
package Mail::SPF::Term;
=head1 NAME
Mail::SPF::Term - SPF record term class
=cut
use warnings;
use strict;
use utf8; # Hack to keep Perl 5.6 from whining about /[\p{}]/.
use base 'Mail::SPF::Base';
use overload
'""' => 'stringify',
fallback => 1;
use NetAddr::IP;
use constant TRUE => (0 == 0);
use constant FALSE => not TRUE;
use constant name_pattern => qr/ \p{IsAlpha} [\p{IsAlnum}\-_.]* /x;
use constant macro_literal_pattern => qr/[!-\$&-~]/;
use constant macro_delimiter => qr/[.\-+,\/_=]/;
use constant macro_transformers_pattern => qr/\d*r?/;
use constant macro_expand_pattern => qr/
\%
(?:
{ \p{IsAlpha} ${\macro_transformers_pattern} ${\macro_delimiter}* } |
[%_-]
)
/x;
use constant macro_string_pattern => qr/
(?:
${\macro_expand_pattern} |
${\macro_literal_pattern}
)*
/x;
use constant toplabel_pattern => qr/
\p{IsAlnum}+ - [\p{IsAlnum}-]* \p{IsAlnum} |
\p{IsAlnum}* \p{IsAlpha} \p{IsAlnum}*
/x;
use constant domain_end_pattern => qr/
\. ${\toplabel_pattern} \.? |
${\macro_expand_pattern}
/x;
use constant domain_spec_pattern => qr/ ${\macro_string_pattern} ${\domain_end_pattern} /x;
use constant qnum_pattern => qr/ 25[0-5] | 2[0-4]\d | 1\d\d | [1-9]\d | \d /x;
use constant ipv4_address_pattern => qr/ ${\qnum_pattern} (?: \. ${\qnum_pattern} ){3} /x;
use constant hexword_pattern => qr/\p{IsXDigit}{1,4}/;
use constant two_hexwords_or_ipv4_address_pattern => qr/
${\hexword_pattern} : ${\hexword_pattern} | ${\ipv4_address_pattern}
/x;
use constant ipv6_address_pattern => qr/
# x:x:x:x:x:x:x:x | x:x:x:x:x:x:n.n.n.n
(?: ${\hexword_pattern} : ){6} ${\two_hexwords_or_ipv4_address_pattern} |
# x::x:x:x:x:x:x | x::x:x:x:x:n.n.n.n
(?: ${\hexword_pattern} : ){1} : (?: ${\hexword_pattern} : ){4} ${\two_hexwords_or_ipv4_address_pattern} |
# x[:x]::x:x:x:x:x | x[:x]::x:x:x:n.n.n.n
(?: ${\hexword_pattern} : ){1,2} : (?: ${\hexword_pattern} : ){3} ${\two_hexwords_or_ipv4_address_pattern} |
# x[:...]::x:x:x:x | x[:...]::x:x:n.n.n.n
(?: ${\hexword_pattern} : ){1,3} : (?: ${\hexword_pattern} : ){2} ${\two_hexwords_or_ipv4_address_pattern} |
# x[:...]::x:x:x | x[:...]::x:n.n.n.n
(?: ${\hexword_pattern} : ){1,4} : (?: ${\hexword_pattern} : ){1} ${\two_hexwords_or_ipv4_address_pattern} |
# x[:...]::x:x | x[:...]::n.n.n.n
(?: ${\hexword_pattern} : ){1,5} : ${\two_hexwords_or_ipv4_address_pattern} |
# x[:...]::x | -
(?: ${\hexword_pattern} : ){1,6} : ${\hexword_pattern} |
# x[:...]:: | -
(?: ${\hexword_pattern} : ){1,7} : |
# ::[...:]x | -
:: (?: ${\hexword_pattern} : ){0,6} ${\hexword_pattern} |
# - | ::[...:]n.n.n.n
:: (?: ${\hexword_pattern} : ){0,5} ${\two_hexwords_or_ipv4_address_pattern} |
# :: | -
::
/x;
=head1 DESCRIPTION
An object of class B<Mail::SPF::Term> represents a term within an SPF record.
Mail::SPF::Term cannot be instantiated directly. Create an instance of a
concrete sub-class instead.
=head2 Constructor
The following constructor is provided:
=over
=item B<new(%options)>: returns I<Mail::SPF::Term>
I<Abstract>. Creates a new SPF record term object.
%options is a list of key/value pairs, however Mail::SPF::Term itself specifies
no constructor options.
=item B<new_from_string($text, %options)>: returns I<Mail::SPF::Term>;
throws I<Mail::SPF::ENothingToParse>, I<Mail::SPF::EInvalidTerm>
I<Abstract>. Creates a new SPF record term object by parsing the string and
any options given.
=cut
sub new_from_string {
my ($self, $text, %options) = @_;
$self = $self->new(%options, text => $text);
$self->parse();
return $self;
}
=back
=head2 Class methods
The following class methods are provided:
=over
=item B<name_pattern>: returns I<Regexp>
Returns a regular expression that matches any legal name for an SPF record
term.
=back
=head2 Instance methods
The following instance methods are provided:
=over
=cut
sub parse_domain_spec {
my ($self, $required) = @_;
if ($self->{parse_text} =~ s/^(${\$self->domain_spec_pattern})//) {
my $domain_spec = $1;
$domain_spec =~ s/^(.*?)\.?$/\L$1/;
$self->{domain_spec} = Mail::SPF::MacroString->new(text => $domain_spec);
}
elsif ($required) {
throw Mail::SPF::ETermDomainSpecExpected(
"Missing required domain-spec in '" . $self->text . "'");
}
return;
}
sub parse_ipv4_address {
my ($self, $required) = @_;
if ($self->{parse_text} =~ s/^(${\$self->ipv4_address_pattern})//) {
$self->{ip_address} = $1;
}
elsif ($required) {
throw Mail::SPF::ETermIPv4AddressExpected(
"Missing required IPv4 address in '" . $self->text . "'");
}
return;
}
sub parse_ipv4_prefix_length {
my ($self, $required) = @_;
if ($self->{parse_text} =~ s#^/(\d+)##) {
$1 >= 0 and $1 <= 32 and $1 !~ /^0./
or throw Mail::SPF::ETermIPv4PrefixLengthExpected(
"Invalid IPv4 prefix length encountered in '" . $self->text . "'");
$self->{ipv4_prefix_length} = $1;
}
elsif (not $required) {
$self->{ipv4_prefix_length} = $self->default_ipv4_prefix_length;
}
else {
throw Mail::SPF::ETermIPv4PrefixLengthExpected(
"Missing required IPv4 prefix length in '" . $self->text . "'");
}
return;
}
sub parse_ipv4_network {
my ($self, $required) = @_;
$self->parse_ipv4_address($required);
$self->parse_ipv4_prefix_length();
$self->{ip_network} = NetAddr::IP->new($self->{ip_address}, $self->{ipv4_prefix_length});
return;
}
sub parse_ipv6_address {
my ($self, $required) = @_;
if ($self->{parse_text} =~ s/^(${\$self->ipv6_address_pattern})(?=\/|$)//) {
$self->{ip_address} = $1;
}
elsif ($required) {
throw Mail::SPF::ETermIPv6AddressExpected(
"Missing required IPv6 address in '" . $self->text . "'");
}
return;
}
sub parse_ipv6_prefix_length {
my ($self, $required) = @_;
if ($self->{parse_text} =~ s#^/(\d+)##) {
$1 >= 0 and $1 <= 128 and $1 !~ /^0./
or throw Mail::SPF::ETermIPv6PrefixLengthExpected(
"Invalid IPv6 prefix length encountered in '" . $self->text . "'");
$self->{ipv6_prefix_length} = $1;
}
elsif (not $required) {
$self->{ipv6_prefix_length} = $self->default_ipv6_prefix_length;
}
else {
throw Mail::SPF::ETermIPv6PrefixLengthExpected(
"Missing required IPv6 prefix length in '" . $self->text . "'");
}
return;
}
sub parse_ipv6_network {
my ($self, $required) = @_;
$self->parse_ipv6_address($required);
$self->parse_ipv6_prefix_length();
$self->{ip_network} = NetAddr::IP->new(
$self->{ip_address}, $self->{ipv6_prefix_length});
return;
}
sub parse_ipv4_ipv6_prefix_lengths {
my ($self) = @_;
$self->parse_ipv4_prefix_length();
if (
defined($self->{ipv4_prefix_length}) and # an IPv4 prefix length has been parsed, and
$self->{parse_text} =~ s#^/## # another slash is following
) {
# Parse an IPv6 prefix length:
$self->parse_ipv6_prefix_length(TRUE);
}
return;
}
=item B<text>: returns I<string>; throws I<Mail::SPF::ENoUnparsedText>
Returns the unparsed text of the term. Throws a I<Mail::SPF::ENoUnparsedText>
exception if the term was created synthetically instead of being parsed, and no
text was provided.
=cut
sub text {
my ($self) = @_;
defined($self->{text})
or throw Mail::SPF::ENoUnparsedText;
return $self->{text};
}
=item B<name>: returns I<string>
I<Abstract>. Returns the name of the term.
=back
=head1 SEE ALSO
L<Mail::SPF>, L<Mail::SPF::Record>, L<Mail::SPF::Mech>, L<Mail::SPF::Mod>
L<http://tools.ietf.org/html/rfc4408>
For availability, support, and license information, see the README file
included with Mail::SPF.
=head1 AUTHORS
Julian Mehnle <julian@mehnle.net>, Shevek <cpan@anarres.org>
=cut
TRUE;
|