blob: 67abad695e66fc5031ce47dcf93813931d5b6f16 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Arnaldo Carvalho de Meloae6706f2005-08-27 23:03:09 -03002/*
Gerrit Renker8a9c7e92007-12-12 13:50:51 -02003 * Copyright (c) 2007 The University of Aberdeen, Scotland, UK
Ian McDonaldb2f41ff2007-05-28 12:23:29 -03004 * Copyright (c) 2005-7 The University of Waikato, Hamilton, New Zealand.
5 * Copyright (c) 2005-7 Ian McDonald <ian.mcdonald@jandi.co.nz>
Arnaldo Carvalho de Meloae6706f2005-08-27 23:03:09 -03006 * Copyright (c) 2005 Arnaldo Carvalho de Melo <acme@conectiva.com.br>
Arnaldo Carvalho de Meloae6706f2005-08-27 23:03:09 -03007 */
Ian McDonald66a377c2006-08-26 23:40:50 -07008#include <net/sock.h>
Arnaldo Carvalho de Melocc0a9102007-06-14 17:41:28 -03009#include "tfrc.h"
Arnaldo Carvalho de Meloae6706f2005-08-27 23:03:09 -030010
Gerrit Renker8a9c7e92007-12-12 13:50:51 -020011static struct kmem_cache *tfrc_lh_slab __read_mostly;
12/* Loss Interval weights from [RFC 3448, 5.4], scaled by 10 */
13static const int tfrc_lh_weights[NINTERVAL] = { 10, 10, 10, 10, 8, 6, 4, 2 };
14
15/* implements LIFO semantics on the array */
16static inline u8 LIH_INDEX(const u8 ctr)
17{
Gerrit Renkeraa1b1ff2009-09-12 07:47:01 +000018 return LIH_SIZE - 1 - (ctr % LIH_SIZE);
Gerrit Renker8a9c7e92007-12-12 13:50:51 -020019}
20
21/* the `counter' index always points at the next entry to be populated */
22static inline struct tfrc_loss_interval *tfrc_lh_peek(struct tfrc_loss_hist *lh)
23{
24 return lh->counter ? lh->ring[LIH_INDEX(lh->counter - 1)] : NULL;
25}
26
27/* given i with 0 <= i <= k, return I_i as per the rfc3448bis notation */
28static inline u32 tfrc_lh_get_interval(struct tfrc_loss_hist *lh, const u8 i)
29{
30 BUG_ON(i >= lh->counter);
31 return lh->ring[LIH_INDEX(lh->counter - i - 1)]->li_length;
32}
33
34/*
35 * On-demand allocation and de-allocation of entries
36 */
37static struct tfrc_loss_interval *tfrc_lh_demand_next(struct tfrc_loss_hist *lh)
38{
39 if (lh->ring[LIH_INDEX(lh->counter)] == NULL)
40 lh->ring[LIH_INDEX(lh->counter)] = kmem_cache_alloc(tfrc_lh_slab,
41 GFP_ATOMIC);
42 return lh->ring[LIH_INDEX(lh->counter)];
43}
44
45void tfrc_lh_cleanup(struct tfrc_loss_hist *lh)
46{
47 if (!tfrc_lh_is_initialised(lh))
48 return;
49
50 for (lh->counter = 0; lh->counter < LIH_SIZE; lh->counter++)
51 if (lh->ring[LIH_INDEX(lh->counter)] != NULL) {
52 kmem_cache_free(tfrc_lh_slab,
53 lh->ring[LIH_INDEX(lh->counter)]);
54 lh->ring[LIH_INDEX(lh->counter)] = NULL;
55 }
56}
Gerrit Renker8a9c7e92007-12-12 13:50:51 -020057
Gerrit Renker8a9c7e92007-12-12 13:50:51 -020058static void tfrc_lh_calc_i_mean(struct tfrc_loss_hist *lh)
59{
60 u32 i_i, i_tot0 = 0, i_tot1 = 0, w_tot = 0;
61 int i, k = tfrc_lh_length(lh) - 1; /* k is as in rfc3448bis, 5.4 */
62
Gerrit Renker959fd992008-08-23 13:28:27 +020063 if (k <= 0)
64 return;
65
66 for (i = 0; i <= k; i++) {
Gerrit Renker8a9c7e92007-12-12 13:50:51 -020067 i_i = tfrc_lh_get_interval(lh, i);
68
69 if (i < k) {
70 i_tot0 += i_i * tfrc_lh_weights[i];
71 w_tot += tfrc_lh_weights[i];
72 }
73 if (i > 0)
74 i_tot1 += i_i * tfrc_lh_weights[i-1];
75 }
76
Gerrit Renker8a9c7e92007-12-12 13:50:51 -020077 lh->i_mean = max(i_tot0, i_tot1) / w_tot;
78}
79
80/**
81 * tfrc_lh_update_i_mean - Update the `open' loss interval I_0
Gerrit Renker410e27a2008-09-09 13:27:22 +020082 * For recomputing p: returns `true' if p > p_prev <=> 1/p < 1/p_prev
Gerrit Renker8a9c7e92007-12-12 13:50:51 -020083 */
Gerrit Renker410e27a2008-09-09 13:27:22 +020084u8 tfrc_lh_update_i_mean(struct tfrc_loss_hist *lh, struct sk_buff *skb)
Gerrit Renker8a9c7e92007-12-12 13:50:51 -020085{
86 struct tfrc_loss_interval *cur = tfrc_lh_peek(lh);
Gerrit Renker410e27a2008-09-09 13:27:22 +020087 u32 old_i_mean = lh->i_mean;
Gerrit Renker2eeea7b2008-07-13 11:51:40 +010088 s64 len;
Gerrit Renker8a9c7e92007-12-12 13:50:51 -020089
90 if (cur == NULL) /* not initialised */
Gerrit Renker410e27a2008-09-09 13:27:22 +020091 return 0;
Gerrit Renker8a9c7e92007-12-12 13:50:51 -020092
Gerrit Renker2eeea7b2008-07-13 11:51:40 +010093 len = dccp_delta_seqno(cur->li_seqno, DCCP_SKB_CB(skb)->dccpd_seq) + 1;
Gerrit Renker8a9c7e92007-12-12 13:50:51 -020094
Gerrit Renker2eeea7b2008-07-13 11:51:40 +010095 if (len - (s64)cur->li_length <= 0) /* duplicate or reordered */
Gerrit Renker410e27a2008-09-09 13:27:22 +020096 return 0;
Gerrit Renker8a9c7e92007-12-12 13:50:51 -020097
98 if (SUB16(dccp_hdr(skb)->dccph_ccval, cur->li_ccval) > 4)
99 /*
100 * Implements RFC 4342, 10.2:
101 * If a packet S (skb) exists whose seqno comes `after' the one
102 * starting the current loss interval (cur) and if the modulo-16
103 * distance from C(cur) to C(S) is greater than 4, consider all
104 * subsequent packets as belonging to a new loss interval. This
105 * test is necessary since CCVal may wrap between intervals.
106 */
107 cur->li_is_closed = 1;
108
109 if (tfrc_lh_length(lh) == 1) /* due to RFC 3448, 6.3.1 */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200110 return 0;
Gerrit Renker8a9c7e92007-12-12 13:50:51 -0200111
Gerrit Renker2eeea7b2008-07-13 11:51:40 +0100112 cur->li_length = len;
Gerrit Renker8a9c7e92007-12-12 13:50:51 -0200113 tfrc_lh_calc_i_mean(lh);
Gerrit Renker410e27a2008-09-09 13:27:22 +0200114
Eric Dumazeta02cec22010-09-22 20:43:57 +0000115 return lh->i_mean < old_i_mean;
Gerrit Renker8a9c7e92007-12-12 13:50:51 -0200116}
Gerrit Renker8a9c7e92007-12-12 13:50:51 -0200117
Gerrit Renker8a9c7e92007-12-12 13:50:51 -0200118/* Determine if `new_loss' does begin a new loss interval [RFC 4342, 10.2] */
119static inline u8 tfrc_lh_is_new_loss(struct tfrc_loss_interval *cur,
120 struct tfrc_rx_hist_entry *new_loss)
121{
122 return dccp_delta_seqno(cur->li_seqno, new_loss->tfrchrx_seqno) > 0 &&
123 (cur->li_is_closed || SUB16(new_loss->tfrchrx_ccval, cur->li_ccval) > 4);
124}
125
Gerrit Renkeraa1b1ff2009-09-12 07:47:01 +0000126/**
127 * tfrc_lh_interval_add - Insert new record into the Loss Interval database
Gerrit Renker8a9c7e92007-12-12 13:50:51 -0200128 * @lh: Loss Interval database
129 * @rh: Receive history containing a fresh loss event
130 * @calc_first_li: Caller-dependent routine to compute length of first interval
131 * @sk: Used by @calc_first_li in caller-specific way (subtyping)
Ben Hutchings2c530402012-07-10 10:55:09 +0000132 *
Gerrit Renker8a9c7e92007-12-12 13:50:51 -0200133 * Updates I_mean and returns 1 if a new interval has in fact been added to @lh.
134 */
Gerrit Renker410e27a2008-09-09 13:27:22 +0200135int tfrc_lh_interval_add(struct tfrc_loss_hist *lh, struct tfrc_rx_hist *rh,
136 u32 (*calc_first_li)(struct sock *), struct sock *sk)
Gerrit Renker8a9c7e92007-12-12 13:50:51 -0200137{
138 struct tfrc_loss_interval *cur = tfrc_lh_peek(lh), *new;
139
140 if (cur != NULL && !tfrc_lh_is_new_loss(cur, tfrc_rx_hist_loss_prev(rh)))
Gerrit Renker410e27a2008-09-09 13:27:22 +0200141 return 0;
Gerrit Renker8a9c7e92007-12-12 13:50:51 -0200142
143 new = tfrc_lh_demand_next(lh);
144 if (unlikely(new == NULL)) {
145 DCCP_CRIT("Cannot allocate/add loss record.");
Gerrit Renker410e27a2008-09-09 13:27:22 +0200146 return 0;
Gerrit Renker8a9c7e92007-12-12 13:50:51 -0200147 }
148
149 new->li_seqno = tfrc_rx_hist_loss_prev(rh)->tfrchrx_seqno;
150 new->li_ccval = tfrc_rx_hist_loss_prev(rh)->tfrchrx_ccval;
151 new->li_is_closed = 0;
152
153 if (++lh->counter == 1)
154 lh->i_mean = new->li_length = (*calc_first_li)(sk);
155 else {
156 cur->li_length = dccp_delta_seqno(cur->li_seqno, new->li_seqno);
157 new->li_length = dccp_delta_seqno(new->li_seqno,
Gerrit Renker2eeea7b2008-07-13 11:51:40 +0100158 tfrc_rx_hist_last_rcv(rh)->tfrchrx_seqno) + 1;
Gerrit Renker8a9c7e92007-12-12 13:50:51 -0200159 if (lh->counter > (2*LIH_SIZE))
160 lh->counter -= LIH_SIZE;
161
162 tfrc_lh_calc_i_mean(lh);
163 }
Gerrit Renker410e27a2008-09-09 13:27:22 +0200164 return 1;
Gerrit Renker8a9c7e92007-12-12 13:50:51 -0200165}
Gerrit Renker8a9c7e92007-12-12 13:50:51 -0200166
Gerrit Renker954c2db2007-12-12 14:06:14 -0200167int __init tfrc_li_init(void)
Arnaldo Carvalho de Melocc4d6a32007-05-28 18:53:08 -0300168{
Gerrit Renker954c2db2007-12-12 14:06:14 -0200169 tfrc_lh_slab = kmem_cache_create("tfrc_li_hist",
170 sizeof(struct tfrc_loss_interval), 0,
171 SLAB_HWCACHE_ALIGN, NULL);
172 return tfrc_lh_slab == NULL ? -ENOBUFS : 0;
Arnaldo Carvalho de Melocc4d6a32007-05-28 18:53:08 -0300173}
174
Gerrit Renker954c2db2007-12-12 14:06:14 -0200175void tfrc_li_exit(void)
Arnaldo Carvalho de Melocc4d6a32007-05-28 18:53:08 -0300176{
Gerrit Renker954c2db2007-12-12 14:06:14 -0200177 if (tfrc_lh_slab != NULL) {
178 kmem_cache_destroy(tfrc_lh_slab);
179 tfrc_lh_slab = NULL;
Arnaldo Carvalho de Melo276f2ed2007-11-28 11:15:40 -0200180 }
Arnaldo Carvalho de Melocc4d6a32007-05-28 18:53:08 -0300181}