stack.c 10 KB

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