Skip to main content
Skip table of contents

Getting Started with Glacier2

Using Glacier2

Using Glacier2 in a minimal configuration involves the following tasks:

  1. Write a configuration file for the router.

  2. Write a password file for the router. (Glacier2 also supports other ways to authenticate users.)

  3. Decide whether to use the router's internal session manager, or supply your own session manager.

  4. Start the router on a host with access to the public and private networks.

  5. Modify the client configuration to use the router.

  6. Modify the client to create a router session.

For the sake of example, the router's public address is 5.6.7.8 and its private address is 10.0.0.1.

Configuring the Router

The following router configuration property establish the necessary endpoint:

CONFIG
Glacier2.Client.Endpoints=tcp -h 5.6.7.8 -p 4063

The endpoint defined by Glacier2.Client.Endpoints is used by the Ice runtime in a client to interact directly with the router. It is also the endpoint where requests from routed proxies are sent. This endpoint is defined on the public network interface because it must be accessible to clients. Furthermore, the endpoint uses a fixed port because clients may be statically configured with a proxy for this endpoint. The port numbers 4063 (for TCP) and 4064 (for SSL) are reserved for Glacier2 by the Internet Assigned Numbers Authority (IANA).

This sample configuration uses TCP as the endpoint protocol, although in most cases, SSL is preferable.

Note that this configuration enables the router to forward requests from clients to servers. Additional configuration is necessary to support callbacks from servers to clients.

You must also decide which authentication scheme (or schemes) to use. A file-based mechanism is available, as are more sophisticated strategies.

If clients access a location service via the router, additional router configuration is typically necessary.

Writing a Password File

The router's simplest authentication mechanism uses an access control list in a text file consisting of username and password pairs. Passwords are encoded using the modular crypt format (MCF). 

The general structure of a MCF encoded password hash is: $identifier$content, where identifier denotes the scheme used for hashing, and content denotes its contents. Glacier2 supports two types of MCF encoded password hashes:

On Windows and macOS:

  • PBKDF2 using SHA-1, SHA-256, or SHA-512 as the digest algorithm.

PBKDF2 does not have a standard form in the MCF specification. In this case Glacier2 uses the same format as passlib.

  • $pbkdf2-digest$rounds$salt$ for SHA-256 and SHA-512.

  • $pbkdf2$rounds$salt$ for SHA-1.

On Linux:

  • Crypt using SHA-256, or SHA-512 as the digest algorithm.

The property Glacier2.CryptPasswords specifies the name of the password file:

CONFIG
Glacier2.CryptPasswords=passwords

The format of the password file is very simple. Each user name-password pair must reside on a separate line, with whitespace separating the user name from the password. For example, the following password file contains an entry for the user name test:

CODE
test $5$rounds=110000$5rM9XIDChkgEu.S3$ov7yip4NOi1wymAZmamEv1uKPQRB0WzasoJsWMpRT19

icehashpassword Helper Script

You can use the icehashpassword helper script to generate these username-password pairs. This script requires Python and pip to be installed. To install this script run:

BASH
pip install zeroc-icehashpassword

You can now use the command icehashpassword:

BASH
icehashpassword
Password:
$5$rounds=110000$5rM9XIDChkgEu.S3$ov7yip4NOi1wymAZmamEv1uKPQRB0WzasoJsWMpRT19

You may also specify several optional parameters:

  • -d MESSAGE_DIGEST_ALGORITHM, --digest=MESSAGE_DIGEST_ALGORITHM

  • -s SALT_SIZE, --salt=SALT_SIZE

  • -r ROUNDS, --rounds=ROUNDS

For example:

BASH
python icehashpassword.py -r 25000 -s 32 -d sha256
Password:
...

Note that icehashpassword generates PBKDF2 hashes on Windows and macOS, and Crypt hashes on Linux.

This authentication scheme is intended for use in simple applications with a few users. Most applications should install their own custom permissions verifier.

Starting the Router

Assuming our configuration properties are stored in a file named config, you can start the router with the following command:

BASH
glacier2router --Ice.Config=config

Configuring a Glacier2 Client

The following property configures a client to use a Glacier2 router:

CONFIG
Ice.Default.Router=Glacier2/router:tcp -h 5.6.7.8 -p 4063

The Ice.Default.Router property defines the router proxy. Its endpoints must match those in Glacier2.Client.Endpoints.

Glacier2 Object Identities

A Glacier2 router hosts one well-known object. The default identity of this object is Glacier2/router, corresponding to the Glacier2::Router interface. If an application requires the use of multiple different (that is, not replicated) routers, it is a good idea to assign a unique identity to this object by configuring the routers with different values of the Glacier2.InstanceName property, as shown in the following example:

CONFIG
Glacier2.InstanceName=PublicRouter

This property changes the category of the object identity, which becomes PublicRouter/router. The client's configuration must also be changed to reflect the new identity:

CONFIG
Ice.Default.Router=PublicRouter/router:tcp -h 5.6.7.8 -p 4063

One exception to this rule is if you deploy multiple Glacier2 routers as replicas, for example, to gain redundancy or to distribute the message-forwarding load over a number of machines. In that case, all the routers must use the same instance name, and the router clients can use proxies with multiple endpoints, such as:

CONFIG
Ice.Default.Router=PublicRouter/router:tcp -h 5.6.7.8 -p 4063:tcp -h 6.10.7.8 -p 4063

A client can discover a router's proxy at run time using the RouterFinder interface.

Glacier2 Sessions

Glacier2 Session Creation

Session management is provided by the Glacier2::Router interface:

SLICE
module Glacier2
{
    exception PermissionDeniedException
    {
        string reason;
    }

    interface Router extends Ice::Router
    {
        Session* createSession(string userId, string password)
            throws PermissionDeniedException, CannotCreateSessionException;

        Session* createSessionFromSecureConnection()
            throws PermissionDeniedException,CannotCreateSessionException;

        idempotent string getCategoryForClient();

        void destroySession()
            throws SessionNotExistException;
    }
}

The interface defines two operations for creating sessions: createSession and createSessionFromSecureConnection. The router requires each client to create a session using one of these operations; only after the session is created will the router forward requests on behalf of the client.

The createSession operation expects a user name and password and, depending on the router's configuration, returns either a Session proxy or nil. When using the default authentication scheme, the given user name and password must match an entry in the router's password file in order to successfully create a session.

The createSessionFromSecureConnection operation does not require a user name and password because it authenticates the client using the credentials associated with the client's SSL connection to the router.

To create a session, the client typically creates the router proxy from the communicator and then calls one of the create operations. For example:

TODO: copy samples from Glacier2/greeter demo

If the router is configured with a session manager, the createSession and createSessionFromSecureConnection operations may return a proxy for an object implementing the Glacier2::Session interface (or an application-specific derived interface). The client receives a null proxy if no session manager is configured.

A non-null session proxy returned by a create operation must be configured with the router that created it because the session object is only accessible via the router. If the router is configured as the client's default router at the time createSession or createSessionFromSecureConnection is invoked, then the session proxy is already properly configured and nothing else is required. Otherwise, the client must explicitly configure the session proxy with a router using the ice_router proxy method.

Glacier2 Session Destruction

A router session is destroyed when a client calls destroySession on the router. The router also destroys a session if certain connection errors occur while attempting to route a request. These errors are represented by the runtime exceptions SocketExceptionTimeoutException, and ProtocolException. In other words, if any of these exceptions occur while Glacier2 attempts to establish a connection to the target back-end server, or forward a request to the target back-end server, the router automatically destroys the session.

See Also
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.