blob: 6601e8664c8d1aa218e8227a5a359e0e20181659 [file] [log] [blame]
djm@openbsd.orgbe02d7c2019-09-06 04:53:27 +00001/* $OpenBSD: auth2-passwd.c,v 1.17 2019/09/06 04:53:27 djm Exp $ */
Ben Lindstrom855bf3a2002-06-06 20:27:55 +00002/*
3 * Copyright (c) 2000 Markus Friedl. All rights reserved.
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 Lindstrom855bf3a2002-06-06 20:27:55 +000027
Damien Millerd7834352006-08-05 12:39:39 +100028#include <sys/types.h>
29
djm@openbsd.orgbe02d7c2019-09-06 04:53:27 +000030#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100031#include <string.h>
Damien Millerd7834352006-08-05 12:39:39 +100032#include <stdarg.h>
Darren Tucker9634ffb2019-07-23 22:25:44 +100033#include <stdio.h>
Damien Millere3476ed2006-07-24 14:13:33 +100034
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000035#include "packet.h"
markus@openbsd.org60306b22017-05-30 14:26:49 +000036#include "ssherr.h"
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000037#include "log.h"
markus@openbsd.org60306b22017-05-30 14:26:49 +000038#include "sshkey.h"
Damien Millerd7834352006-08-05 12:39:39 +100039#include "hostfile.h"
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000040#include "auth.h"
Damien Millerd7834352006-08-05 12:39:39 +100041#ifdef GSSAPI
42#include "ssh-gss.h"
43#endif
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000044#include "monitor_wrap.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100045#include "misc.h"
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000046#include "servconf.h"
47
48/* import */
49extern ServerOptions options;
50
51static int
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +000052userauth_passwd(struct ssh *ssh)
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000053{
markus@openbsd.org60306b22017-05-30 14:26:49 +000054 char *password;
55 int authenticated = 0, r;
56 u_char change;
57 size_t len;
Darren Tuckerea287062003-12-31 11:43:24 +110058
markus@openbsd.org60306b22017-05-30 14:26:49 +000059 if ((r = sshpkt_get_u8(ssh, &change)) != 0 ||
60 (r = sshpkt_get_cstring(ssh, &password, &len)) != 0 ||
61 (change && (r = sshpkt_get_cstring(ssh, NULL, NULL)) != 0) ||
62 (r = sshpkt_get_end(ssh)) != 0)
63 fatal("%s: %s", __func__, ssh_err(r));
Darren Tuckerea287062003-12-31 11:43:24 +110064
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000065 if (change)
Damien Miller996acd22003-04-09 20:59:48 +100066 logit("password change not supported");
djm@openbsd.org7c856852018-03-03 03:15:51 +000067 else if (PRIVSEP(auth_password(ssh, password)) == 1)
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000068 authenticated = 1;
Damien Millera5103f42014-02-04 11:20:14 +110069 explicit_bzero(password, len);
Darren Tuckera627d422013-06-02 07:31:17 +100070 free(password);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000071 return authenticated;
72}
73
74Authmethod method_passwd = {
75 "password",
76 userauth_passwd,
77 &options.password_authentication
78};