| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2020-10-15 21:10:06 +08:00
										 |  |  |  * Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Licensed under the Apache License 2.0 (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
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * A simple ASN.1 DER encoder/decoder for DSA-Sig-Value and ECDSA-Sig-Value. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * DSA-Sig-Value ::= SEQUENCE { | 
					
						
							|  |  |  |  *  r  INTEGER, | 
					
						
							|  |  |  |  *  s  INTEGER | 
					
						
							|  |  |  |  * } | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * ECDSA-Sig-Value ::= SEQUENCE { | 
					
						
							|  |  |  |  *  r  INTEGER, | 
					
						
							|  |  |  |  *  s  INTEGER | 
					
						
							|  |  |  |  * } | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <openssl/crypto.h>
 | 
					
						
							|  |  |  | #include <openssl/bn.h>
 | 
					
						
							| 
									
										
										
										
											2019-09-28 06:45:33 +08:00
										 |  |  | #include "crypto/asn1_dsa.h"
 | 
					
						
							| 
									
										
										
										
											2019-06-08 00:40:21 +08:00
										 |  |  | #include "internal/packet.h"
 | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define ID_SEQUENCE 0x30
 | 
					
						
							|  |  |  | #define ID_INTEGER 0x02
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Outputs the encoding of the length octets for a DER value with a content | 
					
						
							| 
									
										
										
										
											2019-06-11 00:52:15 +08:00
										 |  |  |  * length of cont_len bytes to pkt. The maximum supported content length is | 
					
						
							|  |  |  |  * 65535 (0xffff) bytes. | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-06-11 00:52:15 +08:00
										 |  |  |  * Returns 1 on success or 0 on error. | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2019-06-11 00:52:15 +08:00
										 |  |  | int encode_der_length(WPACKET *pkt, size_t cont_len) | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-06-11 00:52:15 +08:00
										 |  |  |     if (cont_len > 0xffff) | 
					
						
							|  |  |  |         return 0; /* Too large for supported length encodings */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (cont_len > 0xff) { | 
					
						
							|  |  |  |         if (!WPACKET_put_bytes_u8(pkt, 0x82) | 
					
						
							|  |  |  |                 || !WPACKET_put_bytes_u16(pkt, cont_len)) | 
					
						
							|  |  |  |             return 0; | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2019-06-11 00:52:15 +08:00
										 |  |  |         if (cont_len > 0x7f | 
					
						
							|  |  |  |                 && !WPACKET_put_bytes_u8(pkt, 0x81)) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         if (!WPACKET_put_bytes_u8(pkt, cont_len)) | 
					
						
							|  |  |  |             return 0; | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-06-11 00:52:15 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2019-06-11 00:52:15 +08:00
										 |  |  |  * Outputs the DER encoding of a positive ASN.1 INTEGER to pkt. | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-06-11 00:52:15 +08:00
										 |  |  |  * Results in an error if n is negative or too large. | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-06-11 00:52:15 +08:00
										 |  |  |  * Returns 1 on success or 0 on error. | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2019-06-11 00:52:15 +08:00
										 |  |  | int encode_der_integer(WPACKET *pkt, const BIGNUM *n) | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-06-11 00:52:15 +08:00
										 |  |  |     unsigned char *bnbytes; | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  |     size_t cont_len; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-11 00:52:15 +08:00
										 |  |  |     if (BN_is_negative(n)) | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Calculate the ASN.1 INTEGER DER content length for n. | 
					
						
							|  |  |  |      * This is the number of whole bytes required to represent n (i.e. rounded | 
					
						
							|  |  |  |      * down), plus one. | 
					
						
							|  |  |  |      * If n is zero then the content is a single zero byte (length = 1). | 
					
						
							|  |  |  |      * If the number of bits of n is a multiple of 8 then an extra zero padding | 
					
						
							|  |  |  |      * byte is included to ensure that the value is still treated as positive | 
					
						
							|  |  |  |      * in the INTEGER two's complement representation. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     cont_len = BN_num_bits(n) / 8 + 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-11 00:52:15 +08:00
										 |  |  |     if (!WPACKET_start_sub_packet(pkt) | 
					
						
							|  |  |  |             || !WPACKET_put_bytes_u8(pkt, ID_INTEGER) | 
					
						
							|  |  |  |             || !encode_der_length(pkt, cont_len) | 
					
						
							|  |  |  |             || !WPACKET_allocate_bytes(pkt, cont_len, &bnbytes) | 
					
						
							|  |  |  |             || !WPACKET_close(pkt)) | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2019-06-11 00:52:15 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (bnbytes != NULL | 
					
						
							|  |  |  |             && BN_bn2binpad(n, bnbytes, (int)cont_len) != (int)cont_len) | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2019-06-11 00:52:15 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2019-06-11 00:52:15 +08:00
										 |  |  |  * Outputs the DER encoding of a DSA-Sig-Value or ECDSA-Sig-Value to pkt. pkt | 
					
						
							|  |  |  |  * may be initialised with a NULL buffer which enables pkt to be used to | 
					
						
							| 
									
										
										
										
											2019-12-01 07:18:47 +08:00
										 |  |  |  * calculate how many bytes would be needed. | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-06-11 00:52:15 +08:00
										 |  |  |  * Returns 1 on success or 0 on error. | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2019-06-11 00:52:15 +08:00
										 |  |  | int encode_der_dsa_sig(WPACKET *pkt, const BIGNUM *r, const BIGNUM *s) | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-06-11 00:52:15 +08:00
										 |  |  |     WPACKET tmppkt, *dummypkt; | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  |     size_t cont_len; | 
					
						
							| 
									
										
										
										
											2019-06-11 00:52:15 +08:00
										 |  |  |     int isnull = WPACKET_is_null_buf(pkt); | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-11 00:52:15 +08:00
										 |  |  |     if (!WPACKET_start_sub_packet(pkt)) | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-11 00:52:15 +08:00
										 |  |  |     if (!isnull) { | 
					
						
							|  |  |  |         if (!WPACKET_init_null(&tmppkt, 0)) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         dummypkt = &tmppkt; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         /* If the input packet has a NULL buffer, we don't need a dummy packet */ | 
					
						
							|  |  |  |         dummypkt = pkt; | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-06-11 00:52:15 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Calculate the content length */ | 
					
						
							|  |  |  |     if (!encode_der_integer(dummypkt, r) | 
					
						
							|  |  |  |             || !encode_der_integer(dummypkt, s) | 
					
						
							|  |  |  |             || !WPACKET_get_length(dummypkt, &cont_len) | 
					
						
							|  |  |  |             || (!isnull && !WPACKET_finish(dummypkt))) { | 
					
						
							|  |  |  |         if (!isnull) | 
					
						
							|  |  |  |             WPACKET_cleanup(dummypkt); | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2019-06-11 00:52:15 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Add the tag and length bytes */ | 
					
						
							|  |  |  |     if (!WPACKET_put_bytes_u8(pkt, ID_SEQUENCE) | 
					
						
							|  |  |  |             || !encode_der_length(pkt, cont_len) | 
					
						
							|  |  |  |                /*
 | 
					
						
							|  |  |  |                 * Really encode the integers. We already wrote to the main pkt | 
					
						
							|  |  |  |                 * if it had a NULL buffer, so don't do it again | 
					
						
							|  |  |  |                 */ | 
					
						
							|  |  |  |             || (!isnull && !encode_der_integer(pkt, r)) | 
					
						
							|  |  |  |             || (!isnull && !encode_der_integer(pkt, s)) | 
					
						
							|  |  |  |             || !WPACKET_close(pkt)) | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2019-06-11 00:52:15 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2019-06-08 00:40:21 +08:00
										 |  |  |  * Decodes the DER length octets in pkt and initialises subpkt with the | 
					
						
							|  |  |  |  * following bytes of that length. | 
					
						
							| 
									
										
										
										
											2019-07-12 04:27:19 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-06-08 00:40:21 +08:00
										 |  |  |  * Returns 1 on success or 0 on failure. | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2020-09-30 10:15:12 +08:00
										 |  |  | int ossl_decode_der_length(PACKET *pkt, PACKET *subpkt) | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-06-08 00:40:21 +08:00
										 |  |  |     unsigned int byte; | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-08 00:40:21 +08:00
										 |  |  |     if (!PACKET_get_1(pkt, &byte)) | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2019-06-08 00:40:21 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (byte < 0x80) | 
					
						
							|  |  |  |         return PACKET_get_sub_packet(pkt, subpkt, (size_t)byte); | 
					
						
							|  |  |  |     if (byte == 0x81) | 
					
						
							|  |  |  |         return PACKET_get_length_prefixed_1(pkt, subpkt); | 
					
						
							|  |  |  |     if (byte == 0x82) | 
					
						
							|  |  |  |         return PACKET_get_length_prefixed_2(pkt, subpkt); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Too large, invalid, or not DER. */ | 
					
						
							|  |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2019-06-08 00:40:21 +08:00
										 |  |  |  * Decodes a single ASN.1 INTEGER value from pkt, which must be DER encoded, | 
					
						
							|  |  |  |  * and updates n with the decoded value. | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * The BIGNUM, n, must have already been allocated by calling BN_new(). | 
					
						
							| 
									
										
										
										
											2019-06-08 00:40:21 +08:00
										 |  |  |  * pkt must not be NULL. | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * An attempt to consume more than len bytes results in an error. | 
					
						
							| 
									
										
										
										
											2019-06-08 00:40:21 +08:00
										 |  |  |  * Returns 1 on success or 0 on error. | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-06-08 00:40:21 +08:00
										 |  |  |  * If the PACKET is supposed to only contain a single INTEGER value with no | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  |  * trailing garbage then it is up to the caller to verify that all bytes | 
					
						
							|  |  |  |  * were consumed. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2020-09-30 10:15:12 +08:00
										 |  |  | int ossl_decode_der_integer(PACKET *pkt, BIGNUM *n) | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-06-08 00:40:21 +08:00
										 |  |  |     PACKET contpkt, tmppkt; | 
					
						
							|  |  |  |     unsigned int tag, tmp; | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-08 00:40:21 +08:00
										 |  |  |     /* Check we have an integer and get the content bytes */ | 
					
						
							|  |  |  |     if (!PACKET_get_1(pkt, &tag) | 
					
						
							|  |  |  |             || tag != ID_INTEGER | 
					
						
							| 
									
										
										
										
											2020-09-30 10:15:12 +08:00
										 |  |  |             || !ossl_decode_der_length(pkt, &contpkt)) | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-08 00:40:21 +08:00
										 |  |  |     /* Peek ahead at the first bytes to check for proper encoding */ | 
					
						
							|  |  |  |     tmppkt = contpkt; | 
					
						
							|  |  |  |     /* The INTEGER must be positive */ | 
					
						
							|  |  |  |     if (!PACKET_get_1(&tmppkt, &tmp) | 
					
						
							|  |  |  |             || (tmp & 0x80) != 0) | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2019-06-08 00:40:21 +08:00
										 |  |  |     /* If there a zero padding byte the next byte must have the msb set */ | 
					
						
							|  |  |  |     if (PACKET_remaining(&tmppkt) > 0 && tmp == 0) { | 
					
						
							|  |  |  |         if (!PACKET_get_1(&tmppkt, &tmp) | 
					
						
							|  |  |  |                 || (tmp & 0x80) == 0) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (BN_bin2bn(PACKET_data(&contpkt), | 
					
						
							|  |  |  |                   (int)PACKET_remaining(&contpkt), n) == NULL) | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2019-06-08 00:40:21 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Decodes a single DSA-Sig-Value or ECDSA-Sig-Value from *ppin, which must be | 
					
						
							|  |  |  |  * DER encoded, updates r and s with the decoded values, and increments *ppin | 
					
						
							|  |  |  |  * past the data that was consumed. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The BIGNUMs, r and s, must have already been allocated by calls to BN_new(). | 
					
						
							|  |  |  |  * ppin and *ppin must not be NULL. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * An attempt to consume more than len bytes results in an error. | 
					
						
							|  |  |  |  * Returns the number of bytes of input consumed or 0 if an error occurs. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * If the buffer is supposed to only contain a single [EC]DSA-Sig-Value with no | 
					
						
							|  |  |  |  * trailing garbage then it is up to the caller to verify that all bytes | 
					
						
							|  |  |  |  * were consumed. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2020-09-30 10:15:12 +08:00
										 |  |  | size_t ossl_decode_der_dsa_sig(BIGNUM *r, BIGNUM *s, | 
					
						
							|  |  |  |                                const unsigned char **ppin, size_t len) | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     size_t consumed; | 
					
						
							| 
									
										
										
										
											2019-06-08 00:40:21 +08:00
										 |  |  |     PACKET pkt, contpkt; | 
					
						
							|  |  |  |     unsigned int tag; | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-08 00:40:21 +08:00
										 |  |  |     if (!PACKET_buf_init(&pkt, *ppin, len) | 
					
						
							|  |  |  |             || !PACKET_get_1(&pkt, &tag) | 
					
						
							|  |  |  |             || tag != ID_SEQUENCE | 
					
						
							| 
									
										
										
										
											2020-09-30 10:15:12 +08:00
										 |  |  |             || !ossl_decode_der_length(&pkt, &contpkt) | 
					
						
							|  |  |  |             || !ossl_decode_der_integer(&contpkt, r) | 
					
						
							|  |  |  |             || !ossl_decode_der_integer(&contpkt, s) | 
					
						
							| 
									
										
										
										
											2019-06-08 00:40:21 +08:00
										 |  |  |             || PACKET_remaining(&contpkt) != 0) | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2019-06-08 00:40:21 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     consumed = PACKET_data(&pkt) - *ppin; | 
					
						
							|  |  |  |     *ppin += consumed; | 
					
						
							| 
									
										
										
										
											2019-06-03 12:58:54 +08:00
										 |  |  |     return consumed; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 |