You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

387 lines
9.4 KiB

  1. /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  2. * All rights reserved.
  3. *
  4. * This package is an SSL implementation written
  5. * by Eric Young (eay@cryptsoft.com).
  6. * The implementation was written so as to conform with Netscapes SSL.
  7. *
  8. * This library is free for commercial and non-commercial use as long as
  9. * the following conditions are aheared to. The following conditions
  10. * apply to all code found in this distribution, be it the RC4, RSA,
  11. * lhash, DES, etc., code; not just the SSL code. The SSL documentation
  12. * included with this distribution is covered by the same copyright terms
  13. * except that the holder is Tim Hudson (tjh@cryptsoft.com).
  14. *
  15. * Copyright remains Eric Young's, and as such any Copyright notices in
  16. * the code are not to be removed.
  17. * If this package is used in a product, Eric Young should be given attribution
  18. * as the author of the parts of the library used.
  19. * This can be in the form of a textual message at program startup or
  20. * in documentation (online or textual) provided with the package.
  21. *
  22. * Redistribution and use in source and binary forms, with or without
  23. * modification, are permitted provided that the following conditions
  24. * are met:
  25. * 1. Redistributions of source code must retain the copyright
  26. * notice, this list of conditions and the following disclaimer.
  27. * 2. Redistributions in binary form must reproduce the above copyright
  28. * notice, this list of conditions and the following disclaimer in the
  29. * documentation and/or other materials provided with the distribution.
  30. * 3. All advertising materials mentioning features or use of this software
  31. * must display the following acknowledgement:
  32. * "This product includes cryptographic software written by
  33. * Eric Young (eay@cryptsoft.com)"
  34. * The word 'cryptographic' can be left out if the rouines from the library
  35. * being used are not cryptographic related :-).
  36. * 4. If you include any Windows specific code (or a derivative thereof) from
  37. * the apps directory (application code) you must include an acknowledgement:
  38. * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
  39. *
  40. * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
  41. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  42. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  43. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  44. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  45. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  46. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  47. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  48. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  49. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  50. * SUCH DAMAGE.
  51. *
  52. * The licence and distribution terms for any publically available version or
  53. * derivative of this code cannot be changed. i.e. this code cannot simply be
  54. * copied and put under another distribution licence
  55. * [including the GNU Public Licence.] */
  56. #include <openssl/stack.h>
  57. #include <string.h>
  58. #include <openssl/mem.h>
  59. /* kMinSize is the number of pointers that will be initially allocated in a new
  60. * stack. */
  61. static const size_t kMinSize = 4;
  62. _STACK *sk_new(stack_cmp_func comp) {
  63. _STACK *ret;
  64. ret = OPENSSL_malloc(sizeof(_STACK));
  65. if (ret == NULL) {
  66. goto err;
  67. }
  68. memset(ret, 0, sizeof(_STACK));
  69. ret->data = OPENSSL_malloc(sizeof(void *) * kMinSize);
  70. if (ret->data == NULL) {
  71. goto err;
  72. }
  73. memset(ret->data, 0, sizeof(void *) * kMinSize);
  74. ret->comp = comp;
  75. ret->num_alloc = kMinSize;
  76. return ret;
  77. err:
  78. OPENSSL_free(ret);
  79. return NULL;
  80. }
  81. _STACK *sk_new_null(void) { return sk_new(NULL); }
  82. size_t sk_num(const _STACK *sk) {
  83. if (sk == NULL) {
  84. return 0;
  85. }
  86. return sk->num;
  87. }
  88. void sk_zero(_STACK *sk) {
  89. if (sk == NULL || sk->num == 0) {
  90. return;
  91. }
  92. memset(sk->data, 0, sizeof(void*) * sk->num);
  93. sk->num = 0;
  94. sk->sorted = 0;
  95. }
  96. void *sk_value(const _STACK *sk, size_t i) {
  97. if (!sk || i >= sk->num) {
  98. return NULL;
  99. }
  100. return sk->data[i];
  101. }
  102. void *sk_set(_STACK *sk, size_t i, void *value) {
  103. if (!sk || i >= sk->num) {
  104. return NULL;
  105. }
  106. return sk->data[i] = value;
  107. }
  108. void sk_free(_STACK *sk) {
  109. if (sk == NULL) {
  110. return;
  111. }
  112. OPENSSL_free(sk->data);
  113. OPENSSL_free(sk);
  114. }
  115. void sk_pop_free(_STACK *sk, void (*func)(void *)) {
  116. size_t i;
  117. if (sk == NULL) {
  118. return;
  119. }
  120. for (i = 0; i < sk->num; i++) {
  121. if (sk->data[i] != NULL) {
  122. func(sk->data[i]);
  123. }
  124. }
  125. sk_free(sk);
  126. }
  127. size_t sk_insert(_STACK *sk, void *p, size_t where) {
  128. if (sk == NULL) {
  129. return 0;
  130. }
  131. if (sk->num_alloc <= sk->num + 1) {
  132. /* Attempt to double the size of the array. */
  133. size_t new_alloc = sk->num_alloc << 1;
  134. size_t alloc_size = new_alloc * sizeof(void *);
  135. void **data;
  136. /* If the doubling overflowed, try to increment. */
  137. if (new_alloc < sk->num_alloc || alloc_size / sizeof(void *) != new_alloc) {
  138. new_alloc = sk->num_alloc + 1;
  139. alloc_size = new_alloc * sizeof(void *);
  140. }
  141. /* If the increment also overflowed, fail. */
  142. if (new_alloc < sk->num_alloc || alloc_size / sizeof(void *) != new_alloc) {
  143. return 0;
  144. }
  145. data = OPENSSL_realloc(sk->data, alloc_size);
  146. if (data == NULL) {
  147. return 0;
  148. }
  149. sk->data = data;
  150. sk->num_alloc = new_alloc;
  151. }
  152. if (where >= sk->num) {
  153. sk->data[sk->num] = p;
  154. } else {
  155. memmove(&sk->data[where + 1], &sk->data[where],
  156. sizeof(void *) * (sk->num - where));
  157. sk->data[where] = p;
  158. }
  159. sk->num++;
  160. sk->sorted = 0;
  161. return sk->num;
  162. }
  163. void *sk_delete(_STACK *sk, size_t where) {
  164. void *ret;
  165. if (!sk || where >= sk->num) {
  166. return NULL;
  167. }
  168. ret = sk->data[where];
  169. if (where != sk->num - 1) {
  170. memmove(&sk->data[where], &sk->data[where + 1],
  171. sizeof(void *) * (sk->num - where - 1));
  172. }
  173. sk->num--;
  174. return ret;
  175. }
  176. void *sk_delete_ptr(_STACK *sk, void *p) {
  177. size_t i;
  178. if (sk == NULL) {
  179. return NULL;
  180. }
  181. for (i = 0; i < sk->num; i++) {
  182. if (sk->data[i] == p) {
  183. return sk_delete(sk, i);
  184. }
  185. }
  186. return NULL;
  187. }
  188. int sk_find(_STACK *sk, size_t *out_index, void *p) {
  189. const void *const *r;
  190. size_t i;
  191. int (*comp_func)(const void *,const void *);
  192. if (sk == NULL) {
  193. return 0;
  194. }
  195. if (sk->comp == NULL) {
  196. /* Use pointer equality when no comparison function has been set. */
  197. for (i = 0; i < sk->num; i++) {
  198. if (sk->data[i] == p) {
  199. if (out_index) {
  200. *out_index = i;
  201. }
  202. return 1;
  203. }
  204. }
  205. return 0;
  206. }
  207. if (p == NULL) {
  208. return 0;
  209. }
  210. sk_sort(sk);
  211. /* sk->comp is a function that takes pointers to pointers to elements, but
  212. * qsort and bsearch take a comparison function that just takes pointers to
  213. * elements. However, since we're passing an array of pointers to
  214. * qsort/bsearch, we can just cast the comparison function and everything
  215. * works. */
  216. comp_func=(int (*)(const void *,const void *))(sk->comp);
  217. r = bsearch(&p, sk->data, sk->num, sizeof(void *), comp_func);
  218. if (r == NULL) {
  219. return 0;
  220. }
  221. i = ((void **)r) - sk->data;
  222. /* This function always returns the first result. */
  223. while (i > 0 && sk->comp((const void**) &p, (const void**) &sk->data[i-1]) == 0) {
  224. i--;
  225. }
  226. if (out_index) {
  227. *out_index = i;
  228. }
  229. return 1;
  230. }
  231. void *sk_shift(_STACK *sk) {
  232. if (sk == NULL) {
  233. return NULL;
  234. }
  235. if (sk->num == 0) {
  236. return NULL;
  237. }
  238. return sk_delete(sk, 0);
  239. }
  240. size_t sk_push(_STACK *sk, void *p) { return (sk_insert(sk, p, sk->num)); }
  241. void *sk_pop(_STACK *sk) {
  242. if (sk == NULL) {
  243. return NULL;
  244. }
  245. if (sk->num == 0) {
  246. return NULL;
  247. }
  248. return sk_delete(sk, sk->num - 1);
  249. }
  250. _STACK *sk_dup(const _STACK *sk) {
  251. _STACK *ret;
  252. void **s;
  253. if (sk == NULL) {
  254. return NULL;
  255. }
  256. ret = sk_new(sk->comp);
  257. if (ret == NULL) {
  258. goto err;
  259. }
  260. s = (void **)OPENSSL_realloc(ret->data, sizeof(void *) * sk->num_alloc);
  261. if (s == NULL) {
  262. goto err;
  263. }
  264. ret->data = s;
  265. ret->num = sk->num;
  266. memcpy(ret->data, sk->data, sizeof(void *) * sk->num);
  267. ret->sorted = sk->sorted;
  268. ret->num_alloc = sk->num_alloc;
  269. ret->comp = sk->comp;
  270. return ret;
  271. err:
  272. sk_free(ret);
  273. return NULL;
  274. }
  275. void sk_sort(_STACK *sk) {
  276. int (*comp_func)(const void *,const void *);
  277. if (sk == NULL || sk->sorted) {
  278. return;
  279. }
  280. /* See the comment in sk_find about this cast. */
  281. comp_func = (int (*)(const void *, const void *))(sk->comp);
  282. qsort(sk->data, sk->num, sizeof(void *), comp_func);
  283. sk->sorted = 1;
  284. }
  285. int sk_is_sorted(const _STACK *sk) {
  286. if (!sk) {
  287. return 1;
  288. }
  289. return sk->sorted;
  290. }
  291. stack_cmp_func sk_set_cmp_func(_STACK *sk, stack_cmp_func comp) {
  292. stack_cmp_func old = sk->comp;
  293. if (sk->comp != comp) {
  294. sk->sorted = 0;
  295. }
  296. sk->comp = comp;
  297. return old;
  298. }
  299. _STACK *sk_deep_copy(const _STACK *sk, void *(*copy_func)(void *),
  300. void (*free_func)(void *)) {
  301. _STACK *ret = sk_dup(sk);
  302. if (ret == NULL) {
  303. return NULL;
  304. }
  305. size_t i;
  306. for (i = 0; i < ret->num; i++) {
  307. if (ret->data[i] == NULL) {
  308. continue;
  309. }
  310. ret->data[i] = copy_func(ret->data[i]);
  311. if (ret->data[i] == NULL) {
  312. size_t j;
  313. for (j = 0; j < i; j++) {
  314. if (ret->data[j] != NULL) {
  315. free_func(ret->data[j]);
  316. }
  317. }
  318. sk_free(ret);
  319. return NULL;
  320. }
  321. }
  322. return ret;
  323. }