Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 1 | /* |
Ben Lindstrom | 92a2e38 | 2001-03-05 06:59:27 +0000 | [diff] [blame] | 2 | * Copyright (c) 2001 Markus Friedl. All rights reserved. |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 3 | * |
| 4 | * Redistribution and use in source and binary forms, with or without |
| 5 | * modification, are permitted provided that the following conditions |
| 6 | * are met: |
| 7 | * 1. Redistributions of source code must retain the above copyright |
| 8 | * notice, this list of conditions and the following disclaimer. |
| 9 | * 2. Redistributions in binary form must reproduce the above copyright |
| 10 | * notice, this list of conditions and the following disclaimer in the |
| 11 | * documentation and/or other materials provided with the distribution. |
| 12 | * |
| 13 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 14 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 15 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 16 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 17 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 18 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 19 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 20 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 21 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 22 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 23 | */ |
| 24 | |
| 25 | #include "includes.h" |
Damien Miller | 3e8f41e | 2003-11-17 21:09:50 +1100 | [diff] [blame] | 26 | RCSID("$OpenBSD: auth-chall.c,v 1.9 2003/11/03 09:03:37 djm Exp $"); |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 27 | |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 28 | #include "auth.h" |
Damien Miller | 60396b0 | 2001-02-18 17:01:00 +1100 | [diff] [blame] | 29 | #include "log.h" |
Ben Lindstrom | 551ea37 | 2001-06-05 18:56:16 +0000 | [diff] [blame] | 30 | #include "xmalloc.h" |
Darren Tucker | 3c66080 | 2005-01-20 22:20:50 +1100 | [diff] [blame] | 31 | #include "servconf.h" |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 32 | |
Ben Lindstrom | 551ea37 | 2001-06-05 18:56:16 +0000 | [diff] [blame] | 33 | /* limited protocol v1 interface to kbd-interactive authentication */ |
| 34 | |
| 35 | extern KbdintDevice *devices[]; |
| 36 | static KbdintDevice *device; |
Darren Tucker | 3c66080 | 2005-01-20 22:20:50 +1100 | [diff] [blame] | 37 | extern ServerOptions options; |
Ben Lindstrom | 551ea37 | 2001-06-05 18:56:16 +0000 | [diff] [blame] | 38 | |
Damien Miller | 60396b0 | 2001-02-18 17:01:00 +1100 | [diff] [blame] | 39 | char * |
Ben Lindstrom | 551ea37 | 2001-06-05 18:56:16 +0000 | [diff] [blame] | 40 | get_challenge(Authctxt *authctxt) |
Damien Miller | 60396b0 | 2001-02-18 17:01:00 +1100 | [diff] [blame] | 41 | { |
Ben Lindstrom | 551ea37 | 2001-06-05 18:56:16 +0000 | [diff] [blame] | 42 | char *challenge, *name, *info, **prompts; |
| 43 | u_int i, numprompts; |
| 44 | u_int *echo_on; |
Damien Miller | 60396b0 | 2001-02-18 17:01:00 +1100 | [diff] [blame] | 45 | |
Darren Tucker | 3c66080 | 2005-01-20 22:20:50 +1100 | [diff] [blame] | 46 | #ifdef USE_PAM |
| 47 | if (!options.use_pam) |
| 48 | remove_kbdint_device("pam"); |
| 49 | #endif |
| 50 | |
Ben Lindstrom | 551ea37 | 2001-06-05 18:56:16 +0000 | [diff] [blame] | 51 | device = devices[0]; /* we always use the 1st device for protocol 1 */ |
| 52 | if (device == NULL) |
| 53 | return NULL; |
| 54 | if ((authctxt->kbdintctxt = device->init_ctx(authctxt)) == NULL) |
| 55 | return NULL; |
| 56 | if (device->query(authctxt->kbdintctxt, &name, &info, |
| 57 | &numprompts, &prompts, &echo_on)) { |
| 58 | device->free_ctx(authctxt->kbdintctxt); |
| 59 | authctxt->kbdintctxt = NULL; |
| 60 | return NULL; |
Damien Miller | 60396b0 | 2001-02-18 17:01:00 +1100 | [diff] [blame] | 61 | } |
Ben Lindstrom | 551ea37 | 2001-06-05 18:56:16 +0000 | [diff] [blame] | 62 | if (numprompts < 1) |
| 63 | fatal("get_challenge: numprompts < 1"); |
| 64 | challenge = xstrdup(prompts[0]); |
| 65 | for (i = 0; i < numprompts; i++) |
| 66 | xfree(prompts[i]); |
| 67 | xfree(prompts); |
| 68 | xfree(name); |
| 69 | xfree(echo_on); |
| 70 | xfree(info); |
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 | return (challenge); |
Damien Miller | 60396b0 | 2001-02-18 17:01:00 +1100 | [diff] [blame] | 73 | } |
Ben Lindstrom | 551ea37 | 2001-06-05 18:56:16 +0000 | [diff] [blame] | 74 | int |
| 75 | verify_response(Authctxt *authctxt, const char *response) |
| 76 | { |
Damien Miller | 3e8f41e | 2003-11-17 21:09:50 +1100 | [diff] [blame] | 77 | char *resp[1], *name, *info, **prompts; |
| 78 | u_int i, numprompts, *echo_on; |
| 79 | int authenticated = 0; |
Ben Lindstrom | cf0809d | 2001-01-19 15:44:10 +0000 | [diff] [blame] | 80 | |
Ben Lindstrom | 551ea37 | 2001-06-05 18:56:16 +0000 | [diff] [blame] | 81 | if (device == NULL) |
| 82 | return 0; |
| 83 | if (authctxt->kbdintctxt == NULL) |
| 84 | return 0; |
| 85 | resp[0] = (char *)response; |
Damien Miller | 3e8f41e | 2003-11-17 21:09:50 +1100 | [diff] [blame] | 86 | switch (device->respond(authctxt->kbdintctxt, 1, resp)) { |
| 87 | case 0: /* Success */ |
| 88 | authenticated = 1; |
| 89 | break; |
| 90 | case 1: /* Postponed - retry with empty query for PAM */ |
| 91 | if ((device->query(authctxt->kbdintctxt, &name, &info, |
| 92 | &numprompts, &prompts, &echo_on)) != 0) |
| 93 | break; |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 94 | if (numprompts == 0 && |
Damien Miller | 3e8f41e | 2003-11-17 21:09:50 +1100 | [diff] [blame] | 95 | device->respond(authctxt->kbdintctxt, 0, resp) == 0) |
| 96 | authenticated = 1; |
Damien Miller | 4f9f42a | 2003-05-10 19:28:02 +1000 | [diff] [blame] | 97 | |
Damien Miller | 3e8f41e | 2003-11-17 21:09:50 +1100 | [diff] [blame] | 98 | for (i = 0; i < numprompts; i++) |
| 99 | xfree(prompts[i]); |
| 100 | xfree(prompts); |
| 101 | xfree(name); |
| 102 | xfree(echo_on); |
| 103 | xfree(info); |
| 104 | break; |
Damien Miller | 4f9f42a | 2003-05-10 19:28:02 +1000 | [diff] [blame] | 105 | } |
Ben Lindstrom | 551ea37 | 2001-06-05 18:56:16 +0000 | [diff] [blame] | 106 | device->free_ctx(authctxt->kbdintctxt); |
| 107 | authctxt->kbdintctxt = NULL; |
Damien Miller | 3e8f41e | 2003-11-17 21:09:50 +1100 | [diff] [blame] | 108 | return authenticated; |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 109 | } |
Damien Miller | 4f9f42a | 2003-05-10 19:28:02 +1000 | [diff] [blame] | 110 | void |
| 111 | abandon_challenge_response(Authctxt *authctxt) |
| 112 | { |
| 113 | if (authctxt->kbdintctxt != NULL) { |
| 114 | device->free_ctx(authctxt->kbdintctxt); |
| 115 | authctxt->kbdintctxt = NULL; |
| 116 | } |
| 117 | } |