TCP_SUBR.C
上传用户:tjbfgc
上传日期:2013-03-31
资源大小:140k
文件大小:13k
源码类别:

网络编程

开发平台:

C/C++

  1. /*
  2.  * Copyright (c) 1982, 1986, 1988, 1990, 1993
  3.  * The Regents of the University of California.  All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice, this list of conditions and the following disclaimer.
  10.  * 2. Redistributions in binary form must reproduce the above copyright
  11.  *    notice, this list of conditions and the following disclaimer in the
  12.  *    documentation and/or other materials provided with the distribution.
  13.  * 3. All advertising materials mentioning features or use of this software
  14.  *    must display the following acknowledgement:
  15.  * This product includes software developed by the University of
  16.  * California, Berkeley and its contributors.
  17.  * 4. Neither the name of the University nor the names of its contributors
  18.  *    may be used to endorse or promote products derived from this software
  19.  *    without specific prior written permission.
  20.  *
  21.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  22.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  25.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  27.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  28.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31.  * SUCH DAMAGE.
  32.  *
  33.  * @(#)tcp_subr.c 8.1 (Berkeley) 6/10/93
  34.  */
  35. #include <sys/param.h>
  36. #include <sys/proc.h>
  37. #include <sys/systm.h>
  38. #include <sys/malloc.h>
  39. #include <sys/mbuf.h>
  40. #include <sys/socket.h>
  41. #include <sys/socketvar.h>
  42. #include <sys/protosw.h>
  43. #include <sys/errno.h>
  44. #include <net/route.h>
  45. #include <net/if.h>
  46. #include <netinet/in.h>
  47. #include <netinet/in_systm.h>
  48. #include <netinet/ip.h>
  49. #include <netinet/in_pcb.h>
  50. #include <netinet/ip_var.h>
  51. #include <netinet/ip_icmp.h>
  52. #include <netinet/tcp.h>
  53. #include <netinet/tcp_fsm.h>
  54. #include <netinet/tcp_seq.h>
  55. #include <netinet/tcp_timer.h>
  56. #include <netinet/tcp_var.h>
  57. #include <netinet/tcpip.h>
  58. /* patchable/settable parameters for tcp */
  59. int  tcp_mssdflt = TCP_MSS;
  60. int  tcp_rttdflt = TCPTV_SRTTDFLT / PR_SLOWHZ;
  61. int tcp_do_rfc1323 = 1;
  62. extern struct inpcb *tcp_last_inpcb;
  63. /*
  64.  * Tcp initialization
  65.  */
  66. void
  67. tcp_init()
  68. {
  69. tcp_iss = 1; /* wrong */
  70. tcb.inp_next = tcb.inp_prev = &tcb;
  71. if (max_protohdr < sizeof(struct tcpiphdr))
  72. max_protohdr = sizeof(struct tcpiphdr);
  73. if (max_linkhdr + sizeof(struct tcpiphdr) > MHLEN)
  74. panic("tcp_init");
  75. }
  76. /*
  77.  * Create template to be used to send tcp packets on a connection.
  78.  * Call after host entry created, allocates an mbuf and fills
  79.  * in a skeletal tcp/ip header, minimizing the amount of work
  80.  * necessary when the connection is used.
  81.  */
  82. struct tcpiphdr *
  83. tcp_template(tp)
  84. struct tcpcb *tp;
  85. {
  86. register struct inpcb *inp = tp->t_inpcb;
  87. register struct mbuf *m;
  88. register struct tcpiphdr *n;
  89. if ((n = tp->t_template) == 0) {
  90. m = m_get(M_DONTWAIT, MT_HEADER);
  91. if (m == NULL)
  92. return (0);
  93. m->m_len = sizeof (struct tcpiphdr);
  94. n = mtod(m, struct tcpiphdr *);
  95. }
  96. n->ti_next = n->ti_prev = 0;
  97. n->ti_x1 = 0;
  98. n->ti_pr = IPPROTO_TCP;
  99. n->ti_len = htons(sizeof (struct tcpiphdr) - sizeof (struct ip));
  100. n->ti_src = inp->inp_laddr;
  101. n->ti_dst = inp->inp_faddr;
  102. n->ti_sport = inp->inp_lport;
  103. n->ti_dport = inp->inp_fport;
  104. n->ti_seq = 0;
  105. n->ti_ack = 0;
  106. n->ti_x2 = 0;
  107. n->ti_off = 5;
  108. n->ti_flags = 0;
  109. n->ti_win = 0;
  110. n->ti_sum = 0;
  111. n->ti_urp = 0;
  112. return (n);
  113. }
  114. /*
  115.  * Send a single message to the TCP at address specified by
  116.  * the given TCP/IP header.  If m == 0, then we make a copy
  117.  * of the tcpiphdr at ti and send directly to the addressed host.
  118.  * This is used to force keep alive messages out using the TCP
  119.  * template for a connection tp->t_template.  If flags are given
  120.  * then we send a message back to the TCP which originated the
  121.  * segment ti, and discard the mbuf containing it and any other
  122.  * attached mbufs.
  123.  *
  124.  * In any case the ack and sequence number of the transmitted
  125.  * segment are as specified by the parameters.
  126.  */
  127. void
  128. tcp_respond(tp, ti, m, ack, seq, flags)
  129. struct tcpcb *tp;
  130. register struct tcpiphdr *ti;
  131. register struct mbuf *m;
  132. tcp_seq ack, seq;
  133. int flags;
  134. {
  135. register int tlen;
  136. int win = 0;
  137. struct route *ro = 0;
  138. if (tp) {
  139. win = sbspace(&tp->t_inpcb->inp_socket->so_rcv);
  140. ro = &tp->t_inpcb->inp_route;
  141. }
  142. if (m == 0) {
  143. m = m_gethdr(M_DONTWAIT, MT_HEADER);
  144. if (m == NULL)
  145. return;
  146. #ifdef TCP_COMPAT_42
  147. tlen = 1;
  148. #else
  149. tlen = 0;
  150. #endif
  151. m->m_data += max_linkhdr;
  152. *mtod(m, struct tcpiphdr *) = *ti;
  153. ti = mtod(m, struct tcpiphdr *);
  154. flags = TH_ACK;
  155. } else {
  156. m_freem(m->m_next);
  157. m->m_next = 0;
  158. m->m_data = (caddr_t)ti;
  159. m->m_len = sizeof (struct tcpiphdr);
  160. tlen = 0;
  161. #define xchg(a,b,type) { type t; t=a; a=b; b=t; }
  162. xchg(ti->ti_dst.s_addr, ti->ti_src.s_addr, u_long);
  163. xchg(ti->ti_dport, ti->ti_sport, u_short);
  164. #undef xchg
  165. }
  166. ti->ti_len = htons((u_short)(sizeof (struct tcphdr) + tlen));
  167. tlen += sizeof (struct tcpiphdr);
  168. m->m_len = tlen;
  169. m->m_pkthdr.len = tlen;
  170. m->m_pkthdr.rcvif = (struct ifnet *) 0;
  171. ti->ti_next = ti->ti_prev = 0;
  172. ti->ti_x1 = 0;
  173. ti->ti_seq = htonl(seq);
  174. ti->ti_ack = htonl(ack);
  175. ti->ti_x2 = 0;
  176. ti->ti_off = sizeof (struct tcphdr) >> 2;
  177. ti->ti_flags = flags;
  178. if (tp)
  179. ti->ti_win = htons((u_short) (win >> tp->rcv_scale));
  180. else
  181. ti->ti_win = htons((u_short)win);
  182. ti->ti_urp = 0;
  183. ti->ti_sum = 0;
  184. ti->ti_sum = in_cksum(m, tlen);
  185. ((struct ip *)ti)->ip_len = tlen;
  186. ((struct ip *)ti)->ip_ttl = ip_defttl;
  187. (void) ip_output(m, NULL, ro, 0, NULL);
  188. }
  189. /*
  190.  * Create a new TCP control block, making an
  191.  * empty reassembly queue and hooking it to the argument
  192.  * protocol control block.
  193.  */
  194. struct tcpcb *
  195. tcp_newtcpcb(inp)
  196. struct inpcb *inp;
  197. {
  198. register struct tcpcb *tp;
  199. tp = malloc(sizeof(*tp), M_PCB, M_NOWAIT);
  200. if (tp == NULL)
  201. return ((struct tcpcb *)0);
  202. bzero((char *) tp, sizeof(struct tcpcb));
  203. tp->seg_next = tp->seg_prev = (struct tcpiphdr *)tp;
  204. tp->t_maxseg = tcp_mssdflt;
  205. tp->t_flags = tcp_do_rfc1323 ? (TF_REQ_SCALE|TF_REQ_TSTMP) : 0;
  206. tp->t_inpcb = inp;
  207. /*
  208.  * Init srtt to TCPTV_SRTTBASE (0), so we can tell that we have no
  209.  * rtt estimate.  Set rttvar so that srtt + 2 * rttvar gives
  210.  * reasonable initial retransmit time.
  211.  */
  212. tp->t_srtt = TCPTV_SRTTBASE;
  213. tp->t_rttvar = tcp_rttdflt * PR_SLOWHZ << 2;
  214. tp->t_rttmin = TCPTV_MIN;
  215. TCPT_RANGESET(tp->t_rxtcur, 
  216.     ((TCPTV_SRTTBASE >> 2) + (TCPTV_SRTTDFLT << 2)) >> 1,
  217.     TCPTV_MIN, TCPTV_REXMTMAX);
  218. tp->snd_cwnd = TCP_MAXWIN << TCP_MAX_WINSHIFT;
  219. tp->snd_ssthresh = TCP_MAXWIN << TCP_MAX_WINSHIFT;
  220. inp->inp_ip.ip_ttl = ip_defttl;
  221. inp->inp_ppcb = (caddr_t)tp;
  222. return (tp);
  223. }
  224. /*
  225.  * Drop a TCP connection, reporting
  226.  * the specified error.  If connection is synchronized,
  227.  * then send a RST to peer.
  228.  */
  229. struct tcpcb *
  230. tcp_drop(tp, errno)
  231. register struct tcpcb *tp;
  232. int errno;
  233. {
  234. struct socket *so = tp->t_inpcb->inp_socket;
  235. if (TCPS_HAVERCVDSYN(tp->t_state)) {
  236. tp->t_state = TCPS_CLOSED;
  237. (void) tcp_output(tp);
  238. tcpstat.tcps_drops++;
  239. } else
  240. tcpstat.tcps_conndrops++;
  241. if (errno == ETIMEDOUT && tp->t_softerror)
  242. errno = tp->t_softerror;
  243. so->so_error = errno;
  244. return (tcp_close(tp));
  245. }
  246. /*
  247.  * Close a TCP control block:
  248.  * discard all space held by the tcp
  249.  * discard internet protocol block
  250.  * wake up any sleepers
  251.  */
  252. struct tcpcb *
  253. tcp_close(tp)
  254. register struct tcpcb *tp;
  255. {
  256. register struct tcpiphdr *t;
  257. struct inpcb *inp = tp->t_inpcb;
  258. struct socket *so = inp->inp_socket;
  259. register struct mbuf *m;
  260. #ifdef RTV_RTT
  261. register struct rtentry *rt;
  262. /*
  263.  * If we sent enough data to get some meaningful characteristics,
  264.  * save them in the routing entry.  'Enough' is arbitrarily 
  265.  * defined as the sendpipesize (default 4K) * 16.  This would
  266.  * give us 16 rtt samples assuming we only get one sample per
  267.  * window (the usual case on a long haul net).  16 samples is
  268.  * enough for the srtt filter to converge to within 5% of the correct
  269.  * value; fewer samples and we could save a very bogus rtt.
  270.  *
  271.  * Don't update the default route's characteristics and don't
  272.  * update anything that the user "locked".
  273.  */
  274. if (SEQ_LT(tp->iss + so->so_snd.sb_hiwat * 16, tp->snd_max) &&
  275.     (rt = inp->inp_route.ro_rt) &&
  276.     ((struct sockaddr_in *)rt_key(rt))->sin_addr.s_addr != INADDR_ANY) {
  277. register u_long i;
  278. if ((rt->rt_rmx.rmx_locks & RTV_RTT) == 0) {
  279. i = tp->t_srtt *
  280.     (RTM_RTTUNIT / (PR_SLOWHZ * TCP_RTT_SCALE));
  281. if (rt->rt_rmx.rmx_rtt && i)
  282. /*
  283.  * filter this update to half the old & half
  284.  * the new values, converting scale.
  285.  * See route.h and tcp_var.h for a
  286.  * description of the scaling constants.
  287.  */
  288. rt->rt_rmx.rmx_rtt =
  289.     (rt->rt_rmx.rmx_rtt + i) / 2;
  290. else
  291. rt->rt_rmx.rmx_rtt = i;
  292. }
  293. if ((rt->rt_rmx.rmx_locks & RTV_RTTVAR) == 0) {
  294. i = tp->t_rttvar *
  295.     (RTM_RTTUNIT / (PR_SLOWHZ * TCP_RTTVAR_SCALE));
  296. if (rt->rt_rmx.rmx_rttvar && i)
  297. rt->rt_rmx.rmx_rttvar =
  298.     (rt->rt_rmx.rmx_rttvar + i) / 2;
  299. else
  300. rt->rt_rmx.rmx_rttvar = i;
  301. }
  302. /*
  303.  * update the pipelimit (ssthresh) if it has been updated
  304.  * already or if a pipesize was specified & the threshhold
  305.  * got below half the pipesize.  I.e., wait for bad news
  306.  * before we start updating, then update on both good
  307.  * and bad news.
  308.  */
  309. if ((rt->rt_rmx.rmx_locks & RTV_SSTHRESH) == 0 &&
  310.     (i = tp->snd_ssthresh) && rt->rt_rmx.rmx_ssthresh ||
  311.     i < (rt->rt_rmx.rmx_sendpipe / 2)) {
  312. /*
  313.  * convert the limit from user data bytes to
  314.  * packets then to packet data bytes.
  315.  */
  316. i = (i + tp->t_maxseg / 2) / tp->t_maxseg;
  317. if (i < 2)
  318. i = 2;
  319. i *= (u_long)(tp->t_maxseg + sizeof (struct tcpiphdr));
  320. if (rt->rt_rmx.rmx_ssthresh)
  321. rt->rt_rmx.rmx_ssthresh =
  322.     (rt->rt_rmx.rmx_ssthresh + i) / 2;
  323. else
  324. rt->rt_rmx.rmx_ssthresh = i;
  325. }
  326. }
  327. #endif /* RTV_RTT */
  328. /* free the reassembly queue, if any */
  329. t = tp->seg_next;
  330. while (t != (struct tcpiphdr *)tp) {
  331. t = (struct tcpiphdr *)t->ti_next;
  332. m = REASS_MBUF((struct tcpiphdr *)t->ti_prev);
  333. remque(t->ti_prev);
  334. m_freem(m);
  335. }
  336. if (tp->t_template)
  337. (void) m_free(dtom(tp->t_template));
  338. free(tp, M_PCB);
  339. inp->inp_ppcb = 0;
  340. soisdisconnected(so);
  341. /* clobber input pcb cache if we're closing the cached connection */
  342. if (inp == tcp_last_inpcb)
  343. tcp_last_inpcb = &tcb;
  344. in_pcbdetach(inp);
  345. tcpstat.tcps_closed++;
  346. return ((struct tcpcb *)0);
  347. }
  348. void
  349. tcp_drain()
  350. {
  351. }
  352. /*
  353.  * Notify a tcp user of an asynchronous error;
  354.  * store error as soft error, but wake up user
  355.  * (for now, won't do anything until can select for soft error).
  356.  */
  357. void
  358. tcp_notify(inp, error)
  359. struct inpcb *inp;
  360. int error;
  361. {
  362. register struct tcpcb *tp = (struct tcpcb *)inp->inp_ppcb;
  363. register struct socket *so = inp->inp_socket;
  364. /*
  365.  * Ignore some errors if we are hooked up.
  366.  * If connection hasn't completed, has retransmitted several times,
  367.  * and receives a second error, give up now.  This is better
  368.  * than waiting a long time to establish a connection that
  369.  * can never complete.
  370.  */
  371. if (tp->t_state == TCPS_ESTABLISHED &&
  372.      (error == EHOSTUNREACH || error == ENETUNREACH ||
  373.       error == EHOSTDOWN)) {
  374. return;
  375. } else if (tp->t_state < TCPS_ESTABLISHED && tp->t_rxtshift > 3 &&
  376.     tp->t_softerror)
  377. so->so_error = error;
  378. else 
  379. tp->t_softerror = error;
  380. wakeup((caddr_t) &so->so_timeo);
  381. sorwakeup(so);
  382. sowwakeup(so);
  383. }
  384. void
  385. tcp_ctlinput(cmd, sa, ip)
  386. int cmd;
  387. struct sockaddr *sa;
  388. register struct ip *ip;
  389. {
  390. register struct tcphdr *th;
  391. extern struct in_addr zeroin_addr;
  392. extern u_char inetctlerrmap[];
  393. void (*notify) __P((struct inpcb *, int)) = tcp_notify;
  394. if (cmd == PRC_QUENCH)
  395. notify = tcp_quench;
  396. else if (!PRC_IS_REDIRECT(cmd) &&
  397.  ((unsigned)cmd > PRC_NCMDS || inetctlerrmap[cmd] == 0))
  398. return;
  399. if (ip) {
  400. th = (struct tcphdr *)((caddr_t)ip + (ip->ip_hl << 2));
  401. in_pcbnotify(&tcb, sa, th->th_dport, ip->ip_src, th->th_sport,
  402. cmd, notify);
  403. } else
  404. in_pcbnotify(&tcb, sa, 0, zeroin_addr, 0, cmd, notify);
  405. }
  406. /*
  407.  * When a source quench is received, close congestion window
  408.  * to one segment.  We will gradually open it again as we proceed.
  409.  */
  410. void
  411. tcp_quench(inp, errno)
  412. struct inpcb *inp;
  413. int errno;
  414. {
  415. struct tcpcb *tp = intotcpcb(inp);
  416. if (tp)
  417. tp->snd_cwnd = tp->t_maxseg;
  418. }