blob: ab985d15b3fa0e2b4d0a26b03fc538ca28c73440 [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"
Damien Millere72b7af1999-12-30 15:08:44 +110031#include "servconf.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000032#include "canohost.h"
33#include "readpass.h"
Damien Millere72b7af1999-12-30 15:08:44 +110034
Kevin Stevesef4eea92001-02-05 12:42:17 +000035RCSID("$Id: auth-pam.c,v 1.24 2001/02/05 12:42:17 stevesk Exp $");
Damien Miller2f6a0ad2000-05-31 11:20:11 +100036
37#define NEW_AUTHTOK_MSG \
Damien Miller9d5705a2000-09-16 16:09:27 +110038 "Warning: Your password has expired, please change it now"
Damien Millere72b7af1999-12-30 15:08:44 +110039
40/* Callbacks */
41static int pamconv(int num_msg, const struct pam_message **msg,
42 struct pam_response **resp, void *appdata_ptr);
43void pam_cleanup_proc(void *context);
Damien Miller2f6a0ad2000-05-31 11:20:11 +100044void pam_msg_cat(const char *msg);
Damien Millere72b7af1999-12-30 15:08:44 +110045
46/* module-local variables */
47static struct pam_conv conv = {
48 pamconv,
49 NULL
50};
Damien Miller9d5705a2000-09-16 16:09:27 +110051static pam_handle_t *pamh = NULL;
Damien Millere72b7af1999-12-30 15:08:44 +110052static const char *pampasswd = NULL;
Damien Miller2f6a0ad2000-05-31 11:20:11 +100053static char *pam_msg = NULL;
Damien Millere72b7af1999-12-30 15:08:44 +110054
Damien Miller9d5705a2000-09-16 16:09:27 +110055/* states for pamconv() */
Damien Millerb8481582000-12-03 11:51:51 +110056enum { INITIAL_LOGIN, OTHER } pamstate = INITIAL_LOGIN;
Damien Miller9d5705a2000-09-16 16:09:27 +110057/* remember whether pam_acct_mgmt() returned PAM_NEWAUTHTOK_REQD */
58static int password_change_required = 0;
Damien Millerb8481582000-12-03 11:51:51 +110059/* remember whether the last pam_authenticate() succeeded or not */
60static int was_authenticated = 0;
61
62/* accessor which allows us to switch conversation structs according to
63 * the authentication method being used */
64void pam_set_conv(struct pam_conv *conv)
65{
66 pam_set_item(pamh, PAM_CONV, conv);
67}
68
69/* start an authentication run */
70int do_pam_authenticate(int flags)
71{
72 int retval = pam_authenticate(pamh, flags);
73 was_authenticated = (retval == PAM_SUCCESS);
74 return retval;
75}
Damien Miller9d5705a2000-09-16 16:09:27 +110076
77/*
78 * PAM conversation function.
79 * There are two states this can run in.
80 *
81 * INITIAL_LOGIN mode simply feeds the password from the client into
82 * PAM in response to PAM_PROMPT_ECHO_OFF, and collects output
83 * messages with pam_msg_cat(). This is used during initial
84 * authentication to bypass the normal PAM password prompt.
85 *
86 * OTHER mode handles PAM_PROMPT_ECHO_OFF with read_passphrase(prompt, 1)
87 * and outputs messages to stderr. This mode is used if pam_chauthtok()
88 * is called to update expired passwords.
89 */
Damien Millere72b7af1999-12-30 15:08:44 +110090static int pamconv(int num_msg, const struct pam_message **msg,
91 struct pam_response **resp, void *appdata_ptr)
92{
93 struct pam_response *reply;
94 int count;
Damien Miller9d5705a2000-09-16 16:09:27 +110095 char buf[1024];
Damien Millere72b7af1999-12-30 15:08:44 +110096
97 /* PAM will free this later */
98 reply = malloc(num_msg * sizeof(*reply));
99 if (reply == NULL)
Kevin Stevesef4eea92001-02-05 12:42:17 +0000100 return PAM_CONV_ERR;
Damien Millere72b7af1999-12-30 15:08:44 +1100101
Damien Miller9d5705a2000-09-16 16:09:27 +1100102 for (count = 0; count < num_msg; count++) {
Damien Miller82cf0ce2000-12-20 13:34:48 +1100103 switch(PAM_MSG_MEMBER(msg, count, msg_style)) {
Damien Miller9d5705a2000-09-16 16:09:27 +1100104 case PAM_PROMPT_ECHO_ON:
Damien Miller60819b42000-10-14 11:16:12 +1100105 if (pamstate == INITIAL_LOGIN) {
106 free(reply);
107 return PAM_CONV_ERR;
108 } else {
Damien Miller82cf0ce2000-12-20 13:34:48 +1100109 fputs(PAM_MSG_MEMBER(msg, count, msg), stderr);
Damien Miller60819b42000-10-14 11:16:12 +1100110 fgets(buf, sizeof(buf), stdin);
111 reply[count].resp = xstrdup(buf);
112 reply[count].resp_retcode = PAM_SUCCESS;
113 break;
114 }
Damien Miller9d5705a2000-09-16 16:09:27 +1100115 case PAM_PROMPT_ECHO_OFF:
116 if (pamstate == INITIAL_LOGIN) {
117 if (pampasswd == NULL) {
118 free(reply);
119 return PAM_CONV_ERR;
120 }
121 reply[count].resp = xstrdup(pampasswd);
Damien Miller60819b42000-10-14 11:16:12 +1100122 } else {
Kevin Stevesef4eea92001-02-05 12:42:17 +0000123 reply[count].resp =
Damien Miller82cf0ce2000-12-20 13:34:48 +1100124 xstrdup(read_passphrase(PAM_MSG_MEMBER(msg, count, msg), 1));
Damien Miller60819b42000-10-14 11:16:12 +1100125 }
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:
130 if ((*msg)[count].msg != NULL) {
131 if (pamstate == INITIAL_LOGIN)
Damien Miller82cf0ce2000-12-20 13:34:48 +1100132 pam_msg_cat(PAM_MSG_MEMBER(msg, count, msg));
Damien Miller9d5705a2000-09-16 16:09:27 +1100133 else {
Damien Miller82cf0ce2000-12-20 13:34:48 +1100134 fputs(PAM_MSG_MEMBER(msg, count, msg), stderr);
Damien Miller9d5705a2000-09-16 16:09:27 +1100135 fputs("\n", stderr);
136 }
137 }
Damien Millere72b7af1999-12-30 15:08:44 +1100138 reply[count].resp = xstrdup("");
Damien Miller9d5705a2000-09-16 16:09:27 +1100139 reply[count].resp_retcode = PAM_SUCCESS;
Damien Millere72b7af1999-12-30 15:08:44 +1100140 break;
Damien Millere72b7af1999-12-30 15:08:44 +1100141 default:
142 free(reply);
143 return PAM_CONV_ERR;
144 }
145 }
146
147 *resp = reply;
148
149 return PAM_SUCCESS;
150}
151
152/* Called at exit to cleanly shutdown PAM */
153void pam_cleanup_proc(void *context)
154{
155 int pam_retval;
156
157 if (pamh != NULL)
158 {
Damien Miller9d5705a2000-09-16 16:09:27 +1100159 pam_retval = pam_close_session(pamh, 0);
Damien Millere72b7af1999-12-30 15:08:44 +1100160 if (pam_retval != PAM_SUCCESS) {
Kevin Stevesef4eea92001-02-05 12:42:17 +0000161 log("Cannot close PAM session[%d]: %.200s",
Kevin Stevescccca272000-10-07 11:16:55 +0000162 pam_retval, PAM_STRERROR(pamh, pam_retval));
Damien Millere72b7af1999-12-30 15:08:44 +1100163 }
164
Damien Miller9d5705a2000-09-16 16:09:27 +1100165 pam_retval = pam_setcred(pamh, PAM_DELETE_CRED);
Damien Millere72b7af1999-12-30 15:08:44 +1100166 if (pam_retval != PAM_SUCCESS) {
Kevin Stevesef4eea92001-02-05 12:42:17 +0000167 debug("Cannot delete credentials[%d]: %.200s",
Kevin Stevescccca272000-10-07 11:16:55 +0000168 pam_retval, PAM_STRERROR(pamh, pam_retval));
Damien Millere72b7af1999-12-30 15:08:44 +1100169 }
170
Damien Miller9d5705a2000-09-16 16:09:27 +1100171 pam_retval = pam_end(pamh, pam_retval);
Damien Millere72b7af1999-12-30 15:08:44 +1100172 if (pam_retval != PAM_SUCCESS) {
Kevin Stevesef4eea92001-02-05 12:42:17 +0000173 log("Cannot release PAM authentication[%d]: %.200s",
Kevin Stevescccca272000-10-07 11:16:55 +0000174 pam_retval, PAM_STRERROR(pamh, pam_retval));
Damien Millere72b7af1999-12-30 15:08:44 +1100175 }
176 }
177}
178
179/* Attempt password authentation using PAM */
180int auth_pam_password(struct passwd *pw, const char *password)
181{
182 extern ServerOptions options;
183 int pam_retval;
184
Damien Millerb8481582000-12-03 11:51:51 +1100185 pam_set_conv(&conv);
186
Damien Millere72b7af1999-12-30 15:08:44 +1100187 /* deny if no user. */
188 if (pw == NULL)
189 return 0;
190 if (pw->pw_uid == 0 && options.permit_root_login == 2)
191 return 0;
192 if (*password == '\0' && options.permit_empty_passwd == 0)
193 return 0;
194
195 pampasswd = password;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000196
Damien Miller9d5705a2000-09-16 16:09:27 +1100197 pamstate = INITIAL_LOGIN;
Damien Millerb8481582000-12-03 11:51:51 +1100198 pam_retval = do_pam_authenticate(0);
Damien Millere72b7af1999-12-30 15:08:44 +1100199 if (pam_retval == PAM_SUCCESS) {
Kevin Stevesef4eea92001-02-05 12:42:17 +0000200 debug("PAM Password authentication accepted for user \"%.100s\"",
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000201 pw->pw_name);
Damien Millere72b7af1999-12-30 15:08:44 +1100202 return 1;
203 } else {
Kevin Stevesef4eea92001-02-05 12:42:17 +0000204 debug("PAM Password authentication for \"%.100s\" failed[%d]: %s",
Kevin Stevescccca272000-10-07 11:16:55 +0000205 pw->pw_name, pam_retval, PAM_STRERROR(pamh, pam_retval));
Damien Millere72b7af1999-12-30 15:08:44 +1100206 return 0;
207 }
208}
209
210/* Do account management using PAM */
211int do_pam_account(char *username, char *remote_user)
212{
213 int pam_retval;
Damien Miller33804262001-02-04 23:20:18 +1100214 extern ServerOptions options;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000215
216 debug("PAM setting rhost to \"%.200s\"",
Damien Miller33804262001-02-04 23:20:18 +1100217 get_canonical_hostname(options.reverse_mapping_check));
Kevin Stevesef4eea92001-02-05 12:42:17 +0000218 pam_retval = pam_set_item(pamh, PAM_RHOST,
Damien Miller33804262001-02-04 23:20:18 +1100219 get_canonical_hostname(options.reverse_mapping_check));
Damien Millere72b7af1999-12-30 15:08:44 +1100220 if (pam_retval != PAM_SUCCESS) {
Kevin Stevesef4eea92001-02-05 12:42:17 +0000221 fatal("PAM set rhost failed[%d]: %.200s",
Kevin Stevescccca272000-10-07 11:16:55 +0000222 pam_retval, PAM_STRERROR(pamh, pam_retval));
Damien Millere72b7af1999-12-30 15:08:44 +1100223 }
224
225 if (remote_user != NULL) {
226 debug("PAM setting ruser to \"%.200s\"", remote_user);
Damien Miller9d5705a2000-09-16 16:09:27 +1100227 pam_retval = pam_set_item(pamh, PAM_RUSER, remote_user);
Damien Millere72b7af1999-12-30 15:08:44 +1100228 if (pam_retval != PAM_SUCCESS) {
Kevin Stevesef4eea92001-02-05 12:42:17 +0000229 fatal("PAM set ruser failed[%d]: %.200s",
Kevin Stevescccca272000-10-07 11:16:55 +0000230 pam_retval, PAM_STRERROR(pamh, pam_retval));
Damien Millere72b7af1999-12-30 15:08:44 +1100231 }
232 }
233
Damien Miller9d5705a2000-09-16 16:09:27 +1100234 pam_retval = pam_acct_mgmt(pamh, 0);
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000235 switch (pam_retval) {
236 case PAM_SUCCESS:
237 /* This is what we want */
238 break;
239 case PAM_NEW_AUTHTOK_REQD:
240 pam_msg_cat(NEW_AUTHTOK_MSG);
Damien Miller9d5705a2000-09-16 16:09:27 +1100241 /* flag that password change is necessary */
242 password_change_required = 1;
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000243 break;
244 default:
Kevin Stevesef4eea92001-02-05 12:42:17 +0000245 log("PAM rejected by account configuration[%d]: %.200s",
Kevin Stevescccca272000-10-07 11:16:55 +0000246 pam_retval, PAM_STRERROR(pamh, pam_retval));
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000247 return(0);
Damien Millere72b7af1999-12-30 15:08:44 +1100248 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000249
Damien Millere72b7af1999-12-30 15:08:44 +1100250 return(1);
251}
252
253/* Do PAM-specific session initialisation */
Damien Miller3e955e72000-01-27 10:55:38 +1100254void do_pam_session(char *username, const char *ttyname)
Damien Millere72b7af1999-12-30 15:08:44 +1100255{
256 int pam_retval;
257
258 if (ttyname != NULL) {
259 debug("PAM setting tty to \"%.200s\"", ttyname);
Damien Miller9d5705a2000-09-16 16:09:27 +1100260 pam_retval = pam_set_item(pamh, PAM_TTY, ttyname);
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000261 if (pam_retval != PAM_SUCCESS) {
Kevin Stevesef4eea92001-02-05 12:42:17 +0000262 fatal("PAM set tty failed[%d]: %.200s",
Kevin Stevescccca272000-10-07 11:16:55 +0000263 pam_retval, PAM_STRERROR(pamh, pam_retval));
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000264 }
Damien Millere72b7af1999-12-30 15:08:44 +1100265 }
266
Damien Miller9d5705a2000-09-16 16:09:27 +1100267 pam_retval = pam_open_session(pamh, 0);
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000268 if (pam_retval != PAM_SUCCESS) {
Kevin Stevesef4eea92001-02-05 12:42:17 +0000269 fatal("PAM session setup failed[%d]: %.200s",
Kevin Stevescccca272000-10-07 11:16:55 +0000270 pam_retval, PAM_STRERROR(pamh, pam_retval));
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000271 }
Damien Millere72b7af1999-12-30 15:08:44 +1100272}
273
Kevin Stevesef4eea92001-02-05 12:42:17 +0000274/* Set PAM credentials */
Kevin Steves6beac8c2000-10-14 15:08:49 +0000275void do_pam_setcred(void)
Damien Millere72b7af1999-12-30 15:08:44 +1100276{
277 int pam_retval;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000278
Damien Millere72b7af1999-12-30 15:08:44 +1100279 debug("PAM establishing creds");
Damien Miller9d5705a2000-09-16 16:09:27 +1100280 pam_retval = pam_setcred(pamh, PAM_ESTABLISH_CRED);
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000281 if (pam_retval != PAM_SUCCESS) {
Damien Millerb8481582000-12-03 11:51:51 +1100282 if(was_authenticated) {
Kevin Stevesef4eea92001-02-05 12:42:17 +0000283 fatal("PAM setcred failed[%d]: %.200s",
Damien Millerb8481582000-12-03 11:51:51 +1100284 pam_retval, PAM_STRERROR(pamh, pam_retval));
285 } else {
Kevin Stevesef4eea92001-02-05 12:42:17 +0000286 debug("PAM setcred failed[%d]: %.200s",
Damien Millerb8481582000-12-03 11:51:51 +1100287 pam_retval, PAM_STRERROR(pamh, pam_retval));
288 }
Damien Miller9d5705a2000-09-16 16:09:27 +1100289 }
290}
291
Kevin Steves092f2ef2000-10-14 13:36:13 +0000292/* accessor function for file scope static variable */
293int pam_password_change_required(void)
294{
295 return password_change_required;
296}
297
Kevin Stevesef4eea92001-02-05 12:42:17 +0000298/*
Damien Miller9d5705a2000-09-16 16:09:27 +1100299 * Have user change authentication token if pam_acct_mgmt() indicated
300 * it was expired. This needs to be called after an interactive
301 * session is established and the user's pty is connected to
302 * stdin/stout/stderr.
303 */
Kevin Steves6beac8c2000-10-14 15:08:49 +0000304void do_pam_chauthtok(void)
Damien Miller9d5705a2000-09-16 16:09:27 +1100305{
306 int pam_retval;
307
308 if (password_change_required) {
309 pamstate = OTHER;
Kevin Stevescccca272000-10-07 11:16:55 +0000310 /*
311 * XXX: should we really loop forever?
312 */
Damien Miller9d5705a2000-09-16 16:09:27 +1100313 do {
314 pam_retval = pam_chauthtok(pamh, PAM_CHANGE_EXPIRED_AUTHTOK);
Kevin Stevescccca272000-10-07 11:16:55 +0000315 if (pam_retval != PAM_SUCCESS) {
Kevin Stevesef4eea92001-02-05 12:42:17 +0000316 log("PAM pam_chauthtok failed[%d]: %.200s",
Kevin Stevescccca272000-10-07 11:16:55 +0000317 pam_retval, PAM_STRERROR(pamh, pam_retval));
318 }
Damien Miller9d5705a2000-09-16 16:09:27 +1100319 } while (pam_retval != PAM_SUCCESS);
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000320 }
Damien Millere72b7af1999-12-30 15:08:44 +1100321}
322
323/* Cleanly shutdown PAM */
324void finish_pam(void)
325{
326 pam_cleanup_proc(NULL);
327 fatal_remove_cleanup(&pam_cleanup_proc, NULL);
328}
329
330/* Start PAM authentication for specified account */
Damien Miller22e22bf2001-01-19 15:46:38 +1100331void start_pam(const char *user)
Damien Millere72b7af1999-12-30 15:08:44 +1100332{
333 int pam_retval;
334
Damien Miller22e22bf2001-01-19 15:46:38 +1100335 debug("Starting up PAM with username \"%.200s\"", user);
Damien Millere72b7af1999-12-30 15:08:44 +1100336
Damien Miller22e22bf2001-01-19 15:46:38 +1100337 pam_retval = pam_start(SSHD_PAM_SERVICE, user, &conv, &pamh);
Damien Millere72b7af1999-12-30 15:08:44 +1100338
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000339 if (pam_retval != PAM_SUCCESS) {
Kevin Stevesef4eea92001-02-05 12:42:17 +0000340 fatal("PAM initialisation failed[%d]: %.200s",
Kevin Stevescccca272000-10-07 11:16:55 +0000341 pam_retval, PAM_STRERROR(pamh, pam_retval));
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000342 }
Damien Millerc19fd5f2000-06-22 21:44:54 +1000343
Damien Miller4e997202000-07-09 21:21:52 +1000344#ifdef PAM_TTY_KLUDGE
Damien Millerc19fd5f2000-06-22 21:44:54 +1000345 /*
346 * Some PAM modules (e.g. pam_time) require a TTY to operate,
Kevin Stevesef4eea92001-02-05 12:42:17 +0000347 * and will fail in various stupid ways if they don't get one.
Damien Millerc19fd5f2000-06-22 21:44:54 +1000348 * sshd doesn't set the tty until too late in the auth process and may
349 * not even need one (for tty-less connections)
Kevin Stevesef4eea92001-02-05 12:42:17 +0000350 * Kludge: Set a fake PAM_TTY
Damien Millerc19fd5f2000-06-22 21:44:54 +1000351 */
Damien Miller9d5705a2000-09-16 16:09:27 +1100352 pam_retval = pam_set_item(pamh, PAM_TTY, "ssh");
Damien Miller7b22d652000-06-18 14:07:04 +1000353 if (pam_retval != PAM_SUCCESS) {
Kevin Stevesef4eea92001-02-05 12:42:17 +0000354 fatal("PAM set tty failed[%d]: %.200s",
Kevin Stevescccca272000-10-07 11:16:55 +0000355 pam_retval, PAM_STRERROR(pamh, pam_retval));
Damien Miller7b22d652000-06-18 14:07:04 +1000356 }
Damien Miller4e997202000-07-09 21:21:52 +1000357#endif /* PAM_TTY_KLUDGE */
Damien Miller7b22d652000-06-18 14:07:04 +1000358
Damien Millere72b7af1999-12-30 15:08:44 +1100359 fatal_add_cleanup(&pam_cleanup_proc, NULL);
360}
361
362/* Return list of PAM enviornment strings */
363char **fetch_pam_environment(void)
364{
Damien Miller1bead332000-04-30 00:47:29 +1000365#ifdef HAVE_PAM_GETENVLIST
Damien Miller9d5705a2000-09-16 16:09:27 +1100366 return(pam_getenvlist(pamh));
Damien Miller1bead332000-04-30 00:47:29 +1000367#else /* HAVE_PAM_GETENVLIST */
368 return(NULL);
369#endif /* HAVE_PAM_GETENVLIST */
Damien Millere72b7af1999-12-30 15:08:44 +1100370}
371
372/* Print any messages that have been generated during authentication */
373/* or account checking to stderr */
374void print_pam_messages(void)
375{
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000376 if (pam_msg != NULL)
Damien Millerf9b625c2000-07-09 22:42:32 +1000377 fputs(pam_msg, stderr);
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000378}
379
380/* Append a message to the PAM message buffer */
381void pam_msg_cat(const char *msg)
382{
383 char *p;
384 size_t new_msg_len;
385 size_t pam_msg_len;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000386
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000387 new_msg_len = strlen(msg);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000388
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000389 if (pam_msg) {
390 pam_msg_len = strlen(pam_msg);
391 pam_msg = xrealloc(pam_msg, new_msg_len + pam_msg_len + 2);
392 p = pam_msg + pam_msg_len;
393 } else {
394 pam_msg = p = xmalloc(new_msg_len + 2);
395 }
396
397 memcpy(p, msg, new_msg_len);
398 p[new_msg_len] = '\n';
399 p[new_msg_len + 1] = '\0';
Damien Millere72b7af1999-12-30 15:08:44 +1100400}
401
402#endif /* USE_PAM */