blob: 1a8f39071f2b8ac0d1aa81affd0e641fe95e214f [file] [log] [blame]
Damien Millerc674d582008-11-03 19:16:57 +11001/* $OpenBSD: sshconnect2.c,v 1.167 2008/07/31 14:48:28 markus Exp $ */
Damien Millereba71ba2000-04-29 23:57:08 +10002/*
3 * Copyright (c) 2000 Markus Friedl. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
Damien Millereba71ba2000-04-29 23:57:08 +100013 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */
25
26#include "includes.h"
Damien Miller2eb63402006-03-15 11:09:42 +110027
Damien Miller9cf6d072006-03-15 11:29:24 +110028#include <sys/types.h>
Damien Millerd7834352006-08-05 12:39:39 +100029#include <sys/socket.h>
Damien Miller9cf6d072006-03-15 11:29:24 +110030#include <sys/wait.h>
Damien Millerf17883e2006-03-15 11:45:54 +110031#include <sys/stat.h>
Damien Millereba71ba2000-04-29 23:57:08 +100032
Darren Tucker39972492006-07-12 22:22:46 +100033#include <errno.h>
Darren Tuckerf520ea12007-05-20 15:11:33 +100034#include <netdb.h>
Damien Millerd7834352006-08-05 12:39:39 +100035#include <pwd.h>
36#include <signal.h>
Damien Millerded319c2006-09-01 15:38:36 +100037#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100038#include <stdio.h>
Damien Millere3476ed2006-07-24 14:13:33 +100039#include <string.h>
Damien Miller1cdde6f2006-07-24 14:07:35 +100040#include <unistd.h>
Damien Miller2e28d862008-07-17 19:15:43 +100041#if defined(HAVE_STRNVIS) && defined(HAVE_VIS_H)
Damien Miller7ba0ca72008-07-17 18:57:06 +100042#include <vis.h>
Damien Miller2e28d862008-07-17 19:15:43 +100043#endif
Darren Tucker39972492006-07-12 22:22:46 +100044
Damien Miller9c617692003-05-14 14:31:11 +100045#include "openbsd-compat/sys-queue.h"
46
Damien Millerd7834352006-08-05 12:39:39 +100047#include "xmalloc.h"
Damien Millereba71ba2000-04-29 23:57:08 +100048#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000049#include "ssh2.h"
Damien Millereba71ba2000-04-29 23:57:08 +100050#include "buffer.h"
51#include "packet.h"
Damien Millereba71ba2000-04-29 23:57:08 +100052#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000053#include "cipher.h"
Damien Millerd7834352006-08-05 12:39:39 +100054#include "key.h"
Damien Millereba71ba2000-04-29 23:57:08 +100055#include "kex.h"
56#include "myproposal.h"
Damien Millereba71ba2000-04-29 23:57:08 +100057#include "sshconnect.h"
58#include "authfile.h"
Ben Lindstromdf221392001-03-29 00:36:16 +000059#include "dh.h"
Damien Millerad833b32000-08-23 10:46:23 +100060#include "authfd.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000061#include "log.h"
62#include "readconf.h"
Darren Tuckere608ca22004-05-13 16:15:47 +100063#include "misc.h"
Ben Lindstromb9be60a2001-03-11 01:49:19 +000064#include "match.h"
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000065#include "dispatch.h"
Ben Lindstrom5eabda32001-04-12 23:34:34 +000066#include "canohost.h"
Ben Lindstrom1bad2562002-06-06 19:57:33 +000067#include "msg.h"
68#include "pathnames.h"
Damien Miller6b4069a2006-06-13 13:05:15 +100069#include "uidswap.h"
Damien Miller874d77b2000-10-14 16:23:11 +110070
Darren Tucker0efd1552003-08-26 11:49:55 +100071#ifdef GSSAPI
72#include "ssh-gss.h"
73#endif
74
Damien Millereba71ba2000-04-29 23:57:08 +100075/* import */
76extern char *client_version_string;
77extern char *server_version_string;
78extern Options options;
79
80/*
81 * SSH2 key exchange
82 */
83
Ben Lindstrom46c16222000-12-22 01:43:59 +000084u_char *session_id2 = NULL;
Darren Tucker502d3842003-06-28 12:38:01 +100085u_int session_id2_len = 0;
Damien Millereba71ba2000-04-29 23:57:08 +100086
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000087char *xxx_host;
88struct sockaddr *xxx_hostaddr;
89
Ben Lindstromf28f6342001-04-04 02:03:04 +000090Kex *xxx_kex = NULL;
91
Ben Lindstrombba81212001-06-25 05:01:22 +000092static int
Ben Lindstromd6481ea2001-06-25 04:37:41 +000093verify_host_key_callback(Key *hostkey)
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000094{
Ben Lindstromd6481ea2001-06-25 04:37:41 +000095 if (verify_host_key(xxx_host, xxx_hostaddr, hostkey) == -1)
Damien Miller59d9fb92001-10-10 15:03:11 +100096 fatal("Host key verification failed.");
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000097 return 0;
98}
99
Damien Millereba71ba2000-04-29 23:57:08 +1000100void
Damien Miller874d77b2000-10-14 16:23:11 +1100101ssh_kex2(char *host, struct sockaddr *hostaddr)
102{
Damien Miller874d77b2000-10-14 16:23:11 +1100103 Kex *kex;
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +0000104
105 xxx_host = host;
106 xxx_hostaddr = hostaddr;
Damien Miller874d77b2000-10-14 16:23:11 +1100107
Damien Millere39cacc2000-11-29 12:18:44 +1100108 if (options.ciphers == (char *)-1) {
Damien Miller996acd22003-04-09 20:59:48 +1000109 logit("No valid ciphers for protocol version 2 given, using defaults.");
Damien Millere39cacc2000-11-29 12:18:44 +1100110 options.ciphers = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100111 }
112 if (options.ciphers != NULL) {
113 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
114 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
115 }
Damien Millera0ff4662001-03-30 10:49:35 +1000116 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
117 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_CTOS]);
118 myproposal[PROPOSAL_ENC_ALGS_STOC] =
119 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_STOC]);
Damien Miller874d77b2000-10-14 16:23:11 +1100120 if (options.compression) {
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000121 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
Damien Miller9786e6e2005-07-26 21:54:56 +1000122 myproposal[PROPOSAL_COMP_ALGS_STOC] = "zlib@openssh.com,zlib,none";
Damien Miller874d77b2000-10-14 16:23:11 +1100123 } else {
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000124 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
Damien Miller9786e6e2005-07-26 21:54:56 +1000125 myproposal[PROPOSAL_COMP_ALGS_STOC] = "none,zlib@openssh.com,zlib";
Damien Miller874d77b2000-10-14 16:23:11 +1100126 }
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000127 if (options.macs != NULL) {
128 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
129 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
130 }
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000131 if (options.hostkeyalgorithms != NULL)
Damien Miller9f0f5c62001-12-21 14:45:46 +1100132 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] =
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000133 options.hostkeyalgorithms;
Damien Miller874d77b2000-10-14 16:23:11 +1100134
Damien Millera5539d22003-04-09 20:50:06 +1000135 if (options.rekey_limit)
Damien Miller3dff1762008-02-10 22:25:52 +1100136 packet_set_rekey_limit((u_int32_t)options.rekey_limit);
Damien Millera5539d22003-04-09 20:50:06 +1000137
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000138 /* start key exchange */
Ben Lindstrom238abf62001-04-04 17:52:53 +0000139 kex = kex_setup(myproposal);
Damien Miller8e7fb332003-02-24 12:03:03 +1100140 kex->kex[KEX_DH_GRP1_SHA1] = kexdh_client;
Damien Millerf675fc42004-06-15 10:30:09 +1000141 kex->kex[KEX_DH_GRP14_SHA1] = kexdh_client;
Damien Miller8e7fb332003-02-24 12:03:03 +1100142 kex->kex[KEX_DH_GEX_SHA1] = kexgex_client;
Damien Millera63128d2006-03-15 12:08:28 +1100143 kex->kex[KEX_DH_GEX_SHA256] = kexgex_client;
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +0000144 kex->client_version_string=client_version_string;
145 kex->server_version_string=server_version_string;
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000146 kex->verify_host_key=&verify_host_key_callback;
Damien Miller874d77b2000-10-14 16:23:11 +1100147
Ben Lindstromf28f6342001-04-04 02:03:04 +0000148 xxx_kex = kex;
149
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000150 dispatch_run(DISPATCH_BLOCK, &kex->done, kex);
Damien Miller874d77b2000-10-14 16:23:11 +1100151
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000152 session_id2 = kex->session_id;
153 session_id2_len = kex->session_id_len;
154
Damien Miller874d77b2000-10-14 16:23:11 +1100155#ifdef DEBUG_KEXDH
156 /* send 1st encrypted/maced/compressed message */
157 packet_start(SSH2_MSG_IGNORE);
158 packet_put_cstring("markus");
159 packet_send();
160 packet_write_wait();
161#endif
Damien Millereba71ba2000-04-29 23:57:08 +1000162}
Damien Millerb1715dc2000-05-30 13:44:51 +1000163
Damien Millereba71ba2000-04-29 23:57:08 +1000164/*
165 * Authenticate user
166 */
Damien Miller62cee002000-09-23 17:15:56 +1100167
168typedef struct Authctxt Authctxt;
169typedef struct Authmethod Authmethod;
Damien Miller280ecfb2003-05-14 13:46:00 +1000170typedef struct identity Identity;
171typedef struct idlist Idlist;
Damien Miller62cee002000-09-23 17:15:56 +1100172
Damien Miller280ecfb2003-05-14 13:46:00 +1000173struct identity {
174 TAILQ_ENTRY(identity) next;
175 AuthenticationConnection *ac; /* set if agent supports key */
176 Key *key; /* public/private key */
177 char *filename; /* comment for agent-only keys */
178 int tried;
179 int isprivate; /* key points to the private key */
180};
181TAILQ_HEAD(idlist, identity);
Damien Miller62cee002000-09-23 17:15:56 +1100182
183struct Authctxt {
184 const char *server_user;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000185 const char *local_user;
Damien Miller62cee002000-09-23 17:15:56 +1100186 const char *host;
187 const char *service;
Damien Miller62cee002000-09-23 17:15:56 +1100188 Authmethod *method;
Damien Miller874d77b2000-10-14 16:23:11 +1100189 int success;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000190 char *authlist;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000191 /* pubkey */
Damien Miller280ecfb2003-05-14 13:46:00 +1000192 Idlist keys;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000193 AuthenticationConnection *agent;
194 /* hostbased */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000195 Sensitive *sensitive;
Ben Lindstrom7d199962001-09-12 18:29:00 +0000196 /* kbd-interactive */
197 int info_req_seen;
Darren Tucker0efd1552003-08-26 11:49:55 +1000198 /* generic */
199 void *methoddata;
Damien Miller62cee002000-09-23 17:15:56 +1100200};
201struct Authmethod {
202 char *name; /* string to compare against server's list */
203 int (*userauth)(Authctxt *authctxt);
204 int *enabled; /* flag in option struct that enables method */
205 int *batch_flag; /* flag in option struct that disables method */
206};
207
Damien Miller630d6f42002-01-22 23:17:30 +1100208void input_userauth_success(int, u_int32_t, void *);
209void input_userauth_failure(int, u_int32_t, void *);
210void input_userauth_banner(int, u_int32_t, void *);
211void input_userauth_error(int, u_int32_t, void *);
212void input_userauth_info_req(int, u_int32_t, void *);
213void input_userauth_pk_ok(int, u_int32_t, void *);
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000214void input_userauth_passwd_changereq(int, u_int32_t, void *);
Damien Miller874d77b2000-10-14 16:23:11 +1100215
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000216int userauth_none(Authctxt *);
217int userauth_pubkey(Authctxt *);
218int userauth_passwd(Authctxt *);
219int userauth_kbdint(Authctxt *);
220int userauth_hostbased(Authctxt *);
Damien Miller3ab496b2003-05-14 13:47:37 +1000221int userauth_kerberos(Authctxt *);
Damien Miller62cee002000-09-23 17:15:56 +1100222
Darren Tucker0efd1552003-08-26 11:49:55 +1000223#ifdef GSSAPI
224int userauth_gssapi(Authctxt *authctxt);
225void input_gssapi_response(int type, u_int32_t, void *);
226void input_gssapi_token(int type, u_int32_t, void *);
227void input_gssapi_hash(int type, u_int32_t, void *);
228void input_gssapi_error(int, u_int32_t, void *);
229void input_gssapi_errtok(int, u_int32_t, void *);
230#endif
231
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000232void userauth(Authctxt *, char *);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000233
Damien Miller280ecfb2003-05-14 13:46:00 +1000234static int sign_and_send_pubkey(Authctxt *, Identity *);
Damien Miller280ecfb2003-05-14 13:46:00 +1000235static void pubkey_prepare(Authctxt *);
236static void pubkey_cleanup(Authctxt *);
237static Key *load_identity_file(char *);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000238
Ben Lindstrombba81212001-06-25 05:01:22 +0000239static Authmethod *authmethod_get(char *authlist);
240static Authmethod *authmethod_lookup(const char *name);
241static char *authmethods_get(void);
Damien Miller62cee002000-09-23 17:15:56 +1100242
243Authmethod authmethods[] = {
Darren Tucker0efd1552003-08-26 11:49:55 +1000244#ifdef GSSAPI
Damien Miller0425d402003-11-17 22:18:21 +1100245 {"gssapi-with-mic",
Darren Tucker0efd1552003-08-26 11:49:55 +1000246 userauth_gssapi,
247 &options.gss_authentication,
248 NULL},
249#endif
Ben Lindstrom1bfe2912001-06-05 19:37:25 +0000250 {"hostbased",
251 userauth_hostbased,
252 &options.hostbased_authentication,
253 NULL},
Ben Lindstrom45350e82001-08-06 20:57:11 +0000254 {"publickey",
255 userauth_pubkey,
256 &options.pubkey_authentication,
257 NULL},
Damien Miller874d77b2000-10-14 16:23:11 +1100258 {"keyboard-interactive",
259 userauth_kbdint,
260 &options.kbd_interactive_authentication,
261 &options.batch_mode},
Ben Lindstrom45350e82001-08-06 20:57:11 +0000262 {"password",
263 userauth_passwd,
264 &options.password_authentication,
265 &options.batch_mode},
Damien Miller874d77b2000-10-14 16:23:11 +1100266 {"none",
267 userauth_none,
268 NULL,
269 NULL},
Damien Miller62cee002000-09-23 17:15:56 +1100270 {NULL, NULL, NULL, NULL}
271};
272
273void
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000274ssh_userauth2(const char *local_user, const char *server_user, char *host,
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000275 Sensitive *sensitive)
Damien Miller62cee002000-09-23 17:15:56 +1100276{
277 Authctxt authctxt;
278 int type;
Damien Miller62cee002000-09-23 17:15:56 +1100279
Ben Lindstrom551ea372001-06-05 18:56:16 +0000280 if (options.challenge_response_authentication)
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000281 options.kbd_interactive_authentication = 1;
282
Damien Miller62cee002000-09-23 17:15:56 +1100283 packet_start(SSH2_MSG_SERVICE_REQUEST);
284 packet_put_cstring("ssh-userauth");
285 packet_send();
Ben Lindstrom064496f2002-12-23 02:04:22 +0000286 debug("SSH2_MSG_SERVICE_REQUEST sent");
Damien Miller62cee002000-09-23 17:15:56 +1100287 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +1100288 type = packet_read();
Ben Lindstrom064496f2002-12-23 02:04:22 +0000289 if (type != SSH2_MSG_SERVICE_ACCEPT)
290 fatal("Server denied authentication request: %d", type);
Damien Miller62cee002000-09-23 17:15:56 +1100291 if (packet_remaining() > 0) {
Damien Millerdff50992002-01-22 23:16:32 +1100292 char *reply = packet_get_string(NULL);
Ben Lindstrom064496f2002-12-23 02:04:22 +0000293 debug2("service_accept: %s", reply);
Damien Miller62cee002000-09-23 17:15:56 +1100294 xfree(reply);
Damien Miller62cee002000-09-23 17:15:56 +1100295 } else {
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000296 debug2("buggy server: service_accept w/o service");
Damien Miller62cee002000-09-23 17:15:56 +1100297 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100298 packet_check_eom();
Ben Lindstrom064496f2002-12-23 02:04:22 +0000299 debug("SSH2_MSG_SERVICE_ACCEPT received");
Damien Miller62cee002000-09-23 17:15:56 +1100300
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000301 if (options.preferred_authentications == NULL)
302 options.preferred_authentications = authmethods_get();
303
Damien Miller62cee002000-09-23 17:15:56 +1100304 /* setup authentication context */
Ben Lindstrom7d199962001-09-12 18:29:00 +0000305 memset(&authctxt, 0, sizeof(authctxt));
Damien Miller280ecfb2003-05-14 13:46:00 +1000306 pubkey_prepare(&authctxt);
Damien Miller62cee002000-09-23 17:15:56 +1100307 authctxt.server_user = server_user;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000308 authctxt.local_user = local_user;
Damien Miller62cee002000-09-23 17:15:56 +1100309 authctxt.host = host;
310 authctxt.service = "ssh-connection"; /* service name */
311 authctxt.success = 0;
Damien Miller874d77b2000-10-14 16:23:11 +1100312 authctxt.method = authmethod_lookup("none");
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000313 authctxt.authlist = NULL;
Darren Tucker0efd1552003-08-26 11:49:55 +1000314 authctxt.methoddata = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000315 authctxt.sensitive = sensitive;
Ben Lindstrom7d199962001-09-12 18:29:00 +0000316 authctxt.info_req_seen = 0;
Damien Miller874d77b2000-10-14 16:23:11 +1100317 if (authctxt.method == NULL)
318 fatal("ssh_userauth2: internal error: cannot send userauth none request");
Damien Miller62cee002000-09-23 17:15:56 +1100319
320 /* initial userauth request */
Damien Miller874d77b2000-10-14 16:23:11 +1100321 userauth_none(&authctxt);
Damien Miller62cee002000-09-23 17:15:56 +1100322
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000323 dispatch_init(&input_userauth_error);
Damien Miller62cee002000-09-23 17:15:56 +1100324 dispatch_set(SSH2_MSG_USERAUTH_SUCCESS, &input_userauth_success);
325 dispatch_set(SSH2_MSG_USERAUTH_FAILURE, &input_userauth_failure);
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000326 dispatch_set(SSH2_MSG_USERAUTH_BANNER, &input_userauth_banner);
Damien Miller62cee002000-09-23 17:15:56 +1100327 dispatch_run(DISPATCH_BLOCK, &authctxt.success, &authctxt); /* loop until success */
328
Damien Miller280ecfb2003-05-14 13:46:00 +1000329 pubkey_cleanup(&authctxt);
Damien Millerf842fcb2003-05-15 12:01:28 +1000330 dispatch_range(SSH2_MSG_USERAUTH_MIN, SSH2_MSG_USERAUTH_MAX, NULL);
331
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000332 debug("Authentication succeeded (%s).", authctxt.method->name);
Damien Miller62cee002000-09-23 17:15:56 +1100333}
Damien Millerf842fcb2003-05-15 12:01:28 +1000334
Damien Miller62cee002000-09-23 17:15:56 +1100335void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000336userauth(Authctxt *authctxt, char *authlist)
337{
Darren Tucker0efd1552003-08-26 11:49:55 +1000338 if (authctxt->methoddata) {
339 xfree(authctxt->methoddata);
340 authctxt->methoddata = NULL;
341 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000342 if (authlist == NULL) {
343 authlist = authctxt->authlist;
344 } else {
345 if (authctxt->authlist)
346 xfree(authctxt->authlist);
347 authctxt->authlist = authlist;
348 }
349 for (;;) {
350 Authmethod *method = authmethod_get(authlist);
351 if (method == NULL)
352 fatal("Permission denied (%s).", authlist);
353 authctxt->method = method;
Damien Millerf842fcb2003-05-15 12:01:28 +1000354
355 /* reset the per method handler */
356 dispatch_range(SSH2_MSG_USERAUTH_PER_METHOD_MIN,
357 SSH2_MSG_USERAUTH_PER_METHOD_MAX, NULL);
358
359 /* and try new method */
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000360 if (method->userauth(authctxt) != 0) {
361 debug2("we sent a %s packet, wait for reply", method->name);
362 break;
363 } else {
364 debug2("we did not send a packet, disable method");
365 method->enabled = NULL;
366 }
367 }
368}
Ben Lindstrom5c385522002-06-23 21:23:20 +0000369
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000370void
Damien Miller630d6f42002-01-22 23:17:30 +1100371input_userauth_error(int type, u_int32_t seq, void *ctxt)
Damien Miller62cee002000-09-23 17:15:56 +1100372{
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000373 fatal("input_userauth_error: bad message during authentication: "
Damien Miller0dc1bef2005-07-17 17:22:45 +1000374 "type %d", type);
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000375}
Ben Lindstrom5c385522002-06-23 21:23:20 +0000376
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000377void
Damien Miller630d6f42002-01-22 23:17:30 +1100378input_userauth_banner(int type, u_int32_t seq, void *ctxt)
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000379{
Damien Miller7ba0ca72008-07-17 18:57:06 +1000380 char *msg, *raw, *lang;
381 u_int len;
Darren Tucker79644822003-10-08 17:37:58 +1000382
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000383 debug3("input_userauth_banner");
Damien Miller7ba0ca72008-07-17 18:57:06 +1000384 raw = packet_get_string(&len);
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000385 lang = packet_get_string(NULL);
Damien Millerc674d582008-11-03 19:16:57 +1100386 if (len > 0 && options.log_level >= SYSLOG_LEVEL_INFO) {
Damien Miller7ba0ca72008-07-17 18:57:06 +1000387 if (len > 65536)
388 len = 65536;
389 msg = xmalloc(len * 4); /* max expansion from strnvis() */
390 strnvis(msg, raw, len * 4, VIS_SAFE|VIS_OCTAL);
Darren Tucker046dff22003-10-08 17:32:02 +1000391 fprintf(stderr, "%s", msg);
Damien Miller7ba0ca72008-07-17 18:57:06 +1000392 xfree(msg);
393 }
394 xfree(raw);
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000395 xfree(lang);
Damien Miller62cee002000-09-23 17:15:56 +1100396}
Ben Lindstrom5c385522002-06-23 21:23:20 +0000397
Damien Miller62cee002000-09-23 17:15:56 +1100398void
Damien Miller630d6f42002-01-22 23:17:30 +1100399input_userauth_success(int type, u_int32_t seq, void *ctxt)
Damien Miller62cee002000-09-23 17:15:56 +1100400{
401 Authctxt *authctxt = ctxt;
402 if (authctxt == NULL)
403 fatal("input_userauth_success: no authentication context");
Darren Tucker79644822003-10-08 17:37:58 +1000404 if (authctxt->authlist) {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000405 xfree(authctxt->authlist);
Darren Tucker79644822003-10-08 17:37:58 +1000406 authctxt->authlist = NULL;
407 }
408 if (authctxt->methoddata) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000409 xfree(authctxt->methoddata);
Darren Tucker79644822003-10-08 17:37:58 +1000410 authctxt->methoddata = NULL;
411 }
Damien Miller62cee002000-09-23 17:15:56 +1100412 authctxt->success = 1; /* break out */
413}
Ben Lindstrom5c385522002-06-23 21:23:20 +0000414
Damien Miller62cee002000-09-23 17:15:56 +1100415void
Damien Miller630d6f42002-01-22 23:17:30 +1100416input_userauth_failure(int type, u_int32_t seq, void *ctxt)
Damien Miller62cee002000-09-23 17:15:56 +1100417{
Damien Miller62cee002000-09-23 17:15:56 +1100418 Authctxt *authctxt = ctxt;
419 char *authlist = NULL;
420 int partial;
Damien Miller62cee002000-09-23 17:15:56 +1100421
422 if (authctxt == NULL)
423 fatal("input_userauth_failure: no authentication context");
424
Damien Miller874d77b2000-10-14 16:23:11 +1100425 authlist = packet_get_string(NULL);
Damien Miller62cee002000-09-23 17:15:56 +1100426 partial = packet_get_char();
Damien Miller48b03fc2002-01-22 23:11:40 +1100427 packet_check_eom();
Damien Miller62cee002000-09-23 17:15:56 +1100428
429 if (partial != 0)
Damien Miller996acd22003-04-09 20:59:48 +1000430 logit("Authenticated with partial success.");
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000431 debug("Authentications that can continue: %s", authlist);
Damien Miller62cee002000-09-23 17:15:56 +1100432
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000433 userauth(authctxt, authlist);
434}
435void
Damien Miller630d6f42002-01-22 23:17:30 +1100436input_userauth_pk_ok(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000437{
438 Authctxt *authctxt = ctxt;
439 Key *key = NULL;
Damien Miller280ecfb2003-05-14 13:46:00 +1000440 Identity *id = NULL;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000441 Buffer b;
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000442 int pktype, sent = 0;
443 u_int alen, blen;
444 char *pkalg, *fp;
445 u_char *pkblob;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000446
447 if (authctxt == NULL)
448 fatal("input_userauth_pk_ok: no authentication context");
449 if (datafellows & SSH_BUG_PKOK) {
450 /* this is similar to SSH_BUG_PKAUTH */
451 debug2("input_userauth_pk_ok: SSH_BUG_PKOK");
452 pkblob = packet_get_string(&blen);
453 buffer_init(&b);
454 buffer_append(&b, pkblob, blen);
455 pkalg = buffer_get_string(&b, &alen);
456 buffer_free(&b);
457 } else {
458 pkalg = packet_get_string(&alen);
459 pkblob = packet_get_string(&blen);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000460 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100461 packet_check_eom();
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000462
Damien Miller280ecfb2003-05-14 13:46:00 +1000463 debug("Server accepts key: pkalg %s blen %u", pkalg, blen);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000464
Damien Miller280ecfb2003-05-14 13:46:00 +1000465 if ((pktype = key_type_from_name(pkalg)) == KEY_UNSPEC) {
466 debug("unknown pkalg %s", pkalg);
467 goto done;
468 }
469 if ((key = key_from_blob(pkblob, blen)) == NULL) {
470 debug("no key from blob. pkalg %s", pkalg);
471 goto done;
472 }
473 if (key->type != pktype) {
474 error("input_userauth_pk_ok: type mismatch "
475 "for decoded key (received %d, expected %d)",
476 key->type, pktype);
477 goto done;
478 }
479 fp = key_fingerprint(key, SSH_FP_MD5, SSH_FP_HEX);
480 debug2("input_userauth_pk_ok: fp %s", fp);
481 xfree(fp);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000482
Darren Tuckerd05b6012003-10-15 15:55:59 +1000483 /*
484 * search keys in the reverse order, because last candidate has been
485 * moved to the end of the queue. this also avoids confusion by
486 * duplicate keys
487 */
Damien Miller0b51a522004-04-20 20:07:19 +1000488 TAILQ_FOREACH_REVERSE(id, &authctxt->keys, idlist, next) {
Damien Miller280ecfb2003-05-14 13:46:00 +1000489 if (key_equal(key, id->key)) {
490 sent = sign_and_send_pubkey(authctxt, id);
491 break;
492 }
493 }
494done:
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000495 if (key != NULL)
496 key_free(key);
497 xfree(pkalg);
498 xfree(pkblob);
499
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000500 /* try another method if we did not send a packet */
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000501 if (sent == 0)
502 userauth(authctxt, NULL);
Damien Miller62cee002000-09-23 17:15:56 +1100503}
504
Darren Tucker0efd1552003-08-26 11:49:55 +1000505#ifdef GSSAPI
Damien Millera8e06ce2003-11-21 23:48:55 +1100506int
Darren Tucker0efd1552003-08-26 11:49:55 +1000507userauth_gssapi(Authctxt *authctxt)
508{
509 Gssctxt *gssctxt = NULL;
Darren Tucker56afe142003-11-03 20:06:14 +1100510 static gss_OID_set gss_supported = NULL;
Damien Millereccb9de2005-06-17 12:59:34 +1000511 static u_int mech = 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000512 OM_uint32 min;
513 int ok = 0;
514
515 /* Try one GSSAPI method at a time, rather than sending them all at
516 * once. */
517
Darren Tucker56afe142003-11-03 20:06:14 +1100518 if (gss_supported == NULL)
519 gss_indicate_mechs(&min, &gss_supported);
Darren Tucker0efd1552003-08-26 11:49:55 +1000520
521 /* Check to see if the mechanism is usable before we offer it */
Darren Tucker56afe142003-11-03 20:06:14 +1100522 while (mech < gss_supported->count && !ok) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000523 /* My DER encoding requires length<128 */
Darren Tucker56afe142003-11-03 20:06:14 +1100524 if (gss_supported->elements[mech].length < 128 &&
Damien Millera1cb9f32006-08-19 00:33:34 +1000525 ssh_gssapi_check_mechanism(&gssctxt,
526 &gss_supported->elements[mech], authctxt->host)) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000527 ok = 1; /* Mechanism works */
528 } else {
529 mech++;
530 }
531 }
532
Damien Millera1cb9f32006-08-19 00:33:34 +1000533 if (!ok)
Damien Millereccb9de2005-06-17 12:59:34 +1000534 return 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000535
536 authctxt->methoddata=(void *)gssctxt;
537
538 packet_start(SSH2_MSG_USERAUTH_REQUEST);
539 packet_put_cstring(authctxt->server_user);
540 packet_put_cstring(authctxt->service);
541 packet_put_cstring(authctxt->method->name);
542
543 packet_put_int(1);
544
Darren Tucker655a5e02003-11-03 20:09:03 +1100545 packet_put_int((gss_supported->elements[mech].length) + 2);
546 packet_put_char(SSH_GSS_OIDTYPE);
547 packet_put_char(gss_supported->elements[mech].length);
548 packet_put_raw(gss_supported->elements[mech].elements,
549 gss_supported->elements[mech].length);
Darren Tucker0efd1552003-08-26 11:49:55 +1000550
551 packet_send();
552
553 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_RESPONSE, &input_gssapi_response);
554 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, &input_gssapi_token);
555 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_ERROR, &input_gssapi_error);
556 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, &input_gssapi_errtok);
557
558 mech++; /* Move along to next candidate */
559
560 return 1;
561}
562
Damien Miller91c6aa42003-11-17 21:20:18 +1100563static OM_uint32
564process_gssapi_token(void *ctxt, gss_buffer_t recv_tok)
565{
566 Authctxt *authctxt = ctxt;
567 Gssctxt *gssctxt = authctxt->methoddata;
568 gss_buffer_desc send_tok = GSS_C_EMPTY_BUFFER;
Damien Millerda9984f2005-08-31 19:46:26 +1000569 gss_buffer_desc mic = GSS_C_EMPTY_BUFFER;
570 gss_buffer_desc gssbuf;
Damien Miller0425d402003-11-17 22:18:21 +1100571 OM_uint32 status, ms, flags;
572 Buffer b;
Damien Miller787b2ec2003-11-21 23:56:47 +1100573
Damien Miller91c6aa42003-11-17 21:20:18 +1100574 status = ssh_gssapi_init_ctx(gssctxt, options.gss_deleg_creds,
Damien Miller0425d402003-11-17 22:18:21 +1100575 recv_tok, &send_tok, &flags);
Damien Miller91c6aa42003-11-17 21:20:18 +1100576
577 if (send_tok.length > 0) {
578 if (GSS_ERROR(status))
579 packet_start(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK);
580 else
581 packet_start(SSH2_MSG_USERAUTH_GSSAPI_TOKEN);
Damien Miller787b2ec2003-11-21 23:56:47 +1100582
Damien Miller91c6aa42003-11-17 21:20:18 +1100583 packet_put_string(send_tok.value, send_tok.length);
584 packet_send();
585 gss_release_buffer(&ms, &send_tok);
586 }
Damien Miller787b2ec2003-11-21 23:56:47 +1100587
Damien Miller91c6aa42003-11-17 21:20:18 +1100588 if (status == GSS_S_COMPLETE) {
Damien Miller0425d402003-11-17 22:18:21 +1100589 /* send either complete or MIC, depending on mechanism */
590 if (!(flags & GSS_C_INTEG_FLAG)) {
591 packet_start(SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE);
592 packet_send();
593 } else {
594 ssh_gssapi_buildmic(&b, authctxt->server_user,
595 authctxt->service, "gssapi-with-mic");
596
597 gssbuf.value = buffer_ptr(&b);
598 gssbuf.length = buffer_len(&b);
Damien Miller787b2ec2003-11-21 23:56:47 +1100599
Damien Miller0425d402003-11-17 22:18:21 +1100600 status = ssh_gssapi_sign(gssctxt, &gssbuf, &mic);
Damien Miller787b2ec2003-11-21 23:56:47 +1100601
Damien Miller0425d402003-11-17 22:18:21 +1100602 if (!GSS_ERROR(status)) {
603 packet_start(SSH2_MSG_USERAUTH_GSSAPI_MIC);
604 packet_put_string(mic.value, mic.length);
Damien Miller787b2ec2003-11-21 23:56:47 +1100605
Damien Miller0425d402003-11-17 22:18:21 +1100606 packet_send();
607 }
Damien Miller787b2ec2003-11-21 23:56:47 +1100608
Damien Miller0425d402003-11-17 22:18:21 +1100609 buffer_free(&b);
610 gss_release_buffer(&ms, &mic);
Damien Miller787b2ec2003-11-21 23:56:47 +1100611 }
Damien Miller91c6aa42003-11-17 21:20:18 +1100612 }
Damien Miller787b2ec2003-11-21 23:56:47 +1100613
Damien Miller91c6aa42003-11-17 21:20:18 +1100614 return status;
615}
616
Darren Tucker0efd1552003-08-26 11:49:55 +1000617void
618input_gssapi_response(int type, u_int32_t plen, void *ctxt)
619{
620 Authctxt *authctxt = ctxt;
621 Gssctxt *gssctxt;
Darren Tucker0efd1552003-08-26 11:49:55 +1000622 int oidlen;
623 char *oidv;
Darren Tucker0efd1552003-08-26 11:49:55 +1000624
625 if (authctxt == NULL)
626 fatal("input_gssapi_response: no authentication context");
627 gssctxt = authctxt->methoddata;
628
629 /* Setup our OID */
630 oidv = packet_get_string(&oidlen);
631
Darren Tucker655a5e02003-11-03 20:09:03 +1100632 if (oidlen <= 2 ||
633 oidv[0] != SSH_GSS_OIDTYPE ||
634 oidv[1] != oidlen - 2) {
Damien Miller91c6aa42003-11-17 21:20:18 +1100635 xfree(oidv);
Darren Tucker655a5e02003-11-03 20:09:03 +1100636 debug("Badly encoded mechanism OID received");
637 userauth(authctxt, NULL);
Darren Tucker655a5e02003-11-03 20:09:03 +1100638 return;
Darren Tucker0efd1552003-08-26 11:49:55 +1000639 }
640
Darren Tucker655a5e02003-11-03 20:09:03 +1100641 if (!ssh_gssapi_check_oid(gssctxt, oidv + 2, oidlen - 2))
642 fatal("Server returned different OID than expected");
643
Darren Tucker0efd1552003-08-26 11:49:55 +1000644 packet_check_eom();
645
646 xfree(oidv);
647
Damien Miller91c6aa42003-11-17 21:20:18 +1100648 if (GSS_ERROR(process_gssapi_token(ctxt, GSS_C_NO_BUFFER))) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000649 /* Start again with next method on list */
650 debug("Trying to start again");
651 userauth(authctxt, NULL);
652 return;
653 }
Darren Tucker0efd1552003-08-26 11:49:55 +1000654}
655
656void
657input_gssapi_token(int type, u_int32_t plen, void *ctxt)
658{
659 Authctxt *authctxt = ctxt;
Darren Tucker0efd1552003-08-26 11:49:55 +1000660 gss_buffer_desc recv_tok;
Damien Miller91c6aa42003-11-17 21:20:18 +1100661 OM_uint32 status;
Darren Tucker0efd1552003-08-26 11:49:55 +1000662 u_int slen;
663
664 if (authctxt == NULL)
665 fatal("input_gssapi_response: no authentication context");
Darren Tucker0efd1552003-08-26 11:49:55 +1000666
667 recv_tok.value = packet_get_string(&slen);
668 recv_tok.length = slen; /* safe typecast */
669
670 packet_check_eom();
671
Damien Miller91c6aa42003-11-17 21:20:18 +1100672 status = process_gssapi_token(ctxt, &recv_tok);
Darren Tucker0efd1552003-08-26 11:49:55 +1000673
674 xfree(recv_tok.value);
675
676 if (GSS_ERROR(status)) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000677 /* Start again with the next method in the list */
678 userauth(authctxt, NULL);
679 return;
680 }
Darren Tucker0efd1552003-08-26 11:49:55 +1000681}
682
683void
684input_gssapi_errtok(int type, u_int32_t plen, void *ctxt)
685{
686 Authctxt *authctxt = ctxt;
687 Gssctxt *gssctxt;
688 gss_buffer_desc send_tok = GSS_C_EMPTY_BUFFER;
689 gss_buffer_desc recv_tok;
690 OM_uint32 status, ms;
Darren Tucker600ad8d2003-08-26 12:10:48 +1000691 u_int len;
Darren Tucker0efd1552003-08-26 11:49:55 +1000692
693 if (authctxt == NULL)
694 fatal("input_gssapi_response: no authentication context");
695 gssctxt = authctxt->methoddata;
696
Darren Tucker600ad8d2003-08-26 12:10:48 +1000697 recv_tok.value = packet_get_string(&len);
698 recv_tok.length = len;
Darren Tucker0efd1552003-08-26 11:49:55 +1000699
700 packet_check_eom();
701
702 /* Stick it into GSSAPI and see what it says */
703 status = ssh_gssapi_init_ctx(gssctxt, options.gss_deleg_creds,
Damien Miller0dc1bef2005-07-17 17:22:45 +1000704 &recv_tok, &send_tok, NULL);
Darren Tucker0efd1552003-08-26 11:49:55 +1000705
706 xfree(recv_tok.value);
707 gss_release_buffer(&ms, &send_tok);
708
709 /* Server will be returning a failed packet after this one */
710}
711
712void
713input_gssapi_error(int type, u_int32_t plen, void *ctxt)
714{
715 OM_uint32 maj, min;
716 char *msg;
717 char *lang;
718
719 maj=packet_get_int();
720 min=packet_get_int();
721 msg=packet_get_string(NULL);
722 lang=packet_get_string(NULL);
723
724 packet_check_eom();
725
Damien Miller15d72a02005-11-05 15:07:33 +1100726 debug("Server GSSAPI Error:\n%s", msg);
Darren Tucker0efd1552003-08-26 11:49:55 +1000727 xfree(msg);
728 xfree(lang);
729}
730#endif /* GSSAPI */
731
Damien Millereba71ba2000-04-29 23:57:08 +1000732int
Damien Miller874d77b2000-10-14 16:23:11 +1100733userauth_none(Authctxt *authctxt)
734{
735 /* initial userauth request */
736 packet_start(SSH2_MSG_USERAUTH_REQUEST);
737 packet_put_cstring(authctxt->server_user);
738 packet_put_cstring(authctxt->service);
739 packet_put_cstring(authctxt->method->name);
740 packet_send();
Damien Miller874d77b2000-10-14 16:23:11 +1100741 return 1;
742}
743
744int
Damien Miller62cee002000-09-23 17:15:56 +1100745userauth_passwd(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000746{
Damien Millere247cc42000-05-07 12:03:14 +1000747 static int attempt = 0;
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000748 char prompt[150];
Damien Millereba71ba2000-04-29 23:57:08 +1000749 char *password;
750
Damien Millerd3a18572000-06-07 19:55:44 +1000751 if (attempt++ >= options.number_of_password_prompts)
Damien Millere247cc42000-05-07 12:03:14 +1000752 return 0;
753
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000754 if (attempt != 1)
Damien Millerd3a18572000-06-07 19:55:44 +1000755 error("Permission denied, please try again.");
756
Ben Lindstrom03df5bd2001-02-10 22:16:41 +0000757 snprintf(prompt, sizeof(prompt), "%.30s@%.128s's password: ",
Damien Miller62cee002000-09-23 17:15:56 +1100758 authctxt->server_user, authctxt->host);
Damien Millereba71ba2000-04-29 23:57:08 +1000759 password = read_passphrase(prompt, 0);
760 packet_start(SSH2_MSG_USERAUTH_REQUEST);
Damien Miller62cee002000-09-23 17:15:56 +1100761 packet_put_cstring(authctxt->server_user);
762 packet_put_cstring(authctxt->service);
Damien Miller874d77b2000-10-14 16:23:11 +1100763 packet_put_cstring(authctxt->method->name);
Damien Millereba71ba2000-04-29 23:57:08 +1000764 packet_put_char(0);
Ben Lindstrom5699c5f2001-03-05 06:17:49 +0000765 packet_put_cstring(password);
Damien Millereba71ba2000-04-29 23:57:08 +1000766 memset(password, 0, strlen(password));
767 xfree(password);
Damien Miller9f643902001-11-12 11:02:52 +1100768 packet_add_padding(64);
Damien Millereba71ba2000-04-29 23:57:08 +1000769 packet_send();
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000770
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000771 dispatch_set(SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ,
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000772 &input_userauth_passwd_changereq);
773
Damien Millereba71ba2000-04-29 23:57:08 +1000774 return 1;
775}
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000776/*
777 * parse PASSWD_CHANGEREQ, prompt user and send SSH2_MSG_USERAUTH_REQUEST
778 */
779void
Tim Ricec8549622002-03-31 12:49:38 -0800780input_userauth_passwd_changereq(int type, u_int32_t seqnr, void *ctxt)
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000781{
782 Authctxt *authctxt = ctxt;
783 char *info, *lang, *password = NULL, *retype = NULL;
784 char prompt[150];
785
786 debug2("input_userauth_passwd_changereq");
787
788 if (authctxt == NULL)
789 fatal("input_userauth_passwd_changereq: "
790 "no authentication context");
791
792 info = packet_get_string(NULL);
793 lang = packet_get_string(NULL);
794 if (strlen(info) > 0)
Damien Miller996acd22003-04-09 20:59:48 +1000795 logit("%s", info);
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000796 xfree(info);
797 xfree(lang);
798 packet_start(SSH2_MSG_USERAUTH_REQUEST);
799 packet_put_cstring(authctxt->server_user);
800 packet_put_cstring(authctxt->service);
801 packet_put_cstring(authctxt->method->name);
802 packet_put_char(1); /* additional info */
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000803 snprintf(prompt, sizeof(prompt),
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000804 "Enter %.30s@%.128s's old password: ",
805 authctxt->server_user, authctxt->host);
806 password = read_passphrase(prompt, 0);
807 packet_put_cstring(password);
808 memset(password, 0, strlen(password));
809 xfree(password);
810 password = NULL;
811 while (password == NULL) {
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000812 snprintf(prompt, sizeof(prompt),
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000813 "Enter %.30s@%.128s's new password: ",
814 authctxt->server_user, authctxt->host);
815 password = read_passphrase(prompt, RP_ALLOW_EOF);
816 if (password == NULL) {
817 /* bail out */
818 return;
819 }
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000820 snprintf(prompt, sizeof(prompt),
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000821 "Retype %.30s@%.128s's new password: ",
822 authctxt->server_user, authctxt->host);
823 retype = read_passphrase(prompt, 0);
824 if (strcmp(password, retype) != 0) {
825 memset(password, 0, strlen(password));
826 xfree(password);
Damien Miller996acd22003-04-09 20:59:48 +1000827 logit("Mismatch; try again, EOF to quit.");
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000828 password = NULL;
829 }
830 memset(retype, 0, strlen(retype));
831 xfree(retype);
832 }
833 packet_put_cstring(password);
834 memset(password, 0, strlen(password));
835 xfree(password);
836 packet_add_padding(64);
837 packet_send();
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000838
839 dispatch_set(SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ,
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000840 &input_userauth_passwd_changereq);
841}
Damien Millereba71ba2000-04-29 23:57:08 +1000842
Ben Lindstrombba81212001-06-25 05:01:22 +0000843static int
Damien Miller280ecfb2003-05-14 13:46:00 +1000844identity_sign(Identity *id, u_char **sigp, u_int *lenp,
845 u_char *data, u_int datalen)
846{
847 Key *prv;
848 int ret;
849
850 /* the agent supports this key */
851 if (id->ac)
852 return (ssh_agent_sign(id->ac, id->key, sigp, lenp,
853 data, datalen));
854 /*
855 * we have already loaded the private key or
856 * the private key is stored in external hardware
857 */
858 if (id->isprivate || (id->key->flags & KEY_FLAG_EXT))
859 return (key_sign(id->key, sigp, lenp, data, datalen));
860 /* load the private key from the file */
861 if ((prv = load_identity_file(id->filename)) == NULL)
862 return (-1);
863 ret = key_sign(prv, sigp, lenp, data, datalen);
864 key_free(prv);
865 return (ret);
866}
867
868static int
869sign_and_send_pubkey(Authctxt *authctxt, Identity *id)
Damien Millereba71ba2000-04-29 23:57:08 +1000870{
871 Buffer b;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000872 u_char *blob, *signature;
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000873 u_int bloblen, slen;
Darren Tucker502d3842003-06-28 12:38:01 +1000874 u_int skip = 0;
Damien Millerad833b32000-08-23 10:46:23 +1000875 int ret = -1;
Damien Miller874d77b2000-10-14 16:23:11 +1100876 int have_sig = 1;
Damien Millereba71ba2000-04-29 23:57:08 +1000877
Ben Lindstromd121f612000-12-03 17:00:47 +0000878 debug3("sign_and_send_pubkey");
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000879
Damien Miller280ecfb2003-05-14 13:46:00 +1000880 if (key_to_blob(id->key, &blob, &bloblen) == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100881 /* we cannot handle this key */
Ben Lindstromd121f612000-12-03 17:00:47 +0000882 debug3("sign_and_send_pubkey: cannot handle key");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100883 return 0;
884 }
Damien Millereba71ba2000-04-29 23:57:08 +1000885 /* data to be signed */
886 buffer_init(&b);
Damien Miller50a41ed2000-10-16 12:14:42 +1100887 if (datafellows & SSH_OLD_SESSIONID) {
Damien Miller6536c7d2000-06-22 21:32:31 +1000888 buffer_append(&b, session_id2, session_id2_len);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000889 skip = session_id2_len;
Damien Miller50a41ed2000-10-16 12:14:42 +1100890 } else {
891 buffer_put_string(&b, session_id2, session_id2_len);
892 skip = buffer_len(&b);
Damien Miller6536c7d2000-06-22 21:32:31 +1000893 }
Damien Millereba71ba2000-04-29 23:57:08 +1000894 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
Damien Miller62cee002000-09-23 17:15:56 +1100895 buffer_put_cstring(&b, authctxt->server_user);
Damien Miller30c3d422000-05-09 11:02:59 +1000896 buffer_put_cstring(&b,
Ben Lindstromd121f612000-12-03 17:00:47 +0000897 datafellows & SSH_BUG_PKSERVICE ?
Damien Miller30c3d422000-05-09 11:02:59 +1000898 "ssh-userauth" :
Damien Miller62cee002000-09-23 17:15:56 +1100899 authctxt->service);
Ben Lindstromd121f612000-12-03 17:00:47 +0000900 if (datafellows & SSH_BUG_PKAUTH) {
901 buffer_put_char(&b, have_sig);
902 } else {
903 buffer_put_cstring(&b, authctxt->method->name);
904 buffer_put_char(&b, have_sig);
Damien Miller280ecfb2003-05-14 13:46:00 +1000905 buffer_put_cstring(&b, key_ssh_name(id->key));
Ben Lindstromd121f612000-12-03 17:00:47 +0000906 }
Damien Millereba71ba2000-04-29 23:57:08 +1000907 buffer_put_string(&b, blob, bloblen);
Damien Millereba71ba2000-04-29 23:57:08 +1000908
909 /* generate signature */
Damien Miller280ecfb2003-05-14 13:46:00 +1000910 ret = identity_sign(id, &signature, &slen,
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000911 buffer_ptr(&b), buffer_len(&b));
Damien Millerad833b32000-08-23 10:46:23 +1000912 if (ret == -1) {
913 xfree(blob);
914 buffer_free(&b);
915 return 0;
916 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100917#ifdef DEBUG_PK
Damien Millereba71ba2000-04-29 23:57:08 +1000918 buffer_dump(&b);
919#endif
Ben Lindstromd121f612000-12-03 17:00:47 +0000920 if (datafellows & SSH_BUG_PKSERVICE) {
Damien Miller30c3d422000-05-09 11:02:59 +1000921 buffer_clear(&b);
922 buffer_append(&b, session_id2, session_id2_len);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000923 skip = session_id2_len;
Damien Miller30c3d422000-05-09 11:02:59 +1000924 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
Damien Miller62cee002000-09-23 17:15:56 +1100925 buffer_put_cstring(&b, authctxt->server_user);
926 buffer_put_cstring(&b, authctxt->service);
Damien Miller874d77b2000-10-14 16:23:11 +1100927 buffer_put_cstring(&b, authctxt->method->name);
928 buffer_put_char(&b, have_sig);
Ben Lindstromd121f612000-12-03 17:00:47 +0000929 if (!(datafellows & SSH_BUG_PKAUTH))
Damien Miller280ecfb2003-05-14 13:46:00 +1000930 buffer_put_cstring(&b, key_ssh_name(id->key));
Damien Miller30c3d422000-05-09 11:02:59 +1000931 buffer_put_string(&b, blob, bloblen);
932 }
933 xfree(blob);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000934
Damien Millereba71ba2000-04-29 23:57:08 +1000935 /* append signature */
936 buffer_put_string(&b, signature, slen);
937 xfree(signature);
938
939 /* skip session id and packet type */
Damien Miller6536c7d2000-06-22 21:32:31 +1000940 if (buffer_len(&b) < skip + 1)
Damien Miller62cee002000-09-23 17:15:56 +1100941 fatal("userauth_pubkey: internal error");
Damien Miller6536c7d2000-06-22 21:32:31 +1000942 buffer_consume(&b, skip + 1);
Damien Millereba71ba2000-04-29 23:57:08 +1000943
944 /* put remaining data from buffer into packet */
945 packet_start(SSH2_MSG_USERAUTH_REQUEST);
946 packet_put_raw(buffer_ptr(&b), buffer_len(&b));
947 buffer_free(&b);
Damien Millereba71ba2000-04-29 23:57:08 +1000948 packet_send();
Damien Millerad833b32000-08-23 10:46:23 +1000949
950 return 1;
Damien Miller994cf142000-07-21 10:19:44 +1000951}
952
Ben Lindstrombba81212001-06-25 05:01:22 +0000953static int
Damien Miller280ecfb2003-05-14 13:46:00 +1000954send_pubkey_test(Authctxt *authctxt, Identity *id)
Damien Miller994cf142000-07-21 10:19:44 +1000955{
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000956 u_char *blob;
Ben Lindstromc58ab022002-02-26 18:15:09 +0000957 u_int bloblen, have_sig = 0;
Damien Miller994cf142000-07-21 10:19:44 +1000958
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000959 debug3("send_pubkey_test");
960
Damien Miller280ecfb2003-05-14 13:46:00 +1000961 if (key_to_blob(id->key, &blob, &bloblen) == 0) {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000962 /* we cannot handle this key */
963 debug3("send_pubkey_test: cannot handle key");
Damien Miller994cf142000-07-21 10:19:44 +1000964 return 0;
965 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000966 /* register callback for USERAUTH_PK_OK message */
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000967 dispatch_set(SSH2_MSG_USERAUTH_PK_OK, &input_userauth_pk_ok);
Damien Miller994cf142000-07-21 10:19:44 +1000968
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000969 packet_start(SSH2_MSG_USERAUTH_REQUEST);
970 packet_put_cstring(authctxt->server_user);
971 packet_put_cstring(authctxt->service);
972 packet_put_cstring(authctxt->method->name);
973 packet_put_char(have_sig);
974 if (!(datafellows & SSH_BUG_PKAUTH))
Damien Miller280ecfb2003-05-14 13:46:00 +1000975 packet_put_cstring(key_ssh_name(id->key));
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000976 packet_put_string(blob, bloblen);
977 xfree(blob);
978 packet_send();
979 return 1;
980}
981
Ben Lindstrombba81212001-06-25 05:01:22 +0000982static Key *
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000983load_identity_file(char *filename)
984{
985 Key *private;
986 char prompt[300], *passphrase;
Darren Tucker232b76f2006-05-06 17:41:51 +1000987 int perm_ok, quit, i;
Ben Lindstrom329782e2001-03-10 17:08:59 +0000988 struct stat st;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000989
Ben Lindstrom329782e2001-03-10 17:08:59 +0000990 if (stat(filename, &st) < 0) {
991 debug3("no such identity: %s", filename);
992 return NULL;
993 }
Darren Tucker232b76f2006-05-06 17:41:51 +1000994 private = key_load_private_type(KEY_UNSPEC, filename, "", NULL, &perm_ok);
995 if (!perm_ok)
996 return NULL;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000997 if (private == NULL) {
998 if (options.batch_mode)
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000999 return NULL;
Damien Miller994cf142000-07-21 10:19:44 +10001000 snprintf(prompt, sizeof prompt,
Damien Miller9f0f5c62001-12-21 14:45:46 +11001001 "Enter passphrase for key '%.100s': ", filename);
Damien Miller62cee002000-09-23 17:15:56 +11001002 for (i = 0; i < options.number_of_password_prompts; i++) {
1003 passphrase = read_passphrase(prompt, 0);
1004 if (strcmp(passphrase, "") != 0) {
Darren Tucker232b76f2006-05-06 17:41:51 +10001005 private = key_load_private_type(KEY_UNSPEC,
1006 filename, passphrase, NULL, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001007 quit = 0;
Damien Miller62cee002000-09-23 17:15:56 +11001008 } else {
1009 debug2("no passphrase given, try next key");
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001010 quit = 1;
Damien Miller62cee002000-09-23 17:15:56 +11001011 }
1012 memset(passphrase, 0, strlen(passphrase));
1013 xfree(passphrase);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001014 if (private != NULL || quit)
Damien Miller62cee002000-09-23 17:15:56 +11001015 break;
1016 debug2("bad passphrase given, try again...");
1017 }
Damien Miller994cf142000-07-21 10:19:44 +10001018 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001019 return private;
1020}
1021
Damien Miller280ecfb2003-05-14 13:46:00 +10001022/*
1023 * try keys in the following order:
1024 * 1. agent keys that are found in the config file
1025 * 2. other agent keys
1026 * 3. keys that are only listed in the config file
1027 */
1028static void
1029pubkey_prepare(Authctxt *authctxt)
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001030{
Damien Miller280ecfb2003-05-14 13:46:00 +10001031 Identity *id;
1032 Idlist agent, files, *preferred;
1033 Key *key;
1034 AuthenticationConnection *ac;
Damien Millerad833b32000-08-23 10:46:23 +10001035 char *comment;
Damien Miller280ecfb2003-05-14 13:46:00 +10001036 int i, found;
Damien Millerad833b32000-08-23 10:46:23 +10001037
Damien Miller280ecfb2003-05-14 13:46:00 +10001038 TAILQ_INIT(&agent); /* keys from the agent */
1039 TAILQ_INIT(&files); /* keys from the config file */
1040 preferred = &authctxt->keys;
1041 TAILQ_INIT(preferred); /* preferred order of keys */
1042
1043 /* list of keys stored in the filesystem */
1044 for (i = 0; i < options.num_identity_files; i++) {
1045 key = options.identity_keys[i];
1046 if (key && key->type == KEY_RSA1)
1047 continue;
1048 options.identity_keys[i] = NULL;
Damien Miller07d86be2006-03-26 14:19:21 +11001049 id = xcalloc(1, sizeof(*id));
Damien Miller280ecfb2003-05-14 13:46:00 +10001050 id->key = key;
1051 id->filename = xstrdup(options.identity_files[i]);
1052 TAILQ_INSERT_TAIL(&files, id, next);
Damien Millerad833b32000-08-23 10:46:23 +10001053 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001054 /* list of keys supported by the agent */
1055 if ((ac = ssh_get_authentication_connection())) {
1056 for (key = ssh_get_first_identity(ac, &comment, 2);
1057 key != NULL;
1058 key = ssh_get_next_identity(ac, &comment, 2)) {
1059 found = 0;
1060 TAILQ_FOREACH(id, &files, next) {
Damien Millera8e06ce2003-11-21 23:48:55 +11001061 /* agent keys from the config file are preferred */
Damien Miller280ecfb2003-05-14 13:46:00 +10001062 if (key_equal(key, id->key)) {
1063 key_free(key);
1064 xfree(comment);
1065 TAILQ_REMOVE(&files, id, next);
1066 TAILQ_INSERT_TAIL(preferred, id, next);
1067 id->ac = ac;
1068 found = 1;
1069 break;
1070 }
1071 }
Damien Millerbd394c32004-03-08 23:12:36 +11001072 if (!found && !options.identities_only) {
Damien Miller07d86be2006-03-26 14:19:21 +11001073 id = xcalloc(1, sizeof(*id));
Damien Miller280ecfb2003-05-14 13:46:00 +10001074 id->key = key;
1075 id->filename = comment;
1076 id->ac = ac;
1077 TAILQ_INSERT_TAIL(&agent, id, next);
1078 }
1079 }
1080 /* append remaining agent keys */
1081 for (id = TAILQ_FIRST(&agent); id; id = TAILQ_FIRST(&agent)) {
1082 TAILQ_REMOVE(&agent, id, next);
1083 TAILQ_INSERT_TAIL(preferred, id, next);
1084 }
1085 authctxt->agent = ac;
Damien Miller62cee002000-09-23 17:15:56 +11001086 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001087 /* append remaining keys from the config file */
1088 for (id = TAILQ_FIRST(&files); id; id = TAILQ_FIRST(&files)) {
1089 TAILQ_REMOVE(&files, id, next);
1090 TAILQ_INSERT_TAIL(preferred, id, next);
1091 }
1092 TAILQ_FOREACH(id, preferred, next) {
1093 debug2("key: %s (%p)", id->filename, id->key);
1094 }
1095}
1096
1097static void
1098pubkey_cleanup(Authctxt *authctxt)
1099{
1100 Identity *id;
1101
1102 if (authctxt->agent != NULL)
1103 ssh_close_authentication_connection(authctxt->agent);
1104 for (id = TAILQ_FIRST(&authctxt->keys); id;
1105 id = TAILQ_FIRST(&authctxt->keys)) {
1106 TAILQ_REMOVE(&authctxt->keys, id, next);
1107 if (id->key)
1108 key_free(id->key);
1109 if (id->filename)
1110 xfree(id->filename);
1111 xfree(id);
1112 }
Damien Millereba71ba2000-04-29 23:57:08 +10001113}
1114
Damien Miller62cee002000-09-23 17:15:56 +11001115int
1116userauth_pubkey(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +10001117{
Damien Miller280ecfb2003-05-14 13:46:00 +10001118 Identity *id;
Damien Miller62cee002000-09-23 17:15:56 +11001119 int sent = 0;
Damien Millereba71ba2000-04-29 23:57:08 +10001120
Damien Miller280ecfb2003-05-14 13:46:00 +10001121 while ((id = TAILQ_FIRST(&authctxt->keys))) {
1122 if (id->tried++)
1123 return (0);
Darren Tuckerd05b6012003-10-15 15:55:59 +10001124 /* move key to the end of the queue */
Damien Miller280ecfb2003-05-14 13:46:00 +10001125 TAILQ_REMOVE(&authctxt->keys, id, next);
1126 TAILQ_INSERT_TAIL(&authctxt->keys, id, next);
1127 /*
1128 * send a test message if we have the public key. for
1129 * encrypted keys we cannot do this and have to load the
1130 * private key instead
1131 */
1132 if (id->key && id->key->type != KEY_RSA1) {
1133 debug("Offering public key: %s", id->filename);
1134 sent = send_pubkey_test(authctxt, id);
1135 } else if (id->key == NULL) {
1136 debug("Trying private key: %s", id->filename);
1137 id->key = load_identity_file(id->filename);
1138 if (id->key != NULL) {
1139 id->isprivate = 1;
1140 sent = sign_and_send_pubkey(authctxt, id);
1141 key_free(id->key);
1142 id->key = NULL;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001143 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001144 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001145 if (sent)
1146 return (sent);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001147 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001148 return (0);
Damien Miller62cee002000-09-23 17:15:56 +11001149}
Damien Millereba71ba2000-04-29 23:57:08 +10001150
Damien Miller874d77b2000-10-14 16:23:11 +11001151/*
1152 * Send userauth request message specifying keyboard-interactive method.
1153 */
1154int
1155userauth_kbdint(Authctxt *authctxt)
1156{
1157 static int attempt = 0;
1158
1159 if (attempt++ >= options.number_of_password_prompts)
1160 return 0;
Ben Lindstrom7d199962001-09-12 18:29:00 +00001161 /* disable if no SSH2_MSG_USERAUTH_INFO_REQUEST has been seen */
1162 if (attempt > 1 && !authctxt->info_req_seen) {
1163 debug3("userauth_kbdint: disable: no info_req_seen");
1164 dispatch_set(SSH2_MSG_USERAUTH_INFO_REQUEST, NULL);
1165 return 0;
1166 }
Damien Miller874d77b2000-10-14 16:23:11 +11001167
1168 debug2("userauth_kbdint");
1169 packet_start(SSH2_MSG_USERAUTH_REQUEST);
1170 packet_put_cstring(authctxt->server_user);
1171 packet_put_cstring(authctxt->service);
1172 packet_put_cstring(authctxt->method->name);
1173 packet_put_cstring(""); /* lang */
1174 packet_put_cstring(options.kbd_interactive_devices ?
1175 options.kbd_interactive_devices : "");
1176 packet_send();
Damien Miller874d77b2000-10-14 16:23:11 +11001177
1178 dispatch_set(SSH2_MSG_USERAUTH_INFO_REQUEST, &input_userauth_info_req);
1179 return 1;
1180}
1181
1182/*
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001183 * parse INFO_REQUEST, prompt user and send INFO_RESPONSE
Damien Miller874d77b2000-10-14 16:23:11 +11001184 */
1185void
Damien Miller630d6f42002-01-22 23:17:30 +11001186input_userauth_info_req(int type, u_int32_t seq, void *ctxt)
Damien Miller874d77b2000-10-14 16:23:11 +11001187{
1188 Authctxt *authctxt = ctxt;
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001189 char *name, *inst, *lang, *prompt, *response;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001190 u_int num_prompts, i;
Damien Miller874d77b2000-10-14 16:23:11 +11001191 int echo = 0;
1192
1193 debug2("input_userauth_info_req");
1194
1195 if (authctxt == NULL)
1196 fatal("input_userauth_info_req: no authentication context");
1197
Ben Lindstrom7d199962001-09-12 18:29:00 +00001198 authctxt->info_req_seen = 1;
1199
Damien Miller874d77b2000-10-14 16:23:11 +11001200 name = packet_get_string(NULL);
1201 inst = packet_get_string(NULL);
1202 lang = packet_get_string(NULL);
Damien Miller874d77b2000-10-14 16:23:11 +11001203 if (strlen(name) > 0)
Damien Miller996acd22003-04-09 20:59:48 +10001204 logit("%s", name);
Damien Miller874d77b2000-10-14 16:23:11 +11001205 if (strlen(inst) > 0)
Damien Miller996acd22003-04-09 20:59:48 +10001206 logit("%s", inst);
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001207 xfree(name);
Damien Miller874d77b2000-10-14 16:23:11 +11001208 xfree(inst);
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001209 xfree(lang);
Damien Miller874d77b2000-10-14 16:23:11 +11001210
1211 num_prompts = packet_get_int();
1212 /*
1213 * Begin to build info response packet based on prompts requested.
1214 * We commit to providing the correct number of responses, so if
1215 * further on we run into a problem that prevents this, we have to
1216 * be sure and clean this up and send a correct error response.
1217 */
1218 packet_start(SSH2_MSG_USERAUTH_INFO_RESPONSE);
1219 packet_put_int(num_prompts);
1220
Ben Lindstrom551ea372001-06-05 18:56:16 +00001221 debug2("input_userauth_info_req: num_prompts %d", num_prompts);
Damien Miller874d77b2000-10-14 16:23:11 +11001222 for (i = 0; i < num_prompts; i++) {
1223 prompt = packet_get_string(NULL);
1224 echo = packet_get_char();
1225
Ben Lindstrom949974b2001-06-25 05:20:31 +00001226 response = read_passphrase(prompt, echo ? RP_ECHO : 0);
Damien Miller874d77b2000-10-14 16:23:11 +11001227
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001228 packet_put_cstring(response);
Damien Miller874d77b2000-10-14 16:23:11 +11001229 memset(response, 0, strlen(response));
1230 xfree(response);
1231 xfree(prompt);
1232 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001233 packet_check_eom(); /* done with parsing incoming message. */
Damien Miller874d77b2000-10-14 16:23:11 +11001234
Damien Miller9f643902001-11-12 11:02:52 +11001235 packet_add_padding(64);
Damien Miller874d77b2000-10-14 16:23:11 +11001236 packet_send();
Damien Miller874d77b2000-10-14 16:23:11 +11001237}
Damien Miller62cee002000-09-23 17:15:56 +11001238
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001239static int
Ben Lindstrom5c385522002-06-23 21:23:20 +00001240ssh_keysign(Key *key, u_char **sigp, u_int *lenp,
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001241 u_char *data, u_int datalen)
1242{
1243 Buffer b;
Ben Lindstrom5206b952002-06-06 19:59:29 +00001244 struct stat st;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001245 pid_t pid;
Ben Lindstromcec2ea82002-06-06 20:51:04 +00001246 int to[2], from[2], status, version = 2;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001247
Ben Lindstrom1d568f92002-12-23 02:44:36 +00001248 debug2("ssh_keysign called");
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001249
Ben Lindstrom5206b952002-06-06 19:59:29 +00001250 if (stat(_PATH_SSH_KEY_SIGN, &st) < 0) {
1251 error("ssh_keysign: no installed: %s", strerror(errno));
1252 return -1;
1253 }
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001254 if (fflush(stdout) != 0)
1255 error("ssh_keysign: fflush: %s", strerror(errno));
1256 if (pipe(to) < 0) {
1257 error("ssh_keysign: pipe: %s", strerror(errno));
1258 return -1;
1259 }
1260 if (pipe(from) < 0) {
1261 error("ssh_keysign: pipe: %s", strerror(errno));
1262 return -1;
1263 }
1264 if ((pid = fork()) < 0) {
1265 error("ssh_keysign: fork: %s", strerror(errno));
1266 return -1;
1267 }
1268 if (pid == 0) {
Damien Miller2e5fe882006-06-13 13:10:00 +10001269 permanently_drop_suid(getuid());
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001270 close(from[0]);
1271 if (dup2(from[1], STDOUT_FILENO) < 0)
1272 fatal("ssh_keysign: dup2: %s", strerror(errno));
1273 close(to[1]);
1274 if (dup2(to[0], STDIN_FILENO) < 0)
1275 fatal("ssh_keysign: dup2: %s", strerror(errno));
Ben Lindstromcec2ea82002-06-06 20:51:04 +00001276 close(from[1]);
1277 close(to[0]);
Ben Lindstrom4887da22002-06-06 20:05:57 +00001278 execl(_PATH_SSH_KEY_SIGN, _PATH_SSH_KEY_SIGN, (char *) 0);
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001279 fatal("ssh_keysign: exec(%s): %s", _PATH_SSH_KEY_SIGN,
1280 strerror(errno));
1281 }
1282 close(from[1]);
1283 close(to[0]);
1284
1285 buffer_init(&b);
Ben Lindstromcec2ea82002-06-06 20:51:04 +00001286 buffer_put_int(&b, packet_get_connection_in()); /* send # of socket */
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001287 buffer_put_string(&b, data, datalen);
Damien Miller51bf11f2003-11-17 21:20:47 +11001288 if (ssh_msg_send(to[1], version, &b) == -1)
1289 fatal("ssh_keysign: couldn't send request");
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001290
Damien Miller901119b2002-10-04 11:10:04 +10001291 if (ssh_msg_recv(from[0], &b) < 0) {
Ben Lindstrom5206b952002-06-06 19:59:29 +00001292 error("ssh_keysign: no reply");
Damien Millerfb1310e2004-01-21 11:02:50 +11001293 buffer_free(&b);
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001294 return -1;
1295 }
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001296 close(from[0]);
1297 close(to[1]);
1298
Ben Lindstromcec2ea82002-06-06 20:51:04 +00001299 while (waitpid(pid, &status, 0) < 0)
1300 if (errno != EINTR)
1301 break;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001302
Ben Lindstrom5206b952002-06-06 19:59:29 +00001303 if (buffer_get_char(&b) != version) {
1304 error("ssh_keysign: bad version");
Damien Millerfb1310e2004-01-21 11:02:50 +11001305 buffer_free(&b);
Ben Lindstrom5206b952002-06-06 19:59:29 +00001306 return -1;
1307 }
1308 *sigp = buffer_get_string(&b, lenp);
Damien Millerfb1310e2004-01-21 11:02:50 +11001309 buffer_free(&b);
Ben Lindstrom5206b952002-06-06 19:59:29 +00001310
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001311 return 0;
1312}
1313
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001314int
1315userauth_hostbased(Authctxt *authctxt)
1316{
1317 Key *private = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001318 Sensitive *sensitive = authctxt->sensitive;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001319 Buffer b;
1320 u_char *signature, *blob;
Darren Tucker26c66622007-05-20 15:09:42 +10001321 char *chost, *pkalg, *p, myname[NI_MAXHOST];
Ben Lindstrom671388f2001-04-19 20:40:45 +00001322 const char *service;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001323 u_int blen, slen;
Ben Lindstrom2bffd6f2001-04-19 20:35:40 +00001324 int ok, i, len, found = 0;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001325
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001326 /* check for a useful key */
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001327 for (i = 0; i < sensitive->nkeys; i++) {
1328 private = sensitive->keys[i];
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001329 if (private && private->type != KEY_RSA1) {
1330 found = 1;
1331 /* we take and free the key */
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001332 sensitive->keys[i] = NULL;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001333 break;
1334 }
1335 }
1336 if (!found) {
Ben Lindstrom1d568f92002-12-23 02:44:36 +00001337 debug("No more client hostkeys for hostbased authentication.");
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001338 return 0;
1339 }
1340 if (key_to_blob(private, &blob, &blen) == 0) {
1341 key_free(private);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001342 return 0;
1343 }
Damien Miller91c18472001-11-12 11:02:03 +11001344 /* figure out a name for the client host */
Darren Tucker26c66622007-05-20 15:09:42 +10001345 p = NULL;
1346 if (packet_connection_is_on_socket())
1347 p = get_local_name(packet_get_connection_in());
1348 if (p == NULL) {
1349 if (gethostname(myname, sizeof(myname)) == -1) {
1350 verbose("userauth_hostbased: gethostname: %s",
1351 strerror(errno));
1352 } else
1353 p = xstrdup(myname);
1354 }
Damien Miller91c18472001-11-12 11:02:03 +11001355 if (p == NULL) {
1356 error("userauth_hostbased: cannot get local ipaddr/name");
1357 key_free(private);
Damien Miller5790b592006-03-26 13:54:03 +11001358 xfree(blob);
Damien Miller91c18472001-11-12 11:02:03 +11001359 return 0;
1360 }
1361 len = strlen(p) + 2;
Damien Miller07d86be2006-03-26 14:19:21 +11001362 xasprintf(&chost, "%s.", p);
Damien Miller91c18472001-11-12 11:02:03 +11001363 debug2("userauth_hostbased: chost %s", chost);
Damien Miller00111382003-03-10 11:21:17 +11001364 xfree(p);
Damien Miller91c18472001-11-12 11:02:03 +11001365
Ben Lindstrom671388f2001-04-19 20:40:45 +00001366 service = datafellows & SSH_BUG_HBSERVICE ? "ssh-userauth" :
1367 authctxt->service;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001368 pkalg = xstrdup(key_ssh_name(private));
1369 buffer_init(&b);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001370 /* construct data */
Ben Lindstrom671388f2001-04-19 20:40:45 +00001371 buffer_put_string(&b, session_id2, session_id2_len);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001372 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
1373 buffer_put_cstring(&b, authctxt->server_user);
Ben Lindstrom671388f2001-04-19 20:40:45 +00001374 buffer_put_cstring(&b, service);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001375 buffer_put_cstring(&b, authctxt->method->name);
1376 buffer_put_cstring(&b, pkalg);
1377 buffer_put_string(&b, blob, blen);
1378 buffer_put_cstring(&b, chost);
1379 buffer_put_cstring(&b, authctxt->local_user);
1380#ifdef DEBUG_PK
1381 buffer_dump(&b);
1382#endif
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001383 if (sensitive->external_keysign)
1384 ok = ssh_keysign(private, &signature, &slen,
1385 buffer_ptr(&b), buffer_len(&b));
1386 else
1387 ok = key_sign(private, &signature, &slen,
1388 buffer_ptr(&b), buffer_len(&b));
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001389 key_free(private);
1390 buffer_free(&b);
1391 if (ok != 0) {
1392 error("key_sign failed");
1393 xfree(chost);
1394 xfree(pkalg);
Damien Miller5790b592006-03-26 13:54:03 +11001395 xfree(blob);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001396 return 0;
1397 }
1398 packet_start(SSH2_MSG_USERAUTH_REQUEST);
1399 packet_put_cstring(authctxt->server_user);
1400 packet_put_cstring(authctxt->service);
1401 packet_put_cstring(authctxt->method->name);
1402 packet_put_cstring(pkalg);
1403 packet_put_string(blob, blen);
1404 packet_put_cstring(chost);
1405 packet_put_cstring(authctxt->local_user);
1406 packet_put_string(signature, slen);
1407 memset(signature, 's', slen);
1408 xfree(signature);
1409 xfree(chost);
1410 xfree(pkalg);
Damien Miller5790b592006-03-26 13:54:03 +11001411 xfree(blob);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001412
1413 packet_send();
1414 return 1;
1415}
1416
Damien Miller62cee002000-09-23 17:15:56 +11001417/* find auth method */
1418
Damien Miller62cee002000-09-23 17:15:56 +11001419/*
1420 * given auth method name, if configurable options permit this method fill
1421 * in auth_ident field and return true, otherwise return false.
1422 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001423static int
Damien Miller62cee002000-09-23 17:15:56 +11001424authmethod_is_enabled(Authmethod *method)
1425{
1426 if (method == NULL)
1427 return 0;
1428 /* return false if options indicate this method is disabled */
1429 if (method->enabled == NULL || *method->enabled == 0)
1430 return 0;
1431 /* return false if batch mode is enabled but method needs interactive mode */
1432 if (method->batch_flag != NULL && *method->batch_flag != 0)
1433 return 0;
1434 return 1;
1435}
1436
Ben Lindstrombba81212001-06-25 05:01:22 +00001437static Authmethod *
Damien Miller62cee002000-09-23 17:15:56 +11001438authmethod_lookup(const char *name)
1439{
1440 Authmethod *method = NULL;
1441 if (name != NULL)
1442 for (method = authmethods; method->name != NULL; method++)
1443 if (strcmp(name, method->name) == 0)
1444 return method;
1445 debug2("Unrecognized authentication method name: %s", name ? name : "NULL");
1446 return NULL;
1447}
1448
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001449/* XXX internal state */
1450static Authmethod *current = NULL;
1451static char *supported = NULL;
1452static char *preferred = NULL;
Ben Lindstrom5c385522002-06-23 21:23:20 +00001453
Damien Miller62cee002000-09-23 17:15:56 +11001454/*
1455 * Given the authentication method list sent by the server, return the
1456 * next method we should try. If the server initially sends a nil list,
Ben Lindstroma3700052001-04-05 23:26:32 +00001457 * use a built-in default list.
Kevin Stevesef4eea92001-02-05 12:42:17 +00001458 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001459static Authmethod *
Damien Miller62cee002000-09-23 17:15:56 +11001460authmethod_get(char *authlist)
1461{
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001462 char *name = NULL;
Ben Lindstromc58ab022002-02-26 18:15:09 +00001463 u_int next;
Kevin Stevesef4eea92001-02-05 12:42:17 +00001464
Damien Miller62cee002000-09-23 17:15:56 +11001465 /* Use a suitable default if we're passed a nil list. */
1466 if (authlist == NULL || strlen(authlist) == 0)
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001467 authlist = options.preferred_authentications;
Damien Miller62cee002000-09-23 17:15:56 +11001468
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001469 if (supported == NULL || strcmp(authlist, supported) != 0) {
1470 debug3("start over, passed a different list %s", authlist);
1471 if (supported != NULL)
1472 xfree(supported);
1473 supported = xstrdup(authlist);
1474 preferred = options.preferred_authentications;
1475 debug3("preferred %s", preferred);
1476 current = NULL;
1477 } else if (current != NULL && authmethod_is_enabled(current))
1478 return current;
Damien Millereba71ba2000-04-29 23:57:08 +10001479
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001480 for (;;) {
1481 if ((name = match_list(preferred, supported, &next)) == NULL) {
Ben Lindstrom1d568f92002-12-23 02:44:36 +00001482 debug("No more authentication methods to try.");
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001483 current = NULL;
1484 return NULL;
Damien Miller874d77b2000-10-14 16:23:11 +11001485 }
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001486 preferred += next;
1487 debug3("authmethod_lookup %s", name);
1488 debug3("remaining preferred: %s", preferred);
1489 if ((current = authmethod_lookup(name)) != NULL &&
1490 authmethod_is_enabled(current)) {
1491 debug3("authmethod_is_enabled %s", name);
Ben Lindstrom1d568f92002-12-23 02:44:36 +00001492 debug("Next authentication method: %s", name);
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001493 return current;
1494 }
Damien Millereba71ba2000-04-29 23:57:08 +10001495 }
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001496}
Damien Miller62cee002000-09-23 17:15:56 +11001497
Ben Lindstrom79073822001-07-04 03:42:30 +00001498static char *
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001499authmethods_get(void)
1500{
1501 Authmethod *method = NULL;
Damien Miller0e3b8722002-01-22 23:26:38 +11001502 Buffer b;
1503 char *list;
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001504
Damien Miller0e3b8722002-01-22 23:26:38 +11001505 buffer_init(&b);
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001506 for (method = authmethods; method->name != NULL; method++) {
1507 if (authmethod_is_enabled(method)) {
Damien Miller0e3b8722002-01-22 23:26:38 +11001508 if (buffer_len(&b) > 0)
1509 buffer_append(&b, ",", 1);
1510 buffer_append(&b, method->name, strlen(method->name));
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001511 }
Damien Miller62cee002000-09-23 17:15:56 +11001512 }
Damien Miller0e3b8722002-01-22 23:26:38 +11001513 buffer_append(&b, "\0", 1);
1514 list = xstrdup(buffer_ptr(&b));
1515 buffer_free(&b);
1516 return list;
Damien Millereba71ba2000-04-29 23:57:08 +10001517}