blob: 6bf10d2f97cee44ee35c8c308e7650d0f93806c4 [file] [log] [blame]
Damien Millere72b7af1999-12-30 15:08:44 +11001/*
Damien Millere69f18c2000-06-12 16:38:54 +10002 * Copyright (c) 2000 Damien Miller. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
Damien Millere69f18c2000-06-12 16:38:54 +100012 *
13 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Millere72b7af1999-12-30 15:08:44 +110023 */
24
25#include "includes.h"
26
27#ifdef USE_PAM
28#include "ssh.h"
29#include "xmalloc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000030#include "log.h"
Kevin Stevese683e762002-04-04 19:02:28 +000031#include "auth.h"
Damien Miller63dc3e92001-02-07 12:58:33 +110032#include "auth-pam.h"
Damien Millere72b7af1999-12-30 15:08:44 +110033#include "servconf.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000034#include "canohost.h"
35#include "readpass.h"
Damien Millere72b7af1999-12-30 15:08:44 +110036
Kevin Steves85ecbe72001-04-20 17:43:47 +000037extern char *__progname;
38
Damien Miller23fe57c2002-07-02 17:08:23 +100039RCSID("$Id: auth-pam.c,v 1.47 2002/07/02 07:08:24 djm Exp $");
Damien Miller2f6a0ad2000-05-31 11:20:11 +100040
41#define NEW_AUTHTOK_MSG \
Damien Miller9d5705a2000-09-16 16:09:27 +110042 "Warning: Your password has expired, please change it now"
Damien Millere72b7af1999-12-30 15:08:44 +110043
Damien Miller63dc3e92001-02-07 12:58:33 +110044static int do_pam_conversation(int num_msg, const struct pam_message **msg,
45 struct pam_response **resp, void *appdata_ptr);
Damien Millere72b7af1999-12-30 15:08:44 +110046
47/* module-local variables */
48static struct pam_conv conv = {
Damien Miller63dc3e92001-02-07 12:58:33 +110049 do_pam_conversation,
Damien Millere72b7af1999-12-30 15:08:44 +110050 NULL
51};
Damien Miller646aa602001-02-15 11:51:32 +110052static char *__pam_msg = NULL;
53static pam_handle_t *__pamh = NULL;
54static const char *__pampasswd = NULL;
Damien Millere72b7af1999-12-30 15:08:44 +110055
Damien Miller63dc3e92001-02-07 12:58:33 +110056/* states for do_pam_conversation() */
Damien Millerb8481582000-12-03 11:51:51 +110057enum { INITIAL_LOGIN, OTHER } pamstate = INITIAL_LOGIN;
Damien Miller9d5705a2000-09-16 16:09:27 +110058/* remember whether pam_acct_mgmt() returned PAM_NEWAUTHTOK_REQD */
59static int password_change_required = 0;
Damien Millerb8481582000-12-03 11:51:51 +110060/* remember whether the last pam_authenticate() succeeded or not */
61static int was_authenticated = 0;
62
Damien Miller646aa602001-02-15 11:51:32 +110063/* Remember what has been initialised */
64static int session_opened = 0;
65static int creds_set = 0;
66
Damien Millerb8481582000-12-03 11:51:51 +110067/* accessor which allows us to switch conversation structs according to
68 * the authentication method being used */
Damien Miller646aa602001-02-15 11:51:32 +110069void do_pam_set_conv(struct pam_conv *conv)
Damien Millerb8481582000-12-03 11:51:51 +110070{
Damien Miller646aa602001-02-15 11:51:32 +110071 pam_set_item(__pamh, PAM_CONV, conv);
Damien Millerb8481582000-12-03 11:51:51 +110072}
73
74/* start an authentication run */
75int do_pam_authenticate(int flags)
76{
Damien Miller646aa602001-02-15 11:51:32 +110077 int retval = pam_authenticate(__pamh, flags);
Damien Millerb8481582000-12-03 11:51:51 +110078 was_authenticated = (retval == PAM_SUCCESS);
79 return retval;
80}
Damien Miller9d5705a2000-09-16 16:09:27 +110081
82/*
83 * PAM conversation function.
84 * There are two states this can run in.
85 *
86 * INITIAL_LOGIN mode simply feeds the password from the client into
87 * PAM in response to PAM_PROMPT_ECHO_OFF, and collects output
Damien Miller646aa602001-02-15 11:51:32 +110088 * messages with into __pam_msg. This is used during initial
Damien Miller9d5705a2000-09-16 16:09:27 +110089 * authentication to bypass the normal PAM password prompt.
90 *
Damien Miller09256482001-10-28 22:36:55 +110091 * OTHER mode handles PAM_PROMPT_ECHO_OFF with read_passphrase()
Damien Miller9d5705a2000-09-16 16:09:27 +110092 * and outputs messages to stderr. This mode is used if pam_chauthtok()
93 * is called to update expired passwords.
94 */
Damien Miller63dc3e92001-02-07 12:58:33 +110095static int do_pam_conversation(int num_msg, const struct pam_message **msg,
Damien Millere72b7af1999-12-30 15:08:44 +110096 struct pam_response **resp, void *appdata_ptr)
97{
98 struct pam_response *reply;
99 int count;
Damien Miller9d5705a2000-09-16 16:09:27 +1100100 char buf[1024];
Damien Millere72b7af1999-12-30 15:08:44 +1100101
102 /* PAM will free this later */
Damien Miller23fe57c2002-07-02 17:08:23 +1000103 reply = xmalloc(num_msg * sizeof(*reply));
Damien Millere72b7af1999-12-30 15:08:44 +1100104
Damien Miller9d5705a2000-09-16 16:09:27 +1100105 for (count = 0; count < num_msg; count++) {
Damien Miller63dc3e92001-02-07 12:58:33 +1100106 if (pamstate == INITIAL_LOGIN) {
107 /*
108 * We can't use stdio yet, queue messages for
109 * printing later
110 */
111 switch(PAM_MSG_MEMBER(msg, count, msg_style)) {
Damien Miller9d5705a2000-09-16 16:09:27 +1100112 case PAM_PROMPT_ECHO_ON:
Damien Miller23fe57c2002-07-02 17:08:23 +1000113 xfree(reply);
Damien Miller63dc3e92001-02-07 12:58:33 +1100114 return PAM_CONV_ERR;
115 case PAM_PROMPT_ECHO_OFF:
Damien Miller646aa602001-02-15 11:51:32 +1100116 if (__pampasswd == NULL) {
Damien Miller23fe57c2002-07-02 17:08:23 +1000117 xfree(reply);
Damien Miller60819b42000-10-14 11:16:12 +1100118 return PAM_CONV_ERR;
Damien Miller60819b42000-10-14 11:16:12 +1100119 }
Damien Miller646aa602001-02-15 11:51:32 +1100120 reply[count].resp = xstrdup(__pampasswd);
Damien Millere72b7af1999-12-30 15:08:44 +1100121 reply[count].resp_retcode = PAM_SUCCESS;
Damien Miller9d5705a2000-09-16 16:09:27 +1100122 break;
123 case PAM_ERROR_MSG:
124 case PAM_TEXT_INFO:
Damien Miller23fe57c2002-07-02 17:08:23 +1000125 if (PAM_MSG_MEMBER(msg, count, msg) != NULL) {
Damien Miller646aa602001-02-15 11:51:32 +1100126 message_cat(&__pam_msg,
Damien Miller63dc3e92001-02-07 12:58:33 +1100127 PAM_MSG_MEMBER(msg, count, msg));
Damien Miller9d5705a2000-09-16 16:09:27 +1100128 }
Damien Millere72b7af1999-12-30 15:08:44 +1100129 reply[count].resp = xstrdup("");
Damien Miller9d5705a2000-09-16 16:09:27 +1100130 reply[count].resp_retcode = PAM_SUCCESS;
Damien Millere72b7af1999-12-30 15:08:44 +1100131 break;
Damien Millere72b7af1999-12-30 15:08:44 +1100132 default:
Damien Miller23fe57c2002-07-02 17:08:23 +1000133 xfree(reply);
Damien Millere72b7af1999-12-30 15:08:44 +1100134 return PAM_CONV_ERR;
Damien Miller63dc3e92001-02-07 12:58:33 +1100135 }
136 } else {
137 /*
138 * stdio is connected, so interact directly
139 */
140 switch(PAM_MSG_MEMBER(msg, count, msg_style)) {
141 case PAM_PROMPT_ECHO_ON:
142 fputs(PAM_MSG_MEMBER(msg, count, msg), stderr);
143 fgets(buf, sizeof(buf), stdin);
144 reply[count].resp = xstrdup(buf);
145 reply[count].resp_retcode = PAM_SUCCESS;
146 break;
147 case PAM_PROMPT_ECHO_OFF:
Damien Miller09256482001-10-28 22:36:55 +1100148 reply[count].resp =
Kevin Stevesfe2f4a12001-10-28 17:32:38 +0000149 read_passphrase(PAM_MSG_MEMBER(msg, count,
150 msg), RP_ALLOW_STDIN);
Damien Miller63dc3e92001-02-07 12:58:33 +1100151 reply[count].resp_retcode = PAM_SUCCESS;
152 break;
153 case PAM_ERROR_MSG:
154 case PAM_TEXT_INFO:
155 if ((*msg)[count].msg != NULL)
156 fprintf(stderr, "%s\n",
157 PAM_MSG_MEMBER(msg, count, msg));
158 reply[count].resp = xstrdup("");
159 reply[count].resp_retcode = PAM_SUCCESS;
160 break;
161 default:
Damien Miller23fe57c2002-07-02 17:08:23 +1000162 xfree(reply);
Damien Miller63dc3e92001-02-07 12:58:33 +1100163 return PAM_CONV_ERR;
164 }
Damien Millere72b7af1999-12-30 15:08:44 +1100165 }
166 }
167
168 *resp = reply;
169
170 return PAM_SUCCESS;
171}
172
173/* Called at exit to cleanly shutdown PAM */
Damien Miller646aa602001-02-15 11:51:32 +1100174void do_pam_cleanup_proc(void *context)
Damien Millere72b7af1999-12-30 15:08:44 +1100175{
Damien Miller2e9adb22001-03-21 12:16:24 +1100176 int pam_retval = PAM_SUCCESS;
Damien Millere72b7af1999-12-30 15:08:44 +1100177
Damien Miller646aa602001-02-15 11:51:32 +1100178 if (__pamh && session_opened) {
179 pam_retval = pam_close_session(__pamh, 0);
Damien Miller63dc3e92001-02-07 12:58:33 +1100180 if (pam_retval != PAM_SUCCESS)
Kevin Stevesef4eea92001-02-05 12:42:17 +0000181 log("Cannot close PAM session[%d]: %.200s",
Damien Miller646aa602001-02-15 11:51:32 +1100182 pam_retval, PAM_STRERROR(__pamh, pam_retval));
Damien Miller3dfeee42001-02-14 00:43:55 +1100183 }
Damien Millere72b7af1999-12-30 15:08:44 +1100184
Damien Miller646aa602001-02-15 11:51:32 +1100185 if (__pamh && creds_set) {
186 pam_retval = pam_setcred(__pamh, PAM_DELETE_CRED);
Damien Miller63dc3e92001-02-07 12:58:33 +1100187 if (pam_retval != PAM_SUCCESS)
188 debug("Cannot delete credentials[%d]: %.200s",
Damien Miller646aa602001-02-15 11:51:32 +1100189 pam_retval, PAM_STRERROR(__pamh, pam_retval));
Damien Miller3dfeee42001-02-14 00:43:55 +1100190 }
Damien Millere72b7af1999-12-30 15:08:44 +1100191
Damien Miller646aa602001-02-15 11:51:32 +1100192 if (__pamh) {
193 pam_retval = pam_end(__pamh, pam_retval);
Damien Miller63dc3e92001-02-07 12:58:33 +1100194 if (pam_retval != PAM_SUCCESS)
Kevin Stevesef4eea92001-02-05 12:42:17 +0000195 log("Cannot release PAM authentication[%d]: %.200s",
Damien Miller646aa602001-02-15 11:51:32 +1100196 pam_retval, PAM_STRERROR(__pamh, pam_retval));
Damien Millere72b7af1999-12-30 15:08:44 +1100197 }
198}
199
200/* Attempt password authentation using PAM */
Kevin Stevese683e762002-04-04 19:02:28 +0000201int auth_pam_password(Authctxt *authctxt, const char *password)
Damien Millere72b7af1999-12-30 15:08:44 +1100202{
203 extern ServerOptions options;
204 int pam_retval;
Kevin Stevese683e762002-04-04 19:02:28 +0000205 struct passwd *pw = authctxt->pw;
Damien Millere72b7af1999-12-30 15:08:44 +1100206
Damien Miller646aa602001-02-15 11:51:32 +1100207 do_pam_set_conv(&conv);
Damien Millerb8481582000-12-03 11:51:51 +1100208
Damien Millere72b7af1999-12-30 15:08:44 +1100209 /* deny if no user. */
210 if (pw == NULL)
211 return 0;
Kevin Steves706e7a92001-04-23 18:38:37 +0000212 if (pw->pw_uid == 0 && options.permit_root_login == PERMIT_NO_PASSWD)
Damien Millere72b7af1999-12-30 15:08:44 +1100213 return 0;
214 if (*password == '\0' && options.permit_empty_passwd == 0)
215 return 0;
216
Damien Miller646aa602001-02-15 11:51:32 +1100217 __pampasswd = password;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000218
Damien Miller9d5705a2000-09-16 16:09:27 +1100219 pamstate = INITIAL_LOGIN;
Kevin Stevesde77b462001-11-09 20:22:16 +0000220 pam_retval = do_pam_authenticate(
221 options.permit_empty_passwd == 0 ? PAM_DISALLOW_NULL_AUTHTOK : 0);
Damien Millere72b7af1999-12-30 15:08:44 +1100222 if (pam_retval == PAM_SUCCESS) {
Damien Miller63dc3e92001-02-07 12:58:33 +1100223 debug("PAM Password authentication accepted for "
224 "user \"%.100s\"", pw->pw_name);
Damien Millere72b7af1999-12-30 15:08:44 +1100225 return 1;
226 } else {
Damien Miller63dc3e92001-02-07 12:58:33 +1100227 debug("PAM Password authentication for \"%.100s\" "
228 "failed[%d]: %s", pw->pw_name, pam_retval,
Damien Miller646aa602001-02-15 11:51:32 +1100229 PAM_STRERROR(__pamh, pam_retval));
Damien Millere72b7af1999-12-30 15:08:44 +1100230 return 0;
231 }
232}
233
234/* Do account management using PAM */
235int do_pam_account(char *username, char *remote_user)
236{
237 int pam_retval;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000238
Damien Miller646aa602001-02-15 11:51:32 +1100239 do_pam_set_conv(&conv);
Damien Miller63dc3e92001-02-07 12:58:33 +1100240
Damien Miller63dc3e92001-02-07 12:58:33 +1100241 if (remote_user) {
Damien Millere72b7af1999-12-30 15:08:44 +1100242 debug("PAM setting ruser to \"%.200s\"", remote_user);
Damien Miller646aa602001-02-15 11:51:32 +1100243 pam_retval = pam_set_item(__pamh, PAM_RUSER, remote_user);
Damien Miller63dc3e92001-02-07 12:58:33 +1100244 if (pam_retval != PAM_SUCCESS)
245 fatal("PAM set ruser failed[%d]: %.200s", pam_retval,
Damien Miller646aa602001-02-15 11:51:32 +1100246 PAM_STRERROR(__pamh, pam_retval));
Damien Millere72b7af1999-12-30 15:08:44 +1100247 }
248
Damien Miller646aa602001-02-15 11:51:32 +1100249 pam_retval = pam_acct_mgmt(__pamh, 0);
Damien Miller79418552002-04-23 20:28:48 +1000250 debug2("pam_acct_mgmt() = %d", pam_retval);
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000251 switch (pam_retval) {
252 case PAM_SUCCESS:
253 /* This is what we want */
254 break;
Damien Millerae9d5af2002-04-26 11:27:24 +1000255#if 0
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000256 case PAM_NEW_AUTHTOK_REQD:
Damien Miller646aa602001-02-15 11:51:32 +1100257 message_cat(&__pam_msg, NEW_AUTHTOK_MSG);
Damien Miller9d5705a2000-09-16 16:09:27 +1100258 /* flag that password change is necessary */
259 password_change_required = 1;
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000260 break;
Damien Millerae9d5af2002-04-26 11:27:24 +1000261#endif
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000262 default:
Damien Miller63dc3e92001-02-07 12:58:33 +1100263 log("PAM rejected by account configuration[%d]: "
Damien Miller646aa602001-02-15 11:51:32 +1100264 "%.200s", pam_retval, PAM_STRERROR(__pamh,
Damien Miller63dc3e92001-02-07 12:58:33 +1100265 pam_retval));
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000266 return(0);
Damien Millere72b7af1999-12-30 15:08:44 +1100267 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000268
Damien Millere72b7af1999-12-30 15:08:44 +1100269 return(1);
270}
271
272/* Do PAM-specific session initialisation */
Damien Miller3e955e72000-01-27 10:55:38 +1100273void do_pam_session(char *username, const char *ttyname)
Damien Millere72b7af1999-12-30 15:08:44 +1100274{
275 int pam_retval;
276
Damien Miller882c2ee2001-03-01 09:18:57 +1100277 do_pam_set_conv(&conv);
278
Damien Millere72b7af1999-12-30 15:08:44 +1100279 if (ttyname != NULL) {
280 debug("PAM setting tty to \"%.200s\"", ttyname);
Damien Miller646aa602001-02-15 11:51:32 +1100281 pam_retval = pam_set_item(__pamh, PAM_TTY, ttyname);
Damien Miller63dc3e92001-02-07 12:58:33 +1100282 if (pam_retval != PAM_SUCCESS)
Kevin Stevesef4eea92001-02-05 12:42:17 +0000283 fatal("PAM set tty failed[%d]: %.200s",
Damien Miller646aa602001-02-15 11:51:32 +1100284 pam_retval, PAM_STRERROR(__pamh, pam_retval));
Damien Millere72b7af1999-12-30 15:08:44 +1100285 }
286
Damien Miller646aa602001-02-15 11:51:32 +1100287 pam_retval = pam_open_session(__pamh, 0);
Damien Miller63dc3e92001-02-07 12:58:33 +1100288 if (pam_retval != PAM_SUCCESS)
Kevin Stevesef4eea92001-02-05 12:42:17 +0000289 fatal("PAM session setup failed[%d]: %.200s",
Damien Miller646aa602001-02-15 11:51:32 +1100290 pam_retval, PAM_STRERROR(__pamh, pam_retval));
Damien Miller31a501d2001-02-27 09:20:48 +1100291
Damien Miller3dfeee42001-02-14 00:43:55 +1100292 session_opened = 1;
Damien Millere72b7af1999-12-30 15:08:44 +1100293}
294
Kevin Stevesef4eea92001-02-05 12:42:17 +0000295/* Set PAM credentials */
Damien Millerf9e93002001-03-27 16:12:24 +1000296void do_pam_setcred(int init)
Damien Millere72b7af1999-12-30 15:08:44 +1100297{
298 int pam_retval;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000299
Damien Millerf762a4b2002-05-08 12:27:55 +1000300 if (__pamh == NULL)
301 return;
302
Damien Miller882c2ee2001-03-01 09:18:57 +1100303 do_pam_set_conv(&conv);
304
Damien Millere72b7af1999-12-30 15:08:44 +1100305 debug("PAM establishing creds");
Damien Millerf9e93002001-03-27 16:12:24 +1000306 pam_retval = pam_setcred(__pamh,
307 init ? PAM_ESTABLISH_CRED : PAM_REINITIALIZE_CRED);
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000308 if (pam_retval != PAM_SUCCESS) {
Damien Miller63dc3e92001-02-07 12:58:33 +1100309 if (was_authenticated)
Kevin Stevesef4eea92001-02-05 12:42:17 +0000310 fatal("PAM setcred failed[%d]: %.200s",
Damien Miller646aa602001-02-15 11:51:32 +1100311 pam_retval, PAM_STRERROR(__pamh, pam_retval));
Damien Miller63dc3e92001-02-07 12:58:33 +1100312 else
Kevin Stevesef4eea92001-02-05 12:42:17 +0000313 debug("PAM setcred failed[%d]: %.200s",
Damien Miller646aa602001-02-15 11:51:32 +1100314 pam_retval, PAM_STRERROR(__pamh, pam_retval));
Damien Miller3dfeee42001-02-14 00:43:55 +1100315 } else
316 creds_set = 1;
Damien Miller9d5705a2000-09-16 16:09:27 +1100317}
318
Kevin Steves092f2ef2000-10-14 13:36:13 +0000319/* accessor function for file scope static variable */
Damien Miller646aa602001-02-15 11:51:32 +1100320int is_pam_password_change_required(void)
Kevin Steves092f2ef2000-10-14 13:36:13 +0000321{
322 return password_change_required;
323}
324
Kevin Stevesef4eea92001-02-05 12:42:17 +0000325/*
Damien Miller9d5705a2000-09-16 16:09:27 +1100326 * Have user change authentication token if pam_acct_mgmt() indicated
327 * it was expired. This needs to be called after an interactive
328 * session is established and the user's pty is connected to
329 * stdin/stout/stderr.
330 */
Kevin Steves6beac8c2000-10-14 15:08:49 +0000331void do_pam_chauthtok(void)
Damien Miller9d5705a2000-09-16 16:09:27 +1100332{
333 int pam_retval;
334
Damien Miller882c2ee2001-03-01 09:18:57 +1100335 do_pam_set_conv(&conv);
336
Damien Miller9d5705a2000-09-16 16:09:27 +1100337 if (password_change_required) {
338 pamstate = OTHER;
Damien Millerec7e1b12001-03-21 13:01:35 +1100339 pam_retval = pam_chauthtok(__pamh, PAM_CHANGE_EXPIRED_AUTHTOK);
340 if (pam_retval != PAM_SUCCESS)
341 fatal("PAM pam_chauthtok failed[%d]: %.200s",
342 pam_retval, PAM_STRERROR(__pamh, pam_retval));
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000343 }
Damien Millere72b7af1999-12-30 15:08:44 +1100344}
345
346/* Cleanly shutdown PAM */
347void finish_pam(void)
348{
Damien Miller646aa602001-02-15 11:51:32 +1100349 do_pam_cleanup_proc(NULL);
350 fatal_remove_cleanup(&do_pam_cleanup_proc, NULL);
Damien Millere72b7af1999-12-30 15:08:44 +1100351}
352
353/* Start PAM authentication for specified account */
Damien Miller22e22bf2001-01-19 15:46:38 +1100354void start_pam(const char *user)
Damien Millere72b7af1999-12-30 15:08:44 +1100355{
356 int pam_retval;
Damien Millerac2b1a52001-02-11 22:39:19 +1100357 extern ServerOptions options;
Kevin Steves5f3b9b92001-04-23 17:28:28 +0000358 extern u_int utmp_len;
359 const char *rhost;
Damien Millere72b7af1999-12-30 15:08:44 +1100360
Damien Miller22e22bf2001-01-19 15:46:38 +1100361 debug("Starting up PAM with username \"%.200s\"", user);
Damien Millere72b7af1999-12-30 15:08:44 +1100362
Damien Miller646aa602001-02-15 11:51:32 +1100363 pam_retval = pam_start(SSHD_PAM_SERVICE, user, &conv, &__pamh);
Damien Millere72b7af1999-12-30 15:08:44 +1100364
Damien Miller63dc3e92001-02-07 12:58:33 +1100365 if (pam_retval != PAM_SUCCESS)
Kevin Stevesef4eea92001-02-05 12:42:17 +0000366 fatal("PAM initialisation failed[%d]: %.200s",
Damien Miller646aa602001-02-15 11:51:32 +1100367 pam_retval, PAM_STRERROR(__pamh, pam_retval));
Damien Millerbd5817d2001-02-11 22:35:11 +1100368
Damien Millerf3451a22002-02-05 12:40:46 +1100369 rhost = get_remote_name_or_ip(utmp_len, options.verify_reverse_mapping);
Kevin Steves5f3b9b92001-04-23 17:28:28 +0000370 debug("PAM setting rhost to \"%.200s\"", rhost);
371
372 pam_retval = pam_set_item(__pamh, PAM_RHOST, rhost);
Damien Millerbd5817d2001-02-11 22:35:11 +1100373 if (pam_retval != PAM_SUCCESS)
374 fatal("PAM set rhost failed[%d]: %.200s", pam_retval,
Damien Miller646aa602001-02-15 11:51:32 +1100375 PAM_STRERROR(__pamh, pam_retval));
Damien Miller4e997202000-07-09 21:21:52 +1000376#ifdef PAM_TTY_KLUDGE
Damien Millerc19fd5f2000-06-22 21:44:54 +1000377 /*
378 * Some PAM modules (e.g. pam_time) require a TTY to operate,
Kevin Stevesef4eea92001-02-05 12:42:17 +0000379 * and will fail in various stupid ways if they don't get one.
Damien Millerc19fd5f2000-06-22 21:44:54 +1000380 * sshd doesn't set the tty until too late in the auth process and may
381 * not even need one (for tty-less connections)
Kevin Stevesef4eea92001-02-05 12:42:17 +0000382 * Kludge: Set a fake PAM_TTY
Damien Millerc19fd5f2000-06-22 21:44:54 +1000383 */
Damien Miller33cdd9e2001-10-28 22:33:48 +1100384 pam_retval = pam_set_item(__pamh, PAM_TTY, "NODEVssh");
Damien Miller63dc3e92001-02-07 12:58:33 +1100385 if (pam_retval != PAM_SUCCESS)
Kevin Stevesef4eea92001-02-05 12:42:17 +0000386 fatal("PAM set tty failed[%d]: %.200s",
Damien Miller646aa602001-02-15 11:51:32 +1100387 pam_retval, PAM_STRERROR(__pamh, pam_retval));
Damien Miller4e997202000-07-09 21:21:52 +1000388#endif /* PAM_TTY_KLUDGE */
Damien Miller7b22d652000-06-18 14:07:04 +1000389
Damien Miller646aa602001-02-15 11:51:32 +1100390 fatal_add_cleanup(&do_pam_cleanup_proc, NULL);
Damien Millere72b7af1999-12-30 15:08:44 +1100391}
392
393/* Return list of PAM enviornment strings */
394char **fetch_pam_environment(void)
395{
Damien Miller1bead332000-04-30 00:47:29 +1000396#ifdef HAVE_PAM_GETENVLIST
Damien Miller646aa602001-02-15 11:51:32 +1100397 return(pam_getenvlist(__pamh));
Damien Miller1bead332000-04-30 00:47:29 +1000398#else /* HAVE_PAM_GETENVLIST */
399 return(NULL);
400#endif /* HAVE_PAM_GETENVLIST */
Damien Millere72b7af1999-12-30 15:08:44 +1100401}
402
403/* Print any messages that have been generated during authentication */
404/* or account checking to stderr */
405void print_pam_messages(void)
406{
Damien Miller646aa602001-02-15 11:51:32 +1100407 if (__pam_msg != NULL)
408 fputs(__pam_msg, stderr);
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000409}
410
Damien Miller63dc3e92001-02-07 12:58:33 +1100411/* Append a message to buffer */
412void message_cat(char **p, const char *a)
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000413{
Damien Miller63dc3e92001-02-07 12:58:33 +1100414 char *cp;
415 size_t new_len;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000416
Damien Miller63dc3e92001-02-07 12:58:33 +1100417 new_len = strlen(a);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000418
Damien Miller63dc3e92001-02-07 12:58:33 +1100419 if (*p) {
420 size_t len = strlen(*p);
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000421
Damien Miller63dc3e92001-02-07 12:58:33 +1100422 *p = xrealloc(*p, new_len + len + 2);
423 cp = *p + len;
424 } else
425 *p = cp = xmalloc(new_len + 2);
426
427 memcpy(cp, a, new_len);
428 cp[new_len] = '\n';
429 cp[new_len + 1] = '\0';
Damien Millere72b7af1999-12-30 15:08:44 +1100430}
431
432#endif /* USE_PAM */