resmgr_attach()

Attach a path to the pathname space

Synopsis:

#include <sys/iofunc.h>
#include <sys/resmgr.h>
#include <sys/dispatch.h>

int resmgr_attach (
       dispatch_t *dpp,
       resmgr_attr_t *attr,
       const char *path, 
       enum _file_type file_type,
       unsigned flags, 
       const resmgr_connect_funcs_t *connect_funcs,
       const resmgr_io_funcs_t *io_funcs,
       RESMGR_HANDLE_T *handle );
Note: In order to correctly define RESMGR_HANDLE_T, #include <sys/iofunc.h> before <sys/resmgr.h>.

Arguments:

dpp
A dispatch handle created by a successful call to dispatch_create().
attr
A pointer to a resmgr_attr_t structure (see below) that defines attributes for the resource manager, or NULL to use the default attributes.
path
NULL, or the path that you want to attach the resource manager to; see below.
file_type
The file type; one of the following (defined in <sys/ftype.h>):
  • _FTYPE_ANY — the path name can be anything.
  • _FTYPE_LINK — reserved for the Process Manager.
  • _FTYPE_MOUNT — receive mount requests on the path (path must be NULL).
  • _FTYPE_MQUEUE — reserved for a message-queue manager.
  • _FTYPE_PIPE — reserved for a pipe manager.
  • _FTYPE_SEM — reserved for a semaphore manager.
  • _FTYPE_SHMEM — reserved for a shared memory object.
  • _FTYPE_SOCKET — reserved for a socket manager.
  • _FTYPE_SYMLINK — reserved for the Process Manager.
flags
Flags that control the pathname resolution:
  • _RESMGR_FLAG_AFTER
  • _RESMGR_FLAG_BEFORE
  • _RESMGR_FLAG_DIR
  • _RESMGR_FLAG_FTYPEALL
  • _RESMGR_FLAG_FTYPEONLY
  • _RESMGR_FLAG_OPAQUE
  • _RESMGR_FLAG_SELF

For more information, see "The flags argument," below.

connect_funcs
A pointer to the resmgr_connect_funcs_t structure that defines the POSIX-level connect functions.
io_funcs
A pointer to the resmgr_io_funcs_t structure that defines the POSIX-level I/O functions.
handle
A pointer to an arbitrary structure that you want to associate with the pathname you're attaching. For most resource managers, this is an iofunc_attr_t structure.

Library:

libc

Use the -l c option to qcc to link against this library. This library is usually included automatically.

Description:

The resmgr_attach() function puts the path into the general pathname space and binds requests on this path to the dispatch handle dpp.

Note:
  • Your process needs certain abilities enabled:
    • PROCMGR_AID_PATHSPACE, to add a name to the pathname space
    • PROCMGR_AID_PUBLIC_CHANNEL, to create a public channel (i.e., without _NTO_CHF_PRIVATE set)

    For more information, see procmgr_ability().

  • Once you've called dispatch_context_alloc(), don't call message_attach() or resmgr_attach() specifying a different maximum message size or a different number of message parts for the same dispatch handle.

Most of the above file types are used for special services that have their own open function associated with them. For example, the mqueue manager specifies file_type as _FTYPE_MQUEUE, and mq_open() requests a pathname match of the same type.

Specify _FTYPE_ANY for normal filesystems and simple devices, such as serial ports, that don't have their own special open type, or if your resource manager can handle the type of service or act as a redirection node to a manager that does. Most resource managers are of this type.

Your resource manager won't receive messages from an open of an inappropriate type. The following table shows the different open function types and the types of pathnames they'll match.

Function: file_type: Matches pathname of type:
mq_open() _FTYPE_MQUEUE _FTYPE_ANY or _FTYPE_MQUEUE
open() _FTYPE_ANY All types
pipe() _FTYPE_PIPE _FTYPE_ANY or _FTYPE_PIPE
sem_open() _FTYPE_SEM _FTYPE_ANY or _FTYPE_SEM
shm_open() _FTYPE_SHMEM _FTYPE_ANY or _FTYPE_SHMEM
socket() _FTYPE_SOCKET _FTYPE_ANY or _FTYPE_SOCKET

The generic open() can be used to open a pathname of any type.

If you want to use the POSIX functions, we've provided you with the POSIX layer; to fill your connect and I/O functions tables with the default handler functions supplied by the POSIX layer library, call iofunc_func_init(). You can then override the defaults placed in the structures with your own handlers.

Note: The resmgr_attach() function copies the pointers to the resmgr_connect_funcs_t and resmgr_io_funcs_t structures, not the structures themselves. You should allocate the structures, declare them to be static, or make them global variables. If your resource manager is for more than one device with different handlers, create separate structures that define the handlers.

In the most general case, the last argument, handle is an arbitrary structure that you wish to have associated with the pathname you're attaching. Practically, however, we recommend that it contain the POSIX layer's well defined attributes structure, iofunc_attr_t, because this lets you use the POSIX-layer default library. You can extend the data that's contained in the attributes structure to contain any device-specific data that you may require. This is commonly done, and is described in the Extending the POSIX-Layer Data Structures chapter of Writing a Resource Manager.

In order to use the POSIX layer default library, the attributes structure must be bound into the Open Control Block, and you must use the POSIX layer's iofunc_ocb_t OCB. This is described in the documentation for resmgr_open_bind(), as well as in the above reference.

resmgr_attr_t structure

You can specify attributes such as the maximum message size, number of parts (number of IOVs in context), and flags in the attr structure. The resmgr_attr_t structure looks like this:

typedef struct _resmgr_attr {
   unsigned      flags;
   unsigned      nparts_max;
   unsigned      msg_max_size;
   int           (*other_func) ( resmgr_context_t *, void *msg );
} resmgr_attr_t;

The members include:

flags
Flags that affect the behavior of the resource manager interface; 0, or a combination of the following bits (defined in <sys/dispatch.h>):
  • RESMGR_FLAG_ATTACH_LOCAL — set up the resource manager, but don't register its path with procnto. You can send messages to the resource manager's channel (if you know where to find it).
  • RESMGR_FLAG_ATTACH_OTHERFUNC — the other_func member of this structure points to a function for unhandled I/O messages.
  • RESMGR_FLAG_CROSS_ENDIAN — the server handles cross-endian support. The framework handles all necessary conversions on the server's side; the client doesn't have to do anything.
  • RESMGR_FLAG_NO_DEFAULT_FUNC — not implemented.
  • RESMGR_FLAG_RCM (QNX Neutrino 6.6 or later) — automatically adopt the client's resource constraint mode when handling a request. For more information, see Resource constraint thresholds in the Processes chapter of the QNX Neutrino Programmer's Guide.
Note: Don't confuse these flags with the ones you pass in the flags argument to resmgr_attach(). The names of these flags don't start with an underscore (_).
nparts_max
The number of components to allocate for the IOV array. If you specify 0, the resource manager library bumps the value to the minimum usable by the library itself.
msg_max_size
The minimum amount of room to reserve for receiving a message that's allocated in resmgr_context_alloc(). If the value is too low, or you specify it as 0, resmgr_attach() picks a value that's usable.
other_func
A pointer to a function that's called if the resource manager receives an I/O message that it didn't successfully handle. This function is attached only if RESMGR_FLAG_ATTACH_OTHERFUNC is set in the flags member of this structure.

The flags argument

The flags argument to resmgr_attach() specifies additional information to control the pathname resolution.

Note: Don't confuse these flags with the ones you set in the flags member of the resmgr_attr_t structure. The names of these flags start with an underscore (_).

The flags (defined in <sys/resmgr.h>) include at least the following bits:

_RESMGR_FLAG_AFTER
Force the path to be resolved after others with the same pathname at the same mountpoint.
_RESMGR_FLAG_BEFORE
Force the path to be resolved before others with the same pathname at the same mountpoint.
Note: If multiple registrations are made with _RESMGR_FLAG_BEFORE or _RESMGR_FLAG_AFTER, then all BEFORE registrations are resolved first in FIFO order, followed by the non-flagged registrations in LIFO order, and then all AFTER registrations in LIFO order (i.e., the first BEFORE registered is resolved first, and the first AFTER registered is resolved last).
_RESMGR_FLAG_DIR
Treat the pathname as a directory and allow the resolving of longer pathnames. The _IO_CONNECT message contains the pathname passed to the client open() with the matching prefix stripped off. Without this flag, the pathname is treated as a simple file requiring an exact match.
Attached path Opened path _RESMGR_FLAG_DIR set _RESMGR_FLAG_DIR clear
/a/b /a/b Match "" Match ""
/a/b /a/b/c Match c No match
/a/b /a/b/c/d Match c/d No match
/a/b /a/bc No match No match

You can't attach a directory pathname that contains, as a subset, an existing file pathname. Likewise, you can't attach a file pathname that's a subset of an existing directory pathname.

Existing path New path New path allowed?
Directory /a/b Directory /a Yes
Directory /a/b Directory /a/b/c Yes
File /a/b Directory /a Yes
File /a/b Directory /a/b/c No; the directory is beneath a file
Directory /a/b File /a No; the directory is beneath a file
Directory /a/b File /a/b/c Yes
File /a/b File /a Yes
File /a/b File /a/b/c Yes
_RESMGR_FLAG_FTYPEALL
Handle requests for all file types. You must specify a registration file type of _FTYPE_ALL.
_RESMGR_FLAG_FTYPEONLY
Handle only requests for the specific filetype indicated. The pathname must be NULL.
_RESMGR_FLAG_OPAQUE
Don't resolve paths to mountpoints on a path shorter than this (i.e., find the longest match against all pathnames attached).
_RESMGR_FLAG_SELF
Allow requests to resolve back to this server; in other words, allow the resource manager to open a path to itself.
CAUTION:
Be very careful if you set _RESMGR_FLAG_SELF because it's possible for a deadlock to occur. For more information, see "Robust implementations with Send/Receive/Reply" in the Interprocess Communication (IPC) chapter of the System Architecture guide.

Returns:

A unique link ID associated with this attach, or -1 on failure (errno is set).

The returned ID is needed to detach the pathname at a later time using resmgr_detach(). The ID is also passed back in the resmgr_handler() function in ctp->id.

Errors:

EBUSY
An internal resource wasn't available.
ENOMEM
There isn't enough free memory to complete the operation.
ENOTDIR
A component of the pathname wasn't a directory entry.
EPERM
The calling process doesn't have the required permission; see procmgr_ability().

Examples:

Here's an example of a simple single-threaded resource manager:

#include <stdio.h>
#include <stddef.h>
#include <stdlib.h>
#include <sys/iofunc.h>
#include <sys/dispatch.h>

static resmgr_connect_funcs_t    connect_funcs;
static resmgr_io_funcs_t         io_funcs;
static iofunc_attr_t             attr;

int main(int argc, char **argv)
{
    dispatch_t           *dpp;
    resmgr_attr_t        resmgr_attr;
    resmgr_context_t     *ctp;
    int                  id;

    /* initialize dispatch interface */
    if ( (dpp = dispatch_create()) == NULL ) {
       fprintf( stderr, "%s: Unable to allocate \
                dispatch handle.\n", argv[0] );
       return EXIT_FAILURE;
    }

    /* initialize resource manager attributes */
    memset( &resmgr_attr, 0, sizeof resmgr_attr );
    resmgr_attr.nparts_max = 1;
    resmgr_attr.msg_max_size = 2048;

    /* initialize functions for handling messages */
    iofunc_func_init( _RESMGR_CONNECT_NFUNCS, &connect_funcs,
                      _RESMGR_IO_NFUNCS, &io_funcs );

    /* initialize attribute structure */
    iofunc_attr_init( &attr, S_IFNAM | 0666, 0, 0 );

    /* attach our device name (passing in the POSIX defaults 
       from the iofunc_func_init and iofunc_attr_init functions) 
     */
    if ( (id = resmgr_attach
          ( dpp, &resmgr_attr, "/dev/mynull", _FTYPE_ANY, 0,
          &connect_funcs, &io_funcs, &attr)) == -1 ) {
        fprintf( stderr, "%s: Unable to attach name.\n", \
                 argv[0] );
        return EXIT_FAILURE;
    }

    /* allocate a context structure */
    ctp = resmgr_context_alloc( dpp );

    /* start the resource manager message loop */
    while (1) {
        if ( (ctp = resmgr_block( ctp )) == NULL ) {
           fprintf(stderr, "block error\n");
           return EXIT_FAILURE;
        }
        resmgr_handler(ctp);
    }
}

For more examples using the dispatch interface, see dispatch_create(), message_attach(), and thread_pool_create(). For more information on writing a resource manager, see Writing a Resource Manager

Classification:

QNX Neutrino

Safety:  
Cancellation point Yes
Interrupt handler No
Signal handler No
Thread No