/usr/share/perl5/RDF/ACL.pm is in librdf-acl-perl 0.101-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 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 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 | package RDF::ACL;
=head1 NAME
RDF::ACL - access control lists for the semantic web
=head1 SYNOPSIS
use RDF::ACL;
my $acl = RDF::ACL->new('access.ttl');
my $auth = $acl->allow(
webid => 'http://example.com/joe#me',
item => 'http://example.com/private/document',
level => ['Read', 'Write'],
);
$acl->save('turtle', 'access.ttl');
# later...
if ($acl->check('http://example.com/joe#me',
'http://example.com/private/document',
'Read'))
{
print slurp("private/document");
}
else
{
print "Denied";
}
# later...
foreach my $reason ($acl->why('http://example.com/joe#me',
'http://example.com/private/document',
'Read'))
{
$acl->deny($reason) if defined $reason;
}
$acl->save('turtle', 'access.ttl');
=cut
use strict;
use 5.008;
use Carp;
use Data::UUID;
use Error qw(:try);
use RDF::TrineShortcuts 0.03;
use Scalar::Util qw(blessed);
use URI;
use constant NS_ACL => 'http://www.w3.org/ns/auth/acl#';
use constant NS_RDF => 'http://www.w3.org/1999/02/22-rdf-syntax-ns#';
our $VERSION = '0.101';
=head1 DESCRIPTION
Note that this module provides access control and does not perform authentication!
=head2 Constructors
=over 4
=item C<< $acl->new($input, %args) >>
Creates a new access control list based on RDF data defined in
$input. $input can be a serialised string of RDF, a file name,
a URI or any other input accepted by the rdf_parse function
(see L<RDF::Trine::Shortcuts>).
C<< new() >> can be called with no arguments to create a
fresh, clean ACL containing no authorisations.
=cut
sub new
{
my $class = shift;
my $model = shift;
unless (blessed($model) && $model->isa('RDF::Trine::Model'))
{
$model = rdf_parse($model, @_);
}
my $self = bless {
'model' => $model,
'i_am' => undef ,
}, $class;
return $self;
}
=item C<< $acl->new_remote($endpoint) >>
Creates a new access control list based on RDF data accessed
via a remote SPARQL Protocol 1.0 endpoint.
=back
=cut
sub new_remote
{
my $class = shift;
my $ep = shift;
my $self = bless {
'endpoint' => $ep,
}, $class;
return $self;
}
=head2 Public Methods
=over 4
=item C<< $acl->check($webid, $item, $level, @data) >>
Checks an agent's authorisation to access an item.
$webid is the WebID (URI) of the agent requesting access to the item.
$item is the URL (URI) of the item being accessed.
$level is a URI identifying the type of access required. As special
cases, the case-insensitive string 'read' is expanded to the URI
E<lt>http://www.w3.org/ns/auth/acl#ReadE<gt>, 'write' to
E<lt>http://www.w3.org/ns/auth/acl#WriteE<gt>, 'append' to
E<lt>http://www.w3.org/ns/auth/acl#AppendE<gt> and 'control' to
E<lt>http://www.w3.org/ns/auth/acl#ControlE<gt>.
If the access control list is local (not remote), zero or more
additional RDF graphs can be passed (i.e. @data) containing
data to take into consideration when checking the agent's authorisation.
This data is trusted blindly, so should not include data that the
user has themselves supplied. If the access control list is remote,
then this method throws an error if any additional data is provided.
(A remote ACL cannot take into account local data.)
If $level is provided, this method returns a boolean.
If $level is undefined or omitted, this method returns a list
of URIs which each represent a type of access that the user is
authorised.
=cut
sub check
{
my ($self, $webid, $item, $level, @datas) = @_;
throw Error::Simple("Must provide WebID to be checked.")
unless defined $webid;
throw Error::Simple("Must provide item URI to be checked.")
unless defined $item;
my $model = $self->_union_model(@datas);
my $aclvocab = NS_ACL;
if (defined $level)
{
if ($level =~ /^(access|read|write|control|append)$/i)
{
$level = $aclvocab . (ucfirst lc $level);
}
my $sparql = <<SPARQL;
PREFIX acl: <$aclvocab>
ASK WHERE {
{
{ ?authorisation acl:agentClass ?agentclass . <$webid> a ?agentclass . }
UNION { ?authorisation acl:agent <$webid> . }
UNION { ?authorisation acl:agentClass <http://xmlns.com/foaf/0.1/Agent> . }
}
{
{ ?authorisation acl:accessToClass ?accessclass . <$item> a ?accessclass . }
UNION { ?authorisation acl:accessTo <$item> . }
UNION { ?authorisation acl:accessToClass <http://www.w3.org/2000/01/rdf-schema#Resource> . }
}
{
?authorisation acl:mode <$level> .
}
}
SPARQL
return rdf_query($sparql, $model);
}
else
{
my $sparql = <<SPARQL;
PREFIX acl: <$aclvocab>
SELECT DISTINCT ?level
WHERE {
{
{ ?authorisation acl:agentClass ?agentclass . <$webid> a ?agentclass . }
UNION { ?authorisation acl:agent <$webid> . }
UNION { ?authorisation acl:agentClass <http://xmlns.com/foaf/0.1/Agent> . }
}
{
{ ?authorisation acl:accessToClass ?accessclass . <$item> a ?accessclass . }
UNION { ?authorisation acl:accessTo <$item> . }
UNION { ?authorisation acl:accessToClass <http://www.w3.org/2000/01/rdf-schema#Resource> . }
}
{
?authorisation acl:mode ?level .
}
}
SPARQL
my $iterator = rdf_query($sparql, $model);
my @rv;
while (my $result = $iterator->next)
{
push @rv, $result->{'level'}->uri
if blessed($result->{'level'}) && $result->{'level'}->can('uri');
}
return @rv;
}
}
=item C<< $acl->why($webid, $item, $level, @data) >>
Investigates an agent's authorisation to access an item.
Arguments as per C<< check >>, however $level is required.
Returns a list of authorisations that justify a user's access to
the item with the given access level. These authorisations are
equivalent to $authid values provided by C<< allow() >>.
In some cases (especially if the authorisation was created
by hand, and not via C<< allow() >>) an authorisation may not
have an identifier. In these cases, the list will contain
undef.
=cut
sub why
{
my ($self, $webid, $item, $level, @datas) = @_;
throw Error::Simple("Must provide WebID to be checked.")
unless defined $webid;
throw Error::Simple("Must provide item URI to be checked.")
unless defined $item;
throw Error::Simple("Must provide item URI to be checked.")
unless defined $item;
my $model = $self->_union_model(@datas);
my $aclvocab = NS_ACL;
if ($level =~ /^(access|read|write|control|append)$/i)
{
$level = $aclvocab . (ucfirst lc $level);
}
my $sparql = <<SPARQL;
PREFIX acl: <$aclvocab>
SELECT DISTINCT ?authorisation
WHERE {
{
{ ?authorisation acl:agentClass ?agentclass . <$webid> a ?agentclass . }
UNION { ?authorisation acl:agent <$webid> . }
UNION { ?authorisation acl:agentClass <http://xmlns.com/foaf/0.1/Agent> . }
}
{
{ ?authorisation acl:accessToClass ?accessclass . <$item> a ?accessclass . }
UNION { ?authorisation acl:accessTo <$item> . }
UNION { ?authorisation acl:accessToClass <http://www.w3.org/2000/01/rdf-schema#Resource> . }
}
{
?authorisation acl:mode <$level> .
}
}
SPARQL
my $iterator = rdf_query($sparql, $model);
my @rv;
while (my $result = $iterator->next)
{
if (blessed($result->{'authorisation'}) && $result->{'authorisation'}->can('uri'))
{
push @rv, $result->{'authorisation'}->uri;
}
else
{
push @rv, undef;
}
}
return @rv;
}
=item C<< $acl->allow(%args) >>
Adds an authorisation to the ACL. The ACL must be mutable.
The method takes a hash of named arguments:
my $authid = $acl->allow(
webid => 'http://example.com/joe#me',
item => 'http://example.com/private/document',
level => ['Read', 'Write'],
);
'item' is the URI of the item to authorise access to. As an alternative,
'item_class' may be used to authorise access to an entire class of items
(using classes in the RDFS/OWL sense of the word). If neither of these
arguments is provided, then the method will throw an error. Both may be
provided. Either or both may be an arrayref, because an authorisation
may authorise access to more than one thing.
'container' is an alternative to using 'item' or 'item_class'. It
specifies the URI for a resource which in some way is a container for
other resources. Setting authorisations for a container allows you
to set a default authorisation for new items created within that
container. (You must use the C<< created() >> method to notify the ACL
about newly created items.)
'webid' is the WebID (URI) of the person or agent being granted access.
As an alternative, 'agent_class' may be used to authorise access to an
entire class of agents. If neither is provided, an agent_class of
E<lt>http://xmlns.com/foaf/0.1/AgentE<gt> is assumed. Both may be
provided. Either or both may be an arrayref, because an authorisation
may authorise access by more than one agent. (For consistency with 'item',
'agent' is supported as a synonym for 'webid'.)
'level' is the access level being granted. As with the C<< check >>
method, the shortcuts 'read', 'write', 'append' and 'control' may be used.
An arrayref may be used. If no level is specified, 'read' is assumed.
This authorisation is not automatically saved, so it is probably useful
to call C<< save() >> after adding authorisations.
The method returns an identifier for the authorisation. This identifier
may be needed again if you ever need to C<< deny() >> the authorisation.
This method is aware of C<< i_am() >>/C<< who_am_i() >>.
=cut
sub allow
{
my ($self, %args) = @_;
throw Error::Simple("This ACL is not mutable.")
unless $self->is_mutable;
throw Error::Simple("Must provide an 'item', 'item_class' or 'container' argument.")
unless (defined $args{'item'} or defined $args{'item_class'} or defined $args{'container'});
throw Error::Simple("Cannot provide 'container' with an 'item' or 'item_class' argument.")
if ((defined $args{'container'}) and (defined $args{'item'} or defined $args{'item_class'}));
$args{'agent_class'} = 'http://xmlns.com/foaf/0.1/Agent'
unless (defined $args{'webid'} or defined $args{'agent'} or defined $args{'agent_class'});
$args{'level'} = NS_ACL.'Read'
unless defined $args{'level'};
my $predicate_map = {
'level' => NS_ACL . 'mode' ,
'item' => NS_ACL . 'accessTo' ,
'item_class' => NS_ACL . 'accessToClass' ,
'container' => NS_ACL . 'defaultForNew' ,
'agent' => NS_ACL . 'agent' ,
'agent_class' => NS_ACL . 'agentClass' ,
'webid' => NS_ACL . 'agent' ,
};
my $data = {};
my $authid = $self->_uuid;
$data->{$authid}->{NS_RDF.'type'} = [
{ 'type'=>'uri', 'value'=>NS_ACL.'Authorization' },
];
foreach my $p (keys %$predicate_map)
{
next unless defined $args{$p};
unless (ref $args{$p} eq 'ARRAY')
{
$args{$p} = [ $args{$p} ];
}
foreach my $val (@{$args{$p}})
{
if (defined $self->who_am_i and $p =~ /^(item|container)$/)
{
my $control = $self->check($self->who_am_i, $val, 'Control');
throw Error::Simple("WebID <".$self->who_am_i."> does not have access control for resource <$val>.")
unless $control;
}
if ($p eq 'level' and $val =~ /^(access|read|write|control|append)$/i)
{
$val = NS_ACL . (ucfirst lc $val);
}
push @{ $data->{$authid}->{$predicate_map->{$p}} },
{ 'type'=>'uri', 'value'=>$val };
}
}
$self->model->add_hashref($data);
return $authid;
}
=item C<< $acl->deny($authid) >>
Completely removes all traces of an authorisation from the ACL.
The authorisation identifier can be found using C<< why() >> or
you may have remembered it when you first allowed the access.
In some cases (especially if the authorisation was created
by hand, and not via C<< allow() >>) an authorisation may not
have an identifier. In these cases, you will have to be creative
in figuring out how to deny access.
Returns the number of statements removed from the ACL's internal model
as a result of the removal. (This will normally be at least 3.)
This authorisation is not automatically saved, so it is probably useful
to call C<< save() >> after removing authorisations.
This method is aware of C<< i_am() >>/C<< who_am_i() >>.
=cut
sub deny
{
my ($self, $id) = @_;
throw Error::Simple("This ACL is not mutable.")
unless $self->is_mutable;
if (defined $self->who_am_i)
{
my $aclvocab = NS_ACL;
my $sparql = <<SPARQL;
PREFIX acl: <$aclvocab>
SELECT DISTINCT ?resource
WHERE
{
{ <$id> acl:accessTo ?resource . }
UNION { <$id> acl:accessTo ?resource . }
}
SPARQL
my $iterator = rdf_query($sparql, $self->model);
while (my $result = $iterator->next)
{
next unless $result->{'resource'}->is_resource;
next if $self->check($self->who_am_i, $result->{'resource'}->uri, 'Control');
throw Error::Simple("WebID <".$self->who_am_i."> does not have access control for resource <".$result->{'resource'}->uri.">.");
}
}
my $auth = RDF::Trine::Node::Resource->new($id);
my $count = $self->model->count_statements($auth, undef, undef);
$self->model->remove_statements($auth, undef, undef);
return $count;
}
=item C<< $acl->created($item, $container) >>
Finds all authorisations which are the default for new items within
$container and clones each of them for newly created $item.
Returns a list of authorisation identifiers.
=cut
sub created
{
my ($self, $item, $container) = @_;
throw Error::Simple("This ACL is not mutable.")
unless $self->is_mutable;
my $aclvocab = NS_ACL;
my $graph = rdf_query("
PREFIX acl: <$aclvocab>
CONSTRUCT { ?auth ?p ?o . }
WHERE {
?auth ?p ?o ;
acl:defaultForNew <$container> .
FILTER ( sameTerm(?p, acl:mode) || sameTerm(?p, acl:agent) || sameTerm(?p, acl:agentClass) || sameTerm(?p, <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>) )
}", $self->model);
my $data = $graph->as_hashref;
my $newdata = {};
my @rv;
foreach my $k (keys %$data)
{
my $authid = $self->_uuid;
$newdata->{$authid} = $data->{$k};
$newdata->{$authid}->{$aclvocab.'accessTo'} = [{
'type' => 'uri', 'value' => $item
}];
push @rv, $authid;
}
$self->model->add_hashref($newdata);
return @rv;
}
=item C<< $acl->i_am($webid) >>
Tells the ACL object to "act like" the agent with the given WebID.
If the ACL object is acting like you, then methods that make changes
to the ACL (e.g. C<< allow() >> and C<< deny() >>) will only work
if you have 'Control' permission over the resources specified.
$webid can be null to restore the usual behaviour.
Returns the previous WebID the ACL was acting like as a L<URI>
object.
=cut
sub i_am
{
my $self = shift;
my $old = $self->who_am_i;
$self->{'i_am'} = shift;
return URI->new($old);
}
=item C<< $acl->who_am_i >>
Returns the WebID of the agent that ACL is acting like (if any).
=cut
sub who_am_i
{
my ($self) = @_;
return $self->{'i_am'};
}
=item C<< $acl->save($format, $filename) >>
Serialises a local (not remote) ACL.
$format can be any format supported by rdf_string (see
L<RDF::Trine::Shortcuts>).
If $filename is provided, this method writes to the file
and returns the new file size in bytes.
If $filename is omitted, this method does not attempt to write
to a file, and simply returns the string it would have written.
=cut
sub save
{
my ($self, $fmt, $file) = @_;
$fmt ||= 'RDFXML';
throw Error::Simple("This ACL is not serialisable.")
if $self->is_remote;
my $str = rdf_string($self->model => $fmt);
if (defined $file)
{
open SAVE, ">$file";
print SAVE $str;
close SAVE;
return -s $file;
}
return $str;
}
=item C<< $acl->is_remote >>
Returns true if the ACL is remote; false if local.
=cut
sub is_remote
{
my ($self) = @_;
return defined $self->endpoint;
}
=item C<< $acl->is_mutable >>
Can this ACL be modified?
=cut
sub is_mutable
{
my ($self) = @_;
return defined $self->model;
}
=item C<< $acl->model >>
The graph model against which authorisation checks are made.
Returned as an L<RDF::Trine::Model> object.
=cut
sub model
{
my ($self) = @_;
return $self->{'model'};
}
=item C<< $acl->endpoint >>
The endpoint URI for remote (non-local) ACL queries.
Returned as a L<URI> object.
=cut
sub endpoint
{
my ($self) = @_;
return undef unless defined $self->{'endpoint'};
return URI->new(''.$self->{'endpoint'});
}
# PRIVATE METHODS
# * $acl->_uuid
#
# Returns a unique throwaway URI.
sub _uuid
{
my ($self) = @_;
$self->{'uuid_generator'} = Data::UUID->new
unless defined $self->{'uuid_generator'};
return 'urn:uuid:' . $self->{'uuid_generator'}->create_str;
}
# * $acl->_union_model(@graphs)
#
# Creates a temporary model that is the union of the ACL
# object's default data source plus additional graphs.
sub _union_model
{
my ($self, @graphs) = @_;
my $model;
if ($self->is_remote)
{
$model = $self->endpoint;
throw Error::Simple("Cannot provide additional data to consider for remote ACL.")
if @graphs;
}
elsif (@graphs)
{
$model = rdf_parse($self->model);
foreach my $given (@graphs)
{
rdf_parse($given, model=>$model);
}
}
else
{
$model = $self->model;
}
return $model;
}
1;
__END__
=back
=head1 BUGS
Please report any bugs to L<http://rt.cpan.org/>.
=head1 SEE ALSO
L<CGI::Auth::FOAF_SSL>.
L<http://www.w3.org/ns/auth/acl.n3>.
L<http://www.perlrdf.org/>, L<http://lists.foaf-project.org/mailman/listinfo/foaf-protocols>.
=head1 AUTHOR
Toby Inkster E<lt>tobyink@cpan.orgE<gt>.
=head1 COPYRIGHT
Copyright 2010-2011 Toby Inkster
This library is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=cut
|