2024-05-17 02:30:23 +02:00
|
|
|
/* $OpenBSD: auth2-kbdint.c,v 1.15 2024/05/17 00:30:23 djm Exp $ */
|
2002-06-06 22:27:55 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2000 Markus Friedl. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "includes.h"
|
|
|
|
|
2006-08-05 04:39:39 +02:00
|
|
|
#include <sys/types.h>
|
|
|
|
|
2019-09-06 06:53:27 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
2019-11-13 05:47:52 +01:00
|
|
|
#include <stdarg.h>
|
2019-09-06 06:53:27 +02:00
|
|
|
|
2006-08-05 04:39:39 +02:00
|
|
|
#include "xmalloc.h"
|
2002-06-06 22:27:55 +02:00
|
|
|
#include "packet.h"
|
2006-08-05 04:39:39 +02:00
|
|
|
#include "hostfile.h"
|
2002-06-06 22:27:55 +02:00
|
|
|
#include "auth.h"
|
|
|
|
#include "log.h"
|
2014-07-18 06:11:24 +02:00
|
|
|
#include "misc.h"
|
2002-06-06 22:27:55 +02:00
|
|
|
#include "servconf.h"
|
2018-07-09 23:35:50 +02:00
|
|
|
#include "ssherr.h"
|
2002-06-06 22:27:55 +02:00
|
|
|
|
|
|
|
/* import */
|
|
|
|
extern ServerOptions options;
|
2024-05-17 02:30:23 +02:00
|
|
|
extern struct authmethod_cfg methodcfg_kbdint;
|
2002-06-06 22:27:55 +02:00
|
|
|
|
|
|
|
static int
|
2021-12-19 23:12:07 +01:00
|
|
|
userauth_kbdint(struct ssh *ssh, const char *method)
|
2002-06-06 22:27:55 +02:00
|
|
|
{
|
2018-07-09 23:35:50 +02:00
|
|
|
int r, authenticated = 0;
|
2002-06-06 22:27:55 +02:00
|
|
|
char *lang, *devs;
|
|
|
|
|
2018-07-09 23:35:50 +02:00
|
|
|
if ((r = sshpkt_get_cstring(ssh, &lang, NULL)) != 0 ||
|
|
|
|
(r = sshpkt_get_cstring(ssh, &devs, NULL)) != 0 ||
|
|
|
|
(r = sshpkt_get_end(ssh)) != 0)
|
2020-10-18 13:32:01 +02:00
|
|
|
fatal_fr(r, "parse packet");
|
2002-06-06 22:27:55 +02:00
|
|
|
|
|
|
|
debug("keyboard-interactive devs %s", devs);
|
|
|
|
|
2021-07-03 11:23:28 +02:00
|
|
|
if (options.kbd_interactive_authentication)
|
2017-05-30 16:29:59 +02:00
|
|
|
authenticated = auth2_challenge(ssh, devs);
|
2002-06-06 22:27:55 +02:00
|
|
|
|
2013-06-01 23:31:17 +02:00
|
|
|
free(devs);
|
|
|
|
free(lang);
|
2002-06-06 22:27:55 +02:00
|
|
|
return authenticated;
|
|
|
|
}
|
|
|
|
|
|
|
|
Authmethod method_kbdint = {
|
2024-05-17 02:30:23 +02:00
|
|
|
&methodcfg_kbdint,
|
2002-06-06 22:27:55 +02:00
|
|
|
userauth_kbdint,
|
|
|
|
};
|