---+FOAF+SSL Support in OpenLink Data Spaces
---++What?
FOAF+SSL is an authentication and authorization protocol that links a ''[Web ID]'' or
"[[http://virtuoso.openlinksw.com/dataspace/dav/wiki/Main/GetAPersonalURIIn5MinutesOrLess][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 ?
[[http://blogs.sun.com/bblfish/entry/foaf_ssl_pki_and_the][in a decentralized web-of-trust way]].
The web of trust is built using semantic web vocabularies (particularly
[[http://www.foaf-project.org/][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 [[http://lists.foaf-project.org/mailman/listinfo/foaf-protocols][FOAF protocols mailing list]].
For the most recent description of the protocol, read the one-page
''[[http://blogs.sun.com/bblfish/entry/foaf_ssl_adding_security_to][FOAF+SSL: Adding Security to Open Distributed Social Networks]]''.
For a more detailed explanation of how the authentication works, see
''[[http://blogs.sun.com/bblfish/entry/more_on_authorization_in_foaf][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
1 Set the environment variable ALTNAME
to the owner's Web ID, e.g.,
export ALTNAME=URI:http://localhost/dataspace/person/myname#this
1 Make a self-signed certificate, e.g.,
$ CA.pl -newreq (follow the dialog)
$ CA.pl -sign
1 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
1 If your browser wants a PKCS#12
bundle, you must make one —
$ openssl pkcs12 -export -in newcert.pem -inkey newkey.pem -out mycert.p12
1 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
1 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
1 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.
%BR%%BR%%BR%%BR%
1 Click the "Add exception" button ,and enter the address of the HTTPS server you've just
configured, i.e., https://virtuoso.example.com:4443/
1 Click OK, and confirm the exception.
%BR%%BR%%BR%%BR%
1 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.
1 Click to the Security Tab, and scroll to the bottom, where you will find the X.509 certificate entry area.
1 Copy & paste the PEM format of the certificate (i.e., the content of mykey.pem
, from earlier).
1 Press "Save Certificate" button, and you are set.
---+++ Testing the setup
To test, we recommend [[http://www.mozilla.com/firefox/][Firefox]] v3 with the [[https://addons.mozilla.org/en-US/firefox/addon/5596][Tabulator extension]].
Firefox must be set to ask for RDF, as instructed in the [[http://dig.csail.mit.edu/2007/tab/][Tabulator documentation]].
1 Enter an ODS user's URI in the address bar, and the fun begins.
1 You should see a protected document's URI. Note that there is no specific "address" data seen:
%BR%%BR%%BR%%BR%
1 When clicked, the browser will ask the user to select a certificate (note: certificate details are erased in picture below).
%BR%%BR%%BR%%BR%
1 Now the protected document includes the private address data alongside the previously visible public data!
%BR%%BR%%BR%%BR%
---+++ FOAF+SSL ACLs
You can set FOAF+SSL ACLs from the [[VirtAuthServerUI][Virtuoso Authentication Server UI]]. A sample tutorial can be viewed [[VirtAuthFOAFSSLACL][here]].