ipv4.c 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080
  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. if (!sock_owned_by_user(sk))
  256. dccp_do_redirect(skb, sk);
  257. goto out;
  258. case ICMP_SOURCE_QUENCH:
  259. /* Just silently ignore these. */
  260. goto out;
  261. case ICMP_PARAMETERPROB:
  262. err = EPROTO;
  263. break;
  264. case ICMP_DEST_UNREACH:
  265. if (code > NR_ICMP_UNREACH)
  266. goto out;
  267. if (code == ICMP_FRAG_NEEDED) { /* PMTU discovery (RFC1191) */
  268. if (!sock_owned_by_user(sk))
  269. dccp_do_pmtu_discovery(sk, iph, info);
  270. goto out;
  271. }
  272. err = icmp_err_convert[code].errno;
  273. break;
  274. case ICMP_TIME_EXCEEDED:
  275. err = EHOSTUNREACH;
  276. break;
  277. default:
  278. goto out;
  279. }
  280. switch (sk->sk_state) {
  281. case DCCP_REQUESTING:
  282. case DCCP_RESPOND:
  283. if (!sock_owned_by_user(sk)) {
  284. __DCCP_INC_STATS(DCCP_MIB_ATTEMPTFAILS);
  285. sk->sk_err = err;
  286. sk->sk_error_report(sk);
  287. dccp_done(sk);
  288. } else
  289. sk->sk_err_soft = err;
  290. goto out;
  291. }
  292. /* If we've already connected we will keep trying
  293. * until we time out, or the user gives up.
  294. *
  295. * rfc1122 4.2.3.9 allows to consider as hard errors
  296. * only PROTO_UNREACH and PORT_UNREACH (well, FRAG_FAILED too,
  297. * but it is obsoleted by pmtu discovery).
  298. *
  299. * Note, that in modern internet, where routing is unreliable
  300. * and in each dark corner broken firewalls sit, sending random
  301. * errors ordered by their masters even this two messages finally lose
  302. * their original sense (even Linux sends invalid PORT_UNREACHs)
  303. *
  304. * Now we are in compliance with RFCs.
  305. * --ANK (980905)
  306. */
  307. inet = inet_sk(sk);
  308. if (!sock_owned_by_user(sk) && inet->recverr) {
  309. sk->sk_err = err;
  310. sk->sk_error_report(sk);
  311. } else /* Only an error on timeout */
  312. sk->sk_err_soft = err;
  313. out:
  314. bh_unlock_sock(sk);
  315. sock_put(sk);
  316. }
  317. static inline __sum16 dccp_v4_csum_finish(struct sk_buff *skb,
  318. __be32 src, __be32 dst)
  319. {
  320. return csum_tcpudp_magic(src, dst, skb->len, IPPROTO_DCCP, skb->csum);
  321. }
  322. void dccp_v4_send_check(struct sock *sk, struct sk_buff *skb)
  323. {
  324. const struct inet_sock *inet = inet_sk(sk);
  325. struct dccp_hdr *dh = dccp_hdr(skb);
  326. dccp_csum_outgoing(skb);
  327. dh->dccph_checksum = dccp_v4_csum_finish(skb,
  328. inet->inet_saddr,
  329. inet->inet_daddr);
  330. }
  331. EXPORT_SYMBOL_GPL(dccp_v4_send_check);
  332. static inline u64 dccp_v4_init_sequence(const struct sk_buff *skb)
  333. {
  334. return secure_dccp_sequence_number(ip_hdr(skb)->daddr,
  335. ip_hdr(skb)->saddr,
  336. dccp_hdr(skb)->dccph_dport,
  337. dccp_hdr(skb)->dccph_sport);
  338. }
  339. /*
  340. * The three way handshake has completed - we got a valid ACK or DATAACK -
  341. * now create the new socket.
  342. *
  343. * This is the equivalent of TCP's tcp_v4_syn_recv_sock
  344. */
  345. struct sock *dccp_v4_request_recv_sock(const struct sock *sk,
  346. struct sk_buff *skb,
  347. struct request_sock *req,
  348. struct dst_entry *dst,
  349. struct request_sock *req_unhash,
  350. bool *own_req)
  351. {
  352. struct inet_request_sock *ireq;
  353. struct inet_sock *newinet;
  354. struct sock *newsk;
  355. if (sk_acceptq_is_full(sk))
  356. goto exit_overflow;
  357. newsk = dccp_create_openreq_child(sk, req, skb);
  358. if (newsk == NULL)
  359. goto exit_nonewsk;
  360. newinet = inet_sk(newsk);
  361. ireq = inet_rsk(req);
  362. sk_daddr_set(newsk, ireq->ir_rmt_addr);
  363. sk_rcv_saddr_set(newsk, ireq->ir_loc_addr);
  364. newinet->inet_saddr = ireq->ir_loc_addr;
  365. newinet->inet_opt = ireq->opt;
  366. ireq->opt = NULL;
  367. newinet->mc_index = inet_iif(skb);
  368. newinet->mc_ttl = ip_hdr(skb)->ttl;
  369. newinet->inet_id = jiffies;
  370. if (dst == NULL && (dst = inet_csk_route_child_sock(sk, newsk, req)) == NULL)
  371. goto put_and_exit;
  372. sk_setup_caps(newsk, dst);
  373. dccp_sync_mss(newsk, dst_mtu(dst));
  374. if (__inet_inherit_port(sk, newsk) < 0)
  375. goto put_and_exit;
  376. *own_req = inet_ehash_nolisten(newsk, req_to_sk(req_unhash));
  377. return newsk;
  378. exit_overflow:
  379. __NET_INC_STATS(sock_net(sk), LINUX_MIB_LISTENOVERFLOWS);
  380. exit_nonewsk:
  381. dst_release(dst);
  382. exit:
  383. __NET_INC_STATS(sock_net(sk), LINUX_MIB_LISTENDROPS);
  384. return NULL;
  385. put_and_exit:
  386. inet_csk_prepare_forced_close(newsk);
  387. dccp_done(newsk);
  388. goto exit;
  389. }
  390. EXPORT_SYMBOL_GPL(dccp_v4_request_recv_sock);
  391. static struct dst_entry* dccp_v4_route_skb(struct net *net, struct sock *sk,
  392. struct sk_buff *skb)
  393. {
  394. struct rtable *rt;
  395. const struct iphdr *iph = ip_hdr(skb);
  396. struct flowi4 fl4 = {
  397. .flowi4_oif = inet_iif(skb),
  398. .daddr = iph->saddr,
  399. .saddr = iph->daddr,
  400. .flowi4_tos = RT_CONN_FLAGS(sk),
  401. .flowi4_proto = sk->sk_protocol,
  402. .fl4_sport = dccp_hdr(skb)->dccph_dport,
  403. .fl4_dport = dccp_hdr(skb)->dccph_sport,
  404. };
  405. security_skb_classify_flow(skb, flowi4_to_flowi(&fl4));
  406. rt = ip_route_output_flow(net, &fl4, sk);
  407. if (IS_ERR(rt)) {
  408. IP_INC_STATS(net, IPSTATS_MIB_OUTNOROUTES);
  409. return NULL;
  410. }
  411. return &rt->dst;
  412. }
  413. static int dccp_v4_send_response(const struct sock *sk, struct request_sock *req)
  414. {
  415. int err = -1;
  416. struct sk_buff *skb;
  417. struct dst_entry *dst;
  418. struct flowi4 fl4;
  419. dst = inet_csk_route_req(sk, &fl4, req);
  420. if (dst == NULL)
  421. goto out;
  422. skb = dccp_make_response(sk, dst, req);
  423. if (skb != NULL) {
  424. const struct inet_request_sock *ireq = inet_rsk(req);
  425. struct dccp_hdr *dh = dccp_hdr(skb);
  426. dh->dccph_checksum = dccp_v4_csum_finish(skb, ireq->ir_loc_addr,
  427. ireq->ir_rmt_addr);
  428. err = ip_build_and_send_pkt(skb, sk, ireq->ir_loc_addr,
  429. ireq->ir_rmt_addr,
  430. ireq->opt);
  431. err = net_xmit_eval(err);
  432. }
  433. out:
  434. dst_release(dst);
  435. return err;
  436. }
  437. static void dccp_v4_ctl_send_reset(const struct sock *sk, struct sk_buff *rxskb)
  438. {
  439. int err;
  440. const struct iphdr *rxiph;
  441. struct sk_buff *skb;
  442. struct dst_entry *dst;
  443. struct net *net = dev_net(skb_dst(rxskb)->dev);
  444. struct sock *ctl_sk = net->dccp.v4_ctl_sk;
  445. /* Never send a reset in response to a reset. */
  446. if (dccp_hdr(rxskb)->dccph_type == DCCP_PKT_RESET)
  447. return;
  448. if (skb_rtable(rxskb)->rt_type != RTN_LOCAL)
  449. return;
  450. dst = dccp_v4_route_skb(net, ctl_sk, rxskb);
  451. if (dst == NULL)
  452. return;
  453. skb = dccp_ctl_make_reset(ctl_sk, rxskb);
  454. if (skb == NULL)
  455. goto out;
  456. rxiph = ip_hdr(rxskb);
  457. dccp_hdr(skb)->dccph_checksum = dccp_v4_csum_finish(skb, rxiph->saddr,
  458. rxiph->daddr);
  459. skb_dst_set(skb, dst_clone(dst));
  460. local_bh_disable();
  461. bh_lock_sock(ctl_sk);
  462. err = ip_build_and_send_pkt(skb, ctl_sk,
  463. rxiph->daddr, rxiph->saddr, NULL);
  464. bh_unlock_sock(ctl_sk);
  465. if (net_xmit_eval(err) == 0) {
  466. __DCCP_INC_STATS(DCCP_MIB_OUTSEGS);
  467. __DCCP_INC_STATS(DCCP_MIB_OUTRSTS);
  468. }
  469. local_bh_enable();
  470. out:
  471. dst_release(dst);
  472. }
  473. static void dccp_v4_reqsk_destructor(struct request_sock *req)
  474. {
  475. dccp_feat_list_purge(&dccp_rsk(req)->dreq_featneg);
  476. kfree(inet_rsk(req)->opt);
  477. }
  478. void dccp_syn_ack_timeout(const struct request_sock *req)
  479. {
  480. }
  481. EXPORT_SYMBOL(dccp_syn_ack_timeout);
  482. static struct request_sock_ops dccp_request_sock_ops __read_mostly = {
  483. .family = PF_INET,
  484. .obj_size = sizeof(struct dccp_request_sock),
  485. .rtx_syn_ack = dccp_v4_send_response,
  486. .send_ack = dccp_reqsk_send_ack,
  487. .destructor = dccp_v4_reqsk_destructor,
  488. .send_reset = dccp_v4_ctl_send_reset,
  489. .syn_ack_timeout = dccp_syn_ack_timeout,
  490. };
  491. int dccp_v4_conn_request(struct sock *sk, struct sk_buff *skb)
  492. {
  493. struct inet_request_sock *ireq;
  494. struct request_sock *req;
  495. struct dccp_request_sock *dreq;
  496. const __be32 service = dccp_hdr_request(skb)->dccph_req_service;
  497. struct dccp_skb_cb *dcb = DCCP_SKB_CB(skb);
  498. /* Never answer to DCCP_PKT_REQUESTs send to broadcast or multicast */
  499. if (skb_rtable(skb)->rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST))
  500. return 0; /* discard, don't send a reset here */
  501. if (dccp_bad_service_code(sk, service)) {
  502. dcb->dccpd_reset_code = DCCP_RESET_CODE_BAD_SERVICE_CODE;
  503. goto drop;
  504. }
  505. /*
  506. * TW buckets are converted to open requests without
  507. * limitations, they conserve resources and peer is
  508. * evidently real one.
  509. */
  510. dcb->dccpd_reset_code = DCCP_RESET_CODE_TOO_BUSY;
  511. if (inet_csk_reqsk_queue_is_full(sk))
  512. goto drop;
  513. if (sk_acceptq_is_full(sk))
  514. goto drop;
  515. req = inet_reqsk_alloc(&dccp_request_sock_ops, sk, true);
  516. if (req == NULL)
  517. goto drop;
  518. if (dccp_reqsk_init(req, dccp_sk(sk), skb))
  519. goto drop_and_free;
  520. dreq = dccp_rsk(req);
  521. if (dccp_parse_options(sk, dreq, skb))
  522. goto drop_and_free;
  523. if (security_inet_conn_request(sk, skb, req))
  524. goto drop_and_free;
  525. ireq = inet_rsk(req);
  526. sk_rcv_saddr_set(req_to_sk(req), ip_hdr(skb)->daddr);
  527. sk_daddr_set(req_to_sk(req), ip_hdr(skb)->saddr);
  528. ireq->ireq_family = AF_INET;
  529. ireq->ir_iif = sk->sk_bound_dev_if;
  530. /*
  531. * Step 3: Process LISTEN state
  532. *
  533. * Set S.ISR, S.GSR, S.SWL, S.SWH from packet or Init Cookie
  534. *
  535. * Setting S.SWL/S.SWH to is deferred to dccp_create_openreq_child().
  536. */
  537. dreq->dreq_isr = dcb->dccpd_seq;
  538. dreq->dreq_gsr = dreq->dreq_isr;
  539. dreq->dreq_iss = dccp_v4_init_sequence(skb);
  540. dreq->dreq_gss = dreq->dreq_iss;
  541. dreq->dreq_service = service;
  542. if (dccp_v4_send_response(sk, req))
  543. goto drop_and_free;
  544. inet_csk_reqsk_queue_hash_add(sk, req, DCCP_TIMEOUT_INIT);
  545. reqsk_put(req);
  546. return 0;
  547. drop_and_free:
  548. reqsk_free(req);
  549. drop:
  550. __DCCP_INC_STATS(DCCP_MIB_ATTEMPTFAILS);
  551. return -1;
  552. }
  553. EXPORT_SYMBOL_GPL(dccp_v4_conn_request);
  554. int dccp_v4_do_rcv(struct sock *sk, struct sk_buff *skb)
  555. {
  556. struct dccp_hdr *dh = dccp_hdr(skb);
  557. if (sk->sk_state == DCCP_OPEN) { /* Fast path */
  558. if (dccp_rcv_established(sk, skb, dh, skb->len))
  559. goto reset;
  560. return 0;
  561. }
  562. /*
  563. * Step 3: Process LISTEN state
  564. * If P.type == Request or P contains a valid Init Cookie option,
  565. * (* Must scan the packet's options to check for Init
  566. * Cookies. Only Init Cookies are processed here,
  567. * however; other options are processed in Step 8. This
  568. * scan need only be performed if the endpoint uses Init
  569. * Cookies *)
  570. * (* Generate a new socket and switch to that socket *)
  571. * Set S := new socket for this port pair
  572. * S.state = RESPOND
  573. * Choose S.ISS (initial seqno) or set from Init Cookies
  574. * Initialize S.GAR := S.ISS
  575. * Set S.ISR, S.GSR, S.SWL, S.SWH from packet or Init Cookies
  576. * Continue with S.state == RESPOND
  577. * (* A Response packet will be generated in Step 11 *)
  578. * Otherwise,
  579. * Generate Reset(No Connection) unless P.type == Reset
  580. * Drop packet and return
  581. *
  582. * NOTE: the check for the packet types is done in
  583. * dccp_rcv_state_process
  584. */
  585. if (dccp_rcv_state_process(sk, skb, dh, skb->len))
  586. goto reset;
  587. return 0;
  588. reset:
  589. dccp_v4_ctl_send_reset(sk, skb);
  590. kfree_skb(skb);
  591. return 0;
  592. }
  593. EXPORT_SYMBOL_GPL(dccp_v4_do_rcv);
  594. /**
  595. * dccp_invalid_packet - check for malformed packets
  596. * Implements RFC 4340, 8.5: Step 1: Check header basics
  597. * Packets that fail these checks are ignored and do not receive Resets.
  598. */
  599. int dccp_invalid_packet(struct sk_buff *skb)
  600. {
  601. const struct dccp_hdr *dh;
  602. unsigned int cscov;
  603. u8 dccph_doff;
  604. if (skb->pkt_type != PACKET_HOST)
  605. return 1;
  606. /* If the packet is shorter than 12 bytes, drop packet and return */
  607. if (!pskb_may_pull(skb, sizeof(struct dccp_hdr))) {
  608. DCCP_WARN("pskb_may_pull failed\n");
  609. return 1;
  610. }
  611. dh = dccp_hdr(skb);
  612. /* If P.type is not understood, drop packet and return */
  613. if (dh->dccph_type >= DCCP_PKT_INVALID) {
  614. DCCP_WARN("invalid packet type\n");
  615. return 1;
  616. }
  617. /*
  618. * If P.Data Offset is too small for packet type, drop packet and return
  619. */
  620. dccph_doff = dh->dccph_doff;
  621. if (dccph_doff < dccp_hdr_len(skb) / sizeof(u32)) {
  622. DCCP_WARN("P.Data Offset(%u) too small\n", dccph_doff);
  623. return 1;
  624. }
  625. /*
  626. * If P.Data Offset is too too large for packet, drop packet and return
  627. */
  628. if (!pskb_may_pull(skb, dccph_doff * sizeof(u32))) {
  629. DCCP_WARN("P.Data Offset(%u) too large\n", dccph_doff);
  630. return 1;
  631. }
  632. dh = dccp_hdr(skb);
  633. /*
  634. * If P.type is not Data, Ack, or DataAck and P.X == 0 (the packet
  635. * has short sequence numbers), drop packet and return
  636. */
  637. if ((dh->dccph_type < DCCP_PKT_DATA ||
  638. dh->dccph_type > DCCP_PKT_DATAACK) && dh->dccph_x == 0) {
  639. DCCP_WARN("P.type (%s) not Data || [Data]Ack, while P.X == 0\n",
  640. dccp_packet_name(dh->dccph_type));
  641. return 1;
  642. }
  643. /*
  644. * If P.CsCov is too large for the packet size, drop packet and return.
  645. * This must come _before_ checksumming (not as RFC 4340 suggests).
  646. */
  647. cscov = dccp_csum_coverage(skb);
  648. if (cscov > skb->len) {
  649. DCCP_WARN("P.CsCov %u exceeds packet length %d\n",
  650. dh->dccph_cscov, skb->len);
  651. return 1;
  652. }
  653. /* If header checksum is incorrect, drop packet and return.
  654. * (This step is completed in the AF-dependent functions.) */
  655. skb->csum = skb_checksum(skb, 0, cscov, 0);
  656. return 0;
  657. }
  658. EXPORT_SYMBOL_GPL(dccp_invalid_packet);
  659. /* this is called when real data arrives */
  660. static int dccp_v4_rcv(struct sk_buff *skb)
  661. {
  662. const struct dccp_hdr *dh;
  663. const struct iphdr *iph;
  664. bool refcounted;
  665. struct sock *sk;
  666. int min_cov;
  667. /* Step 1: Check header basics */
  668. if (dccp_invalid_packet(skb))
  669. goto discard_it;
  670. iph = ip_hdr(skb);
  671. /* Step 1: If header checksum is incorrect, drop packet and return */
  672. if (dccp_v4_csum_finish(skb, iph->saddr, iph->daddr)) {
  673. DCCP_WARN("dropped packet with invalid checksum\n");
  674. goto discard_it;
  675. }
  676. dh = dccp_hdr(skb);
  677. DCCP_SKB_CB(skb)->dccpd_seq = dccp_hdr_seq(dh);
  678. DCCP_SKB_CB(skb)->dccpd_type = dh->dccph_type;
  679. dccp_pr_debug("%8.8s src=%pI4@%-5d dst=%pI4@%-5d seq=%llu",
  680. dccp_packet_name(dh->dccph_type),
  681. &iph->saddr, ntohs(dh->dccph_sport),
  682. &iph->daddr, ntohs(dh->dccph_dport),
  683. (unsigned long long) DCCP_SKB_CB(skb)->dccpd_seq);
  684. if (dccp_packet_without_ack(skb)) {
  685. DCCP_SKB_CB(skb)->dccpd_ack_seq = DCCP_PKT_WITHOUT_ACK_SEQ;
  686. dccp_pr_debug_cat("\n");
  687. } else {
  688. DCCP_SKB_CB(skb)->dccpd_ack_seq = dccp_hdr_ack_seq(skb);
  689. dccp_pr_debug_cat(", ack=%llu\n", (unsigned long long)
  690. DCCP_SKB_CB(skb)->dccpd_ack_seq);
  691. }
  692. lookup:
  693. sk = __inet_lookup_skb(&dccp_hashinfo, skb, __dccp_hdr_len(dh),
  694. dh->dccph_sport, dh->dccph_dport, &refcounted);
  695. if (!sk) {
  696. dccp_pr_debug("failed to look up flow ID in table and "
  697. "get corresponding socket\n");
  698. goto no_dccp_socket;
  699. }
  700. /*
  701. * Step 2:
  702. * ... or S.state == TIMEWAIT,
  703. * Generate Reset(No Connection) unless P.type == Reset
  704. * Drop packet and return
  705. */
  706. if (sk->sk_state == DCCP_TIME_WAIT) {
  707. dccp_pr_debug("sk->sk_state == DCCP_TIME_WAIT: do_time_wait\n");
  708. inet_twsk_put(inet_twsk(sk));
  709. goto no_dccp_socket;
  710. }
  711. if (sk->sk_state == DCCP_NEW_SYN_RECV) {
  712. struct request_sock *req = inet_reqsk(sk);
  713. struct sock *nsk;
  714. sk = req->rsk_listener;
  715. if (unlikely(sk->sk_state != DCCP_LISTEN)) {
  716. inet_csk_reqsk_queue_drop_and_put(sk, req);
  717. goto lookup;
  718. }
  719. sock_hold(sk);
  720. refcounted = true;
  721. nsk = dccp_check_req(sk, skb, req);
  722. if (!nsk) {
  723. reqsk_put(req);
  724. goto discard_and_relse;
  725. }
  726. if (nsk == sk) {
  727. reqsk_put(req);
  728. } else if (dccp_child_process(sk, nsk, skb)) {
  729. dccp_v4_ctl_send_reset(sk, skb);
  730. goto discard_and_relse;
  731. } else {
  732. sock_put(sk);
  733. return 0;
  734. }
  735. }
  736. /*
  737. * RFC 4340, sec. 9.2.1: Minimum Checksum Coverage
  738. * o if MinCsCov = 0, only packets with CsCov = 0 are accepted
  739. * o if MinCsCov > 0, also accept packets with CsCov >= MinCsCov
  740. */
  741. min_cov = dccp_sk(sk)->dccps_pcrlen;
  742. if (dh->dccph_cscov && (min_cov == 0 || dh->dccph_cscov < min_cov)) {
  743. dccp_pr_debug("Packet CsCov %d does not satisfy MinCsCov %d\n",
  744. dh->dccph_cscov, min_cov);
  745. /* FIXME: "Such packets SHOULD be reported using Data Dropped
  746. * options (Section 11.7) with Drop Code 0, Protocol
  747. * Constraints." */
  748. goto discard_and_relse;
  749. }
  750. if (!xfrm4_policy_check(sk, XFRM_POLICY_IN, skb))
  751. goto discard_and_relse;
  752. nf_reset(skb);
  753. return __sk_receive_skb(sk, skb, 1, dh->dccph_doff * 4, refcounted);
  754. no_dccp_socket:
  755. if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb))
  756. goto discard_it;
  757. /*
  758. * Step 2:
  759. * If no socket ...
  760. * Generate Reset(No Connection) unless P.type == Reset
  761. * Drop packet and return
  762. */
  763. if (dh->dccph_type != DCCP_PKT_RESET) {
  764. DCCP_SKB_CB(skb)->dccpd_reset_code =
  765. DCCP_RESET_CODE_NO_CONNECTION;
  766. dccp_v4_ctl_send_reset(sk, skb);
  767. }
  768. discard_it:
  769. kfree_skb(skb);
  770. return 0;
  771. discard_and_relse:
  772. if (refcounted)
  773. sock_put(sk);
  774. goto discard_it;
  775. }
  776. static const struct inet_connection_sock_af_ops dccp_ipv4_af_ops = {
  777. .queue_xmit = ip_queue_xmit,
  778. .send_check = dccp_v4_send_check,
  779. .rebuild_header = inet_sk_rebuild_header,
  780. .conn_request = dccp_v4_conn_request,
  781. .syn_recv_sock = dccp_v4_request_recv_sock,
  782. .net_header_len = sizeof(struct iphdr),
  783. .setsockopt = ip_setsockopt,
  784. .getsockopt = ip_getsockopt,
  785. .addr2sockaddr = inet_csk_addr2sockaddr,
  786. .sockaddr_len = sizeof(struct sockaddr_in),
  787. #ifdef CONFIG_COMPAT
  788. .compat_setsockopt = compat_ip_setsockopt,
  789. .compat_getsockopt = compat_ip_getsockopt,
  790. #endif
  791. };
  792. static int dccp_v4_init_sock(struct sock *sk)
  793. {
  794. static __u8 dccp_v4_ctl_sock_initialized;
  795. int err = dccp_init_sock(sk, dccp_v4_ctl_sock_initialized);
  796. if (err == 0) {
  797. if (unlikely(!dccp_v4_ctl_sock_initialized))
  798. dccp_v4_ctl_sock_initialized = 1;
  799. inet_csk(sk)->icsk_af_ops = &dccp_ipv4_af_ops;
  800. }
  801. return err;
  802. }
  803. static struct timewait_sock_ops dccp_timewait_sock_ops = {
  804. .twsk_obj_size = sizeof(struct inet_timewait_sock),
  805. };
  806. static struct proto dccp_v4_prot = {
  807. .name = "DCCP",
  808. .owner = THIS_MODULE,
  809. .close = dccp_close,
  810. .connect = dccp_v4_connect,
  811. .disconnect = dccp_disconnect,
  812. .ioctl = dccp_ioctl,
  813. .init = dccp_v4_init_sock,
  814. .setsockopt = dccp_setsockopt,
  815. .getsockopt = dccp_getsockopt,
  816. .sendmsg = dccp_sendmsg,
  817. .recvmsg = dccp_recvmsg,
  818. .backlog_rcv = dccp_v4_do_rcv,
  819. .hash = inet_hash,
  820. .unhash = inet_unhash,
  821. .accept = inet_csk_accept,
  822. .get_port = inet_csk_get_port,
  823. .shutdown = dccp_shutdown,
  824. .destroy = dccp_destroy_sock,
  825. .orphan_count = &dccp_orphan_count,
  826. .max_header = MAX_DCCP_HEADER,
  827. .obj_size = sizeof(struct dccp_sock),
  828. .slab_flags = SLAB_TYPESAFE_BY_RCU,
  829. .rsk_prot = &dccp_request_sock_ops,
  830. .twsk_prot = &dccp_timewait_sock_ops,
  831. .h.hashinfo = &dccp_hashinfo,
  832. #ifdef CONFIG_COMPAT
  833. .compat_setsockopt = compat_dccp_setsockopt,
  834. .compat_getsockopt = compat_dccp_getsockopt,
  835. #endif
  836. };
  837. static const struct net_protocol dccp_v4_protocol = {
  838. .handler = dccp_v4_rcv,
  839. .err_handler = dccp_v4_err,
  840. .no_policy = 1,
  841. .netns_ok = 1,
  842. .icmp_strict_tag_validation = 1,
  843. };
  844. static const struct proto_ops inet_dccp_ops = {
  845. .family = PF_INET,
  846. .owner = THIS_MODULE,
  847. .release = inet_release,
  848. .bind = inet_bind,
  849. .connect = inet_stream_connect,
  850. .socketpair = sock_no_socketpair,
  851. .accept = inet_accept,
  852. .getname = inet_getname,
  853. /* FIXME: work on tcp_poll to rename it to inet_csk_poll */
  854. .poll = dccp_poll,
  855. .ioctl = inet_ioctl,
  856. /* FIXME: work on inet_listen to rename it to sock_common_listen */
  857. .listen = inet_dccp_listen,
  858. .shutdown = inet_shutdown,
  859. .setsockopt = sock_common_setsockopt,
  860. .getsockopt = sock_common_getsockopt,
  861. .sendmsg = inet_sendmsg,
  862. .recvmsg = sock_common_recvmsg,
  863. .mmap = sock_no_mmap,
  864. .sendpage = sock_no_sendpage,
  865. #ifdef CONFIG_COMPAT
  866. .compat_setsockopt = compat_sock_common_setsockopt,
  867. .compat_getsockopt = compat_sock_common_getsockopt,
  868. #endif
  869. };
  870. static struct inet_protosw dccp_v4_protosw = {
  871. .type = SOCK_DCCP,
  872. .protocol = IPPROTO_DCCP,
  873. .prot = &dccp_v4_prot,
  874. .ops = &inet_dccp_ops,
  875. .flags = INET_PROTOSW_ICSK,
  876. };
  877. static int __net_init dccp_v4_init_net(struct net *net)
  878. {
  879. if (dccp_hashinfo.bhash == NULL)
  880. return -ESOCKTNOSUPPORT;
  881. return inet_ctl_sock_create(&net->dccp.v4_ctl_sk, PF_INET,
  882. SOCK_DCCP, IPPROTO_DCCP, net);
  883. }
  884. static void __net_exit dccp_v4_exit_net(struct net *net)
  885. {
  886. inet_ctl_sock_destroy(net->dccp.v4_ctl_sk);
  887. }
  888. static void __net_exit dccp_v4_exit_batch(struct list_head *net_exit_list)
  889. {
  890. inet_twsk_purge(&dccp_hashinfo, AF_INET);
  891. }
  892. static struct pernet_operations dccp_v4_ops = {
  893. .init = dccp_v4_init_net,
  894. .exit = dccp_v4_exit_net,
  895. .exit_batch = dccp_v4_exit_batch,
  896. };
  897. static int __init dccp_v4_init(void)
  898. {
  899. int err = proto_register(&dccp_v4_prot, 1);
  900. if (err)
  901. goto out;
  902. inet_register_protosw(&dccp_v4_protosw);
  903. err = register_pernet_subsys(&dccp_v4_ops);
  904. if (err)
  905. goto out_destroy_ctl_sock;
  906. err = inet_add_protocol(&dccp_v4_protocol, IPPROTO_DCCP);
  907. if (err)
  908. goto out_proto_unregister;
  909. out:
  910. return err;
  911. out_proto_unregister:
  912. unregister_pernet_subsys(&dccp_v4_ops);
  913. out_destroy_ctl_sock:
  914. inet_unregister_protosw(&dccp_v4_protosw);
  915. proto_unregister(&dccp_v4_prot);
  916. goto out;
  917. }
  918. static void __exit dccp_v4_exit(void)
  919. {
  920. inet_del_protocol(&dccp_v4_protocol, IPPROTO_DCCP);
  921. unregister_pernet_subsys(&dccp_v4_ops);
  922. inet_unregister_protosw(&dccp_v4_protosw);
  923. proto_unregister(&dccp_v4_prot);
  924. }
  925. module_init(dccp_v4_init);
  926. module_exit(dccp_v4_exit);
  927. /*
  928. * __stringify doesn't likes enums, so use SOCK_DCCP (6) and IPPROTO_DCCP (33)
  929. * values directly, Also cover the case where the protocol is not specified,
  930. * i.e. net-pf-PF_INET-proto-0-type-SOCK_DCCP
  931. */
  932. MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_INET, 33, 6);
  933. MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_INET, 0, 6);
  934. MODULE_LICENSE("GPL");
  935. MODULE_AUTHOR("Arnaldo Carvalho de Melo <acme@mandriva.com>");
  936. MODULE_DESCRIPTION("DCCP - Datagram Congestion Controlled Protocol");