1 /*
2  * Copyright 2015-2024 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9 
10 #ifndef OSSL_INTERNAL_PACKET_H
11 # define OSSL_INTERNAL_PACKET_H
12 # pragma once
13 
14 # include <string.h>
15 # include <openssl/bn.h>
16 # include <openssl/buffer.h>
17 # include <openssl/crypto.h>
18 # include <openssl/e_os2.h>
19 
20 # include "internal/numbers.h"
21 
22 typedef struct {
23     /* Pointer to where we are currently reading from */
24     const unsigned char *curr;
25     /* Number of bytes remaining */
26     size_t remaining;
27 } PACKET;
28 
29 /* Internal unchecked shorthand; don't use outside this file. */
packet_forward(PACKET * pkt,size_t len)30 static ossl_inline void packet_forward(PACKET *pkt, size_t len)
31 {
32     pkt->curr += len;
33     pkt->remaining -= len;
34 }
35 
36 /*
37  * Returns the number of bytes remaining to be read in the PACKET
38  */
PACKET_remaining(const PACKET * pkt)39 static ossl_inline size_t PACKET_remaining(const PACKET *pkt)
40 {
41     return pkt->remaining;
42 }
43 
44 /*
45  * Returns a pointer to the first byte after the packet data.
46  * Useful for integrating with non-PACKET parsing code.
47  * Specifically, we use PACKET_end() to verify that a d2i_... call
48  * has consumed the entire packet contents.
49  */
PACKET_end(const PACKET * pkt)50 static ossl_inline const unsigned char *PACKET_end(const PACKET *pkt)
51 {
52     return pkt->curr + pkt->remaining;
53 }
54 
55 /*
56  * Returns a pointer to the PACKET's current position.
57  * For use in non-PACKETized APIs.
58  */
PACKET_data(const PACKET * pkt)59 static ossl_inline const unsigned char *PACKET_data(const PACKET *pkt)
60 {
61     return pkt->curr;
62 }
63 
64 /*
65  * Initialise a PACKET with |len| bytes held in |buf|. This does not make a
66  * copy of the data so |buf| must be present for the whole time that the PACKET
67  * is being used.
68  */
PACKET_buf_init(PACKET * pkt,const unsigned char * buf,size_t len)69 __owur static ossl_inline int PACKET_buf_init(PACKET *pkt,
70                                               const unsigned char *buf,
71                                               size_t len)
72 {
73     /* Sanity check for negative values. */
74     if (len > (size_t)(SIZE_MAX / 2))
75         return 0;
76 
77     pkt->curr = buf;
78     pkt->remaining = len;
79     return 1;
80 }
81 
82 /* Initialize a PACKET to hold zero bytes. */
PACKET_null_init(PACKET * pkt)83 static ossl_inline void PACKET_null_init(PACKET *pkt)
84 {
85     pkt->curr = NULL;
86     pkt->remaining = 0;
87 }
88 
89 /*
90  * Returns 1 if the packet has length |num| and its contents equal the |num|
91  * bytes read from |ptr|. Returns 0 otherwise (lengths or contents not equal).
92  * If lengths are equal, performs the comparison in constant time.
93  */
PACKET_equal(const PACKET * pkt,const void * ptr,size_t num)94 __owur static ossl_inline int PACKET_equal(const PACKET *pkt, const void *ptr,
95                                            size_t num)
96 {
97     if (PACKET_remaining(pkt) != num)
98         return 0;
99     return CRYPTO_memcmp(pkt->curr, ptr, num) == 0;
100 }
101 
102 /*
103  * Peek ahead and initialize |subpkt| with the next |len| bytes read from |pkt|.
104  * Data is not copied: the |subpkt| packet will share its underlying buffer with
105  * the original |pkt|, so data wrapped by |pkt| must outlive the |subpkt|.
106  */
PACKET_peek_sub_packet(const PACKET * pkt,PACKET * subpkt,size_t len)107 __owur static ossl_inline int PACKET_peek_sub_packet(const PACKET *pkt,
108                                                      PACKET *subpkt, size_t len)
109 {
110     if (PACKET_remaining(pkt) < len)
111         return 0;
112 
113     return PACKET_buf_init(subpkt, pkt->curr, len);
114 }
115 
116 /*
117  * Initialize |subpkt| with the next |len| bytes read from |pkt|. Data is not
118  * copied: the |subpkt| packet will share its underlying buffer with the
119  * original |pkt|, so data wrapped by |pkt| must outlive the |subpkt|.
120  */
PACKET_get_sub_packet(PACKET * pkt,PACKET * subpkt,size_t len)121 __owur static ossl_inline int PACKET_get_sub_packet(PACKET *pkt,
122                                                     PACKET *subpkt, size_t len)
123 {
124     if (!PACKET_peek_sub_packet(pkt, subpkt, len))
125         return 0;
126 
127     packet_forward(pkt, len);
128 
129     return 1;
130 }
131 
132 /*
133  * Peek ahead at 2 bytes in network order from |pkt| and store the value in
134  * |*data|
135  */
PACKET_peek_net_2(const PACKET * pkt,unsigned int * data)136 __owur static ossl_inline int PACKET_peek_net_2(const PACKET *pkt,
137                                                 unsigned int *data)
138 {
139     if (PACKET_remaining(pkt) < 2)
140         return 0;
141 
142     *data = ((unsigned int)(*pkt->curr)) << 8;
143     *data |= *(pkt->curr + 1);
144 
145     return 1;
146 }
147 
148 /* Equivalent of n2s */
149 /* Get 2 bytes in network order from |pkt| and store the value in |*data| */
PACKET_get_net_2(PACKET * pkt,unsigned int * data)150 __owur static ossl_inline int PACKET_get_net_2(PACKET *pkt, unsigned int *data)
151 {
152     if (!PACKET_peek_net_2(pkt, data))
153         return 0;
154 
155     packet_forward(pkt, 2);
156 
157     return 1;
158 }
159 
160 /* Same as PACKET_get_net_2() but for a size_t */
PACKET_get_net_2_len(PACKET * pkt,size_t * data)161 __owur static ossl_inline int PACKET_get_net_2_len(PACKET *pkt, size_t *data)
162 {
163     unsigned int i;
164     int ret = PACKET_get_net_2(pkt, &i);
165 
166     if (ret)
167         *data = (size_t)i;
168 
169     return ret;
170 }
171 
172 /*
173  * Peek ahead at 3 bytes in network order from |pkt| and store the value in
174  * |*data|
175  */
PACKET_peek_net_3(const PACKET * pkt,unsigned long * data)176 __owur static ossl_inline int PACKET_peek_net_3(const PACKET *pkt,
177                                                 unsigned long *data)
178 {
179     if (PACKET_remaining(pkt) < 3)
180         return 0;
181 
182     *data = ((unsigned long)(*pkt->curr)) << 16;
183     *data |= ((unsigned long)(*(pkt->curr + 1))) << 8;
184     *data |= *(pkt->curr + 2);
185 
186     return 1;
187 }
188 
189 /* Equivalent of n2l3 */
190 /* Get 3 bytes in network order from |pkt| and store the value in |*data| */
PACKET_get_net_3(PACKET * pkt,unsigned long * data)191 __owur static ossl_inline int PACKET_get_net_3(PACKET *pkt, unsigned long *data)
192 {
193     if (!PACKET_peek_net_3(pkt, data))
194         return 0;
195 
196     packet_forward(pkt, 3);
197 
198     return 1;
199 }
200 
201 /* Same as PACKET_get_net_3() but for a size_t */
PACKET_get_net_3_len(PACKET * pkt,size_t * data)202 __owur static ossl_inline int PACKET_get_net_3_len(PACKET *pkt, size_t *data)
203 {
204     unsigned long i;
205     int ret = PACKET_get_net_3(pkt, &i);
206 
207     if (ret)
208         *data = (size_t)i;
209 
210     return ret;
211 }
212 
213 /*
214  * Peek ahead at 4 bytes in network order from |pkt| and store the value in
215  * |*data|
216  */
PACKET_peek_net_4(const PACKET * pkt,unsigned long * data)217 __owur static ossl_inline int PACKET_peek_net_4(const PACKET *pkt,
218                                                 unsigned long *data)
219 {
220     if (PACKET_remaining(pkt) < 4)
221         return 0;
222 
223     *data = ((unsigned long)(*pkt->curr)) << 24;
224     *data |= ((unsigned long)(*(pkt->curr + 1))) << 16;
225     *data |= ((unsigned long)(*(pkt->curr + 2))) << 8;
226     *data |= *(pkt->curr + 3);
227 
228     return 1;
229 }
230 
231 /*
232  * Peek ahead at 8 bytes in network order from |pkt| and store the value in
233  * |*data|
234  */
PACKET_peek_net_8(const PACKET * pkt,uint64_t * data)235 __owur static ossl_inline int PACKET_peek_net_8(const PACKET *pkt,
236                                                 uint64_t *data)
237 {
238     if (PACKET_remaining(pkt) < 8)
239         return 0;
240 
241     *data = ((uint64_t)(*pkt->curr)) << 56;
242     *data |= ((uint64_t)(*(pkt->curr + 1))) << 48;
243     *data |= ((uint64_t)(*(pkt->curr + 2))) << 40;
244     *data |= ((uint64_t)(*(pkt->curr + 3))) << 32;
245     *data |= ((uint64_t)(*(pkt->curr + 4))) << 24;
246     *data |= ((uint64_t)(*(pkt->curr + 5))) << 16;
247     *data |= ((uint64_t)(*(pkt->curr + 6))) << 8;
248     *data |= *(pkt->curr + 7);
249 
250     return 1;
251 }
252 
253 /* Equivalent of n2l */
254 /* Get 4 bytes in network order from |pkt| and store the value in |*data| */
PACKET_get_net_4(PACKET * pkt,unsigned long * data)255 __owur static ossl_inline int PACKET_get_net_4(PACKET *pkt, unsigned long *data)
256 {
257     if (!PACKET_peek_net_4(pkt, data))
258         return 0;
259 
260     packet_forward(pkt, 4);
261 
262     return 1;
263 }
264 
265 /* Same as PACKET_get_net_4() but for a size_t */
PACKET_get_net_4_len(PACKET * pkt,size_t * data)266 __owur static ossl_inline int PACKET_get_net_4_len(PACKET *pkt, size_t *data)
267 {
268     unsigned long i;
269     int ret = PACKET_get_net_4(pkt, &i);
270 
271     if (ret)
272         *data = (size_t)i;
273 
274     return ret;
275 }
276 
277 /**
278  * @brief Get 4 bytes in network order from |pkt| and store the value in |*data|
279  * Similar to PACKET_get_net_4() except the data is uint32_t
280  *
281  * @param pkt Contains a buffer to read from
282  * @param data The object to write the data to.
283  * @returns 1 on success, or 0 otherwise.
284  */
285 static ossl_unused ossl_inline
PACKET_get_net_4_len_u32(PACKET * pkt,uint32_t * data)286 int PACKET_get_net_4_len_u32(PACKET *pkt, uint32_t *data)
287 {
288     size_t i = 0;
289     int ret = PACKET_get_net_4_len(pkt, &i);
290 
291     if (ret)
292         *data = (uint32_t)i;
293     return ret;
294 }
295 
296 /* Get 8 bytes in network order from |pkt| and store the value in |*data| */
PACKET_get_net_8(PACKET * pkt,uint64_t * data)297 __owur static ossl_inline int PACKET_get_net_8(PACKET *pkt, uint64_t *data)
298 {
299     if (!PACKET_peek_net_8(pkt, data))
300         return 0;
301 
302     packet_forward(pkt, 8);
303 
304     return 1;
305 }
306 
307 /* Peek ahead at 1 byte from |pkt| and store the value in |*data| */
PACKET_peek_1(const PACKET * pkt,unsigned int * data)308 __owur static ossl_inline int PACKET_peek_1(const PACKET *pkt,
309                                             unsigned int *data)
310 {
311     if (!PACKET_remaining(pkt))
312         return 0;
313 
314     *data = *pkt->curr;
315 
316     return 1;
317 }
318 
319 /* Get 1 byte from |pkt| and store the value in |*data| */
PACKET_get_1(PACKET * pkt,unsigned int * data)320 __owur static ossl_inline int PACKET_get_1(PACKET *pkt, unsigned int *data)
321 {
322     if (!PACKET_peek_1(pkt, data))
323         return 0;
324 
325     packet_forward(pkt, 1);
326 
327     return 1;
328 }
329 
330 /* Same as PACKET_get_1() but for a size_t */
PACKET_get_1_len(PACKET * pkt,size_t * data)331 __owur static ossl_inline int PACKET_get_1_len(PACKET *pkt, size_t *data)
332 {
333     unsigned int i;
334     int ret = PACKET_get_1(pkt, &i);
335 
336     if (ret)
337         *data = (size_t)i;
338 
339     return ret;
340 }
341 
342 /*
343  * Peek ahead at 4 bytes in reverse network order from |pkt| and store the value
344  * in |*data|
345  */
PACKET_peek_4(const PACKET * pkt,unsigned long * data)346 __owur static ossl_inline int PACKET_peek_4(const PACKET *pkt,
347                                             unsigned long *data)
348 {
349     if (PACKET_remaining(pkt) < 4)
350         return 0;
351 
352     *data = *pkt->curr;
353     *data |= ((unsigned long)(*(pkt->curr + 1))) << 8;
354     *data |= ((unsigned long)(*(pkt->curr + 2))) << 16;
355     *data |= ((unsigned long)(*(pkt->curr + 3))) << 24;
356 
357     return 1;
358 }
359 
360 /* Equivalent of c2l */
361 /*
362  * Get 4 bytes in reverse network order from |pkt| and store the value in
363  * |*data|
364  */
PACKET_get_4(PACKET * pkt,unsigned long * data)365 __owur static ossl_inline int PACKET_get_4(PACKET *pkt, unsigned long *data)
366 {
367     if (!PACKET_peek_4(pkt, data))
368         return 0;
369 
370     packet_forward(pkt, 4);
371 
372     return 1;
373 }
374 
375 /*
376  * Peek ahead at |len| bytes from the |pkt| and store a pointer to them in
377  * |*data|. This just points at the underlying buffer that |pkt| is using. The
378  * caller should not free this data directly (it will be freed when the
379  * underlying buffer gets freed
380  */
PACKET_peek_bytes(const PACKET * pkt,const unsigned char ** data,size_t len)381 __owur static ossl_inline int PACKET_peek_bytes(const PACKET *pkt,
382                                                 const unsigned char **data,
383                                                 size_t len)
384 {
385     if (PACKET_remaining(pkt) < len)
386         return 0;
387 
388     *data = pkt->curr;
389 
390     return 1;
391 }
392 
393 /*
394  * Read |len| bytes from the |pkt| and store a pointer to them in |*data|. This
395  * just points at the underlying buffer that |pkt| is using. The caller should
396  * not free this data directly (it will be freed when the underlying buffer gets
397  * freed
398  */
PACKET_get_bytes(PACKET * pkt,const unsigned char ** data,size_t len)399 __owur static ossl_inline int PACKET_get_bytes(PACKET *pkt,
400                                                const unsigned char **data,
401                                                size_t len)
402 {
403     if (!PACKET_peek_bytes(pkt, data, len))
404         return 0;
405 
406     packet_forward(pkt, len);
407 
408     return 1;
409 }
410 
411 /* Peek ahead at |len| bytes from |pkt| and copy them to |data| */
PACKET_peek_copy_bytes(const PACKET * pkt,unsigned char * data,size_t len)412 __owur static ossl_inline int PACKET_peek_copy_bytes(const PACKET *pkt,
413                                                      unsigned char *data,
414                                                      size_t len)
415 {
416     if (PACKET_remaining(pkt) < len)
417         return 0;
418 
419     memcpy(data, pkt->curr, len);
420 
421     return 1;
422 }
423 
424 /*
425  * Read |len| bytes from |pkt| and copy them to |data|.
426  * The caller is responsible for ensuring that |data| can hold |len| bytes.
427  */
PACKET_copy_bytes(PACKET * pkt,unsigned char * data,size_t len)428 __owur static ossl_inline int PACKET_copy_bytes(PACKET *pkt,
429                                                 unsigned char *data, size_t len)
430 {
431     if (!PACKET_peek_copy_bytes(pkt, data, len))
432         return 0;
433 
434     packet_forward(pkt, len);
435 
436     return 1;
437 }
438 
439 /*
440  * Copy packet data to |dest|, and set |len| to the number of copied bytes.
441  * If the packet has more than |dest_len| bytes, nothing is copied.
442  * Returns 1 if the packet data fits in |dest_len| bytes, 0 otherwise.
443  * Does not forward PACKET position (because it is typically the last thing
444  * done with a given PACKET).
445  */
PACKET_copy_all(const PACKET * pkt,unsigned char * dest,size_t dest_len,size_t * len)446 __owur static ossl_inline int PACKET_copy_all(const PACKET *pkt,
447                                               unsigned char *dest,
448                                               size_t dest_len, size_t *len)
449 {
450     if (PACKET_remaining(pkt) > dest_len) {
451         *len = 0;
452         return 0;
453     }
454     *len = pkt->remaining;
455     memcpy(dest, pkt->curr, pkt->remaining);
456     return 1;
457 }
458 
459 /*
460  * Copy |pkt| bytes to a newly allocated buffer and store a pointer to the
461  * result in |*data|, and the length in |len|.
462  * If |*data| is not NULL, the old data is OPENSSL_free'd.
463  * If the packet is empty, or malloc fails, |*data| will be set to NULL.
464  * Returns 1 if the malloc succeeds and 0 otherwise.
465  * Does not forward PACKET position (because it is typically the last thing
466  * done with a given PACKET).
467  */
PACKET_memdup(const PACKET * pkt,unsigned char ** data,size_t * len)468 __owur static ossl_inline int PACKET_memdup(const PACKET *pkt,
469                                             unsigned char **data, size_t *len)
470 {
471     size_t length;
472 
473     OPENSSL_free(*data);
474     *data = NULL;
475     *len = 0;
476 
477     length = PACKET_remaining(pkt);
478 
479     if (length == 0)
480         return 1;
481 
482     *data = OPENSSL_memdup(pkt->curr, length);
483     if (*data == NULL)
484         return 0;
485 
486     *len = length;
487     return 1;
488 }
489 
490 /*
491  * Read a C string from |pkt| and copy to a newly allocated, NUL-terminated
492  * buffer. Store a pointer to the result in |*data|.
493  * If |*data| is not NULL, the old data is OPENSSL_free'd.
494  * If the data in |pkt| does not contain a NUL-byte, the entire data is
495  * copied and NUL-terminated.
496  * Returns 1 if the malloc succeeds and 0 otherwise.
497  * Does not forward PACKET position (because it is typically the last thing done
498  * with a given PACKET).
499  */
PACKET_strndup(const PACKET * pkt,char ** data)500 __owur static ossl_inline int PACKET_strndup(const PACKET *pkt, char **data)
501 {
502     OPENSSL_free(*data);
503 
504     /* This will succeed on an empty packet, unless pkt->curr == NULL. */
505     *data = OPENSSL_strndup((const char *)pkt->curr, PACKET_remaining(pkt));
506     return (*data != NULL);
507 }
508 
509 /* Returns 1 if |pkt| contains at least one 0-byte, 0 otherwise. */
PACKET_contains_zero_byte(const PACKET * pkt)510 static ossl_inline int PACKET_contains_zero_byte(const PACKET *pkt)
511 {
512     return memchr(pkt->curr, 0, pkt->remaining) != NULL;
513 }
514 
515 /* Move the current reading position forward |len| bytes */
PACKET_forward(PACKET * pkt,size_t len)516 __owur static ossl_inline int PACKET_forward(PACKET *pkt, size_t len)
517 {
518     if (PACKET_remaining(pkt) < len)
519         return 0;
520 
521     packet_forward(pkt, len);
522 
523     return 1;
524 }
525 
526 /*
527  * Reads a variable-length vector prefixed with a one-byte length, and stores
528  * the contents in |subpkt|. |pkt| can equal |subpkt|.
529  * Data is not copied: the |subpkt| packet will share its underlying buffer with
530  * the original |pkt|, so data wrapped by |pkt| must outlive the |subpkt|.
531  * Upon failure, the original |pkt| and |subpkt| are not modified.
532  */
PACKET_get_length_prefixed_1(PACKET * pkt,PACKET * subpkt)533 __owur static ossl_inline int PACKET_get_length_prefixed_1(PACKET *pkt,
534                                                            PACKET *subpkt)
535 {
536     unsigned int length;
537     const unsigned char *data;
538     PACKET tmp = *pkt;
539     if (!PACKET_get_1(&tmp, &length) ||
540         !PACKET_get_bytes(&tmp, &data, (size_t)length)) {
541         return 0;
542     }
543 
544     *pkt = tmp;
545     subpkt->curr = data;
546     subpkt->remaining = length;
547 
548     return 1;
549 }
550 
551 /*
552  * Like PACKET_get_length_prefixed_1, but additionally, fails when there are
553  * leftover bytes in |pkt|.
554  */
PACKET_as_length_prefixed_1(PACKET * pkt,PACKET * subpkt)555 __owur static ossl_inline int PACKET_as_length_prefixed_1(PACKET *pkt,
556                                                           PACKET *subpkt)
557 {
558     unsigned int length;
559     const unsigned char *data;
560     PACKET tmp = *pkt;
561     if (!PACKET_get_1(&tmp, &length) ||
562         !PACKET_get_bytes(&tmp, &data, (size_t)length) ||
563         PACKET_remaining(&tmp) != 0) {
564         return 0;
565     }
566 
567     *pkt = tmp;
568     subpkt->curr = data;
569     subpkt->remaining = length;
570 
571     return 1;
572 }
573 
574 /*
575  * Reads a variable-length vector prefixed with a two-byte length, and stores
576  * the contents in |subpkt|. |pkt| can equal |subpkt|.
577  * Data is not copied: the |subpkt| packet will share its underlying buffer with
578  * the original |pkt|, so data wrapped by |pkt| must outlive the |subpkt|.
579  * Upon failure, the original |pkt| and |subpkt| are not modified.
580  */
PACKET_get_length_prefixed_2(PACKET * pkt,PACKET * subpkt)581 __owur static ossl_inline int PACKET_get_length_prefixed_2(PACKET *pkt,
582                                                            PACKET *subpkt)
583 {
584     unsigned int length;
585     const unsigned char *data;
586     PACKET tmp = *pkt;
587 
588     if (!PACKET_get_net_2(&tmp, &length) ||
589         !PACKET_get_bytes(&tmp, &data, (size_t)length)) {
590         return 0;
591     }
592 
593     *pkt = tmp;
594     subpkt->curr = data;
595     subpkt->remaining = length;
596 
597     return 1;
598 }
599 
600 /*
601  * Like PACKET_get_length_prefixed_2, but additionally, fails when there are
602  * leftover bytes in |pkt|.
603  */
PACKET_as_length_prefixed_2(PACKET * pkt,PACKET * subpkt)604 __owur static ossl_inline int PACKET_as_length_prefixed_2(PACKET *pkt,
605                                                           PACKET *subpkt)
606 {
607     unsigned int length;
608     const unsigned char *data;
609     PACKET tmp = *pkt;
610 
611     if (!PACKET_get_net_2(&tmp, &length) ||
612         !PACKET_get_bytes(&tmp, &data, (size_t)length) ||
613         PACKET_remaining(&tmp) != 0) {
614         return 0;
615     }
616 
617     *pkt = tmp;
618     subpkt->curr = data;
619     subpkt->remaining = length;
620 
621     return 1;
622 }
623 
624 /*
625  * Reads a variable-length vector prefixed with a three-byte length, and stores
626  * the contents in |subpkt|. |pkt| can equal |subpkt|.
627  * Data is not copied: the |subpkt| packet will share its underlying buffer with
628  * the original |pkt|, so data wrapped by |pkt| must outlive the |subpkt|.
629  * Upon failure, the original |pkt| and |subpkt| are not modified.
630  */
PACKET_get_length_prefixed_3(PACKET * pkt,PACKET * subpkt)631 __owur static ossl_inline int PACKET_get_length_prefixed_3(PACKET *pkt,
632                                                            PACKET *subpkt)
633 {
634     unsigned long length;
635     const unsigned char *data;
636     PACKET tmp = *pkt;
637     if (!PACKET_get_net_3(&tmp, &length) ||
638         !PACKET_get_bytes(&tmp, &data, (size_t)length)) {
639         return 0;
640     }
641 
642     *pkt = tmp;
643     subpkt->curr = data;
644     subpkt->remaining = length;
645 
646     return 1;
647 }
648 
649 /* Writable packets */
650 
651 typedef struct wpacket_sub WPACKET_SUB;
652 struct wpacket_sub {
653     /* The parent WPACKET_SUB if we have one or NULL otherwise */
654     WPACKET_SUB *parent;
655 
656     /*
657      * Offset into the buffer where the length of this WPACKET goes. We use an
658      * offset in case the buffer grows and gets reallocated.
659      */
660     size_t packet_len;
661 
662     /* Number of bytes in the packet_len or 0 if we don't write the length */
663     size_t lenbytes;
664 
665     /* Number of bytes written to the buf prior to this packet starting */
666     size_t pwritten;
667 
668     /* Flags for this sub-packet */
669     unsigned int flags;
670 };
671 
672 typedef struct wpacket_st WPACKET;
673 struct wpacket_st {
674     /* The buffer where we store the output data */
675     BUF_MEM *buf;
676 
677     /* Fixed sized buffer which can be used as an alternative to buf */
678     unsigned char *staticbuf;
679 
680     /*
681      * Offset into the buffer where we are currently writing. We use an offset
682      * in case the buffer grows and gets reallocated.
683      */
684     size_t curr;
685 
686     /* Number of bytes written so far */
687     size_t written;
688 
689     /* Maximum number of bytes we will allow to be written to this WPACKET */
690     size_t maxsize;
691 
692     /* Our sub-packets (always at least one if not finished) */
693     WPACKET_SUB *subs;
694 
695     /* Writing from the end first? */
696     unsigned int endfirst : 1;
697 };
698 
699 /* Flags */
700 
701 /* Default */
702 #define WPACKET_FLAGS_NONE                      0
703 
704 /* Error on WPACKET_close() if no data written to the WPACKET */
705 #define WPACKET_FLAGS_NON_ZERO_LENGTH           1
706 
707 /*
708  * Abandon all changes on WPACKET_close() if no data written to the WPACKET,
709  * i.e. this does not write out a zero packet length
710  */
711 #define WPACKET_FLAGS_ABANDON_ON_ZERO_LENGTH    2
712 
713 /* QUIC variable-length integer length prefix */
714 #define WPACKET_FLAGS_QUIC_VLINT                4
715 
716 /*
717  * Initialise a WPACKET with the buffer in |buf|. The buffer must exist
718  * for the whole time that the WPACKET is being used. Additionally |lenbytes| of
719  * data is preallocated at the start of the buffer to store the length of the
720  * WPACKET once we know it.
721  */
722 int WPACKET_init_len(WPACKET *pkt, BUF_MEM *buf, size_t lenbytes);
723 
724 /*
725  * Same as WPACKET_init_len except there is no preallocation of the WPACKET
726  * length.
727  */
728 int WPACKET_init(WPACKET *pkt, BUF_MEM *buf);
729 
730 /*
731  * Same as WPACKET_init_len except there is no underlying buffer. No data is
732  * ever actually written. We just keep track of how much data would have been
733  * written if a buffer was there.
734  */
735 int WPACKET_init_null(WPACKET *pkt, size_t lenbytes);
736 
737 /*
738  * Same as WPACKET_init_null except we set the WPACKET to assume DER length
739  * encoding for sub-packets.
740  */
741 int WPACKET_init_null_der(WPACKET *pkt);
742 
743 /*
744  * Same as WPACKET_init_len except we do not use a growable BUF_MEM structure.
745  * A fixed buffer of memory |buf| of size |len| is used instead. A failure will
746  * occur if you attempt to write beyond the end of the buffer
747  */
748 int WPACKET_init_static_len(WPACKET *pkt, unsigned char *buf, size_t len,
749                             size_t lenbytes);
750 
751 /*
752  * Same as WPACKET_init_static_len except lenbytes is always 0, and we set the
753  * WPACKET to write to the end of the buffer moving towards the start and use
754  * DER length encoding for sub-packets.
755  */
756 int WPACKET_init_der(WPACKET *pkt, unsigned char *buf, size_t len);
757 
758 /*
759  * Set the flags to be applied to the current sub-packet
760  */
761 int WPACKET_set_flags(WPACKET *pkt, unsigned int flags);
762 
763 /*
764  * Closes the most recent sub-packet. It also writes out the length of the
765  * packet to the required location (normally the start of the WPACKET) if
766  * appropriate. The top level WPACKET should be closed using WPACKET_finish()
767  * instead of this function.
768  */
769 int WPACKET_close(WPACKET *pkt);
770 
771 /*
772  * The same as WPACKET_close() but only for the top most WPACKET. Additionally
773  * frees memory resources for this WPACKET.
774  */
775 int WPACKET_finish(WPACKET *pkt);
776 
777 /*
778  * Iterate through all the sub-packets and write out their lengths as if they
779  * were being closed. The lengths will be overwritten with the final lengths
780  * when the sub-packets are eventually closed (which may be different if more
781  * data is added to the WPACKET). This function fails if a sub-packet is of 0
782  * length and WPACKET_FLAGS_ABANDON_ON_ZERO_LENGTH is set.
783  */
784 int WPACKET_fill_lengths(WPACKET *pkt);
785 
786 /*
787  * Initialise a new sub-packet. Additionally |lenbytes| of data is preallocated
788  * at the start of the sub-packet to store its length once we know it. Don't
789  * call this directly. Use the convenience macros below instead.
790  */
791 int WPACKET_start_sub_packet_len__(WPACKET *pkt, size_t lenbytes);
792 
793 /*
794  * Convenience macros for calling WPACKET_start_sub_packet_len with different
795  * lengths
796  */
797 #define WPACKET_start_sub_packet_u8(pkt) \
798     WPACKET_start_sub_packet_len__((pkt), 1)
799 #define WPACKET_start_sub_packet_u16(pkt) \
800     WPACKET_start_sub_packet_len__((pkt), 2)
801 #define WPACKET_start_sub_packet_u24(pkt) \
802     WPACKET_start_sub_packet_len__((pkt), 3)
803 #define WPACKET_start_sub_packet_u32(pkt) \
804     WPACKET_start_sub_packet_len__((pkt), 4)
805 
806 /*
807  * Same as WPACKET_start_sub_packet_len__() except no bytes are pre-allocated
808  * for the sub-packet length.
809  */
810 int WPACKET_start_sub_packet(WPACKET *pkt);
811 
812 /*
813  * Allocate bytes in the WPACKET for the output. This reserves the bytes
814  * and counts them as "written", but doesn't actually do the writing. A pointer
815  * to the allocated bytes is stored in |*allocbytes|. |allocbytes| may be NULL.
816  * WARNING: the allocated bytes must be filled in immediately, without further
817  * WPACKET_* calls. If not then the underlying buffer may be realloc'd and
818  * change its location.
819  */
820 int WPACKET_allocate_bytes(WPACKET *pkt, size_t len,
821                            unsigned char **allocbytes);
822 
823 /*
824  * The same as WPACKET_allocate_bytes() except additionally a new sub-packet is
825  * started for the allocated bytes, and then closed immediately afterwards. The
826  * number of length bytes for the sub-packet is in |lenbytes|. Don't call this
827  * directly. Use the convenience macros below instead.
828  */
829 int WPACKET_sub_allocate_bytes__(WPACKET *pkt, size_t len,
830                                  unsigned char **allocbytes, size_t lenbytes);
831 
832 /*
833  * Convenience macros for calling WPACKET_sub_allocate_bytes with different
834  * lengths
835  */
836 #define WPACKET_sub_allocate_bytes_u8(pkt, len, bytes) \
837     WPACKET_sub_allocate_bytes__((pkt), (len), (bytes), 1)
838 #define WPACKET_sub_allocate_bytes_u16(pkt, len, bytes) \
839     WPACKET_sub_allocate_bytes__((pkt), (len), (bytes), 2)
840 #define WPACKET_sub_allocate_bytes_u24(pkt, len, bytes) \
841     WPACKET_sub_allocate_bytes__((pkt), (len), (bytes), 3)
842 #define WPACKET_sub_allocate_bytes_u32(pkt, len, bytes) \
843     WPACKET_sub_allocate_bytes__((pkt), (len), (bytes), 4)
844 
845 /*
846  * The same as WPACKET_allocate_bytes() except the reserved bytes are not
847  * actually counted as written. Typically this will be for when we don't know
848  * how big arbitrary data is going to be up front, but we do know what the
849  * maximum size will be. If this function is used, then it should be immediately
850  * followed by a WPACKET_allocate_bytes() call before any other WPACKET
851  * functions are called (unless the write to the allocated bytes is abandoned).
852  *
853  * For example: If we are generating a signature, then the size of that
854  * signature may not be known in advance. We can use WPACKET_reserve_bytes() to
855  * handle this:
856  *
857  *  if (!WPACKET_sub_reserve_bytes_u16(&pkt, EVP_PKEY_get_size(pkey), &sigbytes1)
858  *          || EVP_SignFinal(md_ctx, sigbytes1, &siglen, pkey) <= 0
859  *          || !WPACKET_sub_allocate_bytes_u16(&pkt, siglen, &sigbytes2)
860  *          || sigbytes1 != sigbytes2)
861  *      goto err;
862  */
863 int WPACKET_reserve_bytes(WPACKET *pkt, size_t len, unsigned char **allocbytes);
864 
865 /*
866  * The "reserve_bytes" equivalent of WPACKET_sub_allocate_bytes__()
867  */
868 int WPACKET_sub_reserve_bytes__(WPACKET *pkt, size_t len,
869                                  unsigned char **allocbytes, size_t lenbytes);
870 
871 /*
872  * Convenience macros for  WPACKET_sub_reserve_bytes with different lengths
873  */
874 #define WPACKET_sub_reserve_bytes_u8(pkt, len, bytes) \
875     WPACKET_reserve_bytes__((pkt), (len), (bytes), 1)
876 #define WPACKET_sub_reserve_bytes_u16(pkt, len, bytes) \
877     WPACKET_sub_reserve_bytes__((pkt), (len), (bytes), 2)
878 #define WPACKET_sub_reserve_bytes_u24(pkt, len, bytes) \
879     WPACKET_sub_reserve_bytes__((pkt), (len), (bytes), 3)
880 #define WPACKET_sub_reserve_bytes_u32(pkt, len, bytes) \
881     WPACKET_sub_reserve_bytes__((pkt), (len), (bytes), 4)
882 
883 /*
884  * Write the value stored in |val| into the WPACKET. The value will consume
885  * |bytes| amount of storage. An error will occur if |val| cannot be
886  * accommodated in |bytes| storage, e.g. attempting to write the value 256 into
887  * 1 byte will fail. Don't call this directly. Use the convenience macros below
888  * instead.
889  */
890 int WPACKET_put_bytes__(WPACKET *pkt, uint64_t val, size_t bytes);
891 
892 /*
893  * Convenience macros for calling WPACKET_put_bytes with different
894  * lengths
895  */
896 #define WPACKET_put_bytes_u8(pkt, val) \
897     WPACKET_put_bytes__((pkt), (val), 1)
898 #define WPACKET_put_bytes_u16(pkt, val) \
899     WPACKET_put_bytes__((pkt), (val), 2)
900 #define WPACKET_put_bytes_u24(pkt, val) \
901     WPACKET_put_bytes__((pkt), (val), 3)
902 #define WPACKET_put_bytes_u32(pkt, val) \
903     WPACKET_put_bytes__((pkt), (val), 4)
904 #define WPACKET_put_bytes_u64(pkt, val) \
905     WPACKET_put_bytes__((pkt), (val), 8)
906 
907 /* Set a maximum size that we will not allow the WPACKET to grow beyond */
908 int WPACKET_set_max_size(WPACKET *pkt, size_t maxsize);
909 
910 /* Copy |len| bytes of data from |*src| into the WPACKET. */
911 int WPACKET_memcpy(WPACKET *pkt, const void *src, size_t len);
912 
913 /* Set |len| bytes of data to |ch| into the WPACKET. */
914 int WPACKET_memset(WPACKET *pkt, int ch, size_t len);
915 
916 /*
917  * Copy |len| bytes of data from |*src| into the WPACKET and prefix with its
918  * length (consuming |lenbytes| of data for the length). Don't call this
919  * directly. Use the convenience macros below instead.
920  */
921 int WPACKET_sub_memcpy__(WPACKET *pkt, const void *src, size_t len,
922                        size_t lenbytes);
923 
924 /* Convenience macros for calling WPACKET_sub_memcpy with different lengths */
925 #define WPACKET_sub_memcpy_u8(pkt, src, len) \
926     WPACKET_sub_memcpy__((pkt), (src), (len), 1)
927 #define WPACKET_sub_memcpy_u16(pkt, src, len) \
928     WPACKET_sub_memcpy__((pkt), (src), (len), 2)
929 #define WPACKET_sub_memcpy_u24(pkt, src, len) \
930     WPACKET_sub_memcpy__((pkt), (src), (len), 3)
931 #define WPACKET_sub_memcpy_u32(pkt, src, len) \
932     WPACKET_sub_memcpy__((pkt), (src), (len), 4)
933 
934 /*
935  * Return the total number of bytes written so far to the underlying buffer
936  * including any storage allocated for length bytes
937  */
938 int WPACKET_get_total_written(WPACKET *pkt, size_t *written);
939 
940 /*
941  * Returns the length of the current sub-packet. This excludes any bytes
942  * allocated for the length itself.
943  */
944 int WPACKET_get_length(WPACKET *pkt, size_t *len);
945 
946 /*
947  * Returns a pointer to the current write location, but does not allocate any
948  * bytes.
949  */
950 unsigned char *WPACKET_get_curr(WPACKET *pkt);
951 
952 /* Returns true if the underlying buffer is actually NULL */
953 int WPACKET_is_null_buf(WPACKET *pkt);
954 
955 /* Release resources in a WPACKET if a failure has occurred. */
956 void WPACKET_cleanup(WPACKET *pkt);
957 
958 #endif                          /* OSSL_INTERNAL_PACKET_H */
959