Damien Miller | 8668706 | 2014-07-02 15:28:02 +1000 | [diff] [blame] | 1 | /* $OpenBSD: auth-chall.c,v 1.14 2014/06/24 01:13:21 djm Exp $ */ |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 2 | /* |
Ben Lindstrom | 92a2e38 | 2001-03-05 06:59:27 +0000 | [diff] [blame] | 3 | * Copyright (c) 2001 Markus Friedl. All rights reserved. |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 4 | * |
| 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 Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 27 | |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 28 | #include <sys/types.h> |
Damien Miller | 8668706 | 2014-07-02 15:28:02 +1000 | [diff] [blame] | 29 | #include <stdarg.h> |
| 30 | #include <stdlib.h> |
| 31 | #include <stdio.h> |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 32 | |
Damien Miller | ded319c | 2006-09-01 15:38:36 +1000 | [diff] [blame] | 33 | #include <stdarg.h> |
| 34 | |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 35 | #include "xmalloc.h" |
| 36 | #include "key.h" |
| 37 | #include "hostfile.h" |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 38 | #include "auth.h" |
Damien Miller | 60396b0 | 2001-02-18 17:01:00 +1100 | [diff] [blame] | 39 | #include "log.h" |
Damien Miller | 7acefbb | 2014-07-18 14:11:24 +1000 | [diff] [blame] | 40 | #include "misc.h" |
Darren Tucker | 3c66080 | 2005-01-20 22:20:50 +1100 | [diff] [blame] | 41 | #include "servconf.h" |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 42 | |
Ben Lindstrom | 551ea37 | 2001-06-05 18:56:16 +0000 | [diff] [blame] | 43 | /* limited protocol v1 interface to kbd-interactive authentication */ |
| 44 | |
| 45 | extern KbdintDevice *devices[]; |
| 46 | static KbdintDevice *device; |
Darren Tucker | 3c66080 | 2005-01-20 22:20:50 +1100 | [diff] [blame] | 47 | extern ServerOptions options; |
Ben Lindstrom | 551ea37 | 2001-06-05 18:56:16 +0000 | [diff] [blame] | 48 | |
Damien Miller | 60396b0 | 2001-02-18 17:01:00 +1100 | [diff] [blame] | 49 | char * |
Ben Lindstrom | 551ea37 | 2001-06-05 18:56:16 +0000 | [diff] [blame] | 50 | get_challenge(Authctxt *authctxt) |
Damien Miller | 60396b0 | 2001-02-18 17:01:00 +1100 | [diff] [blame] | 51 | { |
Ben Lindstrom | 551ea37 | 2001-06-05 18:56:16 +0000 | [diff] [blame] | 52 | char *challenge, *name, *info, **prompts; |
| 53 | u_int i, numprompts; |
| 54 | u_int *echo_on; |
Damien Miller | 60396b0 | 2001-02-18 17:01:00 +1100 | [diff] [blame] | 55 | |
Darren Tucker | 3c66080 | 2005-01-20 22:20:50 +1100 | [diff] [blame] | 56 | #ifdef USE_PAM |
| 57 | if (!options.use_pam) |
| 58 | remove_kbdint_device("pam"); |
| 59 | #endif |
| 60 | |
Ben Lindstrom | 551ea37 | 2001-06-05 18:56:16 +0000 | [diff] [blame] | 61 | device = devices[0]; /* we always use the 1st device for protocol 1 */ |
| 62 | if (device == NULL) |
| 63 | return NULL; |
| 64 | if ((authctxt->kbdintctxt = device->init_ctx(authctxt)) == NULL) |
| 65 | return NULL; |
| 66 | if (device->query(authctxt->kbdintctxt, &name, &info, |
| 67 | &numprompts, &prompts, &echo_on)) { |
| 68 | device->free_ctx(authctxt->kbdintctxt); |
| 69 | authctxt->kbdintctxt = NULL; |
| 70 | return NULL; |
Damien Miller | 60396b0 | 2001-02-18 17:01:00 +1100 | [diff] [blame] | 71 | } |
Ben Lindstrom | 551ea37 | 2001-06-05 18:56:16 +0000 | [diff] [blame] | 72 | if (numprompts < 1) |
| 73 | fatal("get_challenge: numprompts < 1"); |
| 74 | challenge = xstrdup(prompts[0]); |
| 75 | for (i = 0; i < numprompts; i++) |
Darren Tucker | a627d42 | 2013-06-02 07:31:17 +1000 | [diff] [blame] | 76 | free(prompts[i]); |
| 77 | free(prompts); |
| 78 | free(name); |
| 79 | free(echo_on); |
| 80 | free(info); |
Damien Miller | 60396b0 | 2001-02-18 17:01:00 +1100 | [diff] [blame] | 81 | |
Ben Lindstrom | 551ea37 | 2001-06-05 18:56:16 +0000 | [diff] [blame] | 82 | return (challenge); |
Damien Miller | 60396b0 | 2001-02-18 17:01:00 +1100 | [diff] [blame] | 83 | } |
Ben Lindstrom | 551ea37 | 2001-06-05 18:56:16 +0000 | [diff] [blame] | 84 | int |
| 85 | verify_response(Authctxt *authctxt, const char *response) |
| 86 | { |
Damien Miller | 3e8f41e | 2003-11-17 21:09:50 +1100 | [diff] [blame] | 87 | char *resp[1], *name, *info, **prompts; |
| 88 | u_int i, numprompts, *echo_on; |
| 89 | int authenticated = 0; |
Ben Lindstrom | cf0809d | 2001-01-19 15:44:10 +0000 | [diff] [blame] | 90 | |
Ben Lindstrom | 551ea37 | 2001-06-05 18:56:16 +0000 | [diff] [blame] | 91 | if (device == NULL) |
| 92 | return 0; |
| 93 | if (authctxt->kbdintctxt == NULL) |
| 94 | return 0; |
| 95 | resp[0] = (char *)response; |
Damien Miller | 3e8f41e | 2003-11-17 21:09:50 +1100 | [diff] [blame] | 96 | switch (device->respond(authctxt->kbdintctxt, 1, resp)) { |
| 97 | case 0: /* Success */ |
| 98 | authenticated = 1; |
| 99 | break; |
| 100 | case 1: /* Postponed - retry with empty query for PAM */ |
| 101 | if ((device->query(authctxt->kbdintctxt, &name, &info, |
| 102 | &numprompts, &prompts, &echo_on)) != 0) |
| 103 | break; |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 104 | if (numprompts == 0 && |
Damien Miller | 3e8f41e | 2003-11-17 21:09:50 +1100 | [diff] [blame] | 105 | device->respond(authctxt->kbdintctxt, 0, resp) == 0) |
| 106 | authenticated = 1; |
Damien Miller | 4f9f42a | 2003-05-10 19:28:02 +1000 | [diff] [blame] | 107 | |
Damien Miller | 3e8f41e | 2003-11-17 21:09:50 +1100 | [diff] [blame] | 108 | for (i = 0; i < numprompts; i++) |
Darren Tucker | f60845f | 2013-06-02 08:07:31 +1000 | [diff] [blame] | 109 | free(prompts[i]); |
| 110 | free(prompts); |
| 111 | free(name); |
| 112 | free(echo_on); |
| 113 | free(info); |
Damien Miller | 3e8f41e | 2003-11-17 21:09:50 +1100 | [diff] [blame] | 114 | break; |
Damien Miller | 4f9f42a | 2003-05-10 19:28:02 +1000 | [diff] [blame] | 115 | } |
Ben Lindstrom | 551ea37 | 2001-06-05 18:56:16 +0000 | [diff] [blame] | 116 | device->free_ctx(authctxt->kbdintctxt); |
| 117 | authctxt->kbdintctxt = NULL; |
Damien Miller | 3e8f41e | 2003-11-17 21:09:50 +1100 | [diff] [blame] | 118 | return authenticated; |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 119 | } |
Damien Miller | 4f9f42a | 2003-05-10 19:28:02 +1000 | [diff] [blame] | 120 | void |
| 121 | abandon_challenge_response(Authctxt *authctxt) |
| 122 | { |
| 123 | if (authctxt->kbdintctxt != NULL) { |
| 124 | device->free_ctx(authctxt->kbdintctxt); |
| 125 | authctxt->kbdintctxt = NULL; |
| 126 | } |
| 127 | } |