1PAM_CLOSE_SESSION(3) Linux-PAM Manual PAM_CLOSE_SESSION(3)
2
3
4
6 pam_close_session - terminate PAM session management
7
9 #include <security/pam_appl.h>
10
11 int pam_close_session(pam_handle_t *pamh, int flags);
12
14 The pam_close_session function is used to indicate that an
15 authenticated session has ended. The session should have been created
16 with a call to pam_open_session(3).
17
18 It should be noted that the effective uid, geteuid(2). of the
19 application should be of sufficient privilege to perform such tasks as
20 unmounting the user's home directory for example.
21
22 The flags argument is the binary or of zero or more of the following
23 values:
24
25 PAM_SILENT
26 Do not emit any messages.
27
29 PAM_ABORT
30 General failure.
31
32 PAM_BUF_ERR
33 Memory buffer error.
34
35 PAM_SESSION_ERR
36 Session failure.
37
38 PAM_SUCCESS
39 Session was successful terminated.
40
42 pam_open_session(3), pam_strerror(3)
43
44
45
46Linux-PAM 05/07/2023 PAM_CLOSE_SESSION(3)