man pages section 3: Extended Library Functions, Volume 3

Exit Print View

Updated: July 2014
 
 

pam_sm_acct_mgmt (3PAM)

Name

pam_sm_acct_mgmt - service provider implementation for pam_acct_mgmt

Synopsis

cc [ flag ... ] 
file ... –lpam [ library ... ]
#include <security/pam_appl.h>
#include <security/pam_modules.h>

int pam_sm_acct_mgmt(pam_handle_t *
pamh, int 
flags, int argc,
     const char **argv);

Description

In response to a call to pam_acct_mgmt(3PAM), the PAM framework calls pam_sm_acct_mgmt() from the modules listed in the pam.conf (4) file or the relevant /etc/pam.d/service file. The account management provider supplies the back-end functionality for this interface function. Applications should not call this API directly.

    The pam_sm_acct_mgmt() function determines whether or not the current user's account and password are valid. This includes the following checks:

  • The account is not locked or expired

  • The user's password is not expired and does not need to be changed

  • The user's account has not been inactive for too long

  • The /etc/nologin file is not present for non-root users (see nologin (4))

The user in question is specified by a prior call to pam_start (), and is referenced by the authentication handle, pamh , which is passed as the first argument to pam_sm_acct_mgmt (). The following flags may be set in the flags field:

PAM_SILENT

The account management service should not generate any messages.

PAM_LOGINS_DISABLED

Logins for non-root users are disabled due to the presence of the /etc/nologin file. See nologin(4).

PAM_DISALLOW_NULL_AUTHTOK

The account management service should return PAM_NEW_AUTHTOK_REQD if the user has a null authentication token.

The argc argument represents the number of module options passed in from the configuration file pam.conf(4) or the relevant /etc/pam.d/service file. The argv argument specifies the module options, which are interpreted and processed by the account management service. Please refer to the specific module man pages for the various available options. If an unknown option is passed to the module, an error should be logged through syslog (3C) and the option ignored.

If an account management module determines that the user password has aged or expired, it should save this information as state in the authentication handle, pamh, using pam_set_data (). pam_chauthok() uses this information to determine which passwords have expired.

Return Values

If there are no restrictions to logging in, PAM_SUCCESS is returned. The following error values may also be returned upon error:

PAM_USER_UNKNOWN

User not known to underlying authentication module.

PAM_NEW_AUTHTOK_REQD

New authentication token required.

PAM_ACCT_EXPIRED

User account has expired.

PAM_PERM_DENIED

User denied access to account at this time.

PAM_IGNORE

Ignore underlying account module regardless of whether the control flag is required, optional or sufficient.

Attributes

See attributes(5) for description of the following attributes:

ATTRIBUTE TYPE
ATTRIBUTE VALUE
Interface Stability
Committed
MT-Level
MT-Safe with exceptions

See also

pam(3PAM), pam_acct_mgmt(3PAM), pam_set_data(3PAM), pam_start(3PAM), syslog(3C), libpam(3LIB), pam.conf(4), attributes(5)

Notes

The interfaces in libpam are MT-Safe only if each thread within the multithreaded application uses its own PAM handle.

If the PAM_REPOSITORY item_type is set and a service module does not recognize the type, the service module does not process any information, and returns PAM_IGNORE. If the PAM_REPOSITORY item_type is not set, a service module performs its default action.