Add a simple test for the new rehash command
[openssl.git] / test / packettest.c
1 /* test/packettest.c */
2 /*
3  * Written by Matt Caswell for the OpenSSL project.
4  */
5 /* ====================================================================
6  * Copyright (c) 2015 The OpenSSL Project.  All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  *
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in
17  *    the documentation and/or other materials provided with the
18  *    distribution.
19  *
20  * 3. All advertising materials mentioning features or use of this
21  *    software must display the following acknowledgment:
22  *    "This product includes software developed by the OpenSSL Project
23  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
24  *
25  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26  *    endorse or promote products derived from this software without
27  *    prior written permission. For written permission, please contact
28  *    openssl-core@openssl.org.
29  *
30  * 5. Products derived from this software may not be called "OpenSSL"
31  *    nor may "OpenSSL" appear in their names without prior written
32  *    permission of the OpenSSL Project.
33  *
34  * 6. Redistributions of any form whatsoever must retain the following
35  *    acknowledgment:
36  *    "This product includes software developed by the OpenSSL Project
37  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
38  *
39  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
43  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50  * OF THE POSSIBILITY OF SUCH DAMAGE.
51  * ====================================================================
52  *
53  * This product includes cryptographic software written by Eric Young
54  * (eay@cryptsoft.com).  This product includes software written by Tim
55  * Hudson (tjh@cryptsoft.com).
56  *
57  */
58
59
60 #include "../ssl/packet_locl.h"
61
62 #define BUF_LEN 255
63
64 static int test_PACKET_remaining(PACKET *pkt)
65 {
66     if (        PACKET_remaining(pkt) != BUF_LEN
67             || !PACKET_forward(pkt, BUF_LEN - 1)
68             ||  PACKET_remaining(pkt) != 1
69             || !PACKET_forward(pkt, 1)
70             ||  PACKET_remaining(pkt) != 0) {
71         fprintf(stderr, "test_PACKET_remaining() failed\n");
72         return 0;
73     }
74
75     return 1;
76 }
77
78 static int test_PACKET_get_1(PACKET *pkt, size_t start)
79 {
80     unsigned int i;
81
82     if (       !PACKET_goto_bookmark(pkt, start)
83             || !PACKET_get_1(pkt, &i)
84             ||  i != 0x02
85             || !PACKET_forward(pkt, BUF_LEN - 2)
86             || !PACKET_get_1(pkt, &i)
87             ||  i != 0xfe
88             ||  PACKET_get_1(pkt, &i)) {
89         fprintf(stderr, "test_PACKET_get_1() failed\n");
90         return 0;
91     }
92
93     return 1;
94 }
95
96 static int test_PACKET_get_4(PACKET *pkt, size_t start)
97 {
98     unsigned long i;
99
100     if (       !PACKET_goto_bookmark(pkt, start)
101             || !PACKET_get_4(pkt, &i)
102             ||  i != 0x08060402UL
103             || !PACKET_forward(pkt, BUF_LEN - 8)
104             || !PACKET_get_4(pkt, &i)
105             ||  i != 0xfefcfaf8UL
106             ||  PACKET_get_4(pkt, &i)) {
107         fprintf(stderr, "test_PACKET_get_4() failed\n");
108         return 0;
109     }
110
111     return 1;
112 }
113
114 static int test_PACKET_get_net_2(PACKET *pkt, size_t start)
115 {
116     unsigned int i;
117
118     if (       !PACKET_goto_bookmark(pkt, start)
119             || !PACKET_get_net_2(pkt, &i)
120             ||  i != 0x0204
121             || !PACKET_forward(pkt, BUF_LEN - 4)
122             || !PACKET_get_net_2(pkt, &i)
123             ||  i != 0xfcfe
124             ||  PACKET_get_net_2(pkt, &i)) {
125         fprintf(stderr, "test_PACKET_get_net_2() failed\n");
126         return 0;
127     }
128
129     return 1;
130 }
131
132 static int test_PACKET_get_net_3(PACKET *pkt, size_t start)
133 {
134     unsigned long i;
135
136     if (       !PACKET_goto_bookmark(pkt, start)
137             || !PACKET_get_net_3(pkt, &i)
138             ||  i != 0x020406UL
139             || !PACKET_forward(pkt, BUF_LEN - 6)
140             || !PACKET_get_net_3(pkt, &i)
141             ||  i != 0xfafcfeUL
142             ||  PACKET_get_net_3(pkt, &i)) {
143         fprintf(stderr, "test_PACKET_get_net_3() failed\n");
144         return 0;
145     }
146
147     return 1;
148 }
149
150 static int test_PACKET_get_net_4(PACKET *pkt, size_t start)
151 {
152     unsigned long i;
153
154     if (       !PACKET_goto_bookmark(pkt, start)
155             || !PACKET_get_net_4(pkt, &i)
156             ||  i != 0x02040608UL
157             || !PACKET_forward(pkt, BUF_LEN - 8)
158             || !PACKET_get_net_4(pkt, &i)
159             ||  i != 0xf8fafcfeUL
160             ||  PACKET_get_net_4(pkt, &i)) {
161         fprintf(stderr, "test_PACKET_get_net_4() failed\n");
162         return 0;
163     }
164
165     return 1;
166 }
167
168 static int test_PACKET_get_sub_packet(PACKET *pkt, size_t start)
169 {
170     PACKET subpkt;
171     unsigned long i;
172
173     if (       !PACKET_goto_bookmark(pkt, start)
174             || !PACKET_get_sub_packet(pkt, &subpkt, 4)
175             || !PACKET_get_net_4(&subpkt, &i)
176             ||  i != 0x02040608UL
177             ||  PACKET_remaining(&subpkt)
178             || !PACKET_forward(pkt, BUF_LEN - 8)
179             || !PACKET_get_sub_packet(pkt, &subpkt, 4)
180             || !PACKET_get_net_4(&subpkt, &i)
181             ||  i != 0xf8fafcfeUL
182             ||  PACKET_remaining(&subpkt)
183             ||  PACKET_get_sub_packet(pkt, &subpkt, 4)) {
184         fprintf(stderr, "test_PACKET_get_sub_packet() failed\n");
185         return 0;
186     }
187
188     return 1;
189 }
190
191 static int test_PACKET_get_bytes(PACKET *pkt, size_t start)
192 {
193     unsigned char *bytes;
194
195     if (       !PACKET_goto_bookmark(pkt, start)
196             || !PACKET_get_bytes(pkt, &bytes, 4)
197             ||  bytes[0] != 2 || bytes[1] != 4
198             ||  bytes[2] != 6 || bytes[3] != 8
199             ||  PACKET_remaining(pkt) != BUF_LEN -4
200             || !PACKET_forward(pkt, BUF_LEN - 8)
201             || !PACKET_get_bytes(pkt, &bytes, 4)
202             ||  bytes[0] != 0xf8 || bytes[1] != 0xfa
203             ||  bytes[2] != 0xfc || bytes[3] != 0xfe
204             ||  PACKET_remaining(pkt)) {
205         fprintf(stderr, "test_PACKET_get_bytes() failed\n");
206         return 0;
207     }
208
209     return 1;
210 }
211
212 static int test_PACKET_copy_bytes(PACKET *pkt, size_t start)
213 {
214     unsigned char bytes[4];
215
216     if (       !PACKET_goto_bookmark(pkt, start)
217             || !PACKET_copy_bytes(pkt, bytes, 4)
218             ||  bytes[0] != 2 || bytes[1] != 4
219             ||  bytes[2] != 6 || bytes[3] != 8
220             ||  PACKET_remaining(pkt) != BUF_LEN - 4
221             || !PACKET_forward(pkt, BUF_LEN - 8)
222             || !PACKET_copy_bytes(pkt, bytes, 4)
223             ||  bytes[0] != 0xf8 || bytes[1] != 0xfa
224             ||  bytes[2] != 0xfc || bytes[3] != 0xfe
225             ||  PACKET_remaining(pkt)) {
226         fprintf(stderr, "test_PACKET_copy_bytes() failed\n");
227         return 0;
228     }
229
230     return 1;
231 }
232
233 static int test_PACKET_memdup(PACKET *pkt, size_t start)
234 {
235     unsigned char *data = NULL;
236     size_t len;
237     if (       !PACKET_goto_bookmark(pkt, start)
238             || !PACKET_memdup(pkt, &data, &len)
239             ||  len != BUF_LEN
240             ||  memcmp(data, PACKET_data(pkt), len)
241             || !PACKET_forward(pkt, 10)
242             || !PACKET_memdup(pkt, &data, &len)
243             ||  len != BUF_LEN - 10
244             ||  memcmp(data, PACKET_data(pkt), len)
245             || !PACKET_back(pkt, 1)
246             || !PACKET_memdup(pkt, &data, &len)
247             ||  len != BUF_LEN - 9
248                ||  memcmp(data, PACKET_data(pkt), len)) {
249         fprintf(stderr, "test_PACKET_memdup() failed\n");
250         OPENSSL_free(data);
251         return 0;
252     }
253
254     OPENSSL_free(data);
255     return 1;
256 }
257
258 static int test_PACKET_strndup()
259 {
260     char buf[10], buf2[10];
261     char *data = NULL;
262     PACKET pkt;
263
264     memset(buf, 'x', 10);
265     memset(buf2, 'y', 10);
266     buf2[5] = '\0';
267
268     if (       !PACKET_buf_init(&pkt, (unsigned char*)buf, 10)
269             || !PACKET_strndup(&pkt, &data)
270             ||  strlen(data) != 10
271             ||  strncmp(data, buf, 10)
272             || !PACKET_buf_init(&pkt, (unsigned char*)buf2, 10)
273             || !PACKET_strndup(&pkt, &data)
274             ||  strlen(data) != 5
275             ||  strcmp(data, buf2)) {
276         fprintf(stderr, "test_PACKET_strndup failed\n");
277         OPENSSL_free(data);
278         return 0;
279     }
280
281     OPENSSL_free(data);
282     return 1;
283 }
284
285 static int test_PACKET_move_funcs(PACKET *pkt, size_t start)
286 {
287     unsigned char *byte;
288     size_t bm;
289
290     if (       !PACKET_goto_bookmark(pkt, start)
291             ||  PACKET_back(pkt, 1)
292             || !PACKET_forward(pkt, 1)
293             || !PACKET_get_bytes(pkt, &byte, 1)
294             ||  byte[0] != 4
295             || !PACKET_get_bookmark(pkt, &bm)
296             || !PACKET_forward(pkt, BUF_LEN - 2)
297             ||  PACKET_forward(pkt, 1)
298             || !PACKET_back(pkt, 1)
299             || !PACKET_get_bytes(pkt, &byte, 1)
300             ||  byte[0] != 0xfe
301             || !PACKET_goto_bookmark(pkt, bm)
302             || !PACKET_get_bytes(pkt, &byte, 1)
303             ||  byte[0] != 6) {
304         fprintf(stderr, "test_PACKET_move_funcs() failed\n");
305         return 0;
306     }
307
308     return 1;
309 }
310
311 static int test_PACKET_buf_init()
312 {
313     unsigned char buf[BUF_LEN];
314     size_t len;
315     PACKET pkt;
316
317     /* Also tests PACKET_get_len() */
318     if (       !PACKET_buf_init(&pkt, buf, 4)
319             || !PACKET_length(&pkt, &len)
320             ||  len != 4
321             || !PACKET_buf_init(&pkt, buf, BUF_LEN)
322             || !PACKET_length(&pkt, &len)
323             ||  len != BUF_LEN
324             ||  pkt.end - pkt.start != BUF_LEN
325             ||  pkt.end < pkt.start
326             ||  pkt.curr < pkt.start
327             ||  pkt.curr > pkt.end
328             ||  PACKET_buf_init(&pkt, buf, -1)) {
329         fprintf(stderr, "test_PACKET_buf_init() failed\n");
330         return 0;
331         }
332
333     return 1;
334 }
335
336 static int test_PACKET_get_length_prefixed_1()
337 {
338     unsigned char buf[BUF_LEN];
339     const size_t len = 16;
340     unsigned int i;
341     PACKET pkt, short_pkt, subpkt;
342
343     buf[0] = len;
344     for (i = 1; i < BUF_LEN; i++) {
345         buf[i] = (i * 2) & 0xff;
346     }
347
348     if (       !PACKET_buf_init(&pkt, buf, BUF_LEN)
349             || !PACKET_buf_init(&short_pkt, buf, len)
350             || !PACKET_get_length_prefixed_1(&pkt, &subpkt)
351             ||  PACKET_remaining(&subpkt) != len
352             || !PACKET_get_net_2(&subpkt, &i)
353             ||  i != 0x0204
354             ||  PACKET_get_length_prefixed_1(&short_pkt, &subpkt)
355             ||  PACKET_remaining(&short_pkt) != len) {
356         fprintf(stderr, "test_PACKET_get_length_prefixed_1() failed\n");
357         return 0;
358     }
359
360     return 1;
361 }
362
363 static int test_PACKET_get_length_prefixed_2()
364 {
365     unsigned char buf[1024];
366     const size_t len = 516;  /* 0x0204 */
367     unsigned int i;
368     PACKET pkt, short_pkt, subpkt;
369
370     for (i = 1; i <= 1024; i++) {
371         buf[i-1] = (i * 2) & 0xff;
372     }
373
374     if (       !PACKET_buf_init(&pkt, buf, 1024)
375             || !PACKET_buf_init(&short_pkt, buf, len)
376             || !PACKET_get_length_prefixed_2(&pkt, &subpkt)
377             ||  PACKET_remaining(&subpkt) != len
378             || !PACKET_get_net_2(&subpkt, &i)
379             ||  i != 0x0608
380             ||  PACKET_get_length_prefixed_2(&short_pkt, &subpkt)
381             ||  PACKET_remaining(&short_pkt) != len) {
382         fprintf(stderr, "test_PACKET_get_length_prefixed_2() failed\n");
383         return 0;
384     }
385
386     return 1;
387 }
388
389 static int test_PACKET_get_length_prefixed_3()
390 {
391     unsigned char buf[1024];
392     const size_t len = 516;  /* 0x000204 */
393     unsigned int i;
394     PACKET pkt, short_pkt, subpkt;
395
396     for (i = 0; i < 1024; i++) {
397         buf[i] = (i * 2) & 0xff;
398     }
399
400     if (       !PACKET_buf_init(&pkt, buf, 1024)
401             || !PACKET_buf_init(&short_pkt, buf, len)
402             || !PACKET_get_length_prefixed_3(&pkt, &subpkt)
403             ||  PACKET_remaining(&subpkt) != len
404             || !PACKET_get_net_2(&subpkt, &i)
405             ||  i != 0x0608
406             ||  PACKET_get_length_prefixed_3(&short_pkt, &subpkt)
407             ||  PACKET_remaining(&short_pkt) != len) {
408         fprintf(stderr, "test_PACKET_get_length_prefixed_3() failed\n");
409         return 0;
410     }
411
412     return 1;
413 }
414
415 int main(int argc, char **argv)
416 {
417     unsigned char buf[BUF_LEN];
418     unsigned int i;
419     size_t start = 0;
420     PACKET pkt;
421
422     for (i=1; i<=BUF_LEN; i++) {
423         buf[i-1] = (i * 2) & 0xff;
424     }
425     i = 0;
426
427     if (       !PACKET_buf_init(&pkt, buf, BUF_LEN)
428             || !PACKET_get_bookmark(&pkt, &start)) {
429         fprintf(stderr, "setup failed\n");
430         return 0;
431     }
432
433     if (       !test_PACKET_buf_init()
434             || !test_PACKET_remaining(&pkt)
435             || !test_PACKET_get_1(&pkt, start)
436             || !test_PACKET_get_4(&pkt, start)
437             || !test_PACKET_get_net_2(&pkt, start)
438             || !test_PACKET_get_net_3(&pkt, start)
439             || !test_PACKET_get_net_4(&pkt, start)
440             || !test_PACKET_get_sub_packet(&pkt, start)
441             || !test_PACKET_get_bytes(&pkt, start)
442             || !test_PACKET_copy_bytes(&pkt, start)
443             || !test_PACKET_memdup(&pkt, start)
444             || !test_PACKET_strndup()
445             || !test_PACKET_move_funcs(&pkt, start)
446             || !test_PACKET_get_length_prefixed_1()
447             || !test_PACKET_get_length_prefixed_2()
448             || !test_PACKET_get_length_prefixed_3()) {
449         return 1;
450     }
451     printf("PASS\n");
452     return 0;
453 }