| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright 2017 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2017-06-15 11:34:28 +08:00
										 |  |  |  * Copyright (c) 2017, Oracle and/or its affiliates.  All rights reserved. | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-12-06 20:05:25 +08:00
										 |  |  |  * Licensed under the Apache License 2.0 (the "License").  You may not use | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |  * 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
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							|  |  |  | #include <string.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <openssl/opensslconf.h>
 | 
					
						
							|  |  |  | #include <openssl/safestack.h>
 | 
					
						
							|  |  |  | #include <openssl/err.h>
 | 
					
						
							|  |  |  | #include <openssl/crypto.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-22 20:35:43 +08:00
										 |  |  | #include "internal/nelem.h"
 | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  | #include "testutil.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* The macros below generate unused functions which error out one of the clang
 | 
					
						
							|  |  |  |  * builds.  We disable this check here. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #ifdef __clang__
 | 
					
						
							|  |  |  | #pragma clang diagnostic ignored "-Wunused-function"
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct { | 
					
						
							|  |  |  |     int n; | 
					
						
							|  |  |  |     char c; | 
					
						
							|  |  |  | } SS; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef union { | 
					
						
							|  |  |  |     int n; | 
					
						
							|  |  |  |     char c; | 
					
						
							|  |  |  | } SU; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | DEFINE_SPECIAL_STACK_OF(sint, int) | 
					
						
							|  |  |  | DEFINE_SPECIAL_STACK_OF_CONST(uchar, unsigned char) | 
					
						
							|  |  |  | DEFINE_STACK_OF(SS) | 
					
						
							|  |  |  | DEFINE_STACK_OF_CONST(SU) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int int_compare(const int *const *a, const int *const *b) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (**a < **b) | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     if (**a > **b) | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-17 08:10:07 +08:00
										 |  |  | static int test_int_stack(int reserve) | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     static int v[] = { 1, 2, -4, 16, 999, 1, -173, 1, 9 }; | 
					
						
							| 
									
										
										
										
											2017-03-17 01:32:32 +08:00
										 |  |  |     static int notpresent = -1; | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |     const int n = OSSL_NELEM(v); | 
					
						
							|  |  |  |     static struct { | 
					
						
							|  |  |  |         int value; | 
					
						
							|  |  |  |         int unsorted; | 
					
						
							|  |  |  |         int sorted; | 
					
						
							|  |  |  |         int ex; | 
					
						
							|  |  |  |     } finds[] = { | 
					
						
							|  |  |  |         { 2,    1,  5,  5   }, | 
					
						
							|  |  |  |         { 9,    7,  6,  6   }, | 
					
						
							|  |  |  |         { -173, 5,  0,  0   }, | 
					
						
							|  |  |  |         { 999,  3,  8,  8   }, | 
					
						
							|  |  |  |         { 0,   -1, -1,  1   } | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  |     const int n_finds = OSSL_NELEM(finds); | 
					
						
							|  |  |  |     static struct { | 
					
						
							|  |  |  |         int value; | 
					
						
							|  |  |  |         int ex; | 
					
						
							|  |  |  |     } exfinds[] = { | 
					
						
							|  |  |  |         { 3,    5   }, | 
					
						
							|  |  |  |         { 1000, 8   }, | 
					
						
							|  |  |  |         { 20,   8   }, | 
					
						
							|  |  |  |         { -999, 0   }, | 
					
						
							|  |  |  |         { -5,   0   }, | 
					
						
							|  |  |  |         { 8,    5   } | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  |     const int n_exfinds = OSSL_NELEM(exfinds); | 
					
						
							|  |  |  |     STACK_OF(sint) *s = sk_sint_new_null(); | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  |     int testresult = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-17 08:10:07 +08:00
										 |  |  |     if (!TEST_ptr(s) | 
					
						
							|  |  |  |         || (reserve > 0 && !TEST_true(sk_sint_reserve(s, 5 * reserve)))) | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |     /* Check push and num */ | 
					
						
							|  |  |  |     for (i = 0; i < n; i++) { | 
					
						
							| 
									
										
										
										
											2017-03-22 12:27:55 +08:00
										 |  |  |         if (!TEST_int_eq(sk_sint_num(s), i)) { | 
					
						
							|  |  |  |             TEST_info("int stack size %d", i); | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         sk_sint_push(s, v + i); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-03-22 12:27:55 +08:00
										 |  |  |     if (!TEST_int_eq(sk_sint_num(s), n)) | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |         goto end; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* check the values */ | 
					
						
							|  |  |  |     for (i = 0; i < n; i++) | 
					
						
							| 
									
										
										
										
											2017-03-22 12:27:55 +08:00
										 |  |  |         if (!TEST_ptr_eq(sk_sint_value(s, i), v + i)) { | 
					
						
							|  |  |  |             TEST_info("int value %d", i); | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* find unsorted -- the pointers are compared */ | 
					
						
							| 
									
										
										
										
											2017-03-17 01:32:32 +08:00
										 |  |  |     for (i = 0; i < n_finds; i++) { | 
					
						
							|  |  |  |         int *val = (finds[i].unsorted == -1) ? ¬present | 
					
						
							|  |  |  |                                              : v + finds[i].unsorted; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-22 12:27:55 +08:00
										 |  |  |         if (!TEST_int_eq(sk_sint_find(s, val), finds[i].unsorted)) { | 
					
						
							|  |  |  |             TEST_info("int unsorted find %d", i); | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-03-17 01:32:32 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* find_ex unsorted */ | 
					
						
							| 
									
										
										
										
											2017-03-17 01:32:32 +08:00
										 |  |  |     for (i = 0; i < n_finds; i++) { | 
					
						
							|  |  |  |         int *val = (finds[i].unsorted == -1) ? ¬present | 
					
						
							|  |  |  |                                              : v + finds[i].unsorted; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-22 12:27:55 +08:00
										 |  |  |         if (!TEST_int_eq(sk_sint_find_ex(s, val), finds[i].unsorted)) { | 
					
						
							|  |  |  |             TEST_info("int unsorted find_ex %d", i); | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-03-17 01:32:32 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* sorting */ | 
					
						
							| 
									
										
										
										
											2017-03-22 12:27:55 +08:00
										 |  |  |     if (!TEST_false(sk_sint_is_sorted(s))) | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |         goto end; | 
					
						
							|  |  |  |     sk_sint_set_cmp_func(s, &int_compare); | 
					
						
							|  |  |  |     sk_sint_sort(s); | 
					
						
							| 
									
										
										
										
											2017-03-22 12:27:55 +08:00
										 |  |  |     if (!TEST_true(sk_sint_is_sorted(s))) | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |         goto end; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* find sorted -- the value is matched so we don't need to locate it */ | 
					
						
							|  |  |  |     for (i = 0; i < n_finds; i++) | 
					
						
							| 
									
										
										
										
											2017-03-22 12:27:55 +08:00
										 |  |  |         if (!TEST_int_eq(sk_sint_find(s, &finds[i].value), finds[i].sorted)) { | 
					
						
							|  |  |  |             TEST_info("int sorted find %d", i); | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* find_ex sorted */ | 
					
						
							|  |  |  |     for (i = 0; i < n_finds; i++) | 
					
						
							| 
									
										
										
										
											2017-03-22 12:27:55 +08:00
										 |  |  |         if (!TEST_int_eq(sk_sint_find_ex(s, &finds[i].value), finds[i].ex)) { | 
					
						
							|  |  |  |             TEST_info("int sorted find_ex present %d", i); | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     for (i = 0; i < n_exfinds; i++) | 
					
						
							| 
									
										
										
										
											2017-03-22 12:27:55 +08:00
										 |  |  |         if (!TEST_int_eq(sk_sint_find_ex(s, &exfinds[i].value), exfinds[i].ex)){ | 
					
						
							|  |  |  |             TEST_info("int sorted find_ex absent %d", i); | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* shift */ | 
					
						
							| 
									
										
										
										
											2017-03-22 12:27:55 +08:00
										 |  |  |     if (!TEST_ptr_eq(sk_sint_shift(s), v + 6)) | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |         goto end; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     testresult = 1; | 
					
						
							|  |  |  | end: | 
					
						
							|  |  |  |     sk_sint_free(s); | 
					
						
							|  |  |  |     return testresult; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int uchar_compare(const unsigned char *const *a, | 
					
						
							|  |  |  |                          const unsigned char *const *b) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return **a - (signed int)**b; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-17 08:10:07 +08:00
										 |  |  | static int test_uchar_stack(int reserve) | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     static const unsigned char v[] = { 1, 3, 7, 5, 255, 0 }; | 
					
						
							|  |  |  |     const int n = OSSL_NELEM(v); | 
					
						
							|  |  |  |     STACK_OF(uchar) *s = sk_uchar_new(&uchar_compare), *r = NULL; | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  |     int testresult = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-17 08:10:07 +08:00
										 |  |  |     if (!TEST_ptr(s) | 
					
						
							|  |  |  |         || (reserve > 0 && !TEST_true(sk_uchar_reserve(s, 5 * reserve)))) | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |     /* unshift and num */ | 
					
						
							|  |  |  |     for (i = 0; i < n; i++) { | 
					
						
							| 
									
										
										
										
											2017-03-22 12:27:55 +08:00
										 |  |  |         if (!TEST_int_eq(sk_uchar_num(s), i)) { | 
					
						
							|  |  |  |             TEST_info("uchar stack size %d", i); | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         sk_uchar_unshift(s, v + i); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-03-22 12:27:55 +08:00
										 |  |  |     if (!TEST_int_eq(sk_uchar_num(s), n)) | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |         goto end; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* dup */ | 
					
						
							|  |  |  |     r = sk_uchar_dup(s); | 
					
						
							| 
									
										
										
										
											2017-03-22 12:27:55 +08:00
										 |  |  |     if (!TEST_int_eq(sk_uchar_num(r), n)) | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |         goto end; | 
					
						
							|  |  |  |     sk_uchar_sort(r); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* pop */ | 
					
						
							| 
									
										
										
										
											2017-06-06 23:35:43 +08:00
										 |  |  |     for (i = 0; i < n; i++) | 
					
						
							| 
									
										
										
										
											2017-03-22 12:27:55 +08:00
										 |  |  |         if (!TEST_ptr_eq(sk_uchar_pop(s), v + i)) { | 
					
						
							|  |  |  |             TEST_info("uchar pop %d", i); | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* free -- we rely on the debug malloc to detect leakage here */ | 
					
						
							|  |  |  |     sk_uchar_free(s); | 
					
						
							|  |  |  |     s = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* dup again */ | 
					
						
							| 
									
										
										
										
											2017-03-22 12:27:55 +08:00
										 |  |  |     if (!TEST_int_eq(sk_uchar_num(r), n)) | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |         goto end; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* zero */ | 
					
						
							|  |  |  |     sk_uchar_zero(r); | 
					
						
							| 
									
										
										
										
											2017-03-22 12:27:55 +08:00
										 |  |  |     if (!TEST_int_eq(sk_uchar_num(r), 0)) | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |         goto end; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* insert */ | 
					
						
							|  |  |  |     sk_uchar_insert(r, v, 0); | 
					
						
							|  |  |  |     sk_uchar_insert(r, v + 2, -1); | 
					
						
							|  |  |  |     sk_uchar_insert(r, v + 1, 1); | 
					
						
							|  |  |  |     for (i = 0; i < 3; i++) | 
					
						
							| 
									
										
										
										
											2017-03-22 12:27:55 +08:00
										 |  |  |         if (!TEST_ptr_eq(sk_uchar_value(r, i), v + i)) { | 
					
						
							|  |  |  |             TEST_info("uchar insert %d", i); | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* delete */ | 
					
						
							| 
									
										
										
										
											2017-03-22 12:27:55 +08:00
										 |  |  |     if (!TEST_ptr_null(sk_uchar_delete(r, 12))) | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |         goto end; | 
					
						
							| 
									
										
										
										
											2017-03-22 12:27:55 +08:00
										 |  |  |     if (!TEST_ptr_eq(sk_uchar_delete(r, 1), v + 1)) | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |         goto end; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* set */ | 
					
						
							|  |  |  |     sk_uchar_set(r, 1, v + 1); | 
					
						
							|  |  |  |     for (i = 0; i < 2; i++) | 
					
						
							| 
									
										
										
										
											2017-03-22 12:27:55 +08:00
										 |  |  |         if (!TEST_ptr_eq(sk_uchar_value(r, i), v + i)) { | 
					
						
							|  |  |  |             TEST_info("uchar set %d", i); | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     testresult = 1; | 
					
						
							|  |  |  | end: | 
					
						
							|  |  |  |     sk_uchar_free(r); | 
					
						
							|  |  |  |     sk_uchar_free(s); | 
					
						
							|  |  |  |     return testresult; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static SS *SS_copy(const SS *p) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     SS *q = OPENSSL_malloc(sizeof(*q)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (q != NULL) | 
					
						
							|  |  |  |         memcpy(q, p, sizeof(*q)); | 
					
						
							|  |  |  |     return q; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void SS_free(SS *p) { | 
					
						
							|  |  |  |     OPENSSL_free(p); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_SS_stack(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     STACK_OF(SS) *s = sk_SS_new_null(); | 
					
						
							|  |  |  |     STACK_OF(SS) *r = NULL; | 
					
						
							|  |  |  |     SS *v[10], *p; | 
					
						
							|  |  |  |     const int n = OSSL_NELEM(v); | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  |     int testresult = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* allocate and push */ | 
					
						
							|  |  |  |     for (i = 0; i < n; i++) { | 
					
						
							|  |  |  |         v[i] = OPENSSL_malloc(sizeof(*v[i])); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-22 12:27:55 +08:00
										 |  |  |         if (!TEST_ptr(v[i])) | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |             goto end; | 
					
						
							|  |  |  |         v[i]->n = i; | 
					
						
							|  |  |  |         v[i]->c = 'A' + i; | 
					
						
							| 
									
										
										
										
											2017-03-22 12:27:55 +08:00
										 |  |  |         if (!TEST_int_eq(sk_SS_num(s), i)) { | 
					
						
							|  |  |  |             TEST_info("SS stack size %d", i); | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         sk_SS_push(s, v[i]); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-03-22 12:27:55 +08:00
										 |  |  |     if (!TEST_int_eq(sk_SS_num(s), n)) | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |         goto end; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* deepcopy */ | 
					
						
							|  |  |  |     r = sk_SS_deep_copy(s, &SS_copy, &SS_free); | 
					
						
							| 
									
										
										
										
											2017-03-22 12:27:55 +08:00
										 |  |  |     if (!TEST_ptr(r)) | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |         goto end; | 
					
						
							|  |  |  |     for (i = 0; i < n; i++) { | 
					
						
							|  |  |  |         p = sk_SS_value(r, i); | 
					
						
							| 
									
										
										
										
											2017-03-22 12:27:55 +08:00
										 |  |  |         if (!TEST_ptr_ne(p, v[i])) { | 
					
						
							|  |  |  |             TEST_info("SS deepcopy non-copy %d", i); | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-03-22 12:27:55 +08:00
										 |  |  |         if (!TEST_int_eq(p->n, v[i]->n)) { | 
					
						
							|  |  |  |             TEST_info("test SS deepcopy int %d", i); | 
					
						
							|  |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (!TEST_char_eq(p->c, v[i]->c)) { | 
					
						
							|  |  |  |             TEST_info("SS deepcopy char %d", i); | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* pop_free - we rely on the malloc debug to catch the leak */ | 
					
						
							|  |  |  |     sk_SS_pop_free(r, &SS_free); | 
					
						
							|  |  |  |     r = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* delete_ptr */ | 
					
						
							| 
									
										
										
										
											2017-03-22 12:27:55 +08:00
										 |  |  |     p = sk_SS_delete_ptr(s, v[3]); | 
					
						
							|  |  |  |     if (!TEST_ptr(p)) | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |         goto end; | 
					
						
							|  |  |  |     SS_free(p); | 
					
						
							| 
									
										
										
										
											2017-03-22 12:27:55 +08:00
										 |  |  |     if (!TEST_int_eq(sk_SS_num(s), n - 1)) | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |         goto end; | 
					
						
							|  |  |  |     for (i = 0; i < n-1; i++) | 
					
						
							| 
									
										
										
										
											2017-03-22 12:27:55 +08:00
										 |  |  |         if (!TEST_ptr_eq(sk_SS_value(s, i), v[i<3 ? i : 1+i])) { | 
					
						
							|  |  |  |             TEST_info("SS delete ptr item %d", i); | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     testresult = 1; | 
					
						
							|  |  |  | end: | 
					
						
							|  |  |  |     sk_SS_pop_free(r, &SS_free); | 
					
						
							|  |  |  |     sk_SS_pop_free(s, &SS_free); | 
					
						
							|  |  |  |     return testresult; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_SU_stack(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     STACK_OF(SU) *s = sk_SU_new_null(); | 
					
						
							|  |  |  |     SU v[10]; | 
					
						
							|  |  |  |     const int n = OSSL_NELEM(v); | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  |     int testresult = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* allocate and push */ | 
					
						
							|  |  |  |     for (i = 0; i < n; i++) { | 
					
						
							|  |  |  |         if ((i & 1) == 0) | 
					
						
							|  |  |  |             v[i].n = i; | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             v[i].c = 'A' + i; | 
					
						
							| 
									
										
										
										
											2017-03-22 12:27:55 +08:00
										 |  |  |         if (!TEST_int_eq(sk_SU_num(s), i)) { | 
					
						
							|  |  |  |             TEST_info("SU stack size %d", i); | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         sk_SU_push(s, v + i); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-03-22 12:27:55 +08:00
										 |  |  |     if (!TEST_int_eq(sk_SU_num(s), n)) | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |         goto end; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* check the pointers are correct */ | 
					
						
							|  |  |  |     for (i = 0; i < n; i++) | 
					
						
							| 
									
										
										
										
											2017-03-22 12:27:55 +08:00
										 |  |  |         if (!TEST_ptr_eq(sk_SU_value(s, i),  v + i)) { | 
					
						
							|  |  |  |             TEST_info("SU pointer check %d", i); | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     testresult = 1; | 
					
						
							|  |  |  | end: | 
					
						
							|  |  |  |     sk_SU_free(s); | 
					
						
							|  |  |  |     return testresult; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-18 09:48:27 +08:00
										 |  |  | int setup_tests(void) | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-08-17 08:10:07 +08:00
										 |  |  |     ADD_ALL_TESTS(test_int_stack, 4); | 
					
						
							|  |  |  |     ADD_ALL_TESTS(test_uchar_stack, 4); | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  |     ADD_TEST(test_SS_stack); | 
					
						
							|  |  |  |     ADD_TEST(test_SU_stack); | 
					
						
							| 
									
										
										
										
											2017-07-18 09:48:27 +08:00
										 |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											2017-03-14 10:37:26 +08:00
										 |  |  | } |