blob: f8d21489e48e43f3cd5352995889b65d7093d9c6 [file] [log] [blame]
Damien Millereba71ba2000-04-29 23:57:08 +10001/*
2 * Copyright (c) 2000 Markus Friedl. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
Damien Millereba71ba2000-04-29 23:57:08 +100012 *
13 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */
24
25#include "includes.h"
Damien Miller2eb63402006-03-15 11:09:42 +110026
Damien Miller9cf6d072006-03-15 11:29:24 +110027#include <sys/types.h>
28#include <sys/wait.h>
Damien Millerf17883e2006-03-15 11:45:54 +110029#include <sys/stat.h>
Damien Millereba71ba2000-04-29 23:57:08 +100030
Damien Miller9c617692003-05-14 14:31:11 +100031#include "openbsd-compat/sys-queue.h"
32
Damien Millereba71ba2000-04-29 23:57:08 +100033#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000034#include "ssh2.h"
Damien Millereba71ba2000-04-29 23:57:08 +100035#include "xmalloc.h"
Damien Millereba71ba2000-04-29 23:57:08 +100036#include "buffer.h"
37#include "packet.h"
Damien Millereba71ba2000-04-29 23:57:08 +100038#include "compat.h"
Damien Millereba71ba2000-04-29 23:57:08 +100039#include "bufaux.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000040#include "cipher.h"
Damien Millereba71ba2000-04-29 23:57:08 +100041#include "kex.h"
42#include "myproposal.h"
Damien Millereba71ba2000-04-29 23:57:08 +100043#include "sshconnect.h"
44#include "authfile.h"
Ben Lindstromdf221392001-03-29 00:36:16 +000045#include "dh.h"
Damien Millerad833b32000-08-23 10:46:23 +100046#include "authfd.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000047#include "log.h"
48#include "readconf.h"
Darren Tuckere608ca22004-05-13 16:15:47 +100049#include "misc.h"
Ben Lindstromb9be60a2001-03-11 01:49:19 +000050#include "match.h"
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000051#include "dispatch.h"
Ben Lindstrom5eabda32001-04-12 23:34:34 +000052#include "canohost.h"
Ben Lindstrom1bad2562002-06-06 19:57:33 +000053#include "msg.h"
54#include "pathnames.h"
Damien Miller874d77b2000-10-14 16:23:11 +110055
Darren Tucker0efd1552003-08-26 11:49:55 +100056#ifdef GSSAPI
57#include "ssh-gss.h"
58#endif
59
Damien Millereba71ba2000-04-29 23:57:08 +100060/* import */
61extern char *client_version_string;
62extern char *server_version_string;
63extern Options options;
64
65/*
66 * SSH2 key exchange
67 */
68
Ben Lindstrom46c16222000-12-22 01:43:59 +000069u_char *session_id2 = NULL;
Darren Tucker502d3842003-06-28 12:38:01 +100070u_int session_id2_len = 0;
Damien Millereba71ba2000-04-29 23:57:08 +100071
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000072char *xxx_host;
73struct sockaddr *xxx_hostaddr;
74
Ben Lindstromf28f6342001-04-04 02:03:04 +000075Kex *xxx_kex = NULL;
76
Ben Lindstrombba81212001-06-25 05:01:22 +000077static int
Ben Lindstromd6481ea2001-06-25 04:37:41 +000078verify_host_key_callback(Key *hostkey)
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000079{
Ben Lindstromd6481ea2001-06-25 04:37:41 +000080 if (verify_host_key(xxx_host, xxx_hostaddr, hostkey) == -1)
Damien Miller59d9fb92001-10-10 15:03:11 +100081 fatal("Host key verification failed.");
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000082 return 0;
83}
84
Damien Millereba71ba2000-04-29 23:57:08 +100085void
Damien Miller874d77b2000-10-14 16:23:11 +110086ssh_kex2(char *host, struct sockaddr *hostaddr)
87{
Damien Miller874d77b2000-10-14 16:23:11 +110088 Kex *kex;
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000089
90 xxx_host = host;
91 xxx_hostaddr = hostaddr;
Damien Miller874d77b2000-10-14 16:23:11 +110092
Damien Millere39cacc2000-11-29 12:18:44 +110093 if (options.ciphers == (char *)-1) {
Damien Miller996acd22003-04-09 20:59:48 +100094 logit("No valid ciphers for protocol version 2 given, using defaults.");
Damien Millere39cacc2000-11-29 12:18:44 +110095 options.ciphers = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +110096 }
97 if (options.ciphers != NULL) {
98 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
99 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
100 }
Damien Millera0ff4662001-03-30 10:49:35 +1000101 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
102 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_CTOS]);
103 myproposal[PROPOSAL_ENC_ALGS_STOC] =
104 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_STOC]);
Damien Miller874d77b2000-10-14 16:23:11 +1100105 if (options.compression) {
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000106 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
Damien Miller9786e6e2005-07-26 21:54:56 +1000107 myproposal[PROPOSAL_COMP_ALGS_STOC] = "zlib@openssh.com,zlib,none";
Damien Miller874d77b2000-10-14 16:23:11 +1100108 } else {
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000109 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
Damien Miller9786e6e2005-07-26 21:54:56 +1000110 myproposal[PROPOSAL_COMP_ALGS_STOC] = "none,zlib@openssh.com,zlib";
Damien Miller874d77b2000-10-14 16:23:11 +1100111 }
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000112 if (options.macs != NULL) {
113 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
114 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
115 }
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000116 if (options.hostkeyalgorithms != NULL)
Damien Miller9f0f5c62001-12-21 14:45:46 +1100117 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] =
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000118 options.hostkeyalgorithms;
Damien Miller874d77b2000-10-14 16:23:11 +1100119
Damien Millera5539d22003-04-09 20:50:06 +1000120 if (options.rekey_limit)
121 packet_set_rekey_limit(options.rekey_limit);
122
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000123 /* start key exchange */
Ben Lindstrom238abf62001-04-04 17:52:53 +0000124 kex = kex_setup(myproposal);
Damien Miller8e7fb332003-02-24 12:03:03 +1100125 kex->kex[KEX_DH_GRP1_SHA1] = kexdh_client;
Damien Millerf675fc42004-06-15 10:30:09 +1000126 kex->kex[KEX_DH_GRP14_SHA1] = kexdh_client;
Damien Miller8e7fb332003-02-24 12:03:03 +1100127 kex->kex[KEX_DH_GEX_SHA1] = kexgex_client;
Damien Millera63128d2006-03-15 12:08:28 +1100128 kex->kex[KEX_DH_GEX_SHA256] = kexgex_client;
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +0000129 kex->client_version_string=client_version_string;
130 kex->server_version_string=server_version_string;
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000131 kex->verify_host_key=&verify_host_key_callback;
Damien Miller874d77b2000-10-14 16:23:11 +1100132
Ben Lindstromf28f6342001-04-04 02:03:04 +0000133 xxx_kex = kex;
134
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000135 dispatch_run(DISPATCH_BLOCK, &kex->done, kex);
Damien Miller874d77b2000-10-14 16:23:11 +1100136
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000137 session_id2 = kex->session_id;
138 session_id2_len = kex->session_id_len;
139
Damien Miller874d77b2000-10-14 16:23:11 +1100140#ifdef DEBUG_KEXDH
141 /* send 1st encrypted/maced/compressed message */
142 packet_start(SSH2_MSG_IGNORE);
143 packet_put_cstring("markus");
144 packet_send();
145 packet_write_wait();
146#endif
Damien Millereba71ba2000-04-29 23:57:08 +1000147}
Damien Millerb1715dc2000-05-30 13:44:51 +1000148
Damien Millereba71ba2000-04-29 23:57:08 +1000149/*
150 * Authenticate user
151 */
Damien Miller62cee002000-09-23 17:15:56 +1100152
153typedef struct Authctxt Authctxt;
154typedef struct Authmethod Authmethod;
Damien Miller280ecfb2003-05-14 13:46:00 +1000155typedef struct identity Identity;
156typedef struct idlist Idlist;
Damien Miller62cee002000-09-23 17:15:56 +1100157
Damien Miller280ecfb2003-05-14 13:46:00 +1000158struct identity {
159 TAILQ_ENTRY(identity) next;
160 AuthenticationConnection *ac; /* set if agent supports key */
161 Key *key; /* public/private key */
162 char *filename; /* comment for agent-only keys */
163 int tried;
164 int isprivate; /* key points to the private key */
165};
166TAILQ_HEAD(idlist, identity);
Damien Miller62cee002000-09-23 17:15:56 +1100167
168struct Authctxt {
169 const char *server_user;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000170 const char *local_user;
Damien Miller62cee002000-09-23 17:15:56 +1100171 const char *host;
172 const char *service;
Damien Miller62cee002000-09-23 17:15:56 +1100173 Authmethod *method;
Damien Miller874d77b2000-10-14 16:23:11 +1100174 int success;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000175 char *authlist;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000176 /* pubkey */
Damien Miller280ecfb2003-05-14 13:46:00 +1000177 Idlist keys;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000178 AuthenticationConnection *agent;
179 /* hostbased */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000180 Sensitive *sensitive;
Ben Lindstrom7d199962001-09-12 18:29:00 +0000181 /* kbd-interactive */
182 int info_req_seen;
Darren Tucker0efd1552003-08-26 11:49:55 +1000183 /* generic */
184 void *methoddata;
Damien Miller62cee002000-09-23 17:15:56 +1100185};
186struct Authmethod {
187 char *name; /* string to compare against server's list */
188 int (*userauth)(Authctxt *authctxt);
189 int *enabled; /* flag in option struct that enables method */
190 int *batch_flag; /* flag in option struct that disables method */
191};
192
Damien Miller630d6f42002-01-22 23:17:30 +1100193void input_userauth_success(int, u_int32_t, void *);
194void input_userauth_failure(int, u_int32_t, void *);
195void input_userauth_banner(int, u_int32_t, void *);
196void input_userauth_error(int, u_int32_t, void *);
197void input_userauth_info_req(int, u_int32_t, void *);
198void input_userauth_pk_ok(int, u_int32_t, void *);
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000199void input_userauth_passwd_changereq(int, u_int32_t, void *);
Damien Miller874d77b2000-10-14 16:23:11 +1100200
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000201int userauth_none(Authctxt *);
202int userauth_pubkey(Authctxt *);
203int userauth_passwd(Authctxt *);
204int userauth_kbdint(Authctxt *);
205int userauth_hostbased(Authctxt *);
Damien Miller3ab496b2003-05-14 13:47:37 +1000206int userauth_kerberos(Authctxt *);
Damien Miller62cee002000-09-23 17:15:56 +1100207
Darren Tucker0efd1552003-08-26 11:49:55 +1000208#ifdef GSSAPI
209int userauth_gssapi(Authctxt *authctxt);
210void input_gssapi_response(int type, u_int32_t, void *);
211void input_gssapi_token(int type, u_int32_t, void *);
212void input_gssapi_hash(int type, u_int32_t, void *);
213void input_gssapi_error(int, u_int32_t, void *);
214void input_gssapi_errtok(int, u_int32_t, void *);
215#endif
216
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000217void userauth(Authctxt *, char *);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000218
Damien Miller280ecfb2003-05-14 13:46:00 +1000219static int sign_and_send_pubkey(Authctxt *, Identity *);
Damien Miller280ecfb2003-05-14 13:46:00 +1000220static void pubkey_prepare(Authctxt *);
221static void pubkey_cleanup(Authctxt *);
222static Key *load_identity_file(char *);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000223
Ben Lindstrombba81212001-06-25 05:01:22 +0000224static Authmethod *authmethod_get(char *authlist);
225static Authmethod *authmethod_lookup(const char *name);
226static char *authmethods_get(void);
Damien Miller62cee002000-09-23 17:15:56 +1100227
228Authmethod authmethods[] = {
Darren Tucker0efd1552003-08-26 11:49:55 +1000229#ifdef GSSAPI
Damien Miller0425d402003-11-17 22:18:21 +1100230 {"gssapi-with-mic",
Darren Tucker0efd1552003-08-26 11:49:55 +1000231 userauth_gssapi,
232 &options.gss_authentication,
233 NULL},
234#endif
Ben Lindstrom1bfe2912001-06-05 19:37:25 +0000235 {"hostbased",
236 userauth_hostbased,
237 &options.hostbased_authentication,
238 NULL},
Ben Lindstrom45350e82001-08-06 20:57:11 +0000239 {"publickey",
240 userauth_pubkey,
241 &options.pubkey_authentication,
242 NULL},
Damien Miller874d77b2000-10-14 16:23:11 +1100243 {"keyboard-interactive",
244 userauth_kbdint,
245 &options.kbd_interactive_authentication,
246 &options.batch_mode},
Ben Lindstrom45350e82001-08-06 20:57:11 +0000247 {"password",
248 userauth_passwd,
249 &options.password_authentication,
250 &options.batch_mode},
Damien Miller874d77b2000-10-14 16:23:11 +1100251 {"none",
252 userauth_none,
253 NULL,
254 NULL},
Damien Miller62cee002000-09-23 17:15:56 +1100255 {NULL, NULL, NULL, NULL}
256};
257
258void
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000259ssh_userauth2(const char *local_user, const char *server_user, char *host,
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000260 Sensitive *sensitive)
Damien Miller62cee002000-09-23 17:15:56 +1100261{
262 Authctxt authctxt;
263 int type;
Damien Miller62cee002000-09-23 17:15:56 +1100264
Ben Lindstrom551ea372001-06-05 18:56:16 +0000265 if (options.challenge_response_authentication)
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000266 options.kbd_interactive_authentication = 1;
267
Damien Miller62cee002000-09-23 17:15:56 +1100268 packet_start(SSH2_MSG_SERVICE_REQUEST);
269 packet_put_cstring("ssh-userauth");
270 packet_send();
Ben Lindstrom064496f2002-12-23 02:04:22 +0000271 debug("SSH2_MSG_SERVICE_REQUEST sent");
Damien Miller62cee002000-09-23 17:15:56 +1100272 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +1100273 type = packet_read();
Ben Lindstrom064496f2002-12-23 02:04:22 +0000274 if (type != SSH2_MSG_SERVICE_ACCEPT)
275 fatal("Server denied authentication request: %d", type);
Damien Miller62cee002000-09-23 17:15:56 +1100276 if (packet_remaining() > 0) {
Damien Millerdff50992002-01-22 23:16:32 +1100277 char *reply = packet_get_string(NULL);
Ben Lindstrom064496f2002-12-23 02:04:22 +0000278 debug2("service_accept: %s", reply);
Damien Miller62cee002000-09-23 17:15:56 +1100279 xfree(reply);
Damien Miller62cee002000-09-23 17:15:56 +1100280 } else {
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000281 debug2("buggy server: service_accept w/o service");
Damien Miller62cee002000-09-23 17:15:56 +1100282 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100283 packet_check_eom();
Ben Lindstrom064496f2002-12-23 02:04:22 +0000284 debug("SSH2_MSG_SERVICE_ACCEPT received");
Damien Miller62cee002000-09-23 17:15:56 +1100285
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000286 if (options.preferred_authentications == NULL)
287 options.preferred_authentications = authmethods_get();
288
Damien Miller62cee002000-09-23 17:15:56 +1100289 /* setup authentication context */
Ben Lindstrom7d199962001-09-12 18:29:00 +0000290 memset(&authctxt, 0, sizeof(authctxt));
Damien Miller280ecfb2003-05-14 13:46:00 +1000291 pubkey_prepare(&authctxt);
Damien Miller62cee002000-09-23 17:15:56 +1100292 authctxt.server_user = server_user;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000293 authctxt.local_user = local_user;
Damien Miller62cee002000-09-23 17:15:56 +1100294 authctxt.host = host;
295 authctxt.service = "ssh-connection"; /* service name */
296 authctxt.success = 0;
Damien Miller874d77b2000-10-14 16:23:11 +1100297 authctxt.method = authmethod_lookup("none");
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000298 authctxt.authlist = NULL;
Darren Tucker0efd1552003-08-26 11:49:55 +1000299 authctxt.methoddata = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000300 authctxt.sensitive = sensitive;
Ben Lindstrom7d199962001-09-12 18:29:00 +0000301 authctxt.info_req_seen = 0;
Damien Miller874d77b2000-10-14 16:23:11 +1100302 if (authctxt.method == NULL)
303 fatal("ssh_userauth2: internal error: cannot send userauth none request");
Damien Miller62cee002000-09-23 17:15:56 +1100304
305 /* initial userauth request */
Damien Miller874d77b2000-10-14 16:23:11 +1100306 userauth_none(&authctxt);
Damien Miller62cee002000-09-23 17:15:56 +1100307
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000308 dispatch_init(&input_userauth_error);
Damien Miller62cee002000-09-23 17:15:56 +1100309 dispatch_set(SSH2_MSG_USERAUTH_SUCCESS, &input_userauth_success);
310 dispatch_set(SSH2_MSG_USERAUTH_FAILURE, &input_userauth_failure);
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000311 dispatch_set(SSH2_MSG_USERAUTH_BANNER, &input_userauth_banner);
Damien Miller62cee002000-09-23 17:15:56 +1100312 dispatch_run(DISPATCH_BLOCK, &authctxt.success, &authctxt); /* loop until success */
313
Damien Miller280ecfb2003-05-14 13:46:00 +1000314 pubkey_cleanup(&authctxt);
Damien Millerf842fcb2003-05-15 12:01:28 +1000315 dispatch_range(SSH2_MSG_USERAUTH_MIN, SSH2_MSG_USERAUTH_MAX, NULL);
316
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000317 debug("Authentication succeeded (%s).", authctxt.method->name);
Damien Miller62cee002000-09-23 17:15:56 +1100318}
Damien Millerf842fcb2003-05-15 12:01:28 +1000319
Damien Miller62cee002000-09-23 17:15:56 +1100320void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000321userauth(Authctxt *authctxt, char *authlist)
322{
Darren Tucker0efd1552003-08-26 11:49:55 +1000323 if (authctxt->methoddata) {
324 xfree(authctxt->methoddata);
325 authctxt->methoddata = NULL;
326 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000327 if (authlist == NULL) {
328 authlist = authctxt->authlist;
329 } else {
330 if (authctxt->authlist)
331 xfree(authctxt->authlist);
332 authctxt->authlist = authlist;
333 }
334 for (;;) {
335 Authmethod *method = authmethod_get(authlist);
336 if (method == NULL)
337 fatal("Permission denied (%s).", authlist);
338 authctxt->method = method;
Damien Millerf842fcb2003-05-15 12:01:28 +1000339
340 /* reset the per method handler */
341 dispatch_range(SSH2_MSG_USERAUTH_PER_METHOD_MIN,
342 SSH2_MSG_USERAUTH_PER_METHOD_MAX, NULL);
343
344 /* and try new method */
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000345 if (method->userauth(authctxt) != 0) {
346 debug2("we sent a %s packet, wait for reply", method->name);
347 break;
348 } else {
349 debug2("we did not send a packet, disable method");
350 method->enabled = NULL;
351 }
352 }
353}
Ben Lindstrom5c385522002-06-23 21:23:20 +0000354
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000355void
Damien Miller630d6f42002-01-22 23:17:30 +1100356input_userauth_error(int type, u_int32_t seq, void *ctxt)
Damien Miller62cee002000-09-23 17:15:56 +1100357{
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000358 fatal("input_userauth_error: bad message during authentication: "
Damien Miller0dc1bef2005-07-17 17:22:45 +1000359 "type %d", type);
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000360}
Ben Lindstrom5c385522002-06-23 21:23:20 +0000361
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000362void
Damien Miller630d6f42002-01-22 23:17:30 +1100363input_userauth_banner(int type, u_int32_t seq, void *ctxt)
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000364{
365 char *msg, *lang;
Darren Tucker79644822003-10-08 17:37:58 +1000366
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000367 debug3("input_userauth_banner");
368 msg = packet_get_string(NULL);
369 lang = packet_get_string(NULL);
Darren Tucker046dff22003-10-08 17:32:02 +1000370 if (options.log_level > SYSLOG_LEVEL_QUIET)
371 fprintf(stderr, "%s", msg);
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000372 xfree(msg);
373 xfree(lang);
Damien Miller62cee002000-09-23 17:15:56 +1100374}
Ben Lindstrom5c385522002-06-23 21:23:20 +0000375
Damien Miller62cee002000-09-23 17:15:56 +1100376void
Damien Miller630d6f42002-01-22 23:17:30 +1100377input_userauth_success(int type, u_int32_t seq, void *ctxt)
Damien Miller62cee002000-09-23 17:15:56 +1100378{
379 Authctxt *authctxt = ctxt;
380 if (authctxt == NULL)
381 fatal("input_userauth_success: no authentication context");
Darren Tucker79644822003-10-08 17:37:58 +1000382 if (authctxt->authlist) {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000383 xfree(authctxt->authlist);
Darren Tucker79644822003-10-08 17:37:58 +1000384 authctxt->authlist = NULL;
385 }
386 if (authctxt->methoddata) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000387 xfree(authctxt->methoddata);
Darren Tucker79644822003-10-08 17:37:58 +1000388 authctxt->methoddata = NULL;
389 }
Damien Miller62cee002000-09-23 17:15:56 +1100390 authctxt->success = 1; /* break out */
391}
Ben Lindstrom5c385522002-06-23 21:23:20 +0000392
Damien Miller62cee002000-09-23 17:15:56 +1100393void
Damien Miller630d6f42002-01-22 23:17:30 +1100394input_userauth_failure(int type, u_int32_t seq, void *ctxt)
Damien Miller62cee002000-09-23 17:15:56 +1100395{
Damien Miller62cee002000-09-23 17:15:56 +1100396 Authctxt *authctxt = ctxt;
397 char *authlist = NULL;
398 int partial;
Damien Miller62cee002000-09-23 17:15:56 +1100399
400 if (authctxt == NULL)
401 fatal("input_userauth_failure: no authentication context");
402
Damien Miller874d77b2000-10-14 16:23:11 +1100403 authlist = packet_get_string(NULL);
Damien Miller62cee002000-09-23 17:15:56 +1100404 partial = packet_get_char();
Damien Miller48b03fc2002-01-22 23:11:40 +1100405 packet_check_eom();
Damien Miller62cee002000-09-23 17:15:56 +1100406
407 if (partial != 0)
Damien Miller996acd22003-04-09 20:59:48 +1000408 logit("Authenticated with partial success.");
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000409 debug("Authentications that can continue: %s", authlist);
Damien Miller62cee002000-09-23 17:15:56 +1100410
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000411 userauth(authctxt, authlist);
412}
413void
Damien Miller630d6f42002-01-22 23:17:30 +1100414input_userauth_pk_ok(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000415{
416 Authctxt *authctxt = ctxt;
417 Key *key = NULL;
Damien Miller280ecfb2003-05-14 13:46:00 +1000418 Identity *id = NULL;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000419 Buffer b;
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000420 int pktype, sent = 0;
421 u_int alen, blen;
422 char *pkalg, *fp;
423 u_char *pkblob;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000424
425 if (authctxt == NULL)
426 fatal("input_userauth_pk_ok: no authentication context");
427 if (datafellows & SSH_BUG_PKOK) {
428 /* this is similar to SSH_BUG_PKAUTH */
429 debug2("input_userauth_pk_ok: SSH_BUG_PKOK");
430 pkblob = packet_get_string(&blen);
431 buffer_init(&b);
432 buffer_append(&b, pkblob, blen);
433 pkalg = buffer_get_string(&b, &alen);
434 buffer_free(&b);
435 } else {
436 pkalg = packet_get_string(&alen);
437 pkblob = packet_get_string(&blen);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000438 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100439 packet_check_eom();
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000440
Damien Miller280ecfb2003-05-14 13:46:00 +1000441 debug("Server accepts key: pkalg %s blen %u", pkalg, blen);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000442
Damien Miller280ecfb2003-05-14 13:46:00 +1000443 if ((pktype = key_type_from_name(pkalg)) == KEY_UNSPEC) {
444 debug("unknown pkalg %s", pkalg);
445 goto done;
446 }
447 if ((key = key_from_blob(pkblob, blen)) == NULL) {
448 debug("no key from blob. pkalg %s", pkalg);
449 goto done;
450 }
451 if (key->type != pktype) {
452 error("input_userauth_pk_ok: type mismatch "
453 "for decoded key (received %d, expected %d)",
454 key->type, pktype);
455 goto done;
456 }
457 fp = key_fingerprint(key, SSH_FP_MD5, SSH_FP_HEX);
458 debug2("input_userauth_pk_ok: fp %s", fp);
459 xfree(fp);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000460
Darren Tuckerd05b6012003-10-15 15:55:59 +1000461 /*
462 * search keys in the reverse order, because last candidate has been
463 * moved to the end of the queue. this also avoids confusion by
464 * duplicate keys
465 */
Damien Miller0b51a522004-04-20 20:07:19 +1000466 TAILQ_FOREACH_REVERSE(id, &authctxt->keys, idlist, next) {
Damien Miller280ecfb2003-05-14 13:46:00 +1000467 if (key_equal(key, id->key)) {
468 sent = sign_and_send_pubkey(authctxt, id);
469 break;
470 }
471 }
472done:
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000473 if (key != NULL)
474 key_free(key);
475 xfree(pkalg);
476 xfree(pkblob);
477
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000478 /* try another method if we did not send a packet */
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000479 if (sent == 0)
480 userauth(authctxt, NULL);
Damien Miller62cee002000-09-23 17:15:56 +1100481}
482
Darren Tucker0efd1552003-08-26 11:49:55 +1000483#ifdef GSSAPI
Damien Millera8e06ce2003-11-21 23:48:55 +1100484int
Darren Tucker0efd1552003-08-26 11:49:55 +1000485userauth_gssapi(Authctxt *authctxt)
486{
487 Gssctxt *gssctxt = NULL;
Darren Tucker56afe142003-11-03 20:06:14 +1100488 static gss_OID_set gss_supported = NULL;
Damien Millereccb9de2005-06-17 12:59:34 +1000489 static u_int mech = 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000490 OM_uint32 min;
491 int ok = 0;
492
493 /* Try one GSSAPI method at a time, rather than sending them all at
494 * once. */
495
Darren Tucker56afe142003-11-03 20:06:14 +1100496 if (gss_supported == NULL)
497 gss_indicate_mechs(&min, &gss_supported);
Darren Tucker0efd1552003-08-26 11:49:55 +1000498
499 /* Check to see if the mechanism is usable before we offer it */
Darren Tucker56afe142003-11-03 20:06:14 +1100500 while (mech < gss_supported->count && !ok) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000501 if (gssctxt)
502 ssh_gssapi_delete_ctx(&gssctxt);
503 ssh_gssapi_build_ctx(&gssctxt);
Darren Tucker56afe142003-11-03 20:06:14 +1100504 ssh_gssapi_set_oid(gssctxt, &gss_supported->elements[mech]);
Darren Tucker0efd1552003-08-26 11:49:55 +1000505
506 /* My DER encoding requires length<128 */
Darren Tucker56afe142003-11-03 20:06:14 +1100507 if (gss_supported->elements[mech].length < 128 &&
Darren Tucker0efd1552003-08-26 11:49:55 +1000508 !GSS_ERROR(ssh_gssapi_import_name(gssctxt,
509 authctxt->host))) {
510 ok = 1; /* Mechanism works */
511 } else {
512 mech++;
513 }
514 }
515
Damien Miller5790b592006-03-26 13:54:03 +1100516 if (!ok) {
517 ssh_gssapi_delete_ctx(&gssctxt);
Damien Millereccb9de2005-06-17 12:59:34 +1000518 return 0;
Damien Miller5790b592006-03-26 13:54:03 +1100519 }
Darren Tucker0efd1552003-08-26 11:49:55 +1000520
521 authctxt->methoddata=(void *)gssctxt;
522
523 packet_start(SSH2_MSG_USERAUTH_REQUEST);
524 packet_put_cstring(authctxt->server_user);
525 packet_put_cstring(authctxt->service);
526 packet_put_cstring(authctxt->method->name);
527
528 packet_put_int(1);
529
Darren Tucker655a5e02003-11-03 20:09:03 +1100530 packet_put_int((gss_supported->elements[mech].length) + 2);
531 packet_put_char(SSH_GSS_OIDTYPE);
532 packet_put_char(gss_supported->elements[mech].length);
533 packet_put_raw(gss_supported->elements[mech].elements,
534 gss_supported->elements[mech].length);
Darren Tucker0efd1552003-08-26 11:49:55 +1000535
536 packet_send();
537
538 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_RESPONSE, &input_gssapi_response);
539 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, &input_gssapi_token);
540 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_ERROR, &input_gssapi_error);
541 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, &input_gssapi_errtok);
542
543 mech++; /* Move along to next candidate */
544
545 return 1;
546}
547
Damien Miller91c6aa42003-11-17 21:20:18 +1100548static OM_uint32
549process_gssapi_token(void *ctxt, gss_buffer_t recv_tok)
550{
551 Authctxt *authctxt = ctxt;
552 Gssctxt *gssctxt = authctxt->methoddata;
553 gss_buffer_desc send_tok = GSS_C_EMPTY_BUFFER;
Damien Millerda9984f2005-08-31 19:46:26 +1000554 gss_buffer_desc mic = GSS_C_EMPTY_BUFFER;
555 gss_buffer_desc gssbuf;
Damien Miller0425d402003-11-17 22:18:21 +1100556 OM_uint32 status, ms, flags;
557 Buffer b;
Damien Miller787b2ec2003-11-21 23:56:47 +1100558
Damien Miller91c6aa42003-11-17 21:20:18 +1100559 status = ssh_gssapi_init_ctx(gssctxt, options.gss_deleg_creds,
Damien Miller0425d402003-11-17 22:18:21 +1100560 recv_tok, &send_tok, &flags);
Damien Miller91c6aa42003-11-17 21:20:18 +1100561
562 if (send_tok.length > 0) {
563 if (GSS_ERROR(status))
564 packet_start(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK);
565 else
566 packet_start(SSH2_MSG_USERAUTH_GSSAPI_TOKEN);
Damien Miller787b2ec2003-11-21 23:56:47 +1100567
Damien Miller91c6aa42003-11-17 21:20:18 +1100568 packet_put_string(send_tok.value, send_tok.length);
569 packet_send();
570 gss_release_buffer(&ms, &send_tok);
571 }
Damien Miller787b2ec2003-11-21 23:56:47 +1100572
Damien Miller91c6aa42003-11-17 21:20:18 +1100573 if (status == GSS_S_COMPLETE) {
Damien Miller0425d402003-11-17 22:18:21 +1100574 /* send either complete or MIC, depending on mechanism */
575 if (!(flags & GSS_C_INTEG_FLAG)) {
576 packet_start(SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE);
577 packet_send();
578 } else {
579 ssh_gssapi_buildmic(&b, authctxt->server_user,
580 authctxt->service, "gssapi-with-mic");
581
582 gssbuf.value = buffer_ptr(&b);
583 gssbuf.length = buffer_len(&b);
Damien Miller787b2ec2003-11-21 23:56:47 +1100584
Damien Miller0425d402003-11-17 22:18:21 +1100585 status = ssh_gssapi_sign(gssctxt, &gssbuf, &mic);
Damien Miller787b2ec2003-11-21 23:56:47 +1100586
Damien Miller0425d402003-11-17 22:18:21 +1100587 if (!GSS_ERROR(status)) {
588 packet_start(SSH2_MSG_USERAUTH_GSSAPI_MIC);
589 packet_put_string(mic.value, mic.length);
Damien Miller787b2ec2003-11-21 23:56:47 +1100590
Damien Miller0425d402003-11-17 22:18:21 +1100591 packet_send();
592 }
Damien Miller787b2ec2003-11-21 23:56:47 +1100593
Damien Miller0425d402003-11-17 22:18:21 +1100594 buffer_free(&b);
595 gss_release_buffer(&ms, &mic);
Damien Miller787b2ec2003-11-21 23:56:47 +1100596 }
Damien Miller91c6aa42003-11-17 21:20:18 +1100597 }
Damien Miller787b2ec2003-11-21 23:56:47 +1100598
Damien Miller91c6aa42003-11-17 21:20:18 +1100599 return status;
600}
601
Darren Tucker0efd1552003-08-26 11:49:55 +1000602void
603input_gssapi_response(int type, u_int32_t plen, void *ctxt)
604{
605 Authctxt *authctxt = ctxt;
606 Gssctxt *gssctxt;
Darren Tucker0efd1552003-08-26 11:49:55 +1000607 int oidlen;
608 char *oidv;
Darren Tucker0efd1552003-08-26 11:49:55 +1000609
610 if (authctxt == NULL)
611 fatal("input_gssapi_response: no authentication context");
612 gssctxt = authctxt->methoddata;
613
614 /* Setup our OID */
615 oidv = packet_get_string(&oidlen);
616
Darren Tucker655a5e02003-11-03 20:09:03 +1100617 if (oidlen <= 2 ||
618 oidv[0] != SSH_GSS_OIDTYPE ||
619 oidv[1] != oidlen - 2) {
Damien Miller91c6aa42003-11-17 21:20:18 +1100620 xfree(oidv);
Darren Tucker655a5e02003-11-03 20:09:03 +1100621 debug("Badly encoded mechanism OID received");
622 userauth(authctxt, NULL);
Darren Tucker655a5e02003-11-03 20:09:03 +1100623 return;
Darren Tucker0efd1552003-08-26 11:49:55 +1000624 }
625
Darren Tucker655a5e02003-11-03 20:09:03 +1100626 if (!ssh_gssapi_check_oid(gssctxt, oidv + 2, oidlen - 2))
627 fatal("Server returned different OID than expected");
628
Darren Tucker0efd1552003-08-26 11:49:55 +1000629 packet_check_eom();
630
631 xfree(oidv);
632
Damien Miller91c6aa42003-11-17 21:20:18 +1100633 if (GSS_ERROR(process_gssapi_token(ctxt, GSS_C_NO_BUFFER))) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000634 /* Start again with next method on list */
635 debug("Trying to start again");
636 userauth(authctxt, NULL);
637 return;
638 }
Darren Tucker0efd1552003-08-26 11:49:55 +1000639}
640
641void
642input_gssapi_token(int type, u_int32_t plen, void *ctxt)
643{
644 Authctxt *authctxt = ctxt;
Darren Tucker0efd1552003-08-26 11:49:55 +1000645 gss_buffer_desc recv_tok;
Damien Miller91c6aa42003-11-17 21:20:18 +1100646 OM_uint32 status;
Darren Tucker0efd1552003-08-26 11:49:55 +1000647 u_int slen;
648
649 if (authctxt == NULL)
650 fatal("input_gssapi_response: no authentication context");
Darren Tucker0efd1552003-08-26 11:49:55 +1000651
652 recv_tok.value = packet_get_string(&slen);
653 recv_tok.length = slen; /* safe typecast */
654
655 packet_check_eom();
656
Damien Miller91c6aa42003-11-17 21:20:18 +1100657 status = process_gssapi_token(ctxt, &recv_tok);
Darren Tucker0efd1552003-08-26 11:49:55 +1000658
659 xfree(recv_tok.value);
660
661 if (GSS_ERROR(status)) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000662 /* Start again with the next method in the list */
663 userauth(authctxt, NULL);
664 return;
665 }
Darren Tucker0efd1552003-08-26 11:49:55 +1000666}
667
668void
669input_gssapi_errtok(int type, u_int32_t plen, void *ctxt)
670{
671 Authctxt *authctxt = ctxt;
672 Gssctxt *gssctxt;
673 gss_buffer_desc send_tok = GSS_C_EMPTY_BUFFER;
674 gss_buffer_desc recv_tok;
675 OM_uint32 status, ms;
Darren Tucker600ad8d2003-08-26 12:10:48 +1000676 u_int len;
Darren Tucker0efd1552003-08-26 11:49:55 +1000677
678 if (authctxt == NULL)
679 fatal("input_gssapi_response: no authentication context");
680 gssctxt = authctxt->methoddata;
681
Darren Tucker600ad8d2003-08-26 12:10:48 +1000682 recv_tok.value = packet_get_string(&len);
683 recv_tok.length = len;
Darren Tucker0efd1552003-08-26 11:49:55 +1000684
685 packet_check_eom();
686
687 /* Stick it into GSSAPI and see what it says */
688 status = ssh_gssapi_init_ctx(gssctxt, options.gss_deleg_creds,
Damien Miller0dc1bef2005-07-17 17:22:45 +1000689 &recv_tok, &send_tok, NULL);
Darren Tucker0efd1552003-08-26 11:49:55 +1000690
691 xfree(recv_tok.value);
692 gss_release_buffer(&ms, &send_tok);
693
694 /* Server will be returning a failed packet after this one */
695}
696
697void
698input_gssapi_error(int type, u_int32_t plen, void *ctxt)
699{
700 OM_uint32 maj, min;
701 char *msg;
702 char *lang;
703
704 maj=packet_get_int();
705 min=packet_get_int();
706 msg=packet_get_string(NULL);
707 lang=packet_get_string(NULL);
708
709 packet_check_eom();
710
Damien Miller15d72a02005-11-05 15:07:33 +1100711 debug("Server GSSAPI Error:\n%s", msg);
Darren Tucker0efd1552003-08-26 11:49:55 +1000712 xfree(msg);
713 xfree(lang);
714}
715#endif /* GSSAPI */
716
Damien Millereba71ba2000-04-29 23:57:08 +1000717int
Damien Miller874d77b2000-10-14 16:23:11 +1100718userauth_none(Authctxt *authctxt)
719{
720 /* initial userauth request */
721 packet_start(SSH2_MSG_USERAUTH_REQUEST);
722 packet_put_cstring(authctxt->server_user);
723 packet_put_cstring(authctxt->service);
724 packet_put_cstring(authctxt->method->name);
725 packet_send();
Damien Miller874d77b2000-10-14 16:23:11 +1100726 return 1;
727}
728
729int
Damien Miller62cee002000-09-23 17:15:56 +1100730userauth_passwd(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000731{
Damien Millere247cc42000-05-07 12:03:14 +1000732 static int attempt = 0;
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000733 char prompt[150];
Damien Millereba71ba2000-04-29 23:57:08 +1000734 char *password;
735
Damien Millerd3a18572000-06-07 19:55:44 +1000736 if (attempt++ >= options.number_of_password_prompts)
Damien Millere247cc42000-05-07 12:03:14 +1000737 return 0;
738
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000739 if (attempt != 1)
Damien Millerd3a18572000-06-07 19:55:44 +1000740 error("Permission denied, please try again.");
741
Ben Lindstrom03df5bd2001-02-10 22:16:41 +0000742 snprintf(prompt, sizeof(prompt), "%.30s@%.128s's password: ",
Damien Miller62cee002000-09-23 17:15:56 +1100743 authctxt->server_user, authctxt->host);
Damien Millereba71ba2000-04-29 23:57:08 +1000744 password = read_passphrase(prompt, 0);
745 packet_start(SSH2_MSG_USERAUTH_REQUEST);
Damien Miller62cee002000-09-23 17:15:56 +1100746 packet_put_cstring(authctxt->server_user);
747 packet_put_cstring(authctxt->service);
Damien Miller874d77b2000-10-14 16:23:11 +1100748 packet_put_cstring(authctxt->method->name);
Damien Millereba71ba2000-04-29 23:57:08 +1000749 packet_put_char(0);
Ben Lindstrom5699c5f2001-03-05 06:17:49 +0000750 packet_put_cstring(password);
Damien Millereba71ba2000-04-29 23:57:08 +1000751 memset(password, 0, strlen(password));
752 xfree(password);
Damien Miller9f643902001-11-12 11:02:52 +1100753 packet_add_padding(64);
Damien Millereba71ba2000-04-29 23:57:08 +1000754 packet_send();
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000755
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000756 dispatch_set(SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ,
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000757 &input_userauth_passwd_changereq);
758
Damien Millereba71ba2000-04-29 23:57:08 +1000759 return 1;
760}
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000761/*
762 * parse PASSWD_CHANGEREQ, prompt user and send SSH2_MSG_USERAUTH_REQUEST
763 */
764void
Tim Ricec8549622002-03-31 12:49:38 -0800765input_userauth_passwd_changereq(int type, u_int32_t seqnr, void *ctxt)
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000766{
767 Authctxt *authctxt = ctxt;
768 char *info, *lang, *password = NULL, *retype = NULL;
769 char prompt[150];
770
771 debug2("input_userauth_passwd_changereq");
772
773 if (authctxt == NULL)
774 fatal("input_userauth_passwd_changereq: "
775 "no authentication context");
776
777 info = packet_get_string(NULL);
778 lang = packet_get_string(NULL);
779 if (strlen(info) > 0)
Damien Miller996acd22003-04-09 20:59:48 +1000780 logit("%s", info);
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000781 xfree(info);
782 xfree(lang);
783 packet_start(SSH2_MSG_USERAUTH_REQUEST);
784 packet_put_cstring(authctxt->server_user);
785 packet_put_cstring(authctxt->service);
786 packet_put_cstring(authctxt->method->name);
787 packet_put_char(1); /* additional info */
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000788 snprintf(prompt, sizeof(prompt),
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000789 "Enter %.30s@%.128s's old password: ",
790 authctxt->server_user, authctxt->host);
791 password = read_passphrase(prompt, 0);
792 packet_put_cstring(password);
793 memset(password, 0, strlen(password));
794 xfree(password);
795 password = NULL;
796 while (password == NULL) {
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000797 snprintf(prompt, sizeof(prompt),
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000798 "Enter %.30s@%.128s's new password: ",
799 authctxt->server_user, authctxt->host);
800 password = read_passphrase(prompt, RP_ALLOW_EOF);
801 if (password == NULL) {
802 /* bail out */
803 return;
804 }
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000805 snprintf(prompt, sizeof(prompt),
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000806 "Retype %.30s@%.128s's new password: ",
807 authctxt->server_user, authctxt->host);
808 retype = read_passphrase(prompt, 0);
809 if (strcmp(password, retype) != 0) {
810 memset(password, 0, strlen(password));
811 xfree(password);
Damien Miller996acd22003-04-09 20:59:48 +1000812 logit("Mismatch; try again, EOF to quit.");
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000813 password = NULL;
814 }
815 memset(retype, 0, strlen(retype));
816 xfree(retype);
817 }
818 packet_put_cstring(password);
819 memset(password, 0, strlen(password));
820 xfree(password);
821 packet_add_padding(64);
822 packet_send();
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000823
824 dispatch_set(SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ,
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000825 &input_userauth_passwd_changereq);
826}
Damien Millereba71ba2000-04-29 23:57:08 +1000827
Ben Lindstrombba81212001-06-25 05:01:22 +0000828static int
Damien Miller280ecfb2003-05-14 13:46:00 +1000829identity_sign(Identity *id, u_char **sigp, u_int *lenp,
830 u_char *data, u_int datalen)
831{
832 Key *prv;
833 int ret;
834
835 /* the agent supports this key */
836 if (id->ac)
837 return (ssh_agent_sign(id->ac, id->key, sigp, lenp,
838 data, datalen));
839 /*
840 * we have already loaded the private key or
841 * the private key is stored in external hardware
842 */
843 if (id->isprivate || (id->key->flags & KEY_FLAG_EXT))
844 return (key_sign(id->key, sigp, lenp, data, datalen));
845 /* load the private key from the file */
846 if ((prv = load_identity_file(id->filename)) == NULL)
847 return (-1);
848 ret = key_sign(prv, sigp, lenp, data, datalen);
849 key_free(prv);
850 return (ret);
851}
852
853static int
854sign_and_send_pubkey(Authctxt *authctxt, Identity *id)
Damien Millereba71ba2000-04-29 23:57:08 +1000855{
856 Buffer b;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000857 u_char *blob, *signature;
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000858 u_int bloblen, slen;
Darren Tucker502d3842003-06-28 12:38:01 +1000859 u_int skip = 0;
Damien Millerad833b32000-08-23 10:46:23 +1000860 int ret = -1;
Damien Miller874d77b2000-10-14 16:23:11 +1100861 int have_sig = 1;
Damien Millereba71ba2000-04-29 23:57:08 +1000862
Ben Lindstromd121f612000-12-03 17:00:47 +0000863 debug3("sign_and_send_pubkey");
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000864
Damien Miller280ecfb2003-05-14 13:46:00 +1000865 if (key_to_blob(id->key, &blob, &bloblen) == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100866 /* we cannot handle this key */
Ben Lindstromd121f612000-12-03 17:00:47 +0000867 debug3("sign_and_send_pubkey: cannot handle key");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100868 return 0;
869 }
Damien Millereba71ba2000-04-29 23:57:08 +1000870 /* data to be signed */
871 buffer_init(&b);
Damien Miller50a41ed2000-10-16 12:14:42 +1100872 if (datafellows & SSH_OLD_SESSIONID) {
Damien Miller6536c7d2000-06-22 21:32:31 +1000873 buffer_append(&b, session_id2, session_id2_len);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000874 skip = session_id2_len;
Damien Miller50a41ed2000-10-16 12:14:42 +1100875 } else {
876 buffer_put_string(&b, session_id2, session_id2_len);
877 skip = buffer_len(&b);
Damien Miller6536c7d2000-06-22 21:32:31 +1000878 }
Damien Millereba71ba2000-04-29 23:57:08 +1000879 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
Damien Miller62cee002000-09-23 17:15:56 +1100880 buffer_put_cstring(&b, authctxt->server_user);
Damien Miller30c3d422000-05-09 11:02:59 +1000881 buffer_put_cstring(&b,
Ben Lindstromd121f612000-12-03 17:00:47 +0000882 datafellows & SSH_BUG_PKSERVICE ?
Damien Miller30c3d422000-05-09 11:02:59 +1000883 "ssh-userauth" :
Damien Miller62cee002000-09-23 17:15:56 +1100884 authctxt->service);
Ben Lindstromd121f612000-12-03 17:00:47 +0000885 if (datafellows & SSH_BUG_PKAUTH) {
886 buffer_put_char(&b, have_sig);
887 } else {
888 buffer_put_cstring(&b, authctxt->method->name);
889 buffer_put_char(&b, have_sig);
Damien Miller280ecfb2003-05-14 13:46:00 +1000890 buffer_put_cstring(&b, key_ssh_name(id->key));
Ben Lindstromd121f612000-12-03 17:00:47 +0000891 }
Damien Millereba71ba2000-04-29 23:57:08 +1000892 buffer_put_string(&b, blob, bloblen);
Damien Millereba71ba2000-04-29 23:57:08 +1000893
894 /* generate signature */
Damien Miller280ecfb2003-05-14 13:46:00 +1000895 ret = identity_sign(id, &signature, &slen,
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000896 buffer_ptr(&b), buffer_len(&b));
Damien Millerad833b32000-08-23 10:46:23 +1000897 if (ret == -1) {
898 xfree(blob);
899 buffer_free(&b);
900 return 0;
901 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100902#ifdef DEBUG_PK
Damien Millereba71ba2000-04-29 23:57:08 +1000903 buffer_dump(&b);
904#endif
Ben Lindstromd121f612000-12-03 17:00:47 +0000905 if (datafellows & SSH_BUG_PKSERVICE) {
Damien Miller30c3d422000-05-09 11:02:59 +1000906 buffer_clear(&b);
907 buffer_append(&b, session_id2, session_id2_len);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000908 skip = session_id2_len;
Damien Miller30c3d422000-05-09 11:02:59 +1000909 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
Damien Miller62cee002000-09-23 17:15:56 +1100910 buffer_put_cstring(&b, authctxt->server_user);
911 buffer_put_cstring(&b, authctxt->service);
Damien Miller874d77b2000-10-14 16:23:11 +1100912 buffer_put_cstring(&b, authctxt->method->name);
913 buffer_put_char(&b, have_sig);
Ben Lindstromd121f612000-12-03 17:00:47 +0000914 if (!(datafellows & SSH_BUG_PKAUTH))
Damien Miller280ecfb2003-05-14 13:46:00 +1000915 buffer_put_cstring(&b, key_ssh_name(id->key));
Damien Miller30c3d422000-05-09 11:02:59 +1000916 buffer_put_string(&b, blob, bloblen);
917 }
918 xfree(blob);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000919
Damien Millereba71ba2000-04-29 23:57:08 +1000920 /* append signature */
921 buffer_put_string(&b, signature, slen);
922 xfree(signature);
923
924 /* skip session id and packet type */
Damien Miller6536c7d2000-06-22 21:32:31 +1000925 if (buffer_len(&b) < skip + 1)
Damien Miller62cee002000-09-23 17:15:56 +1100926 fatal("userauth_pubkey: internal error");
Damien Miller6536c7d2000-06-22 21:32:31 +1000927 buffer_consume(&b, skip + 1);
Damien Millereba71ba2000-04-29 23:57:08 +1000928
929 /* put remaining data from buffer into packet */
930 packet_start(SSH2_MSG_USERAUTH_REQUEST);
931 packet_put_raw(buffer_ptr(&b), buffer_len(&b));
932 buffer_free(&b);
Damien Millereba71ba2000-04-29 23:57:08 +1000933 packet_send();
Damien Millerad833b32000-08-23 10:46:23 +1000934
935 return 1;
Damien Miller994cf142000-07-21 10:19:44 +1000936}
937
Ben Lindstrombba81212001-06-25 05:01:22 +0000938static int
Damien Miller280ecfb2003-05-14 13:46:00 +1000939send_pubkey_test(Authctxt *authctxt, Identity *id)
Damien Miller994cf142000-07-21 10:19:44 +1000940{
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000941 u_char *blob;
Ben Lindstromc58ab022002-02-26 18:15:09 +0000942 u_int bloblen, have_sig = 0;
Damien Miller994cf142000-07-21 10:19:44 +1000943
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000944 debug3("send_pubkey_test");
945
Damien Miller280ecfb2003-05-14 13:46:00 +1000946 if (key_to_blob(id->key, &blob, &bloblen) == 0) {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000947 /* we cannot handle this key */
948 debug3("send_pubkey_test: cannot handle key");
Damien Miller994cf142000-07-21 10:19:44 +1000949 return 0;
950 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000951 /* register callback for USERAUTH_PK_OK message */
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000952 dispatch_set(SSH2_MSG_USERAUTH_PK_OK, &input_userauth_pk_ok);
Damien Miller994cf142000-07-21 10:19:44 +1000953
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000954 packet_start(SSH2_MSG_USERAUTH_REQUEST);
955 packet_put_cstring(authctxt->server_user);
956 packet_put_cstring(authctxt->service);
957 packet_put_cstring(authctxt->method->name);
958 packet_put_char(have_sig);
959 if (!(datafellows & SSH_BUG_PKAUTH))
Damien Miller280ecfb2003-05-14 13:46:00 +1000960 packet_put_cstring(key_ssh_name(id->key));
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000961 packet_put_string(blob, bloblen);
962 xfree(blob);
963 packet_send();
964 return 1;
965}
966
Ben Lindstrombba81212001-06-25 05:01:22 +0000967static Key *
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000968load_identity_file(char *filename)
969{
970 Key *private;
971 char prompt[300], *passphrase;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000972 int quit, i;
Ben Lindstrom329782e2001-03-10 17:08:59 +0000973 struct stat st;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000974
Ben Lindstrom329782e2001-03-10 17:08:59 +0000975 if (stat(filename, &st) < 0) {
976 debug3("no such identity: %s", filename);
977 return NULL;
978 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000979 private = key_load_private_type(KEY_UNSPEC, filename, "", NULL);
980 if (private == NULL) {
981 if (options.batch_mode)
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000982 return NULL;
Damien Miller994cf142000-07-21 10:19:44 +1000983 snprintf(prompt, sizeof prompt,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100984 "Enter passphrase for key '%.100s': ", filename);
Damien Miller62cee002000-09-23 17:15:56 +1100985 for (i = 0; i < options.number_of_password_prompts; i++) {
986 passphrase = read_passphrase(prompt, 0);
987 if (strcmp(passphrase, "") != 0) {
Ben Lindstromd0fca422001-03-26 13:44:06 +0000988 private = key_load_private_type(KEY_UNSPEC, filename,
989 passphrase, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000990 quit = 0;
Damien Miller62cee002000-09-23 17:15:56 +1100991 } else {
992 debug2("no passphrase given, try next key");
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000993 quit = 1;
Damien Miller62cee002000-09-23 17:15:56 +1100994 }
995 memset(passphrase, 0, strlen(passphrase));
996 xfree(passphrase);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000997 if (private != NULL || quit)
Damien Miller62cee002000-09-23 17:15:56 +1100998 break;
999 debug2("bad passphrase given, try again...");
1000 }
Damien Miller994cf142000-07-21 10:19:44 +10001001 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001002 return private;
1003}
1004
Damien Miller280ecfb2003-05-14 13:46:00 +10001005/*
1006 * try keys in the following order:
1007 * 1. agent keys that are found in the config file
1008 * 2. other agent keys
1009 * 3. keys that are only listed in the config file
1010 */
1011static void
1012pubkey_prepare(Authctxt *authctxt)
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001013{
Damien Miller280ecfb2003-05-14 13:46:00 +10001014 Identity *id;
1015 Idlist agent, files, *preferred;
1016 Key *key;
1017 AuthenticationConnection *ac;
Damien Millerad833b32000-08-23 10:46:23 +10001018 char *comment;
Damien Miller280ecfb2003-05-14 13:46:00 +10001019 int i, found;
Damien Millerad833b32000-08-23 10:46:23 +10001020
Damien Miller280ecfb2003-05-14 13:46:00 +10001021 TAILQ_INIT(&agent); /* keys from the agent */
1022 TAILQ_INIT(&files); /* keys from the config file */
1023 preferred = &authctxt->keys;
1024 TAILQ_INIT(preferred); /* preferred order of keys */
1025
1026 /* list of keys stored in the filesystem */
1027 for (i = 0; i < options.num_identity_files; i++) {
1028 key = options.identity_keys[i];
1029 if (key && key->type == KEY_RSA1)
1030 continue;
1031 options.identity_keys[i] = NULL;
1032 id = xmalloc(sizeof(*id));
1033 memset(id, 0, sizeof(*id));
1034 id->key = key;
1035 id->filename = xstrdup(options.identity_files[i]);
1036 TAILQ_INSERT_TAIL(&files, id, next);
Damien Millerad833b32000-08-23 10:46:23 +10001037 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001038 /* list of keys supported by the agent */
1039 if ((ac = ssh_get_authentication_connection())) {
1040 for (key = ssh_get_first_identity(ac, &comment, 2);
1041 key != NULL;
1042 key = ssh_get_next_identity(ac, &comment, 2)) {
1043 found = 0;
1044 TAILQ_FOREACH(id, &files, next) {
Damien Millera8e06ce2003-11-21 23:48:55 +11001045 /* agent keys from the config file are preferred */
Damien Miller280ecfb2003-05-14 13:46:00 +10001046 if (key_equal(key, id->key)) {
1047 key_free(key);
1048 xfree(comment);
1049 TAILQ_REMOVE(&files, id, next);
1050 TAILQ_INSERT_TAIL(preferred, id, next);
1051 id->ac = ac;
1052 found = 1;
1053 break;
1054 }
1055 }
Damien Millerbd394c32004-03-08 23:12:36 +11001056 if (!found && !options.identities_only) {
Damien Miller280ecfb2003-05-14 13:46:00 +10001057 id = xmalloc(sizeof(*id));
1058 memset(id, 0, sizeof(*id));
1059 id->key = key;
1060 id->filename = comment;
1061 id->ac = ac;
1062 TAILQ_INSERT_TAIL(&agent, id, next);
1063 }
1064 }
1065 /* append remaining agent keys */
1066 for (id = TAILQ_FIRST(&agent); id; id = TAILQ_FIRST(&agent)) {
1067 TAILQ_REMOVE(&agent, id, next);
1068 TAILQ_INSERT_TAIL(preferred, id, next);
1069 }
1070 authctxt->agent = ac;
Damien Miller62cee002000-09-23 17:15:56 +11001071 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001072 /* append remaining keys from the config file */
1073 for (id = TAILQ_FIRST(&files); id; id = TAILQ_FIRST(&files)) {
1074 TAILQ_REMOVE(&files, id, next);
1075 TAILQ_INSERT_TAIL(preferred, id, next);
1076 }
1077 TAILQ_FOREACH(id, preferred, next) {
1078 debug2("key: %s (%p)", id->filename, id->key);
1079 }
1080}
1081
1082static void
1083pubkey_cleanup(Authctxt *authctxt)
1084{
1085 Identity *id;
1086
1087 if (authctxt->agent != NULL)
1088 ssh_close_authentication_connection(authctxt->agent);
1089 for (id = TAILQ_FIRST(&authctxt->keys); id;
1090 id = TAILQ_FIRST(&authctxt->keys)) {
1091 TAILQ_REMOVE(&authctxt->keys, id, next);
1092 if (id->key)
1093 key_free(id->key);
1094 if (id->filename)
1095 xfree(id->filename);
1096 xfree(id);
1097 }
Damien Millereba71ba2000-04-29 23:57:08 +10001098}
1099
Damien Miller62cee002000-09-23 17:15:56 +11001100int
1101userauth_pubkey(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +10001102{
Damien Miller280ecfb2003-05-14 13:46:00 +10001103 Identity *id;
Damien Miller62cee002000-09-23 17:15:56 +11001104 int sent = 0;
Damien Millereba71ba2000-04-29 23:57:08 +10001105
Damien Miller280ecfb2003-05-14 13:46:00 +10001106 while ((id = TAILQ_FIRST(&authctxt->keys))) {
1107 if (id->tried++)
1108 return (0);
Darren Tuckerd05b6012003-10-15 15:55:59 +10001109 /* move key to the end of the queue */
Damien Miller280ecfb2003-05-14 13:46:00 +10001110 TAILQ_REMOVE(&authctxt->keys, id, next);
1111 TAILQ_INSERT_TAIL(&authctxt->keys, id, next);
1112 /*
1113 * send a test message if we have the public key. for
1114 * encrypted keys we cannot do this and have to load the
1115 * private key instead
1116 */
1117 if (id->key && id->key->type != KEY_RSA1) {
1118 debug("Offering public key: %s", id->filename);
1119 sent = send_pubkey_test(authctxt, id);
1120 } else if (id->key == NULL) {
1121 debug("Trying private key: %s", id->filename);
1122 id->key = load_identity_file(id->filename);
1123 if (id->key != NULL) {
1124 id->isprivate = 1;
1125 sent = sign_and_send_pubkey(authctxt, id);
1126 key_free(id->key);
1127 id->key = NULL;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001128 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001129 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001130 if (sent)
1131 return (sent);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001132 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001133 return (0);
Damien Miller62cee002000-09-23 17:15:56 +11001134}
Damien Millereba71ba2000-04-29 23:57:08 +10001135
Damien Miller874d77b2000-10-14 16:23:11 +11001136/*
1137 * Send userauth request message specifying keyboard-interactive method.
1138 */
1139int
1140userauth_kbdint(Authctxt *authctxt)
1141{
1142 static int attempt = 0;
1143
1144 if (attempt++ >= options.number_of_password_prompts)
1145 return 0;
Ben Lindstrom7d199962001-09-12 18:29:00 +00001146 /* disable if no SSH2_MSG_USERAUTH_INFO_REQUEST has been seen */
1147 if (attempt > 1 && !authctxt->info_req_seen) {
1148 debug3("userauth_kbdint: disable: no info_req_seen");
1149 dispatch_set(SSH2_MSG_USERAUTH_INFO_REQUEST, NULL);
1150 return 0;
1151 }
Damien Miller874d77b2000-10-14 16:23:11 +11001152
1153 debug2("userauth_kbdint");
1154 packet_start(SSH2_MSG_USERAUTH_REQUEST);
1155 packet_put_cstring(authctxt->server_user);
1156 packet_put_cstring(authctxt->service);
1157 packet_put_cstring(authctxt->method->name);
1158 packet_put_cstring(""); /* lang */
1159 packet_put_cstring(options.kbd_interactive_devices ?
1160 options.kbd_interactive_devices : "");
1161 packet_send();
Damien Miller874d77b2000-10-14 16:23:11 +11001162
1163 dispatch_set(SSH2_MSG_USERAUTH_INFO_REQUEST, &input_userauth_info_req);
1164 return 1;
1165}
1166
1167/*
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001168 * parse INFO_REQUEST, prompt user and send INFO_RESPONSE
Damien Miller874d77b2000-10-14 16:23:11 +11001169 */
1170void
Damien Miller630d6f42002-01-22 23:17:30 +11001171input_userauth_info_req(int type, u_int32_t seq, void *ctxt)
Damien Miller874d77b2000-10-14 16:23:11 +11001172{
1173 Authctxt *authctxt = ctxt;
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001174 char *name, *inst, *lang, *prompt, *response;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001175 u_int num_prompts, i;
Damien Miller874d77b2000-10-14 16:23:11 +11001176 int echo = 0;
1177
1178 debug2("input_userauth_info_req");
1179
1180 if (authctxt == NULL)
1181 fatal("input_userauth_info_req: no authentication context");
1182
Ben Lindstrom7d199962001-09-12 18:29:00 +00001183 authctxt->info_req_seen = 1;
1184
Damien Miller874d77b2000-10-14 16:23:11 +11001185 name = packet_get_string(NULL);
1186 inst = packet_get_string(NULL);
1187 lang = packet_get_string(NULL);
Damien Miller874d77b2000-10-14 16:23:11 +11001188 if (strlen(name) > 0)
Damien Miller996acd22003-04-09 20:59:48 +10001189 logit("%s", name);
Damien Miller874d77b2000-10-14 16:23:11 +11001190 if (strlen(inst) > 0)
Damien Miller996acd22003-04-09 20:59:48 +10001191 logit("%s", inst);
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001192 xfree(name);
Damien Miller874d77b2000-10-14 16:23:11 +11001193 xfree(inst);
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001194 xfree(lang);
Damien Miller874d77b2000-10-14 16:23:11 +11001195
1196 num_prompts = packet_get_int();
1197 /*
1198 * Begin to build info response packet based on prompts requested.
1199 * We commit to providing the correct number of responses, so if
1200 * further on we run into a problem that prevents this, we have to
1201 * be sure and clean this up and send a correct error response.
1202 */
1203 packet_start(SSH2_MSG_USERAUTH_INFO_RESPONSE);
1204 packet_put_int(num_prompts);
1205
Ben Lindstrom551ea372001-06-05 18:56:16 +00001206 debug2("input_userauth_info_req: num_prompts %d", num_prompts);
Damien Miller874d77b2000-10-14 16:23:11 +11001207 for (i = 0; i < num_prompts; i++) {
1208 prompt = packet_get_string(NULL);
1209 echo = packet_get_char();
1210
Ben Lindstrom949974b2001-06-25 05:20:31 +00001211 response = read_passphrase(prompt, echo ? RP_ECHO : 0);
Damien Miller874d77b2000-10-14 16:23:11 +11001212
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001213 packet_put_cstring(response);
Damien Miller874d77b2000-10-14 16:23:11 +11001214 memset(response, 0, strlen(response));
1215 xfree(response);
1216 xfree(prompt);
1217 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001218 packet_check_eom(); /* done with parsing incoming message. */
Damien Miller874d77b2000-10-14 16:23:11 +11001219
Damien Miller9f643902001-11-12 11:02:52 +11001220 packet_add_padding(64);
Damien Miller874d77b2000-10-14 16:23:11 +11001221 packet_send();
Damien Miller874d77b2000-10-14 16:23:11 +11001222}
Damien Miller62cee002000-09-23 17:15:56 +11001223
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001224static int
Ben Lindstrom5c385522002-06-23 21:23:20 +00001225ssh_keysign(Key *key, u_char **sigp, u_int *lenp,
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001226 u_char *data, u_int datalen)
1227{
1228 Buffer b;
Ben Lindstrom5206b952002-06-06 19:59:29 +00001229 struct stat st;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001230 pid_t pid;
Ben Lindstromcec2ea82002-06-06 20:51:04 +00001231 int to[2], from[2], status, version = 2;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001232
Ben Lindstrom1d568f92002-12-23 02:44:36 +00001233 debug2("ssh_keysign called");
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001234
Ben Lindstrom5206b952002-06-06 19:59:29 +00001235 if (stat(_PATH_SSH_KEY_SIGN, &st) < 0) {
1236 error("ssh_keysign: no installed: %s", strerror(errno));
1237 return -1;
1238 }
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001239 if (fflush(stdout) != 0)
1240 error("ssh_keysign: fflush: %s", strerror(errno));
1241 if (pipe(to) < 0) {
1242 error("ssh_keysign: pipe: %s", strerror(errno));
1243 return -1;
1244 }
1245 if (pipe(from) < 0) {
1246 error("ssh_keysign: pipe: %s", strerror(errno));
1247 return -1;
1248 }
1249 if ((pid = fork()) < 0) {
1250 error("ssh_keysign: fork: %s", strerror(errno));
1251 return -1;
1252 }
1253 if (pid == 0) {
1254 seteuid(getuid());
1255 setuid(getuid());
1256 close(from[0]);
1257 if (dup2(from[1], STDOUT_FILENO) < 0)
1258 fatal("ssh_keysign: dup2: %s", strerror(errno));
1259 close(to[1]);
1260 if (dup2(to[0], STDIN_FILENO) < 0)
1261 fatal("ssh_keysign: dup2: %s", strerror(errno));
Ben Lindstromcec2ea82002-06-06 20:51:04 +00001262 close(from[1]);
1263 close(to[0]);
Ben Lindstrom4887da22002-06-06 20:05:57 +00001264 execl(_PATH_SSH_KEY_SIGN, _PATH_SSH_KEY_SIGN, (char *) 0);
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001265 fatal("ssh_keysign: exec(%s): %s", _PATH_SSH_KEY_SIGN,
1266 strerror(errno));
1267 }
1268 close(from[1]);
1269 close(to[0]);
1270
1271 buffer_init(&b);
Ben Lindstromcec2ea82002-06-06 20:51:04 +00001272 buffer_put_int(&b, packet_get_connection_in()); /* send # of socket */
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001273 buffer_put_string(&b, data, datalen);
Damien Miller51bf11f2003-11-17 21:20:47 +11001274 if (ssh_msg_send(to[1], version, &b) == -1)
1275 fatal("ssh_keysign: couldn't send request");
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001276
Damien Miller901119b2002-10-04 11:10:04 +10001277 if (ssh_msg_recv(from[0], &b) < 0) {
Ben Lindstrom5206b952002-06-06 19:59:29 +00001278 error("ssh_keysign: no reply");
Damien Millerfb1310e2004-01-21 11:02:50 +11001279 buffer_free(&b);
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001280 return -1;
1281 }
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001282 close(from[0]);
1283 close(to[1]);
1284
Ben Lindstromcec2ea82002-06-06 20:51:04 +00001285 while (waitpid(pid, &status, 0) < 0)
1286 if (errno != EINTR)
1287 break;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001288
Ben Lindstrom5206b952002-06-06 19:59:29 +00001289 if (buffer_get_char(&b) != version) {
1290 error("ssh_keysign: bad version");
Damien Millerfb1310e2004-01-21 11:02:50 +11001291 buffer_free(&b);
Ben Lindstrom5206b952002-06-06 19:59:29 +00001292 return -1;
1293 }
1294 *sigp = buffer_get_string(&b, lenp);
Damien Millerfb1310e2004-01-21 11:02:50 +11001295 buffer_free(&b);
Ben Lindstrom5206b952002-06-06 19:59:29 +00001296
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001297 return 0;
1298}
1299
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001300int
1301userauth_hostbased(Authctxt *authctxt)
1302{
1303 Key *private = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001304 Sensitive *sensitive = authctxt->sensitive;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001305 Buffer b;
1306 u_char *signature, *blob;
1307 char *chost, *pkalg, *p;
Ben Lindstrom671388f2001-04-19 20:40:45 +00001308 const char *service;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001309 u_int blen, slen;
Ben Lindstrom2bffd6f2001-04-19 20:35:40 +00001310 int ok, i, len, found = 0;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001311
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001312 /* check for a useful key */
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001313 for (i = 0; i < sensitive->nkeys; i++) {
1314 private = sensitive->keys[i];
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001315 if (private && private->type != KEY_RSA1) {
1316 found = 1;
1317 /* we take and free the key */
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001318 sensitive->keys[i] = NULL;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001319 break;
1320 }
1321 }
1322 if (!found) {
Ben Lindstrom1d568f92002-12-23 02:44:36 +00001323 debug("No more client hostkeys for hostbased authentication.");
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001324 return 0;
1325 }
1326 if (key_to_blob(private, &blob, &blen) == 0) {
1327 key_free(private);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001328 return 0;
1329 }
Damien Miller91c18472001-11-12 11:02:03 +11001330 /* figure out a name for the client host */
1331 p = get_local_name(packet_get_connection_in());
1332 if (p == NULL) {
1333 error("userauth_hostbased: cannot get local ipaddr/name");
1334 key_free(private);
Damien Miller5790b592006-03-26 13:54:03 +11001335 xfree(blob);
Damien Miller91c18472001-11-12 11:02:03 +11001336 return 0;
1337 }
1338 len = strlen(p) + 2;
1339 chost = xmalloc(len);
1340 strlcpy(chost, p, len);
1341 strlcat(chost, ".", len);
1342 debug2("userauth_hostbased: chost %s", chost);
Damien Miller00111382003-03-10 11:21:17 +11001343 xfree(p);
Damien Miller91c18472001-11-12 11:02:03 +11001344
Ben Lindstrom671388f2001-04-19 20:40:45 +00001345 service = datafellows & SSH_BUG_HBSERVICE ? "ssh-userauth" :
1346 authctxt->service;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001347 pkalg = xstrdup(key_ssh_name(private));
1348 buffer_init(&b);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001349 /* construct data */
Ben Lindstrom671388f2001-04-19 20:40:45 +00001350 buffer_put_string(&b, session_id2, session_id2_len);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001351 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
1352 buffer_put_cstring(&b, authctxt->server_user);
Ben Lindstrom671388f2001-04-19 20:40:45 +00001353 buffer_put_cstring(&b, service);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001354 buffer_put_cstring(&b, authctxt->method->name);
1355 buffer_put_cstring(&b, pkalg);
1356 buffer_put_string(&b, blob, blen);
1357 buffer_put_cstring(&b, chost);
1358 buffer_put_cstring(&b, authctxt->local_user);
1359#ifdef DEBUG_PK
1360 buffer_dump(&b);
1361#endif
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001362 if (sensitive->external_keysign)
1363 ok = ssh_keysign(private, &signature, &slen,
1364 buffer_ptr(&b), buffer_len(&b));
1365 else
1366 ok = key_sign(private, &signature, &slen,
1367 buffer_ptr(&b), buffer_len(&b));
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001368 key_free(private);
1369 buffer_free(&b);
1370 if (ok != 0) {
1371 error("key_sign failed");
1372 xfree(chost);
1373 xfree(pkalg);
Damien Miller5790b592006-03-26 13:54:03 +11001374 xfree(blob);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001375 return 0;
1376 }
1377 packet_start(SSH2_MSG_USERAUTH_REQUEST);
1378 packet_put_cstring(authctxt->server_user);
1379 packet_put_cstring(authctxt->service);
1380 packet_put_cstring(authctxt->method->name);
1381 packet_put_cstring(pkalg);
1382 packet_put_string(blob, blen);
1383 packet_put_cstring(chost);
1384 packet_put_cstring(authctxt->local_user);
1385 packet_put_string(signature, slen);
1386 memset(signature, 's', slen);
1387 xfree(signature);
1388 xfree(chost);
1389 xfree(pkalg);
Damien Miller5790b592006-03-26 13:54:03 +11001390 xfree(blob);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001391
1392 packet_send();
1393 return 1;
1394}
1395
Damien Miller62cee002000-09-23 17:15:56 +11001396/* find auth method */
1397
Damien Miller62cee002000-09-23 17:15:56 +11001398/*
1399 * given auth method name, if configurable options permit this method fill
1400 * in auth_ident field and return true, otherwise return false.
1401 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001402static int
Damien Miller62cee002000-09-23 17:15:56 +11001403authmethod_is_enabled(Authmethod *method)
1404{
1405 if (method == NULL)
1406 return 0;
1407 /* return false if options indicate this method is disabled */
1408 if (method->enabled == NULL || *method->enabled == 0)
1409 return 0;
1410 /* return false if batch mode is enabled but method needs interactive mode */
1411 if (method->batch_flag != NULL && *method->batch_flag != 0)
1412 return 0;
1413 return 1;
1414}
1415
Ben Lindstrombba81212001-06-25 05:01:22 +00001416static Authmethod *
Damien Miller62cee002000-09-23 17:15:56 +11001417authmethod_lookup(const char *name)
1418{
1419 Authmethod *method = NULL;
1420 if (name != NULL)
1421 for (method = authmethods; method->name != NULL; method++)
1422 if (strcmp(name, method->name) == 0)
1423 return method;
1424 debug2("Unrecognized authentication method name: %s", name ? name : "NULL");
1425 return NULL;
1426}
1427
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001428/* XXX internal state */
1429static Authmethod *current = NULL;
1430static char *supported = NULL;
1431static char *preferred = NULL;
Ben Lindstrom5c385522002-06-23 21:23:20 +00001432
Damien Miller62cee002000-09-23 17:15:56 +11001433/*
1434 * Given the authentication method list sent by the server, return the
1435 * next method we should try. If the server initially sends a nil list,
Ben Lindstroma3700052001-04-05 23:26:32 +00001436 * use a built-in default list.
Kevin Stevesef4eea92001-02-05 12:42:17 +00001437 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001438static Authmethod *
Damien Miller62cee002000-09-23 17:15:56 +11001439authmethod_get(char *authlist)
1440{
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001441 char *name = NULL;
Ben Lindstromc58ab022002-02-26 18:15:09 +00001442 u_int next;
Kevin Stevesef4eea92001-02-05 12:42:17 +00001443
Damien Miller62cee002000-09-23 17:15:56 +11001444 /* Use a suitable default if we're passed a nil list. */
1445 if (authlist == NULL || strlen(authlist) == 0)
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001446 authlist = options.preferred_authentications;
Damien Miller62cee002000-09-23 17:15:56 +11001447
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001448 if (supported == NULL || strcmp(authlist, supported) != 0) {
1449 debug3("start over, passed a different list %s", authlist);
1450 if (supported != NULL)
1451 xfree(supported);
1452 supported = xstrdup(authlist);
1453 preferred = options.preferred_authentications;
1454 debug3("preferred %s", preferred);
1455 current = NULL;
1456 } else if (current != NULL && authmethod_is_enabled(current))
1457 return current;
Damien Millereba71ba2000-04-29 23:57:08 +10001458
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001459 for (;;) {
1460 if ((name = match_list(preferred, supported, &next)) == NULL) {
Ben Lindstrom1d568f92002-12-23 02:44:36 +00001461 debug("No more authentication methods to try.");
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001462 current = NULL;
1463 return NULL;
Damien Miller874d77b2000-10-14 16:23:11 +11001464 }
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001465 preferred += next;
1466 debug3("authmethod_lookup %s", name);
1467 debug3("remaining preferred: %s", preferred);
1468 if ((current = authmethod_lookup(name)) != NULL &&
1469 authmethod_is_enabled(current)) {
1470 debug3("authmethod_is_enabled %s", name);
Ben Lindstrom1d568f92002-12-23 02:44:36 +00001471 debug("Next authentication method: %s", name);
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001472 return current;
1473 }
Damien Millereba71ba2000-04-29 23:57:08 +10001474 }
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001475}
Damien Miller62cee002000-09-23 17:15:56 +11001476
Ben Lindstrom79073822001-07-04 03:42:30 +00001477static char *
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001478authmethods_get(void)
1479{
1480 Authmethod *method = NULL;
Damien Miller0e3b8722002-01-22 23:26:38 +11001481 Buffer b;
1482 char *list;
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001483
Damien Miller0e3b8722002-01-22 23:26:38 +11001484 buffer_init(&b);
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001485 for (method = authmethods; method->name != NULL; method++) {
1486 if (authmethod_is_enabled(method)) {
Damien Miller0e3b8722002-01-22 23:26:38 +11001487 if (buffer_len(&b) > 0)
1488 buffer_append(&b, ",", 1);
1489 buffer_append(&b, method->name, strlen(method->name));
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001490 }
Damien Miller62cee002000-09-23 17:15:56 +11001491 }
Damien Miller0e3b8722002-01-22 23:26:38 +11001492 buffer_append(&b, "\0", 1);
1493 list = xstrdup(buffer_ptr(&b));
1494 buffer_free(&b);
1495 return list;
Damien Millereba71ba2000-04-29 23:57:08 +10001496}