/usr/share/perl5/Mail/SPF/Mech.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 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 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 | #
# Mail::SPF::Mech
# SPF record mechanism class.
#
# (C) 2005-2012 Julian Mehnle <julian@mehnle.net>
# 2005 Shevek <cpan@anarres.org>
# $Id: Mech.pm 57 2012-01-30 08:15:31Z julian $
#
##############################################################################
package Mail::SPF::Mech;
=head1 NAME
Mail::SPF::Mech - SPF record mechanism base class
=cut
use warnings;
use strict;
use utf8; # Hack to keep Perl 5.6 from whining about /[\p{}]/.
use base 'Mail::SPF::Term';
use Error ':try';
use NetAddr::IP;
use Mail::SPF::Record;
use Mail::SPF::MacroString;
use Mail::SPF::Util;
use constant TRUE => (0 == 0);
use constant FALSE => not TRUE;
use constant default_qualifier => Mail::SPF::Record->default_qualifier;
use constant default_ipv4_prefix_length => 32;
use constant default_ipv6_prefix_length => 128;
use constant qualifier_pattern => qr/[+\-~?]/;
use constant name_pattern => qr/ ${\__PACKAGE__->SUPER::name_pattern} (?= [:\/\x20] | $ ) /x;
use constant explanation_templates_by_result_code => {
pass => "Sender is authorized to use '%{s}' in '%{_scope}' identity",
fail => "Sender is not authorized to use '%{s}' in '%{_scope}' identity",
softfail => "Sender is not authorized to use '%{s}' in '%{_scope}' identity, however domain is not currently prepared for false failures",
neutral => "Domain does not state whether sender is authorized to use '%{s}' in '%{_scope}' identity"
};
=head1 DESCRIPTION
An object of class B<Mail::SPF::Mech> represents a mechanism within an SPF
record. Mail::SPF::Mech cannot be instantiated directly. Create an instance
of a concrete sub-class instead.
=head2 Constructors
The following constructors are provided:
=over
=item B<new(%options)>: returns I<Mail::SPF::Mech>
I<Abstract>. Creates a new SPF record mechanism object.
%options is a list of key/value pairs representing any of the following
options:
=over
=item B<text>
A I<string> denoting the unparsed text of the mechanism.
=item B<qualifier>
A single-character I<string> denoting the qualifier of the mechanism. Any of
the following may be specified: B<'+'> (C<Pass>), B<'-'> (C<Fail>),
B<'~'> (C<SoftFail>), B<'?'> (C<Neutral>). See RFC 4408, 4.6.2 and 2.5, for
their meanings. Defaults to B<'+'>.
=item B<name>
A I<string> denoting the name of the mechanism. I<Required> if a generic
I<Mail::SPF::Mech> object (as opposed to a specific sub-class) is being
constructed.
=item B<ip_network>
A I<NetAddr::IP> object denoting an optional IP address network parameter of
the mechanism. Can be either an IPv4 or an IPv6 address, with an optional
network prefix length. IPv4-mapped IPv6 addresses (e.g. '::ffff:192.168.0.1')
must I<not> be specified directly, but as plain IPv4 addresses.
=item B<domain_spec>
Either a plain I<string> or a I<Mail::SPF::MacroString> object denoting an
optional C<domain-spec> parameter of the mechanism.
=item B<ipv4_prefix_length>
=item B<ipv6_prefix_length>
A I<string> denoting an optional IPv4 or IPv6 network prefix length for the
C<domain_spec> of the mechanism. Note that these options do not apply to the
C<ip_network> option, which already includes an optional network prefix
length.
=back
Other options may be specified by sub-classes of Mail::SPF::Mech.
=cut
sub new {
my ($self, %options) = @_;
$self->class ne __PACKAGE__
or throw Mail::SPF::EAbstractClass;
$self = $self->SUPER::new(%options);
$self->{parse_text} = $self->{text} if not defined($self->{parse_text});
$self->{domain_spec} = Mail::SPF::MacroString->new(text => $self->{domain_spec})
if defined($self->{domain_spec})
and not UNIVERSAL::isa($self->{domain_spec}, 'Mail::SPF::MacroString');
return $self;
}
=item B<new_from_string($text, %options)>: returns I<Mail::SPF::Mech>;
throws I<Mail::SPF::ENothingToParse>, I<Mail::SPF::EInvalidMech>
I<Abstract>. Creates a new SPF record mechanism object by parsing the string and
any options given.
=back
=head2 Class methods
The following class methods are provided:
=over
=item B<default_qualifier>: returns I<string>
Returns the default qualifier, i.e. B<'+'>.
=item B<default_ipv4_prefix_length>: returns I<integer>
Returns the default IPv4 network prefix length, i.e. B<32>.
=item B<default_ipv6_prefix_length>: returns I<integer>
Returns the default IPv6 network prefix length, i.e. B<128>.
=item B<qualifier_pattern>: returns I<Regexp>
Returns a regular expression that matches any legal mechanism qualifier, i.e. B<'+'>,
B<'-'>, B<'~'>, or B<'?'>.
=item B<name>: returns I<string>
I<Abstract>. Returns the name of the mechanism.
This method is abstract and must be implemented by sub-classes of
Mail::SPF::Mech.
=item B<name_pattern>: returns I<Regexp>
Returns a regular expression that matches any legal mechanism name.
=back
=head2 Instance methods
The following instance methods are provided:
=over
=cut
sub parse {
my ($self) = @_;
defined($self->{parse_text})
or throw Mail::SPF::ENothingToParse('Nothing to parse for mechanism');
$self->parse_qualifier();
$self->parse_name();
$self->parse_params();
$self->parse_end();
return;
}
sub parse_qualifier {
my ($self) = @_;
if ($self->{parse_text} =~ s/^(${\$self->qualifier_pattern})?//) {
$self->{qualifier} = $1 || $self->default_qualifier;
}
else {
throw Mail::SPF::EInvalidMechQualifier(
"Invalid qualifier encountered in '" . $self->text . "'");
}
return;
}
sub parse_name {
my ($self) = @_;
if ($self->{parse_text} =~ s/^ (${\$self->name_pattern}) (?: : (?=.) )? //x) {
$self->{name} = $1;
}
else {
throw Mail::SPF::EInvalidMech(
"Unexpected mechanism name encountered in '" . $self->text . "'");
}
return;
}
sub parse_params {
my ($self) = @_;
# Parse generic string of parameters text (should be overridden in sub-classes):
if ($self->{parse_text} =~ s/^(.*)//) {
$self->{params_text} = $1;
}
return;
}
sub parse_end {
my ($self) = @_;
$self->{parse_text} eq ''
or throw Mail::SPF::EJunkInTerm("Junk encountered in mechanism '" . $self->text . "'");
delete($self->{parse_text});
return;
}
=item B<text>: returns I<string>; throws I<Mail::SPF::ENoUnparsedText>
Returns the unparsed text of the mechanism. Throws a
I<Mail::SPF::ENoUnparsedText> exception if the mechanism was created
synthetically instead of being parsed, and no text was provided.
=item B<qualifier>: returns I<string>
Returns the qualifier of the mechanism. See the description of the C<new>
constructor's C<qualifier> option.
=cut
sub qualifier {
my ($self) = @_;
# Read-only!
return $self->{qualifier} || $self->default_qualifier;
}
=item B<params>: returns I<string>
I<Abstract>. Returns the mechanism's parameters formatted as a string.
A sub-class of Mail::SPF::Mech does not have to implement this method if it
supports no parameters.
=item B<stringify>: returns I<string>
Formats the mechanism's qualifier, name, and parameters as a string and returns
it. (A qualifier that matches the default of B<'+'> is omitted.) You can
simply use a Mail::SPF::Mech object as a string for the same effect, see
L<"OVERLOADING">.
=cut
sub stringify {
my ($self) = @_;
my $params = $self->can('params') ? $self->params : undef;
return sprintf(
'%s%s%s',
$self->qualifier eq $self->default_qualifier ? '' : $self->qualifier,
$self->name,
defined($params) ? $params : ''
);
}
=item B<domain($server, $request)>: returns I<string>
Returns the target domain of the mechanism. Depending on whether the mechanism
does have an explicit C<domain_spec> parameter, this is either the
macro-expanded C<domain_spec> parameter, or the request's authority domain
(see L<Mail::SPF::Request/authority_domain>) otherwise. Both a
I<Mail::SPF::Server> and a I<Mail::SPF::Request> object are required for
resolving the target domain.
=cut
sub domain {
my ($self, $server, $request) = @_;
defined($server)
or throw Mail::SPF::EOptionRequired('Mail::SPF server object required for target domain resolution');
defined($request)
or throw Mail::SPF::EOptionRequired('Request object required for target domain resolution');
return $self->{domain_spec}->new(server => $server, request => $request)
if defined($self->{domain_spec});
return $request->authority_domain;
}
=item B<match($server, $request)>: returns I<boolean>; throws I<Mail::SPF::Result::Error>
I<Abstract>. Checks whether the mechanism matches the parameters of the given
request (see L<Mail::SPF::Request>) and returns B<true> if it does, or B<false>
otherwise. In any case, takes both a I<Mail::SPF::Server> and a
I<Mail::SPF::Request> object.
This method is abstract and must be implemented by sub-classes of
Mail::SPF::Mech.
=item B<match_in_domain($server, $request)>: returns I<boolean>;
throws I<Mail::SPF::Result::Error>
=item B<match_in_domain($server, $request, $domain)>: returns I<boolean>;
throws I<Mail::SPF::Result::Error>
Checks whether the mechanism's target domain name (that is, any of its DNS C<A>
or C<AAAA> records) matches the given request's IP address (see
L<Mail::SPF::Request/ip_address>), and returns B<true> if it does, or B<false>
otherwise. If an explicit domain is specified, it is used instead of the
mechanism's target domain. The mechanism's IP network prefix lengths are
respected when matching DNS address records against the request's IP address.
See RFC 4408, 5, for the exact algorithm used.
This method exists mainly for the convenience of sub-classes of
Mail::SPF::Mech.
=cut
sub match_in_domain {
my ($self, $server, $request, $domain) = @_;
$domain = $self->domain($server, $request)
if not defined($domain);
my $ipv4_prefix_length = $self->ipv4_prefix_length;
my $ipv6_prefix_length = $self->ipv6_prefix_length;
my $addr_rr_type = $request->ip_address->version == 4 ? 'A' : 'AAAA';
my $packet = $server->dns_lookup($domain, $addr_rr_type);
my @rrs = $packet->answer
or $server->count_void_dns_lookup($request);
foreach my $rr (@rrs) {
if ($rr->type eq 'A') {
my $network = NetAddr::IP->new($rr->address, $ipv4_prefix_length);
return TRUE
if $network->contains($request->ip_address);
}
elsif ($rr->type eq 'AAAA') {
my $network = NetAddr::IP->new($rr->address, $ipv6_prefix_length);
return TRUE
if $network->contains($request->ip_address_v6);
}
elsif ($rr->type eq 'CNAME') {
# Ignore -- we should have gotten the A/AAAA records anyway.
}
else {
# Unexpected RR type.
# TODO Generate debug info or ignore silently.
}
}
return FALSE;
}
=item B<explain($server, $request, $result)>
Locally generates an explanation for why the mechanism caused the given result,
and stores it in the given request object's state.
There is no need to override this method in sub-classes. See the
L</explanation_template> method.
=cut
sub explain {
my ($self, $server, $request, $result) = @_;
my $explanation_template = $self->explanation_template($server, $request, $result);
return
if not defined($explanation_template);
try {
my $explanation = Mail::SPF::MacroString->new(
text => $explanation_template,
server => $server,
request => $request,
is_explanation => TRUE
);
$request->state('local_explanation', $explanation);
}
catch Mail::SPF::Exception with {}
catch Mail::SPF::Result with {};
return;
}
=item B<explanation_template($server, $request, $result)>: returns I<string>
Returns a macro string template for a locally generated explanation for why the
mechanism caused the given result object.
Sub-classes should either define an C<explanation_templates_by_result_code>
hash constant with their own templates, or override this method.
=cut
sub explanation_template {
my ($self, $server, $request, $result) = @_;
return undef
if not $self->can('explanation_templates_by_result_code');
return $self->explanation_templates_by_result_code->{$result->code};
}
=back
=head1 OVERLOADING
If a Mail::SPF::Mech object is used as a I<string>, the C<stringify> method is
used to convert the object into a string.
=head1 SEE ALSO
L<Mail::SPF::Mech::All>,
L<Mail::SPF::Mech::IP4>,
L<Mail::SPF::Mech::IP6>,
L<Mail::SPF::Mech::A>,
L<Mail::SPF::Mech::MX>,
L<Mail::SPF::Mech::PTR>,
L<Mail::SPF::Mech::Exists>,
L<Mail::SPF::Mech::Include>
L<Mail::SPF>, L<Mail::SPF::Record>, L<Mail::SPF::Term>
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;
|