[DCCP]: Make feature negotiation more readable
[deliverable/linux.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>
17#include <linux/kernel.h>
18#include <linux/skbuff.h>
19
ae31c339 20#include "ackvec.h"
7c657876
ACM
21#include "ccid.h"
22#include "dccp.h"
afe00251 23#include "feat.h"
7c657876 24
afb0a34d
GR
25int sysctl_dccp_feat_sequence_window = DCCPF_INITIAL_SEQUENCE_WINDOW;
26int sysctl_dccp_feat_rx_ccid = DCCPF_INITIAL_CCID;
27int sysctl_dccp_feat_tx_ccid = DCCPF_INITIAL_CCID;
28int sysctl_dccp_feat_ack_ratio = DCCPF_INITIAL_ACK_RATIO;
29int sysctl_dccp_feat_send_ack_vector = DCCPF_INITIAL_SEND_ACK_VECTOR;
30int sysctl_dccp_feat_send_ndp_count = DCCPF_INITIAL_SEND_NDP_COUNT;
7c657876 31
afb0a34d 32EXPORT_SYMBOL_GPL(sysctl_dccp_feat_sequence_window);
4b79f0af 33
a4bf3902 34void dccp_minisock_init(struct dccp_minisock *dmsk)
7c657876 35{
afb0a34d
GR
36 dmsk->dccpms_sequence_window = sysctl_dccp_feat_sequence_window;
37 dmsk->dccpms_rx_ccid = sysctl_dccp_feat_rx_ccid;
38 dmsk->dccpms_tx_ccid = sysctl_dccp_feat_tx_ccid;
39 dmsk->dccpms_ack_ratio = sysctl_dccp_feat_ack_ratio;
40 dmsk->dccpms_send_ack_vector = sysctl_dccp_feat_send_ack_vector;
41 dmsk->dccpms_send_ndp_count = sysctl_dccp_feat_send_ndp_count;
7c657876
ACM
42}
43
44static u32 dccp_decode_value_var(const unsigned char *bf, const u8 len)
45{
46 u32 value = 0;
47
48 if (len > 3)
49 value += *bf++ << 24;
50 if (len > 2)
51 value += *bf++ << 16;
52 if (len > 1)
53 value += *bf++ << 8;
54 if (len > 0)
55 value += *bf;
56
57 return value;
58}
59
60int dccp_parse_options(struct sock *sk, struct sk_buff *skb)
61{
62 struct dccp_sock *dp = dccp_sk(sk);
725ba8ee 63#ifdef CONFIG_IP_DCCP_DEBUG
7690af3f
ACM
64 const char *debug_prefix = dp->dccps_role == DCCP_ROLE_CLIENT ?
65 "CLIENT rx opt: " : "server rx opt: ";
7c657876
ACM
66#endif
67 const struct dccp_hdr *dh = dccp_hdr(skb);
68 const u8 pkt_type = DCCP_SKB_CB(skb)->dccpd_type;
69 unsigned char *options = (unsigned char *)dh + dccp_hdr_len(skb);
70 unsigned char *opt_ptr = options;
7690af3f
ACM
71 const unsigned char *opt_end = (unsigned char *)dh +
72 (dh->dccph_doff * 4);
7c657876
ACM
73 struct dccp_options_received *opt_recv = &dp->dccps_options_received;
74 unsigned char opt, len;
75 unsigned char *value;
1c14ac0a 76 u32 elapsed_time;
afe00251
AB
77 int rc;
78 int mandatory = 0;
7c657876
ACM
79
80 memset(opt_recv, 0, sizeof(*opt_recv));
81
fb950496 82 opt = len = 0;
7c657876
ACM
83 while (opt_ptr != opt_end) {
84 opt = *opt_ptr++;
85 len = 0;
86 value = NULL;
87
88 /* Check if this isn't a single byte option */
89 if (opt > DCCPO_MAX_RESERVED) {
90 if (opt_ptr == opt_end)
91 goto out_invalid_option;
92
93 len = *opt_ptr++;
94 if (len < 3)
95 goto out_invalid_option;
96 /*
97 * Remove the type and len fields, leaving
98 * just the value size
99 */
100 len -= 2;
101 value = opt_ptr;
102 opt_ptr += len;
103
104 if (opt_ptr > opt_end)
105 goto out_invalid_option;
106 }
107
108 switch (opt) {
109 case DCCPO_PADDING:
110 break;
afe00251
AB
111 case DCCPO_MANDATORY:
112 if (mandatory)
113 goto out_invalid_option;
6df9424a
ACM
114 if (pkt_type != DCCP_PKT_DATA)
115 mandatory = 1;
afe00251 116 break;
7c657876
ACM
117 case DCCPO_NDP_COUNT:
118 if (len > 3)
119 goto out_invalid_option;
120
121 opt_recv->dccpor_ndp = dccp_decode_value_var(value, len);
7690af3f
ACM
122 dccp_pr_debug("%sNDP count=%d\n", debug_prefix,
123 opt_recv->dccpor_ndp);
7c657876 124 break;
afe00251
AB
125 case DCCPO_CHANGE_L:
126 /* fall through */
127 case DCCPO_CHANGE_R:
128 if (len < 2)
129 goto out_invalid_option;
130 rc = dccp_feat_change_recv(sk, opt, *value, value + 1,
131 len - 1);
132 /*
133 * When there is a change error, change_recv is
134 * responsible for dealing with it. i.e. reply with an
135 * empty confirm.
136 * If the change was mandatory, then we need to die.
137 */
138 if (rc && mandatory)
139 goto out_invalid_option;
140 break;
141 case DCCPO_CONFIRM_L:
142 /* fall through */
143 case DCCPO_CONFIRM_R:
144 if (len < 2)
145 goto out_invalid_option;
146 if (dccp_feat_confirm_recv(sk, opt, *value,
147 value + 1, len - 1))
148 goto out_invalid_option;
149 break;
7c657876 150 case DCCPO_ACK_VECTOR_0:
ae31c339 151 case DCCPO_ACK_VECTOR_1:
7c657876 152 if (pkt_type == DCCP_PKT_DATA)
e5a6de91 153 break;
7c657876 154
a4bf3902 155 if (dccp_msk(sk)->dccpms_send_ack_vector &&
ae31c339
ACM
156 dccp_ackvec_parse(sk, skb, opt, value, len))
157 goto out_invalid_option;
7c657876
ACM
158 break;
159 case DCCPO_TIMESTAMP:
160 if (len != 4)
161 goto out_invalid_option;
162
60fe62e7 163 opt_recv->dccpor_timestamp = ntohl(*(__be32 *)value);
7c657876
ACM
164
165 dp->dccps_timestamp_echo = opt_recv->dccpor_timestamp;
b0e56780 166 dccp_timestamp(sk, &dp->dccps_timestamp_time);
7c657876
ACM
167
168 dccp_pr_debug("%sTIMESTAMP=%u, ackno=%llu\n",
169 debug_prefix, opt_recv->dccpor_timestamp,
f6ccf554 170 (unsigned long long)
7c657876
ACM
171 DCCP_SKB_CB(skb)->dccpd_ack_seq);
172 break;
173 case DCCPO_TIMESTAMP_ECHO:
1bc09869 174 if (len != 4 && len != 6 && len != 8)
7c657876
ACM
175 goto out_invalid_option;
176
60fe62e7 177 opt_recv->dccpor_timestamp_echo = ntohl(*(__be32 *)value);
7c657876 178
1bc09869 179 dccp_pr_debug("%sTIMESTAMP_ECHO=%u, len=%d, ackno=%llu, ",
7690af3f
ACM
180 debug_prefix,
181 opt_recv->dccpor_timestamp_echo,
f6ccf554
DM
182 len + 2,
183 (unsigned long long)
1bc09869
IM
184 DCCP_SKB_CB(skb)->dccpd_ack_seq);
185
1bc09869 186
1c14ac0a
ACM
187 if (len == 4)
188 break;
189
190 if (len == 6)
60fe62e7 191 elapsed_time = ntohs(*(__be16 *)(value + 4));
1c14ac0a 192 else
60fe62e7 193 elapsed_time = ntohl(*(__be32 *)(value + 4));
1c14ac0a
ACM
194
195 /* Give precedence to the biggest ELAPSED_TIME */
196 if (elapsed_time > opt_recv->dccpor_elapsed_time)
197 opt_recv->dccpor_elapsed_time = elapsed_time;
7c657876
ACM
198 break;
199 case DCCPO_ELAPSED_TIME:
1bc09869 200 if (len != 2 && len != 4)
7c657876
ACM
201 goto out_invalid_option;
202
203 if (pkt_type == DCCP_PKT_DATA)
204 continue;
1bc09869
IM
205
206 if (len == 2)
60fe62e7 207 elapsed_time = ntohs(*(__be16 *)value);
1bc09869 208 else
60fe62e7 209 elapsed_time = ntohl(*(__be32 *)value);
1c14ac0a
ACM
210
211 if (elapsed_time > opt_recv->dccpor_elapsed_time)
212 opt_recv->dccpor_elapsed_time = elapsed_time;
1bc09869 213
7c657876 214 dccp_pr_debug("%sELAPSED_TIME=%d\n", debug_prefix,
1c14ac0a 215 elapsed_time);
7c657876
ACM
216 break;
217 /*
0e64e94e 218 * From RFC 4340, sec. 10.3:
7c657876 219 *
7690af3f
ACM
220 * Option numbers 128 through 191 are for
221 * options sent from the HC-Sender to the
222 * HC-Receiver; option numbers 192 through 255
223 * are for options sent from the HC-Receiver to
224 * the HC-Sender.
7c657876
ACM
225 */
226 case 128 ... 191: {
227 const u16 idx = value - options;
228
7690af3f
ACM
229 if (ccid_hc_rx_parse_options(dp->dccps_hc_rx_ccid, sk,
230 opt, len, idx,
231 value) != 0)
7c657876
ACM
232 goto out_invalid_option;
233 }
234 break;
235 case 192 ... 255: {
236 const u16 idx = value - options;
237
7690af3f
ACM
238 if (ccid_hc_tx_parse_options(dp->dccps_hc_tx_ccid, sk,
239 opt, len, idx,
240 value) != 0)
7c657876
ACM
241 goto out_invalid_option;
242 }
243 break;
244 default:
7690af3f
ACM
245 pr_info("DCCP(%p): option %d(len=%d) not "
246 "implemented, ignoring\n",
7c657876
ACM
247 sk, opt, len);
248 break;
249 }
afe00251
AB
250
251 if (opt != DCCPO_MANDATORY)
252 mandatory = 0;
7c657876
ACM
253 }
254
6df9424a
ACM
255 /* mandatory was the last byte in option list -> reset connection */
256 if (mandatory)
257 goto out_invalid_option;
258
7c657876
ACM
259 return 0;
260
261out_invalid_option:
262 DCCP_INC_STATS_BH(DCCP_MIB_INVALIDOPT);
263 DCCP_SKB_CB(skb)->dccpd_reset_code = DCCP_RESET_CODE_OPTION_ERROR;
264 pr_info("DCCP(%p): invalid option %d, len=%d\n", sk, opt, len);
265 return -1;
266}
267
b61fafc4
ACM
268EXPORT_SYMBOL_GPL(dccp_parse_options);
269
7c657876
ACM
270static void dccp_encode_value_var(const u32 value, unsigned char *to,
271 const unsigned int len)
272{
273 if (len > 3)
274 *to++ = (value & 0xFF000000) >> 24;
275 if (len > 2)
276 *to++ = (value & 0xFF0000) >> 16;
277 if (len > 1)
278 *to++ = (value & 0xFF00) >> 8;
279 if (len > 0)
280 *to++ = (value & 0xFF);
281}
282
283static inline int dccp_ndp_len(const int ndp)
284{
285 return likely(ndp <= 0xFF) ? 1 : ndp <= 0xFFFF ? 2 : 3;
286}
287
2d0817d1 288int dccp_insert_option(struct sock *sk, struct sk_buff *skb,
7c657876
ACM
289 const unsigned char option,
290 const void *value, const unsigned char len)
291{
292 unsigned char *to;
293
2d0817d1
ACM
294 if (DCCP_SKB_CB(skb)->dccpd_opt_len + len + 2 > DCCP_MAX_OPT_LEN)
295 return -1;
7c657876
ACM
296
297 DCCP_SKB_CB(skb)->dccpd_opt_len += len + 2;
298
299 to = skb_push(skb, len + 2);
300 *to++ = option;
301 *to++ = len + 2;
302
303 memcpy(to, value, len);
2d0817d1 304 return 0;
7c657876
ACM
305}
306
307EXPORT_SYMBOL_GPL(dccp_insert_option);
308
2d0817d1 309static int dccp_insert_option_ndp(struct sock *sk, struct sk_buff *skb)
7c657876
ACM
310{
311 struct dccp_sock *dp = dccp_sk(sk);
312 int ndp = dp->dccps_ndp_count;
313
314 if (dccp_non_data_packet(skb))
315 ++dp->dccps_ndp_count;
316 else
317 dp->dccps_ndp_count = 0;
318
319 if (ndp > 0) {
320 unsigned char *ptr;
321 const int ndp_len = dccp_ndp_len(ndp);
322 const int len = ndp_len + 2;
323
324 if (DCCP_SKB_CB(skb)->dccpd_opt_len + len > DCCP_MAX_OPT_LEN)
2d0817d1 325 return -1;
7c657876
ACM
326
327 DCCP_SKB_CB(skb)->dccpd_opt_len += len;
328
329 ptr = skb_push(skb, len);
330 *ptr++ = DCCPO_NDP_COUNT;
331 *ptr++ = len;
332 dccp_encode_value_var(ndp, ptr, ndp_len);
333 }
2d0817d1
ACM
334
335 return 0;
7c657876
ACM
336}
337
338static inline int dccp_elapsed_time_len(const u32 elapsed_time)
339{
b1c9fe7b 340 return elapsed_time == 0 ? 0 : elapsed_time <= 0xFFFF ? 2 : 4;
7c657876
ACM
341}
342
2d0817d1
ACM
343int dccp_insert_option_elapsed_time(struct sock *sk, struct sk_buff *skb,
344 u32 elapsed_time)
7c657876 345{
7c657876
ACM
346 const int elapsed_time_len = dccp_elapsed_time_len(elapsed_time);
347 const int len = 2 + elapsed_time_len;
348 unsigned char *to;
349
1bc09869 350 if (elapsed_time_len == 0)
2d0817d1 351 return 0;
7c657876 352
2d0817d1
ACM
353 if (DCCP_SKB_CB(skb)->dccpd_opt_len + len > DCCP_MAX_OPT_LEN)
354 return -1;
7c657876
ACM
355
356 DCCP_SKB_CB(skb)->dccpd_opt_len += len;
357
358 to = skb_push(skb, len);
359 *to++ = DCCPO_ELAPSED_TIME;
360 *to++ = len;
361
1bc09869 362 if (elapsed_time_len == 2) {
60fe62e7 363 const __be16 var16 = htons((u16)elapsed_time);
1bc09869
IM
364 memcpy(to, &var16, 2);
365 } else {
60fe62e7 366 const __be32 var32 = htonl(elapsed_time);
1bc09869
IM
367 memcpy(to, &var32, 4);
368 }
7c657876 369
2d0817d1 370 return 0;
7c657876
ACM
371}
372
d4b81ff7 373EXPORT_SYMBOL_GPL(dccp_insert_option_elapsed_time);
7c657876 374
b0e56780
ACM
375void dccp_timestamp(const struct sock *sk, struct timeval *tv)
376{
377 const struct dccp_sock *dp = dccp_sk(sk);
378
379 do_gettimeofday(tv);
380 tv->tv_sec -= dp->dccps_epoch.tv_sec;
381 tv->tv_usec -= dp->dccps_epoch.tv_usec;
382
383 while (tv->tv_usec < 0) {
384 tv->tv_sec--;
385 tv->tv_usec += USEC_PER_SEC;
386 }
387}
388
389EXPORT_SYMBOL_GPL(dccp_timestamp);
390
2d0817d1 391int dccp_insert_option_timestamp(struct sock *sk, struct sk_buff *skb)
7c657876 392{
1bc09869 393 struct timeval tv;
60fe62e7 394 __be32 now;
afe00251 395
b0e56780 396 dccp_timestamp(sk, &tv);
60fe62e7 397 now = htonl(timeval_usecs(&tv) / 10);
1bc09869
IM
398 /* yes this will overflow but that is the point as we want a
399 * 10 usec 32 bit timer which mean it wraps every 11.9 hours */
400
2d0817d1 401 return dccp_insert_option(sk, skb, DCCPO_TIMESTAMP, &now, sizeof(now));
7c657876
ACM
402}
403
d4b81ff7
ACM
404EXPORT_SYMBOL_GPL(dccp_insert_option_timestamp);
405
2d0817d1
ACM
406static int dccp_insert_option_timestamp_echo(struct sock *sk,
407 struct sk_buff *skb)
7c657876
ACM
408{
409 struct dccp_sock *dp = dccp_sk(sk);
b0e56780 410 struct timeval now;
60fe62e7 411 __be32 tstamp_echo;
b0e56780
ACM
412 u32 elapsed_time;
413 int len, elapsed_time_len;
7c657876
ACM
414 unsigned char *to;
415
b0e56780
ACM
416 dccp_timestamp(sk, &now);
417 elapsed_time = timeval_delta(&now, &dp->dccps_timestamp_time) / 10;
418 elapsed_time_len = dccp_elapsed_time_len(elapsed_time);
419 len = 6 + elapsed_time_len;
420
2d0817d1
ACM
421 if (DCCP_SKB_CB(skb)->dccpd_opt_len + len > DCCP_MAX_OPT_LEN)
422 return -1;
7c657876
ACM
423
424 DCCP_SKB_CB(skb)->dccpd_opt_len += len;
425
426 to = skb_push(skb, len);
427 *to++ = DCCPO_TIMESTAMP_ECHO;
428 *to++ = len;
429
430 tstamp_echo = htonl(dp->dccps_timestamp_echo);
431 memcpy(to, &tstamp_echo, 4);
432 to += 4;
afe00251 433
1bc09869 434 if (elapsed_time_len == 2) {
60fe62e7 435 const __be16 var16 = htons((u16)elapsed_time);
1bc09869
IM
436 memcpy(to, &var16, 2);
437 } else if (elapsed_time_len == 4) {
60fe62e7 438 const __be32 var32 = htonl(elapsed_time);
1bc09869
IM
439 memcpy(to, &var32, 4);
440 }
7c657876 441
7c657876 442 dp->dccps_timestamp_echo = 0;
1bc09869
IM
443 dp->dccps_timestamp_time.tv_sec = 0;
444 dp->dccps_timestamp_time.tv_usec = 0;
2d0817d1 445 return 0;
7c657876
ACM
446}
447
afe00251
AB
448static int dccp_insert_feat_opt(struct sk_buff *skb, u8 type, u8 feat,
449 u8 *val, u8 len)
450{
451 u8 *to;
452
453 if (DCCP_SKB_CB(skb)->dccpd_opt_len + len + 3 > DCCP_MAX_OPT_LEN) {
454 LIMIT_NETDEBUG(KERN_INFO "DCCP: packet too small"
455 " to insert feature %d option!\n", feat);
456 return -1;
457 }
458
459 DCCP_SKB_CB(skb)->dccpd_opt_len += len + 3;
460
461 to = skb_push(skb, len + 3);
462 *to++ = type;
463 *to++ = len + 3;
464 *to++ = feat;
465
466 if (len)
467 memcpy(to, val, len);
afe00251 468
c02fdc0e
GR
469 dccp_pr_debug("%s(%s (%d), ...), length %d\n",
470 dccp_feat_typename(type),
471 dccp_feat_name(feat), feat, len);
afe00251
AB
472 return 0;
473}
474
2d0817d1 475static int dccp_insert_options_feat(struct sock *sk, struct sk_buff *skb)
afe00251
AB
476{
477 struct dccp_sock *dp = dccp_sk(sk);
a4bf3902 478 struct dccp_minisock *dmsk = dccp_msk(sk);
afe00251
AB
479 struct dccp_opt_pend *opt, *next;
480 int change = 0;
481
482 /* confirm any options [NN opts] */
a4bf3902 483 list_for_each_entry_safe(opt, next, &dmsk->dccpms_conf, dccpop_node) {
afe00251
AB
484 dccp_insert_feat_opt(skb, opt->dccpop_type,
485 opt->dccpop_feat, opt->dccpop_val,
486 opt->dccpop_len);
487 /* fear empty confirms */
488 if (opt->dccpop_val)
489 kfree(opt->dccpop_val);
490 kfree(opt);
491 }
a4bf3902 492 INIT_LIST_HEAD(&dmsk->dccpms_conf);
afe00251
AB
493
494 /* see which features we need to send */
a4bf3902 495 list_for_each_entry(opt, &dmsk->dccpms_pending, dccpop_node) {
afe00251
AB
496 /* see if we need to send any confirm */
497 if (opt->dccpop_sc) {
498 dccp_insert_feat_opt(skb, opt->dccpop_type + 1,
499 opt->dccpop_feat,
500 opt->dccpop_sc->dccpoc_val,
501 opt->dccpop_sc->dccpoc_len);
502
503 BUG_ON(!opt->dccpop_sc->dccpoc_val);
504 kfree(opt->dccpop_sc->dccpoc_val);
505 kfree(opt->dccpop_sc);
506 opt->dccpop_sc = NULL;
507 }
508
509 /* any option not confirmed, re-send it */
510 if (!opt->dccpop_conf) {
511 dccp_insert_feat_opt(skb, opt->dccpop_type,
512 opt->dccpop_feat, opt->dccpop_val,
513 opt->dccpop_len);
514 change++;
515 }
516 }
517
518 /* Retransmit timer.
519 * If this is the master listening sock, we don't set a timer on it. It
520 * should be fine because if the dude doesn't receive our RESPONSE
521 * [which will contain the CHANGE] he will send another REQUEST which
522 * will "retrnasmit" the change.
523 */
524 if (change && dp->dccps_role != DCCP_ROLE_LISTEN) {
525 dccp_pr_debug("reset feat negotiation timer %p\n", sk);
526
527 /* XXX don't reset the timer on re-transmissions. I.e. reset it
528 * only when sending new stuff i guess. Currently the timer
529 * never backs off because on re-transmission it just resets it!
530 */
531 inet_csk_reset_xmit_timer(sk, ICSK_TIME_RETRANS,
532 inet_csk(sk)->icsk_rto, DCCP_RTO_MAX);
533 }
2d0817d1
ACM
534
535 return 0;
afe00251
AB
536}
537
2d0817d1 538int dccp_insert_options(struct sock *sk, struct sk_buff *skb)
7c657876
ACM
539{
540 struct dccp_sock *dp = dccp_sk(sk);
a4bf3902 541 struct dccp_minisock *dmsk = dccp_msk(sk);
7c657876
ACM
542
543 DCCP_SKB_CB(skb)->dccpd_opt_len = 0;
544
a4bf3902 545 if (dmsk->dccpms_send_ndp_count &&
2d0817d1
ACM
546 dccp_insert_option_ndp(sk, skb))
547 return -1;
7c657876
ACM
548
549 if (!dccp_packet_without_ack(skb)) {
a4bf3902 550 if (dmsk->dccpms_send_ack_vector &&
2d0817d1
ACM
551 dccp_ackvec_pending(dp->dccps_hc_rx_ackvec) &&
552 dccp_insert_option_ackvec(sk, skb))
553 return -1;
554
555 if (dp->dccps_timestamp_echo != 0 &&
556 dccp_insert_option_timestamp_echo(sk, skb))
557 return -1;
7c657876
ACM
558 }
559
507d37cf 560 if (dp->dccps_hc_rx_insert_options) {
2d0817d1
ACM
561 if (ccid_hc_rx_insert_options(dp->dccps_hc_rx_ccid, sk, skb))
562 return -1;
507d37cf
ACM
563 dp->dccps_hc_rx_insert_options = 0;
564 }
565 if (dp->dccps_hc_tx_insert_options) {
2d0817d1
ACM
566 if (ccid_hc_tx_insert_options(dp->dccps_hc_tx_ccid, sk, skb))
567 return -1;
507d37cf
ACM
568 dp->dccps_hc_tx_insert_options = 0;
569 }
7c657876 570
afe00251 571 /* Feature negotiation */
2d0817d1
ACM
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;
afe00251 577
7c657876
ACM
578 /* XXX: insert other options when appropriate */
579
580 if (DCCP_SKB_CB(skb)->dccpd_opt_len != 0) {
581 /* The length of all options has to be a multiple of 4 */
582 int padding = DCCP_SKB_CB(skb)->dccpd_opt_len % 4;
583
584 if (padding != 0) {
585 padding = 4 - padding;
586 memset(skb_push(skb, padding), 0, padding);
587 DCCP_SKB_CB(skb)->dccpd_opt_len += padding;
588 }
589 }
2d0817d1
ACM
590
591 return 0;
7c657876 592}
This page took 0.178978 seconds and 5 git commands to generate.