Diffusion C API  5.9.24
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
svc-system-auth-control.h File Reference

Services for querying and updating the system authentication store. More...

Data Structures

struct  system_principal_s
 Structure describing a principal in the authentication store. More...
 
struct  system_authentication_store_s
 
struct  svc_get_system_authentication_store_request_s
 Structure describing the "get system authentication store" request. More...
 
struct  svc_get_system_authentication_store_response_s
 Structure describing a "get system authentication store" response. More...
 
struct  get_system_authentication_store_params_s
 Structure passed when requesting the system authentication store. More...
 
struct  svc_update_system_authentication_store_request_s
 Structure describing an "update system store" request. More...
 
struct  svc_update_system_authentication_store_response_s
 Structure describing the response to an "update system store" request. More...
 
struct  update_system_authentication_store_params_s
 Structure passed when updating the system authentication store. More...
 

Typedefs

typedef struct system_principal_s SYSTEM_PRINCIPAL_T
 Structure describing a principal in the authentication store.
 
typedef struct
svc_get_system_authentication_store_request_s 
SVC_GET_SYSTEM_AUTHENTICATION_STORE_REQUEST_T
 Structure describing the "get system authentication store" request.
 
typedef struct
svc_get_system_authentication_store_response_s 
SVC_GET_SYSTEM_AUTHENTICATION_STORE_RESPONSE_T
 Structure describing a "get system authentication store" response.
 
typedef int(* on_get_system_authentication_store_cb )(SESSION_T *session, const SYSTEM_AUTHENTICATION_STORE_T store, void *context)
 Callback for get_system_authentication_store(). More...
 
typedef struct
get_system_authentication_store_params_s 
GET_SYSTEM_AUTHENTICATION_STORE_PARAMS_T
 Structure passed when requesting the system authentication store.
 
typedef struct
svc_update_system_authentication_store_request_s 
SVC_UPDATE_SYSTEM_AUTHENTICATION_STORE_REQUEST_T
 Structure describing an "update system store" request.
 
typedef struct
svc_update_system_authentication_store_response_s 
SVC_UPDATE_SYSTEM_AUTHENTICATION_STORE_RESPONSE_T
 Structure describing the response to an "update system store" request.
 
typedef int(* on_update_system_authentication_store_cb )(SESSION_T *session, const LIST_T *error_reports, void *context)
 Callback for update_system_authentication_store(). More...
 
typedef struct
update_system_authentication_store_params_s 
UPDATE_SYSTEM_AUTHENTICATION_STORE_PARAMS_T
 Structure passed when updating the system authentication store.
 

Enumerations

enum  ANONYMOUS_CONNECTION_ACTION_T { ANONYMOUS_CONNECTION_ACTION_ALLOW, ANONYMOUS_CONNECTION_ACTION_DENY, ANONYMOUS_CONNECTION_ACTION_ABSTAIN }
 Action to be taken by the system authentication handler for connection attempts that do not provide a principal name and credentials. More...
 

Functions

SYSTEM_AUTHENTICATION_STORE_Tsystem_authentication_store_create (void)
 Create a new, empty system authentication store structure. More...
 
void system_authentication_store_free (SYSTEM_AUTHENTICATION_STORE_T *store)
 Free all memory associated with a system authentication store structure. More...
 
SYSTEM_AUTHENTICATION_STORE_Tsystem_authentication_store_dup (const SYSTEM_AUTHENTICATION_STORE_T *store)
 Copy an existing system authentication store structure. More...
 
void get_system_authentication_store (SESSION_T *session, const GET_SYSTEM_AUTHENTICATION_STORE_PARAMS_T params)
 Get the server's system authentication store. More...
 
char ** get_principal_names (const SYSTEM_AUTHENTICATION_STORE_T store)
 Get an array of principals defined in the system authentication store. More...
 
char ** get_roles_for_principal (const SYSTEM_AUTHENTICATION_STORE_T store, const char *principal)
 Get an array of role names for a given principal. More...
 
char ** get_anonymous_roles (const SYSTEM_AUTHENTICATION_STORE_T store)
 Get an array of role names for anonymous connections. More...
 
void update_system_authentication_store (SESSION_T *session, const UPDATE_SYSTEM_AUTHENTICATION_STORE_PARAMS_T params)
 Send updates to the system authentication store. More...
 
SCRIPT_Tupdate_auth_store_deny_anonymous_connections (SCRIPT_T *script)
 Updates a script to add a command to deny anonymous connections. More...
 
SCRIPT_Tupdate_auth_store_abstain_anonymous_connections (SCRIPT_T *script)
 Updates a script to add a command to abstain from decisions relating to anonymous connections. More...
 
SCRIPT_Tupdate_auth_store_allow_anonymous_connections (SCRIPT_T *script, const LIST_T *roles)
 Updates a script to add a command to allow anonymous connections, and a list of roles those connections should have. More...
 
SCRIPT_Tupdate_auth_store_add_principal (SCRIPT_T *script, const char *principal, const char *password, const LIST_T *roles)
 Updates a script to add a command to add a new principal to the authentication store, and a list of roles assigned to them. More...
 
SCRIPT_Tupdate_auth_store_remove_principal (SCRIPT_T *script, const char *principal)
 Updates a script to add a command to remove an existing principal from the authentication store. More...
 
SCRIPT_Tupdate_auth_store_assign_roles (SCRIPT_T *script, const char *principal, const LIST_T *roles)
 Updates a script to assign roles to an existing principal. More...
 
SCRIPT_Tupdate_auth_store_set_password (SCRIPT_T *script, const char *principal, const char *password)
 Updates a script to change the password for an existing principal. More...
 
SCRIPT_Tupdate_auth_store_verify_password (SCRIPT_T *script, const char *principal, const char *password)
 Updates a script to include a command to verify a principal's password. More...
 

Detailed Description

Services for querying and updating the system authentication store.

Typedef Documentation

typedef int(* on_get_system_authentication_store_cb)(SESSION_T *session, const SYSTEM_AUTHENTICATION_STORE_T store, void *context)

Callback for get_system_authentication_store().

Parameters
sessionThe current active session.
storeThe response containing the authentication store contents. This structure will be freed on exit so a copy should be taken if it needs to be used outside of the scope of the callback.
contextUser-supplied context from the get_system_authentication_store() call.
Returns
HANDLER_SUCCESS or HANDLER_FAILURE.
typedef int(* on_update_system_authentication_store_cb)(SESSION_T *session, const LIST_T *error_reports, void *context)

Callback for update_system_authentication_store().

Parameters
sessionThe current active session.
error_reportsAny errors that have occurred while processing the update.
contextUser-supplied context from the update_system_authentication_store() call.
Returns
HANDLER_SUCCESS or HANDLER_FAILURE.

Enumeration Type Documentation

Action to be taken by the system authentication handler for connection attempts that do not provide a principal name and credentials.

Enumerator
ANONYMOUS_CONNECTION_ACTION_ALLOW 

Accept anonymous connection attempts.

ANONYMOUS_CONNECTION_ACTION_DENY 

Deny anonymous connection attempts.

ANONYMOUS_CONNECTION_ACTION_ABSTAIN 

Defer authentication decision for anonymous connection attempts to subsequent authentication handlers.