blob: 60c9f14ca84475dfb4ad98524d7bed20c0aca2ed [file] [log] [blame]
Damien Miller86687062014-07-02 15:28:02 +10001/* $OpenBSD: auth-chall.c,v 1.14 2014/06/24 01:13:21 djm 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>
Damien Miller86687062014-07-02 15:28:02 +100029#include <stdarg.h>
30#include <stdlib.h>
31#include <stdio.h>
Damien Millerd7834352006-08-05 12:39:39 +100032
33#include "xmalloc.h"
34#include "key.h"
35#include "hostfile.h"
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000036#include "auth.h"
Damien Miller60396b02001-02-18 17:01:00 +110037#include "log.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100038#include "misc.h"
Darren Tucker3c660802005-01-20 22:20:50 +110039#include "servconf.h"
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000040
Ben Lindstrom551ea372001-06-05 18:56:16 +000041/* limited protocol v1 interface to kbd-interactive authentication */
42
43extern KbdintDevice *devices[];
44static KbdintDevice *device;
Darren Tucker3c660802005-01-20 22:20:50 +110045extern ServerOptions options;
Ben Lindstrom551ea372001-06-05 18:56:16 +000046
Damien Miller60396b02001-02-18 17:01:00 +110047char *
Ben Lindstrom551ea372001-06-05 18:56:16 +000048get_challenge(Authctxt *authctxt)
Damien Miller60396b02001-02-18 17:01:00 +110049{
Ben Lindstrom551ea372001-06-05 18:56:16 +000050 char *challenge, *name, *info, **prompts;
51 u_int i, numprompts;
52 u_int *echo_on;
Damien Miller60396b02001-02-18 17:01:00 +110053
Darren Tucker3c660802005-01-20 22:20:50 +110054#ifdef USE_PAM
55 if (!options.use_pam)
56 remove_kbdint_device("pam");
57#endif
58
Ben Lindstrom551ea372001-06-05 18:56:16 +000059 device = devices[0]; /* we always use the 1st device for protocol 1 */
60 if (device == NULL)
61 return NULL;
62 if ((authctxt->kbdintctxt = device->init_ctx(authctxt)) == NULL)
63 return NULL;
64 if (device->query(authctxt->kbdintctxt, &name, &info,
65 &numprompts, &prompts, &echo_on)) {
66 device->free_ctx(authctxt->kbdintctxt);
67 authctxt->kbdintctxt = NULL;
68 return NULL;
Damien Miller60396b02001-02-18 17:01:00 +110069 }
Ben Lindstrom551ea372001-06-05 18:56:16 +000070 if (numprompts < 1)
71 fatal("get_challenge: numprompts < 1");
72 challenge = xstrdup(prompts[0]);
73 for (i = 0; i < numprompts; i++)
Darren Tuckera627d422013-06-02 07:31:17 +100074 free(prompts[i]);
75 free(prompts);
76 free(name);
77 free(echo_on);
78 free(info);
Damien Miller60396b02001-02-18 17:01:00 +110079
Ben Lindstrom551ea372001-06-05 18:56:16 +000080 return (challenge);
Damien Miller60396b02001-02-18 17:01:00 +110081}
Ben Lindstrom551ea372001-06-05 18:56:16 +000082int
83verify_response(Authctxt *authctxt, const char *response)
84{
Damien Miller3e8f41e2003-11-17 21:09:50 +110085 char *resp[1], *name, *info, **prompts;
86 u_int i, numprompts, *echo_on;
87 int authenticated = 0;
Ben Lindstromcf0809d2001-01-19 15:44:10 +000088
Ben Lindstrom551ea372001-06-05 18:56:16 +000089 if (device == NULL)
90 return 0;
91 if (authctxt->kbdintctxt == NULL)
92 return 0;
93 resp[0] = (char *)response;
Damien Miller3e8f41e2003-11-17 21:09:50 +110094 switch (device->respond(authctxt->kbdintctxt, 1, resp)) {
95 case 0: /* Success */
96 authenticated = 1;
97 break;
98 case 1: /* Postponed - retry with empty query for PAM */
99 if ((device->query(authctxt->kbdintctxt, &name, &info,
100 &numprompts, &prompts, &echo_on)) != 0)
101 break;
Damien Millera8e06ce2003-11-21 23:48:55 +1100102 if (numprompts == 0 &&
Damien Miller3e8f41e2003-11-17 21:09:50 +1100103 device->respond(authctxt->kbdintctxt, 0, resp) == 0)
104 authenticated = 1;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000105
Damien Miller3e8f41e2003-11-17 21:09:50 +1100106 for (i = 0; i < numprompts; i++)
Darren Tuckerf60845f2013-06-02 08:07:31 +1000107 free(prompts[i]);
108 free(prompts);
109 free(name);
110 free(echo_on);
111 free(info);
Damien Miller3e8f41e2003-11-17 21:09:50 +1100112 break;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000113 }
Ben Lindstrom551ea372001-06-05 18:56:16 +0000114 device->free_ctx(authctxt->kbdintctxt);
115 authctxt->kbdintctxt = NULL;
Damien Miller3e8f41e2003-11-17 21:09:50 +1100116 return authenticated;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000117}
Damien Miller4f9f42a2003-05-10 19:28:02 +1000118void
119abandon_challenge_response(Authctxt *authctxt)
120{
121 if (authctxt->kbdintctxt != NULL) {
122 device->free_ctx(authctxt->kbdintctxt);
123 authctxt->kbdintctxt = NULL;
124 }
125}