Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

378 lignes
9.3 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. if (sk == NULL) {
  117. return;
  118. }
  119. for (size_t i = 0; i < sk->num; i++) {
  120. if (sk->data[i] != NULL) {
  121. func(sk->data[i]);
  122. }
  123. }
  124. sk_free(sk);
  125. }
  126. size_t sk_insert(_STACK *sk, void *p, size_t where) {
  127. if (sk == NULL) {
  128. return 0;
  129. }
  130. if (sk->num_alloc <= sk->num + 1) {
  131. /* Attempt to double the size of the array. */
  132. size_t new_alloc = sk->num_alloc << 1;
  133. size_t alloc_size = new_alloc * sizeof(void *);
  134. void **data;
  135. /* If the doubling overflowed, try to increment. */
  136. if (new_alloc < sk->num_alloc || alloc_size / sizeof(void *) != new_alloc) {
  137. new_alloc = sk->num_alloc + 1;
  138. alloc_size = new_alloc * sizeof(void *);
  139. }
  140. /* If the increment also overflowed, fail. */
  141. if (new_alloc < sk->num_alloc || alloc_size / sizeof(void *) != new_alloc) {
  142. return 0;
  143. }
  144. data = OPENSSL_realloc(sk->data, alloc_size);
  145. if (data == NULL) {
  146. return 0;
  147. }
  148. sk->data = data;
  149. sk->num_alloc = new_alloc;
  150. }
  151. if (where >= sk->num) {
  152. sk->data[sk->num] = p;
  153. } else {
  154. memmove(&sk->data[where + 1], &sk->data[where],
  155. sizeof(void *) * (sk->num - where));
  156. sk->data[where] = p;
  157. }
  158. sk->num++;
  159. sk->sorted = 0;
  160. return sk->num;
  161. }
  162. void *sk_delete(_STACK *sk, size_t where) {
  163. void *ret;
  164. if (!sk || where >= sk->num) {
  165. return NULL;
  166. }
  167. ret = sk->data[where];
  168. if (where != sk->num - 1) {
  169. memmove(&sk->data[where], &sk->data[where + 1],
  170. sizeof(void *) * (sk->num - where - 1));
  171. }
  172. sk->num--;
  173. return ret;
  174. }
  175. void *sk_delete_ptr(_STACK *sk, void *p) {
  176. if (sk == NULL) {
  177. return NULL;
  178. }
  179. for (size_t i = 0; i < sk->num; i++) {
  180. if (sk->data[i] == p) {
  181. return sk_delete(sk, i);
  182. }
  183. }
  184. return NULL;
  185. }
  186. int sk_find(_STACK *sk, size_t *out_index, void *p) {
  187. if (sk == NULL) {
  188. return 0;
  189. }
  190. if (sk->comp == NULL) {
  191. /* Use pointer equality when no comparison function has been set. */
  192. for (size_t i = 0; i < sk->num; i++) {
  193. if (sk->data[i] == p) {
  194. if (out_index) {
  195. *out_index = i;
  196. }
  197. return 1;
  198. }
  199. }
  200. return 0;
  201. }
  202. if (p == NULL) {
  203. return 0;
  204. }
  205. sk_sort(sk);
  206. /* sk->comp is a function that takes pointers to pointers to elements, but
  207. * qsort and bsearch take a comparison function that just takes pointers to
  208. * elements. However, since we're passing an array of pointers to
  209. * qsort/bsearch, we can just cast the comparison function and everything
  210. * works. */
  211. const void *const *r = bsearch(&p, sk->data, sk->num, sizeof(void *),
  212. (int (*)(const void *, const void *))sk->comp);
  213. if (r == NULL) {
  214. return 0;
  215. }
  216. size_t idx = ((void **)r) - sk->data;
  217. /* This function always returns the first result. */
  218. while (idx > 0 &&
  219. sk->comp((const void **)&p, (const void **)&sk->data[idx - 1]) == 0) {
  220. idx--;
  221. }
  222. if (out_index) {
  223. *out_index = idx;
  224. }
  225. return 1;
  226. }
  227. void *sk_shift(_STACK *sk) {
  228. if (sk == NULL) {
  229. return NULL;
  230. }
  231. if (sk->num == 0) {
  232. return NULL;
  233. }
  234. return sk_delete(sk, 0);
  235. }
  236. size_t sk_push(_STACK *sk, void *p) { return (sk_insert(sk, p, sk->num)); }
  237. void *sk_pop(_STACK *sk) {
  238. if (sk == NULL) {
  239. return NULL;
  240. }
  241. if (sk->num == 0) {
  242. return NULL;
  243. }
  244. return sk_delete(sk, sk->num - 1);
  245. }
  246. _STACK *sk_dup(const _STACK *sk) {
  247. _STACK *ret;
  248. void **s;
  249. if (sk == NULL) {
  250. return NULL;
  251. }
  252. ret = sk_new(sk->comp);
  253. if (ret == NULL) {
  254. goto err;
  255. }
  256. s = (void **)OPENSSL_realloc(ret->data, sizeof(void *) * sk->num_alloc);
  257. if (s == NULL) {
  258. goto err;
  259. }
  260. ret->data = s;
  261. ret->num = sk->num;
  262. memcpy(ret->data, sk->data, sizeof(void *) * sk->num);
  263. ret->sorted = sk->sorted;
  264. ret->num_alloc = sk->num_alloc;
  265. ret->comp = sk->comp;
  266. return ret;
  267. err:
  268. sk_free(ret);
  269. return NULL;
  270. }
  271. void sk_sort(_STACK *sk) {
  272. int (*comp_func)(const void *,const void *);
  273. if (sk == NULL || sk->comp == NULL || sk->sorted) {
  274. return;
  275. }
  276. /* See the comment in sk_find about this cast. */
  277. comp_func = (int (*)(const void *, const void *))(sk->comp);
  278. qsort(sk->data, sk->num, sizeof(void *), comp_func);
  279. sk->sorted = 1;
  280. }
  281. int sk_is_sorted(const _STACK *sk) {
  282. if (!sk) {
  283. return 1;
  284. }
  285. return sk->sorted;
  286. }
  287. stack_cmp_func sk_set_cmp_func(_STACK *sk, stack_cmp_func comp) {
  288. stack_cmp_func old = sk->comp;
  289. if (sk->comp != comp) {
  290. sk->sorted = 0;
  291. }
  292. sk->comp = comp;
  293. return old;
  294. }
  295. _STACK *sk_deep_copy(const _STACK *sk, void *(*copy_func)(void *),
  296. void (*free_func)(void *)) {
  297. _STACK *ret = sk_dup(sk);
  298. if (ret == NULL) {
  299. return NULL;
  300. }
  301. for (size_t i = 0; i < ret->num; i++) {
  302. if (ret->data[i] == NULL) {
  303. continue;
  304. }
  305. ret->data[i] = copy_func(ret->data[i]);
  306. if (ret->data[i] == NULL) {
  307. for (size_t j = 0; j < i; j++) {
  308. if (ret->data[j] != NULL) {
  309. free_func(ret->data[j]);
  310. }
  311. }
  312. sk_free(ret);
  313. return NULL;
  314. }
  315. }
  316. return ret;
  317. }