stack.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363
  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
  77. (STACK * sk, int (*c) (const char *const *, const char *const *)))
  78. (const char *const *, const char *const *) {
  79. int (*old) (const char *const *, const char *const *) = sk->comp;
  80. if (sk->comp != c)
  81. sk->sorted = 0;
  82. sk->comp = c;
  83. return old;
  84. }
  85. STACK *sk_dup(STACK * sk)
  86. {
  87. STACK *ret;
  88. char **s;
  89. if ((ret = sk_new(sk->comp)) == NULL)
  90. goto err;
  91. s = (char **)OPENSSL_realloc((char *)ret->data,
  92. (unsigned int)sizeof(char *) *
  93. sk->num_alloc);
  94. if (s == NULL)
  95. goto err;
  96. ret->data = s;
  97. ret->num = sk->num;
  98. memcpy(ret->data, sk->data, sizeof(char *) * sk->num);
  99. ret->sorted = sk->sorted;
  100. ret->num_alloc = sk->num_alloc;
  101. ret->comp = sk->comp;
  102. return (ret);
  103. err:
  104. if (ret)
  105. sk_free(ret);
  106. return (NULL);
  107. }
  108. STACK *sk_new_null(void)
  109. {
  110. return sk_new((int (*)(const char *const *, const char *const *))0);
  111. }
  112. STACK *sk_new(int (*c) (const char *const *, const char *const *))
  113. {
  114. STACK *ret;
  115. int i;
  116. if ((ret = (STACK *) OPENSSL_malloc(sizeof(STACK))) == NULL)
  117. goto err;
  118. if ((ret->data =
  119. (char **)OPENSSL_malloc(sizeof(char *) * MIN_NODES)) == NULL)
  120. goto err;
  121. for (i = 0; i < MIN_NODES; i++)
  122. ret->data[i] = NULL;
  123. ret->comp = c;
  124. ret->num_alloc = MIN_NODES;
  125. ret->num = 0;
  126. ret->sorted = 0;
  127. return (ret);
  128. err:
  129. if (ret)
  130. OPENSSL_free(ret);
  131. return (NULL);
  132. }
  133. int sk_insert(STACK * st, char *data, int loc)
  134. {
  135. char **s;
  136. if (st == NULL)
  137. return 0;
  138. if (st->num_alloc <= st->num + 1) {
  139. s = (char **)OPENSSL_realloc((char *)st->data,
  140. (unsigned int)sizeof(char *) *
  141. st->num_alloc * 2);
  142. if (s == NULL)
  143. return (0);
  144. st->data = s;
  145. st->num_alloc *= 2;
  146. }
  147. if ((loc >= (int)st->num) || (loc < 0))
  148. st->data[st->num] = data;
  149. else {
  150. int i;
  151. char **f, **t;
  152. f = (char **)st->data;
  153. t = (char **)&(st->data[1]);
  154. for (i = st->num; i >= loc; i--)
  155. t[i] = f[i];
  156. #ifdef undef /* no memmove on sunos :-( */
  157. memmove((char *)&(st->data[loc + 1]),
  158. (char *)&(st->data[loc]), sizeof(char *) * (st->num - loc));
  159. #endif
  160. st->data[loc] = data;
  161. }
  162. st->num++;
  163. st->sorted = 0;
  164. return (st->num);
  165. }
  166. char *sk_delete_ptr(STACK * st, char *p)
  167. {
  168. int i;
  169. for (i = 0; i < st->num; i++)
  170. if (st->data[i] == p)
  171. return (sk_delete(st, i));
  172. return (NULL);
  173. }
  174. char *sk_delete(STACK * st, int loc)
  175. {
  176. char *ret;
  177. int i, j;
  178. if (!st || (loc < 0) || (loc >= st->num))
  179. return NULL;
  180. ret = st->data[loc];
  181. if (loc != st->num - 1) {
  182. j = st->num - 1;
  183. for (i = loc; i < j; i++)
  184. st->data[i] = st->data[i + 1];
  185. /*
  186. * In theory memcpy is not safe for this memcpy( &(st->data[loc]),
  187. * &(st->data[loc+1]), sizeof(char *)*(st->num-loc-1));
  188. */
  189. }
  190. st->num--;
  191. return (ret);
  192. }
  193. static int internal_find(STACK * st, char *data, int ret_val_options)
  194. {
  195. char **r;
  196. int i;
  197. int (*comp_func) (const void *, const void *);
  198. if (st == NULL)
  199. return -1;
  200. if (st->comp == NULL) {
  201. for (i = 0; i < st->num; i++)
  202. if (st->data[i] == data)
  203. return (i);
  204. return (-1);
  205. }
  206. sk_sort(st);
  207. if (data == NULL)
  208. return (-1);
  209. /*
  210. * This (and the "qsort" below) are the two places in OpenSSL where we
  211. * need to convert from our standard (type **,type **) compare callback
  212. * type to the (void *,void *) type required by bsearch. However, the
  213. * "data" it is being called(back) with are not (type *) pointers, but
  214. * the *pointers* to (type *) pointers, so we get our extra level of
  215. * pointer dereferencing that way.
  216. */
  217. comp_func = (int (*)(const void *, const void *))(st->comp);
  218. r = (char **)OBJ_bsearch_ex((char *)&data, (char *)st->data,
  219. st->num, sizeof(char *), comp_func,
  220. ret_val_options);
  221. if (r == NULL)
  222. return (-1);
  223. return ((int)(r - st->data));
  224. }
  225. int sk_find(STACK * st, char *data)
  226. {
  227. return internal_find(st, data, OBJ_BSEARCH_FIRST_VALUE_ON_MATCH);
  228. }
  229. int sk_find_ex(STACK * st, char *data)
  230. {
  231. return internal_find(st, data, OBJ_BSEARCH_VALUE_ON_NOMATCH);
  232. }
  233. int sk_push(STACK * st, char *data)
  234. {
  235. return (sk_insert(st, data, st->num));
  236. }
  237. int sk_unshift(STACK * st, char *data)
  238. {
  239. return (sk_insert(st, data, 0));
  240. }
  241. char *sk_shift(STACK * st)
  242. {
  243. if (st == NULL)
  244. return (NULL);
  245. if (st->num <= 0)
  246. return (NULL);
  247. return (sk_delete(st, 0));
  248. }
  249. char *sk_pop(STACK * st)
  250. {
  251. if (st == NULL)
  252. return (NULL);
  253. if (st->num <= 0)
  254. return (NULL);
  255. return (sk_delete(st, st->num - 1));
  256. }
  257. void sk_zero(STACK * st)
  258. {
  259. if (st == NULL)
  260. return;
  261. if (st->num <= 0)
  262. return;
  263. memset((char *)st->data, 0, sizeof(st->data) * st->num);
  264. st->num = 0;
  265. }
  266. void sk_pop_free(STACK * st, void (*func) (void *))
  267. {
  268. int i;
  269. if (st == NULL)
  270. return;
  271. for (i = 0; i < st->num; i++)
  272. if (st->data[i] != NULL)
  273. func(st->data[i]);
  274. sk_free(st);
  275. }
  276. void sk_free(STACK * st)
  277. {
  278. if (st == NULL)
  279. return;
  280. if (st->data != NULL)
  281. OPENSSL_free(st->data);
  282. OPENSSL_free(st);
  283. }
  284. int sk_num(const STACK * st)
  285. {
  286. if (st == NULL)
  287. return -1;
  288. return st->num;
  289. }
  290. char *sk_value(const STACK * st, int i)
  291. {
  292. if (!st || (i < 0) || (i >= st->num))
  293. return NULL;
  294. return st->data[i];
  295. }
  296. char *sk_set(STACK * st, int i, char *value)
  297. {
  298. if (!st || (i < 0) || (i >= st->num))
  299. return NULL;
  300. return (st->data[i] = value);
  301. }
  302. void sk_sort(STACK * st)
  303. {
  304. if (st && !st->sorted) {
  305. int (*comp_func) (const void *, const void *);
  306. /*
  307. * same comment as in sk_find ... previously st->comp was declared as
  308. * a (void*,void*) callback type, but this made the population of the
  309. * callback pointer illogical - our callbacks compare type** with
  310. * type**, so we leave the casting until absolutely necessary (ie.
  311. * "now").
  312. */
  313. comp_func = (int (*)(const void *, const void *))(st->comp);
  314. qsort(st->data, st->num, sizeof(char *), comp_func);
  315. st->sorted = 1;
  316. }
  317. }
  318. int sk_is_sorted(const STACK * st)
  319. {
  320. if (!st)
  321. return 1;
  322. return st->sorted;
  323. }