2 * Copyright (c) 2003 Networks Associates Technology, Inc.
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.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
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 * 3. The name of the author may not be used to endorse or promote
19 * products derived from this software without specific prior written
22 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * $FreeBSD: src/lib/libpam/modules/pam_ssh/pam_ssh.c,v 1.40 2004/02/10 10:13:21 des Exp $
35 * $DragonFly: src/lib/pam_module/pam_ssh/pam_ssh.c,v 1.2 2006/09/29 06:35:03 corecode Exp $
38 #include <sys/param.h>
51 #define PAM_SM_SESSION
53 #include <security/pam_appl.h>
54 #include <security/pam_modules.h>
55 #include <security/openpam.h>
57 #include <openssl/evp.h>
64 extern char **environ
;
71 static const char *pam_ssh_prompt
= "SSH passphrase: ";
72 static const char *pam_ssh_have_keys
= "pam_ssh_have_keys";
74 static const char *pam_ssh_keyfiles
[] = {
75 ".ssh/identity", /* SSH1 RSA key */
76 ".ssh/id_rsa", /* SSH2 RSA key */
77 ".ssh/id_dsa", /* SSH2 DSA key */
81 static const char *pam_ssh_agent
= "/usr/bin/ssh-agent";
82 static const char *pam_ssh_agent_argv
[] = { "ssh_agent", "-s", NULL
};
83 static char *const pam_ssh_agent_envp
[] = { NULL
};
86 * Attempts to load a private key from the specified file in the specified
87 * directory, using the specified passphrase. If successful, returns a
88 * struct pam_ssh_key containing the key and its comment.
90 static struct pam_ssh_key
*
91 pam_ssh_load_key(const char *dir
, const char *kfn
, const char *passphrase
)
93 struct pam_ssh_key
*psk
;
98 if (snprintf(fn
, sizeof(fn
), "%s/%s", dir
, kfn
) > (int)sizeof(fn
))
101 key
= key_load_private(fn
, passphrase
, &comment
);
103 openpam_log(PAM_LOG_DEBUG
, "failed to load key from %s\n", fn
);
107 openpam_log(PAM_LOG_DEBUG
, "loaded '%s' from %s\n", comment
, fn
);
108 if ((psk
= malloc(sizeof(*psk
))) == NULL
) {
114 psk
->comment
= comment
;
119 * Wipes a private key and frees the associated resources.
122 pam_ssh_free_key(pam_handle_t
*pamh __unused
,
123 void *data
, int pam_err __unused
)
125 struct pam_ssh_key
*psk
;
134 pam_sm_authenticate(pam_handle_t
*pamh
, int flags __unused
,
135 int argc __unused
, const char *argv
[] __unused
)
137 const char **kfn
, *passphrase
, *user
;
139 struct pam_ssh_key
*psk
;
140 int nkeys
, pam_err
, pass
;
142 /* PEM is not loaded by default */
143 OpenSSL_add_all_algorithms();
145 /* get user name and home directory */
146 pam_err
= pam_get_user(pamh
, &user
, NULL
);
147 if (pam_err
!= PAM_SUCCESS
)
149 pwd
= getpwnam(user
);
151 return (PAM_USER_UNKNOWN
);
152 if (pwd
->pw_dir
== NULL
)
153 return (PAM_AUTH_ERR
);
155 /* switch to user credentials */
156 pam_err
= openpam_borrow_cred(pamh
, pwd
);
157 if (pam_err
!= PAM_SUCCESS
)
160 pass
= (pam_get_item(pamh
, PAM_AUTHTOK
,
161 (const void **)&passphrase
) == PAM_SUCCESS
);
164 pam_err
= pam_get_authtok(pamh
, PAM_AUTHTOK
,
165 &passphrase
, pam_ssh_prompt
);
166 if (pam_err
!= PAM_SUCCESS
) {
167 openpam_restore_cred(pamh
);
171 /* try to load keys from all keyfiles we know of */
173 for (kfn
= pam_ssh_keyfiles
; *kfn
!= NULL
; ++kfn
) {
174 psk
= pam_ssh_load_key(pwd
->pw_dir
, *kfn
, passphrase
);
176 pam_set_data(pamh
, *kfn
, psk
, pam_ssh_free_key
);
182 * If we tried an old token and didn't get anything, and
183 * try_first_pass was specified, try again after prompting the
184 * user for a new passphrase.
186 if (nkeys
== 0 && pass
== 1 &&
187 openpam_get_option(pamh
, "try_first_pass") != NULL
) {
188 pam_set_item(pamh
, PAM_AUTHTOK
, NULL
);
193 /* switch back to arbitrator credentials before returning */
194 openpam_restore_cred(pamh
);
198 return (PAM_AUTH_ERR
);
200 pam_set_data(pamh
, pam_ssh_have_keys
, NULL
, NULL
);
201 return (PAM_SUCCESS
);
205 pam_sm_setcred(pam_handle_t
*pamh __unused
, int flags __unused
,
206 int argc __unused
, const char *argv
[] __unused
)
209 return (PAM_SUCCESS
);
213 * Parses a line from ssh-agent's output.
216 pam_ssh_process_agent_output(pam_handle_t
*pamh
, FILE *f
)
218 char *line
, *p
, *key
, *val
;
221 while ((line
= fgetln(f
, &len
)) != NULL
) {
222 if (len
< 4 || strncmp(line
, "SSH_", 4) != 0)
225 /* find equal sign at end of key */
226 for (p
= key
= line
; p
< line
+ len
; ++p
)
229 if (p
== line
+ len
|| *p
!= '=')
233 /* find semicolon at end of value */
234 for (val
= ++p
; p
< line
+ len
; ++p
)
237 if (p
== line
+ len
|| *p
!= ';')
241 /* store key-value pair in environment */
242 openpam_log(PAM_LOG_DEBUG
, "got %s: %s", key
, val
);
243 pam_setenv(pamh
, key
, val
, 1);
248 * Starts an ssh agent and stores the environment variables derived from
252 pam_ssh_start_agent(pam_handle_t
*pamh
)
258 /* get a pipe which we will use to read the agent's output */
259 if (pipe(agent_pipe
) == -1) {
260 openpam_restore_cred(pamh
);
261 return (PAM_SYSTEM_ERR
);
264 /* start the agent */
265 openpam_log(PAM_LOG_DEBUG
, "starting an ssh agent");
267 if (pid
== (pid_t
)-1) {
269 close(agent_pipe
[0]);
270 close(agent_pipe
[1]);
271 return (PAM_SYSTEM_ERR
);
276 /* child: drop privs, close fds and start agent */
280 open(_PATH_DEVNULL
, O_RDONLY
);
281 dup2(agent_pipe
[1], STDOUT_FILENO
);
282 dup2(agent_pipe
[1], STDERR_FILENO
);
283 for (fd
= 3; fd
< getdtablesize(); ++fd
)
285 execve(pam_ssh_agent
,
286 __DECONST(char * const *, pam_ssh_agent_argv
),
292 close(agent_pipe
[1]);
293 if ((f
= fdopen(agent_pipe
[0], "r")) == NULL
)
294 return (PAM_SYSTEM_ERR
);
295 pam_ssh_process_agent_output(pamh
, f
);
298 return (PAM_SUCCESS
);
302 * Adds previously stored keys to a running agent.
305 pam_ssh_add_keys_to_agent(pam_handle_t
*pamh
)
307 AuthenticationConnection
*ac
;
308 struct pam_ssh_key
*psk
;
310 char **envlist
, **env
;
313 /* switch to PAM environment */
315 if ((environ
= pam_getenvlist(pamh
)) == NULL
) {
317 return (PAM_SYSTEM_ERR
);
320 /* get a connection to the agent */
321 if ((ac
= ssh_get_authentication_connection()) == NULL
) {
322 pam_err
= PAM_SYSTEM_ERR
;
326 /* look for keys to add to it */
327 for (kfn
= pam_ssh_keyfiles
; *kfn
!= NULL
; ++kfn
) {
328 pam_err
= pam_get_data(pamh
, *kfn
, (void **)&psk
);
329 if (pam_err
== PAM_SUCCESS
&& psk
!= NULL
) {
330 if (ssh_add_identity(ac
, psk
->key
, psk
->comment
))
331 openpam_log(PAM_LOG_DEBUG
,
332 "added %s to ssh agent", psk
->comment
);
334 openpam_log(PAM_LOG_DEBUG
, "failed "
335 "to add %s to ssh agent", psk
->comment
);
336 /* we won't need the key again, so wipe it */
337 pam_set_data(pamh
, *kfn
, NULL
, NULL
);
340 pam_err
= PAM_SUCCESS
;
342 /* disconnect from agent */
344 ssh_close_authentication_connection(ac
);
346 /* switch back to original environment */
347 for (env
= environ
; *env
!= NULL
; ++env
)
356 pam_sm_open_session(pam_handle_t
*pamh
, int flags __unused
,
357 int argc __unused
, const char *argv
[] __unused
)
364 /* no keys, no work */
365 if (pam_get_data(pamh
, pam_ssh_have_keys
, &data
) != PAM_SUCCESS
&&
366 openpam_get_option(pamh
, "want_agent") == NULL
)
367 return (PAM_SUCCESS
);
369 /* switch to user credentials */
370 pam_err
= pam_get_user(pamh
, &user
, NULL
);
371 if (pam_err
!= PAM_SUCCESS
)
373 pwd
= getpwnam(user
);
375 return (PAM_USER_UNKNOWN
);
376 pam_err
= openpam_borrow_cred(pamh
, pwd
);
377 if (pam_err
!= PAM_SUCCESS
)
380 /* start the agent */
381 pam_err
= pam_ssh_start_agent(pamh
);
382 if (pam_err
!= PAM_SUCCESS
) {
383 openpam_restore_cred(pamh
);
387 /* we have an agent, see if we can add any keys to it */
388 pam_err
= pam_ssh_add_keys_to_agent(pamh
);
389 if (pam_err
!= PAM_SUCCESS
) {
390 /* XXX ignore failures */
393 openpam_restore_cred(pamh
);
394 return (PAM_SUCCESS
);
398 pam_sm_close_session(pam_handle_t
*pamh
, int flags __unused
,
399 int argc __unused
, const char *argv
[] __unused
)
401 const char *ssh_agent_pid
;
406 if ((ssh_agent_pid
= pam_getenv(pamh
, "SSH_AGENT_PID")) == NULL
) {
407 openpam_log(PAM_LOG_DEBUG
, "no ssh agent");
408 return (PAM_SUCCESS
);
410 pid
= (pid_t
)strtol(ssh_agent_pid
, &end
, 10);
411 if (*ssh_agent_pid
== '\0' || *end
!= '\0') {
412 openpam_log(PAM_LOG_DEBUG
, "invalid ssh agent pid");
413 return (PAM_SESSION_ERR
);
415 openpam_log(PAM_LOG_DEBUG
, "killing ssh agent %d", (int)pid
);
416 if (kill(pid
, SIGTERM
) == -1 ||
417 (waitpid(pid
, &status
, 0) == -1 && errno
!= ECHILD
))
418 return (PAM_SYSTEM_ERR
);
419 return (PAM_SUCCESS
);
422 PAM_MODULE_ENTRY("pam_ssh");