Merge ssh://git.samba.org/data/git/samba into v3-2-test
[ira/wip.git] / source3 / pam_smbpass / pam_smb_auth.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_AUTH
19
20 #include "includes.h"
21 #include "debug.h"
22
23 #ifndef LINUX
24
25 /* This is only used in the Sun implementation. */
26 #if defined(HAVE_SECURITY_PAM_APPL_H)
27 #include <security/pam_appl.h>
28 #elif defined(HAVE_PAM_PAM_APPL_H)
29 #include <pam/pam_appl.h>
30 #endif
31
32 #endif  /* LINUX */
33
34 #if defined(HAVE_SECURITY_PAM_MODULES_H)
35 #include <security/pam_modules.h>
36 #elif defined(HAVE_PAM_PAM_MODULES_H)
37 #include <pam/pam_modules.h>
38 #endif
39
40 #include "general.h"
41
42 #include "support.h"
43
44 #define AUTH_RETURN                                             \
45 do {                                                            \
46         /* Restore application signal handler */                \
47         CatchSignal(SIGPIPE, SIGNAL_CAST oldsig_handler);       \
48         if(ret_data) {                                          \
49                 *ret_data = retval;                             \
50                 pam_set_data( pamh, "smb_setcred_return"        \
51                               , (void *) ret_data, NULL );      \
52         }                                                       \
53         return retval;                                          \
54 } while (0)
55
56 static int _smb_add_user(pam_handle_t *pamh, unsigned int ctrl,
57                          const char *name, struct samu *sampass, bool exist);
58
59
60 /*
61  * pam_sm_authenticate() authenticates users against the samba password file.
62  *
63  *      First, obtain the password from the user. Then use a
64  *      routine in 'support.c' to authenticate the user.
65  */
66
67 #define _SMB_AUTHTOK  "-SMB-PASS"
68
69 int pam_sm_authenticate(pam_handle_t *pamh, int flags,
70                         int argc, const char **argv)
71 {
72         unsigned int ctrl;
73         int retval, *ret_data = NULL;
74         struct samu *sampass = NULL;
75         extern bool in_client;
76         const char *name;
77         void (*oldsig_handler)(int) = NULL;
78         bool found;
79
80         /* Points to memory managed by the PAM library. Do not free. */
81         char *p = NULL;
82
83         /* Samba initialization. */
84         load_case_tables();
85         setup_logging("pam_smbpass",False);
86         in_client = True;
87
88         ctrl = set_ctrl(flags, argc, argv);
89
90         /* Get a few bytes so we can pass our return value to
91                 pam_sm_setcred(). */
92         ret_data = SMB_MALLOC_P(int);
93
94         /* we need to do this before we call AUTH_RETURN */
95         /* Getting into places that might use LDAP -- protect the app
96         from a SIGPIPE it's not expecting */
97         oldsig_handler = CatchSignal(SIGPIPE, SIGNAL_CAST SIG_IGN);
98
99         /* get the username */
100         retval = pam_get_user( pamh, &name, "Username: " );
101         if ( retval != PAM_SUCCESS ) {
102                 if (on( SMB_DEBUG, ctrl )) {
103                         _log_err(LOG_DEBUG, "auth: could not identify user");
104                 }
105                 AUTH_RETURN;
106         }
107         if (on( SMB_DEBUG, ctrl )) {
108                 _log_err( LOG_DEBUG, "username [%s] obtained", name );
109         }
110
111         if (!initialize_password_db(True, NULL)) {
112                 _log_err( LOG_ALERT, "Cannot access samba password database" );
113                 retval = PAM_AUTHINFO_UNAVAIL;
114                 AUTH_RETURN;
115         }
116
117         sampass = samu_new( NULL );
118         if (!sampass) {
119                 _log_err( LOG_ALERT, "Cannot talloc a samu struct" );
120                 retval = nt_status_to_pam(NT_STATUS_NO_MEMORY);
121                 AUTH_RETURN;
122         }
123
124         found = pdb_getsampwnam( sampass, name );
125
126         if (on( SMB_MIGRATE, ctrl )) {
127                 retval = _smb_add_user(pamh, ctrl, name, sampass, found);
128                 TALLOC_FREE(sampass);
129                 AUTH_RETURN;
130         }
131
132         if (!found) {
133                 _log_err(LOG_ALERT, "Failed to find entry for user %s.", name);
134                 retval = PAM_USER_UNKNOWN;
135                 TALLOC_FREE(sampass);
136                 sampass = NULL;
137                 AUTH_RETURN;
138         }
139    
140         /* if this user does not have a password... */
141
142         if (_smb_blankpasswd( ctrl, sampass )) {
143                 TALLOC_FREE(sampass);
144                 retval = PAM_SUCCESS;
145                 AUTH_RETURN;
146         }
147
148         /* get this user's authentication token */
149
150         retval = _smb_read_password(pamh, ctrl, NULL, "Password: ", NULL, _SMB_AUTHTOK, &p);
151         if (retval != PAM_SUCCESS ) {
152                 _log_err(LOG_CRIT, "auth: no password provided for [%s]", name);
153                 TALLOC_FREE(sampass);
154                 AUTH_RETURN;
155         }
156
157         /* verify the password of this user */
158
159         retval = _smb_verify_password( pamh, sampass, p, ctrl );
160         TALLOC_FREE(sampass);
161         p = NULL;
162         AUTH_RETURN;
163 }
164
165 /*
166  * This function is for setting samba credentials.  If anyone comes up
167  * with any credentials they think should be set, let me know.
168  */
169
170 int pam_sm_setcred(pam_handle_t *pamh, int flags,
171                    int argc, const char **argv)
172 {
173         int retval, *pretval = NULL;
174
175         retval = PAM_SUCCESS;
176
177         pam_get_data(pamh, "smb_setcred_return", (const void **) &pretval);
178         if(pretval) {
179                 retval = *pretval;
180                 SAFE_FREE(pretval);
181         }
182         pam_set_data(pamh, "smb_setcred_return", NULL, NULL);
183
184         return retval;
185 }
186
187 /* Helper function for adding a user to the db. */
188 static int _smb_add_user(pam_handle_t *pamh, unsigned int ctrl,
189                          const char *name, struct samu *sampass, bool exist)
190 {
191         char *err_str = NULL;
192         char *msg_str = NULL;
193         const char *pass = NULL;
194         int retval;
195
196         /* Get the authtok; if we don't have one, silently fail. */
197         retval = pam_get_item( pamh, PAM_AUTHTOK, (const void **) &pass );
198
199         if (retval != PAM_SUCCESS) {
200                 _log_err( LOG_ALERT
201                         , "pam_get_item returned error to pam_sm_authenticate" );
202                 return PAM_AUTHTOK_RECOVER_ERR;
203         } else if (pass == NULL) {
204                 return PAM_AUTHTOK_RECOVER_ERR;
205         }
206
207         /* Add the user to the db if they aren't already there. */
208         if (!exist) {
209                 retval = NT_STATUS_IS_OK(local_password_change(name, LOCAL_ADD_USER|LOCAL_SET_PASSWORD,
210                                         pass, &err_str, &msg_str));
211                 if (!retval && err_str) {
212                         make_remark(pamh, ctrl, PAM_ERROR_MSG, err_str );
213                 } else if (msg_str) {
214                         make_remark(pamh, ctrl, PAM_TEXT_INFO, msg_str );
215                 }
216                 pass = NULL;
217
218                 SAFE_FREE(err_str);
219                 SAFE_FREE(msg_str);
220                 return PAM_IGNORE;
221         } else {
222                 /* mimick 'update encrypted' as long as the 'no pw req' flag is not set */
223                 if ( pdb_get_acct_ctrl(sampass) & ~ACB_PWNOTREQ ) {
224                         retval = NT_STATUS_IS_OK(local_password_change(name, LOCAL_SET_PASSWORD,
225                                         pass, &err_str, &msg_str));
226                         if (!retval && err_str) {
227                                 make_remark(pamh, ctrl, PAM_ERROR_MSG, err_str );
228                         } else if (msg_str) {
229                                 make_remark(pamh, ctrl, PAM_TEXT_INFO, msg_str );
230                         }
231                 }
232         }
233     
234         SAFE_FREE(err_str);
235         SAFE_FREE(msg_str);
236         pass = NULL;
237         return PAM_IGNORE;
238 }
239
240 /* static module data */
241 #ifdef PAM_STATIC
242 struct pam_module _pam_smbpass_auth_modstruct = {
243         "pam_smbpass",
244         pam_sm_authenticate,
245         pam_sm_setcred,
246         NULL,
247         NULL,
248         NULL,
249         NULL
250 };
251 #endif