[IPV6]: Use kmemdup
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / net / dccp / feat.c
CommitLineData
afe00251
AB
1/*
2 * net/dccp/feat.c
3 *
4 * An implementation of the DCCP protocol
5 * Andrea Bittau <a.bittau@cs.ucl.ac.uk>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 */
12
afe00251
AB
13#include <linux/module.h>
14
6ffd30fb 15#include "ccid.h"
afe00251
AB
16#include "feat.h"
17
18#define DCCP_FEAT_SP_NOAGREE (-123)
19
8ca0d17b
ACM
20int dccp_feat_change(struct dccp_minisock *dmsk, u8 type, u8 feature,
21 u8 *val, u8 len, gfp_t gfp)
afe00251 22{
afe00251
AB
23 struct dccp_opt_pend *opt;
24
c02fdc0e 25 dccp_feat_debug(type, feature, *val);
afe00251 26
c02fdc0e
GR
27 if (!dccp_feat_is_valid_type(type)) {
28 pr_info("option type %d invalid in negotiation\n", type);
29 return 1;
30 }
31 if (!dccp_feat_is_valid_length(type, feature, len)) {
32 pr_info("invalid length %d\n", len);
33 return 1;
34 }
35 /* XXX add further sanity checks */
6ffd30fb 36
afe00251 37 /* check if that feature is already being negotiated */
a4bf3902 38 list_for_each_entry(opt, &dmsk->dccpms_pending, dccpop_node) {
afe00251
AB
39 /* ok we found a negotiation for this option already */
40 if (opt->dccpop_feat == feature && opt->dccpop_type == type) {
41 dccp_pr_debug("Replacing old\n");
42 /* replace */
43 BUG_ON(opt->dccpop_val == NULL);
44 kfree(opt->dccpop_val);
45 opt->dccpop_val = val;
46 opt->dccpop_len = len;
47 opt->dccpop_conf = 0;
48 return 0;
49 }
50 }
51
52 /* negotiation for a new feature */
53 opt = kmalloc(sizeof(*opt), gfp);
54 if (opt == NULL)
55 return -ENOMEM;
56
57 opt->dccpop_type = type;
58 opt->dccpop_feat = feature;
59 opt->dccpop_len = len;
60 opt->dccpop_val = val;
61 opt->dccpop_conf = 0;
62 opt->dccpop_sc = NULL;
63
64 BUG_ON(opt->dccpop_val == NULL);
65
a4bf3902 66 list_add_tail(&opt->dccpop_node, &dmsk->dccpms_pending);
afe00251
AB
67 return 0;
68}
69
70EXPORT_SYMBOL_GPL(dccp_feat_change);
71
6ffd30fb
AB
72static int dccp_feat_update_ccid(struct sock *sk, u8 type, u8 new_ccid_nr)
73{
74 struct dccp_sock *dp = dccp_sk(sk);
a4bf3902 75 struct dccp_minisock *dmsk = dccp_msk(sk);
6ffd30fb
AB
76 /* figure out if we are changing our CCID or the peer's */
77 const int rx = type == DCCPO_CHANGE_R;
a4bf3902 78 const u8 ccid_nr = rx ? dmsk->dccpms_rx_ccid : dmsk->dccpms_tx_ccid;
6ffd30fb
AB
79 struct ccid *new_ccid;
80
81 /* Check if nothing is being changed. */
82 if (ccid_nr == new_ccid_nr)
83 return 0;
84
85 new_ccid = ccid_new(new_ccid_nr, sk, rx, GFP_ATOMIC);
86 if (new_ccid == NULL)
87 return -ENOMEM;
88
89 if (rx) {
90 ccid_hc_rx_delete(dp->dccps_hc_rx_ccid, sk);
91 dp->dccps_hc_rx_ccid = new_ccid;
a4bf3902 92 dmsk->dccpms_rx_ccid = new_ccid_nr;
6ffd30fb
AB
93 } else {
94 ccid_hc_tx_delete(dp->dccps_hc_tx_ccid, sk);
95 dp->dccps_hc_tx_ccid = new_ccid;
a4bf3902 96 dmsk->dccpms_tx_ccid = new_ccid_nr;
6ffd30fb
AB
97 }
98
99 return 0;
100}
101
afe00251
AB
102/* XXX taking only u8 vals */
103static int dccp_feat_update(struct sock *sk, u8 type, u8 feat, u8 val)
104{
c02fdc0e 105 dccp_feat_debug(type, feat, val);
6ffd30fb
AB
106
107 switch (feat) {
108 case DCCPF_CCID:
109 return dccp_feat_update_ccid(sk, type, val);
110 default:
c02fdc0e
GR
111 dccp_pr_debug("UNIMPLEMENTED: %s(%d, ...)\n",
112 dccp_feat_typename(type), feat);
6ffd30fb
AB
113 break;
114 }
afe00251
AB
115 return 0;
116}
117
118static int dccp_feat_reconcile(struct sock *sk, struct dccp_opt_pend *opt,
119 u8 *rpref, u8 rlen)
120{
121 struct dccp_sock *dp = dccp_sk(sk);
122 u8 *spref, slen, *res = NULL;
123 int i, j, rc, agree = 1;
124
125 BUG_ON(rpref == NULL);
126
127 /* check if we are the black sheep */
128 if (dp->dccps_role == DCCP_ROLE_CLIENT) {
129 spref = rpref;
130 slen = rlen;
131 rpref = opt->dccpop_val;
132 rlen = opt->dccpop_len;
133 } else {
134 spref = opt->dccpop_val;
135 slen = opt->dccpop_len;
136 }
137 /*
138 * Now we have server preference list in spref and client preference in
139 * rpref
140 */
141 BUG_ON(spref == NULL);
142 BUG_ON(rpref == NULL);
143
144 /* FIXME sanity check vals */
145
146 /* Are values in any order? XXX Lame "algorithm" here */
147 /* XXX assume values are 1 byte */
148 for (i = 0; i < slen; i++) {
149 for (j = 0; j < rlen; j++) {
150 if (spref[i] == rpref[j]) {
151 res = &spref[i];
152 break;
153 }
154 }
155 if (res)
156 break;
157 }
158
159 /* we didn't agree on anything */
160 if (res == NULL) {
161 /* confirm previous value */
162 switch (opt->dccpop_feat) {
163 case DCCPF_CCID:
164 /* XXX did i get this right? =P */
165 if (opt->dccpop_type == DCCPO_CHANGE_L)
a4bf3902 166 res = &dccp_msk(sk)->dccpms_tx_ccid;
afe00251 167 else
a4bf3902 168 res = &dccp_msk(sk)->dccpms_rx_ccid;
afe00251
AB
169 break;
170
171 default:
172 WARN_ON(1); /* XXX implement res */
173 return -EFAULT;
174 }
175
176 dccp_pr_debug("Don't agree... reconfirming %d\n", *res);
177 agree = 0; /* this is used for mandatory options... */
178 }
179
180 /* need to put result and our preference list */
181 /* XXX assume 1 byte vals */
182 rlen = 1 + opt->dccpop_len;
183 rpref = kmalloc(rlen, GFP_ATOMIC);
184 if (rpref == NULL)
185 return -ENOMEM;
186
187 *rpref = *res;
188 memcpy(&rpref[1], opt->dccpop_val, opt->dccpop_len);
189
190 /* put it in the "confirm queue" */
191 if (opt->dccpop_sc == NULL) {
192 opt->dccpop_sc = kmalloc(sizeof(*opt->dccpop_sc), GFP_ATOMIC);
193 if (opt->dccpop_sc == NULL) {
194 kfree(rpref);
195 return -ENOMEM;
196 }
197 } else {
198 /* recycle the confirm slot */
199 BUG_ON(opt->dccpop_sc->dccpoc_val == NULL);
200 kfree(opt->dccpop_sc->dccpoc_val);
201 dccp_pr_debug("recycling confirm slot\n");
202 }
203 memset(opt->dccpop_sc, 0, sizeof(*opt->dccpop_sc));
204
205 opt->dccpop_sc->dccpoc_val = rpref;
206 opt->dccpop_sc->dccpoc_len = rlen;
207
208 /* update the option on our side [we are about to send the confirm] */
209 rc = dccp_feat_update(sk, opt->dccpop_type, opt->dccpop_feat, *res);
210 if (rc) {
211 kfree(opt->dccpop_sc->dccpoc_val);
212 kfree(opt->dccpop_sc);
68907dad 213 opt->dccpop_sc = NULL;
afe00251
AB
214 return rc;
215 }
216
217 dccp_pr_debug("Will confirm %d\n", *rpref);
218
219 /* say we want to change to X but we just got a confirm X, suppress our
220 * change
221 */
222 if (!opt->dccpop_conf) {
223 if (*opt->dccpop_val == *res)
224 opt->dccpop_conf = 1;
225 dccp_pr_debug("won't ask for change of same feature\n");
226 }
227
228 return agree ? 0 : DCCP_FEAT_SP_NOAGREE; /* used for mandatory opts */
229}
230
231static int dccp_feat_sp(struct sock *sk, u8 type, u8 feature, u8 *val, u8 len)
232{
a4bf3902 233 struct dccp_minisock *dmsk = dccp_msk(sk);
afe00251
AB
234 struct dccp_opt_pend *opt;
235 int rc = 1;
236 u8 t;
237
238 /*
239 * We received a CHANGE. We gotta match it against our own preference
240 * list. If we got a CHANGE_R it means it's a change for us, so we need
241 * to compare our CHANGE_L list.
242 */
243 if (type == DCCPO_CHANGE_L)
244 t = DCCPO_CHANGE_R;
245 else
246 t = DCCPO_CHANGE_L;
247
248 /* find our preference list for this feature */
a4bf3902 249 list_for_each_entry(opt, &dmsk->dccpms_pending, dccpop_node) {
afe00251
AB
250 if (opt->dccpop_type != t || opt->dccpop_feat != feature)
251 continue;
252
253 /* find the winner from the two preference lists */
254 rc = dccp_feat_reconcile(sk, opt, val, len);
255 break;
256 }
257
258 /* We didn't deal with the change. This can happen if we have no
259 * preference list for the feature. In fact, it just shouldn't
260 * happen---if we understand a feature, we should have a preference list
261 * with at least the default value.
262 */
263 BUG_ON(rc == 1);
264
265 return rc;
266}
267
268static int dccp_feat_nn(struct sock *sk, u8 type, u8 feature, u8 *val, u8 len)
269{
270 struct dccp_opt_pend *opt;
a4bf3902 271 struct dccp_minisock *dmsk = dccp_msk(sk);
afe00251
AB
272 u8 *copy;
273 int rc;
274
c02fdc0e
GR
275 /* NN features must be Change L (sec. 6.3.2) */
276 if (type != DCCPO_CHANGE_L) {
277 dccp_pr_debug("received %s for NN feature %d\n",
278 dccp_feat_typename(type), feature);
afe00251
AB
279 return -EFAULT;
280 }
281
282 /* XXX sanity check opt val */
283
284 /* copy option so we can confirm it */
285 opt = kzalloc(sizeof(*opt), GFP_ATOMIC);
286 if (opt == NULL)
287 return -ENOMEM;
288
289 copy = kmalloc(len, GFP_ATOMIC);
290 if (copy == NULL) {
291 kfree(opt);
292 return -ENOMEM;
293 }
294 memcpy(copy, val, len);
295
296 opt->dccpop_type = DCCPO_CONFIRM_R; /* NN can only confirm R */
297 opt->dccpop_feat = feature;
298 opt->dccpop_val = copy;
299 opt->dccpop_len = len;
300
301 /* change feature */
302 rc = dccp_feat_update(sk, type, feature, *val);
303 if (rc) {
304 kfree(opt->dccpop_val);
305 kfree(opt);
306 return rc;
307 }
308
c02fdc0e
GR
309 dccp_feat_debug(type, feature, *copy);
310
a4bf3902 311 list_add_tail(&opt->dccpop_node, &dmsk->dccpms_conf);
afe00251
AB
312
313 return 0;
314}
315
8ca0d17b
ACM
316static void dccp_feat_empty_confirm(struct dccp_minisock *dmsk,
317 u8 type, u8 feature)
afe00251 318{
afe00251
AB
319 /* XXX check if other confirms for that are queued and recycle slot */
320 struct dccp_opt_pend *opt = kzalloc(sizeof(*opt), GFP_ATOMIC);
321
322 if (opt == NULL) {
323 /* XXX what do we do? Ignoring should be fine. It's a change
324 * after all =P
325 */
326 return;
327 }
328
c02fdc0e
GR
329 switch (type) {
330 case DCCPO_CHANGE_L: opt->dccpop_type = DCCPO_CONFIRM_R; break;
331 case DCCPO_CHANGE_R: opt->dccpop_type = DCCPO_CONFIRM_L; break;
332 default: pr_info("invalid type %d\n", type); return;
333
334 }
afe00251 335 opt->dccpop_feat = feature;
68907dad 336 opt->dccpop_val = NULL;
afe00251
AB
337 opt->dccpop_len = 0;
338
339 /* change feature */
c02fdc0e
GR
340 dccp_pr_debug("Empty %s(%d)\n", dccp_feat_typename(type), feature);
341
a4bf3902 342 list_add_tail(&opt->dccpop_node, &dmsk->dccpms_conf);
afe00251
AB
343}
344
345static void dccp_feat_flush_confirm(struct sock *sk)
346{
a4bf3902 347 struct dccp_minisock *dmsk = dccp_msk(sk);
afe00251 348 /* Check if there is anything to confirm in the first place */
a4bf3902 349 int yes = !list_empty(&dmsk->dccpms_conf);
afe00251
AB
350
351 if (!yes) {
352 struct dccp_opt_pend *opt;
353
a4bf3902 354 list_for_each_entry(opt, &dmsk->dccpms_pending, dccpop_node) {
afe00251
AB
355 if (opt->dccpop_conf) {
356 yes = 1;
357 break;
358 }
359 }
360 }
361
362 if (!yes)
363 return;
364
365 /* OK there is something to confirm... */
366 /* XXX check if packet is in flight? Send delayed ack?? */
367 if (sk->sk_state == DCCP_OPEN)
368 dccp_send_ack(sk);
369}
370
371int dccp_feat_change_recv(struct sock *sk, u8 type, u8 feature, u8 *val, u8 len)
372{
373 int rc;
374
c02fdc0e 375 dccp_feat_debug(type, feature, *val);
afe00251
AB
376
377 /* figure out if it's SP or NN feature */
378 switch (feature) {
379 /* deal with SP features */
380 case DCCPF_CCID:
381 rc = dccp_feat_sp(sk, type, feature, val, len);
382 break;
383
384 /* deal with NN features */
385 case DCCPF_ACK_RATIO:
386 rc = dccp_feat_nn(sk, type, feature, val, len);
387 break;
388
389 /* XXX implement other features */
390 default:
c02fdc0e
GR
391 dccp_pr_debug("UNIMPLEMENTED: not handling %s(%d, ...)\n",
392 dccp_feat_typename(type), feature);
afe00251
AB
393 rc = -EFAULT;
394 break;
395 }
396
397 /* check if there were problems changing features */
398 if (rc) {
399 /* If we don't agree on SP, we sent a confirm for old value.
400 * However we propagate rc to caller in case option was
401 * mandatory
402 */
403 if (rc != DCCP_FEAT_SP_NOAGREE)
8ca0d17b 404 dccp_feat_empty_confirm(dccp_msk(sk), type, feature);
afe00251
AB
405 }
406
407 /* generate the confirm [if required] */
408 dccp_feat_flush_confirm(sk);
409
410 return rc;
411}
412
413EXPORT_SYMBOL_GPL(dccp_feat_change_recv);
414
415int dccp_feat_confirm_recv(struct sock *sk, u8 type, u8 feature,
416 u8 *val, u8 len)
417{
418 u8 t;
419 struct dccp_opt_pend *opt;
a4bf3902 420 struct dccp_minisock *dmsk = dccp_msk(sk);
c02fdc0e 421 int found = 0;
afe00251
AB
422 int all_confirmed = 1;
423
c02fdc0e 424 dccp_feat_debug(type, feature, *val);
afe00251
AB
425
426 /* locate our change request */
c02fdc0e
GR
427 switch (type) {
428 case DCCPO_CONFIRM_L: t = DCCPO_CHANGE_R; break;
429 case DCCPO_CONFIRM_R: t = DCCPO_CHANGE_L; break;
430 default: pr_info("invalid type %d\n", type);
431 return 1;
432
433 }
434 /* XXX sanity check feature value */
afe00251 435
a4bf3902 436 list_for_each_entry(opt, &dmsk->dccpms_pending, dccpop_node) {
afe00251
AB
437 if (!opt->dccpop_conf && opt->dccpop_type == t &&
438 opt->dccpop_feat == feature) {
c02fdc0e
GR
439 found = 1;
440 dccp_pr_debug("feature %d found\n", opt->dccpop_feat);
441
afe00251
AB
442 /* XXX do sanity check */
443
444 opt->dccpop_conf = 1;
445
446 /* We got a confirmation---change the option */
447 dccp_feat_update(sk, opt->dccpop_type,
448 opt->dccpop_feat, *val);
449
c02fdc0e 450 /* XXX check the return value of dccp_feat_update */
afe00251
AB
451 break;
452 }
453
454 if (!opt->dccpop_conf)
455 all_confirmed = 0;
456 }
457
458 /* fix re-transmit timer */
459 /* XXX gotta make sure that no option negotiation occurs during
460 * connection shutdown. Consider that the CLOSEREQ is sent and timer is
461 * on. if all options are confirmed it might kill timer which should
462 * remain alive until close is received.
463 */
464 if (all_confirmed) {
465 dccp_pr_debug("clear feat negotiation timer %p\n", sk);
466 inet_csk_clear_xmit_timer(sk, ICSK_TIME_RETRANS);
467 }
468
c02fdc0e
GR
469 if (!found)
470 dccp_pr_debug("%s(%d, ...) never requested\n",
471 dccp_feat_typename(type), feature);
afe00251
AB
472 return 0;
473}
474
475EXPORT_SYMBOL_GPL(dccp_feat_confirm_recv);
476
8ca0d17b 477void dccp_feat_clean(struct dccp_minisock *dmsk)
afe00251 478{
afe00251
AB
479 struct dccp_opt_pend *opt, *next;
480
a4bf3902 481 list_for_each_entry_safe(opt, next, &dmsk->dccpms_pending,
afe00251
AB
482 dccpop_node) {
483 BUG_ON(opt->dccpop_val == NULL);
484 kfree(opt->dccpop_val);
485
486 if (opt->dccpop_sc != NULL) {
487 BUG_ON(opt->dccpop_sc->dccpoc_val == NULL);
488 kfree(opt->dccpop_sc->dccpoc_val);
489 kfree(opt->dccpop_sc);
490 }
491
492 kfree(opt);
493 }
a4bf3902 494 INIT_LIST_HEAD(&dmsk->dccpms_pending);
afe00251 495
a4bf3902 496 list_for_each_entry_safe(opt, next, &dmsk->dccpms_conf, dccpop_node) {
afe00251
AB
497 BUG_ON(opt == NULL);
498 if (opt->dccpop_val != NULL)
499 kfree(opt->dccpop_val);
500 kfree(opt);
501 }
a4bf3902 502 INIT_LIST_HEAD(&dmsk->dccpms_conf);
afe00251
AB
503}
504
505EXPORT_SYMBOL_GPL(dccp_feat_clean);
506
507/* this is to be called only when a listening sock creates its child. It is
508 * assumed by the function---the confirm is not duplicated, but rather it is
509 * "passed on".
510 */
511int dccp_feat_clone(struct sock *oldsk, struct sock *newsk)
512{
a4bf3902
ACM
513 struct dccp_minisock *olddmsk = dccp_msk(oldsk);
514 struct dccp_minisock *newdmsk = dccp_msk(newsk);
afe00251
AB
515 struct dccp_opt_pend *opt;
516 int rc = 0;
517
a4bf3902
ACM
518 INIT_LIST_HEAD(&newdmsk->dccpms_pending);
519 INIT_LIST_HEAD(&newdmsk->dccpms_conf);
afe00251 520
a4bf3902 521 list_for_each_entry(opt, &olddmsk->dccpms_pending, dccpop_node) {
afe00251
AB
522 struct dccp_opt_pend *newopt;
523 /* copy the value of the option */
524 u8 *val = kmalloc(opt->dccpop_len, GFP_ATOMIC);
525
526 if (val == NULL)
527 goto out_clean;
528 memcpy(val, opt->dccpop_val, opt->dccpop_len);
529
530 newopt = kmalloc(sizeof(*newopt), GFP_ATOMIC);
531 if (newopt == NULL) {
532 kfree(val);
533 goto out_clean;
534 }
535
536 /* insert the option */
537 memcpy(newopt, opt, sizeof(*newopt));
538 newopt->dccpop_val = val;
a4bf3902 539 list_add_tail(&newopt->dccpop_node, &newdmsk->dccpms_pending);
afe00251
AB
540
541 /* XXX what happens with backlogs and multiple connections at
542 * once...
543 */
544 /* the master socket no longer needs to worry about confirms */
68907dad 545 opt->dccpop_sc = NULL; /* it's not a memleak---new socket has it */
afe00251
AB
546
547 /* reset state for a new socket */
548 opt->dccpop_conf = 0;
549 }
550
551 /* XXX not doing anything about the conf queue */
552
553out:
554 return rc;
555
556out_clean:
8ca0d17b 557 dccp_feat_clean(newdmsk);
afe00251
AB
558 rc = -ENOMEM;
559 goto out;
560}
561
562EXPORT_SYMBOL_GPL(dccp_feat_clone);
563
8ca0d17b
ACM
564static int __dccp_feat_init(struct dccp_minisock *dmsk, u8 type, u8 feat,
565 u8 *val, u8 len)
afe00251
AB
566{
567 int rc = -ENOMEM;
568 u8 *copy = kmalloc(len, GFP_KERNEL);
569
570 if (copy != NULL) {
571 memcpy(copy, val, len);
8ca0d17b 572 rc = dccp_feat_change(dmsk, type, feat, copy, len, GFP_KERNEL);
afe00251
AB
573 if (rc)
574 kfree(copy);
575 }
576 return rc;
577}
578
8ca0d17b 579int dccp_feat_init(struct dccp_minisock *dmsk)
afe00251 580{
afe00251
AB
581 int rc;
582
a4bf3902
ACM
583 INIT_LIST_HEAD(&dmsk->dccpms_pending);
584 INIT_LIST_HEAD(&dmsk->dccpms_conf);
afe00251
AB
585
586 /* CCID L */
8ca0d17b 587 rc = __dccp_feat_init(dmsk, DCCPO_CHANGE_L, DCCPF_CCID,
a4bf3902 588 &dmsk->dccpms_tx_ccid, 1);
afe00251
AB
589 if (rc)
590 goto out;
591
592 /* CCID R */
8ca0d17b 593 rc = __dccp_feat_init(dmsk, DCCPO_CHANGE_R, DCCPF_CCID,
a4bf3902 594 &dmsk->dccpms_rx_ccid, 1);
afe00251
AB
595 if (rc)
596 goto out;
597
598 /* Ack ratio */
8ca0d17b 599 rc = __dccp_feat_init(dmsk, DCCPO_CHANGE_L, DCCPF_ACK_RATIO,
a4bf3902 600 &dmsk->dccpms_ack_ratio, 1);
afe00251
AB
601out:
602 return rc;
603}
604
605EXPORT_SYMBOL_GPL(dccp_feat_init);
c02fdc0e
GR
606
607#ifdef CONFIG_IP_DCCP_DEBUG
608const char *dccp_feat_typename(const u8 type)
609{
610 switch(type) {
611 case DCCPO_CHANGE_L: return("ChangeL");
612 case DCCPO_CONFIRM_L: return("ConfirmL");
613 case DCCPO_CHANGE_R: return("ChangeR");
614 case DCCPO_CONFIRM_R: return("ConfirmR");
615 /* the following case must not appear in feature negotation */
616 default: dccp_pr_debug("unknown type %d [BUG!]\n", type);
617 }
618 return NULL;
619}
620
621EXPORT_SYMBOL_GPL(dccp_feat_typename);
622
623const char *dccp_feat_name(const u8 feat)
624{
625 static const char *feature_names[] = {
626 [DCCPF_RESERVED] = "Reserved",
627 [DCCPF_CCID] = "CCID",
628 [DCCPF_SHORT_SEQNOS] = "Allow Short Seqnos",
629 [DCCPF_SEQUENCE_WINDOW] = "Sequence Window",
630 [DCCPF_ECN_INCAPABLE] = "ECN Incapable",
631 [DCCPF_ACK_RATIO] = "Ack Ratio",
632 [DCCPF_SEND_ACK_VECTOR] = "Send ACK Vector",
633 [DCCPF_SEND_NDP_COUNT] = "Send NDP Count",
634 [DCCPF_MIN_CSUM_COVER] = "Min. Csum Coverage",
635 [DCCPF_DATA_CHECKSUM] = "Send Data Checksum",
636 };
637 if (feat >= DCCPF_MIN_CCID_SPECIFIC)
638 return "CCID-specific";
639
640 if (dccp_feat_is_reserved(feat))
641 return feature_names[DCCPF_RESERVED];
642
643 return feature_names[feat];
644}
645
646EXPORT_SYMBOL_GPL(dccp_feat_name);
647#endif /* CONFIG_IP_DCCP_DEBUG */