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.

retry.c 5.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  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. #include <stddef.h>
  19. #include <gpxe/timer.h>
  20. #include <gpxe/list.h>
  21. #include <gpxe/process.h>
  22. #include <gpxe/init.h>
  23. #include <gpxe/retry.h>
  24. /** @file
  25. *
  26. * Retry timers
  27. *
  28. * A retry timer is a binary exponential backoff timer. It can be
  29. * used to build automatic retransmission into network protocols.
  30. *
  31. * This implementation of the timer is designed to satisfy RFC 2988
  32. * and therefore be usable as a TCP retransmission timer.
  33. *
  34. *
  35. */
  36. /* The theoretical minimum that the algorithm in stop_timer() can
  37. * adjust the timeout back down to is seven ticks, so set the minimum
  38. * timeout to at least that value for the sake of consistency.
  39. */
  40. #define MIN_TIMEOUT 7
  41. /** List of running timers */
  42. static LIST_HEAD ( timers );
  43. /**
  44. * Start timer
  45. *
  46. * @v timer Retry timer
  47. *
  48. * This starts the timer running with the current timeout value. If
  49. * stop_timer() is not called before the timer expires, the timer will
  50. * be stopped and the timer's callback function will be called.
  51. */
  52. void start_timer ( struct retry_timer *timer ) {
  53. if ( ! timer_running ( timer ) )
  54. list_add ( &timer->list, &timers );
  55. timer->start = currticks();
  56. /* 0 means "use default timeout" */
  57. if ( timer->min_timeout == 0 )
  58. timer->min_timeout = DEFAULT_MIN_TIMEOUT;
  59. /* We must never be less than MIN_TIMEOUT under any circumstances */
  60. if ( timer->min_timeout < MIN_TIMEOUT )
  61. timer->min_timeout = MIN_TIMEOUT;
  62. /* Honor user-specified minimum timeout */
  63. if ( timer->timeout < timer->min_timeout )
  64. timer->timeout = timer->min_timeout;
  65. DBG2 ( "Timer %p started at time %ld (expires at %ld)\n",
  66. timer, timer->start, ( timer->start + timer->timeout ) );
  67. }
  68. /**
  69. * Start timer with a specified fixed timeout
  70. *
  71. * @v timer Retry timer
  72. * @v timeout Timeout, in ticks
  73. */
  74. void start_timer_fixed ( struct retry_timer *timer, unsigned long timeout ) {
  75. start_timer ( timer );
  76. timer->timeout = timeout;
  77. }
  78. /**
  79. * Stop timer
  80. *
  81. * @v timer Retry timer
  82. *
  83. * This stops the timer and updates the timer's timeout value.
  84. */
  85. void stop_timer ( struct retry_timer *timer ) {
  86. unsigned long old_timeout = timer->timeout;
  87. unsigned long now = currticks();
  88. unsigned long runtime;
  89. /* If timer was already stopped, do nothing */
  90. if ( ! timer_running ( timer ) )
  91. return;
  92. list_del ( &timer->list );
  93. runtime = ( now - timer->start );
  94. timer->start = 0;
  95. DBG2 ( "Timer %p stopped at time %ld (ran for %ld)\n",
  96. timer, now, runtime );
  97. /* Update timer. Variables are:
  98. *
  99. * r = round-trip time estimate (i.e. runtime)
  100. * t = timeout value (i.e. timer->timeout)
  101. * s = smoothed round-trip time
  102. *
  103. * By choice, we set t = 4s, i.e. allow for four times the
  104. * normal round-trip time to pass before retransmitting.
  105. *
  106. * We want to smooth according to s := ( 7 s + r ) / 8
  107. *
  108. * Since we don't actually store s, this reduces to
  109. * t := ( 7 t / 8 ) + ( r / 2 )
  110. *
  111. */
  112. if ( timer->count ) {
  113. timer->count--;
  114. } else {
  115. timer->timeout -= ( timer->timeout >> 3 );
  116. timer->timeout += ( runtime >> 1 );
  117. if ( timer->timeout != old_timeout ) {
  118. DBG ( "Timer %p timeout updated to %ld\n",
  119. timer, timer->timeout );
  120. }
  121. }
  122. }
  123. /**
  124. * Handle expired timer
  125. *
  126. * @v timer Retry timer
  127. */
  128. static void timer_expired ( struct retry_timer *timer ) {
  129. int fail;
  130. /* Stop timer without performing RTT calculations */
  131. DBG2 ( "Timer %p stopped at time %ld on expiry\n",
  132. timer, currticks() );
  133. list_del ( &timer->list );
  134. timer->start = 0;
  135. timer->count++;
  136. /* Back off the timeout value */
  137. timer->timeout <<= 1;
  138. if ( timer->max_timeout == 0 ) /* 0 means "use default timeout" */
  139. timer->max_timeout = DEFAULT_MAX_TIMEOUT;
  140. if ( ( fail = ( timer->timeout > timer->max_timeout ) ) )
  141. timer->timeout = timer->max_timeout;
  142. DBG ( "Timer %p timeout backed off to %ld\n",
  143. timer, timer->timeout );
  144. /* Call expiry callback */
  145. timer->expired ( timer, fail );
  146. }
  147. /**
  148. * Single-step the retry timer list
  149. *
  150. * @v process Retry timer process
  151. */
  152. static void retry_step ( struct process *process __unused ) {
  153. struct retry_timer *timer;
  154. struct retry_timer *tmp;
  155. unsigned long now = currticks();
  156. unsigned long used;
  157. list_for_each_entry_safe ( timer, tmp, &timers, list ) {
  158. used = ( now - timer->start );
  159. if ( used >= timer->timeout )
  160. timer_expired ( timer );
  161. }
  162. }
  163. /** Retry timer process */
  164. struct process retry_process __permanent_process = {
  165. .step = retry_step,
  166. };