ccid3.c 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866
  1. // SPDX-License-Identifier: GPL-2.0-or-later
  2. /*
  3. * Copyright (c) 2007 The University of Aberdeen, Scotland, UK
  4. * Copyright (c) 2005-7 The University of Waikato, Hamilton, New Zealand.
  5. * Copyright (c) 2005-7 Ian McDonald <[email protected]>
  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 https://www.wand.net.nz/
  11. *
  12. * This code also uses code from Lulea University, rereleased as GPL by its
  13. * authors:
  14. * Copyright (c) 2003 Nils-Erik Mattsson, Joacim Haggmark, Magnus Erixzon
  15. *
  16. * Changes to meet Linux coding standards, to make it meet latest ccid3 draft
  17. * and to make it work as a loadable module in the DCCP stack written by
  18. * Arnaldo Carvalho de Melo <[email protected]>.
  19. *
  20. * Copyright (c) 2005 Arnaldo Carvalho de Melo <[email protected]>
  21. */
  22. #include "../dccp.h"
  23. #include "ccid3.h"
  24. #include <asm/unaligned.h>
  25. #ifdef CONFIG_IP_DCCP_CCID3_DEBUG
  26. static bool ccid3_debug;
  27. #define ccid3_pr_debug(format, a...) DCCP_PR_DEBUG(ccid3_debug, format, ##a)
  28. #else
  29. #define ccid3_pr_debug(format, a...)
  30. #endif
  31. /*
  32. * Transmitter Half-Connection Routines
  33. */
  34. #ifdef CONFIG_IP_DCCP_CCID3_DEBUG
  35. static const char *ccid3_tx_state_name(enum ccid3_hc_tx_states state)
  36. {
  37. static const char *const ccid3_state_names[] = {
  38. [TFRC_SSTATE_NO_SENT] = "NO_SENT",
  39. [TFRC_SSTATE_NO_FBACK] = "NO_FBACK",
  40. [TFRC_SSTATE_FBACK] = "FBACK",
  41. };
  42. return ccid3_state_names[state];
  43. }
  44. #endif
  45. static void ccid3_hc_tx_set_state(struct sock *sk,
  46. enum ccid3_hc_tx_states state)
  47. {
  48. struct ccid3_hc_tx_sock *hc = ccid3_hc_tx_sk(sk);
  49. enum ccid3_hc_tx_states oldstate = hc->tx_state;
  50. ccid3_pr_debug("%s(%p) %-8.8s -> %s\n",
  51. dccp_role(sk), sk, ccid3_tx_state_name(oldstate),
  52. ccid3_tx_state_name(state));
  53. WARN_ON(state == oldstate);
  54. hc->tx_state = state;
  55. }
  56. /*
  57. * Compute the initial sending rate X_init in the manner of RFC 3390:
  58. *
  59. * X_init = min(4 * s, max(2 * s, 4380 bytes)) / RTT
  60. *
  61. * Note that RFC 3390 uses MSS, RFC 4342 refers to RFC 3390, and rfc3448bis
  62. * (rev-02) clarifies the use of RFC 3390 with regard to the above formula.
  63. * For consistency with other parts of the code, X_init is scaled by 2^6.
  64. */
  65. static inline u64 rfc3390_initial_rate(struct sock *sk)
  66. {
  67. const struct ccid3_hc_tx_sock *hc = ccid3_hc_tx_sk(sk);
  68. const __u32 w_init = clamp_t(__u32, 4380U, 2 * hc->tx_s, 4 * hc->tx_s);
  69. return scaled_div(w_init << 6, hc->tx_rtt);
  70. }
  71. /**
  72. * ccid3_update_send_interval - Calculate new t_ipi = s / X_inst
  73. * @hc: socket to have the send interval updated
  74. *
  75. * This respects the granularity of X_inst (64 * bytes/second).
  76. */
  77. static void ccid3_update_send_interval(struct ccid3_hc_tx_sock *hc)
  78. {
  79. hc->tx_t_ipi = scaled_div32(((u64)hc->tx_s) << 6, hc->tx_x);
  80. DCCP_BUG_ON(hc->tx_t_ipi == 0);
  81. ccid3_pr_debug("t_ipi=%u, s=%u, X=%u\n", hc->tx_t_ipi,
  82. hc->tx_s, (unsigned int)(hc->tx_x >> 6));
  83. }
  84. static u32 ccid3_hc_tx_idle_rtt(struct ccid3_hc_tx_sock *hc, ktime_t now)
  85. {
  86. u32 delta = ktime_us_delta(now, hc->tx_t_last_win_count);
  87. return delta / hc->tx_rtt;
  88. }
  89. /**
  90. * ccid3_hc_tx_update_x - Update allowed sending rate X
  91. * @sk: socket to be updated
  92. * @stamp: most recent time if available - can be left NULL.
  93. *
  94. * This function tracks draft rfc3448bis, check there for latest details.
  95. *
  96. * Note: X and X_recv are both stored in units of 64 * bytes/second, to support
  97. * fine-grained resolution of sending rates. This requires scaling by 2^6
  98. * throughout the code. Only X_calc is unscaled (in bytes/second).
  99. *
  100. */
  101. static void ccid3_hc_tx_update_x(struct sock *sk, ktime_t *stamp)
  102. {
  103. struct ccid3_hc_tx_sock *hc = ccid3_hc_tx_sk(sk);
  104. __u64 min_rate = 2 * hc->tx_x_recv;
  105. const __u64 old_x = hc->tx_x;
  106. ktime_t now = stamp ? *stamp : ktime_get_real();
  107. /*
  108. * Handle IDLE periods: do not reduce below RFC3390 initial sending rate
  109. * when idling [RFC 4342, 5.1]. Definition of idling is from rfc3448bis:
  110. * a sender is idle if it has not sent anything over a 2-RTT-period.
  111. * For consistency with X and X_recv, min_rate is also scaled by 2^6.
  112. */
  113. if (ccid3_hc_tx_idle_rtt(hc, now) >= 2) {
  114. min_rate = rfc3390_initial_rate(sk);
  115. min_rate = max(min_rate, 2 * hc->tx_x_recv);
  116. }
  117. if (hc->tx_p > 0) {
  118. hc->tx_x = min(((__u64)hc->tx_x_calc) << 6, min_rate);
  119. hc->tx_x = max(hc->tx_x, (((__u64)hc->tx_s) << 6) / TFRC_T_MBI);
  120. } else if (ktime_us_delta(now, hc->tx_t_ld) - (s64)hc->tx_rtt >= 0) {
  121. hc->tx_x = min(2 * hc->tx_x, min_rate);
  122. hc->tx_x = max(hc->tx_x,
  123. scaled_div(((__u64)hc->tx_s) << 6, hc->tx_rtt));
  124. hc->tx_t_ld = now;
  125. }
  126. if (hc->tx_x != old_x) {
  127. ccid3_pr_debug("X_prev=%u, X_now=%u, X_calc=%u, "
  128. "X_recv=%u\n", (unsigned int)(old_x >> 6),
  129. (unsigned int)(hc->tx_x >> 6), hc->tx_x_calc,
  130. (unsigned int)(hc->tx_x_recv >> 6));
  131. ccid3_update_send_interval(hc);
  132. }
  133. }
  134. /**
  135. * ccid3_hc_tx_update_s - Track the mean packet size `s'
  136. * @hc: socket to be updated
  137. * @len: DCCP packet payload size in bytes
  138. *
  139. * cf. RFC 4342, 5.3 and RFC 3448, 4.1
  140. */
  141. static inline void ccid3_hc_tx_update_s(struct ccid3_hc_tx_sock *hc, int len)
  142. {
  143. const u16 old_s = hc->tx_s;
  144. hc->tx_s = tfrc_ewma(hc->tx_s, len, 9);
  145. if (hc->tx_s != old_s)
  146. ccid3_update_send_interval(hc);
  147. }
  148. /*
  149. * Update Window Counter using the algorithm from [RFC 4342, 8.1].
  150. * As elsewhere, RTT > 0 is assumed by using dccp_sample_rtt().
  151. */
  152. static inline void ccid3_hc_tx_update_win_count(struct ccid3_hc_tx_sock *hc,
  153. ktime_t now)
  154. {
  155. u32 delta = ktime_us_delta(now, hc->tx_t_last_win_count),
  156. quarter_rtts = (4 * delta) / hc->tx_rtt;
  157. if (quarter_rtts > 0) {
  158. hc->tx_t_last_win_count = now;
  159. hc->tx_last_win_count += min(quarter_rtts, 5U);
  160. hc->tx_last_win_count &= 0xF; /* mod 16 */
  161. }
  162. }
  163. static void ccid3_hc_tx_no_feedback_timer(struct timer_list *t)
  164. {
  165. struct ccid3_hc_tx_sock *hc = from_timer(hc, t, tx_no_feedback_timer);
  166. struct sock *sk = hc->sk;
  167. unsigned long t_nfb = USEC_PER_SEC / 5;
  168. bh_lock_sock(sk);
  169. if (sock_owned_by_user(sk)) {
  170. /* Try again later. */
  171. /* XXX: set some sensible MIB */
  172. goto restart_timer;
  173. }
  174. ccid3_pr_debug("%s(%p, state=%s) - entry\n", dccp_role(sk), sk,
  175. ccid3_tx_state_name(hc->tx_state));
  176. /* Ignore and do not restart after leaving the established state */
  177. if ((1 << sk->sk_state) & ~(DCCPF_OPEN | DCCPF_PARTOPEN))
  178. goto out;
  179. /* Reset feedback state to "no feedback received" */
  180. if (hc->tx_state == TFRC_SSTATE_FBACK)
  181. ccid3_hc_tx_set_state(sk, TFRC_SSTATE_NO_FBACK);
  182. /*
  183. * Determine new allowed sending rate X as per draft rfc3448bis-00, 4.4
  184. * RTO is 0 if and only if no feedback has been received yet.
  185. */
  186. if (hc->tx_t_rto == 0 || hc->tx_p == 0) {
  187. /* halve send rate directly */
  188. hc->tx_x = max(hc->tx_x / 2,
  189. (((__u64)hc->tx_s) << 6) / TFRC_T_MBI);
  190. ccid3_update_send_interval(hc);
  191. } else {
  192. /*
  193. * Modify the cached value of X_recv
  194. *
  195. * If (X_calc > 2 * X_recv)
  196. * X_recv = max(X_recv / 2, s / (2 * t_mbi));
  197. * Else
  198. * X_recv = X_calc / 4;
  199. *
  200. * Note that X_recv is scaled by 2^6 while X_calc is not
  201. */
  202. if (hc->tx_x_calc > (hc->tx_x_recv >> 5))
  203. hc->tx_x_recv =
  204. max(hc->tx_x_recv / 2,
  205. (((__u64)hc->tx_s) << 6) / (2*TFRC_T_MBI));
  206. else {
  207. hc->tx_x_recv = hc->tx_x_calc;
  208. hc->tx_x_recv <<= 4;
  209. }
  210. ccid3_hc_tx_update_x(sk, NULL);
  211. }
  212. ccid3_pr_debug("Reduced X to %llu/64 bytes/sec\n",
  213. (unsigned long long)hc->tx_x);
  214. /*
  215. * Set new timeout for the nofeedback timer.
  216. * See comments in packet_recv() regarding the value of t_RTO.
  217. */
  218. if (unlikely(hc->tx_t_rto == 0)) /* no feedback received yet */
  219. t_nfb = TFRC_INITIAL_TIMEOUT;
  220. else
  221. t_nfb = max(hc->tx_t_rto, 2 * hc->tx_t_ipi);
  222. restart_timer:
  223. sk_reset_timer(sk, &hc->tx_no_feedback_timer,
  224. jiffies + usecs_to_jiffies(t_nfb));
  225. out:
  226. bh_unlock_sock(sk);
  227. sock_put(sk);
  228. }
  229. /**
  230. * ccid3_hc_tx_send_packet - Delay-based dequeueing of TX packets
  231. * @sk: socket to send packet from
  232. * @skb: next packet candidate to send on @sk
  233. *
  234. * This function uses the convention of ccid_packet_dequeue_eval() and
  235. * returns a millisecond-delay value between 0 and t_mbi = 64000 msec.
  236. */
  237. static int ccid3_hc_tx_send_packet(struct sock *sk, struct sk_buff *skb)
  238. {
  239. struct dccp_sock *dp = dccp_sk(sk);
  240. struct ccid3_hc_tx_sock *hc = ccid3_hc_tx_sk(sk);
  241. ktime_t now = ktime_get_real();
  242. s64 delay;
  243. /*
  244. * This function is called only for Data and DataAck packets. Sending
  245. * zero-sized Data(Ack)s is theoretically possible, but for congestion
  246. * control this case is pathological - ignore it.
  247. */
  248. if (unlikely(skb->len == 0))
  249. return -EBADMSG;
  250. if (hc->tx_state == TFRC_SSTATE_NO_SENT) {
  251. sk_reset_timer(sk, &hc->tx_no_feedback_timer, (jiffies +
  252. usecs_to_jiffies(TFRC_INITIAL_TIMEOUT)));
  253. hc->tx_last_win_count = 0;
  254. hc->tx_t_last_win_count = now;
  255. /* Set t_0 for initial packet */
  256. hc->tx_t_nom = now;
  257. hc->tx_s = skb->len;
  258. /*
  259. * Use initial RTT sample when available: recommended by erratum
  260. * to RFC 4342. This implements the initialisation procedure of
  261. * draft rfc3448bis, section 4.2. Remember, X is scaled by 2^6.
  262. */
  263. if (dp->dccps_syn_rtt) {
  264. ccid3_pr_debug("SYN RTT = %uus\n", dp->dccps_syn_rtt);
  265. hc->tx_rtt = dp->dccps_syn_rtt;
  266. hc->tx_x = rfc3390_initial_rate(sk);
  267. hc->tx_t_ld = now;
  268. } else {
  269. /*
  270. * Sender does not have RTT sample:
  271. * - set fallback RTT (RFC 4340, 3.4) since a RTT value
  272. * is needed in several parts (e.g. window counter);
  273. * - set sending rate X_pps = 1pps as per RFC 3448, 4.2.
  274. */
  275. hc->tx_rtt = DCCP_FALLBACK_RTT;
  276. hc->tx_x = hc->tx_s;
  277. hc->tx_x <<= 6;
  278. }
  279. ccid3_update_send_interval(hc);
  280. ccid3_hc_tx_set_state(sk, TFRC_SSTATE_NO_FBACK);
  281. } else {
  282. delay = ktime_us_delta(hc->tx_t_nom, now);
  283. ccid3_pr_debug("delay=%ld\n", (long)delay);
  284. /*
  285. * Scheduling of packet transmissions (RFC 5348, 8.3)
  286. *
  287. * if (t_now > t_nom - delta)
  288. * // send the packet now
  289. * else
  290. * // send the packet in (t_nom - t_now) milliseconds.
  291. */
  292. if (delay >= TFRC_T_DELTA)
  293. return (u32)delay / USEC_PER_MSEC;
  294. ccid3_hc_tx_update_win_count(hc, now);
  295. }
  296. /* prepare to send now (add options etc.) */
  297. dp->dccps_hc_tx_insert_options = 1;
  298. DCCP_SKB_CB(skb)->dccpd_ccval = hc->tx_last_win_count;
  299. /* set the nominal send time for the next following packet */
  300. hc->tx_t_nom = ktime_add_us(hc->tx_t_nom, hc->tx_t_ipi);
  301. return CCID_PACKET_SEND_AT_ONCE;
  302. }
  303. static void ccid3_hc_tx_packet_sent(struct sock *sk, unsigned int len)
  304. {
  305. struct ccid3_hc_tx_sock *hc = ccid3_hc_tx_sk(sk);
  306. ccid3_hc_tx_update_s(hc, len);
  307. if (tfrc_tx_hist_add(&hc->tx_hist, dccp_sk(sk)->dccps_gss))
  308. DCCP_CRIT("packet history - out of memory!");
  309. }
  310. static void ccid3_hc_tx_packet_recv(struct sock *sk, struct sk_buff *skb)
  311. {
  312. struct ccid3_hc_tx_sock *hc = ccid3_hc_tx_sk(sk);
  313. struct tfrc_tx_hist_entry *acked;
  314. ktime_t now;
  315. unsigned long t_nfb;
  316. u32 r_sample;
  317. /* we are only interested in ACKs */
  318. if (!(DCCP_SKB_CB(skb)->dccpd_type == DCCP_PKT_ACK ||
  319. DCCP_SKB_CB(skb)->dccpd_type == DCCP_PKT_DATAACK))
  320. return;
  321. /*
  322. * Locate the acknowledged packet in the TX history.
  323. *
  324. * Returning "entry not found" here can for instance happen when
  325. * - the host has not sent out anything (e.g. a passive server),
  326. * - the Ack is outdated (packet with higher Ack number was received),
  327. * - it is a bogus Ack (for a packet not sent on this connection).
  328. */
  329. acked = tfrc_tx_hist_find_entry(hc->tx_hist, dccp_hdr_ack_seq(skb));
  330. if (acked == NULL)
  331. return;
  332. /* For the sake of RTT sampling, ignore/remove all older entries */
  333. tfrc_tx_hist_purge(&acked->next);
  334. /* Update the moving average for the RTT estimate (RFC 3448, 4.3) */
  335. now = ktime_get_real();
  336. r_sample = dccp_sample_rtt(sk, ktime_us_delta(now, acked->stamp));
  337. hc->tx_rtt = tfrc_ewma(hc->tx_rtt, r_sample, 9);
  338. /*
  339. * Update allowed sending rate X as per draft rfc3448bis-00, 4.2/3
  340. */
  341. if (hc->tx_state == TFRC_SSTATE_NO_FBACK) {
  342. ccid3_hc_tx_set_state(sk, TFRC_SSTATE_FBACK);
  343. if (hc->tx_t_rto == 0) {
  344. /*
  345. * Initial feedback packet: Larger Initial Windows (4.2)
  346. */
  347. hc->tx_x = rfc3390_initial_rate(sk);
  348. hc->tx_t_ld = now;
  349. ccid3_update_send_interval(hc);
  350. goto done_computing_x;
  351. } else if (hc->tx_p == 0) {
  352. /*
  353. * First feedback after nofeedback timer expiry (4.3)
  354. */
  355. goto done_computing_x;
  356. }
  357. }
  358. /* Update sending rate (step 4 of [RFC 3448, 4.3]) */
  359. if (hc->tx_p > 0)
  360. hc->tx_x_calc = tfrc_calc_x(hc->tx_s, hc->tx_rtt, hc->tx_p);
  361. ccid3_hc_tx_update_x(sk, &now);
  362. done_computing_x:
  363. ccid3_pr_debug("%s(%p), RTT=%uus (sample=%uus), s=%u, "
  364. "p=%u, X_calc=%u, X_recv=%u, X=%u\n",
  365. dccp_role(sk), sk, hc->tx_rtt, r_sample,
  366. hc->tx_s, hc->tx_p, hc->tx_x_calc,
  367. (unsigned int)(hc->tx_x_recv >> 6),
  368. (unsigned int)(hc->tx_x >> 6));
  369. /* unschedule no feedback timer */
  370. sk_stop_timer(sk, &hc->tx_no_feedback_timer);
  371. /*
  372. * As we have calculated new ipi, delta, t_nom it is possible
  373. * that we now can send a packet, so wake up dccp_wait_for_ccid
  374. */
  375. sk->sk_write_space(sk);
  376. /*
  377. * Update timeout interval for the nofeedback timer. In order to control
  378. * rate halving on networks with very low RTTs (<= 1 ms), use per-route
  379. * tunable RTAX_RTO_MIN value as the lower bound.
  380. */
  381. hc->tx_t_rto = max_t(u32, 4 * hc->tx_rtt,
  382. USEC_PER_SEC/HZ * tcp_rto_min(sk));
  383. /*
  384. * Schedule no feedback timer to expire in
  385. * max(t_RTO, 2 * s/X) = max(t_RTO, 2 * t_ipi)
  386. */
  387. t_nfb = max(hc->tx_t_rto, 2 * hc->tx_t_ipi);
  388. ccid3_pr_debug("%s(%p), Scheduled no feedback timer to "
  389. "expire in %lu jiffies (%luus)\n",
  390. dccp_role(sk), sk, usecs_to_jiffies(t_nfb), t_nfb);
  391. sk_reset_timer(sk, &hc->tx_no_feedback_timer,
  392. jiffies + usecs_to_jiffies(t_nfb));
  393. }
  394. static int ccid3_hc_tx_parse_options(struct sock *sk, u8 packet_type,
  395. u8 option, u8 *optval, u8 optlen)
  396. {
  397. struct ccid3_hc_tx_sock *hc = ccid3_hc_tx_sk(sk);
  398. __be32 opt_val;
  399. switch (option) {
  400. case TFRC_OPT_RECEIVE_RATE:
  401. case TFRC_OPT_LOSS_EVENT_RATE:
  402. /* Must be ignored on Data packets, cf. RFC 4342 8.3 and 8.5 */
  403. if (packet_type == DCCP_PKT_DATA)
  404. break;
  405. if (unlikely(optlen != 4)) {
  406. DCCP_WARN("%s(%p), invalid len %d for %u\n",
  407. dccp_role(sk), sk, optlen, option);
  408. return -EINVAL;
  409. }
  410. opt_val = ntohl(get_unaligned((__be32 *)optval));
  411. if (option == TFRC_OPT_RECEIVE_RATE) {
  412. /* Receive Rate is kept in units of 64 bytes/second */
  413. hc->tx_x_recv = opt_val;
  414. hc->tx_x_recv <<= 6;
  415. ccid3_pr_debug("%s(%p), RECEIVE_RATE=%u\n",
  416. dccp_role(sk), sk, opt_val);
  417. } else {
  418. /* Update the fixpoint Loss Event Rate fraction */
  419. hc->tx_p = tfrc_invert_loss_event_rate(opt_val);
  420. ccid3_pr_debug("%s(%p), LOSS_EVENT_RATE=%u\n",
  421. dccp_role(sk), sk, opt_val);
  422. }
  423. }
  424. return 0;
  425. }
  426. static int ccid3_hc_tx_init(struct ccid *ccid, struct sock *sk)
  427. {
  428. struct ccid3_hc_tx_sock *hc = ccid_priv(ccid);
  429. hc->tx_state = TFRC_SSTATE_NO_SENT;
  430. hc->tx_hist = NULL;
  431. hc->sk = sk;
  432. timer_setup(&hc->tx_no_feedback_timer,
  433. ccid3_hc_tx_no_feedback_timer, 0);
  434. return 0;
  435. }
  436. static void ccid3_hc_tx_exit(struct sock *sk)
  437. {
  438. struct ccid3_hc_tx_sock *hc = ccid3_hc_tx_sk(sk);
  439. sk_stop_timer(sk, &hc->tx_no_feedback_timer);
  440. tfrc_tx_hist_purge(&hc->tx_hist);
  441. }
  442. static void ccid3_hc_tx_get_info(struct sock *sk, struct tcp_info *info)
  443. {
  444. info->tcpi_rto = ccid3_hc_tx_sk(sk)->tx_t_rto;
  445. info->tcpi_rtt = ccid3_hc_tx_sk(sk)->tx_rtt;
  446. }
  447. static int ccid3_hc_tx_getsockopt(struct sock *sk, const int optname, int len,
  448. u32 __user *optval, int __user *optlen)
  449. {
  450. const struct ccid3_hc_tx_sock *hc = ccid3_hc_tx_sk(sk);
  451. struct tfrc_tx_info tfrc;
  452. const void *val;
  453. switch (optname) {
  454. case DCCP_SOCKOPT_CCID_TX_INFO:
  455. if (len < sizeof(tfrc))
  456. return -EINVAL;
  457. memset(&tfrc, 0, sizeof(tfrc));
  458. tfrc.tfrctx_x = hc->tx_x;
  459. tfrc.tfrctx_x_recv = hc->tx_x_recv;
  460. tfrc.tfrctx_x_calc = hc->tx_x_calc;
  461. tfrc.tfrctx_rtt = hc->tx_rtt;
  462. tfrc.tfrctx_p = hc->tx_p;
  463. tfrc.tfrctx_rto = hc->tx_t_rto;
  464. tfrc.tfrctx_ipi = hc->tx_t_ipi;
  465. len = sizeof(tfrc);
  466. val = &tfrc;
  467. break;
  468. default:
  469. return -ENOPROTOOPT;
  470. }
  471. if (put_user(len, optlen) || copy_to_user(optval, val, len))
  472. return -EFAULT;
  473. return 0;
  474. }
  475. /*
  476. * Receiver Half-Connection Routines
  477. */
  478. /* CCID3 feedback types */
  479. enum ccid3_fback_type {
  480. CCID3_FBACK_NONE = 0,
  481. CCID3_FBACK_INITIAL,
  482. CCID3_FBACK_PERIODIC,
  483. CCID3_FBACK_PARAM_CHANGE
  484. };
  485. #ifdef CONFIG_IP_DCCP_CCID3_DEBUG
  486. static const char *ccid3_rx_state_name(enum ccid3_hc_rx_states state)
  487. {
  488. static const char *const ccid3_rx_state_names[] = {
  489. [TFRC_RSTATE_NO_DATA] = "NO_DATA",
  490. [TFRC_RSTATE_DATA] = "DATA",
  491. };
  492. return ccid3_rx_state_names[state];
  493. }
  494. #endif
  495. static void ccid3_hc_rx_set_state(struct sock *sk,
  496. enum ccid3_hc_rx_states state)
  497. {
  498. struct ccid3_hc_rx_sock *hc = ccid3_hc_rx_sk(sk);
  499. enum ccid3_hc_rx_states oldstate = hc->rx_state;
  500. ccid3_pr_debug("%s(%p) %-8.8s -> %s\n",
  501. dccp_role(sk), sk, ccid3_rx_state_name(oldstate),
  502. ccid3_rx_state_name(state));
  503. WARN_ON(state == oldstate);
  504. hc->rx_state = state;
  505. }
  506. static void ccid3_hc_rx_send_feedback(struct sock *sk,
  507. const struct sk_buff *skb,
  508. enum ccid3_fback_type fbtype)
  509. {
  510. struct ccid3_hc_rx_sock *hc = ccid3_hc_rx_sk(sk);
  511. struct dccp_sock *dp = dccp_sk(sk);
  512. ktime_t now = ktime_get();
  513. s64 delta = 0;
  514. switch (fbtype) {
  515. case CCID3_FBACK_INITIAL:
  516. hc->rx_x_recv = 0;
  517. hc->rx_pinv = ~0U; /* see RFC 4342, 8.5 */
  518. break;
  519. case CCID3_FBACK_PARAM_CHANGE:
  520. /*
  521. * When parameters change (new loss or p > p_prev), we do not
  522. * have a reliable estimate for R_m of [RFC 3448, 6.2] and so
  523. * need to reuse the previous value of X_recv. However, when
  524. * X_recv was 0 (due to early loss), this would kill X down to
  525. * s/t_mbi (i.e. one packet in 64 seconds).
  526. * To avoid such drastic reduction, we approximate X_recv as
  527. * the number of bytes since last feedback.
  528. * This is a safe fallback, since X is bounded above by X_calc.
  529. */
  530. if (hc->rx_x_recv > 0)
  531. break;
  532. fallthrough;
  533. case CCID3_FBACK_PERIODIC:
  534. delta = ktime_us_delta(now, hc->rx_tstamp_last_feedback);
  535. if (delta <= 0)
  536. delta = 1;
  537. hc->rx_x_recv = scaled_div32(hc->rx_bytes_recv, delta);
  538. break;
  539. default:
  540. return;
  541. }
  542. ccid3_pr_debug("Interval %lldusec, X_recv=%u, 1/p=%u\n", delta,
  543. hc->rx_x_recv, hc->rx_pinv);
  544. hc->rx_tstamp_last_feedback = now;
  545. hc->rx_last_counter = dccp_hdr(skb)->dccph_ccval;
  546. hc->rx_bytes_recv = 0;
  547. dp->dccps_hc_rx_insert_options = 1;
  548. dccp_send_ack(sk);
  549. }
  550. static int ccid3_hc_rx_insert_options(struct sock *sk, struct sk_buff *skb)
  551. {
  552. const struct ccid3_hc_rx_sock *hc = ccid3_hc_rx_sk(sk);
  553. __be32 x_recv, pinv;
  554. if (!(sk->sk_state == DCCP_OPEN || sk->sk_state == DCCP_PARTOPEN))
  555. return 0;
  556. if (dccp_packet_without_ack(skb))
  557. return 0;
  558. x_recv = htonl(hc->rx_x_recv);
  559. pinv = htonl(hc->rx_pinv);
  560. if (dccp_insert_option(skb, TFRC_OPT_LOSS_EVENT_RATE,
  561. &pinv, sizeof(pinv)) ||
  562. dccp_insert_option(skb, TFRC_OPT_RECEIVE_RATE,
  563. &x_recv, sizeof(x_recv)))
  564. return -1;
  565. return 0;
  566. }
  567. /**
  568. * ccid3_first_li - Implements [RFC 5348, 6.3.1]
  569. * @sk: socket to calculate loss interval for
  570. *
  571. * Determine the length of the first loss interval via inverse lookup.
  572. * Assume that X_recv can be computed by the throughput equation
  573. * s
  574. * X_recv = --------
  575. * R * fval
  576. * Find some p such that f(p) = fval; return 1/p (scaled).
  577. */
  578. static u32 ccid3_first_li(struct sock *sk)
  579. {
  580. struct ccid3_hc_rx_sock *hc = ccid3_hc_rx_sk(sk);
  581. u32 x_recv, p;
  582. s64 delta;
  583. u64 fval;
  584. if (hc->rx_rtt == 0) {
  585. DCCP_WARN("No RTT estimate available, using fallback RTT\n");
  586. hc->rx_rtt = DCCP_FALLBACK_RTT;
  587. }
  588. delta = ktime_us_delta(ktime_get(), hc->rx_tstamp_last_feedback);
  589. if (delta <= 0)
  590. delta = 1;
  591. x_recv = scaled_div32(hc->rx_bytes_recv, delta);
  592. if (x_recv == 0) { /* would also trigger divide-by-zero */
  593. DCCP_WARN("X_recv==0\n");
  594. if (hc->rx_x_recv == 0) {
  595. DCCP_BUG("stored value of X_recv is zero");
  596. return ~0U;
  597. }
  598. x_recv = hc->rx_x_recv;
  599. }
  600. fval = scaled_div(hc->rx_s, hc->rx_rtt);
  601. fval = scaled_div32(fval, x_recv);
  602. p = tfrc_calc_x_reverse_lookup(fval);
  603. ccid3_pr_debug("%s(%p), receive rate=%u bytes/s, implied "
  604. "loss rate=%u\n", dccp_role(sk), sk, x_recv, p);
  605. return p == 0 ? ~0U : scaled_div(1, p);
  606. }
  607. static void ccid3_hc_rx_packet_recv(struct sock *sk, struct sk_buff *skb)
  608. {
  609. struct ccid3_hc_rx_sock *hc = ccid3_hc_rx_sk(sk);
  610. enum ccid3_fback_type do_feedback = CCID3_FBACK_NONE;
  611. const u64 ndp = dccp_sk(sk)->dccps_options_received.dccpor_ndp;
  612. const bool is_data_packet = dccp_data_packet(skb);
  613. if (unlikely(hc->rx_state == TFRC_RSTATE_NO_DATA)) {
  614. if (is_data_packet) {
  615. const u32 payload = skb->len - dccp_hdr(skb)->dccph_doff * 4;
  616. do_feedback = CCID3_FBACK_INITIAL;
  617. ccid3_hc_rx_set_state(sk, TFRC_RSTATE_DATA);
  618. hc->rx_s = payload;
  619. /*
  620. * Not necessary to update rx_bytes_recv here,
  621. * since X_recv = 0 for the first feedback packet (cf.
  622. * RFC 3448, 6.3) -- gerrit
  623. */
  624. }
  625. goto update_records;
  626. }
  627. if (tfrc_rx_hist_duplicate(&hc->rx_hist, skb))
  628. return; /* done receiving */
  629. if (is_data_packet) {
  630. const u32 payload = skb->len - dccp_hdr(skb)->dccph_doff * 4;
  631. /*
  632. * Update moving-average of s and the sum of received payload bytes
  633. */
  634. hc->rx_s = tfrc_ewma(hc->rx_s, payload, 9);
  635. hc->rx_bytes_recv += payload;
  636. }
  637. /*
  638. * Perform loss detection and handle pending losses
  639. */
  640. if (tfrc_rx_handle_loss(&hc->rx_hist, &hc->rx_li_hist,
  641. skb, ndp, ccid3_first_li, sk)) {
  642. do_feedback = CCID3_FBACK_PARAM_CHANGE;
  643. goto done_receiving;
  644. }
  645. if (tfrc_rx_hist_loss_pending(&hc->rx_hist))
  646. return; /* done receiving */
  647. /*
  648. * Handle data packets: RTT sampling and monitoring p
  649. */
  650. if (unlikely(!is_data_packet))
  651. goto update_records;
  652. if (!tfrc_lh_is_initialised(&hc->rx_li_hist)) {
  653. const u32 sample = tfrc_rx_hist_sample_rtt(&hc->rx_hist, skb);
  654. /*
  655. * Empty loss history: no loss so far, hence p stays 0.
  656. * Sample RTT values, since an RTT estimate is required for the
  657. * computation of p when the first loss occurs; RFC 3448, 6.3.1.
  658. */
  659. if (sample != 0)
  660. hc->rx_rtt = tfrc_ewma(hc->rx_rtt, sample, 9);
  661. } else if (tfrc_lh_update_i_mean(&hc->rx_li_hist, skb)) {
  662. /*
  663. * Step (3) of [RFC 3448, 6.1]: Recompute I_mean and, if I_mean
  664. * has decreased (resp. p has increased), send feedback now.
  665. */
  666. do_feedback = CCID3_FBACK_PARAM_CHANGE;
  667. }
  668. /*
  669. * Check if the periodic once-per-RTT feedback is due; RFC 4342, 10.3
  670. */
  671. if (SUB16(dccp_hdr(skb)->dccph_ccval, hc->rx_last_counter) > 3)
  672. do_feedback = CCID3_FBACK_PERIODIC;
  673. update_records:
  674. tfrc_rx_hist_add_packet(&hc->rx_hist, skb, ndp);
  675. done_receiving:
  676. if (do_feedback)
  677. ccid3_hc_rx_send_feedback(sk, skb, do_feedback);
  678. }
  679. static int ccid3_hc_rx_init(struct ccid *ccid, struct sock *sk)
  680. {
  681. struct ccid3_hc_rx_sock *hc = ccid_priv(ccid);
  682. hc->rx_state = TFRC_RSTATE_NO_DATA;
  683. tfrc_lh_init(&hc->rx_li_hist);
  684. return tfrc_rx_hist_alloc(&hc->rx_hist);
  685. }
  686. static void ccid3_hc_rx_exit(struct sock *sk)
  687. {
  688. struct ccid3_hc_rx_sock *hc = ccid3_hc_rx_sk(sk);
  689. tfrc_rx_hist_purge(&hc->rx_hist);
  690. tfrc_lh_cleanup(&hc->rx_li_hist);
  691. }
  692. static void ccid3_hc_rx_get_info(struct sock *sk, struct tcp_info *info)
  693. {
  694. info->tcpi_ca_state = ccid3_hc_rx_sk(sk)->rx_state;
  695. info->tcpi_options |= TCPI_OPT_TIMESTAMPS;
  696. info->tcpi_rcv_rtt = ccid3_hc_rx_sk(sk)->rx_rtt;
  697. }
  698. static int ccid3_hc_rx_getsockopt(struct sock *sk, const int optname, int len,
  699. u32 __user *optval, int __user *optlen)
  700. {
  701. const struct ccid3_hc_rx_sock *hc = ccid3_hc_rx_sk(sk);
  702. struct tfrc_rx_info rx_info;
  703. const void *val;
  704. switch (optname) {
  705. case DCCP_SOCKOPT_CCID_RX_INFO:
  706. if (len < sizeof(rx_info))
  707. return -EINVAL;
  708. rx_info.tfrcrx_x_recv = hc->rx_x_recv;
  709. rx_info.tfrcrx_rtt = hc->rx_rtt;
  710. rx_info.tfrcrx_p = tfrc_invert_loss_event_rate(hc->rx_pinv);
  711. len = sizeof(rx_info);
  712. val = &rx_info;
  713. break;
  714. default:
  715. return -ENOPROTOOPT;
  716. }
  717. if (put_user(len, optlen) || copy_to_user(optval, val, len))
  718. return -EFAULT;
  719. return 0;
  720. }
  721. struct ccid_operations ccid3_ops = {
  722. .ccid_id = DCCPC_CCID3,
  723. .ccid_name = "TCP-Friendly Rate Control",
  724. .ccid_hc_tx_obj_size = sizeof(struct ccid3_hc_tx_sock),
  725. .ccid_hc_tx_init = ccid3_hc_tx_init,
  726. .ccid_hc_tx_exit = ccid3_hc_tx_exit,
  727. .ccid_hc_tx_send_packet = ccid3_hc_tx_send_packet,
  728. .ccid_hc_tx_packet_sent = ccid3_hc_tx_packet_sent,
  729. .ccid_hc_tx_packet_recv = ccid3_hc_tx_packet_recv,
  730. .ccid_hc_tx_parse_options = ccid3_hc_tx_parse_options,
  731. .ccid_hc_rx_obj_size = sizeof(struct ccid3_hc_rx_sock),
  732. .ccid_hc_rx_init = ccid3_hc_rx_init,
  733. .ccid_hc_rx_exit = ccid3_hc_rx_exit,
  734. .ccid_hc_rx_insert_options = ccid3_hc_rx_insert_options,
  735. .ccid_hc_rx_packet_recv = ccid3_hc_rx_packet_recv,
  736. .ccid_hc_rx_get_info = ccid3_hc_rx_get_info,
  737. .ccid_hc_tx_get_info = ccid3_hc_tx_get_info,
  738. .ccid_hc_rx_getsockopt = ccid3_hc_rx_getsockopt,
  739. .ccid_hc_tx_getsockopt = ccid3_hc_tx_getsockopt,
  740. };
  741. #ifdef CONFIG_IP_DCCP_CCID3_DEBUG
  742. module_param(ccid3_debug, bool, 0644);
  743. MODULE_PARM_DESC(ccid3_debug, "Enable CCID-3 debug messages");
  744. #endif