tcp.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:68k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * INET An implementation of the TCP/IP protocol suite for the LINUX
  3.  * operating system.  INET is implemented using the  BSD Socket
  4.  * interface as the means of communication with the user level.
  5.  *
  6.  * Implementation of the Transmission Control Protocol(TCP).
  7.  *
  8.  * Version: $Id: tcp.c,v 1.215 2001/10/31 08:17:58 davem Exp $
  9.  *
  10.  * Authors: Ross Biro, <bir7@leland.Stanford.Edu>
  11.  * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
  12.  * Mark Evans, <evansmp@uhura.aston.ac.uk>
  13.  * Corey Minyard <wf-rch!minyard@relay.EU.net>
  14.  * Florian La Roche, <flla@stud.uni-sb.de>
  15.  * Charles Hedrick, <hedrick@klinzhai.rutgers.edu>
  16.  * Linus Torvalds, <torvalds@cs.helsinki.fi>
  17.  * Alan Cox, <gw4pts@gw4pts.ampr.org>
  18.  * Matthew Dillon, <dillon@apollo.west.oic.com>
  19.  * Arnt Gulbrandsen, <agulbra@nvg.unit.no>
  20.  * Jorge Cwik, <jorge@laser.satlink.net>
  21.  *
  22.  * Fixes:
  23.  * Alan Cox : Numerous verify_area() calls
  24.  * Alan Cox : Set the ACK bit on a reset
  25.  * Alan Cox : Stopped it crashing if it closed while
  26.  * sk->inuse=1 and was trying to connect
  27.  * (tcp_err()).
  28.  * Alan Cox : All icmp error handling was broken
  29.  * pointers passed where wrong and the
  30.  * socket was looked up backwards. Nobody
  31.  * tested any icmp error code obviously.
  32.  * Alan Cox : tcp_err() now handled properly. It
  33.  * wakes people on errors. poll
  34.  * behaves and the icmp error race
  35.  * has gone by moving it into sock.c
  36.  * Alan Cox : tcp_send_reset() fixed to work for
  37.  * everything not just packets for
  38.  * unknown sockets.
  39.  * Alan Cox : tcp option processing.
  40.  * Alan Cox : Reset tweaked (still not 100%) [Had
  41.  * syn rule wrong]
  42.  * Herp Rosmanith  : More reset fixes
  43.  * Alan Cox : No longer acks invalid rst frames.
  44.  * Acking any kind of RST is right out.
  45.  * Alan Cox : Sets an ignore me flag on an rst
  46.  * receive otherwise odd bits of prattle
  47.  * escape still
  48.  * Alan Cox : Fixed another acking RST frame bug.
  49.  * Should stop LAN workplace lockups.
  50.  * Alan Cox :  Some tidyups using the new skb list
  51.  * facilities
  52.  * Alan Cox : sk->keepopen now seems to work
  53.  * Alan Cox : Pulls options out correctly on accepts
  54.  * Alan Cox : Fixed assorted sk->rqueue->next errors
  55.  * Alan Cox : PSH doesn't end a TCP read. Switched a
  56.  * bit to skb ops.
  57.  * Alan Cox : Tidied tcp_data to avoid a potential
  58.  * nasty.
  59.  * Alan Cox : Added some better commenting, as the
  60.  * tcp is hard to follow
  61.  * Alan Cox : Removed incorrect check for 20 * psh
  62.  * Michael O'Reilly : ack < copied bug fix.
  63.  * Johannes Stille : Misc tcp fixes (not all in yet).
  64.  * Alan Cox : FIN with no memory -> CRASH
  65.  * Alan Cox : Added socket option proto entries.
  66.  * Also added awareness of them to accept.
  67.  * Alan Cox : Added TCP options (SOL_TCP)
  68.  * Alan Cox : Switched wakeup calls to callbacks,
  69.  * so the kernel can layer network
  70.  * sockets.
  71.  * Alan Cox : Use ip_tos/ip_ttl settings.
  72.  * Alan Cox : Handle FIN (more) properly (we hope).
  73.  * Alan Cox : RST frames sent on unsynchronised
  74.  * state ack error.
  75.  * Alan Cox : Put in missing check for SYN bit.
  76.  * Alan Cox : Added tcp_select_window() aka NET2E
  77.  * window non shrink trick.
  78.  * Alan Cox : Added a couple of small NET2E timer
  79.  * fixes
  80.  * Charles Hedrick : TCP fixes
  81.  * Toomas Tamm : TCP window fixes
  82.  * Alan Cox : Small URG fix to rlogin ^C ack fight
  83.  * Charles Hedrick : Rewrote most of it to actually work
  84.  * Linus : Rewrote tcp_read() and URG handling
  85.  * completely
  86.  * Gerhard Koerting: Fixed some missing timer handling
  87.  * Matthew Dillon  : Reworked TCP machine states as per RFC
  88.  * Gerhard Koerting: PC/TCP workarounds
  89.  * Adam Caldwell : Assorted timer/timing errors
  90.  * Matthew Dillon : Fixed another RST bug
  91.  * Alan Cox : Move to kernel side addressing changes.
  92.  * Alan Cox : Beginning work on TCP fastpathing
  93.  * (not yet usable)
  94.  * Arnt Gulbrandsen: Turbocharged tcp_check() routine.
  95.  * Alan Cox : TCP fast path debugging
  96.  * Alan Cox : Window clamping
  97.  * Michael Riepe : Bug in tcp_check()
  98.  * Matt Dillon : More TCP improvements and RST bug fixes
  99.  * Matt Dillon : Yet more small nasties remove from the
  100.  * TCP code (Be very nice to this man if
  101.  * tcp finally works 100%) 8)
  102.  * Alan Cox : BSD accept semantics.
  103.  * Alan Cox : Reset on closedown bug.
  104.  * Peter De Schrijver : ENOTCONN check missing in tcp_sendto().
  105.  * Michael Pall : Handle poll() after URG properly in
  106.  * all cases.
  107.  * Michael Pall : Undo the last fix in tcp_read_urg()
  108.  * (multi URG PUSH broke rlogin).
  109.  * Michael Pall : Fix the multi URG PUSH problem in
  110.  * tcp_readable(), poll() after URG
  111.  * works now.
  112.  * Michael Pall : recv(...,MSG_OOB) never blocks in the
  113.  * BSD api.
  114.  * Alan Cox : Changed the semantics of sk->socket to
  115.  * fix a race and a signal problem with
  116.  * accept() and async I/O.
  117.  * Alan Cox : Relaxed the rules on tcp_sendto().
  118.  * Yury Shevchuk : Really fixed accept() blocking problem.
  119.  * Craig I. Hagan  : Allow for BSD compatible TIME_WAIT for
  120.  * clients/servers which listen in on
  121.  * fixed ports.
  122.  * Alan Cox : Cleaned the above up and shrank it to
  123.  * a sensible code size.
  124.  * Alan Cox : Self connect lockup fix.
  125.  * Alan Cox : No connect to multicast.
  126.  * Ross Biro : Close unaccepted children on master
  127.  * socket close.
  128.  * Alan Cox : Reset tracing code.
  129.  * Alan Cox : Spurious resets on shutdown.
  130.  * Alan Cox : Giant 15 minute/60 second timer error
  131.  * Alan Cox : Small whoops in polling before an
  132.  * accept.
  133.  * Alan Cox : Kept the state trace facility since
  134.  * it's handy for debugging.
  135.  * Alan Cox : More reset handler fixes.
  136.  * Alan Cox : Started rewriting the code based on
  137.  * the RFC's for other useful protocol
  138.  * references see: Comer, KA9Q NOS, and
  139.  * for a reference on the difference
  140.  * between specifications and how BSD
  141.  * works see the 4.4lite source.
  142.  * A.N.Kuznetsov : Don't time wait on completion of tidy
  143.  * close.
  144.  * Linus Torvalds : Fin/Shutdown & copied_seq changes.
  145.  * Linus Torvalds : Fixed BSD port reuse to work first syn
  146.  * Alan Cox : Reimplemented timers as per the RFC
  147.  * and using multiple timers for sanity.
  148.  * Alan Cox : Small bug fixes, and a lot of new
  149.  * comments.
  150.  * Alan Cox : Fixed dual reader crash by locking
  151.  * the buffers (much like datagram.c)
  152.  * Alan Cox : Fixed stuck sockets in probe. A probe
  153.  * now gets fed up of retrying without
  154.  * (even a no space) answer.
  155.  * Alan Cox : Extracted closing code better
  156.  * Alan Cox : Fixed the closing state machine to
  157.  * resemble the RFC.
  158.  * Alan Cox : More 'per spec' fixes.
  159.  * Jorge Cwik : Even faster checksumming.
  160.  * Alan Cox : tcp_data() doesn't ack illegal PSH
  161.  * only frames. At least one pc tcp stack
  162.  * generates them.
  163.  * Alan Cox : Cache last socket.
  164.  * Alan Cox : Per route irtt.
  165.  * Matt Day : poll()->select() match BSD precisely on error
  166.  * Alan Cox : New buffers
  167.  * Marc Tamsky : Various sk->prot->retransmits and
  168.  * sk->retransmits misupdating fixed.
  169.  * Fixed tcp_write_timeout: stuck close,
  170.  * and TCP syn retries gets used now.
  171.  * Mark Yarvis : In tcp_read_wakeup(), don't send an
  172.  * ack if state is TCP_CLOSED.
  173.  * Alan Cox : Look up device on a retransmit - routes may
  174.  * change. Doesn't yet cope with MSS shrink right
  175.  * but its a start!
  176.  * Marc Tamsky : Closing in closing fixes.
  177.  * Mike Shaver : RFC1122 verifications.
  178.  * Alan Cox : rcv_saddr errors.
  179.  * Alan Cox : Block double connect().
  180.  * Alan Cox : Small hooks for enSKIP.
  181.  * Alexey Kuznetsov: Path MTU discovery.
  182.  * Alan Cox : Support soft errors.
  183.  * Alan Cox : Fix MTU discovery pathological case
  184.  * when the remote claims no mtu!
  185.  * Marc Tamsky : TCP_CLOSE fix.
  186.  * Colin (G3TNE) : Send a reset on syn ack replies in
  187.  * window but wrong (fixes NT lpd problems)
  188.  * Pedro Roque : Better TCP window handling, delayed ack.
  189.  * Joerg Reuter : No modification of locked buffers in
  190.  * tcp_do_retransmit()
  191.  * Eric Schenk : Changed receiver side silly window
  192.  * avoidance algorithm to BSD style
  193.  * algorithm. This doubles throughput
  194.  * against machines running Solaris,
  195.  * and seems to result in general
  196.  * improvement.
  197.  * Stefan Magdalinski : adjusted tcp_readable() to fix FIONREAD
  198.  * Willy Konynenberg : Transparent proxying support.
  199.  * Mike McLagan : Routing by source
  200.  * Keith Owens : Do proper merging with partial SKB's in
  201.  * tcp_do_sendmsg to avoid burstiness.
  202.  * Eric Schenk : Fix fast close down bug with
  203.  * shutdown() followed by close().
  204.  * Andi Kleen  : Make poll agree with SIGIO
  205.  * Salvatore Sanfilippo : Support SO_LINGER with linger == 1 and
  206.  * lingertime == 0 (RFC 793 ABORT Call)
  207.  *
  208.  * This program is free software; you can redistribute it and/or
  209.  * modify it under the terms of the GNU General Public License
  210.  * as published by the Free Software Foundation; either version
  211.  * 2 of the License, or(at your option) any later version.
  212.  *
  213.  * Description of States:
  214.  *
  215.  * TCP_SYN_SENT sent a connection request, waiting for ack
  216.  *
  217.  * TCP_SYN_RECV received a connection request, sent ack,
  218.  * waiting for final ack in three-way handshake.
  219.  *
  220.  * TCP_ESTABLISHED connection established
  221.  *
  222.  * TCP_FIN_WAIT1 our side has shutdown, waiting to complete
  223.  * transmission of remaining buffered data
  224.  *
  225.  * TCP_FIN_WAIT2 all buffered data sent, waiting for remote
  226.  * to shutdown
  227.  *
  228.  * TCP_CLOSING both sides have shutdown but we still have
  229.  * data we have to finish sending
  230.  *
  231.  * TCP_TIME_WAIT timeout to catch resent junk before entering
  232.  * closed, can only be entered from FIN_WAIT2
  233.  * or CLOSING.  Required because the other end
  234.  * may not have gotten our last ACK causing it
  235.  * to retransmit the data packet (which we ignore)
  236.  *
  237.  * TCP_CLOSE_WAIT remote side has shutdown and is waiting for
  238.  * us to finish writing our data and to shutdown
  239.  * (we have to close() to move on to LAST_ACK)
  240.  *
  241.  * TCP_LAST_ACK out side has shutdown after remote has
  242.  * shutdown.  There may still be data in our
  243.  * buffer that we have to finish sending
  244.  *
  245.  * TCP_CLOSE socket is finished
  246.  */
  247. #include <linux/config.h>
  248. #include <linux/types.h>
  249. #include <linux/fcntl.h>
  250. #include <linux/poll.h>
  251. #include <linux/init.h>
  252. #include <linux/smp_lock.h>
  253. #include <linux/fs.h>
  254. #include <net/icmp.h>
  255. #include <net/tcp.h>
  256. #include <asm/uaccess.h>
  257. #include <asm/ioctls.h>
  258. int sysctl_tcp_fin_timeout = TCP_FIN_TIMEOUT;
  259. struct tcp_mib tcp_statistics[NR_CPUS*2];
  260. kmem_cache_t *tcp_openreq_cachep;
  261. kmem_cache_t *tcp_bucket_cachep;
  262. kmem_cache_t *tcp_timewait_cachep;
  263. atomic_t tcp_orphan_count = ATOMIC_INIT(0);
  264. int sysctl_tcp_mem[3];
  265. int sysctl_tcp_wmem[3] = { 4*1024, 16*1024, 128*1024 };
  266. int sysctl_tcp_rmem[3] = { 4*1024, 87380, 87380*2 };
  267. atomic_t tcp_memory_allocated; /* Current allocated memory. */
  268. atomic_t tcp_sockets_allocated; /* Current number of TCP sockets. */
  269. /* Pressure flag: try to collapse.
  270.  * Technical note: it is used by multiple contexts non atomically.
  271.  * All the tcp_mem_schedule() is of this nature: accounting
  272.  * is strict, actions are advisory and have some latency. */
  273. int tcp_memory_pressure;
  274. #define TCP_PAGES(amt) (((amt)+TCP_MEM_QUANTUM-1)/TCP_MEM_QUANTUM)
  275. int tcp_mem_schedule(struct sock *sk, int size, int kind)
  276. {
  277. int amt = TCP_PAGES(size);
  278. sk->forward_alloc += amt*TCP_MEM_QUANTUM;
  279. atomic_add(amt, &tcp_memory_allocated);
  280. /* Under limit. */
  281. if (atomic_read(&tcp_memory_allocated) < sysctl_tcp_mem[0]) {
  282. if (tcp_memory_pressure)
  283. tcp_memory_pressure = 0;
  284. return 1;
  285. }
  286. /* Over hard limit. */
  287. if (atomic_read(&tcp_memory_allocated) > sysctl_tcp_mem[2]) {
  288. tcp_enter_memory_pressure();
  289. goto suppress_allocation;
  290. }
  291. /* Under pressure. */
  292. if (atomic_read(&tcp_memory_allocated) > sysctl_tcp_mem[1])
  293. tcp_enter_memory_pressure();
  294. if (kind) {
  295. if (atomic_read(&sk->rmem_alloc) < sysctl_tcp_rmem[0])
  296. return 1;
  297. } else {
  298. if (sk->wmem_queued < sysctl_tcp_wmem[0])
  299. return 1;
  300. }
  301. if (!tcp_memory_pressure ||
  302.     sysctl_tcp_mem[2] > atomic_read(&tcp_sockets_allocated)
  303.     * TCP_PAGES(sk->wmem_queued+atomic_read(&sk->rmem_alloc)+
  304. sk->forward_alloc))
  305. return 1;
  306. suppress_allocation:
  307. if (kind == 0) {
  308. tcp_moderate_sndbuf(sk);
  309. /* Fail only if socket is _under_ its sndbuf.
  310.  * In this case we cannot block, so that we have to fail.
  311.  */
  312. if (sk->wmem_queued+size >= sk->sndbuf)
  313. return 1;
  314. }
  315. /* Alas. Undo changes. */
  316. sk->forward_alloc -= amt*TCP_MEM_QUANTUM;
  317. atomic_sub(amt, &tcp_memory_allocated);
  318. return 0;
  319. }
  320. void __tcp_mem_reclaim(struct sock *sk)
  321. {
  322. if (sk->forward_alloc >= TCP_MEM_QUANTUM) {
  323. atomic_sub(sk->forward_alloc/TCP_MEM_QUANTUM, &tcp_memory_allocated);
  324. sk->forward_alloc &= (TCP_MEM_QUANTUM-1);
  325. if (tcp_memory_pressure &&
  326.     atomic_read(&tcp_memory_allocated) < sysctl_tcp_mem[0])
  327. tcp_memory_pressure = 0;
  328. }
  329. }
  330. void tcp_rfree(struct sk_buff *skb)
  331. {
  332. struct sock *sk = skb->sk;
  333. atomic_sub(skb->truesize, &sk->rmem_alloc);
  334. sk->forward_alloc += skb->truesize;
  335. }
  336. /*
  337.  * LISTEN is a special case for poll..
  338.  */
  339. static __inline__ unsigned int tcp_listen_poll(struct sock *sk, poll_table *wait)
  340. {
  341. return sk->tp_pinfo.af_tcp.accept_queue ? (POLLIN | POLLRDNORM) : 0;
  342. }
  343. /*
  344.  * Wait for a TCP event.
  345.  *
  346.  * Note that we don't need to lock the socket, as the upper poll layers
  347.  * take care of normal races (between the test and the event) and we don't
  348.  * go look at any of the socket buffers directly.
  349.  */
  350. unsigned int tcp_poll(struct file * file, struct socket *sock, poll_table *wait)
  351. {
  352. unsigned int mask;
  353. struct sock *sk = sock->sk;
  354. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  355. poll_wait(file, sk->sleep, wait);
  356. if (sk->state == TCP_LISTEN)
  357. return tcp_listen_poll(sk, wait);
  358. /* Socket is not locked. We are protected from async events
  359.    by poll logic and correct handling of state changes
  360.    made by another threads is impossible in any case.
  361.  */
  362. mask = 0;
  363. if (sk->err)
  364. mask = POLLERR;
  365. /*
  366.  * POLLHUP is certainly not done right. But poll() doesn't
  367.  * have a notion of HUP in just one direction, and for a
  368.  * socket the read side is more interesting.
  369.  *
  370.  * Some poll() documentation says that POLLHUP is incompatible
  371.  * with the POLLOUT/POLLWR flags, so somebody should check this
  372.  * all. But careful, it tends to be safer to return too many
  373.  * bits than too few, and you can easily break real applications
  374.  * if you don't tell them that something has hung up!
  375.  *
  376.  * Check-me.
  377.  *
  378.  * Check number 1. POLLHUP is _UNMASKABLE_ event (see UNIX98 and
  379.  * our fs/select.c). It means that after we received EOF,
  380.  * poll always returns immediately, making impossible poll() on write()
  381.  * in state CLOSE_WAIT. One solution is evident --- to set POLLHUP
  382.  * if and only if shutdown has been made in both directions.
  383.  * Actually, it is interesting to look how Solaris and DUX
  384.  * solve this dilemma. I would prefer, if PULLHUP were maskable,
  385.  * then we could set it on SND_SHUTDOWN. BTW examples given
  386.  * in Stevens' books assume exactly this behaviour, it explains
  387.  * why PULLHUP is incompatible with POLLOUT. --ANK
  388.  *
  389.  * NOTE. Check for TCP_CLOSE is added. The goal is to prevent
  390.  * blocking on fresh not-connected or disconnected socket. --ANK
  391.  */
  392. if (sk->shutdown == SHUTDOWN_MASK || sk->state == TCP_CLOSE)
  393. mask |= POLLHUP;
  394. if (sk->shutdown & RCV_SHUTDOWN)
  395. mask |= POLLIN | POLLRDNORM;
  396. /* Connected? */
  397. if ((1 << sk->state) & ~(TCPF_SYN_SENT|TCPF_SYN_RECV)) {
  398. /* Potential race condition. If read of tp below will
  399.  * escape above sk->state, we can be illegally awaken
  400.  * in SYN_* states. */
  401. if ((tp->rcv_nxt != tp->copied_seq) &&
  402.     (tp->urg_seq != tp->copied_seq ||
  403.      tp->rcv_nxt != tp->copied_seq+1 ||
  404.      sk->urginline || !tp->urg_data))
  405. mask |= POLLIN | POLLRDNORM;
  406. if (!(sk->shutdown & SEND_SHUTDOWN)) {
  407. if (tcp_wspace(sk) >= tcp_min_write_space(sk)) {
  408. mask |= POLLOUT | POLLWRNORM;
  409. } else {  /* send SIGIO later */
  410. set_bit(SOCK_ASYNC_NOSPACE, &sk->socket->flags);
  411. set_bit(SOCK_NOSPACE, &sk->socket->flags);
  412. /* Race breaker. If space is freed after
  413.  * wspace test but before the flags are set,
  414.  * IO signal will be lost.
  415.  */
  416. if (tcp_wspace(sk) >= tcp_min_write_space(sk))
  417. mask |= POLLOUT | POLLWRNORM;
  418. }
  419. }
  420. if (tp->urg_data & TCP_URG_VALID)
  421. mask |= POLLPRI;
  422. }
  423. return mask;
  424. }
  425. /*
  426.  * TCP socket write_space callback.
  427.  */
  428. void tcp_write_space(struct sock *sk)
  429. {
  430. struct socket *sock = sk->socket;
  431. if (tcp_wspace(sk) >= tcp_min_write_space(sk) && sock) {
  432. clear_bit(SOCK_NOSPACE, &sock->flags);
  433. if (sk->sleep && waitqueue_active(sk->sleep))
  434. wake_up_interruptible(sk->sleep);
  435. if (sock->fasync_list && !(sk->shutdown&SEND_SHUTDOWN))
  436. sock_wake_async(sock, 2, POLL_OUT);
  437. }
  438. }
  439. int tcp_ioctl(struct sock *sk, int cmd, unsigned long arg)
  440. {
  441. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  442. int answ;
  443. switch(cmd) {
  444. case SIOCINQ:
  445. if (sk->state == TCP_LISTEN)
  446. return(-EINVAL);
  447. lock_sock(sk);
  448. if ((1<<sk->state) & (TCPF_SYN_SENT|TCPF_SYN_RECV))
  449. answ = 0;
  450. else if (sk->urginline || !tp->urg_data ||
  451.  before(tp->urg_seq,tp->copied_seq) ||
  452.  !before(tp->urg_seq,tp->rcv_nxt)) {
  453. answ = tp->rcv_nxt - tp->copied_seq;
  454. /* Subtract 1, if FIN is in queue. */
  455. if (answ && !skb_queue_empty(&sk->receive_queue))
  456. answ -= ((struct sk_buff*)sk->receive_queue.prev)->h.th->fin;
  457. } else
  458. answ = tp->urg_seq - tp->copied_seq;
  459. release_sock(sk);
  460. break;
  461. case SIOCATMARK:
  462. {
  463. answ = tp->urg_data && tp->urg_seq == tp->copied_seq;
  464. break;
  465. }
  466. case SIOCOUTQ:
  467. if (sk->state == TCP_LISTEN)
  468. return(-EINVAL);
  469. if ((1<<sk->state) & (TCPF_SYN_SENT|TCPF_SYN_RECV))
  470. answ = 0;
  471. else
  472. answ = tp->write_seq - tp->snd_una;
  473. break;
  474. default:
  475. return(-ENOIOCTLCMD);
  476. };
  477. return put_user(answ, (int *)arg);
  478. }
  479. int tcp_listen_start(struct sock *sk)
  480. {
  481. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  482. struct tcp_listen_opt *lopt;
  483. sk->max_ack_backlog = 0;
  484. sk->ack_backlog = 0;
  485. tp->accept_queue = tp->accept_queue_tail = NULL;
  486. tp->syn_wait_lock = RW_LOCK_UNLOCKED;
  487. tcp_delack_init(tp);
  488. lopt = kmalloc(sizeof(struct tcp_listen_opt), GFP_KERNEL);
  489. if (!lopt)
  490. return -ENOMEM;
  491. memset(lopt, 0, sizeof(struct tcp_listen_opt));
  492. for (lopt->max_qlen_log = 6; ; lopt->max_qlen_log++)
  493. if ((1<<lopt->max_qlen_log) >= sysctl_max_syn_backlog)
  494. break;
  495. write_lock_bh(&tp->syn_wait_lock);
  496. tp->listen_opt = lopt;
  497. write_unlock_bh(&tp->syn_wait_lock);
  498. /* There is race window here: we announce ourselves listening,
  499.  * but this transition is still not validated by get_port().
  500.  * It is OK, because this socket enters to hash table only
  501.  * after validation is complete.
  502.  */
  503. sk->state = TCP_LISTEN;
  504. if (sk->prot->get_port(sk, sk->num) == 0) {
  505. sk->sport = htons(sk->num);
  506. sk_dst_reset(sk);
  507. sk->prot->hash(sk);
  508. return 0;
  509. }
  510. sk->state = TCP_CLOSE;
  511. write_lock_bh(&tp->syn_wait_lock);
  512. tp->listen_opt = NULL;
  513. write_unlock_bh(&tp->syn_wait_lock);
  514. kfree(lopt);
  515. return -EADDRINUSE;
  516. }
  517. /*
  518.  * This routine closes sockets which have been at least partially
  519.  * opened, but not yet accepted.
  520.  */
  521. static void tcp_listen_stop (struct sock *sk)
  522. {
  523. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  524. struct tcp_listen_opt *lopt = tp->listen_opt;
  525. struct open_request *acc_req = tp->accept_queue;
  526. struct open_request *req;
  527. int i;
  528. tcp_delete_keepalive_timer(sk);
  529. /* make all the listen_opt local to us */
  530. write_lock_bh(&tp->syn_wait_lock);
  531. tp->listen_opt =NULL;
  532. write_unlock_bh(&tp->syn_wait_lock);
  533. tp->accept_queue = tp->accept_queue_tail = NULL;
  534. if (lopt->qlen) {
  535. for (i=0; i<TCP_SYNQ_HSIZE; i++) {
  536. while ((req = lopt->syn_table[i]) != NULL) {
  537. lopt->syn_table[i] = req->dl_next;
  538. lopt->qlen--;
  539. tcp_openreq_free(req);
  540. /* Following specs, it would be better either to send FIN
  541.  * (and enter FIN-WAIT-1, it is normal close)
  542.  * or to send active reset (abort). 
  543.  * Certainly, it is pretty dangerous while synflood, but it is
  544.  * bad justification for our negligence 8)
  545.  * To be honest, we are not able to make either
  546.  * of the variants now. --ANK
  547.  */
  548. }
  549. }
  550. }
  551. BUG_TRAP(lopt->qlen == 0);
  552. kfree(lopt);
  553. while ((req=acc_req) != NULL) {
  554. struct sock *child = req->sk;
  555. acc_req = req->dl_next;
  556. local_bh_disable();
  557. bh_lock_sock(child);
  558. BUG_TRAP(child->lock.users==0);
  559. sock_hold(child);
  560. tcp_disconnect(child, O_NONBLOCK);
  561. sock_orphan(child);
  562. atomic_inc(&tcp_orphan_count);
  563. tcp_destroy_sock(child);
  564. bh_unlock_sock(child);
  565. local_bh_enable();
  566. sock_put(child);
  567. tcp_acceptq_removed(sk);
  568. tcp_openreq_fastfree(req);
  569. }
  570. BUG_TRAP(sk->ack_backlog == 0);
  571. }
  572. /*
  573.  * Wait for a socket to get into the connected state
  574.  *
  575.  * Note: Must be called with the socket locked.
  576.  */
  577. static int wait_for_tcp_connect(struct sock * sk, int flags, long *timeo_p)
  578. {
  579. struct task_struct *tsk = current;
  580. DECLARE_WAITQUEUE(wait, tsk);
  581. while((1 << sk->state) & ~(TCPF_ESTABLISHED | TCPF_CLOSE_WAIT)) {
  582. if(sk->err)
  583. return sock_error(sk);
  584. if((1 << sk->state) &
  585.    ~(TCPF_SYN_SENT | TCPF_SYN_RECV))
  586. return -EPIPE;
  587. if(!*timeo_p)
  588. return -EAGAIN;
  589. if(signal_pending(tsk))
  590. return sock_intr_errno(*timeo_p);
  591. __set_task_state(tsk, TASK_INTERRUPTIBLE);
  592. add_wait_queue(sk->sleep, &wait);
  593. sk->tp_pinfo.af_tcp.write_pending++;
  594. release_sock(sk);
  595. *timeo_p = schedule_timeout(*timeo_p);
  596. lock_sock(sk);
  597. __set_task_state(tsk, TASK_RUNNING);
  598. remove_wait_queue(sk->sleep, &wait);
  599. sk->tp_pinfo.af_tcp.write_pending--;
  600. }
  601. return 0;
  602. }
  603. static inline int tcp_memory_free(struct sock *sk)
  604. {
  605. return sk->wmem_queued < sk->sndbuf;
  606. }
  607. /*
  608.  * Wait for more memory for a socket
  609.  */
  610. static int wait_for_tcp_memory(struct sock * sk, long *timeo)
  611. {
  612. int err = 0;
  613. long vm_wait = 0;
  614. long current_timeo = *timeo;
  615. DECLARE_WAITQUEUE(wait, current);
  616. if (tcp_memory_free(sk))
  617. current_timeo = vm_wait = (net_random()%(HZ/5))+2;
  618. add_wait_queue(sk->sleep, &wait);
  619. for (;;) {
  620. set_bit(SOCK_ASYNC_NOSPACE, &sk->socket->flags);
  621. set_current_state(TASK_INTERRUPTIBLE);
  622. if (sk->err || (sk->shutdown & SEND_SHUTDOWN))
  623. goto do_error;
  624. if (!*timeo)
  625. goto do_nonblock;
  626. if (signal_pending(current))
  627. goto do_interrupted;
  628. clear_bit(SOCK_ASYNC_NOSPACE, &sk->socket->flags);
  629. if (tcp_memory_free(sk) && !vm_wait)
  630. break;
  631. set_bit(SOCK_NOSPACE, &sk->socket->flags);
  632. sk->tp_pinfo.af_tcp.write_pending++;
  633. release_sock(sk);
  634. if (!tcp_memory_free(sk) || vm_wait)
  635. current_timeo = schedule_timeout(current_timeo);
  636. lock_sock(sk);
  637. sk->tp_pinfo.af_tcp.write_pending--;
  638. if (vm_wait) {
  639. vm_wait -= current_timeo;
  640. current_timeo = *timeo;
  641. if (current_timeo != MAX_SCHEDULE_TIMEOUT &&
  642.     (current_timeo -= vm_wait) < 0)
  643. current_timeo = 0;
  644. vm_wait = 0;
  645. }
  646. *timeo = current_timeo;
  647. }
  648. out:
  649. current->state = TASK_RUNNING;
  650. remove_wait_queue(sk->sleep, &wait);
  651. return err;
  652. do_error:
  653. err = -EPIPE;
  654. goto out;
  655. do_nonblock:
  656. err = -EAGAIN;
  657. goto out;
  658. do_interrupted:
  659. err = sock_intr_errno(*timeo);
  660. goto out;
  661. }
  662. ssize_t do_tcp_sendpages(struct sock *sk, struct page **pages, int poffset, size_t psize, int flags);
  663. static inline int
  664. can_coalesce(struct sk_buff *skb, int i, struct page *page, int off)
  665. {
  666. if (i) {
  667. skb_frag_t *frag = &skb_shinfo(skb)->frags[i-1];
  668. return page == frag->page &&
  669. off == frag->page_offset+frag->size;
  670. }
  671. return 0;
  672. }
  673. static inline void
  674. fill_page_desc(struct sk_buff *skb, int i, struct page *page, int off, int size)
  675. {
  676. skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
  677. frag->page = page;
  678. frag->page_offset = off;
  679. frag->size = size;
  680. skb_shinfo(skb)->nr_frags = i+1;
  681. }
  682. static inline void tcp_mark_push(struct tcp_opt *tp, struct sk_buff *skb)
  683. {
  684. TCP_SKB_CB(skb)->flags |= TCPCB_FLAG_PSH;
  685. tp->pushed_seq = tp->write_seq;
  686. }
  687. static inline int forced_push(struct tcp_opt *tp)
  688. {
  689. return after(tp->write_seq, tp->pushed_seq + (tp->max_window>>1));
  690. }
  691. static inline void
  692. skb_entail(struct sock *sk, struct tcp_opt *tp, struct sk_buff *skb)
  693. {
  694. skb->csum = 0;
  695. TCP_SKB_CB(skb)->seq = tp->write_seq;
  696. TCP_SKB_CB(skb)->end_seq = tp->write_seq;
  697. TCP_SKB_CB(skb)->flags = TCPCB_FLAG_ACK;
  698. TCP_SKB_CB(skb)->sacked = 0;
  699. __skb_queue_tail(&sk->write_queue, skb);
  700. tcp_charge_skb(sk, skb);
  701. if (tp->send_head == NULL)
  702. tp->send_head = skb;
  703. }
  704. static inline void
  705. tcp_mark_urg(struct tcp_opt *tp, int flags, struct sk_buff *skb)
  706. {
  707. if (flags & MSG_OOB) {
  708. tp->urg_mode = 1;
  709. tp->snd_up = tp->write_seq;
  710. TCP_SKB_CB(skb)->sacked |= TCPCB_URG;
  711. }
  712. }
  713. static inline void
  714. tcp_push(struct sock *sk, struct tcp_opt *tp, int flags, int mss_now, int nonagle)
  715. {
  716. if (tp->send_head) {
  717. struct sk_buff *skb = sk->write_queue.prev;
  718. if (!(flags&MSG_MORE) || forced_push(tp))
  719. tcp_mark_push(tp, skb);
  720. tcp_mark_urg(tp, flags, skb);
  721. __tcp_push_pending_frames(sk, tp, mss_now, (flags&MSG_MORE) ? 2 : nonagle);
  722. }
  723. }
  724. static int tcp_error(struct sock *sk, int flags, int err)
  725. {
  726. if (err == -EPIPE)
  727. err = sock_error(sk) ? : -EPIPE;
  728. if (err == -EPIPE && !(flags&MSG_NOSIGNAL))
  729. send_sig(SIGPIPE, current, 0);
  730. return err;
  731. }
  732. ssize_t do_tcp_sendpages(struct sock *sk, struct page **pages, int poffset, size_t psize, int flags)
  733. {
  734. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  735. int mss_now;
  736. int err;
  737. ssize_t copied;
  738. long timeo = sock_sndtimeo(sk, flags&MSG_DONTWAIT);
  739. /* Wait for a connection to finish. */
  740. if ((1 << sk->state) & ~(TCPF_ESTABLISHED | TCPF_CLOSE_WAIT))
  741. if((err = wait_for_tcp_connect(sk, 0, &timeo)) != 0)
  742. goto out_err;
  743. clear_bit(SOCK_ASYNC_NOSPACE, &sk->socket->flags);
  744. mss_now = tcp_current_mss(sk);
  745. copied = 0;
  746. err = -EPIPE;
  747. if (sk->err || (sk->shutdown & SEND_SHUTDOWN))
  748. goto do_error;
  749. while (psize > 0) {
  750. struct sk_buff *skb = sk->write_queue.prev;
  751. int offset, size, copy, i;
  752. struct page *page;
  753. page = pages[poffset/PAGE_SIZE];
  754. offset = poffset % PAGE_SIZE;
  755. size = min_t(size_t, psize, PAGE_SIZE-offset);
  756. if (tp->send_head==NULL || (copy = mss_now - skb->len) <= 0) {
  757. new_segment:
  758. if (!tcp_memory_free(sk))
  759. goto wait_for_sndbuf;
  760. skb = tcp_alloc_pskb(sk, 0, tp->mss_cache, sk->allocation);
  761. if (skb == NULL)
  762. goto wait_for_memory;
  763. skb_entail(sk, tp, skb);
  764. copy = mss_now;
  765. }
  766. if (copy > size)
  767. copy = size;
  768. i = skb_shinfo(skb)->nr_frags;
  769. if (can_coalesce(skb, i, page, offset)) {
  770. skb_shinfo(skb)->frags[i-1].size += copy;
  771. } else if (i < MAX_SKB_FRAGS) {
  772. get_page(page);
  773. fill_page_desc(skb, i, page, offset, copy);
  774. } else {
  775. tcp_mark_push(tp, skb);
  776. goto new_segment;
  777. }
  778. skb->len += copy;
  779. skb->data_len += copy;
  780. skb->ip_summed = CHECKSUM_HW;
  781. tp->write_seq += copy;
  782. TCP_SKB_CB(skb)->end_seq += copy;
  783. if (!copied)
  784. TCP_SKB_CB(skb)->flags &= ~TCPCB_FLAG_PSH;
  785. copied += copy;
  786. poffset += copy;
  787. if (!(psize -= copy))
  788. goto out;
  789. if (skb->len != mss_now || (flags&MSG_OOB))
  790. continue;
  791. if (forced_push(tp)) {
  792. tcp_mark_push(tp, skb);
  793. __tcp_push_pending_frames(sk, tp, mss_now, 1);
  794. } else if (skb == tp->send_head)
  795. tcp_push_one(sk, mss_now);
  796. continue;
  797. wait_for_sndbuf:
  798. set_bit(SOCK_NOSPACE, &sk->socket->flags);
  799. wait_for_memory:
  800. if (copied)
  801. tcp_push(sk, tp, flags&~MSG_MORE, mss_now, 1);
  802. if ((err = wait_for_tcp_memory(sk, &timeo)) != 0)
  803. goto do_error;
  804. mss_now = tcp_current_mss(sk);
  805. }
  806. out:
  807. if (copied)
  808. tcp_push(sk, tp, flags, mss_now, tp->nonagle);
  809. return copied;
  810. do_error:
  811. if (copied)
  812. goto out;
  813. out_err:
  814. return tcp_error(sk, flags, err);
  815. }
  816. ssize_t tcp_sendpage(struct socket *sock, struct page *page, int offset, size_t size, int flags)
  817. {
  818. ssize_t res;
  819. struct sock *sk = sock->sk;
  820. #define TCP_ZC_CSUM_FLAGS (NETIF_F_IP_CSUM|NETIF_F_NO_CSUM|NETIF_F_HW_CSUM)
  821. if (!(sk->route_caps & NETIF_F_SG) || 
  822.     !(sk->route_caps & TCP_ZC_CSUM_FLAGS))
  823. return sock_no_sendpage(sock, page, offset, size, flags);
  824. #undef TCP_ZC_CSUM_FLAGS
  825. lock_sock(sk);
  826. TCP_CHECK_TIMER(sk);
  827. res = do_tcp_sendpages(sk, &page, offset, size, flags);
  828. TCP_CHECK_TIMER(sk);
  829. release_sock(sk);
  830. return res;
  831. }
  832. #define TCP_PAGE(sk) (sk->tp_pinfo.af_tcp.sndmsg_page)
  833. #define TCP_OFF(sk) (sk->tp_pinfo.af_tcp.sndmsg_off)
  834. static inline int
  835. tcp_copy_to_page(struct sock *sk, char *from, struct sk_buff *skb,
  836.  struct page *page, int off, int copy)
  837. {
  838. int err = 0;
  839. unsigned int csum;
  840. csum = csum_and_copy_from_user(from, page_address(page)+off,
  841.        copy, 0, &err);
  842. if (!err) {
  843. if (skb->ip_summed == CHECKSUM_NONE)
  844. skb->csum = csum_block_add(skb->csum, csum, skb->len);
  845. skb->len += copy;
  846. skb->data_len += copy;
  847. skb->truesize += copy;
  848. sk->wmem_queued += copy;
  849. sk->forward_alloc -= copy;
  850. }
  851. return err;
  852. }
  853. static inline int
  854. skb_add_data(struct sk_buff *skb, char *from, int copy)
  855. {
  856. int err = 0;
  857. unsigned int csum;
  858. int off = skb->len;
  859. csum = csum_and_copy_from_user(from, skb_put(skb, copy),
  860.        copy, 0, &err);
  861. if (!err) {
  862. skb->csum = csum_block_add(skb->csum, csum, off);
  863. return 0;
  864. }
  865. __skb_trim(skb, off);
  866. return -EFAULT;
  867. }
  868. static inline int select_size(struct sock *sk, struct tcp_opt *tp)
  869. {
  870. int tmp = tp->mss_cache;
  871. if (sk->route_caps&NETIF_F_SG) {
  872. int pgbreak = SKB_MAX_HEAD(MAX_TCP_HEADER);
  873. if (tmp >= pgbreak && tmp <= pgbreak + (MAX_SKB_FRAGS-1)*PAGE_SIZE)
  874. tmp = pgbreak;
  875. }
  876. return tmp;
  877. }
  878. int tcp_sendmsg(struct sock *sk, struct msghdr *msg, int size)
  879. {
  880. struct iovec *iov;
  881. struct tcp_opt *tp;
  882. struct sk_buff *skb;
  883. int iovlen, flags;
  884. int mss_now;
  885. int err, copied;
  886. long timeo;
  887. tp = &(sk->tp_pinfo.af_tcp);
  888. lock_sock(sk);
  889. TCP_CHECK_TIMER(sk);
  890. flags = msg->msg_flags;
  891. timeo = sock_sndtimeo(sk, flags&MSG_DONTWAIT);
  892. /* Wait for a connection to finish. */
  893. if ((1 << sk->state) & ~(TCPF_ESTABLISHED | TCPF_CLOSE_WAIT))
  894. if((err = wait_for_tcp_connect(sk, flags, &timeo)) != 0)
  895. goto out_err;
  896. /* This should be in poll */
  897. clear_bit(SOCK_ASYNC_NOSPACE, &sk->socket->flags);
  898. mss_now = tcp_current_mss(sk);
  899. /* Ok commence sending. */
  900. iovlen = msg->msg_iovlen;
  901. iov = msg->msg_iov;
  902. copied = 0;
  903. err = -EPIPE;
  904. if (sk->err || (sk->shutdown&SEND_SHUTDOWN))
  905. goto do_error;
  906. while (--iovlen >= 0) {
  907. int seglen=iov->iov_len;
  908. unsigned char * from=iov->iov_base;
  909. iov++;
  910. while (seglen > 0) {
  911. int copy;
  912. skb = sk->write_queue.prev;
  913. if (tp->send_head == NULL ||
  914.     (copy = mss_now - skb->len) <= 0) {
  915. new_segment:
  916. /* Allocate new segment. If the interface is SG,
  917.  * allocate skb fitting to single page.
  918.  */
  919. if (!tcp_memory_free(sk))
  920. goto wait_for_sndbuf;
  921. skb = tcp_alloc_pskb(sk, select_size(sk, tp), 0, sk->allocation);
  922. if (skb == NULL)
  923. goto wait_for_memory;
  924. skb_entail(sk, tp, skb);
  925. copy = mss_now;
  926. }
  927. /* Try to append data to the end of skb. */
  928. if (copy > seglen)
  929. copy = seglen;
  930. /* Where to copy to? */
  931. if (skb_tailroom(skb) > 0) {
  932. /* We have some space in skb head. Superb! */
  933. if (copy > skb_tailroom(skb))
  934. copy = skb_tailroom(skb);
  935. if ((err = skb_add_data(skb, from, copy)) != 0)
  936. goto do_fault;
  937. } else {
  938. int merge = 0;
  939. int i = skb_shinfo(skb)->nr_frags;
  940. struct page *page = TCP_PAGE(sk);
  941. int off = TCP_OFF(sk);
  942. if (can_coalesce(skb, i, page, off) && off != PAGE_SIZE) {
  943. /* We can extend the last page fragment. */
  944. merge = 1;
  945. } else if (i == MAX_SKB_FRAGS ||
  946.    (i == 0 && !(sk->route_caps&NETIF_F_SG))) {
  947. /* Need to add new fragment and cannot
  948.  * do this because interface is non-SG,
  949.  * or because all the page slots are busy.
  950.  */
  951. tcp_mark_push(tp, skb);
  952. goto new_segment;
  953. } else if (page) {
  954. /* If page is cached, align
  955.  * offset to L1 cache boundary
  956.  */
  957. off = (off+L1_CACHE_BYTES-1)&~(L1_CACHE_BYTES-1);
  958. if (off == PAGE_SIZE) {
  959. put_page(page);
  960. TCP_PAGE(sk) = page = NULL;
  961. }
  962. }
  963. if (!page) {
  964. /* Allocate new cache page. */
  965. if (!(page=tcp_alloc_page(sk)))
  966. goto wait_for_memory;
  967. off = 0;
  968. }
  969. if (copy > PAGE_SIZE-off)
  970. copy = PAGE_SIZE-off;
  971. /* Time to copy data. We are close to the end! */
  972. err = tcp_copy_to_page(sk, from, skb, page, off, copy);
  973. if (err) {
  974. /* If this page was new, give it to the
  975.  * socket so it does not get leaked.
  976.  */
  977. if (TCP_PAGE(sk) == NULL) {
  978. TCP_PAGE(sk) = page;
  979. TCP_OFF(sk) = 0;
  980. }
  981. goto do_error;
  982. }
  983. /* Update the skb. */
  984. if (merge) {
  985. skb_shinfo(skb)->frags[i-1].size += copy;
  986. } else {
  987. fill_page_desc(skb, i, page, off, copy);
  988. if (TCP_PAGE(sk)) {
  989. get_page(page);
  990. } else if (off + copy < PAGE_SIZE) {
  991. get_page(page);
  992. TCP_PAGE(sk) = page;
  993. }
  994. }
  995. TCP_OFF(sk) = off+copy;
  996. }
  997. if (!copied)
  998. TCP_SKB_CB(skb)->flags &= ~TCPCB_FLAG_PSH;
  999. tp->write_seq += copy;
  1000. TCP_SKB_CB(skb)->end_seq += copy;
  1001. from += copy;
  1002. copied += copy;
  1003. if ((seglen -= copy) == 0 && iovlen == 0)
  1004. goto out;
  1005. if (skb->len != mss_now || (flags&MSG_OOB))
  1006. continue;
  1007. if (forced_push(tp)) {
  1008. tcp_mark_push(tp, skb);
  1009. __tcp_push_pending_frames(sk, tp, mss_now, 1);
  1010. } else if (skb == tp->send_head)
  1011. tcp_push_one(sk, mss_now);
  1012. continue;
  1013. wait_for_sndbuf:
  1014. set_bit(SOCK_NOSPACE, &sk->socket->flags);
  1015. wait_for_memory:
  1016. if (copied)
  1017. tcp_push(sk, tp, flags&~MSG_MORE, mss_now, 1);
  1018. if ((err = wait_for_tcp_memory(sk, &timeo)) != 0)
  1019. goto do_error;
  1020. mss_now = tcp_current_mss(sk);
  1021. }
  1022. }
  1023. out:
  1024. if (copied)
  1025. tcp_push(sk, tp, flags, mss_now, tp->nonagle);
  1026. TCP_CHECK_TIMER(sk);
  1027. release_sock(sk);
  1028. return copied;
  1029. do_fault:
  1030. if (skb->len == 0) {
  1031. if (tp->send_head == skb)
  1032. tp->send_head = NULL;
  1033. __skb_unlink(skb, skb->list);
  1034. tcp_free_skb(sk, skb);
  1035. }
  1036. do_error:
  1037. if (copied)
  1038. goto out;
  1039. out_err:
  1040. err = tcp_error(sk, flags, err);
  1041. TCP_CHECK_TIMER(sk);
  1042. release_sock(sk);
  1043. return err;
  1044. }
  1045. /*
  1046.  * Handle reading urgent data. BSD has very simple semantics for
  1047.  * this, no blocking and very strange errors 8)
  1048.  */
  1049. static int tcp_recv_urg(struct sock * sk, long timeo,
  1050. struct msghdr *msg, int len, int flags, 
  1051. int *addr_len)
  1052. {
  1053. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  1054. /* No URG data to read. */
  1055. if (sk->urginline || !tp->urg_data || tp->urg_data == TCP_URG_READ)
  1056. return -EINVAL; /* Yes this is right ! */
  1057. if (sk->state==TCP_CLOSE && !sk->done)
  1058. return -ENOTCONN;
  1059. if (tp->urg_data & TCP_URG_VALID) {
  1060. int err = 0; 
  1061. char c = tp->urg_data;
  1062. if (!(flags & MSG_PEEK))
  1063. tp->urg_data = TCP_URG_READ;
  1064. /* Read urgent data. */
  1065. msg->msg_flags|=MSG_OOB;
  1066. if(len>0) {
  1067. if (!(flags & MSG_TRUNC))
  1068. err = memcpy_toiovec(msg->msg_iov, &c, 1);
  1069. len = 1;
  1070. } else
  1071. msg->msg_flags|=MSG_TRUNC;
  1072. return err ? -EFAULT : len;
  1073. }
  1074. if (sk->state == TCP_CLOSE || (sk->shutdown & RCV_SHUTDOWN))
  1075. return 0;
  1076. /* Fixed the recv(..., MSG_OOB) behaviour.  BSD docs and
  1077.  * the available implementations agree in this case:
  1078.  * this call should never block, independent of the
  1079.  * blocking state of the socket.
  1080.  * Mike <pall@rz.uni-karlsruhe.de>
  1081.  */
  1082. return -EAGAIN;
  1083. }
  1084. /*
  1085.  * Release a skb if it is no longer needed. This routine
  1086.  * must be called with interrupts disabled or with the
  1087.  * socket locked so that the sk_buff queue operation is ok.
  1088.  */
  1089. static inline void tcp_eat_skb(struct sock *sk, struct sk_buff * skb)
  1090. {
  1091. __skb_unlink(skb, &sk->receive_queue);
  1092. __kfree_skb(skb);
  1093. }
  1094. /* Clean up the receive buffer for full frames taken by the user,
  1095.  * then send an ACK if necessary.  COPIED is the number of bytes
  1096.  * tcp_recvmsg has given to the user so far, it speeds up the
  1097.  * calculation of whether or not we must ACK for the sake of
  1098.  * a window update.
  1099.  */
  1100. static void cleanup_rbuf(struct sock *sk, int copied)
  1101. {
  1102. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  1103. int time_to_ack = 0;
  1104. #if TCP_DEBUG
  1105. struct sk_buff *skb = skb_peek(&sk->receive_queue);
  1106. BUG_TRAP(skb==NULL || before(tp->copied_seq, TCP_SKB_CB(skb)->end_seq));
  1107. #endif
  1108. if (tcp_ack_scheduled(tp)) {
  1109.    /* Delayed ACKs frequently hit locked sockets during bulk receive. */
  1110. if (tp->ack.blocked
  1111.     /* Once-per-two-segments ACK was not sent by tcp_input.c */
  1112.     || tp->rcv_nxt - tp->rcv_wup > tp->ack.rcv_mss
  1113.     /*
  1114.      * If this read emptied read buffer, we send ACK, if
  1115.      * connection is not bidirectional, user drained
  1116.      * receive buffer and there was a small segment
  1117.      * in queue.
  1118.      */
  1119.     || (copied > 0 &&
  1120. (tp->ack.pending&TCP_ACK_PUSHED) &&
  1121. !tp->ack.pingpong &&
  1122. atomic_read(&sk->rmem_alloc) == 0)) {
  1123. time_to_ack = 1;
  1124. }
  1125. }
  1126.    /* We send an ACK if we can now advertise a non-zero window
  1127.  * which has been raised "significantly".
  1128.  *
  1129.  * Even if window raised up to infinity, do not send window open ACK
  1130.  * in states, where we will not receive more. It is useless.
  1131.     */
  1132. if(copied > 0 && !time_to_ack && !(sk->shutdown&RCV_SHUTDOWN)) {
  1133. __u32 rcv_window_now = tcp_receive_window(tp);
  1134. /* Optimize, __tcp_select_window() is not cheap. */
  1135. if (2*rcv_window_now <= tp->window_clamp) {
  1136. __u32 new_window = __tcp_select_window(sk);
  1137. /* Send ACK now, if this read freed lots of space
  1138.  * in our buffer. Certainly, new_window is new window.
  1139.  * We can advertise it now, if it is not less than current one.
  1140.  * "Lots" means "at least twice" here.
  1141.  */
  1142. if(new_window && new_window >= 2*rcv_window_now)
  1143. time_to_ack = 1;
  1144. }
  1145. }
  1146. if (time_to_ack)
  1147. tcp_send_ack(sk);
  1148. }
  1149. /* Now socket state including sk->err is changed only under lock,
  1150.  * hence we may omit checks after joining wait queue.
  1151.  * We check receive queue before schedule() only as optimization;
  1152.  * it is very likely that release_sock() added new data.
  1153.  */
  1154. static long tcp_data_wait(struct sock *sk, long timeo)
  1155. {
  1156. DECLARE_WAITQUEUE(wait, current);
  1157. add_wait_queue(sk->sleep, &wait);
  1158. __set_current_state(TASK_INTERRUPTIBLE);
  1159. set_bit(SOCK_ASYNC_WAITDATA, &sk->socket->flags);
  1160. release_sock(sk);
  1161. if (skb_queue_empty(&sk->receive_queue))
  1162. timeo = schedule_timeout(timeo);
  1163. lock_sock(sk);
  1164. clear_bit(SOCK_ASYNC_WAITDATA, &sk->socket->flags);
  1165. remove_wait_queue(sk->sleep, &wait);
  1166. __set_current_state(TASK_RUNNING);
  1167. return timeo;
  1168. }
  1169. static void tcp_prequeue_process(struct sock *sk)
  1170. {
  1171. struct sk_buff *skb;
  1172. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  1173. net_statistics[smp_processor_id()*2+1].TCPPrequeued += skb_queue_len(&tp->ucopy.prequeue);
  1174. /* RX process wants to run with disabled BHs, though it is not necessary */
  1175. local_bh_disable();
  1176. while ((skb = __skb_dequeue(&tp->ucopy.prequeue)) != NULL)
  1177. sk->backlog_rcv(sk, skb);
  1178. local_bh_enable();
  1179. /* Clear memory counter. */
  1180. tp->ucopy.memory = 0;
  1181. }
  1182. static inline
  1183. struct sk_buff *tcp_recv_skb(struct sock *sk, u32 seq, u32 *off)
  1184. {
  1185. struct sk_buff *skb;
  1186. u32 offset;
  1187. skb_queue_walk(&sk->receive_queue, skb) {
  1188. offset = seq - TCP_SKB_CB(skb)->seq;
  1189. if (skb->h.th->syn)
  1190. offset--;
  1191. if (offset < skb->len || skb->h.th->fin) {
  1192. *off = offset;
  1193. return skb;
  1194. }
  1195. }
  1196. return NULL;
  1197. }
  1198. /*
  1199.  * This routine provides an alternative to tcp_recvmsg() for routines
  1200.  * that would like to handle copying from skbuffs directly in 'sendfile'
  1201.  * fashion.
  1202.  * Note:
  1203.  * - It is assumed that the socket was locked by the caller.
  1204.  * - The routine does not block.
  1205.  * - At present, there is no support for reading OOB data
  1206.  *   or for 'peeking' the socket using this routine
  1207.  *   (although both would be easy to implement).
  1208.  */
  1209. int tcp_read_sock(struct sock *sk, read_descriptor_t *desc,
  1210.   sk_read_actor_t recv_actor)
  1211. {
  1212. struct sk_buff *skb;
  1213. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  1214. u32 seq = tp->copied_seq;
  1215. u32 offset;
  1216. int copied = 0;
  1217. if (sk->state == TCP_LISTEN)
  1218. return -ENOTCONN;
  1219. while ((skb = tcp_recv_skb(sk, seq, &offset)) != NULL) {
  1220. if (offset < skb->len) {
  1221. size_t used, len;
  1222. len = skb->len - offset;
  1223. /* Stop reading if we hit a patch of urgent data */
  1224. if (tp->urg_data) {
  1225. u32 urg_offset = tp->urg_seq - seq;
  1226. if (urg_offset < len)
  1227. len = urg_offset;
  1228. if (!len)
  1229. break;
  1230. }
  1231. used = recv_actor(desc, skb, offset, len);
  1232. if (used <= len) {
  1233. seq += used;
  1234. copied += used;
  1235. offset += used;
  1236. }
  1237. if (offset != skb->len)
  1238. break;
  1239. }
  1240. if (skb->h.th->fin) {
  1241. tcp_eat_skb(sk, skb);
  1242. ++seq;
  1243. break;
  1244. }
  1245. tcp_eat_skb(sk, skb);
  1246. if (!desc->count)
  1247. break;
  1248. }
  1249. tp->copied_seq = seq;
  1250. /* Clean up data we have read: This will do ACK frames. */
  1251. if (copied)
  1252. cleanup_rbuf(sk, copied);
  1253. return copied;
  1254. }
  1255. /*
  1256.  * This routine copies from a sock struct into the user buffer. 
  1257.  *
  1258.  * Technical note: in 2.3 we work on _locked_ socket, so that
  1259.  * tricks with *seq access order and skb->users are not required.
  1260.  * Probably, code can be easily improved even more.
  1261.  */
  1262.  
  1263. int tcp_recvmsg(struct sock *sk, struct msghdr *msg,
  1264. int len, int nonblock, int flags, int *addr_len)
  1265. {
  1266. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  1267. int copied = 0;
  1268. u32 peek_seq;
  1269. u32 *seq;
  1270. unsigned long used;
  1271. int err;
  1272. int target; /* Read at least this many bytes */
  1273. long timeo;
  1274. struct task_struct *user_recv = NULL;
  1275. lock_sock(sk);
  1276. TCP_CHECK_TIMER(sk);
  1277. err = -ENOTCONN;
  1278. if (sk->state == TCP_LISTEN)
  1279. goto out;
  1280. timeo = sock_rcvtimeo(sk, nonblock);
  1281. /* Urgent data needs to be handled specially. */
  1282. if (flags & MSG_OOB)
  1283. goto recv_urg;
  1284. seq = &tp->copied_seq;
  1285. if (flags & MSG_PEEK) {
  1286. peek_seq = tp->copied_seq;
  1287. seq = &peek_seq;
  1288. }
  1289. target = sock_rcvlowat(sk, flags & MSG_WAITALL, len);
  1290. do {
  1291. struct sk_buff * skb;
  1292. u32 offset;
  1293. /* Are we at urgent data? Stop if we have read anything. */
  1294. if (copied && tp->urg_data && tp->urg_seq == *seq)
  1295. break;
  1296. /* We need to check signals first, to get correct SIGURG
  1297.  * handling. FIXME: Need to check this doesn't impact 1003.1g
  1298.  * and move it down to the bottom of the loop
  1299.  */
  1300. if (signal_pending(current)) {
  1301. if (copied)
  1302. break;
  1303. copied = timeo ? sock_intr_errno(timeo) : -EAGAIN;
  1304. break;
  1305. }
  1306. /* Next get a buffer. */
  1307. skb = skb_peek(&sk->receive_queue);
  1308. do {
  1309. if (!skb)
  1310. break;
  1311. /* Now that we have two receive queues this 
  1312.  * shouldn't happen.
  1313.  */
  1314. if (before(*seq, TCP_SKB_CB(skb)->seq)) {
  1315. printk(KERN_INFO "recvmsg bug: copied %X seq %Xn",
  1316.        *seq, TCP_SKB_CB(skb)->seq);
  1317. break;
  1318. }
  1319. offset = *seq - TCP_SKB_CB(skb)->seq;
  1320. if (skb->h.th->syn)
  1321. offset--;
  1322. if (offset < skb->len)
  1323. goto found_ok_skb;
  1324. if (skb->h.th->fin)
  1325. goto found_fin_ok;
  1326. BUG_TRAP(flags&MSG_PEEK);
  1327. skb = skb->next;
  1328. } while (skb != (struct sk_buff *)&sk->receive_queue);
  1329. /* Well, if we have backlog, try to process it now yet. */
  1330. if (copied >= target && sk->backlog.tail == NULL)
  1331. break;
  1332. if (copied) {
  1333. if (sk->err ||
  1334.     sk->state == TCP_CLOSE ||
  1335.     (sk->shutdown & RCV_SHUTDOWN) ||
  1336.     !timeo ||
  1337.     (flags & MSG_PEEK))
  1338. break;
  1339. } else {
  1340. if (sk->done)
  1341. break;
  1342. if (sk->err) {
  1343. copied = sock_error(sk);
  1344. break;
  1345. }
  1346. if (sk->shutdown & RCV_SHUTDOWN)
  1347. break;
  1348. if (sk->state == TCP_CLOSE) {
  1349. if (!sk->done) {
  1350. /* This occurs when user tries to read
  1351.  * from never connected socket.
  1352.  */
  1353. copied = -ENOTCONN;
  1354. break;
  1355. }
  1356. break;
  1357. }
  1358. if (!timeo) {
  1359. copied = -EAGAIN;
  1360. break;
  1361. }
  1362. }
  1363. cleanup_rbuf(sk, copied);
  1364. if (tp->ucopy.task == user_recv) {
  1365. /* Install new reader */
  1366. if (user_recv == NULL && !(flags&(MSG_TRUNC|MSG_PEEK))) {
  1367. user_recv = current;
  1368. tp->ucopy.task = user_recv;
  1369. tp->ucopy.iov = msg->msg_iov;
  1370. }
  1371. tp->ucopy.len = len;
  1372. BUG_TRAP(tp->copied_seq == tp->rcv_nxt || (flags&(MSG_PEEK|MSG_TRUNC)));
  1373. /* Ugly... If prequeue is not empty, we have to
  1374.  * process it before releasing socket, otherwise
  1375.  * order will be broken at second iteration.
  1376.  * More elegant solution is required!!!
  1377.  *
  1378.  * Look: we have the following (pseudo)queues:
  1379.  *
  1380.  * 1. packets in flight
  1381.  * 2. backlog
  1382.  * 3. prequeue
  1383.  * 4. receive_queue
  1384.  *
  1385.  * Each queue can be processed only if the next ones
  1386.  * are empty. At this point we have empty receive_queue.
  1387.  * But prequeue _can_ be not empty after second iteration,
  1388.  * when we jumped to start of loop because backlog
  1389.  * processing added something to receive_queue.
  1390.  * We cannot release_sock(), because backlog contains
  1391.  * packets arrived _after_ prequeued ones.
  1392.  *
  1393.  * Shortly, algorithm is clear --- to process all
  1394.  * the queues in order. We could make it more directly,
  1395.  * requeueing packets from backlog to prequeue, if
  1396.  * is not empty. It is more elegant, but eats cycles,
  1397.  * unfortunately.
  1398.  */
  1399. if (skb_queue_len(&tp->ucopy.prequeue))
  1400. goto do_prequeue;
  1401. /* __ Set realtime policy in scheduler __ */
  1402. }
  1403. if (copied >= target) {
  1404. /* Do not sleep, just process backlog. */
  1405. release_sock(sk);
  1406. lock_sock(sk);
  1407. } else {
  1408. timeo = tcp_data_wait(sk, timeo);
  1409. }
  1410. if (user_recv) {
  1411. int chunk;
  1412. /* __ Restore normal policy in scheduler __ */
  1413. if ((chunk = len - tp->ucopy.len) != 0) {
  1414. net_statistics[smp_processor_id()*2+1].TCPDirectCopyFromBacklog += chunk;
  1415. len -= chunk;
  1416. copied += chunk;
  1417. }
  1418. if (tp->rcv_nxt == tp->copied_seq &&
  1419.     skb_queue_len(&tp->ucopy.prequeue)) {
  1420. do_prequeue:
  1421. tcp_prequeue_process(sk);
  1422. if ((chunk = len - tp->ucopy.len) != 0) {
  1423. net_statistics[smp_processor_id()*2+1].TCPDirectCopyFromPrequeue += chunk;
  1424. len -= chunk;
  1425. copied += chunk;
  1426. }
  1427. }
  1428. }
  1429. if ((flags & MSG_PEEK) && peek_seq != tp->copied_seq) {
  1430. if (net_ratelimit())
  1431. printk(KERN_DEBUG "TCP(%s:%d): Application bug, race in MSG_PEEK.n",
  1432.        current->comm, current->pid);
  1433. peek_seq = tp->copied_seq;
  1434. }
  1435. continue;
  1436. found_ok_skb:
  1437. /* Ok so how much can we use? */
  1438. used = skb->len - offset;
  1439. if (len < used)
  1440. used = len;
  1441. /* Do we have urgent data here? */
  1442. if (tp->urg_data) {
  1443. u32 urg_offset = tp->urg_seq - *seq;
  1444. if (urg_offset < used) {
  1445. if (!urg_offset) {
  1446. if (!sk->urginline) {
  1447. ++*seq;
  1448. offset++;
  1449. used--;
  1450. if (!used)
  1451. goto skip_copy;
  1452. }
  1453. } else
  1454. used = urg_offset;
  1455. }
  1456. }
  1457. if (!(flags&MSG_TRUNC)) {
  1458. err = skb_copy_datagram_iovec(skb, offset, msg->msg_iov, used);
  1459. if (err) {
  1460. /* Exception. Bailout! */
  1461. if (!copied)
  1462. copied = -EFAULT;
  1463. break;
  1464. }
  1465. }
  1466. *seq += used;
  1467. copied += used;
  1468. len -= used;
  1469. skip_copy:
  1470. if (tp->urg_data && after(tp->copied_seq,tp->urg_seq)) {
  1471. tp->urg_data = 0;
  1472. tcp_fast_path_check(sk, tp);
  1473. }
  1474. if (used + offset < skb->len)
  1475. continue;
  1476. if (skb->h.th->fin)
  1477. goto found_fin_ok;
  1478. if (!(flags & MSG_PEEK))
  1479. tcp_eat_skb(sk, skb);
  1480. continue;
  1481. found_fin_ok:
  1482. /* Process the FIN. */
  1483. ++*seq;
  1484. if (!(flags & MSG_PEEK))
  1485. tcp_eat_skb(sk, skb);
  1486. break;
  1487. } while (len > 0);
  1488. if (user_recv) {
  1489. if (skb_queue_len(&tp->ucopy.prequeue)) {
  1490. int chunk;
  1491. tp->ucopy.len = copied > 0 ? len : 0;
  1492. tcp_prequeue_process(sk);
  1493. if (copied > 0 && (chunk = len - tp->ucopy.len) != 0) {
  1494. net_statistics[smp_processor_id()*2+1].TCPDirectCopyFromPrequeue += chunk;
  1495. len -= chunk;
  1496. copied += chunk;
  1497. }
  1498. }
  1499. tp->ucopy.task = NULL;
  1500. tp->ucopy.len = 0;
  1501. }
  1502. /* According to UNIX98, msg_name/msg_namelen are ignored
  1503.  * on connected socket. I was just happy when found this 8) --ANK
  1504.  */
  1505. /* Clean up data we have read: This will do ACK frames. */
  1506. cleanup_rbuf(sk, copied);
  1507. TCP_CHECK_TIMER(sk);
  1508. release_sock(sk);
  1509. return copied;
  1510. out:
  1511. TCP_CHECK_TIMER(sk);
  1512. release_sock(sk);
  1513. return err;
  1514. recv_urg:
  1515. err = tcp_recv_urg(sk, timeo, msg, len, flags, addr_len);
  1516. goto out;
  1517. }
  1518. /*
  1519.  * State processing on a close. This implements the state shift for
  1520.  * sending our FIN frame. Note that we only send a FIN for some
  1521.  * states. A shutdown() may have already sent the FIN, or we may be
  1522.  * closed.
  1523.  */
  1524. static unsigned char new_state[16] = {
  1525.   /* current state:        new state:      action: */
  1526.   /* (Invalid) */ TCP_CLOSE,
  1527.   /* TCP_ESTABLISHED */ TCP_FIN_WAIT1 | TCP_ACTION_FIN,
  1528.   /* TCP_SYN_SENT */ TCP_CLOSE,
  1529.   /* TCP_SYN_RECV */ TCP_FIN_WAIT1 | TCP_ACTION_FIN,
  1530.   /* TCP_FIN_WAIT1 */ TCP_FIN_WAIT1,
  1531.   /* TCP_FIN_WAIT2 */ TCP_FIN_WAIT2,
  1532.   /* TCP_TIME_WAIT */ TCP_CLOSE,
  1533.   /* TCP_CLOSE */ TCP_CLOSE,
  1534.   /* TCP_CLOSE_WAIT */ TCP_LAST_ACK  | TCP_ACTION_FIN,
  1535.   /* TCP_LAST_ACK */ TCP_LAST_ACK,
  1536.   /* TCP_LISTEN */ TCP_CLOSE,
  1537.   /* TCP_CLOSING */ TCP_CLOSING,
  1538. };
  1539. static int tcp_close_state(struct sock *sk)
  1540. {
  1541. int next = (int) new_state[sk->state];
  1542. int ns = (next & TCP_STATE_MASK);
  1543. tcp_set_state(sk, ns);
  1544. return (next & TCP_ACTION_FIN);
  1545. }
  1546. /*
  1547.  * Shutdown the sending side of a connection. Much like close except
  1548.  * that we don't receive shut down or set sk->dead.
  1549.  */
  1550. void tcp_shutdown(struct sock *sk, int how)
  1551. {
  1552. /* We need to grab some memory, and put together a FIN,
  1553.  * and then put it into the queue to be sent.
  1554.  * Tim MacKenzie(tym@dibbler.cs.monash.edu.au) 4 Dec '92.
  1555.  */
  1556. if (!(how & SEND_SHUTDOWN))
  1557. return;
  1558. /* If we've already sent a FIN, or it's a closed state, skip this. */
  1559. if ((1 << sk->state) &
  1560.     (TCPF_ESTABLISHED|TCPF_SYN_SENT|TCPF_SYN_RECV|TCPF_CLOSE_WAIT)) {
  1561. /* Clear out any half completed packets.  FIN if needed. */
  1562. if (tcp_close_state(sk))
  1563. tcp_send_fin(sk);
  1564. }
  1565. }
  1566. /*
  1567.  * Return 1 if we still have things to send in our buffers.
  1568.  */
  1569. static inline int closing(struct sock * sk)
  1570. {
  1571. return ((1 << sk->state) & (TCPF_FIN_WAIT1|TCPF_CLOSING|TCPF_LAST_ACK));
  1572. }
  1573. static __inline__ void tcp_kill_sk_queues(struct sock *sk)
  1574. {
  1575. /* First the read buffer. */
  1576. __skb_queue_purge(&sk->receive_queue);
  1577. /* Next, the error queue. */
  1578. __skb_queue_purge(&sk->error_queue);
  1579. /* Next, the write queue. */
  1580. BUG_TRAP(skb_queue_empty(&sk->write_queue));
  1581. /* Account for returned memory. */
  1582. tcp_mem_reclaim(sk);
  1583. BUG_TRAP(sk->wmem_queued == 0);
  1584. BUG_TRAP(sk->forward_alloc == 0);
  1585. /* It is _impossible_ for the backlog to contain anything
  1586.  * when we get here.  All user references to this socket
  1587.  * have gone away, only the net layer knows can touch it.
  1588.  */
  1589. }
  1590. /*
  1591.  * At this point, there should be no process reference to this
  1592.  * socket, and thus no user references at all.  Therefore we
  1593.  * can assume the socket waitqueue is inactive and nobody will
  1594.  * try to jump onto it.
  1595.  */
  1596. void tcp_destroy_sock(struct sock *sk)
  1597. {
  1598. BUG_TRAP(sk->state==TCP_CLOSE);
  1599. BUG_TRAP(sk->dead);
  1600. /* It cannot be in hash table! */
  1601. BUG_TRAP(sk->pprev==NULL);
  1602. /* If it has not 0 sk->num, it must be bound */
  1603. BUG_TRAP(!sk->num || sk->prev!=NULL);
  1604. #ifdef TCP_DEBUG
  1605. if (sk->zapped) {
  1606. printk(KERN_DEBUG "TCP: double destroy sk=%pn", sk);
  1607. sock_hold(sk);
  1608. }
  1609. sk->zapped = 1;
  1610. #endif
  1611. sk->prot->destroy(sk);
  1612. tcp_kill_sk_queues(sk);
  1613. #ifdef INET_REFCNT_DEBUG
  1614. if (atomic_read(&sk->refcnt) != 1) {
  1615. printk(KERN_DEBUG "Destruction TCP %p delayed, c=%dn", sk, atomic_read(&sk->refcnt));
  1616. }
  1617. #endif
  1618. atomic_dec(&tcp_orphan_count);
  1619. sock_put(sk);
  1620. }
  1621. void tcp_close(struct sock *sk, long timeout)
  1622. {
  1623. struct sk_buff *skb;
  1624. int data_was_unread = 0;
  1625. lock_sock(sk);
  1626. sk->shutdown = SHUTDOWN_MASK;
  1627. if(sk->state == TCP_LISTEN) {
  1628. tcp_set_state(sk, TCP_CLOSE);
  1629. /* Special case. */
  1630. tcp_listen_stop(sk);
  1631. goto adjudge_to_death;
  1632. }
  1633. /*  We need to flush the recv. buffs.  We do this only on the
  1634.  *  descriptor close, not protocol-sourced closes, because the
  1635.  *  reader process may not have drained the data yet!
  1636.  */
  1637. while((skb=__skb_dequeue(&sk->receive_queue))!=NULL) {
  1638. u32 len = TCP_SKB_CB(skb)->end_seq - TCP_SKB_CB(skb)->seq - skb->h.th->fin;
  1639. data_was_unread += len;
  1640. __kfree_skb(skb);
  1641. }
  1642. tcp_mem_reclaim(sk);
  1643. /* As outlined in draft-ietf-tcpimpl-prob-03.txt, section
  1644.  * 3.10, we send a RST here because data was lost.  To
  1645.  * witness the awful effects of the old behavior of always
  1646.  * doing a FIN, run an older 2.1.x kernel or 2.0.x, start
  1647.  * a bulk GET in an FTP client, suspend the process, wait
  1648.  * for the client to advertise a zero window, then kill -9
  1649.  * the FTP client, wheee...  Note: timeout is always zero
  1650.  * in such a case.
  1651.  */
  1652. if(data_was_unread != 0) {
  1653. /* Unread data was tossed, zap the connection. */
  1654. NET_INC_STATS_USER(TCPAbortOnClose);
  1655. tcp_set_state(sk, TCP_CLOSE);
  1656. tcp_send_active_reset(sk, GFP_KERNEL);
  1657. } else if (sk->linger && sk->lingertime==0) {
  1658. /* Check zero linger _after_ checking for unread data. */
  1659. sk->prot->disconnect(sk, 0);
  1660. NET_INC_STATS_USER(TCPAbortOnData);
  1661. } else if (tcp_close_state(sk)) {
  1662. /* We FIN if the application ate all the data before
  1663.  * zapping the connection.
  1664.  */
  1665. /* RED-PEN. Formally speaking, we have broken TCP state
  1666.  * machine. State transitions:
  1667.  *
  1668.  * TCP_ESTABLISHED -> TCP_FIN_WAIT1
  1669.  * TCP_SYN_RECV -> TCP_FIN_WAIT1 (forget it, it's impossible)
  1670.  * TCP_CLOSE_WAIT -> TCP_LAST_ACK
  1671.  *
  1672.  * are legal only when FIN has been sent (i.e. in window),
  1673.  * rather than queued out of window. Purists blame.
  1674.  *
  1675.  * F.e. "RFC state" is ESTABLISHED,
  1676.  * if Linux state is FIN-WAIT-1, but FIN is still not sent.
  1677.  *
  1678.  * The visible declinations are that sometimes
  1679.  * we enter time-wait state, when it is not required really
  1680.  * (harmless), do not send active resets, when they are
  1681.  * required by specs (TCP_ESTABLISHED, TCP_CLOSE_WAIT, when
  1682.  * they look as CLOSING or LAST_ACK for Linux)
  1683.  * Probably, I missed some more holelets.
  1684.  *  --ANK
  1685.  */
  1686. tcp_send_fin(sk);
  1687. }
  1688. if (timeout) {
  1689. struct task_struct *tsk = current;
  1690. DECLARE_WAITQUEUE(wait, current);
  1691. add_wait_queue(sk->sleep, &wait);
  1692. do {
  1693. set_current_state(TASK_INTERRUPTIBLE);
  1694. if (!closing(sk))
  1695. break;
  1696. release_sock(sk);
  1697. timeout = schedule_timeout(timeout);
  1698. lock_sock(sk);
  1699. } while (!signal_pending(tsk) && timeout);
  1700. tsk->state = TASK_RUNNING;
  1701. remove_wait_queue(sk->sleep, &wait);
  1702. }
  1703. adjudge_to_death:
  1704. /* It is the last release_sock in its life. It will remove backlog. */
  1705. release_sock(sk);
  1706. /* Now socket is owned by kernel and we acquire BH lock
  1707.    to finish close. No need to check for user refs.
  1708.  */
  1709. local_bh_disable();
  1710. bh_lock_sock(sk);
  1711. BUG_TRAP(sk->lock.users==0);
  1712. sock_hold(sk);
  1713. sock_orphan(sk);
  1714. /* This is a (useful) BSD violating of the RFC. There is a
  1715.  * problem with TCP as specified in that the other end could
  1716.  * keep a socket open forever with no application left this end.
  1717.  * We use a 3 minute timeout (about the same as BSD) then kill
  1718.  * our end. If they send after that then tough - BUT: long enough
  1719.  * that we won't make the old 4*rto = almost no time - whoops
  1720.  * reset mistake.
  1721.  *
  1722.  * Nope, it was not mistake. It is really desired behaviour
  1723.  * f.e. on http servers, when such sockets are useless, but
  1724.  * consume significant resources. Let's do it with special
  1725.  * linger2 option. --ANK
  1726.  */
  1727. if (sk->state == TCP_FIN_WAIT2) {
  1728. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  1729. if (tp->linger2 < 0) {
  1730. tcp_set_state(sk, TCP_CLOSE);
  1731. tcp_send_active_reset(sk, GFP_ATOMIC);
  1732. NET_INC_STATS_BH(TCPAbortOnLinger);
  1733. } else {
  1734. int tmo = tcp_fin_time(tp);
  1735. if (tmo > TCP_TIMEWAIT_LEN) {
  1736. tcp_reset_keepalive_timer(sk, tcp_fin_time(tp));
  1737. } else {
  1738. atomic_inc(&tcp_orphan_count);
  1739. tcp_time_wait(sk, TCP_FIN_WAIT2, tmo);
  1740. goto out;
  1741. }
  1742. }
  1743. }
  1744. if (sk->state != TCP_CLOSE) {
  1745. tcp_mem_reclaim(sk);
  1746. if (atomic_read(&tcp_orphan_count) > sysctl_tcp_max_orphans ||
  1747.     (sk->wmem_queued > SOCK_MIN_SNDBUF &&
  1748.      atomic_read(&tcp_memory_allocated) > sysctl_tcp_mem[2])) {
  1749. if (net_ratelimit())
  1750. printk(KERN_INFO "TCP: too many of orphaned socketsn");
  1751. tcp_set_state(sk, TCP_CLOSE);
  1752. tcp_send_active_reset(sk, GFP_ATOMIC);
  1753. NET_INC_STATS_BH(TCPAbortOnMemory);
  1754. }
  1755. }
  1756. atomic_inc(&tcp_orphan_count);
  1757. if (sk->state == TCP_CLOSE)
  1758. tcp_destroy_sock(sk);
  1759. /* Otherwise, socket is reprieved until protocol close. */
  1760. out:
  1761. bh_unlock_sock(sk);
  1762. local_bh_enable();
  1763. sock_put(sk);
  1764. }
  1765. /* These states need RST on ABORT according to RFC793 */
  1766. extern __inline__ int tcp_need_reset(int state)
  1767. {
  1768. return ((1 << state) &
  1769.         (TCPF_ESTABLISHED|TCPF_CLOSE_WAIT|TCPF_FIN_WAIT1|
  1770.  TCPF_FIN_WAIT2|TCPF_SYN_RECV));
  1771. }
  1772. int tcp_disconnect(struct sock *sk, int flags)
  1773. {
  1774. struct tcp_opt *tp = &sk->tp_pinfo.af_tcp;
  1775. int old_state;
  1776. int err = 0;
  1777. old_state = sk->state;
  1778. if (old_state != TCP_CLOSE)
  1779. tcp_set_state(sk, TCP_CLOSE);
  1780. /* ABORT function of RFC793 */
  1781. if (old_state == TCP_LISTEN) {
  1782. tcp_listen_stop(sk);
  1783. } else if (tcp_need_reset(old_state) ||
  1784.    (tp->snd_nxt != tp->write_seq &&
  1785.     (1<<old_state)&(TCPF_CLOSING|TCPF_LAST_ACK))) {
  1786. /* The last check adjusts for discrepance of Linux wrt. RFC
  1787.  * states
  1788.  */
  1789. tcp_send_active_reset(sk, gfp_any());
  1790. sk->err = ECONNRESET;
  1791. } else if (old_state == TCP_SYN_SENT)
  1792. sk->err = ECONNRESET;
  1793. tcp_clear_xmit_timers(sk);
  1794. __skb_queue_purge(&sk->receive_queue);
  1795.    tcp_writequeue_purge(sk);
  1796.    __skb_queue_purge(&tp->out_of_order_queue);
  1797. sk->dport = 0;
  1798. if (!(sk->userlocks&SOCK_BINDADDR_LOCK)) {
  1799. sk->rcv_saddr = 0;
  1800. sk->saddr = 0;
  1801. #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
  1802. memset(&sk->net_pinfo.af_inet6.saddr, 0, 16);
  1803. memset(&sk->net_pinfo.af_inet6.rcv_saddr, 0, 16);
  1804. #endif
  1805. }
  1806. sk->shutdown = 0;
  1807. sk->done = 0;
  1808. tp->srtt = 0;
  1809. if ((tp->write_seq += tp->max_window+2) == 0)
  1810. tp->write_seq = 1;
  1811. tp->backoff = 0;
  1812. tp->snd_cwnd = 2;
  1813. tp->probes_out = 0;
  1814. tp->packets_out = 0;
  1815. tp->snd_ssthresh = 0x7fffffff;
  1816. tp->snd_cwnd_cnt = 0;
  1817. tp->ca_state = TCP_CA_Open;
  1818. tcp_clear_retrans(tp);
  1819. tcp_delack_init(tp);
  1820. tp->send_head = NULL;
  1821. tp->saw_tstamp = 0;
  1822. tcp_sack_reset(tp);
  1823. __sk_dst_reset(sk);
  1824. BUG_TRAP(!sk->num || sk->prev);
  1825. sk->error_report(sk);
  1826. return err;
  1827. }
  1828. /*
  1829.  * Wait for an incoming connection, avoid race
  1830.  * conditions. This must be called with the socket locked.
  1831.  */
  1832. static int wait_for_connect(struct sock * sk, long timeo)
  1833. {
  1834. DECLARE_WAITQUEUE(wait, current);
  1835. int err;
  1836. /*
  1837.  * True wake-one mechanism for incoming connections: only
  1838.  * one process gets woken up, not the 'whole herd'.
  1839.  * Since we do not 'race & poll' for established sockets
  1840.  * anymore, the common case will execute the loop only once.
  1841.  *
  1842.  * Subtle issue: "add_wait_queue_exclusive()" will be added
  1843.  * after any current non-exclusive waiters, and we know that
  1844.  * it will always _stay_ after any new non-exclusive waiters
  1845.  * because all non-exclusive waiters are added at the
  1846.  * beginning of the wait-queue. As such, it's ok to "drop"
  1847.  * our exclusiveness temporarily when we get woken up without
  1848.  * having to remove and re-insert us on the wait queue.
  1849.  */
  1850. add_wait_queue_exclusive(sk->sleep, &wait);
  1851. for (;;) {
  1852. current->state = TASK_INTERRUPTIBLE;
  1853. release_sock(sk);
  1854. if (sk->tp_pinfo.af_tcp.accept_queue == NULL)
  1855. timeo = schedule_timeout(timeo);
  1856. lock_sock(sk);
  1857. err = 0;
  1858. if (sk->tp_pinfo.af_tcp.accept_queue)
  1859. break;
  1860. err = -EINVAL;
  1861. if (sk->state != TCP_LISTEN)
  1862. break;
  1863. err = sock_intr_errno(timeo);
  1864. if (signal_pending(current))
  1865. break;
  1866. err = -EAGAIN;
  1867. if (!timeo)
  1868. break;
  1869. }
  1870. current->state = TASK_RUNNING;
  1871. remove_wait_queue(sk->sleep, &wait);
  1872. return err;
  1873. }
  1874. /*
  1875.  * This will accept the next outstanding connection.
  1876.  */
  1877. struct sock *tcp_accept(struct sock *sk, int flags, int *err)
  1878. {
  1879. struct tcp_opt *tp = &sk->tp_pinfo.af_tcp;
  1880. struct open_request *req;
  1881. struct sock *newsk;
  1882. int error;
  1883. lock_sock(sk); 
  1884. /* We need to make sure that this socket is listening,
  1885.  * and that it has something pending.
  1886.  */
  1887. error = -EINVAL;
  1888. if (sk->state != TCP_LISTEN)
  1889. goto out;
  1890. /* Find already established connection */
  1891. if (!tp->accept_queue) {
  1892. long timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
  1893. /* If this is a non blocking socket don't sleep */
  1894. error = -EAGAIN;
  1895. if (!timeo)
  1896. goto out;
  1897. error = wait_for_connect(sk, timeo);
  1898. if (error)
  1899. goto out;
  1900. }
  1901. req = tp->accept_queue;
  1902. if ((tp->accept_queue = req->dl_next) == NULL)
  1903. tp->accept_queue_tail = NULL;
  1904.   newsk = req->sk;
  1905. tcp_acceptq_removed(sk);
  1906. tcp_openreq_fastfree(req);
  1907. BUG_TRAP(newsk->state != TCP_SYN_RECV);
  1908. release_sock(sk);
  1909. return newsk;
  1910. out:
  1911. release_sock(sk);
  1912. *err = error; 
  1913. return NULL;
  1914. }
  1915. /*
  1916.  * Socket option code for TCP. 
  1917.  */
  1918.   
  1919. int tcp_setsockopt(struct sock *sk, int level, int optname, char *optval, 
  1920.    int optlen)
  1921. {
  1922. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  1923. int val;
  1924. int err = 0;
  1925. if (level != SOL_TCP)
  1926. return tp->af_specific->setsockopt(sk, level, optname, 
  1927.    optval, optlen);
  1928. if(optlen<sizeof(int))
  1929. return -EINVAL;
  1930. if (get_user(val, (int *)optval))
  1931. return -EFAULT;
  1932. lock_sock(sk);
  1933. switch(optname) {
  1934. case TCP_MAXSEG:
  1935. /* values greater than interface MTU won't take effect.  however at
  1936.  * the point when this call is done we typically don't yet know
  1937.  * which interface is going to be used
  1938.  */
  1939. if(val < 8 || val > MAX_TCP_WINDOW) {
  1940. err = -EINVAL;
  1941. break;
  1942. }
  1943. tp->user_mss = val;
  1944. break;
  1945. case TCP_NODELAY:
  1946. /* You cannot try to use this and TCP_CORK in
  1947.  * tandem, so let the user know.
  1948.  */
  1949. if (tp->nonagle == 2) {
  1950. err = -EINVAL;
  1951. break;
  1952. }
  1953. tp->nonagle = (val == 0) ? 0 : 1;
  1954. if (val)
  1955. tcp_push_pending_frames(sk, tp);
  1956. break;
  1957. case TCP_CORK:
  1958. /* When set indicates to always queue non-full frames.
  1959.  * Later the user clears this option and we transmit
  1960.  * any pending partial frames in the queue.  This is
  1961.  * meant to be used alongside sendfile() to get properly
  1962.  * filled frames when the user (for example) must write
  1963.  * out headers with a write() call first and then use
  1964.  * sendfile to send out the data parts.
  1965.  *
  1966.  * You cannot try to use TCP_NODELAY and this mechanism
  1967.  * at the same time, so let the user know.
  1968.  */
  1969. if (tp->nonagle == 1) {
  1970. err = -EINVAL;
  1971. break;
  1972. }
  1973. if (val != 0) {
  1974. tp->nonagle = 2;
  1975. } else {
  1976. tp->nonagle = 0;
  1977. tcp_push_pending_frames(sk, tp);
  1978. }
  1979. break;
  1980. case TCP_KEEPIDLE:
  1981. if (val < 1 || val > MAX_TCP_KEEPIDLE)
  1982. err = -EINVAL;
  1983. else {
  1984. tp->keepalive_time = val * HZ;
  1985. if (sk->keepopen && !((1<<sk->state)&(TCPF_CLOSE|TCPF_LISTEN))) {
  1986. __u32 elapsed = tcp_time_stamp - tp->rcv_tstamp;
  1987. if (tp->keepalive_time > elapsed)
  1988. elapsed = tp->keepalive_time - elapsed;
  1989. else
  1990. elapsed = 0;
  1991. tcp_reset_keepalive_timer(sk, elapsed);
  1992. }
  1993. }
  1994. break;
  1995. case TCP_KEEPINTVL:
  1996. if (val < 1 || val > MAX_TCP_KEEPINTVL)
  1997. err = -EINVAL;
  1998. else
  1999. tp->keepalive_intvl = val * HZ;
  2000. break;
  2001. case TCP_KEEPCNT:
  2002. if (val < 1 || val > MAX_TCP_KEEPCNT)
  2003. err = -EINVAL;
  2004. else
  2005. tp->keepalive_probes = val;
  2006. break;
  2007. case TCP_SYNCNT:
  2008. if (val < 1 || val > MAX_TCP_SYNCNT)
  2009. err = -EINVAL;
  2010. else
  2011. tp->syn_retries = val;
  2012. break;
  2013. case TCP_LINGER2:
  2014. if (val < 0)
  2015. tp->linger2 = -1;
  2016. else if (val > sysctl_tcp_fin_timeout/HZ)
  2017. tp->linger2 = 0;
  2018. else
  2019. tp->linger2 = val*HZ;
  2020. break;
  2021. case TCP_DEFER_ACCEPT:
  2022. tp->defer_accept = 0;
  2023. if (val > 0) {
  2024. /* Translate value in seconds to number of retransmits */
  2025. while (tp->defer_accept < 32 && val > ((TCP_TIMEOUT_INIT/HZ)<<tp->defer_accept))
  2026. tp->defer_accept++;
  2027. tp->defer_accept++;
  2028. }
  2029. break;
  2030. case TCP_WINDOW_CLAMP:
  2031. if (val==0) {
  2032. if (sk->state != TCP_CLOSE) {
  2033. err = -EINVAL;
  2034. break;
  2035. }
  2036. tp->window_clamp = 0;
  2037. } else {
  2038. tp->window_clamp = val<SOCK_MIN_RCVBUF/2 ?
  2039. SOCK_MIN_RCVBUF/2 : val;
  2040. }
  2041. break;
  2042. case TCP_QUICKACK:
  2043. if (!val) {
  2044. tp->ack.pingpong = 1;
  2045. } else {
  2046. tp->ack.pingpong = 0;
  2047. if ((1<<sk->state)&(TCPF_ESTABLISHED|TCPF_CLOSE_WAIT) &&
  2048.     tcp_ack_scheduled(tp)) {
  2049. tp->ack.pending |= TCP_ACK_PUSHED;
  2050. cleanup_rbuf(sk, 1);
  2051. if (!(val & 1))
  2052. tp->ack.pingpong = 1;
  2053. }
  2054. }
  2055. break;
  2056. default:
  2057. err = -ENOPROTOOPT;
  2058. break;
  2059. };
  2060. release_sock(sk);
  2061. return err;
  2062. }
  2063. int tcp_getsockopt(struct sock *sk, int level, int optname, char *optval,
  2064.    int *optlen)
  2065. {
  2066. struct tcp_opt *tp = &(sk->tp_pinfo.af_tcp);
  2067. int val, len;
  2068. if(level != SOL_TCP)
  2069. return tp->af_specific->getsockopt(sk, level, optname,
  2070.    optval, optlen);
  2071. if(get_user(len,optlen))
  2072. return -EFAULT;
  2073. len = min_t(unsigned int, len, sizeof(int));
  2074. if(len < 0)
  2075. return -EINVAL;
  2076. switch(optname) {
  2077. case TCP_MAXSEG:
  2078. val = tp->mss_cache;
  2079. if (val == 0 && ((1<<sk->state)&(TCPF_CLOSE|TCPF_LISTEN)))
  2080. val = tp->user_mss;
  2081. break;
  2082. case TCP_NODELAY:
  2083. val = (tp->nonagle == 1);
  2084. break;
  2085. case TCP_CORK:
  2086. val = (tp->nonagle == 2);
  2087. break;
  2088. case TCP_KEEPIDLE:
  2089. val = (tp->keepalive_time ? : sysctl_tcp_keepalive_time)/HZ;
  2090. break;
  2091. case TCP_KEEPINTVL:
  2092. val = (tp->keepalive_intvl ? : sysctl_tcp_keepalive_intvl)/HZ;
  2093. break;
  2094. case TCP_KEEPCNT:
  2095. val = tp->keepalive_probes ? : sysctl_tcp_keepalive_probes;
  2096. break;
  2097. case TCP_SYNCNT:
  2098. val = tp->syn_retries ? : sysctl_tcp_syn_retries;
  2099. break;
  2100. case TCP_LINGER2:
  2101. val = tp->linger2;
  2102. if (val >= 0)
  2103. val = (val ? : sysctl_tcp_fin_timeout)/HZ;
  2104. break;
  2105. case TCP_DEFER_ACCEPT:
  2106. val = tp->defer_accept == 0 ? 0 : ((TCP_TIMEOUT_INIT/HZ)<<(tp->defer_accept-1));
  2107. break;
  2108. case TCP_WINDOW_CLAMP:
  2109. val = tp->window_clamp;
  2110. break;
  2111. case TCP_INFO:
  2112. {
  2113. struct tcp_info info;
  2114. u32 now = tcp_time_stamp;
  2115. if(get_user(len,optlen))
  2116. return -EFAULT;
  2117. info.tcpi_state = sk->state;
  2118. info.tcpi_ca_state = tp->ca_state;
  2119. info.tcpi_retransmits = tp->retransmits;
  2120. info.tcpi_probes = tp->probes_out;
  2121. info.tcpi_backoff = tp->backoff;
  2122. info.tcpi_options = 0;
  2123. if (tp->tstamp_ok)
  2124. info.tcpi_options |= TCPI_OPT_TIMESTAMPS;
  2125. if (tp->sack_ok)
  2126. info.tcpi_options |= TCPI_OPT_SACK;
  2127. if (tp->wscale_ok) {
  2128. info.tcpi_options |= TCPI_OPT_WSCALE;
  2129. info.tcpi_snd_wscale = tp->snd_wscale;
  2130. info.tcpi_rcv_wscale = tp->rcv_wscale;
  2131. } else {
  2132. info.tcpi_snd_wscale = 0;
  2133. info.tcpi_rcv_wscale = 0;
  2134. }
  2135. if (tp->ecn_flags&TCP_ECN_OK)
  2136. info.tcpi_options |= TCPI_OPT_ECN;
  2137. info.tcpi_rto = (1000000*tp->rto)/HZ;
  2138. info.tcpi_ato = (1000000*tp->ack.ato)/HZ;
  2139. info.tcpi_snd_mss = tp->mss_cache;
  2140. info.tcpi_rcv_mss = tp->ack.rcv_mss;
  2141. info.tcpi_unacked = tp->packets_out;
  2142. info.tcpi_sacked = tp->sacked_out;
  2143. info.tcpi_lost = tp->lost_out;
  2144. info.tcpi_retrans = tp->retrans_out;
  2145. info.tcpi_fackets = tp->fackets_out;
  2146. info.tcpi_last_data_sent = ((now - tp->lsndtime)*1000)/HZ;
  2147. info.tcpi_last_ack_sent = 0;
  2148. info.tcpi_last_data_recv = ((now - tp->ack.lrcvtime)*1000)/HZ;
  2149. info.tcpi_last_ack_recv = ((now - tp->rcv_tstamp)*1000)/HZ;
  2150. info.tcpi_pmtu = tp->pmtu_cookie;
  2151. info.tcpi_rcv_ssthresh = tp->rcv_ssthresh;
  2152. info.tcpi_rtt = ((1000000*tp->srtt)/HZ)>>3;
  2153. info.tcpi_rttvar = ((1000000*tp->mdev)/HZ)>>2;
  2154. info.tcpi_snd_ssthresh = tp->snd_ssthresh;
  2155. info.tcpi_snd_cwnd = tp->snd_cwnd;
  2156. info.tcpi_advmss = tp->advmss;
  2157. info.tcpi_reordering = tp->reordering;
  2158. len = min_t(unsigned int, len, sizeof(info));
  2159. if(put_user(len, optlen))
  2160. return -EFAULT;
  2161. if(copy_to_user(optval, &info,len))
  2162. return -EFAULT;
  2163. return 0;
  2164. }
  2165. case TCP_QUICKACK:
  2166. val = !tp->ack.pingpong;
  2167. break;
  2168. default:
  2169. return -ENOPROTOOPT;
  2170. };
  2171.    if(put_user(len, optlen))
  2172.    return -EFAULT;
  2173. if(copy_to_user(optval, &val,len))
  2174. return -EFAULT;
  2175.    return 0;
  2176. }
  2177. extern void __skb_cb_too_small_for_tcp(int, int);
  2178. extern void tcpdiag_init(void);
  2179. void __init tcp_init(void)
  2180. {
  2181. struct sk_buff *skb = NULL;
  2182. unsigned long goal;
  2183. int order, i;
  2184. if(sizeof(struct tcp_skb_cb) > sizeof(skb->cb))
  2185. __skb_cb_too_small_for_tcp(sizeof(struct tcp_skb_cb),
  2186.    sizeof(skb->cb));
  2187. tcp_openreq_cachep = kmem_cache_create("tcp_open_request",
  2188.    sizeof(struct open_request),
  2189.        0, SLAB_HWCACHE_ALIGN,
  2190.        NULL, NULL);
  2191. if(!tcp_openreq_cachep)
  2192. panic("tcp_init: Cannot alloc open_request cache.");
  2193. tcp_bucket_cachep = kmem_cache_create("tcp_bind_bucket",
  2194.       sizeof(struct tcp_bind_bucket),
  2195.       0, SLAB_HWCACHE_ALIGN,
  2196.       NULL, NULL);
  2197. if(!tcp_bucket_cachep)
  2198. panic("tcp_init: Cannot alloc tcp_bind_bucket cache.");
  2199. tcp_timewait_cachep = kmem_cache_create("tcp_tw_bucket",
  2200. sizeof(struct tcp_tw_bucket),
  2201. 0, SLAB_HWCACHE_ALIGN,
  2202. NULL, NULL);
  2203. if(!tcp_timewait_cachep)
  2204. panic("tcp_init: Cannot alloc tcp_tw_bucket cache.");
  2205. /* Size and allocate the main established and bind bucket
  2206.  * hash tables.
  2207.  *
  2208.  * The methodology is similar to that of the buffer cache.
  2209.  */
  2210. if (num_physpages >= (128 * 1024))
  2211. goal = num_physpages >> (21 - PAGE_SHIFT);
  2212. else
  2213. goal = num_physpages >> (23 - PAGE_SHIFT);
  2214. for(order = 0; (1UL << order) < goal; order++)
  2215. ;
  2216. do {
  2217. tcp_ehash_size = (1UL << order) * PAGE_SIZE /
  2218. sizeof(struct tcp_ehash_bucket);
  2219. tcp_ehash_size >>= 1;
  2220. while (tcp_ehash_size & (tcp_ehash_size-1))
  2221. tcp_ehash_size--;
  2222. tcp_ehash = (struct tcp_ehash_bucket *)
  2223. __get_free_pages(GFP_ATOMIC, order);
  2224. } while (tcp_ehash == NULL && --order > 0);
  2225. if (!tcp_ehash)
  2226. panic("Failed to allocate TCP established hash tablen");
  2227. for (i = 0; i < (tcp_ehash_size<<1); i++) {
  2228. tcp_ehash[i].lock = RW_LOCK_UNLOCKED;
  2229. tcp_ehash[i].chain = NULL;
  2230. }
  2231. do {
  2232. tcp_bhash_size = (1UL << order) * PAGE_SIZE /
  2233. sizeof(struct tcp_bind_hashbucket);
  2234. if ((tcp_bhash_size > (64 * 1024)) && order > 0)
  2235. continue;
  2236. tcp_bhash = (struct tcp_bind_hashbucket *)
  2237. __get_free_pages(GFP_ATOMIC, order);
  2238. } while (tcp_bhash == NULL && --order >= 0);
  2239. if (!tcp_bhash)
  2240. panic("Failed to allocate TCP bind hash tablen");
  2241. for (i = 0; i < tcp_bhash_size; i++) {
  2242. tcp_bhash[i].lock = SPIN_LOCK_UNLOCKED;
  2243. tcp_bhash[i].chain = NULL;
  2244. }
  2245. /* Try to be a bit smarter and adjust defaults depending
  2246.  * on available memory.
  2247.  */
  2248. if (order > 4) {
  2249. sysctl_local_port_range[0] = 32768;
  2250. sysctl_local_port_range[1] = 61000;
  2251. sysctl_tcp_max_tw_buckets = 180000;
  2252. sysctl_tcp_max_orphans = 4096<<(order-4);
  2253. sysctl_max_syn_backlog = 1024;
  2254. } else if (order < 3) {
  2255. sysctl_local_port_range[0] = 1024*(3-order);
  2256. sysctl_tcp_max_tw_buckets >>= (3-order);
  2257. sysctl_tcp_max_orphans >>= (3-order);
  2258. sysctl_max_syn_backlog = 128;
  2259. }
  2260. tcp_port_rover = sysctl_local_port_range[0] - 1;
  2261. sysctl_tcp_mem[0] = 768<<order;
  2262. sysctl_tcp_mem[1] = 1024<<order;
  2263. sysctl_tcp_mem[2] = 1536<<order;
  2264. if (sysctl_tcp_mem[2] - sysctl_tcp_mem[1] > 512)
  2265. sysctl_tcp_mem[1] = sysctl_tcp_mem[2] - 512;
  2266. if (sysctl_tcp_mem[1] - sysctl_tcp_mem[0] > 512)
  2267. sysctl_tcp_mem[0] = sysctl_tcp_mem[1] - 512;
  2268. if (order < 3) {
  2269. sysctl_tcp_wmem[2] = 64*1024;
  2270. sysctl_tcp_rmem[0] = PAGE_SIZE;
  2271. sysctl_tcp_rmem[1] = 43689;
  2272. sysctl_tcp_rmem[2] = 2*43689;
  2273. }
  2274. printk(KERN_INFO "TCP: Hash tables configured (established %d bind %d)n",
  2275.        tcp_ehash_size<<1, tcp_bhash_size);
  2276. tcpdiag_init();
  2277. }