a number of minor changes
[unix-history] / usr / src / sys / netinet / tcp_subr.c
CommitLineData
8e65fd66 1/* tcp_subr.c 4.12 82/01/13 */
ecaa4e6f
BJ
2
3#include "../h/param.h"
4#include "../h/systm.h"
5#include "../h/mbuf.h"
6#include "../h/socket.h"
7#include "../h/socketvar.h"
8#include "../h/protosw.h"
0974b45c
BJ
9#include "../net/in.h"
10#include "../net/in_pcb.h"
11#include "../net/in_systm.h"
ecaa4e6f 12#include "../net/if.h"
ecaa4e6f
BJ
13#include "../net/ip.h"
14#include "../net/ip_var.h"
15#include "../net/tcp.h"
ecaa4e6f 16#include "../net/tcp_fsm.h"
0974b45c
BJ
17#include "../net/tcp_seq.h"
18#include "../net/tcp_timer.h"
ecaa4e6f 19#include "../net/tcp_var.h"
0974b45c 20#include "../net/tcpip.h"
f1b2fa5b 21#include "../errno.h"
ecaa4e6f
BJ
22
23/*
24 * Tcp initialization
25 */
26tcp_init()
27{
28
0974b45c 29COUNT(TCP_INIT);
ecaa4e6f
BJ
30 tcp_iss = 1; /* wrong */
31 tcb.inp_next = tcb.inp_prev = &tcb;
405c9168
BJ
32 tcp_alpha = TCP_ALPHA;
33 tcp_beta = TCP_BETA;
ecaa4e6f
BJ
34}
35
36/*
37 * Create template to be used to send tcp packets on a connection.
38 * Call after host entry created, allocates an mbuf and fills
39 * in a skeletal tcp/ip header, minimizing the amount of work
40 * necessary when the connection is used.
41 */
42struct tcpiphdr *
43tcp_template(tp)
44 struct tcpcb *tp;
45{
46 register struct inpcb *inp = tp->t_inpcb;
47 register struct mbuf *m;
48 register struct tcpiphdr *n;
49
50COUNT(TCP_TEMPLATE);
51 m = m_get(1);
52 if (m == 0)
53 return (0);
54 m->m_off = MMAXOFF - sizeof (struct tcpiphdr);
55 m->m_len = sizeof (struct tcpiphdr);
56 n = mtod(m, struct tcpiphdr *);
57 n->ti_next = n->ti_prev = 0;
58 n->ti_x1 = 0;
59 n->ti_pr = IPPROTO_TCP;
60 n->ti_len = htons(sizeof (struct tcpiphdr) - sizeof (struct ip));
61 n->ti_src = inp->inp_laddr;
62 n->ti_dst = inp->inp_faddr;
63 n->ti_sport = inp->inp_lport;
64 n->ti_dport = inp->inp_fport;
65 n->ti_seq = 0;
0974b45c 66 n->ti_ack = 0;
ecaa4e6f
BJ
67 n->ti_x2 = 0;
68 n->ti_off = 5;
69 n->ti_flags = 0;
70 n->ti_win = 0;
71 n->ti_sum = 0;
72 n->ti_urp = 0;
73 return (n);
74}
75
76/*
405c9168
BJ
77 * Send a single message to the TCP at address specified by
78 * the given TCP/IP header. If flags==0, then we make a copy
79 * of the tcpiphdr at ti and send directly to the addressed host.
80 * This is used to force keep alive messages out using the TCP
81 * template for a connection tp->t_template. If flags are given
82 * then we send a message back to the TCP which originated the
83 * segment ti, and discard the mbuf containing it and any other
84 * attached mbufs.
85 *
86 * In any case the ack and sequence number of the transmitted
87 * segment are as specified by the parameters.
ecaa4e6f 88 */
8e65fd66
BJ
89tcp_respond(tp, ti, ack, seq, flags)
90 struct tcpcb *tp;
ecaa4e6f 91 register struct tcpiphdr *ti;
0974b45c 92 tcp_seq ack, seq;
ecaa4e6f
BJ
93 int flags;
94{
405c9168 95 struct mbuf *m;
8e65fd66 96 int win = 0;
ecaa4e6f 97
0974b45c 98COUNT(TCP_RESPOND);
8e65fd66
BJ
99 if (tp)
100 win = sbspace(&tp->t_inpcb->inp_socket->so_rcv);
405c9168
BJ
101 if (flags == 0) {
102 m = m_get(0);
103 if (m == 0)
104 return;
105 m->m_off = MMINOFF;
106 m->m_len = sizeof (struct tcpiphdr);
107 *mtod(m, struct tcpiphdr *) = *ti;
108 ti = mtod(m, struct tcpiphdr *);
109 flags = TH_ACK;
110 } else {
4aed14e3 111 m = dtom(ti);
405c9168
BJ
112 m_freem(m->m_next);
113 m->m_next = 0;
114 m->m_len = sizeof (struct tcpiphdr);
0974b45c 115#define xchg(a,b,type) { type t; t=a; a=b; b=t; }
405c9168
BJ
116 xchg(ti->ti_dst.s_addr, ti->ti_src.s_addr, u_long);
117 xchg(ti->ti_dport, ti->ti_sport, u_short);
ecaa4e6f 118#undef xchg
405c9168 119 }
0974b45c
BJ
120 ti->ti_next = ti->ti_prev = 0;
121 ti->ti_x1 = 0;
4aed14e3
BJ
122 ti->ti_len = sizeof (struct tcphdr);
123 ti->ti_seq = seq;
124 ti->ti_ack = ack;
125#if vax
126 ti->ti_len = htons(ti->ti_len);
127 ti->ti_seq = htonl(ti->ti_seq);
128 ti->ti_ack = htonl(ti->ti_ack);
129#endif
0974b45c
BJ
130 ti->ti_x2 = 0;
131 ti->ti_off = sizeof (struct tcphdr) >> 2;
ecaa4e6f 132 ti->ti_flags = flags;
8e65fd66
BJ
133 ti->ti_win = win;
134#if vax
135 ti->ti_win = htons(ti->ti_win);
136#endif
137 ti->ti_urp = 0;
0974b45c 138 ti->ti_sum = in_cksum(m, sizeof(struct tcpiphdr));
ecaa4e6f 139 ((struct ip *)ti)->ip_len = sizeof(struct tcpiphdr);
0974b45c 140 ((struct ip *)ti)->ip_ttl = TCP_TTL;
f1b2fa5b 141 (void) ip_output(m, (struct mbuf *)0);
ecaa4e6f 142}
a6503abf 143
0974b45c
BJ
144/*
145 * Create a new TCP control block, making an
146 * empty reassembly queue and hooking it to the argument
147 * protocol control block.
148 */
a6503abf
BJ
149struct tcpcb *
150tcp_newtcpcb(inp)
151 struct inpcb *inp;
152{
153 struct mbuf *m = m_getclr(0);
154 register struct tcpcb *tp;
155COUNT(TCP_NEWTCPCB);
156
157 if (m == 0)
158 return (0);
159 tp = mtod(m, struct tcpcb *);
a6503abf 160 tp->seg_next = tp->seg_prev = (struct tcpiphdr *)tp;
0974b45c 161 tp->t_maxseg = 1024;
a6503abf
BJ
162 tp->t_inpcb = inp;
163 inp->inp_ppcb = (caddr_t)tp;
164 return (tp);
165}
166
0974b45c
BJ
167/*
168 * Drop a TCP connection, reporting
169 * the specified error. If connection is synchronized,
170 * then send a RST to peer.
171 */
a6503abf
BJ
172tcp_drop(tp, errno)
173 struct tcpcb *tp;
174 int errno;
175{
176 struct socket *so = tp->t_inpcb->inp_socket;
177
178COUNT(TCP_DROP);
d3504cc0 179 if (TCPS_HAVERCVDSYN(tp->t_state)) {
a6503abf
BJ
180 tp->t_state = TCPS_CLOSED;
181 tcp_output(tp);
182 }
183 so->so_error = errno;
a6503abf
BJ
184 tcp_close(tp);
185}
186
0974b45c
BJ
187/*
188 * Close a TCP control block:
189 * discard all space held by the tcp
190 * discard internet protocol block
191 * wake up any sleepers
192 */
a6503abf
BJ
193tcp_close(tp)
194 register struct tcpcb *tp;
195{
196 register struct tcpiphdr *t;
364801f5
BJ
197 struct inpcb *inp = tp->t_inpcb;
198 struct socket *so = inp->inp_socket;
a6503abf
BJ
199
200COUNT(TCP_CLOSE);
a6503abf
BJ
201 t = tp->seg_next;
202 for (; t != (struct tcpiphdr *)tp; t = (struct tcpiphdr *)t->ti_next)
203 m_freem(dtom(t));
0974b45c 204 if (tp->t_template)
a6503abf 205 (void) m_free(dtom(tp->t_template));
0974b45c
BJ
206 if (tp->t_tcpopt)
207 (void) m_free(dtom(tp->t_tcpopt));
208 if (tp->t_ipopt)
209 (void) m_free(dtom(tp->t_ipopt));
a6503abf 210 (void) m_free(dtom(tp));
364801f5 211 inp->inp_ppcb = 0;
252398a6 212 in_pcbdetach(inp);
4aed14e3 213 soisdisconnected(so);
a6503abf
BJ
214}
215
a6503abf
BJ
216tcp_drain()
217{
a6503abf
BJ
218
219COUNT(TCP_DRAIN);
220}
221
222tcp_ctlinput(m)
223 struct mbuf *m;
224{
225
226COUNT(TCP_CTLINPUT);
227 m_freem(m);
228}