ackvec.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481
  1. /*
  2. * net/dccp/ackvec.c
  3. *
  4. * An implementation of Ack Vectors for the DCCP protocol
  5. * Copyright (c) 2007 University of Aberdeen, Scotland, UK
  6. * Copyright (c) 2005 Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
  7. *
  8. * This program is free software; you can redistribute it and/or modify it
  9. * under the terms of the GNU General Public License as published by the
  10. * Free Software Foundation; version 2 of the License;
  11. */
  12. #include "ackvec.h"
  13. #include "dccp.h"
  14. #include <linux/init.h>
  15. #include <linux/errno.h>
  16. #include <linux/kernel.h>
  17. #include <linux/skbuff.h>
  18. #include <linux/slab.h>
  19. #include <net/sock.h>
  20. static struct kmem_cache *dccp_ackvec_slab;
  21. static struct kmem_cache *dccp_ackvec_record_slab;
  22. struct dccp_ackvec *dccp_ackvec_alloc(const gfp_t priority)
  23. {
  24. struct dccp_ackvec *av = kmem_cache_zalloc(dccp_ackvec_slab, priority);
  25. if (av != NULL) {
  26. av->av_buf_head = av->av_buf_tail = DCCPAV_MAX_ACKVEC_LEN - 1;
  27. INIT_LIST_HEAD(&av->av_records);
  28. }
  29. return av;
  30. }
  31. static void dccp_ackvec_purge_records(struct dccp_ackvec *av)
  32. {
  33. struct dccp_ackvec_record *cur, *next;
  34. list_for_each_entry_safe(cur, next, &av->av_records, avr_node)
  35. kmem_cache_free(dccp_ackvec_record_slab, cur);
  36. INIT_LIST_HEAD(&av->av_records);
  37. }
  38. void dccp_ackvec_free(struct dccp_ackvec *av)
  39. {
  40. if (likely(av != NULL)) {
  41. dccp_ackvec_purge_records(av);
  42. kmem_cache_free(dccp_ackvec_slab, av);
  43. }
  44. }
  45. /**
  46. * dccp_ackvec_update_records - Record information about sent Ack Vectors
  47. * @av: Ack Vector records to update
  48. * @seqno: Sequence number of the packet carrying the Ack Vector just sent
  49. * @nonce_sum: The sum of all buffer nonces contained in the Ack Vector
  50. */
  51. int dccp_ackvec_update_records(struct dccp_ackvec *av, u64 seqno, u8 nonce_sum)
  52. {
  53. struct dccp_ackvec_record *avr;
  54. avr = kmem_cache_alloc(dccp_ackvec_record_slab, GFP_ATOMIC);
  55. if (avr == NULL)
  56. return -ENOBUFS;
  57. avr->avr_ack_seqno = seqno;
  58. avr->avr_ack_ptr = av->av_buf_head;
  59. avr->avr_ack_ackno = av->av_buf_ackno;
  60. avr->avr_ack_nonce = nonce_sum;
  61. avr->avr_ack_runlen = dccp_ackvec_runlen(av->av_buf + av->av_buf_head);
  62. /*
  63. * When the buffer overflows, we keep no more than one record. This is
  64. * the simplest way of disambiguating sender-Acks dating from before the
  65. * overflow from sender-Acks which refer to after the overflow; a simple
  66. * solution is preferable here since we are handling an exception.
  67. */
  68. if (av->av_overflow)
  69. dccp_ackvec_purge_records(av);
  70. /*
  71. * Since GSS is incremented for each packet, the list is automatically
  72. * arranged in descending order of @ack_seqno.
  73. */
  74. list_add(&avr->avr_node, &av->av_records);
  75. dccp_pr_debug("Added Vector, ack_seqno=%llu, ack_ackno=%llu (rl=%u)\n",
  76. (unsigned long long)avr->avr_ack_seqno,
  77. (unsigned long long)avr->avr_ack_ackno,
  78. avr->avr_ack_runlen);
  79. return 0;
  80. }
  81. static struct dccp_ackvec_record *dccp_ackvec_lookup(struct list_head *av_list,
  82. const u64 ackno)
  83. {
  84. struct dccp_ackvec_record *avr;
  85. /*
  86. * Exploit that records are inserted in descending order of sequence
  87. * number, start with the oldest record first. If @ackno is `before'
  88. * the earliest ack_ackno, the packet is too old to be considered.
  89. */
  90. list_for_each_entry_reverse(avr, av_list, avr_node) {
  91. if (avr->avr_ack_seqno == ackno)
  92. return avr;
  93. if (before48(ackno, avr->avr_ack_seqno))
  94. break;
  95. }
  96. return NULL;
  97. }
  98. /*
  99. * Buffer index and length computation using modulo-buffersize arithmetic.
  100. * Note that, as pointers move from right to left, head is `before' tail.
  101. */
  102. static inline u16 __ackvec_idx_add(const u16 a, const u16 b)
  103. {
  104. return (a + b) % DCCPAV_MAX_ACKVEC_LEN;
  105. }
  106. static inline u16 __ackvec_idx_sub(const u16 a, const u16 b)
  107. {
  108. return __ackvec_idx_add(a, DCCPAV_MAX_ACKVEC_LEN - b);
  109. }
  110. u16 dccp_ackvec_buflen(const struct dccp_ackvec *av)
  111. {
  112. if (unlikely(av->av_overflow))
  113. return DCCPAV_MAX_ACKVEC_LEN;
  114. return __ackvec_idx_sub(av->av_buf_tail, av->av_buf_head);
  115. }
  116. /*
  117. * If several packets are missing, the HC-Receiver may prefer to enter multiple
  118. * bytes with run length 0, rather than a single byte with a larger run length;
  119. * this simplifies table updates if one of the missing packets arrives.
  120. */
  121. static inline int dccp_ackvec_set_buf_head_state(struct dccp_ackvec *av,
  122. const unsigned int packets,
  123. const unsigned char state)
  124. {
  125. unsigned int gap;
  126. long new_head;
  127. if (av->av_vec_len + packets > DCCPAV_MAX_ACKVEC_LEN)
  128. return -ENOBUFS;
  129. gap = packets - 1;
  130. new_head = av->av_buf_head - packets;
  131. if (new_head < 0) {
  132. if (gap > 0) {
  133. memset(av->av_buf, DCCPAV_NOT_RECEIVED,
  134. gap + new_head + 1);
  135. gap = -new_head;
  136. }
  137. new_head += DCCPAV_MAX_ACKVEC_LEN;
  138. }
  139. av->av_buf_head = new_head;
  140. if (gap > 0)
  141. memset(av->av_buf + av->av_buf_head + 1,
  142. DCCPAV_NOT_RECEIVED, gap);
  143. av->av_buf[av->av_buf_head] = state;
  144. av->av_vec_len += packets;
  145. return 0;
  146. }
  147. /*
  148. * Implements the RFC 4340, Appendix A
  149. */
  150. int dccp_ackvec_add(struct dccp_ackvec *av, const struct sock *sk,
  151. const u64 ackno, const u8 state)
  152. {
  153. u8 *cur_head = av->av_buf + av->av_buf_head,
  154. *buf_end = av->av_buf + DCCPAV_MAX_ACKVEC_LEN;
  155. /*
  156. * Check at the right places if the buffer is full, if it is, tell the
  157. * caller to start dropping packets till the HC-Sender acks our ACK
  158. * vectors, when we will free up space in av_buf.
  159. *
  160. * We may well decide to do buffer compression, etc, but for now lets
  161. * just drop.
  162. *
  163. * From Appendix A.1.1 (`New Packets'):
  164. *
  165. * Of course, the circular buffer may overflow, either when the
  166. * HC-Sender is sending data at a very high rate, when the
  167. * HC-Receiver's acknowledgements are not reaching the HC-Sender,
  168. * or when the HC-Sender is forgetting to acknowledge those acks
  169. * (so the HC-Receiver is unable to clean up old state). In this
  170. * case, the HC-Receiver should either compress the buffer (by
  171. * increasing run lengths when possible), transfer its state to
  172. * a larger buffer, or, as a last resort, drop all received
  173. * packets, without processing them whatsoever, until its buffer
  174. * shrinks again.
  175. */
  176. /* See if this is the first ackno being inserted */
  177. if (av->av_vec_len == 0) {
  178. *cur_head = state;
  179. av->av_vec_len = 1;
  180. } else if (after48(ackno, av->av_buf_ackno)) {
  181. const u64 delta = dccp_delta_seqno(av->av_buf_ackno, ackno);
  182. /*
  183. * Look if the state of this packet is the same as the
  184. * previous ackno and if so if we can bump the head len.
  185. */
  186. if (delta == 1 && dccp_ackvec_state(cur_head) == state &&
  187. dccp_ackvec_runlen(cur_head) < DCCPAV_MAX_RUNLEN)
  188. *cur_head += 1;
  189. else if (dccp_ackvec_set_buf_head_state(av, delta, state))
  190. return -ENOBUFS;
  191. } else {
  192. /*
  193. * A.1.2. Old Packets
  194. *
  195. * When a packet with Sequence Number S <= buf_ackno
  196. * arrives, the HC-Receiver will scan the table for
  197. * the byte corresponding to S. (Indexing structures
  198. * could reduce the complexity of this scan.)
  199. */
  200. u64 delta = dccp_delta_seqno(ackno, av->av_buf_ackno);
  201. while (1) {
  202. const u8 len = dccp_ackvec_runlen(cur_head);
  203. /*
  204. * valid packets not yet in av_buf have a reserved
  205. * entry, with a len equal to 0.
  206. */
  207. if (*cur_head == DCCPAV_NOT_RECEIVED && delta == 0) {
  208. dccp_pr_debug("Found %llu reserved seat!\n",
  209. (unsigned long long)ackno);
  210. *cur_head = state;
  211. goto out;
  212. }
  213. /* len == 0 means one packet */
  214. if (delta < len + 1)
  215. goto out_duplicate;
  216. delta -= len + 1;
  217. if (++cur_head == buf_end)
  218. cur_head = av->av_buf;
  219. }
  220. }
  221. av->av_buf_ackno = ackno;
  222. out:
  223. return 0;
  224. out_duplicate:
  225. /* Duplicate packet */
  226. dccp_pr_debug("Received a dup or already considered lost "
  227. "packet: %llu\n", (unsigned long long)ackno);
  228. return -EILSEQ;
  229. }
  230. static void dccp_ackvec_throw_record(struct dccp_ackvec *av,
  231. struct dccp_ackvec_record *avr)
  232. {
  233. struct dccp_ackvec_record *next;
  234. /* sort out vector length */
  235. if (av->av_buf_head <= avr->avr_ack_ptr)
  236. av->av_vec_len = avr->avr_ack_ptr - av->av_buf_head;
  237. else
  238. av->av_vec_len = DCCPAV_MAX_ACKVEC_LEN - 1 -
  239. av->av_buf_head + avr->avr_ack_ptr;
  240. /* free records */
  241. list_for_each_entry_safe_from(avr, next, &av->av_records, avr_node) {
  242. list_del(&avr->avr_node);
  243. kmem_cache_free(dccp_ackvec_record_slab, avr);
  244. }
  245. }
  246. void dccp_ackvec_check_rcv_ackno(struct dccp_ackvec *av, struct sock *sk,
  247. const u64 ackno)
  248. {
  249. struct dccp_ackvec_record *avr;
  250. /*
  251. * If we traverse backwards, it should be faster when we have large
  252. * windows. We will be receiving ACKs for stuff we sent a while back
  253. * -sorbo.
  254. */
  255. list_for_each_entry_reverse(avr, &av->av_records, avr_node) {
  256. if (ackno == avr->avr_ack_seqno) {
  257. dccp_pr_debug("%s ACK packet 0, len=%d, ack_seqno=%llu, "
  258. "ack_ackno=%llu, ACKED!\n",
  259. dccp_role(sk), avr->avr_ack_runlen,
  260. (unsigned long long)avr->avr_ack_seqno,
  261. (unsigned long long)avr->avr_ack_ackno);
  262. dccp_ackvec_throw_record(av, avr);
  263. break;
  264. } else if (avr->avr_ack_seqno > ackno)
  265. break; /* old news */
  266. }
  267. }
  268. static void dccp_ackvec_check_rcv_ackvector(struct dccp_ackvec *av,
  269. struct sock *sk, u64 *ackno,
  270. const unsigned char len,
  271. const unsigned char *vector)
  272. {
  273. unsigned char i;
  274. struct dccp_ackvec_record *avr;
  275. /* Check if we actually sent an ACK vector */
  276. if (list_empty(&av->av_records))
  277. return;
  278. i = len;
  279. /*
  280. * XXX
  281. * I think it might be more efficient to work backwards. See comment on
  282. * rcv_ackno. -sorbo.
  283. */
  284. avr = list_entry(av->av_records.next, struct dccp_ackvec_record, avr_node);
  285. while (i--) {
  286. const u8 rl = dccp_ackvec_runlen(vector);
  287. u64 ackno_end_rl;
  288. dccp_set_seqno(&ackno_end_rl, *ackno - rl);
  289. /*
  290. * If our AVR sequence number is greater than the ack, go
  291. * forward in the AVR list until it is not so.
  292. */
  293. list_for_each_entry_from(avr, &av->av_records, avr_node) {
  294. if (!after48(avr->avr_ack_seqno, *ackno))
  295. goto found;
  296. }
  297. /* End of the av_records list, not found, exit */
  298. break;
  299. found:
  300. if (between48(avr->avr_ack_seqno, ackno_end_rl, *ackno)) {
  301. if (dccp_ackvec_state(vector) != DCCPAV_NOT_RECEIVED) {
  302. dccp_pr_debug("%s ACK vector 0, len=%d, "
  303. "ack_seqno=%llu, ack_ackno=%llu, "
  304. "ACKED!\n",
  305. dccp_role(sk), len,
  306. (unsigned long long)
  307. avr->avr_ack_seqno,
  308. (unsigned long long)
  309. avr->avr_ack_ackno);
  310. dccp_ackvec_throw_record(av, avr);
  311. break;
  312. }
  313. /*
  314. * If it wasn't received, continue scanning... we might
  315. * find another one.
  316. */
  317. }
  318. dccp_set_seqno(ackno, ackno_end_rl - 1);
  319. ++vector;
  320. }
  321. }
  322. int dccp_ackvec_parse(struct sock *sk, const struct sk_buff *skb,
  323. u64 *ackno, const u8 opt, const u8 *value, const u8 len)
  324. {
  325. if (len > DCCP_SINGLE_OPT_MAXLEN)
  326. return -1;
  327. /* dccp_ackvector_print(DCCP_SKB_CB(skb)->dccpd_ack_seq, value, len); */
  328. dccp_ackvec_check_rcv_ackvector(dccp_sk(sk)->dccps_hc_rx_ackvec, sk,
  329. ackno, len, value);
  330. return 0;
  331. }
  332. /**
  333. * dccp_ackvec_clear_state - Perform house-keeping / garbage-collection
  334. * This routine is called when the peer acknowledges the receipt of Ack Vectors
  335. * up to and including @ackno. While based on on section A.3 of RFC 4340, here
  336. * are additional precautions to prevent corrupted buffer state. In particular,
  337. * we use tail_ackno to identify outdated records; it always marks the earliest
  338. * packet of group (2) in 11.4.2.
  339. */
  340. void dccp_ackvec_clear_state(struct dccp_ackvec *av, const u64 ackno)
  341. {
  342. struct dccp_ackvec_record *avr, *next;
  343. u8 runlen_now, eff_runlen;
  344. s64 delta;
  345. avr = dccp_ackvec_lookup(&av->av_records, ackno);
  346. if (avr == NULL)
  347. return;
  348. /*
  349. * Deal with outdated acknowledgments: this arises when e.g. there are
  350. * several old records and the acks from the peer come in slowly. In
  351. * that case we may still have records that pre-date tail_ackno.
  352. */
  353. delta = dccp_delta_seqno(av->av_tail_ackno, avr->avr_ack_ackno);
  354. if (delta < 0)
  355. goto free_records;
  356. /*
  357. * Deal with overlapping Ack Vectors: don't subtract more than the
  358. * number of packets between tail_ackno and ack_ackno.
  359. */
  360. eff_runlen = delta < avr->avr_ack_runlen ? delta : avr->avr_ack_runlen;
  361. runlen_now = dccp_ackvec_runlen(av->av_buf + avr->avr_ack_ptr);
  362. /*
  363. * The run length of Ack Vector cells does not decrease over time. If
  364. * the run length is the same as at the time the Ack Vector was sent, we
  365. * free the ack_ptr cell. That cell can however not be freed if the run
  366. * length has increased: in this case we need to move the tail pointer
  367. * backwards (towards higher indices), to its next-oldest neighbour.
  368. */
  369. if (runlen_now > eff_runlen) {
  370. av->av_buf[avr->avr_ack_ptr] -= eff_runlen + 1;
  371. av->av_buf_tail = __ackvec_idx_add(avr->avr_ack_ptr, 1);
  372. /* This move may not have cleared the overflow flag. */
  373. if (av->av_overflow)
  374. av->av_overflow = (av->av_buf_head == av->av_buf_tail);
  375. } else {
  376. av->av_buf_tail = avr->avr_ack_ptr;
  377. /*
  378. * We have made sure that avr points to a valid cell within the
  379. * buffer. This cell is either older than head, or equals head
  380. * (empty buffer): in both cases we no longer have any overflow.
  381. */
  382. av->av_overflow = 0;
  383. }
  384. /*
  385. * The peer has acknowledged up to and including ack_ackno. Hence the
  386. * first packet in group (2) of 11.4.2 is the successor of ack_ackno.
  387. */
  388. av->av_tail_ackno = ADD48(avr->avr_ack_ackno, 1);
  389. free_records:
  390. list_for_each_entry_safe_from(avr, next, &av->av_records, avr_node) {
  391. list_del(&avr->avr_node);
  392. kmem_cache_free(dccp_ackvec_record_slab, avr);
  393. }
  394. }
  395. int __init dccp_ackvec_init(void)
  396. {
  397. dccp_ackvec_slab = kmem_cache_create("dccp_ackvec",
  398. sizeof(struct dccp_ackvec), 0,
  399. SLAB_HWCACHE_ALIGN, NULL);
  400. if (dccp_ackvec_slab == NULL)
  401. goto out_err;
  402. dccp_ackvec_record_slab = kmem_cache_create("dccp_ackvec_record",
  403. sizeof(struct dccp_ackvec_record),
  404. 0, SLAB_HWCACHE_ALIGN, NULL);
  405. if (dccp_ackvec_record_slab == NULL)
  406. goto out_destroy_slab;
  407. return 0;
  408. out_destroy_slab:
  409. kmem_cache_destroy(dccp_ackvec_slab);
  410. dccp_ackvec_slab = NULL;
  411. out_err:
  412. DCCP_CRIT("Unable to create Ack Vector slab cache");
  413. return -ENOBUFS;
  414. }
  415. void dccp_ackvec_exit(void)
  416. {
  417. if (dccp_ackvec_slab != NULL) {
  418. kmem_cache_destroy(dccp_ackvec_slab);
  419. dccp_ackvec_slab = NULL;
  420. }
  421. if (dccp_ackvec_record_slab != NULL) {
  422. kmem_cache_destroy(dccp_ackvec_record_slab);
  423. dccp_ackvec_record_slab = NULL;
  424. }
  425. }