ipv4.c 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071
  1. /*
  2. * net/dccp/ipv4.c
  3. *
  4. * An implementation of the DCCP protocol
  5. * Arnaldo Carvalho de Melo <acme@conectiva.com.br>
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License
  9. * as published by the Free Software Foundation; either version
  10. * 2 of the License, or (at your option) any later version.
  11. */
  12. #include <linux/dccp.h>
  13. #include <linux/icmp.h>
  14. #include <linux/slab.h>
  15. #include <linux/module.h>
  16. #include <linux/skbuff.h>
  17. #include <linux/random.h>
  18. #include <net/icmp.h>
  19. #include <net/inet_common.h>
  20. #include <net/inet_hashtables.h>
  21. #include <net/inet_sock.h>
  22. #include <net/protocol.h>
  23. #include <net/sock.h>
  24. #include <net/timewait_sock.h>
  25. #include <net/tcp_states.h>
  26. #include <net/xfrm.h>
  27. #include <net/secure_seq.h>
  28. #include "ackvec.h"
  29. #include "ccid.h"
  30. #include "dccp.h"
  31. #include "feat.h"
  32. /*
  33. * The per-net dccp.v4_ctl_sk socket is used for responding to
  34. * the Out-of-the-blue (OOTB) packets. A control sock will be created
  35. * for this socket at the initialization time.
  36. */
  37. int dccp_v4_connect(struct sock *sk, struct sockaddr *uaddr, int addr_len)
  38. {
  39. const struct sockaddr_in *usin = (struct sockaddr_in *)uaddr;
  40. struct inet_sock *inet = inet_sk(sk);
  41. struct dccp_sock *dp = dccp_sk(sk);
  42. __be16 orig_sport, orig_dport;
  43. __be32 daddr, nexthop;
  44. struct flowi4 *fl4;
  45. struct rtable *rt;
  46. int err;
  47. struct ip_options_rcu *inet_opt;
  48. dp->dccps_role = DCCP_ROLE_CLIENT;
  49. if (addr_len < sizeof(struct sockaddr_in))
  50. return -EINVAL;
  51. if (usin->sin_family != AF_INET)
  52. return -EAFNOSUPPORT;
  53. nexthop = daddr = usin->sin_addr.s_addr;
  54. inet_opt = rcu_dereference_protected(inet->inet_opt,
  55. lockdep_sock_is_held(sk));
  56. if (inet_opt != NULL && inet_opt->opt.srr) {
  57. if (daddr == 0)
  58. return -EINVAL;
  59. nexthop = inet_opt->opt.faddr;
  60. }
  61. orig_sport = inet->inet_sport;
  62. orig_dport = usin->sin_port;
  63. fl4 = &inet->cork.fl.u.ip4;
  64. rt = ip_route_connect(fl4, nexthop, inet->inet_saddr,
  65. RT_CONN_FLAGS(sk), sk->sk_bound_dev_if,
  66. IPPROTO_DCCP,
  67. orig_sport, orig_dport, sk);
  68. if (IS_ERR(rt))
  69. return PTR_ERR(rt);
  70. if (rt->rt_flags & (RTCF_MULTICAST | RTCF_BROADCAST)) {
  71. ip_rt_put(rt);
  72. return -ENETUNREACH;
  73. }
  74. if (inet_opt == NULL || !inet_opt->opt.srr)
  75. daddr = fl4->daddr;
  76. if (inet->inet_saddr == 0)
  77. inet->inet_saddr = fl4->saddr;
  78. sk_rcv_saddr_set(sk, inet->inet_saddr);
  79. inet->inet_dport = usin->sin_port;
  80. sk_daddr_set(sk, daddr);
  81. inet_csk(sk)->icsk_ext_hdr_len = 0;
  82. if (inet_opt)
  83. inet_csk(sk)->icsk_ext_hdr_len = inet_opt->opt.optlen;
  84. /*
  85. * Socket identity is still unknown (sport may be zero).
  86. * However we set state to DCCP_REQUESTING and not releasing socket
  87. * lock select source port, enter ourselves into the hash tables and
  88. * complete initialization after this.
  89. */
  90. dccp_set_state(sk, DCCP_REQUESTING);
  91. err = inet_hash_connect(&dccp_death_row, sk);
  92. if (err != 0)
  93. goto failure;
  94. rt = ip_route_newports(fl4, rt, orig_sport, orig_dport,
  95. inet->inet_sport, inet->inet_dport, sk);
  96. if (IS_ERR(rt)) {
  97. err = PTR_ERR(rt);
  98. rt = NULL;
  99. goto failure;
  100. }
  101. /* OK, now commit destination to socket. */
  102. sk_setup_caps(sk, &rt->dst);
  103. dp->dccps_iss = secure_dccp_sequence_number(inet->inet_saddr,
  104. inet->inet_daddr,
  105. inet->inet_sport,
  106. inet->inet_dport);
  107. inet->inet_id = dp->dccps_iss ^ jiffies;
  108. err = dccp_connect(sk);
  109. rt = NULL;
  110. if (err != 0)
  111. goto failure;
  112. out:
  113. return err;
  114. failure:
  115. /*
  116. * This unhashes the socket and releases the local port, if necessary.
  117. */
  118. dccp_set_state(sk, DCCP_CLOSED);
  119. ip_rt_put(rt);
  120. sk->sk_route_caps = 0;
  121. inet->inet_dport = 0;
  122. goto out;
  123. }
  124. EXPORT_SYMBOL_GPL(dccp_v4_connect);
  125. /*
  126. * This routine does path mtu discovery as defined in RFC1191.
  127. */
  128. static inline void dccp_do_pmtu_discovery(struct sock *sk,
  129. const struct iphdr *iph,
  130. u32 mtu)
  131. {
  132. struct dst_entry *dst;
  133. const struct inet_sock *inet = inet_sk(sk);
  134. const struct dccp_sock *dp = dccp_sk(sk);
  135. /* We are not interested in DCCP_LISTEN and request_socks (RESPONSEs
  136. * send out by Linux are always < 576bytes so they should go through
  137. * unfragmented).
  138. */
  139. if (sk->sk_state == DCCP_LISTEN)
  140. return;
  141. dst = inet_csk_update_pmtu(sk, mtu);
  142. if (!dst)
  143. return;
  144. /* Something is about to be wrong... Remember soft error
  145. * for the case, if this connection will not able to recover.
  146. */
  147. if (mtu < dst_mtu(dst) && ip_dont_fragment(sk, dst))
  148. sk->sk_err_soft = EMSGSIZE;
  149. mtu = dst_mtu(dst);
  150. if (inet->pmtudisc != IP_PMTUDISC_DONT &&
  151. ip_sk_accept_pmtu(sk) &&
  152. inet_csk(sk)->icsk_pmtu_cookie > mtu) {
  153. dccp_sync_mss(sk, mtu);
  154. /*
  155. * From RFC 4340, sec. 14.1:
  156. *
  157. * DCCP-Sync packets are the best choice for upward
  158. * probing, since DCCP-Sync probes do not risk application
  159. * data loss.
  160. */
  161. dccp_send_sync(sk, dp->dccps_gsr, DCCP_PKT_SYNC);
  162. } /* else let the usual retransmit timer handle it */
  163. }
  164. static void dccp_do_redirect(struct sk_buff *skb, struct sock *sk)
  165. {
  166. struct dst_entry *dst = __sk_dst_check(sk, 0);
  167. if (dst)
  168. dst->ops->redirect(dst, sk, skb);
  169. }
  170. void dccp_req_err(struct sock *sk, u64 seq)
  171. {
  172. struct request_sock *req = inet_reqsk(sk);
  173. struct net *net = sock_net(sk);
  174. /*
  175. * ICMPs are not backlogged, hence we cannot get an established
  176. * socket here.
  177. */
  178. if (!between48(seq, dccp_rsk(req)->dreq_iss, dccp_rsk(req)->dreq_gss)) {
  179. __NET_INC_STATS(net, LINUX_MIB_OUTOFWINDOWICMPS);
  180. } else {
  181. /*
  182. * Still in RESPOND, just remove it silently.
  183. * There is no good way to pass the error to the newly
  184. * created socket, and POSIX does not want network
  185. * errors returned from accept().
  186. */
  187. inet_csk_reqsk_queue_drop(req->rsk_listener, req);
  188. }
  189. reqsk_put(req);
  190. }
  191. EXPORT_SYMBOL(dccp_req_err);
  192. /*
  193. * This routine is called by the ICMP module when it gets some sort of error
  194. * condition. If err < 0 then the socket should be closed and the error
  195. * returned to the user. If err > 0 it's just the icmp type << 8 | icmp code.
  196. * After adjustment header points to the first 8 bytes of the tcp header. We
  197. * need to find the appropriate port.
  198. *
  199. * The locking strategy used here is very "optimistic". When someone else
  200. * accesses the socket the ICMP is just dropped and for some paths there is no
  201. * check at all. A more general error queue to queue errors for later handling
  202. * is probably better.
  203. */
  204. static void dccp_v4_err(struct sk_buff *skb, u32 info)
  205. {
  206. const struct iphdr *iph = (struct iphdr *)skb->data;
  207. const u8 offset = iph->ihl << 2;
  208. const struct dccp_hdr *dh;
  209. struct dccp_sock *dp;
  210. struct inet_sock *inet;
  211. const int type = icmp_hdr(skb)->type;
  212. const int code = icmp_hdr(skb)->code;
  213. struct sock *sk;
  214. __u64 seq;
  215. int err;
  216. struct net *net = dev_net(skb->dev);
  217. /* Only need dccph_dport & dccph_sport which are the first
  218. * 4 bytes in dccp header.
  219. * Our caller (icmp_socket_deliver()) already pulled 8 bytes for us.
  220. */
  221. BUILD_BUG_ON(offsetofend(struct dccp_hdr, dccph_sport) > 8);
  222. BUILD_BUG_ON(offsetofend(struct dccp_hdr, dccph_dport) > 8);
  223. dh = (struct dccp_hdr *)(skb->data + offset);
  224. sk = __inet_lookup_established(net, &dccp_hashinfo,
  225. iph->daddr, dh->dccph_dport,
  226. iph->saddr, ntohs(dh->dccph_sport),
  227. inet_iif(skb));
  228. if (!sk) {
  229. __ICMP_INC_STATS(net, ICMP_MIB_INERRORS);
  230. return;
  231. }
  232. if (sk->sk_state == DCCP_TIME_WAIT) {
  233. inet_twsk_put(inet_twsk(sk));
  234. return;
  235. }
  236. seq = dccp_hdr_seq(dh);
  237. if (sk->sk_state == DCCP_NEW_SYN_RECV)
  238. return dccp_req_err(sk, seq);
  239. bh_lock_sock(sk);
  240. /* If too many ICMPs get dropped on busy
  241. * servers this needs to be solved differently.
  242. */
  243. if (sock_owned_by_user(sk))
  244. __NET_INC_STATS(net, LINUX_MIB_LOCKDROPPEDICMPS);
  245. if (sk->sk_state == DCCP_CLOSED)
  246. goto out;
  247. dp = dccp_sk(sk);
  248. if ((1 << sk->sk_state) & ~(DCCPF_REQUESTING | DCCPF_LISTEN) &&
  249. !between48(seq, dp->dccps_awl, dp->dccps_awh)) {
  250. __NET_INC_STATS(net, LINUX_MIB_OUTOFWINDOWICMPS);
  251. goto out;
  252. }
  253. switch (type) {
  254. case ICMP_REDIRECT:
  255. dccp_do_redirect(skb, sk);
  256. goto out;
  257. case ICMP_SOURCE_QUENCH:
  258. /* Just silently ignore these. */
  259. goto out;
  260. case ICMP_PARAMETERPROB:
  261. err = EPROTO;
  262. break;
  263. case ICMP_DEST_UNREACH:
  264. if (code > NR_ICMP_UNREACH)
  265. goto out;
  266. if (code == ICMP_FRAG_NEEDED) { /* PMTU discovery (RFC1191) */
  267. if (!sock_owned_by_user(sk))
  268. dccp_do_pmtu_discovery(sk, iph, info);
  269. goto out;
  270. }
  271. err = icmp_err_convert[code].errno;
  272. break;
  273. case ICMP_TIME_EXCEEDED:
  274. err = EHOSTUNREACH;
  275. break;
  276. default:
  277. goto out;
  278. }
  279. switch (sk->sk_state) {
  280. case DCCP_REQUESTING:
  281. case DCCP_RESPOND:
  282. if (!sock_owned_by_user(sk)) {
  283. __DCCP_INC_STATS(DCCP_MIB_ATTEMPTFAILS);
  284. sk->sk_err = err;
  285. sk->sk_error_report(sk);
  286. dccp_done(sk);
  287. } else
  288. sk->sk_err_soft = err;
  289. goto out;
  290. }
  291. /* If we've already connected we will keep trying
  292. * until we time out, or the user gives up.
  293. *
  294. * rfc1122 4.2.3.9 allows to consider as hard errors
  295. * only PROTO_UNREACH and PORT_UNREACH (well, FRAG_FAILED too,
  296. * but it is obsoleted by pmtu discovery).
  297. *
  298. * Note, that in modern internet, where routing is unreliable
  299. * and in each dark corner broken firewalls sit, sending random
  300. * errors ordered by their masters even this two messages finally lose
  301. * their original sense (even Linux sends invalid PORT_UNREACHs)
  302. *
  303. * Now we are in compliance with RFCs.
  304. * --ANK (980905)
  305. */
  306. inet = inet_sk(sk);
  307. if (!sock_owned_by_user(sk) && inet->recverr) {
  308. sk->sk_err = err;
  309. sk->sk_error_report(sk);
  310. } else /* Only an error on timeout */
  311. sk->sk_err_soft = err;
  312. out:
  313. bh_unlock_sock(sk);
  314. sock_put(sk);
  315. }
  316. static inline __sum16 dccp_v4_csum_finish(struct sk_buff *skb,
  317. __be32 src, __be32 dst)
  318. {
  319. return csum_tcpudp_magic(src, dst, skb->len, IPPROTO_DCCP, skb->csum);
  320. }
  321. void dccp_v4_send_check(struct sock *sk, struct sk_buff *skb)
  322. {
  323. const struct inet_sock *inet = inet_sk(sk);
  324. struct dccp_hdr *dh = dccp_hdr(skb);
  325. dccp_csum_outgoing(skb);
  326. dh->dccph_checksum = dccp_v4_csum_finish(skb,
  327. inet->inet_saddr,
  328. inet->inet_daddr);
  329. }
  330. EXPORT_SYMBOL_GPL(dccp_v4_send_check);
  331. static inline u64 dccp_v4_init_sequence(const struct sk_buff *skb)
  332. {
  333. return secure_dccp_sequence_number(ip_hdr(skb)->daddr,
  334. ip_hdr(skb)->saddr,
  335. dccp_hdr(skb)->dccph_dport,
  336. dccp_hdr(skb)->dccph_sport);
  337. }
  338. /*
  339. * The three way handshake has completed - we got a valid ACK or DATAACK -
  340. * now create the new socket.
  341. *
  342. * This is the equivalent of TCP's tcp_v4_syn_recv_sock
  343. */
  344. struct sock *dccp_v4_request_recv_sock(const struct sock *sk,
  345. struct sk_buff *skb,
  346. struct request_sock *req,
  347. struct dst_entry *dst,
  348. struct request_sock *req_unhash,
  349. bool *own_req)
  350. {
  351. struct inet_request_sock *ireq;
  352. struct inet_sock *newinet;
  353. struct sock *newsk;
  354. if (sk_acceptq_is_full(sk))
  355. goto exit_overflow;
  356. newsk = dccp_create_openreq_child(sk, req, skb);
  357. if (newsk == NULL)
  358. goto exit_nonewsk;
  359. newinet = inet_sk(newsk);
  360. ireq = inet_rsk(req);
  361. sk_daddr_set(newsk, ireq->ir_rmt_addr);
  362. sk_rcv_saddr_set(newsk, ireq->ir_loc_addr);
  363. newinet->inet_saddr = ireq->ir_loc_addr;
  364. newinet->inet_opt = ireq->opt;
  365. ireq->opt = NULL;
  366. newinet->mc_index = inet_iif(skb);
  367. newinet->mc_ttl = ip_hdr(skb)->ttl;
  368. newinet->inet_id = jiffies;
  369. if (dst == NULL && (dst = inet_csk_route_child_sock(sk, newsk, req)) == NULL)
  370. goto put_and_exit;
  371. sk_setup_caps(newsk, dst);
  372. dccp_sync_mss(newsk, dst_mtu(dst));
  373. if (__inet_inherit_port(sk, newsk) < 0)
  374. goto put_and_exit;
  375. *own_req = inet_ehash_nolisten(newsk, req_to_sk(req_unhash));
  376. return newsk;
  377. exit_overflow:
  378. __NET_INC_STATS(sock_net(sk), LINUX_MIB_LISTENOVERFLOWS);
  379. exit_nonewsk:
  380. dst_release(dst);
  381. exit:
  382. __NET_INC_STATS(sock_net(sk), LINUX_MIB_LISTENDROPS);
  383. return NULL;
  384. put_and_exit:
  385. inet_csk_prepare_forced_close(newsk);
  386. dccp_done(newsk);
  387. goto exit;
  388. }
  389. EXPORT_SYMBOL_GPL(dccp_v4_request_recv_sock);
  390. static struct dst_entry* dccp_v4_route_skb(struct net *net, struct sock *sk,
  391. struct sk_buff *skb)
  392. {
  393. struct rtable *rt;
  394. const struct iphdr *iph = ip_hdr(skb);
  395. struct flowi4 fl4 = {
  396. .flowi4_oif = inet_iif(skb),
  397. .daddr = iph->saddr,
  398. .saddr = iph->daddr,
  399. .flowi4_tos = RT_CONN_FLAGS(sk),
  400. .flowi4_proto = sk->sk_protocol,
  401. .fl4_sport = dccp_hdr(skb)->dccph_dport,
  402. .fl4_dport = dccp_hdr(skb)->dccph_sport,
  403. };
  404. security_skb_classify_flow(skb, flowi4_to_flowi(&fl4));
  405. rt = ip_route_output_flow(net, &fl4, sk);
  406. if (IS_ERR(rt)) {
  407. IP_INC_STATS(net, IPSTATS_MIB_OUTNOROUTES);
  408. return NULL;
  409. }
  410. return &rt->dst;
  411. }
  412. static int dccp_v4_send_response(const struct sock *sk, struct request_sock *req)
  413. {
  414. int err = -1;
  415. struct sk_buff *skb;
  416. struct dst_entry *dst;
  417. struct flowi4 fl4;
  418. dst = inet_csk_route_req(sk, &fl4, req);
  419. if (dst == NULL)
  420. goto out;
  421. skb = dccp_make_response(sk, dst, req);
  422. if (skb != NULL) {
  423. const struct inet_request_sock *ireq = inet_rsk(req);
  424. struct dccp_hdr *dh = dccp_hdr(skb);
  425. dh->dccph_checksum = dccp_v4_csum_finish(skb, ireq->ir_loc_addr,
  426. ireq->ir_rmt_addr);
  427. err = ip_build_and_send_pkt(skb, sk, ireq->ir_loc_addr,
  428. ireq->ir_rmt_addr,
  429. ireq->opt);
  430. err = net_xmit_eval(err);
  431. }
  432. out:
  433. dst_release(dst);
  434. return err;
  435. }
  436. static void dccp_v4_ctl_send_reset(const struct sock *sk, struct sk_buff *rxskb)
  437. {
  438. int err;
  439. const struct iphdr *rxiph;
  440. struct sk_buff *skb;
  441. struct dst_entry *dst;
  442. struct net *net = dev_net(skb_dst(rxskb)->dev);
  443. struct sock *ctl_sk = net->dccp.v4_ctl_sk;
  444. /* Never send a reset in response to a reset. */
  445. if (dccp_hdr(rxskb)->dccph_type == DCCP_PKT_RESET)
  446. return;
  447. if (skb_rtable(rxskb)->rt_type != RTN_LOCAL)
  448. return;
  449. dst = dccp_v4_route_skb(net, ctl_sk, rxskb);
  450. if (dst == NULL)
  451. return;
  452. skb = dccp_ctl_make_reset(ctl_sk, rxskb);
  453. if (skb == NULL)
  454. goto out;
  455. rxiph = ip_hdr(rxskb);
  456. dccp_hdr(skb)->dccph_checksum = dccp_v4_csum_finish(skb, rxiph->saddr,
  457. rxiph->daddr);
  458. skb_dst_set(skb, dst_clone(dst));
  459. local_bh_disable();
  460. bh_lock_sock(ctl_sk);
  461. err = ip_build_and_send_pkt(skb, ctl_sk,
  462. rxiph->daddr, rxiph->saddr, NULL);
  463. bh_unlock_sock(ctl_sk);
  464. if (net_xmit_eval(err) == 0) {
  465. __DCCP_INC_STATS(DCCP_MIB_OUTSEGS);
  466. __DCCP_INC_STATS(DCCP_MIB_OUTRSTS);
  467. }
  468. local_bh_enable();
  469. out:
  470. dst_release(dst);
  471. }
  472. static void dccp_v4_reqsk_destructor(struct request_sock *req)
  473. {
  474. dccp_feat_list_purge(&dccp_rsk(req)->dreq_featneg);
  475. kfree(inet_rsk(req)->opt);
  476. }
  477. void dccp_syn_ack_timeout(const struct request_sock *req)
  478. {
  479. }
  480. EXPORT_SYMBOL(dccp_syn_ack_timeout);
  481. static struct request_sock_ops dccp_request_sock_ops __read_mostly = {
  482. .family = PF_INET,
  483. .obj_size = sizeof(struct dccp_request_sock),
  484. .rtx_syn_ack = dccp_v4_send_response,
  485. .send_ack = dccp_reqsk_send_ack,
  486. .destructor = dccp_v4_reqsk_destructor,
  487. .send_reset = dccp_v4_ctl_send_reset,
  488. .syn_ack_timeout = dccp_syn_ack_timeout,
  489. };
  490. int dccp_v4_conn_request(struct sock *sk, struct sk_buff *skb)
  491. {
  492. struct inet_request_sock *ireq;
  493. struct request_sock *req;
  494. struct dccp_request_sock *dreq;
  495. const __be32 service = dccp_hdr_request(skb)->dccph_req_service;
  496. struct dccp_skb_cb *dcb = DCCP_SKB_CB(skb);
  497. /* Never answer to DCCP_PKT_REQUESTs send to broadcast or multicast */
  498. if (skb_rtable(skb)->rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST))
  499. return 0; /* discard, don't send a reset here */
  500. if (dccp_bad_service_code(sk, service)) {
  501. dcb->dccpd_reset_code = DCCP_RESET_CODE_BAD_SERVICE_CODE;
  502. goto drop;
  503. }
  504. /*
  505. * TW buckets are converted to open requests without
  506. * limitations, they conserve resources and peer is
  507. * evidently real one.
  508. */
  509. dcb->dccpd_reset_code = DCCP_RESET_CODE_TOO_BUSY;
  510. if (inet_csk_reqsk_queue_is_full(sk))
  511. goto drop;
  512. if (sk_acceptq_is_full(sk))
  513. goto drop;
  514. req = inet_reqsk_alloc(&dccp_request_sock_ops, sk, true);
  515. if (req == NULL)
  516. goto drop;
  517. if (dccp_reqsk_init(req, dccp_sk(sk), skb))
  518. goto drop_and_free;
  519. dreq = dccp_rsk(req);
  520. if (dccp_parse_options(sk, dreq, skb))
  521. goto drop_and_free;
  522. if (security_inet_conn_request(sk, skb, req))
  523. goto drop_and_free;
  524. ireq = inet_rsk(req);
  525. sk_rcv_saddr_set(req_to_sk(req), ip_hdr(skb)->daddr);
  526. sk_daddr_set(req_to_sk(req), ip_hdr(skb)->saddr);
  527. ireq->ireq_family = AF_INET;
  528. ireq->ir_iif = sk->sk_bound_dev_if;
  529. /*
  530. * Step 3: Process LISTEN state
  531. *
  532. * Set S.ISR, S.GSR, S.SWL, S.SWH from packet or Init Cookie
  533. *
  534. * Setting S.SWL/S.SWH to is deferred to dccp_create_openreq_child().
  535. */
  536. dreq->dreq_isr = dcb->dccpd_seq;
  537. dreq->dreq_gsr = dreq->dreq_isr;
  538. dreq->dreq_iss = dccp_v4_init_sequence(skb);
  539. dreq->dreq_gss = dreq->dreq_iss;
  540. dreq->dreq_service = service;
  541. if (dccp_v4_send_response(sk, req))
  542. goto drop_and_free;
  543. inet_csk_reqsk_queue_hash_add(sk, req, DCCP_TIMEOUT_INIT);
  544. return 0;
  545. drop_and_free:
  546. reqsk_free(req);
  547. drop:
  548. __DCCP_INC_STATS(DCCP_MIB_ATTEMPTFAILS);
  549. return -1;
  550. }
  551. EXPORT_SYMBOL_GPL(dccp_v4_conn_request);
  552. int dccp_v4_do_rcv(struct sock *sk, struct sk_buff *skb)
  553. {
  554. struct dccp_hdr *dh = dccp_hdr(skb);
  555. if (sk->sk_state == DCCP_OPEN) { /* Fast path */
  556. if (dccp_rcv_established(sk, skb, dh, skb->len))
  557. goto reset;
  558. return 0;
  559. }
  560. /*
  561. * Step 3: Process LISTEN state
  562. * If P.type == Request or P contains a valid Init Cookie option,
  563. * (* Must scan the packet's options to check for Init
  564. * Cookies. Only Init Cookies are processed here,
  565. * however; other options are processed in Step 8. This
  566. * scan need only be performed if the endpoint uses Init
  567. * Cookies *)
  568. * (* Generate a new socket and switch to that socket *)
  569. * Set S := new socket for this port pair
  570. * S.state = RESPOND
  571. * Choose S.ISS (initial seqno) or set from Init Cookies
  572. * Initialize S.GAR := S.ISS
  573. * Set S.ISR, S.GSR, S.SWL, S.SWH from packet or Init Cookies
  574. * Continue with S.state == RESPOND
  575. * (* A Response packet will be generated in Step 11 *)
  576. * Otherwise,
  577. * Generate Reset(No Connection) unless P.type == Reset
  578. * Drop packet and return
  579. *
  580. * NOTE: the check for the packet types is done in
  581. * dccp_rcv_state_process
  582. */
  583. if (dccp_rcv_state_process(sk, skb, dh, skb->len))
  584. goto reset;
  585. return 0;
  586. reset:
  587. dccp_v4_ctl_send_reset(sk, skb);
  588. kfree_skb(skb);
  589. return 0;
  590. }
  591. EXPORT_SYMBOL_GPL(dccp_v4_do_rcv);
  592. /**
  593. * dccp_invalid_packet - check for malformed packets
  594. * Implements RFC 4340, 8.5: Step 1: Check header basics
  595. * Packets that fail these checks are ignored and do not receive Resets.
  596. */
  597. int dccp_invalid_packet(struct sk_buff *skb)
  598. {
  599. const struct dccp_hdr *dh;
  600. unsigned int cscov;
  601. u8 dccph_doff;
  602. if (skb->pkt_type != PACKET_HOST)
  603. return 1;
  604. /* If the packet is shorter than 12 bytes, drop packet and return */
  605. if (!pskb_may_pull(skb, sizeof(struct dccp_hdr))) {
  606. DCCP_WARN("pskb_may_pull failed\n");
  607. return 1;
  608. }
  609. dh = dccp_hdr(skb);
  610. /* If P.type is not understood, drop packet and return */
  611. if (dh->dccph_type >= DCCP_PKT_INVALID) {
  612. DCCP_WARN("invalid packet type\n");
  613. return 1;
  614. }
  615. /*
  616. * If P.Data Offset is too small for packet type, drop packet and return
  617. */
  618. dccph_doff = dh->dccph_doff;
  619. if (dccph_doff < dccp_hdr_len(skb) / sizeof(u32)) {
  620. DCCP_WARN("P.Data Offset(%u) too small\n", dccph_doff);
  621. return 1;
  622. }
  623. /*
  624. * If P.Data Offset is too too large for packet, drop packet and return
  625. */
  626. if (!pskb_may_pull(skb, dccph_doff * sizeof(u32))) {
  627. DCCP_WARN("P.Data Offset(%u) too large\n", dccph_doff);
  628. return 1;
  629. }
  630. dh = dccp_hdr(skb);
  631. /*
  632. * If P.type is not Data, Ack, or DataAck and P.X == 0 (the packet
  633. * has short sequence numbers), drop packet and return
  634. */
  635. if ((dh->dccph_type < DCCP_PKT_DATA ||
  636. dh->dccph_type > DCCP_PKT_DATAACK) && dh->dccph_x == 0) {
  637. DCCP_WARN("P.type (%s) not Data || [Data]Ack, while P.X == 0\n",
  638. dccp_packet_name(dh->dccph_type));
  639. return 1;
  640. }
  641. /*
  642. * If P.CsCov is too large for the packet size, drop packet and return.
  643. * This must come _before_ checksumming (not as RFC 4340 suggests).
  644. */
  645. cscov = dccp_csum_coverage(skb);
  646. if (cscov > skb->len) {
  647. DCCP_WARN("P.CsCov %u exceeds packet length %d\n",
  648. dh->dccph_cscov, skb->len);
  649. return 1;
  650. }
  651. /* If header checksum is incorrect, drop packet and return.
  652. * (This step is completed in the AF-dependent functions.) */
  653. skb->csum = skb_checksum(skb, 0, cscov, 0);
  654. return 0;
  655. }
  656. EXPORT_SYMBOL_GPL(dccp_invalid_packet);
  657. /* this is called when real data arrives */
  658. static int dccp_v4_rcv(struct sk_buff *skb)
  659. {
  660. const struct dccp_hdr *dh;
  661. const struct iphdr *iph;
  662. bool refcounted;
  663. struct sock *sk;
  664. int min_cov;
  665. /* Step 1: Check header basics */
  666. if (dccp_invalid_packet(skb))
  667. goto discard_it;
  668. iph = ip_hdr(skb);
  669. /* Step 1: If header checksum is incorrect, drop packet and return */
  670. if (dccp_v4_csum_finish(skb, iph->saddr, iph->daddr)) {
  671. DCCP_WARN("dropped packet with invalid checksum\n");
  672. goto discard_it;
  673. }
  674. dh = dccp_hdr(skb);
  675. DCCP_SKB_CB(skb)->dccpd_seq = dccp_hdr_seq(dh);
  676. DCCP_SKB_CB(skb)->dccpd_type = dh->dccph_type;
  677. dccp_pr_debug("%8.8s src=%pI4@%-5d dst=%pI4@%-5d seq=%llu",
  678. dccp_packet_name(dh->dccph_type),
  679. &iph->saddr, ntohs(dh->dccph_sport),
  680. &iph->daddr, ntohs(dh->dccph_dport),
  681. (unsigned long long) DCCP_SKB_CB(skb)->dccpd_seq);
  682. if (dccp_packet_without_ack(skb)) {
  683. DCCP_SKB_CB(skb)->dccpd_ack_seq = DCCP_PKT_WITHOUT_ACK_SEQ;
  684. dccp_pr_debug_cat("\n");
  685. } else {
  686. DCCP_SKB_CB(skb)->dccpd_ack_seq = dccp_hdr_ack_seq(skb);
  687. dccp_pr_debug_cat(", ack=%llu\n", (unsigned long long)
  688. DCCP_SKB_CB(skb)->dccpd_ack_seq);
  689. }
  690. lookup:
  691. sk = __inet_lookup_skb(&dccp_hashinfo, skb, __dccp_hdr_len(dh),
  692. dh->dccph_sport, dh->dccph_dport, &refcounted);
  693. if (!sk) {
  694. dccp_pr_debug("failed to look up flow ID in table and "
  695. "get corresponding socket\n");
  696. goto no_dccp_socket;
  697. }
  698. /*
  699. * Step 2:
  700. * ... or S.state == TIMEWAIT,
  701. * Generate Reset(No Connection) unless P.type == Reset
  702. * Drop packet and return
  703. */
  704. if (sk->sk_state == DCCP_TIME_WAIT) {
  705. dccp_pr_debug("sk->sk_state == DCCP_TIME_WAIT: do_time_wait\n");
  706. inet_twsk_put(inet_twsk(sk));
  707. goto no_dccp_socket;
  708. }
  709. if (sk->sk_state == DCCP_NEW_SYN_RECV) {
  710. struct request_sock *req = inet_reqsk(sk);
  711. struct sock *nsk;
  712. sk = req->rsk_listener;
  713. if (unlikely(sk->sk_state != DCCP_LISTEN)) {
  714. inet_csk_reqsk_queue_drop_and_put(sk, req);
  715. goto lookup;
  716. }
  717. sock_hold(sk);
  718. refcounted = true;
  719. nsk = dccp_check_req(sk, skb, req);
  720. if (!nsk) {
  721. reqsk_put(req);
  722. goto discard_and_relse;
  723. }
  724. if (nsk == sk) {
  725. reqsk_put(req);
  726. } else if (dccp_child_process(sk, nsk, skb)) {
  727. dccp_v4_ctl_send_reset(sk, skb);
  728. goto discard_and_relse;
  729. } else {
  730. sock_put(sk);
  731. return 0;
  732. }
  733. }
  734. /*
  735. * RFC 4340, sec. 9.2.1: Minimum Checksum Coverage
  736. * o if MinCsCov = 0, only packets with CsCov = 0 are accepted
  737. * o if MinCsCov > 0, also accept packets with CsCov >= MinCsCov
  738. */
  739. min_cov = dccp_sk(sk)->dccps_pcrlen;
  740. if (dh->dccph_cscov && (min_cov == 0 || dh->dccph_cscov < min_cov)) {
  741. dccp_pr_debug("Packet CsCov %d does not satisfy MinCsCov %d\n",
  742. dh->dccph_cscov, min_cov);
  743. /* FIXME: "Such packets SHOULD be reported using Data Dropped
  744. * options (Section 11.7) with Drop Code 0, Protocol
  745. * Constraints." */
  746. goto discard_and_relse;
  747. }
  748. if (!xfrm4_policy_check(sk, XFRM_POLICY_IN, skb))
  749. goto discard_and_relse;
  750. nf_reset(skb);
  751. return __sk_receive_skb(sk, skb, 1, dh->dccph_doff * 4, refcounted);
  752. no_dccp_socket:
  753. if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb))
  754. goto discard_it;
  755. /*
  756. * Step 2:
  757. * If no socket ...
  758. * Generate Reset(No Connection) unless P.type == Reset
  759. * Drop packet and return
  760. */
  761. if (dh->dccph_type != DCCP_PKT_RESET) {
  762. DCCP_SKB_CB(skb)->dccpd_reset_code =
  763. DCCP_RESET_CODE_NO_CONNECTION;
  764. dccp_v4_ctl_send_reset(sk, skb);
  765. }
  766. discard_it:
  767. kfree_skb(skb);
  768. return 0;
  769. discard_and_relse:
  770. if (refcounted)
  771. sock_put(sk);
  772. goto discard_it;
  773. }
  774. static const struct inet_connection_sock_af_ops dccp_ipv4_af_ops = {
  775. .queue_xmit = ip_queue_xmit,
  776. .send_check = dccp_v4_send_check,
  777. .rebuild_header = inet_sk_rebuild_header,
  778. .conn_request = dccp_v4_conn_request,
  779. .syn_recv_sock = dccp_v4_request_recv_sock,
  780. .net_header_len = sizeof(struct iphdr),
  781. .setsockopt = ip_setsockopt,
  782. .getsockopt = ip_getsockopt,
  783. .addr2sockaddr = inet_csk_addr2sockaddr,
  784. .sockaddr_len = sizeof(struct sockaddr_in),
  785. #ifdef CONFIG_COMPAT
  786. .compat_setsockopt = compat_ip_setsockopt,
  787. .compat_getsockopt = compat_ip_getsockopt,
  788. #endif
  789. };
  790. static int dccp_v4_init_sock(struct sock *sk)
  791. {
  792. static __u8 dccp_v4_ctl_sock_initialized;
  793. int err = dccp_init_sock(sk, dccp_v4_ctl_sock_initialized);
  794. if (err == 0) {
  795. if (unlikely(!dccp_v4_ctl_sock_initialized))
  796. dccp_v4_ctl_sock_initialized = 1;
  797. inet_csk(sk)->icsk_af_ops = &dccp_ipv4_af_ops;
  798. }
  799. return err;
  800. }
  801. static struct timewait_sock_ops dccp_timewait_sock_ops = {
  802. .twsk_obj_size = sizeof(struct inet_timewait_sock),
  803. };
  804. static struct proto dccp_v4_prot = {
  805. .name = "DCCP",
  806. .owner = THIS_MODULE,
  807. .close = dccp_close,
  808. .connect = dccp_v4_connect,
  809. .disconnect = dccp_disconnect,
  810. .ioctl = dccp_ioctl,
  811. .init = dccp_v4_init_sock,
  812. .setsockopt = dccp_setsockopt,
  813. .getsockopt = dccp_getsockopt,
  814. .sendmsg = dccp_sendmsg,
  815. .recvmsg = dccp_recvmsg,
  816. .backlog_rcv = dccp_v4_do_rcv,
  817. .hash = inet_hash,
  818. .unhash = inet_unhash,
  819. .accept = inet_csk_accept,
  820. .get_port = inet_csk_get_port,
  821. .shutdown = dccp_shutdown,
  822. .destroy = dccp_destroy_sock,
  823. .orphan_count = &dccp_orphan_count,
  824. .max_header = MAX_DCCP_HEADER,
  825. .obj_size = sizeof(struct dccp_sock),
  826. .slab_flags = SLAB_DESTROY_BY_RCU,
  827. .rsk_prot = &dccp_request_sock_ops,
  828. .twsk_prot = &dccp_timewait_sock_ops,
  829. .h.hashinfo = &dccp_hashinfo,
  830. #ifdef CONFIG_COMPAT
  831. .compat_setsockopt = compat_dccp_setsockopt,
  832. .compat_getsockopt = compat_dccp_getsockopt,
  833. #endif
  834. };
  835. static const struct net_protocol dccp_v4_protocol = {
  836. .handler = dccp_v4_rcv,
  837. .err_handler = dccp_v4_err,
  838. .no_policy = 1,
  839. .netns_ok = 1,
  840. .icmp_strict_tag_validation = 1,
  841. };
  842. static const struct proto_ops inet_dccp_ops = {
  843. .family = PF_INET,
  844. .owner = THIS_MODULE,
  845. .release = inet_release,
  846. .bind = inet_bind,
  847. .connect = inet_stream_connect,
  848. .socketpair = sock_no_socketpair,
  849. .accept = inet_accept,
  850. .getname = inet_getname,
  851. /* FIXME: work on tcp_poll to rename it to inet_csk_poll */
  852. .poll = dccp_poll,
  853. .ioctl = inet_ioctl,
  854. /* FIXME: work on inet_listen to rename it to sock_common_listen */
  855. .listen = inet_dccp_listen,
  856. .shutdown = inet_shutdown,
  857. .setsockopt = sock_common_setsockopt,
  858. .getsockopt = sock_common_getsockopt,
  859. .sendmsg = inet_sendmsg,
  860. .recvmsg = sock_common_recvmsg,
  861. .mmap = sock_no_mmap,
  862. .sendpage = sock_no_sendpage,
  863. #ifdef CONFIG_COMPAT
  864. .compat_setsockopt = compat_sock_common_setsockopt,
  865. .compat_getsockopt = compat_sock_common_getsockopt,
  866. #endif
  867. };
  868. static struct inet_protosw dccp_v4_protosw = {
  869. .type = SOCK_DCCP,
  870. .protocol = IPPROTO_DCCP,
  871. .prot = &dccp_v4_prot,
  872. .ops = &inet_dccp_ops,
  873. .flags = INET_PROTOSW_ICSK,
  874. };
  875. static int __net_init dccp_v4_init_net(struct net *net)
  876. {
  877. if (dccp_hashinfo.bhash == NULL)
  878. return -ESOCKTNOSUPPORT;
  879. return inet_ctl_sock_create(&net->dccp.v4_ctl_sk, PF_INET,
  880. SOCK_DCCP, IPPROTO_DCCP, net);
  881. }
  882. static void __net_exit dccp_v4_exit_net(struct net *net)
  883. {
  884. inet_ctl_sock_destroy(net->dccp.v4_ctl_sk);
  885. }
  886. static struct pernet_operations dccp_v4_ops = {
  887. .init = dccp_v4_init_net,
  888. .exit = dccp_v4_exit_net,
  889. };
  890. static int __init dccp_v4_init(void)
  891. {
  892. int err = proto_register(&dccp_v4_prot, 1);
  893. if (err != 0)
  894. goto out;
  895. err = inet_add_protocol(&dccp_v4_protocol, IPPROTO_DCCP);
  896. if (err != 0)
  897. goto out_proto_unregister;
  898. inet_register_protosw(&dccp_v4_protosw);
  899. err = register_pernet_subsys(&dccp_v4_ops);
  900. if (err)
  901. goto out_destroy_ctl_sock;
  902. out:
  903. return err;
  904. out_destroy_ctl_sock:
  905. inet_unregister_protosw(&dccp_v4_protosw);
  906. inet_del_protocol(&dccp_v4_protocol, IPPROTO_DCCP);
  907. out_proto_unregister:
  908. proto_unregister(&dccp_v4_prot);
  909. goto out;
  910. }
  911. static void __exit dccp_v4_exit(void)
  912. {
  913. unregister_pernet_subsys(&dccp_v4_ops);
  914. inet_unregister_protosw(&dccp_v4_protosw);
  915. inet_del_protocol(&dccp_v4_protocol, IPPROTO_DCCP);
  916. proto_unregister(&dccp_v4_prot);
  917. }
  918. module_init(dccp_v4_init);
  919. module_exit(dccp_v4_exit);
  920. /*
  921. * __stringify doesn't likes enums, so use SOCK_DCCP (6) and IPPROTO_DCCP (33)
  922. * values directly, Also cover the case where the protocol is not specified,
  923. * i.e. net-pf-PF_INET-proto-0-type-SOCK_DCCP
  924. */
  925. MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_INET, 33, 6);
  926. MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_INET, 0, 6);
  927. MODULE_LICENSE("GPL");
  928. MODULE_AUTHOR("Arnaldo Carvalho de Melo <acme@mandriva.com>");
  929. MODULE_DESCRIPTION("DCCP - Datagram Congestion Controlled Protocol");