blob: 9c1079a17b613519497757755e16c831f89e6181 [file] [log] [blame]
Damien Millerd7834352006-08-05 12:39:39 +10001/* $OpenBSD: auth-chall.c,v 1.12 2006/08/03 03:34:41 deraadt Exp $ */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00002/*
Ben Lindstrom92a2e382001-03-05 06:59:27 +00003 * Copyright (c) 2001 Markus Friedl. 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
26#include "includes.h"
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000027
Damien Millerd7834352006-08-05 12:39:39 +100028#include <sys/types.h>
29
30#include "xmalloc.h"
31#include "key.h"
32#include "hostfile.h"
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000033#include "auth.h"
Damien Miller60396b02001-02-18 17:01:00 +110034#include "log.h"
Darren Tucker3c660802005-01-20 22:20:50 +110035#include "servconf.h"
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000036
Ben Lindstrom551ea372001-06-05 18:56:16 +000037/* limited protocol v1 interface to kbd-interactive authentication */
38
39extern KbdintDevice *devices[];
40static KbdintDevice *device;
Darren Tucker3c660802005-01-20 22:20:50 +110041extern ServerOptions options;
Ben Lindstrom551ea372001-06-05 18:56:16 +000042
Damien Miller60396b02001-02-18 17:01:00 +110043char *
Ben Lindstrom551ea372001-06-05 18:56:16 +000044get_challenge(Authctxt *authctxt)
Damien Miller60396b02001-02-18 17:01:00 +110045{
Ben Lindstrom551ea372001-06-05 18:56:16 +000046 char *challenge, *name, *info, **prompts;
47 u_int i, numprompts;
48 u_int *echo_on;
Damien Miller60396b02001-02-18 17:01:00 +110049
Darren Tucker3c660802005-01-20 22:20:50 +110050#ifdef USE_PAM
51 if (!options.use_pam)
52 remove_kbdint_device("pam");
53#endif
54
Ben Lindstrom551ea372001-06-05 18:56:16 +000055 device = devices[0]; /* we always use the 1st device for protocol 1 */
56 if (device == NULL)
57 return NULL;
58 if ((authctxt->kbdintctxt = device->init_ctx(authctxt)) == NULL)
59 return NULL;
60 if (device->query(authctxt->kbdintctxt, &name, &info,
61 &numprompts, &prompts, &echo_on)) {
62 device->free_ctx(authctxt->kbdintctxt);
63 authctxt->kbdintctxt = NULL;
64 return NULL;
Damien Miller60396b02001-02-18 17:01:00 +110065 }
Ben Lindstrom551ea372001-06-05 18:56:16 +000066 if (numprompts < 1)
67 fatal("get_challenge: numprompts < 1");
68 challenge = xstrdup(prompts[0]);
69 for (i = 0; i < numprompts; i++)
70 xfree(prompts[i]);
71 xfree(prompts);
72 xfree(name);
73 xfree(echo_on);
74 xfree(info);
Damien Miller60396b02001-02-18 17:01:00 +110075
Ben Lindstrom551ea372001-06-05 18:56:16 +000076 return (challenge);
Damien Miller60396b02001-02-18 17:01:00 +110077}
Ben Lindstrom551ea372001-06-05 18:56:16 +000078int
79verify_response(Authctxt *authctxt, const char *response)
80{
Damien Miller3e8f41e2003-11-17 21:09:50 +110081 char *resp[1], *name, *info, **prompts;
82 u_int i, numprompts, *echo_on;
83 int authenticated = 0;
Ben Lindstromcf0809d2001-01-19 15:44:10 +000084
Ben Lindstrom551ea372001-06-05 18:56:16 +000085 if (device == NULL)
86 return 0;
87 if (authctxt->kbdintctxt == NULL)
88 return 0;
89 resp[0] = (char *)response;
Damien Miller3e8f41e2003-11-17 21:09:50 +110090 switch (device->respond(authctxt->kbdintctxt, 1, resp)) {
91 case 0: /* Success */
92 authenticated = 1;
93 break;
94 case 1: /* Postponed - retry with empty query for PAM */
95 if ((device->query(authctxt->kbdintctxt, &name, &info,
96 &numprompts, &prompts, &echo_on)) != 0)
97 break;
Damien Millera8e06ce2003-11-21 23:48:55 +110098 if (numprompts == 0 &&
Damien Miller3e8f41e2003-11-17 21:09:50 +110099 device->respond(authctxt->kbdintctxt, 0, resp) == 0)
100 authenticated = 1;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000101
Damien Miller3e8f41e2003-11-17 21:09:50 +1100102 for (i = 0; i < numprompts; i++)
103 xfree(prompts[i]);
104 xfree(prompts);
105 xfree(name);
106 xfree(echo_on);
107 xfree(info);
108 break;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000109 }
Ben Lindstrom551ea372001-06-05 18:56:16 +0000110 device->free_ctx(authctxt->kbdintctxt);
111 authctxt->kbdintctxt = NULL;
Damien Miller3e8f41e2003-11-17 21:09:50 +1100112 return authenticated;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000113}
Damien Miller4f9f42a2003-05-10 19:28:02 +1000114void
115abandon_challenge_response(Authctxt *authctxt)
116{
117 if (authctxt->kbdintctxt != NULL) {
118 device->free_ctx(authctxt->kbdintctxt);
119 authctxt->kbdintctxt = NULL;
120 }
121}