Developer's Guide to Oracle® Solaris 11 Security

Exit Print View

Updated: July 2014
 
 

SASL Plug-in Overview

The SASL service provider interface (SPI) enables communication between plug-ins and the libsasl library. SASL plug-ins are typically implemented as shared libraries. A single shared library can one or more SASL plug-ins of different types. Plug-ins that are in shared libraries are opened dynamically by libsasl through the dlopen(3C) function.

Plug-ins can also be statically bound to an application that calls libsasl. These kinds of plug-ins are loaded through either the sasl_client_add_plugin() function or the sasl_server_add_plugin() function, depending on whether the application is a client or server.

    A SASL plug-in in the Oracle Solaris operating system has the following requirements:

  • A plug-in in a shared library must be in a valid executable object file, preferably with the .so file extension.

  • The plug-in must be in a location that can be verified. The SASL_CB_VERIFYFILE callback is used to verify plug-ins.

  • The plug– in must contain the proper entry points.

  • The version of the plug-in for the SASL client must match the version of the corresponding plug-in for the SASL server.

  • The plug-in needs to be able to be initialized successfully.

  • The binary type of the plug-in must match the binary type for libsasl.

    SASL plug-ins fall into four categories:

  • Client mechanism plug-in

  • Server mechanism plug-in

  • Canonicalization plug-in

  • Auxprop plug-in

The sasl_client_init() function causes SASL clients to load any available client plug-ins. The sasl_server_init() function causes SASL servers to load the server, canonicalization, and auxprop plug-ins. All plug-ins are unloaded when sasl_done() is called.

To locate plug-ins, libsasl uses either the SASL_CB_GETPATH callback function or the default path. SASL_CB_GETPATH returns a colon-separated list of directories to be searched for plug-ins. If the SASL consumer specifies a SASL_CB_GETPATH callback, then libsasl uses the returned path for searching. Otherwise, the SASL consumer can use the default path that corresponds to the binary type.

    The following list shows the default path and binary type correspondence:

  • 64-bit SPARC architecture: /usr/lib/sasl/sparcv9

  • x64 architecture: /usr/lib/sasl/amd64

  • 32-bit SPARC architecture: /usr/lib/sasl

  • 32-bit x86 architecture: /usr/lib/sasl

As part of the loading process, libsasl calls the latest, supported version of the plug-in. The plug-in returns the version and a structure that describes the plug-in. If the version checks out, libsasl loads the plug-in. The current version number is SASL_UTILS_VERSION.

After a plug-in has been initialized, subsequent communication between the plug-in and libsasl takes place through structures that have to be established. Plug–ins use the sasl_utils_t structure to call libsasl.

    The libsasl library uses entry points in the following structures to communicate with plug-ins:

  • sasl_out_params_t

  • sasl_client_params_t

  • sasl_server_params_t

  • sasl_client_plug_t

  • sasl_server_plug_t

  • sasl_canonuser_plug_t

  • sasl_auxprop_plug_t

The source code for these structures can be found in the SASL header files. The structures are described in the following section.

Important Structures for SASL Plug-ins

    Communication between libsasl and plug-ins is accomplished through the following structures:

  • sasl_utils_t – The sasl_utils_t structure contains a number of utility functions, along with the three contexts.

    This structure contains a number of utility functions that serve as a convenience for plug-in writers. Many of the functions are pointers to public interfaces in libsasl. Plug–ins do not need to call libsasl directly, unless for some reason the plug-in needs to be a SASL consumer.

      libsasl creates three contexts for sasl_utils_t:

    • sasl_conn_t *conn

    • sasl_rand_t *rpool

    • void *getopt_context

    In some cases, such as loading plug-ins, the conn variable in sasl_utils_t is not actually associated with a connection. In other cases, conn is the SASL consumer's SASL connection context. The rpool variable is used for random number generation functions. getopt_context is the context that should be used with the getopt() function.

    See sasl_getopt_t(3SASL), sasl_log_t(3SASL), and sasl_getcallback_t(3SASL).

  • sasl_out_params_t – libsasl creates the sasl_out_params_t structure and passes the structure to mech_step() in the client or server. This structure communicates the following information to libsasl: authentication status, the authid, the authzid, maxbuf, the negotiated ssf, and information for encoding and decoding data.

  • sasl_client_params_t – The sasl_client_params_t structure is used by libsasl to pass the client state to a SASL client mechanism. The client mechanism's mech_new(), mech_step(), and mech_idle() entry points are used to send this state data. The canon_user_client() entry point also requires client state to be passed along.

  • sasl_server_params_t – The sasl_server_params_t structure performs a similar function to sasl_client_params_t on the server side.

Client Plug-ins

Client plug-ins are used to manage the client-side of a SASL negotiation. Client plug-ins are usually packaged with the corresponding server plug-ins. A client plug-in contains one or more client-side SASL mechanisms. Each SASL client mechanism supports authentication, and optionally integrity and confidentiality.

    Each SASL client mechanism provides information on that mechanism's capabilities:

  • Maximum SSF

  • Maximum security flags

  • Plug-in features

  • Callbacks and prompt IDs for using the plug-in

Client plug-ins must export sasl_client_plug_init(). libsasl calls sasl_client_plug_init() to initialize the plug-in for the client. The plug-in returns a sasl_client_plug_t structure.

    The sasl_client_plug_t provides the following entry points for libsasl to call the mechanism:

  • mech_new() – The client starts a connection by calling sasl_client_start(), which uses mech_new(). mech_new() performs initialization that is specific to the mechanism. If necessary, a connection context is allocated.

  • mech_step()mech_step() can be called by sasl_client_start() and sasl_client_step(). mech_step() performs authentication on the client side after mech_new() has been called. mech_step() returns SASL_OK if authentication is successful. SASL_CONTINUE is returned if more data is required. A SASL error code is returned if authentication fails. If an error occurs, then seterror() is called. If the authentication is successful, mech_step() must return the sasl_out_params_t structure with the relevant security layer information and callbacks. The canon_user() function is part of this structure. canon_user() must be called when the client receives the authentication and authorization IDs.

  • mech_dispose()mech_dispose() is called when the context can be safely closed. mech_dispose() is called by sasl_dispose().

  • mech_free()mech_free() is called when libsasl shuts down. Any remaining global state for the plug-in is freed by mech_free().

Server Plug-ins

Server plug-ins are used to manage the server-side of a SASL negotiation. Server plug-ins are usually packaged with the corresponding client plug-ins. A server plug-in contains one or more server-side SASL mechanisms. Each SASL server mechanism supports authentication, and optionally integrity and confidentiality.

    Each SASL server mechanism provides information on that mechanism's capabilities:

  • Maximum SSF

  • Maximum security flags

  • Plug-in features

  • Callbacks and prompt IDs for using the plug-in

Server plug-ins must export sasl_server_plug_init(). libsasl calls sasl_server_plug_init() to initialize the plug-in for the server. The plug-in returns a sasl_server_plug_t structure.

    The sasl_server_plug_t structure provides the following entry points for libsasl to call the mechanism:

  • mech_new() – The server starts a connection by calling sasl_server_start(), which uses mech_new(). mech_new() performs initialization that is specific to the mechanism. If necessary, mech_new() allocates a connection context.

  • mech_step()mech_step() can be called by sasl_server_start() and sasl_server_step(). mech_step() performs authentication on the server-side after mech_new() has been called. mech_step() returns SASL_OK if authentication is successful. SASL_CONTINUE is returned if more data is required. A SASL error code is returned if authentication fails. If an error occurs, then seterror() is called. If the authentication is successful, mech_step() must return the sasl_out_params_t structure with the relevant security layer information and callbacks. The canon_user() function is part of this structure. canon_user() must be called when the server receives the authentication and authorization IDs. Calling the canon_user() function causes propctx to be filled in. Any required auxiliary property requests should be performed before the authentication is canonicalized. Authorization ID lookups are performed after the authentication is canonicalized.

      The mech_step() function must fill any related sasl_out_params_t fields before SASL_OK is returned. These fields perform the following functions:

    • doneflag – Indicates a complete exchange

    • maxoutbuf – Indicates maximum output size for a security layer

    • mech_ssf – Supplied SSF for the security layer

    • encode() – Called by sasl_encode(), sasl_encodev(), and sasl_decode()

    • decode() – Called by sasl_encode(), sasl_encodev(), and sasl_decode()

    • encode_context() – Called by sasl_encode(), sasl_encodev(), and sasl_decode()

    • decode_context() – Called by sasl_encode(), sasl_encodev(), and sasl_decode()

  • mech_dispose()mech_dispose() is called when the context can be safely closed. mech_dispose() is called by sasl_dispose().

  • mech_free()mech_free() is called when libsasl shuts down. Any remaining global state for the plug-in is freed by mech_free().

  • setpass() sets a user's password. setpass() enables a mechanism to have an internal password.

  • mech_avail() is called by sasl_listmech() to check if a mechanism is available for a given user. mech_avail() can create a new context and thus avoid a call to mech_new(). Use this method to create a context as long as performance is not affected.

User Canonicalization Plug-ins

A canonicalization plug-in provides support for alternate canonicalization of authentication and authorization names for both the client and server-side. The sasl_canonuser_plug_init() is used to load canonicalization plug-ins.

    A canonicalization plug-in has the following requirements:

  • The canonicalized name must be copied to the output buffers.

  • The same input buffer can be used as an output buffer.

  • A canonicalization plug-in must function in cases where only authentication IDs or authorization IDs exist.

User canonicalization plug-ins must export a sasl_canonuser_init() function. The sasl_canonuser_init() function must return sasl_canonuser_plug_t to establish the necessary entry points. User canonicalization plug-ins must implement at least one of the canon_user_client() or canon_user_server() members of the sasl_canonuser_plug_t structure.

Auxiliary Property (auxprop) Plug-ins

Auxprop plug-ins provide support for the lookup of auxiliary properties for both authid and authzid for a SASL server. For example, an application might want to look up the user password for an internal authentication. The sasl_auxprop_plug_init() function is used to initialize auxprop plug-ins and returns the sasl_auxpropr_plug_t structure.

To implement an auxprop plug-in successfully, the auxprop_lookup member of the sasl_auxprop_plug_t structure must be implemented. The auxprop_lookup() function is called after canonicalization of the user name, with the canonicalized user name. The plug-in can then do any lookups that are needed for the requested auxiliary properties.


Note - Oracle Corporation does not currently provide auxprop plug-ins.