RIP BOOL. Convert BOOL -> bool. I found a few interesting
[ira/wip.git] / source3 / pam_smbpass / pam_smb_acct.c
1 /* Unix NT password database implementation, version 0.7.5.
2  *
3  * This program is free software; you can redistribute it and/or modify it under
4  * the terms of the GNU General Public License as published by the Free
5  * Software Foundation; either version 3 of the License, or (at your option)
6  * any later version.
7  *
8  * This program is distributed in the hope that it will be useful, but WITHOUT
9  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
11  * more details.
12  *
13  * You should have received a copy of the GNU General Public License along with
14  * this program; if not, see <http://www.gnu.org/licenses/>.
15 */
16
17 /* indicate the following groups are defined */
18 #define PAM_SM_ACCT
19
20 #include "includes.h"
21
22 #ifndef LINUX
23
24 /* This is only used in the Sun implementation. */
25 #if defined(HAVE_SECURITY_PAM_APPL_H)
26 #include <security/pam_appl.h>
27 #elif defined(HAVE_PAM_PAM_APPL_H)
28 #include <pam/pam_appl.h>
29 #endif
30
31 #endif  /* LINUX */
32
33 #if defined(HAVE_SECURITY_PAM_MODULES_H)
34 #include <security/pam_modules.h>
35 #elif defined(HAVE_PAM_PAM_MODULES_H)
36 #include <pam/pam_modules.h>
37 #endif
38
39 #include "general.h"
40
41 #include "support.h"
42
43
44 /*
45  * pam_sm_acct_mgmt() verifies whether or not the account is disabled.
46  *
47  */
48
49 int pam_sm_acct_mgmt( pam_handle_t *pamh, int flags,
50                       int argc, const char **argv )
51 {
52         unsigned int ctrl;
53         int retval;
54
55         const char *name;
56         struct samu *sampass = NULL;
57         void (*oldsig_handler)(int);
58         extern bool in_client;
59
60         /* Samba initialization. */
61         load_case_tables();
62         setup_logging( "pam_smbpass", False );
63         in_client = True;
64
65         ctrl = set_ctrl( flags, argc, argv );
66
67         /* get the username */
68
69         retval = pam_get_user( pamh, &name, "Username: " );
70         if (retval != PAM_SUCCESS) {
71                 if (on( SMB_DEBUG, ctrl )) {
72                         _log_err( LOG_DEBUG, "acct: could not identify user" );
73                 }
74                 return retval;
75         }
76         if (on( SMB_DEBUG, ctrl )) {
77                 _log_err( LOG_DEBUG, "acct: username [%s] obtained", name );
78         }
79
80         /* Getting into places that might use LDAP -- protect the app
81                 from a SIGPIPE it's not expecting */
82         oldsig_handler = CatchSignal(SIGPIPE, SIGNAL_CAST SIG_IGN);
83         if (!initialize_password_db(True, NULL)) {
84                 _log_err( LOG_ALERT, "Cannot access samba password database" );
85                 CatchSignal(SIGPIPE, SIGNAL_CAST oldsig_handler);
86                 return PAM_AUTHINFO_UNAVAIL;
87         }
88
89         /* Get the user's record. */
90
91         if (!(sampass = samu_new( NULL ))) {
92                 CatchSignal(SIGPIPE, SIGNAL_CAST oldsig_handler);
93                 /* malloc fail. */
94                 return nt_status_to_pam(NT_STATUS_NO_MEMORY);
95         }
96
97         if (!pdb_getsampwnam(sampass, name )) {
98                 _log_err( LOG_DEBUG, "acct: could not identify user" );
99                 CatchSignal(SIGPIPE, SIGNAL_CAST oldsig_handler);
100                 return PAM_USER_UNKNOWN;
101         }
102
103         /* check for lookup failure */
104         if (!strlen(pdb_get_username(sampass)) ) {
105                 CatchSignal(SIGPIPE, SIGNAL_CAST oldsig_handler);
106                 return PAM_USER_UNKNOWN;
107         }
108
109         if (pdb_get_acct_ctrl(sampass) & ACB_DISABLED) {
110                 if (on( SMB_DEBUG, ctrl )) {
111                         _log_err( LOG_DEBUG
112                                 , "acct: account %s is administratively disabled", name );
113                 }
114                 make_remark( pamh, ctrl, PAM_ERROR_MSG
115                         , "Your account has been disabled; "
116                         "please see your system administrator." );
117
118                 CatchSignal(SIGPIPE, SIGNAL_CAST oldsig_handler);
119                 return PAM_ACCT_EXPIRED;
120         }
121
122         /* TODO: support for expired passwords. */
123
124         CatchSignal(SIGPIPE, SIGNAL_CAST oldsig_handler);
125         return PAM_SUCCESS;
126 }
127
128 /* static module data */
129 #ifdef PAM_STATIC
130 struct pam_module _pam_smbpass_acct_modstruct = {
131      "pam_smbpass",
132      NULL,
133      NULL,
134      pam_sm_acct_mgmt,
135      NULL,
136      NULL,
137      NULL
138 };
139 #endif
140