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.
 
 
 
 
 
 

198 lines
5.1 KiB

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