blob: 9f1d932756b3283e6a59aa16949c12db438edc34 [file] [log] [blame]
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001/*
Ben Lindstrom92a2e382001-03-05 06:59:27 +00002 * Copyright (c) 2001 Markus Friedl. All rights reserved.
Ben Lindstrom551ea372001-06-05 18:56:16 +00003 * Copyright (c) 2001 Per Allansson. All rights reserved.
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00004 *
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.
13 *
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#include "includes.h"
Damien Miller0e3b8722002-01-22 23:26:38 +110026RCSID("$OpenBSD: auth2-chall.c,v 1.16 2002/01/13 17:57:37 markus Exp $");
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000027
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000028#include "ssh2.h"
29#include "auth.h"
Damien Miller0e3b8722002-01-22 23:26:38 +110030#include "buffer.h"
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000031#include "packet.h"
32#include "xmalloc.h"
33#include "dispatch.h"
Ben Lindstrom551ea372001-06-05 18:56:16 +000034#include "auth.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000035#include "log.h"
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000036
Ben Lindstrombba81212001-06-25 05:01:22 +000037static int auth2_challenge_start(Authctxt *);
38static int send_userauth_info_request(Authctxt *);
Damien Miller630d6f42002-01-22 23:17:30 +110039static void input_userauth_info_response(int, u_int32_t, void *);
Ben Lindstrom551ea372001-06-05 18:56:16 +000040
41#ifdef BSD_AUTH
42extern KbdintDevice bsdauth_device;
43#else
44#ifdef SKEY
45extern KbdintDevice skey_device;
46#endif
47#endif
48
49KbdintDevice *devices[] = {
50#ifdef BSD_AUTH
51 &bsdauth_device,
52#else
53#ifdef SKEY
54 &skey_device,
55#endif
56#endif
57 NULL
58};
59
60typedef struct KbdintAuthctxt KbdintAuthctxt;
61struct KbdintAuthctxt
62{
63 char *devices;
64 void *ctxt;
65 KbdintDevice *device;
66};
67
Ben Lindstrombba81212001-06-25 05:01:22 +000068static KbdintAuthctxt *
Ben Lindstrom551ea372001-06-05 18:56:16 +000069kbdint_alloc(const char *devs)
70{
71 KbdintAuthctxt *kbdintctxt;
Damien Miller0e3b8722002-01-22 23:26:38 +110072 Buffer b;
Ben Lindstrom551ea372001-06-05 18:56:16 +000073 int i;
Ben Lindstrom551ea372001-06-05 18:56:16 +000074
75 kbdintctxt = xmalloc(sizeof(KbdintAuthctxt));
76 if (strcmp(devs, "") == 0) {
Damien Miller0e3b8722002-01-22 23:26:38 +110077 buffer_init(&b);
Ben Lindstrom551ea372001-06-05 18:56:16 +000078 for (i = 0; devices[i]; i++) {
Damien Miller0e3b8722002-01-22 23:26:38 +110079 if (buffer_len(&b) > 0)
80 buffer_append(&b, ",", 1);
81 buffer_append(&b, devices[i]->name,
82 strlen(devices[i]->name));
Ben Lindstrom551ea372001-06-05 18:56:16 +000083 }
Damien Miller0e3b8722002-01-22 23:26:38 +110084 buffer_append(&b, "\0", 1);
85 kbdintctxt->devices = xstrdup(buffer_ptr(&b));
86 buffer_free(&b);
Ben Lindstrom551ea372001-06-05 18:56:16 +000087 } else {
88 kbdintctxt->devices = xstrdup(devs);
89 }
Damien Miller0e3b8722002-01-22 23:26:38 +110090 debug("kbdint_alloc: devices '%s'", kbdintctxt->devices);
Ben Lindstrom551ea372001-06-05 18:56:16 +000091 kbdintctxt->ctxt = NULL;
92 kbdintctxt->device = NULL;
93
94 return kbdintctxt;
95}
Ben Lindstrombba81212001-06-25 05:01:22 +000096static void
Ben Lindstrom551ea372001-06-05 18:56:16 +000097kbdint_reset_device(KbdintAuthctxt *kbdintctxt)
98{
99 if (kbdintctxt->ctxt) {
100 kbdintctxt->device->free_ctx(kbdintctxt->ctxt);
101 kbdintctxt->ctxt = NULL;
102 }
103 kbdintctxt->device = NULL;
104}
Ben Lindstrombba81212001-06-25 05:01:22 +0000105static void
Ben Lindstrom551ea372001-06-05 18:56:16 +0000106kbdint_free(KbdintAuthctxt *kbdintctxt)
107{
108 if (kbdintctxt->device)
109 kbdint_reset_device(kbdintctxt);
110 if (kbdintctxt->devices) {
111 xfree(kbdintctxt->devices);
112 kbdintctxt->devices = NULL;
113 }
114 xfree(kbdintctxt);
115}
116/* get next device */
Ben Lindstrombba81212001-06-25 05:01:22 +0000117static int
Ben Lindstrom551ea372001-06-05 18:56:16 +0000118kbdint_next_device(KbdintAuthctxt *kbdintctxt)
119{
120 size_t len;
121 char *t;
122 int i;
123
124 if (kbdintctxt->device)
125 kbdint_reset_device(kbdintctxt);
126 do {
127 len = kbdintctxt->devices ?
128 strcspn(kbdintctxt->devices, ",") : 0;
129
130 if (len == 0)
131 break;
132 for (i = 0; devices[i]; i++)
133 if (strncmp(kbdintctxt->devices, devices[i]->name, len) == 0)
134 kbdintctxt->device = devices[i];
135 t = kbdintctxt->devices;
136 kbdintctxt->devices = t[len] ? xstrdup(t+len+1) : NULL;
137 xfree(t);
138 debug2("kbdint_next_device: devices %s", kbdintctxt->devices ?
139 kbdintctxt->devices : "<empty>");
140 } while (kbdintctxt->devices && !kbdintctxt->device);
141
142 return kbdintctxt->device ? 1 : 0;
143}
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000144
145/*
Ben Lindstrombdfb4df2001-10-03 17:12:43 +0000146 * try challenge-response, set authctxt->postponed if we have to
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000147 * wait for the response.
148 */
149int
150auth2_challenge(Authctxt *authctxt, char *devs)
151{
Ben Lindstrom551ea372001-06-05 18:56:16 +0000152 debug("auth2_challenge: user=%s devs=%s",
153 authctxt->user ? authctxt->user : "<nouser>",
154 devs ? devs : "<no devs>");
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000155
Ben Lindstrom742e89e2001-06-09 01:17:23 +0000156 if (authctxt->user == NULL || !devs)
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000157 return 0;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100158 if (authctxt->kbdintctxt == NULL)
Ben Lindstrom551ea372001-06-05 18:56:16 +0000159 authctxt->kbdintctxt = kbdint_alloc(devs);
160 return auth2_challenge_start(authctxt);
161}
162
Damien Milleree116252001-12-21 12:42:34 +1100163/* unregister kbd-int callbacks and context */
164void
165auth2_challenge_stop(Authctxt *authctxt)
166{
167 /* unregister callback */
168 dispatch_set(SSH2_MSG_USERAUTH_INFO_RESPONSE, NULL);
169 if (authctxt->kbdintctxt != NULL) {
170 kbdint_free(authctxt->kbdintctxt);
171 authctxt->kbdintctxt = NULL;
172 }
173}
174
Ben Lindstrom551ea372001-06-05 18:56:16 +0000175/* side effect: sets authctxt->postponed if a reply was sent*/
176static int
177auth2_challenge_start(Authctxt *authctxt)
178{
179 KbdintAuthctxt *kbdintctxt = authctxt->kbdintctxt;
180
181 debug2("auth2_challenge_start: devices %s",
182 kbdintctxt->devices ? kbdintctxt->devices : "<empty>");
183
184 if (kbdint_next_device(kbdintctxt) == 0) {
Damien Milleree116252001-12-21 12:42:34 +1100185 auth2_challenge_stop(authctxt);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000186 return 0;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000187 }
188 debug("auth2_challenge_start: trying authentication method '%s'",
189 kbdintctxt->device->name);
190
191 if ((kbdintctxt->ctxt = kbdintctxt->device->init_ctx(authctxt)) == NULL) {
Damien Milleree116252001-12-21 12:42:34 +1100192 auth2_challenge_stop(authctxt);
Ben Lindstrom551ea372001-06-05 18:56:16 +0000193 return 0;
194 }
195 if (send_userauth_info_request(authctxt) == 0) {
Damien Milleree116252001-12-21 12:42:34 +1100196 auth2_challenge_stop(authctxt);
Ben Lindstrom551ea372001-06-05 18:56:16 +0000197 return 0;
198 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000199 dispatch_set(SSH2_MSG_USERAUTH_INFO_RESPONSE,
200 &input_userauth_info_response);
Ben Lindstrom551ea372001-06-05 18:56:16 +0000201
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000202 authctxt->postponed = 1;
203 return 0;
204}
205
Ben Lindstrom551ea372001-06-05 18:56:16 +0000206static int
207send_userauth_info_request(Authctxt *authctxt)
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000208{
Ben Lindstrom551ea372001-06-05 18:56:16 +0000209 KbdintAuthctxt *kbdintctxt;
210 char *name, *instr, **prompts;
211 int i;
212 u_int numprompts, *echo_on;
213
214 kbdintctxt = authctxt->kbdintctxt;
215 if (kbdintctxt->device->query(kbdintctxt->ctxt,
216 &name, &instr, &numprompts, &prompts, &echo_on))
217 return 0;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000218
219 packet_start(SSH2_MSG_USERAUTH_INFO_REQUEST);
Ben Lindstrom551ea372001-06-05 18:56:16 +0000220 packet_put_cstring(name);
221 packet_put_cstring(instr);
222 packet_put_cstring(""); /* language not used */
223 packet_put_int(numprompts);
224 for (i = 0; i < numprompts; i++) {
225 packet_put_cstring(prompts[i]);
226 packet_put_char(echo_on[i]);
227 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000228 packet_send();
229 packet_write_wait();
Ben Lindstrom551ea372001-06-05 18:56:16 +0000230
231 for (i = 0; i < numprompts; i++)
232 xfree(prompts[i]);
233 xfree(prompts);
234 xfree(echo_on);
235 xfree(name);
236 xfree(instr);
237 return 1;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000238}
239
Ben Lindstrom551ea372001-06-05 18:56:16 +0000240static void
Damien Miller630d6f42002-01-22 23:17:30 +1100241input_userauth_info_response(int type, u_int32_t seq, void *ctxt)
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000242{
243 Authctxt *authctxt = ctxt;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000244 KbdintAuthctxt *kbdintctxt;
245 int i, authenticated = 0, res, len;
246 u_int nresp;
247 char **response = NULL, *method;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000248
249 if (authctxt == NULL)
250 fatal("input_userauth_info_response: no authctxt");
Ben Lindstrom551ea372001-06-05 18:56:16 +0000251 kbdintctxt = authctxt->kbdintctxt;
252 if (kbdintctxt == NULL || kbdintctxt->ctxt == NULL)
253 fatal("input_userauth_info_response: no kbdintctxt");
254 if (kbdintctxt->device == NULL)
255 fatal("input_userauth_info_response: no device");
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000256
257 authctxt->postponed = 0; /* reset */
258 nresp = packet_get_int();
Ben Lindstrom551ea372001-06-05 18:56:16 +0000259 if (nresp > 0) {
260 response = xmalloc(nresp * sizeof(char*));
261 for (i = 0; i < nresp; i++)
262 response[i] = packet_get_string(NULL);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000263 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100264 packet_check_eom();
Ben Lindstrom551ea372001-06-05 18:56:16 +0000265
266 if (authctxt->valid) {
267 res = kbdintctxt->device->respond(kbdintctxt->ctxt,
268 nresp, response);
269 } else {
270 res = -1;
271 }
272
273 for (i = 0; i < nresp; i++) {
274 memset(response[i], 'r', strlen(response[i]));
275 xfree(response[i]);
276 }
277 if (response)
278 xfree(response);
279
280 switch (res) {
281 case 0:
282 /* Success! */
283 authenticated = 1;
284 break;
285 case 1:
286 /* Authentication needs further interaction */
Damien Milleree116252001-12-21 12:42:34 +1100287 if (send_userauth_info_request(authctxt) == 1)
288 authctxt->postponed = 1;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000289 break;
290 default:
291 /* Failure! */
292 break;
293 }
294
295 len = strlen("keyboard-interactive") + 2 +
296 strlen(kbdintctxt->device->name);
297 method = xmalloc(len);
Damien Miller209ee4e2002-01-22 23:25:08 +1100298 snprintf(method, len, "keyboard-interactive/%s",
299 kbdintctxt->device->name);
Ben Lindstrom551ea372001-06-05 18:56:16 +0000300
301 if (!authctxt->postponed) {
Ben Lindstrom551ea372001-06-05 18:56:16 +0000302 if (authenticated) {
Damien Milleree116252001-12-21 12:42:34 +1100303 auth2_challenge_stop(authctxt);
Ben Lindstrom551ea372001-06-05 18:56:16 +0000304 } else {
305 /* start next device */
306 /* may set authctxt->postponed */
307 auth2_challenge_start(authctxt);
308 }
309 }
Damien Miller5d57e502001-03-30 10:48:31 +1000310 userauth_finish(authctxt, authenticated, method);
Ben Lindstrom551ea372001-06-05 18:56:16 +0000311 xfree(method);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000312}