blob: 2143ff5dec7f779b8f46ae351f630f08dc1e501d [file] [log] [blame]
djm@openbsd.orgbe02d7c2019-09-06 04:53:27 +00001/* $OpenBSD: auth2.c,v 1.157 2019/09/06 04:53:27 djm Exp $ */
Damien Millereba71ba2000-04-29 23:57:08 +10002/*
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.
Damien Millereba71ba2000-04-29 23:57:08 +100013 *
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 */
Damien Millere4340be2000-09-16 13:29:08 +110025
Damien Millereba71ba2000-04-29 23:57:08 +100026#include "includes.h"
Damien Millereba71ba2000-04-29 23:57:08 +100027
Damien Miller9f2abc42006-07-10 20:53:08 +100028#include <sys/types.h>
Darren Tucker4230a5d2008-07-02 22:56:09 +100029#include <sys/stat.h>
30#include <sys/uio.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100031
Darren Tucker4230a5d2008-07-02 22:56:09 +100032#include <fcntl.h>
djm@openbsd.org8f574952017-06-24 06:34:38 +000033#include <limits.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100034#include <pwd.h>
Damien Millerd7834352006-08-05 12:39:39 +100035#include <stdarg.h>
Damien Millere3476ed2006-07-24 14:13:33 +100036#include <string.h>
Darren Tucker4230a5d2008-07-02 22:56:09 +100037#include <unistd.h>
djm@openbsd.org943d0962019-01-17 04:20:53 +000038#include <time.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100039
djm@openbsd.orgbe02d7c2019-09-06 04:53:27 +000040#include "stdlib.h"
Damien Miller0b4d48b2008-07-05 09:44:53 +100041#include "atomicio.h"
Darren Tucker43e7a352009-06-21 19:50:08 +100042#include "xmalloc.h"
Damien Millerd7834352006-08-05 12:39:39 +100043#include "ssh2.h"
Damien Millereba71ba2000-04-29 23:57:08 +100044#include "packet.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000045#include "log.h"
markus@openbsd.orgc7d39ac2018-07-09 21:35:50 +000046#include "sshbuf.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100047#include "misc.h"
Damien Millereba71ba2000-04-29 23:57:08 +100048#include "servconf.h"
49#include "compat.h"
markus@openbsd.org5467fbc2018-07-11 18:53:29 +000050#include "sshkey.h"
Damien Millerd7834352006-08-05 12:39:39 +100051#include "hostfile.h"
Damien Millereba71ba2000-04-29 23:57:08 +100052#include "auth.h"
Damien Millereba71ba2000-04-29 23:57:08 +100053#include "dispatch.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000054#include "pathnames.h"
Damien Miller120a1ec2018-07-10 19:39:52 +100055#include "sshbuf.h"
56#include "ssherr.h"
Damien Millereba71ba2000-04-29 23:57:08 +100057
Darren Tucker0efd1552003-08-26 11:49:55 +100058#ifdef GSSAPI
59#include "ssh-gss.h"
60#endif
Damien Millerd7834352006-08-05 12:39:39 +100061#include "monitor_wrap.h"
djm@openbsd.org8f574952017-06-24 06:34:38 +000062#include "ssherr.h"
dtucker@openbsd.orge9d910b2018-04-13 03:57:26 +000063#include "digest.h"
Darren Tucker0efd1552003-08-26 11:49:55 +100064
Damien Millereba71ba2000-04-29 23:57:08 +100065/* import */
66extern ServerOptions options;
Ben Lindstrom46c16222000-12-22 01:43:59 +000067extern u_char *session_id2;
Darren Tucker502d3842003-06-28 12:38:01 +100068extern u_int session_id2_len;
Damien Miller120a1ec2018-07-10 19:39:52 +100069extern struct sshbuf *loginmsg;
Damien Millereba71ba2000-04-29 23:57:08 +100070
Ben Lindstrom511bb242002-06-06 20:52:37 +000071/* methods */
72
73extern Authmethod method_none;
74extern Authmethod method_pubkey;
75extern Authmethod method_passwd;
76extern Authmethod method_kbdint;
77extern Authmethod method_hostbased;
Darren Tucker0efd1552003-08-26 11:49:55 +100078#ifdef GSSAPI
79extern Authmethod method_gssapi;
80#endif
Ben Lindstrom511bb242002-06-06 20:52:37 +000081
82Authmethod *authmethods[] = {
83 &method_none,
84 &method_pubkey,
Darren Tucker0efd1552003-08-26 11:49:55 +100085#ifdef GSSAPI
86 &method_gssapi,
87#endif
Ben Lindstrom511bb242002-06-06 20:52:37 +000088 &method_passwd,
89 &method_kbdint,
90 &method_hostbased,
91 NULL
Damien Miller874d77b2000-10-14 16:23:11 +110092};
93
Damien Millereba71ba2000-04-29 23:57:08 +100094/* protocol */
95
markus@openbsd.org2ae666a2017-05-30 14:23:52 +000096static int input_service_request(int, u_int32_t, struct ssh *);
97static int input_userauth_request(int, u_int32_t, struct ssh *);
Damien Millereba71ba2000-04-29 23:57:08 +100098
Damien Millereba71ba2000-04-29 23:57:08 +100099/* helper */
Damien Millera6e3f012012-11-04 23:21:40 +1100100static Authmethod *authmethod_lookup(Authctxt *, const char *);
101static char *authmethods_get(Authctxt *authctxt);
Damien Miller91a55f22013-04-23 15:18:10 +1000102
103#define MATCH_NONE 0 /* method or submethod mismatch */
104#define MATCH_METHOD 1 /* method matches (no submethod specified) */
105#define MATCH_BOTH 2 /* method and submethod match */
106#define MATCH_PARTIAL 3 /* method matches, submethod can't be checked */
107static int list_starts_with(const char *, const char *, const char *);
Damien Millereba71ba2000-04-29 23:57:08 +1000108
Darren Tucker4230a5d2008-07-02 22:56:09 +1000109char *
110auth2_read_banner(void)
111{
112 struct stat st;
113 char *banner = NULL;
114 size_t len, n;
115 int fd;
116
117 if ((fd = open(options.banner, O_RDONLY)) == -1)
118 return (NULL);
119 if (fstat(fd, &st) == -1) {
120 close(fd);
121 return (NULL);
122 }
Damien Miller8ed4de82011-12-19 10:52:50 +1100123 if (st.st_size <= 0 || st.st_size > 1*1024*1024) {
Darren Tucker4230a5d2008-07-02 22:56:09 +1000124 close(fd);
125 return (NULL);
126 }
127
128 len = (size_t)st.st_size; /* truncate */
129 banner = xmalloc(len + 1);
130 n = atomicio(read, fd, banner, len);
131 close(fd);
132
133 if (n != len) {
Darren Tuckera627d422013-06-02 07:31:17 +1000134 free(banner);
Darren Tucker4230a5d2008-07-02 22:56:09 +1000135 return (NULL);
136 }
137 banner[n] = '\0';
138
139 return (banner);
140}
141
Damien Miller5ebce132019-01-20 09:44:53 +1100142static void
143userauth_send_banner(struct ssh *ssh, const char *msg)
Darren Tucker4230a5d2008-07-02 22:56:09 +1000144{
Damien Miller5ebce132019-01-20 09:44:53 +1100145 int r;
146
147 if ((r = sshpkt_start(ssh, SSH2_MSG_USERAUTH_BANNER)) != 0 ||
148 (r = sshpkt_put_cstring(ssh, msg)) != 0 ||
149 (r = sshpkt_put_cstring(ssh, "")) != 0 || /* language, unused */
150 (r = sshpkt_send(ssh)) != 0)
151 fatal("%s: %s", __func__, ssh_err(r));
Darren Tucker4230a5d2008-07-02 22:56:09 +1000152 debug("%s: sent", __func__);
153}
154
155static void
Damien Miller5ebce132019-01-20 09:44:53 +1100156userauth_banner(struct ssh *ssh)
Darren Tucker4230a5d2008-07-02 22:56:09 +1000157{
158 char *banner = NULL;
159
djm@openbsd.org14b5c632018-01-23 05:27:21 +0000160 if (options.banner == NULL)
Darren Tucker4230a5d2008-07-02 22:56:09 +1000161 return;
162
163 if ((banner = PRIVSEP(auth2_read_banner())) == NULL)
164 goto done;
Damien Miller5ebce132019-01-20 09:44:53 +1100165 userauth_send_banner(ssh, banner);
Darren Tucker4230a5d2008-07-02 22:56:09 +1000166
167done:
Darren Tuckera627d422013-06-02 07:31:17 +1000168 free(banner);
Darren Tucker4230a5d2008-07-02 22:56:09 +1000169}
170
Damien Millereba71ba2000-04-29 23:57:08 +1000171/*
Damien Miller874d77b2000-10-14 16:23:11 +1100172 * loop until authctxt->success == TRUE
Damien Millereba71ba2000-04-29 23:57:08 +1000173 */
Darren Tucker3e33cec2003-10-02 16:12:36 +1000174void
Damien Miller5ebce132019-01-20 09:44:53 +1100175do_authentication2(struct ssh *ssh)
Damien Millereba71ba2000-04-29 23:57:08 +1000176{
Damien Miller5ebce132019-01-20 09:44:53 +1100177 Authctxt *authctxt = ssh->authctxt;
178
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000179 ssh_dispatch_init(ssh, &dispatch_protocol_error);
180 ssh_dispatch_set(ssh, SSH2_MSG_SERVICE_REQUEST, &input_service_request);
markus@openbsd.org92e9fe62017-05-31 07:00:13 +0000181 ssh_dispatch_run_fatal(ssh, DISPATCH_BLOCK, &authctxt->success);
markus@openbsd.org5f4082d2017-05-30 14:18:15 +0000182 ssh->authctxt = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000183}
184
Damien Miller91d4b122006-03-26 14:05:20 +1100185/*ARGSUSED*/
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000186static int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +0000187input_service_request(int type, u_int32_t seq, struct ssh *ssh)
Damien Millereba71ba2000-04-29 23:57:08 +1000188{
markus@openbsd.org5f4082d2017-05-30 14:18:15 +0000189 Authctxt *authctxt = ssh->authctxt;
Damien Miller5ebce132019-01-20 09:44:53 +1100190 char *service = NULL;
191 int r, acceptit = 0;
192
193 if ((r = sshpkt_get_cstring(ssh, &service, NULL)) != 0 ||
194 (r = sshpkt_get_end(ssh)) != 0)
195 goto out;
Damien Millereba71ba2000-04-29 23:57:08 +1000196
Damien Miller874d77b2000-10-14 16:23:11 +1100197 if (authctxt == NULL)
198 fatal("input_service_request: no authctxt");
199
Damien Millereba71ba2000-04-29 23:57:08 +1000200 if (strcmp(service, "ssh-userauth") == 0) {
Damien Miller874d77b2000-10-14 16:23:11 +1100201 if (!authctxt->success) {
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000202 acceptit = 1;
Damien Millereba71ba2000-04-29 23:57:08 +1000203 /* now we can handle user-auth requests */
Damien Miller5ebce132019-01-20 09:44:53 +1100204 ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_REQUEST,
205 &input_userauth_request);
Damien Millereba71ba2000-04-29 23:57:08 +1000206 }
207 }
208 /* XXX all other service requests are denied */
209
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000210 if (acceptit) {
Damien Miller5ebce132019-01-20 09:44:53 +1100211 if ((r = sshpkt_start(ssh, SSH2_MSG_SERVICE_ACCEPT)) != 0 ||
212 (r = sshpkt_put_cstring(ssh, service)) != 0 ||
213 (r = sshpkt_send(ssh)) != 0 ||
214 (r = ssh_packet_write_wait(ssh)) != 0)
215 goto out;
Damien Millereba71ba2000-04-29 23:57:08 +1000216 } else {
217 debug("bad service request %s", service);
Damien Miller5ebce132019-01-20 09:44:53 +1100218 ssh_packet_disconnect(ssh, "bad service request %s", service);
Damien Millereba71ba2000-04-29 23:57:08 +1000219 }
Damien Miller5ebce132019-01-20 09:44:53 +1100220 r = 0;
221 out:
Darren Tuckera627d422013-06-02 07:31:17 +1000222 free(service);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000223 return 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000224}
225
dtucker@openbsd.orge9d910b2018-04-13 03:57:26 +0000226#define MIN_FAIL_DELAY_SECONDS 0.005
227static double
228user_specific_delay(const char *user)
229{
230 char b[512];
231 size_t len = ssh_digest_bytes(SSH_DIGEST_SHA512);
232 u_char *hash = xmalloc(len);
233 double delay;
234
dtucker@openbsd.orgfdba5032018-05-11 03:22:55 +0000235 (void)snprintf(b, sizeof b, "%llu%s",
236 (unsigned long long)options.timing_secret, user);
dtucker@openbsd.orge9d910b2018-04-13 03:57:26 +0000237 if (ssh_digest_memory(SSH_DIGEST_SHA512, b, strlen(b), hash, len) != 0)
238 fatal("%s: ssh_digest_memory", __func__);
239 /* 0-4.2 ms of delay */
240 delay = (double)PEEK_U32(hash) / 1000 / 1000 / 1000 / 1000;
241 freezero(hash, len);
242 debug3("%s: user specific delay %0.3lfms", __func__, delay/1000);
243 return MIN_FAIL_DELAY_SECONDS + delay;
244}
245
246static void
247ensure_minimum_time_since(double start, double seconds)
248{
249 struct timespec ts;
250 double elapsed = monotime_double() - start, req = seconds, remain;
251
252 /* if we've already passed the requested time, scale up */
253 while ((remain = seconds - elapsed) < 0.0)
254 seconds *= 2;
255
256 ts.tv_sec = remain;
257 ts.tv_nsec = (remain - ts.tv_sec) * 1000000000;
258 debug3("%s: elapsed %0.3lfms, delaying %0.3lfms (requested %0.3lfms)",
259 __func__, elapsed*1000, remain*1000, req*1000);
260 nanosleep(&ts, NULL);
261}
262
Damien Miller91d4b122006-03-26 14:05:20 +1100263/*ARGSUSED*/
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000264static int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +0000265input_userauth_request(int type, u_int32_t seq, struct ssh *ssh)
Damien Millereba71ba2000-04-29 23:57:08 +1000266{
markus@openbsd.org5f4082d2017-05-30 14:18:15 +0000267 Authctxt *authctxt = ssh->authctxt;
Damien Miller874d77b2000-10-14 16:23:11 +1100268 Authmethod *m = NULL;
Damien Miller5ebce132019-01-20 09:44:53 +1100269 char *user = NULL, *service = NULL, *method = NULL, *style = NULL;
270 int r, authenticated = 0;
dtucker@openbsd.orge9d910b2018-04-13 03:57:26 +0000271 double tstart = monotime_double();
Damien Millereba71ba2000-04-29 23:57:08 +1000272
Damien Miller874d77b2000-10-14 16:23:11 +1100273 if (authctxt == NULL)
274 fatal("input_userauth_request: no authctxt");
Damien Millereba71ba2000-04-29 23:57:08 +1000275
Damien Miller5ebce132019-01-20 09:44:53 +1100276 if ((r = sshpkt_get_cstring(ssh, &user, NULL)) != 0 ||
277 (r = sshpkt_get_cstring(ssh, &service, NULL)) != 0 ||
278 (r = sshpkt_get_cstring(ssh, &method, NULL)) != 0)
279 goto out;
Damien Miller874d77b2000-10-14 16:23:11 +1100280 debug("userauth-request for user %s service %s method %s", user, service, method);
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000281 debug("attempt %d failures %d", authctxt->attempt, authctxt->failures);
Damien Miller874d77b2000-10-14 16:23:11 +1100282
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000283 if ((style = strchr(user, ':')) != NULL)
284 *style++ = 0;
285
Kevin Stevesef4eea92001-02-05 12:42:17 +0000286 if (authctxt->attempt++ == 0) {
Damien Miller3a5b0232002-03-13 13:19:42 +1100287 /* setup auth context */
djm@openbsd.org3a00a922019-01-19 21:41:18 +0000288 authctxt->pw = PRIVSEP(getpwnamallow(ssh, user));
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100289 authctxt->user = xstrdup(user);
Kevin Steves205cc1e2002-03-22 20:43:05 +0000290 if (authctxt->pw && strcmp(service, "ssh-connection")==0) {
Damien Miller874d77b2000-10-14 16:23:11 +1100291 authctxt->valid = 1;
djm@openbsd.orgf1a19342017-02-03 23:05:57 +0000292 debug2("%s: setting up authctxt for %s",
293 __func__, user);
Damien Miller874d77b2000-10-14 16:23:11 +1100294 } else {
djm@openbsd.orgf1a19342017-02-03 23:05:57 +0000295 /* Invalid user, fake password information */
Damien Miller856f0be2003-09-03 07:32:45 +1000296 authctxt->pw = fakepw();
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100297#ifdef SSH_AUDIT_EVENTS
Damien Miller9b655dc2019-01-20 14:55:27 +1100298 PRIVSEP(audit_event(ssh, SSH_INVALID_USER));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100299#endif
Damien Miller874d77b2000-10-14 16:23:11 +1100300 }
Darren Tuckerd3eff2b2005-09-24 12:43:51 +1000301#ifdef USE_PAM
302 if (options.use_pam)
Damien Miller3f0786b2019-01-20 10:22:18 +1100303 PRIVSEP(start_pam(ssh));
Darren Tuckerd3eff2b2005-09-24 12:43:51 +1000304#endif
djm@openbsd.orgf1a19342017-02-03 23:05:57 +0000305 ssh_packet_set_log_preamble(ssh, "%suser %s",
306 authctxt->valid ? "authenticating " : "invalid ", user);
Damien Miller30d1f842004-07-21 20:48:53 +1000307 setproctitle("%s%s", authctxt->valid ? user : "unknown",
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000308 use_privsep ? " [net]" : "");
Damien Miller874d77b2000-10-14 16:23:11 +1100309 authctxt->service = xstrdup(service);
Ben Lindstrom9d0c0662001-06-09 01:40:00 +0000310 authctxt->style = style ? xstrdup(style) : NULL;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000311 if (use_privsep)
312 mm_inform_authserv(service, style);
Damien Miller5ebce132019-01-20 09:44:53 +1100313 userauth_banner(ssh);
Damien Millera6e3f012012-11-04 23:21:40 +1100314 if (auth2_setup_methods_lists(authctxt) != 0)
Damien Miller5ebce132019-01-20 09:44:53 +1100315 ssh_packet_disconnect(ssh,
316 "no authentication methods enabled");
Ben Lindstrom9d0c0662001-06-09 01:40:00 +0000317 } else if (strcmp(user, authctxt->user) != 0 ||
318 strcmp(service, authctxt->service) != 0) {
Damien Miller5ebce132019-01-20 09:44:53 +1100319 ssh_packet_disconnect(ssh, "Change of username or service "
320 "not allowed: (%s,%s) -> (%s,%s)",
Ben Lindstrom9d0c0662001-06-09 01:40:00 +0000321 authctxt->user, authctxt->service, user, service);
Damien Millereba71ba2000-04-29 23:57:08 +1000322 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000323 /* reset state */
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000324 auth2_challenge_stop(ssh);
Darren Tucker0efd1552003-08-26 11:49:55 +1000325
326#ifdef GSSAPI
Damien Miller01ed2272008-11-05 16:20:46 +1100327 /* XXX move to auth2_gssapi_stop() */
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000328 ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
329 ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, NULL);
Darren Tucker0efd1552003-08-26 11:49:55 +1000330#endif
331
djm@openbsd.org8f574952017-06-24 06:34:38 +0000332 auth2_authctxt_reset_info(authctxt);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000333 authctxt->postponed = 0;
Damien Miller3fcdfd52011-05-05 14:04:11 +1000334 authctxt->server_caused_failure = 0;
Damien Millerb70b61f2000-09-16 16:25:12 +1100335
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000336 /* try to authenticate user */
Damien Millera6e3f012012-11-04 23:21:40 +1100337 m = authmethod_lookup(authctxt, method);
Darren Tucker4230a5d2008-07-02 22:56:09 +1000338 if (m != NULL && authctxt->failures < options.max_authtries) {
Damien Miller874d77b2000-10-14 16:23:11 +1100339 debug2("input_userauth_request: try method %s", method);
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000340 authenticated = m->userauth(ssh);
Damien Miller874d77b2000-10-14 16:23:11 +1100341 }
dtucker@openbsd.orge9d910b2018-04-13 03:57:26 +0000342 if (!authctxt->authenticated)
343 ensure_minimum_time_since(tstart,
344 user_specific_delay(authctxt->user));
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000345 userauth_finish(ssh, authenticated, method, NULL);
Damien Miller5ebce132019-01-20 09:44:53 +1100346 r = 0;
347 out:
Darren Tuckera627d422013-06-02 07:31:17 +1000348 free(service);
349 free(user);
350 free(method);
Damien Miller5ebce132019-01-20 09:44:53 +1100351 return r;
Damien Miller5d57e502001-03-30 10:48:31 +1000352}
353
354void
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000355userauth_finish(struct ssh *ssh, int authenticated, const char *method,
Damien Miller15b05cf2012-12-03 09:53:20 +1100356 const char *submethod)
Damien Miller5d57e502001-03-30 10:48:31 +1000357{
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +0000358 Authctxt *authctxt = ssh->authctxt;
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000359 char *methods;
Damien Miller5ebce132019-01-20 09:44:53 +1100360 int r, partial = 0;
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000361
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000362 if (!authctxt->valid && authenticated)
363 fatal("INTERNAL ERROR: authenticated invalid user %s",
364 authctxt->user);
Damien Miller15b05cf2012-12-03 09:53:20 +1100365 if (authenticated && authctxt->postponed)
366 fatal("INTERNAL ERROR: authenticated and postponed");
Damien Millerb70b61f2000-09-16 16:25:12 +1100367
Damien Miller874d77b2000-10-14 16:23:11 +1100368 /* Special handling for root */
Damien Miller556f9312003-02-24 11:59:26 +1100369 if (authenticated && authctxt->pw->pw_uid == 0 &&
djm@openbsd.org7c856852018-03-03 03:15:51 +0000370 !auth_root_allowed(ssh, method)) {
Damien Millereba71ba2000-04-29 23:57:08 +1000371 authenticated = 0;
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100372#ifdef SSH_AUDIT_EVENTS
Damien Miller9b655dc2019-01-20 14:55:27 +1100373 PRIVSEP(audit_event(ssh, SSH_LOGIN_ROOT_DENIED));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100374#endif
375 }
Damien Millereba71ba2000-04-29 23:57:08 +1000376
Damien Miller15b05cf2012-12-03 09:53:20 +1100377 if (authenticated && options.num_auth_methods != 0) {
Damien Miller91a55f22013-04-23 15:18:10 +1000378 if (!auth2_update_methods_lists(authctxt, method, submethod)) {
Damien Miller15b05cf2012-12-03 09:53:20 +1100379 authenticated = 0;
380 partial = 1;
381 }
382 }
383
384 /* Log before sending the reply */
djm@openbsd.org3a00a922019-01-19 21:41:18 +0000385 auth_log(ssh, authenticated, partial, method, submethod);
Damien Miller15b05cf2012-12-03 09:53:20 +1100386
djm@openbsd.org8f574952017-06-24 06:34:38 +0000387 /* Update information exposed to session */
388 if (authenticated || partial)
389 auth2_update_session_info(authctxt, method, submethod);
390
Damien Miller15b05cf2012-12-03 09:53:20 +1100391 if (authctxt->postponed)
392 return;
393
Damien Miller1f499fd2003-08-25 13:08:49 +1000394#ifdef USE_PAM
Darren Tucker77fc29e2004-09-11 23:07:03 +1000395 if (options.use_pam && authenticated) {
Damien Miller120a1ec2018-07-10 19:39:52 +1000396 int r;
397
Darren Tucker77fc29e2004-09-11 23:07:03 +1000398 if (!PRIVSEP(do_pam_account())) {
Darren Tucker77fc29e2004-09-11 23:07:03 +1000399 /* if PAM returned a message, send it to the user */
Damien Miller120a1ec2018-07-10 19:39:52 +1000400 if (sshbuf_len(loginmsg) > 0) {
401 if ((r = sshbuf_put(loginmsg, "\0", 1)) != 0)
402 fatal("%s: buffer error: %s",
403 __func__, ssh_err(r));
Damien Miller5ebce132019-01-20 09:44:53 +1100404 userauth_send_banner(ssh, sshbuf_ptr(loginmsg));
Damien Miller08f66d92019-01-20 09:58:45 +1100405 if ((r = ssh_packet_write_wait(ssh)) != 0) {
406 sshpkt_fatal(ssh, r,
407 "%s: send PAM banner", __func__);
408 }
Darren Tucker77fc29e2004-09-11 23:07:03 +1000409 }
Darren Tuckerc1386672004-12-03 14:33:47 +1100410 fatal("Access denied for user %s by PAM account "
Damien Millerb6f72f52005-07-17 17:26:43 +1000411 "configuration", authctxt->user);
Darren Tucker77fc29e2004-09-11 23:07:03 +1000412 }
413 }
Damien Miller1f499fd2003-08-25 13:08:49 +1000414#endif
415
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000416 if (authenticated == 1) {
417 /* turn off userauth */
Damien Miller5ebce132019-01-20 09:44:53 +1100418 ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_REQUEST,
419 &dispatch_protocol_ignore);
420 if ((r = sshpkt_start(ssh, SSH2_MSG_USERAUTH_SUCCESS)) != 0 ||
421 (r = sshpkt_send(ssh)) != 0 ||
422 (r = ssh_packet_write_wait(ssh)) != 0)
423 fatal("%s: %s", __func__, ssh_err(r));
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000424 /* now we can break out */
425 authctxt->success = 1;
djm@openbsd.orgf1a19342017-02-03 23:05:57 +0000426 ssh_packet_set_log_preamble(ssh, "user %s", authctxt->user);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000427 } else {
Damien Miller0b4d48b2008-07-05 09:44:53 +1000428 /* Allow initial try of "none" auth without failure penalty */
djm@openbsd.org058f8392014-12-18 23:58:04 +0000429 if (!partial && !authctxt->server_caused_failure &&
Damien Miller3fcdfd52011-05-05 14:04:11 +1000430 (authctxt->attempt > 1 || strcmp(method, "none") != 0))
Damien Miller0b4d48b2008-07-05 09:44:53 +1000431 authctxt->failures++;
432 if (authctxt->failures >= options.max_authtries) {
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100433#ifdef SSH_AUDIT_EVENTS
Damien Miller9b655dc2019-01-20 14:55:27 +1100434 PRIVSEP(audit_event(ssh, SSH_LOGIN_EXCEED_MAXTRIES));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100435#endif
djm@openbsd.org3a00a922019-01-19 21:41:18 +0000436 auth_maxtries_exceeded(ssh);
Darren Tucker269a1ea2005-02-03 00:20:53 +1100437 }
Damien Millera6e3f012012-11-04 23:21:40 +1100438 methods = authmethods_get(authctxt);
439 debug3("%s: failure partial=%d next methods=\"%s\"", __func__,
440 partial, methods);
Damien Miller5ebce132019-01-20 09:44:53 +1100441 if ((r = sshpkt_start(ssh, SSH2_MSG_USERAUTH_FAILURE)) != 0 ||
442 (r = sshpkt_put_cstring(ssh, methods)) != 0 ||
443 (r = sshpkt_put_u8(ssh, partial)) != 0 ||
444 (r = sshpkt_send(ssh)) != 0 ||
445 (r = ssh_packet_write_wait(ssh)) != 0)
446 fatal("%s: %s", __func__, ssh_err(r));
Darren Tuckera627d422013-06-02 07:31:17 +1000447 free(methods);
Ben Lindstromcd4349f2001-06-09 00:23:17 +0000448 }
Damien Miller874d77b2000-10-14 16:23:11 +1100449}
450
Damien Millera6e3f012012-11-04 23:21:40 +1100451/*
452 * Checks whether method is allowed by at least one AuthenticationMethods
453 * methods list. Returns 1 if allowed, or no methods lists configured.
454 * 0 otherwise.
455 */
Damien Miller91a55f22013-04-23 15:18:10 +1000456int
457auth2_method_allowed(Authctxt *authctxt, const char *method,
458 const char *submethod)
Damien Millera6e3f012012-11-04 23:21:40 +1100459{
460 u_int i;
461
462 /*
463 * NB. authctxt->num_auth_methods might be zero as a result of
464 * auth2_setup_methods_lists(), so check the configuration.
465 */
466 if (options.num_auth_methods == 0)
467 return 1;
468 for (i = 0; i < authctxt->num_auth_methods; i++) {
Damien Miller91a55f22013-04-23 15:18:10 +1000469 if (list_starts_with(authctxt->auth_methods[i], method,
470 submethod) != MATCH_NONE)
Damien Millera6e3f012012-11-04 23:21:40 +1100471 return 1;
472 }
473 return 0;
474}
475
Ben Lindstrom79073822001-07-04 03:42:30 +0000476static char *
Damien Millera6e3f012012-11-04 23:21:40 +1100477authmethods_get(Authctxt *authctxt)
Damien Miller874d77b2000-10-14 16:23:11 +1100478{
markus@openbsd.orgc7d39ac2018-07-09 21:35:50 +0000479 struct sshbuf *b;
Damien Miller874d77b2000-10-14 16:23:11 +1100480 char *list;
markus@openbsd.orgc7d39ac2018-07-09 21:35:50 +0000481 int i, r;
Damien Miller874d77b2000-10-14 16:23:11 +1100482
markus@openbsd.orgc7d39ac2018-07-09 21:35:50 +0000483 if ((b = sshbuf_new()) == NULL)
484 fatal("%s: sshbuf_new failed", __func__);
Ben Lindstrom511bb242002-06-06 20:52:37 +0000485 for (i = 0; authmethods[i] != NULL; i++) {
486 if (strcmp(authmethods[i]->name, "none") == 0)
Damien Miller874d77b2000-10-14 16:23:11 +1100487 continue;
Damien Millera6e3f012012-11-04 23:21:40 +1100488 if (authmethods[i]->enabled == NULL ||
489 *(authmethods[i]->enabled) == 0)
490 continue;
Damien Miller91a55f22013-04-23 15:18:10 +1000491 if (!auth2_method_allowed(authctxt, authmethods[i]->name,
492 NULL))
Damien Millera6e3f012012-11-04 23:21:40 +1100493 continue;
markus@openbsd.orgc7d39ac2018-07-09 21:35:50 +0000494 if ((r = sshbuf_putf(b, "%s%s", sshbuf_len(b) ? "," : "",
495 authmethods[i]->name)) != 0)
496 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Millereba71ba2000-04-29 23:57:08 +1000497 }
markus@openbsd.orgc7d39ac2018-07-09 21:35:50 +0000498 if ((list = sshbuf_dup_string(b)) == NULL)
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000499 fatal("%s: sshbuf_dup_string failed", __func__);
markus@openbsd.orgc7d39ac2018-07-09 21:35:50 +0000500 sshbuf_free(b);
Damien Miller874d77b2000-10-14 16:23:11 +1100501 return list;
502}
503
Ben Lindstrombba81212001-06-25 05:01:22 +0000504static Authmethod *
Damien Millera6e3f012012-11-04 23:21:40 +1100505authmethod_lookup(Authctxt *authctxt, const char *name)
Damien Miller874d77b2000-10-14 16:23:11 +1100506{
Ben Lindstrom511bb242002-06-06 20:52:37 +0000507 int i;
508
Damien Miller874d77b2000-10-14 16:23:11 +1100509 if (name != NULL)
Ben Lindstrom511bb242002-06-06 20:52:37 +0000510 for (i = 0; authmethods[i] != NULL; i++)
511 if (authmethods[i]->enabled != NULL &&
512 *(authmethods[i]->enabled) != 0 &&
Damien Millera6e3f012012-11-04 23:21:40 +1100513 strcmp(name, authmethods[i]->name) == 0 &&
Damien Miller91a55f22013-04-23 15:18:10 +1000514 auth2_method_allowed(authctxt,
515 authmethods[i]->name, NULL))
Ben Lindstrom511bb242002-06-06 20:52:37 +0000516 return authmethods[i];
517 debug2("Unrecognized authentication method name: %s",
518 name ? name : "NULL");
Damien Miller874d77b2000-10-14 16:23:11 +1100519 return NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000520}
Darren Tucker4230a5d2008-07-02 22:56:09 +1000521
Damien Millera6e3f012012-11-04 23:21:40 +1100522/*
523 * Check a comma-separated list of methods for validity. Is need_enable is
524 * non-zero, then also require that the methods are enabled.
525 * Returns 0 on success or -1 if the methods list is invalid.
526 */
527int
528auth2_methods_valid(const char *_methods, int need_enable)
529{
Damien Miller91a55f22013-04-23 15:18:10 +1000530 char *methods, *omethods, *method, *p;
Damien Millera6e3f012012-11-04 23:21:40 +1100531 u_int i, found;
532 int ret = -1;
533
534 if (*_methods == '\0') {
535 error("empty authentication method list");
536 return -1;
537 }
538 omethods = methods = xstrdup(_methods);
539 while ((method = strsep(&methods, ",")) != NULL) {
540 for (found = i = 0; !found && authmethods[i] != NULL; i++) {
Damien Miller91a55f22013-04-23 15:18:10 +1000541 if ((p = strchr(method, ':')) != NULL)
542 *p = '\0';
Damien Millera6e3f012012-11-04 23:21:40 +1100543 if (strcmp(method, authmethods[i]->name) != 0)
544 continue;
545 if (need_enable) {
546 if (authmethods[i]->enabled == NULL ||
547 *(authmethods[i]->enabled) == 0) {
548 error("Disabled method \"%s\" in "
549 "AuthenticationMethods list \"%s\"",
550 method, _methods);
551 goto out;
552 }
553 }
554 found = 1;
555 break;
556 }
557 if (!found) {
558 error("Unknown authentication method \"%s\" in list",
559 method);
560 goto out;
561 }
562 }
563 ret = 0;
564 out:
565 free(omethods);
566 return ret;
567}
568
569/*
570 * Prune the AuthenticationMethods supplied in the configuration, removing
571 * any methods lists that include disabled methods. Note that this might
572 * leave authctxt->num_auth_methods == 0, even when multiple required auth
573 * has been requested. For this reason, all tests for whether multiple is
574 * enabled should consult options.num_auth_methods directly.
575 */
576int
577auth2_setup_methods_lists(Authctxt *authctxt)
578{
579 u_int i;
580
djm@openbsd.org4f0019a2019-03-25 22:34:52 +0000581 /* First, normalise away the "any" pseudo-method */
582 if (options.num_auth_methods == 1 &&
583 strcmp(options.auth_methods[0], "any") == 0) {
584 free(options.auth_methods[0]);
585 options.auth_methods[0] = NULL;
586 options.num_auth_methods = 0;
587 }
588
Damien Millera6e3f012012-11-04 23:21:40 +1100589 if (options.num_auth_methods == 0)
590 return 0;
591 debug3("%s: checking methods", __func__);
592 authctxt->auth_methods = xcalloc(options.num_auth_methods,
593 sizeof(*authctxt->auth_methods));
594 authctxt->num_auth_methods = 0;
595 for (i = 0; i < options.num_auth_methods; i++) {
596 if (auth2_methods_valid(options.auth_methods[i], 1) != 0) {
597 logit("Authentication methods list \"%s\" contains "
598 "disabled method, skipping",
599 options.auth_methods[i]);
600 continue;
601 }
602 debug("authentication methods list %d: %s",
603 authctxt->num_auth_methods, options.auth_methods[i]);
604 authctxt->auth_methods[authctxt->num_auth_methods++] =
605 xstrdup(options.auth_methods[i]);
606 }
607 if (authctxt->num_auth_methods == 0) {
608 error("No AuthenticationMethods left after eliminating "
609 "disabled methods");
610 return -1;
611 }
612 return 0;
613}
614
615static int
Damien Miller91a55f22013-04-23 15:18:10 +1000616list_starts_with(const char *methods, const char *method,
617 const char *submethod)
Damien Millera6e3f012012-11-04 23:21:40 +1100618{
619 size_t l = strlen(method);
Damien Miller91a55f22013-04-23 15:18:10 +1000620 int match;
621 const char *p;
Damien Millera6e3f012012-11-04 23:21:40 +1100622
623 if (strncmp(methods, method, l) != 0)
Damien Miller91a55f22013-04-23 15:18:10 +1000624 return MATCH_NONE;
625 p = methods + l;
626 match = MATCH_METHOD;
627 if (*p == ':') {
628 if (!submethod)
629 return MATCH_PARTIAL;
630 l = strlen(submethod);
631 p += 1;
632 if (strncmp(submethod, p, l))
633 return MATCH_NONE;
634 p += l;
635 match = MATCH_BOTH;
636 }
637 if (*p != ',' && *p != '\0')
638 return MATCH_NONE;
639 return match;
Damien Millera6e3f012012-11-04 23:21:40 +1100640}
641
642/*
643 * Remove method from the start of a comma-separated list of methods.
644 * Returns 0 if the list of methods did not start with that method or 1
645 * if it did.
646 */
647static int
Damien Miller91a55f22013-04-23 15:18:10 +1000648remove_method(char **methods, const char *method, const char *submethod)
Damien Millera6e3f012012-11-04 23:21:40 +1100649{
Damien Miller91a55f22013-04-23 15:18:10 +1000650 char *omethods = *methods, *p;
Damien Millera6e3f012012-11-04 23:21:40 +1100651 size_t l = strlen(method);
Damien Miller91a55f22013-04-23 15:18:10 +1000652 int match;
Damien Millera6e3f012012-11-04 23:21:40 +1100653
Damien Miller91a55f22013-04-23 15:18:10 +1000654 match = list_starts_with(omethods, method, submethod);
655 if (match != MATCH_METHOD && match != MATCH_BOTH)
Damien Millera6e3f012012-11-04 23:21:40 +1100656 return 0;
Damien Miller91a55f22013-04-23 15:18:10 +1000657 p = omethods + l;
658 if (submethod && match == MATCH_BOTH)
659 p += 1 + strlen(submethod); /* include colon */
660 if (*p == ',')
661 p++;
662 *methods = xstrdup(p);
Damien Millera6e3f012012-11-04 23:21:40 +1100663 free(omethods);
664 return 1;
665}
666
667/*
668 * Called after successful authentication. Will remove the successful method
669 * from the start of each list in which it occurs. If it was the last method
670 * in any list, then authentication is deemed successful.
671 * Returns 1 if the method completed any authentication list or 0 otherwise.
672 */
673int
Damien Miller91a55f22013-04-23 15:18:10 +1000674auth2_update_methods_lists(Authctxt *authctxt, const char *method,
675 const char *submethod)
Damien Millera6e3f012012-11-04 23:21:40 +1100676{
677 u_int i, found = 0;
678
679 debug3("%s: updating methods list after \"%s\"", __func__, method);
680 for (i = 0; i < authctxt->num_auth_methods; i++) {
Damien Miller91a55f22013-04-23 15:18:10 +1000681 if (!remove_method(&(authctxt->auth_methods[i]), method,
682 submethod))
Damien Millera6e3f012012-11-04 23:21:40 +1100683 continue;
684 found = 1;
685 if (*authctxt->auth_methods[i] == '\0') {
686 debug2("authentication methods list %d complete", i);
687 return 1;
688 }
689 debug3("authentication methods list %d remaining: \"%s\"",
690 i, authctxt->auth_methods[i]);
691 }
692 /* This should not happen, but would be bad if it did */
693 if (!found)
694 fatal("%s: method not in AuthenticationMethods", __func__);
695 return 0;
696}
697
djm@openbsd.org8f574952017-06-24 06:34:38 +0000698/* Reset method-specific information */
699void auth2_authctxt_reset_info(Authctxt *authctxt)
700{
701 sshkey_free(authctxt->auth_method_key);
702 free(authctxt->auth_method_info);
703 authctxt->auth_method_key = NULL;
704 authctxt->auth_method_info = NULL;
705}
706
707/* Record auth method-specific information for logs */
708void
709auth2_record_info(Authctxt *authctxt, const char *fmt, ...)
710{
711 va_list ap;
712 int i;
713
714 free(authctxt->auth_method_info);
715 authctxt->auth_method_info = NULL;
716
717 va_start(ap, fmt);
718 i = vasprintf(&authctxt->auth_method_info, fmt, ap);
719 va_end(ap);
720
deraadt@openbsd.orge8c97402019-06-28 05:44:09 +0000721 if (i == -1)
djm@openbsd.org8f574952017-06-24 06:34:38 +0000722 fatal("%s: vasprintf failed", __func__);
723}
724
725/*
726 * Records a public key used in authentication. This is used for logging
727 * and to ensure that the same key is not subsequently accepted again for
728 * multiple authentication.
729 */
730void
731auth2_record_key(Authctxt *authctxt, int authenticated,
732 const struct sshkey *key)
733{
734 struct sshkey **tmp, *dup;
735 int r;
736
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000737 if ((r = sshkey_from_private(key, &dup)) != 0)
djm@openbsd.org8f574952017-06-24 06:34:38 +0000738 fatal("%s: copy key: %s", __func__, ssh_err(r));
739 sshkey_free(authctxt->auth_method_key);
740 authctxt->auth_method_key = dup;
741
742 if (!authenticated)
743 return;
744
745 /* If authenticated, make sure we don't accept this key again */
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000746 if ((r = sshkey_from_private(key, &dup)) != 0)
djm@openbsd.org8f574952017-06-24 06:34:38 +0000747 fatal("%s: copy key: %s", __func__, ssh_err(r));
748 if (authctxt->nprev_keys >= INT_MAX ||
749 (tmp = recallocarray(authctxt->prev_keys, authctxt->nprev_keys,
750 authctxt->nprev_keys + 1, sizeof(*authctxt->prev_keys))) == NULL)
751 fatal("%s: reallocarray failed", __func__);
752 authctxt->prev_keys = tmp;
753 authctxt->prev_keys[authctxt->nprev_keys] = dup;
754 authctxt->nprev_keys++;
755
756}
757
758/* Checks whether a key has already been previously used for authentication */
759int
760auth2_key_already_used(Authctxt *authctxt, const struct sshkey *key)
761{
762 u_int i;
763 char *fp;
764
765 for (i = 0; i < authctxt->nprev_keys; i++) {
766 if (sshkey_equal_public(key, authctxt->prev_keys[i])) {
767 fp = sshkey_fingerprint(authctxt->prev_keys[i],
768 options.fingerprint_hash, SSH_FP_DEFAULT);
769 debug3("%s: key already used: %s %s", __func__,
770 sshkey_type(authctxt->prev_keys[i]),
771 fp == NULL ? "UNKNOWN" : fp);
772 free(fp);
773 return 1;
774 }
775 }
776 return 0;
777}
778
779/*
780 * Updates authctxt->session_info with details of authentication. Should be
781 * whenever an authentication method succeeds.
782 */
783void
784auth2_update_session_info(Authctxt *authctxt, const char *method,
785 const char *submethod)
786{
787 int r;
788
789 if (authctxt->session_info == NULL) {
790 if ((authctxt->session_info = sshbuf_new()) == NULL)
791 fatal("%s: sshbuf_new", __func__);
792 }
793
794 /* Append method[/submethod] */
795 if ((r = sshbuf_putf(authctxt->session_info, "%s%s%s",
796 method, submethod == NULL ? "" : "/",
797 submethod == NULL ? "" : submethod)) != 0)
798 fatal("%s: append method: %s", __func__, ssh_err(r));
799
800 /* Append key if present */
801 if (authctxt->auth_method_key != NULL) {
802 if ((r = sshbuf_put_u8(authctxt->session_info, ' ')) != 0 ||
803 (r = sshkey_format_text(authctxt->auth_method_key,
804 authctxt->session_info)) != 0)
805 fatal("%s: append key: %s", __func__, ssh_err(r));
806 }
807
808 if (authctxt->auth_method_info != NULL) {
809 /* Ensure no ambiguity here */
810 if (strchr(authctxt->auth_method_info, '\n') != NULL)
811 fatal("%s: auth_method_info contains \\n", __func__);
812 if ((r = sshbuf_put_u8(authctxt->session_info, ' ')) != 0 ||
813 (r = sshbuf_putf(authctxt->session_info, "%s",
814 authctxt->auth_method_info)) != 0) {
815 fatal("%s: append method info: %s",
816 __func__, ssh_err(r));
817 }
818 }
819 if ((r = sshbuf_put_u8(authctxt->session_info, '\n')) != 0)
820 fatal("%s: append: %s", __func__, ssh_err(r));
821}
Damien Millera6e3f012012-11-04 23:21:40 +1100822