4 * An implementation of the DCCP protocol
5 * Andrea Bittau <a.bittau@cs.ucl.ac.uk>
9 * o Feature negotiation is coordinated with connection setup (as in TCP), wild
10 * changes of parameters of an established connection are not supported.
11 * o All currently known SP features have 1-byte quantities. If in the future
12 * extensions of RFCs 4340..42 define features with item lengths larger than
13 * one byte, a feature-specific extension of the code will be required.
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version
18 * 2 of the License, or (at your option) any later version.
21 #include <linux/module.h>
26 #define DCCP_FEAT_SP_NOAGREE (-123)
29 * Feature activation handlers.
31 * These all use an u64 argument, to provide enough room for NN/SP features. At
32 * this stage the negotiated values have been checked to be within their range.
34 static int dccp_hdlr_ccid(struct sock *sk, u64 ccid, bool rx)
36 struct dccp_sock *dp = dccp_sk(sk);
37 struct ccid *new_ccid = ccid_new(ccid, sk, rx, gfp_any());
43 ccid_hc_rx_delete(dp->dccps_hc_rx_ccid, sk);
44 dp->dccps_hc_rx_ccid = new_ccid;
46 ccid_hc_tx_delete(dp->dccps_hc_tx_ccid, sk);
47 dp->dccps_hc_tx_ccid = new_ccid;
52 static int dccp_hdlr_seq_win(struct sock *sk, u64 seq_win, bool rx)
55 dccp_msk(sk)->dccpms_sequence_window = seq_win;
59 static int dccp_hdlr_ack_ratio(struct sock *sk, u64 ratio, bool rx)
62 dccp_sk(sk)->dccps_r_ack_ratio = ratio;
64 dccp_sk(sk)->dccps_l_ack_ratio = ratio;
68 static int dccp_hdlr_ackvec(struct sock *sk, u64 enable, bool rx)
70 struct dccp_sock *dp = dccp_sk(sk);
73 if (enable && dp->dccps_hc_rx_ackvec == NULL) {
74 dp->dccps_hc_rx_ackvec = dccp_ackvec_alloc(gfp_any());
75 if (dp->dccps_hc_rx_ackvec == NULL)
78 dccp_ackvec_free(dp->dccps_hc_rx_ackvec);
79 dp->dccps_hc_rx_ackvec = NULL;
85 static int dccp_hdlr_ndp(struct sock *sk, u64 enable, bool rx)
88 dccp_msk(sk)->dccpms_send_ndp_count = (enable > 0);
93 * Minimum Checksum Coverage is located at the RX side (9.2.1). This means that
94 * `rx' holds when the sending peer informs about his partial coverage via a
95 * ChangeR() option. In the other case, we are the sender and the receiver
96 * announces its coverage via ChangeL() options. The policy here is to honour
97 * such communication by enabling the corresponding partial coverage - but only
98 * if it has not been set manually before; the warning here means that all
99 * packets will be dropped.
101 static int dccp_hdlr_min_cscov(struct sock *sk, u64 cscov, bool rx)
103 struct dccp_sock *dp = dccp_sk(sk);
106 dp->dccps_pcrlen = cscov;
108 if (dp->dccps_pcslen == 0)
109 dp->dccps_pcslen = cscov;
110 else if (cscov > dp->dccps_pcslen)
111 DCCP_WARN("CsCov %u too small, peer requires >= %u\n",
112 dp->dccps_pcslen, (u8)cscov);
117 static const struct {
118 u8 feat_num; /* DCCPF_xxx */
119 enum dccp_feat_type rxtx; /* RX or TX */
120 enum dccp_feat_type reconciliation; /* SP or NN */
121 u8 default_value; /* as in 6.4 */
122 int (*activation_hdlr)(struct sock *sk, u64 val, bool rx);
124 * Lookup table for location and type of features (from RFC 4340/4342)
125 * +--------------------------+----+-----+----+----+---------+-----------+
126 * | Feature | Location | Reconc. | Initial | Section |
127 * | | RX | TX | SP | NN | Value | Reference |
128 * +--------------------------+----+-----+----+----+---------+-----------+
129 * | DCCPF_CCID | | X | X | | 2 | 10 |
130 * | DCCPF_SHORT_SEQNOS | | X | X | | 0 | 7.6.1 |
131 * | DCCPF_SEQUENCE_WINDOW | | X | | X | 100 | 7.5.2 |
132 * | DCCPF_ECN_INCAPABLE | X | | X | | 0 | 12.1 |
133 * | DCCPF_ACK_RATIO | | X | | X | 2 | 11.3 |
134 * | DCCPF_SEND_ACK_VECTOR | X | | X | | 0 | 11.5 |
135 * | DCCPF_SEND_NDP_COUNT | | X | X | | 0 | 7.7.2 |
136 * | DCCPF_MIN_CSUM_COVER | X | | X | | 0 | 9.2.1 |
137 * | DCCPF_DATA_CHECKSUM | X | | X | | 0 | 9.3.1 |
138 * | DCCPF_SEND_LEV_RATE | X | | X | | 0 | 4342/8.4 |
139 * +--------------------------+----+-----+----+----+---------+-----------+
141 } dccp_feat_table[] = {
142 { DCCPF_CCID, FEAT_AT_TX, FEAT_SP, 2, dccp_hdlr_ccid },
143 { DCCPF_SHORT_SEQNOS, FEAT_AT_TX, FEAT_SP, 0, NULL },
144 { DCCPF_SEQUENCE_WINDOW, FEAT_AT_TX, FEAT_NN, 100, dccp_hdlr_seq_win },
145 { DCCPF_ECN_INCAPABLE, FEAT_AT_RX, FEAT_SP, 0, NULL },
146 { DCCPF_ACK_RATIO, FEAT_AT_TX, FEAT_NN, 2, dccp_hdlr_ack_ratio},
147 { DCCPF_SEND_ACK_VECTOR, FEAT_AT_RX, FEAT_SP, 0, dccp_hdlr_ackvec },
148 { DCCPF_SEND_NDP_COUNT, FEAT_AT_TX, FEAT_SP, 0, dccp_hdlr_ndp },
149 { DCCPF_MIN_CSUM_COVER, FEAT_AT_RX, FEAT_SP, 0, dccp_hdlr_min_cscov},
150 { DCCPF_DATA_CHECKSUM, FEAT_AT_RX, FEAT_SP, 0, NULL },
151 { DCCPF_SEND_LEV_RATE, FEAT_AT_RX, FEAT_SP, 0, NULL },
153 #define DCCP_FEAT_SUPPORTED_MAX ARRAY_SIZE(dccp_feat_table)
156 * dccp_feat_index - Hash function to map feature number into array position
157 * Returns consecutive array index or -1 if the feature is not understood.
159 static int dccp_feat_index(u8 feat_num)
161 /* The first 9 entries are occupied by the types from RFC 4340, 6.4 */
162 if (feat_num > DCCPF_RESERVED && feat_num <= DCCPF_DATA_CHECKSUM)
166 * Other features: add cases for new feature types here after adding
167 * them to the above table.
170 case DCCPF_SEND_LEV_RATE:
171 return DCCP_FEAT_SUPPORTED_MAX - 1;
176 static u8 dccp_feat_type(u8 feat_num)
178 int idx = dccp_feat_index(feat_num);
182 return dccp_feat_table[idx].reconciliation;
185 static int dccp_feat_default_value(u8 feat_num)
187 int idx = dccp_feat_index(feat_num);
189 * There are no default values for unknown features, so encountering a
190 * negative index here indicates a serious problem somewhere else.
192 DCCP_BUG_ON(idx < 0);
194 return idx < 0 ? 0 : dccp_feat_table[idx].default_value;
197 static int __dccp_feat_activate(struct sock *sk, const int idx,
198 const bool is_local, dccp_feat_val const *fval)
203 if (idx < 0 || idx >= DCCP_FEAT_SUPPORTED_MAX)
205 if (dccp_feat_table[idx].activation_hdlr == NULL)
209 val = dccp_feat_table[idx].default_value;
210 } else if (dccp_feat_table[idx].reconciliation == FEAT_SP) {
211 if (fval->sp.vec == NULL) {
213 * This can happen when an empty Confirm is sent
214 * for an SP (i.e. known) feature. In this case
215 * we would be using the default anyway.
217 DCCP_CRIT("Feature #%d undefined: using default", idx);
218 val = dccp_feat_table[idx].default_value;
220 val = fval->sp.vec[0];
226 /* Location is RX if this is a local-RX or remote-TX feature */
227 rx = (is_local == (dccp_feat_table[idx].rxtx == FEAT_AT_RX));
229 return dccp_feat_table[idx].activation_hdlr(sk, val, rx);
232 /* Test for "Req'd" feature (RFC 4340, 6.4) */
233 static inline int dccp_feat_must_be_understood(u8 feat_num)
235 return feat_num == DCCPF_CCID || feat_num == DCCPF_SHORT_SEQNOS ||
236 feat_num == DCCPF_SEQUENCE_WINDOW;
239 /* copy constructor, fval must not already contain allocated memory */
240 static int dccp_feat_clone_sp_val(dccp_feat_val *fval, u8 const *val, u8 len)
243 if (fval->sp.len > 0) {
244 fval->sp.vec = kmemdup(val, len, gfp_any());
245 if (fval->sp.vec == NULL) {
253 static void dccp_feat_val_destructor(u8 feat_num, dccp_feat_val *val)
255 if (unlikely(val == NULL))
257 if (dccp_feat_type(feat_num) == FEAT_SP)
259 memset(val, 0, sizeof(*val));
262 static struct dccp_feat_entry *
263 dccp_feat_clone_entry(struct dccp_feat_entry const *original)
265 struct dccp_feat_entry *new;
266 u8 type = dccp_feat_type(original->feat_num);
268 if (type == FEAT_UNKNOWN)
271 new = kmemdup(original, sizeof(struct dccp_feat_entry), gfp_any());
275 if (type == FEAT_SP && dccp_feat_clone_sp_val(&new->val,
276 original->val.sp.vec,
277 original->val.sp.len)) {
284 static void dccp_feat_entry_destructor(struct dccp_feat_entry *entry)
287 dccp_feat_val_destructor(entry->feat_num, &entry->val);
293 * List management functions
295 * Feature negotiation lists rely on and maintain the following invariants:
296 * - each feat_num in the list is known, i.e. we know its type and default value
297 * - each feat_num/is_local combination is unique (old entries are overwritten)
298 * - SP values are always freshly allocated
299 * - list is sorted in increasing order of feature number (faster lookup)
301 static struct dccp_feat_entry *dccp_feat_list_lookup(struct list_head *fn_list,
302 u8 feat_num, bool is_local)
304 struct dccp_feat_entry *entry;
306 list_for_each_entry(entry, fn_list, node) {
307 if (entry->feat_num == feat_num && entry->is_local == is_local)
309 else if (entry->feat_num > feat_num)
316 * dccp_feat_entry_new - Central list update routine (called by all others)
317 * @head: list to add to
318 * @feat: feature number
319 * @local: whether the local (1) or remote feature with number @feat is meant
320 * This is the only constructor and serves to ensure the above invariants.
322 static struct dccp_feat_entry *
323 dccp_feat_entry_new(struct list_head *head, u8 feat, bool local)
325 struct dccp_feat_entry *entry;
327 list_for_each_entry(entry, head, node)
328 if (entry->feat_num == feat && entry->is_local == local) {
329 dccp_feat_val_destructor(entry->feat_num, &entry->val);
331 } else if (entry->feat_num > feat) {
336 entry = kmalloc(sizeof(*entry), gfp_any());
338 entry->feat_num = feat;
339 entry->is_local = local;
340 list_add_tail(&entry->node, head);
346 * dccp_feat_push_change - Add/overwrite a Change option in the list
347 * @fn_list: feature-negotiation list to update
348 * @feat: one of %dccp_feature_numbers
349 * @local: whether local (1) or remote (0) @feat_num is meant
350 * @needs_mandatory: whether to use Mandatory feature negotiation options
351 * @fval: pointer to NN/SP value to be inserted (will be copied)
353 static int dccp_feat_push_change(struct list_head *fn_list, u8 feat, u8 local,
354 u8 mandatory, dccp_feat_val *fval)
356 struct dccp_feat_entry *new = dccp_feat_entry_new(fn_list, feat, local);
361 new->feat_num = feat;
362 new->is_local = local;
363 new->state = FEAT_INITIALISING;
364 new->needs_confirm = 0;
365 new->empty_confirm = 0;
367 new->needs_mandatory = mandatory;
373 * dccp_feat_push_confirm - Add a Confirm entry to the FN list
374 * @fn_list: feature-negotiation list to add to
375 * @feat: one of %dccp_feature_numbers
376 * @local: whether local (1) or remote (0) @feat_num is being confirmed
377 * @fval: pointer to NN/SP value to be inserted or NULL
378 * Returns 0 on success, a Reset code for further processing otherwise.
380 static int dccp_feat_push_confirm(struct list_head *fn_list, u8 feat, u8 local,
383 struct dccp_feat_entry *new = dccp_feat_entry_new(fn_list, feat, local);
386 return DCCP_RESET_CODE_TOO_BUSY;
388 new->feat_num = feat;
389 new->is_local = local;
390 new->state = FEAT_STABLE; /* transition in 6.6.2 */
391 new->needs_confirm = 1;
392 new->empty_confirm = (fval == NULL);
393 new->val.nn = 0; /* zeroes the whole structure */
394 if (!new->empty_confirm)
396 new->needs_mandatory = 0;
401 static int dccp_push_empty_confirm(struct list_head *fn_list, u8 feat, u8 local)
403 return dccp_feat_push_confirm(fn_list, feat, local, NULL);
406 static inline void dccp_feat_list_pop(struct dccp_feat_entry *entry)
408 list_del(&entry->node);
409 dccp_feat_entry_destructor(entry);
412 void dccp_feat_list_purge(struct list_head *fn_list)
414 struct dccp_feat_entry *entry, *next;
416 list_for_each_entry_safe(entry, next, fn_list, node)
417 dccp_feat_entry_destructor(entry);
418 INIT_LIST_HEAD(fn_list);
420 EXPORT_SYMBOL_GPL(dccp_feat_list_purge);
422 /* generate @to as full clone of @from - @to must not contain any nodes */
423 int dccp_feat_clone_list(struct list_head const *from, struct list_head *to)
425 struct dccp_feat_entry *entry, *new;
428 list_for_each_entry(entry, from, node) {
429 new = dccp_feat_clone_entry(entry);
432 list_add_tail(&new->node, to);
437 dccp_feat_list_purge(to);
442 * dccp_feat_valid_nn_length - Enforce length constraints on NN options
443 * Length is between 0 and %DCCP_OPTVAL_MAXLEN. Used for outgoing packets only,
444 * incoming options are accepted as long as their values are valid.
446 static u8 dccp_feat_valid_nn_length(u8 feat_num)
448 if (feat_num == DCCPF_ACK_RATIO) /* RFC 4340, 11.3 and 6.6.8 */
450 if (feat_num == DCCPF_SEQUENCE_WINDOW) /* RFC 4340, 7.5.2 and 6.5 */
455 static u8 dccp_feat_is_valid_nn_val(u8 feat_num, u64 val)
458 case DCCPF_ACK_RATIO:
459 return val <= DCCPF_ACK_RATIO_MAX;
460 case DCCPF_SEQUENCE_WINDOW:
461 return val >= DCCPF_SEQ_WMIN && val <= DCCPF_SEQ_WMAX;
463 return 0; /* feature unknown - so we can't tell */
466 /* check that SP values are within the ranges defined in RFC 4340 */
467 static u8 dccp_feat_is_valid_sp_val(u8 feat_num, u8 val)
471 return val == DCCPC_CCID2 || val == DCCPC_CCID3;
472 /* Type-check Boolean feature values: */
473 case DCCPF_SHORT_SEQNOS:
474 case DCCPF_ECN_INCAPABLE:
475 case DCCPF_SEND_ACK_VECTOR:
476 case DCCPF_SEND_NDP_COUNT:
477 case DCCPF_DATA_CHECKSUM:
478 case DCCPF_SEND_LEV_RATE:
480 case DCCPF_MIN_CSUM_COVER:
483 return 0; /* feature unknown */
486 static u8 dccp_feat_sp_list_ok(u8 feat_num, u8 const *sp_list, u8 sp_len)
488 if (sp_list == NULL || sp_len < 1)
491 if (!dccp_feat_is_valid_sp_val(feat_num, *sp_list++))
497 * dccp_feat_insert_opts - Generate FN options from current list state
498 * @skb: next sk_buff to be sent to the peer
499 * @dp: for client during handshake and general negotiation
500 * @dreq: used by the server only (all Changes/Confirms in LISTEN/RESPOND)
502 int dccp_feat_insert_opts(struct dccp_sock *dp, struct dccp_request_sock *dreq,
505 struct list_head *fn = dreq ? &dreq->dreq_featneg : &dp->dccps_featneg;
506 struct dccp_feat_entry *pos, *next;
507 u8 opt, type, len, *ptr, nn_in_nbo[DCCP_OPTVAL_MAXLEN];
510 /* put entries into @skb in the order they appear in the list */
511 list_for_each_entry_safe_reverse(pos, next, fn, node) {
512 opt = dccp_feat_genopt(pos);
513 type = dccp_feat_type(pos->feat_num);
516 if (pos->empty_confirm) {
520 if (type == FEAT_SP) {
521 len = pos->val.sp.len;
522 ptr = pos->val.sp.vec;
523 rpt = pos->needs_confirm;
524 } else if (type == FEAT_NN) {
525 len = dccp_feat_valid_nn_length(pos->feat_num);
527 dccp_encode_value_var(pos->val.nn, ptr, len);
529 DCCP_BUG("unknown feature %u", pos->feat_num);
534 if (dccp_insert_fn_opt(skb, opt, pos->feat_num, ptr, len, rpt))
536 if (pos->needs_mandatory && dccp_insert_option_mandatory(skb))
539 * Enter CHANGING after transmitting the Change option (6.6.2).
541 if (pos->state == FEAT_INITIALISING)
542 pos->state = FEAT_CHANGING;
548 * __feat_register_nn - Register new NN value on socket
549 * @fn: feature-negotiation list to register with
550 * @feat: an NN feature from %dccp_feature_numbers
551 * @mandatory: use Mandatory option if 1
552 * @nn_val: value to register (restricted to 4 bytes)
553 * Note that NN features are local by definition (RFC 4340, 6.3.2).
555 static int __feat_register_nn(struct list_head *fn, u8 feat,
556 u8 mandatory, u64 nn_val)
558 dccp_feat_val fval = { .nn = nn_val };
560 if (dccp_feat_type(feat) != FEAT_NN ||
561 !dccp_feat_is_valid_nn_val(feat, nn_val))
564 /* Don't bother with default values, they will be activated anyway. */
565 if (nn_val - (u64)dccp_feat_default_value(feat) == 0)
568 return dccp_feat_push_change(fn, feat, 1, mandatory, &fval);
572 * __feat_register_sp - Register new SP value/list on socket
573 * @fn: feature-negotiation list to register with
574 * @feat: an SP feature from %dccp_feature_numbers
575 * @is_local: whether the local (1) or the remote (0) @feat is meant
576 * @mandatory: use Mandatory option if 1
577 * @sp_val: SP value followed by optional preference list
578 * @sp_len: length of @sp_val in bytes
580 static int __feat_register_sp(struct list_head *fn, u8 feat, u8 is_local,
581 u8 mandatory, u8 const *sp_val, u8 sp_len)
585 if (dccp_feat_type(feat) != FEAT_SP ||
586 !dccp_feat_sp_list_ok(feat, sp_val, sp_len))
589 /* Avoid negotiating alien CCIDs by only advertising supported ones */
590 if (feat == DCCPF_CCID && !ccid_support_check(sp_val, sp_len))
593 if (dccp_feat_clone_sp_val(&fval, sp_val, sp_len))
596 return dccp_feat_push_change(fn, feat, is_local, mandatory, &fval);
600 * dccp_feat_register_sp - Register requests to change SP feature values
601 * @sk: client or listening socket
602 * @feat: one of %dccp_feature_numbers
603 * @is_local: whether the local (1) or remote (0) @feat is meant
604 * @list: array of preferred values, in descending order of preference
605 * @len: length of @list in bytes
607 int dccp_feat_register_sp(struct sock *sk, u8 feat, u8 is_local,
608 u8 const *list, u8 len)
609 { /* any changes must be registered before establishing the connection */
610 if (sk->sk_state != DCCP_CLOSED)
612 if (dccp_feat_type(feat) != FEAT_SP)
614 return __feat_register_sp(&dccp_sk(sk)->dccps_featneg, feat, is_local,
618 /* Analogous to dccp_feat_register_sp(), but for non-negotiable values */
619 int dccp_feat_register_nn(struct sock *sk, u8 feat, u64 val)
621 /* any changes must be registered before establishing the connection */
622 if (sk->sk_state != DCCP_CLOSED)
624 if (dccp_feat_type(feat) != FEAT_NN)
626 return __feat_register_nn(&dccp_sk(sk)->dccps_featneg, feat, 0, val);
630 * Tracking features whose value depend on the choice of CCID
632 * This is designed with an extension in mind so that a list walk could be done
633 * before activating any features. However, the existing framework was found to
634 * work satisfactorily up until now, the automatic verification is left open.
635 * When adding new CCIDs, add a corresponding dependency table here.
637 static const struct ccid_dependency *dccp_feat_ccid_deps(u8 ccid, bool is_local)
639 static const struct ccid_dependency ccid2_dependencies[2][2] = {
641 * CCID2 mandates Ack Vectors (RFC 4341, 4.): as CCID is a TX
642 * feature and Send Ack Vector is an RX feature, `is_local'
643 * needs to be reversed.
645 { /* Dependencies of the receiver-side (remote) CCID2 */
647 .dependent_feat = DCCPF_SEND_ACK_VECTOR,
649 .is_mandatory = true,
654 { /* Dependencies of the sender-side (local) CCID2 */
656 .dependent_feat = DCCPF_SEND_ACK_VECTOR,
658 .is_mandatory = true,
664 static const struct ccid_dependency ccid3_dependencies[2][5] = {
666 * Dependencies of the receiver-side CCID3
668 { /* locally disable Ack Vectors */
669 .dependent_feat = DCCPF_SEND_ACK_VECTOR,
671 .is_mandatory = false,
674 { /* see below why Send Loss Event Rate is on */
675 .dependent_feat = DCCPF_SEND_LEV_RATE,
677 .is_mandatory = true,
680 { /* NDP Count is needed as per RFC 4342, 6.1.1 */
681 .dependent_feat = DCCPF_SEND_NDP_COUNT,
683 .is_mandatory = true,
689 * CCID3 at the TX side: we request that the HC-receiver
690 * will not send Ack Vectors (they will be ignored, so
691 * Mandatory is not set); we enable Send Loss Event Rate
692 * (Mandatory since the implementation does not support
693 * the Loss Intervals option of RFC 4342, 8.6).
694 * The last two options are for peer's information only.
697 .dependent_feat = DCCPF_SEND_ACK_VECTOR,
699 .is_mandatory = false,
703 .dependent_feat = DCCPF_SEND_LEV_RATE,
705 .is_mandatory = true,
708 { /* this CCID does not support Ack Ratio */
709 .dependent_feat = DCCPF_ACK_RATIO,
711 .is_mandatory = false,
714 { /* tell receiver we are sending NDP counts */
715 .dependent_feat = DCCPF_SEND_NDP_COUNT,
717 .is_mandatory = false,
725 return ccid2_dependencies[is_local];
727 return ccid3_dependencies[is_local];
734 * dccp_feat_propagate_ccid - Resolve dependencies of features on choice of CCID
735 * @fn: feature-negotiation list to update
736 * @id: CCID number to track
737 * @is_local: whether TX CCID (1) or RX CCID (0) is meant
738 * This function needs to be called after registering all other features.
740 static int dccp_feat_propagate_ccid(struct list_head *fn, u8 id, bool is_local)
742 const struct ccid_dependency *table = dccp_feat_ccid_deps(id, is_local);
743 int i, rc = (table == NULL);
745 for (i = 0; rc == 0 && table[i].dependent_feat != DCCPF_RESERVED; i++)
746 if (dccp_feat_type(table[i].dependent_feat) == FEAT_SP)
747 rc = __feat_register_sp(fn, table[i].dependent_feat,
749 table[i].is_mandatory,
752 rc = __feat_register_nn(fn, table[i].dependent_feat,
753 table[i].is_mandatory,
759 * dccp_feat_finalise_settings - Finalise settings before starting negotiation
760 * @dp: client or listening socket (settings will be inherited)
761 * This is called after all registrations (socket initialisation, sysctls, and
762 * sockopt calls), and before sending the first packet containing Change options
763 * (ie. client-Request or server-Response), to ensure internal consistency.
765 int dccp_feat_finalise_settings(struct dccp_sock *dp)
767 struct list_head *fn = &dp->dccps_featneg;
768 struct dccp_feat_entry *entry;
769 int i = 2, ccids[2] = { -1, -1 };
773 * 1) not useful to propagate CCID settings if this host advertises more
774 * than one CCID: the choice of CCID may still change - if this is
775 * the client, or if this is the server and the client sends
776 * singleton CCID values.
777 * 2) since is that propagate_ccid changes the list, we defer changing
778 * the sorted list until after the traversal.
780 list_for_each_entry(entry, fn, node)
781 if (entry->feat_num == DCCPF_CCID && entry->val.sp.len == 1)
782 ccids[entry->is_local] = entry->val.sp.vec[0];
784 if (ccids[i] > 0 && dccp_feat_propagate_ccid(fn, ccids[i], i))
790 * dccp_feat_server_ccid_dependencies - Resolve CCID-dependent features
791 * It is the server which resolves the dependencies once the CCID has been
792 * fully negotiated. If no CCID has been negotiated, it uses the default CCID.
794 int dccp_feat_server_ccid_dependencies(struct dccp_request_sock *dreq)
796 struct list_head *fn = &dreq->dreq_featneg;
797 struct dccp_feat_entry *entry;
800 for (is_local = 0; is_local <= 1; is_local++) {
801 entry = dccp_feat_list_lookup(fn, DCCPF_CCID, is_local);
803 if (entry != NULL && !entry->empty_confirm)
804 ccid = entry->val.sp.vec[0];
806 ccid = dccp_feat_default_value(DCCPF_CCID);
808 if (dccp_feat_propagate_ccid(fn, ccid, is_local))
814 static int dccp_feat_update_ccid(struct sock *sk, u8 type, u8 new_ccid_nr)
816 struct dccp_sock *dp = dccp_sk(sk);
817 struct dccp_minisock *dmsk = dccp_msk(sk);
818 /* figure out if we are changing our CCID or the peer's */
819 const int rx = type == DCCPO_CHANGE_R;
820 const u8 ccid_nr = rx ? dmsk->dccpms_rx_ccid : dmsk->dccpms_tx_ccid;
821 struct ccid *new_ccid;
823 /* Check if nothing is being changed. */
824 if (ccid_nr == new_ccid_nr)
827 new_ccid = ccid_new(new_ccid_nr, sk, rx, GFP_ATOMIC);
828 if (new_ccid == NULL)
832 ccid_hc_rx_delete(dp->dccps_hc_rx_ccid, sk);
833 dp->dccps_hc_rx_ccid = new_ccid;
834 dmsk->dccpms_rx_ccid = new_ccid_nr;
836 ccid_hc_tx_delete(dp->dccps_hc_tx_ccid, sk);
837 dp->dccps_hc_tx_ccid = new_ccid;
838 dmsk->dccpms_tx_ccid = new_ccid_nr;
844 static int dccp_feat_update(struct sock *sk, u8 type, u8 feat, u8 val)
846 dccp_feat_debug(type, feat, val);
850 return dccp_feat_update_ccid(sk, type, val);
852 dccp_pr_debug("UNIMPLEMENTED: %s(%d, ...)\n",
853 dccp_feat_typename(type), feat);
859 /* Select the first entry in @servlist that also occurs in @clilist (6.3.1) */
860 static int dccp_feat_preflist_match(u8 *servlist, u8 slen, u8 *clilist, u8 clen)
864 for (s = 0; s < slen; s++)
865 for (c = 0; c < clen; c++)
866 if (servlist[s] == clilist[c])
872 * dccp_feat_prefer - Move preferred entry to the start of array
873 * Reorder the @array_len elements in @array so that @preferred_value comes
874 * first. Returns >0 to indicate that @preferred_value does occur in @array.
876 static u8 dccp_feat_prefer(u8 preferred_value, u8 *array, u8 array_len)
878 u8 i, does_occur = 0;
881 for (i = 0; i < array_len; i++)
882 if (array[i] == preferred_value) {
887 array[0] = preferred_value;
893 * dccp_feat_reconcile - Reconcile SP preference lists
894 * @fval: SP list to reconcile into
895 * @arr: received SP preference list
896 * @len: length of @arr in bytes
897 * @is_server: whether this side is the server (and @fv is the server's list)
898 * @reorder: whether to reorder the list in @fv after reconciling with @arr
899 * When successful, > 0 is returned and the reconciled list is in @fval.
900 * A value of 0 means that negotiation failed (no shared entry).
902 static int dccp_feat_reconcile(dccp_feat_val *fv, u8 *arr, u8 len,
903 bool is_server, bool reorder)
907 if (!fv->sp.vec || !arr) {
908 DCCP_CRIT("NULL feature value or array");
913 rc = dccp_feat_preflist_match(fv->sp.vec, fv->sp.len, arr, len);
915 rc = dccp_feat_preflist_match(arr, len, fv->sp.vec, fv->sp.len);
923 * Reorder list: used for activating features and in dccp_insert_fn_opt.
925 return dccp_feat_prefer(rc, fv->sp.vec, fv->sp.len);
928 #ifdef __this_is_the_old_framework_and_will_be_removed_later_in_a_subsequent_patch
929 static int dccp_feat_reconcile(struct sock *sk, struct dccp_opt_pend *opt,
932 struct dccp_sock *dp = dccp_sk(sk);
933 u8 *spref, slen, *res = NULL;
934 int i, j, rc, agree = 1;
936 BUG_ON(rpref == NULL);
938 /* check if we are the black sheep */
939 if (dp->dccps_role == DCCP_ROLE_CLIENT) {
942 rpref = opt->dccpop_val;
943 rlen = opt->dccpop_len;
945 spref = opt->dccpop_val;
946 slen = opt->dccpop_len;
949 * Now we have server preference list in spref and client preference in
952 BUG_ON(spref == NULL);
953 BUG_ON(rpref == NULL);
955 /* FIXME sanity check vals */
957 /* Are values in any order? XXX Lame "algorithm" here */
958 for (i = 0; i < slen; i++) {
959 for (j = 0; j < rlen; j++) {
960 if (spref[i] == rpref[j]) {
969 /* we didn't agree on anything */
971 /* confirm previous value */
972 switch (opt->dccpop_feat) {
974 /* XXX did i get this right? =P */
975 if (opt->dccpop_type == DCCPO_CHANGE_L)
976 res = &dccp_msk(sk)->dccpms_tx_ccid;
978 res = &dccp_msk(sk)->dccpms_rx_ccid;
982 DCCP_BUG("Fell through, feat=%d", opt->dccpop_feat);
983 /* XXX implement res */
987 dccp_pr_debug("Don't agree... reconfirming %d\n", *res);
988 agree = 0; /* this is used for mandatory options... */
991 /* need to put result and our preference list */
992 rlen = 1 + opt->dccpop_len;
993 rpref = kmalloc(rlen, GFP_ATOMIC);
998 memcpy(&rpref[1], opt->dccpop_val, opt->dccpop_len);
1000 /* put it in the "confirm queue" */
1001 if (opt->dccpop_sc == NULL) {
1002 opt->dccpop_sc = kmalloc(sizeof(*opt->dccpop_sc), GFP_ATOMIC);
1003 if (opt->dccpop_sc == NULL) {
1008 /* recycle the confirm slot */
1009 BUG_ON(opt->dccpop_sc->dccpoc_val == NULL);
1010 kfree(opt->dccpop_sc->dccpoc_val);
1011 dccp_pr_debug("recycling confirm slot\n");
1013 memset(opt->dccpop_sc, 0, sizeof(*opt->dccpop_sc));
1015 opt->dccpop_sc->dccpoc_val = rpref;
1016 opt->dccpop_sc->dccpoc_len = rlen;
1018 /* update the option on our side [we are about to send the confirm] */
1019 rc = dccp_feat_update(sk, opt->dccpop_type, opt->dccpop_feat, *res);
1021 kfree(opt->dccpop_sc->dccpoc_val);
1022 kfree(opt->dccpop_sc);
1023 opt->dccpop_sc = NULL;
1027 dccp_pr_debug("Will confirm %d\n", *rpref);
1029 /* say we want to change to X but we just got a confirm X, suppress our
1032 if (!opt->dccpop_conf) {
1033 if (*opt->dccpop_val == *res)
1034 opt->dccpop_conf = 1;
1035 dccp_pr_debug("won't ask for change of same feature\n");
1038 return agree ? 0 : DCCP_FEAT_SP_NOAGREE; /* used for mandatory opts */
1041 static int dccp_feat_sp(struct sock *sk, u8 type, u8 feature, u8 *val, u8 len)
1043 struct dccp_minisock *dmsk = dccp_msk(sk);
1044 struct dccp_opt_pend *opt;
1049 * We received a CHANGE. We gotta match it against our own preference
1050 * list. If we got a CHANGE_R it means it's a change for us, so we need
1051 * to compare our CHANGE_L list.
1053 if (type == DCCPO_CHANGE_L)
1058 /* find our preference list for this feature */
1059 list_for_each_entry(opt, &dmsk->dccpms_pending, dccpop_node) {
1060 if (opt->dccpop_type != t || opt->dccpop_feat != feature)
1063 /* find the winner from the two preference lists */
1064 rc = dccp_feat_reconcile(sk, opt, val, len);
1068 /* We didn't deal with the change. This can happen if we have no
1069 * preference list for the feature. In fact, it just shouldn't
1070 * happen---if we understand a feature, we should have a preference list
1071 * with at least the default value.
1078 static int dccp_feat_nn(struct sock *sk, u8 type, u8 feature, u8 *val, u8 len)
1080 struct dccp_opt_pend *opt;
1081 struct dccp_minisock *dmsk = dccp_msk(sk);
1085 /* NN features must be Change L (sec. 6.3.2) */
1086 if (type != DCCPO_CHANGE_L) {
1087 dccp_pr_debug("received %s for NN feature %d\n",
1088 dccp_feat_typename(type), feature);
1092 /* XXX sanity check opt val */
1094 /* copy option so we can confirm it */
1095 opt = kzalloc(sizeof(*opt), GFP_ATOMIC);
1099 copy = kmemdup(val, len, GFP_ATOMIC);
1105 opt->dccpop_type = DCCPO_CONFIRM_R; /* NN can only confirm R */
1106 opt->dccpop_feat = feature;
1107 opt->dccpop_val = copy;
1108 opt->dccpop_len = len;
1110 /* change feature */
1111 rc = dccp_feat_update(sk, type, feature, *val);
1113 kfree(opt->dccpop_val);
1118 dccp_feat_debug(type, feature, *copy);
1120 list_add_tail(&opt->dccpop_node, &dmsk->dccpms_conf);
1125 static void dccp_feat_empty_confirm(struct dccp_minisock *dmsk,
1126 u8 type, u8 feature)
1128 /* XXX check if other confirms for that are queued and recycle slot */
1129 struct dccp_opt_pend *opt = kzalloc(sizeof(*opt), GFP_ATOMIC);
1132 /* XXX what do we do? Ignoring should be fine. It's a change
1139 case DCCPO_CHANGE_L:
1140 opt->dccpop_type = DCCPO_CONFIRM_R;
1142 case DCCPO_CHANGE_R:
1143 opt->dccpop_type = DCCPO_CONFIRM_L;
1146 DCCP_WARN("invalid type %d\n", type);
1150 opt->dccpop_feat = feature;
1151 opt->dccpop_val = NULL;
1152 opt->dccpop_len = 0;
1154 /* change feature */
1155 dccp_pr_debug("Empty %s(%d)\n", dccp_feat_typename(type), feature);
1157 list_add_tail(&opt->dccpop_node, &dmsk->dccpms_conf);
1160 static void dccp_feat_flush_confirm(struct sock *sk)
1162 struct dccp_minisock *dmsk = dccp_msk(sk);
1163 /* Check if there is anything to confirm in the first place */
1164 int yes = !list_empty(&dmsk->dccpms_conf);
1167 struct dccp_opt_pend *opt;
1169 list_for_each_entry(opt, &dmsk->dccpms_pending, dccpop_node) {
1170 if (opt->dccpop_conf) {
1180 /* OK there is something to confirm... */
1181 /* XXX check if packet is in flight? Send delayed ack?? */
1182 if (sk->sk_state == DCCP_OPEN)
1186 int dccp_feat_change_recv(struct sock *sk, u8 type, u8 feature, u8 *val, u8 len)
1190 /* Ignore Change requests other than during connection setup */
1191 if (sk->sk_state != DCCP_LISTEN && sk->sk_state != DCCP_REQUESTING)
1193 dccp_feat_debug(type, feature, *val);
1195 /* figure out if it's SP or NN feature */
1197 /* deal with SP features */
1199 /* XXX Obsoleted by next patch
1200 rc = dccp_feat_sp(sk, type, feature, val, len); */
1203 /* deal with NN features */
1204 case DCCPF_ACK_RATIO:
1205 /* XXX Obsoleted by next patch
1206 rc = dccp_feat_nn(sk, type, feature, val, len); */
1209 /* XXX implement other features */
1211 dccp_pr_debug("UNIMPLEMENTED: not handling %s(%d, ...)\n",
1212 dccp_feat_typename(type), feature);
1217 /* check if there were problems changing features */
1219 /* If we don't agree on SP, we sent a confirm for old value.
1220 * However we propagate rc to caller in case option was
1223 if (rc != DCCP_FEAT_SP_NOAGREE)
1224 dccp_feat_empty_confirm(dccp_msk(sk), type, feature);
1227 /* generate the confirm [if required] */
1228 dccp_feat_flush_confirm(sk);
1233 EXPORT_SYMBOL_GPL(dccp_feat_change_recv);
1235 int dccp_feat_confirm_recv(struct sock *sk, u8 type, u8 feature,
1239 struct dccp_opt_pend *opt;
1240 struct dccp_minisock *dmsk = dccp_msk(sk);
1242 int all_confirmed = 1;
1244 /* Ignore Confirm options other than during connection setup */
1245 if (sk->sk_state != DCCP_LISTEN && sk->sk_state != DCCP_REQUESTING)
1247 dccp_feat_debug(type, feature, *val);
1249 /* locate our change request */
1251 case DCCPO_CONFIRM_L: t = DCCPO_CHANGE_R; break;
1252 case DCCPO_CONFIRM_R: t = DCCPO_CHANGE_L; break;
1253 default: DCCP_WARN("invalid type %d\n", type);
1257 /* XXX sanity check feature value */
1259 list_for_each_entry(opt, &dmsk->dccpms_pending, dccpop_node) {
1260 if (!opt->dccpop_conf && opt->dccpop_type == t &&
1261 opt->dccpop_feat == feature) {
1263 dccp_pr_debug("feature %d found\n", opt->dccpop_feat);
1265 /* XXX do sanity check */
1267 opt->dccpop_conf = 1;
1269 /* We got a confirmation---change the option */
1270 dccp_feat_update(sk, opt->dccpop_type,
1271 opt->dccpop_feat, *val);
1273 /* XXX check the return value of dccp_feat_update */
1277 if (!opt->dccpop_conf)
1282 dccp_pr_debug("%s(%d, ...) never requested\n",
1283 dccp_feat_typename(type), feature);
1287 EXPORT_SYMBOL_GPL(dccp_feat_confirm_recv);
1288 #endif /* (later) */
1290 void dccp_feat_clean(struct dccp_minisock *dmsk)
1292 struct dccp_opt_pend *opt, *next;
1294 list_for_each_entry_safe(opt, next, &dmsk->dccpms_pending,
1296 BUG_ON(opt->dccpop_val == NULL);
1297 kfree(opt->dccpop_val);
1299 if (opt->dccpop_sc != NULL) {
1300 BUG_ON(opt->dccpop_sc->dccpoc_val == NULL);
1301 kfree(opt->dccpop_sc->dccpoc_val);
1302 kfree(opt->dccpop_sc);
1307 INIT_LIST_HEAD(&dmsk->dccpms_pending);
1309 list_for_each_entry_safe(opt, next, &dmsk->dccpms_conf, dccpop_node) {
1310 BUG_ON(opt == NULL);
1311 if (opt->dccpop_val != NULL)
1312 kfree(opt->dccpop_val);
1315 INIT_LIST_HEAD(&dmsk->dccpms_conf);
1318 EXPORT_SYMBOL_GPL(dccp_feat_clean);
1320 /* this is to be called only when a listening sock creates its child. It is
1321 * assumed by the function---the confirm is not duplicated, but rather it is
1324 int dccp_feat_clone(struct sock *oldsk, struct sock *newsk)
1326 struct dccp_minisock *olddmsk = dccp_msk(oldsk);
1327 struct dccp_minisock *newdmsk = dccp_msk(newsk);
1328 struct dccp_opt_pend *opt;
1331 INIT_LIST_HEAD(&newdmsk->dccpms_pending);
1332 INIT_LIST_HEAD(&newdmsk->dccpms_conf);
1334 list_for_each_entry(opt, &olddmsk->dccpms_pending, dccpop_node) {
1335 struct dccp_opt_pend *newopt;
1336 /* copy the value of the option */
1337 u8 *val = kmemdup(opt->dccpop_val, opt->dccpop_len, GFP_ATOMIC);
1342 newopt = kmemdup(opt, sizeof(*newopt), GFP_ATOMIC);
1343 if (newopt == NULL) {
1348 /* insert the option */
1349 newopt->dccpop_val = val;
1350 list_add_tail(&newopt->dccpop_node, &newdmsk->dccpms_pending);
1352 /* XXX what happens with backlogs and multiple connections at
1355 /* the master socket no longer needs to worry about confirms */
1356 opt->dccpop_sc = NULL; /* it's not a memleak---new socket has it */
1358 /* reset state for a new socket */
1359 opt->dccpop_conf = 0;
1362 /* XXX not doing anything about the conf queue */
1368 dccp_feat_clean(newdmsk);
1373 EXPORT_SYMBOL_GPL(dccp_feat_clone);
1376 * dccp_feat_change_recv - Process incoming ChangeL/R options
1377 * @fn: feature-negotiation list to update
1378 * @is_mandatory: whether the Change was preceded by a Mandatory option
1379 * @opt: %DCCPO_CHANGE_L or %DCCPO_CHANGE_R
1380 * @feat: one of %dccp_feature_numbers
1381 * @val: NN value or SP value/preference list
1382 * @len: length of @val in bytes
1383 * @server: whether this node is the server (1) or the client (0)
1385 static u8 dccp_feat_change_recv(struct list_head *fn, u8 is_mandatory, u8 opt,
1386 u8 feat, u8 *val, u8 len, const bool server)
1388 u8 defval, type = dccp_feat_type(feat);
1389 const bool local = (opt == DCCPO_CHANGE_R);
1390 struct dccp_feat_entry *entry;
1393 if (len == 0 || type == FEAT_UNKNOWN) /* 6.1 and 6.6.8 */
1394 goto unknown_feature_or_value;
1397 * Negotiation of NN features: Change R is invalid, so there is no
1398 * simultaneous negotiation; hence we do not look up in the list.
1400 if (type == FEAT_NN) {
1401 if (local || len > sizeof(fval.nn))
1402 goto unknown_feature_or_value;
1404 /* 6.3.2: "The feature remote MUST accept any valid value..." */
1405 fval.nn = dccp_decode_value_var(val, len);
1406 if (!dccp_feat_is_valid_nn_val(feat, fval.nn))
1407 goto unknown_feature_or_value;
1409 return dccp_feat_push_confirm(fn, feat, local, &fval);
1413 * Unidirectional/simultaneous negotiation of SP features (6.3.1)
1415 entry = dccp_feat_list_lookup(fn, feat, local);
1416 if (entry == NULL) {
1418 * No particular preferences have been registered. We deal with
1419 * this situation by assuming that all valid values are equally
1420 * acceptable, and apply the following checks:
1421 * - if the peer's list is a singleton, we accept a valid value;
1422 * - if we are the server, we first try to see if the peer (the
1423 * client) advertises the default value. If yes, we use it,
1424 * otherwise we accept the preferred value;
1425 * - else if we are the client, we use the first list element.
1427 if (dccp_feat_clone_sp_val(&fval, val, 1))
1428 return DCCP_RESET_CODE_TOO_BUSY;
1430 if (len > 1 && server) {
1431 defval = dccp_feat_default_value(feat);
1432 if (dccp_feat_preflist_match(&defval, 1, val, len) > -1)
1433 fval.sp.vec[0] = defval;
1434 } else if (!dccp_feat_is_valid_sp_val(feat, fval.sp.vec[0])) {
1436 goto unknown_feature_or_value;
1439 /* Treat unsupported CCIDs like invalid values */
1440 if (feat == DCCPF_CCID && !ccid_support_check(fval.sp.vec, 1)) {
1442 goto not_valid_or_not_known;
1445 return dccp_feat_push_confirm(fn, feat, local, &fval);
1447 } else if (entry->state == FEAT_UNSTABLE) { /* 6.6.2 */
1451 if (dccp_feat_reconcile(&entry->val, val, len, server, true)) {
1452 entry->empty_confirm = 0;
1453 } else if (is_mandatory) {
1454 return DCCP_RESET_CODE_MANDATORY_ERROR;
1455 } else if (entry->state == FEAT_INITIALISING) {
1457 * Failed simultaneous negotiation (server only): try to `save'
1458 * the connection by checking whether entry contains the default
1459 * value for @feat. If yes, send an empty Confirm to signal that
1460 * the received Change was not understood - which implies using
1461 * the default value.
1462 * If this also fails, we use Reset as the last resort.
1465 defval = dccp_feat_default_value(feat);
1466 if (!dccp_feat_reconcile(&entry->val, &defval, 1, server, true))
1467 return DCCP_RESET_CODE_OPTION_ERROR;
1468 entry->empty_confirm = 1;
1470 entry->needs_confirm = 1;
1471 entry->needs_mandatory = 0;
1472 entry->state = FEAT_STABLE;
1475 unknown_feature_or_value:
1477 return dccp_push_empty_confirm(fn, feat, local);
1479 not_valid_or_not_known:
1480 return is_mandatory ? DCCP_RESET_CODE_MANDATORY_ERROR
1481 : DCCP_RESET_CODE_OPTION_ERROR;
1485 * dccp_feat_confirm_recv - Process received Confirm options
1486 * @fn: feature-negotiation list to update
1487 * @is_mandatory: whether @opt was preceded by a Mandatory option
1488 * @opt: %DCCPO_CONFIRM_L or %DCCPO_CONFIRM_R
1489 * @feat: one of %dccp_feature_numbers
1490 * @val: NN value or SP value/preference list
1491 * @len: length of @val in bytes
1492 * @server: whether this node is server (1) or client (0)
1494 static u8 dccp_feat_confirm_recv(struct list_head *fn, u8 is_mandatory, u8 opt,
1495 u8 feat, u8 *val, u8 len, const bool server)
1497 u8 *plist, plen, type = dccp_feat_type(feat);
1498 const bool local = (opt == DCCPO_CONFIRM_R);
1499 struct dccp_feat_entry *entry = dccp_feat_list_lookup(fn, feat, local);
1501 if (entry == NULL) { /* nothing queued: ignore or handle error */
1502 if (is_mandatory && type == FEAT_UNKNOWN)
1503 return DCCP_RESET_CODE_MANDATORY_ERROR;
1505 if (!local && type == FEAT_NN) /* 6.3.2 */
1506 goto confirmation_failed;
1510 if (entry->state != FEAT_CHANGING) /* 6.6.2 */
1514 if (dccp_feat_must_be_understood(feat)) /* 6.6.7 */
1515 goto confirmation_failed;
1517 * Empty Confirm during connection setup: this means reverting
1518 * to the `old' value, which in this case is the default. Since
1519 * we handle default values automatically when no other values
1520 * have been set, we revert to the old value by removing this
1521 * entry from the list.
1523 dccp_feat_list_pop(entry);
1527 if (type == FEAT_NN) {
1528 if (len > sizeof(entry->val.nn))
1529 goto confirmation_failed;
1531 if (entry->val.nn == dccp_decode_value_var(val, len))
1532 goto confirmation_succeeded;
1534 DCCP_WARN("Bogus Confirm for non-existing value\n");
1535 goto confirmation_failed;
1539 * Parsing SP Confirms: the first element of @val is the preferred
1540 * SP value which the peer confirms, the remainder depends on @len.
1541 * Note that only the confirmed value need to be a valid SP value.
1543 if (!dccp_feat_is_valid_sp_val(feat, *val))
1544 goto confirmation_failed;
1546 if (len == 1) { /* peer didn't supply a preference list */
1549 } else { /* preferred value + preference list */
1554 /* Check whether the peer got the reconciliation right (6.6.8) */
1555 if (dccp_feat_reconcile(&entry->val, plist, plen, server, 0) != *val) {
1556 DCCP_WARN("Confirm selected the wrong value %u\n", *val);
1557 return DCCP_RESET_CODE_OPTION_ERROR;
1559 entry->val.sp.vec[0] = *val;
1561 confirmation_succeeded:
1562 entry->state = FEAT_STABLE;
1565 confirmation_failed:
1566 DCCP_WARN("Confirmation failed\n");
1567 return is_mandatory ? DCCP_RESET_CODE_MANDATORY_ERROR
1568 : DCCP_RESET_CODE_OPTION_ERROR;
1572 * dccp_feat_parse_options - Process Feature-Negotiation Options
1573 * @sk: for general use and used by the client during connection setup
1574 * @dreq: used by the server during connection setup
1575 * @mandatory: whether @opt was preceded by a Mandatory option
1576 * @opt: %DCCPO_CHANGE_L | %DCCPO_CHANGE_R | %DCCPO_CONFIRM_L | %DCCPO_CONFIRM_R
1577 * @feat: one of %dccp_feature_numbers
1578 * @val: value contents of @opt
1579 * @len: length of @val in bytes
1580 * Returns 0 on success, a Reset code for ending the connection otherwise.
1582 int dccp_feat_parse_options(struct sock *sk, struct dccp_request_sock *dreq,
1583 u8 mandatory, u8 opt, u8 feat, u8 *val, u8 len)
1585 struct dccp_sock *dp = dccp_sk(sk);
1586 struct list_head *fn = dreq ? &dreq->dreq_featneg : &dp->dccps_featneg;
1587 bool server = false;
1589 switch (sk->sk_state) {
1591 * Negotiation during connection setup
1594 server = true; /* fall through */
1595 case DCCP_REQUESTING:
1597 case DCCPO_CHANGE_L:
1598 case DCCPO_CHANGE_R:
1599 return dccp_feat_change_recv(fn, mandatory, opt, feat,
1601 case DCCPO_CONFIRM_R:
1602 case DCCPO_CONFIRM_L:
1603 return dccp_feat_confirm_recv(fn, mandatory, opt, feat,
1607 return 0; /* ignore FN options in all other states */
1610 int dccp_feat_init(struct sock *sk)
1612 struct dccp_sock *dp = dccp_sk(sk);
1613 struct dccp_minisock *dmsk = dccp_msk(sk);
1616 INIT_LIST_HEAD(&dmsk->dccpms_pending); /* XXX no longer used */
1617 INIT_LIST_HEAD(&dmsk->dccpms_conf); /* XXX no longer used */
1620 rc = __feat_register_sp(&dp->dccps_featneg, DCCPF_CCID, 1, 0,
1621 &dmsk->dccpms_tx_ccid, 1);
1626 rc = __feat_register_sp(&dp->dccps_featneg, DCCPF_CCID, 0, 0,
1627 &dmsk->dccpms_rx_ccid, 1);
1632 rc = __feat_register_nn(&dp->dccps_featneg, DCCPF_ACK_RATIO, 0,
1633 dp->dccps_l_ack_ratio);
1638 EXPORT_SYMBOL_GPL(dccp_feat_init);
1640 int dccp_feat_activate_values(struct sock *sk, struct list_head *fn_list)
1642 struct dccp_sock *dp = dccp_sk(sk);
1643 struct dccp_feat_entry *cur, *next;
1645 dccp_feat_val *fvals[DCCP_FEAT_SUPPORTED_MAX][2] = {
1646 [0 ... DCCP_FEAT_SUPPORTED_MAX-1] = { NULL, NULL }
1649 list_for_each_entry(cur, fn_list, node) {
1651 * An empty Confirm means that either an unknown feature type
1652 * or an invalid value was present. In the first case there is
1653 * nothing to activate, in the other the default value is used.
1655 if (cur->empty_confirm)
1658 idx = dccp_feat_index(cur->feat_num);
1660 DCCP_BUG("Unknown feature %u", cur->feat_num);
1661 goto activation_failed;
1663 if (cur->state != FEAT_STABLE) {
1664 DCCP_CRIT("Negotiation of %s %u failed in state %u",
1665 cur->is_local ? "local" : "remote",
1666 cur->feat_num, cur->state);
1667 goto activation_failed;
1669 fvals[idx][cur->is_local] = &cur->val;
1673 * Activate in decreasing order of index, so that the CCIDs are always
1674 * activated as the last feature. This avoids the case where a CCID
1675 * relies on the initialisation of one or more features that it depends
1676 * on (e.g. Send NDP Count, Send Ack Vector, and Ack Ratio features).
1678 for (idx = DCCP_FEAT_SUPPORTED_MAX; --idx >= 0;)
1679 if (__dccp_feat_activate(sk, idx, 0, fvals[idx][0]) ||
1680 __dccp_feat_activate(sk, idx, 1, fvals[idx][1])) {
1681 DCCP_CRIT("Could not activate %d", idx);
1682 goto activation_failed;
1685 /* Clean up Change options which have been confirmed already */
1686 list_for_each_entry_safe(cur, next, fn_list, node)
1687 if (!cur->needs_confirm)
1688 dccp_feat_list_pop(cur);
1690 dccp_pr_debug("Activation OK\n");
1695 * We clean up everything that may have been allocated, since
1696 * it is difficult to track at which stage negotiation failed.
1697 * This is ok, since all allocation functions below are robust
1698 * against NULL arguments.
1700 ccid_hc_rx_delete(dp->dccps_hc_rx_ccid, sk);
1701 ccid_hc_tx_delete(dp->dccps_hc_tx_ccid, sk);
1702 dp->dccps_hc_rx_ccid = dp->dccps_hc_tx_ccid = NULL;
1703 dccp_ackvec_free(dp->dccps_hc_rx_ackvec);
1704 dp->dccps_hc_rx_ackvec = NULL;
1708 #ifdef CONFIG_IP_DCCP_DEBUG
1709 const char *dccp_feat_typename(const u8 type)
1712 case DCCPO_CHANGE_L: return("ChangeL");
1713 case DCCPO_CONFIRM_L: return("ConfirmL");
1714 case DCCPO_CHANGE_R: return("ChangeR");
1715 case DCCPO_CONFIRM_R: return("ConfirmR");
1716 /* the following case must not appear in feature negotation */
1717 default: dccp_pr_debug("unknown type %d [BUG!]\n", type);
1722 EXPORT_SYMBOL_GPL(dccp_feat_typename);
1724 const char *dccp_feat_name(const u8 feat)
1726 static const char *feature_names[] = {
1727 [DCCPF_RESERVED] = "Reserved",
1728 [DCCPF_CCID] = "CCID",
1729 [DCCPF_SHORT_SEQNOS] = "Allow Short Seqnos",
1730 [DCCPF_SEQUENCE_WINDOW] = "Sequence Window",
1731 [DCCPF_ECN_INCAPABLE] = "ECN Incapable",
1732 [DCCPF_ACK_RATIO] = "Ack Ratio",
1733 [DCCPF_SEND_ACK_VECTOR] = "Send ACK Vector",
1734 [DCCPF_SEND_NDP_COUNT] = "Send NDP Count",
1735 [DCCPF_MIN_CSUM_COVER] = "Min. Csum Coverage",
1736 [DCCPF_DATA_CHECKSUM] = "Send Data Checksum",
1738 if (feat > DCCPF_DATA_CHECKSUM && feat < DCCPF_MIN_CCID_SPECIFIC)
1739 return feature_names[DCCPF_RESERVED];
1741 if (feat == DCCPF_SEND_LEV_RATE)
1742 return "Send Loss Event Rate";
1743 if (feat >= DCCPF_MIN_CCID_SPECIFIC)
1744 return "CCID-specific";
1746 return feature_names[feat];
1749 EXPORT_SYMBOL_GPL(dccp_feat_name);
1750 #endif /* CONFIG_IP_DCCP_DEBUG */