This is an old revision of the document!


LSMCD Security Using SASL

SASL (Simple Application and Security Layer) is the method used to secure data in LSMCD and Memcached. There are various subtle differences in configuration between the two. This section describes the configuration you need to perform to allow LSMCD to operate in a SASL environment.

Enabling SASL is database wide. Once SASL is enabled, all non-SASL databases will need to be regenerated. You will also need to regenerate your databases (the files stored in the Cached.ShmDir parameter of your node.conf file) if you wish to remove SASL.

There are a number steps to configuring LSMCD to operate with SASL:

  • Enable SASL in your node.conf file
  • Create and configure a SASL configuration file
  • Create and configure a user database.
  • Any additional configuration. The doc below mentions things you should do for PHP.

Enable SASL in Your Configuration File

This is discussed at lscmd Configuration which also discusses overall configuration.

In particular you need to specify in your node.conf file:

CACHED.USESASL=TRUE

Create and Configure a SASL Configuration File

A SASL configuration file must be given one of the following names: /etc/sasl/memcached.conf, /tmp/memcached.conf or you can save it to any file or location that you wish by setting the SASL_CONF_PATH environment variable to the file name you wish to use. Note that this environment variable must be set in the system environment or in the environment where you started LSMCD (using lsmcdctrl). Regardless of its name or location the LSMCD user must have read permission to access your configuration file.

In this file there is only one parameter and value supported as of this release:

mech_list: PLAIN

Other SASL parameters can be specified in this file however, they are not supported by LSMCD as of this release and will generally be ignored.

Create and Configure a User Database

It is required that you create a user database. There is no predefined location and you must specify the location in the MEMCACHED_SASL_PWDB environment variable. If for example, you create a file named /etc/sasl/sasldb.conf you would need to export MEMCACHED_SASL_PWDB=/etc/sasl/sasldb.conf before starting LSMCD. It is considered good practice to have this file owned by the LSMCD user and readable by only that user (chmod 600).

Each line in your user database is a user name, a colon (:), and a password. For example if you had two users (user and sasluser) you might create a /etc/sasl/sasldb.conf with the following lines in it:

user:password
sasluser:saslpassword

Configure for PHP

The procedures for the Memcached extension to PHP are documented in: http://php.net/manual/en/memcached.setup.php. You know you have it right if phpinfo displays a memcached section.

The following is a sample PHP script you could create (named memcached.php) to validate that LSMCD is correctly installed and configured to work with SASL. You'll need to place it in the HTML directory of your server and adjust the user/password and other settings for your environment.

Some notes for all programming environments:

  • You must instantiate an instance of the Memcached object (Memcache no longer works).
  • You must use the binary protocol.
  • You must make the call to set the SASL authentication information (user/password) before you add the server.
  • Once you add the server successfully, you can perform all standard Memcached operations (get, put, etc.).
<?php
$mem_var = new Memcached();
$mem_var->setSaslAuthData('user', 'password');
$mem_var->setOption(Memcached::OPT_BINARY_PROTOCOL, true);
$mem_var->setOption(Memcached::OPT_COMPRESSION, false);
$mem_var->addServer("127.0.0.1", 11211);
$response = $mem_var->get("SampleKey");
if ($response) {
 echo "get(SampleKey) => " . $response;
} else if ($mem_var->getResultCode() == Memcached::RES_NOTFOUND) {
 echo "Adding a key/value: SampleKey/SampleValue";
 $mem_var->set("SampleKey", "SampleValue") or 
 die("SampleKey Couldn't be Created: '( " . $mem_var->getResultMessage() . 
   " )' ");
} else die ("Error in get: " . $mem_var->getResultCode() . ": " . 
      $mem_var->getResultMessage());
?>

Start LiteSpeed and LSMCD and point your browser to the web page you created. If the user or password are incorrect you'll see a message like Error in get: 41: AUTHENTICATION FAILURE. However if you have it right you'll see the first time you access the page Adding a key/value: SampleKey/SampleValue and subsequent accesses will show get(SampleKey) ⇒ SampleValue.

If you do not use the $mem_var→setSaslAuthData('user', 'password'); line, then this example will work for non-SASL environments as well.

  • Admin
  • Last modified: 2018/06/28 19:21
  • by Robert Perper