2015-04-14 16:01:29 +00:00
|
|
|
/*
|
2016-05-17 18:18:30 +00:00
|
|
|
* Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved.
|
2015-04-14 16:01:29 +00:00
|
|
|
*
|
2016-05-17 18:18:30 +00:00
|
|
|
* Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
2015-04-14 16:01:29 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HEADER_PACKET_LOCL_H
|
|
|
|
# define HEADER_PACKET_LOCL_H
|
|
|
|
|
|
|
|
# include <string.h>
|
|
|
|
# include <openssl/bn.h>
|
|
|
|
# include <openssl/buffer.h>
|
2015-10-06 15:20:32 +00:00
|
|
|
# include <openssl/crypto.h>
|
2015-12-22 16:07:24 +00:00
|
|
|
# include <openssl/e_os2.h>
|
2015-04-14 16:01:29 +00:00
|
|
|
|
2016-01-02 18:19:00 +00:00
|
|
|
# include "internal/numbers.h"
|
|
|
|
|
2015-04-14 16:01:29 +00:00
|
|
|
# ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
# endif
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
/* Pointer to where we are currently reading from */
|
2016-02-01 14:26:18 +00:00
|
|
|
const unsigned char *curr;
|
2015-09-17 19:28:07 +00:00
|
|
|
/* Number of bytes remaining */
|
|
|
|
size_t remaining;
|
2015-04-14 16:01:29 +00:00
|
|
|
} PACKET;
|
|
|
|
|
2015-09-17 19:28:07 +00:00
|
|
|
/* Internal unchecked shorthand; don't use outside this file. */
|
2015-12-22 16:07:24 +00:00
|
|
|
static ossl_inline void packet_forward(PACKET *pkt, size_t len)
|
2015-09-17 19:28:07 +00:00
|
|
|
{
|
|
|
|
pkt->curr += len;
|
|
|
|
pkt->remaining -= len;
|
|
|
|
}
|
|
|
|
|
2015-04-14 16:01:29 +00:00
|
|
|
/*
|
2015-08-03 16:20:47 +00:00
|
|
|
* Returns the number of bytes remaining to be read in the PACKET
|
2015-04-14 16:01:29 +00:00
|
|
|
*/
|
2015-12-22 16:07:24 +00:00
|
|
|
static ossl_inline size_t PACKET_remaining(const PACKET *pkt)
|
2015-04-14 16:01:29 +00:00
|
|
|
{
|
2015-09-17 19:28:07 +00:00
|
|
|
return pkt->remaining;
|
2015-04-14 16:01:29 +00:00
|
|
|
}
|
|
|
|
|
2015-09-22 13:20:26 +00:00
|
|
|
/*
|
|
|
|
* Returns a pointer to the first byte after the packet data.
|
|
|
|
* Useful for integrating with non-PACKET parsing code.
|
|
|
|
* Specifically, we use PACKET_end() to verify that a d2i_... call
|
|
|
|
* has consumed the entire packet contents.
|
|
|
|
*/
|
|
|
|
static ossl_inline const unsigned char *PACKET_end(const PACKET *pkt)
|
|
|
|
{
|
|
|
|
return pkt->curr + pkt->remaining;
|
|
|
|
}
|
2016-08-05 17:03:17 +00:00
|
|
|
|
2015-08-18 10:29:36 +00:00
|
|
|
/*
|
|
|
|
* Returns a pointer to the PACKET's current position.
|
|
|
|
* For use in non-PACKETized APIs.
|
|
|
|
*/
|
2016-02-01 14:26:18 +00:00
|
|
|
static ossl_inline const unsigned char *PACKET_data(const PACKET *pkt)
|
2015-08-18 10:29:36 +00:00
|
|
|
{
|
|
|
|
return pkt->curr;
|
|
|
|
}
|
|
|
|
|
2015-04-14 16:01:29 +00:00
|
|
|
/*
|
|
|
|
* Initialise a PACKET with |len| bytes held in |buf|. This does not make a
|
|
|
|
* copy of the data so |buf| must be present for the whole time that the PACKET
|
|
|
|
* is being used.
|
|
|
|
*/
|
2016-02-01 14:26:18 +00:00
|
|
|
__owur static ossl_inline int PACKET_buf_init(PACKET *pkt,
|
|
|
|
const unsigned char *buf,
|
2015-12-22 16:07:24 +00:00
|
|
|
size_t len)
|
2015-04-14 16:01:29 +00:00
|
|
|
{
|
2015-09-17 19:28:07 +00:00
|
|
|
/* Sanity check for negative values. */
|
2015-10-21 09:00:24 +00:00
|
|
|
if (len > (size_t)(SIZE_MAX / 2))
|
2015-04-14 16:01:29 +00:00
|
|
|
return 0;
|
|
|
|
|
2015-09-17 19:28:07 +00:00
|
|
|
pkt->curr = buf;
|
|
|
|
pkt->remaining = len;
|
2015-04-14 16:01:29 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-09-30 13:33:12 +00:00
|
|
|
/* Initialize a PACKET to hold zero bytes. */
|
2015-12-22 16:07:24 +00:00
|
|
|
static ossl_inline void PACKET_null_init(PACKET *pkt)
|
2015-09-30 13:33:12 +00:00
|
|
|
{
|
|
|
|
pkt->curr = NULL;
|
|
|
|
pkt->remaining = 0;
|
|
|
|
}
|
|
|
|
|
2015-10-06 15:20:32 +00:00
|
|
|
/*
|
|
|
|
* Returns 1 if the packet has length |num| and its contents equal the |num|
|
|
|
|
* bytes read from |ptr|. Returns 0 otherwise (lengths or contents not equal).
|
|
|
|
* If lengths are equal, performs the comparison in constant time.
|
|
|
|
*/
|
2015-12-22 16:07:24 +00:00
|
|
|
__owur static ossl_inline int PACKET_equal(const PACKET *pkt, const void *ptr,
|
|
|
|
size_t num)
|
|
|
|
{
|
2015-10-06 15:20:32 +00:00
|
|
|
if (PACKET_remaining(pkt) != num)
|
|
|
|
return 0;
|
|
|
|
return CRYPTO_memcmp(pkt->curr, ptr, num) == 0;
|
|
|
|
}
|
|
|
|
|
2015-04-14 16:01:29 +00:00
|
|
|
/*
|
|
|
|
* Peek ahead and initialize |subpkt| with the next |len| bytes read from |pkt|.
|
|
|
|
* Data is not copied: the |subpkt| packet will share its underlying buffer with
|
|
|
|
* the original |pkt|, so data wrapped by |pkt| must outlive the |subpkt|.
|
|
|
|
*/
|
2015-12-22 16:07:24 +00:00
|
|
|
__owur static ossl_inline int PACKET_peek_sub_packet(const PACKET *pkt,
|
2016-08-05 17:03:17 +00:00
|
|
|
PACKET *subpkt, size_t len)
|
2015-04-14 16:01:29 +00:00
|
|
|
{
|
|
|
|
if (PACKET_remaining(pkt) < len)
|
|
|
|
return 0;
|
|
|
|
|
2015-10-15 10:53:35 +00:00
|
|
|
return PACKET_buf_init(subpkt, pkt->curr, len);
|
2015-04-14 16:01:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize |subpkt| with the next |len| bytes read from |pkt|. Data is not
|
|
|
|
* copied: the |subpkt| packet will share its underlying buffer with the
|
|
|
|
* original |pkt|, so data wrapped by |pkt| must outlive the |subpkt|.
|
|
|
|
*/
|
2015-12-22 16:07:24 +00:00
|
|
|
__owur static ossl_inline int PACKET_get_sub_packet(PACKET *pkt,
|
2016-08-05 17:03:17 +00:00
|
|
|
PACKET *subpkt, size_t len)
|
2015-04-14 16:01:29 +00:00
|
|
|
{
|
|
|
|
if (!PACKET_peek_sub_packet(pkt, subpkt, len))
|
|
|
|
return 0;
|
|
|
|
|
2015-09-17 19:28:07 +00:00
|
|
|
packet_forward(pkt, len);
|
2015-04-14 16:01:29 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-12-22 16:07:24 +00:00
|
|
|
/*
|
|
|
|
* Peek ahead at 2 bytes in network order from |pkt| and store the value in
|
2015-04-14 16:01:29 +00:00
|
|
|
* |*data|
|
|
|
|
*/
|
2015-12-22 16:07:24 +00:00
|
|
|
__owur static ossl_inline int PACKET_peek_net_2(const PACKET *pkt,
|
|
|
|
unsigned int *data)
|
2015-04-14 16:01:29 +00:00
|
|
|
{
|
|
|
|
if (PACKET_remaining(pkt) < 2)
|
|
|
|
return 0;
|
|
|
|
|
2015-12-22 16:07:24 +00:00
|
|
|
*data = ((unsigned int)(*pkt->curr)) << 8;
|
2015-04-14 16:01:29 +00:00
|
|
|
*data |= *(pkt->curr + 1);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Equivalent of n2s */
|
|
|
|
/* Get 2 bytes in network order from |pkt| and store the value in |*data| */
|
2016-08-05 17:03:17 +00:00
|
|
|
__owur static ossl_inline int PACKET_get_net_2(PACKET *pkt, unsigned int *data)
|
2015-04-14 16:01:29 +00:00
|
|
|
{
|
|
|
|
if (!PACKET_peek_net_2(pkt, data))
|
|
|
|
return 0;
|
|
|
|
|
2015-09-17 19:28:07 +00:00
|
|
|
packet_forward(pkt, 2);
|
2015-04-14 16:01:29 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-12-22 16:07:24 +00:00
|
|
|
/*
|
|
|
|
* Peek ahead at 3 bytes in network order from |pkt| and store the value in
|
2015-04-14 16:01:29 +00:00
|
|
|
* |*data|
|
|
|
|
*/
|
2015-12-22 16:07:24 +00:00
|
|
|
__owur static ossl_inline int PACKET_peek_net_3(const PACKET *pkt,
|
|
|
|
unsigned long *data)
|
2015-04-14 16:01:29 +00:00
|
|
|
{
|
|
|
|
if (PACKET_remaining(pkt) < 3)
|
|
|
|
return 0;
|
|
|
|
|
2015-12-22 16:07:24 +00:00
|
|
|
*data = ((unsigned long)(*pkt->curr)) << 16;
|
|
|
|
*data |= ((unsigned long)(*(pkt->curr + 1))) << 8;
|
2015-08-04 12:03:20 +00:00
|
|
|
*data |= *(pkt->curr + 2);
|
2015-04-14 16:01:29 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Equivalent of n2l3 */
|
|
|
|
/* Get 3 bytes in network order from |pkt| and store the value in |*data| */
|
2016-08-05 17:03:17 +00:00
|
|
|
__owur static ossl_inline int PACKET_get_net_3(PACKET *pkt, unsigned long *data)
|
2015-04-14 16:01:29 +00:00
|
|
|
{
|
|
|
|
if (!PACKET_peek_net_3(pkt, data))
|
|
|
|
return 0;
|
|
|
|
|
2015-09-17 19:28:07 +00:00
|
|
|
packet_forward(pkt, 3);
|
2015-04-14 16:01:29 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-12-22 16:07:24 +00:00
|
|
|
/*
|
|
|
|
* Peek ahead at 4 bytes in network order from |pkt| and store the value in
|
2015-04-14 16:01:29 +00:00
|
|
|
* |*data|
|
|
|
|
*/
|
2015-12-22 16:07:24 +00:00
|
|
|
__owur static ossl_inline int PACKET_peek_net_4(const PACKET *pkt,
|
|
|
|
unsigned long *data)
|
2015-04-14 16:01:29 +00:00
|
|
|
{
|
|
|
|
if (PACKET_remaining(pkt) < 4)
|
|
|
|
return 0;
|
|
|
|
|
2015-12-22 16:07:24 +00:00
|
|
|
*data = ((unsigned long)(*pkt->curr)) << 24;
|
2015-08-04 12:03:20 +00:00
|
|
|
*data |= ((unsigned long)(*(pkt->curr + 1))) << 16;
|
2015-12-22 16:07:24 +00:00
|
|
|
*data |= ((unsigned long)(*(pkt->curr + 2))) << 8;
|
|
|
|
*data |= *(pkt->curr + 3);
|
2015-04-14 16:01:29 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Equivalent of n2l */
|
|
|
|
/* Get 4 bytes in network order from |pkt| and store the value in |*data| */
|
2016-08-05 17:03:17 +00:00
|
|
|
__owur static ossl_inline int PACKET_get_net_4(PACKET *pkt, unsigned long *data)
|
2015-04-14 16:01:29 +00:00
|
|
|
{
|
|
|
|
if (!PACKET_peek_net_4(pkt, data))
|
|
|
|
return 0;
|
|
|
|
|
2015-09-17 19:28:07 +00:00
|
|
|
packet_forward(pkt, 4);
|
2015-04-14 16:01:29 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Peek ahead at 1 byte from |pkt| and store the value in |*data| */
|
2015-12-22 16:07:24 +00:00
|
|
|
__owur static ossl_inline int PACKET_peek_1(const PACKET *pkt,
|
|
|
|
unsigned int *data)
|
2015-04-14 16:01:29 +00:00
|
|
|
{
|
|
|
|
if (!PACKET_remaining(pkt))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
*data = *pkt->curr;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get 1 byte from |pkt| and store the value in |*data| */
|
2015-12-22 16:07:24 +00:00
|
|
|
__owur static ossl_inline int PACKET_get_1(PACKET *pkt, unsigned int *data)
|
2015-04-14 16:01:29 +00:00
|
|
|
{
|
|
|
|
if (!PACKET_peek_1(pkt, data))
|
|
|
|
return 0;
|
|
|
|
|
2015-09-17 19:28:07 +00:00
|
|
|
packet_forward(pkt, 1);
|
2015-04-14 16:01:29 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Peek ahead at 4 bytes in reverse network order from |pkt| and store the value
|
|
|
|
* in |*data|
|
|
|
|
*/
|
2015-12-22 16:07:24 +00:00
|
|
|
__owur static ossl_inline int PACKET_peek_4(const PACKET *pkt,
|
|
|
|
unsigned long *data)
|
2015-04-14 16:01:29 +00:00
|
|
|
{
|
|
|
|
if (PACKET_remaining(pkt) < 4)
|
|
|
|
return 0;
|
|
|
|
|
2015-12-22 16:07:24 +00:00
|
|
|
*data = *pkt->curr;
|
|
|
|
*data |= ((unsigned long)(*(pkt->curr + 1))) << 8;
|
2015-08-04 12:03:20 +00:00
|
|
|
*data |= ((unsigned long)(*(pkt->curr + 2))) << 16;
|
|
|
|
*data |= ((unsigned long)(*(pkt->curr + 3))) << 24;
|
2015-04-14 16:01:29 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Equivalent of c2l */
|
|
|
|
/*
|
|
|
|
* Get 4 bytes in reverse network order from |pkt| and store the value in
|
|
|
|
* |*data|
|
|
|
|
*/
|
2015-12-22 16:07:24 +00:00
|
|
|
__owur static ossl_inline int PACKET_get_4(PACKET *pkt, unsigned long *data)
|
2015-04-14 16:01:29 +00:00
|
|
|
{
|
|
|
|
if (!PACKET_peek_4(pkt, data))
|
|
|
|
return 0;
|
|
|
|
|
2015-09-17 19:28:07 +00:00
|
|
|
packet_forward(pkt, 4);
|
2015-04-14 16:01:29 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Peek ahead at |len| bytes from the |pkt| and store a pointer to them in
|
|
|
|
* |*data|. This just points at the underlying buffer that |pkt| is using. The
|
|
|
|
* caller should not free this data directly (it will be freed when the
|
|
|
|
* underlying buffer gets freed
|
|
|
|
*/
|
2015-12-22 16:07:24 +00:00
|
|
|
__owur static ossl_inline int PACKET_peek_bytes(const PACKET *pkt,
|
2016-02-01 14:26:18 +00:00
|
|
|
const unsigned char **data,
|
2015-12-22 16:07:24 +00:00
|
|
|
size_t len)
|
2015-04-14 16:01:29 +00:00
|
|
|
{
|
|
|
|
if (PACKET_remaining(pkt) < len)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
*data = pkt->curr;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Read |len| bytes from the |pkt| and store a pointer to them in |*data|. This
|
|
|
|
* just points at the underlying buffer that |pkt| is using. The caller should
|
|
|
|
* not free this data directly (it will be freed when the underlying buffer gets
|
|
|
|
* freed
|
|
|
|
*/
|
2015-12-22 16:07:24 +00:00
|
|
|
__owur static ossl_inline int PACKET_get_bytes(PACKET *pkt,
|
2016-02-01 14:26:18 +00:00
|
|
|
const unsigned char **data,
|
2015-12-22 16:07:24 +00:00
|
|
|
size_t len)
|
2015-04-14 16:01:29 +00:00
|
|
|
{
|
|
|
|
if (!PACKET_peek_bytes(pkt, data, len))
|
|
|
|
return 0;
|
|
|
|
|
2015-09-17 19:28:07 +00:00
|
|
|
packet_forward(pkt, len);
|
2015-04-14 16:01:29 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Peek ahead at |len| bytes from |pkt| and copy them to |data| */
|
2015-12-22 16:07:24 +00:00
|
|
|
__owur static ossl_inline int PACKET_peek_copy_bytes(const PACKET *pkt,
|
|
|
|
unsigned char *data,
|
|
|
|
size_t len)
|
2015-04-14 16:01:29 +00:00
|
|
|
{
|
|
|
|
if (PACKET_remaining(pkt) < len)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
memcpy(data, pkt->curr, len);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-09-01 16:19:14 +00:00
|
|
|
/*
|
|
|
|
* Read |len| bytes from |pkt| and copy them to |data|.
|
|
|
|
* The caller is responsible for ensuring that |data| can hold |len| bytes.
|
|
|
|
*/
|
2015-12-22 16:07:24 +00:00
|
|
|
__owur static ossl_inline int PACKET_copy_bytes(PACKET *pkt,
|
2016-08-05 17:03:17 +00:00
|
|
|
unsigned char *data, size_t len)
|
2015-04-14 16:01:29 +00:00
|
|
|
{
|
|
|
|
if (!PACKET_peek_copy_bytes(pkt, data, len))
|
|
|
|
return 0;
|
|
|
|
|
2015-09-17 19:28:07 +00:00
|
|
|
packet_forward(pkt, len);
|
2015-04-14 16:01:29 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-10-01 11:54:11 +00:00
|
|
|
/*
|
|
|
|
* Copy packet data to |dest|, and set |len| to the number of copied bytes.
|
|
|
|
* If the packet has more than |dest_len| bytes, nothing is copied.
|
|
|
|
* Returns 1 if the packet data fits in |dest_len| bytes, 0 otherwise.
|
|
|
|
* Does not forward PACKET position (because it is typically the last thing
|
|
|
|
* done with a given PACKET).
|
|
|
|
*/
|
2015-12-22 16:07:24 +00:00
|
|
|
__owur static ossl_inline int PACKET_copy_all(const PACKET *pkt,
|
|
|
|
unsigned char *dest,
|
|
|
|
size_t dest_len, size_t *len)
|
|
|
|
{
|
2015-10-01 11:54:11 +00:00
|
|
|
if (PACKET_remaining(pkt) > dest_len) {
|
|
|
|
*len = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
*len = pkt->remaining;
|
|
|
|
memcpy(dest, pkt->curr, pkt->remaining);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-09-01 16:19:14 +00:00
|
|
|
/*
|
|
|
|
* Copy |pkt| bytes to a newly allocated buffer and store a pointer to the
|
|
|
|
* result in |*data|, and the length in |len|.
|
|
|
|
* If |*data| is not NULL, the old data is OPENSSL_free'd.
|
|
|
|
* If the packet is empty, or malloc fails, |*data| will be set to NULL.
|
|
|
|
* Returns 1 if the malloc succeeds and 0 otherwise.
|
|
|
|
* Does not forward PACKET position (because it is typically the last thing
|
|
|
|
* done with a given PACKET).
|
|
|
|
*/
|
2015-12-22 16:07:24 +00:00
|
|
|
__owur static ossl_inline int PACKET_memdup(const PACKET *pkt,
|
|
|
|
unsigned char **data, size_t *len)
|
2015-09-01 16:19:14 +00:00
|
|
|
{
|
|
|
|
size_t length;
|
|
|
|
|
|
|
|
OPENSSL_free(*data);
|
|
|
|
*data = NULL;
|
|
|
|
*len = 0;
|
|
|
|
|
|
|
|
length = PACKET_remaining(pkt);
|
|
|
|
|
|
|
|
if (length == 0)
|
|
|
|
return 1;
|
|
|
|
|
Rename some BUF_xxx to OPENSSL_xxx
Rename BUF_{strdup,strlcat,strlcpy,memdup,strndup,strnlen}
to OPENSSL_{strdup,strlcat,strlcpy,memdup,strndup,strnlen}
Add #define's for the old names.
Add CRYPTO_{memdup,strndup}, called by OPENSSL_{memdup,strndup} macros.
Reviewed-by: Tim Hudson <tjh@openssl.org>
2015-12-16 21:12:24 +00:00
|
|
|
*data = OPENSSL_memdup(pkt->curr, length);
|
2015-09-01 16:19:14 +00:00
|
|
|
if (*data == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
*len = length;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Read a C string from |pkt| and copy to a newly allocated, NUL-terminated
|
|
|
|
* buffer. Store a pointer to the result in |*data|.
|
|
|
|
* If |*data| is not NULL, the old data is OPENSSL_free'd.
|
|
|
|
* If the data in |pkt| does not contain a NUL-byte, the entire data is
|
|
|
|
* copied and NUL-terminated.
|
|
|
|
* Returns 1 if the malloc succeeds and 0 otherwise.
|
|
|
|
* Does not forward PACKET position (because it is typically the last thing done
|
|
|
|
* with a given PACKET).
|
|
|
|
*/
|
2015-12-22 16:07:24 +00:00
|
|
|
__owur static ossl_inline int PACKET_strndup(const PACKET *pkt, char **data)
|
2015-09-01 16:19:14 +00:00
|
|
|
{
|
|
|
|
OPENSSL_free(*data);
|
2015-10-02 12:40:30 +00:00
|
|
|
|
|
|
|
/* This will succeed on an empty packet, unless pkt->curr == NULL. */
|
2015-12-22 16:07:24 +00:00
|
|
|
*data = OPENSSL_strndup((const char *)pkt->curr, PACKET_remaining(pkt));
|
2015-09-01 16:19:14 +00:00
|
|
|
return (*data != NULL);
|
|
|
|
}
|
|
|
|
|
2015-09-22 13:20:26 +00:00
|
|
|
/* Returns 1 if |pkt| contains at least one 0-byte, 0 otherwise. */
|
|
|
|
static ossl_inline int PACKET_contains_zero_byte(const PACKET *pkt)
|
|
|
|
{
|
2016-08-05 17:03:17 +00:00
|
|
|
return memchr(pkt->curr, 0, pkt->remaining) != NULL;
|
2015-09-22 13:20:26 +00:00
|
|
|
}
|
|
|
|
|
2015-04-14 16:01:29 +00:00
|
|
|
/* Move the current reading position forward |len| bytes */
|
2015-12-22 16:07:24 +00:00
|
|
|
__owur static ossl_inline int PACKET_forward(PACKET *pkt, size_t len)
|
2015-04-14 16:01:29 +00:00
|
|
|
{
|
|
|
|
if (PACKET_remaining(pkt) < len)
|
|
|
|
return 0;
|
|
|
|
|
2015-09-17 19:28:07 +00:00
|
|
|
packet_forward(pkt, len);
|
2015-04-14 16:01:29 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-08-18 10:29:36 +00:00
|
|
|
/*
|
|
|
|
* Reads a variable-length vector prefixed with a one-byte length, and stores
|
|
|
|
* the contents in |subpkt|. |pkt| can equal |subpkt|.
|
|
|
|
* Data is not copied: the |subpkt| packet will share its underlying buffer with
|
|
|
|
* the original |pkt|, so data wrapped by |pkt| must outlive the |subpkt|.
|
|
|
|
* Upon failure, the original |pkt| and |subpkt| are not modified.
|
|
|
|
*/
|
2015-12-22 16:07:24 +00:00
|
|
|
__owur static ossl_inline int PACKET_get_length_prefixed_1(PACKET *pkt,
|
|
|
|
PACKET *subpkt)
|
2015-08-18 10:29:36 +00:00
|
|
|
{
|
2015-12-22 16:07:24 +00:00
|
|
|
unsigned int length;
|
2016-02-01 14:26:18 +00:00
|
|
|
const unsigned char *data;
|
2015-12-22 16:07:24 +00:00
|
|
|
PACKET tmp = *pkt;
|
|
|
|
if (!PACKET_get_1(&tmp, &length) ||
|
|
|
|
!PACKET_get_bytes(&tmp, &data, (size_t)length)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
*pkt = tmp;
|
|
|
|
subpkt->curr = data;
|
|
|
|
subpkt->remaining = length;
|
|
|
|
|
|
|
|
return 1;
|
2015-08-18 10:29:36 +00:00
|
|
|
}
|
|
|
|
|
2015-09-22 13:20:26 +00:00
|
|
|
/*
|
|
|
|
* Like PACKET_get_length_prefixed_1, but additionally, fails when there are
|
|
|
|
* leftover bytes in |pkt|.
|
|
|
|
*/
|
2016-08-05 17:03:17 +00:00
|
|
|
__owur static ossl_inline int PACKET_as_length_prefixed_1(PACKET *pkt,
|
|
|
|
PACKET *subpkt)
|
2015-09-22 13:20:26 +00:00
|
|
|
{
|
2016-08-05 17:03:17 +00:00
|
|
|
unsigned int length;
|
|
|
|
const unsigned char *data;
|
|
|
|
PACKET tmp = *pkt;
|
|
|
|
if (!PACKET_get_1(&tmp, &length) ||
|
|
|
|
!PACKET_get_bytes(&tmp, &data, (size_t)length) ||
|
|
|
|
PACKET_remaining(&tmp) != 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
2015-09-22 13:20:26 +00:00
|
|
|
|
2016-08-05 17:03:17 +00:00
|
|
|
*pkt = tmp;
|
|
|
|
subpkt->curr = data;
|
|
|
|
subpkt->remaining = length;
|
2015-09-22 13:20:26 +00:00
|
|
|
|
2016-08-05 17:03:17 +00:00
|
|
|
return 1;
|
2015-09-22 13:20:26 +00:00
|
|
|
}
|
|
|
|
|
2015-08-18 10:29:36 +00:00
|
|
|
/*
|
|
|
|
* Reads a variable-length vector prefixed with a two-byte length, and stores
|
|
|
|
* the contents in |subpkt|. |pkt| can equal |subpkt|.
|
|
|
|
* Data is not copied: the |subpkt| packet will share its underlying buffer with
|
|
|
|
* the original |pkt|, so data wrapped by |pkt| must outlive the |subpkt|.
|
|
|
|
* Upon failure, the original |pkt| and |subpkt| are not modified.
|
|
|
|
*/
|
2015-12-22 16:07:24 +00:00
|
|
|
__owur static ossl_inline int PACKET_get_length_prefixed_2(PACKET *pkt,
|
|
|
|
PACKET *subpkt)
|
2015-08-18 10:29:36 +00:00
|
|
|
{
|
2015-12-22 16:07:24 +00:00
|
|
|
unsigned int length;
|
2016-02-01 14:26:18 +00:00
|
|
|
const unsigned char *data;
|
2015-12-22 16:07:24 +00:00
|
|
|
PACKET tmp = *pkt;
|
2015-09-22 13:20:26 +00:00
|
|
|
|
2015-12-22 16:07:24 +00:00
|
|
|
if (!PACKET_get_net_2(&tmp, &length) ||
|
|
|
|
!PACKET_get_bytes(&tmp, &data, (size_t)length)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
*pkt = tmp;
|
|
|
|
subpkt->curr = data;
|
|
|
|
subpkt->remaining = length;
|
|
|
|
|
|
|
|
return 1;
|
2015-08-18 10:29:36 +00:00
|
|
|
}
|
|
|
|
|
2015-09-22 13:20:26 +00:00
|
|
|
/*
|
|
|
|
* Like PACKET_get_length_prefixed_2, but additionally, fails when there are
|
|
|
|
* leftover bytes in |pkt|.
|
|
|
|
*/
|
|
|
|
__owur static ossl_inline int PACKET_as_length_prefixed_2(PACKET *pkt,
|
|
|
|
PACKET *subpkt)
|
|
|
|
{
|
2016-08-05 17:03:17 +00:00
|
|
|
unsigned int length;
|
|
|
|
const unsigned char *data;
|
|
|
|
PACKET tmp = *pkt;
|
2015-09-22 13:20:26 +00:00
|
|
|
|
2016-08-05 17:03:17 +00:00
|
|
|
if (!PACKET_get_net_2(&tmp, &length) ||
|
|
|
|
!PACKET_get_bytes(&tmp, &data, (size_t)length) ||
|
|
|
|
PACKET_remaining(&tmp) != 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
2015-09-22 13:20:26 +00:00
|
|
|
|
2016-08-05 17:03:17 +00:00
|
|
|
*pkt = tmp;
|
|
|
|
subpkt->curr = data;
|
|
|
|
subpkt->remaining = length;
|
2015-09-22 13:20:26 +00:00
|
|
|
|
2016-08-05 17:03:17 +00:00
|
|
|
return 1;
|
2015-09-22 13:20:26 +00:00
|
|
|
}
|
|
|
|
|
2015-08-18 10:29:36 +00:00
|
|
|
/*
|
|
|
|
* Reads a variable-length vector prefixed with a three-byte length, and stores
|
|
|
|
* the contents in |subpkt|. |pkt| can equal |subpkt|.
|
|
|
|
* Data is not copied: the |subpkt| packet will share its underlying buffer with
|
|
|
|
* the original |pkt|, so data wrapped by |pkt| must outlive the |subpkt|.
|
|
|
|
* Upon failure, the original |pkt| and |subpkt| are not modified.
|
|
|
|
*/
|
2015-12-22 16:07:24 +00:00
|
|
|
__owur static ossl_inline int PACKET_get_length_prefixed_3(PACKET *pkt,
|
|
|
|
PACKET *subpkt)
|
2015-08-18 10:29:36 +00:00
|
|
|
{
|
2015-12-22 16:07:24 +00:00
|
|
|
unsigned long length;
|
2016-02-01 14:26:18 +00:00
|
|
|
const unsigned char *data;
|
2015-12-22 16:07:24 +00:00
|
|
|
PACKET tmp = *pkt;
|
|
|
|
if (!PACKET_get_net_3(&tmp, &length) ||
|
|
|
|
!PACKET_get_bytes(&tmp, &data, (size_t)length)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
*pkt = tmp;
|
|
|
|
subpkt->curr = data;
|
|
|
|
subpkt->remaining = length;
|
|
|
|
|
|
|
|
return 1;
|
2015-08-18 10:29:36 +00:00
|
|
|
}
|
2016-08-03 16:06:39 +00:00
|
|
|
|
|
|
|
/* Writeable packets */
|
|
|
|
|
|
|
|
typedef struct packetw_buf {
|
|
|
|
/* The buffer where we store the output data */
|
|
|
|
BUF_MEM *buf;
|
|
|
|
|
|
|
|
/* Pointer to where we are currently writing */
|
|
|
|
unsigned char *curr;
|
|
|
|
|
|
|
|
/* Number of bytes written so far */
|
|
|
|
size_t written;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Maximum number of bytes we will allow to be written to this PACKETW. Zero
|
|
|
|
* if no maximum
|
|
|
|
*/
|
|
|
|
size_t maxsize;
|
|
|
|
} PACKETW_BUF;
|
|
|
|
|
|
|
|
typedef struct packetw_st PACKETW;
|
|
|
|
struct packetw_st {
|
|
|
|
/* The parent PACKETW if we have one or NULL otherwise */
|
|
|
|
PACKETW *parent;
|
|
|
|
|
|
|
|
/* The actual buffer - shared with sub-packets */
|
|
|
|
PACKETW_BUF *wbuf;
|
|
|
|
|
|
|
|
/* Flags for this PACKETW */
|
|
|
|
unsigned int flags;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Pointer to where the length of this PACKETW goes (or NULL if we don't
|
|
|
|
* write the length)
|
|
|
|
*/
|
|
|
|
unsigned char *packet_len;
|
|
|
|
|
|
|
|
/* Number of bytes in the packet_len */
|
|
|
|
size_t lenbytes;
|
|
|
|
|
|
|
|
/* Number of bytes written to the buf prior to this packet starting */
|
|
|
|
size_t pwritten;
|
|
|
|
|
|
|
|
/* True if we have an active sub-packet or false otherwise */
|
|
|
|
int haschild;
|
|
|
|
|
|
|
|
/* True if PACKETW_close() has been called on this PACKETW */
|
|
|
|
int isclosed;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Flags */
|
|
|
|
#define OPENSSL_PACKETW_FLAGS_NONE 0
|
|
|
|
/* Error on PACKETW_close() if no data written to the PACKETW */
|
|
|
|
#define OPENSSL_PACKETW_FLAGS_NON_ZERO_LENGTH 1
|
|
|
|
/*
|
|
|
|
* Abandon all changes on PACKETW_close() if no data written to the PACKETW,
|
|
|
|
* i.e. this does not write out a zero packet length
|
|
|
|
*/
|
|
|
|
#define OPENSSL_PACKETW_FLAGS_ABANDON_ON_ZERO_LENGTH 2
|
|
|
|
|
|
|
|
int PACKETW_init_len(PACKETW *pkt, BUF_MEM *buf, size_t lenbytes);
|
|
|
|
int PACKETW_init(PACKETW *pkt, BUF_MEM *buf);
|
|
|
|
int PACKETW_set_flags(PACKETW *pkt, unsigned int flags);
|
|
|
|
int PACKETW_set_packet_len(PACKETW *pkt, unsigned char *packet_len,
|
|
|
|
size_t lenbytes);
|
|
|
|
int PACKETW_close(PACKETW *pkt);
|
|
|
|
int PACKETW_get_sub_packet_len(PACKETW *pkt, PACKETW *subpkt, size_t lenbytes);
|
|
|
|
int PACKETW_get_sub_packet(PACKETW *pkt, PACKETW *subpkt);
|
|
|
|
int PACKETW_allocate_bytes(PACKETW *pkt, size_t bytes,
|
|
|
|
unsigned char **allocbytes);
|
|
|
|
int PACKETW_put_bytes(PACKETW *pkt, unsigned int val, size_t bytes);
|
|
|
|
int PACKETW_set_max_size(PACKETW *pkt, size_t maxsize);
|
|
|
|
int PACKETW_memcpy(PACKETW *pkt, const void *src, size_t len);
|
|
|
|
int PACKETW_get_total_written(PACKETW *pkt, size_t *written);
|
|
|
|
int PACKETW_get_length(PACKETW *pkt, size_t *len);
|
|
|
|
|
2015-04-14 16:01:29 +00:00
|
|
|
# ifdef __cplusplus
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
|
2015-12-22 16:07:24 +00:00
|
|
|
#endif /* HEADER_PACKET_LOCL_H */
|