4 * Feature negotiation for the DCCP protocol (RFC 4340, section 6)
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>
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 All currently known SP features have 1-byte quantities. If in the future
16 * extensions of RFCs 4340..42 define features with item lengths larger than
17 * one byte, a feature-specific extension of the code will be required.
19 * This program is free software; you can redistribute it and/or
20 * modify it under the terms of the GNU General Public License
21 * as published by the Free Software Foundation; either version
22 * 2 of the License, or (at your option) any later version.
24 #include <linux/module.h>
28 /* feature-specific sysctls - initialised to the defaults from RFC 4340, 6.4 */
29 unsigned long sysctl_dccp_sequence_window __read_mostly
= 100;
30 int sysctl_dccp_rx_ccid __read_mostly
= 2,
31 sysctl_dccp_tx_ccid __read_mostly
= 2;
34 * Feature activation handlers.
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.
39 static int dccp_hdlr_ccid(struct sock
*sk
, u64 ccid
, bool rx
)
41 struct dccp_sock
*dp
= dccp_sk(sk
);
42 struct ccid
*new_ccid
= ccid_new(ccid
, sk
, rx
);
48 ccid_hc_rx_delete(dp
->dccps_hc_rx_ccid
, sk
);
49 dp
->dccps_hc_rx_ccid
= new_ccid
;
51 ccid_hc_tx_delete(dp
->dccps_hc_tx_ccid
, sk
);
52 dp
->dccps_hc_tx_ccid
= new_ccid
;
57 static int dccp_hdlr_seq_win(struct sock
*sk
, u64 seq_win
, bool rx
)
59 struct dccp_sock
*dp
= dccp_sk(sk
);
62 dp
->dccps_r_seq_win
= seq_win
;
63 /* propagate changes to update SWL/SWH */
64 dccp_update_gsr(sk
, dp
->dccps_gsr
);
66 dp
->dccps_l_seq_win
= seq_win
;
67 /* propagate changes to update AWL */
68 dccp_update_gss(sk
, dp
->dccps_gss
);
73 static int dccp_hdlr_ack_ratio(struct sock
*sk
, u64 ratio
, bool rx
)
76 dccp_sk(sk
)->dccps_r_ack_ratio
= ratio
;
78 dccp_sk(sk
)->dccps_l_ack_ratio
= ratio
;
82 static int dccp_hdlr_ackvec(struct sock
*sk
, u64 enable
, bool rx
)
84 struct dccp_sock
*dp
= dccp_sk(sk
);
87 if (enable
&& dp
->dccps_hc_rx_ackvec
== NULL
) {
88 dp
->dccps_hc_rx_ackvec
= dccp_ackvec_alloc(gfp_any());
89 if (dp
->dccps_hc_rx_ackvec
== NULL
)
92 dccp_ackvec_free(dp
->dccps_hc_rx_ackvec
);
93 dp
->dccps_hc_rx_ackvec
= NULL
;
99 static int dccp_hdlr_ndp(struct sock
*sk
, u64 enable
, bool rx
)
102 dccp_sk(sk
)->dccps_send_ndp_count
= (enable
> 0);
107 * Minimum Checksum Coverage is located at the RX side (9.2.1). This means that
108 * `rx' holds when the sending peer informs about his partial coverage via a
109 * ChangeR() option. In the other case, we are the sender and the receiver
110 * announces its coverage via ChangeL() options. The policy here is to honour
111 * such communication by enabling the corresponding partial coverage - but only
112 * if it has not been set manually before; the warning here means that all
113 * packets will be dropped.
115 static int dccp_hdlr_min_cscov(struct sock
*sk
, u64 cscov
, bool rx
)
117 struct dccp_sock
*dp
= dccp_sk(sk
);
120 dp
->dccps_pcrlen
= cscov
;
122 if (dp
->dccps_pcslen
== 0)
123 dp
->dccps_pcslen
= cscov
;
124 else if (cscov
> dp
->dccps_pcslen
)
125 DCCP_WARN("CsCov %u too small, peer requires >= %u\n",
126 dp
->dccps_pcslen
, (u8
)cscov
);
131 static const struct {
132 u8 feat_num
; /* DCCPF_xxx */
133 enum dccp_feat_type rxtx
; /* RX or TX */
134 enum dccp_feat_type reconciliation
; /* SP or NN */
135 u8 default_value
; /* as in 6.4 */
136 int (*activation_hdlr
)(struct sock
*sk
, u64 val
, bool rx
);
138 * Lookup table for location and type of features (from RFC 4340/4342)
139 * +--------------------------+----+-----+----+----+---------+-----------+
140 * | Feature | Location | Reconc. | Initial | Section |
141 * | | RX | TX | SP | NN | Value | Reference |
142 * +--------------------------+----+-----+----+----+---------+-----------+
143 * | DCCPF_CCID | | X | X | | 2 | 10 |
144 * | DCCPF_SHORT_SEQNOS | | X | X | | 0 | 7.6.1 |
145 * | DCCPF_SEQUENCE_WINDOW | | X | | X | 100 | 7.5.2 |
146 * | DCCPF_ECN_INCAPABLE | X | | X | | 0 | 12.1 |
147 * | DCCPF_ACK_RATIO | | X | | X | 2 | 11.3 |
148 * | DCCPF_SEND_ACK_VECTOR | X | | X | | 0 | 11.5 |
149 * | DCCPF_SEND_NDP_COUNT | | X | X | | 0 | 7.7.2 |
150 * | DCCPF_MIN_CSUM_COVER | X | | X | | 0 | 9.2.1 |
151 * | DCCPF_DATA_CHECKSUM | X | | X | | 0 | 9.3.1 |
152 * | DCCPF_SEND_LEV_RATE | X | | X | | 0 | 4342/8.4 |
153 * +--------------------------+----+-----+----+----+---------+-----------+
155 } dccp_feat_table
[] = {
156 { DCCPF_CCID
, FEAT_AT_TX
, FEAT_SP
, 2, dccp_hdlr_ccid
},
157 { DCCPF_SHORT_SEQNOS
, FEAT_AT_TX
, FEAT_SP
, 0, NULL
},
158 { DCCPF_SEQUENCE_WINDOW
, FEAT_AT_TX
, FEAT_NN
, 100, dccp_hdlr_seq_win
},
159 { DCCPF_ECN_INCAPABLE
, FEAT_AT_RX
, FEAT_SP
, 0, NULL
},
160 { DCCPF_ACK_RATIO
, FEAT_AT_TX
, FEAT_NN
, 2, dccp_hdlr_ack_ratio
},
161 { DCCPF_SEND_ACK_VECTOR
, FEAT_AT_RX
, FEAT_SP
, 0, dccp_hdlr_ackvec
},
162 { DCCPF_SEND_NDP_COUNT
, FEAT_AT_TX
, FEAT_SP
, 0, dccp_hdlr_ndp
},
163 { DCCPF_MIN_CSUM_COVER
, FEAT_AT_RX
, FEAT_SP
, 0, dccp_hdlr_min_cscov
},
164 { DCCPF_DATA_CHECKSUM
, FEAT_AT_RX
, FEAT_SP
, 0, NULL
},
165 { DCCPF_SEND_LEV_RATE
, FEAT_AT_RX
, FEAT_SP
, 0, NULL
},
167 #define DCCP_FEAT_SUPPORTED_MAX ARRAY_SIZE(dccp_feat_table)
170 * dccp_feat_index - Hash function to map feature number into array position
171 * Returns consecutive array index or -1 if the feature is not understood.
173 static int dccp_feat_index(u8 feat_num
)
175 /* The first 9 entries are occupied by the types from RFC 4340, 6.4 */
176 if (feat_num
> DCCPF_RESERVED
&& feat_num
<= DCCPF_DATA_CHECKSUM
)
180 * Other features: add cases for new feature types here after adding
181 * them to the above table.
184 case DCCPF_SEND_LEV_RATE
:
185 return DCCP_FEAT_SUPPORTED_MAX
- 1;
190 static u8
dccp_feat_type(u8 feat_num
)
192 int idx
= dccp_feat_index(feat_num
);
196 return dccp_feat_table
[idx
].reconciliation
;
199 static int dccp_feat_default_value(u8 feat_num
)
201 int idx
= dccp_feat_index(feat_num
);
203 * There are no default values for unknown features, so encountering a
204 * negative index here indicates a serious problem somewhere else.
206 DCCP_BUG_ON(idx
< 0);
208 return idx
< 0 ? 0 : dccp_feat_table
[idx
].default_value
;
212 * Debugging and verbose-printing section
214 static const char *dccp_feat_fname(const u8 feat
)
216 static const char *const feature_names
[] = {
217 [DCCPF_RESERVED
] = "Reserved",
218 [DCCPF_CCID
] = "CCID",
219 [DCCPF_SHORT_SEQNOS
] = "Allow Short Seqnos",
220 [DCCPF_SEQUENCE_WINDOW
] = "Sequence Window",
221 [DCCPF_ECN_INCAPABLE
] = "ECN Incapable",
222 [DCCPF_ACK_RATIO
] = "Ack Ratio",
223 [DCCPF_SEND_ACK_VECTOR
] = "Send ACK Vector",
224 [DCCPF_SEND_NDP_COUNT
] = "Send NDP Count",
225 [DCCPF_MIN_CSUM_COVER
] = "Min. Csum Coverage",
226 [DCCPF_DATA_CHECKSUM
] = "Send Data Checksum",
228 if (feat
> DCCPF_DATA_CHECKSUM
&& feat
< DCCPF_MIN_CCID_SPECIFIC
)
229 return feature_names
[DCCPF_RESERVED
];
231 if (feat
== DCCPF_SEND_LEV_RATE
)
232 return "Send Loss Event Rate";
233 if (feat
>= DCCPF_MIN_CCID_SPECIFIC
)
234 return "CCID-specific";
236 return feature_names
[feat
];
239 static const char *const dccp_feat_sname
[] = {
240 "DEFAULT", "INITIALISING", "CHANGING", "UNSTABLE", "STABLE",
243 #ifdef CONFIG_IP_DCCP_DEBUG
244 static const char *dccp_feat_oname(const u8 opt
)
247 case DCCPO_CHANGE_L
: return "Change_L";
248 case DCCPO_CONFIRM_L
: return "Confirm_L";
249 case DCCPO_CHANGE_R
: return "Change_R";
250 case DCCPO_CONFIRM_R
: return "Confirm_R";
255 static void dccp_feat_printval(u8 feat_num
, dccp_feat_val
const *val
)
257 u8 i
, type
= dccp_feat_type(feat_num
);
259 if (val
== NULL
|| (type
== FEAT_SP
&& val
->sp
.vec
== NULL
))
260 dccp_pr_debug_cat("(NULL)");
261 else if (type
== FEAT_SP
)
262 for (i
= 0; i
< val
->sp
.len
; i
++)
263 dccp_pr_debug_cat("%s%u", i
? " " : "", val
->sp
.vec
[i
]);
264 else if (type
== FEAT_NN
)
265 dccp_pr_debug_cat("%llu", (unsigned long long)val
->nn
);
267 dccp_pr_debug_cat("unknown type %u", type
);
270 static void dccp_feat_printvals(u8 feat_num
, u8
*list
, u8 len
)
272 u8 type
= dccp_feat_type(feat_num
);
273 dccp_feat_val fval
= { .sp
.vec
= list
, .sp
.len
= len
};
276 fval
.nn
= dccp_decode_value_var(list
, len
);
277 dccp_feat_printval(feat_num
, &fval
);
280 static void dccp_feat_print_entry(struct dccp_feat_entry
const *entry
)
282 dccp_debug(" * %s %s = ", entry
->is_local
? "local" : "remote",
283 dccp_feat_fname(entry
->feat_num
));
284 dccp_feat_printval(entry
->feat_num
, &entry
->val
);
285 dccp_pr_debug_cat(", state=%s %s\n", dccp_feat_sname
[entry
->state
],
286 entry
->needs_confirm
? "(Confirm pending)" : "");
289 #define dccp_feat_print_opt(opt, feat, val, len, mandatory) do { \
290 dccp_pr_debug("%s(%s, ", dccp_feat_oname(opt), dccp_feat_fname(feat));\
291 dccp_feat_printvals(feat, val, len); \
292 dccp_pr_debug_cat(") %s\n", mandatory ? "!" : ""); } while (0)
294 #define dccp_feat_print_fnlist(fn_list) { \
295 const struct dccp_feat_entry *___entry; \
297 dccp_pr_debug("List Dump:\n"); \
298 list_for_each_entry(___entry, fn_list, node) \
299 dccp_feat_print_entry(___entry); \
301 #else /* ! CONFIG_IP_DCCP_DEBUG */
302 #define dccp_feat_print_opt(opt, feat, val, len, mandatory)
303 #define dccp_feat_print_fnlist(fn_list)
306 static int __dccp_feat_activate(struct sock
*sk
, const int idx
,
307 const bool is_local
, dccp_feat_val
const *fval
)
312 if (idx
< 0 || idx
>= DCCP_FEAT_SUPPORTED_MAX
)
314 if (dccp_feat_table
[idx
].activation_hdlr
== NULL
)
318 val
= dccp_feat_table
[idx
].default_value
;
319 } else if (dccp_feat_table
[idx
].reconciliation
== FEAT_SP
) {
320 if (fval
->sp
.vec
== NULL
) {
322 * This can happen when an empty Confirm is sent
323 * for an SP (i.e. known) feature. In this case
324 * we would be using the default anyway.
326 DCCP_CRIT("Feature #%d undefined: using default", idx
);
327 val
= dccp_feat_table
[idx
].default_value
;
329 val
= fval
->sp
.vec
[0];
335 /* Location is RX if this is a local-RX or remote-TX feature */
336 rx
= (is_local
== (dccp_feat_table
[idx
].rxtx
== FEAT_AT_RX
));
338 dccp_debug(" -> activating %s %s, %sval=%llu\n", rx
? "RX" : "TX",
339 dccp_feat_fname(dccp_feat_table
[idx
].feat_num
),
340 fval
? "" : "default ", (unsigned long long)val
);
342 return dccp_feat_table
[idx
].activation_hdlr(sk
, val
, rx
);
345 /* Test for "Req'd" feature (RFC 4340, 6.4) */
346 static inline int dccp_feat_must_be_understood(u8 feat_num
)
348 return feat_num
== DCCPF_CCID
|| feat_num
== DCCPF_SHORT_SEQNOS
||
349 feat_num
== DCCPF_SEQUENCE_WINDOW
;
352 /* copy constructor, fval must not already contain allocated memory */
353 static int dccp_feat_clone_sp_val(dccp_feat_val
*fval
, u8
const *val
, u8 len
)
356 if (fval
->sp
.len
> 0) {
357 fval
->sp
.vec
= kmemdup(val
, len
, gfp_any());
358 if (fval
->sp
.vec
== NULL
) {
366 static void dccp_feat_val_destructor(u8 feat_num
, dccp_feat_val
*val
)
368 if (unlikely(val
== NULL
))
370 if (dccp_feat_type(feat_num
) == FEAT_SP
)
372 memset(val
, 0, sizeof(*val
));
375 static struct dccp_feat_entry
*
376 dccp_feat_clone_entry(struct dccp_feat_entry
const *original
)
378 struct dccp_feat_entry
*new;
379 u8 type
= dccp_feat_type(original
->feat_num
);
381 if (type
== FEAT_UNKNOWN
)
384 new = kmemdup(original
, sizeof(struct dccp_feat_entry
), gfp_any());
388 if (type
== FEAT_SP
&& dccp_feat_clone_sp_val(&new->val
,
389 original
->val
.sp
.vec
,
390 original
->val
.sp
.len
)) {
397 static void dccp_feat_entry_destructor(struct dccp_feat_entry
*entry
)
400 dccp_feat_val_destructor(entry
->feat_num
, &entry
->val
);
406 * List management functions
408 * Feature negotiation lists rely on and maintain the following invariants:
409 * - each feat_num in the list is known, i.e. we know its type and default value
410 * - each feat_num/is_local combination is unique (old entries are overwritten)
411 * - SP values are always freshly allocated
412 * - list is sorted in increasing order of feature number (faster lookup)
414 static struct dccp_feat_entry
*dccp_feat_list_lookup(struct list_head
*fn_list
,
415 u8 feat_num
, bool is_local
)
417 struct dccp_feat_entry
*entry
;
419 list_for_each_entry(entry
, fn_list
, node
) {
420 if (entry
->feat_num
== feat_num
&& entry
->is_local
== is_local
)
422 else if (entry
->feat_num
> feat_num
)
429 * dccp_feat_entry_new - Central list update routine (called by all others)
430 * @head: list to add to
431 * @feat: feature number
432 * @local: whether the local (1) or remote feature with number @feat is meant
433 * This is the only constructor and serves to ensure the above invariants.
435 static struct dccp_feat_entry
*
436 dccp_feat_entry_new(struct list_head
*head
, u8 feat
, bool local
)
438 struct dccp_feat_entry
*entry
;
440 list_for_each_entry(entry
, head
, node
)
441 if (entry
->feat_num
== feat
&& entry
->is_local
== local
) {
442 dccp_feat_val_destructor(entry
->feat_num
, &entry
->val
);
444 } else if (entry
->feat_num
> feat
) {
449 entry
= kmalloc(sizeof(*entry
), gfp_any());
451 entry
->feat_num
= feat
;
452 entry
->is_local
= local
;
453 list_add_tail(&entry
->node
, head
);
459 * dccp_feat_push_change - Add/overwrite a Change option in the list
460 * @fn_list: feature-negotiation list to update
461 * @feat: one of %dccp_feature_numbers
462 * @local: whether local (1) or remote (0) @feat_num is meant
463 * @needs_mandatory: whether to use Mandatory feature negotiation options
464 * @fval: pointer to NN/SP value to be inserted (will be copied)
466 static int dccp_feat_push_change(struct list_head
*fn_list
, u8 feat
, u8 local
,
467 u8 mandatory
, dccp_feat_val
*fval
)
469 struct dccp_feat_entry
*new = dccp_feat_entry_new(fn_list
, feat
, local
);
474 new->feat_num
= feat
;
475 new->is_local
= local
;
476 new->state
= FEAT_INITIALISING
;
477 new->needs_confirm
= 0;
478 new->empty_confirm
= 0;
480 new->needs_mandatory
= mandatory
;
486 * dccp_feat_push_confirm - Add a Confirm entry to the FN list
487 * @fn_list: feature-negotiation list to add to
488 * @feat: one of %dccp_feature_numbers
489 * @local: whether local (1) or remote (0) @feat_num is being confirmed
490 * @fval: pointer to NN/SP value to be inserted or NULL
491 * Returns 0 on success, a Reset code for further processing otherwise.
493 static int dccp_feat_push_confirm(struct list_head
*fn_list
, u8 feat
, u8 local
,
496 struct dccp_feat_entry
*new = dccp_feat_entry_new(fn_list
, feat
, local
);
499 return DCCP_RESET_CODE_TOO_BUSY
;
501 new->feat_num
= feat
;
502 new->is_local
= local
;
503 new->state
= FEAT_STABLE
; /* transition in 6.6.2 */
504 new->needs_confirm
= 1;
505 new->empty_confirm
= (fval
== NULL
);
506 new->val
.nn
= 0; /* zeroes the whole structure */
507 if (!new->empty_confirm
)
509 new->needs_mandatory
= 0;
514 static int dccp_push_empty_confirm(struct list_head
*fn_list
, u8 feat
, u8 local
)
516 return dccp_feat_push_confirm(fn_list
, feat
, local
, NULL
);
519 static inline void dccp_feat_list_pop(struct dccp_feat_entry
*entry
)
521 list_del(&entry
->node
);
522 dccp_feat_entry_destructor(entry
);
525 void dccp_feat_list_purge(struct list_head
*fn_list
)
527 struct dccp_feat_entry
*entry
, *next
;
529 list_for_each_entry_safe(entry
, next
, fn_list
, node
)
530 dccp_feat_entry_destructor(entry
);
531 INIT_LIST_HEAD(fn_list
);
533 EXPORT_SYMBOL_GPL(dccp_feat_list_purge
);
535 /* generate @to as full clone of @from - @to must not contain any nodes */
536 int dccp_feat_clone_list(struct list_head
const *from
, struct list_head
*to
)
538 struct dccp_feat_entry
*entry
, *new;
541 list_for_each_entry(entry
, from
, node
) {
542 new = dccp_feat_clone_entry(entry
);
545 list_add_tail(&new->node
, to
);
550 dccp_feat_list_purge(to
);
555 * dccp_feat_valid_nn_length - Enforce length constraints on NN options
556 * Length is between 0 and %DCCP_OPTVAL_MAXLEN. Used for outgoing packets only,
557 * incoming options are accepted as long as their values are valid.
559 static u8
dccp_feat_valid_nn_length(u8 feat_num
)
561 if (feat_num
== DCCPF_ACK_RATIO
) /* RFC 4340, 11.3 and 6.6.8 */
563 if (feat_num
== DCCPF_SEQUENCE_WINDOW
) /* RFC 4340, 7.5.2 and 6.5 */
568 static u8
dccp_feat_is_valid_nn_val(u8 feat_num
, u64 val
)
571 case DCCPF_ACK_RATIO
:
572 return val
<= DCCPF_ACK_RATIO_MAX
;
573 case DCCPF_SEQUENCE_WINDOW
:
574 return val
>= DCCPF_SEQ_WMIN
&& val
<= DCCPF_SEQ_WMAX
;
576 return 0; /* feature unknown - so we can't tell */
579 /* check that SP values are within the ranges defined in RFC 4340 */
580 static u8
dccp_feat_is_valid_sp_val(u8 feat_num
, u8 val
)
584 return val
== DCCPC_CCID2
|| val
== DCCPC_CCID3
;
585 /* Type-check Boolean feature values: */
586 case DCCPF_SHORT_SEQNOS
:
587 case DCCPF_ECN_INCAPABLE
:
588 case DCCPF_SEND_ACK_VECTOR
:
589 case DCCPF_SEND_NDP_COUNT
:
590 case DCCPF_DATA_CHECKSUM
:
591 case DCCPF_SEND_LEV_RATE
:
593 case DCCPF_MIN_CSUM_COVER
:
596 return 0; /* feature unknown */
599 static u8
dccp_feat_sp_list_ok(u8 feat_num
, u8
const *sp_list
, u8 sp_len
)
601 if (sp_list
== NULL
|| sp_len
< 1)
604 if (!dccp_feat_is_valid_sp_val(feat_num
, *sp_list
++))
610 * dccp_feat_insert_opts - Generate FN options from current list state
611 * @skb: next sk_buff to be sent to the peer
612 * @dp: for client during handshake and general negotiation
613 * @dreq: used by the server only (all Changes/Confirms in LISTEN/RESPOND)
615 int dccp_feat_insert_opts(struct dccp_sock
*dp
, struct dccp_request_sock
*dreq
,
618 struct list_head
*fn
= dreq
? &dreq
->dreq_featneg
: &dp
->dccps_featneg
;
619 struct dccp_feat_entry
*pos
, *next
;
620 u8 opt
, type
, len
, *ptr
, nn_in_nbo
[DCCP_OPTVAL_MAXLEN
];
623 /* put entries into @skb in the order they appear in the list */
624 list_for_each_entry_safe_reverse(pos
, next
, fn
, node
) {
625 opt
= dccp_feat_genopt(pos
);
626 type
= dccp_feat_type(pos
->feat_num
);
629 if (pos
->empty_confirm
) {
633 if (type
== FEAT_SP
) {
634 len
= pos
->val
.sp
.len
;
635 ptr
= pos
->val
.sp
.vec
;
636 rpt
= pos
->needs_confirm
;
637 } else if (type
== FEAT_NN
) {
638 len
= dccp_feat_valid_nn_length(pos
->feat_num
);
640 dccp_encode_value_var(pos
->val
.nn
, ptr
, len
);
642 DCCP_BUG("unknown feature %u", pos
->feat_num
);
646 dccp_feat_print_opt(opt
, pos
->feat_num
, ptr
, len
, 0);
648 if (dccp_insert_fn_opt(skb
, opt
, pos
->feat_num
, ptr
, len
, rpt
))
650 if (pos
->needs_mandatory
&& dccp_insert_option_mandatory(skb
))
653 * Enter CHANGING after transmitting the Change option (6.6.2).
655 if (pos
->state
== FEAT_INITIALISING
)
656 pos
->state
= FEAT_CHANGING
;
662 * __feat_register_nn - Register new NN value on socket
663 * @fn: feature-negotiation list to register with
664 * @feat: an NN feature from %dccp_feature_numbers
665 * @mandatory: use Mandatory option if 1
666 * @nn_val: value to register (restricted to 4 bytes)
667 * Note that NN features are local by definition (RFC 4340, 6.3.2).
669 static int __feat_register_nn(struct list_head
*fn
, u8 feat
,
670 u8 mandatory
, u64 nn_val
)
672 dccp_feat_val fval
= { .nn
= nn_val
};
674 if (dccp_feat_type(feat
) != FEAT_NN
||
675 !dccp_feat_is_valid_nn_val(feat
, nn_val
))
678 /* Don't bother with default values, they will be activated anyway. */
679 if (nn_val
- (u64
)dccp_feat_default_value(feat
) == 0)
682 return dccp_feat_push_change(fn
, feat
, 1, mandatory
, &fval
);
686 * __feat_register_sp - Register new SP value/list on socket
687 * @fn: feature-negotiation list to register with
688 * @feat: an SP feature from %dccp_feature_numbers
689 * @is_local: whether the local (1) or the remote (0) @feat is meant
690 * @mandatory: use Mandatory option if 1
691 * @sp_val: SP value followed by optional preference list
692 * @sp_len: length of @sp_val in bytes
694 static int __feat_register_sp(struct list_head
*fn
, u8 feat
, u8 is_local
,
695 u8 mandatory
, u8
const *sp_val
, u8 sp_len
)
699 if (dccp_feat_type(feat
) != FEAT_SP
||
700 !dccp_feat_sp_list_ok(feat
, sp_val
, sp_len
))
703 /* Avoid negotiating alien CCIDs by only advertising supported ones */
704 if (feat
== DCCPF_CCID
&& !ccid_support_check(sp_val
, sp_len
))
707 if (dccp_feat_clone_sp_val(&fval
, sp_val
, sp_len
))
710 return dccp_feat_push_change(fn
, feat
, is_local
, mandatory
, &fval
);
714 * dccp_feat_register_sp - Register requests to change SP feature values
715 * @sk: client or listening socket
716 * @feat: one of %dccp_feature_numbers
717 * @is_local: whether the local (1) or remote (0) @feat is meant
718 * @list: array of preferred values, in descending order of preference
719 * @len: length of @list in bytes
721 int dccp_feat_register_sp(struct sock
*sk
, u8 feat
, u8 is_local
,
722 u8
const *list
, u8 len
)
723 { /* any changes must be registered before establishing the connection */
724 if (sk
->sk_state
!= DCCP_CLOSED
)
726 if (dccp_feat_type(feat
) != FEAT_SP
)
728 return __feat_register_sp(&dccp_sk(sk
)->dccps_featneg
, feat
, is_local
,
732 /* Analogous to dccp_feat_register_sp(), but for non-negotiable values */
733 int dccp_feat_register_nn(struct sock
*sk
, u8 feat
, u64 val
)
735 /* any changes must be registered before establishing the connection */
736 if (sk
->sk_state
!= DCCP_CLOSED
)
738 if (dccp_feat_type(feat
) != FEAT_NN
)
740 return __feat_register_nn(&dccp_sk(sk
)->dccps_featneg
, feat
, 0, val
);
744 * Tracking features whose value depend on the choice of CCID
746 * This is designed with an extension in mind so that a list walk could be done
747 * before activating any features. However, the existing framework was found to
748 * work satisfactorily up until now, the automatic verification is left open.
749 * When adding new CCIDs, add a corresponding dependency table here.
751 static const struct ccid_dependency
*dccp_feat_ccid_deps(u8 ccid
, bool is_local
)
753 static const struct ccid_dependency ccid2_dependencies
[2][2] = {
755 * CCID2 mandates Ack Vectors (RFC 4341, 4.): as CCID is a TX
756 * feature and Send Ack Vector is an RX feature, `is_local'
757 * needs to be reversed.
759 { /* Dependencies of the receiver-side (remote) CCID2 */
761 .dependent_feat
= DCCPF_SEND_ACK_VECTOR
,
763 .is_mandatory
= true,
768 { /* Dependencies of the sender-side (local) CCID2 */
770 .dependent_feat
= DCCPF_SEND_ACK_VECTOR
,
772 .is_mandatory
= true,
778 static const struct ccid_dependency ccid3_dependencies
[2][5] = {
780 * Dependencies of the receiver-side CCID3
782 { /* locally disable Ack Vectors */
783 .dependent_feat
= DCCPF_SEND_ACK_VECTOR
,
785 .is_mandatory
= false,
788 { /* see below why Send Loss Event Rate is on */
789 .dependent_feat
= DCCPF_SEND_LEV_RATE
,
791 .is_mandatory
= true,
794 { /* NDP Count is needed as per RFC 4342, 6.1.1 */
795 .dependent_feat
= DCCPF_SEND_NDP_COUNT
,
797 .is_mandatory
= true,
803 * CCID3 at the TX side: we request that the HC-receiver
804 * will not send Ack Vectors (they will be ignored, so
805 * Mandatory is not set); we enable Send Loss Event Rate
806 * (Mandatory since the implementation does not support
807 * the Loss Intervals option of RFC 4342, 8.6).
808 * The last two options are for peer's information only.
811 .dependent_feat
= DCCPF_SEND_ACK_VECTOR
,
813 .is_mandatory
= false,
817 .dependent_feat
= DCCPF_SEND_LEV_RATE
,
819 .is_mandatory
= true,
822 { /* this CCID does not support Ack Ratio */
823 .dependent_feat
= DCCPF_ACK_RATIO
,
825 .is_mandatory
= false,
828 { /* tell receiver we are sending NDP counts */
829 .dependent_feat
= DCCPF_SEND_NDP_COUNT
,
831 .is_mandatory
= false,
839 return ccid2_dependencies
[is_local
];
841 return ccid3_dependencies
[is_local
];
848 * dccp_feat_propagate_ccid - Resolve dependencies of features on choice of CCID
849 * @fn: feature-negotiation list to update
850 * @id: CCID number to track
851 * @is_local: whether TX CCID (1) or RX CCID (0) is meant
852 * This function needs to be called after registering all other features.
854 static int dccp_feat_propagate_ccid(struct list_head
*fn
, u8 id
, bool is_local
)
856 const struct ccid_dependency
*table
= dccp_feat_ccid_deps(id
, is_local
);
857 int i
, rc
= (table
== NULL
);
859 for (i
= 0; rc
== 0 && table
[i
].dependent_feat
!= DCCPF_RESERVED
; i
++)
860 if (dccp_feat_type(table
[i
].dependent_feat
) == FEAT_SP
)
861 rc
= __feat_register_sp(fn
, table
[i
].dependent_feat
,
863 table
[i
].is_mandatory
,
866 rc
= __feat_register_nn(fn
, table
[i
].dependent_feat
,
867 table
[i
].is_mandatory
,
873 * dccp_feat_finalise_settings - Finalise settings before starting negotiation
874 * @dp: client or listening socket (settings will be inherited)
875 * This is called after all registrations (socket initialisation, sysctls, and
876 * sockopt calls), and before sending the first packet containing Change options
877 * (ie. client-Request or server-Response), to ensure internal consistency.
879 int dccp_feat_finalise_settings(struct dccp_sock
*dp
)
881 struct list_head
*fn
= &dp
->dccps_featneg
;
882 struct dccp_feat_entry
*entry
;
883 int i
= 2, ccids
[2] = { -1, -1 };
887 * 1) not useful to propagate CCID settings if this host advertises more
888 * than one CCID: the choice of CCID may still change - if this is
889 * the client, or if this is the server and the client sends
890 * singleton CCID values.
891 * 2) since is that propagate_ccid changes the list, we defer changing
892 * the sorted list until after the traversal.
894 list_for_each_entry(entry
, fn
, node
)
895 if (entry
->feat_num
== DCCPF_CCID
&& entry
->val
.sp
.len
== 1)
896 ccids
[entry
->is_local
] = entry
->val
.sp
.vec
[0];
898 if (ccids
[i
] > 0 && dccp_feat_propagate_ccid(fn
, ccids
[i
], i
))
900 dccp_feat_print_fnlist(fn
);
905 * dccp_feat_server_ccid_dependencies - Resolve CCID-dependent features
906 * It is the server which resolves the dependencies once the CCID has been
907 * fully negotiated. If no CCID has been negotiated, it uses the default CCID.
909 int dccp_feat_server_ccid_dependencies(struct dccp_request_sock
*dreq
)
911 struct list_head
*fn
= &dreq
->dreq_featneg
;
912 struct dccp_feat_entry
*entry
;
915 for (is_local
= 0; is_local
<= 1; is_local
++) {
916 entry
= dccp_feat_list_lookup(fn
, DCCPF_CCID
, is_local
);
918 if (entry
!= NULL
&& !entry
->empty_confirm
)
919 ccid
= entry
->val
.sp
.vec
[0];
921 ccid
= dccp_feat_default_value(DCCPF_CCID
);
923 if (dccp_feat_propagate_ccid(fn
, ccid
, is_local
))
929 /* Select the first entry in @servlist that also occurs in @clilist (6.3.1) */
930 static int dccp_feat_preflist_match(u8
*servlist
, u8 slen
, u8
*clilist
, u8 clen
)
934 for (s
= 0; s
< slen
; s
++)
935 for (c
= 0; c
< clen
; c
++)
936 if (servlist
[s
] == clilist
[c
])
942 * dccp_feat_prefer - Move preferred entry to the start of array
943 * Reorder the @array_len elements in @array so that @preferred_value comes
944 * first. Returns >0 to indicate that @preferred_value does occur in @array.
946 static u8
dccp_feat_prefer(u8 preferred_value
, u8
*array
, u8 array_len
)
948 u8 i
, does_occur
= 0;
951 for (i
= 0; i
< array_len
; i
++)
952 if (array
[i
] == preferred_value
) {
957 array
[0] = preferred_value
;
963 * dccp_feat_reconcile - Reconcile SP preference lists
964 * @fval: SP list to reconcile into
965 * @arr: received SP preference list
966 * @len: length of @arr in bytes
967 * @is_server: whether this side is the server (and @fv is the server's list)
968 * @reorder: whether to reorder the list in @fv after reconciling with @arr
969 * When successful, > 0 is returned and the reconciled list is in @fval.
970 * A value of 0 means that negotiation failed (no shared entry).
972 static int dccp_feat_reconcile(dccp_feat_val
*fv
, u8
*arr
, u8 len
,
973 bool is_server
, bool reorder
)
977 if (!fv
->sp
.vec
|| !arr
) {
978 DCCP_CRIT("NULL feature value or array");
983 rc
= dccp_feat_preflist_match(fv
->sp
.vec
, fv
->sp
.len
, arr
, len
);
985 rc
= dccp_feat_preflist_match(arr
, len
, fv
->sp
.vec
, fv
->sp
.len
);
993 * Reorder list: used for activating features and in dccp_insert_fn_opt.
995 return dccp_feat_prefer(rc
, fv
->sp
.vec
, fv
->sp
.len
);
999 * dccp_feat_change_recv - Process incoming ChangeL/R options
1000 * @fn: feature-negotiation list to update
1001 * @is_mandatory: whether the Change was preceded by a Mandatory option
1002 * @opt: %DCCPO_CHANGE_L or %DCCPO_CHANGE_R
1003 * @feat: one of %dccp_feature_numbers
1004 * @val: NN value or SP value/preference list
1005 * @len: length of @val in bytes
1006 * @server: whether this node is the server (1) or the client (0)
1008 static u8
dccp_feat_change_recv(struct list_head
*fn
, u8 is_mandatory
, u8 opt
,
1009 u8 feat
, u8
*val
, u8 len
, const bool server
)
1011 u8 defval
, type
= dccp_feat_type(feat
);
1012 const bool local
= (opt
== DCCPO_CHANGE_R
);
1013 struct dccp_feat_entry
*entry
;
1016 if (len
== 0 || type
== FEAT_UNKNOWN
) /* 6.1 and 6.6.8 */
1017 goto unknown_feature_or_value
;
1019 dccp_feat_print_opt(opt
, feat
, val
, len
, is_mandatory
);
1022 * Negotiation of NN features: Change R is invalid, so there is no
1023 * simultaneous negotiation; hence we do not look up in the list.
1025 if (type
== FEAT_NN
) {
1026 if (local
|| len
> sizeof(fval
.nn
))
1027 goto unknown_feature_or_value
;
1029 /* 6.3.2: "The feature remote MUST accept any valid value..." */
1030 fval
.nn
= dccp_decode_value_var(val
, len
);
1031 if (!dccp_feat_is_valid_nn_val(feat
, fval
.nn
))
1032 goto unknown_feature_or_value
;
1034 return dccp_feat_push_confirm(fn
, feat
, local
, &fval
);
1038 * Unidirectional/simultaneous negotiation of SP features (6.3.1)
1040 entry
= dccp_feat_list_lookup(fn
, feat
, local
);
1041 if (entry
== NULL
) {
1043 * No particular preferences have been registered. We deal with
1044 * this situation by assuming that all valid values are equally
1045 * acceptable, and apply the following checks:
1046 * - if the peer's list is a singleton, we accept a valid value;
1047 * - if we are the server, we first try to see if the peer (the
1048 * client) advertises the default value. If yes, we use it,
1049 * otherwise we accept the preferred value;
1050 * - else if we are the client, we use the first list element.
1052 if (dccp_feat_clone_sp_val(&fval
, val
, 1))
1053 return DCCP_RESET_CODE_TOO_BUSY
;
1055 if (len
> 1 && server
) {
1056 defval
= dccp_feat_default_value(feat
);
1057 if (dccp_feat_preflist_match(&defval
, 1, val
, len
) > -1)
1058 fval
.sp
.vec
[0] = defval
;
1059 } else if (!dccp_feat_is_valid_sp_val(feat
, fval
.sp
.vec
[0])) {
1061 goto unknown_feature_or_value
;
1064 /* Treat unsupported CCIDs like invalid values */
1065 if (feat
== DCCPF_CCID
&& !ccid_support_check(fval
.sp
.vec
, 1)) {
1067 goto not_valid_or_not_known
;
1070 return dccp_feat_push_confirm(fn
, feat
, local
, &fval
);
1072 } else if (entry
->state
== FEAT_UNSTABLE
) { /* 6.6.2 */
1076 if (dccp_feat_reconcile(&entry
->val
, val
, len
, server
, true)) {
1077 entry
->empty_confirm
= 0;
1078 } else if (is_mandatory
) {
1079 return DCCP_RESET_CODE_MANDATORY_ERROR
;
1080 } else if (entry
->state
== FEAT_INITIALISING
) {
1082 * Failed simultaneous negotiation (server only): try to `save'
1083 * the connection by checking whether entry contains the default
1084 * value for @feat. If yes, send an empty Confirm to signal that
1085 * the received Change was not understood - which implies using
1086 * the default value.
1087 * If this also fails, we use Reset as the last resort.
1090 defval
= dccp_feat_default_value(feat
);
1091 if (!dccp_feat_reconcile(&entry
->val
, &defval
, 1, server
, true))
1092 return DCCP_RESET_CODE_OPTION_ERROR
;
1093 entry
->empty_confirm
= 1;
1095 entry
->needs_confirm
= 1;
1096 entry
->needs_mandatory
= 0;
1097 entry
->state
= FEAT_STABLE
;
1100 unknown_feature_or_value
:
1102 return dccp_push_empty_confirm(fn
, feat
, local
);
1104 not_valid_or_not_known
:
1105 return is_mandatory
? DCCP_RESET_CODE_MANDATORY_ERROR
1106 : DCCP_RESET_CODE_OPTION_ERROR
;
1110 * dccp_feat_confirm_recv - Process received Confirm options
1111 * @fn: feature-negotiation list to update
1112 * @is_mandatory: whether @opt was preceded by a Mandatory option
1113 * @opt: %DCCPO_CONFIRM_L or %DCCPO_CONFIRM_R
1114 * @feat: one of %dccp_feature_numbers
1115 * @val: NN value or SP value/preference list
1116 * @len: length of @val in bytes
1117 * @server: whether this node is server (1) or client (0)
1119 static u8
dccp_feat_confirm_recv(struct list_head
*fn
, u8 is_mandatory
, u8 opt
,
1120 u8 feat
, u8
*val
, u8 len
, const bool server
)
1122 u8
*plist
, plen
, type
= dccp_feat_type(feat
);
1123 const bool local
= (opt
== DCCPO_CONFIRM_R
);
1124 struct dccp_feat_entry
*entry
= dccp_feat_list_lookup(fn
, feat
, local
);
1126 dccp_feat_print_opt(opt
, feat
, val
, len
, is_mandatory
);
1128 if (entry
== NULL
) { /* nothing queued: ignore or handle error */
1129 if (is_mandatory
&& type
== FEAT_UNKNOWN
)
1130 return DCCP_RESET_CODE_MANDATORY_ERROR
;
1132 if (!local
&& type
== FEAT_NN
) /* 6.3.2 */
1133 goto confirmation_failed
;
1137 if (entry
->state
!= FEAT_CHANGING
) /* 6.6.2 */
1141 if (dccp_feat_must_be_understood(feat
)) /* 6.6.7 */
1142 goto confirmation_failed
;
1144 * Empty Confirm during connection setup: this means reverting
1145 * to the `old' value, which in this case is the default. Since
1146 * we handle default values automatically when no other values
1147 * have been set, we revert to the old value by removing this
1148 * entry from the list.
1150 dccp_feat_list_pop(entry
);
1154 if (type
== FEAT_NN
) {
1155 if (len
> sizeof(entry
->val
.nn
))
1156 goto confirmation_failed
;
1158 if (entry
->val
.nn
== dccp_decode_value_var(val
, len
))
1159 goto confirmation_succeeded
;
1161 DCCP_WARN("Bogus Confirm for non-existing value\n");
1162 goto confirmation_failed
;
1166 * Parsing SP Confirms: the first element of @val is the preferred
1167 * SP value which the peer confirms, the remainder depends on @len.
1168 * Note that only the confirmed value need to be a valid SP value.
1170 if (!dccp_feat_is_valid_sp_val(feat
, *val
))
1171 goto confirmation_failed
;
1173 if (len
== 1) { /* peer didn't supply a preference list */
1176 } else { /* preferred value + preference list */
1181 /* Check whether the peer got the reconciliation right (6.6.8) */
1182 if (dccp_feat_reconcile(&entry
->val
, plist
, plen
, server
, 0) != *val
) {
1183 DCCP_WARN("Confirm selected the wrong value %u\n", *val
);
1184 return DCCP_RESET_CODE_OPTION_ERROR
;
1186 entry
->val
.sp
.vec
[0] = *val
;
1188 confirmation_succeeded
:
1189 entry
->state
= FEAT_STABLE
;
1192 confirmation_failed
:
1193 DCCP_WARN("Confirmation failed\n");
1194 return is_mandatory
? DCCP_RESET_CODE_MANDATORY_ERROR
1195 : DCCP_RESET_CODE_OPTION_ERROR
;
1199 * dccp_feat_parse_options - Process Feature-Negotiation Options
1200 * @sk: for general use and used by the client during connection setup
1201 * @dreq: used by the server during connection setup
1202 * @mandatory: whether @opt was preceded by a Mandatory option
1203 * @opt: %DCCPO_CHANGE_L | %DCCPO_CHANGE_R | %DCCPO_CONFIRM_L | %DCCPO_CONFIRM_R
1204 * @feat: one of %dccp_feature_numbers
1205 * @val: value contents of @opt
1206 * @len: length of @val in bytes
1207 * Returns 0 on success, a Reset code for ending the connection otherwise.
1209 int dccp_feat_parse_options(struct sock
*sk
, struct dccp_request_sock
*dreq
,
1210 u8 mandatory
, u8 opt
, u8 feat
, u8
*val
, u8 len
)
1212 struct dccp_sock
*dp
= dccp_sk(sk
);
1213 struct list_head
*fn
= dreq
? &dreq
->dreq_featneg
: &dp
->dccps_featneg
;
1214 bool server
= false;
1216 switch (sk
->sk_state
) {
1218 * Negotiation during connection setup
1221 server
= true; /* fall through */
1222 case DCCP_REQUESTING
:
1224 case DCCPO_CHANGE_L
:
1225 case DCCPO_CHANGE_R
:
1226 return dccp_feat_change_recv(fn
, mandatory
, opt
, feat
,
1228 case DCCPO_CONFIRM_R
:
1229 case DCCPO_CONFIRM_L
:
1230 return dccp_feat_confirm_recv(fn
, mandatory
, opt
, feat
,
1234 return 0; /* ignore FN options in all other states */
1238 * dccp_feat_init - Seed feature negotiation with host-specific defaults
1239 * This initialises global defaults, depending on the value of the sysctls.
1240 * These can later be overridden by registering changes via setsockopt calls.
1241 * The last link in the chain is finalise_settings, to make sure that between
1242 * here and the start of actual feature negotiation no inconsistencies enter.
1244 * All features not appearing below use either defaults or are otherwise
1245 * later adjusted through dccp_feat_finalise_settings().
1247 int dccp_feat_init(struct sock
*sk
)
1249 struct list_head
*fn
= &dccp_sk(sk
)->dccps_featneg
;
1257 /* Non-negotiable (NN) features */
1258 rc
= __feat_register_nn(fn
, DCCPF_SEQUENCE_WINDOW
, 0,
1259 sysctl_dccp_sequence_window
);
1263 /* Server-priority (SP) features */
1265 /* Advertise that short seqnos are not supported (7.6.1) */
1266 rc
= __feat_register_sp(fn
, DCCPF_SHORT_SEQNOS
, true, true, &off
, 1);
1270 /* RFC 4340 12.1: "If a DCCP is not ECN capable, ..." */
1271 rc
= __feat_register_sp(fn
, DCCPF_ECN_INCAPABLE
, true, true, &on
, 1);
1276 * We advertise the available list of CCIDs and reorder according to
1277 * preferences, to avoid failure resulting from negotiating different
1278 * singleton values (which always leads to failure).
1279 * These settings can still (later) be overridden via sockopts.
1281 if (ccid_get_builtin_ccids(&tx
.val
, &tx
.len
) ||
1282 ccid_get_builtin_ccids(&rx
.val
, &rx
.len
))
1285 if (!dccp_feat_prefer(sysctl_dccp_tx_ccid
, tx
.val
, tx
.len
) ||
1286 !dccp_feat_prefer(sysctl_dccp_rx_ccid
, rx
.val
, rx
.len
))
1287 goto free_ccid_lists
;
1289 rc
= __feat_register_sp(fn
, DCCPF_CCID
, true, false, tx
.val
, tx
.len
);
1291 goto free_ccid_lists
;
1293 rc
= __feat_register_sp(fn
, DCCPF_CCID
, false, false, rx
.val
, rx
.len
);
1301 int dccp_feat_activate_values(struct sock
*sk
, struct list_head
*fn_list
)
1303 struct dccp_sock
*dp
= dccp_sk(sk
);
1304 struct dccp_feat_entry
*cur
, *next
;
1306 dccp_feat_val
*fvals
[DCCP_FEAT_SUPPORTED_MAX
][2] = {
1307 [0 ... DCCP_FEAT_SUPPORTED_MAX
-1] = { NULL
, NULL
}
1310 list_for_each_entry(cur
, fn_list
, node
) {
1312 * An empty Confirm means that either an unknown feature type
1313 * or an invalid value was present. In the first case there is
1314 * nothing to activate, in the other the default value is used.
1316 if (cur
->empty_confirm
)
1319 idx
= dccp_feat_index(cur
->feat_num
);
1321 DCCP_BUG("Unknown feature %u", cur
->feat_num
);
1322 goto activation_failed
;
1324 if (cur
->state
!= FEAT_STABLE
) {
1325 DCCP_CRIT("Negotiation of %s %s failed in state %s",
1326 cur
->is_local
? "local" : "remote",
1327 dccp_feat_fname(cur
->feat_num
),
1328 dccp_feat_sname
[cur
->state
]);
1329 goto activation_failed
;
1331 fvals
[idx
][cur
->is_local
] = &cur
->val
;
1335 * Activate in decreasing order of index, so that the CCIDs are always
1336 * activated as the last feature. This avoids the case where a CCID
1337 * relies on the initialisation of one or more features that it depends
1338 * on (e.g. Send NDP Count, Send Ack Vector, and Ack Ratio features).
1340 for (idx
= DCCP_FEAT_SUPPORTED_MAX
; --idx
>= 0;)
1341 if (__dccp_feat_activate(sk
, idx
, 0, fvals
[idx
][0]) ||
1342 __dccp_feat_activate(sk
, idx
, 1, fvals
[idx
][1])) {
1343 DCCP_CRIT("Could not activate %d", idx
);
1344 goto activation_failed
;
1347 /* Clean up Change options which have been confirmed already */
1348 list_for_each_entry_safe(cur
, next
, fn_list
, node
)
1349 if (!cur
->needs_confirm
)
1350 dccp_feat_list_pop(cur
);
1352 dccp_pr_debug("Activation OK\n");
1357 * We clean up everything that may have been allocated, since
1358 * it is difficult to track at which stage negotiation failed.
1359 * This is ok, since all allocation functions below are robust
1360 * against NULL arguments.
1362 ccid_hc_rx_delete(dp
->dccps_hc_rx_ccid
, sk
);
1363 ccid_hc_tx_delete(dp
->dccps_hc_tx_ccid
, sk
);
1364 dp
->dccps_hc_rx_ccid
= dp
->dccps_hc_tx_ccid
= NULL
;
1365 dccp_ackvec_free(dp
->dccps_hc_rx_ackvec
);
1366 dp
->dccps_hc_rx_ackvec
= NULL
;