2015-04-17 15:10:23 +00:00
|
|
|
/*
|
2016-05-17 18:20:24 +00:00
|
|
|
* Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved.
|
2015-04-17 15:10:23 +00:00
|
|
|
*
|
2016-05-17 18:20:24 +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-17 15:10:23 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "../ssl/packet_locl.h"
|
|
|
|
|
|
|
|
#define BUF_LEN 255
|
|
|
|
|
2015-09-17 16:11:46 +00:00
|
|
|
static int test_PACKET_remaining(unsigned char buf[BUF_LEN])
|
2015-04-17 15:10:23 +00:00
|
|
|
{
|
2015-09-17 16:11:46 +00:00
|
|
|
PACKET pkt;
|
|
|
|
|
|
|
|
if ( !PACKET_buf_init(&pkt, buf, BUF_LEN)
|
|
|
|
|| PACKET_remaining(&pkt) != BUF_LEN
|
|
|
|
|| !PACKET_forward(&pkt, BUF_LEN - 1)
|
|
|
|
|| PACKET_remaining(&pkt) != 1
|
|
|
|
|| !PACKET_forward(&pkt, 1)
|
|
|
|
|| PACKET_remaining(&pkt) != 0) {
|
2015-04-17 15:10:23 +00:00
|
|
|
fprintf(stderr, "test_PACKET_remaining() failed\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-09-22 13:20:26 +00:00
|
|
|
static int test_PACKET_end(unsigned char buf[BUF_LEN])
|
|
|
|
{
|
|
|
|
PACKET pkt;
|
|
|
|
|
|
|
|
if ( !PACKET_buf_init(&pkt, buf, BUF_LEN)
|
|
|
|
|| PACKET_remaining(&pkt) != BUF_LEN
|
|
|
|
|| PACKET_end(&pkt) != buf + BUF_LEN
|
|
|
|
|| !PACKET_forward(&pkt, BUF_LEN - 1)
|
|
|
|
|| PACKET_end(&pkt) != buf + BUF_LEN
|
|
|
|
|| !PACKET_forward(&pkt, 1)
|
|
|
|
|| PACKET_end(&pkt) != buf + BUF_LEN) {
|
|
|
|
fprintf(stderr, "test_PACKET_end() failed\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-09-17 16:11:46 +00:00
|
|
|
static int test_PACKET_get_1(unsigned char buf[BUF_LEN])
|
2015-04-17 15:10:23 +00:00
|
|
|
{
|
|
|
|
unsigned int i;
|
2015-09-17 16:11:46 +00:00
|
|
|
PACKET pkt;
|
2015-04-17 15:10:23 +00:00
|
|
|
|
2015-09-17 16:11:46 +00:00
|
|
|
if ( !PACKET_buf_init(&pkt, buf, BUF_LEN)
|
|
|
|
|| !PACKET_get_1(&pkt, &i)
|
2015-08-04 12:03:20 +00:00
|
|
|
|| i != 0x02
|
2015-09-17 16:11:46 +00:00
|
|
|
|| !PACKET_forward(&pkt, BUF_LEN - 2)
|
|
|
|
|| !PACKET_get_1(&pkt, &i)
|
2015-08-04 12:03:20 +00:00
|
|
|
|| i != 0xfe
|
2015-09-17 16:11:46 +00:00
|
|
|
|| PACKET_get_1(&pkt, &i)) {
|
2015-04-17 15:10:23 +00:00
|
|
|
fprintf(stderr, "test_PACKET_get_1() failed\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-09-17 16:11:46 +00:00
|
|
|
static int test_PACKET_get_4(unsigned char buf[BUF_LEN])
|
2015-04-17 15:10:23 +00:00
|
|
|
{
|
|
|
|
unsigned long i;
|
2015-09-17 16:11:46 +00:00
|
|
|
PACKET pkt;
|
2015-04-17 15:10:23 +00:00
|
|
|
|
2015-09-17 16:11:46 +00:00
|
|
|
if ( !PACKET_buf_init(&pkt, buf, BUF_LEN)
|
|
|
|
|| !PACKET_get_4(&pkt, &i)
|
2015-08-04 12:03:20 +00:00
|
|
|
|| i != 0x08060402UL
|
2015-09-17 16:11:46 +00:00
|
|
|
|| !PACKET_forward(&pkt, BUF_LEN - 8)
|
|
|
|
|| !PACKET_get_4(&pkt, &i)
|
2015-08-04 12:03:20 +00:00
|
|
|
|| i != 0xfefcfaf8UL
|
2015-09-17 16:11:46 +00:00
|
|
|
|| PACKET_get_4(&pkt, &i)) {
|
2015-04-17 15:10:23 +00:00
|
|
|
fprintf(stderr, "test_PACKET_get_4() failed\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-09-17 16:11:46 +00:00
|
|
|
static int test_PACKET_get_net_2(unsigned char buf[BUF_LEN])
|
2015-04-17 15:10:23 +00:00
|
|
|
{
|
|
|
|
unsigned int i;
|
2015-09-17 16:11:46 +00:00
|
|
|
PACKET pkt;
|
2015-04-17 15:10:23 +00:00
|
|
|
|
2015-09-17 16:11:46 +00:00
|
|
|
if ( !PACKET_buf_init(&pkt, buf, BUF_LEN)
|
|
|
|
|| !PACKET_get_net_2(&pkt, &i)
|
2015-08-04 12:03:20 +00:00
|
|
|
|| i != 0x0204
|
2015-09-17 16:11:46 +00:00
|
|
|
|| !PACKET_forward(&pkt, BUF_LEN - 4)
|
|
|
|
|| !PACKET_get_net_2(&pkt, &i)
|
2015-08-04 12:03:20 +00:00
|
|
|
|| i != 0xfcfe
|
2015-09-17 16:11:46 +00:00
|
|
|
|| PACKET_get_net_2(&pkt, &i)) {
|
2015-04-17 15:10:23 +00:00
|
|
|
fprintf(stderr, "test_PACKET_get_net_2() failed\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-09-17 16:11:46 +00:00
|
|
|
static int test_PACKET_get_net_3(unsigned char buf[BUF_LEN])
|
2015-04-17 15:10:23 +00:00
|
|
|
{
|
2015-08-06 21:44:29 +00:00
|
|
|
unsigned long i;
|
2015-09-17 16:11:46 +00:00
|
|
|
PACKET pkt;
|
2015-04-17 15:10:23 +00:00
|
|
|
|
2015-09-17 16:11:46 +00:00
|
|
|
if ( !PACKET_buf_init(&pkt, buf, BUF_LEN)
|
|
|
|
|| !PACKET_get_net_3(&pkt, &i)
|
2015-08-04 12:03:20 +00:00
|
|
|
|| i != 0x020406UL
|
2015-09-17 16:11:46 +00:00
|
|
|
|| !PACKET_forward(&pkt, BUF_LEN - 6)
|
|
|
|
|| !PACKET_get_net_3(&pkt, &i)
|
2015-08-04 12:03:20 +00:00
|
|
|
|| i != 0xfafcfeUL
|
2015-09-17 16:11:46 +00:00
|
|
|
|| PACKET_get_net_3(&pkt, &i)) {
|
2015-04-17 15:10:23 +00:00
|
|
|
fprintf(stderr, "test_PACKET_get_net_3() failed\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-09-17 16:11:46 +00:00
|
|
|
static int test_PACKET_get_net_4(unsigned char buf[BUF_LEN])
|
2015-04-17 15:10:23 +00:00
|
|
|
{
|
|
|
|
unsigned long i;
|
2015-09-17 16:11:46 +00:00
|
|
|
PACKET pkt;
|
2015-04-17 15:10:23 +00:00
|
|
|
|
2015-09-17 16:11:46 +00:00
|
|
|
if ( !PACKET_buf_init(&pkt, buf, BUF_LEN)
|
|
|
|
|| !PACKET_get_net_4(&pkt, &i)
|
2015-08-04 12:03:20 +00:00
|
|
|
|| i != 0x02040608UL
|
2015-09-17 16:11:46 +00:00
|
|
|
|| !PACKET_forward(&pkt, BUF_LEN - 8)
|
|
|
|
|| !PACKET_get_net_4(&pkt, &i)
|
2015-08-04 12:03:20 +00:00
|
|
|
|| i != 0xf8fafcfeUL
|
2015-09-17 16:11:46 +00:00
|
|
|
|| PACKET_get_net_4(&pkt, &i)) {
|
2015-04-17 15:10:23 +00:00
|
|
|
fprintf(stderr, "test_PACKET_get_net_4() failed\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-09-17 16:11:46 +00:00
|
|
|
static int test_PACKET_get_sub_packet(unsigned char buf[BUF_LEN])
|
2015-04-17 15:10:23 +00:00
|
|
|
{
|
2015-09-17 16:11:46 +00:00
|
|
|
PACKET pkt, subpkt;
|
2015-04-17 15:10:23 +00:00
|
|
|
unsigned long i;
|
|
|
|
|
2015-09-17 16:11:46 +00:00
|
|
|
if ( !PACKET_buf_init(&pkt, buf, BUF_LEN)
|
|
|
|
|| !PACKET_get_sub_packet(&pkt, &subpkt, 4)
|
2015-04-17 15:10:23 +00:00
|
|
|
|| !PACKET_get_net_4(&subpkt, &i)
|
2015-08-04 12:03:20 +00:00
|
|
|
|| i != 0x02040608UL
|
2015-04-17 15:10:23 +00:00
|
|
|
|| PACKET_remaining(&subpkt)
|
2015-09-17 16:11:46 +00:00
|
|
|
|| !PACKET_forward(&pkt, BUF_LEN - 8)
|
|
|
|
|| !PACKET_get_sub_packet(&pkt, &subpkt, 4)
|
2015-04-17 15:10:23 +00:00
|
|
|
|| !PACKET_get_net_4(&subpkt, &i)
|
2015-08-04 12:03:20 +00:00
|
|
|
|| i != 0xf8fafcfeUL
|
2015-04-17 15:10:23 +00:00
|
|
|
|| PACKET_remaining(&subpkt)
|
2015-09-17 16:11:46 +00:00
|
|
|
|| PACKET_get_sub_packet(&pkt, &subpkt, 4)) {
|
2015-04-17 15:10:23 +00:00
|
|
|
fprintf(stderr, "test_PACKET_get_sub_packet() failed\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-09-17 16:11:46 +00:00
|
|
|
static int test_PACKET_get_bytes(unsigned char buf[BUF_LEN])
|
2015-04-17 15:10:23 +00:00
|
|
|
{
|
2016-02-01 14:26:18 +00:00
|
|
|
const unsigned char *bytes;
|
2015-09-17 16:11:46 +00:00
|
|
|
PACKET pkt;
|
2015-04-17 15:10:23 +00:00
|
|
|
|
2015-09-17 16:11:46 +00:00
|
|
|
if ( !PACKET_buf_init(&pkt, buf, BUF_LEN)
|
|
|
|
|| !PACKET_get_bytes(&pkt, &bytes, 4)
|
2015-08-04 12:03:20 +00:00
|
|
|
|| bytes[0] != 2 || bytes[1] != 4
|
|
|
|
|| bytes[2] != 6 || bytes[3] != 8
|
2015-09-17 16:11:46 +00:00
|
|
|
|| PACKET_remaining(&pkt) != BUF_LEN -4
|
|
|
|
|| !PACKET_forward(&pkt, BUF_LEN - 8)
|
|
|
|
|| !PACKET_get_bytes(&pkt, &bytes, 4)
|
2015-08-04 12:03:20 +00:00
|
|
|
|| bytes[0] != 0xf8 || bytes[1] != 0xfa
|
|
|
|
|| bytes[2] != 0xfc || bytes[3] != 0xfe
|
2015-09-17 16:11:46 +00:00
|
|
|
|| PACKET_remaining(&pkt)) {
|
2015-04-17 15:10:23 +00:00
|
|
|
fprintf(stderr, "test_PACKET_get_bytes() failed\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-09-17 16:11:46 +00:00
|
|
|
static int test_PACKET_copy_bytes(unsigned char buf[BUF_LEN])
|
2015-04-17 15:10:23 +00:00
|
|
|
{
|
|
|
|
unsigned char bytes[4];
|
2015-09-17 16:11:46 +00:00
|
|
|
PACKET pkt;
|
2015-04-17 15:10:23 +00:00
|
|
|
|
2015-09-17 16:11:46 +00:00
|
|
|
if ( !PACKET_buf_init(&pkt, buf, BUF_LEN)
|
|
|
|
|| !PACKET_copy_bytes(&pkt, bytes, 4)
|
2015-08-04 12:03:20 +00:00
|
|
|
|| bytes[0] != 2 || bytes[1] != 4
|
|
|
|
|| bytes[2] != 6 || bytes[3] != 8
|
2015-09-17 16:11:46 +00:00
|
|
|
|| PACKET_remaining(&pkt) != BUF_LEN - 4
|
|
|
|
|| !PACKET_forward(&pkt, BUF_LEN - 8)
|
|
|
|
|| !PACKET_copy_bytes(&pkt, bytes, 4)
|
2015-08-04 12:03:20 +00:00
|
|
|
|| bytes[0] != 0xf8 || bytes[1] != 0xfa
|
|
|
|
|| bytes[2] != 0xfc || bytes[3] != 0xfe
|
2015-09-17 16:11:46 +00:00
|
|
|
|| PACKET_remaining(&pkt)) {
|
2015-04-17 15:10:23 +00:00
|
|
|
fprintf(stderr, "test_PACKET_copy_bytes() failed\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-10-01 11:54:11 +00:00
|
|
|
static int test_PACKET_copy_all(unsigned char buf[BUF_LEN])
|
|
|
|
{
|
2015-10-06 16:23:42 +00:00
|
|
|
unsigned char tmp[BUF_LEN];
|
2015-10-01 11:54:11 +00:00
|
|
|
PACKET pkt;
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
if ( !PACKET_buf_init(&pkt, buf, BUF_LEN)
|
2015-10-06 16:23:42 +00:00
|
|
|
|| !PACKET_copy_all(&pkt, tmp, BUF_LEN, &len)
|
2015-10-01 11:54:11 +00:00
|
|
|
|| len != BUF_LEN
|
2015-10-06 16:23:42 +00:00
|
|
|
|| memcmp(buf, tmp, BUF_LEN) != 0
|
2015-10-01 11:54:11 +00:00
|
|
|
|| PACKET_remaining(&pkt) != BUF_LEN
|
2015-10-06 16:23:42 +00:00
|
|
|
|| PACKET_copy_all(&pkt, tmp, BUF_LEN - 1, &len)) {
|
2015-10-01 11:54:11 +00:00
|
|
|
fprintf(stderr, "test_PACKET_copy_bytes() failed\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-09-17 16:11:46 +00:00
|
|
|
static int test_PACKET_memdup(unsigned char buf[BUF_LEN])
|
2015-09-01 16:19:14 +00:00
|
|
|
{
|
|
|
|
unsigned char *data = NULL;
|
|
|
|
size_t len;
|
2015-09-17 16:11:46 +00:00
|
|
|
PACKET pkt;
|
|
|
|
|
|
|
|
if ( !PACKET_buf_init(&pkt, buf, BUF_LEN)
|
|
|
|
|| !PACKET_memdup(&pkt, &data, &len)
|
2015-09-01 16:19:14 +00:00
|
|
|
|| len != BUF_LEN
|
2015-09-17 16:11:46 +00:00
|
|
|
|| memcmp(data, PACKET_data(&pkt), len)
|
|
|
|
|| !PACKET_forward(&pkt, 10)
|
|
|
|
|| !PACKET_memdup(&pkt, &data, &len)
|
2015-09-01 16:19:14 +00:00
|
|
|
|| len != BUF_LEN - 10
|
2015-09-17 16:55:19 +00:00
|
|
|
|| memcmp(data, PACKET_data(&pkt), len)) {
|
2015-09-01 16:19:14 +00:00
|
|
|
fprintf(stderr, "test_PACKET_memdup() failed\n");
|
|
|
|
OPENSSL_free(data);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
OPENSSL_free(data);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int test_PACKET_strndup()
|
|
|
|
{
|
|
|
|
char buf[10], buf2[10];
|
2015-09-09 16:28:17 +00:00
|
|
|
char *data = NULL;
|
|
|
|
PACKET pkt;
|
|
|
|
|
2015-09-01 16:19:14 +00:00
|
|
|
memset(buf, 'x', 10);
|
|
|
|
memset(buf2, 'y', 10);
|
|
|
|
buf2[5] = '\0';
|
|
|
|
|
|
|
|
if ( !PACKET_buf_init(&pkt, (unsigned char*)buf, 10)
|
|
|
|
|| !PACKET_strndup(&pkt, &data)
|
|
|
|
|| strlen(data) != 10
|
|
|
|
|| strncmp(data, buf, 10)
|
|
|
|
|| !PACKET_buf_init(&pkt, (unsigned char*)buf2, 10)
|
|
|
|
|| !PACKET_strndup(&pkt, &data)
|
|
|
|
|| strlen(data) != 5
|
|
|
|
|| strcmp(data, buf2)) {
|
|
|
|
fprintf(stderr, "test_PACKET_strndup failed\n");
|
|
|
|
OPENSSL_free(data);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
OPENSSL_free(data);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-09-22 13:20:26 +00:00
|
|
|
static int test_PACKET_contains_zero_byte()
|
|
|
|
{
|
|
|
|
char buf[10], buf2[10];
|
|
|
|
PACKET pkt;
|
|
|
|
|
|
|
|
memset(buf, 'x', 10);
|
|
|
|
memset(buf2, 'y', 10);
|
|
|
|
buf2[5] = '\0';
|
|
|
|
|
|
|
|
if ( !PACKET_buf_init(&pkt, (unsigned char*)buf, 10)
|
|
|
|
|| PACKET_contains_zero_byte(&pkt)
|
|
|
|
|| !PACKET_buf_init(&pkt, (unsigned char*)buf2, 10)
|
|
|
|
|| !PACKET_contains_zero_byte(&pkt)) {
|
|
|
|
fprintf(stderr, "test_PACKET_contains_zero_byte failed\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-09-17 16:55:19 +00:00
|
|
|
static int test_PACKET_forward(unsigned char buf[BUF_LEN])
|
2015-04-17 15:10:23 +00:00
|
|
|
{
|
2016-02-01 14:26:18 +00:00
|
|
|
const unsigned char *byte;
|
2015-09-17 16:11:46 +00:00
|
|
|
PACKET pkt;
|
2015-04-17 15:10:23 +00:00
|
|
|
|
2015-09-17 16:11:46 +00:00
|
|
|
if ( !PACKET_buf_init(&pkt, buf, BUF_LEN)
|
|
|
|
|| !PACKET_forward(&pkt, 1)
|
|
|
|
|| !PACKET_get_bytes(&pkt, &byte, 1)
|
2015-08-04 12:03:20 +00:00
|
|
|
|| byte[0] != 4
|
2015-09-17 16:55:19 +00:00
|
|
|
|| !PACKET_forward(&pkt, BUF_LEN - 3)
|
2015-09-17 16:11:46 +00:00
|
|
|
|| !PACKET_get_bytes(&pkt, &byte, 1)
|
|
|
|
|| byte[0] != 0xfe) {
|
2015-09-17 16:55:19 +00:00
|
|
|
fprintf(stderr, "test_PACKET_forward() failed\n");
|
2015-04-17 15:10:23 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int test_PACKET_buf_init()
|
|
|
|
{
|
|
|
|
unsigned char buf[BUF_LEN];
|
|
|
|
PACKET pkt;
|
|
|
|
|
2015-10-01 11:54:11 +00:00
|
|
|
/* Also tests PACKET_remaining() */
|
2015-04-17 15:10:23 +00:00
|
|
|
if ( !PACKET_buf_init(&pkt, buf, 4)
|
2015-09-17 19:28:07 +00:00
|
|
|
|| PACKET_remaining(&pkt) != 4
|
2015-04-17 15:10:23 +00:00
|
|
|
|| !PACKET_buf_init(&pkt, buf, BUF_LEN)
|
2015-09-17 19:28:07 +00:00
|
|
|
|| PACKET_remaining(&pkt) != BUF_LEN
|
2015-04-17 15:10:23 +00:00
|
|
|
|| PACKET_buf_init(&pkt, buf, -1)) {
|
|
|
|
fprintf(stderr, "test_PACKET_buf_init() failed\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-09-30 13:33:12 +00:00
|
|
|
static int test_PACKET_null_init()
|
|
|
|
{
|
|
|
|
PACKET pkt;
|
|
|
|
|
|
|
|
PACKET_null_init(&pkt);
|
|
|
|
if ( PACKET_remaining(&pkt) != 0
|
|
|
|
|| PACKET_forward(&pkt, 1)) {
|
|
|
|
fprintf(stderr, "test_PACKET_null_init() failed\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-10-06 15:20:32 +00:00
|
|
|
static int test_PACKET_equal(unsigned char buf[BUF_LEN])
|
|
|
|
{
|
|
|
|
PACKET pkt;
|
|
|
|
|
|
|
|
if ( !PACKET_buf_init(&pkt, buf, 4)
|
|
|
|
|| !PACKET_equal(&pkt, buf, 4)
|
|
|
|
|| PACKET_equal(&pkt, buf + 1, 4)
|
|
|
|
|| !PACKET_buf_init(&pkt, buf, BUF_LEN)
|
|
|
|
|| !PACKET_equal(&pkt, buf, BUF_LEN)
|
|
|
|
|| PACKET_equal(&pkt, buf, BUF_LEN - 1)
|
|
|
|
|| PACKET_equal(&pkt, buf, BUF_LEN + 1)
|
|
|
|
|| PACKET_equal(&pkt, buf, 0)) {
|
|
|
|
fprintf(stderr, "test_PACKET_equal() failed\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-08-18 10:29:36 +00:00
|
|
|
static int test_PACKET_get_length_prefixed_1()
|
|
|
|
{
|
|
|
|
unsigned char buf[BUF_LEN];
|
|
|
|
const size_t len = 16;
|
|
|
|
unsigned int i;
|
|
|
|
PACKET pkt, short_pkt, subpkt;
|
|
|
|
|
|
|
|
buf[0] = len;
|
|
|
|
for (i = 1; i < BUF_LEN; i++) {
|
|
|
|
buf[i] = (i * 2) & 0xff;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !PACKET_buf_init(&pkt, buf, BUF_LEN)
|
|
|
|
|| !PACKET_buf_init(&short_pkt, buf, len)
|
|
|
|
|| !PACKET_get_length_prefixed_1(&pkt, &subpkt)
|
|
|
|
|| PACKET_remaining(&subpkt) != len
|
|
|
|
|| !PACKET_get_net_2(&subpkt, &i)
|
|
|
|
|| i != 0x0204
|
|
|
|
|| PACKET_get_length_prefixed_1(&short_pkt, &subpkt)
|
|
|
|
|| PACKET_remaining(&short_pkt) != len) {
|
|
|
|
fprintf(stderr, "test_PACKET_get_length_prefixed_1() failed\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int test_PACKET_get_length_prefixed_2()
|
|
|
|
{
|
|
|
|
unsigned char buf[1024];
|
|
|
|
const size_t len = 516; /* 0x0204 */
|
|
|
|
unsigned int i;
|
|
|
|
PACKET pkt, short_pkt, subpkt;
|
|
|
|
|
|
|
|
for (i = 1; i <= 1024; i++) {
|
|
|
|
buf[i-1] = (i * 2) & 0xff;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !PACKET_buf_init(&pkt, buf, 1024)
|
|
|
|
|| !PACKET_buf_init(&short_pkt, buf, len)
|
|
|
|
|| !PACKET_get_length_prefixed_2(&pkt, &subpkt)
|
|
|
|
|| PACKET_remaining(&subpkt) != len
|
|
|
|
|| !PACKET_get_net_2(&subpkt, &i)
|
|
|
|
|| i != 0x0608
|
|
|
|
|| PACKET_get_length_prefixed_2(&short_pkt, &subpkt)
|
|
|
|
|| PACKET_remaining(&short_pkt) != len) {
|
|
|
|
fprintf(stderr, "test_PACKET_get_length_prefixed_2() failed\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int test_PACKET_get_length_prefixed_3()
|
|
|
|
{
|
|
|
|
unsigned char buf[1024];
|
|
|
|
const size_t len = 516; /* 0x000204 */
|
|
|
|
unsigned int i;
|
|
|
|
PACKET pkt, short_pkt, subpkt;
|
|
|
|
|
|
|
|
for (i = 0; i < 1024; i++) {
|
|
|
|
buf[i] = (i * 2) & 0xff;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !PACKET_buf_init(&pkt, buf, 1024)
|
|
|
|
|| !PACKET_buf_init(&short_pkt, buf, len)
|
|
|
|
|| !PACKET_get_length_prefixed_3(&pkt, &subpkt)
|
|
|
|
|| PACKET_remaining(&subpkt) != len
|
|
|
|
|| !PACKET_get_net_2(&subpkt, &i)
|
|
|
|
|| i != 0x0608
|
|
|
|
|| PACKET_get_length_prefixed_3(&short_pkt, &subpkt)
|
|
|
|
|| PACKET_remaining(&short_pkt) != len) {
|
|
|
|
fprintf(stderr, "test_PACKET_get_length_prefixed_3() failed\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-09-22 13:20:26 +00:00
|
|
|
static int test_PACKET_as_length_prefixed_1()
|
|
|
|
{
|
|
|
|
unsigned char buf[BUF_LEN];
|
|
|
|
const size_t len = 16;
|
|
|
|
unsigned int i;
|
|
|
|
PACKET pkt, exact_pkt, subpkt;
|
|
|
|
|
|
|
|
buf[0] = len;
|
|
|
|
for (i = 1; i < BUF_LEN; i++) {
|
|
|
|
buf[i] = (i * 2) & 0xff;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !PACKET_buf_init(&pkt, buf, BUF_LEN)
|
|
|
|
|| !PACKET_buf_init(&exact_pkt, buf, len + 1)
|
|
|
|
|| PACKET_as_length_prefixed_1(&pkt, &subpkt)
|
|
|
|
|| PACKET_remaining(&pkt) != BUF_LEN
|
|
|
|
|| !PACKET_as_length_prefixed_1(&exact_pkt, &subpkt)
|
|
|
|
|| PACKET_remaining(&exact_pkt) != 0
|
|
|
|
|| PACKET_remaining(&subpkt) != len) {
|
|
|
|
fprintf(stderr, "test_PACKET_as_length_prefixed_1() failed\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int test_PACKET_as_length_prefixed_2()
|
|
|
|
{
|
|
|
|
unsigned char buf[1024];
|
|
|
|
const size_t len = 516; /* 0x0204 */
|
|
|
|
unsigned int i;
|
|
|
|
PACKET pkt, exact_pkt, subpkt;
|
|
|
|
|
|
|
|
for (i = 1; i <= 1024; i++) {
|
|
|
|
buf[i-1] = (i * 2) & 0xff;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !PACKET_buf_init(&pkt, buf, 1024)
|
|
|
|
|| !PACKET_buf_init(&exact_pkt, buf, len + 2)
|
|
|
|
|| PACKET_as_length_prefixed_2(&pkt, &subpkt)
|
|
|
|
|| PACKET_remaining(&pkt) != 1024
|
|
|
|
|| !PACKET_as_length_prefixed_2(&exact_pkt, &subpkt)
|
|
|
|
|| PACKET_remaining(&exact_pkt) != 0
|
|
|
|
|| PACKET_remaining(&subpkt) != len) {
|
|
|
|
fprintf(stderr, "test_PACKET_as_length_prefixed_2() failed\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-04-17 15:10:23 +00:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
unsigned char buf[BUF_LEN];
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
for (i=1; i<=BUF_LEN; i++) {
|
2015-08-04 12:03:20 +00:00
|
|
|
buf[i-1] = (i * 2) & 0xff;
|
2015-04-17 15:10:23 +00:00
|
|
|
}
|
|
|
|
i = 0;
|
|
|
|
|
|
|
|
if ( !test_PACKET_buf_init()
|
2015-09-30 13:33:12 +00:00
|
|
|
|| !test_PACKET_null_init()
|
2015-09-17 16:11:46 +00:00
|
|
|
|| !test_PACKET_remaining(buf)
|
2015-09-22 13:20:26 +00:00
|
|
|
|| !test_PACKET_end(buf)
|
2015-10-06 15:20:32 +00:00
|
|
|
|| !test_PACKET_equal(buf)
|
2015-09-17 16:11:46 +00:00
|
|
|
|| !test_PACKET_get_1(buf)
|
|
|
|
|| !test_PACKET_get_4(buf)
|
|
|
|
|| !test_PACKET_get_net_2(buf)
|
|
|
|
|| !test_PACKET_get_net_3(buf)
|
|
|
|
|| !test_PACKET_get_net_4(buf)
|
|
|
|
|| !test_PACKET_get_sub_packet(buf)
|
|
|
|
|| !test_PACKET_get_bytes(buf)
|
|
|
|
|| !test_PACKET_copy_bytes(buf)
|
2015-10-01 11:54:11 +00:00
|
|
|
|| !test_PACKET_copy_all(buf)
|
2015-09-17 16:11:46 +00:00
|
|
|
|| !test_PACKET_memdup(buf)
|
2015-09-01 16:19:14 +00:00
|
|
|
|| !test_PACKET_strndup()
|
2015-09-22 13:20:26 +00:00
|
|
|
|| !test_PACKET_contains_zero_byte()
|
2015-09-17 16:55:19 +00:00
|
|
|
|| !test_PACKET_forward(buf)
|
2015-08-18 10:29:36 +00:00
|
|
|
|| !test_PACKET_get_length_prefixed_1()
|
|
|
|
|| !test_PACKET_get_length_prefixed_2()
|
2015-09-22 13:20:26 +00:00
|
|
|
|| !test_PACKET_get_length_prefixed_3()
|
|
|
|
|| !test_PACKET_as_length_prefixed_1()
|
|
|
|
|| !test_PACKET_as_length_prefixed_2()) {
|
2015-04-17 15:10:23 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
printf("PASS\n");
|
|
|
|
return 0;
|
|
|
|
}
|