Add version numbers on some modules we use.
[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_move_funcs(PACKET *pkt, size_t start)
234 {
235     unsigned char *byte;
236     size_t bm;
237
238     if (       !PACKET_goto_bookmark(pkt, start)
239             ||  PACKET_back(pkt, 1)
240             || !PACKET_forward(pkt, 1)
241             || !PACKET_get_bytes(pkt, &byte, 1)
242             ||  byte[0] != 4
243             || !PACKET_get_bookmark(pkt, &bm)
244             || !PACKET_forward(pkt, BUF_LEN - 2)
245             ||  PACKET_forward(pkt, 1)
246             || !PACKET_back(pkt, 1)
247             || !PACKET_get_bytes(pkt, &byte, 1)
248             ||  byte[0] != 0xfe
249             || !PACKET_goto_bookmark(pkt, bm)
250             || !PACKET_get_bytes(pkt, &byte, 1)
251             ||  byte[0] != 6) {
252         fprintf(stderr, "test_PACKET_move_funcs() failed\n");
253         return 0;
254     }
255
256     return 1;
257 }
258
259 static int test_PACKET_buf_init()
260 {
261     unsigned char buf[BUF_LEN];
262     size_t len;
263     PACKET pkt;
264
265     /* Also tests PACKET_get_len() */
266     if (       !PACKET_buf_init(&pkt, buf, 4)
267             || !PACKET_length(&pkt, &len)
268             ||  len != 4
269             || !PACKET_buf_init(&pkt, buf, BUF_LEN)
270             || !PACKET_length(&pkt, &len)
271             ||  len != BUF_LEN
272             ||  pkt.end - pkt.start != BUF_LEN
273             ||  pkt.end < pkt.start
274             ||  pkt.curr < pkt.start
275             ||  pkt.curr > pkt.end
276             ||  PACKET_buf_init(&pkt, buf, -1)) {
277         fprintf(stderr, "test_PACKET_buf_init() failed\n");
278         return 0;
279         }
280
281     return 1;
282 }
283
284 static int test_PACKET_get_length_prefixed_1()
285 {
286     unsigned char buf[BUF_LEN];
287     const size_t len = 16;
288     unsigned int i;
289     PACKET pkt, short_pkt, subpkt;
290
291     buf[0] = len;
292     for (i = 1; i < BUF_LEN; i++) {
293         buf[i] = (i * 2) & 0xff;
294     }
295
296     if (       !PACKET_buf_init(&pkt, buf, BUF_LEN)
297             || !PACKET_buf_init(&short_pkt, buf, len)
298             || !PACKET_get_length_prefixed_1(&pkt, &subpkt)
299             ||  PACKET_remaining(&subpkt) != len
300             || !PACKET_get_net_2(&subpkt, &i)
301             ||  i != 0x0204
302             ||  PACKET_get_length_prefixed_1(&short_pkt, &subpkt)
303             ||  PACKET_remaining(&short_pkt) != len) {
304         fprintf(stderr, "test_PACKET_get_length_prefixed_1() failed\n");
305         return 0;
306     }
307
308     return 1;
309 }
310
311 static int test_PACKET_get_length_prefixed_2()
312 {
313     unsigned char buf[1024];
314     const size_t len = 516;  /* 0x0204 */
315     unsigned int i;
316     PACKET pkt, short_pkt, subpkt;
317
318     for (i = 1; i <= 1024; i++) {
319         buf[i-1] = (i * 2) & 0xff;
320     }
321
322     if (       !PACKET_buf_init(&pkt, buf, 1024)
323             || !PACKET_buf_init(&short_pkt, buf, len)
324             || !PACKET_get_length_prefixed_2(&pkt, &subpkt)
325             ||  PACKET_remaining(&subpkt) != len
326             || !PACKET_get_net_2(&subpkt, &i)
327             ||  i != 0x0608
328             ||  PACKET_get_length_prefixed_2(&short_pkt, &subpkt)
329             ||  PACKET_remaining(&short_pkt) != len) {
330         fprintf(stderr, "test_PACKET_get_length_prefixed_2() failed\n");
331         return 0;
332     }
333
334     return 1;
335 }
336
337 static int test_PACKET_get_length_prefixed_3()
338 {
339     unsigned char buf[1024];
340     const size_t len = 516;  /* 0x000204 */
341     unsigned int i;
342     PACKET pkt, short_pkt, subpkt;
343
344     for (i = 0; i < 1024; i++) {
345         buf[i] = (i * 2) & 0xff;
346     }
347
348     if (       !PACKET_buf_init(&pkt, buf, 1024)
349             || !PACKET_buf_init(&short_pkt, buf, len)
350             || !PACKET_get_length_prefixed_3(&pkt, &subpkt)
351             ||  PACKET_remaining(&subpkt) != len
352             || !PACKET_get_net_2(&subpkt, &i)
353             ||  i != 0x0608
354             ||  PACKET_get_length_prefixed_3(&short_pkt, &subpkt)
355             ||  PACKET_remaining(&short_pkt) != len) {
356         fprintf(stderr, "test_PACKET_get_length_prefixed_3() failed\n");
357         return 0;
358     }
359
360     return 1;
361 }
362
363 int main(int argc, char **argv)
364 {
365     unsigned char buf[BUF_LEN];
366     unsigned int i;
367     size_t start = 0;
368     PACKET pkt;
369
370     for (i=1; i<=BUF_LEN; i++) {
371         buf[i-1] = (i * 2) & 0xff;
372     }
373     i = 0;
374
375     if (       !PACKET_buf_init(&pkt, buf, BUF_LEN)
376             || !PACKET_get_bookmark(&pkt, &start)) {
377         fprintf(stderr, "setup failed\n");
378         return 0;
379     }
380
381     if (       !test_PACKET_buf_init()
382             || !test_PACKET_remaining(&pkt)
383             || !test_PACKET_get_1(&pkt, start)
384             || !test_PACKET_get_4(&pkt, start)
385             || !test_PACKET_get_net_2(&pkt, start)
386             || !test_PACKET_get_net_3(&pkt, start)
387             || !test_PACKET_get_net_4(&pkt, start)
388             || !test_PACKET_get_sub_packet(&pkt, start)
389             || !test_PACKET_get_bytes(&pkt, start)
390             || !test_PACKET_copy_bytes(&pkt, start)
391             || !test_PACKET_move_funcs(&pkt, start)
392             || !test_PACKET_get_length_prefixed_1()
393             || !test_PACKET_get_length_prefixed_2()
394             || !test_PACKET_get_length_prefixed_3()) {
395         return 1;
396     }
397     printf("PASS\n");
398     return 0;
399 }