ccid3.c 27 KB

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