inet: drop prev pointer handling in request sock
[deliverable/linux.git] / net / dccp / ipv6.c
CommitLineData
3df80d93
ACM
1/*
2 * DCCP over IPv6
45329e71 3 * Linux INET6 implementation
3df80d93
ACM
4 *
5 * Based on net/dccp6/ipv6.c
6 *
7 * Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
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 */
14
3df80d93
ACM
15#include <linux/module.h>
16#include <linux/random.h>
5a0e3ad6 17#include <linux/slab.h>
3df80d93
ACM
18#include <linux/xfrm.h>
19
20#include <net/addrconf.h>
21#include <net/inet_common.h>
22#include <net/inet_hashtables.h>
14c85021 23#include <net/inet_sock.h>
3df80d93
ACM
24#include <net/inet6_connection_sock.h>
25#include <net/inet6_hashtables.h>
26#include <net/ip6_route.h>
27#include <net/ipv6.h>
28#include <net/protocol.h>
29#include <net/transp_v6.h>
aa0e4e4a 30#include <net/ip6_checksum.h>
3df80d93 31#include <net/xfrm.h>
6e5714ea 32#include <net/secure_seq.h>
3df80d93
ACM
33
34#include "dccp.h"
35#include "ipv6.h"
4b79f0af 36#include "feat.h"
3df80d93 37
13f51d82 38/* The per-net dccp.v6_ctl_sk is used for sending RSTs and ACKs */
72478873 39
3b401a81
SH
40static const struct inet_connection_sock_af_ops dccp_ipv6_mapped;
41static const struct inet_connection_sock_af_ops dccp_ipv6_af_ops;
3df80d93 42
6f4e5fff 43/* add pseudo-header to DCCP checksum stored in skb->csum */
868c86bc 44static inline __sum16 dccp_v6_csum_finish(struct sk_buff *skb,
b71d1d42
ED
45 const struct in6_addr *saddr,
46 const struct in6_addr *daddr)
3df80d93 47{
6f4e5fff
GR
48 return csum_ipv6_magic(saddr, daddr, skb->len, IPPROTO_DCCP, skb->csum);
49}
50
bb296246 51static inline void dccp_v6_send_check(struct sock *sk, struct sk_buff *skb)
6f4e5fff
GR
52{
53 struct ipv6_pinfo *np = inet6_sk(sk);
54 struct dccp_hdr *dh = dccp_hdr(skb);
55
56 dccp_csum_outgoing(skb);
efe4208f 57 dh->dccph_checksum = dccp_v6_csum_finish(skb, &np->saddr, &sk->sk_v6_daddr);
3df80d93
ACM
58}
59
6e5714ea 60static inline __u64 dccp_v6_init_sequence(struct sk_buff *skb)
d7f7365f 61{
0660e03f
ACM
62 return secure_dccpv6_sequence_number(ipv6_hdr(skb)->daddr.s6_addr32,
63 ipv6_hdr(skb)->saddr.s6_addr32,
d7f7365f
GR
64 dccp_hdr(skb)->dccph_dport,
65 dccp_hdr(skb)->dccph_sport );
66
3df80d93
ACM
67}
68
3df80d93 69static void dccp_v6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
d5fdd6ba 70 u8 type, u8 code, int offset, __be32 info)
3df80d93 71{
b71d1d42 72 const struct ipv6hdr *hdr = (const struct ipv6hdr *)skb->data;
3df80d93 73 const struct dccp_hdr *dh = (struct dccp_hdr *)(skb->data + offset);
e0bcfb0c 74 struct dccp_sock *dp;
3df80d93
ACM
75 struct ipv6_pinfo *np;
76 struct sock *sk;
77 int err;
78 __u64 seq;
ca12a1a4 79 struct net *net = dev_net(skb->dev);
3df80d93 80
860239c5
WY
81 if (skb->len < offset + sizeof(*dh) ||
82 skb->len < offset + __dccp_basic_hdr_len(dh)) {
e41b5368
DL
83 ICMP6_INC_STATS_BH(net, __in6_dev_get(skb->dev),
84 ICMP6_MIB_INERRORS);
860239c5
WY
85 return;
86 }
87
ca12a1a4 88 sk = inet6_lookup(net, &dccp_hashinfo,
671a1c74 89 &hdr->daddr, dh->dccph_dport,
d86e0dac 90 &hdr->saddr, dh->dccph_sport, inet6_iif(skb));
3df80d93
ACM
91
92 if (sk == NULL) {
e41b5368
DL
93 ICMP6_INC_STATS_BH(net, __in6_dev_get(skb->dev),
94 ICMP6_MIB_INERRORS);
3df80d93
ACM
95 return;
96 }
97
98 if (sk->sk_state == DCCP_TIME_WAIT) {
9469c7b4 99 inet_twsk_put(inet_twsk(sk));
3df80d93
ACM
100 return;
101 }
102
103 bh_lock_sock(sk);
104 if (sock_owned_by_user(sk))
de0744af 105 NET_INC_STATS_BH(net, LINUX_MIB_LOCKDROPPEDICMPS);
3df80d93
ACM
106
107 if (sk->sk_state == DCCP_CLOSED)
108 goto out;
109
e0bcfb0c
WY
110 dp = dccp_sk(sk);
111 seq = dccp_hdr_seq(dh);
112 if ((1 << sk->sk_state) & ~(DCCPF_REQUESTING | DCCPF_LISTEN) &&
113 !between48(seq, dp->dccps_awl, dp->dccps_awh)) {
114 NET_INC_STATS_BH(net, LINUX_MIB_OUTOFWINDOWICMPS);
115 goto out;
116 }
117
3df80d93
ACM
118 np = inet6_sk(sk);
119
ec18d9a2
DM
120 if (type == NDISC_REDIRECT) {
121 struct dst_entry *dst = __sk_dst_check(sk, np->dst_cookie);
122
1ed5c48f 123 if (dst)
6700c270 124 dst->ops->redirect(dst, sk, skb);
bd784a14 125 goto out;
ec18d9a2
DM
126 }
127
3df80d93 128 if (type == ICMPV6_PKT_TOOBIG) {
3df80d93
ACM
129 struct dst_entry *dst = NULL;
130
93b36cf3
HFS
131 if (!ip6_sk_accept_pmtu(sk))
132 goto out;
133
3df80d93
ACM
134 if (sock_owned_by_user(sk))
135 goto out;
136 if ((1 << sk->sk_state) & (DCCPF_LISTEN | DCCPF_CLOSED))
137 goto out;
138
35ad9b9c
DM
139 dst = inet6_csk_update_pmtu(sk, ntohl(info));
140 if (!dst)
141 goto out;
142
143 if (inet_csk(sk)->icsk_pmtu_cookie > dst_mtu(dst))
3df80d93 144 dccp_sync_mss(sk, dst_mtu(dst));
3df80d93
ACM
145 goto out;
146 }
147
148 icmpv6_err_convert(type, code, &err);
149
3df80d93
ACM
150 /* Might be for an request_sock */
151 switch (sk->sk_state) {
52452c54 152 struct request_sock *req;
3df80d93
ACM
153 case DCCP_LISTEN:
154 if (sock_owned_by_user(sk))
155 goto out;
156
52452c54 157 req = inet6_csk_search_req(sk, dh->dccph_dport,
3df80d93
ACM
158 &hdr->daddr, &hdr->saddr,
159 inet6_iif(skb));
45329e71 160 if (req == NULL)
3df80d93
ACM
161 goto out;
162
45329e71
ACM
163 /*
164 * ICMPs are not backlogged, hence we cannot get an established
165 * socket here.
3df80d93 166 */
547b792c 167 WARN_ON(req->sk != NULL);
3df80d93 168
f541fb7e
SJ
169 if (!between48(seq, dccp_rsk(req)->dreq_iss,
170 dccp_rsk(req)->dreq_gss)) {
de0744af 171 NET_INC_STATS_BH(net, LINUX_MIB_OUTOFWINDOWICMPS);
3df80d93
ACM
172 goto out;
173 }
174
52452c54 175 inet_csk_reqsk_queue_drop(sk, req);
3df80d93
ACM
176 goto out;
177
178 case DCCP_REQUESTING:
179 case DCCP_RESPOND: /* Cannot happen.
45329e71 180 It can, it SYNs are crossed. --ANK */
3df80d93
ACM
181 if (!sock_owned_by_user(sk)) {
182 DCCP_INC_STATS_BH(DCCP_MIB_ATTEMPTFAILS);
183 sk->sk_err = err;
184 /*
185 * Wake people up to see the error
186 * (see connect in sock.c)
187 */
188 sk->sk_error_report(sk);
3df80d93
ACM
189 dccp_done(sk);
190 } else
191 sk->sk_err_soft = err;
192 goto out;
193 }
194
195 if (!sock_owned_by_user(sk) && np->recverr) {
196 sk->sk_err = err;
197 sk->sk_error_report(sk);
198 } else
199 sk->sk_err_soft = err;
200
201out:
202 bh_unlock_sock(sk);
203 sock_put(sk);
204}
205
206
1a2c6181 207static int dccp_v6_send_response(struct sock *sk, struct request_sock *req)
3df80d93 208{
634fb979 209 struct inet_request_sock *ireq = inet_rsk(req);
3df80d93
ACM
210 struct ipv6_pinfo *np = inet6_sk(sk);
211 struct sk_buff *skb;
20c59de2 212 struct in6_addr *final_p, final;
4c9483b2 213 struct flowi6 fl6;
3df80d93 214 int err = -1;
fd80eb94 215 struct dst_entry *dst;
3df80d93 216
4c9483b2
DM
217 memset(&fl6, 0, sizeof(fl6));
218 fl6.flowi6_proto = IPPROTO_DCCP;
634fb979
ED
219 fl6.daddr = ireq->ir_v6_rmt_addr;
220 fl6.saddr = ireq->ir_v6_loc_addr;
4c9483b2 221 fl6.flowlabel = 0;
634fb979
ED
222 fl6.flowi6_oif = ireq->ir_iif;
223 fl6.fl6_dport = ireq->ir_rmt_port;
b44084c2 224 fl6.fl6_sport = htons(ireq->ir_num);
4c9483b2 225 security_req_classify_flow(req, flowi6_to_flowi(&fl6));
3df80d93 226
3df80d93 227
0979e465 228 final_p = fl6_update_dst(&fl6, np->opt, &final);
3df80d93 229
0e0d44ab 230 dst = ip6_dst_lookup_flow(sk, &fl6, final_p);
68d0c6d3
DM
231 if (IS_ERR(dst)) {
232 err = PTR_ERR(dst);
233 dst = NULL;
fd80eb94 234 goto done;
68d0c6d3 235 }
3df80d93
ACM
236
237 skb = dccp_make_response(sk, dst, req);
238 if (skb != NULL) {
239 struct dccp_hdr *dh = dccp_hdr(skb);
45329e71 240
6f4e5fff 241 dh->dccph_checksum = dccp_v6_csum_finish(skb,
634fb979
ED
242 &ireq->ir_v6_loc_addr,
243 &ireq->ir_v6_rmt_addr);
244 fl6.daddr = ireq->ir_v6_rmt_addr;
0979e465 245 err = ip6_xmit(sk, skb, &fl6, np->opt, np->tclass);
b9df3cb8 246 err = net_xmit_eval(err);
3df80d93
ACM
247 }
248
249done:
0cbd7825 250 dst_release(dst);
3df80d93
ACM
251 return err;
252}
253
254static void dccp_v6_reqsk_destructor(struct request_sock *req)
255{
d99a7bd2 256 dccp_feat_list_purge(&dccp_rsk(req)->dreq_featneg);
634fb979 257 kfree_skb(inet_rsk(req)->pktopts);
3df80d93
ACM
258}
259
cfb6eeb4 260static void dccp_v6_ctl_send_reset(struct sock *sk, struct sk_buff *rxskb)
3df80d93 261{
b71d1d42 262 const struct ipv6hdr *rxip6h;
3df80d93 263 struct sk_buff *skb;
4c9483b2 264 struct flowi6 fl6;
adf30907 265 struct net *net = dev_net(skb_dst(rxskb)->dev);
334527d3 266 struct sock *ctl_sk = net->dccp.v6_ctl_sk;
adf30907 267 struct dst_entry *dst;
3df80d93 268
e356d37a 269 if (dccp_hdr(rxskb)->dccph_type == DCCP_PKT_RESET)
3df80d93
ACM
270 return;
271
272 if (!ipv6_unicast_destination(rxskb))
45329e71 273 return;
3df80d93 274
02047741 275 skb = dccp_ctl_make_reset(ctl_sk, rxskb);
45329e71 276 if (skb == NULL)
8109b02b 277 return;
3df80d93 278
0660e03f 279 rxip6h = ipv6_hdr(rxskb);
e356d37a
GR
280 dccp_hdr(skb)->dccph_checksum = dccp_v6_csum_finish(skb, &rxip6h->saddr,
281 &rxip6h->daddr);
6f4e5fff 282
4c9483b2 283 memset(&fl6, 0, sizeof(fl6));
4e3fd7a0
AD
284 fl6.daddr = rxip6h->saddr;
285 fl6.saddr = rxip6h->daddr;
6f4e5fff 286
4c9483b2
DM
287 fl6.flowi6_proto = IPPROTO_DCCP;
288 fl6.flowi6_oif = inet6_iif(rxskb);
1958b856
DM
289 fl6.fl6_dport = dccp_hdr(skb)->dccph_dport;
290 fl6.fl6_sport = dccp_hdr(skb)->dccph_sport;
4c9483b2 291 security_skb_classify_flow(rxskb, flowi6_to_flowi(&fl6));
3df80d93
ACM
292
293 /* sk = NULL, but it is safe for now. RST socket required. */
0e0d44ab 294 dst = ip6_dst_lookup_flow(ctl_sk, &fl6, NULL);
68d0c6d3
DM
295 if (!IS_ERR(dst)) {
296 skb_dst_set(skb, dst);
b903d324 297 ip6_xmit(ctl_sk, skb, &fl6, NULL, 0);
68d0c6d3
DM
298 DCCP_INC_STATS_BH(DCCP_MIB_OUTSEGS);
299 DCCP_INC_STATS_BH(DCCP_MIB_OUTRSTS);
300 return;
3df80d93
ACM
301 }
302
303 kfree_skb(skb);
304}
305
73c9e02c
GR
306static struct request_sock_ops dccp6_request_sock_ops = {
307 .family = AF_INET6,
308 .obj_size = sizeof(struct dccp6_request_sock),
309 .rtx_syn_ack = dccp_v6_send_response,
310 .send_ack = dccp_reqsk_send_ack,
311 .destructor = dccp_v6_reqsk_destructor,
312 .send_reset = dccp_v6_ctl_send_reset,
c72e1183 313 .syn_ack_timeout = dccp_syn_ack_timeout,
73c9e02c
GR
314};
315
3df80d93
ACM
316static struct sock *dccp_v6_hnd_req(struct sock *sk,struct sk_buff *skb)
317{
318 const struct dccp_hdr *dh = dccp_hdr(skb);
0660e03f 319 const struct ipv6hdr *iph = ipv6_hdr(skb);
52452c54 320 struct request_sock *req;
3df80d93 321 struct sock *nsk;
52452c54
ED
322
323 req = inet6_csk_search_req(sk, dh->dccph_sport, &iph->saddr,
324 &iph->daddr, inet6_iif(skb));
3df80d93 325 if (req != NULL)
52452c54 326 return dccp_check_req(sk, skb, req);
3df80d93 327
671a1c74 328 nsk = __inet6_lookup_established(sock_net(sk), &dccp_hashinfo,
3df80d93
ACM
329 &iph->saddr, dh->dccph_sport,
330 &iph->daddr, ntohs(dh->dccph_dport),
331 inet6_iif(skb));
3df80d93
ACM
332 if (nsk != NULL) {
333 if (nsk->sk_state != DCCP_TIME_WAIT) {
334 bh_lock_sock(nsk);
335 return nsk;
336 }
9469c7b4 337 inet_twsk_put(inet_twsk(nsk));
3df80d93
ACM
338 return NULL;
339 }
340
341 return sk;
342}
343
344static int dccp_v6_conn_request(struct sock *sk, struct sk_buff *skb)
345{
3df80d93
ACM
346 struct request_sock *req;
347 struct dccp_request_sock *dreq;
634fb979 348 struct inet_request_sock *ireq;
3df80d93 349 struct ipv6_pinfo *np = inet6_sk(sk);
8109b02b 350 const __be32 service = dccp_hdr_request(skb)->dccph_req_service;
3df80d93 351 struct dccp_skb_cb *dcb = DCCP_SKB_CB(skb);
3df80d93
ACM
352
353 if (skb->protocol == htons(ETH_P_IP))
354 return dccp_v4_conn_request(sk, skb);
355
356 if (!ipv6_unicast_destination(skb))
4a5409a5 357 return 0; /* discard, don't send a reset here */
3df80d93
ACM
358
359 if (dccp_bad_service_code(sk, service)) {
4a5409a5 360 dcb->dccpd_reset_code = DCCP_RESET_CODE_BAD_SERVICE_CODE;
3df80d93 361 goto drop;
8109b02b 362 }
3df80d93 363 /*
45329e71 364 * There are no SYN attacks on IPv6, yet...
3df80d93 365 */
4a5409a5 366 dcb->dccpd_reset_code = DCCP_RESET_CODE_TOO_BUSY;
3df80d93 367 if (inet_csk_reqsk_queue_is_full(sk))
45329e71 368 goto drop;
3df80d93
ACM
369
370 if (sk_acceptq_is_full(sk) && inet_csk_reqsk_queue_young(sk) > 1)
371 goto drop;
372
407640de 373 req = inet_reqsk_alloc(&dccp6_request_sock_ops, sk);
3df80d93
ACM
374 if (req == NULL)
375 goto drop;
376
ac75773c
GR
377 if (dccp_reqsk_init(req, dccp_sk(sk), skb))
378 goto drop_and_free;
3df80d93 379
8b819412
GR
380 dreq = dccp_rsk(req);
381 if (dccp_parse_options(sk, dreq, skb))
382 goto drop_and_free;
383
4237c75c
VY
384 if (security_inet_conn_request(sk, skb, req))
385 goto drop_and_free;
386
634fb979
ED
387 ireq = inet_rsk(req);
388 ireq->ir_v6_rmt_addr = ipv6_hdr(skb)->saddr;
389 ireq->ir_v6_loc_addr = ipv6_hdr(skb)->daddr;
3f66b083 390 ireq->ireq_family = AF_INET6;
3df80d93 391
a224772d 392 if (ipv6_opt_accepted(sk, skb, IP6CB(skb)) ||
3df80d93
ACM
393 np->rxopt.bits.rxinfo || np->rxopt.bits.rxoinfo ||
394 np->rxopt.bits.rxhlim || np->rxopt.bits.rxohlim) {
395 atomic_inc(&skb->users);
634fb979 396 ireq->pktopts = skb;
3df80d93 397 }
634fb979 398 ireq->ir_iif = sk->sk_bound_dev_if;
3df80d93
ACM
399
400 /* So that link locals have meaning */
401 if (!sk->sk_bound_dev_if &&
634fb979
ED
402 ipv6_addr_type(&ireq->ir_v6_rmt_addr) & IPV6_ADDR_LINKLOCAL)
403 ireq->ir_iif = inet6_iif(skb);
3df80d93 404
45329e71 405 /*
3df80d93
ACM
406 * Step 3: Process LISTEN state
407 *
d83ca5ac 408 * Set S.ISR, S.GSR, S.SWL, S.SWH from packet or Init Cookie
3df80d93 409 *
f541fb7e 410 * Setting S.SWL/S.SWH to is deferred to dccp_create_openreq_child().
3df80d93 411 */
3df80d93 412 dreq->dreq_isr = dcb->dccpd_seq;
f541fb7e 413 dreq->dreq_gsr = dreq->dreq_isr;
865e9022 414 dreq->dreq_iss = dccp_v6_init_sequence(skb);
f541fb7e 415 dreq->dreq_gss = dreq->dreq_iss;
3df80d93
ACM
416 dreq->dreq_service = service;
417
1a2c6181 418 if (dccp_v6_send_response(sk, req))
3df80d93
ACM
419 goto drop_and_free;
420
421 inet6_csk_reqsk_queue_hash_add(sk, req, DCCP_TIMEOUT_INIT);
422 return 0;
423
424drop_and_free:
425 reqsk_free(req);
426drop:
427 DCCP_INC_STATS_BH(DCCP_MIB_ATTEMPTFAILS);
3df80d93
ACM
428 return -1;
429}
430
431static struct sock *dccp_v6_request_recv_sock(struct sock *sk,
432 struct sk_buff *skb,
433 struct request_sock *req,
434 struct dst_entry *dst)
435{
634fb979 436 struct inet_request_sock *ireq = inet_rsk(req);
3df80d93
ACM
437 struct ipv6_pinfo *newnp, *np = inet6_sk(sk);
438 struct inet_sock *newinet;
3df80d93
ACM
439 struct dccp6_sock *newdp6;
440 struct sock *newsk;
3df80d93
ACM
441
442 if (skb->protocol == htons(ETH_P_IP)) {
443 /*
444 * v6 mapped
445 */
3df80d93 446 newsk = dccp_v4_request_recv_sock(sk, skb, req, dst);
45329e71 447 if (newsk == NULL)
3df80d93
ACM
448 return NULL;
449
450 newdp6 = (struct dccp6_sock *)newsk;
3df80d93
ACM
451 newinet = inet_sk(newsk);
452 newinet->pinet6 = &newdp6->inet6;
453 newnp = inet6_sk(newsk);
454
455 memcpy(newnp, np, sizeof(struct ipv6_pinfo));
456
d1e559d0 457 newnp->saddr = newsk->sk_v6_rcv_saddr;
3df80d93
ACM
458
459 inet_csk(newsk)->icsk_af_ops = &dccp_ipv6_mapped;
460 newsk->sk_backlog_rcv = dccp_v4_do_rcv;
461 newnp->pktoptions = NULL;
462 newnp->opt = NULL;
463 newnp->mcast_oif = inet6_iif(skb);
0660e03f 464 newnp->mcast_hops = ipv6_hdr(skb)->hop_limit;
3df80d93
ACM
465
466 /*
467 * No need to charge this sock to the relevant IPv6 refcnt debug socks count
468 * here, dccp_create_openreq_child now does this for us, see the comment in
469 * that function for the gory details. -acme
470 */
471
472 /* It is tricky place. Until this moment IPv4 tcp
473 worked with IPv6 icsk.icsk_af_ops.
474 Sync it now.
475 */
d83d8461 476 dccp_sync_mss(newsk, inet_csk(newsk)->icsk_pmtu_cookie);
3df80d93
ACM
477
478 return newsk;
479 }
480
3df80d93
ACM
481
482 if (sk_acceptq_is_full(sk))
483 goto out_overflow;
484
3df80d93 485 if (dst == NULL) {
20c59de2 486 struct in6_addr *final_p, final;
4c9483b2
DM
487 struct flowi6 fl6;
488
489 memset(&fl6, 0, sizeof(fl6));
490 fl6.flowi6_proto = IPPROTO_DCCP;
634fb979 491 fl6.daddr = ireq->ir_v6_rmt_addr;
0979e465 492 final_p = fl6_update_dst(&fl6, np->opt, &final);
634fb979 493 fl6.saddr = ireq->ir_v6_loc_addr;
4c9483b2 494 fl6.flowi6_oif = sk->sk_bound_dev_if;
634fb979 495 fl6.fl6_dport = ireq->ir_rmt_port;
b44084c2 496 fl6.fl6_sport = htons(ireq->ir_num);
4c9483b2
DM
497 security_sk_classify_flow(sk, flowi6_to_flowi(&fl6));
498
0e0d44ab 499 dst = ip6_dst_lookup_flow(sk, &fl6, final_p);
68d0c6d3 500 if (IS_ERR(dst))
3df80d93 501 goto out;
45329e71 502 }
3df80d93
ACM
503
504 newsk = dccp_create_openreq_child(sk, req, skb);
505 if (newsk == NULL)
093d2823 506 goto out_nonewsk;
3df80d93
ACM
507
508 /*
509 * No need to charge this sock to the relevant IPv6 refcnt debug socks
510 * count here, dccp_create_openreq_child now does this for us, see the
511 * comment in that function for the gory details. -acme
512 */
513
8e1ef0a9 514 __ip6_dst_store(newsk, dst, NULL, NULL);
45329e71
ACM
515 newsk->sk_route_caps = dst->dev->features & ~(NETIF_F_IP_CSUM |
516 NETIF_F_TSO);
3df80d93
ACM
517 newdp6 = (struct dccp6_sock *)newsk;
518 newinet = inet_sk(newsk);
519 newinet->pinet6 = &newdp6->inet6;
3df80d93
ACM
520 newnp = inet6_sk(newsk);
521
522 memcpy(newnp, np, sizeof(struct ipv6_pinfo));
523
634fb979
ED
524 newsk->sk_v6_daddr = ireq->ir_v6_rmt_addr;
525 newnp->saddr = ireq->ir_v6_loc_addr;
526 newsk->sk_v6_rcv_saddr = ireq->ir_v6_loc_addr;
527 newsk->sk_bound_dev_if = ireq->ir_iif;
3df80d93 528
45329e71 529 /* Now IPv6 options...
3df80d93
ACM
530
531 First: no IPv4 options.
532 */
f6d8bd05 533 newinet->inet_opt = NULL;
3df80d93
ACM
534
535 /* Clone RX bits */
536 newnp->rxopt.all = np->rxopt.all;
537
538 /* Clone pktoptions received with SYN */
539 newnp->pktoptions = NULL;
634fb979
ED
540 if (ireq->pktopts != NULL) {
541 newnp->pktoptions = skb_clone(ireq->pktopts, GFP_ATOMIC);
542 consume_skb(ireq->pktopts);
543 ireq->pktopts = NULL;
3df80d93
ACM
544 if (newnp->pktoptions)
545 skb_set_owner_r(newnp->pktoptions, newsk);
546 }
547 newnp->opt = NULL;
548 newnp->mcast_oif = inet6_iif(skb);
0660e03f 549 newnp->mcast_hops = ipv6_hdr(skb)->hop_limit;
3df80d93 550
45329e71
ACM
551 /*
552 * Clone native IPv6 options from listening socket (if any)
553 *
554 * Yes, keeping reference count would be much more clever, but we make
555 * one more one thing there: reattach optmem to newsk.
3df80d93 556 */
0979e465
RL
557 if (np->opt != NULL)
558 newnp->opt = ipv6_dup_options(newsk, np->opt);
3df80d93 559
d83d8461 560 inet_csk(newsk)->icsk_ext_hdr_len = 0;
45329e71 561 if (newnp->opt != NULL)
d83d8461
ACM
562 inet_csk(newsk)->icsk_ext_hdr_len = (newnp->opt->opt_nflen +
563 newnp->opt->opt_flen);
3df80d93
ACM
564
565 dccp_sync_mss(newsk, dst_mtu(dst));
566
c720c7e8
ED
567 newinet->inet_daddr = newinet->inet_saddr = LOOPBACK4_IPV6;
568 newinet->inet_rcv_saddr = LOOPBACK4_IPV6;
3df80d93 569
093d2823 570 if (__inet_inherit_port(sk, newsk) < 0) {
e337e24d
CP
571 inet_csk_prepare_forced_close(newsk);
572 dccp_done(newsk);
093d2823
BS
573 goto out;
574 }
77a6a471 575 __inet_hash(newsk, NULL);
3df80d93
ACM
576
577 return newsk;
578
579out_overflow:
de0744af 580 NET_INC_STATS_BH(sock_net(sk), LINUX_MIB_LISTENOVERFLOWS);
093d2823
BS
581out_nonewsk:
582 dst_release(dst);
3df80d93 583out:
de0744af 584 NET_INC_STATS_BH(sock_net(sk), LINUX_MIB_LISTENDROPS);
3df80d93
ACM
585 return NULL;
586}
587
588/* The socket must have it's spinlock held when we get
589 * here.
590 *
591 * We have a potential double-lock case here, so even when
592 * doing backlog processing we use the BH locking scheme.
593 * This is because we cannot sleep with the original spinlock
594 * held.
595 */
596static int dccp_v6_do_rcv(struct sock *sk, struct sk_buff *skb)
597{
598 struct ipv6_pinfo *np = inet6_sk(sk);
599 struct sk_buff *opt_skb = NULL;
600
601 /* Imagine: socket is IPv6. IPv4 packet arrives,
602 goes to IPv4 receive handler and backlogged.
603 From backlog it always goes here. Kerboom...
604 Fortunately, dccp_rcv_established and rcv_established
605 handle them correctly, but it is not case with
606 dccp_v6_hnd_req and dccp_v6_ctl_send_reset(). --ANK
607 */
608
609 if (skb->protocol == htons(ETH_P_IP))
610 return dccp_v4_do_rcv(sk, skb);
611
fda9ef5d 612 if (sk_filter(sk, skb))
3df80d93
ACM
613 goto discard;
614
615 /*
45329e71
ACM
616 * socket locking is here for SMP purposes as backlog rcv is currently
617 * called with bh processing disabled.
3df80d93
ACM
618 */
619
620 /* Do Stevens' IPV6_PKTOPTIONS.
621
622 Yes, guys, it is the only place in our code, where we
623 may make it not affecting IPv4.
624 The rest of code is protocol independent,
625 and I do not like idea to uglify IPv4.
626
627 Actually, all the idea behind IPV6_PKTOPTIONS
628 looks not very well thought. For now we latch
629 options, received in the last packet, enqueued
630 by tcp. Feel free to propose better solution.
c9eaf173 631 --ANK (980728)
3df80d93
ACM
632 */
633 if (np->rxopt.all)
89e7e577
GR
634 /*
635 * FIXME: Add handling of IPV6_PKTOPTIONS skb. See the comments below
636 * (wrt ipv6_pktopions) and net/ipv6/tcp_ipv6.c for an example.
637 */
3df80d93
ACM
638 opt_skb = skb_clone(skb, GFP_ATOMIC);
639
640 if (sk->sk_state == DCCP_OPEN) { /* Fast path */
641 if (dccp_rcv_established(sk, skb, dccp_hdr(skb), skb->len))
642 goto reset;
fd169f15 643 if (opt_skb) {
89e7e577 644 /* XXX This is where we would goto ipv6_pktoptions. */
fd169f15
DM
645 __kfree_skb(opt_skb);
646 }
3df80d93
ACM
647 return 0;
648 }
649
d83ca5ac
GR
650 /*
651 * Step 3: Process LISTEN state
652 * If S.state == LISTEN,
653 * If P.type == Request or P contains a valid Init Cookie option,
654 * (* Must scan the packet's options to check for Init
655 * Cookies. Only Init Cookies are processed here,
656 * however; other options are processed in Step 8. This
657 * scan need only be performed if the endpoint uses Init
658 * Cookies *)
659 * (* Generate a new socket and switch to that socket *)
660 * Set S := new socket for this port pair
661 * S.state = RESPOND
662 * Choose S.ISS (initial seqno) or set from Init Cookies
663 * Initialize S.GAR := S.ISS
664 * Set S.ISR, S.GSR, S.SWL, S.SWH from packet or Init Cookies
665 * Continue with S.state == RESPOND
666 * (* A Response packet will be generated in Step 11 *)
667 * Otherwise,
668 * Generate Reset(No Connection) unless P.type == Reset
669 * Drop packet and return
670 *
671 * NOTE: the check for the packet types is done in
672 * dccp_rcv_state_process
673 */
45329e71 674 if (sk->sk_state == DCCP_LISTEN) {
3df80d93 675 struct sock *nsk = dccp_v6_hnd_req(sk, skb);
3df80d93 676
45329e71
ACM
677 if (nsk == NULL)
678 goto discard;
3df80d93
ACM
679 /*
680 * Queue it on the new socket if the new socket is active,
681 * otherwise we just shortcircuit this and continue with
682 * the new socket..
683 */
8109b02b 684 if (nsk != sk) {
3df80d93
ACM
685 if (dccp_child_process(sk, nsk, skb))
686 goto reset;
45329e71 687 if (opt_skb != NULL)
3df80d93
ACM
688 __kfree_skb(opt_skb);
689 return 0;
690 }
691 }
692
693 if (dccp_rcv_state_process(sk, skb, dccp_hdr(skb), skb->len))
694 goto reset;
fd169f15 695 if (opt_skb) {
89e7e577 696 /* XXX This is where we would goto ipv6_pktoptions. */
fd169f15
DM
697 __kfree_skb(opt_skb);
698 }
3df80d93
ACM
699 return 0;
700
701reset:
cfb6eeb4 702 dccp_v6_ctl_send_reset(sk, skb);
3df80d93 703discard:
45329e71 704 if (opt_skb != NULL)
3df80d93
ACM
705 __kfree_skb(opt_skb);
706 kfree_skb(skb);
707 return 0;
708}
709
e5bbef20 710static int dccp_v6_rcv(struct sk_buff *skb)
3df80d93
ACM
711{
712 const struct dccp_hdr *dh;
3df80d93 713 struct sock *sk;
6f4e5fff 714 int min_cov;
3df80d93 715
6f4e5fff 716 /* Step 1: Check header basics */
3df80d93
ACM
717
718 if (dccp_invalid_packet(skb))
719 goto discard_it;
720
6f4e5fff 721 /* Step 1: If header checksum is incorrect, drop packet and return. */
0660e03f
ACM
722 if (dccp_v6_csum_finish(skb, &ipv6_hdr(skb)->saddr,
723 &ipv6_hdr(skb)->daddr)) {
59348b19 724 DCCP_WARN("dropped packet with invalid checksum\n");
6f4e5fff
GR
725 goto discard_it;
726 }
727
3df80d93
ACM
728 dh = dccp_hdr(skb);
729
fde20105 730 DCCP_SKB_CB(skb)->dccpd_seq = dccp_hdr_seq(dh);
3df80d93
ACM
731 DCCP_SKB_CB(skb)->dccpd_type = dh->dccph_type;
732
733 if (dccp_packet_without_ack(skb))
734 DCCP_SKB_CB(skb)->dccpd_ack_seq = DCCP_PKT_WITHOUT_ACK_SEQ;
735 else
736 DCCP_SKB_CB(skb)->dccpd_ack_seq = dccp_hdr_ack_seq(skb);
737
738 /* Step 2:
8109b02b 739 * Look up flow ID in table and get corresponding socket */
9a1f27c4 740 sk = __inet6_lookup_skb(&dccp_hashinfo, skb,
870c3151
ED
741 dh->dccph_sport, dh->dccph_dport,
742 inet6_iif(skb));
45329e71 743 /*
3df80d93 744 * Step 2:
8109b02b 745 * If no socket ...
3df80d93 746 */
d23c7107
GR
747 if (sk == NULL) {
748 dccp_pr_debug("failed to look up flow ID in table and "
749 "get corresponding socket\n");
3df80d93 750 goto no_dccp_socket;
d23c7107 751 }
3df80d93 752
45329e71 753 /*
3df80d93 754 * Step 2:
8109b02b 755 * ... or S.state == TIMEWAIT,
3df80d93
ACM
756 * Generate Reset(No Connection) unless P.type == Reset
757 * Drop packet and return
758 */
d23c7107
GR
759 if (sk->sk_state == DCCP_TIME_WAIT) {
760 dccp_pr_debug("sk->sk_state == DCCP_TIME_WAIT: do_time_wait\n");
761 inet_twsk_put(inet_twsk(sk));
762 goto no_dccp_socket;
763 }
3df80d93 764
6f4e5fff
GR
765 /*
766 * RFC 4340, sec. 9.2.1: Minimum Checksum Coverage
8109b02b
ACM
767 * o if MinCsCov = 0, only packets with CsCov = 0 are accepted
768 * o if MinCsCov > 0, also accept packets with CsCov >= MinCsCov
6f4e5fff
GR
769 */
770 min_cov = dccp_sk(sk)->dccps_pcrlen;
771 if (dh->dccph_cscov && (min_cov == 0 || dh->dccph_cscov < min_cov)) {
772 dccp_pr_debug("Packet CsCov %d does not satisfy MinCsCov %d\n",
773 dh->dccph_cscov, min_cov);
774 /* FIXME: send Data Dropped option (see also dccp_v4_rcv) */
775 goto discard_and_relse;
776 }
777
3df80d93
ACM
778 if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb))
779 goto discard_and_relse;
780
58a5a7b9 781 return sk_receive_skb(sk, skb, 1) ? -1 : 0;
3df80d93
ACM
782
783no_dccp_socket:
784 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb))
785 goto discard_it;
786 /*
787 * Step 2:
8109b02b 788 * If no socket ...
3df80d93
ACM
789 * Generate Reset(No Connection) unless P.type == Reset
790 * Drop packet and return
791 */
792 if (dh->dccph_type != DCCP_PKT_RESET) {
793 DCCP_SKB_CB(skb)->dccpd_reset_code =
794 DCCP_RESET_CODE_NO_CONNECTION;
cfb6eeb4 795 dccp_v6_ctl_send_reset(sk, skb);
3df80d93 796 }
3df80d93 797
d23c7107 798discard_it:
3df80d93
ACM
799 kfree_skb(skb);
800 return 0;
801
802discard_and_relse:
803 sock_put(sk);
804 goto discard_it;
3df80d93
ACM
805}
806
73c9e02c
GR
807static int dccp_v6_connect(struct sock *sk, struct sockaddr *uaddr,
808 int addr_len)
809{
810 struct sockaddr_in6 *usin = (struct sockaddr_in6 *)uaddr;
811 struct inet_connection_sock *icsk = inet_csk(sk);
812 struct inet_sock *inet = inet_sk(sk);
813 struct ipv6_pinfo *np = inet6_sk(sk);
814 struct dccp_sock *dp = dccp_sk(sk);
20c59de2 815 struct in6_addr *saddr = NULL, *final_p, final;
4c9483b2 816 struct flowi6 fl6;
73c9e02c
GR
817 struct dst_entry *dst;
818 int addr_type;
819 int err;
820
821 dp->dccps_role = DCCP_ROLE_CLIENT;
822
823 if (addr_len < SIN6_LEN_RFC2133)
824 return -EINVAL;
825
826 if (usin->sin6_family != AF_INET6)
827 return -EAFNOSUPPORT;
828
4c9483b2 829 memset(&fl6, 0, sizeof(fl6));
73c9e02c
GR
830
831 if (np->sndflow) {
4c9483b2
DM
832 fl6.flowlabel = usin->sin6_flowinfo & IPV6_FLOWINFO_MASK;
833 IP6_ECN_flow_init(fl6.flowlabel);
834 if (fl6.flowlabel & IPV6_FLOWLABEL_MASK) {
73c9e02c 835 struct ip6_flowlabel *flowlabel;
4c9483b2 836 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
73c9e02c
GR
837 if (flowlabel == NULL)
838 return -EINVAL;
73c9e02c
GR
839 fl6_sock_release(flowlabel);
840 }
841 }
842 /*
843 * connect() to INADDR_ANY means loopback (BSD'ism).
844 */
845 if (ipv6_addr_any(&usin->sin6_addr))
846 usin->sin6_addr.s6_addr[15] = 1;
847
848 addr_type = ipv6_addr_type(&usin->sin6_addr);
849
850 if (addr_type & IPV6_ADDR_MULTICAST)
851 return -ENETUNREACH;
852
853 if (addr_type & IPV6_ADDR_LINKLOCAL) {
854 if (addr_len >= sizeof(struct sockaddr_in6) &&
855 usin->sin6_scope_id) {
856 /* If interface is set while binding, indices
857 * must coincide.
858 */
859 if (sk->sk_bound_dev_if &&
860 sk->sk_bound_dev_if != usin->sin6_scope_id)
861 return -EINVAL;
862
863 sk->sk_bound_dev_if = usin->sin6_scope_id;
864 }
865
866 /* Connect to link-local address requires an interface */
867 if (!sk->sk_bound_dev_if)
868 return -EINVAL;
869 }
870
efe4208f 871 sk->sk_v6_daddr = usin->sin6_addr;
4c9483b2 872 np->flow_label = fl6.flowlabel;
73c9e02c
GR
873
874 /*
875 * DCCP over IPv4
876 */
877 if (addr_type == IPV6_ADDR_MAPPED) {
878 u32 exthdrlen = icsk->icsk_ext_hdr_len;
879 struct sockaddr_in sin;
880
881 SOCK_DEBUG(sk, "connect: ipv4 mapped\n");
882
883 if (__ipv6_only_sock(sk))
884 return -ENETUNREACH;
885
886 sin.sin_family = AF_INET;
887 sin.sin_port = usin->sin6_port;
888 sin.sin_addr.s_addr = usin->sin6_addr.s6_addr32[3];
889
890 icsk->icsk_af_ops = &dccp_ipv6_mapped;
891 sk->sk_backlog_rcv = dccp_v4_do_rcv;
892
893 err = dccp_v4_connect(sk, (struct sockaddr *)&sin, sizeof(sin));
894 if (err) {
895 icsk->icsk_ext_hdr_len = exthdrlen;
896 icsk->icsk_af_ops = &dccp_ipv6_af_ops;
897 sk->sk_backlog_rcv = dccp_v6_do_rcv;
898 goto failure;
73c9e02c 899 }
d1e559d0 900 np->saddr = sk->sk_v6_rcv_saddr;
73c9e02c
GR
901 return err;
902 }
903
efe4208f
ED
904 if (!ipv6_addr_any(&sk->sk_v6_rcv_saddr))
905 saddr = &sk->sk_v6_rcv_saddr;
73c9e02c 906
4c9483b2 907 fl6.flowi6_proto = IPPROTO_DCCP;
efe4208f 908 fl6.daddr = sk->sk_v6_daddr;
4e3fd7a0 909 fl6.saddr = saddr ? *saddr : np->saddr;
4c9483b2 910 fl6.flowi6_oif = sk->sk_bound_dev_if;
1958b856
DM
911 fl6.fl6_dport = usin->sin6_port;
912 fl6.fl6_sport = inet->inet_sport;
4c9483b2 913 security_sk_classify_flow(sk, flowi6_to_flowi(&fl6));
73c9e02c 914
4c9483b2 915 final_p = fl6_update_dst(&fl6, np->opt, &final);
73c9e02c 916
0e0d44ab 917 dst = ip6_dst_lookup_flow(sk, &fl6, final_p);
68d0c6d3
DM
918 if (IS_ERR(dst)) {
919 err = PTR_ERR(dst);
73c9e02c 920 goto failure;
14e50e57 921 }
73c9e02c
GR
922
923 if (saddr == NULL) {
4c9483b2 924 saddr = &fl6.saddr;
efe4208f 925 sk->sk_v6_rcv_saddr = *saddr;
73c9e02c
GR
926 }
927
928 /* set the source address */
4e3fd7a0 929 np->saddr = *saddr;
c720c7e8 930 inet->inet_rcv_saddr = LOOPBACK4_IPV6;
73c9e02c
GR
931
932 __ip6_dst_store(sk, dst, NULL, NULL);
933
934 icsk->icsk_ext_hdr_len = 0;
935 if (np->opt != NULL)
936 icsk->icsk_ext_hdr_len = (np->opt->opt_flen +
937 np->opt->opt_nflen);
938
c720c7e8 939 inet->inet_dport = usin->sin6_port;
73c9e02c
GR
940
941 dccp_set_state(sk, DCCP_REQUESTING);
942 err = inet6_hash_connect(&dccp_death_row, sk);
943 if (err)
944 goto late_failure;
d7f7365f
GR
945
946 dp->dccps_iss = secure_dccpv6_sequence_number(np->saddr.s6_addr32,
efe4208f 947 sk->sk_v6_daddr.s6_addr32,
c720c7e8
ED
948 inet->inet_sport,
949 inet->inet_dport);
73c9e02c
GR
950 err = dccp_connect(sk);
951 if (err)
952 goto late_failure;
953
954 return 0;
955
956late_failure:
957 dccp_set_state(sk, DCCP_CLOSED);
958 __sk_dst_reset(sk);
959failure:
c720c7e8 960 inet->inet_dport = 0;
73c9e02c
GR
961 sk->sk_route_caps = 0;
962 return err;
963}
964
3b401a81 965static const struct inet_connection_sock_af_ops dccp_ipv6_af_ops = {
543d9cfe
ACM
966 .queue_xmit = inet6_csk_xmit,
967 .send_check = dccp_v6_send_check,
968 .rebuild_header = inet6_sk_rebuild_header,
969 .conn_request = dccp_v6_conn_request,
970 .syn_recv_sock = dccp_v6_request_recv_sock,
971 .net_header_len = sizeof(struct ipv6hdr),
972 .setsockopt = ipv6_setsockopt,
973 .getsockopt = ipv6_getsockopt,
974 .addr2sockaddr = inet6_csk_addr2sockaddr,
975 .sockaddr_len = sizeof(struct sockaddr_in6),
ab1e0a13 976 .bind_conflict = inet6_csk_bind_conflict,
3fdadf7d 977#ifdef CONFIG_COMPAT
543d9cfe
ACM
978 .compat_setsockopt = compat_ipv6_setsockopt,
979 .compat_getsockopt = compat_ipv6_getsockopt,
3fdadf7d 980#endif
3df80d93
ACM
981};
982
983/*
984 * DCCP over IPv4 via INET6 API
985 */
3b401a81 986static const struct inet_connection_sock_af_ops dccp_ipv6_mapped = {
543d9cfe
ACM
987 .queue_xmit = ip_queue_xmit,
988 .send_check = dccp_v4_send_check,
989 .rebuild_header = inet_sk_rebuild_header,
990 .conn_request = dccp_v6_conn_request,
991 .syn_recv_sock = dccp_v6_request_recv_sock,
992 .net_header_len = sizeof(struct iphdr),
993 .setsockopt = ipv6_setsockopt,
994 .getsockopt = ipv6_getsockopt,
995 .addr2sockaddr = inet6_csk_addr2sockaddr,
996 .sockaddr_len = sizeof(struct sockaddr_in6),
3fdadf7d 997#ifdef CONFIG_COMPAT
543d9cfe
ACM
998 .compat_setsockopt = compat_ipv6_setsockopt,
999 .compat_getsockopt = compat_ipv6_getsockopt,
3fdadf7d 1000#endif
3df80d93
ACM
1001};
1002
1003/* NOTE: A lot of things set to zero explicitly by call to
1004 * sk_alloc() so need not be done here.
1005 */
1006static int dccp_v6_init_sock(struct sock *sk)
1007{
72478873
ACM
1008 static __u8 dccp_v6_ctl_sock_initialized;
1009 int err = dccp_init_sock(sk, dccp_v6_ctl_sock_initialized);
3df80d93 1010
72478873
ACM
1011 if (err == 0) {
1012 if (unlikely(!dccp_v6_ctl_sock_initialized))
1013 dccp_v6_ctl_sock_initialized = 1;
3df80d93 1014 inet_csk(sk)->icsk_af_ops = &dccp_ipv6_af_ops;
72478873 1015 }
3df80d93
ACM
1016
1017 return err;
1018}
1019
7d06b2e0 1020static void dccp_v6_destroy_sock(struct sock *sk)
3df80d93 1021{
3e0fadc5 1022 dccp_destroy_sock(sk);
7d06b2e0 1023 inet6_destroy_sock(sk);
3df80d93
ACM
1024}
1025
73c9e02c
GR
1026static struct timewait_sock_ops dccp6_timewait_sock_ops = {
1027 .twsk_obj_size = sizeof(struct dccp6_timewait_sock),
1028};
1029
3df80d93 1030static struct proto dccp_v6_prot = {
543d9cfe
ACM
1031 .name = "DCCPv6",
1032 .owner = THIS_MODULE,
1033 .close = dccp_close,
1034 .connect = dccp_v6_connect,
1035 .disconnect = dccp_disconnect,
1036 .ioctl = dccp_ioctl,
1037 .init = dccp_v6_init_sock,
1038 .setsockopt = dccp_setsockopt,
1039 .getsockopt = dccp_getsockopt,
1040 .sendmsg = dccp_sendmsg,
1041 .recvmsg = dccp_recvmsg,
1042 .backlog_rcv = dccp_v6_do_rcv,
77a6a471 1043 .hash = inet_hash,
ab1e0a13 1044 .unhash = inet_unhash,
543d9cfe 1045 .accept = inet_csk_accept,
ab1e0a13 1046 .get_port = inet_csk_get_port,
543d9cfe
ACM
1047 .shutdown = dccp_shutdown,
1048 .destroy = dccp_v6_destroy_sock,
1049 .orphan_count = &dccp_orphan_count,
1050 .max_header = MAX_DCCP_HEADER,
1051 .obj_size = sizeof(struct dccp6_sock),
3ab5aee7 1052 .slab_flags = SLAB_DESTROY_BY_RCU,
543d9cfe
ACM
1053 .rsk_prot = &dccp6_request_sock_ops,
1054 .twsk_prot = &dccp6_timewait_sock_ops,
39d8cda7 1055 .h.hashinfo = &dccp_hashinfo,
3fdadf7d 1056#ifdef CONFIG_COMPAT
543d9cfe
ACM
1057 .compat_setsockopt = compat_dccp_setsockopt,
1058 .compat_getsockopt = compat_dccp_getsockopt,
3fdadf7d 1059#endif
3df80d93
ACM
1060};
1061
41135cc8 1062static const struct inet6_protocol dccp_v6_protocol = {
45329e71
ACM
1063 .handler = dccp_v6_rcv,
1064 .err_handler = dccp_v6_err,
1065 .flags = INET6_PROTO_NOPOLICY | INET6_PROTO_FINAL,
3df80d93
ACM
1066};
1067
5708e868 1068static const struct proto_ops inet6_dccp_ops = {
543d9cfe
ACM
1069 .family = PF_INET6,
1070 .owner = THIS_MODULE,
1071 .release = inet6_release,
1072 .bind = inet6_bind,
1073 .connect = inet_stream_connect,
1074 .socketpair = sock_no_socketpair,
1075 .accept = inet_accept,
1076 .getname = inet6_getname,
1077 .poll = dccp_poll,
1078 .ioctl = inet6_ioctl,
1079 .listen = inet_dccp_listen,
1080 .shutdown = inet_shutdown,
1081 .setsockopt = sock_common_setsockopt,
1082 .getsockopt = sock_common_getsockopt,
1083 .sendmsg = inet_sendmsg,
1084 .recvmsg = sock_common_recvmsg,
1085 .mmap = sock_no_mmap,
1086 .sendpage = sock_no_sendpage,
3fdadf7d 1087#ifdef CONFIG_COMPAT
543d9cfe
ACM
1088 .compat_setsockopt = compat_sock_common_setsockopt,
1089 .compat_getsockopt = compat_sock_common_getsockopt,
3fdadf7d 1090#endif
3df80d93
ACM
1091};
1092
1093static struct inet_protosw dccp_v6_protosw = {
1094 .type = SOCK_DCCP,
1095 .protocol = IPPROTO_DCCP,
1096 .prot = &dccp_v6_prot,
1097 .ops = &inet6_dccp_ops,
d83d8461 1098 .flags = INET_PROTOSW_ICSK,
3df80d93
ACM
1099};
1100
2c8c1e72 1101static int __net_init dccp_v6_init_net(struct net *net)
8231bd27 1102{
d14a0ebd
GR
1103 if (dccp_hashinfo.bhash == NULL)
1104 return -ESOCKTNOSUPPORT;
334527d3 1105
d14a0ebd
GR
1106 return inet_ctl_sock_create(&net->dccp.v6_ctl_sk, PF_INET6,
1107 SOCK_DCCP, IPPROTO_DCCP, net);
8231bd27
PE
1108}
1109
2c8c1e72 1110static void __net_exit dccp_v6_exit_net(struct net *net)
8231bd27 1111{
334527d3 1112 inet_ctl_sock_destroy(net->dccp.v6_ctl_sk);
8231bd27
PE
1113}
1114
1115static struct pernet_operations dccp_v6_ops = {
1116 .init = dccp_v6_init_net,
1117 .exit = dccp_v6_exit_net,
1118};
1119
3df80d93
ACM
1120static int __init dccp_v6_init(void)
1121{
1122 int err = proto_register(&dccp_v6_prot, 1);
1123
1124 if (err != 0)
1125 goto out;
1126
1127 err = inet6_add_protocol(&dccp_v6_protocol, IPPROTO_DCCP);
1128 if (err != 0)
1129 goto out_unregister_proto;
1130
1131 inet6_register_protosw(&dccp_v6_protosw);
72478873 1132
8231bd27
PE
1133 err = register_pernet_subsys(&dccp_v6_ops);
1134 if (err != 0)
1135 goto out_destroy_ctl_sock;
3df80d93
ACM
1136out:
1137 return err;
8231bd27
PE
1138
1139out_destroy_ctl_sock:
72478873
ACM
1140 inet6_del_protocol(&dccp_v6_protocol, IPPROTO_DCCP);
1141 inet6_unregister_protosw(&dccp_v6_protosw);
3df80d93
ACM
1142out_unregister_proto:
1143 proto_unregister(&dccp_v6_prot);
1144 goto out;
1145}
1146
1147static void __exit dccp_v6_exit(void)
1148{
8231bd27 1149 unregister_pernet_subsys(&dccp_v6_ops);
3df80d93
ACM
1150 inet6_del_protocol(&dccp_v6_protocol, IPPROTO_DCCP);
1151 inet6_unregister_protosw(&dccp_v6_protosw);
1152 proto_unregister(&dccp_v6_prot);
1153}
1154
1155module_init(dccp_v6_init);
1156module_exit(dccp_v6_exit);
1157
1158/*
1159 * __stringify doesn't likes enums, so use SOCK_DCCP (6) and IPPROTO_DCCP (33)
1160 * values directly, Also cover the case where the protocol is not specified,
1161 * i.e. net-pf-PF_INET6-proto-0-type-SOCK_DCCP
1162 */
7131c6c7
JD
1163MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_INET6, 33, 6);
1164MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_INET6, 0, 6);
3df80d93
ACM
1165MODULE_LICENSE("GPL");
1166MODULE_AUTHOR("Arnaldo Carvalho de Melo <acme@mandriva.com>");
1167MODULE_DESCRIPTION("DCCPv6 - Datagram Congestion Controlled Protocol");
This page took 1.190284 seconds and 5 git commands to generate.