ipv4.c 28 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073
  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);
  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_BH(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_BH(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_BH(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_BH(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_BH(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. RCU_INIT_POINTER(newinet->inet_opt, rcu_dereference(ireq->ireq_opt));
  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. if (*own_req)
  377. ireq->ireq_opt = NULL;
  378. else
  379. newinet->inet_opt = NULL;
  380. return newsk;
  381. exit_overflow:
  382. NET_INC_STATS_BH(sock_net(sk), LINUX_MIB_LISTENOVERFLOWS);
  383. exit_nonewsk:
  384. dst_release(dst);
  385. exit:
  386. NET_INC_STATS_BH(sock_net(sk), LINUX_MIB_LISTENDROPS);
  387. return NULL;
  388. put_and_exit:
  389. newinet->inet_opt = NULL;
  390. inet_csk_prepare_forced_close(newsk);
  391. dccp_done(newsk);
  392. goto exit;
  393. }
  394. EXPORT_SYMBOL_GPL(dccp_v4_request_recv_sock);
  395. static struct dst_entry* dccp_v4_route_skb(struct net *net, struct sock *sk,
  396. struct sk_buff *skb)
  397. {
  398. struct rtable *rt;
  399. const struct iphdr *iph = ip_hdr(skb);
  400. struct flowi4 fl4 = {
  401. .flowi4_oif = inet_iif(skb),
  402. .daddr = iph->saddr,
  403. .saddr = iph->daddr,
  404. .flowi4_tos = RT_CONN_FLAGS(sk),
  405. .flowi4_proto = sk->sk_protocol,
  406. .fl4_sport = dccp_hdr(skb)->dccph_dport,
  407. .fl4_dport = dccp_hdr(skb)->dccph_sport,
  408. };
  409. security_skb_classify_flow(skb, flowi4_to_flowi(&fl4));
  410. rt = ip_route_output_flow(net, &fl4, sk);
  411. if (IS_ERR(rt)) {
  412. IP_INC_STATS_BH(net, IPSTATS_MIB_OUTNOROUTES);
  413. return NULL;
  414. }
  415. return &rt->dst;
  416. }
  417. static int dccp_v4_send_response(const struct sock *sk, struct request_sock *req)
  418. {
  419. int err = -1;
  420. struct sk_buff *skb;
  421. struct dst_entry *dst;
  422. struct flowi4 fl4;
  423. dst = inet_csk_route_req(sk, &fl4, req);
  424. if (dst == NULL)
  425. goto out;
  426. skb = dccp_make_response(sk, dst, req);
  427. if (skb != NULL) {
  428. const struct inet_request_sock *ireq = inet_rsk(req);
  429. struct dccp_hdr *dh = dccp_hdr(skb);
  430. dh->dccph_checksum = dccp_v4_csum_finish(skb, ireq->ir_loc_addr,
  431. ireq->ir_rmt_addr);
  432. err = ip_build_and_send_pkt(skb, sk, ireq->ir_loc_addr,
  433. ireq->ir_rmt_addr,
  434. ireq_opt_deref(ireq));
  435. err = net_xmit_eval(err);
  436. }
  437. out:
  438. dst_release(dst);
  439. return err;
  440. }
  441. static void dccp_v4_ctl_send_reset(const struct sock *sk, struct sk_buff *rxskb)
  442. {
  443. int err;
  444. const struct iphdr *rxiph;
  445. struct sk_buff *skb;
  446. struct dst_entry *dst;
  447. struct net *net = dev_net(skb_dst(rxskb)->dev);
  448. struct sock *ctl_sk = net->dccp.v4_ctl_sk;
  449. /* Never send a reset in response to a reset. */
  450. if (dccp_hdr(rxskb)->dccph_type == DCCP_PKT_RESET)
  451. return;
  452. if (skb_rtable(rxskb)->rt_type != RTN_LOCAL)
  453. return;
  454. dst = dccp_v4_route_skb(net, ctl_sk, rxskb);
  455. if (dst == NULL)
  456. return;
  457. skb = dccp_ctl_make_reset(ctl_sk, rxskb);
  458. if (skb == NULL)
  459. goto out;
  460. rxiph = ip_hdr(rxskb);
  461. dccp_hdr(skb)->dccph_checksum = dccp_v4_csum_finish(skb, rxiph->saddr,
  462. rxiph->daddr);
  463. skb_dst_set(skb, dst_clone(dst));
  464. bh_lock_sock(ctl_sk);
  465. err = ip_build_and_send_pkt(skb, ctl_sk,
  466. rxiph->daddr, rxiph->saddr, NULL);
  467. bh_unlock_sock(ctl_sk);
  468. if (net_xmit_eval(err) == 0) {
  469. DCCP_INC_STATS_BH(DCCP_MIB_OUTSEGS);
  470. DCCP_INC_STATS_BH(DCCP_MIB_OUTRSTS);
  471. }
  472. out:
  473. dst_release(dst);
  474. }
  475. static void dccp_v4_reqsk_destructor(struct request_sock *req)
  476. {
  477. dccp_feat_list_purge(&dccp_rsk(req)->dreq_featneg);
  478. kfree(rcu_dereference_protected(inet_rsk(req)->ireq_opt, 1));
  479. }
  480. void dccp_syn_ack_timeout(const struct request_sock *req)
  481. {
  482. }
  483. EXPORT_SYMBOL(dccp_syn_ack_timeout);
  484. static struct request_sock_ops dccp_request_sock_ops __read_mostly = {
  485. .family = PF_INET,
  486. .obj_size = sizeof(struct dccp_request_sock),
  487. .rtx_syn_ack = dccp_v4_send_response,
  488. .send_ack = dccp_reqsk_send_ack,
  489. .destructor = dccp_v4_reqsk_destructor,
  490. .send_reset = dccp_v4_ctl_send_reset,
  491. .syn_ack_timeout = dccp_syn_ack_timeout,
  492. };
  493. int dccp_v4_conn_request(struct sock *sk, struct sk_buff *skb)
  494. {
  495. struct inet_request_sock *ireq;
  496. struct request_sock *req;
  497. struct dccp_request_sock *dreq;
  498. const __be32 service = dccp_hdr_request(skb)->dccph_req_service;
  499. struct dccp_skb_cb *dcb = DCCP_SKB_CB(skb);
  500. /* Never answer to DCCP_PKT_REQUESTs send to broadcast or multicast */
  501. if (skb_rtable(skb)->rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST))
  502. return 0; /* discard, don't send a reset here */
  503. if (dccp_bad_service_code(sk, service)) {
  504. dcb->dccpd_reset_code = DCCP_RESET_CODE_BAD_SERVICE_CODE;
  505. goto drop;
  506. }
  507. /*
  508. * TW buckets are converted to open requests without
  509. * limitations, they conserve resources and peer is
  510. * evidently real one.
  511. */
  512. dcb->dccpd_reset_code = DCCP_RESET_CODE_TOO_BUSY;
  513. if (inet_csk_reqsk_queue_is_full(sk))
  514. goto drop;
  515. if (sk_acceptq_is_full(sk))
  516. goto drop;
  517. req = inet_reqsk_alloc(&dccp_request_sock_ops, sk, true);
  518. if (req == NULL)
  519. goto drop;
  520. if (dccp_reqsk_init(req, dccp_sk(sk), skb))
  521. goto drop_and_free;
  522. dreq = dccp_rsk(req);
  523. if (dccp_parse_options(sk, dreq, skb))
  524. goto drop_and_free;
  525. if (security_inet_conn_request(sk, skb, req))
  526. goto drop_and_free;
  527. ireq = inet_rsk(req);
  528. sk_rcv_saddr_set(req_to_sk(req), ip_hdr(skb)->daddr);
  529. sk_daddr_set(req_to_sk(req), ip_hdr(skb)->saddr);
  530. ireq->ir_mark = inet_request_mark(sk, skb);
  531. ireq->ireq_family = AF_INET;
  532. ireq->ir_iif = sk->sk_bound_dev_if;
  533. /*
  534. * Step 3: Process LISTEN state
  535. *
  536. * Set S.ISR, S.GSR, S.SWL, S.SWH from packet or Init Cookie
  537. *
  538. * Setting S.SWL/S.SWH to is deferred to dccp_create_openreq_child().
  539. */
  540. dreq->dreq_isr = dcb->dccpd_seq;
  541. dreq->dreq_gsr = dreq->dreq_isr;
  542. dreq->dreq_iss = dccp_v4_init_sequence(skb);
  543. dreq->dreq_gss = dreq->dreq_iss;
  544. dreq->dreq_service = service;
  545. if (dccp_v4_send_response(sk, req))
  546. goto drop_and_free;
  547. inet_csk_reqsk_queue_hash_add(sk, req, DCCP_TIMEOUT_INIT);
  548. reqsk_put(req);
  549. return 0;
  550. drop_and_free:
  551. reqsk_free(req);
  552. drop:
  553. DCCP_INC_STATS_BH(DCCP_MIB_ATTEMPTFAILS);
  554. return -1;
  555. }
  556. EXPORT_SYMBOL_GPL(dccp_v4_conn_request);
  557. int dccp_v4_do_rcv(struct sock *sk, struct sk_buff *skb)
  558. {
  559. struct dccp_hdr *dh = dccp_hdr(skb);
  560. if (sk->sk_state == DCCP_OPEN) { /* Fast path */
  561. if (dccp_rcv_established(sk, skb, dh, skb->len))
  562. goto reset;
  563. return 0;
  564. }
  565. /*
  566. * Step 3: Process LISTEN state
  567. * If P.type == Request or P contains a valid Init Cookie option,
  568. * (* Must scan the packet's options to check for Init
  569. * Cookies. Only Init Cookies are processed here,
  570. * however; other options are processed in Step 8. This
  571. * scan need only be performed if the endpoint uses Init
  572. * Cookies *)
  573. * (* Generate a new socket and switch to that socket *)
  574. * Set S := new socket for this port pair
  575. * S.state = RESPOND
  576. * Choose S.ISS (initial seqno) or set from Init Cookies
  577. * Initialize S.GAR := S.ISS
  578. * Set S.ISR, S.GSR, S.SWL, S.SWH from packet or Init Cookies
  579. * Continue with S.state == RESPOND
  580. * (* A Response packet will be generated in Step 11 *)
  581. * Otherwise,
  582. * Generate Reset(No Connection) unless P.type == Reset
  583. * Drop packet and return
  584. *
  585. * NOTE: the check for the packet types is done in
  586. * dccp_rcv_state_process
  587. */
  588. if (dccp_rcv_state_process(sk, skb, dh, skb->len))
  589. goto reset;
  590. return 0;
  591. reset:
  592. dccp_v4_ctl_send_reset(sk, skb);
  593. kfree_skb(skb);
  594. return 0;
  595. }
  596. EXPORT_SYMBOL_GPL(dccp_v4_do_rcv);
  597. /**
  598. * dccp_invalid_packet - check for malformed packets
  599. * Implements RFC 4340, 8.5: Step 1: Check header basics
  600. * Packets that fail these checks are ignored and do not receive Resets.
  601. */
  602. int dccp_invalid_packet(struct sk_buff *skb)
  603. {
  604. const struct dccp_hdr *dh;
  605. unsigned int cscov;
  606. u8 dccph_doff;
  607. if (skb->pkt_type != PACKET_HOST)
  608. return 1;
  609. /* If the packet is shorter than 12 bytes, drop packet and return */
  610. if (!pskb_may_pull(skb, sizeof(struct dccp_hdr))) {
  611. DCCP_WARN("pskb_may_pull failed\n");
  612. return 1;
  613. }
  614. dh = dccp_hdr(skb);
  615. /* If P.type is not understood, drop packet and return */
  616. if (dh->dccph_type >= DCCP_PKT_INVALID) {
  617. DCCP_WARN("invalid packet type\n");
  618. return 1;
  619. }
  620. /*
  621. * If P.Data Offset is too small for packet type, drop packet and return
  622. */
  623. dccph_doff = dh->dccph_doff;
  624. if (dccph_doff < dccp_hdr_len(skb) / sizeof(u32)) {
  625. DCCP_WARN("P.Data Offset(%u) too small\n", dccph_doff);
  626. return 1;
  627. }
  628. /*
  629. * If P.Data Offset is too too large for packet, drop packet and return
  630. */
  631. if (!pskb_may_pull(skb, dccph_doff * sizeof(u32))) {
  632. DCCP_WARN("P.Data Offset(%u) too large\n", dccph_doff);
  633. return 1;
  634. }
  635. dh = dccp_hdr(skb);
  636. /*
  637. * If P.type is not Data, Ack, or DataAck and P.X == 0 (the packet
  638. * has short sequence numbers), drop packet and return
  639. */
  640. if ((dh->dccph_type < DCCP_PKT_DATA ||
  641. dh->dccph_type > DCCP_PKT_DATAACK) && dh->dccph_x == 0) {
  642. DCCP_WARN("P.type (%s) not Data || [Data]Ack, while P.X == 0\n",
  643. dccp_packet_name(dh->dccph_type));
  644. return 1;
  645. }
  646. /*
  647. * If P.CsCov is too large for the packet size, drop packet and return.
  648. * This must come _before_ checksumming (not as RFC 4340 suggests).
  649. */
  650. cscov = dccp_csum_coverage(skb);
  651. if (cscov > skb->len) {
  652. DCCP_WARN("P.CsCov %u exceeds packet length %d\n",
  653. dh->dccph_cscov, skb->len);
  654. return 1;
  655. }
  656. /* If header checksum is incorrect, drop packet and return.
  657. * (This step is completed in the AF-dependent functions.) */
  658. skb->csum = skb_checksum(skb, 0, cscov, 0);
  659. return 0;
  660. }
  661. EXPORT_SYMBOL_GPL(dccp_invalid_packet);
  662. /* this is called when real data arrives */
  663. static int dccp_v4_rcv(struct sk_buff *skb)
  664. {
  665. const struct dccp_hdr *dh;
  666. const struct iphdr *iph;
  667. struct sock *sk;
  668. int min_cov;
  669. /* Step 1: Check header basics */
  670. if (dccp_invalid_packet(skb))
  671. goto discard_it;
  672. iph = ip_hdr(skb);
  673. /* Step 1: If header checksum is incorrect, drop packet and return */
  674. if (dccp_v4_csum_finish(skb, iph->saddr, iph->daddr)) {
  675. DCCP_WARN("dropped packet with invalid checksum\n");
  676. goto discard_it;
  677. }
  678. dh = dccp_hdr(skb);
  679. DCCP_SKB_CB(skb)->dccpd_seq = dccp_hdr_seq(dh);
  680. DCCP_SKB_CB(skb)->dccpd_type = dh->dccph_type;
  681. dccp_pr_debug("%8.8s src=%pI4@%-5d dst=%pI4@%-5d seq=%llu",
  682. dccp_packet_name(dh->dccph_type),
  683. &iph->saddr, ntohs(dh->dccph_sport),
  684. &iph->daddr, ntohs(dh->dccph_dport),
  685. (unsigned long long) DCCP_SKB_CB(skb)->dccpd_seq);
  686. if (dccp_packet_without_ack(skb)) {
  687. DCCP_SKB_CB(skb)->dccpd_ack_seq = DCCP_PKT_WITHOUT_ACK_SEQ;
  688. dccp_pr_debug_cat("\n");
  689. } else {
  690. DCCP_SKB_CB(skb)->dccpd_ack_seq = dccp_hdr_ack_seq(skb);
  691. dccp_pr_debug_cat(", ack=%llu\n", (unsigned long long)
  692. DCCP_SKB_CB(skb)->dccpd_ack_seq);
  693. }
  694. lookup:
  695. sk = __inet_lookup_skb(&dccp_hashinfo, skb,
  696. dh->dccph_sport, dh->dccph_dport);
  697. if (!sk) {
  698. dccp_pr_debug("failed to look up flow ID in table and "
  699. "get corresponding socket\n");
  700. goto no_dccp_socket;
  701. }
  702. /*
  703. * Step 2:
  704. * ... or S.state == TIMEWAIT,
  705. * Generate Reset(No Connection) unless P.type == Reset
  706. * Drop packet and return
  707. */
  708. if (sk->sk_state == DCCP_TIME_WAIT) {
  709. dccp_pr_debug("sk->sk_state == DCCP_TIME_WAIT: do_time_wait\n");
  710. inet_twsk_put(inet_twsk(sk));
  711. goto no_dccp_socket;
  712. }
  713. if (sk->sk_state == DCCP_NEW_SYN_RECV) {
  714. struct request_sock *req = inet_reqsk(sk);
  715. struct sock *nsk;
  716. sk = req->rsk_listener;
  717. if (unlikely(sk->sk_state != DCCP_LISTEN)) {
  718. inet_csk_reqsk_queue_drop_and_put(sk, req);
  719. goto lookup;
  720. }
  721. sock_hold(sk);
  722. nsk = dccp_check_req(sk, skb, req);
  723. if (!nsk) {
  724. reqsk_put(req);
  725. goto discard_and_relse;
  726. }
  727. if (nsk == sk) {
  728. reqsk_put(req);
  729. } else if (dccp_child_process(sk, nsk, skb)) {
  730. dccp_v4_ctl_send_reset(sk, skb);
  731. goto discard_and_relse;
  732. } else {
  733. sock_put(sk);
  734. return 0;
  735. }
  736. }
  737. /*
  738. * RFC 4340, sec. 9.2.1: Minimum Checksum Coverage
  739. * o if MinCsCov = 0, only packets with CsCov = 0 are accepted
  740. * o if MinCsCov > 0, also accept packets with CsCov >= MinCsCov
  741. */
  742. min_cov = dccp_sk(sk)->dccps_pcrlen;
  743. if (dh->dccph_cscov && (min_cov == 0 || dh->dccph_cscov < min_cov)) {
  744. dccp_pr_debug("Packet CsCov %d does not satisfy MinCsCov %d\n",
  745. dh->dccph_cscov, min_cov);
  746. /* FIXME: "Such packets SHOULD be reported using Data Dropped
  747. * options (Section 11.7) with Drop Code 0, Protocol
  748. * Constraints." */
  749. goto discard_and_relse;
  750. }
  751. if (!xfrm4_policy_check(sk, XFRM_POLICY_IN, skb))
  752. goto discard_and_relse;
  753. nf_reset(skb);
  754. return sk_receive_skb(sk, skb, 1);
  755. no_dccp_socket:
  756. if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb))
  757. goto discard_it;
  758. /*
  759. * Step 2:
  760. * If no socket ...
  761. * Generate Reset(No Connection) unless P.type == Reset
  762. * Drop packet and return
  763. */
  764. if (dh->dccph_type != DCCP_PKT_RESET) {
  765. DCCP_SKB_CB(skb)->dccpd_reset_code =
  766. DCCP_RESET_CODE_NO_CONNECTION;
  767. dccp_v4_ctl_send_reset(sk, skb);
  768. }
  769. discard_it:
  770. kfree_skb(skb);
  771. return 0;
  772. discard_and_relse:
  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. .bind_conflict = inet_csk_bind_conflict,
  788. #ifdef CONFIG_COMPAT
  789. .compat_setsockopt = compat_ip_setsockopt,
  790. .compat_getsockopt = compat_ip_getsockopt,
  791. #endif
  792. };
  793. static int dccp_v4_init_sock(struct sock *sk)
  794. {
  795. static __u8 dccp_v4_ctl_sock_initialized;
  796. int err = dccp_init_sock(sk, dccp_v4_ctl_sock_initialized);
  797. if (err == 0) {
  798. if (unlikely(!dccp_v4_ctl_sock_initialized))
  799. dccp_v4_ctl_sock_initialized = 1;
  800. inet_csk(sk)->icsk_af_ops = &dccp_ipv4_af_ops;
  801. }
  802. return err;
  803. }
  804. static struct timewait_sock_ops dccp_timewait_sock_ops = {
  805. .twsk_obj_size = sizeof(struct inet_timewait_sock),
  806. };
  807. static struct proto dccp_v4_prot = {
  808. .name = "DCCP",
  809. .owner = THIS_MODULE,
  810. .close = dccp_close,
  811. .connect = dccp_v4_connect,
  812. .disconnect = dccp_disconnect,
  813. .ioctl = dccp_ioctl,
  814. .init = dccp_v4_init_sock,
  815. .setsockopt = dccp_setsockopt,
  816. .getsockopt = dccp_getsockopt,
  817. .sendmsg = dccp_sendmsg,
  818. .recvmsg = dccp_recvmsg,
  819. .backlog_rcv = dccp_v4_do_rcv,
  820. .hash = inet_hash,
  821. .unhash = inet_unhash,
  822. .accept = inet_csk_accept,
  823. .get_port = inet_csk_get_port,
  824. .shutdown = dccp_shutdown,
  825. .destroy = dccp_destroy_sock,
  826. .orphan_count = &dccp_orphan_count,
  827. .max_header = MAX_DCCP_HEADER,
  828. .obj_size = sizeof(struct dccp_sock),
  829. .slab_flags = SLAB_DESTROY_BY_RCU,
  830. .rsk_prot = &dccp_request_sock_ops,
  831. .twsk_prot = &dccp_timewait_sock_ops,
  832. .h.hashinfo = &dccp_hashinfo,
  833. #ifdef CONFIG_COMPAT
  834. .compat_setsockopt = compat_dccp_setsockopt,
  835. .compat_getsockopt = compat_dccp_getsockopt,
  836. #endif
  837. };
  838. static const struct net_protocol dccp_v4_protocol = {
  839. .handler = dccp_v4_rcv,
  840. .err_handler = dccp_v4_err,
  841. .no_policy = 1,
  842. .netns_ok = 1,
  843. .icmp_strict_tag_validation = 1,
  844. };
  845. static const struct proto_ops inet_dccp_ops = {
  846. .family = PF_INET,
  847. .owner = THIS_MODULE,
  848. .release = inet_release,
  849. .bind = inet_bind,
  850. .connect = inet_stream_connect,
  851. .socketpair = sock_no_socketpair,
  852. .accept = inet_accept,
  853. .getname = inet_getname,
  854. /* FIXME: work on tcp_poll to rename it to inet_csk_poll */
  855. .poll = dccp_poll,
  856. .ioctl = inet_ioctl,
  857. /* FIXME: work on inet_listen to rename it to sock_common_listen */
  858. .listen = inet_dccp_listen,
  859. .shutdown = inet_shutdown,
  860. .setsockopt = sock_common_setsockopt,
  861. .getsockopt = sock_common_getsockopt,
  862. .sendmsg = inet_sendmsg,
  863. .recvmsg = sock_common_recvmsg,
  864. .mmap = sock_no_mmap,
  865. .sendpage = sock_no_sendpage,
  866. #ifdef CONFIG_COMPAT
  867. .compat_setsockopt = compat_sock_common_setsockopt,
  868. .compat_getsockopt = compat_sock_common_getsockopt,
  869. #endif
  870. };
  871. static struct inet_protosw dccp_v4_protosw = {
  872. .type = SOCK_DCCP,
  873. .protocol = IPPROTO_DCCP,
  874. .prot = &dccp_v4_prot,
  875. .ops = &inet_dccp_ops,
  876. .flags = INET_PROTOSW_ICSK,
  877. };
  878. static int __net_init dccp_v4_init_net(struct net *net)
  879. {
  880. if (dccp_hashinfo.bhash == NULL)
  881. return -ESOCKTNOSUPPORT;
  882. return inet_ctl_sock_create(&net->dccp.v4_ctl_sk, PF_INET,
  883. SOCK_DCCP, IPPROTO_DCCP, net);
  884. }
  885. static void __net_exit dccp_v4_exit_net(struct net *net)
  886. {
  887. inet_ctl_sock_destroy(net->dccp.v4_ctl_sk);
  888. }
  889. static struct pernet_operations dccp_v4_ops = {
  890. .init = dccp_v4_init_net,
  891. .exit = dccp_v4_exit_net,
  892. };
  893. static int __init dccp_v4_init(void)
  894. {
  895. int err = proto_register(&dccp_v4_prot, 1);
  896. if (err != 0)
  897. goto out;
  898. err = inet_add_protocol(&dccp_v4_protocol, IPPROTO_DCCP);
  899. if (err != 0)
  900. goto out_proto_unregister;
  901. inet_register_protosw(&dccp_v4_protosw);
  902. err = register_pernet_subsys(&dccp_v4_ops);
  903. if (err)
  904. goto out_destroy_ctl_sock;
  905. out:
  906. return err;
  907. out_destroy_ctl_sock:
  908. inet_unregister_protosw(&dccp_v4_protosw);
  909. inet_del_protocol(&dccp_v4_protocol, IPPROTO_DCCP);
  910. out_proto_unregister:
  911. proto_unregister(&dccp_v4_prot);
  912. goto out;
  913. }
  914. static void __exit dccp_v4_exit(void)
  915. {
  916. unregister_pernet_subsys(&dccp_v4_ops);
  917. inet_unregister_protosw(&dccp_v4_protosw);
  918. inet_del_protocol(&dccp_v4_protocol, IPPROTO_DCCP);
  919. proto_unregister(&dccp_v4_prot);
  920. }
  921. module_init(dccp_v4_init);
  922. module_exit(dccp_v4_exit);
  923. /*
  924. * __stringify doesn't likes enums, so use SOCK_DCCP (6) and IPPROTO_DCCP (33)
  925. * values directly, Also cover the case where the protocol is not specified,
  926. * i.e. net-pf-PF_INET-proto-0-type-SOCK_DCCP
  927. */
  928. MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_INET, 33, 6);
  929. MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_INET, 0, 6);
  930. MODULE_LICENSE("GPL");
  931. MODULE_AUTHOR("Arnaldo Carvalho de Melo <acme@mandriva.com>");
  932. MODULE_DESCRIPTION("DCCP - Datagram Congestion Controlled Protocol");