1 /* Unix NT password database implementation, version 0.7.5.
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)
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
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/>.
17 /* indicate the following groups are defined */
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>
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>
46 /* Restore application signal handler */ \
47 CatchSignal(SIGPIPE, oldsig_handler); \
50 pam_set_data( pamh, "smb_setcred_return" \
51 , (void *) ret_data, NULL ); \
56 static int _smb_add_user(pam_handle_t
*pamh
, unsigned int ctrl
,
57 const char *name
, struct samu
*sampass
, bool exist
);
61 * pam_sm_authenticate() authenticates users against the samba password file.
63 * First, obtain the password from the user. Then use a
64 * routine in 'support.c' to authenticate the user.
67 #define _SMB_AUTHTOK "-SMB-PASS"
69 int pam_sm_authenticate(pam_handle_t
*pamh
, int flags
,
70 int argc
, const char **argv
)
73 int retval
, *ret_data
= NULL
;
74 struct samu
*sampass
= NULL
;
76 void (*oldsig_handler
)(int) = NULL
;
79 /* Points to memory managed by the PAM library. Do not free. */
82 /* Samba initialization. */
84 lp_set_in_client(True
);
86 ctrl
= set_ctrl(pamh
, flags
, argc
, argv
);
88 /* Get a few bytes so we can pass our return value to
90 ret_data
= SMB_MALLOC_P(int);
92 /* we need to do this before we call AUTH_RETURN */
93 /* Getting into places that might use LDAP -- protect the app
94 from a SIGPIPE it's not expecting */
95 oldsig_handler
= CatchSignal(SIGPIPE
, SIG_IGN
);
97 /* get the username */
98 retval
= pam_get_user( pamh
, &name
, "Username: " );
99 if ( retval
!= PAM_SUCCESS
) {
100 if (on( SMB_DEBUG
, ctrl
)) {
101 _log_err(pamh
, LOG_DEBUG
, "auth: could not identify user");
105 if (on( SMB_DEBUG
, ctrl
)) {
106 _log_err(pamh
, LOG_DEBUG
, "username [%s] obtained", name
);
109 if (geteuid() != 0) {
110 _log_err(pamh
, LOG_DEBUG
, "Cannot access samba password database, not running as root.");
111 retval
= PAM_AUTHINFO_UNAVAIL
;
115 if (!initialize_password_db(True
, NULL
)) {
116 _log_err(pamh
, LOG_ALERT
, "Cannot access samba password database" );
117 retval
= PAM_AUTHINFO_UNAVAIL
;
121 sampass
= samu_new( NULL
);
123 _log_err(pamh
, LOG_ALERT
, "Cannot talloc a samu struct" );
124 retval
= nt_status_to_pam(NT_STATUS_NO_MEMORY
);
128 found
= pdb_getsampwnam( sampass
, name
);
130 if (on( SMB_MIGRATE
, ctrl
)) {
131 retval
= _smb_add_user(pamh
, ctrl
, name
, sampass
, found
);
132 TALLOC_FREE(sampass
);
137 _log_err(pamh
, LOG_ALERT
, "Failed to find entry for user %s.", name
);
138 retval
= PAM_USER_UNKNOWN
;
139 TALLOC_FREE(sampass
);
144 /* if this user does not have a password... */
146 if (_smb_blankpasswd( ctrl
, sampass
)) {
147 TALLOC_FREE(sampass
);
148 retval
= PAM_SUCCESS
;
152 /* get this user's authentication token */
154 retval
= _smb_read_password(pamh
, ctrl
, NULL
, "Password: ", NULL
, _SMB_AUTHTOK
, &p
);
155 if (retval
!= PAM_SUCCESS
) {
156 _log_err(pamh
,LOG_CRIT
, "auth: no password provided for [%s]", name
);
157 TALLOC_FREE(sampass
);
161 /* verify the password of this user */
163 retval
= _smb_verify_password( pamh
, sampass
, p
, ctrl
);
164 TALLOC_FREE(sampass
);
170 * This function is for setting samba credentials. If anyone comes up
171 * with any credentials they think should be set, let me know.
174 int pam_sm_setcred(pam_handle_t
*pamh
, int flags
,
175 int argc
, const char **argv
)
177 int retval
, *pretval
= NULL
;
179 retval
= PAM_SUCCESS
;
181 _pam_get_data(pamh
, "smb_setcred_return", &pretval
);
186 pam_set_data(pamh
, "smb_setcred_return", NULL
, NULL
);
191 /* Helper function for adding a user to the db. */
192 static int _smb_add_user(pam_handle_t
*pamh
, unsigned int ctrl
,
193 const char *name
, struct samu
*sampass
, bool exist
)
195 char *err_str
= NULL
;
196 char *msg_str
= NULL
;
197 const char *pass
= NULL
;
200 /* Get the authtok; if we don't have one, silently fail. */
201 retval
= _pam_get_item( pamh
, PAM_AUTHTOK
, &pass
);
203 if (retval
!= PAM_SUCCESS
) {
204 _log_err(pamh
, LOG_ALERT
205 , "pam_get_item returned error to pam_sm_authenticate" );
206 return PAM_AUTHTOK_RECOVER_ERR
;
207 } else if (pass
== NULL
) {
208 return PAM_AUTHTOK_RECOVER_ERR
;
211 /* Add the user to the db if they aren't already there. */
213 retval
= NT_STATUS_IS_OK(local_password_change(name
, LOCAL_ADD_USER
|LOCAL_SET_PASSWORD
,
214 pass
, &err_str
, &msg_str
));
215 if (!retval
&& err_str
) {
216 make_remark(pamh
, ctrl
, PAM_ERROR_MSG
, err_str
);
217 } else if (msg_str
) {
218 make_remark(pamh
, ctrl
, PAM_TEXT_INFO
, msg_str
);
226 /* mimick 'update encrypted' as long as the 'no pw req' flag is not set */
227 if ( pdb_get_acct_ctrl(sampass
) & ~ACB_PWNOTREQ
) {
228 retval
= NT_STATUS_IS_OK(local_password_change(name
, LOCAL_SET_PASSWORD
,
229 pass
, &err_str
, &msg_str
));
230 if (!retval
&& err_str
) {
231 make_remark(pamh
, ctrl
, PAM_ERROR_MSG
, err_str
);
232 } else if (msg_str
) {
233 make_remark(pamh
, ctrl
, PAM_TEXT_INFO
, msg_str
);
244 /* static module data */
246 struct pam_module _pam_smbpass_auth_modstruct
= {