pqueue.c 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. /* crypto/pqueue/pqueue.c */
  2. /*
  3. * DTLS implementation written by Nagendra Modadugu
  4. * (nagendra@cs.stanford.edu) for the OpenSSL project 2005.
  5. */
  6. /* ====================================================================
  7. * Copyright (c) 1999-2005 The OpenSSL Project. All rights reserved.
  8. *
  9. * Redistribution and use in source and binary forms, with or without
  10. * modification, are permitted provided that the following conditions
  11. * are met:
  12. *
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions and the following disclaimer.
  15. *
  16. * 2. Redistributions in binary form must reproduce the above copyright
  17. * notice, this list of conditions and the following disclaimer in
  18. * the documentation and/or other materials provided with the
  19. * distribution.
  20. *
  21. * 3. All advertising materials mentioning features or use of this
  22. * software must display the following acknowledgment:
  23. * "This product includes software developed by the OpenSSL Project
  24. * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
  25. *
  26. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  27. * endorse or promote products derived from this software without
  28. * prior written permission. For written permission, please contact
  29. * openssl-core@OpenSSL.org.
  30. *
  31. * 5. Products derived from this software may not be called "OpenSSL"
  32. * nor may "OpenSSL" appear in their names without prior written
  33. * permission of the OpenSSL Project.
  34. *
  35. * 6. Redistributions of any form whatsoever must retain the following
  36. * acknowledgment:
  37. * "This product includes software developed by the OpenSSL Project
  38. * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
  39. *
  40. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  41. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  42. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  43. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  44. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  45. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  46. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  47. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  48. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  49. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  50. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  51. * OF THE POSSIBILITY OF SUCH DAMAGE.
  52. * ====================================================================
  53. *
  54. * This product includes cryptographic software written by Eric Young
  55. * (eay@cryptsoft.com). This product includes software written by Tim
  56. * Hudson (tjh@cryptsoft.com).
  57. *
  58. */
  59. #include "cryptlib.h"
  60. #include <openssl/bn.h>
  61. #include "pqueue.h"
  62. typedef struct _pqueue
  63. {
  64. pitem *items;
  65. int count;
  66. } pqueue_s;
  67. pitem *
  68. pitem_new(unsigned char *prio64be, void *data)
  69. {
  70. pitem *item = (pitem *) OPENSSL_malloc(sizeof(pitem));
  71. if (item == NULL) return NULL;
  72. memcpy(item->priority,prio64be,sizeof(item->priority));
  73. item->data = data;
  74. item->next = NULL;
  75. return item;
  76. }
  77. void
  78. pitem_free(pitem *item)
  79. {
  80. if (item == NULL) return;
  81. OPENSSL_free(item);
  82. }
  83. pqueue_s *
  84. pqueue_new()
  85. {
  86. pqueue_s *pq = (pqueue_s *) OPENSSL_malloc(sizeof(pqueue_s));
  87. if (pq == NULL) return NULL;
  88. memset(pq, 0x00, sizeof(pqueue_s));
  89. return pq;
  90. }
  91. void
  92. pqueue_free(pqueue_s *pq)
  93. {
  94. if (pq == NULL) return;
  95. OPENSSL_free(pq);
  96. }
  97. pitem *
  98. pqueue_insert(pqueue_s *pq, pitem *item)
  99. {
  100. pitem *curr, *next;
  101. if (pq->items == NULL)
  102. {
  103. pq->items = item;
  104. return item;
  105. }
  106. for(curr = NULL, next = pq->items;
  107. next != NULL;
  108. curr = next, next = next->next)
  109. {
  110. /* we can compare 64-bit value in big-endian encoding
  111. * with memcmp:-) */
  112. int cmp = memcmp(next->priority, item->priority,8);
  113. if (cmp > 0) /* next > item */
  114. {
  115. item->next = next;
  116. if (curr == NULL)
  117. pq->items = item;
  118. else
  119. curr->next = item;
  120. return item;
  121. }
  122. else if (cmp == 0) /* duplicates not allowed */
  123. return NULL;
  124. }
  125. item->next = NULL;
  126. curr->next = item;
  127. return item;
  128. }
  129. pitem *
  130. pqueue_peek(pqueue_s *pq)
  131. {
  132. return pq->items;
  133. }
  134. pitem *
  135. pqueue_pop(pqueue_s *pq)
  136. {
  137. pitem *item = pq->items;
  138. if (pq->items != NULL)
  139. pq->items = pq->items->next;
  140. return item;
  141. }
  142. pitem *
  143. pqueue_find(pqueue_s *pq, unsigned char *prio64be)
  144. {
  145. pitem *next;
  146. pitem *found = NULL;
  147. if ( pq->items == NULL)
  148. return NULL;
  149. for ( next = pq->items; next->next != NULL; next = next->next)
  150. {
  151. if ( memcmp(next->priority, prio64be,8) == 0)
  152. {
  153. found = next;
  154. break;
  155. }
  156. }
  157. /* check the one last node */
  158. if ( memcmp(next->priority, prio64be,8) ==0)
  159. found = next;
  160. if ( ! found)
  161. return NULL;
  162. #if 0 /* find works in peek mode */
  163. if ( prev == NULL)
  164. pq->items = next->next;
  165. else
  166. prev->next = next->next;
  167. #endif
  168. return found;
  169. }
  170. void
  171. pqueue_print(pqueue_s *pq)
  172. {
  173. pitem *item = pq->items;
  174. while(item != NULL)
  175. {
  176. printf("item\t%02x%02x%02x%02x%02x%02x%02x%02x\n",
  177. item->priority[0],item->priority[1],
  178. item->priority[2],item->priority[3],
  179. item->priority[4],item->priority[5],
  180. item->priority[6],item->priority[7]);
  181. item = item->next;
  182. }
  183. }
  184. pitem *
  185. pqueue_iterator(pqueue_s *pq)
  186. {
  187. return pqueue_peek(pq);
  188. }
  189. pitem *
  190. pqueue_next(pitem **item)
  191. {
  192. pitem *ret;
  193. if ( item == NULL || *item == NULL)
  194. return NULL;
  195. /* *item != NULL */
  196. ret = *item;
  197. *item = (*item)->next;
  198. return ret;
  199. }
  200. int
  201. pqueue_size(pqueue_s *pq)
  202. {
  203. pitem *item = pq->items;
  204. int count = 0;
  205. while(item != NULL)
  206. {
  207. count++;
  208. item = item->next;
  209. }
  210. return count;
  211. }