]> Pileus Git - ~andy/linux/blob - net/dccp/ccids/lib/packet_history.c
[TFRC]: Loss interval code needs the macros/inlines that were moved
[~andy/linux] / net / dccp / ccids / lib / packet_history.c
1 /*
2  *  net/dccp/packet_history.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  *
7  *  An implementation of the DCCP protocol
8  *
9  *  This code has been developed by the University of Waikato WAND
10  *  research group. For further information please see http://www.wand.net.nz/
11  *  or e-mail Ian McDonald - ian.mcdonald@jandi.co.nz
12  *
13  *  This code also uses code from Lulea University, rereleased as GPL by its
14  *  authors:
15  *  Copyright (c) 2003 Nils-Erik Mattsson, Joacim Haggmark, Magnus Erixzon
16  *
17  *  Changes to meet Linux coding standards, to make it meet latest ccid3 draft
18  *  and to make it work as a loadable module in the DCCP stack written by
19  *  Arnaldo Carvalho de Melo <acme@conectiva.com.br>.
20  *
21  *  Copyright (c) 2005 Arnaldo Carvalho de Melo <acme@conectiva.com.br>
22  *
23  *  This program is free software; you can redistribute it and/or modify
24  *  it under the terms of the GNU General Public License as published by
25  *  the Free Software Foundation; either version 2 of the License, or
26  *  (at your option) any later version.
27  *
28  *  This program is distributed in the hope that it will be useful,
29  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
30  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
31  *  GNU General Public License for more details.
32  *
33  *  You should have received a copy of the GNU General Public License
34  *  along with this program; if not, write to the Free Software
35  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
36  */
37
38 #include <linux/string.h>
39 #include <linux/slab.h>
40 #include "packet_history.h"
41 #include "../../dccp.h"
42
43 /**
44  *  tfrc_tx_hist_entry  -  Simple singly-linked TX history list
45  *  @next:  next oldest entry (LIFO order)
46  *  @seqno: sequence number of this entry
47  *  @stamp: send time of packet with sequence number @seqno
48  */
49 struct tfrc_tx_hist_entry {
50         struct tfrc_tx_hist_entry *next;
51         u64                       seqno;
52         ktime_t                   stamp;
53 };
54
55 /*
56  * Transmitter History Routines
57  */
58 static struct kmem_cache *tfrc_tx_hist_slab;
59
60 int __init tfrc_tx_packet_history_init(void)
61 {
62         tfrc_tx_hist_slab = kmem_cache_create("tfrc_tx_hist",
63                                               sizeof(struct tfrc_tx_hist_entry),
64                                               0, SLAB_HWCACHE_ALIGN, NULL);
65         return tfrc_tx_hist_slab == NULL ? -ENOBUFS : 0;
66 }
67
68 void tfrc_tx_packet_history_exit(void)
69 {
70         if (tfrc_tx_hist_slab != NULL) {
71                 kmem_cache_destroy(tfrc_tx_hist_slab);
72                 tfrc_tx_hist_slab = NULL;
73         }
74 }
75
76 static struct tfrc_tx_hist_entry *
77         tfrc_tx_hist_find_entry(struct tfrc_tx_hist_entry *head, u64 seqno)
78 {
79         while (head != NULL && head->seqno != seqno)
80                 head = head->next;
81
82         return head;
83 }
84
85 int tfrc_tx_hist_add(struct tfrc_tx_hist_entry **headp, u64 seqno)
86 {
87         struct tfrc_tx_hist_entry *entry = kmem_cache_alloc(tfrc_tx_hist_slab, gfp_any());
88
89         if (entry == NULL)
90                 return -ENOBUFS;
91         entry->seqno = seqno;
92         entry->stamp = ktime_get_real();
93         entry->next  = *headp;
94         *headp       = entry;
95         return 0;
96 }
97 EXPORT_SYMBOL_GPL(tfrc_tx_hist_add);
98
99 void tfrc_tx_hist_purge(struct tfrc_tx_hist_entry **headp)
100 {
101         struct tfrc_tx_hist_entry *head = *headp;
102
103         while (head != NULL) {
104                 struct tfrc_tx_hist_entry *next = head->next;
105
106                 kmem_cache_free(tfrc_tx_hist_slab, head);
107                 head = next;
108         }
109
110         *headp = NULL;
111 }
112 EXPORT_SYMBOL_GPL(tfrc_tx_hist_purge);
113
114 u32 tfrc_tx_hist_rtt(struct tfrc_tx_hist_entry *head, const u64 seqno,
115                      const ktime_t now)
116 {
117         u32 rtt = 0;
118         struct tfrc_tx_hist_entry *packet = tfrc_tx_hist_find_entry(head, seqno);
119
120         if (packet != NULL) {
121                 rtt = ktime_us_delta(now, packet->stamp);
122                 /*
123                  * Garbage-collect older (irrelevant) entries:
124                  */
125                 tfrc_tx_hist_purge(&packet->next);
126         }
127
128         return rtt;
129 }
130 EXPORT_SYMBOL_GPL(tfrc_tx_hist_rtt);
131
132
133 /*
134  *      Receiver History Routines
135  */
136 static struct kmem_cache *tfrc_rx_hist_slab;
137
138 int __init tfrc_rx_packet_history_init(void)
139 {
140         tfrc_rx_hist_slab = kmem_cache_create("tfrc_rxh_cache",
141                                               sizeof(struct tfrc_rx_hist_entry),
142                                               0, SLAB_HWCACHE_ALIGN, NULL);
143         return tfrc_rx_hist_slab == NULL ? -ENOBUFS : 0;
144 }
145
146 void tfrc_rx_packet_history_exit(void)
147 {
148         if (tfrc_rx_hist_slab != NULL) {
149                 kmem_cache_destroy(tfrc_rx_hist_slab);
150                 tfrc_rx_hist_slab = NULL;
151         }
152 }
153
154 void tfrc_rx_hist_add_packet(struct tfrc_rx_hist *h,
155                              const struct sk_buff *skb,
156                              const u32 ndp)
157 {
158         struct tfrc_rx_hist_entry *entry = tfrc_rx_hist_last_rcv(h);
159         const struct dccp_hdr *dh = dccp_hdr(skb);
160
161         entry->tfrchrx_seqno = DCCP_SKB_CB(skb)->dccpd_seq;
162         entry->tfrchrx_ccval = dh->dccph_ccval;
163         entry->tfrchrx_type  = dh->dccph_type;
164         entry->tfrchrx_ndp   = ndp;
165         entry->tfrchrx_tstamp = ktime_get_real();
166 }
167 EXPORT_SYMBOL_GPL(tfrc_rx_hist_add_packet);
168
169 /* has the packet contained in skb been seen before? */
170 int tfrc_rx_hist_duplicate(struct tfrc_rx_hist *h, struct sk_buff *skb)
171 {
172         const u64 seq = DCCP_SKB_CB(skb)->dccpd_seq;
173         int i;
174
175         if (dccp_delta_seqno(tfrc_rx_hist_loss_prev(h)->tfrchrx_seqno, seq) <= 0)
176                 return 1;
177
178         for (i = 1; i <= h->loss_count; i++)
179                 if (tfrc_rx_hist_entry(h, i)->tfrchrx_seqno == seq)
180                         return 1;
181
182         return 0;
183 }
184 EXPORT_SYMBOL_GPL(tfrc_rx_hist_duplicate);
185
186 /* initialise loss detection and disable RTT sampling */
187 static inline void tfrc_rx_hist_loss_indicated(struct tfrc_rx_hist *h)
188 {
189         h->loss_count = 1;
190 }
191
192 /* indicate whether previously a packet was detected missing */
193 static inline int tfrc_rx_hist_loss_pending(const struct tfrc_rx_hist *h)
194 {
195         return h->loss_count;
196 }
197
198 /* any data packets missing between last reception and skb ? */
199 int tfrc_rx_hist_new_loss_indicated(struct tfrc_rx_hist *h,
200                                     const struct sk_buff *skb, u32 ndp)
201 {
202         int delta = dccp_delta_seqno(tfrc_rx_hist_last_rcv(h)->tfrchrx_seqno,
203                                      DCCP_SKB_CB(skb)->dccpd_seq);
204
205         if (delta > 1 && ndp < delta)
206                 tfrc_rx_hist_loss_indicated(h);
207
208         return tfrc_rx_hist_loss_pending(h);
209 }
210 EXPORT_SYMBOL_GPL(tfrc_rx_hist_new_loss_indicated);
211
212 int tfrc_rx_hist_alloc(struct tfrc_rx_hist *h)
213 {
214         int i;
215
216         for (i = 0; i <= TFRC_NDUPACK; i++) {
217                 h->ring[i] = kmem_cache_alloc(tfrc_rx_hist_slab, GFP_ATOMIC);
218                 if (h->ring[i] == NULL)
219                         goto out_free;
220         }
221
222         h->loss_count = h->loss_start = 0;
223         return 0;
224
225 out_free:
226         while (i-- != 0) {
227                 kmem_cache_free(tfrc_rx_hist_slab, h->ring[i]);
228                 h->ring[i] = NULL;
229         }
230         return -ENOBUFS;
231 }
232 EXPORT_SYMBOL_GPL(tfrc_rx_hist_alloc);
233
234 void tfrc_rx_hist_purge(struct tfrc_rx_hist *h)
235 {
236         int i;
237
238         for (i = 0; i <= TFRC_NDUPACK; ++i)
239                 if (h->ring[i] != NULL) {
240                         kmem_cache_free(tfrc_rx_hist_slab, h->ring[i]);
241                         h->ring[i] = NULL;
242                 }
243 }
244 EXPORT_SYMBOL_GPL(tfrc_rx_hist_purge);
245
246 /**
247  * tfrc_rx_hist_rtt_last_s - reference entry to compute RTT samples against
248  */
249 static inline struct tfrc_rx_hist_entry *
250                         tfrc_rx_hist_rtt_last_s(const struct tfrc_rx_hist *h)
251 {
252         return h->ring[0];
253 }
254
255 /**
256  * tfrc_rx_hist_rtt_prev_s: previously suitable (wrt rtt_last_s) RTT-sampling entry
257  */
258 static inline struct tfrc_rx_hist_entry *
259                         tfrc_rx_hist_rtt_prev_s(const struct tfrc_rx_hist *h)
260 {
261         return h->ring[h->rtt_sample_prev];
262 }
263
264 /**
265  * tfrc_rx_hist_sample_rtt  -  Sample RTT from timestamp / CCVal
266  * Based on ideas presented in RFC 4342, 8.1. Returns 0 if it was not able
267  * to compute a sample with given data - calling function should check this.
268  */
269 u32 tfrc_rx_hist_sample_rtt(struct tfrc_rx_hist *h, const struct sk_buff *skb)
270 {
271         u32 sample = 0,
272             delta_v = SUB16(dccp_hdr(skb)->dccph_ccval,
273                             tfrc_rx_hist_rtt_last_s(h)->tfrchrx_ccval);
274
275         if (delta_v < 1 || delta_v > 4) {       /* unsuitable CCVal delta */
276                 if (h->rtt_sample_prev == 2) {  /* previous candidate stored */
277                         sample = SUB16(tfrc_rx_hist_rtt_prev_s(h)->tfrchrx_ccval,
278                                        tfrc_rx_hist_rtt_last_s(h)->tfrchrx_ccval);
279                         if (sample)
280                                 sample = 4 / sample *
281                                          ktime_us_delta(tfrc_rx_hist_rtt_prev_s(h)->tfrchrx_tstamp,
282                                                         tfrc_rx_hist_rtt_last_s(h)->tfrchrx_tstamp);
283                         else    /*
284                                  * FIXME: This condition is in principle not
285                                  * possible but occurs when CCID is used for
286                                  * two-way data traffic. I have tried to trace
287                                  * it, but the cause does not seem to be here.
288                                  */
289                                 DCCP_BUG("please report to dccp@vger.kernel.org"
290                                          " => prev = %u, last = %u",
291                                          tfrc_rx_hist_rtt_prev_s(h)->tfrchrx_ccval,
292                                          tfrc_rx_hist_rtt_last_s(h)->tfrchrx_ccval);
293                 } else if (delta_v < 1) {
294                         h->rtt_sample_prev = 1;
295                         goto keep_ref_for_next_time;
296                 }
297
298         } else if (delta_v == 4) /* optimal match */
299                 sample = ktime_to_us(net_timedelta(tfrc_rx_hist_rtt_last_s(h)->tfrchrx_tstamp));
300         else {                   /* suboptimal match */
301                 h->rtt_sample_prev = 2;
302                 goto keep_ref_for_next_time;
303         }
304
305         if (unlikely(sample > DCCP_SANE_RTT_MAX)) {
306                 DCCP_WARN("RTT sample %u too large, using max\n", sample);
307                 sample = DCCP_SANE_RTT_MAX;
308         }
309
310         h->rtt_sample_prev = 0;        /* use current entry as next reference */
311 keep_ref_for_next_time:
312
313         return sample;
314 }
315 EXPORT_SYMBOL_GPL(tfrc_rx_hist_sample_rtt);