# phpman > man > pam(3)

[PAM(3)](https://www.chedong.com/phpMan.php/man/PAM/3/markdown)                                    Linux-PAM Manual                                    [PAM(3)](https://www.chedong.com/phpMan.php/man/PAM/3/markdown)



## NAME
       pam - Pluggable Authentication Modules Library

## SYNOPSIS
       **#include** **<security/pam**___**appl.h>**

       **#include** **<security/pam**___**modules.h>**

       **#include** **<security/pam**___**ext.h>**

## DESCRIPTION
       **PAM** is a system of libraries that handle the authentication tasks of applications (services)
       on the system. The library provides a stable general interface (Application Programming
       Interface - API) that privilege granting programs (such as [**login**(1)](https://www.chedong.com/phpMan.php/man/login/1/markdown) and [**su**(1)](https://www.chedong.com/phpMan.php/man/su/1/markdown)) defer to to
       perform standard authentication tasks.

### Initialization and Cleanup
       The **pam**___**[start**(3)](https://www.chedong.com/phpMan.php/man/start/3/markdown) function creates the PAM context and initiates the PAM transaction. It is
       the first of the PAM functions that needs to be called by an application. The transaction
       state is contained entirely within the structure identified by this handle, so it is possible
       to have multiple transactions in parallel. But it is not possible to use the same handle for
       different transactions, a new one is needed for every new context.

       The **pam**___**[end**(3)](https://www.chedong.com/phpMan.php/man/end/3/markdown) function terminates the PAM transaction and is the last function an
       application should call in the PAM context. Upon return the handle pamh is no longer valid
       and all memory associated with it will be invalid. It can be called at any time to terminate
       a PAM transaction.

### Authentication
       The **pam**___**[authenticate**(3)](https://www.chedong.com/phpMan.php/man/authenticate/3/markdown) function is used to authenticate the user. The user is required to
       provide an authentication token depending upon the authentication service, usually this is a
       password, but could also be a finger print.

       The **pam**___**[setcred**(3)](https://www.chedong.com/phpMan.php/man/setcred/3/markdown) function manages the user's credentials.

### Account Management
       The **pam**___**acct**___**[mgmt**(3)](https://www.chedong.com/phpMan.php/man/mgmt/3/markdown) function is used to determine if the user's account is valid. It checks
       for authentication token and account expiration and verifies access restrictions. It is
       typically called after the user has been authenticated.

### Password Management
       The **pam**___**[chauthtok**(3)](https://www.chedong.com/phpMan.php/man/chauthtok/3/markdown) function is used to change the authentication token for a given user on
       request or because the token has expired.

### Session Management
       The **pam**___**open**___**[session**(3)](https://www.chedong.com/phpMan.php/man/session/3/markdown) function sets up a user session for a previously successful
       authenticated user. The session should later be terminated with a call to
       **pam**___**close**___**[session**(3)](https://www.chedong.com/phpMan.php/man/session/3/markdown).

### Conversation
       The PAM library uses an application-defined callback to allow a direct communication between
       a loaded module and the application. This callback is specified by the _struct_ _pam_conv_ passed
       to **pam**___**[start**(3)](https://www.chedong.com/phpMan.php/man/start/3/markdown) at the start of the transaction. See **pam**___**[conv**(3)](https://www.chedong.com/phpMan.php/man/conv/3/markdown) for details.

### Data Objects
       The **pam**___**set**___**[item**(3)](https://www.chedong.com/phpMan.php/man/item/3/markdown) and **pam**___**get**___**[item**(3)](https://www.chedong.com/phpMan.php/man/item/3/markdown) functions allows applications and PAM service modules
       to set and retrieve PAM information.

       The **pam**___**get**___**[user**(3)](https://www.chedong.com/phpMan.php/man/user/3/markdown) function is the preferred method to obtain the username.

       The **pam**___**set**___**[data**(3)](https://www.chedong.com/phpMan.php/man/data/3/markdown) and **pam**___**get**___**[data**(3)](https://www.chedong.com/phpMan.php/man/data/3/markdown) functions allows PAM service modules to set and
       retrieve free-form data from one invocation to another.

### Environment and Error Management
       The **pam**___**[putenv**(3)](https://www.chedong.com/phpMan.php/man/putenv/3/markdown), **pam**___**[getenv**(3)](https://www.chedong.com/phpMan.php/man/getenv/3/markdown) and **pam**___**[getenvlist**(3)](https://www.chedong.com/phpMan.php/man/getenvlist/3/markdown) functions are for maintaining a set of
       private environment variables.

       The **pam**___**[strerror**(3)](https://www.chedong.com/phpMan.php/man/strerror/3/markdown) function returns a pointer to a string describing the given PAM error
       code.

## RETURN VALUES
       The following return codes are known by PAM:

       PAM_ABORT
           Critical error, immediate abort.

       PAM_ACCT_EXPIRED
           User account has expired.

       PAM_AUTHINFO_UNAVAIL
           Authentication service cannot retrieve authentication info.

       PAM_AUTHTOK_DISABLE_AGING
           Authentication token aging disabled.

       PAM_AUTHTOK_ERR
           Authentication token manipulation error.

       PAM_AUTHTOK_EXPIRED
           Authentication token expired.

       PAM_AUTHTOK_LOCK_BUSY
           Authentication token lock busy.

       PAM_AUTHTOK_RECOVERY_ERR
           Authentication information cannot be recovered.

       PAM_AUTH_ERR
           Authentication failure.

       PAM_BUF_ERR
           Memory buffer error.

       PAM_CONV_ERR
           Conversation failure.

       PAM_CRED_ERR
           Failure setting user credentials.

       PAM_CRED_EXPIRED
           User credentials expired.

       PAM_CRED_INSUFFICIENT
           Insufficient credentials to access authentication data.

       PAM_CRED_UNAVAIL
           Authentication service cannot retrieve user credentials.

       PAM_IGNORE
           The return value should be ignored by PAM dispatch.

       PAM_MAXTRIES
           Have exhausted maximum number of retries for service.

       PAM_MODULE_UNKNOWN
           Module is unknown.

       PAM_NEW_AUTHTOK_REQD
           Authentication token is no longer valid; new one required.

       PAM_NO_MODULE_DATA
           No module specific data is present.

       PAM_OPEN_ERR
           Failed to load module.

       PAM_PERM_DENIED
           Permission denied.

       PAM_SERVICE_ERR
           Error in service module.

       PAM_SESSION_ERR
           Cannot make/remove an entry for the specified session.

       PAM_SUCCESS
           Success.

       PAM_SYMBOL_ERR
           Symbol not found.

       PAM_SYSTEM_ERR
           System error.

       PAM_TRY_AGAIN
           Failed preliminary check by password service.

       PAM_USER_UNKNOWN
           User not known to the underlying authentication module.

## SEE ALSO
       **pam**___**acct**___**[mgmt**(3)](https://www.chedong.com/phpMan.php/man/mgmt/3/markdown), **pam**___**[authenticate**(3)](https://www.chedong.com/phpMan.php/man/authenticate/3/markdown), **pam**___**[chauthtok**(3)](https://www.chedong.com/phpMan.php/man/chauthtok/3/markdown), **pam**___**close**___**[session**(3)](https://www.chedong.com/phpMan.php/man/session/3/markdown), **pam**___**[conv**(3)](https://www.chedong.com/phpMan.php/man/conv/3/markdown),
       **pam**___**[end**(3)](https://www.chedong.com/phpMan.php/man/end/3/markdown), **pam**___**get**___**[data**(3)](https://www.chedong.com/phpMan.php/man/data/3/markdown), **pam**___**[getenv**(3)](https://www.chedong.com/phpMan.php/man/getenv/3/markdown), **pam**___**[getenvlist**(3)](https://www.chedong.com/phpMan.php/man/getenvlist/3/markdown), **pam**___**get**___**[item**(3)](https://www.chedong.com/phpMan.php/man/item/3/markdown),
       **pam**___**get**___**[user**(3)](https://www.chedong.com/phpMan.php/man/user/3/markdown), **pam**___**open**___**[session**(3)](https://www.chedong.com/phpMan.php/man/session/3/markdown), **pam**___**[putenv**(3)](https://www.chedong.com/phpMan.php/man/putenv/3/markdown), **pam**___**set**___**[data**(3)](https://www.chedong.com/phpMan.php/man/data/3/markdown), **pam**___**set**___**[item**(3)](https://www.chedong.com/phpMan.php/man/item/3/markdown),
       **pam**___**[setcred**(3)](https://www.chedong.com/phpMan.php/man/setcred/3/markdown), **pam**___**[start**(3)](https://www.chedong.com/phpMan.php/man/start/3/markdown), **pam**___**[strerror**(3)](https://www.chedong.com/phpMan.php/man/strerror/3/markdown)

## NOTES
       The _libpam_ interfaces are only thread-safe if each thread within the multithreaded
       application uses its own PAM handle.



Linux-PAM Manual                             06/08/2020                                       [PAM(3)](https://www.chedong.com/phpMan.php/man/PAM/3/markdown)
