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.

retry.c 5.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. /*
  2. * Copyright (C) 2006 Michael Brown <mbrown@fensystems.co.uk>.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License as
  6. * published by the Free Software Foundation; either version 2 of the
  7. * License, or any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful, but
  10. * WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17. */
  18. FILE_LICENCE ( GPL2_OR_LATER );
  19. #include <stddef.h>
  20. #include <gpxe/timer.h>
  21. #include <gpxe/list.h>
  22. #include <gpxe/process.h>
  23. #include <gpxe/init.h>
  24. #include <gpxe/retry.h>
  25. /** @file
  26. *
  27. * Retry timers
  28. *
  29. * A retry timer is a binary exponential backoff timer. It can be
  30. * used to build automatic retransmission into network protocols.
  31. *
  32. * This implementation of the timer is designed to satisfy RFC 2988
  33. * and therefore be usable as a TCP retransmission timer.
  34. *
  35. *
  36. */
  37. /* The theoretical minimum that the algorithm in stop_timer() can
  38. * adjust the timeout back down to is seven ticks, so set the minimum
  39. * timeout to at least that value for the sake of consistency.
  40. */
  41. #define MIN_TIMEOUT 7
  42. /** List of running timers */
  43. static LIST_HEAD ( timers );
  44. /**
  45. * Start timer
  46. *
  47. * @v timer Retry timer
  48. *
  49. * This starts the timer running with the current timeout value. If
  50. * stop_timer() is not called before the timer expires, the timer will
  51. * be stopped and the timer's callback function will be called.
  52. */
  53. void start_timer ( struct retry_timer *timer ) {
  54. if ( ! timer->running )
  55. list_add ( &timer->list, &timers );
  56. timer->start = currticks();
  57. timer->running = 1;
  58. /* 0 means "use default timeout" */
  59. if ( timer->min_timeout == 0 )
  60. timer->min_timeout = DEFAULT_MIN_TIMEOUT;
  61. /* We must never be less than MIN_TIMEOUT under any circumstances */
  62. if ( timer->min_timeout < MIN_TIMEOUT )
  63. timer->min_timeout = MIN_TIMEOUT;
  64. /* Honor user-specified minimum timeout */
  65. if ( timer->timeout < timer->min_timeout )
  66. timer->timeout = timer->min_timeout;
  67. DBG2 ( "Timer %p started at time %ld (expires at %ld)\n",
  68. timer, timer->start, ( timer->start + timer->timeout ) );
  69. }
  70. /**
  71. * Start timer with a specified fixed timeout
  72. *
  73. * @v timer Retry timer
  74. * @v timeout Timeout, in ticks
  75. */
  76. void start_timer_fixed ( struct retry_timer *timer, unsigned long timeout ) {
  77. start_timer ( timer );
  78. timer->timeout = timeout;
  79. DBG2 ( "Timer %p expiry time changed to %ld\n",
  80. timer, ( timer->start + timer->timeout ) );
  81. }
  82. /**
  83. * Stop timer
  84. *
  85. * @v timer Retry timer
  86. *
  87. * This stops the timer and updates the timer's timeout value.
  88. */
  89. void stop_timer ( struct retry_timer *timer ) {
  90. unsigned long old_timeout = timer->timeout;
  91. unsigned long now = currticks();
  92. unsigned long runtime;
  93. /* If timer was already stopped, do nothing */
  94. if ( ! timer->running )
  95. return;
  96. list_del ( &timer->list );
  97. runtime = ( now - timer->start );
  98. timer->running = 0;
  99. DBG2 ( "Timer %p stopped at time %ld (ran for %ld)\n",
  100. timer, now, runtime );
  101. /* Update timer. Variables are:
  102. *
  103. * r = round-trip time estimate (i.e. runtime)
  104. * t = timeout value (i.e. timer->timeout)
  105. * s = smoothed round-trip time
  106. *
  107. * By choice, we set t = 4s, i.e. allow for four times the
  108. * normal round-trip time to pass before retransmitting.
  109. *
  110. * We want to smooth according to s := ( 7 s + r ) / 8
  111. *
  112. * Since we don't actually store s, this reduces to
  113. * t := ( 7 t / 8 ) + ( r / 2 )
  114. *
  115. */
  116. if ( timer->count ) {
  117. timer->count--;
  118. } else {
  119. timer->timeout -= ( timer->timeout >> 3 );
  120. timer->timeout += ( runtime >> 1 );
  121. if ( timer->timeout != old_timeout ) {
  122. DBG ( "Timer %p timeout updated to %ld\n",
  123. timer, timer->timeout );
  124. }
  125. }
  126. }
  127. /**
  128. * Handle expired timer
  129. *
  130. * @v timer Retry timer
  131. */
  132. static void timer_expired ( struct retry_timer *timer ) {
  133. int fail;
  134. /* Stop timer without performing RTT calculations */
  135. DBG2 ( "Timer %p stopped at time %ld on expiry\n",
  136. timer, currticks() );
  137. assert ( timer->running );
  138. list_del ( &timer->list );
  139. timer->running = 0;
  140. timer->count++;
  141. /* Back off the timeout value */
  142. timer->timeout <<= 1;
  143. if ( timer->max_timeout == 0 ) /* 0 means "use default timeout" */
  144. timer->max_timeout = DEFAULT_MAX_TIMEOUT;
  145. if ( ( fail = ( timer->timeout > timer->max_timeout ) ) )
  146. timer->timeout = timer->max_timeout;
  147. DBG ( "Timer %p timeout backed off to %ld\n",
  148. timer, timer->timeout );
  149. /* Call expiry callback */
  150. timer->expired ( timer, fail );
  151. }
  152. /**
  153. * Single-step the retry timer list
  154. *
  155. * @v process Retry timer process
  156. */
  157. static void retry_step ( struct process *process __unused ) {
  158. struct retry_timer *timer;
  159. struct retry_timer *tmp;
  160. unsigned long now = currticks();
  161. unsigned long used;
  162. list_for_each_entry_safe ( timer, tmp, &timers, list ) {
  163. used = ( now - timer->start );
  164. if ( used >= timer->timeout )
  165. timer_expired ( timer );
  166. }
  167. }
  168. /** Retry timer process */
  169. struct process retry_process __permanent_process = {
  170. .list = LIST_HEAD_INIT ( retry_process.list ),
  171. .step = retry_step,
  172. };