by Jonathan Kaplan (jonathankap@gmail.com)



Purpose#

This tutorial is for system administrators who would like to enable authentication on their Open Wonderland server.

Open Wonderland supports three modes of authentication. The default is no authentication, where anyone can log in using any user id. This mode is intended only for developers. The second mode is to always require authentication. In this case, all users must have a valid account to log in to the Open Wonderland server. The last option extends the authenticated mode to allow for guest login. This means that only authenticated users can access the web administration and other sensitive areas of Open Wonderland, but other users may join as a guest. This tutorial will cover setting up the latter two authentication modes.

Open Wonderland also allows developers to add new authentication mechanisms, like LDAP, in the form of Open Wonderland modules. This tutorial will also cover how to configure these custom authenticators, using LDAP as an example.

Prerequisites#

Here's what you will need to complete this tutorial:


Installing the security-session-auth module#

The default no-authentication security is provided by a Open Wonderland module called "security-session-noauth". The first step in setting up security on a Open Wonderland server is to replace the security-session-noauth module with a version that supports authentication, in this case "security-session-auth". The mechanisms for doing this vary depending on if you are using a binary build of Open Wonderland or are building from source.

...in a binary download#

Download a copy of the authentication module jar file (security-session-auth.jar) from the Open Wonderland module warehouse. Now, use the module management UI to remove the module named "security-session-noauth" and replace it by uploading the security-session-auth.jar module file that you downloaded. For more information on managing modules, see managing modules. When you are done, your module list should look something like this:


As long as you continue to run the same binary version of Open Wonderland, everything should work correctly. If you update to a newer nightly build or release binary, you will need to go in and remove the security-session-noauth.jar again.

That's it. You can now skip directly to Configuring Authentication.

...in a source build#

In a source build, we will disable building the security-session-noauth module and add the security-session-auth module to the default list of modules to build. We will do this by editing the build.xml files in the appropriate directories. This assumes you have a directory structure with "wonderland" and "wonderland-modules" checked out as siblings:

<top-dir>
<top-dir>/wonderland
<top-dir>/wonderland-modules
<top-dir>/wonderland-modules/stable
<top-dir>/wonderland-modules/unstable

The first step is to disable security-session-noauth from building. We do this in <top-dir>/wonderland/modules/tools/build.xml, by commenting out the line as shown below:

    <!-- all projects -->
    <filelist dir="${current.dir}" id="all.projects">
        <file name="darkstar/build.xml"/>
        <file name="security-group/build.xml"/>
        <file name="security-session-common/build.xml"/>
        <!--file name="security-session-noauth/build.xml"/-->
        <file name="presence-manager/build.xml"/>
The next step is to add security-session-auth to the default packaged jars. We do this in <top-dir>/wonderland-modules/stable/build.xml, by adding the security-session-auth line below:
    <!--
         copy only the selected modules to the dist directory.  This is the
         default action, unless the modules.include.all property is set
    -->
    <target name="-modules-stable-dist-copy-selected" unless="modules.include.all">
        <copy todir="dist">
            <filelist dir=".">
                <file name="orientationworld/dist/orientationworld.jar"/>
                <file name="pdfviewer/dist/pdfviewer.jar"/>
                <file name="telepointer/dist/telepointer.jar"/>
                <file name="whiteboard/dist/whiteboard.jar"/>
                <file name="image-viewer/dist/imageviewer.jar"/>
                <file name="audiorecorder-module/dist/audiorecorder.jar"/>
                <file name="stickynote/dist/stickynote.jar"/>
                <file name="security-session-auth/dist/security-session-auth.jar"/>

Finally, before we rebuild we need to make sure there are no cached copies of security-session-noauth.jar hanging around. From the top directory:

% rm wonderland/modules/dist/security-session-noauth.jar
% cd wonderland/modules/tools/security-session-noauth
% ant clean

Configuring authentication#

Now that the modules are set up correctly, restart the Open Wonderland server ("java -jar Wonderland.jar" in binary or "ant run-server" in a source build). From this point forward, the instructions should be basically the same for binary distributions and source builds.

Connect to the web UI, and select "Server Admin". If all goes well, you should be prompted to login, as shown below:



Login using the default username, "admin", and the default password, also "admin". Since this isn't very secure, our first task is to change the password. Once you have logged in, select "User Manager" from the list of pages on the left. This will bring up a list of default users, as shown below:


These are the default user accounts used by the services in the system like the Darkstar server, the web server and the shared application server. Select the "edit" link next to each user to bring up an editor for that user:


Change the password, and then click "update user". While you are here, this would also be a good time to add some accounts for the users who will log in. Depending on your login setup, you may choose to define accounts in the User Manager, or using separate mechanisms like LDAP (more on that later). Below, I've created a user account for Thomas:

Configure services#

Next up, we have to tell the various services like the Darkstar server and the Shared App Server about these new passwords we just set. For each password that you set above, create a password file somewhere in the filesystem of your server. This file should consist of a single line with the password you used. The files can be put anywhere, but since they contain an actual password, make sure they are protected for read access. I tend to put the password files in the ~/.wonderland-server directory, with all the other server data, and protect them with normal file permissions. On my Mac, this looks like:

% cd ~/.wonderland-server/0.5-dev
% echo "supersecretpassword" > wonderland.password
% chmod 400 wonderland.password
% pwd
/Users/jkaplan/.wonderland-server/0.5-dev
Now my password file is in /Users/jkaplan/.wonderland-server/0.5-dev/wonderland.password. I only created a single password file, because I use the same password for all the various services. Depending on your security needs, you can use different passwords and password files for each service if you prefer.

Head back to the web UI and click on the "manage servers" link. For each service, we'll need to set a password by clicking the "edit" link next to that service. Each service uses a different property to set the password file. Set the appropriate property for the service (see table below) to the full path to the password file you created above. For the Darkstar server, it should look something like:


Here are the properties that you can use to configure the password for each service.

Component Property
Darkstar Server sgs.password.file
Shared App Server sas.password.file
Voice Bridge voicebridge.password.file

The final step is to configure the admin password in the web server itself. You do this by editing the my.run.properties file (see here for more information on setting properties).:

wonderland.webserver.password.file=/Users/jkaplan/.wonderland-server/0.5-dev/wonderland.password
Make sure that this points to the password for the "webserver" user you configured earlier.

Restart with security enabled#

Now restart the Wonderland web server one more time, and you should be up and running with security. As before, when you login in to the server using the "Server Admin" link, you should be prompted for a password. Use the password you configured for the admin user above. When you log in, you should now see that all the services are properly running.

If everything has worked as expected, when users log in, they should be prompted for a password:


User can log in using the accounts set up by the administrator in the user manager. Read on for more advanced configuration, including setting up different authentication mechanisms.

(Optional) Enable guest login#

Now that security is turned on, the sensitive areas of Wonderland like the web administration UI are protected, but every user requires a password to connect. With security enabled, you can turn on guest login to allow users to log in without an account. These logins can be made with any user name, as long as it is not already in use by another authentication mechanism (so guests cannot pretend to be users defined in the user manager).

To enable guest login, simple add the following property to the my.run.properties file:

wonderland.security.allow.guest.login=true

Restart the Wonderland web server, and guest login will be enabled. When users go to log in, they will now have the choice to use an authenticated or unauthenticated login:


(Optional) Add different authentication mechanisms#

By default, when you add security to Wonderland, it looks for user accounts from the list of accounts you created in the user manager web UI. For many setups, it is desirable to use other mechanisms to authenticate users, such as an LDAP directory. To support this, the Wonderland security system allows administrators to add new user plugins to configure security.

A user plugin is a Wonderland module that implements a particular interface for accessing remote authentication servers (see Developing with the Wonderland 0.5 security system for details on how to build user plugins). The user plugin verifies a user's credentials and returns back details about that user, like their name and email address.

The Wonderland web server maintains a list of user plugins. Whenever a user authenticates, each plugin in the list is queried to see if it supports the user with the given credentials. The plugin must give one of three responses:

1. MATCH - the user ID and credentials are a match with this plugin. Accept the login.

2. NO MATCH - the user ID is known to this plugin, but the credentials don't match. Reject the login.

3. UNKNOWN - the user ID is not known to this plugin. Continue on to the next plugin.

Wonderland ships with two plugins by default. The DBUserPlugin uses the database created by the Wonderland user manager web UI to authenticate users. The GuestUserPlugin is used for guest logins, and accepts all users that are passed in to it. Additional plugins can be found in the Wonderland module warehouse. For example, the LDAP Login module provides a user plugin that queries an LDAP directory for authentication information.

A typical setup would be to use the DBUserPlugin, followed by the LDAPUserPlugin, followed by the GuestUserPlugin. Using this setup, users specified in the Wonderland database (like the admin, webserver and darkstar users needed by the system) would be evaluated first. If the user isn't found, their credentials would be checked against the LDAP database. Finally, if the user id doesn't exist in LDAP, the user would be treated as a guest. This setup lets users with LDAP credentials connect securely, but also allows less secure connections for guests. Using group permissions, it would further be possible to make sure that only LDAP users had access to modify the world, while guests could only view the world. Note that if the GuestUserPlugin is used, it should always be last on the list (because it accepts all logins), and the "wonderland.security.allow.guest.login" property described above should be set as well.

To set up different user plugins, first install the appropriate plugin module. Then create a file in the filesystem that describes the configuration of user plugins. Here is a plugin configuration file for the setup above. Like the password files above, you can put this file anywhere, but I tend to put it in the ~/.wonderland-server directory.

<user-plugin-list>
  <user-plugin>
    <class>org.jdesktop.wonderland.modules.securitysession.auth.weblib.DBUserPluginImpl</class>
  </user-plugin>
  <user-plugin>
    <class>org.jdesktop.wonderland.modules.ldaplogin.weblib.LDAPUserPlugin</class>
    <properties>
        <item key="org.jdesktop.wonderland.modules.ldaplogin.directory">
            <value>ldaps://directory.java.net</value>
        </item>
        <item key="org.jdesktop.wonderland.modules.ldaplogin.base-dn">
            <value>ou=People,dc=wonderland,dc=org</value>
        </item>
    </properties>
  </user-plugin>
  <user-plugin>
    <class>org.jdesktop.wonderland.modules.securitysession.auth.weblib.GuestUserPluginImpl</class>
  </user-plugin>
</user-plugin-list>

As you can see, each plugin is listed with a user-plugin entry. The required value is the class name of the user plugin, specified by the class tag in the configuration file. The LDAP plugin also has some configuration, in the form of key / value pairs. You can see these values set in the optional properties section for the entry. See the documentation for a specific provider for more information on configuration for that particular plugin.

Once you have configured your plugin file, you just need to tell the Wonderland web server to use it. You do this by adding an entry to the my.run.properties file:

AuthSessionManagerImpl.UserPluginConfig=/Users/jkaplan/.wonderland-server/0.5-dev/wonderland.plugin.config

Now when you start Wonderland, users will be able to authenticate with their LDAP credentials.

(Developers) Enable ant deploy#

Developers might notice that the "ant deploy" task no longer works, because security is required to deploy modules. You can always use the web UI to deploy modules manually, but it is often more convenient to re-enable ant deploy. To do this, edit the my.build.properties file in your wonderland/ source directory. If the file doesn't exist, you can create it -- it is the equivalent of my.run.properties for build-time settings, and goes in the same directory in binary builds. Add the following lines to the file:

wonderland.web.username=admin
wonderland.web.password=supersecretpassword
The password is stored directly in this file, so make sure to protect the file if necessary by changing its permissions.
This material is distributed under the GNU General Public License Version 2

Add new attachment

Only authorized users are allowed to upload new attachments.

List of attachments

Kind Attachment Name Size Version Date Modified Author Change note
jpg
OWL-Login-Dialog-Auth.jpg 31.1 kB 1 21-Sep-2015 11:39 Abhishek Upadhyay
png
OWL-Login-Dialog-AuthNoGuest.p... 40.9 kB 1 09-Mar-2011 05:20 Nicole Yankelovich
png
SecurityModules.png 133.4 kB 1 09-Mar-2011 04:53 Nicole Yankelovich
png
edit-admin.png 66.6 kB 1 20-Feb-2011 04:38 125.237.103.241
png
edit-jonathan.png 67.5 kB 1 20-Feb-2011 04:39 125.237.103.241
png
edit-sgs-thumbnail-2.png 59.0 kB 1 20-Feb-2011 04:47 Dave Koelmeyer
png
edit-sgs-thumbnail.png 38.9 kB 1 20-Feb-2011 04:44 125.237.103.241
png
edit-sgs.png 82.3 kB 1 20-Feb-2011 04:39 125.237.103.241
png
edit-users-thumbnail-2.png 52.1 kB 1 20-Feb-2011 04:48 Dave Koelmeyer
png
edit-users-thumbnail.png 38.9 kB 1 20-Feb-2011 04:44 125.237.103.241
png
edit-users.png 76.0 kB 1 20-Feb-2011 04:39 125.237.103.241
png
login-guest-2.png 31.6 kB 2 20-Feb-2011 05:29 Dave Koelmeyer
png
login-guest.png 29.0 kB 1 20-Feb-2011 04:39 125.237.103.241
png
login-password-2.png 29.7 kB 2 20-Feb-2011 05:29 Dave Koelmeyer
png
login-password.png 27.2 kB 1 20-Feb-2011 04:40 125.237.103.241
png
module-installed-thumbnail-2.p... 79.2 kB 1 20-Feb-2011 04:47 Dave Koelmeyer
png
module-installed-thumbnail-3.p... 82.1 kB 1 20-Feb-2011 04:51 Dave Koelmeyer
png
module-installed-thumbnail.png 39.1 kB 1 20-Feb-2011 04:43 125.237.103.241
png
module-installed.png 93.6 kB 1 20-Feb-2011 04:40 125.237.103.241
png
web-login-dialog.png 34.4 kB 1 20-Feb-2011 04:40 125.237.103.241
« This page (revision-32) was last changed on 21-Sep-2015 12:59 by Abhishek Upadhyay