]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/dccp/options.c
dccp: Limit feature negotiation to connection setup phase
[net-next-2.6.git] / net / dccp / options.c
CommitLineData
7c657876
ACM
1/*
2 * net/dccp/options.c
3 *
4 * An implementation of the DCCP protocol
1bc09869
IM
5 * Copyright (c) 2005 Aristeu Sergio Rozanski Filho <aris@cathedrallabs.org>
6 * Copyright (c) 2005 Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
e6bccd35 7 * Copyright (c) 2005 Ian McDonald <ian.mcdonald@jandi.co.nz>
7c657876
ACM
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
13 */
7c657876
ACM
14#include <linux/dccp.h>
15#include <linux/module.h>
16#include <linux/types.h>
76fd1e87 17#include <asm/unaligned.h>
7c657876
ACM
18#include <linux/kernel.h>
19#include <linux/skbuff.h>
20
ae31c339 21#include "ackvec.h"
7c657876
ACM
22#include "ccid.h"
23#include "dccp.h"
afe00251 24#include "feat.h"
7c657876 25
410e27a4
GR
26int sysctl_dccp_feat_sequence_window = DCCPF_INITIAL_SEQUENCE_WINDOW;
27int sysctl_dccp_feat_rx_ccid = DCCPF_INITIAL_CCID;
28int sysctl_dccp_feat_tx_ccid = DCCPF_INITIAL_CCID;
29int sysctl_dccp_feat_ack_ratio = DCCPF_INITIAL_ACK_RATIO;
30int sysctl_dccp_feat_send_ack_vector = DCCPF_INITIAL_SEND_ACK_VECTOR;
31int sysctl_dccp_feat_send_ndp_count = DCCPF_INITIAL_SEND_NDP_COUNT;
32
33static u32 dccp_decode_value_var(const unsigned char *bf, const u8 len)
7c657876 34{
410e27a4 35 u32 value = 0;
7c657876
ACM
36
37 if (len > 3)
410e27a4 38 value += *bf++ << 24;
7c657876 39 if (len > 2)
410e27a4 40 value += *bf++ << 16;
7c657876 41 if (len > 1)
410e27a4 42 value += *bf++ << 8;
7c657876
ACM
43 if (len > 0)
44 value += *bf;
45
46 return value;
47}
48
8b819412
GR
49/**
50 * dccp_parse_options - Parse DCCP options present in @skb
51 * @sk: client|server|listening dccp socket (when @dreq != NULL)
52 * @dreq: request socket to use during connection setup, or NULL
53 */
54int dccp_parse_options(struct sock *sk, struct dccp_request_sock *dreq,
55 struct sk_buff *skb)
7c657876
ACM
56{
57 struct dccp_sock *dp = dccp_sk(sk);
7c657876
ACM
58 const struct dccp_hdr *dh = dccp_hdr(skb);
59 const u8 pkt_type = DCCP_SKB_CB(skb)->dccpd_type;
410e27a4 60 u64 ackno = DCCP_SKB_CB(skb)->dccpd_ack_seq;
7c657876
ACM
61 unsigned char *options = (unsigned char *)dh + dccp_hdr_len(skb);
62 unsigned char *opt_ptr = options;
7690af3f
ACM
63 const unsigned char *opt_end = (unsigned char *)dh +
64 (dh->dccph_doff * 4);
7c657876
ACM
65 struct dccp_options_received *opt_recv = &dp->dccps_options_received;
66 unsigned char opt, len;
67 unsigned char *value;
1c14ac0a 68 u32 elapsed_time;
76fd1e87 69 __be32 opt_val;
afe00251
AB
70 int rc;
71 int mandatory = 0;
7c657876
ACM
72
73 memset(opt_recv, 0, sizeof(*opt_recv));
74
fb950496 75 opt = len = 0;
7c657876
ACM
76 while (opt_ptr != opt_end) {
77 opt = *opt_ptr++;
78 len = 0;
79 value = NULL;
80
81 /* Check if this isn't a single byte option */
82 if (opt > DCCPO_MAX_RESERVED) {
83 if (opt_ptr == opt_end)
faf61c33 84 goto out_nonsensical_length;
7c657876
ACM
85
86 len = *opt_ptr++;
faf61c33
GR
87 if (len < 2)
88 goto out_nonsensical_length;
7c657876
ACM
89 /*
90 * Remove the type and len fields, leaving
91 * just the value size
92 */
93 len -= 2;
94 value = opt_ptr;
95 opt_ptr += len;
96
97 if (opt_ptr > opt_end)
faf61c33 98 goto out_nonsensical_length;
7c657876
ACM
99 }
100
8b819412 101 /*
410e27a4
GR
102 * CCID-Specific Options (from RFC 4340, sec. 10.3):
103 *
104 * Option numbers 128 through 191 are for options sent from the
105 * HC-Sender to the HC-Receiver; option numbers 192 through 255
106 * are for options sent from the HC-Receiver to the HC-Sender.
107 *
8b819412
GR
108 * CCID-specific options are ignored during connection setup, as
109 * negotiation may still be in progress (see RFC 4340, 10.3).
65907a43 110 * The same applies to Ack Vectors, as these depend on the CCID.
410e27a4 111 *
8b819412 112 */
410e27a4 113 if (dreq != NULL && (opt >= 128 ||
65907a43 114 opt == DCCPO_ACK_VECTOR_0 || opt == DCCPO_ACK_VECTOR_1))
8b819412
GR
115 goto ignore_option;
116
7c657876
ACM
117 switch (opt) {
118 case DCCPO_PADDING:
119 break;
afe00251
AB
120 case DCCPO_MANDATORY:
121 if (mandatory)
122 goto out_invalid_option;
6df9424a
ACM
123 if (pkt_type != DCCP_PKT_DATA)
124 mandatory = 1;
afe00251 125 break;
7c657876 126 case DCCPO_NDP_COUNT:
5b5d0e70 127 if (len > 6)
7c657876
ACM
128 goto out_invalid_option;
129
130 opt_recv->dccpor_ndp = dccp_decode_value_var(value, len);
5b5d0e70
GR
131 dccp_pr_debug("%s opt: NDP count=%llu\n", dccp_role(sk),
132 (unsigned long long)opt_recv->dccpor_ndp);
7c657876 133 break;
410e27a4
GR
134 case DCCPO_CHANGE_L:
135 /* fall through */
136 case DCCPO_CHANGE_R:
137 if (pkt_type == DCCP_PKT_DATA)
cf86314c 138 break;
410e27a4
GR
139 if (len < 2)
140 goto out_invalid_option;
141 rc = dccp_feat_change_recv(sk, opt, *value, value + 1,
142 len - 1);
143 /*
144 * When there is a change error, change_recv is
145 * responsible for dealing with it. i.e. reply with an
146 * empty confirm.
147 * If the change was mandatory, then we need to die.
148 */
149 if (rc && mandatory)
150 goto out_invalid_option;
151 break;
152 case DCCPO_CONFIRM_L:
153 /* fall through */
154 case DCCPO_CONFIRM_R:
155 if (pkt_type == DCCP_PKT_DATA)
156 break;
157 if (len < 2) /* FIXME this disallows empty confirm */
158 goto out_invalid_option;
159 if (dccp_feat_confirm_recv(sk, opt, *value,
160 value + 1, len - 1))
161 goto out_invalid_option;
162 break;
163 case DCCPO_ACK_VECTOR_0:
164 case DCCPO_ACK_VECTOR_1:
165 if (dccp_packet_without_ack(skb)) /* RFC 4340, 11.4 */
166 break;
167
168 if (dccp_msk(sk)->dccpms_send_ack_vector &&
169 dccp_ackvec_parse(sk, skb, &ackno, opt, value, len))
170 goto out_invalid_option;
afe00251 171 break;
7c657876
ACM
172 case DCCPO_TIMESTAMP:
173 if (len != 4)
174 goto out_invalid_option;
b4d4f7c7
GR
175 /*
176 * RFC 4340 13.1: "The precise time corresponding to
177 * Timestamp Value zero is not specified". We use
178 * zero to indicate absence of a meaningful timestamp.
179 */
76fd1e87 180 opt_val = get_unaligned((__be32 *)value);
b4d4f7c7
GR
181 if (unlikely(opt_val == 0)) {
182 DCCP_WARN("Timestamp with zero value\n");
183 break;
184 }
7c657876 185
b4d4f7c7
GR
186 if (dreq != NULL) {
187 dreq->dreq_timestamp_echo = ntohl(opt_val);
188 dreq->dreq_timestamp_time = dccp_timestamp();
189 } else {
190 opt_recv->dccpor_timestamp =
191 dp->dccps_timestamp_echo = ntohl(opt_val);
192 dp->dccps_timestamp_time = dccp_timestamp();
193 }
09dbc389 194 dccp_pr_debug("%s rx opt: TIMESTAMP=%u, ackno=%llu\n",
b4d4f7c7 195 dccp_role(sk), ntohl(opt_val),
f6ccf554 196 (unsigned long long)
7c657876
ACM
197 DCCP_SKB_CB(skb)->dccpd_ack_seq);
198 break;
199 case DCCPO_TIMESTAMP_ECHO:
1bc09869 200 if (len != 4 && len != 6 && len != 8)
7c657876
ACM
201 goto out_invalid_option;
202
76fd1e87
GR
203 opt_val = get_unaligned((__be32 *)value);
204 opt_recv->dccpor_timestamp_echo = ntohl(opt_val);
7c657876 205
09dbc389 206 dccp_pr_debug("%s rx opt: TIMESTAMP_ECHO=%u, len=%d, "
f73f7097 207 "ackno=%llu", dccp_role(sk),
7690af3f 208 opt_recv->dccpor_timestamp_echo,
f6ccf554
DM
209 len + 2,
210 (unsigned long long)
1bc09869
IM
211 DCCP_SKB_CB(skb)->dccpd_ack_seq);
212
76fd1e87 213 value += 4;
1bc09869 214
76fd1e87 215 if (len == 4) { /* no elapsed time included */
f73f7097 216 dccp_pr_debug_cat("\n");
1c14ac0a 217 break;
f73f7097 218 }
1c14ac0a 219
76fd1e87
GR
220 if (len == 6) { /* 2-byte elapsed time */
221 __be16 opt_val2 = get_unaligned((__be16 *)value);
222 elapsed_time = ntohs(opt_val2);
223 } else { /* 4-byte elapsed time */
224 opt_val = get_unaligned((__be32 *)value);
225 elapsed_time = ntohl(opt_val);
226 }
1c14ac0a 227
dcad856f 228 dccp_pr_debug_cat(", ELAPSED_TIME=%u\n", elapsed_time);
f73f7097 229
1c14ac0a
ACM
230 /* Give precedence to the biggest ELAPSED_TIME */
231 if (elapsed_time > opt_recv->dccpor_elapsed_time)
232 opt_recv->dccpor_elapsed_time = elapsed_time;
7c657876
ACM
233 break;
234 case DCCPO_ELAPSED_TIME:
c86ab2b6
GR
235 if (dccp_packet_without_ack(skb)) /* RFC 4340, 13.2 */
236 break;
1bc09869 237
76fd1e87
GR
238 if (len == 2) {
239 __be16 opt_val2 = get_unaligned((__be16 *)value);
240 elapsed_time = ntohs(opt_val2);
c86ab2b6 241 } else if (len == 4) {
76fd1e87
GR
242 opt_val = get_unaligned((__be32 *)value);
243 elapsed_time = ntohl(opt_val);
c86ab2b6
GR
244 } else {
245 goto out_invalid_option;
76fd1e87 246 }
1c14ac0a
ACM
247
248 if (elapsed_time > opt_recv->dccpor_elapsed_time)
249 opt_recv->dccpor_elapsed_time = elapsed_time;
1bc09869 250
09dbc389
GR
251 dccp_pr_debug("%s rx opt: ELAPSED_TIME=%d\n",
252 dccp_role(sk), elapsed_time);
7c657876 253 break;
410e27a4
GR
254 case 128 ... 191: {
255 const u16 idx = value - options;
256
7690af3f 257 if (ccid_hc_rx_parse_options(dp->dccps_hc_rx_ccid, sk,
410e27a4
GR
258 opt, len, idx,
259 value) != 0)
7c657876 260 goto out_invalid_option;
410e27a4 261 }
7c657876 262 break;
410e27a4
GR
263 case 192 ... 255: {
264 const u16 idx = value - options;
265
7690af3f 266 if (ccid_hc_tx_parse_options(dp->dccps_hc_tx_ccid, sk,
410e27a4
GR
267 opt, len, idx,
268 value) != 0)
7c657876 269 goto out_invalid_option;
410e27a4 270 }
7c657876
ACM
271 break;
272 default:
59348b19
GR
273 DCCP_CRIT("DCCP(%p): option %d(len=%d) not "
274 "implemented, ignoring", sk, opt, len);
7c657876 275 break;
c9eaf173 276 }
8b819412 277ignore_option:
afe00251
AB
278 if (opt != DCCPO_MANDATORY)
279 mandatory = 0;
7c657876
ACM
280 }
281
6df9424a
ACM
282 /* mandatory was the last byte in option list -> reset connection */
283 if (mandatory)
284 goto out_invalid_option;
285
faf61c33
GR
286out_nonsensical_length:
287 /* RFC 4340, 5.8: ignore option and all remaining option space */
7c657876
ACM
288 return 0;
289
290out_invalid_option:
291 DCCP_INC_STATS_BH(DCCP_MIB_INVALIDOPT);
410e27a4
GR
292 DCCP_SKB_CB(skb)->dccpd_reset_code = DCCP_RESET_CODE_OPTION_ERROR;
293 DCCP_WARN("DCCP(%p): invalid option %d, len=%d", sk, opt, len);
eac7726b
GR
294 DCCP_SKB_CB(skb)->dccpd_reset_data[0] = opt;
295 DCCP_SKB_CB(skb)->dccpd_reset_data[1] = len > 0 ? value[0] : 0;
296 DCCP_SKB_CB(skb)->dccpd_reset_data[2] = len > 1 ? value[1] : 0;
7c657876
ACM
297 return -1;
298}
299
b61fafc4
ACM
300EXPORT_SYMBOL_GPL(dccp_parse_options);
301
410e27a4
GR
302static void dccp_encode_value_var(const u32 value, unsigned char *to,
303 const unsigned int len)
7c657876
ACM
304{
305 if (len > 3)
306 *to++ = (value & 0xFF000000) >> 24;
307 if (len > 2)
308 *to++ = (value & 0xFF0000) >> 16;
309 if (len > 1)
310 *to++ = (value & 0xFF00) >> 8;
311 if (len > 0)
312 *to++ = (value & 0xFF);
313}
314
5b5d0e70 315static inline u8 dccp_ndp_len(const u64 ndp)
7c657876 316{
5b5d0e70
GR
317 if (likely(ndp <= 0xFF))
318 return 1;
319 return likely(ndp <= USHORT_MAX) ? 2 : (ndp <= UINT_MAX ? 4 : 6);
7c657876
ACM
320}
321
2d0817d1 322int dccp_insert_option(struct sock *sk, struct sk_buff *skb,
7c657876
ACM
323 const unsigned char option,
324 const void *value, const unsigned char len)
325{
326 unsigned char *to;
327
2d0817d1
ACM
328 if (DCCP_SKB_CB(skb)->dccpd_opt_len + len + 2 > DCCP_MAX_OPT_LEN)
329 return -1;
7c657876
ACM
330
331 DCCP_SKB_CB(skb)->dccpd_opt_len += len + 2;
332
333 to = skb_push(skb, len + 2);
334 *to++ = option;
335 *to++ = len + 2;
336
337 memcpy(to, value, len);
2d0817d1 338 return 0;
7c657876
ACM
339}
340
341EXPORT_SYMBOL_GPL(dccp_insert_option);
342
2d0817d1 343static int dccp_insert_option_ndp(struct sock *sk, struct sk_buff *skb)
7c657876
ACM
344{
345 struct dccp_sock *dp = dccp_sk(sk);
5b5d0e70 346 u64 ndp = dp->dccps_ndp_count;
7c657876
ACM
347
348 if (dccp_non_data_packet(skb))
349 ++dp->dccps_ndp_count;
350 else
351 dp->dccps_ndp_count = 0;
352
353 if (ndp > 0) {
354 unsigned char *ptr;
355 const int ndp_len = dccp_ndp_len(ndp);
356 const int len = ndp_len + 2;
357
358 if (DCCP_SKB_CB(skb)->dccpd_opt_len + len > DCCP_MAX_OPT_LEN)
2d0817d1 359 return -1;
7c657876
ACM
360
361 DCCP_SKB_CB(skb)->dccpd_opt_len += len;
362
363 ptr = skb_push(skb, len);
364 *ptr++ = DCCPO_NDP_COUNT;
365 *ptr++ = len;
366 dccp_encode_value_var(ndp, ptr, ndp_len);
367 }
2d0817d1
ACM
368
369 return 0;
7c657876
ACM
370}
371
372static inline int dccp_elapsed_time_len(const u32 elapsed_time)
373{
b1c9fe7b 374 return elapsed_time == 0 ? 0 : elapsed_time <= 0xFFFF ? 2 : 4;
7c657876
ACM
375}
376
2d0817d1
ACM
377int dccp_insert_option_elapsed_time(struct sock *sk, struct sk_buff *skb,
378 u32 elapsed_time)
7c657876 379{
7c657876
ACM
380 const int elapsed_time_len = dccp_elapsed_time_len(elapsed_time);
381 const int len = 2 + elapsed_time_len;
382 unsigned char *to;
383
1bc09869 384 if (elapsed_time_len == 0)
2d0817d1 385 return 0;
7c657876 386
2d0817d1
ACM
387 if (DCCP_SKB_CB(skb)->dccpd_opt_len + len > DCCP_MAX_OPT_LEN)
388 return -1;
7c657876
ACM
389
390 DCCP_SKB_CB(skb)->dccpd_opt_len += len;
391
392 to = skb_push(skb, len);
393 *to++ = DCCPO_ELAPSED_TIME;
394 *to++ = len;
395
1bc09869 396 if (elapsed_time_len == 2) {
60fe62e7 397 const __be16 var16 = htons((u16)elapsed_time);
1bc09869
IM
398 memcpy(to, &var16, 2);
399 } else {
60fe62e7 400 const __be32 var32 = htonl(elapsed_time);
1bc09869
IM
401 memcpy(to, &var32, 4);
402 }
7c657876 403
2d0817d1 404 return 0;
7c657876
ACM
405}
406
d4b81ff7 407EXPORT_SYMBOL_GPL(dccp_insert_option_elapsed_time);
7c657876 408
2d0817d1 409int dccp_insert_option_timestamp(struct sock *sk, struct sk_buff *skb)
7c657876 410{
4c70f383 411 __be32 now = htonl(dccp_timestamp());
1bc09869
IM
412 /* yes this will overflow but that is the point as we want a
413 * 10 usec 32 bit timer which mean it wraps every 11.9 hours */
414
2d0817d1 415 return dccp_insert_option(sk, skb, DCCPO_TIMESTAMP, &now, sizeof(now));
7c657876
ACM
416}
417
d4b81ff7
ACM
418EXPORT_SYMBOL_GPL(dccp_insert_option_timestamp);
419
b4d4f7c7
GR
420static int dccp_insert_option_timestamp_echo(struct dccp_sock *dp,
421 struct dccp_request_sock *dreq,
2d0817d1 422 struct sk_buff *skb)
7c657876 423{
60fe62e7 424 __be32 tstamp_echo;
7c657876 425 unsigned char *to;
b4d4f7c7
GR
426 u32 elapsed_time, elapsed_time_len, len;
427
428 if (dreq != NULL) {
429 elapsed_time = dccp_timestamp() - dreq->dreq_timestamp_time;
430 tstamp_echo = htonl(dreq->dreq_timestamp_echo);
431 dreq->dreq_timestamp_echo = 0;
432 } else {
433 elapsed_time = dccp_timestamp() - dp->dccps_timestamp_time;
434 tstamp_echo = htonl(dp->dccps_timestamp_echo);
435 dp->dccps_timestamp_echo = 0;
436 }
437
b0e56780
ACM
438 elapsed_time_len = dccp_elapsed_time_len(elapsed_time);
439 len = 6 + elapsed_time_len;
440
2d0817d1
ACM
441 if (DCCP_SKB_CB(skb)->dccpd_opt_len + len > DCCP_MAX_OPT_LEN)
442 return -1;
7c657876
ACM
443
444 DCCP_SKB_CB(skb)->dccpd_opt_len += len;
445
446 to = skb_push(skb, len);
447 *to++ = DCCPO_TIMESTAMP_ECHO;
448 *to++ = len;
449
7c657876
ACM
450 memcpy(to, &tstamp_echo, 4);
451 to += 4;
afe00251 452
1bc09869 453 if (elapsed_time_len == 2) {
60fe62e7 454 const __be16 var16 = htons((u16)elapsed_time);
1bc09869
IM
455 memcpy(to, &var16, 2);
456 } else if (elapsed_time_len == 4) {
60fe62e7 457 const __be32 var32 = htonl(elapsed_time);
1bc09869
IM
458 memcpy(to, &var32, 4);
459 }
7c657876 460
2d0817d1 461 return 0;
7c657876
ACM
462}
463
410e27a4
GR
464static int dccp_insert_feat_opt(struct sk_buff *skb, u8 type, u8 feat,
465 u8 *val, u8 len)
4829007c 466{
410e27a4 467 u8 *to;
4829007c 468
410e27a4
GR
469 if (DCCP_SKB_CB(skb)->dccpd_opt_len + len + 3 > DCCP_MAX_OPT_LEN) {
470 DCCP_WARN("packet too small for feature %d option!\n", feat);
4829007c 471 return -1;
c2f42077 472 }
4829007c 473
410e27a4 474 DCCP_SKB_CB(skb)->dccpd_opt_len += len + 3;
4829007c 475
410e27a4
GR
476 to = skb_push(skb, len + 3);
477 *to++ = type;
478 *to++ = len + 3;
479 *to++ = feat;
4829007c 480
410e27a4
GR
481 if (len)
482 memcpy(to, val, len);
d0440ee6 483
410e27a4
GR
484 dccp_pr_debug("%s(%s (%d), ...), length %d\n",
485 dccp_feat_typename(type),
486 dccp_feat_name(feat), feat, len);
d0440ee6
GR
487 return 0;
488}
489
410e27a4 490static int dccp_insert_options_feat(struct sock *sk, struct sk_buff *skb)
afe00251 491{
410e27a4
GR
492 struct dccp_minisock *dmsk = dccp_msk(sk);
493 struct dccp_opt_pend *opt, *next;
494 int change = 0;
495
496 /* confirm any options [NN opts] */
497 list_for_each_entry_safe(opt, next, &dmsk->dccpms_conf, dccpop_node) {
498 dccp_insert_feat_opt(skb, opt->dccpop_type,
499 opt->dccpop_feat, opt->dccpop_val,
500 opt->dccpop_len);
501 /* fear empty confirms */
502 if (opt->dccpop_val)
503 kfree(opt->dccpop_val);
504 kfree(opt);
505 }
506 INIT_LIST_HEAD(&dmsk->dccpms_conf);
507
508 /* see which features we need to send */
509 list_for_each_entry(opt, &dmsk->dccpms_pending, dccpop_node) {
510 /* see if we need to send any confirm */
511 if (opt->dccpop_sc) {
512 dccp_insert_feat_opt(skb, opt->dccpop_type + 1,
513 opt->dccpop_feat,
514 opt->dccpop_sc->dccpoc_val,
515 opt->dccpop_sc->dccpoc_len);
516
517 BUG_ON(!opt->dccpop_sc->dccpoc_val);
518 kfree(opt->dccpop_sc->dccpoc_val);
519 kfree(opt->dccpop_sc);
520 opt->dccpop_sc = NULL;
521 }
afe00251 522
410e27a4
GR
523 /* any option not confirmed, re-send it */
524 if (!opt->dccpop_conf) {
525 dccp_insert_feat_opt(skb, opt->dccpop_type,
526 opt->dccpop_feat, opt->dccpop_val,
527 opt->dccpop_len);
528 change++;
529 }
afe00251
AB
530 }
531
afe00251
AB
532 return 0;
533}
534
af3b867e
GR
535/* The length of all options needs to be a multiple of 4 (5.8) */
536static void dccp_insert_option_padding(struct sk_buff *skb)
537{
538 int padding = DCCP_SKB_CB(skb)->dccpd_opt_len % 4;
539
540 if (padding != 0) {
541 padding = 4 - padding;
542 memset(skb_push(skb, padding), 0, padding);
543 DCCP_SKB_CB(skb)->dccpd_opt_len += padding;
544 }
545}
546
2d0817d1 547int dccp_insert_options(struct sock *sk, struct sk_buff *skb)
7c657876
ACM
548{
549 struct dccp_sock *dp = dccp_sk(sk);
410e27a4 550 struct dccp_minisock *dmsk = dccp_msk(sk);
7c657876
ACM
551
552 DCCP_SKB_CB(skb)->dccpd_opt_len = 0;
553
410e27a4
GR
554 if (dmsk->dccpms_send_ndp_count &&
555 dccp_insert_option_ndp(sk, skb))
2d0817d1 556 return -1;
7c657876 557
410e27a4
GR
558 if (!dccp_packet_without_ack(skb)) {
559 if (dmsk->dccpms_send_ack_vector &&
560 dccp_ackvec_pending(dp->dccps_hc_rx_ackvec) &&
561 dccp_insert_option_ackvec(sk, skb))
2d0817d1 562 return -1;
7c657876
ACM
563 }
564
507d37cf 565 if (dp->dccps_hc_rx_insert_options) {
2d0817d1
ACM
566 if (ccid_hc_rx_insert_options(dp->dccps_hc_rx_ccid, sk, skb))
567 return -1;
507d37cf
ACM
568 dp->dccps_hc_rx_insert_options = 0;
569 }
7c657876 570
410e27a4
GR
571 /* Feature negotiation */
572 /* Data packets can't do feat negotiation */
573 if (DCCP_SKB_CB(skb)->dccpd_type != DCCP_PKT_DATA &&
574 DCCP_SKB_CB(skb)->dccpd_type != DCCP_PKT_DATAACK &&
575 dccp_insert_options_feat(sk, skb))
576 return -1;
577
578 /*
579 * Obtain RTT sample from Request/Response exchange.
580 * This is currently used in CCID 3 initialisation.
581 */
582 if (DCCP_SKB_CB(skb)->dccpd_type == DCCP_PKT_REQUEST &&
583 dccp_insert_option_timestamp(sk, skb))
584 return -1;
585
b4d4f7c7
GR
586 if (dp->dccps_timestamp_echo != 0 &&
587 dccp_insert_option_timestamp_echo(dp, NULL, skb))
588 return -1;
589
af3b867e
GR
590 dccp_insert_option_padding(skb);
591 return 0;
592}
7c657876 593
af3b867e
GR
594int dccp_insert_options_rsk(struct dccp_request_sock *dreq, struct sk_buff *skb)
595{
596 DCCP_SKB_CB(skb)->dccpd_opt_len = 0;
7c657876 597
af3b867e
GR
598 if (dreq->dreq_timestamp_echo != 0 &&
599 dccp_insert_option_timestamp_echo(NULL, dreq, skb))
600 return -1;
2d0817d1 601
af3b867e 602 dccp_insert_option_padding(skb);
2d0817d1 603 return 0;
7c657876 604}