ipv4.c 28 KB

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