• Topic
  • Discussion
  • VOS.ValQuickStartGuide(1.2) -- Owiki? , 2018-04-13 12:05:42 Edit owiki 2018-04-13 12:05:42

    Virtuoso Authentication Layer - ACL System Quickstart Guide

    See also: Virtuoso Authentication Layer - What, Why and How

    These pages provide an overview of VAL for system administrators, with a focus on how to configure the VAL ACL system.

    Developers wanting more in-depth coverage of how VAL integrates into Virtuoso, or how to integrate VAL into their own Virtuoso applications, should refer to the VAL API documentation.



    VAL In a Nutshell

    Virtuoso provides numerous options for access control, some specific to particular realms. For instance:

    • Protected SPARQL endpoints are associated with specific authentication methods, e.g., /sparql-auth, /sparql-oauth, /sparql-webid.
    • SPARQL roles restrict the types of SPARQL commands a database user may perform.
    • Graph level security allows the setting of permission bit masks to set the read/write (and sponge) permissions on specific RDF graphs to control public or specific user access.

    However, our recommended and preferred generic access control mechanism for Virtuoso is VAL, the Virtuoso Authentication Layer. VAL provides a generic ACL layer which can be used to protect many Virtuoso resources, including SPARQL endpoints or graphs, WebDAV resources, the Sponger, and even individual Sponger cartridges.

    VAL provides both authentication and access control services to Virtuoso through an internal Virtuoso API and two externally accessible HTTP APIs, one a "standard" HTTP API and the other a RESTful variant, which manage rules and groups via their URLs. Both are Turtle-based. Alternatively, admins can configure VAL ACLs by inserting Turtle directly into the appropriate VAL RDF graphs. All VAL authentication mechanisms are supported.

    Typically, users attempting to access a VAL-protected resource must authenticate themselves through a VAL-supplied authentication dialog. After establishing a VAL session, their access permissions on the resource are checked.

    VAL authentication dialog
    VAL authentication dialog

    The supported authentication methods are:

    • HTTP authentication (for users with a Virtuoso SQL user account)
    • Basic PKI
    • BrowserID
    • OpenID
    • WebID + TLS
    • Third-party OAuth services
      • Numerous services including Facebook, Twitter, LinkedIn, and Google
      • Note:

    VAL's generic ACL layer is fully RDF-based, storing rules and groups in private graphs in the triple store, and describing rules using the W3C ACL ontology and the OpenLink ACL ontology. The system also supports restriction of arbitrary values based on the authenticated user. These can be used to limit the number of query results, enforce quotas, etc.

    The VAL ACL Rule System - Core Concepts

    The following section outlines some of the core concepts underpinning VAL ACLs. The intent is to provide a brief overview. More detailed discussions of the various topics introduced here are provided elsewhere in the VAL documentation.

    The ACL rule system allows any authenticated person (including any third-party ServiceIDs which have no corresponding Virtuoso SQL account) to create ACL rules for any resource they own or for which they have GRANT rights.

    A resource is any entity identified by a URI. This could be a DAV folder, a SPARQL endpoint, or a Sponger extractor cartridge, among other things. VAL manages and reports the permissions on the resource, but the application logic supporting the resource access is responsible for enforcing those permissions.

    Rules and groups are stored in private named graphs within the triple store, as are resource ownership details. The rules may grant READ, WRITE, or SPONGE permission on a resource, or the ability to GRANT these permissions. Custom permissions can also be defined.

    Service IDs

    VAL enforces data access policies on the basis of ServiceIDs. A ServiceID uniquely identifies the resource requestor. A user (aka agent) trying to access to a non-public VAL protected resource or service will usually need to authenticate themselves through a VAL authentication dialog. Authentication establishes their ServiceID for that session.

    A ServiceID is a personal URI of some kind and may be one of two types: a NetID, or a WebID. A NetID is a URI returned by one of the numerous third-party authentication services supported by VAL; for instance, it may b a Google+ profile URI like https://plus.google.com/+JohnSmith. A WebID is a resolvable URI contained in the SubjectAlternativeName (SAN) slot of an X.509 certificate which resolves to an RDF document containing the user's profile.

    Realms

    Each ACL rule and group is defined in a specific application realm which is stored with the rule or group using the oplacl:hasRealm property. Each application realm defines a distinct set of rules and groups. The default realm is oplacl:DefaultRealm. In most circumstances it is unlikely you will need to define another realm for SPARQL applications.

    oplacl:DefaultRealm is for use in ACLs targeting SPARQL clients. VAL defines realm oplacl:Sql for ACLs controlling SQL clients, i.e. isql, ODBC, JDBC, ADO.NET, OLE DB clients etc. (SPARQL ACL rules defined in the default realm do not apply in SQL connections. Refer to SQL ACLs - Control SPARQL Access in SQL Connections (ODBC) for more details.)

    Rules

    ACL rules grant permissions to a ServiceID either directly or indirectly through an ACL group, both via the acl:agent property.

    Below is a basic example of an ACL rule granting READ access to a user authenticating through their Facebook account, <http://www.facebook.com/jsmith>, to resource <http://www.fusepool.eu/p3/assets>:


    @prefix  oplacl:  <http://www.openlinksw.com/ontology/acl#>   .
    @prefix     acl:  <http://www.w3.org/ns/auth/acl#>            .
    <#rule> 
                          a  acl:Authorization                   ;
       oplacl:hasAccessMode  oplacl:Read                         ;
                  acl:agent  <http://www.facebook.com/jsmith>    ;
               acl:accessTo  <http://www.fusepool.eu/p3/assets>  ;
            oplacl:hasScope  <urn:myscope>                        .
    

    Rules are stored in a private graph matching the realm the rules apply to, typically graph <http://HOST/acl/graph/rules/http%3A%2F%2Fwww.openlinksw.com%2Fontology%2Facl%23DefaultRealm>.

    Each permission granted through oplacl:hasAccessMode should be stated explicitly. A broader permission does not implicitly grant a more restrictive permission; so oplacl:Sponge does not also grant oplacl:Read, for example. To allow sponging to a graph, the access mode should be specified as oplacl:hasAccessMode oplacl:Read, oplacl:Write, oplacl:Sponge.

    Groups

    In addition to simple ACLs granting access to an individual, rules can be written to grant access to a simple group, a conditional group, or everyone (i.e., make a resource public).

    Groups are usually stored in graph <http://HOST/acl/graph/groups/http%3A%2F%2Fwww.openlinksw.com%2Fontology%2Facl%23DefaultRealm>.

    Simple groups are lists of members. Conditional groups remove the need to enumerate every member, and instead define a set of conditions. These conditions typically test attributes of the X.509 client certificate provided by the authenticated user's WebID, but can also be conditions evaluated as part of a SPARQL ASK query. Every authenticated person matching these conditions is seen as part of the group. VAL's Conditional Groups feature provides the basis for Attribute Based Access Control (ABAC).

    Example: Private graph access limited to a conditional group
    <#groupBasicNetID> a <http://www.openlinksw.com/ontology/acl#ConditionalGroup> ;
      <http://xmlns.com/foaf/0.1/name> "Identities Denoted using a NetID based Identifier" ;
      <http://www.openlinksw.com/ontology/acl#hasCondition> [
        a <http://www.openlinksw.com/ontology/acl#GroupCondition>, <http://www.openlinksw.com/ontology/acl#GenericCondition> ;
        <http://www.openlinksw.com/ontology/acl#hasCriteria> <http://www.openlinksw.com/ontology/acl#NetID> ;
        <http://www.openlinksw.com/ontology/acl#hasComparator> <http://www.openlinksw.com/ontology/acl#IsNotNull> ;
        <http://www.openlinksw.com/ontology/acl#hasValue> 1
        ] .
    
    <#PrivateNamedGraphRule1> a  acl:Authorization ;
      foaf:maker <http://kingsley.idehen.net/dataspace/person/kidehen#this> ;
      oplacl:hasAccessMode oplacl:Read ;
      acl:accessTo <http://OpenPermID-bulk-organization-20151111_095807.ttl> ;
      acl:agent <#groupBasicNetID> ;
      oplacl:hasScope  oplacl:PrivateGraphs ;
      oplacl:hasRealm  oplacl:DefaultRealm .
    
    

    Public access to a resource is granted using acl:agentClass foaf:Agent.

    Scopes

    Each ACL rule has a scope property, for instance: oplacl:hasScope oplacl:PrivateGraphs. The scope identifies the type of resource being protected and allows setting of default permissions for that resource type.

    VAL defines some standard scopes for Virtuoso resources, including:

    • Query scope: <http://www.openlinksw.com/ontology/acl#Query>
      • contains all ACL rules granting permission to perform SQL or SPARQL operations
    • Private graphs scope: <http://www.openlinksw.com/ontology/acl#PrivateGraphs>
      • contains all ACL rules granting access to specific private named graphs.
    • /describe service scope: <urn:virtuoso:val:scopes:sponger:describe>
      • contains all ACL rules controlling access to the /describe entity description service supporting follow-your-nose exploration and inferencing.
    • /about service scope: <urn:virtuoso:val:scopes:sponger:about>
      • contains all ACL rules controlling access to the /about endpoint providing a basic entity description service.
    • Sponger cartridges scope: <http://www.openlinksw.com/ontology/acl#SpongerCartridges>
      • contains all ACL rules granting access to specific Sponger Cartridges

    These and other predefined Virtuoso scopes are defined by the Virtuoso ACL ontology. Because scopes can be any arbitrary URI an application chooses to use, adding a scope for a new service is simple.

    Scopes can be in one of two states, enabled or disabled. This provides an easy means of enabling or disabling all ACL rules in that scope. Disabling a scope disables all ACL permissions checking on the corresponding resources, in effect making them publicly accessible in the absence of any other Virtuoso access control mechanisms. All scopes are disabled by default when VAL is first installed.

    Scopes can easily be enabled and disabled using the VAL Configuration UI in the Virtuoso Conductor, or by setting the corresponding value directly in the scope graph. For example:


    SPARQL
    PREFIX  oplacl:  <http://www.openlinksw.com/ontology/acl#>
      WITH  <urn:virtuoso:val:config>
        DELETE 
          { oplacl:DefaultRealm  oplacl:hasDisabledAclScope  oplacl:Query }
        INSERT
          { oplacl:DefaultRealm  oplacl:hasEnabledAclScope   oplacl:Query }
    ;
    

    Conductor's VAL Configuration UI can be accessed by navigating to the System Admin > Packages panel, then clicking on the 'Configure' link for the VAL VAD.

    Conductor's VAL Configuration UI

    Resources

    While the scope identifies the type of the protected resource; the specific resource being protected is identified through the acl:accessTo property. Graphs, both public and private, are identified by their URL, as are individual Sponger cartridges. e.g. The Virtuoso CSV extractor cartridge is identified by URL <http://sponger-hostname/ext/csv>.

    /sparql, /about & /describe Services - Resource URIs

    In the case of the /describe and /about scopes, the corresponding resources are the service endpoints identified by URI <urn:virtuoso:access:sponger:describe> and <urn:virtuoso:access:sponger:about>. The /sparql endpoint resource URI is <urn:virtuoso:access:sparql>, and is used in conjunction with scope oplacl:Query.

    The diagrams below illustrate how VAL is capable of supporting layered fine-grained access control. In this illustration, different access policies could be enforced depending on the route taken to access the Sponger. Also shown is how disabling certain scopes bypasses ACL rule checking by these scopes. The second figure shows the effect of disabling scopes <urn:virtuoso:val:scopes:sponger:about>, oplacl:Query and oplacl:SpongerCartridges.


    SQL Clients - Resource URI

    VAL defines resource <urn:virtuoso:access:sql> to allow users to perform SQL commands in addition to SPARQL, and to enforce request rate and result size limits on SQL clients. <urn:virtuoso:access:sql> is used in conjunction with scope oplacl:Query within the application realm oplacl:SqlRealm.

    Permission Reporting, Not Enforcement

    VAL provides a framework for creating and managing access control lists. Its core function is to report a user's permissions when they attempt to access a resource. It does not enforce the reported permissions. The act of enforcing them falls to the application using VAL. The application must be written to enforce the reported permissions as necessary. The user interfaces for Virtuoso's /sparql, /describe and /about service endpoints provide examples of how to use the VAL API to determine and act on a user's permissions.

    VAL vs RDF Graph Security

    In cases where the resource being protected by a VAL rule is an RDF graph, the permissions granted by the VAL rule must be consistent with the base permissions granted by the RDF graph security. Virtuoso's RDF Graphs Security system is the base layer upon which VAL-based graph access is layered. Consistency in this context means that if a VAL rule grants a user acl:Read permission on a graph, read access will be denied if the user does not have Read permission in the underlying RDF graph security system. Similar precedence rules apply to the acl:Sponge and acl:Write permissions. The graph security system will always take precedence. VAL can only restrict the base permissions, not broaden them. Consequently, the base graph permissions for a particular SQL user must be set to be at least as permissive as the permissions VAL rules seek to grant that same SQL user. SQL user in this context is the SQL account used by the service accessing the resource, which is distinct from the accessing user's NetID or WebID. (Most users accessing the system will not have a corresponding SQL account.).

    Similar considerations apply when the resource being protected implicitly requires access to graphs. For instance the /describe service. A VAL rule for this service grants acl:accessTo <urn:virtuoso:access:sponger:describe> and does not specify access to a specific graph. However if unauthenticated users are to be able to view public graphs the SQL user 'nobody', corresponding to unauthenticated VAL users, must have Read permission on public graphs in the RDF graph security system. The appropriate base RDF graph permissions can be set using DB.DBA.RDF_DEFAULT_USER_PERMS_SET () or DB.DBA.RDF_GRAPH_USER_PERMS_SET(), as described in RDF Graphs Security.

    Installing VAL

    VAL is shipped with the Virtuoso commercial installers. If not already installed as part of ODS, VAL is available as a VAD (Virtuoso Application Distribution) archive and can be installed via the Virtuoso Conductor (System Admin -> Packages tab) or it can be obtained from the OpenLink Virtuoso Download Page.

    Note once VAL is installed/enabled all graphs are protected by default and ACL rules need to be specifically created to allow access.

    Using VAL

    Controlling Access to the Sponger with VAL

    The Virtuoso Sponger can be controlled via ACL rules, defining who is allowed to Sponge, and who is not. Additionally it is possible to define who is allowed to use which Sponger cartridges. VAL authentication also provides a mechanism by which users may grant access tokens to OAuth-enabled Sponger cartridges, enabling these cartridges to convert the user's profile data from social media and other sites to Linked Data in the Sponger host instance.

    For more information, see:

    Controlling Access to Named Graphs and the SPARQL Processor with VAL

    Virtuoso uses the VAL ACL system to control access to named graphs, and to SPARQL in general. These rules, when enabled, are enforced on /sparql endpoints as well as any other application which tries to access those named graphs directly or through SPARQL queries.

    For more information, see:

    Protecting a Web Service with the VAL Authentication UI

    VAL provides an easy means by which to add authentication and ACL support to new or existing VSP-based applications. It provides authentication and log-out pages to support simple log-in and log-out links. The authentication page can be embedded in a custom log-in page, and supports customization of certain authentication dialog attributes such as the displayed error message and requested service label. It can be configured as a default redirect target for HTTP 401 (Unauthorized) errors to enforce authentication when different authentication is required to access a requested resource, or has not yet been provided.

    For more information, see:

    Customizing VAL

    Limited customization of VAL is possible. Aspects of VAL which can be customized include:

    • the logos displayed on the VAL authentication dialog
    • whether the authentication dialog is displayed automatically when access is denied
    • the named graphs used to store rules, groups, and restrictions

    VAL also supports the setting of a custom page footer for any VSP page.

    For more information, see:

    Additional VAL Tutorials

    You can find more VAL tutorials here: