ipv4.c 27 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055
  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/config.h>
  13. #include <linux/dccp.h>
  14. #include <linux/icmp.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_hashtables.h>
  20. #include <net/inet_sock.h>
  21. #include <net/sock.h>
  22. #include <net/timewait_sock.h>
  23. #include <net/tcp_states.h>
  24. #include <net/xfrm.h>
  25. #include "ackvec.h"
  26. #include "ccid.h"
  27. #include "dccp.h"
  28. #include "feat.h"
  29. struct inet_hashinfo __cacheline_aligned dccp_hashinfo = {
  30. .lhash_lock = RW_LOCK_UNLOCKED,
  31. .lhash_users = ATOMIC_INIT(0),
  32. .lhash_wait = __WAIT_QUEUE_HEAD_INITIALIZER(dccp_hashinfo.lhash_wait),
  33. };
  34. EXPORT_SYMBOL_GPL(dccp_hashinfo);
  35. static int dccp_v4_get_port(struct sock *sk, const unsigned short snum)
  36. {
  37. return inet_csk_get_port(&dccp_hashinfo, sk, snum,
  38. inet_csk_bind_conflict);
  39. }
  40. int dccp_v4_connect(struct sock *sk, struct sockaddr *uaddr, int addr_len)
  41. {
  42. struct inet_sock *inet = inet_sk(sk);
  43. struct dccp_sock *dp = dccp_sk(sk);
  44. const struct sockaddr_in *usin = (struct sockaddr_in *)uaddr;
  45. struct rtable *rt;
  46. u32 daddr, nexthop;
  47. int tmp;
  48. int err;
  49. dp->dccps_role = DCCP_ROLE_CLIENT;
  50. if (dccp_service_not_initialized(sk))
  51. return -EPROTO;
  52. if (addr_len < sizeof(struct sockaddr_in))
  53. return -EINVAL;
  54. if (usin->sin_family != AF_INET)
  55. return -EAFNOSUPPORT;
  56. nexthop = daddr = usin->sin_addr.s_addr;
  57. if (inet->opt != NULL && inet->opt->srr) {
  58. if (daddr == 0)
  59. return -EINVAL;
  60. nexthop = inet->opt->faddr;
  61. }
  62. tmp = ip_route_connect(&rt, nexthop, inet->saddr,
  63. RT_CONN_FLAGS(sk), sk->sk_bound_dev_if,
  64. IPPROTO_DCCP,
  65. inet->sport, usin->sin_port, sk);
  66. if (tmp < 0)
  67. return tmp;
  68. if (rt->rt_flags & (RTCF_MULTICAST | RTCF_BROADCAST)) {
  69. ip_rt_put(rt);
  70. return -ENETUNREACH;
  71. }
  72. if (inet->opt == NULL || !inet->opt->srr)
  73. daddr = rt->rt_dst;
  74. if (inet->saddr == 0)
  75. inet->saddr = rt->rt_src;
  76. inet->rcv_saddr = inet->saddr;
  77. inet->dport = usin->sin_port;
  78. inet->daddr = daddr;
  79. inet_csk(sk)->icsk_ext_hdr_len = 0;
  80. if (inet->opt != NULL)
  81. inet_csk(sk)->icsk_ext_hdr_len = inet->opt->optlen;
  82. /*
  83. * Socket identity is still unknown (sport may be zero).
  84. * However we set state to DCCP_REQUESTING and not releasing socket
  85. * lock select source port, enter ourselves into the hash tables and
  86. * complete initialization after this.
  87. */
  88. dccp_set_state(sk, DCCP_REQUESTING);
  89. err = inet_hash_connect(&dccp_death_row, sk);
  90. if (err != 0)
  91. goto failure;
  92. err = ip_route_newports(&rt, IPPROTO_DCCP, inet->sport, inet->dport,
  93. sk);
  94. if (err != 0)
  95. goto failure;
  96. /* OK, now commit destination to socket. */
  97. sk_setup_caps(sk, &rt->u.dst);
  98. dp->dccps_gar =
  99. dp->dccps_iss = secure_dccp_sequence_number(inet->saddr,
  100. inet->daddr,
  101. inet->sport,
  102. usin->sin_port);
  103. dccp_update_gss(sk, dp->dccps_iss);
  104. inet->id = dp->dccps_iss ^ jiffies;
  105. err = dccp_connect(sk);
  106. rt = NULL;
  107. if (err != 0)
  108. goto failure;
  109. out:
  110. return err;
  111. failure:
  112. /*
  113. * This unhashes the socket and releases the local port, if necessary.
  114. */
  115. dccp_set_state(sk, DCCP_CLOSED);
  116. ip_rt_put(rt);
  117. sk->sk_route_caps = 0;
  118. inet->dport = 0;
  119. goto out;
  120. }
  121. EXPORT_SYMBOL_GPL(dccp_v4_connect);
  122. /*
  123. * This routine does path mtu discovery as defined in RFC1191.
  124. */
  125. static inline void dccp_do_pmtu_discovery(struct sock *sk,
  126. const struct iphdr *iph,
  127. u32 mtu)
  128. {
  129. struct dst_entry *dst;
  130. const struct inet_sock *inet = inet_sk(sk);
  131. const struct dccp_sock *dp = dccp_sk(sk);
  132. /* We are not interested in DCCP_LISTEN and request_socks (RESPONSEs
  133. * send out by Linux are always < 576bytes so they should go through
  134. * unfragmented).
  135. */
  136. if (sk->sk_state == DCCP_LISTEN)
  137. return;
  138. /* We don't check in the destentry if pmtu discovery is forbidden
  139. * on this route. We just assume that no packet_to_big packets
  140. * are send back when pmtu discovery is not active.
  141. * There is a small race when the user changes this flag in the
  142. * route, but I think that's acceptable.
  143. */
  144. if ((dst = __sk_dst_check(sk, 0)) == NULL)
  145. return;
  146. dst->ops->update_pmtu(dst, mtu);
  147. /* Something is about to be wrong... Remember soft error
  148. * for the case, if this connection will not able to recover.
  149. */
  150. if (mtu < dst_mtu(dst) && ip_dont_fragment(sk, dst))
  151. sk->sk_err_soft = EMSGSIZE;
  152. mtu = dst_mtu(dst);
  153. if (inet->pmtudisc != IP_PMTUDISC_DONT &&
  154. inet_csk(sk)->icsk_pmtu_cookie > mtu) {
  155. dccp_sync_mss(sk, mtu);
  156. /*
  157. * From: draft-ietf-dccp-spec-11.txt
  158. *
  159. * DCCP-Sync packets are the best choice for upward
  160. * probing, since DCCP-Sync probes do not risk application
  161. * data loss.
  162. */
  163. dccp_send_sync(sk, dp->dccps_gsr, DCCP_PKT_SYNC);
  164. } /* else let the usual retransmit timer handle it */
  165. }
  166. static void dccp_v4_ctl_send_ack(struct sk_buff *rxskb)
  167. {
  168. int err;
  169. struct dccp_hdr *rxdh = dccp_hdr(rxskb), *dh;
  170. const int dccp_hdr_ack_len = sizeof(struct dccp_hdr) +
  171. sizeof(struct dccp_hdr_ext) +
  172. sizeof(struct dccp_hdr_ack_bits);
  173. struct sk_buff *skb;
  174. if (((struct rtable *)rxskb->dst)->rt_type != RTN_LOCAL)
  175. return;
  176. skb = alloc_skb(MAX_DCCP_HEADER + 15, GFP_ATOMIC);
  177. if (skb == NULL)
  178. return;
  179. /* Reserve space for headers. */
  180. skb_reserve(skb, MAX_DCCP_HEADER);
  181. skb->dst = dst_clone(rxskb->dst);
  182. skb->h.raw = skb_push(skb, dccp_hdr_ack_len);
  183. dh = dccp_hdr(skb);
  184. memset(dh, 0, dccp_hdr_ack_len);
  185. /* Build DCCP header and checksum it. */
  186. dh->dccph_type = DCCP_PKT_ACK;
  187. dh->dccph_sport = rxdh->dccph_dport;
  188. dh->dccph_dport = rxdh->dccph_sport;
  189. dh->dccph_doff = dccp_hdr_ack_len / 4;
  190. dh->dccph_x = 1;
  191. dccp_hdr_set_seq(dh, DCCP_SKB_CB(rxskb)->dccpd_ack_seq);
  192. dccp_hdr_set_ack(dccp_hdr_ack_bits(skb),
  193. DCCP_SKB_CB(rxskb)->dccpd_seq);
  194. bh_lock_sock(dccp_ctl_socket->sk);
  195. err = ip_build_and_send_pkt(skb, dccp_ctl_socket->sk,
  196. rxskb->nh.iph->daddr,
  197. rxskb->nh.iph->saddr, NULL);
  198. bh_unlock_sock(dccp_ctl_socket->sk);
  199. if (err == NET_XMIT_CN || err == 0) {
  200. DCCP_INC_STATS_BH(DCCP_MIB_OUTSEGS);
  201. DCCP_INC_STATS_BH(DCCP_MIB_OUTRSTS);
  202. }
  203. }
  204. static void dccp_v4_reqsk_send_ack(struct sk_buff *skb,
  205. struct request_sock *req)
  206. {
  207. dccp_v4_ctl_send_ack(skb);
  208. }
  209. static int dccp_v4_send_response(struct sock *sk, struct request_sock *req,
  210. struct dst_entry *dst)
  211. {
  212. int err = -1;
  213. struct sk_buff *skb;
  214. /* First, grab a route. */
  215. if (dst == NULL && (dst = inet_csk_route_req(sk, req)) == NULL)
  216. goto out;
  217. skb = dccp_make_response(sk, dst, req);
  218. if (skb != NULL) {
  219. const struct inet_request_sock *ireq = inet_rsk(req);
  220. struct dccp_hdr *dh = dccp_hdr(skb);
  221. dh->dccph_checksum = dccp_v4_checksum(skb, ireq->loc_addr,
  222. ireq->rmt_addr);
  223. memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
  224. err = ip_build_and_send_pkt(skb, sk, ireq->loc_addr,
  225. ireq->rmt_addr,
  226. ireq->opt);
  227. if (err == NET_XMIT_CN)
  228. err = 0;
  229. }
  230. out:
  231. dst_release(dst);
  232. return err;
  233. }
  234. /*
  235. * This routine is called by the ICMP module when it gets some sort of error
  236. * condition. If err < 0 then the socket should be closed and the error
  237. * returned to the user. If err > 0 it's just the icmp type << 8 | icmp code.
  238. * After adjustment header points to the first 8 bytes of the tcp header. We
  239. * need to find the appropriate port.
  240. *
  241. * The locking strategy used here is very "optimistic". When someone else
  242. * accesses the socket the ICMP is just dropped and for some paths there is no
  243. * check at all. A more general error queue to queue errors for later handling
  244. * is probably better.
  245. */
  246. void dccp_v4_err(struct sk_buff *skb, u32 info)
  247. {
  248. const struct iphdr *iph = (struct iphdr *)skb->data;
  249. const struct dccp_hdr *dh = (struct dccp_hdr *)(skb->data +
  250. (iph->ihl << 2));
  251. struct dccp_sock *dp;
  252. struct inet_sock *inet;
  253. const int type = skb->h.icmph->type;
  254. const int code = skb->h.icmph->code;
  255. struct sock *sk;
  256. __u64 seq;
  257. int err;
  258. if (skb->len < (iph->ihl << 2) + 8) {
  259. ICMP_INC_STATS_BH(ICMP_MIB_INERRORS);
  260. return;
  261. }
  262. sk = inet_lookup(&dccp_hashinfo, iph->daddr, dh->dccph_dport,
  263. iph->saddr, dh->dccph_sport, inet_iif(skb));
  264. if (sk == NULL) {
  265. ICMP_INC_STATS_BH(ICMP_MIB_INERRORS);
  266. return;
  267. }
  268. if (sk->sk_state == DCCP_TIME_WAIT) {
  269. inet_twsk_put((struct inet_timewait_sock *)sk);
  270. return;
  271. }
  272. bh_lock_sock(sk);
  273. /* If too many ICMPs get dropped on busy
  274. * servers this needs to be solved differently.
  275. */
  276. if (sock_owned_by_user(sk))
  277. NET_INC_STATS_BH(LINUX_MIB_LOCKDROPPEDICMPS);
  278. if (sk->sk_state == DCCP_CLOSED)
  279. goto out;
  280. dp = dccp_sk(sk);
  281. seq = dccp_hdr_seq(skb);
  282. if (sk->sk_state != DCCP_LISTEN &&
  283. !between48(seq, dp->dccps_swl, dp->dccps_swh)) {
  284. NET_INC_STATS(LINUX_MIB_OUTOFWINDOWICMPS);
  285. goto out;
  286. }
  287. switch (type) {
  288. case ICMP_SOURCE_QUENCH:
  289. /* Just silently ignore these. */
  290. goto out;
  291. case ICMP_PARAMETERPROB:
  292. err = EPROTO;
  293. break;
  294. case ICMP_DEST_UNREACH:
  295. if (code > NR_ICMP_UNREACH)
  296. goto out;
  297. if (code == ICMP_FRAG_NEEDED) { /* PMTU discovery (RFC1191) */
  298. if (!sock_owned_by_user(sk))
  299. dccp_do_pmtu_discovery(sk, iph, info);
  300. goto out;
  301. }
  302. err = icmp_err_convert[code].errno;
  303. break;
  304. case ICMP_TIME_EXCEEDED:
  305. err = EHOSTUNREACH;
  306. break;
  307. default:
  308. goto out;
  309. }
  310. switch (sk->sk_state) {
  311. struct request_sock *req , **prev;
  312. case DCCP_LISTEN:
  313. if (sock_owned_by_user(sk))
  314. goto out;
  315. req = inet_csk_search_req(sk, &prev, dh->dccph_dport,
  316. iph->daddr, iph->saddr);
  317. if (!req)
  318. goto out;
  319. /*
  320. * ICMPs are not backlogged, hence we cannot get an established
  321. * socket here.
  322. */
  323. BUG_TRAP(!req->sk);
  324. if (seq != dccp_rsk(req)->dreq_iss) {
  325. NET_INC_STATS_BH(LINUX_MIB_OUTOFWINDOWICMPS);
  326. goto out;
  327. }
  328. /*
  329. * Still in RESPOND, just remove it silently.
  330. * There is no good way to pass the error to the newly
  331. * created socket, and POSIX does not want network
  332. * errors returned from accept().
  333. */
  334. inet_csk_reqsk_queue_drop(sk, req, prev);
  335. goto out;
  336. case DCCP_REQUESTING:
  337. case DCCP_RESPOND:
  338. if (!sock_owned_by_user(sk)) {
  339. DCCP_INC_STATS_BH(DCCP_MIB_ATTEMPTFAILS);
  340. sk->sk_err = err;
  341. sk->sk_error_report(sk);
  342. dccp_done(sk);
  343. } else
  344. sk->sk_err_soft = err;
  345. goto out;
  346. }
  347. /* If we've already connected we will keep trying
  348. * until we time out, or the user gives up.
  349. *
  350. * rfc1122 4.2.3.9 allows to consider as hard errors
  351. * only PROTO_UNREACH and PORT_UNREACH (well, FRAG_FAILED too,
  352. * but it is obsoleted by pmtu discovery).
  353. *
  354. * Note, that in modern internet, where routing is unreliable
  355. * and in each dark corner broken firewalls sit, sending random
  356. * errors ordered by their masters even this two messages finally lose
  357. * their original sense (even Linux sends invalid PORT_UNREACHs)
  358. *
  359. * Now we are in compliance with RFCs.
  360. * --ANK (980905)
  361. */
  362. inet = inet_sk(sk);
  363. if (!sock_owned_by_user(sk) && inet->recverr) {
  364. sk->sk_err = err;
  365. sk->sk_error_report(sk);
  366. } else /* Only an error on timeout */
  367. sk->sk_err_soft = err;
  368. out:
  369. bh_unlock_sock(sk);
  370. sock_put(sk);
  371. }
  372. /* This routine computes an IPv4 DCCP checksum. */
  373. void dccp_v4_send_check(struct sock *sk, int len, struct sk_buff *skb)
  374. {
  375. const struct inet_sock *inet = inet_sk(sk);
  376. struct dccp_hdr *dh = dccp_hdr(skb);
  377. dh->dccph_checksum = dccp_v4_checksum(skb, inet->saddr, inet->daddr);
  378. }
  379. EXPORT_SYMBOL_GPL(dccp_v4_send_check);
  380. static inline u64 dccp_v4_init_sequence(const struct sock *sk,
  381. const struct sk_buff *skb)
  382. {
  383. return secure_dccp_sequence_number(skb->nh.iph->daddr,
  384. skb->nh.iph->saddr,
  385. dccp_hdr(skb)->dccph_dport,
  386. dccp_hdr(skb)->dccph_sport);
  387. }
  388. int dccp_v4_conn_request(struct sock *sk, struct sk_buff *skb)
  389. {
  390. struct inet_request_sock *ireq;
  391. struct dccp_sock dp;
  392. struct request_sock *req;
  393. struct dccp_request_sock *dreq;
  394. const __be32 saddr = skb->nh.iph->saddr;
  395. const __be32 daddr = skb->nh.iph->daddr;
  396. const __be32 service = dccp_hdr_request(skb)->dccph_req_service;
  397. struct dccp_skb_cb *dcb = DCCP_SKB_CB(skb);
  398. __u8 reset_code = DCCP_RESET_CODE_TOO_BUSY;
  399. /* Never answer to DCCP_PKT_REQUESTs send to broadcast or multicast */
  400. if (((struct rtable *)skb->dst)->rt_flags &
  401. (RTCF_BROADCAST | RTCF_MULTICAST)) {
  402. reset_code = DCCP_RESET_CODE_NO_CONNECTION;
  403. goto drop;
  404. }
  405. if (dccp_bad_service_code(sk, service)) {
  406. reset_code = DCCP_RESET_CODE_BAD_SERVICE_CODE;
  407. goto drop;
  408. }
  409. /*
  410. * TW buckets are converted to open requests without
  411. * limitations, they conserve resources and peer is
  412. * evidently real one.
  413. */
  414. if (inet_csk_reqsk_queue_is_full(sk))
  415. goto drop;
  416. /*
  417. * Accept backlog is full. If we have already queued enough
  418. * of warm entries in syn queue, drop request. It is better than
  419. * clogging syn queue with openreqs with exponentially increasing
  420. * timeout.
  421. */
  422. if (sk_acceptq_is_full(sk) && inet_csk_reqsk_queue_young(sk) > 1)
  423. goto drop;
  424. req = reqsk_alloc(sk->sk_prot->rsk_prot);
  425. if (req == NULL)
  426. goto drop;
  427. if (dccp_parse_options(sk, skb))
  428. goto drop;
  429. dccp_openreq_init(req, &dp, skb);
  430. ireq = inet_rsk(req);
  431. ireq->loc_addr = daddr;
  432. ireq->rmt_addr = saddr;
  433. req->rcv_wnd = 100; /* Fake, option parsing will get the
  434. right value */
  435. ireq->opt = NULL;
  436. /*
  437. * Step 3: Process LISTEN state
  438. *
  439. * Set S.ISR, S.GSR, S.SWL, S.SWH from packet or Init Cookie
  440. *
  441. * In fact we defer setting S.GSR, S.SWL, S.SWH to
  442. * dccp_create_openreq_child.
  443. */
  444. dreq = dccp_rsk(req);
  445. dreq->dreq_isr = dcb->dccpd_seq;
  446. dreq->dreq_iss = dccp_v4_init_sequence(sk, skb);
  447. dreq->dreq_service = service;
  448. if (dccp_v4_send_response(sk, req, NULL))
  449. goto drop_and_free;
  450. inet_csk_reqsk_queue_hash_add(sk, req, DCCP_TIMEOUT_INIT);
  451. return 0;
  452. drop_and_free:
  453. reqsk_free(req);
  454. drop:
  455. DCCP_INC_STATS_BH(DCCP_MIB_ATTEMPTFAILS);
  456. dcb->dccpd_reset_code = reset_code;
  457. return -1;
  458. }
  459. EXPORT_SYMBOL_GPL(dccp_v4_conn_request);
  460. /*
  461. * The three way handshake has completed - we got a valid ACK or DATAACK -
  462. * now create the new socket.
  463. *
  464. * This is the equivalent of TCP's tcp_v4_syn_recv_sock
  465. */
  466. struct sock *dccp_v4_request_recv_sock(struct sock *sk, struct sk_buff *skb,
  467. struct request_sock *req,
  468. struct dst_entry *dst)
  469. {
  470. struct inet_request_sock *ireq;
  471. struct inet_sock *newinet;
  472. struct dccp_sock *newdp;
  473. struct sock *newsk;
  474. if (sk_acceptq_is_full(sk))
  475. goto exit_overflow;
  476. if (dst == NULL && (dst = inet_csk_route_req(sk, req)) == NULL)
  477. goto exit;
  478. newsk = dccp_create_openreq_child(sk, req, skb);
  479. if (newsk == NULL)
  480. goto exit;
  481. sk_setup_caps(newsk, dst);
  482. newdp = dccp_sk(newsk);
  483. newinet = inet_sk(newsk);
  484. ireq = inet_rsk(req);
  485. newinet->daddr = ireq->rmt_addr;
  486. newinet->rcv_saddr = ireq->loc_addr;
  487. newinet->saddr = ireq->loc_addr;
  488. newinet->opt = ireq->opt;
  489. ireq->opt = NULL;
  490. newinet->mc_index = inet_iif(skb);
  491. newinet->mc_ttl = skb->nh.iph->ttl;
  492. newinet->id = jiffies;
  493. dccp_sync_mss(newsk, dst_mtu(dst));
  494. __inet_hash(&dccp_hashinfo, newsk, 0);
  495. __inet_inherit_port(&dccp_hashinfo, sk, newsk);
  496. return newsk;
  497. exit_overflow:
  498. NET_INC_STATS_BH(LINUX_MIB_LISTENOVERFLOWS);
  499. exit:
  500. NET_INC_STATS_BH(LINUX_MIB_LISTENDROPS);
  501. dst_release(dst);
  502. return NULL;
  503. }
  504. EXPORT_SYMBOL_GPL(dccp_v4_request_recv_sock);
  505. static struct sock *dccp_v4_hnd_req(struct sock *sk, struct sk_buff *skb)
  506. {
  507. const struct dccp_hdr *dh = dccp_hdr(skb);
  508. const struct iphdr *iph = skb->nh.iph;
  509. struct sock *nsk;
  510. struct request_sock **prev;
  511. /* Find possible connection requests. */
  512. struct request_sock *req = inet_csk_search_req(sk, &prev,
  513. dh->dccph_sport,
  514. iph->saddr, iph->daddr);
  515. if (req != NULL)
  516. return dccp_check_req(sk, skb, req, prev);
  517. nsk = __inet_lookup_established(&dccp_hashinfo,
  518. iph->saddr, dh->dccph_sport,
  519. iph->daddr, ntohs(dh->dccph_dport),
  520. inet_iif(skb));
  521. if (nsk != NULL) {
  522. if (nsk->sk_state != DCCP_TIME_WAIT) {
  523. bh_lock_sock(nsk);
  524. return nsk;
  525. }
  526. inet_twsk_put((struct inet_timewait_sock *)nsk);
  527. return NULL;
  528. }
  529. return sk;
  530. }
  531. int dccp_v4_checksum(const struct sk_buff *skb, const __be32 saddr,
  532. const __be32 daddr)
  533. {
  534. const struct dccp_hdr* dh = dccp_hdr(skb);
  535. int checksum_len;
  536. u32 tmp;
  537. if (dh->dccph_cscov == 0)
  538. checksum_len = skb->len;
  539. else {
  540. checksum_len = (dh->dccph_cscov + dh->dccph_x) * sizeof(u32);
  541. checksum_len = checksum_len < skb->len ? checksum_len :
  542. skb->len;
  543. }
  544. tmp = csum_partial((unsigned char *)dh, checksum_len, 0);
  545. return csum_tcpudp_magic(saddr, daddr, checksum_len,
  546. IPPROTO_DCCP, tmp);
  547. }
  548. static int dccp_v4_verify_checksum(struct sk_buff *skb,
  549. const __be32 saddr, const __be32 daddr)
  550. {
  551. struct dccp_hdr *dh = dccp_hdr(skb);
  552. int checksum_len;
  553. u32 tmp;
  554. if (dh->dccph_cscov == 0)
  555. checksum_len = skb->len;
  556. else {
  557. checksum_len = (dh->dccph_cscov + dh->dccph_x) * sizeof(u32);
  558. checksum_len = checksum_len < skb->len ? checksum_len :
  559. skb->len;
  560. }
  561. tmp = csum_partial((unsigned char *)dh, checksum_len, 0);
  562. return csum_tcpudp_magic(saddr, daddr, checksum_len,
  563. IPPROTO_DCCP, tmp) == 0 ? 0 : -1;
  564. }
  565. static struct dst_entry* dccp_v4_route_skb(struct sock *sk,
  566. struct sk_buff *skb)
  567. {
  568. struct rtable *rt;
  569. struct flowi fl = { .oif = ((struct rtable *)skb->dst)->rt_iif,
  570. .nl_u = { .ip4_u =
  571. { .daddr = skb->nh.iph->saddr,
  572. .saddr = skb->nh.iph->daddr,
  573. .tos = RT_CONN_FLAGS(sk) } },
  574. .proto = sk->sk_protocol,
  575. .uli_u = { .ports =
  576. { .sport = dccp_hdr(skb)->dccph_dport,
  577. .dport = dccp_hdr(skb)->dccph_sport }
  578. }
  579. };
  580. if (ip_route_output_flow(&rt, &fl, sk, 0)) {
  581. IP_INC_STATS_BH(IPSTATS_MIB_OUTNOROUTES);
  582. return NULL;
  583. }
  584. return &rt->u.dst;
  585. }
  586. static void dccp_v4_ctl_send_reset(struct sk_buff *rxskb)
  587. {
  588. int err;
  589. struct dccp_hdr *rxdh = dccp_hdr(rxskb), *dh;
  590. const int dccp_hdr_reset_len = sizeof(struct dccp_hdr) +
  591. sizeof(struct dccp_hdr_ext) +
  592. sizeof(struct dccp_hdr_reset);
  593. struct sk_buff *skb;
  594. struct dst_entry *dst;
  595. u64 seqno;
  596. /* Never send a reset in response to a reset. */
  597. if (rxdh->dccph_type == DCCP_PKT_RESET)
  598. return;
  599. if (((struct rtable *)rxskb->dst)->rt_type != RTN_LOCAL)
  600. return;
  601. dst = dccp_v4_route_skb(dccp_ctl_socket->sk, rxskb);
  602. if (dst == NULL)
  603. return;
  604. skb = alloc_skb(MAX_DCCP_HEADER + 15, GFP_ATOMIC);
  605. if (skb == NULL)
  606. goto out;
  607. /* Reserve space for headers. */
  608. skb_reserve(skb, MAX_DCCP_HEADER);
  609. skb->dst = dst_clone(dst);
  610. skb->h.raw = skb_push(skb, dccp_hdr_reset_len);
  611. dh = dccp_hdr(skb);
  612. memset(dh, 0, dccp_hdr_reset_len);
  613. /* Build DCCP header and checksum it. */
  614. dh->dccph_type = DCCP_PKT_RESET;
  615. dh->dccph_sport = rxdh->dccph_dport;
  616. dh->dccph_dport = rxdh->dccph_sport;
  617. dh->dccph_doff = dccp_hdr_reset_len / 4;
  618. dh->dccph_x = 1;
  619. dccp_hdr_reset(skb)->dccph_reset_code =
  620. DCCP_SKB_CB(rxskb)->dccpd_reset_code;
  621. /* See "8.3.1. Abnormal Termination" in draft-ietf-dccp-spec-11 */
  622. seqno = 0;
  623. if (DCCP_SKB_CB(rxskb)->dccpd_ack_seq != DCCP_PKT_WITHOUT_ACK_SEQ)
  624. dccp_set_seqno(&seqno, DCCP_SKB_CB(rxskb)->dccpd_ack_seq + 1);
  625. dccp_hdr_set_seq(dh, seqno);
  626. dccp_hdr_set_ack(dccp_hdr_ack_bits(skb),
  627. DCCP_SKB_CB(rxskb)->dccpd_seq);
  628. dh->dccph_checksum = dccp_v4_checksum(skb, rxskb->nh.iph->saddr,
  629. rxskb->nh.iph->daddr);
  630. bh_lock_sock(dccp_ctl_socket->sk);
  631. err = ip_build_and_send_pkt(skb, dccp_ctl_socket->sk,
  632. rxskb->nh.iph->daddr,
  633. rxskb->nh.iph->saddr, NULL);
  634. bh_unlock_sock(dccp_ctl_socket->sk);
  635. if (err == NET_XMIT_CN || err == 0) {
  636. DCCP_INC_STATS_BH(DCCP_MIB_OUTSEGS);
  637. DCCP_INC_STATS_BH(DCCP_MIB_OUTRSTS);
  638. }
  639. out:
  640. dst_release(dst);
  641. }
  642. int dccp_v4_do_rcv(struct sock *sk, struct sk_buff *skb)
  643. {
  644. struct dccp_hdr *dh = dccp_hdr(skb);
  645. if (sk->sk_state == DCCP_OPEN) { /* Fast path */
  646. if (dccp_rcv_established(sk, skb, dh, skb->len))
  647. goto reset;
  648. return 0;
  649. }
  650. /*
  651. * Step 3: Process LISTEN state
  652. * If S.state == LISTEN,
  653. * If P.type == Request or P contains a valid Init Cookie
  654. * option,
  655. * * Must scan the packet's options to check for an Init
  656. * Cookie. Only the Init Cookie is processed here,
  657. * however; other options are processed in Step 8. This
  658. * scan need only be performed if the endpoint uses Init
  659. * Cookies *
  660. * * Generate a new socket and switch to that socket *
  661. * Set S := new socket for this port pair
  662. * S.state = RESPOND
  663. * Choose S.ISS (initial seqno) or set from Init Cookie
  664. * Set S.ISR, S.GSR, S.SWL, S.SWH from packet or Init Cookie
  665. * Continue with S.state == RESPOND
  666. * * A Response packet will be generated in Step 11 *
  667. * Otherwise,
  668. * Generate Reset(No Connection) unless P.type == Reset
  669. * Drop packet and return
  670. *
  671. * NOTE: the check for the packet types is done in
  672. * dccp_rcv_state_process
  673. */
  674. if (sk->sk_state == DCCP_LISTEN) {
  675. struct sock *nsk = dccp_v4_hnd_req(sk, skb);
  676. if (nsk == NULL)
  677. goto discard;
  678. if (nsk != sk) {
  679. if (dccp_child_process(sk, nsk, skb))
  680. goto reset;
  681. return 0;
  682. }
  683. }
  684. if (dccp_rcv_state_process(sk, skb, dh, skb->len))
  685. goto reset;
  686. return 0;
  687. reset:
  688. dccp_v4_ctl_send_reset(skb);
  689. discard:
  690. kfree_skb(skb);
  691. return 0;
  692. }
  693. EXPORT_SYMBOL_GPL(dccp_v4_do_rcv);
  694. int dccp_invalid_packet(struct sk_buff *skb)
  695. {
  696. const struct dccp_hdr *dh;
  697. if (skb->pkt_type != PACKET_HOST)
  698. return 1;
  699. if (!pskb_may_pull(skb, sizeof(struct dccp_hdr))) {
  700. LIMIT_NETDEBUG(KERN_WARNING "DCCP: pskb_may_pull failed\n");
  701. return 1;
  702. }
  703. dh = dccp_hdr(skb);
  704. /* If the packet type is not understood, drop packet and return */
  705. if (dh->dccph_type >= DCCP_PKT_INVALID) {
  706. LIMIT_NETDEBUG(KERN_WARNING "DCCP: invalid packet type\n");
  707. return 1;
  708. }
  709. /*
  710. * If P.Data Offset is too small for packet type, or too large for
  711. * packet, drop packet and return
  712. */
  713. if (dh->dccph_doff < dccp_hdr_len(skb) / sizeof(u32)) {
  714. LIMIT_NETDEBUG(KERN_WARNING "DCCP: P.Data Offset(%u) "
  715. "too small 1\n",
  716. dh->dccph_doff);
  717. return 1;
  718. }
  719. if (!pskb_may_pull(skb, dh->dccph_doff * sizeof(u32))) {
  720. LIMIT_NETDEBUG(KERN_WARNING "DCCP: P.Data Offset(%u) "
  721. "too small 2\n",
  722. dh->dccph_doff);
  723. return 1;
  724. }
  725. dh = dccp_hdr(skb);
  726. /*
  727. * If P.type is not Data, Ack, or DataAck and P.X == 0 (the packet
  728. * has short sequence numbers), drop packet and return
  729. */
  730. if (dh->dccph_x == 0 &&
  731. dh->dccph_type != DCCP_PKT_DATA &&
  732. dh->dccph_type != DCCP_PKT_ACK &&
  733. dh->dccph_type != DCCP_PKT_DATAACK) {
  734. LIMIT_NETDEBUG(KERN_WARNING "DCCP: P.type (%s) not Data, Ack "
  735. "nor DataAck and P.X == 0\n",
  736. dccp_packet_name(dh->dccph_type));
  737. return 1;
  738. }
  739. return 0;
  740. }
  741. EXPORT_SYMBOL_GPL(dccp_invalid_packet);
  742. /* this is called when real data arrives */
  743. int dccp_v4_rcv(struct sk_buff *skb)
  744. {
  745. const struct dccp_hdr *dh;
  746. struct sock *sk;
  747. /* Step 1: Check header basics: */
  748. if (dccp_invalid_packet(skb))
  749. goto discard_it;
  750. /* If the header checksum is incorrect, drop packet and return */
  751. if (dccp_v4_verify_checksum(skb, skb->nh.iph->saddr,
  752. skb->nh.iph->daddr) < 0) {
  753. LIMIT_NETDEBUG(KERN_WARNING "%s: incorrect header checksum\n",
  754. __FUNCTION__);
  755. goto discard_it;
  756. }
  757. dh = dccp_hdr(skb);
  758. DCCP_SKB_CB(skb)->dccpd_seq = dccp_hdr_seq(skb);
  759. DCCP_SKB_CB(skb)->dccpd_type = dh->dccph_type;
  760. dccp_pr_debug("%8.8s "
  761. "src=%u.%u.%u.%u@%-5d "
  762. "dst=%u.%u.%u.%u@%-5d seq=%llu",
  763. dccp_packet_name(dh->dccph_type),
  764. NIPQUAD(skb->nh.iph->saddr), ntohs(dh->dccph_sport),
  765. NIPQUAD(skb->nh.iph->daddr), ntohs(dh->dccph_dport),
  766. (unsigned long long) DCCP_SKB_CB(skb)->dccpd_seq);
  767. if (dccp_packet_without_ack(skb)) {
  768. DCCP_SKB_CB(skb)->dccpd_ack_seq = DCCP_PKT_WITHOUT_ACK_SEQ;
  769. dccp_pr_debug_cat("\n");
  770. } else {
  771. DCCP_SKB_CB(skb)->dccpd_ack_seq = dccp_hdr_ack_seq(skb);
  772. dccp_pr_debug_cat(", ack=%llu\n",
  773. (unsigned long long)
  774. DCCP_SKB_CB(skb)->dccpd_ack_seq);
  775. }
  776. /* Step 2:
  777. * Look up flow ID in table and get corresponding socket */
  778. sk = __inet_lookup(&dccp_hashinfo,
  779. skb->nh.iph->saddr, dh->dccph_sport,
  780. skb->nh.iph->daddr, ntohs(dh->dccph_dport),
  781. inet_iif(skb));
  782. /*
  783. * Step 2:
  784. * If no socket ...
  785. * Generate Reset(No Connection) unless P.type == Reset
  786. * Drop packet and return
  787. */
  788. if (sk == NULL) {
  789. dccp_pr_debug("failed to look up flow ID in table and "
  790. "get corresponding socket\n");
  791. goto no_dccp_socket;
  792. }
  793. /*
  794. * Step 2:
  795. * ... or S.state == TIMEWAIT,
  796. * Generate Reset(No Connection) unless P.type == Reset
  797. * Drop packet and return
  798. */
  799. if (sk->sk_state == DCCP_TIME_WAIT) {
  800. dccp_pr_debug("sk->sk_state == DCCP_TIME_WAIT: "
  801. "do_time_wait\n");
  802. goto do_time_wait;
  803. }
  804. if (!xfrm4_policy_check(sk, XFRM_POLICY_IN, skb))
  805. goto discard_and_relse;
  806. nf_reset(skb);
  807. return sk_receive_skb(sk, skb);
  808. no_dccp_socket:
  809. if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb))
  810. goto discard_it;
  811. /*
  812. * Step 2:
  813. * Generate Reset(No Connection) unless P.type == Reset
  814. * Drop packet and return
  815. */
  816. if (dh->dccph_type != DCCP_PKT_RESET) {
  817. DCCP_SKB_CB(skb)->dccpd_reset_code =
  818. DCCP_RESET_CODE_NO_CONNECTION;
  819. dccp_v4_ctl_send_reset(skb);
  820. }
  821. discard_it:
  822. /* Discard frame. */
  823. kfree_skb(skb);
  824. return 0;
  825. discard_and_relse:
  826. sock_put(sk);
  827. goto discard_it;
  828. do_time_wait:
  829. inet_twsk_put((struct inet_timewait_sock *)sk);
  830. goto no_dccp_socket;
  831. }
  832. struct inet_connection_sock_af_ops dccp_ipv4_af_ops = {
  833. .queue_xmit = ip_queue_xmit,
  834. .send_check = dccp_v4_send_check,
  835. .rebuild_header = inet_sk_rebuild_header,
  836. .conn_request = dccp_v4_conn_request,
  837. .syn_recv_sock = dccp_v4_request_recv_sock,
  838. .net_header_len = sizeof(struct iphdr),
  839. .setsockopt = ip_setsockopt,
  840. .getsockopt = ip_getsockopt,
  841. .addr2sockaddr = inet_csk_addr2sockaddr,
  842. .sockaddr_len = sizeof(struct sockaddr_in),
  843. };
  844. static int dccp_v4_init_sock(struct sock *sk)
  845. {
  846. const int err = dccp_init_sock(sk);
  847. if (err == 0)
  848. inet_csk(sk)->icsk_af_ops = &dccp_ipv4_af_ops;
  849. return err;
  850. }
  851. static void dccp_v4_reqsk_destructor(struct request_sock *req)
  852. {
  853. kfree(inet_rsk(req)->opt);
  854. }
  855. static struct request_sock_ops dccp_request_sock_ops = {
  856. .family = PF_INET,
  857. .obj_size = sizeof(struct dccp_request_sock),
  858. .rtx_syn_ack = dccp_v4_send_response,
  859. .send_ack = dccp_v4_reqsk_send_ack,
  860. .destructor = dccp_v4_reqsk_destructor,
  861. .send_reset = dccp_v4_ctl_send_reset,
  862. };
  863. static struct timewait_sock_ops dccp_timewait_sock_ops = {
  864. .twsk_obj_size = sizeof(struct inet_timewait_sock),
  865. };
  866. struct proto dccp_prot = {
  867. .name = "DCCP",
  868. .owner = THIS_MODULE,
  869. .close = dccp_close,
  870. .connect = dccp_v4_connect,
  871. .disconnect = dccp_disconnect,
  872. .ioctl = dccp_ioctl,
  873. .init = dccp_v4_init_sock,
  874. .setsockopt = dccp_setsockopt,
  875. .getsockopt = dccp_getsockopt,
  876. .sendmsg = dccp_sendmsg,
  877. .recvmsg = dccp_recvmsg,
  878. .backlog_rcv = dccp_v4_do_rcv,
  879. .hash = dccp_hash,
  880. .unhash = dccp_unhash,
  881. .accept = inet_csk_accept,
  882. .get_port = dccp_v4_get_port,
  883. .shutdown = dccp_shutdown,
  884. .destroy = dccp_destroy_sock,
  885. .orphan_count = &dccp_orphan_count,
  886. .max_header = MAX_DCCP_HEADER,
  887. .obj_size = sizeof(struct dccp_sock),
  888. .rsk_prot = &dccp_request_sock_ops,
  889. .twsk_prot = &dccp_timewait_sock_ops,
  890. };
  891. EXPORT_SYMBOL_GPL(dccp_prot);