blob: 29234439c36121fbd3f39e026d0a773e8d998c21 [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"
Darren Tucker611649e2005-01-20 11:05:34 +110026RCSID("$OpenBSD: auth2-chall.c,v 1.22 2005/01/19 13:11:47 dtucker 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 Lindstrom226cfa02001-01-22 05:34:40 +000034#include "log.h"
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000035
Ben Lindstrombba81212001-06-25 05:01:22 +000036static int auth2_challenge_start(Authctxt *);
37static int send_userauth_info_request(Authctxt *);
Damien Miller630d6f42002-01-22 23:17:30 +110038static void input_userauth_info_response(int, u_int32_t, void *);
Ben Lindstrom551ea372001-06-05 18:56:16 +000039
40#ifdef BSD_AUTH
41extern KbdintDevice bsdauth_device;
42#else
Damien Miller4f9f42a2003-05-10 19:28:02 +100043#ifdef USE_PAM
44extern KbdintDevice sshpam_device;
45#endif
Ben Lindstrom551ea372001-06-05 18:56:16 +000046#ifdef SKEY
47extern KbdintDevice skey_device;
48#endif
49#endif
50
51KbdintDevice *devices[] = {
52#ifdef BSD_AUTH
53 &bsdauth_device,
54#else
Damien Miller4f9f42a2003-05-10 19:28:02 +100055#ifdef USE_PAM
56 &sshpam_device,
57#endif
Ben Lindstrom551ea372001-06-05 18:56:16 +000058#ifdef SKEY
59 &skey_device,
60#endif
61#endif
62 NULL
63};
64
65typedef struct KbdintAuthctxt KbdintAuthctxt;
66struct KbdintAuthctxt
67{
68 char *devices;
69 void *ctxt;
70 KbdintDevice *device;
Damien Millerfb7fd952002-06-26 23:58:39 +100071 u_int nreq;
Ben Lindstrom551ea372001-06-05 18:56:16 +000072};
73
Ben Lindstrombba81212001-06-25 05:01:22 +000074static KbdintAuthctxt *
Ben Lindstrom551ea372001-06-05 18:56:16 +000075kbdint_alloc(const char *devs)
76{
77 KbdintAuthctxt *kbdintctxt;
Damien Miller0e3b8722002-01-22 23:26:38 +110078 Buffer b;
Ben Lindstrom551ea372001-06-05 18:56:16 +000079 int i;
Ben Lindstrom551ea372001-06-05 18:56:16 +000080
81 kbdintctxt = xmalloc(sizeof(KbdintAuthctxt));
82 if (strcmp(devs, "") == 0) {
Damien Miller0e3b8722002-01-22 23:26:38 +110083 buffer_init(&b);
Ben Lindstrom551ea372001-06-05 18:56:16 +000084 for (i = 0; devices[i]; i++) {
Damien Miller0e3b8722002-01-22 23:26:38 +110085 if (buffer_len(&b) > 0)
86 buffer_append(&b, ",", 1);
87 buffer_append(&b, devices[i]->name,
88 strlen(devices[i]->name));
Ben Lindstrom551ea372001-06-05 18:56:16 +000089 }
Damien Miller0e3b8722002-01-22 23:26:38 +110090 buffer_append(&b, "\0", 1);
91 kbdintctxt->devices = xstrdup(buffer_ptr(&b));
92 buffer_free(&b);
Ben Lindstrom551ea372001-06-05 18:56:16 +000093 } else {
94 kbdintctxt->devices = xstrdup(devs);
95 }
Damien Miller0e3b8722002-01-22 23:26:38 +110096 debug("kbdint_alloc: devices '%s'", kbdintctxt->devices);
Ben Lindstrom551ea372001-06-05 18:56:16 +000097 kbdintctxt->ctxt = NULL;
98 kbdintctxt->device = NULL;
Damien Millerfb7fd952002-06-26 23:58:39 +100099 kbdintctxt->nreq = 0;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000100
101 return kbdintctxt;
102}
Ben Lindstrombba81212001-06-25 05:01:22 +0000103static void
Ben Lindstrom551ea372001-06-05 18:56:16 +0000104kbdint_reset_device(KbdintAuthctxt *kbdintctxt)
105{
106 if (kbdintctxt->ctxt) {
107 kbdintctxt->device->free_ctx(kbdintctxt->ctxt);
108 kbdintctxt->ctxt = NULL;
109 }
110 kbdintctxt->device = NULL;
111}
Ben Lindstrombba81212001-06-25 05:01:22 +0000112static void
Ben Lindstrom551ea372001-06-05 18:56:16 +0000113kbdint_free(KbdintAuthctxt *kbdintctxt)
114{
115 if (kbdintctxt->device)
116 kbdint_reset_device(kbdintctxt);
117 if (kbdintctxt->devices) {
118 xfree(kbdintctxt->devices);
119 kbdintctxt->devices = NULL;
120 }
121 xfree(kbdintctxt);
122}
123/* get next device */
Ben Lindstrombba81212001-06-25 05:01:22 +0000124static int
Ben Lindstrom551ea372001-06-05 18:56:16 +0000125kbdint_next_device(KbdintAuthctxt *kbdintctxt)
126{
127 size_t len;
128 char *t;
129 int i;
130
131 if (kbdintctxt->device)
132 kbdint_reset_device(kbdintctxt);
133 do {
134 len = kbdintctxt->devices ?
135 strcspn(kbdintctxt->devices, ",") : 0;
136
137 if (len == 0)
138 break;
139 for (i = 0; devices[i]; i++)
140 if (strncmp(kbdintctxt->devices, devices[i]->name, len) == 0)
141 kbdintctxt->device = devices[i];
142 t = kbdintctxt->devices;
143 kbdintctxt->devices = t[len] ? xstrdup(t+len+1) : NULL;
144 xfree(t);
145 debug2("kbdint_next_device: devices %s", kbdintctxt->devices ?
146 kbdintctxt->devices : "<empty>");
147 } while (kbdintctxt->devices && !kbdintctxt->device);
148
149 return kbdintctxt->device ? 1 : 0;
150}
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000151
152/*
Ben Lindstrombdfb4df2001-10-03 17:12:43 +0000153 * try challenge-response, set authctxt->postponed if we have to
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000154 * wait for the response.
155 */
156int
157auth2_challenge(Authctxt *authctxt, char *devs)
158{
Ben Lindstrom551ea372001-06-05 18:56:16 +0000159 debug("auth2_challenge: user=%s devs=%s",
160 authctxt->user ? authctxt->user : "<nouser>",
161 devs ? devs : "<no devs>");
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000162
Ben Lindstrom742e89e2001-06-09 01:17:23 +0000163 if (authctxt->user == NULL || !devs)
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000164 return 0;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100165 if (authctxt->kbdintctxt == NULL)
Ben Lindstrom551ea372001-06-05 18:56:16 +0000166 authctxt->kbdintctxt = kbdint_alloc(devs);
167 return auth2_challenge_start(authctxt);
168}
169
Damien Milleree116252001-12-21 12:42:34 +1100170/* unregister kbd-int callbacks and context */
171void
172auth2_challenge_stop(Authctxt *authctxt)
173{
174 /* unregister callback */
175 dispatch_set(SSH2_MSG_USERAUTH_INFO_RESPONSE, NULL);
176 if (authctxt->kbdintctxt != NULL) {
177 kbdint_free(authctxt->kbdintctxt);
178 authctxt->kbdintctxt = NULL;
179 }
180}
181
Ben Lindstrom551ea372001-06-05 18:56:16 +0000182/* side effect: sets authctxt->postponed if a reply was sent*/
183static int
184auth2_challenge_start(Authctxt *authctxt)
185{
186 KbdintAuthctxt *kbdintctxt = authctxt->kbdintctxt;
187
188 debug2("auth2_challenge_start: devices %s",
189 kbdintctxt->devices ? kbdintctxt->devices : "<empty>");
190
191 if (kbdint_next_device(kbdintctxt) == 0) {
Damien Milleree116252001-12-21 12:42:34 +1100192 auth2_challenge_stop(authctxt);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000193 return 0;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000194 }
195 debug("auth2_challenge_start: trying authentication method '%s'",
196 kbdintctxt->device->name);
197
198 if ((kbdintctxt->ctxt = kbdintctxt->device->init_ctx(authctxt)) == NULL) {
Damien Milleree116252001-12-21 12:42:34 +1100199 auth2_challenge_stop(authctxt);
Ben Lindstrom551ea372001-06-05 18:56:16 +0000200 return 0;
201 }
202 if (send_userauth_info_request(authctxt) == 0) {
Damien Milleree116252001-12-21 12:42:34 +1100203 auth2_challenge_stop(authctxt);
Ben Lindstrom551ea372001-06-05 18:56:16 +0000204 return 0;
205 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000206 dispatch_set(SSH2_MSG_USERAUTH_INFO_RESPONSE,
207 &input_userauth_info_response);
Ben Lindstrom551ea372001-06-05 18:56:16 +0000208
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000209 authctxt->postponed = 1;
210 return 0;
211}
212
Ben Lindstrom551ea372001-06-05 18:56:16 +0000213static int
214send_userauth_info_request(Authctxt *authctxt)
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000215{
Ben Lindstrom551ea372001-06-05 18:56:16 +0000216 KbdintAuthctxt *kbdintctxt;
217 char *name, *instr, **prompts;
218 int i;
Damien Millerfb7fd952002-06-26 23:58:39 +1000219 u_int *echo_on;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000220
221 kbdintctxt = authctxt->kbdintctxt;
222 if (kbdintctxt->device->query(kbdintctxt->ctxt,
Damien Millerfb7fd952002-06-26 23:58:39 +1000223 &name, &instr, &kbdintctxt->nreq, &prompts, &echo_on))
Ben Lindstrom551ea372001-06-05 18:56:16 +0000224 return 0;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000225
226 packet_start(SSH2_MSG_USERAUTH_INFO_REQUEST);
Ben Lindstrom551ea372001-06-05 18:56:16 +0000227 packet_put_cstring(name);
228 packet_put_cstring(instr);
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000229 packet_put_cstring(""); /* language not used */
Damien Millerfb7fd952002-06-26 23:58:39 +1000230 packet_put_int(kbdintctxt->nreq);
231 for (i = 0; i < kbdintctxt->nreq; i++) {
Ben Lindstrom551ea372001-06-05 18:56:16 +0000232 packet_put_cstring(prompts[i]);
233 packet_put_char(echo_on[i]);
234 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000235 packet_send();
236 packet_write_wait();
Ben Lindstrom551ea372001-06-05 18:56:16 +0000237
Damien Millerfb7fd952002-06-26 23:58:39 +1000238 for (i = 0; i < kbdintctxt->nreq; i++)
Ben Lindstrom551ea372001-06-05 18:56:16 +0000239 xfree(prompts[i]);
240 xfree(prompts);
241 xfree(echo_on);
242 xfree(name);
243 xfree(instr);
244 return 1;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000245}
246
Ben Lindstrom551ea372001-06-05 18:56:16 +0000247static void
Damien Miller630d6f42002-01-22 23:17:30 +1100248input_userauth_info_response(int type, u_int32_t seq, void *ctxt)
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000249{
250 Authctxt *authctxt = ctxt;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000251 KbdintAuthctxt *kbdintctxt;
252 int i, authenticated = 0, res, len;
253 u_int nresp;
254 char **response = NULL, *method;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000255
256 if (authctxt == NULL)
257 fatal("input_userauth_info_response: no authctxt");
Ben Lindstrom551ea372001-06-05 18:56:16 +0000258 kbdintctxt = authctxt->kbdintctxt;
259 if (kbdintctxt == NULL || kbdintctxt->ctxt == NULL)
260 fatal("input_userauth_info_response: no kbdintctxt");
261 if (kbdintctxt->device == NULL)
262 fatal("input_userauth_info_response: no device");
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000263
264 authctxt->postponed = 0; /* reset */
265 nresp = packet_get_int();
Damien Millerfb7fd952002-06-26 23:58:39 +1000266 if (nresp != kbdintctxt->nreq)
267 fatal("input_userauth_info_response: wrong number of replies");
268 if (nresp > 100)
269 fatal("input_userauth_info_response: too many replies");
Ben Lindstrom551ea372001-06-05 18:56:16 +0000270 if (nresp > 0) {
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000271 response = xmalloc(nresp * sizeof(char *));
Ben Lindstrom551ea372001-06-05 18:56:16 +0000272 for (i = 0; i < nresp; i++)
273 response[i] = packet_get_string(NULL);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000274 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100275 packet_check_eom();
Ben Lindstrom551ea372001-06-05 18:56:16 +0000276
Darren Tucker611649e2005-01-20 11:05:34 +1100277 res = kbdintctxt->device->respond(kbdintctxt->ctxt, nresp, response);
Ben Lindstrom551ea372001-06-05 18:56:16 +0000278
279 for (i = 0; i < nresp; i++) {
280 memset(response[i], 'r', strlen(response[i]));
281 xfree(response[i]);
282 }
283 if (response)
284 xfree(response);
285
286 switch (res) {
287 case 0:
288 /* Success! */
Darren Tucker611649e2005-01-20 11:05:34 +1100289 authenticated = authctxt->valid ? 1 : 0;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000290 break;
291 case 1:
292 /* Authentication needs further interaction */
Damien Milleree116252001-12-21 12:42:34 +1100293 if (send_userauth_info_request(authctxt) == 1)
294 authctxt->postponed = 1;
Ben Lindstrom551ea372001-06-05 18:56:16 +0000295 break;
296 default:
297 /* Failure! */
298 break;
299 }
300
301 len = strlen("keyboard-interactive") + 2 +
302 strlen(kbdintctxt->device->name);
303 method = xmalloc(len);
Damien Miller209ee4e2002-01-22 23:25:08 +1100304 snprintf(method, len, "keyboard-interactive/%s",
305 kbdintctxt->device->name);
Ben Lindstrom551ea372001-06-05 18:56:16 +0000306
307 if (!authctxt->postponed) {
Ben Lindstrom551ea372001-06-05 18:56:16 +0000308 if (authenticated) {
Damien Milleree116252001-12-21 12:42:34 +1100309 auth2_challenge_stop(authctxt);
Ben Lindstrom551ea372001-06-05 18:56:16 +0000310 } else {
311 /* start next device */
312 /* may set authctxt->postponed */
313 auth2_challenge_start(authctxt);
314 }
315 }
Damien Miller5d57e502001-03-30 10:48:31 +1000316 userauth_finish(authctxt, authenticated, method);
Ben Lindstrom551ea372001-06-05 18:56:16 +0000317 xfree(method);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000318}
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000319
320void
321privsep_challenge_enable(void)
322{
Damien Millera6a7c192003-05-26 21:36:13 +1000323#if defined(BSD_AUTH) || defined(USE_PAM) || defined(SKEY)
324 int n = 0;
325#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000326#ifdef BSD_AUTH
327 extern KbdintDevice mm_bsdauth_device;
328#endif
Damien Miller4f9f42a2003-05-10 19:28:02 +1000329#ifdef USE_PAM
330 extern KbdintDevice mm_sshpam_device;
331#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000332#ifdef SKEY
333 extern KbdintDevice mm_skey_device;
334#endif
Damien Miller4f9f42a2003-05-10 19:28:02 +1000335
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000336#ifdef BSD_AUTH
Damien Miller4f9f42a2003-05-10 19:28:02 +1000337 devices[n++] = &mm_bsdauth_device;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000338#else
Damien Miller4f9f42a2003-05-10 19:28:02 +1000339#ifdef USE_PAM
340 devices[n++] = &mm_sshpam_device;
341#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000342#ifdef SKEY
Damien Miller4f9f42a2003-05-10 19:28:02 +1000343 devices[n++] = &mm_skey_device;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000344#endif
345#endif
346}