upstream: client: switch to sshbuf API; ok djm@

OpenBSD-Commit-ID: 60cb0356114acc7625ab85105f6f6a7cd44a8d05
This commit is contained in:
markus@openbsd.org 2018-07-09 21:03:30 +00:00 committed by Damien Miller
parent ff55f4ad89
commit cecee2d607
8 changed files with 413 additions and 325 deletions

View File

@ -1,4 +1,4 @@
/* $OpenBSD: clientloop.c,v 1.314 2018/06/26 02:02:36 djm Exp $ */ /* $OpenBSD: clientloop.c,v 1.315 2018/07/09 21:03:30 markus Exp $ */
/* /*
* Author: Tatu Ylonen <ylo@cs.hut.fi> * Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@ -91,7 +91,7 @@
#include "ssh.h" #include "ssh.h"
#include "ssh2.h" #include "ssh2.h"
#include "packet.h" #include "packet.h"
#include "buffer.h" #include "sshbuf.h"
#include "compat.h" #include "compat.h"
#include "channels.h" #include "channels.h"
#include "dispatch.h" #include "dispatch.h"
@ -153,7 +153,7 @@ static time_t control_persist_exit_time = 0;
volatile sig_atomic_t quit_pending; /* Set non-zero to quit the loop. */ volatile sig_atomic_t quit_pending; /* Set non-zero to quit the loop. */
static int last_was_cr; /* Last character was a newline. */ static int last_was_cr; /* Last character was a newline. */
static int exit_status; /* Used to store the command exit status. */ static int exit_status; /* Used to store the command exit status. */
static Buffer stderr_buffer; /* Used for final exit message. */ static struct sshbuf *stderr_buffer; /* Used for final exit message. */
static int connection_in; /* Connection to server (input). */ static int connection_in; /* Connection to server (input). */
static int connection_out; /* Connection to server (output). */ static int connection_out; /* Connection to server (output). */
static int need_rekeying; /* Set to non-zero if rekeying is requested. */ static int need_rekeying; /* Set to non-zero if rekeying is requested. */
@ -188,7 +188,7 @@ TAILQ_HEAD(global_confirms, global_confirm);
static struct global_confirms global_confirms = static struct global_confirms global_confirms =
TAILQ_HEAD_INITIALIZER(global_confirms); TAILQ_HEAD_INITIALIZER(global_confirms);
void ssh_process_session2_setup(int, int, int, Buffer *); void ssh_process_session2_setup(int, int, int, struct sshbuf *);
/* Restores stdin to blocking mode. */ /* Restores stdin to blocking mode. */
@ -493,7 +493,7 @@ client_wait_until_can_do_something(struct ssh *ssh,
struct timeval tv, *tvp; struct timeval tv, *tvp;
int timeout_secs; int timeout_secs;
time_t minwait_secs = 0, server_alive_time = 0, now = monotime(); time_t minwait_secs = 0, server_alive_time = 0, now = monotime();
int ret; int r, ret;
/* Add any selections by the channel mechanism. */ /* Add any selections by the channel mechanism. */
channel_prepare_select(active_state, readsetp, writesetp, maxfdp, channel_prepare_select(active_state, readsetp, writesetp, maxfdp,
@ -546,8 +546,6 @@ client_wait_until_can_do_something(struct ssh *ssh,
ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp); ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
if (ret < 0) { if (ret < 0) {
char buf[100];
/* /*
* We have to clear the select masks, because we return. * We have to clear the select masks, because we return.
* We have to return, because the mainloop checks for the flags * We have to return, because the mainloop checks for the flags
@ -559,8 +557,9 @@ client_wait_until_can_do_something(struct ssh *ssh,
if (errno == EINTR) if (errno == EINTR)
return; return;
/* Note: we might still have data in the buffers. */ /* Note: we might still have data in the buffers. */
snprintf(buf, sizeof buf, "select: %s\r\n", strerror(errno)); if ((r = sshbuf_putf(stderr_buffer,
buffer_append(&stderr_buffer, buf, strlen(buf)); "select: %s\r\n", strerror(errno))) != 0)
fatal("%s: buffer error: %s", __func__, ssh_err(r));
quit_pending = 1; quit_pending = 1;
} else if (ret == 0) { } else if (ret == 0) {
/* /*
@ -574,15 +573,15 @@ client_wait_until_can_do_something(struct ssh *ssh,
} }
static void static void
client_suspend_self(Buffer *bin, Buffer *bout, Buffer *berr) client_suspend_self(struct sshbuf *bin, struct sshbuf *bout, struct sshbuf *berr)
{ {
/* Flush stdout and stderr buffers. */ /* Flush stdout and stderr buffers. */
if (buffer_len(bout) > 0) if (sshbuf_len(bout) > 0)
atomicio(vwrite, fileno(stdout), buffer_ptr(bout), atomicio(vwrite, fileno(stdout), sshbuf_mutable_ptr(bout),
buffer_len(bout)); sshbuf_len(bout));
if (buffer_len(berr) > 0) if (sshbuf_len(berr) > 0)
atomicio(vwrite, fileno(stderr), buffer_ptr(berr), atomicio(vwrite, fileno(stderr), sshbuf_mutable_ptr(berr),
buffer_len(berr)); sshbuf_len(berr));
leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE); leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
@ -602,8 +601,8 @@ client_suspend_self(Buffer *bin, Buffer *bout, Buffer *berr)
static void static void
client_process_net_input(fd_set *readset) client_process_net_input(fd_set *readset)
{ {
int len;
char buf[SSH_IOBUFSZ]; char buf[SSH_IOBUFSZ];
int r, len;
/* /*
* Read input from the server, and add any such data to the buffer of * Read input from the server, and add any such data to the buffer of
@ -617,10 +616,11 @@ client_process_net_input(fd_set *readset)
* Received EOF. The remote host has closed the * Received EOF. The remote host has closed the
* connection. * connection.
*/ */
snprintf(buf, sizeof buf, if ((r = sshbuf_putf(stderr_buffer,
"Connection to %.300s closed by remote host.\r\n", "Connection to %.300s closed by remote host.\r\n",
host); host)) != 0)
buffer_append(&stderr_buffer, buf, strlen(buf)); fatal("%s: buffer error: %s",
__func__, ssh_err(r));
quit_pending = 1; quit_pending = 1;
return; return;
} }
@ -637,10 +637,11 @@ client_process_net_input(fd_set *readset)
* An error has encountered. Perhaps there is a * An error has encountered. Perhaps there is a
* network problem. * network problem.
*/ */
snprintf(buf, sizeof buf, if ((r = sshbuf_putf(stderr_buffer,
"Read from remote host %.300s: %.100s\r\n", "Read from remote host %.300s: %.100s\r\n",
host, strerror(errno)); host, strerror(errno))) != 0)
buffer_append(&stderr_buffer, buf, strlen(buf)); fatal("%s: buffer error: %s",
__func__, ssh_err(r));
quit_pending = 1; quit_pending = 1;
return; return;
} }
@ -653,7 +654,7 @@ client_status_confirm(struct ssh *ssh, int type, Channel *c, void *ctx)
{ {
struct channel_reply_ctx *cr = (struct channel_reply_ctx *)ctx; struct channel_reply_ctx *cr = (struct channel_reply_ctx *)ctx;
char errmsg[256]; char errmsg[256];
int tochan; int r, tochan;
/* /*
* If a TTY was explicitly requested, then a failure to allocate * If a TTY was explicitly requested, then a failure to allocate
@ -688,7 +689,10 @@ client_status_confirm(struct ssh *ssh, int type, Channel *c, void *ctx)
* their stderr. * their stderr.
*/ */
if (tochan) { if (tochan) {
buffer_append(c->extended, errmsg, strlen(errmsg)); if ((r = sshbuf_put(c->extended, errmsg,
strlen(errmsg))) != 0)
fatal("%s: buffer error %s", __func__,
ssh_err(r));
} else } else
error("%s", errmsg); error("%s", errmsg);
if (cr->action == CONFIRM_TTY) { if (cr->action == CONFIRM_TTY) {
@ -892,14 +896,15 @@ static struct escape_help_text esc_txt[] = {
}; };
static void static void
print_escape_help(Buffer *b, int escape_char, int mux_client, int using_stderr) print_escape_help(struct sshbuf *b, int escape_char, int mux_client,
int using_stderr)
{ {
unsigned int i, suppress_flags; unsigned int i, suppress_flags;
char string[1024]; int r;
snprintf(string, sizeof string, "%c?\r\n" if ((r = sshbuf_putf(b,
"Supported escape sequences:\r\n", escape_char); "%c?\r\nSupported escape sequences:\r\n", escape_char)) != 0)
buffer_append(b, string, strlen(string)); fatal("%s: buffer error: %s", __func__, ssh_err(r));
suppress_flags = suppress_flags =
(mux_client ? SUPPRESS_MUXCLIENT : 0) | (mux_client ? SUPPRESS_MUXCLIENT : 0) |
@ -909,16 +914,16 @@ print_escape_help(Buffer *b, int escape_char, int mux_client, int using_stderr)
for (i = 0; i < sizeof(esc_txt)/sizeof(esc_txt[0]); i++) { for (i = 0; i < sizeof(esc_txt)/sizeof(esc_txt[0]); i++) {
if (esc_txt[i].flags & suppress_flags) if (esc_txt[i].flags & suppress_flags)
continue; continue;
snprintf(string, sizeof string, " %c%-3s - %s\r\n", if ((r = sshbuf_putf(b, " %c%-3s - %s\r\n",
escape_char, esc_txt[i].cmd, esc_txt[i].text); escape_char, esc_txt[i].cmd, esc_txt[i].text)) != 0)
buffer_append(b, string, strlen(string)); fatal("%s: buffer error: %s", __func__, ssh_err(r));
} }
snprintf(string, sizeof string, if ((r = sshbuf_putf(b,
" %c%c - send the escape character by typing it twice\r\n" " %c%c - send the escape character by typing it twice\r\n"
"(Note that escapes are only recognized immediately after " "(Note that escapes are only recognized immediately after "
"newline.)\r\n", escape_char, escape_char); "newline.)\r\n", escape_char, escape_char)) != 0)
buffer_append(b, string, strlen(string)); fatal("%s: buffer error: %s", __func__, ssh_err(r));
} }
/* /*
@ -926,12 +931,11 @@ print_escape_help(Buffer *b, int escape_char, int mux_client, int using_stderr)
*/ */
static int static int
process_escapes(struct ssh *ssh, Channel *c, process_escapes(struct ssh *ssh, Channel *c,
Buffer *bin, Buffer *bout, Buffer *berr, struct sshbuf *bin, struct sshbuf *bout, struct sshbuf *berr,
char *buf, int len) char *buf, int len)
{ {
char string[1024];
pid_t pid; pid_t pid;
int bytes = 0; int r, bytes = 0;
u_int i; u_int i;
u_char ch; u_char ch;
char *s; char *s;
@ -957,10 +961,10 @@ process_escapes(struct ssh *ssh, Channel *c,
switch (ch) { switch (ch) {
case '.': case '.':
/* Terminate the connection. */ /* Terminate the connection. */
snprintf(string, sizeof string, "%c.\r\n", if ((r = sshbuf_putf(berr, "%c.\r\n",
efc->escape_char); efc->escape_char)) != 0)
buffer_append(berr, string, strlen(string)); fatal("%s: buffer error: %s",
__func__, ssh_err(r));
if (c && c->ctl_chan != -1) { if (c && c->ctl_chan != -1) {
chan_read_failed(ssh, c); chan_read_failed(ssh, c);
chan_write_failed(ssh, c); chan_write_failed(ssh, c);
@ -969,7 +973,7 @@ process_escapes(struct ssh *ssh, Channel *c,
c->self, NULL); c->self, NULL);
} }
c->type = SSH_CHANNEL_ABANDONED; c->type = SSH_CHANNEL_ABANDONED;
buffer_clear(c->input); sshbuf_reset(c->input);
chan_ibuf_empty(ssh, c); chan_ibuf_empty(ssh, c);
return 0; return 0;
} else } else
@ -985,18 +989,20 @@ process_escapes(struct ssh *ssh, Channel *c,
snprintf(b, sizeof b, "^Z"); snprintf(b, sizeof b, "^Z");
else else
snprintf(b, sizeof b, "%c", ch); snprintf(b, sizeof b, "%c", ch);
snprintf(string, sizeof string, if ((r = sshbuf_putf(berr,
"%c%s escape not available to " "%c%s escape not available to "
"multiplexed sessions\r\n", "multiplexed sessions\r\n",
efc->escape_char, b); efc->escape_char, b)) != 0)
buffer_append(berr, string, fatal("%s: buffer error: %s",
strlen(string)); __func__, ssh_err(r));
continue; continue;
} }
/* Suspend the program. Inform the user */ /* Suspend the program. Inform the user */
snprintf(string, sizeof string, if ((r = sshbuf_putf(berr,
"%c^Z [suspend ssh]\r\n", efc->escape_char); "%c^Z [suspend ssh]\r\n",
buffer_append(berr, string, strlen(string)); efc->escape_char)) != 0)
fatal("%s: buffer error: %s",
__func__, ssh_err(r));
/* Restore terminal modes and suspend. */ /* Restore terminal modes and suspend. */
client_suspend_self(bin, bout, berr); client_suspend_self(bin, bout, berr);
@ -1005,12 +1011,15 @@ process_escapes(struct ssh *ssh, Channel *c,
continue; continue;
case 'B': case 'B':
snprintf(string, sizeof string, if ((r = sshbuf_putf(berr,
"%cB\r\n", efc->escape_char); "%cB\r\n", efc->escape_char)) != 0)
buffer_append(berr, string, strlen(string)); fatal("%s: buffer error: %s",
__func__, ssh_err(r));
channel_request_start(ssh, c->self, "break", 0); channel_request_start(ssh, c->self, "break", 0);
packet_put_int(1000); if ((r = sshpkt_put_u32(ssh, 1000)) != 0 ||
packet_send(); (r = sshpkt_send(ssh)) != 0)
fatal("%s: %s", __func__,
ssh_err(r));
continue; continue;
case 'R': case 'R':
@ -1027,11 +1036,11 @@ process_escapes(struct ssh *ssh, Channel *c,
if (c && c->ctl_chan != -1) if (c && c->ctl_chan != -1)
goto noescape; goto noescape;
if (!log_is_on_stderr()) { if (!log_is_on_stderr()) {
snprintf(string, sizeof string, if ((r = sshbuf_putf(berr,
"%c%c [Logging to syslog]\r\n", "%c%c [Logging to syslog]\r\n",
efc->escape_char, ch); efc->escape_char, ch)) != 0)
buffer_append(berr, string, fatal("%s: buffer error: %s",
strlen(string)); __func__, ssh_err(r));
continue; continue;
} }
if (ch == 'V' && options.log_level > if (ch == 'V' && options.log_level >
@ -1040,11 +1049,12 @@ process_escapes(struct ssh *ssh, Channel *c,
if (ch == 'v' && options.log_level < if (ch == 'v' && options.log_level <
SYSLOG_LEVEL_DEBUG3) SYSLOG_LEVEL_DEBUG3)
log_change_level(++options.log_level); log_change_level(++options.log_level);
snprintf(string, sizeof string, if ((r = sshbuf_putf(berr,
"%c%c [LogLevel %s]\r\n", "%c%c [LogLevel %s]\r\n",
efc->escape_char, ch, efc->escape_char, ch,
log_level_name(options.log_level)); log_level_name(options.log_level))) != 0)
buffer_append(berr, string, strlen(string)); fatal("%s: buffer error: %s",
__func__, ssh_err(r));
continue; continue;
case '&': case '&':
@ -1062,9 +1072,11 @@ process_escapes(struct ssh *ssh, Channel *c,
/* Stop listening for new connections. */ /* Stop listening for new connections. */
channel_stop_listening(ssh); channel_stop_listening(ssh);
snprintf(string, sizeof string, if ((r = sshbuf_putf(berr,
"%c& [backgrounded]\n", efc->escape_char); "%c& [backgrounded]\n", efc->escape_char))
buffer_append(berr, string, strlen(string)); != 0)
fatal("%s: buffer error: %s",
__func__, ssh_err(r));
/* Fork into background. */ /* Fork into background. */
pid = fork(); pid = fork();
@ -1077,8 +1089,10 @@ process_escapes(struct ssh *ssh, Channel *c,
exit(0); exit(0);
} }
/* The child continues serving connections. */ /* The child continues serving connections. */
buffer_append(bin, "\004", 1);
/* fake EOF on stdin */ /* fake EOF on stdin */
if ((r = sshbuf_put_u8(bin, 4)) != 0)
fatal("%s: buffer error: %s",
__func__, ssh_err(r));
return -1; return -1;
case '?': case '?':
print_escape_help(berr, efc->escape_char, print_escape_help(berr, efc->escape_char,
@ -1087,11 +1101,14 @@ process_escapes(struct ssh *ssh, Channel *c,
continue; continue;
case '#': case '#':
snprintf(string, sizeof string, "%c#\r\n", if ((r = sshbuf_putf(berr, "%c#\r\n",
efc->escape_char); efc->escape_char)) != 0)
buffer_append(berr, string, strlen(string)); fatal("%s: buffer error: %s",
__func__, ssh_err(r));
s = channel_open_message(ssh); s = channel_open_message(ssh);
buffer_append(berr, s, strlen(s)); if ((r = sshbuf_put(berr, s, strlen(s))) != 0)
fatal("%s: buffer error: %s",
__func__, ssh_err(r));
free(s); free(s);
continue; continue;
@ -1103,7 +1120,10 @@ process_escapes(struct ssh *ssh, Channel *c,
default: default:
if (ch != efc->escape_char) { if (ch != efc->escape_char) {
buffer_put_char(bin, efc->escape_char); if ((r = sshbuf_put_u8(bin,
efc->escape_char)) != 0)
fatal("%s: buffer error: %s",
__func__, ssh_err(r));
bytes++; bytes++;
} }
/* Escaped characters fall through here */ /* Escaped characters fall through here */
@ -1129,7 +1149,8 @@ process_escapes(struct ssh *ssh, Channel *c,
* and append it to the buffer. * and append it to the buffer.
*/ */
last_was_cr = (ch == '\r' || ch == '\n'); last_was_cr = (ch == '\r' || ch == '\n');
buffer_put_char(bin, ch); if ((r = sshbuf_put_u8(bin, ch)) != 0)
fatal("%s: buffer error: %s", __func__, ssh_err(r));
bytes++; bytes++;
} }
return bytes; return bytes;
@ -1253,8 +1274,9 @@ client_loop(struct ssh *ssh, int have_pty, int escape_char_arg,
quit_pending = 0; quit_pending = 0;
/* Initialize buffers. */ /* Initialize buffer. */
buffer_init(&stderr_buffer); if ((stderr_buffer = sshbuf_new()) == NULL)
fatal("%s: sshbuf_new failed", __func__);
client_init_dispatch(); client_init_dispatch();
@ -1411,24 +1433,25 @@ client_loop(struct ssh *ssh, int have_pty, int escape_char_arg,
* that the connection has been closed. * that the connection has been closed.
*/ */
if (have_pty && options.log_level != SYSLOG_LEVEL_QUIET) { if (have_pty && options.log_level != SYSLOG_LEVEL_QUIET) {
snprintf(buf, sizeof buf, if ((r = sshbuf_putf(stderr_buffer,
"Connection to %.64s closed.\r\n", host); "Connection to %.64s closed.\r\n", host)) != 0)
buffer_append(&stderr_buffer, buf, strlen(buf)); fatal("%s: buffer error: %s", __func__, ssh_err(r));
} }
/* Output any buffered data for stderr. */ /* Output any buffered data for stderr. */
if (buffer_len(&stderr_buffer) > 0) { if (sshbuf_len(stderr_buffer) > 0) {
len = atomicio(vwrite, fileno(stderr), len = atomicio(vwrite, fileno(stderr),
buffer_ptr(&stderr_buffer), buffer_len(&stderr_buffer)); (u_char *)sshbuf_ptr(stderr_buffer),
if (len < 0 || (u_int)len != buffer_len(&stderr_buffer)) sshbuf_len(stderr_buffer));
if (len < 0 || (u_int)len != sshbuf_len(stderr_buffer))
error("Write failed flushing stderr buffer."); error("Write failed flushing stderr buffer.");
else else if ((r = sshbuf_consume(stderr_buffer, len)) != 0)
buffer_consume(&stderr_buffer, len); fatal("%s: buffer error: %s", __func__, ssh_err(r));
} }
/* Clear and free any buffers. */ /* Clear and free any buffers. */
explicit_bzero(buf, sizeof(buf)); explicit_bzero(buf, sizeof(buf));
buffer_free(&stderr_buffer); sshbuf_free(stderr_buffer);
/* Report bytes transferred, and transfer rates. */ /* Report bytes transferred, and transfer rates. */
total_time = monotime_double() - start_time; total_time = monotime_double() - start_time;
@ -2156,7 +2179,8 @@ client_input_global_request(int type, u_int32_t seq, struct ssh *ssh)
void void
client_session2_setup(struct ssh *ssh, int id, int want_tty, int want_subsystem, client_session2_setup(struct ssh *ssh, int id, int want_tty, int want_subsystem,
const char *term, struct termios *tiop, int in_fd, Buffer *cmd, char **env) const char *term, struct termios *tiop, int in_fd, struct sshbuf *cmd,
char **env)
{ {
int i, j, matched, len; int i, j, matched, len;
char *name, *val; char *name, *val;
@ -2242,23 +2266,23 @@ client_session2_setup(struct ssh *ssh, int id, int want_tty, int want_subsystem,
free(name); free(name);
} }
len = buffer_len(cmd); len = sshbuf_len(cmd);
if (len > 0) { if (len > 0) {
if (len > 900) if (len > 900)
len = 900; len = 900;
if (want_subsystem) { if (want_subsystem) {
debug("Sending subsystem: %.*s", debug("Sending subsystem: %.*s",
len, (u_char*)buffer_ptr(cmd)); len, (const u_char*)sshbuf_ptr(cmd));
channel_request_start(ssh, id, "subsystem", 1); channel_request_start(ssh, id, "subsystem", 1);
client_expect_confirm(ssh, id, "subsystem", client_expect_confirm(ssh, id, "subsystem",
CONFIRM_CLOSE); CONFIRM_CLOSE);
} else { } else {
debug("Sending command: %.*s", debug("Sending command: %.*s",
len, (u_char*)buffer_ptr(cmd)); len, (const u_char*)sshbuf_ptr(cmd));
channel_request_start(ssh, id, "exec", 1); channel_request_start(ssh, id, "exec", 1);
client_expect_confirm(ssh, id, "exec", CONFIRM_CLOSE); client_expect_confirm(ssh, id, "exec", CONFIRM_CLOSE);
} }
packet_put_string(buffer_ptr(cmd), buffer_len(cmd)); packet_put_string(sshbuf_ptr(cmd), sshbuf_len(cmd));
packet_send(); packet_send();
} else { } else {
channel_request_start(ssh, id, "shell", 1); channel_request_start(ssh, id, "shell", 1);

View File

@ -1,4 +1,4 @@
/* $OpenBSD: clientloop.h,v 1.35 2017/10/23 05:08:00 djm Exp $ */ /* $OpenBSD: clientloop.h,v 1.36 2018/07/09 21:03:30 markus Exp $ */
/* /*
* Author: Tatu Ylonen <ylo@cs.hut.fi> * Author: Tatu Ylonen <ylo@cs.hut.fi>
@ -45,7 +45,7 @@ int client_x11_get_proto(struct ssh *, const char *, const char *,
u_int, u_int, char **, char **); u_int, u_int, char **, char **);
void client_global_request_reply_fwd(int, u_int32_t, void *); void client_global_request_reply_fwd(int, u_int32_t, void *);
void client_session2_setup(struct ssh *, int, int, int, void client_session2_setup(struct ssh *, int, int, int,
const char *, struct termios *, int, Buffer *, char **); const char *, struct termios *, int, struct sshbuf *, char **);
char *client_request_tun_fwd(struct ssh *, int, int, int); char *client_request_tun_fwd(struct ssh *, int, int, int);
void client_stop_mux(void); void client_stop_mux(void);

View File

@ -1,4 +1,4 @@
/* $OpenBSD: compat.c,v 1.110 2018/07/04 13:49:31 djm Exp $ */ /* $OpenBSD: compat.c,v 1.111 2018/07/09 21:03:30 markus Exp $ */
/* /*
* Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved. * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved.
* *
@ -32,7 +32,6 @@
#include <stdarg.h> #include <stdarg.h>
#include "xmalloc.h" #include "xmalloc.h"
#include "buffer.h"
#include "packet.h" #include "packet.h"
#include "compat.h" #include "compat.h"
#include "log.h" #include "log.h"

6
mux.c
View File

@ -1,4 +1,4 @@
/* $OpenBSD: mux.c,v 1.71 2018/06/09 03:01:12 djm Exp $ */ /* $OpenBSD: mux.c,v 1.72 2018/07/09 21:03:30 markus Exp $ */
/* /*
* Copyright (c) 2002-2008 Damien Miller <djm@openbsd.org> * Copyright (c) 2002-2008 Damien Miller <djm@openbsd.org>
* *
@ -87,7 +87,7 @@ extern Options options;
extern int stdin_null_flag; extern int stdin_null_flag;
extern char *host; extern char *host;
extern int subsystem_flag; extern int subsystem_flag;
extern Buffer command; extern struct sshbuf *command;
extern volatile sig_atomic_t quit_pending; extern volatile sig_atomic_t quit_pending;
/* Context for session open confirmation callback */ /* Context for session open confirmation callback */
@ -1887,7 +1887,7 @@ mux_client_request_session(int fd)
buffer_put_int(&m, options.escape_char == SSH_ESCAPECHAR_NONE ? buffer_put_int(&m, options.escape_char == SSH_ESCAPECHAR_NONE ?
0xffffffff : (u_int)options.escape_char); 0xffffffff : (u_int)options.escape_char);
buffer_put_cstring(&m, term == NULL ? "" : term); buffer_put_cstring(&m, term == NULL ? "" : term);
buffer_put_string(&m, buffer_ptr(&command), buffer_len(&command)); buffer_put_string(&m, buffer_ptr(command), buffer_len(command));
/* Pass environment */ /* Pass environment */
if (options.num_send_env > 0 && environ != NULL) { if (options.num_send_env > 0 && environ != NULL) {

View File

@ -1,4 +1,4 @@
/* $OpenBSD: packet.c,v 1.275 2018/07/09 13:37:10 sf Exp $ */ /* $OpenBSD: packet.c,v 1.276 2018/07/09 21:03:30 markus Exp $ */
/* /*
* Author: Tatu Ylonen <ylo@cs.hut.fi> * Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@ -63,9 +63,6 @@
#include <zlib.h> #include <zlib.h>
#include "buffer.h" /* typedefs XXX */
#include "key.h" /* typedefs XXX */
#include "xmalloc.h" #include "xmalloc.h"
#include "crc32.h" #include "crc32.h"
#include "compat.h" #include "compat.h"

29
ssh.c
View File

@ -1,4 +1,4 @@
/* $OpenBSD: ssh.c,v 1.481 2018/06/08 03:35:36 djm Exp $ */ /* $OpenBSD: ssh.c,v 1.482 2018/07/09 21:03:30 markus Exp $ */
/* /*
* Author: Tatu Ylonen <ylo@cs.hut.fi> * Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@ -87,7 +87,7 @@
#include "cipher.h" #include "cipher.h"
#include "digest.h" #include "digest.h"
#include "packet.h" #include "packet.h"
#include "buffer.h" #include "sshbuf.h"
#include "channels.h" #include "channels.h"
#include "key.h" #include "key.h"
#include "authfd.h" #include "authfd.h"
@ -183,7 +183,7 @@ uid_t original_real_uid;
uid_t original_effective_uid; uid_t original_effective_uid;
/* command to be executed */ /* command to be executed */
Buffer command; struct sshbuf *command;
/* Should we execute a command or invoke a subsystem? */ /* Should we execute a command or invoke a subsystem? */
int subsystem_flag = 0; int subsystem_flag = 0;
@ -1042,7 +1042,8 @@ main(int ac, char **av)
#endif #endif
/* Initialize the command to execute on remote host. */ /* Initialize the command to execute on remote host. */
buffer_init(&command); if ((command = sshbuf_new()) == NULL)
fatal("sshbuf_new failed");
/* /*
* Save the command to execute on the remote host in a buffer. There * Save the command to execute on the remote host in a buffer. There
@ -1059,9 +1060,10 @@ main(int ac, char **av)
} else { } else {
/* A command has been specified. Store it into the buffer. */ /* A command has been specified. Store it into the buffer. */
for (i = 0; i < ac; i++) { for (i = 0; i < ac; i++) {
if (i) if ((r = sshbuf_putf(command, "%s%s",
buffer_append(&command, " ", 1); i ? " " : "", av[i])) != 0)
buffer_append(&command, av[i], strlen(av[i])); fatal("%s: buffer error: %s",
__func__, ssh_err(r));
} }
} }
@ -1234,11 +1236,11 @@ main(int ac, char **av)
options.use_privileged_port = 0; options.use_privileged_port = 0;
#endif #endif
if (buffer_len(&command) != 0 && options.remote_command != NULL) if (sshbuf_len(command) != 0 && options.remote_command != NULL)
fatal("Cannot execute command-line and remote command."); fatal("Cannot execute command-line and remote command.");
/* Cannot fork to background if no command. */ /* Cannot fork to background if no command. */
if (fork_after_authentication_flag && buffer_len(&command) == 0 && if (fork_after_authentication_flag && sshbuf_len(command) == 0 &&
options.remote_command == NULL && !no_shell_flag) options.remote_command == NULL && !no_shell_flag)
fatal("Cannot fork into background without a command " fatal("Cannot fork into background without a command "
"to execute."); "to execute.");
@ -1251,7 +1253,7 @@ main(int ac, char **av)
tty_flag = 1; tty_flag = 1;
/* Allocate a tty by default if no command specified. */ /* Allocate a tty by default if no command specified. */
if (buffer_len(&command) == 0 && options.remote_command == NULL) if (sshbuf_len(command) == 0 && options.remote_command == NULL)
tty_flag = options.request_tty != REQUEST_TTY_NO; tty_flag = options.request_tty != REQUEST_TTY_NO;
/* Force no tty */ /* Force no tty */
@ -1313,8 +1315,9 @@ main(int ac, char **av)
(char *)NULL); (char *)NULL);
debug3("expanded RemoteCommand: %s", options.remote_command); debug3("expanded RemoteCommand: %s", options.remote_command);
free(cp); free(cp);
buffer_append(&command, options.remote_command, if ((r = sshbuf_put(command, options.remote_command,
strlen(options.remote_command)); strlen(options.remote_command))) != 0)
fatal("%s: buffer error: %s", __func__, ssh_err(r));
} }
if (options.control_path != NULL) { if (options.control_path != NULL) {
@ -1846,7 +1849,7 @@ ssh_session2_setup(struct ssh *ssh, int id, int success, void *arg)
options.ip_qos_interactive, options.ip_qos_bulk); options.ip_qos_interactive, options.ip_qos_bulk);
client_session2_setup(ssh, id, tty_flag, subsystem_flag, getenv("TERM"), client_session2_setup(ssh, id, tty_flag, subsystem_flag, getenv("TERM"),
NULL, fileno(stdin), &command, environ); NULL, fileno(stdin), command, environ);
} }
/* open new channel for a session */ /* open new channel for a session */

View File

@ -1,4 +1,4 @@
/* $OpenBSD: sshconnect.c,v 1.298 2018/04/10 00:10:49 djm Exp $ */ /* $OpenBSD: sshconnect.c,v 1.299 2018/07/09 21:03:30 markus Exp $ */
/* /*
* Author: Tatu Ylonen <ylo@cs.hut.fi> * Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@ -52,7 +52,7 @@
#include "key.h" #include "key.h"
#include "hostfile.h" #include "hostfile.h"
#include "ssh.h" #include "ssh.h"
#include "buffer.h" #include "sshbuf.h"
#include "packet.h" #include "packet.h"
#include "uidswap.h" #include "uidswap.h"
#include "compat.h" #include "compat.h"
@ -771,7 +771,7 @@ check_host_cert(const char *host, const struct sshkey *host_key)
error("%s", reason); error("%s", reason);
return 0; return 0;
} }
if (buffer_len(host_key->cert->critical) != 0) { if (sshbuf_len(host_key->cert->critical) != 0) {
error("Certificate for %s contains unsupported " error("Certificate for %s contains unsupported "
"critical options(s)", host); "critical options(s)", host);
return 0; return 0;

View File

@ -1,4 +1,4 @@
/* $OpenBSD: sshconnect2.c,v 1.277 2018/07/09 13:37:10 sf Exp $ */ /* $OpenBSD: sshconnect2.c,v 1.278 2018/07/09 21:03:30 markus Exp $ */
/* /*
* Copyright (c) 2000 Markus Friedl. All rights reserved. * Copyright (c) 2000 Markus Friedl. All rights reserved.
* Copyright (c) 2008 Damien Miller. All rights reserved. * Copyright (c) 2008 Damien Miller. All rights reserved.
@ -49,11 +49,11 @@
#include "xmalloc.h" #include "xmalloc.h"
#include "ssh.h" #include "ssh.h"
#include "ssh2.h" #include "ssh2.h"
#include "buffer.h" #include "sshbuf.h"
#include "packet.h" #include "packet.h"
#include "compat.h" #include "compat.h"
#include "cipher.h" #include "cipher.h"
#include "key.h" #include "sshkey.h"
#include "kex.h" #include "kex.h"
#include "myproposal.h" #include "myproposal.h"
#include "sshconnect.h" #include "sshconnect.h"
@ -232,10 +232,11 @@ ssh_kex2(char *host, struct sockaddr *hostaddr, u_short port)
#ifdef DEBUG_KEXDH #ifdef DEBUG_KEXDH
/* send 1st encrypted/maced/compressed message */ /* send 1st encrypted/maced/compressed message */
packet_start(SSH2_MSG_IGNORE); if ((r = sshpkt_start(ssh, SSH2_MSG_IGNORE)) != 0 ||
packet_put_cstring("markus"); (r = sshpkt_put_cstring(ssh, "markus")) != 0 ||
packet_send(); (r = sshpkt_send(ssh)) != 0)
packet_write_wait(); fatal("%s: %s", __func__, ssh_err(r));
ssh_packet_write_wait(ssh);
#endif #endif
} }
@ -457,6 +458,8 @@ input_userauth_ext_info(int type, u_int32_t seqnr, struct ssh *ssh)
void void
userauth(Authctxt *authctxt, char *authlist) userauth(Authctxt *authctxt, char *authlist)
{ {
struct ssh *ssh = active_state; /* XXX */
if (authctxt->method != NULL && authctxt->method->cleanup != NULL) if (authctxt->method != NULL && authctxt->method->cleanup != NULL)
authctxt->method->cleanup(authctxt); authctxt->method->cleanup(authctxt);
@ -476,7 +479,7 @@ userauth(Authctxt *authctxt, char *authlist)
authctxt->method = method; authctxt->method = method;
/* reset the per method handler */ /* reset the per method handler */
dispatch_range(SSH2_MSG_USERAUTH_PER_METHOD_MIN, ssh_dispatch_range(ssh, SSH2_MSG_USERAUTH_PER_METHOD_MIN,
SSH2_MSG_USERAUTH_PER_METHOD_MAX, NULL); SSH2_MSG_USERAUTH_PER_METHOD_MAX, NULL);
/* and try new method */ /* and try new method */
@ -553,14 +556,16 @@ input_userauth_failure(int type, u_int32_t seq, struct ssh *ssh)
{ {
Authctxt *authctxt = ssh->authctxt; Authctxt *authctxt = ssh->authctxt;
char *authlist = NULL; char *authlist = NULL;
int partial; u_char partial;
int r;
if (authctxt == NULL) if (authctxt == NULL)
fatal("input_userauth_failure: no authentication context"); fatal("input_userauth_failure: no authentication context");
authlist = packet_get_string(NULL); if ((r = sshpkt_get_cstring(ssh, &authlist, NULL)) != 0 ||
partial = packet_get_char(); (r = sshpkt_get_u8(ssh, &partial)) != 0 ||
packet_check_eom(); (r = sshpkt_get_end(ssh)) != 0)
goto out;
if (partial != 0) { if (partial != 0) {
verbose("Authenticated with partial success."); verbose("Authenticated with partial success.");
@ -570,6 +575,9 @@ input_userauth_failure(int type, u_int32_t seq, struct ssh *ssh)
debug("Authentications that can continue: %s", authlist); debug("Authentications that can continue: %s", authlist);
userauth(authctxt, authlist); userauth(authctxt, authlist);
authlist = NULL;
out:
free(authlist);
return 0; return 0;
} }
@ -581,25 +589,27 @@ input_userauth_pk_ok(int type, u_int32_t seq, struct ssh *ssh)
struct sshkey *key = NULL; struct sshkey *key = NULL;
Identity *id = NULL; Identity *id = NULL;
int pktype, sent = 0; int pktype, sent = 0;
u_int alen, blen; size_t blen;
char *pkalg, *fp; char *pkalg = NULL, *fp;
u_char *pkblob; u_char *pkblob = NULL;
int r;
if (authctxt == NULL) if (authctxt == NULL)
fatal("input_userauth_pk_ok: no authentication context"); fatal("input_userauth_pk_ok: no authentication context");
pkalg = packet_get_string(&alen); if ((r = sshpkt_get_cstring(ssh, &pkalg, NULL)) != 0 ||
pkblob = packet_get_string(&blen); (r = sshpkt_get_string(ssh, &pkblob, &blen)) != 0 ||
packet_check_eom(); (r = sshpkt_get_end(ssh)) != 0)
goto done;
debug("Server accepts key: pkalg %s blen %u", pkalg, blen); debug("Server accepts key: pkalg %s blen %zu", pkalg, blen);
if ((pktype = key_type_from_name(pkalg)) == KEY_UNSPEC) { if ((pktype = sshkey_type_from_name(pkalg)) == KEY_UNSPEC) {
debug("unknown pkalg %s", pkalg); debug("unknown pkalg %s", pkalg);
goto done; goto done;
} }
if ((key = key_from_blob(pkblob, blen)) == NULL) { if ((r = sshkey_from_blob(pkblob, blen, &key)) != 0) {
debug("no key from blob. pkalg %s", pkalg); debug("no key from blob. pkalg %s: %s", pkalg, ssh_err(r));
goto done; goto done;
} }
if (key->type != pktype) { if (key->type != pktype) {
@ -620,31 +630,33 @@ input_userauth_pk_ok(int type, u_int32_t seq, struct ssh *ssh)
* duplicate keys * duplicate keys
*/ */
TAILQ_FOREACH_REVERSE(id, &authctxt->keys, idlist, next) { TAILQ_FOREACH_REVERSE(id, &authctxt->keys, idlist, next) {
if (key_equal(key, id->key)) { if (sshkey_equal(key, id->key)) {
sent = sign_and_send_pubkey(ssh, authctxt, id); sent = sign_and_send_pubkey(ssh, authctxt, id);
break; break;
} }
} }
done: r = 0;
key_free(key); done:
sshkey_free(key);
free(pkalg); free(pkalg);
free(pkblob); free(pkblob);
/* try another method if we did not send a packet */ /* try another method if we did not send a packet */
if (sent == 0) if (r == 0 && sent == 0)
userauth(authctxt, NULL); userauth(authctxt, NULL);
return 0; return r;
} }
#ifdef GSSAPI #ifdef GSSAPI
int int
userauth_gssapi(Authctxt *authctxt) userauth_gssapi(Authctxt *authctxt)
{ {
struct ssh *ssh = active_state; /* XXX */
Gssctxt *gssctxt = NULL; Gssctxt *gssctxt = NULL;
static gss_OID_set gss_supported = NULL; static gss_OID_set gss_supported = NULL;
static u_int mech = 0; static u_int mech = 0;
OM_uint32 min; OM_uint32 min;
int ok = 0; int r, ok = 0;
/* Try one GSSAPI method at a time, rather than sending them all at /* Try one GSSAPI method at a time, rather than sending them all at
* once. */ * once. */
@ -669,25 +681,26 @@ userauth_gssapi(Authctxt *authctxt)
authctxt->methoddata=(void *)gssctxt; authctxt->methoddata=(void *)gssctxt;
packet_start(SSH2_MSG_USERAUTH_REQUEST); if ((r = sshpkt_start(ssh, SSH2_MSG_USERAUTH_REQUEST)) != 0 ||
packet_put_cstring(authctxt->server_user); (r = sshpkt_put_cstring(ssh, authctxt->server_user)) != 0 ||
packet_put_cstring(authctxt->service); (r = sshpkt_put_cstring(ssh, authctxt->service)) != 0 ||
packet_put_cstring(authctxt->method->name); (r = sshpkt_put_cstring(ssh, authctxt->method->name)) != 0 ||
(r = sshpkt_put_u32(ssh, 1)) != 0 ||
(r = sshpkt_put_u32(ssh,
(gss_supported->elements[mech].length) + 2)) != 0 ||
(r = sshpkt_put_u8(ssh, SSH_GSS_OIDTYPE)) != 0 ||
(r = sshpkt_put_u8(ssh,
gss_supported->elements[mech].length)) != 0 ||
(r = sshpkt_put(ssh,
gss_supported->elements[mech].elements,
gss_supported->elements[mech].length)) != 0 ||
(r = sshpkt_send(ssh)) != 0)
fatal("%s: %s", __func__, ssh_err(r));
packet_put_int(1); ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_RESPONSE, &input_gssapi_response);
ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_TOKEN, &input_gssapi_token);
packet_put_int((gss_supported->elements[mech].length) + 2); ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_ERROR, &input_gssapi_error);
packet_put_char(SSH_GSS_OIDTYPE); ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, &input_gssapi_errtok);
packet_put_char(gss_supported->elements[mech].length);
packet_put_raw(gss_supported->elements[mech].elements,
gss_supported->elements[mech].length);
packet_send();
dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_RESPONSE, &input_gssapi_response);
dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, &input_gssapi_token);
dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_ERROR, &input_gssapi_error);
dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, &input_gssapi_errtok);
mech++; /* Move along to next candidate */ mech++; /* Move along to next candidate */
@ -703,44 +716,56 @@ process_gssapi_token(struct ssh *ssh, gss_buffer_t recv_tok)
gss_buffer_desc mic = GSS_C_EMPTY_BUFFER; gss_buffer_desc mic = GSS_C_EMPTY_BUFFER;
gss_buffer_desc gssbuf; gss_buffer_desc gssbuf;
OM_uint32 status, ms, flags; OM_uint32 status, ms, flags;
Buffer b; int r;
status = ssh_gssapi_init_ctx(gssctxt, options.gss_deleg_creds, status = ssh_gssapi_init_ctx(gssctxt, options.gss_deleg_creds,
recv_tok, &send_tok, &flags); recv_tok, &send_tok, &flags);
if (send_tok.length > 0) { if (send_tok.length > 0) {
if (GSS_ERROR(status)) u_char type = GSS_ERROR(status) ?
packet_start(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK); SSH2_MSG_USERAUTH_GSSAPI_ERRTOK :
else SSH2_MSG_USERAUTH_GSSAPI_TOKEN;
packet_start(SSH2_MSG_USERAUTH_GSSAPI_TOKEN);
if ((r = sshpkt_start(ssh, type)) != 0 ||
(r = sshpkt_put_string(ssh, send_tok.value,
send_tok.length)) != 0 ||
(r = sshpkt_send(ssh)) != 0)
fatal("%s: %s", __func__, ssh_err(r));
packet_put_string(send_tok.value, send_tok.length);
packet_send();
gss_release_buffer(&ms, &send_tok); gss_release_buffer(&ms, &send_tok);
} }
if (status == GSS_S_COMPLETE) { if (status == GSS_S_COMPLETE) {
/* send either complete or MIC, depending on mechanism */ /* send either complete or MIC, depending on mechanism */
if (!(flags & GSS_C_INTEG_FLAG)) { if (!(flags & GSS_C_INTEG_FLAG)) {
packet_start(SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE); if ((r = sshpkt_start(ssh,
packet_send(); SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE)) != 0 ||
(r = sshpkt_send(ssh)) != 0)
fatal("%s: %s", __func__, ssh_err(r));
} else { } else {
ssh_gssapi_buildmic(&b, authctxt->server_user, struct sshbuf *b;
if ((b = sshbuf_new()) == NULL)
fatal("%s: sshbuf_new failed", __func__);
ssh_gssapi_buildmic(b, authctxt->server_user,
authctxt->service, "gssapi-with-mic"); authctxt->service, "gssapi-with-mic");
gssbuf.value = buffer_ptr(&b); if ((gssbuf.value = sshbuf_mutable_ptr(b)) == NULL)
gssbuf.length = buffer_len(&b); fatal("%s: sshbuf_mutable_ptr failed", __func__);
gssbuf.length = sshbuf_len(b);
status = ssh_gssapi_sign(gssctxt, &gssbuf, &mic); status = ssh_gssapi_sign(gssctxt, &gssbuf, &mic);
if (!GSS_ERROR(status)) { if (!GSS_ERROR(status)) {
packet_start(SSH2_MSG_USERAUTH_GSSAPI_MIC); if ((r = sshpkt_start(ssh,
packet_put_string(mic.value, mic.length); SSH2_MSG_USERAUTH_GSSAPI_MIC)) != 0 ||
(r = sshpkt_put_string(ssh, mic.value,
packet_send(); mic.length)) != 0 ||
(r = sshpkt_send(ssh)) != 0)
fatal("%s: %s", __func__, ssh_err(r));
} }
buffer_free(&b); sshbuf_free(b);
gss_release_buffer(&ms, &mic); gss_release_buffer(&ms, &mic);
} }
} }
@ -754,39 +779,43 @@ input_gssapi_response(int type, u_int32_t plen, struct ssh *ssh)
{ {
Authctxt *authctxt = ssh->authctxt; Authctxt *authctxt = ssh->authctxt;
Gssctxt *gssctxt; Gssctxt *gssctxt;
int oidlen; size_t oidlen;
char *oidv; u_char *oidv = NULL;
int r;
if (authctxt == NULL) if (authctxt == NULL)
fatal("input_gssapi_response: no authentication context"); fatal("input_gssapi_response: no authentication context");
gssctxt = authctxt->methoddata; gssctxt = authctxt->methoddata;
/* Setup our OID */ /* Setup our OID */
oidv = packet_get_string(&oidlen); if ((r = sshpkt_get_string(ssh, &oidv, &oidlen)) != 0)
goto done;
if (oidlen <= 2 || if (oidlen <= 2 ||
oidv[0] != SSH_GSS_OIDTYPE || oidv[0] != SSH_GSS_OIDTYPE ||
oidv[1] != oidlen - 2) { oidv[1] != oidlen - 2) {
free(oidv);
debug("Badly encoded mechanism OID received"); debug("Badly encoded mechanism OID received");
userauth(authctxt, NULL); userauth(authctxt, NULL);
return 0; goto ok;
} }
if (!ssh_gssapi_check_oid(gssctxt, oidv + 2, oidlen - 2)) if (!ssh_gssapi_check_oid(gssctxt, oidv + 2, oidlen - 2))
fatal("Server returned different OID than expected"); fatal("Server returned different OID than expected");
packet_check_eom(); if ((r = sshpkt_get_end(ssh)) != 0)
goto done;
free(oidv);
if (GSS_ERROR(process_gssapi_token(ssh, GSS_C_NO_BUFFER))) { if (GSS_ERROR(process_gssapi_token(ssh, GSS_C_NO_BUFFER))) {
/* Start again with next method on list */ /* Start again with next method on list */
debug("Trying to start again"); debug("Trying to start again");
userauth(authctxt, NULL); userauth(authctxt, NULL);
return 0; goto ok;
} }
return 0; ok:
r = 0;
done:
free(oidv);
return r;
} }
/* ARGSUSED */ /* ARGSUSED */
@ -795,27 +824,31 @@ input_gssapi_token(int type, u_int32_t plen, struct ssh *ssh)
{ {
Authctxt *authctxt = ssh->authctxt; Authctxt *authctxt = ssh->authctxt;
gss_buffer_desc recv_tok; gss_buffer_desc recv_tok;
u_char *p = NULL;
size_t len;
OM_uint32 status; OM_uint32 status;
u_int slen; int r;
if (authctxt == NULL) if (authctxt == NULL)
fatal("input_gssapi_response: no authentication context"); fatal("input_gssapi_response: no authentication context");
recv_tok.value = packet_get_string(&slen); if ((r = sshpkt_get_string(ssh, &p, &len)) != 0 ||
recv_tok.length = slen; /* safe typecast */ (r = sshpkt_get_end(ssh)) != 0)
goto out;
packet_check_eom();
recv_tok.value = p;
recv_tok.length = len;
status = process_gssapi_token(ssh, &recv_tok); status = process_gssapi_token(ssh, &recv_tok);
free(recv_tok.value); /* Start again with the next method in the list */
if (GSS_ERROR(status)) { if (GSS_ERROR(status)) {
/* Start again with the next method in the list */
userauth(authctxt, NULL); userauth(authctxt, NULL);
return 0; /* ok */
} }
return 0; r = 0;
out:
free(p);
return r;
} }
/* ARGSUSED */ /* ARGSUSED */
@ -827,22 +860,26 @@ input_gssapi_errtok(int type, u_int32_t plen, struct ssh *ssh)
gss_buffer_desc send_tok = GSS_C_EMPTY_BUFFER; gss_buffer_desc send_tok = GSS_C_EMPTY_BUFFER;
gss_buffer_desc recv_tok; gss_buffer_desc recv_tok;
OM_uint32 ms; OM_uint32 ms;
u_int len; u_char *p = NULL;
size_t len;
int r;
if (authctxt == NULL) if (authctxt == NULL)
fatal("input_gssapi_response: no authentication context"); fatal("input_gssapi_response: no authentication context");
gssctxt = authctxt->methoddata; gssctxt = authctxt->methoddata;
recv_tok.value = packet_get_string(&len); if ((r = sshpkt_get_string(ssh, &p, &len)) != 0 ||
recv_tok.length = len; (r = sshpkt_get_end(ssh)) != 0) {
free(p);
packet_check_eom(); return r;
}
/* Stick it into GSSAPI and see what it says */ /* Stick it into GSSAPI and see what it says */
recv_tok.value = p;
recv_tok.length = len;
(void)ssh_gssapi_init_ctx(gssctxt, options.gss_deleg_creds, (void)ssh_gssapi_init_ctx(gssctxt, options.gss_deleg_creds,
&recv_tok, &send_tok, NULL); &recv_tok, &send_tok, NULL);
free(p);
free(recv_tok.value);
gss_release_buffer(&ms, &send_tok); gss_release_buffer(&ms, &send_tok);
/* Server will be returning a failed packet after this one */ /* Server will be returning a failed packet after this one */
@ -853,43 +890,50 @@ input_gssapi_errtok(int type, u_int32_t plen, struct ssh *ssh)
int int
input_gssapi_error(int type, u_int32_t plen, struct ssh *ssh) input_gssapi_error(int type, u_int32_t plen, struct ssh *ssh)
{ {
char *msg; char *msg = NULL;
char *lang; char *lang = NULL;
int r;
/* maj */(void)packet_get_int();
/* min */(void)packet_get_int();
msg=packet_get_string(NULL);
lang=packet_get_string(NULL);
packet_check_eom();
if ((r = sshpkt_get_u32(ssh, NULL)) != 0 || /* maj */
(r = sshpkt_get_u32(ssh, NULL)) != 0 || /* min */
(r = sshpkt_get_cstring(ssh, &msg, NULL)) != 0 ||
(r = sshpkt_get_cstring(ssh, &lang, NULL)) != 0)
goto out;
r = sshpkt_get_end(ssh);
debug("Server GSSAPI Error:\n%s", msg); debug("Server GSSAPI Error:\n%s", msg);
out:
free(msg); free(msg);
free(lang); free(lang);
return 0; return r;
} }
#endif /* GSSAPI */ #endif /* GSSAPI */
int int
userauth_none(Authctxt *authctxt) userauth_none(Authctxt *authctxt)
{ {
struct ssh *ssh = active_state; /* XXX */
int r;
/* initial userauth request */ /* initial userauth request */
packet_start(SSH2_MSG_USERAUTH_REQUEST); if ((r = sshpkt_start(ssh, SSH2_MSG_USERAUTH_REQUEST)) != 0 ||
packet_put_cstring(authctxt->server_user); (r = sshpkt_put_cstring(ssh, authctxt->server_user)) != 0 ||
packet_put_cstring(authctxt->service); (r = sshpkt_put_cstring(ssh, authctxt->service)) != 0 ||
packet_put_cstring(authctxt->method->name); (r = sshpkt_put_cstring(ssh, authctxt->method->name)) != 0 ||
packet_send(); (r = sshpkt_send(ssh)) != 0)
fatal("%s: %s", __func__, ssh_err(r));
return 1; return 1;
} }
int int
userauth_passwd(Authctxt *authctxt) userauth_passwd(Authctxt *authctxt)
{ {
struct ssh *ssh = active_state; /* XXX */
static int attempt = 0; static int attempt = 0;
char prompt[256]; char prompt[256];
char *password; char *password;
const char *host = options.host_key_alias ? options.host_key_alias : const char *host = options.host_key_alias ? options.host_key_alias :
authctxt->host; authctxt->host;
int r;
if (attempt++ >= options.number_of_password_prompts) if (attempt++ >= options.number_of_password_prompts)
return 0; return 0;
@ -900,18 +944,20 @@ userauth_passwd(Authctxt *authctxt)
snprintf(prompt, sizeof(prompt), "%.30s@%.128s's password: ", snprintf(prompt, sizeof(prompt), "%.30s@%.128s's password: ",
authctxt->server_user, host); authctxt->server_user, host);
password = read_passphrase(prompt, 0); password = read_passphrase(prompt, 0);
packet_start(SSH2_MSG_USERAUTH_REQUEST); if ((r = sshpkt_start(ssh, SSH2_MSG_USERAUTH_REQUEST)) != 0 ||
packet_put_cstring(authctxt->server_user); (r = sshpkt_put_cstring(ssh, authctxt->server_user)) != 0 ||
packet_put_cstring(authctxt->service); (r = sshpkt_put_cstring(ssh, authctxt->service)) != 0 ||
packet_put_cstring(authctxt->method->name); (r = sshpkt_put_cstring(ssh, authctxt->method->name)) != 0 ||
packet_put_char(0); (r = sshpkt_put_u8(ssh, 0)) != 0 ||
packet_put_cstring(password); (r = sshpkt_put_cstring(ssh, password)) != 0 ||
explicit_bzero(password, strlen(password)); (r = sshpkt_add_padding(ssh, 64)) != 0 ||
free(password); (r = sshpkt_send(ssh)) != 0)
packet_add_padding(64); fatal("%s: %s", __func__, ssh_err(r));
packet_send();
dispatch_set(SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ, if (password)
freezero(password, strlen(password));
ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ,
&input_userauth_passwd_changereq); &input_userauth_passwd_changereq);
return 1; return 1;
@ -925,9 +971,10 @@ int
input_userauth_passwd_changereq(int type, u_int32_t seqnr, struct ssh *ssh) input_userauth_passwd_changereq(int type, u_int32_t seqnr, struct ssh *ssh)
{ {
Authctxt *authctxt = ssh->authctxt; Authctxt *authctxt = ssh->authctxt;
char *info, *lang, *password = NULL, *retype = NULL; char *info = NULL, *lang = NULL, *password = NULL, *retype = NULL;
char prompt[256]; char prompt[256];
const char *host; const char *host;
int r;
debug2("input_userauth_passwd_changereq"); debug2("input_userauth_passwd_changereq");
@ -936,24 +983,26 @@ input_userauth_passwd_changereq(int type, u_int32_t seqnr, struct ssh *ssh)
"no authentication context"); "no authentication context");
host = options.host_key_alias ? options.host_key_alias : authctxt->host; host = options.host_key_alias ? options.host_key_alias : authctxt->host;
info = packet_get_string(NULL); if ((r = sshpkt_get_cstring(ssh, &info, NULL)) != 0 ||
lang = packet_get_string(NULL); (r = sshpkt_get_cstring(ssh, &lang, NULL)) != 0)
goto out;
if (strlen(info) > 0) if (strlen(info) > 0)
logit("%s", info); logit("%s", info);
free(info); if ((r = sshpkt_start(ssh, SSH2_MSG_USERAUTH_REQUEST)) != 0 ||
free(lang); (r = sshpkt_put_cstring(ssh, authctxt->server_user)) != 0 ||
packet_start(SSH2_MSG_USERAUTH_REQUEST); (r = sshpkt_put_cstring(ssh, authctxt->service)) != 0 ||
packet_put_cstring(authctxt->server_user); (r = sshpkt_put_cstring(ssh, authctxt->method->name)) != 0 ||
packet_put_cstring(authctxt->service); (r = sshpkt_put_u8(ssh, 1)) != 0) /* additional info */
packet_put_cstring(authctxt->method->name); goto out;
packet_put_char(1); /* additional info */
snprintf(prompt, sizeof(prompt), snprintf(prompt, sizeof(prompt),
"Enter %.30s@%.128s's old password: ", "Enter %.30s@%.128s's old password: ",
authctxt->server_user, host); authctxt->server_user, host);
password = read_passphrase(prompt, 0); password = read_passphrase(prompt, 0);
packet_put_cstring(password); if ((r = sshpkt_put_cstring(ssh, password)) != 0)
explicit_bzero(password, strlen(password)); goto out;
free(password);
freezero(password, strlen(password));
password = NULL; password = NULL;
while (password == NULL) { while (password == NULL) {
snprintf(prompt, sizeof(prompt), snprintf(prompt, sizeof(prompt),
@ -962,30 +1011,34 @@ input_userauth_passwd_changereq(int type, u_int32_t seqnr, struct ssh *ssh)
password = read_passphrase(prompt, RP_ALLOW_EOF); password = read_passphrase(prompt, RP_ALLOW_EOF);
if (password == NULL) { if (password == NULL) {
/* bail out */ /* bail out */
return 0; r = 0;
goto out;
} }
snprintf(prompt, sizeof(prompt), snprintf(prompt, sizeof(prompt),
"Retype %.30s@%.128s's new password: ", "Retype %.30s@%.128s's new password: ",
authctxt->server_user, host); authctxt->server_user, host);
retype = read_passphrase(prompt, 0); retype = read_passphrase(prompt, 0);
if (strcmp(password, retype) != 0) { if (strcmp(password, retype) != 0) {
explicit_bzero(password, strlen(password)); freezero(password, strlen(password));
free(password);
logit("Mismatch; try again, EOF to quit."); logit("Mismatch; try again, EOF to quit.");
password = NULL; password = NULL;
} }
explicit_bzero(retype, strlen(retype)); freezero(retype, strlen(retype));
free(retype);
} }
packet_put_cstring(password); if ((r = sshpkt_put_cstring(ssh, password)) != 0 ||
explicit_bzero(password, strlen(password)); (r = sshpkt_add_padding(ssh, 64)) != 0 ||
free(password); (r = sshpkt_send(ssh)) != 0)
packet_add_padding(64); goto out;
packet_send();
dispatch_set(SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ, ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ,
&input_userauth_passwd_changereq); &input_userauth_passwd_changereq);
return 0; r = 0;
out:
if (password)
freezero(password, strlen(password));
free(info);
free(lang);
return r;
} }
/* /*
@ -1192,7 +1245,7 @@ sign_and_send_pubkey(struct ssh *ssh, Authctxt *authctxt, Identity *id)
__func__, ssh_err(r)); __func__, ssh_err(r));
} }
} }
skip = buffer_len(b); skip = sshbuf_len(b);
if ((r = sshbuf_put_u8(b, SSH2_MSG_USERAUTH_REQUEST)) != 0 || if ((r = sshbuf_put_u8(b, SSH2_MSG_USERAUTH_REQUEST)) != 0 ||
(r = sshbuf_put_cstring(b, authctxt->server_user)) != 0 || (r = sshbuf_put_cstring(b, authctxt->server_user)) != 0 ||
(r = sshbuf_put_cstring(b, authctxt->service)) != 0 || (r = sshbuf_put_cstring(b, authctxt->service)) != 0 ||
@ -1259,34 +1312,36 @@ static int
send_pubkey_test(struct ssh *ssh, Authctxt *authctxt, Identity *id) send_pubkey_test(struct ssh *ssh, Authctxt *authctxt, Identity *id)
{ {
u_char *blob = NULL; u_char *blob = NULL;
u_int bloblen, have_sig = 0;
char *alg = NULL; char *alg = NULL;
int sent = 0; size_t bloblen;
u_int have_sig = 0;
int sent = 0, r;
if ((alg = key_sig_algorithm(ssh, id->key)) == NULL) { if ((alg = key_sig_algorithm(ssh, id->key)) == NULL) {
debug("%s: no mutual signature algorithm", __func__); debug("%s: no mutual signature algorithm", __func__);
goto out; goto out;
} }
if (key_to_blob(id->key, &blob, &bloblen) == 0) { if ((r = sshkey_to_blob(id->key, &blob, &bloblen)) != 0) {
/* we cannot handle this key */ /* we cannot handle this key */
debug3("%s: cannot handle key", __func__); debug3("%s: cannot handle key", __func__);
goto out; goto out;
} }
/* register callback for USERAUTH_PK_OK message */ /* register callback for USERAUTH_PK_OK message */
dispatch_set(SSH2_MSG_USERAUTH_PK_OK, &input_userauth_pk_ok); ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_PK_OK, &input_userauth_pk_ok);
packet_start(SSH2_MSG_USERAUTH_REQUEST); if ((r = sshpkt_start(ssh, SSH2_MSG_USERAUTH_REQUEST)) != 0 ||
packet_put_cstring(authctxt->server_user); (r = sshpkt_put_cstring(ssh, authctxt->server_user)) != 0 ||
packet_put_cstring(authctxt->service); (r = sshpkt_put_cstring(ssh, authctxt->service)) != 0 ||
packet_put_cstring(authctxt->method->name); (r = sshpkt_put_cstring(ssh, authctxt->method->name)) != 0 ||
packet_put_char(have_sig); (r = sshpkt_put_u8(ssh, have_sig)) != 0 ||
packet_put_cstring(alg); (r = sshpkt_put_cstring(ssh, alg)) != 0 ||
packet_put_string(blob, bloblen); (r = sshpkt_put_string(ssh, blob, bloblen)) != 0 ||
packet_send(); (r = sshpkt_send(ssh)) != 0)
/* success */ fatal("%s: %s", __func__, ssh_err(r));
sent = 1; sent = 1;
out:
out:
free(alg); free(alg);
free(blob); free(blob);
return sent; return sent;
@ -1347,10 +1402,8 @@ load_identity_file(Identity *id)
!(id->key && id->isprivate)) !(id->key && id->isprivate))
maybe_add_key_to_agent(id->filename, private, comment, maybe_add_key_to_agent(id->filename, private, comment,
passphrase); passphrase);
if (i > 0) { if (i > 0)
explicit_bzero(passphrase, strlen(passphrase)); freezero(passphrase, strlen(passphrase));
free(passphrase);
}
free(comment); free(comment);
if (private != NULL || quit) if (private != NULL || quit)
break; break;
@ -1427,7 +1480,7 @@ pubkey_prepare(Authctxt *authctxt)
/* list of certificates specified by user */ /* list of certificates specified by user */
for (i = 0; i < options.num_certificate_files; i++) { for (i = 0; i < options.num_certificate_files; i++) {
key = options.certificates[i]; key = options.certificates[i];
if (!key_is_cert(key) || key->cert == NULL || if (!sshkey_is_cert(key) || key->cert == NULL ||
key->cert->type != SSH2_CERT_TYPE_USER) key->cert->type != SSH2_CERT_TYPE_USER)
continue; continue;
id = xcalloc(1, sizeof(*id)); id = xcalloc(1, sizeof(*id));
@ -1501,8 +1554,7 @@ pubkey_prepare(Authctxt *authctxt)
/* If IdentitiesOnly set and key not found then don't use it */ /* If IdentitiesOnly set and key not found then don't use it */
if (!found && options.identities_only) { if (!found && options.identities_only) {
TAILQ_REMOVE(&files, id, next); TAILQ_REMOVE(&files, id, next);
explicit_bzero(id, sizeof(*id)); freezero(id, sizeof(*id));
free(id);
} }
} }
/* append remaining keys from the config file */ /* append remaining keys from the config file */
@ -1609,7 +1661,7 @@ userauth_pubkey(Authctxt *authctxt)
sent = sign_and_send_pubkey(ssh, sent = sign_and_send_pubkey(ssh,
authctxt, id); authctxt, id);
} }
key_free(id->key); sshkey_free(id->key);
id->key = NULL; id->key = NULL;
id->isprivate = 0; id->isprivate = 0;
} }
@ -1626,28 +1678,31 @@ userauth_pubkey(Authctxt *authctxt)
int int
userauth_kbdint(Authctxt *authctxt) userauth_kbdint(Authctxt *authctxt)
{ {
struct ssh *ssh = active_state; /* XXX */
static int attempt = 0; static int attempt = 0;
int r;
if (attempt++ >= options.number_of_password_prompts) if (attempt++ >= options.number_of_password_prompts)
return 0; return 0;
/* disable if no SSH2_MSG_USERAUTH_INFO_REQUEST has been seen */ /* disable if no SSH2_MSG_USERAUTH_INFO_REQUEST has been seen */
if (attempt > 1 && !authctxt->info_req_seen) { if (attempt > 1 && !authctxt->info_req_seen) {
debug3("userauth_kbdint: disable: no info_req_seen"); debug3("userauth_kbdint: disable: no info_req_seen");
dispatch_set(SSH2_MSG_USERAUTH_INFO_REQUEST, NULL); ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_INFO_REQUEST, NULL);
return 0; return 0;
} }
debug2("userauth_kbdint"); debug2("userauth_kbdint");
packet_start(SSH2_MSG_USERAUTH_REQUEST); if ((r = sshpkt_start(ssh, SSH2_MSG_USERAUTH_REQUEST)) != 0 ||
packet_put_cstring(authctxt->server_user); (r = sshpkt_put_cstring(ssh, authctxt->server_user)) != 0 ||
packet_put_cstring(authctxt->service); (r = sshpkt_put_cstring(ssh, authctxt->service)) != 0 ||
packet_put_cstring(authctxt->method->name); (r = sshpkt_put_cstring(ssh, authctxt->method->name)) != 0 ||
packet_put_cstring(""); /* lang */ (r = sshpkt_put_cstring(ssh, "")) != 0 || /* lang */
packet_put_cstring(options.kbd_interactive_devices ? (r = sshpkt_put_cstring(ssh, options.kbd_interactive_devices ?
options.kbd_interactive_devices : ""); options.kbd_interactive_devices : "")) != 0 ||
packet_send(); (r = sshpkt_send(ssh)) != 0)
fatal("%s: %s", __func__, ssh_err(r));
dispatch_set(SSH2_MSG_USERAUTH_INFO_REQUEST, &input_userauth_info_req); ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_INFO_REQUEST, &input_userauth_info_req);
return 1; return 1;
} }
@ -1658,9 +1713,11 @@ int
input_userauth_info_req(int type, u_int32_t seq, struct ssh *ssh) input_userauth_info_req(int type, u_int32_t seq, struct ssh *ssh)
{ {
Authctxt *authctxt = ssh->authctxt; Authctxt *authctxt = ssh->authctxt;
char *name, *inst, *lang, *prompt, *response; char *name = NULL, *inst = NULL, *lang = NULL, *prompt = NULL;
char *response = NULL;
u_char echo = 0;
u_int num_prompts, i; u_int num_prompts, i;
int echo = 0; int r;
debug2("input_userauth_info_req"); debug2("input_userauth_info_req");
@ -1669,44 +1726,52 @@ input_userauth_info_req(int type, u_int32_t seq, struct ssh *ssh)
authctxt->info_req_seen = 1; authctxt->info_req_seen = 1;
name = packet_get_string(NULL); if ((r = sshpkt_get_cstring(ssh, &name, NULL)) != 0 ||
inst = packet_get_string(NULL); (r = sshpkt_get_cstring(ssh, &inst, NULL)) != 0 ||
lang = packet_get_string(NULL); (r = sshpkt_get_cstring(ssh, &lang, NULL)) != 0)
goto out;
if (strlen(name) > 0) if (strlen(name) > 0)
logit("%s", name); logit("%s", name);
if (strlen(inst) > 0) if (strlen(inst) > 0)
logit("%s", inst); logit("%s", inst);
free(name);
free(inst);
free(lang);
num_prompts = packet_get_int(); if ((r = sshpkt_get_u32(ssh, &num_prompts)) != 0)
goto out;
/* /*
* Begin to build info response packet based on prompts requested. * Begin to build info response packet based on prompts requested.
* We commit to providing the correct number of responses, so if * We commit to providing the correct number of responses, so if
* further on we run into a problem that prevents this, we have to * further on we run into a problem that prevents this, we have to
* be sure and clean this up and send a correct error response. * be sure and clean this up and send a correct error response.
*/ */
packet_start(SSH2_MSG_USERAUTH_INFO_RESPONSE); if ((r = sshpkt_start(ssh, SSH2_MSG_USERAUTH_INFO_RESPONSE)) != 0 ||
packet_put_int(num_prompts); (r = sshpkt_put_u32(ssh, num_prompts)) != 0)
goto out;
debug2("input_userauth_info_req: num_prompts %d", num_prompts); debug2("input_userauth_info_req: num_prompts %d", num_prompts);
for (i = 0; i < num_prompts; i++) { for (i = 0; i < num_prompts; i++) {
prompt = packet_get_string(NULL); if ((r = sshpkt_get_cstring(ssh, &prompt, NULL)) != 0 ||
echo = packet_get_char(); (r = sshpkt_get_u8(ssh, &echo)) != 0)
goto out;
response = read_passphrase(prompt, echo ? RP_ECHO : 0); response = read_passphrase(prompt, echo ? RP_ECHO : 0);
if ((r = sshpkt_put_cstring(ssh, response)) != 0)
packet_put_cstring(response); goto out;
explicit_bzero(response, strlen(response)); freezero(response, strlen(response));
free(response);
free(prompt); free(prompt);
response = prompt = NULL;
} }
packet_check_eom(); /* done with parsing incoming message. */ /* done with parsing incoming message. */
if ((r = sshpkt_get_end(ssh)) != 0 ||
packet_add_padding(64); (r = sshpkt_add_padding(ssh, 64)) != 0)
packet_send(); goto out;
return 0; r = sshpkt_send(ssh);
out:
if (response)
freezero(response, strlen(response));
free(prompt);
free(name);
free(inst);
free(lang);
return r;
} }
static int static int
@ -1952,10 +2017,8 @@ userauth_hostbased(Authctxt *authctxt)
success = 1; success = 1;
out: out:
if (sig != NULL) { if (sig != NULL)
explicit_bzero(sig, siglen); freezero(sig, siglen);
free(sig);
}
free(keyblob); free(keyblob);
free(lname); free(lname);
free(fp); free(fp);
@ -2052,20 +2115,22 @@ static char *
authmethods_get(void) authmethods_get(void)
{ {
Authmethod *method = NULL; Authmethod *method = NULL;
Buffer b; struct sshbuf *b;
char *list; char *list;
int r;
buffer_init(&b); if ((b = sshbuf_new()) == NULL)
fatal("%s: sshbuf_new failed", __func__);
for (method = authmethods; method->name != NULL; method++) { for (method = authmethods; method->name != NULL; method++) {
if (authmethod_is_enabled(method)) { if (authmethod_is_enabled(method)) {
if (buffer_len(&b) > 0) if ((r = sshbuf_putf(b, "%s%s",
buffer_append(&b, ",", 1); sshbuf_len(b) ? "," : "", method->name)) != 0)
buffer_append(&b, method->name, strlen(method->name)); fatal("%s: buffer error: %s",
__func__, ssh_err(r));
} }
} }
if ((list = sshbuf_dup_string(&b)) == NULL) if ((list = sshbuf_dup_string(b)) == NULL)
fatal("%s: sshbuf_dup_string failed", __func__); fatal("%s: sshbuf_dup_string failed", __func__);
buffer_free(&b); sshbuf_free(b);
return list; return list;
} }