]> andersk Git - openssh.git/blob - auth-pam.c
- (djm) Sync with V_3_7 branch
[openssh.git] / auth-pam.c
1 /*-
2  * Copyright (c) 2002 Networks Associates Technology, Inc.
3  * All rights reserved.
4  *
5  * This software was developed for the FreeBSD Project by ThinkSec AS and
6  * NAI Labs, the Security Research Division of Network Associates, Inc.
7  * under DARPA/SPAWAR contract N66001-01-C-8035 ("CBOSS"), as part of the
8  * DARPA CHATS research program.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29  * SUCH DAMAGE.
30  */
31
32 /* Based on $FreeBSD: src/crypto/openssh/auth2-pam-freebsd.c,v 1.11 2003/03/31 13:48:18 des Exp $ */
33 #include "includes.h"
34 RCSID("$Id$");
35
36 #ifdef USE_PAM
37 #include <security/pam_appl.h>
38
39 #include "auth.h"
40 #include "auth-pam.h"
41 #include "buffer.h"
42 #include "bufaux.h"
43 #include "canohost.h"
44 #include "log.h"
45 #include "monitor_wrap.h"
46 #include "msg.h"
47 #include "packet.h"
48 #include "readpass.h"
49 #include "servconf.h"
50 #include "ssh2.h"
51 #include "xmalloc.h"
52 #include "auth-options.h"
53
54 extern ServerOptions options;
55
56 #define __unused
57
58 #ifdef USE_POSIX_THREADS
59 #include <pthread.h>
60 /*
61  * Avoid namespace clash when *not* using pthreads for systems *with* 
62  * pthreads, which unconditionally define pthread_t via sys/types.h 
63  * (e.g. Linux)
64  */
65 typedef pthread_t sp_pthread_t; 
66 #else
67 /*
68  * Simulate threads with processes.
69  */
70 typedef pid_t sp_pthread_t;
71
72 static void
73 pthread_exit(void *value __unused)
74 {
75         _exit(0);
76 }
77
78 static int
79 pthread_create(sp_pthread_t *thread, const void *attr __unused,
80     void *(*thread_start)(void *), void *arg)
81 {
82         pid_t pid;
83
84         switch ((pid = fork())) {
85         case -1:
86                 error("fork(): %s", strerror(errno));
87                 return (-1);
88         case 0:
89                 thread_start(arg);
90                 _exit(1);
91         default:
92                 *thread = pid;
93                 return (0);
94         }
95 }
96
97 static int
98 pthread_cancel(sp_pthread_t thread)
99 {
100         return (kill(thread, SIGTERM));
101 }
102
103 static int
104 pthread_join(sp_pthread_t thread, void **value __unused)
105 {
106         int status;
107
108         waitpid(thread, &status, 0);
109         return (status);
110 }
111 #endif
112
113
114 static pam_handle_t *sshpam_handle;
115 static int sshpam_err;
116 static int sshpam_authenticated;
117 static int sshpam_new_authtok_reqd;
118 static int sshpam_session_open;
119 static int sshpam_cred_established;
120
121 struct pam_ctxt {
122         sp_pthread_t     pam_thread;
123         int              pam_psock;
124         int              pam_csock;
125         int              pam_done;
126 };
127
128 static void sshpam_free_ctx(void *);
129
130 /*
131  * Conversation function for authentication thread.
132  */
133 static int
134 sshpam_thread_conv(int n, const struct pam_message **msg,
135     struct pam_response **resp, void *data)
136 {
137         Buffer buffer;
138         struct pam_ctxt *ctxt;
139         int i;
140
141         ctxt = data;
142         if (n <= 0 || n > PAM_MAX_NUM_MSG)
143                 return (PAM_CONV_ERR);
144         *resp = xmalloc(n * sizeof **resp);
145         buffer_init(&buffer);
146         for (i = 0; i < n; ++i) {
147                 resp[i]->resp_retcode = 0;
148                 resp[i]->resp = NULL;
149                 switch (PAM_MSG_MEMBER(msg, i, msg_style)) {
150                 case PAM_PROMPT_ECHO_OFF:
151                         buffer_put_cstring(&buffer, PAM_MSG_MEMBER(msg, i, msg));
152                         ssh_msg_send(ctxt->pam_csock, 
153                             PAM_MSG_MEMBER(msg, i, msg_style), &buffer);
154                         ssh_msg_recv(ctxt->pam_csock, &buffer);
155                         if (buffer_get_char(&buffer) != PAM_AUTHTOK)
156                                 goto fail;
157                         resp[i]->resp = buffer_get_string(&buffer, NULL);
158                         break;
159                 case PAM_PROMPT_ECHO_ON:
160                         buffer_put_cstring(&buffer, PAM_MSG_MEMBER(msg, i, msg));
161                         ssh_msg_send(ctxt->pam_csock, 
162                             PAM_MSG_MEMBER(msg, i, msg_style), &buffer);
163                         ssh_msg_recv(ctxt->pam_csock, &buffer);
164                         if (buffer_get_char(&buffer) != PAM_AUTHTOK)
165                                 goto fail;
166                         resp[i]->resp = buffer_get_string(&buffer, NULL);
167                         break;
168                 case PAM_ERROR_MSG:
169                         buffer_put_cstring(&buffer, PAM_MSG_MEMBER(msg, i, msg));
170                         ssh_msg_send(ctxt->pam_csock, 
171                             PAM_MSG_MEMBER(msg, i, msg_style), &buffer);
172                         break;
173                 case PAM_TEXT_INFO:
174                         buffer_put_cstring(&buffer, PAM_MSG_MEMBER(msg, i, msg));
175                         ssh_msg_send(ctxt->pam_csock, 
176                             PAM_MSG_MEMBER(msg, i, msg_style), &buffer);
177                         break;
178                 default:
179                         goto fail;
180                 }
181                 buffer_clear(&buffer);
182         }
183         buffer_free(&buffer);
184         return (PAM_SUCCESS);
185  fail:
186         while (i)
187                 xfree(resp[--i]);
188         xfree(*resp);
189         *resp = NULL;
190         buffer_free(&buffer);
191         return (PAM_CONV_ERR);
192 }
193
194 /*
195  * Authentication thread.
196  */
197 static void *
198 sshpam_thread(void *ctxtp)
199 {
200         struct pam_ctxt *ctxt = ctxtp;
201         Buffer buffer;
202         struct pam_conv sshpam_conv;
203 #ifndef USE_POSIX_THREADS
204         const char *pam_user;
205
206         pam_get_item(sshpam_handle, PAM_USER, (const void **)&pam_user);
207         setproctitle("%s [pam]", pam_user);
208 #endif
209
210         sshpam_conv.conv = sshpam_thread_conv;
211         sshpam_conv.appdata_ptr = ctxt;
212
213         buffer_init(&buffer);
214         sshpam_err = pam_set_item(sshpam_handle, PAM_CONV,
215             (const void *)&sshpam_conv);
216         if (sshpam_err != PAM_SUCCESS)
217                 goto auth_fail;
218         sshpam_err = pam_authenticate(sshpam_handle, 0);
219         if (sshpam_err != PAM_SUCCESS)
220                 goto auth_fail;
221         buffer_put_cstring(&buffer, "OK");
222         ssh_msg_send(ctxt->pam_csock, sshpam_err, &buffer);
223         buffer_free(&buffer);
224         pthread_exit(NULL);
225
226  auth_fail:
227         buffer_put_cstring(&buffer,
228             pam_strerror(sshpam_handle, sshpam_err));
229         ssh_msg_send(ctxt->pam_csock, PAM_AUTH_ERR, &buffer);
230         buffer_free(&buffer);
231         pthread_exit(NULL);
232         
233         return (NULL); /* Avoid warning for non-pthread case */
234 }
235
236 static void
237 sshpam_thread_cleanup(void *ctxtp)
238 {
239         struct pam_ctxt *ctxt = ctxtp;
240
241         pthread_cancel(ctxt->pam_thread);
242         pthread_join(ctxt->pam_thread, NULL);
243         close(ctxt->pam_psock);
244         close(ctxt->pam_csock);
245 }
246
247 static int
248 sshpam_null_conv(int n, const struct pam_message **msg,
249     struct pam_response **resp, void *data)
250 {
251         return (PAM_CONV_ERR);
252 }
253
254 static struct pam_conv null_conv = { sshpam_null_conv, NULL };
255
256 static void
257 sshpam_cleanup(void *arg)
258 {
259         (void)arg;
260         debug("PAM: cleanup");
261         pam_set_item(sshpam_handle, PAM_CONV, (const void *)&null_conv);
262         if (sshpam_cred_established) {
263                 pam_setcred(sshpam_handle, PAM_DELETE_CRED);
264                 sshpam_cred_established = 0;
265         }
266         if (sshpam_session_open) {
267                 pam_close_session(sshpam_handle, PAM_SILENT);
268                 sshpam_session_open = 0;
269         }
270         sshpam_authenticated = sshpam_new_authtok_reqd = 0;
271         pam_end(sshpam_handle, sshpam_err);
272         sshpam_handle = NULL;
273 }
274
275 static int
276 sshpam_init(const char *user)
277 {
278         extern u_int utmp_len;
279         extern char *__progname;
280         const char *pam_rhost, *pam_user;
281
282         if (sshpam_handle != NULL) {
283                 /* We already have a PAM context; check if the user matches */
284                 sshpam_err = pam_get_item(sshpam_handle,
285                     PAM_USER, (const void **)&pam_user);
286                 if (sshpam_err == PAM_SUCCESS && strcmp(user, pam_user) == 0)
287                         return (0);
288                 fatal_remove_cleanup(sshpam_cleanup, NULL);
289                 pam_end(sshpam_handle, sshpam_err);
290                 sshpam_handle = NULL;
291         }
292         debug("PAM: initializing for \"%s\"", user);
293         sshpam_err =
294             pam_start(SSHD_PAM_SERVICE, user, &null_conv, &sshpam_handle);
295         if (sshpam_err != PAM_SUCCESS) {
296                 pam_end(sshpam_handle, sshpam_err);
297                 sshpam_handle = NULL;
298                 return (-1);
299         }
300         pam_rhost = get_remote_name_or_ip(utmp_len, options.use_dns);
301         debug("PAM: setting PAM_RHOST to \"%s\"", pam_rhost);
302         sshpam_err = pam_set_item(sshpam_handle, PAM_RHOST, pam_rhost);
303         if (sshpam_err != PAM_SUCCESS) {
304                 pam_end(sshpam_handle, sshpam_err);
305                 sshpam_handle = NULL;
306                 return (-1);
307         }
308 #ifdef PAM_TTY_KLUDGE
309         /*
310          * Some silly PAM modules (e.g. pam_time) require a TTY to operate.
311          * sshd doesn't set the tty until too late in the auth process and 
312          * may not even set one (for tty-less connections)
313          */
314         debug("PAM: setting PAM_TTY to \"ssh\"");
315         sshpam_err = pam_set_item(sshpam_handle, PAM_TTY, "ssh");
316         if (sshpam_err != PAM_SUCCESS) {
317                 pam_end(sshpam_handle, sshpam_err);
318                 sshpam_handle = NULL;
319                 return (-1);
320         }
321 #endif
322         fatal_add_cleanup(sshpam_cleanup, NULL);
323         return (0);
324 }
325
326 static void *
327 sshpam_init_ctx(Authctxt *authctxt)
328 {
329         struct pam_ctxt *ctxt;
330         int socks[2];
331
332         /* Refuse to start if we don't have PAM enabled */
333         if (!options.use_pam)
334                 return NULL;
335
336         /* Initialize PAM */
337         if (sshpam_init(authctxt->user) == -1) {
338                 error("PAM: initialization failed");
339                 return (NULL);
340         }
341
342         ctxt = xmalloc(sizeof *ctxt);
343         ctxt->pam_done = 0;
344
345         /* Start the authentication thread */
346         if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, socks) == -1) {
347                 error("PAM: failed create sockets: %s", strerror(errno));
348                 xfree(ctxt);
349                 return (NULL);
350         }
351         ctxt->pam_psock = socks[0];
352         ctxt->pam_csock = socks[1];
353         if (pthread_create(&ctxt->pam_thread, NULL, sshpam_thread, ctxt) == -1) {
354                 error("PAM: failed to start authentication thread: %s",
355                     strerror(errno));
356                 close(socks[0]);
357                 close(socks[1]);
358                 xfree(ctxt);
359                 return (NULL);
360         }
361         fatal_add_cleanup(sshpam_thread_cleanup, ctxt);
362         return (ctxt);
363 }
364
365 static int
366 sshpam_query(void *ctx, char **name, char **info,
367     u_int *num, char ***prompts, u_int **echo_on)
368 {
369         Buffer buffer;
370         struct pam_ctxt *ctxt = ctx;
371         size_t plen;
372         u_char type;
373         char *msg;
374         size_t len;
375
376         buffer_init(&buffer);
377         *name = xstrdup("");
378         *info = xstrdup("");
379         *prompts = xmalloc(sizeof(char *));
380         **prompts = NULL;
381         plen = 0;
382         *echo_on = xmalloc(sizeof(u_int));
383         while (ssh_msg_recv(ctxt->pam_psock, &buffer) == 0) {
384                 type = buffer_get_char(&buffer);
385                 msg = buffer_get_string(&buffer, NULL);
386                 switch (type) {
387                 case PAM_PROMPT_ECHO_ON:
388                 case PAM_PROMPT_ECHO_OFF:
389                         *num = 1;
390                         len = plen + strlen(msg) + 1;
391                         **prompts = xrealloc(**prompts, len);
392                         plen += snprintf(**prompts + plen, len, "%s", msg);
393                         **echo_on = (type == PAM_PROMPT_ECHO_ON);
394                         xfree(msg);
395                         return (0);
396                 case PAM_ERROR_MSG:
397                 case PAM_TEXT_INFO:
398                         /* accumulate messages */
399                         len = plen + strlen(msg) + 1;
400                         **prompts = xrealloc(**prompts, len);
401                         plen += snprintf(**prompts + plen, len, "%s", msg);
402                         xfree(msg);
403                         break;
404                 case PAM_SUCCESS:
405                 case PAM_AUTH_ERR:
406                         if (**prompts != NULL) {
407                                 /* drain any accumulated messages */
408 #if 0 /* XXX - not compatible with privsep */
409                                 packet_start(SSH2_MSG_USERAUTH_BANNER);
410                                 packet_put_cstring(**prompts);
411                                 packet_put_cstring("");
412                                 packet_send();
413                                 packet_write_wait();
414 #endif
415                                 xfree(**prompts);
416                                 **prompts = NULL;
417                         }
418                         if (type == PAM_SUCCESS) {
419                                 *num = 0;
420                                 **echo_on = 0;
421                                 ctxt->pam_done = 1;
422                                 xfree(msg);
423                                 return (0);
424                         }
425                         error("PAM: %s", msg);
426                 default:
427                         *num = 0;
428                         **echo_on = 0;
429                         xfree(msg);
430                         ctxt->pam_done = -1;
431                         return (-1);
432                 }
433         }
434         return (-1);
435 }
436
437 /* XXX - see also comment in auth-chall.c:verify_response */
438 static int
439 sshpam_respond(void *ctx, u_int num, char **resp)
440 {
441         Buffer buffer;
442         struct pam_ctxt *ctxt = ctx;
443
444         debug2("PAM: %s", __func__);
445         switch (ctxt->pam_done) {
446         case 1:
447                 sshpam_authenticated = 1;
448                 return (0);
449         case 0:
450                 break;
451         default:
452                 return (-1);
453         }
454         if (num != 1) {
455                 error("PAM: expected one response, got %u", num);
456                 return (-1);
457         }
458         buffer_init(&buffer);
459         buffer_put_cstring(&buffer, *resp);
460         ssh_msg_send(ctxt->pam_psock, PAM_AUTHTOK, &buffer);
461         buffer_free(&buffer);
462         return (1);
463 }
464
465 static void
466 sshpam_free_ctx(void *ctxtp)
467 {
468         struct pam_ctxt *ctxt = ctxtp;
469
470         fatal_remove_cleanup(sshpam_thread_cleanup, ctxt);
471         sshpam_thread_cleanup(ctxtp);
472         xfree(ctxt);
473         /*
474          * We don't call sshpam_cleanup() here because we may need the PAM
475          * handle at a later stage, e.g. when setting up a session.  It's
476          * still on the cleanup list, so pam_end() *will* be called before
477          * the server process terminates.
478          */
479 }
480
481 KbdintDevice sshpam_device = {
482         "pam",
483         sshpam_init_ctx,
484         sshpam_query,
485         sshpam_respond,
486         sshpam_free_ctx
487 };
488
489 KbdintDevice mm_sshpam_device = {
490         "pam",
491         mm_sshpam_init_ctx,
492         mm_sshpam_query,
493         mm_sshpam_respond,
494         mm_sshpam_free_ctx
495 };
496
497 /*
498  * This replaces auth-pam.c
499  */
500 void
501 start_pam(const char *user)
502 {
503         if (!options.use_pam)
504                 fatal("PAM: initialisation requested when UsePAM=no");
505
506         if (sshpam_init(user) == -1)
507                 fatal("PAM: initialisation failed");
508 }
509
510 void
511 finish_pam(void)
512 {
513         fatal_remove_cleanup(sshpam_cleanup, NULL);
514         sshpam_cleanup(NULL);
515 }
516
517 u_int
518 do_pam_account(void)
519 {
520         sshpam_err = pam_acct_mgmt(sshpam_handle, 0);
521         debug3("%s: pam_acct_mgmt = %d", __func__, sshpam_err);
522         
523         if (sshpam_err != PAM_SUCCESS && sshpam_err != PAM_NEW_AUTHTOK_REQD)
524                 return (0);
525
526         if (sshpam_err == PAM_NEW_AUTHTOK_REQD) {
527                 sshpam_new_authtok_reqd = 1;
528
529                 /* Prevent forwardings until password changed */
530                 no_port_forwarding_flag |= 2;
531                 no_agent_forwarding_flag |= 2;
532                 no_x11_forwarding_flag |= 2;
533         }
534
535         return (1);
536 }
537
538 void
539 do_pam_session(void)
540 {
541         sshpam_err = pam_set_item(sshpam_handle, PAM_CONV, 
542             (const void *)&null_conv);
543         if (sshpam_err != PAM_SUCCESS)
544                 fatal("PAM: failed to set PAM_CONV: %s",
545                     pam_strerror(sshpam_handle, sshpam_err));
546         sshpam_err = pam_open_session(sshpam_handle, 0);
547         if (sshpam_err != PAM_SUCCESS)
548                 fatal("PAM: pam_open_session(): %s",
549                     pam_strerror(sshpam_handle, sshpam_err));
550         sshpam_session_open = 1;
551 }
552
553 void
554 do_pam_set_tty(const char *tty)
555 {
556         if (tty != NULL) {
557                 debug("PAM: setting PAM_TTY to \"%s\"", tty);
558                 sshpam_err = pam_set_item(sshpam_handle, PAM_TTY, tty);
559                 if (sshpam_err != PAM_SUCCESS)
560                         fatal("PAM: failed to set PAM_TTY: %s",
561                             pam_strerror(sshpam_handle, sshpam_err));
562         }
563 }
564
565 void
566 do_pam_setcred(int init)
567 {
568         sshpam_err = pam_set_item(sshpam_handle, PAM_CONV,
569             (const void *)&null_conv);
570         if (sshpam_err != PAM_SUCCESS)
571                 fatal("PAM: failed to set PAM_CONV: %s",
572                     pam_strerror(sshpam_handle, sshpam_err));
573         if (init) {
574                 debug("PAM: establishing credentials");
575                 sshpam_err = pam_setcred(sshpam_handle, PAM_ESTABLISH_CRED);
576         } else {
577                 debug("PAM: reinitializing credentials");
578                 sshpam_err = pam_setcred(sshpam_handle, PAM_REINITIALIZE_CRED);
579         }
580         if (sshpam_err == PAM_SUCCESS) {
581                 sshpam_cred_established = 1;
582                 return;
583         }
584         if (sshpam_authenticated)
585                 fatal("PAM: pam_setcred(): %s",
586                     pam_strerror(sshpam_handle, sshpam_err));
587         else
588                 debug("PAM: pam_setcred(): %s",
589                     pam_strerror(sshpam_handle, sshpam_err));
590 }
591
592 int
593 is_pam_password_change_required(void)
594 {
595         return (sshpam_new_authtok_reqd);
596 }
597
598 static int
599 pam_chauthtok_conv(int n, const struct pam_message **msg,
600     struct pam_response **resp, void *data)
601 {
602         char input[PAM_MAX_MSG_SIZE];
603         int i;
604
605         if (n <= 0 || n > PAM_MAX_NUM_MSG)
606                 return (PAM_CONV_ERR);
607         *resp = xmalloc(n * sizeof **resp);
608         for (i = 0; i < n; ++i) {
609                 switch (PAM_MSG_MEMBER(msg, i, msg_style)) {
610                 case PAM_PROMPT_ECHO_OFF:
611                         resp[i]->resp =
612                             read_passphrase(PAM_MSG_MEMBER(msg, i, msg), 
613                             RP_ALLOW_STDIN);
614                         resp[i]->resp_retcode = PAM_SUCCESS;
615                         break;
616                 case PAM_PROMPT_ECHO_ON:
617                         fputs(PAM_MSG_MEMBER(msg, i, msg), stderr);
618                         fgets(input, sizeof input, stdin);
619                         resp[i]->resp = xstrdup(input);
620                         resp[i]->resp_retcode = PAM_SUCCESS;
621                         break;
622                 case PAM_ERROR_MSG:
623                 case PAM_TEXT_INFO:
624                         fputs(PAM_MSG_MEMBER(msg, i, msg), stderr);
625                         resp[i]->resp_retcode = PAM_SUCCESS;
626                         break;
627                 default:
628                         goto fail;
629                 }
630         }
631         return (PAM_SUCCESS);
632  fail:
633         while (i)
634                 xfree(resp[--i]);
635         xfree(*resp);
636         *resp = NULL;
637         return (PAM_CONV_ERR);
638 }
639
640 /*
641  * XXX this should be done in the authentication phase, but ssh1 doesn't
642  * support that
643  */
644 void
645 do_pam_chauthtok(void)
646 {
647         struct pam_conv pam_conv;
648
649         pam_conv.conv = pam_chauthtok_conv;
650         pam_conv.appdata_ptr = NULL;
651
652         if (use_privsep)
653                 fatal("Password expired (unable to change with privsep)");
654         sshpam_err = pam_set_item(sshpam_handle, PAM_CONV,
655             (const void *)&pam_conv);
656         if (sshpam_err != PAM_SUCCESS)
657                 fatal("PAM: failed to set PAM_CONV: %s",
658                     pam_strerror(sshpam_handle, sshpam_err));
659         debug("PAM: changing password");
660         sshpam_err = pam_chauthtok(sshpam_handle, PAM_CHANGE_EXPIRED_AUTHTOK);
661         if (sshpam_err != PAM_SUCCESS)
662                 fatal("PAM: pam_chauthtok(): %s",
663                     pam_strerror(sshpam_handle, sshpam_err));
664 }
665
666 /* 
667  * Set a PAM environment string. We need to do this so that the session
668  * modules can handle things like Kerberos/GSI credentials that appear
669  * during the ssh authentication process.
670  */
671
672 int
673 do_pam_putenv(char *name, char *value) 
674 {
675         int ret = 1;
676 #ifdef HAVE_PAM_PUTENV  
677         char *compound;
678         size_t len;
679
680         len = strlen(name) + strlen(value) + 2;
681         compound = xmalloc(len);
682
683         snprintf(compound, len, "%s=%s", name, value);
684         ret = pam_putenv(sshpam_handle, compound);
685         xfree(compound);
686 #endif
687
688         return (ret);
689 }
690
691 void
692 print_pam_messages(void)
693 {
694         /* XXX */
695 }
696
697 char **
698 fetch_pam_environment(void)
699 {
700 #ifdef HAVE_PAM_GETENVLIST
701         debug("PAM: retrieving environment");
702         return (pam_getenvlist(sshpam_handle));
703 #else
704         return (NULL);
705 #endif
706 }
707
708 void
709 free_pam_environment(char **env)
710 {
711         char **envp;
712
713         if (env == NULL)
714                 return;
715
716         for (envp = env; *envp; envp++)
717                 xfree(*envp);
718         xfree(env);
719 }
720
721 #endif /* USE_PAM */
This page took 0.09453 seconds and 5 git commands to generate.