Home | History | Annotate | Line # | Download | only in pam_ssh
pam_ssh.c revision 1.19
      1  1.19  drochner /*	$NetBSD: pam_ssh.c,v 1.19 2011/12/16 17:35:09 drochner Exp $	*/
      2   1.2  christos 
      3   1.1  christos /*-
      4   1.1  christos  * Copyright (c) 2003 Networks Associates Technology, Inc.
      5   1.1  christos  * All rights reserved.
      6   1.1  christos  *
      7   1.1  christos  * This software was developed for the FreeBSD Project by ThinkSec AS and
      8   1.1  christos  * NAI Labs, the Security Research Division of Network Associates, Inc.
      9   1.1  christos  * under DARPA/SPAWAR contract N66001-01-C-8035 ("CBOSS"), as part of the
     10   1.1  christos  * DARPA CHATS research program.
     11   1.1  christos  *
     12   1.1  christos  * Redistribution and use in source and binary forms, with or without
     13   1.1  christos  * modification, are permitted provided that the following conditions
     14   1.1  christos  * are met:
     15   1.1  christos  * 1. Redistributions of source code must retain the above copyright
     16   1.1  christos  *    notice, this list of conditions and the following disclaimer.
     17   1.1  christos  * 2. Redistributions in binary form must reproduce the above copyright
     18   1.1  christos  *    notice, this list of conditions and the following disclaimer in the
     19   1.1  christos  *    documentation and/or other materials provided with the distribution.
     20   1.1  christos  * 3. The name of the author may not be used to endorse or promote
     21   1.1  christos  *    products derived from this software without specific prior written
     22   1.1  christos  *    permission.
     23   1.1  christos  *
     24   1.1  christos  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     25   1.1  christos  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     26   1.1  christos  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     27   1.1  christos  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     28   1.1  christos  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     29   1.1  christos  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     30   1.1  christos  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     31   1.1  christos  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     32   1.1  christos  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     33   1.1  christos  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     34   1.1  christos  * SUCH DAMAGE.
     35   1.1  christos  */
     36   1.1  christos 
     37   1.1  christos #include <sys/cdefs.h>
     38   1.3     lukem #ifdef __FreeBSD__
     39   1.1  christos __FBSDID("$FreeBSD: src/lib/libpam/modules/pam_ssh/pam_ssh.c,v 1.40 2004/02/10 10:13:21 des Exp $");
     40   1.2  christos #else
     41  1.19  drochner __RCSID("$NetBSD: pam_ssh.c,v 1.19 2011/12/16 17:35:09 drochner Exp $");
     42   1.2  christos #endif
     43   1.1  christos 
     44   1.1  christos #include <sys/param.h>
     45   1.1  christos #include <sys/wait.h>
     46   1.1  christos 
     47   1.1  christos #include <errno.h>
     48   1.1  christos #include <fcntl.h>
     49   1.1  christos #include <paths.h>
     50   1.1  christos #include <pwd.h>
     51   1.1  christos #include <signal.h>
     52   1.1  christos #include <stdio.h>
     53   1.1  christos #include <string.h>
     54   1.1  christos #include <unistd.h>
     55   1.1  christos 
     56   1.1  christos #define PAM_SM_AUTH
     57   1.1  christos #define PAM_SM_SESSION
     58   1.1  christos 
     59   1.1  christos #include <security/pam_appl.h>
     60   1.1  christos #include <security/pam_modules.h>
     61   1.1  christos #include <security/openpam.h>
     62   1.1  christos 
     63   1.1  christos #include <openssl/evp.h>
     64   1.1  christos 
     65   1.1  christos #include "key.h"
     66  1.13    dogcow #include "buffer.h"
     67   1.1  christos #include "authfd.h"
     68   1.1  christos #include "authfile.h"
     69   1.1  christos 
     70  1.18  drochner #define ssh_add_identity(auth, key, comment) \
     71  1.18  drochner 	ssh_add_identity_constrained(auth, key, comment, 0, 0)
     72  1.18  drochner 
     73   1.1  christos extern char **environ;
     74   1.1  christos 
     75   1.1  christos struct pam_ssh_key {
     76   1.1  christos 	Key	*key;
     77   1.1  christos 	char	*comment;
     78   1.1  christos };
     79   1.1  christos 
     80   1.1  christos static const char *pam_ssh_prompt = "SSH passphrase: ";
     81   1.1  christos static const char *pam_ssh_have_keys = "pam_ssh_have_keys";
     82   1.1  christos 
     83   1.1  christos static const char *pam_ssh_keyfiles[] = {
     84   1.1  christos 	".ssh/identity",	/* SSH1 RSA key */
     85   1.1  christos 	".ssh/id_rsa",		/* SSH2 RSA key */
     86   1.1  christos 	".ssh/id_dsa",		/* SSH2 DSA key */
     87   1.1  christos 	NULL
     88   1.1  christos };
     89   1.1  christos 
     90   1.1  christos static const char *pam_ssh_agent = "/usr/bin/ssh-agent";
     91  1.18  drochner static const char *const pam_ssh_agent_argv[] = { "ssh_agent", "-s", NULL };
     92  1.18  drochner static const char *const pam_ssh_agent_envp[] = { NULL };
     93   1.1  christos 
     94   1.1  christos /*
     95   1.1  christos  * Attempts to load a private key from the specified file in the specified
     96   1.1  christos  * directory, using the specified passphrase.  If successful, returns a
     97   1.1  christos  * struct pam_ssh_key containing the key and its comment.
     98   1.1  christos  */
     99   1.1  christos static struct pam_ssh_key *
    100  1.19  drochner pam_ssh_load_key(const char *dir, const char *kfn, const char *passphrase,
    101  1.19  drochner     int nullok)
    102   1.1  christos {
    103   1.1  christos 	struct pam_ssh_key *psk;
    104   1.1  christos 	char fn[PATH_MAX];
    105   1.1  christos 	char *comment;
    106   1.1  christos 	Key *key;
    107   1.1  christos 
    108  1.18  drochner 	if (snprintf(fn, sizeof(fn), "%s/%s", dir, kfn) > (int)sizeof(fn))
    109   1.1  christos 		return (NULL);
    110   1.1  christos 	comment = NULL;
    111  1.19  drochner 	/*
    112  1.19  drochner 	 * If the key is unencrypted, OpenSSL ignores the passphrase, so
    113  1.19  drochner 	 * it will seem like the user typed in the right one.  This allows
    114  1.19  drochner 	 * a user to circumvent nullok by providing a dummy passphrase.
    115  1.19  drochner 	 * Verify that the key really *is* encrypted by trying to load it
    116  1.19  drochner 	 * with an empty passphrase, and if the key is not encrypted,
    117  1.19  drochner 	 * accept only an empty passphrase.
    118  1.19  drochner 	 */
    119  1.19  drochner 	key = key_load_private(fn, "", &comment);
    120  1.19  drochner 	if (key != NULL && !(*passphrase == '\0' && nullok)) {
    121  1.19  drochner 		key_free(key);
    122  1.19  drochner 		free(comment);
    123  1.19  drochner 		return (NULL);
    124  1.19  drochner 	}
    125  1.19  drochner 	if (key == NULL)
    126  1.19  drochner 		key = key_load_private(fn, passphrase, &comment);
    127   1.1  christos 	if (key == NULL) {
    128  1.17  drochner 		openpam_log(PAM_LOG_DEBUG, "failed to load key from %s", fn);
    129  1.12   jnemeth 		if (comment != NULL)
    130  1.12   jnemeth 			free(comment);
    131   1.1  christos 		return (NULL);
    132   1.1  christos 	}
    133   1.1  christos 
    134  1.17  drochner 	openpam_log(PAM_LOG_DEBUG, "loaded '%s' from %s", comment, fn);
    135   1.1  christos 	if ((psk = malloc(sizeof(*psk))) == NULL) {
    136   1.1  christos 		key_free(key);
    137   1.1  christos 		free(comment);
    138   1.1  christos 		return (NULL);
    139   1.1  christos 	}
    140   1.1  christos 	psk->key = key;
    141   1.1  christos 	psk->comment = comment;
    142   1.1  christos 	return (psk);
    143   1.1  christos }
    144   1.1  christos 
    145   1.1  christos /*
    146   1.1  christos  * Wipes a private key and frees the associated resources.
    147   1.1  christos  */
    148   1.1  christos static void
    149   1.1  christos pam_ssh_free_key(pam_handle_t *pamh __unused,
    150   1.1  christos     void *data, int pam_err __unused)
    151   1.1  christos {
    152   1.1  christos 	struct pam_ssh_key *psk;
    153   1.1  christos 
    154   1.1  christos 	psk = data;
    155   1.1  christos 	key_free(psk->key);
    156   1.1  christos 	free(psk->comment);
    157   1.1  christos 	free(psk);
    158   1.1  christos }
    159   1.1  christos 
    160   1.1  christos PAM_EXTERN int
    161   1.1  christos pam_sm_authenticate(pam_handle_t *pamh, int flags __unused,
    162   1.1  christos     int argc __unused, const char *argv[] __unused)
    163   1.1  christos {
    164   1.1  christos 	const char **kfn, *passphrase, *user;
    165  1.18  drochner 	const void *item;
    166  1.10   thorpej 	struct passwd *pwd, pwres;
    167   1.1  christos 	struct pam_ssh_key *psk;
    168  1.19  drochner 	int nkeys, nullok, pam_err, pass;
    169  1.10   thorpej 	char pwbuf[1024];
    170   1.1  christos 
    171  1.19  drochner 	nullok = (openpam_get_option(pamh, "nullok") != NULL);
    172  1.19  drochner 
    173   1.1  christos 	/* PEM is not loaded by default */
    174   1.1  christos 	OpenSSL_add_all_algorithms();
    175   1.1  christos 
    176   1.1  christos 	/* get user name and home directory */
    177   1.1  christos 	pam_err = pam_get_user(pamh, &user, NULL);
    178   1.1  christos 	if (pam_err != PAM_SUCCESS)
    179   1.1  christos 		return (pam_err);
    180  1.11  christos 	if (getpwnam_r(user, &pwres, pwbuf, sizeof(pwbuf), &pwd) != 0 ||
    181  1.11  christos 	    pwd == NULL)
    182   1.1  christos 		return (PAM_USER_UNKNOWN);
    183   1.1  christos 	if (pwd->pw_dir == NULL)
    184   1.1  christos 		return (PAM_AUTH_ERR);
    185   1.1  christos 
    186   1.1  christos 	/* switch to user credentials */
    187   1.1  christos 	pam_err = openpam_borrow_cred(pamh, pwd);
    188   1.1  christos 	if (pam_err != PAM_SUCCESS)
    189   1.1  christos 		return (pam_err);
    190   1.1  christos 
    191  1.19  drochner 	nkeys = 0;
    192  1.18  drochner 	pass = (pam_get_item(pamh, PAM_AUTHTOK, &item) == PAM_SUCCESS &&
    193  1.18  drochner 	    item != NULL);
    194   1.1  christos  load_keys:
    195   1.1  christos 	/* get passphrase */
    196   1.1  christos 	pam_err = pam_get_authtok(pamh, PAM_AUTHTOK,
    197   1.1  christos 	    &passphrase, pam_ssh_prompt);
    198   1.1  christos 	if (pam_err != PAM_SUCCESS) {
    199   1.1  christos 		openpam_restore_cred(pamh);
    200   1.1  christos 		return (pam_err);
    201   1.1  christos 	}
    202   1.1  christos 
    203   1.1  christos 	/* try to load keys from all keyfiles we know of */
    204   1.1  christos 	for (kfn = pam_ssh_keyfiles; *kfn != NULL; ++kfn) {
    205  1.19  drochner 		psk = pam_ssh_load_key(pwd->pw_dir, *kfn, passphrase, nullok);
    206   1.1  christos 		if (psk != NULL) {
    207   1.1  christos 			pam_set_data(pamh, *kfn, psk, pam_ssh_free_key);
    208   1.1  christos 			++nkeys;
    209   1.1  christos 		}
    210   1.1  christos 	}
    211   1.1  christos 
    212   1.1  christos 	/*
    213   1.1  christos 	 * If we tried an old token and didn't get anything, and
    214   1.1  christos 	 * try_first_pass was specified, try again after prompting the
    215   1.1  christos 	 * user for a new passphrase.
    216   1.1  christos 	 */
    217   1.1  christos 	if (nkeys == 0 && pass == 1 &&
    218   1.1  christos 	    openpam_get_option(pamh, "try_first_pass") != NULL) {
    219   1.1  christos 		pam_set_item(pamh, PAM_AUTHTOK, NULL);
    220   1.1  christos 		pass = 0;
    221   1.1  christos 		goto load_keys;
    222   1.1  christos 	}
    223   1.1  christos 
    224   1.1  christos 	/* switch back to arbitrator credentials before returning */
    225   1.1  christos 	openpam_restore_cred(pamh);
    226   1.1  christos 
    227   1.1  christos 	/* no keys? */
    228   1.1  christos 	if (nkeys == 0)
    229   1.1  christos 		return (PAM_AUTH_ERR);
    230   1.1  christos 
    231   1.1  christos 	pam_set_data(pamh, pam_ssh_have_keys, NULL, NULL);
    232   1.1  christos 	return (PAM_SUCCESS);
    233   1.1  christos }
    234   1.1  christos 
    235   1.1  christos PAM_EXTERN int
    236   1.1  christos pam_sm_setcred(pam_handle_t *pamh __unused, int flags __unused,
    237   1.1  christos     int argc __unused, const char *argv[] __unused)
    238   1.1  christos {
    239   1.1  christos 
    240   1.1  christos 	return (PAM_SUCCESS);
    241   1.1  christos }
    242   1.1  christos 
    243   1.1  christos /*
    244   1.1  christos  * Parses a line from ssh-agent's output.
    245   1.1  christos  */
    246   1.1  christos static void
    247   1.1  christos pam_ssh_process_agent_output(pam_handle_t *pamh, FILE *f)
    248   1.1  christos {
    249   1.1  christos 	char *line, *p, *key, *val;
    250   1.1  christos 	size_t len;
    251   1.1  christos 
    252   1.1  christos 	while ((line = fgetln(f, &len)) != NULL) {
    253   1.1  christos 		if (len < 4 || strncmp(line, "SSH_", 4) != 0)
    254   1.1  christos 			continue;
    255   1.1  christos 
    256   1.1  christos 		/* find equal sign at end of key */
    257   1.1  christos 		for (p = key = line; p < line + len; ++p)
    258   1.1  christos 			if (*p == '=')
    259   1.1  christos 				break;
    260   1.1  christos 		if (p == line + len || *p != '=')
    261   1.1  christos 			continue;
    262   1.1  christos 		*p = '\0';
    263   1.1  christos 
    264   1.1  christos 		/* find semicolon at end of value */
    265   1.1  christos 		for (val = ++p; p < line + len; ++p)
    266   1.1  christos 			if (*p == ';')
    267   1.1  christos 				break;
    268   1.1  christos 		if (p == line + len || *p != ';')
    269   1.1  christos 			continue;
    270   1.1  christos 		*p = '\0';
    271   1.1  christos 
    272   1.1  christos 		/* store key-value pair in environment */
    273   1.1  christos 		openpam_log(PAM_LOG_DEBUG, "got %s: %s", key, val);
    274   1.1  christos 		pam_setenv(pamh, key, val, 1);
    275   1.1  christos 	}
    276   1.1  christos }
    277   1.1  christos 
    278   1.1  christos /*
    279   1.1  christos  * Starts an ssh agent and stores the environment variables derived from
    280   1.1  christos  * its output.
    281   1.1  christos  */
    282   1.1  christos static int
    283   1.4  christos pam_ssh_start_agent(pam_handle_t *pamh, struct passwd *pwd)
    284   1.1  christos {
    285   1.1  christos 	int agent_pipe[2];
    286   1.1  christos 	pid_t pid;
    287   1.1  christos 	FILE *f;
    288   1.1  christos 
    289   1.1  christos 	/* get a pipe which we will use to read the agent's output */
    290   1.4  christos 	if (pipe(agent_pipe) == -1)
    291   1.1  christos 		return (PAM_SYSTEM_ERR);
    292   1.1  christos 
    293   1.1  christos 	/* start the agent */
    294   1.1  christos 	openpam_log(PAM_LOG_DEBUG, "starting an ssh agent");
    295   1.1  christos 	pid = fork();
    296   1.1  christos 	if (pid == (pid_t)-1) {
    297   1.1  christos 		/* failed */
    298   1.1  christos 		close(agent_pipe[0]);
    299   1.1  christos 		close(agent_pipe[1]);
    300   1.1  christos 		return (PAM_SYSTEM_ERR);
    301   1.1  christos 	}
    302   1.1  christos 	if (pid == 0) {
    303   1.2  christos #ifndef F_CLOSEM
    304   1.1  christos 		int fd;
    305   1.2  christos #endif
    306   1.1  christos 		/* child: drop privs, close fds and start agent */
    307   1.4  christos 		if (setgid(pwd->pw_gid) == -1) {
    308   1.4  christos 			openpam_log(PAM_LOG_DEBUG, "%s: Cannot setgid %d (%m)",
    309  1.14     ragge 			    __func__, (int)pwd->pw_gid);
    310   1.4  christos 			goto done;
    311   1.4  christos 		}
    312   1.4  christos 		if (initgroups(pwd->pw_name, pwd->pw_gid) == -1) {
    313   1.4  christos 			openpam_log(PAM_LOG_DEBUG,
    314   1.4  christos 			    "%s: Cannot initgroups for %s (%m)",
    315  1.14     ragge 			    __func__, pwd->pw_name);
    316   1.4  christos 			goto done;
    317   1.4  christos 		}
    318   1.4  christos 		if (setuid(pwd->pw_uid) == -1) {
    319   1.4  christos 			openpam_log(PAM_LOG_DEBUG, "%s: Cannot setuid %d (%m)",
    320  1.14     ragge 			    __func__, (int)pwd->pw_uid);
    321   1.4  christos 			goto done;
    322   1.4  christos 		}
    323   1.4  christos 		(void)close(STDIN_FILENO);
    324   1.4  christos 		(void)open(_PATH_DEVNULL, O_RDONLY);
    325   1.4  christos 		(void)dup2(agent_pipe[1], STDOUT_FILENO);
    326   1.4  christos 		(void)dup2(agent_pipe[1], STDERR_FILENO);
    327   1.2  christos #ifdef F_CLOSEM
    328   1.2  christos 		(void)fcntl(3, F_CLOSEM, 0);
    329   1.2  christos #else
    330   1.1  christos 		for (fd = 3; fd < getdtablesize(); ++fd)
    331   1.4  christos 			(void)close(fd);
    332   1.2  christos #endif
    333   1.4  christos 		(void)execve(pam_ssh_agent,
    334   1.4  christos 		    (char **)__UNCONST(pam_ssh_agent_argv),
    335   1.2  christos 		    (char **)__UNCONST(pam_ssh_agent_envp));
    336   1.4  christos done:
    337   1.1  christos 		_exit(127);
    338   1.1  christos 	}
    339   1.1  christos 
    340   1.1  christos 	/* parent */
    341   1.1  christos 	close(agent_pipe[1]);
    342   1.1  christos 	if ((f = fdopen(agent_pipe[0], "r")) == NULL)
    343   1.1  christos 		return (PAM_SYSTEM_ERR);
    344   1.1  christos 	pam_ssh_process_agent_output(pamh, f);
    345   1.1  christos 	fclose(f);
    346   1.1  christos 
    347   1.1  christos 	return (PAM_SUCCESS);
    348   1.1  christos }
    349   1.1  christos 
    350   1.1  christos /*
    351   1.1  christos  * Adds previously stored keys to a running agent.
    352   1.1  christos  */
    353   1.1  christos static int
    354   1.1  christos pam_ssh_add_keys_to_agent(pam_handle_t *pamh)
    355   1.1  christos {
    356   1.1  christos 	AuthenticationConnection *ac;
    357  1.15  christos 	const struct pam_ssh_key *psk;
    358   1.1  christos 	const char **kfn;
    359   1.1  christos 	char **envlist, **env;
    360   1.1  christos 	int pam_err;
    361   1.1  christos 
    362   1.1  christos 	/* switch to PAM environment */
    363   1.1  christos 	envlist = environ;
    364   1.1  christos 	if ((environ = pam_getenvlist(pamh)) == NULL) {
    365   1.4  christos 		openpam_log(PAM_LOG_DEBUG, "%s: cannot get envlist",
    366  1.14     ragge 		    __func__);
    367   1.1  christos 		environ = envlist;
    368   1.1  christos 		return (PAM_SYSTEM_ERR);
    369   1.1  christos 	}
    370   1.1  christos 
    371   1.1  christos 	/* get a connection to the agent */
    372   1.1  christos 	if ((ac = ssh_get_authentication_connection()) == NULL) {
    373   1.4  christos 		openpam_log(PAM_LOG_DEBUG,
    374   1.4  christos 		    "%s: cannot get authentication connection",
    375  1.14     ragge 		    __func__);
    376   1.1  christos 		pam_err = PAM_SYSTEM_ERR;
    377   1.1  christos 		goto end;
    378   1.1  christos 	}
    379   1.1  christos 
    380   1.1  christos 	/* look for keys to add to it */
    381   1.1  christos 	for (kfn = pam_ssh_keyfiles; *kfn != NULL; ++kfn) {
    382  1.15  christos 		const void *vp;
    383  1.15  christos 		pam_err = pam_get_data(pamh, *kfn, &vp);
    384  1.15  christos 		psk = vp;
    385   1.1  christos 		if (pam_err == PAM_SUCCESS && psk != NULL) {
    386  1.18  drochner 			if (ssh_add_identity(ac, psk->key, psk->comment))
    387   1.1  christos 				openpam_log(PAM_LOG_DEBUG,
    388   1.1  christos 				    "added %s to ssh agent", psk->comment);
    389   1.1  christos 			else
    390   1.1  christos 				openpam_log(PAM_LOG_DEBUG, "failed "
    391   1.1  christos 				    "to add %s to ssh agent", psk->comment);
    392   1.1  christos 			/* we won't need the key again, so wipe it */
    393   1.1  christos 			pam_set_data(pamh, *kfn, NULL, NULL);
    394   1.1  christos 		}
    395   1.1  christos 	}
    396   1.1  christos 	pam_err = PAM_SUCCESS;
    397   1.1  christos  end:
    398   1.1  christos 	/* disconnect from agent */
    399   1.1  christos 	if (ac != NULL)
    400   1.1  christos 		ssh_close_authentication_connection(ac);
    401   1.1  christos 
    402   1.1  christos 	/* switch back to original environment */
    403   1.1  christos 	for (env = environ; *env != NULL; ++env)
    404   1.1  christos 		free(*env);
    405   1.1  christos 	free(environ);
    406   1.1  christos 	environ = envlist;
    407   1.1  christos 
    408   1.1  christos 	return (pam_err);
    409   1.1  christos }
    410   1.1  christos 
    411   1.1  christos PAM_EXTERN int
    412   1.1  christos pam_sm_open_session(pam_handle_t *pamh, int flags __unused,
    413   1.1  christos     int argc __unused, const char *argv[] __unused)
    414   1.1  christos {
    415  1.10   thorpej 	struct passwd *pwd, pwres;
    416   1.1  christos 	const char *user;
    417  1.15  christos 	const void *data;
    418   1.4  christos 	int pam_err = PAM_SUCCESS;
    419  1.10   thorpej 	char pwbuf[1024];
    420   1.1  christos 
    421   1.1  christos 	/* no keys, no work */
    422   1.1  christos 	if (pam_get_data(pamh, pam_ssh_have_keys, &data) != PAM_SUCCESS &&
    423   1.1  christos 	    openpam_get_option(pamh, "want_agent") == NULL)
    424   1.1  christos 		return (PAM_SUCCESS);
    425   1.1  christos 
    426   1.1  christos 	/* switch to user credentials */
    427   1.1  christos 	pam_err = pam_get_user(pamh, &user, NULL);
    428   1.1  christos 	if (pam_err != PAM_SUCCESS)
    429   1.1  christos 		return (pam_err);
    430  1.11  christos 	if (getpwnam_r(user, &pwres, pwbuf, sizeof(pwbuf), &pwd) != 0 ||
    431  1.11  christos 	    pwd == NULL)
    432   1.1  christos 		return (PAM_USER_UNKNOWN);
    433   1.4  christos 
    434   1.4  christos 	/* start the agent */
    435   1.4  christos 	pam_err = pam_ssh_start_agent(pamh, pwd);
    436   1.4  christos 	if (pam_err != PAM_SUCCESS)
    437   1.4  christos 		return pam_err;
    438   1.4  christos 
    439   1.1  christos 	pam_err = openpam_borrow_cred(pamh, pwd);
    440   1.1  christos 	if (pam_err != PAM_SUCCESS)
    441   1.4  christos 		return pam_err;
    442   1.1  christos 
    443   1.1  christos 	/* we have an agent, see if we can add any keys to it */
    444   1.1  christos 	pam_err = pam_ssh_add_keys_to_agent(pamh);
    445   1.1  christos 	if (pam_err != PAM_SUCCESS) {
    446   1.1  christos 		/* XXX ignore failures */
    447   1.4  christos 		openpam_log(PAM_LOG_DEBUG, "failed adding keys to ssh agent");
    448   1.4  christos 		pam_err = PAM_SUCCESS;
    449   1.1  christos 	}
    450   1.1  christos 
    451   1.1  christos 	openpam_restore_cred(pamh);
    452   1.4  christos 	return pam_err;
    453   1.1  christos }
    454   1.1  christos 
    455   1.1  christos PAM_EXTERN int
    456   1.1  christos pam_sm_close_session(pam_handle_t *pamh, int flags __unused,
    457   1.1  christos     int argc __unused, const char *argv[] __unused)
    458   1.1  christos {
    459   1.1  christos 	const char *ssh_agent_pid;
    460   1.1  christos 	char *end;
    461   1.1  christos 	int status;
    462   1.1  christos 	pid_t pid;
    463   1.1  christos 
    464   1.1  christos 	if ((ssh_agent_pid = pam_getenv(pamh, "SSH_AGENT_PID")) == NULL) {
    465   1.1  christos 		openpam_log(PAM_LOG_DEBUG, "no ssh agent");
    466   1.1  christos 		return (PAM_SUCCESS);
    467   1.1  christos 	}
    468   1.1  christos 	pid = (pid_t)strtol(ssh_agent_pid, &end, 10);
    469   1.1  christos 	if (*ssh_agent_pid == '\0' || *end != '\0') {
    470   1.1  christos 		openpam_log(PAM_LOG_DEBUG, "invalid ssh agent pid");
    471   1.1  christos 		return (PAM_SESSION_ERR);
    472   1.1  christos 	}
    473   1.1  christos 	openpam_log(PAM_LOG_DEBUG, "killing ssh agent %d", (int)pid);
    474   1.1  christos 	if (kill(pid, SIGTERM) == -1 ||
    475   1.1  christos 	    (waitpid(pid, &status, 0) == -1 && errno != ECHILD))
    476   1.1  christos 		return (PAM_SYSTEM_ERR);
    477   1.1  christos 	return (PAM_SUCCESS);
    478   1.1  christos }
    479   1.1  christos 
    480   1.1  christos PAM_MODULE_ENTRY("pam_ssh");
    481