2015-01-05 16:09:55 +00:00
|
|
|
/* $OpenBSD: buffer.c,v 1.36 2014/04/30 05:29:56 djm Exp $ */
|
|
|
|
|
2000-02-24 14:29:47 +00:00
|
|
|
/*
|
2015-01-05 16:09:55 +00:00
|
|
|
* Copyright (c) 2012 Damien Miller <djm@mindrot.org>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
2000-05-15 04:37:24 +00:00
|
|
|
*
|
2015-01-05 16:09:55 +00:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
2000-02-24 14:29:47 +00:00
|
|
|
*/
|
|
|
|
|
2015-01-05 16:09:55 +00:00
|
|
|
/* Emulation wrappers for legacy OpenSSH buffer API atop sshbuf */
|
2006-09-30 13:29:51 +00:00
|
|
|
|
2000-02-24 14:29:47 +00:00
|
|
|
#include "includes.h"
|
2006-09-30 13:29:51 +00:00
|
|
|
|
2015-01-05 16:09:55 +00:00
|
|
|
#include <sys/types.h>
|
2000-02-24 14:29:47 +00:00
|
|
|
|
|
|
|
#include "buffer.h"
|
2001-05-04 03:57:05 +00:00
|
|
|
#include "log.h"
|
2015-01-05 16:09:55 +00:00
|
|
|
#include "ssherr.h"
|
2000-02-24 14:29:47 +00:00
|
|
|
|
2000-05-15 04:37:24 +00:00
|
|
|
void
|
2002-03-18 09:55:03 +00:00
|
|
|
buffer_append(Buffer *buffer, const void *data, u_int len)
|
2000-02-24 14:29:47 +00:00
|
|
|
{
|
2015-01-05 16:09:55 +00:00
|
|
|
int ret;
|
2000-02-24 14:29:47 +00:00
|
|
|
|
2015-01-05 16:09:55 +00:00
|
|
|
if ((ret = sshbuf_put(buffer, data, len)) != 0)
|
|
|
|
fatal("%s: %s", __func__, ssh_err(ret));
|
2006-09-30 13:29:51 +00:00
|
|
|
}
|
|
|
|
|
2002-03-18 09:55:03 +00:00
|
|
|
void *
|
|
|
|
buffer_append_space(Buffer *buffer, u_int len)
|
2000-02-24 14:29:47 +00:00
|
|
|
{
|
2015-01-05 16:09:55 +00:00
|
|
|
int ret;
|
|
|
|
u_char *p;
|
2002-03-18 09:55:03 +00:00
|
|
|
|
2015-01-05 16:09:55 +00:00
|
|
|
if ((ret = sshbuf_reserve(buffer, len, &p)) != 0)
|
|
|
|
fatal("%s: %s", __func__, ssh_err(ret));
|
|
|
|
return p;
|
2000-02-24 14:29:47 +00:00
|
|
|
}
|
|
|
|
|
2006-09-30 13:29:51 +00:00
|
|
|
int
|
|
|
|
buffer_check_alloc(Buffer *buffer, u_int len)
|
|
|
|
{
|
2015-01-05 16:09:55 +00:00
|
|
|
int ret = sshbuf_check_reserve(buffer, len);
|
2000-02-24 14:29:47 +00:00
|
|
|
|
2015-01-05 16:09:55 +00:00
|
|
|
if (ret == 0)
|
|
|
|
return 1;
|
|
|
|
if (ret == SSH_ERR_NO_BUFFER_SPACE)
|
|
|
|
return 0;
|
|
|
|
fatal("%s: %s", __func__, ssh_err(ret));
|
2000-02-24 14:29:47 +00:00
|
|
|
}
|
|
|
|
|
2005-06-05 15:40:50 +00:00
|
|
|
int
|
|
|
|
buffer_get_ret(Buffer *buffer, void *buf, u_int len)
|
2000-02-24 14:29:47 +00:00
|
|
|
{
|
2015-01-05 16:09:55 +00:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
if ((ret = sshbuf_get(buffer, buf, len)) != 0) {
|
|
|
|
error("%s: %s", __func__, ssh_err(ret));
|
|
|
|
return -1;
|
2005-06-05 15:40:50 +00:00
|
|
|
}
|
2015-01-05 16:09:55 +00:00
|
|
|
return 0;
|
2005-06-05 15:40:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
buffer_get(Buffer *buffer, void *buf, u_int len)
|
|
|
|
{
|
|
|
|
if (buffer_get_ret(buffer, buf, len) == -1)
|
2015-01-05 16:09:55 +00:00
|
|
|
fatal("%s: buffer error", __func__);
|
2000-02-24 14:29:47 +00:00
|
|
|
}
|
|
|
|
|
2005-06-05 15:40:50 +00:00
|
|
|
int
|
|
|
|
buffer_consume_ret(Buffer *buffer, u_int bytes)
|
|
|
|
{
|
2015-01-05 16:09:55 +00:00
|
|
|
int ret = sshbuf_consume(buffer, bytes);
|
|
|
|
|
|
|
|
if (ret == 0)
|
|
|
|
return 0;
|
|
|
|
if (ret == SSH_ERR_MESSAGE_INCOMPLETE)
|
|
|
|
return -1;
|
|
|
|
fatal("%s: %s", __func__, ssh_err(ret));
|
2005-06-05 15:40:50 +00:00
|
|
|
}
|
|
|
|
|
2000-05-15 04:37:24 +00:00
|
|
|
void
|
2001-05-04 03:57:05 +00:00
|
|
|
buffer_consume(Buffer *buffer, u_int bytes)
|
2000-02-24 14:29:47 +00:00
|
|
|
{
|
2005-06-05 15:40:50 +00:00
|
|
|
if (buffer_consume_ret(buffer, bytes) == -1)
|
2015-01-05 16:09:55 +00:00
|
|
|
fatal("%s: buffer error", __func__);
|
2000-02-24 14:29:47 +00:00
|
|
|
}
|
|
|
|
|
2005-06-05 15:40:50 +00:00
|
|
|
int
|
|
|
|
buffer_consume_end_ret(Buffer *buffer, u_int bytes)
|
|
|
|
{
|
2015-01-05 16:09:55 +00:00
|
|
|
int ret = sshbuf_consume_end(buffer, bytes);
|
|
|
|
|
|
|
|
if (ret == 0)
|
|
|
|
return 0;
|
|
|
|
if (ret == SSH_ERR_MESSAGE_INCOMPLETE)
|
|
|
|
return -1;
|
|
|
|
fatal("%s: %s", __func__, ssh_err(ret));
|
2005-06-05 15:40:50 +00:00
|
|
|
}
|
|
|
|
|
2000-05-15 04:37:24 +00:00
|
|
|
void
|
2001-05-04 03:57:05 +00:00
|
|
|
buffer_consume_end(Buffer *buffer, u_int bytes)
|
2000-02-24 14:29:47 +00:00
|
|
|
{
|
2005-06-05 15:40:50 +00:00
|
|
|
if (buffer_consume_end_ret(buffer, bytes) == -1)
|
2015-01-05 16:09:55 +00:00
|
|
|
fatal("%s: buffer error", __func__);
|
2000-02-24 14:29:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|