ccid3.c 25 KB

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