loss_interval.c 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. /*
  2. * net/dccp/ccids/lib/loss_interval.c
  3. *
  4. * Copyright (c) 2007 The University of Aberdeen, Scotland, UK
  5. * Copyright (c) 2005-7 The University of Waikato, Hamilton, New Zealand.
  6. * Copyright (c) 2005-7 Ian McDonald <ian.mcdonald@jandi.co.nz>
  7. * Copyright (c) 2005 Arnaldo Carvalho de Melo <acme@conectiva.com.br>
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation; either version 2 of the License, or
  12. * (at your option) any later version.
  13. */
  14. #include <net/sock.h>
  15. #include "tfrc.h"
  16. static struct kmem_cache *tfrc_lh_slab __read_mostly;
  17. /* Loss Interval weights from [RFC 3448, 5.4], scaled by 10 */
  18. static const int tfrc_lh_weights[NINTERVAL] = { 10, 10, 10, 10, 8, 6, 4, 2 };
  19. /* implements LIFO semantics on the array */
  20. static inline u8 LIH_INDEX(const u8 ctr)
  21. {
  22. return (LIH_SIZE - 1 - (ctr % LIH_SIZE));
  23. }
  24. /* the `counter' index always points at the next entry to be populated */
  25. static inline struct tfrc_loss_interval *tfrc_lh_peek(struct tfrc_loss_hist *lh)
  26. {
  27. return lh->counter ? lh->ring[LIH_INDEX(lh->counter - 1)] : NULL;
  28. }
  29. /* given i with 0 <= i <= k, return I_i as per the rfc3448bis notation */
  30. static inline u32 tfrc_lh_get_interval(struct tfrc_loss_hist *lh, const u8 i)
  31. {
  32. BUG_ON(i >= lh->counter);
  33. return lh->ring[LIH_INDEX(lh->counter - i - 1)]->li_length;
  34. }
  35. /*
  36. * On-demand allocation and de-allocation of entries
  37. */
  38. static struct tfrc_loss_interval *tfrc_lh_demand_next(struct tfrc_loss_hist *lh)
  39. {
  40. if (lh->ring[LIH_INDEX(lh->counter)] == NULL)
  41. lh->ring[LIH_INDEX(lh->counter)] = kmem_cache_alloc(tfrc_lh_slab,
  42. GFP_ATOMIC);
  43. return lh->ring[LIH_INDEX(lh->counter)];
  44. }
  45. void tfrc_lh_cleanup(struct tfrc_loss_hist *lh)
  46. {
  47. if (!tfrc_lh_is_initialised(lh))
  48. return;
  49. for (lh->counter = 0; lh->counter < LIH_SIZE; lh->counter++)
  50. if (lh->ring[LIH_INDEX(lh->counter)] != NULL) {
  51. kmem_cache_free(tfrc_lh_slab,
  52. lh->ring[LIH_INDEX(lh->counter)]);
  53. lh->ring[LIH_INDEX(lh->counter)] = NULL;
  54. }
  55. }
  56. EXPORT_SYMBOL_GPL(tfrc_lh_cleanup);
  57. static void tfrc_lh_calc_i_mean(struct tfrc_loss_hist *lh)
  58. {
  59. u32 i_i, i_tot0 = 0, i_tot1 = 0, w_tot = 0;
  60. int i, k = tfrc_lh_length(lh) - 1; /* k is as in rfc3448bis, 5.4 */
  61. if (k <= 0)
  62. return;
  63. for (i = 0; i <= k; i++) {
  64. i_i = tfrc_lh_get_interval(lh, i);
  65. if (i < k) {
  66. i_tot0 += i_i * tfrc_lh_weights[i];
  67. w_tot += tfrc_lh_weights[i];
  68. }
  69. if (i > 0)
  70. i_tot1 += i_i * tfrc_lh_weights[i-1];
  71. }
  72. lh->i_mean = max(i_tot0, i_tot1) / w_tot;
  73. }
  74. /**
  75. * tfrc_lh_update_i_mean - Update the `open' loss interval I_0
  76. * This updates I_mean as the sequence numbers increase. As a consequence, the
  77. * open loss interval I_0 increases, hence p = W_tot/max(I_tot0, I_tot1)
  78. * decreases, and thus there is no need to send renewed feedback.
  79. */
  80. void tfrc_lh_update_i_mean(struct tfrc_loss_hist *lh, struct sk_buff *skb)
  81. {
  82. struct tfrc_loss_interval *cur = tfrc_lh_peek(lh);
  83. s64 len;
  84. if (cur == NULL) /* not initialised */
  85. return;
  86. /* FIXME: should probably also count non-data packets (RFC 4342, 6.1) */
  87. if (!dccp_data_packet(skb))
  88. return;
  89. len = dccp_delta_seqno(cur->li_seqno, DCCP_SKB_CB(skb)->dccpd_seq) + 1;
  90. if (len - (s64)cur->li_length <= 0) /* duplicate or reordered */
  91. return;
  92. if (SUB16(dccp_hdr(skb)->dccph_ccval, cur->li_ccval) > 4)
  93. /*
  94. * Implements RFC 4342, 10.2:
  95. * If a packet S (skb) exists whose seqno comes `after' the one
  96. * starting the current loss interval (cur) and if the modulo-16
  97. * distance from C(cur) to C(S) is greater than 4, consider all
  98. * subsequent packets as belonging to a new loss interval. This
  99. * test is necessary since CCVal may wrap between intervals.
  100. */
  101. cur->li_is_closed = 1;
  102. if (tfrc_lh_length(lh) == 1) /* due to RFC 3448, 6.3.1 */
  103. return;
  104. cur->li_length = len;
  105. tfrc_lh_calc_i_mean(lh);
  106. }
  107. /* Determine if `new_loss' does begin a new loss interval [RFC 4342, 10.2] */
  108. static inline u8 tfrc_lh_is_new_loss(struct tfrc_loss_interval *cur,
  109. struct tfrc_rx_hist_entry *new_loss)
  110. {
  111. return dccp_delta_seqno(cur->li_seqno, new_loss->tfrchrx_seqno) > 0 &&
  112. (cur->li_is_closed || SUB16(new_loss->tfrchrx_ccval, cur->li_ccval) > 4);
  113. }
  114. /** tfrc_lh_interval_add - Insert new record into the Loss Interval database
  115. * @lh: Loss Interval database
  116. * @rh: Receive history containing a fresh loss event
  117. * @calc_first_li: Caller-dependent routine to compute length of first interval
  118. * @sk: Used by @calc_first_li in caller-specific way (subtyping)
  119. * Updates I_mean and returns 1 if a new interval has in fact been added to @lh.
  120. */
  121. bool tfrc_lh_interval_add(struct tfrc_loss_hist *lh, struct tfrc_rx_hist *rh,
  122. u32 (*calc_first_li)(struct sock *), struct sock *sk)
  123. {
  124. struct tfrc_loss_interval *cur = tfrc_lh_peek(lh), *new;
  125. if (cur != NULL && !tfrc_lh_is_new_loss(cur, tfrc_rx_hist_loss_prev(rh)))
  126. return false;
  127. new = tfrc_lh_demand_next(lh);
  128. if (unlikely(new == NULL)) {
  129. DCCP_CRIT("Cannot allocate/add loss record.");
  130. return false;
  131. }
  132. new->li_seqno = tfrc_rx_hist_loss_prev(rh)->tfrchrx_seqno;
  133. new->li_ccval = tfrc_rx_hist_loss_prev(rh)->tfrchrx_ccval;
  134. new->li_is_closed = 0;
  135. if (++lh->counter == 1)
  136. lh->i_mean = new->li_length = (*calc_first_li)(sk);
  137. else {
  138. cur->li_length = dccp_delta_seqno(cur->li_seqno, new->li_seqno);
  139. new->li_length = dccp_delta_seqno(new->li_seqno,
  140. tfrc_rx_hist_last_rcv(rh)->tfrchrx_seqno) + 1;
  141. if (lh->counter > (2*LIH_SIZE))
  142. lh->counter -= LIH_SIZE;
  143. tfrc_lh_calc_i_mean(lh);
  144. }
  145. return true;
  146. }
  147. EXPORT_SYMBOL_GPL(tfrc_lh_interval_add);
  148. int __init tfrc_li_init(void)
  149. {
  150. tfrc_lh_slab = kmem_cache_create("tfrc_li_hist",
  151. sizeof(struct tfrc_loss_interval), 0,
  152. SLAB_HWCACHE_ALIGN, NULL);
  153. return tfrc_lh_slab == NULL ? -ENOBUFS : 0;
  154. }
  155. void tfrc_li_exit(void)
  156. {
  157. if (tfrc_lh_slab != NULL) {
  158. kmem_cache_destroy(tfrc_lh_slab);
  159. tfrc_lh_slab = NULL;
  160. }
  161. }