• Topic
  • Discussion
  • VOS.VirtODSFOAFSSL(Last) -- DAVWikiAdmin? , 2017-06-29 07:43:22 Edit WebDAV System Administrator 2017-06-29 07:43:22

    FOAF+SSL Support in OpenLink Data Spaces

    What?

    FOAF+SSL is an authentication and authorization protocol that links a ''[Web ID]'' or "Personal URI" to a public key to create a global, decentralized, distributed, and secure authentication system that functions with existing browsers.

    FOAF+SSL uses PKI standards ? usually thought of as hierarchical trust management tools ? in a decentralized web-of-trust way. The web of trust is built using semantic web vocabularies (particularly FOAF) published in RESTful manner to form [Linked Data].

    Based on well known existing standards, FOAF+SSL is currently in development, and is being discussed on the FOAF protocols mailing list.

    For the most recent description of the protocol, read the one-page ''FOAF+SSL: Adding Security to Open Distributed Social Networks''. For a more detailed explanation of how the authentication works, see ''FOAF+SSL: Creating a Web of Trust without Key Signing Parties''.

    Why?

    Automatic discovery of interpersonal trust relationships enables automatic application of appropriate permissions.

    In other words, data owners can set fuzzy permissions like "only let my friends see this" or "only let my family edit this." Applications can discover the relationships between the data owner and the data requester/user, and permit (or disallow) any attempted actions, without needing the data owner to explicitly set permissions for each potential user.

    One example might be a parent setting permissions on a photo gallery, to permit viewing only by "immediate family". The parent need not list each and every such relative specifically for this application -- and need not add new permissions for a new family member (whether by marriage, birth, or otherwise), though they do need to be added to the owner's FOAF. When a new user comes and asks to see the pictures, the gallery application would check the relationships declared by each person (the owner and the visitor), and if they matched up (in other words, the visitor could not get in simply by claiming a family relationship; the relationship must be confirmed by the owner's FOAF data), the pictures would be shown.

    How?

    x.509 certificate

    The FOAF+SSL consumer needs an x509 certificate with v3 extension "Subject Alternate Name". This attribute is used for the owner's Web ID. For testing purposes we used OpenSSL? demo CA to generate such certificates. If you are not using the OpenSSL? demo CA, you must first setup a self-signed CA; read OpenSSL? documents on how to do this.

    1. Add the following line to the [usr_cert] section of the openssl.cnf file —

      subjectAltName=$ENV::ALTNAME

    2. Set the environment variable ALTNAME to the owner's Web ID, e.g.,

      export ALTNAME=URI:http://localhost/dataspace/person/myname#this

    3. Make a self-signed certificate, e.g.,

      $ CA.pl -newreq (follow the dialog) $ CA.pl -sign

    4. When asked to commit the certificate, make sure you see several lines above, like —

      X509v3 Subject Alternative Name: URI:http://localhost/dataspace/person/myname#this

    5. If your browser wants a PKCS#12 bundle, you must make one —

      $ openssl pkcs12 -export -in newcert.pem -inkey newkey.pem -out mycert.p12

    6. Rename newcert.pem and newkey.pem, to mycert.pem and mykey.pem for example. The PEM format of the certificate will be needed below.

    Setting up Virtuoso HTTPS

    To enable the HTTPS listener, you will need another certificate. Existing certificates may not have Subject Alternate Name, so you may want to generate one as in the previous section.

    1. The next step is to move newcert.pem, newkey.pem, and cacert.pem into the server's working directory. In our test case, we put the keys in a 'keys' sub-directory, and added the following lines to the [HTTPServer] section of the Virtuoso INI file, virtuoso.ini:

      SSLPort = 4443 SSLCertificate = ./keys/localhost.cert.pem SSLPrivateKey = ./keys/localhost.key.pem X509ClientVerifyCAFile = ./keys/localhost.ca.pem X509ClientVerify = 1 X509ClientVerifyDepth = 15

    2. Also in the Virtuoso INI file, in the [URIQA] section, DefaultHost? (localhost:8890 below) must be edited to correspond to the DNS-resolvable host name ("CNAME") of the Virtuoso host, combined with the ServerPort? as set in the [HTTPServer] section of the same INI file.

      [URIQA] DynamicLocal = 1 DefaultHost = localhost:8890

      For instance, if the CNAME of the host is virtuoso.example.com, and the ServerPort? is 4321, the DefaultHost? should be set to virtuoso.example.com:4321

      [URIQA] DynamicLocal = 1 DefaultHost = virtuoso.example.com:4321

    3. Start the Virtuoso server, and look at the log file. Once HTTPS is up, you should see something like —

      HTTPS Using X509 Client CA .... HTTPS/X509 server online at 4443

    Setting Up Firefox

    1. In the Preferences dialog, open the Advanced tab, and click the "View certificates" button.



    2. Click the "Add exception" button ,and enter the address of the HTTPS server you've just configured, i.e., https://virtuoso.example.com:4443/
    3. Click OK, and confirm the exception.



    4. Click to the "Your Certificates" tab, and import mycert.p12.

    Configuring ODS Account to use FOAF+SSL

    1. Log in to your ODS account, and edit your profile.
    2. Click to the Security Tab, and scroll to the bottom, where you will find the X.509 certificate entry area.
    3. Copy & paste the PEM format of the certificate (i.e., the content of mykey.pem, from earlier).
    4. Press "Save Certificate" button, and you are set.

    Testing the setup

    To test, we recommend Firefox v3 with the Tabulator extension. Firefox must be set to ask for RDF, as instructed in the Tabulator documentation.

    1. Enter an ODS user's URI in the address bar, and the fun begins.
    2. You should see a protected document's URI. Note that there is no specific "address" data seen:



    3. When clicked, the browser will ask the user to select a certificate (note: certificate details are erased in picture below).



    4. Now the protected document includes the private address data alongside the previously visible public data!



    FOAF+SSL ACLs

    You can set FOAF+SSL ACLs from the Virtuoso Authentication Server UI. A sample tutorial can be viewed here.