blob: 22807f1a9052dcf2c3b11c4bbc6c56a6bc852074 [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"
Kevin Steves63007d42002-07-21 17:57:01 +000032#include "auth-options.h"
Damien Miller63dc3e92001-02-07 12:58:33 +110033#include "auth-pam.h"
Damien Millere72b7af1999-12-30 15:08:44 +110034#include "servconf.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000035#include "canohost.h"
36#include "readpass.h"
Damien Millere72b7af1999-12-30 15:08:44 +110037
Kevin Steves85ecbe72001-04-20 17:43:47 +000038extern char *__progname;
39
Kevin Steves63007d42002-07-21 17:57:01 +000040extern int use_privsep;
41
42RCSID("$Id: auth-pam.c,v 1.49 2002/07/21 17:57:01 stevesk Exp $");
Damien Miller2f6a0ad2000-05-31 11:20:11 +100043
44#define NEW_AUTHTOK_MSG \
Kevin Steves6cdecd02002-07-21 17:26:54 +000045 "Warning: Your password has expired, please change it now."
Kevin Steves63007d42002-07-21 17:57:01 +000046#define NEW_AUTHTOK_MSG_PRIVSEP \
47 "Your password has expired, the session cannot proceed."
Damien Millere72b7af1999-12-30 15:08:44 +110048
Damien Miller63dc3e92001-02-07 12:58:33 +110049static int do_pam_conversation(int num_msg, const struct pam_message **msg,
50 struct pam_response **resp, void *appdata_ptr);
Damien Millere72b7af1999-12-30 15:08:44 +110051
52/* module-local variables */
53static struct pam_conv conv = {
Damien Miller63dc3e92001-02-07 12:58:33 +110054 do_pam_conversation,
Damien Millere72b7af1999-12-30 15:08:44 +110055 NULL
56};
Damien Miller646aa602001-02-15 11:51:32 +110057static char *__pam_msg = NULL;
58static pam_handle_t *__pamh = NULL;
59static const char *__pampasswd = NULL;
Damien Millere72b7af1999-12-30 15:08:44 +110060
Damien Miller63dc3e92001-02-07 12:58:33 +110061/* states for do_pam_conversation() */
Damien Millerb8481582000-12-03 11:51:51 +110062enum { INITIAL_LOGIN, OTHER } pamstate = INITIAL_LOGIN;
Kevin Steves6cdecd02002-07-21 17:26:54 +000063/* remember whether pam_acct_mgmt() returned PAM_NEW_AUTHTOK_REQD */
Damien Miller9d5705a2000-09-16 16:09:27 +110064static int password_change_required = 0;
Damien Millerb8481582000-12-03 11:51:51 +110065/* remember whether the last pam_authenticate() succeeded or not */
66static int was_authenticated = 0;
67
Damien Miller646aa602001-02-15 11:51:32 +110068/* Remember what has been initialised */
69static int session_opened = 0;
70static int creds_set = 0;
71
Damien Millerb8481582000-12-03 11:51:51 +110072/* accessor which allows us to switch conversation structs according to
73 * the authentication method being used */
Damien Miller646aa602001-02-15 11:51:32 +110074void do_pam_set_conv(struct pam_conv *conv)
Damien Millerb8481582000-12-03 11:51:51 +110075{
Damien Miller646aa602001-02-15 11:51:32 +110076 pam_set_item(__pamh, PAM_CONV, conv);
Damien Millerb8481582000-12-03 11:51:51 +110077}
78
79/* start an authentication run */
80int do_pam_authenticate(int flags)
81{
Damien Miller646aa602001-02-15 11:51:32 +110082 int retval = pam_authenticate(__pamh, flags);
Damien Millerb8481582000-12-03 11:51:51 +110083 was_authenticated = (retval == PAM_SUCCESS);
84 return retval;
85}
Damien Miller9d5705a2000-09-16 16:09:27 +110086
87/*
88 * PAM conversation function.
89 * There are two states this can run in.
90 *
91 * INITIAL_LOGIN mode simply feeds the password from the client into
92 * PAM in response to PAM_PROMPT_ECHO_OFF, and collects output
Damien Miller646aa602001-02-15 11:51:32 +110093 * messages with into __pam_msg. This is used during initial
Damien Miller9d5705a2000-09-16 16:09:27 +110094 * authentication to bypass the normal PAM password prompt.
95 *
Damien Miller09256482001-10-28 22:36:55 +110096 * OTHER mode handles PAM_PROMPT_ECHO_OFF with read_passphrase()
Damien Miller9d5705a2000-09-16 16:09:27 +110097 * and outputs messages to stderr. This mode is used if pam_chauthtok()
98 * is called to update expired passwords.
99 */
Damien Miller63dc3e92001-02-07 12:58:33 +1100100static int do_pam_conversation(int num_msg, const struct pam_message **msg,
Damien Millere72b7af1999-12-30 15:08:44 +1100101 struct pam_response **resp, void *appdata_ptr)
102{
103 struct pam_response *reply;
104 int count;
Damien Miller9d5705a2000-09-16 16:09:27 +1100105 char buf[1024];
Damien Millere72b7af1999-12-30 15:08:44 +1100106
107 /* PAM will free this later */
Damien Miller23fe57c2002-07-02 17:08:23 +1000108 reply = xmalloc(num_msg * sizeof(*reply));
Damien Millere72b7af1999-12-30 15:08:44 +1100109
Damien Miller9d5705a2000-09-16 16:09:27 +1100110 for (count = 0; count < num_msg; count++) {
Damien Miller63dc3e92001-02-07 12:58:33 +1100111 if (pamstate == INITIAL_LOGIN) {
112 /*
113 * We can't use stdio yet, queue messages for
114 * printing later
115 */
116 switch(PAM_MSG_MEMBER(msg, count, msg_style)) {
Damien Miller9d5705a2000-09-16 16:09:27 +1100117 case PAM_PROMPT_ECHO_ON:
Damien Miller23fe57c2002-07-02 17:08:23 +1000118 xfree(reply);
Damien Miller63dc3e92001-02-07 12:58:33 +1100119 return PAM_CONV_ERR;
120 case PAM_PROMPT_ECHO_OFF:
Damien Miller646aa602001-02-15 11:51:32 +1100121 if (__pampasswd == NULL) {
Damien Miller23fe57c2002-07-02 17:08:23 +1000122 xfree(reply);
Damien Miller60819b42000-10-14 11:16:12 +1100123 return PAM_CONV_ERR;
Damien Miller60819b42000-10-14 11:16:12 +1100124 }
Damien Miller646aa602001-02-15 11:51:32 +1100125 reply[count].resp = xstrdup(__pampasswd);
Damien Millere72b7af1999-12-30 15:08:44 +1100126 reply[count].resp_retcode = PAM_SUCCESS;
Damien Miller9d5705a2000-09-16 16:09:27 +1100127 break;
128 case PAM_ERROR_MSG:
129 case PAM_TEXT_INFO:
Damien Miller23fe57c2002-07-02 17:08:23 +1000130 if (PAM_MSG_MEMBER(msg, count, msg) != NULL) {
Damien Miller646aa602001-02-15 11:51:32 +1100131 message_cat(&__pam_msg,
Damien Miller63dc3e92001-02-07 12:58:33 +1100132 PAM_MSG_MEMBER(msg, count, msg));
Damien Miller9d5705a2000-09-16 16:09:27 +1100133 }
Damien Millere72b7af1999-12-30 15:08:44 +1100134 reply[count].resp = xstrdup("");
Damien Miller9d5705a2000-09-16 16:09:27 +1100135 reply[count].resp_retcode = PAM_SUCCESS;
Damien Millere72b7af1999-12-30 15:08:44 +1100136 break;
Damien Millere72b7af1999-12-30 15:08:44 +1100137 default:
Damien Miller23fe57c2002-07-02 17:08:23 +1000138 xfree(reply);
Damien Millere72b7af1999-12-30 15:08:44 +1100139 return PAM_CONV_ERR;
Damien Miller63dc3e92001-02-07 12:58:33 +1100140 }
141 } else {
142 /*
143 * stdio is connected, so interact directly
144 */
145 switch(PAM_MSG_MEMBER(msg, count, msg_style)) {
146 case PAM_PROMPT_ECHO_ON:
147 fputs(PAM_MSG_MEMBER(msg, count, msg), stderr);
148 fgets(buf, sizeof(buf), stdin);
149 reply[count].resp = xstrdup(buf);
150 reply[count].resp_retcode = PAM_SUCCESS;
151 break;
152 case PAM_PROMPT_ECHO_OFF:
Damien Miller09256482001-10-28 22:36:55 +1100153 reply[count].resp =
Kevin Stevesfe2f4a12001-10-28 17:32:38 +0000154 read_passphrase(PAM_MSG_MEMBER(msg, count,
155 msg), RP_ALLOW_STDIN);
Damien Miller63dc3e92001-02-07 12:58:33 +1100156 reply[count].resp_retcode = PAM_SUCCESS;
157 break;
158 case PAM_ERROR_MSG:
159 case PAM_TEXT_INFO:
160 if ((*msg)[count].msg != NULL)
161 fprintf(stderr, "%s\n",
162 PAM_MSG_MEMBER(msg, count, msg));
163 reply[count].resp = xstrdup("");
164 reply[count].resp_retcode = PAM_SUCCESS;
165 break;
166 default:
Damien Miller23fe57c2002-07-02 17:08:23 +1000167 xfree(reply);
Damien Miller63dc3e92001-02-07 12:58:33 +1100168 return PAM_CONV_ERR;
169 }
Damien Millere72b7af1999-12-30 15:08:44 +1100170 }
171 }
172
173 *resp = reply;
174
175 return PAM_SUCCESS;
176}
177
178/* Called at exit to cleanly shutdown PAM */
Damien Miller646aa602001-02-15 11:51:32 +1100179void do_pam_cleanup_proc(void *context)
Damien Millere72b7af1999-12-30 15:08:44 +1100180{
Damien Miller2e9adb22001-03-21 12:16:24 +1100181 int pam_retval = PAM_SUCCESS;
Damien Millere72b7af1999-12-30 15:08:44 +1100182
Damien Miller646aa602001-02-15 11:51:32 +1100183 if (__pamh && session_opened) {
184 pam_retval = pam_close_session(__pamh, 0);
Damien Miller63dc3e92001-02-07 12:58:33 +1100185 if (pam_retval != PAM_SUCCESS)
Kevin Stevesef4eea92001-02-05 12:42:17 +0000186 log("Cannot close PAM session[%d]: %.200s",
Damien Miller646aa602001-02-15 11:51:32 +1100187 pam_retval, PAM_STRERROR(__pamh, pam_retval));
Damien Miller3dfeee42001-02-14 00:43:55 +1100188 }
Damien Millere72b7af1999-12-30 15:08:44 +1100189
Damien Miller646aa602001-02-15 11:51:32 +1100190 if (__pamh && creds_set) {
191 pam_retval = pam_setcred(__pamh, PAM_DELETE_CRED);
Damien Miller63dc3e92001-02-07 12:58:33 +1100192 if (pam_retval != PAM_SUCCESS)
193 debug("Cannot delete credentials[%d]: %.200s",
Damien Miller646aa602001-02-15 11:51:32 +1100194 pam_retval, PAM_STRERROR(__pamh, pam_retval));
Damien Miller3dfeee42001-02-14 00:43:55 +1100195 }
Damien Millere72b7af1999-12-30 15:08:44 +1100196
Damien Miller646aa602001-02-15 11:51:32 +1100197 if (__pamh) {
198 pam_retval = pam_end(__pamh, pam_retval);
Damien Miller63dc3e92001-02-07 12:58:33 +1100199 if (pam_retval != PAM_SUCCESS)
Kevin Stevesef4eea92001-02-05 12:42:17 +0000200 log("Cannot release PAM authentication[%d]: %.200s",
Damien Miller646aa602001-02-15 11:51:32 +1100201 pam_retval, PAM_STRERROR(__pamh, pam_retval));
Damien Millere72b7af1999-12-30 15:08:44 +1100202 }
203}
204
205/* Attempt password authentation using PAM */
Kevin Stevese683e762002-04-04 19:02:28 +0000206int auth_pam_password(Authctxt *authctxt, const char *password)
Damien Millere72b7af1999-12-30 15:08:44 +1100207{
208 extern ServerOptions options;
209 int pam_retval;
Kevin Stevese683e762002-04-04 19:02:28 +0000210 struct passwd *pw = authctxt->pw;
Damien Millere72b7af1999-12-30 15:08:44 +1100211
Damien Miller646aa602001-02-15 11:51:32 +1100212 do_pam_set_conv(&conv);
Damien Millerb8481582000-12-03 11:51:51 +1100213
Damien Millere72b7af1999-12-30 15:08:44 +1100214 /* deny if no user. */
215 if (pw == NULL)
216 return 0;
Kevin Steves706e7a92001-04-23 18:38:37 +0000217 if (pw->pw_uid == 0 && options.permit_root_login == PERMIT_NO_PASSWD)
Damien Millere72b7af1999-12-30 15:08:44 +1100218 return 0;
219 if (*password == '\0' && options.permit_empty_passwd == 0)
220 return 0;
221
Damien Miller646aa602001-02-15 11:51:32 +1100222 __pampasswd = password;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000223
Damien Miller9d5705a2000-09-16 16:09:27 +1100224 pamstate = INITIAL_LOGIN;
Kevin Stevesde77b462001-11-09 20:22:16 +0000225 pam_retval = do_pam_authenticate(
226 options.permit_empty_passwd == 0 ? PAM_DISALLOW_NULL_AUTHTOK : 0);
Damien Millere72b7af1999-12-30 15:08:44 +1100227 if (pam_retval == PAM_SUCCESS) {
Damien Miller63dc3e92001-02-07 12:58:33 +1100228 debug("PAM Password authentication accepted for "
229 "user \"%.100s\"", pw->pw_name);
Damien Millere72b7af1999-12-30 15:08:44 +1100230 return 1;
231 } else {
Damien Miller63dc3e92001-02-07 12:58:33 +1100232 debug("PAM Password authentication for \"%.100s\" "
233 "failed[%d]: %s", pw->pw_name, pam_retval,
Damien Miller646aa602001-02-15 11:51:32 +1100234 PAM_STRERROR(__pamh, pam_retval));
Damien Millere72b7af1999-12-30 15:08:44 +1100235 return 0;
236 }
237}
238
239/* Do account management using PAM */
240int do_pam_account(char *username, char *remote_user)
241{
242 int pam_retval;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000243
Damien Miller646aa602001-02-15 11:51:32 +1100244 do_pam_set_conv(&conv);
Damien Miller63dc3e92001-02-07 12:58:33 +1100245
Damien Miller63dc3e92001-02-07 12:58:33 +1100246 if (remote_user) {
Damien Millere72b7af1999-12-30 15:08:44 +1100247 debug("PAM setting ruser to \"%.200s\"", remote_user);
Damien Miller646aa602001-02-15 11:51:32 +1100248 pam_retval = pam_set_item(__pamh, PAM_RUSER, remote_user);
Damien Miller63dc3e92001-02-07 12:58:33 +1100249 if (pam_retval != PAM_SUCCESS)
250 fatal("PAM set ruser failed[%d]: %.200s", pam_retval,
Damien Miller646aa602001-02-15 11:51:32 +1100251 PAM_STRERROR(__pamh, pam_retval));
Damien Millere72b7af1999-12-30 15:08:44 +1100252 }
253
Damien Miller646aa602001-02-15 11:51:32 +1100254 pam_retval = pam_acct_mgmt(__pamh, 0);
Damien Miller79418552002-04-23 20:28:48 +1000255 debug2("pam_acct_mgmt() = %d", pam_retval);
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000256 switch (pam_retval) {
257 case PAM_SUCCESS:
258 /* This is what we want */
259 break;
Damien Millerae9d5af2002-04-26 11:27:24 +1000260#if 0
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000261 case PAM_NEW_AUTHTOK_REQD:
Kevin Steves63007d42002-07-21 17:57:01 +0000262 message_cat(&__pam_msg, use_privsep ?
263 NEW_AUTHTOK_MSG_PRIVSEP : NEW_AUTHTOK_MSG);
Damien Miller9d5705a2000-09-16 16:09:27 +1100264 /* flag that password change is necessary */
265 password_change_required = 1;
Kevin Steves63007d42002-07-21 17:57:01 +0000266 /* disallow other functionality for now */
267 no_port_forwarding_flag |= 2;
268 no_agent_forwarding_flag |= 2;
269 no_x11_forwarding_flag |= 2;
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000270 break;
Damien Millerae9d5af2002-04-26 11:27:24 +1000271#endif
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000272 default:
Damien Miller63dc3e92001-02-07 12:58:33 +1100273 log("PAM rejected by account configuration[%d]: "
Damien Miller646aa602001-02-15 11:51:32 +1100274 "%.200s", pam_retval, PAM_STRERROR(__pamh,
Damien Miller63dc3e92001-02-07 12:58:33 +1100275 pam_retval));
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000276 return(0);
Damien Millere72b7af1999-12-30 15:08:44 +1100277 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000278
Damien Millere72b7af1999-12-30 15:08:44 +1100279 return(1);
280}
281
282/* Do PAM-specific session initialisation */
Damien Miller3e955e72000-01-27 10:55:38 +1100283void do_pam_session(char *username, const char *ttyname)
Damien Millere72b7af1999-12-30 15:08:44 +1100284{
285 int pam_retval;
286
Damien Miller882c2ee2001-03-01 09:18:57 +1100287 do_pam_set_conv(&conv);
288
Damien Millere72b7af1999-12-30 15:08:44 +1100289 if (ttyname != NULL) {
290 debug("PAM setting tty to \"%.200s\"", ttyname);
Damien Miller646aa602001-02-15 11:51:32 +1100291 pam_retval = pam_set_item(__pamh, PAM_TTY, ttyname);
Damien Miller63dc3e92001-02-07 12:58:33 +1100292 if (pam_retval != PAM_SUCCESS)
Kevin Stevesef4eea92001-02-05 12:42:17 +0000293 fatal("PAM set tty failed[%d]: %.200s",
Damien Miller646aa602001-02-15 11:51:32 +1100294 pam_retval, PAM_STRERROR(__pamh, pam_retval));
Damien Millere72b7af1999-12-30 15:08:44 +1100295 }
296
Damien Miller646aa602001-02-15 11:51:32 +1100297 pam_retval = pam_open_session(__pamh, 0);
Damien Miller63dc3e92001-02-07 12:58:33 +1100298 if (pam_retval != PAM_SUCCESS)
Kevin Stevesef4eea92001-02-05 12:42:17 +0000299 fatal("PAM session setup failed[%d]: %.200s",
Damien Miller646aa602001-02-15 11:51:32 +1100300 pam_retval, PAM_STRERROR(__pamh, pam_retval));
Damien Miller31a501d2001-02-27 09:20:48 +1100301
Damien Miller3dfeee42001-02-14 00:43:55 +1100302 session_opened = 1;
Damien Millere72b7af1999-12-30 15:08:44 +1100303}
304
Kevin Stevesef4eea92001-02-05 12:42:17 +0000305/* Set PAM credentials */
Damien Millerf9e93002001-03-27 16:12:24 +1000306void do_pam_setcred(int init)
Damien Millere72b7af1999-12-30 15:08:44 +1100307{
308 int pam_retval;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000309
Damien Millerf762a4b2002-05-08 12:27:55 +1000310 if (__pamh == NULL)
311 return;
312
Damien Miller882c2ee2001-03-01 09:18:57 +1100313 do_pam_set_conv(&conv);
314
Damien Millere72b7af1999-12-30 15:08:44 +1100315 debug("PAM establishing creds");
Damien Millerf9e93002001-03-27 16:12:24 +1000316 pam_retval = pam_setcred(__pamh,
317 init ? PAM_ESTABLISH_CRED : PAM_REINITIALIZE_CRED);
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000318 if (pam_retval != PAM_SUCCESS) {
Damien Miller63dc3e92001-02-07 12:58:33 +1100319 if (was_authenticated)
Kevin Stevesef4eea92001-02-05 12:42:17 +0000320 fatal("PAM setcred failed[%d]: %.200s",
Damien Miller646aa602001-02-15 11:51:32 +1100321 pam_retval, PAM_STRERROR(__pamh, pam_retval));
Damien Miller63dc3e92001-02-07 12:58:33 +1100322 else
Kevin Stevesef4eea92001-02-05 12:42:17 +0000323 debug("PAM setcred failed[%d]: %.200s",
Damien Miller646aa602001-02-15 11:51:32 +1100324 pam_retval, PAM_STRERROR(__pamh, pam_retval));
Damien Miller3dfeee42001-02-14 00:43:55 +1100325 } else
326 creds_set = 1;
Damien Miller9d5705a2000-09-16 16:09:27 +1100327}
328
Kevin Steves092f2ef2000-10-14 13:36:13 +0000329/* accessor function for file scope static variable */
Damien Miller646aa602001-02-15 11:51:32 +1100330int is_pam_password_change_required(void)
Kevin Steves092f2ef2000-10-14 13:36:13 +0000331{
332 return password_change_required;
333}
334
Kevin Stevesef4eea92001-02-05 12:42:17 +0000335/*
Damien Miller9d5705a2000-09-16 16:09:27 +1100336 * Have user change authentication token if pam_acct_mgmt() indicated
337 * it was expired. This needs to be called after an interactive
338 * session is established and the user's pty is connected to
Kevin Steves6cdecd02002-07-21 17:26:54 +0000339 * stdin/stdout/stderr.
Damien Miller9d5705a2000-09-16 16:09:27 +1100340 */
Kevin Steves6beac8c2000-10-14 15:08:49 +0000341void do_pam_chauthtok(void)
Damien Miller9d5705a2000-09-16 16:09:27 +1100342{
343 int pam_retval;
344
Damien Miller882c2ee2001-03-01 09:18:57 +1100345 do_pam_set_conv(&conv);
346
Damien Miller9d5705a2000-09-16 16:09:27 +1100347 if (password_change_required) {
Kevin Steves63007d42002-07-21 17:57:01 +0000348 if (use_privsep)
349 fatal("Password changing is currently unsupported"
350 " with privilege separation");
Damien Miller9d5705a2000-09-16 16:09:27 +1100351 pamstate = OTHER;
Damien Millerec7e1b12001-03-21 13:01:35 +1100352 pam_retval = pam_chauthtok(__pamh, PAM_CHANGE_EXPIRED_AUTHTOK);
353 if (pam_retval != PAM_SUCCESS)
354 fatal("PAM pam_chauthtok failed[%d]: %.200s",
355 pam_retval, PAM_STRERROR(__pamh, pam_retval));
Kevin Steves63007d42002-07-21 17:57:01 +0000356#if 0
357 /* XXX: This would need to be done in the parent process,
358 * but there's currently no way to pass such request. */
359 no_port_forwarding_flag &= ~2;
360 no_agent_forwarding_flag &= ~2;
361 no_x11_forwarding_flag &= ~2;
362 if (!no_port_forwarding_flag && options.allow_tcp_forwarding)
363 channel_permit_all_opens();
364#endif
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000365 }
Damien Millere72b7af1999-12-30 15:08:44 +1100366}
367
368/* Cleanly shutdown PAM */
369void finish_pam(void)
370{
Damien Miller646aa602001-02-15 11:51:32 +1100371 do_pam_cleanup_proc(NULL);
372 fatal_remove_cleanup(&do_pam_cleanup_proc, NULL);
Damien Millere72b7af1999-12-30 15:08:44 +1100373}
374
375/* Start PAM authentication for specified account */
Damien Miller22e22bf2001-01-19 15:46:38 +1100376void start_pam(const char *user)
Damien Millere72b7af1999-12-30 15:08:44 +1100377{
378 int pam_retval;
Damien Millerac2b1a52001-02-11 22:39:19 +1100379 extern ServerOptions options;
Kevin Steves5f3b9b92001-04-23 17:28:28 +0000380 extern u_int utmp_len;
381 const char *rhost;
Damien Millere72b7af1999-12-30 15:08:44 +1100382
Damien Miller22e22bf2001-01-19 15:46:38 +1100383 debug("Starting up PAM with username \"%.200s\"", user);
Damien Millere72b7af1999-12-30 15:08:44 +1100384
Damien Miller646aa602001-02-15 11:51:32 +1100385 pam_retval = pam_start(SSHD_PAM_SERVICE, user, &conv, &__pamh);
Damien Millere72b7af1999-12-30 15:08:44 +1100386
Damien Miller63dc3e92001-02-07 12:58:33 +1100387 if (pam_retval != PAM_SUCCESS)
Kevin Stevesef4eea92001-02-05 12:42:17 +0000388 fatal("PAM initialisation failed[%d]: %.200s",
Damien Miller646aa602001-02-15 11:51:32 +1100389 pam_retval, PAM_STRERROR(__pamh, pam_retval));
Damien Millerbd5817d2001-02-11 22:35:11 +1100390
Damien Millerf3451a22002-02-05 12:40:46 +1100391 rhost = get_remote_name_or_ip(utmp_len, options.verify_reverse_mapping);
Kevin Steves5f3b9b92001-04-23 17:28:28 +0000392 debug("PAM setting rhost to \"%.200s\"", rhost);
393
394 pam_retval = pam_set_item(__pamh, PAM_RHOST, rhost);
Damien Millerbd5817d2001-02-11 22:35:11 +1100395 if (pam_retval != PAM_SUCCESS)
396 fatal("PAM set rhost failed[%d]: %.200s", pam_retval,
Damien Miller646aa602001-02-15 11:51:32 +1100397 PAM_STRERROR(__pamh, pam_retval));
Damien Miller4e997202000-07-09 21:21:52 +1000398#ifdef PAM_TTY_KLUDGE
Damien Millerc19fd5f2000-06-22 21:44:54 +1000399 /*
400 * Some PAM modules (e.g. pam_time) require a TTY to operate,
Kevin Stevesef4eea92001-02-05 12:42:17 +0000401 * and will fail in various stupid ways if they don't get one.
Damien Millerc19fd5f2000-06-22 21:44:54 +1000402 * sshd doesn't set the tty until too late in the auth process and may
403 * not even need one (for tty-less connections)
Kevin Stevesef4eea92001-02-05 12:42:17 +0000404 * Kludge: Set a fake PAM_TTY
Damien Millerc19fd5f2000-06-22 21:44:54 +1000405 */
Damien Miller33cdd9e2001-10-28 22:33:48 +1100406 pam_retval = pam_set_item(__pamh, PAM_TTY, "NODEVssh");
Damien Miller63dc3e92001-02-07 12:58:33 +1100407 if (pam_retval != PAM_SUCCESS)
Kevin Stevesef4eea92001-02-05 12:42:17 +0000408 fatal("PAM set tty failed[%d]: %.200s",
Damien Miller646aa602001-02-15 11:51:32 +1100409 pam_retval, PAM_STRERROR(__pamh, pam_retval));
Damien Miller4e997202000-07-09 21:21:52 +1000410#endif /* PAM_TTY_KLUDGE */
Damien Miller7b22d652000-06-18 14:07:04 +1000411
Damien Miller646aa602001-02-15 11:51:32 +1100412 fatal_add_cleanup(&do_pam_cleanup_proc, NULL);
Damien Millere72b7af1999-12-30 15:08:44 +1100413}
414
415/* Return list of PAM enviornment strings */
416char **fetch_pam_environment(void)
417{
Damien Miller1bead332000-04-30 00:47:29 +1000418#ifdef HAVE_PAM_GETENVLIST
Damien Miller646aa602001-02-15 11:51:32 +1100419 return(pam_getenvlist(__pamh));
Damien Miller1bead332000-04-30 00:47:29 +1000420#else /* HAVE_PAM_GETENVLIST */
421 return(NULL);
422#endif /* HAVE_PAM_GETENVLIST */
Damien Millere72b7af1999-12-30 15:08:44 +1100423}
424
425/* Print any messages that have been generated during authentication */
426/* or account checking to stderr */
427void print_pam_messages(void)
428{
Damien Miller646aa602001-02-15 11:51:32 +1100429 if (__pam_msg != NULL)
430 fputs(__pam_msg, stderr);
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000431}
432
Damien Miller63dc3e92001-02-07 12:58:33 +1100433/* Append a message to buffer */
434void message_cat(char **p, const char *a)
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000435{
Damien Miller63dc3e92001-02-07 12:58:33 +1100436 char *cp;
437 size_t new_len;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000438
Damien Miller63dc3e92001-02-07 12:58:33 +1100439 new_len = strlen(a);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000440
Damien Miller63dc3e92001-02-07 12:58:33 +1100441 if (*p) {
442 size_t len = strlen(*p);
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000443
Damien Miller63dc3e92001-02-07 12:58:33 +1100444 *p = xrealloc(*p, new_len + len + 2);
445 cp = *p + len;
446 } else
447 *p = cp = xmalloc(new_len + 2);
448
449 memcpy(cp, a, new_len);
450 cp[new_len] = '\n';
451 cp[new_len + 1] = '\0';
Damien Millere72b7af1999-12-30 15:08:44 +1100452}
453
454#endif /* USE_PAM */