feat.c 47 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570
  1. /*
  2. * net/dccp/feat.c
  3. *
  4. * Feature negotiation for the DCCP protocol (RFC 4340, section 6)
  5. *
  6. * Copyright (c) 2008 Gerrit Renker <gerrit@erg.abdn.ac.uk>
  7. * Rewrote from scratch, some bits from earlier code by
  8. * Copyright (c) 2005 Andrea Bittau <a.bittau@cs.ucl.ac.uk>
  9. *
  10. *
  11. * ASSUMPTIONS
  12. * -----------
  13. * o Feature negotiation is coordinated with connection setup (as in TCP), wild
  14. * changes of parameters of an established connection are not supported.
  15. * o Changing non-negotiable (NN) values is supported in state OPEN/PARTOPEN.
  16. * o All currently known SP features have 1-byte quantities. If in the future
  17. * extensions of RFCs 4340..42 define features with item lengths larger than
  18. * one byte, a feature-specific extension of the code will be required.
  19. *
  20. * This program is free software; you can redistribute it and/or
  21. * modify it under the terms of the GNU General Public License
  22. * as published by the Free Software Foundation; either version
  23. * 2 of the License, or (at your option) any later version.
  24. */
  25. #include <linux/module.h>
  26. #include <linux/slab.h>
  27. #include "ccid.h"
  28. #include "feat.h"
  29. /* feature-specific sysctls - initialised to the defaults from RFC 4340, 6.4 */
  30. unsigned long sysctl_dccp_sequence_window __read_mostly = 100;
  31. int sysctl_dccp_rx_ccid __read_mostly = 2,
  32. sysctl_dccp_tx_ccid __read_mostly = 2;
  33. /*
  34. * Feature activation handlers.
  35. *
  36. * These all use an u64 argument, to provide enough room for NN/SP features. At
  37. * this stage the negotiated values have been checked to be within their range.
  38. */
  39. static int dccp_hdlr_ccid(struct sock *sk, u64 ccid, bool rx)
  40. {
  41. struct dccp_sock *dp = dccp_sk(sk);
  42. struct ccid *new_ccid = ccid_new(ccid, sk, rx);
  43. if (new_ccid == NULL)
  44. return -ENOMEM;
  45. if (rx) {
  46. ccid_hc_rx_delete(dp->dccps_hc_rx_ccid, sk);
  47. dp->dccps_hc_rx_ccid = new_ccid;
  48. } else {
  49. ccid_hc_tx_delete(dp->dccps_hc_tx_ccid, sk);
  50. dp->dccps_hc_tx_ccid = new_ccid;
  51. }
  52. return 0;
  53. }
  54. static int dccp_hdlr_seq_win(struct sock *sk, u64 seq_win, bool rx)
  55. {
  56. struct dccp_sock *dp = dccp_sk(sk);
  57. if (rx) {
  58. dp->dccps_r_seq_win = seq_win;
  59. /* propagate changes to update SWL/SWH */
  60. dccp_update_gsr(sk, dp->dccps_gsr);
  61. } else {
  62. dp->dccps_l_seq_win = seq_win;
  63. /* propagate changes to update AWL */
  64. dccp_update_gss(sk, dp->dccps_gss);
  65. }
  66. return 0;
  67. }
  68. static int dccp_hdlr_ack_ratio(struct sock *sk, u64 ratio, bool rx)
  69. {
  70. if (rx)
  71. dccp_sk(sk)->dccps_r_ack_ratio = ratio;
  72. else
  73. dccp_sk(sk)->dccps_l_ack_ratio = ratio;
  74. return 0;
  75. }
  76. static int dccp_hdlr_ackvec(struct sock *sk, u64 enable, bool rx)
  77. {
  78. struct dccp_sock *dp = dccp_sk(sk);
  79. if (rx) {
  80. if (enable && dp->dccps_hc_rx_ackvec == NULL) {
  81. dp->dccps_hc_rx_ackvec = dccp_ackvec_alloc(gfp_any());
  82. if (dp->dccps_hc_rx_ackvec == NULL)
  83. return -ENOMEM;
  84. } else if (!enable) {
  85. dccp_ackvec_free(dp->dccps_hc_rx_ackvec);
  86. dp->dccps_hc_rx_ackvec = NULL;
  87. }
  88. }
  89. return 0;
  90. }
  91. static int dccp_hdlr_ndp(struct sock *sk, u64 enable, bool rx)
  92. {
  93. if (!rx)
  94. dccp_sk(sk)->dccps_send_ndp_count = (enable > 0);
  95. return 0;
  96. }
  97. /*
  98. * Minimum Checksum Coverage is located at the RX side (9.2.1). This means that
  99. * `rx' holds when the sending peer informs about his partial coverage via a
  100. * ChangeR() option. In the other case, we are the sender and the receiver
  101. * announces its coverage via ChangeL() options. The policy here is to honour
  102. * such communication by enabling the corresponding partial coverage - but only
  103. * if it has not been set manually before; the warning here means that all
  104. * packets will be dropped.
  105. */
  106. static int dccp_hdlr_min_cscov(struct sock *sk, u64 cscov, bool rx)
  107. {
  108. struct dccp_sock *dp = dccp_sk(sk);
  109. if (rx)
  110. dp->dccps_pcrlen = cscov;
  111. else {
  112. if (dp->dccps_pcslen == 0)
  113. dp->dccps_pcslen = cscov;
  114. else if (cscov > dp->dccps_pcslen)
  115. DCCP_WARN("CsCov %u too small, peer requires >= %u\n",
  116. dp->dccps_pcslen, (u8)cscov);
  117. }
  118. return 0;
  119. }
  120. static const struct {
  121. u8 feat_num; /* DCCPF_xxx */
  122. enum dccp_feat_type rxtx; /* RX or TX */
  123. enum dccp_feat_type reconciliation; /* SP or NN */
  124. u8 default_value; /* as in 6.4 */
  125. int (*activation_hdlr)(struct sock *sk, u64 val, bool rx);
  126. /*
  127. * Lookup table for location and type of features (from RFC 4340/4342)
  128. * +--------------------------+----+-----+----+----+---------+-----------+
  129. * | Feature | Location | Reconc. | Initial | Section |
  130. * | | RX | TX | SP | NN | Value | Reference |
  131. * +--------------------------+----+-----+----+----+---------+-----------+
  132. * | DCCPF_CCID | | X | X | | 2 | 10 |
  133. * | DCCPF_SHORT_SEQNOS | | X | X | | 0 | 7.6.1 |
  134. * | DCCPF_SEQUENCE_WINDOW | | X | | X | 100 | 7.5.2 |
  135. * | DCCPF_ECN_INCAPABLE | X | | X | | 0 | 12.1 |
  136. * | DCCPF_ACK_RATIO | | X | | X | 2 | 11.3 |
  137. * | DCCPF_SEND_ACK_VECTOR | X | | X | | 0 | 11.5 |
  138. * | DCCPF_SEND_NDP_COUNT | | X | X | | 0 | 7.7.2 |
  139. * | DCCPF_MIN_CSUM_COVER | X | | X | | 0 | 9.2.1 |
  140. * | DCCPF_DATA_CHECKSUM | X | | X | | 0 | 9.3.1 |
  141. * | DCCPF_SEND_LEV_RATE | X | | X | | 0 | 4342/8.4 |
  142. * +--------------------------+----+-----+----+----+---------+-----------+
  143. */
  144. } dccp_feat_table[] = {
  145. { DCCPF_CCID, FEAT_AT_TX, FEAT_SP, 2, dccp_hdlr_ccid },
  146. { DCCPF_SHORT_SEQNOS, FEAT_AT_TX, FEAT_SP, 0, NULL },
  147. { DCCPF_SEQUENCE_WINDOW, FEAT_AT_TX, FEAT_NN, 100, dccp_hdlr_seq_win },
  148. { DCCPF_ECN_INCAPABLE, FEAT_AT_RX, FEAT_SP, 0, NULL },
  149. { DCCPF_ACK_RATIO, FEAT_AT_TX, FEAT_NN, 2, dccp_hdlr_ack_ratio},
  150. { DCCPF_SEND_ACK_VECTOR, FEAT_AT_RX, FEAT_SP, 0, dccp_hdlr_ackvec },
  151. { DCCPF_SEND_NDP_COUNT, FEAT_AT_TX, FEAT_SP, 0, dccp_hdlr_ndp },
  152. { DCCPF_MIN_CSUM_COVER, FEAT_AT_RX, FEAT_SP, 0, dccp_hdlr_min_cscov},
  153. { DCCPF_DATA_CHECKSUM, FEAT_AT_RX, FEAT_SP, 0, NULL },
  154. { DCCPF_SEND_LEV_RATE, FEAT_AT_RX, FEAT_SP, 0, NULL },
  155. };
  156. #define DCCP_FEAT_SUPPORTED_MAX ARRAY_SIZE(dccp_feat_table)
  157. /**
  158. * dccp_feat_index - Hash function to map feature number into array position
  159. * Returns consecutive array index or -1 if the feature is not understood.
  160. */
  161. static int dccp_feat_index(u8 feat_num)
  162. {
  163. /* The first 9 entries are occupied by the types from RFC 4340, 6.4 */
  164. if (feat_num > DCCPF_RESERVED && feat_num <= DCCPF_DATA_CHECKSUM)
  165. return feat_num - 1;
  166. /*
  167. * Other features: add cases for new feature types here after adding
  168. * them to the above table.
  169. */
  170. switch (feat_num) {
  171. case DCCPF_SEND_LEV_RATE:
  172. return DCCP_FEAT_SUPPORTED_MAX - 1;
  173. }
  174. return -1;
  175. }
  176. static u8 dccp_feat_type(u8 feat_num)
  177. {
  178. int idx = dccp_feat_index(feat_num);
  179. if (idx < 0)
  180. return FEAT_UNKNOWN;
  181. return dccp_feat_table[idx].reconciliation;
  182. }
  183. static int dccp_feat_default_value(u8 feat_num)
  184. {
  185. int idx = dccp_feat_index(feat_num);
  186. /*
  187. * There are no default values for unknown features, so encountering a
  188. * negative index here indicates a serious problem somewhere else.
  189. */
  190. DCCP_BUG_ON(idx < 0);
  191. return idx < 0 ? 0 : dccp_feat_table[idx].default_value;
  192. }
  193. /*
  194. * Debugging and verbose-printing section
  195. */
  196. static const char *dccp_feat_fname(const u8 feat)
  197. {
  198. static const char *const feature_names[] = {
  199. [DCCPF_RESERVED] = "Reserved",
  200. [DCCPF_CCID] = "CCID",
  201. [DCCPF_SHORT_SEQNOS] = "Allow Short Seqnos",
  202. [DCCPF_SEQUENCE_WINDOW] = "Sequence Window",
  203. [DCCPF_ECN_INCAPABLE] = "ECN Incapable",
  204. [DCCPF_ACK_RATIO] = "Ack Ratio",
  205. [DCCPF_SEND_ACK_VECTOR] = "Send ACK Vector",
  206. [DCCPF_SEND_NDP_COUNT] = "Send NDP Count",
  207. [DCCPF_MIN_CSUM_COVER] = "Min. Csum Coverage",
  208. [DCCPF_DATA_CHECKSUM] = "Send Data Checksum",
  209. };
  210. if (feat > DCCPF_DATA_CHECKSUM && feat < DCCPF_MIN_CCID_SPECIFIC)
  211. return feature_names[DCCPF_RESERVED];
  212. if (feat == DCCPF_SEND_LEV_RATE)
  213. return "Send Loss Event Rate";
  214. if (feat >= DCCPF_MIN_CCID_SPECIFIC)
  215. return "CCID-specific";
  216. return feature_names[feat];
  217. }
  218. static const char *const dccp_feat_sname[] = {
  219. "DEFAULT", "INITIALISING", "CHANGING", "UNSTABLE", "STABLE",
  220. };
  221. #ifdef CONFIG_IP_DCCP_DEBUG
  222. static const char *dccp_feat_oname(const u8 opt)
  223. {
  224. switch (opt) {
  225. case DCCPO_CHANGE_L: return "Change_L";
  226. case DCCPO_CONFIRM_L: return "Confirm_L";
  227. case DCCPO_CHANGE_R: return "Change_R";
  228. case DCCPO_CONFIRM_R: return "Confirm_R";
  229. }
  230. return NULL;
  231. }
  232. static void dccp_feat_printval(u8 feat_num, dccp_feat_val const *val)
  233. {
  234. u8 i, type = dccp_feat_type(feat_num);
  235. if (val == NULL || (type == FEAT_SP && val->sp.vec == NULL))
  236. dccp_pr_debug_cat("(NULL)");
  237. else if (type == FEAT_SP)
  238. for (i = 0; i < val->sp.len; i++)
  239. dccp_pr_debug_cat("%s%u", i ? " " : "", val->sp.vec[i]);
  240. else if (type == FEAT_NN)
  241. dccp_pr_debug_cat("%llu", (unsigned long long)val->nn);
  242. else
  243. dccp_pr_debug_cat("unknown type %u", type);
  244. }
  245. static void dccp_feat_printvals(u8 feat_num, u8 *list, u8 len)
  246. {
  247. u8 type = dccp_feat_type(feat_num);
  248. dccp_feat_val fval = { .sp.vec = list, .sp.len = len };
  249. if (type == FEAT_NN)
  250. fval.nn = dccp_decode_value_var(list, len);
  251. dccp_feat_printval(feat_num, &fval);
  252. }
  253. static void dccp_feat_print_entry(struct dccp_feat_entry const *entry)
  254. {
  255. dccp_debug(" * %s %s = ", entry->is_local ? "local" : "remote",
  256. dccp_feat_fname(entry->feat_num));
  257. dccp_feat_printval(entry->feat_num, &entry->val);
  258. dccp_pr_debug_cat(", state=%s %s\n", dccp_feat_sname[entry->state],
  259. entry->needs_confirm ? "(Confirm pending)" : "");
  260. }
  261. #define dccp_feat_print_opt(opt, feat, val, len, mandatory) do { \
  262. dccp_pr_debug("%s(%s, ", dccp_feat_oname(opt), dccp_feat_fname(feat));\
  263. dccp_feat_printvals(feat, val, len); \
  264. dccp_pr_debug_cat(") %s\n", mandatory ? "!" : ""); } while (0)
  265. #define dccp_feat_print_fnlist(fn_list) { \
  266. const struct dccp_feat_entry *___entry; \
  267. \
  268. dccp_pr_debug("List Dump:\n"); \
  269. list_for_each_entry(___entry, fn_list, node) \
  270. dccp_feat_print_entry(___entry); \
  271. }
  272. #else /* ! CONFIG_IP_DCCP_DEBUG */
  273. #define dccp_feat_print_opt(opt, feat, val, len, mandatory)
  274. #define dccp_feat_print_fnlist(fn_list)
  275. #endif
  276. static int __dccp_feat_activate(struct sock *sk, const int idx,
  277. const bool is_local, dccp_feat_val const *fval)
  278. {
  279. bool rx;
  280. u64 val;
  281. if (idx < 0 || idx >= DCCP_FEAT_SUPPORTED_MAX)
  282. return -1;
  283. if (dccp_feat_table[idx].activation_hdlr == NULL)
  284. return 0;
  285. if (fval == NULL) {
  286. val = dccp_feat_table[idx].default_value;
  287. } else if (dccp_feat_table[idx].reconciliation == FEAT_SP) {
  288. if (fval->sp.vec == NULL) {
  289. /*
  290. * This can happen when an empty Confirm is sent
  291. * for an SP (i.e. known) feature. In this case
  292. * we would be using the default anyway.
  293. */
  294. DCCP_CRIT("Feature #%d undefined: using default", idx);
  295. val = dccp_feat_table[idx].default_value;
  296. } else {
  297. val = fval->sp.vec[0];
  298. }
  299. } else {
  300. val = fval->nn;
  301. }
  302. /* Location is RX if this is a local-RX or remote-TX feature */
  303. rx = (is_local == (dccp_feat_table[idx].rxtx == FEAT_AT_RX));
  304. dccp_debug(" -> activating %s %s, %sval=%llu\n", rx ? "RX" : "TX",
  305. dccp_feat_fname(dccp_feat_table[idx].feat_num),
  306. fval ? "" : "default ", (unsigned long long)val);
  307. return dccp_feat_table[idx].activation_hdlr(sk, val, rx);
  308. }
  309. /**
  310. * dccp_feat_activate - Activate feature value on socket
  311. * @sk: fully connected DCCP socket (after handshake is complete)
  312. * @feat_num: feature to activate, one of %dccp_feature_numbers
  313. * @local: whether local (1) or remote (0) @feat_num is meant
  314. * @fval: the value (SP or NN) to activate, or NULL to use the default value
  315. *
  316. * For general use this function is preferable over __dccp_feat_activate().
  317. */
  318. static int dccp_feat_activate(struct sock *sk, u8 feat_num, bool local,
  319. dccp_feat_val const *fval)
  320. {
  321. return __dccp_feat_activate(sk, dccp_feat_index(feat_num), local, fval);
  322. }
  323. /* Test for "Req'd" feature (RFC 4340, 6.4) */
  324. static inline int dccp_feat_must_be_understood(u8 feat_num)
  325. {
  326. return feat_num == DCCPF_CCID || feat_num == DCCPF_SHORT_SEQNOS ||
  327. feat_num == DCCPF_SEQUENCE_WINDOW;
  328. }
  329. /* copy constructor, fval must not already contain allocated memory */
  330. static int dccp_feat_clone_sp_val(dccp_feat_val *fval, u8 const *val, u8 len)
  331. {
  332. fval->sp.len = len;
  333. if (fval->sp.len > 0) {
  334. fval->sp.vec = kmemdup(val, len, gfp_any());
  335. if (fval->sp.vec == NULL) {
  336. fval->sp.len = 0;
  337. return -ENOBUFS;
  338. }
  339. }
  340. return 0;
  341. }
  342. static void dccp_feat_val_destructor(u8 feat_num, dccp_feat_val *val)
  343. {
  344. if (unlikely(val == NULL))
  345. return;
  346. if (dccp_feat_type(feat_num) == FEAT_SP)
  347. kfree(val->sp.vec);
  348. memset(val, 0, sizeof(*val));
  349. }
  350. static struct dccp_feat_entry *
  351. dccp_feat_clone_entry(struct dccp_feat_entry const *original)
  352. {
  353. struct dccp_feat_entry *new;
  354. u8 type = dccp_feat_type(original->feat_num);
  355. if (type == FEAT_UNKNOWN)
  356. return NULL;
  357. new = kmemdup(original, sizeof(struct dccp_feat_entry), gfp_any());
  358. if (new == NULL)
  359. return NULL;
  360. if (type == FEAT_SP && dccp_feat_clone_sp_val(&new->val,
  361. original->val.sp.vec,
  362. original->val.sp.len)) {
  363. kfree(new);
  364. return NULL;
  365. }
  366. return new;
  367. }
  368. static void dccp_feat_entry_destructor(struct dccp_feat_entry *entry)
  369. {
  370. if (entry != NULL) {
  371. dccp_feat_val_destructor(entry->feat_num, &entry->val);
  372. kfree(entry);
  373. }
  374. }
  375. /*
  376. * List management functions
  377. *
  378. * Feature negotiation lists rely on and maintain the following invariants:
  379. * - each feat_num in the list is known, i.e. we know its type and default value
  380. * - each feat_num/is_local combination is unique (old entries are overwritten)
  381. * - SP values are always freshly allocated
  382. * - list is sorted in increasing order of feature number (faster lookup)
  383. */
  384. static struct dccp_feat_entry *dccp_feat_list_lookup(struct list_head *fn_list,
  385. u8 feat_num, bool is_local)
  386. {
  387. struct dccp_feat_entry *entry;
  388. list_for_each_entry(entry, fn_list, node) {
  389. if (entry->feat_num == feat_num && entry->is_local == is_local)
  390. return entry;
  391. else if (entry->feat_num > feat_num)
  392. break;
  393. }
  394. return NULL;
  395. }
  396. /**
  397. * dccp_feat_entry_new - Central list update routine (called by all others)
  398. * @head: list to add to
  399. * @feat: feature number
  400. * @local: whether the local (1) or remote feature with number @feat is meant
  401. *
  402. * This is the only constructor and serves to ensure the above invariants.
  403. */
  404. static struct dccp_feat_entry *
  405. dccp_feat_entry_new(struct list_head *head, u8 feat, bool local)
  406. {
  407. struct dccp_feat_entry *entry;
  408. list_for_each_entry(entry, head, node)
  409. if (entry->feat_num == feat && entry->is_local == local) {
  410. dccp_feat_val_destructor(entry->feat_num, &entry->val);
  411. return entry;
  412. } else if (entry->feat_num > feat) {
  413. head = &entry->node;
  414. break;
  415. }
  416. entry = kmalloc(sizeof(*entry), gfp_any());
  417. if (entry != NULL) {
  418. entry->feat_num = feat;
  419. entry->is_local = local;
  420. list_add_tail(&entry->node, head);
  421. }
  422. return entry;
  423. }
  424. /**
  425. * dccp_feat_push_change - Add/overwrite a Change option in the list
  426. * @fn_list: feature-negotiation list to update
  427. * @feat: one of %dccp_feature_numbers
  428. * @local: whether local (1) or remote (0) @feat_num is meant
  429. * @mandatory: whether to use Mandatory feature negotiation options
  430. * @fval: pointer to NN/SP value to be inserted (will be copied)
  431. */
  432. static int dccp_feat_push_change(struct list_head *fn_list, u8 feat, u8 local,
  433. u8 mandatory, dccp_feat_val *fval)
  434. {
  435. struct dccp_feat_entry *new = dccp_feat_entry_new(fn_list, feat, local);
  436. if (new == NULL)
  437. return -ENOMEM;
  438. new->feat_num = feat;
  439. new->is_local = local;
  440. new->state = FEAT_INITIALISING;
  441. new->needs_confirm = false;
  442. new->empty_confirm = false;
  443. new->val = *fval;
  444. new->needs_mandatory = mandatory;
  445. return 0;
  446. }
  447. /**
  448. * dccp_feat_push_confirm - Add a Confirm entry to the FN list
  449. * @fn_list: feature-negotiation list to add to
  450. * @feat: one of %dccp_feature_numbers
  451. * @local: whether local (1) or remote (0) @feat_num is being confirmed
  452. * @fval: pointer to NN/SP value to be inserted or NULL
  453. *
  454. * Returns 0 on success, a Reset code for further processing otherwise.
  455. */
  456. static int dccp_feat_push_confirm(struct list_head *fn_list, u8 feat, u8 local,
  457. dccp_feat_val *fval)
  458. {
  459. struct dccp_feat_entry *new = dccp_feat_entry_new(fn_list, feat, local);
  460. if (new == NULL)
  461. return DCCP_RESET_CODE_TOO_BUSY;
  462. new->feat_num = feat;
  463. new->is_local = local;
  464. new->state = FEAT_STABLE; /* transition in 6.6.2 */
  465. new->needs_confirm = true;
  466. new->empty_confirm = (fval == NULL);
  467. new->val.nn = 0; /* zeroes the whole structure */
  468. if (!new->empty_confirm)
  469. new->val = *fval;
  470. new->needs_mandatory = false;
  471. return 0;
  472. }
  473. static int dccp_push_empty_confirm(struct list_head *fn_list, u8 feat, u8 local)
  474. {
  475. return dccp_feat_push_confirm(fn_list, feat, local, NULL);
  476. }
  477. static inline void dccp_feat_list_pop(struct dccp_feat_entry *entry)
  478. {
  479. list_del(&entry->node);
  480. dccp_feat_entry_destructor(entry);
  481. }
  482. void dccp_feat_list_purge(struct list_head *fn_list)
  483. {
  484. struct dccp_feat_entry *entry, *next;
  485. list_for_each_entry_safe(entry, next, fn_list, node)
  486. dccp_feat_entry_destructor(entry);
  487. INIT_LIST_HEAD(fn_list);
  488. }
  489. EXPORT_SYMBOL_GPL(dccp_feat_list_purge);
  490. /* generate @to as full clone of @from - @to must not contain any nodes */
  491. int dccp_feat_clone_list(struct list_head const *from, struct list_head *to)
  492. {
  493. struct dccp_feat_entry *entry, *new;
  494. INIT_LIST_HEAD(to);
  495. list_for_each_entry(entry, from, node) {
  496. new = dccp_feat_clone_entry(entry);
  497. if (new == NULL)
  498. goto cloning_failed;
  499. list_add_tail(&new->node, to);
  500. }
  501. return 0;
  502. cloning_failed:
  503. dccp_feat_list_purge(to);
  504. return -ENOMEM;
  505. }
  506. /**
  507. * dccp_feat_valid_nn_length - Enforce length constraints on NN options
  508. * Length is between 0 and %DCCP_OPTVAL_MAXLEN. Used for outgoing packets only,
  509. * incoming options are accepted as long as their values are valid.
  510. */
  511. static u8 dccp_feat_valid_nn_length(u8 feat_num)
  512. {
  513. if (feat_num == DCCPF_ACK_RATIO) /* RFC 4340, 11.3 and 6.6.8 */
  514. return 2;
  515. if (feat_num == DCCPF_SEQUENCE_WINDOW) /* RFC 4340, 7.5.2 and 6.5 */
  516. return 6;
  517. return 0;
  518. }
  519. static u8 dccp_feat_is_valid_nn_val(u8 feat_num, u64 val)
  520. {
  521. switch (feat_num) {
  522. case DCCPF_ACK_RATIO:
  523. return val <= DCCPF_ACK_RATIO_MAX;
  524. case DCCPF_SEQUENCE_WINDOW:
  525. return val >= DCCPF_SEQ_WMIN && val <= DCCPF_SEQ_WMAX;
  526. }
  527. return 0; /* feature unknown - so we can't tell */
  528. }
  529. /* check that SP values are within the ranges defined in RFC 4340 */
  530. static u8 dccp_feat_is_valid_sp_val(u8 feat_num, u8 val)
  531. {
  532. switch (feat_num) {
  533. case DCCPF_CCID:
  534. return val == DCCPC_CCID2 || val == DCCPC_CCID3;
  535. /* Type-check Boolean feature values: */
  536. case DCCPF_SHORT_SEQNOS:
  537. case DCCPF_ECN_INCAPABLE:
  538. case DCCPF_SEND_ACK_VECTOR:
  539. case DCCPF_SEND_NDP_COUNT:
  540. case DCCPF_DATA_CHECKSUM:
  541. case DCCPF_SEND_LEV_RATE:
  542. return val < 2;
  543. case DCCPF_MIN_CSUM_COVER:
  544. return val < 16;
  545. }
  546. return 0; /* feature unknown */
  547. }
  548. static u8 dccp_feat_sp_list_ok(u8 feat_num, u8 const *sp_list, u8 sp_len)
  549. {
  550. if (sp_list == NULL || sp_len < 1)
  551. return 0;
  552. while (sp_len--)
  553. if (!dccp_feat_is_valid_sp_val(feat_num, *sp_list++))
  554. return 0;
  555. return 1;
  556. }
  557. /**
  558. * dccp_feat_insert_opts - Generate FN options from current list state
  559. * @skb: next sk_buff to be sent to the peer
  560. * @dp: for client during handshake and general negotiation
  561. * @dreq: used by the server only (all Changes/Confirms in LISTEN/RESPOND)
  562. */
  563. int dccp_feat_insert_opts(struct dccp_sock *dp, struct dccp_request_sock *dreq,
  564. struct sk_buff *skb)
  565. {
  566. struct list_head *fn = dreq ? &dreq->dreq_featneg : &dp->dccps_featneg;
  567. struct dccp_feat_entry *pos, *next;
  568. u8 opt, type, len, *ptr, nn_in_nbo[DCCP_OPTVAL_MAXLEN];
  569. bool rpt;
  570. /* put entries into @skb in the order they appear in the list */
  571. list_for_each_entry_safe_reverse(pos, next, fn, node) {
  572. opt = dccp_feat_genopt(pos);
  573. type = dccp_feat_type(pos->feat_num);
  574. rpt = false;
  575. if (pos->empty_confirm) {
  576. len = 0;
  577. ptr = NULL;
  578. } else {
  579. if (type == FEAT_SP) {
  580. len = pos->val.sp.len;
  581. ptr = pos->val.sp.vec;
  582. rpt = pos->needs_confirm;
  583. } else if (type == FEAT_NN) {
  584. len = dccp_feat_valid_nn_length(pos->feat_num);
  585. ptr = nn_in_nbo;
  586. dccp_encode_value_var(pos->val.nn, ptr, len);
  587. } else {
  588. DCCP_BUG("unknown feature %u", pos->feat_num);
  589. return -1;
  590. }
  591. }
  592. dccp_feat_print_opt(opt, pos->feat_num, ptr, len, 0);
  593. if (dccp_insert_fn_opt(skb, opt, pos->feat_num, ptr, len, rpt))
  594. return -1;
  595. if (pos->needs_mandatory && dccp_insert_option_mandatory(skb))
  596. return -1;
  597. if (skb->sk->sk_state == DCCP_OPEN &&
  598. (opt == DCCPO_CONFIRM_R || opt == DCCPO_CONFIRM_L)) {
  599. /*
  600. * Confirms don't get retransmitted (6.6.3) once the
  601. * connection is in state OPEN
  602. */
  603. dccp_feat_list_pop(pos);
  604. } else {
  605. /*
  606. * Enter CHANGING after transmitting the Change
  607. * option (6.6.2).
  608. */
  609. if (pos->state == FEAT_INITIALISING)
  610. pos->state = FEAT_CHANGING;
  611. }
  612. }
  613. return 0;
  614. }
  615. /**
  616. * __feat_register_nn - Register new NN value on socket
  617. * @fn: feature-negotiation list to register with
  618. * @feat: an NN feature from %dccp_feature_numbers
  619. * @mandatory: use Mandatory option if 1
  620. * @nn_val: value to register (restricted to 4 bytes)
  621. *
  622. * Note that NN features are local by definition (RFC 4340, 6.3.2).
  623. */
  624. static int __feat_register_nn(struct list_head *fn, u8 feat,
  625. u8 mandatory, u64 nn_val)
  626. {
  627. dccp_feat_val fval = { .nn = nn_val };
  628. if (dccp_feat_type(feat) != FEAT_NN ||
  629. !dccp_feat_is_valid_nn_val(feat, nn_val))
  630. return -EINVAL;
  631. /* Don't bother with default values, they will be activated anyway. */
  632. if (nn_val - (u64)dccp_feat_default_value(feat) == 0)
  633. return 0;
  634. return dccp_feat_push_change(fn, feat, 1, mandatory, &fval);
  635. }
  636. /**
  637. * __feat_register_sp - Register new SP value/list on socket
  638. * @fn: feature-negotiation list to register with
  639. * @feat: an SP feature from %dccp_feature_numbers
  640. * @is_local: whether the local (1) or the remote (0) @feat is meant
  641. * @mandatory: use Mandatory option if 1
  642. * @sp_val: SP value followed by optional preference list
  643. * @sp_len: length of @sp_val in bytes
  644. */
  645. static int __feat_register_sp(struct list_head *fn, u8 feat, u8 is_local,
  646. u8 mandatory, u8 const *sp_val, u8 sp_len)
  647. {
  648. dccp_feat_val fval;
  649. if (dccp_feat_type(feat) != FEAT_SP ||
  650. !dccp_feat_sp_list_ok(feat, sp_val, sp_len))
  651. return -EINVAL;
  652. /* Avoid negotiating alien CCIDs by only advertising supported ones */
  653. if (feat == DCCPF_CCID && !ccid_support_check(sp_val, sp_len))
  654. return -EOPNOTSUPP;
  655. if (dccp_feat_clone_sp_val(&fval, sp_val, sp_len))
  656. return -ENOMEM;
  657. if (dccp_feat_push_change(fn, feat, is_local, mandatory, &fval)) {
  658. kfree(fval.sp.vec);
  659. return -ENOMEM;
  660. }
  661. return 0;
  662. }
  663. /**
  664. * dccp_feat_register_sp - Register requests to change SP feature values
  665. * @sk: client or listening socket
  666. * @feat: one of %dccp_feature_numbers
  667. * @is_local: whether the local (1) or remote (0) @feat is meant
  668. * @list: array of preferred values, in descending order of preference
  669. * @len: length of @list in bytes
  670. */
  671. int dccp_feat_register_sp(struct sock *sk, u8 feat, u8 is_local,
  672. u8 const *list, u8 len)
  673. { /* any changes must be registered before establishing the connection */
  674. if (sk->sk_state != DCCP_CLOSED)
  675. return -EISCONN;
  676. if (dccp_feat_type(feat) != FEAT_SP)
  677. return -EINVAL;
  678. return __feat_register_sp(&dccp_sk(sk)->dccps_featneg, feat, is_local,
  679. 0, list, len);
  680. }
  681. /**
  682. * dccp_feat_nn_get - Query current/pending value of NN feature
  683. * @sk: DCCP socket of an established connection
  684. * @feat: NN feature number from %dccp_feature_numbers
  685. *
  686. * For a known NN feature, returns value currently being negotiated, or
  687. * current (confirmed) value if no negotiation is going on.
  688. */
  689. u64 dccp_feat_nn_get(struct sock *sk, u8 feat)
  690. {
  691. if (dccp_feat_type(feat) == FEAT_NN) {
  692. struct dccp_sock *dp = dccp_sk(sk);
  693. struct dccp_feat_entry *entry;
  694. entry = dccp_feat_list_lookup(&dp->dccps_featneg, feat, 1);
  695. if (entry != NULL)
  696. return entry->val.nn;
  697. switch (feat) {
  698. case DCCPF_ACK_RATIO:
  699. return dp->dccps_l_ack_ratio;
  700. case DCCPF_SEQUENCE_WINDOW:
  701. return dp->dccps_l_seq_win;
  702. }
  703. }
  704. DCCP_BUG("attempt to look up unsupported feature %u", feat);
  705. return 0;
  706. }
  707. EXPORT_SYMBOL_GPL(dccp_feat_nn_get);
  708. /**
  709. * dccp_feat_signal_nn_change - Update NN values for an established connection
  710. * @sk: DCCP socket of an established connection
  711. * @feat: NN feature number from %dccp_feature_numbers
  712. * @nn_val: the new value to use
  713. *
  714. * This function is used to communicate NN updates out-of-band.
  715. */
  716. int dccp_feat_signal_nn_change(struct sock *sk, u8 feat, u64 nn_val)
  717. {
  718. struct list_head *fn = &dccp_sk(sk)->dccps_featneg;
  719. dccp_feat_val fval = { .nn = nn_val };
  720. struct dccp_feat_entry *entry;
  721. if (sk->sk_state != DCCP_OPEN && sk->sk_state != DCCP_PARTOPEN)
  722. return 0;
  723. if (dccp_feat_type(feat) != FEAT_NN ||
  724. !dccp_feat_is_valid_nn_val(feat, nn_val))
  725. return -EINVAL;
  726. if (nn_val == dccp_feat_nn_get(sk, feat))
  727. return 0; /* already set or negotiation under way */
  728. entry = dccp_feat_list_lookup(fn, feat, 1);
  729. if (entry != NULL) {
  730. dccp_pr_debug("Clobbering existing NN entry %llu -> %llu\n",
  731. (unsigned long long)entry->val.nn,
  732. (unsigned long long)nn_val);
  733. dccp_feat_list_pop(entry);
  734. }
  735. inet_csk_schedule_ack(sk);
  736. return dccp_feat_push_change(fn, feat, 1, 0, &fval);
  737. }
  738. EXPORT_SYMBOL_GPL(dccp_feat_signal_nn_change);
  739. /*
  740. * Tracking features whose value depend on the choice of CCID
  741. *
  742. * This is designed with an extension in mind so that a list walk could be done
  743. * before activating any features. However, the existing framework was found to
  744. * work satisfactorily up until now, the automatic verification is left open.
  745. * When adding new CCIDs, add a corresponding dependency table here.
  746. */
  747. static const struct ccid_dependency *dccp_feat_ccid_deps(u8 ccid, bool is_local)
  748. {
  749. static const struct ccid_dependency ccid2_dependencies[2][2] = {
  750. /*
  751. * CCID2 mandates Ack Vectors (RFC 4341, 4.): as CCID is a TX
  752. * feature and Send Ack Vector is an RX feature, `is_local'
  753. * needs to be reversed.
  754. */
  755. { /* Dependencies of the receiver-side (remote) CCID2 */
  756. {
  757. .dependent_feat = DCCPF_SEND_ACK_VECTOR,
  758. .is_local = true,
  759. .is_mandatory = true,
  760. .val = 1
  761. },
  762. { 0, 0, 0, 0 }
  763. },
  764. { /* Dependencies of the sender-side (local) CCID2 */
  765. {
  766. .dependent_feat = DCCPF_SEND_ACK_VECTOR,
  767. .is_local = false,
  768. .is_mandatory = true,
  769. .val = 1
  770. },
  771. { 0, 0, 0, 0 }
  772. }
  773. };
  774. static const struct ccid_dependency ccid3_dependencies[2][5] = {
  775. { /*
  776. * Dependencies of the receiver-side CCID3
  777. */
  778. { /* locally disable Ack Vectors */
  779. .dependent_feat = DCCPF_SEND_ACK_VECTOR,
  780. .is_local = true,
  781. .is_mandatory = false,
  782. .val = 0
  783. },
  784. { /* see below why Send Loss Event Rate is on */
  785. .dependent_feat = DCCPF_SEND_LEV_RATE,
  786. .is_local = true,
  787. .is_mandatory = true,
  788. .val = 1
  789. },
  790. { /* NDP Count is needed as per RFC 4342, 6.1.1 */
  791. .dependent_feat = DCCPF_SEND_NDP_COUNT,
  792. .is_local = false,
  793. .is_mandatory = true,
  794. .val = 1
  795. },
  796. { 0, 0, 0, 0 },
  797. },
  798. { /*
  799. * CCID3 at the TX side: we request that the HC-receiver
  800. * will not send Ack Vectors (they will be ignored, so
  801. * Mandatory is not set); we enable Send Loss Event Rate
  802. * (Mandatory since the implementation does not support
  803. * the Loss Intervals option of RFC 4342, 8.6).
  804. * The last two options are for peer's information only.
  805. */
  806. {
  807. .dependent_feat = DCCPF_SEND_ACK_VECTOR,
  808. .is_local = false,
  809. .is_mandatory = false,
  810. .val = 0
  811. },
  812. {
  813. .dependent_feat = DCCPF_SEND_LEV_RATE,
  814. .is_local = false,
  815. .is_mandatory = true,
  816. .val = 1
  817. },
  818. { /* this CCID does not support Ack Ratio */
  819. .dependent_feat = DCCPF_ACK_RATIO,
  820. .is_local = true,
  821. .is_mandatory = false,
  822. .val = 0
  823. },
  824. { /* tell receiver we are sending NDP counts */
  825. .dependent_feat = DCCPF_SEND_NDP_COUNT,
  826. .is_local = true,
  827. .is_mandatory = false,
  828. .val = 1
  829. },
  830. { 0, 0, 0, 0 }
  831. }
  832. };
  833. switch (ccid) {
  834. case DCCPC_CCID2:
  835. return ccid2_dependencies[is_local];
  836. case DCCPC_CCID3:
  837. return ccid3_dependencies[is_local];
  838. default:
  839. return NULL;
  840. }
  841. }
  842. /**
  843. * dccp_feat_propagate_ccid - Resolve dependencies of features on choice of CCID
  844. * @fn: feature-negotiation list to update
  845. * @id: CCID number to track
  846. * @is_local: whether TX CCID (1) or RX CCID (0) is meant
  847. *
  848. * This function needs to be called after registering all other features.
  849. */
  850. static int dccp_feat_propagate_ccid(struct list_head *fn, u8 id, bool is_local)
  851. {
  852. const struct ccid_dependency *table = dccp_feat_ccid_deps(id, is_local);
  853. int i, rc = (table == NULL);
  854. for (i = 0; rc == 0 && table[i].dependent_feat != DCCPF_RESERVED; i++)
  855. if (dccp_feat_type(table[i].dependent_feat) == FEAT_SP)
  856. rc = __feat_register_sp(fn, table[i].dependent_feat,
  857. table[i].is_local,
  858. table[i].is_mandatory,
  859. &table[i].val, 1);
  860. else
  861. rc = __feat_register_nn(fn, table[i].dependent_feat,
  862. table[i].is_mandatory,
  863. table[i].val);
  864. return rc;
  865. }
  866. /**
  867. * dccp_feat_finalise_settings - Finalise settings before starting negotiation
  868. * @dp: client or listening socket (settings will be inherited)
  869. *
  870. * This is called after all registrations (socket initialisation, sysctls, and
  871. * sockopt calls), and before sending the first packet containing Change options
  872. * (ie. client-Request or server-Response), to ensure internal consistency.
  873. */
  874. int dccp_feat_finalise_settings(struct dccp_sock *dp)
  875. {
  876. struct list_head *fn = &dp->dccps_featneg;
  877. struct dccp_feat_entry *entry;
  878. int i = 2, ccids[2] = { -1, -1 };
  879. /*
  880. * Propagating CCIDs:
  881. * 1) not useful to propagate CCID settings if this host advertises more
  882. * than one CCID: the choice of CCID may still change - if this is
  883. * the client, or if this is the server and the client sends
  884. * singleton CCID values.
  885. * 2) since is that propagate_ccid changes the list, we defer changing
  886. * the sorted list until after the traversal.
  887. */
  888. list_for_each_entry(entry, fn, node)
  889. if (entry->feat_num == DCCPF_CCID && entry->val.sp.len == 1)
  890. ccids[entry->is_local] = entry->val.sp.vec[0];
  891. while (i--)
  892. if (ccids[i] > 0 && dccp_feat_propagate_ccid(fn, ccids[i], i))
  893. return -1;
  894. dccp_feat_print_fnlist(fn);
  895. return 0;
  896. }
  897. /**
  898. * dccp_feat_server_ccid_dependencies - Resolve CCID-dependent features
  899. * It is the server which resolves the dependencies once the CCID has been
  900. * fully negotiated. If no CCID has been negotiated, it uses the default CCID.
  901. */
  902. int dccp_feat_server_ccid_dependencies(struct dccp_request_sock *dreq)
  903. {
  904. struct list_head *fn = &dreq->dreq_featneg;
  905. struct dccp_feat_entry *entry;
  906. u8 is_local, ccid;
  907. for (is_local = 0; is_local <= 1; is_local++) {
  908. entry = dccp_feat_list_lookup(fn, DCCPF_CCID, is_local);
  909. if (entry != NULL && !entry->empty_confirm)
  910. ccid = entry->val.sp.vec[0];
  911. else
  912. ccid = dccp_feat_default_value(DCCPF_CCID);
  913. if (dccp_feat_propagate_ccid(fn, ccid, is_local))
  914. return -1;
  915. }
  916. return 0;
  917. }
  918. /* Select the first entry in @servlist that also occurs in @clilist (6.3.1) */
  919. static int dccp_feat_preflist_match(u8 *servlist, u8 slen, u8 *clilist, u8 clen)
  920. {
  921. u8 c, s;
  922. for (s = 0; s < slen; s++)
  923. for (c = 0; c < clen; c++)
  924. if (servlist[s] == clilist[c])
  925. return servlist[s];
  926. return -1;
  927. }
  928. /**
  929. * dccp_feat_prefer - Move preferred entry to the start of array
  930. * Reorder the @array_len elements in @array so that @preferred_value comes
  931. * first. Returns >0 to indicate that @preferred_value does occur in @array.
  932. */
  933. static u8 dccp_feat_prefer(u8 preferred_value, u8 *array, u8 array_len)
  934. {
  935. u8 i, does_occur = 0;
  936. if (array != NULL) {
  937. for (i = 0; i < array_len; i++)
  938. if (array[i] == preferred_value) {
  939. array[i] = array[0];
  940. does_occur++;
  941. }
  942. if (does_occur)
  943. array[0] = preferred_value;
  944. }
  945. return does_occur;
  946. }
  947. /**
  948. * dccp_feat_reconcile - Reconcile SP preference lists
  949. * @fv: SP list to reconcile into
  950. * @arr: received SP preference list
  951. * @len: length of @arr in bytes
  952. * @is_server: whether this side is the server (and @fv is the server's list)
  953. * @reorder: whether to reorder the list in @fv after reconciling with @arr
  954. * When successful, > 0 is returned and the reconciled list is in @fval.
  955. * A value of 0 means that negotiation failed (no shared entry).
  956. */
  957. static int dccp_feat_reconcile(dccp_feat_val *fv, u8 *arr, u8 len,
  958. bool is_server, bool reorder)
  959. {
  960. int rc;
  961. if (!fv->sp.vec || !arr) {
  962. DCCP_CRIT("NULL feature value or array");
  963. return 0;
  964. }
  965. if (is_server)
  966. rc = dccp_feat_preflist_match(fv->sp.vec, fv->sp.len, arr, len);
  967. else
  968. rc = dccp_feat_preflist_match(arr, len, fv->sp.vec, fv->sp.len);
  969. if (!reorder)
  970. return rc;
  971. if (rc < 0)
  972. return 0;
  973. /*
  974. * Reorder list: used for activating features and in dccp_insert_fn_opt.
  975. */
  976. return dccp_feat_prefer(rc, fv->sp.vec, fv->sp.len);
  977. }
  978. /**
  979. * dccp_feat_change_recv - Process incoming ChangeL/R options
  980. * @fn: feature-negotiation list to update
  981. * @is_mandatory: whether the Change was preceded by a Mandatory option
  982. * @opt: %DCCPO_CHANGE_L or %DCCPO_CHANGE_R
  983. * @feat: one of %dccp_feature_numbers
  984. * @val: NN value or SP value/preference list
  985. * @len: length of @val in bytes
  986. * @server: whether this node is the server (1) or the client (0)
  987. */
  988. static u8 dccp_feat_change_recv(struct list_head *fn, u8 is_mandatory, u8 opt,
  989. u8 feat, u8 *val, u8 len, const bool server)
  990. {
  991. u8 defval, type = dccp_feat_type(feat);
  992. const bool local = (opt == DCCPO_CHANGE_R);
  993. struct dccp_feat_entry *entry;
  994. dccp_feat_val fval;
  995. if (len == 0 || type == FEAT_UNKNOWN) /* 6.1 and 6.6.8 */
  996. goto unknown_feature_or_value;
  997. dccp_feat_print_opt(opt, feat, val, len, is_mandatory);
  998. /*
  999. * Negotiation of NN features: Change R is invalid, so there is no
  1000. * simultaneous negotiation; hence we do not look up in the list.
  1001. */
  1002. if (type == FEAT_NN) {
  1003. if (local || len > sizeof(fval.nn))
  1004. goto unknown_feature_or_value;
  1005. /* 6.3.2: "The feature remote MUST accept any valid value..." */
  1006. fval.nn = dccp_decode_value_var(val, len);
  1007. if (!dccp_feat_is_valid_nn_val(feat, fval.nn))
  1008. goto unknown_feature_or_value;
  1009. return dccp_feat_push_confirm(fn, feat, local, &fval);
  1010. }
  1011. /*
  1012. * Unidirectional/simultaneous negotiation of SP features (6.3.1)
  1013. */
  1014. entry = dccp_feat_list_lookup(fn, feat, local);
  1015. if (entry == NULL) {
  1016. /*
  1017. * No particular preferences have been registered. We deal with
  1018. * this situation by assuming that all valid values are equally
  1019. * acceptable, and apply the following checks:
  1020. * - if the peer's list is a singleton, we accept a valid value;
  1021. * - if we are the server, we first try to see if the peer (the
  1022. * client) advertises the default value. If yes, we use it,
  1023. * otherwise we accept the preferred value;
  1024. * - else if we are the client, we use the first list element.
  1025. */
  1026. if (dccp_feat_clone_sp_val(&fval, val, 1))
  1027. return DCCP_RESET_CODE_TOO_BUSY;
  1028. if (len > 1 && server) {
  1029. defval = dccp_feat_default_value(feat);
  1030. if (dccp_feat_preflist_match(&defval, 1, val, len) > -1)
  1031. fval.sp.vec[0] = defval;
  1032. } else if (!dccp_feat_is_valid_sp_val(feat, fval.sp.vec[0])) {
  1033. kfree(fval.sp.vec);
  1034. goto unknown_feature_or_value;
  1035. }
  1036. /* Treat unsupported CCIDs like invalid values */
  1037. if (feat == DCCPF_CCID && !ccid_support_check(fval.sp.vec, 1)) {
  1038. kfree(fval.sp.vec);
  1039. goto not_valid_or_not_known;
  1040. }
  1041. return dccp_feat_push_confirm(fn, feat, local, &fval);
  1042. } else if (entry->state == FEAT_UNSTABLE) { /* 6.6.2 */
  1043. return 0;
  1044. }
  1045. if (dccp_feat_reconcile(&entry->val, val, len, server, true)) {
  1046. entry->empty_confirm = false;
  1047. } else if (is_mandatory) {
  1048. return DCCP_RESET_CODE_MANDATORY_ERROR;
  1049. } else if (entry->state == FEAT_INITIALISING) {
  1050. /*
  1051. * Failed simultaneous negotiation (server only): try to `save'
  1052. * the connection by checking whether entry contains the default
  1053. * value for @feat. If yes, send an empty Confirm to signal that
  1054. * the received Change was not understood - which implies using
  1055. * the default value.
  1056. * If this also fails, we use Reset as the last resort.
  1057. */
  1058. WARN_ON(!server);
  1059. defval = dccp_feat_default_value(feat);
  1060. if (!dccp_feat_reconcile(&entry->val, &defval, 1, server, true))
  1061. return DCCP_RESET_CODE_OPTION_ERROR;
  1062. entry->empty_confirm = true;
  1063. }
  1064. entry->needs_confirm = true;
  1065. entry->needs_mandatory = false;
  1066. entry->state = FEAT_STABLE;
  1067. return 0;
  1068. unknown_feature_or_value:
  1069. if (!is_mandatory)
  1070. return dccp_push_empty_confirm(fn, feat, local);
  1071. not_valid_or_not_known:
  1072. return is_mandatory ? DCCP_RESET_CODE_MANDATORY_ERROR
  1073. : DCCP_RESET_CODE_OPTION_ERROR;
  1074. }
  1075. /**
  1076. * dccp_feat_confirm_recv - Process received Confirm options
  1077. * @fn: feature-negotiation list to update
  1078. * @is_mandatory: whether @opt was preceded by a Mandatory option
  1079. * @opt: %DCCPO_CONFIRM_L or %DCCPO_CONFIRM_R
  1080. * @feat: one of %dccp_feature_numbers
  1081. * @val: NN value or SP value/preference list
  1082. * @len: length of @val in bytes
  1083. * @server: whether this node is server (1) or client (0)
  1084. */
  1085. static u8 dccp_feat_confirm_recv(struct list_head *fn, u8 is_mandatory, u8 opt,
  1086. u8 feat, u8 *val, u8 len, const bool server)
  1087. {
  1088. u8 *plist, plen, type = dccp_feat_type(feat);
  1089. const bool local = (opt == DCCPO_CONFIRM_R);
  1090. struct dccp_feat_entry *entry = dccp_feat_list_lookup(fn, feat, local);
  1091. dccp_feat_print_opt(opt, feat, val, len, is_mandatory);
  1092. if (entry == NULL) { /* nothing queued: ignore or handle error */
  1093. if (is_mandatory && type == FEAT_UNKNOWN)
  1094. return DCCP_RESET_CODE_MANDATORY_ERROR;
  1095. if (!local && type == FEAT_NN) /* 6.3.2 */
  1096. goto confirmation_failed;
  1097. return 0;
  1098. }
  1099. if (entry->state != FEAT_CHANGING) /* 6.6.2 */
  1100. return 0;
  1101. if (len == 0) {
  1102. if (dccp_feat_must_be_understood(feat)) /* 6.6.7 */
  1103. goto confirmation_failed;
  1104. /*
  1105. * Empty Confirm during connection setup: this means reverting
  1106. * to the `old' value, which in this case is the default. Since
  1107. * we handle default values automatically when no other values
  1108. * have been set, we revert to the old value by removing this
  1109. * entry from the list.
  1110. */
  1111. dccp_feat_list_pop(entry);
  1112. return 0;
  1113. }
  1114. if (type == FEAT_NN) {
  1115. if (len > sizeof(entry->val.nn))
  1116. goto confirmation_failed;
  1117. if (entry->val.nn == dccp_decode_value_var(val, len))
  1118. goto confirmation_succeeded;
  1119. DCCP_WARN("Bogus Confirm for non-existing value\n");
  1120. goto confirmation_failed;
  1121. }
  1122. /*
  1123. * Parsing SP Confirms: the first element of @val is the preferred
  1124. * SP value which the peer confirms, the remainder depends on @len.
  1125. * Note that only the confirmed value need to be a valid SP value.
  1126. */
  1127. if (!dccp_feat_is_valid_sp_val(feat, *val))
  1128. goto confirmation_failed;
  1129. if (len == 1) { /* peer didn't supply a preference list */
  1130. plist = val;
  1131. plen = len;
  1132. } else { /* preferred value + preference list */
  1133. plist = val + 1;
  1134. plen = len - 1;
  1135. }
  1136. /* Check whether the peer got the reconciliation right (6.6.8) */
  1137. if (dccp_feat_reconcile(&entry->val, plist, plen, server, 0) != *val) {
  1138. DCCP_WARN("Confirm selected the wrong value %u\n", *val);
  1139. return DCCP_RESET_CODE_OPTION_ERROR;
  1140. }
  1141. entry->val.sp.vec[0] = *val;
  1142. confirmation_succeeded:
  1143. entry->state = FEAT_STABLE;
  1144. return 0;
  1145. confirmation_failed:
  1146. DCCP_WARN("Confirmation failed\n");
  1147. return is_mandatory ? DCCP_RESET_CODE_MANDATORY_ERROR
  1148. : DCCP_RESET_CODE_OPTION_ERROR;
  1149. }
  1150. /**
  1151. * dccp_feat_handle_nn_established - Fast-path reception of NN options
  1152. * @sk: socket of an established DCCP connection
  1153. * @mandatory: whether @opt was preceded by a Mandatory option
  1154. * @opt: %DCCPO_CHANGE_L | %DCCPO_CONFIRM_R (NN only)
  1155. * @feat: NN number, one of %dccp_feature_numbers
  1156. * @val: NN value
  1157. * @len: length of @val in bytes
  1158. *
  1159. * This function combines the functionality of change_recv/confirm_recv, with
  1160. * the following differences (reset codes are the same):
  1161. * - cleanup after receiving the Confirm;
  1162. * - values are directly activated after successful parsing;
  1163. * - deliberately restricted to NN features.
  1164. * The restriction to NN features is essential since SP features can have non-
  1165. * predictable outcomes (depending on the remote configuration), and are inter-
  1166. * dependent (CCIDs for instance cause further dependencies).
  1167. */
  1168. static u8 dccp_feat_handle_nn_established(struct sock *sk, u8 mandatory, u8 opt,
  1169. u8 feat, u8 *val, u8 len)
  1170. {
  1171. struct list_head *fn = &dccp_sk(sk)->dccps_featneg;
  1172. const bool local = (opt == DCCPO_CONFIRM_R);
  1173. struct dccp_feat_entry *entry;
  1174. u8 type = dccp_feat_type(feat);
  1175. dccp_feat_val fval;
  1176. dccp_feat_print_opt(opt, feat, val, len, mandatory);
  1177. /* Ignore non-mandatory unknown and non-NN features */
  1178. if (type == FEAT_UNKNOWN) {
  1179. if (local && !mandatory)
  1180. return 0;
  1181. goto fast_path_unknown;
  1182. } else if (type != FEAT_NN) {
  1183. return 0;
  1184. }
  1185. /*
  1186. * We don't accept empty Confirms, since in fast-path feature
  1187. * negotiation the values are enabled immediately after sending
  1188. * the Change option.
  1189. * Empty Changes on the other hand are invalid (RFC 4340, 6.1).
  1190. */
  1191. if (len == 0 || len > sizeof(fval.nn))
  1192. goto fast_path_unknown;
  1193. if (opt == DCCPO_CHANGE_L) {
  1194. fval.nn = dccp_decode_value_var(val, len);
  1195. if (!dccp_feat_is_valid_nn_val(feat, fval.nn))
  1196. goto fast_path_unknown;
  1197. if (dccp_feat_push_confirm(fn, feat, local, &fval) ||
  1198. dccp_feat_activate(sk, feat, local, &fval))
  1199. return DCCP_RESET_CODE_TOO_BUSY;
  1200. /* set the `Ack Pending' flag to piggyback a Confirm */
  1201. inet_csk_schedule_ack(sk);
  1202. } else if (opt == DCCPO_CONFIRM_R) {
  1203. entry = dccp_feat_list_lookup(fn, feat, local);
  1204. if (entry == NULL || entry->state != FEAT_CHANGING)
  1205. return 0;
  1206. fval.nn = dccp_decode_value_var(val, len);
  1207. /*
  1208. * Just ignore a value that doesn't match our current value.
  1209. * If the option changes twice within two RTTs, then at least
  1210. * one CONFIRM will be received for the old value after a
  1211. * new CHANGE was sent.
  1212. */
  1213. if (fval.nn != entry->val.nn)
  1214. return 0;
  1215. /* Only activate after receiving the Confirm option (6.6.1). */
  1216. dccp_feat_activate(sk, feat, local, &fval);
  1217. /* It has been confirmed - so remove the entry */
  1218. dccp_feat_list_pop(entry);
  1219. } else {
  1220. DCCP_WARN("Received illegal option %u\n", opt);
  1221. goto fast_path_failed;
  1222. }
  1223. return 0;
  1224. fast_path_unknown:
  1225. if (!mandatory)
  1226. return dccp_push_empty_confirm(fn, feat, local);
  1227. fast_path_failed:
  1228. return mandatory ? DCCP_RESET_CODE_MANDATORY_ERROR
  1229. : DCCP_RESET_CODE_OPTION_ERROR;
  1230. }
  1231. /**
  1232. * dccp_feat_parse_options - Process Feature-Negotiation Options
  1233. * @sk: for general use and used by the client during connection setup
  1234. * @dreq: used by the server during connection setup
  1235. * @mandatory: whether @opt was preceded by a Mandatory option
  1236. * @opt: %DCCPO_CHANGE_L | %DCCPO_CHANGE_R | %DCCPO_CONFIRM_L | %DCCPO_CONFIRM_R
  1237. * @feat: one of %dccp_feature_numbers
  1238. * @val: value contents of @opt
  1239. * @len: length of @val in bytes
  1240. *
  1241. * Returns 0 on success, a Reset code for ending the connection otherwise.
  1242. */
  1243. int dccp_feat_parse_options(struct sock *sk, struct dccp_request_sock *dreq,
  1244. u8 mandatory, u8 opt, u8 feat, u8 *val, u8 len)
  1245. {
  1246. struct dccp_sock *dp = dccp_sk(sk);
  1247. struct list_head *fn = dreq ? &dreq->dreq_featneg : &dp->dccps_featneg;
  1248. bool server = false;
  1249. switch (sk->sk_state) {
  1250. /*
  1251. * Negotiation during connection setup
  1252. */
  1253. case DCCP_LISTEN:
  1254. server = true; /* fall through */
  1255. case DCCP_REQUESTING:
  1256. switch (opt) {
  1257. case DCCPO_CHANGE_L:
  1258. case DCCPO_CHANGE_R:
  1259. return dccp_feat_change_recv(fn, mandatory, opt, feat,
  1260. val, len, server);
  1261. case DCCPO_CONFIRM_R:
  1262. case DCCPO_CONFIRM_L:
  1263. return dccp_feat_confirm_recv(fn, mandatory, opt, feat,
  1264. val, len, server);
  1265. }
  1266. break;
  1267. /*
  1268. * Support for exchanging NN options on an established connection.
  1269. */
  1270. case DCCP_OPEN:
  1271. case DCCP_PARTOPEN:
  1272. return dccp_feat_handle_nn_established(sk, mandatory, opt, feat,
  1273. val, len);
  1274. }
  1275. return 0; /* ignore FN options in all other states */
  1276. }
  1277. /**
  1278. * dccp_feat_init - Seed feature negotiation with host-specific defaults
  1279. * This initialises global defaults, depending on the value of the sysctls.
  1280. * These can later be overridden by registering changes via setsockopt calls.
  1281. * The last link in the chain is finalise_settings, to make sure that between
  1282. * here and the start of actual feature negotiation no inconsistencies enter.
  1283. *
  1284. * All features not appearing below use either defaults or are otherwise
  1285. * later adjusted through dccp_feat_finalise_settings().
  1286. */
  1287. int dccp_feat_init(struct sock *sk)
  1288. {
  1289. struct list_head *fn = &dccp_sk(sk)->dccps_featneg;
  1290. u8 on = 1, off = 0;
  1291. int rc;
  1292. struct {
  1293. u8 *val;
  1294. u8 len;
  1295. } tx, rx;
  1296. /* Non-negotiable (NN) features */
  1297. rc = __feat_register_nn(fn, DCCPF_SEQUENCE_WINDOW, 0,
  1298. sysctl_dccp_sequence_window);
  1299. if (rc)
  1300. return rc;
  1301. /* Server-priority (SP) features */
  1302. /* Advertise that short seqnos are not supported (7.6.1) */
  1303. rc = __feat_register_sp(fn, DCCPF_SHORT_SEQNOS, true, true, &off, 1);
  1304. if (rc)
  1305. return rc;
  1306. /* RFC 4340 12.1: "If a DCCP is not ECN capable, ..." */
  1307. rc = __feat_register_sp(fn, DCCPF_ECN_INCAPABLE, true, true, &on, 1);
  1308. if (rc)
  1309. return rc;
  1310. /*
  1311. * We advertise the available list of CCIDs and reorder according to
  1312. * preferences, to avoid failure resulting from negotiating different
  1313. * singleton values (which always leads to failure).
  1314. * These settings can still (later) be overridden via sockopts.
  1315. */
  1316. if (ccid_get_builtin_ccids(&tx.val, &tx.len))
  1317. return -ENOBUFS;
  1318. if (ccid_get_builtin_ccids(&rx.val, &rx.len)) {
  1319. kfree(tx.val);
  1320. return -ENOBUFS;
  1321. }
  1322. if (!dccp_feat_prefer(sysctl_dccp_tx_ccid, tx.val, tx.len) ||
  1323. !dccp_feat_prefer(sysctl_dccp_rx_ccid, rx.val, rx.len))
  1324. goto free_ccid_lists;
  1325. rc = __feat_register_sp(fn, DCCPF_CCID, true, false, tx.val, tx.len);
  1326. if (rc)
  1327. goto free_ccid_lists;
  1328. rc = __feat_register_sp(fn, DCCPF_CCID, false, false, rx.val, rx.len);
  1329. free_ccid_lists:
  1330. kfree(tx.val);
  1331. kfree(rx.val);
  1332. return rc;
  1333. }
  1334. int dccp_feat_activate_values(struct sock *sk, struct list_head *fn_list)
  1335. {
  1336. struct dccp_sock *dp = dccp_sk(sk);
  1337. struct dccp_feat_entry *cur, *next;
  1338. int idx;
  1339. dccp_feat_val *fvals[DCCP_FEAT_SUPPORTED_MAX][2] = {
  1340. [0 ... DCCP_FEAT_SUPPORTED_MAX-1] = { NULL, NULL }
  1341. };
  1342. list_for_each_entry(cur, fn_list, node) {
  1343. /*
  1344. * An empty Confirm means that either an unknown feature type
  1345. * or an invalid value was present. In the first case there is
  1346. * nothing to activate, in the other the default value is used.
  1347. */
  1348. if (cur->empty_confirm)
  1349. continue;
  1350. idx = dccp_feat_index(cur->feat_num);
  1351. if (idx < 0) {
  1352. DCCP_BUG("Unknown feature %u", cur->feat_num);
  1353. goto activation_failed;
  1354. }
  1355. if (cur->state != FEAT_STABLE) {
  1356. DCCP_CRIT("Negotiation of %s %s failed in state %s",
  1357. cur->is_local ? "local" : "remote",
  1358. dccp_feat_fname(cur->feat_num),
  1359. dccp_feat_sname[cur->state]);
  1360. goto activation_failed;
  1361. }
  1362. fvals[idx][cur->is_local] = &cur->val;
  1363. }
  1364. /*
  1365. * Activate in decreasing order of index, so that the CCIDs are always
  1366. * activated as the last feature. This avoids the case where a CCID
  1367. * relies on the initialisation of one or more features that it depends
  1368. * on (e.g. Send NDP Count, Send Ack Vector, and Ack Ratio features).
  1369. */
  1370. for (idx = DCCP_FEAT_SUPPORTED_MAX; --idx >= 0;)
  1371. if (__dccp_feat_activate(sk, idx, 0, fvals[idx][0]) ||
  1372. __dccp_feat_activate(sk, idx, 1, fvals[idx][1])) {
  1373. DCCP_CRIT("Could not activate %d", idx);
  1374. goto activation_failed;
  1375. }
  1376. /* Clean up Change options which have been confirmed already */
  1377. list_for_each_entry_safe(cur, next, fn_list, node)
  1378. if (!cur->needs_confirm)
  1379. dccp_feat_list_pop(cur);
  1380. dccp_pr_debug("Activation OK\n");
  1381. return 0;
  1382. activation_failed:
  1383. /*
  1384. * We clean up everything that may have been allocated, since
  1385. * it is difficult to track at which stage negotiation failed.
  1386. * This is ok, since all allocation functions below are robust
  1387. * against NULL arguments.
  1388. */
  1389. ccid_hc_rx_delete(dp->dccps_hc_rx_ccid, sk);
  1390. ccid_hc_tx_delete(dp->dccps_hc_tx_ccid, sk);
  1391. dp->dccps_hc_rx_ccid = dp->dccps_hc_tx_ccid = NULL;
  1392. dccp_ackvec_free(dp->dccps_hc_rx_ackvec);
  1393. dp->dccps_hc_rx_ackvec = NULL;
  1394. return -1;
  1395. }