ut_sim.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /*
  2. * ut_sim.c
  3. *
  4. * an unreliable transport simulator
  5. * (for testing replay databases and suchlike)
  6. *
  7. * David A. McGrew
  8. * Cisco Systems, Inc.
  9. */
  10. /*
  11. *
  12. * Copyright (c) 2001-2017, Cisco Systems, Inc.
  13. * All rights reserved.
  14. *
  15. * Redistribution and use in source and binary forms, with or without
  16. * modification, are permitted provided that the following conditions
  17. * are met:
  18. *
  19. * Redistributions of source code must retain the above copyright
  20. * notice, this list of conditions and the following disclaimer.
  21. *
  22. * Redistributions in binary form must reproduce the above
  23. * copyright notice, this list of conditions and the following
  24. * disclaimer in the documentation and/or other materials provided
  25. * with the distribution.
  26. *
  27. * Neither the name of the Cisco Systems, Inc. nor the names of its
  28. * contributors may be used to endorse or promote products derived
  29. * from this software without specific prior written permission.
  30. *
  31. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  32. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  33. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  34. * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  35. * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
  36. * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  37. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  38. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  39. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  40. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  41. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  42. * OF THE POSSIBILITY OF SUCH DAMAGE.
  43. *
  44. */
  45. #ifdef HAVE_CONFIG_H
  46. #include <config.h>
  47. #endif
  48. #include "ut_sim.h"
  49. #include "cipher_priv.h"
  50. int ut_compar(const void *a, const void *b)
  51. {
  52. uint8_t r;
  53. srtp_cipher_rand_for_tests(&r, sizeof(r));
  54. return r > (UINT8_MAX / 2) ? -1 : 1;
  55. }
  56. void ut_init(ut_connection *utc)
  57. {
  58. int i;
  59. utc->index = 0;
  60. for (i = 0; i < UT_BUF; i++)
  61. utc->buffer[i] = i;
  62. qsort(utc->buffer, UT_BUF, sizeof(uint32_t), ut_compar);
  63. utc->index = UT_BUF - 1;
  64. }
  65. uint32_t ut_next_index(ut_connection *utc)
  66. {
  67. uint32_t tmp;
  68. tmp = utc->buffer[0];
  69. utc->index++;
  70. utc->buffer[0] = utc->index;
  71. qsort(utc->buffer, UT_BUF, sizeof(uint32_t), ut_compar);
  72. return tmp;
  73. }
  74. #ifdef UT_TEST
  75. #include <stdio.h>
  76. int main()
  77. {
  78. uint32_t i, irecvd, idiff;
  79. ut_connection utc;
  80. ut_init(&utc);
  81. for (i = 0; i < 1000; i++) {
  82. irecvd = ut_next_index(&utc);
  83. idiff = i - irecvd;
  84. printf("%lu\t%lu\t%d\n", i, irecvd, idiff);
  85. }
  86. return 0;
  87. }
  88. #endif