blob: 317dc07a06032752d8e9c545e2f28364dfa7c796 [file] [log] [blame]
bellardf0cbd3e2004-04-22 00:10:48 +00001/*
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.
aliguori2f5f8992009-01-26 19:37:41 +000013 * 3. Neither the name of the University nor the names of its contributors
bellardf0cbd3e2004-04-22 00:10:48 +000014 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * @(#)tcp_subr.c 8.1 (Berkeley) 6/10/93
30 * tcp_subr.c,v 1.5 1994/10/08 22:39:58 phk Exp
31 */
32
33/*
34 * Changes and additions relating to SLiRP
35 * Copyright (c) 1995 Danny Gasparovski.
ths5fafdf22007-09-16 21:08:06 +000036 *
37 * Please read the file COPYRIGHT for the
bellardf0cbd3e2004-04-22 00:10:48 +000038 * terms and conditions of the copyright.
39 */
40
bellardf0cbd3e2004-04-22 00:10:48 +000041#include <slirp.h>
42
43/* patchable/settable parameters for tcp */
blueswir19634d902007-10-26 19:01:16 +000044/* Don't do rfc1323 performance enhancements */
45#define TCP_DO_RFC1323 0
bellardf0cbd3e2004-04-22 00:10:48 +000046
47/*
48 * Tcp initialization
49 */
50void
Jan Kiszka460fec62009-06-24 14:42:31 +020051tcp_init(Slirp *slirp)
bellardf0cbd3e2004-04-22 00:10:48 +000052{
Jan Kiszka460fec62009-06-24 14:42:31 +020053 slirp->tcp_iss = 1; /* wrong */
54 slirp->tcb.so_next = slirp->tcb.so_prev = &slirp->tcb;
55 slirp->tcp_last_so = &slirp->tcb;
bellardf0cbd3e2004-04-22 00:10:48 +000056}
57
Jan Kiszkaa68adc22012-02-29 19:14:23 +010058void tcp_cleanup(Slirp *slirp)
59{
60 while (slirp->tcb.so_next != &slirp->tcb) {
61 tcp_close(sototcpcb(slirp->tcb.so_next));
62 }
63}
64
bellardf0cbd3e2004-04-22 00:10:48 +000065/*
66 * Create template to be used to send tcp packets on a connection.
67 * Call after host entry created, fills
68 * in a skeletal tcp/ip header, minimizing the amount of work
69 * necessary when the connection is used.
70 */
bellardf0cbd3e2004-04-22 00:10:48 +000071void
blueswir1511d2b12009-03-07 15:32:56 +000072tcp_template(struct tcpcb *tp)
bellardf0cbd3e2004-04-22 00:10:48 +000073{
74 struct socket *so = tp->t_socket;
75 register struct tcpiphdr *n = &tp->t_template;
76
blueswir1429d0a32009-01-13 19:48:42 +000077 n->ti_mbuf = NULL;
bellardf0cbd3e2004-04-22 00:10:48 +000078 n->ti_x1 = 0;
79 n->ti_pr = IPPROTO_TCP;
80 n->ti_len = htons(sizeof (struct tcpiphdr) - sizeof (struct ip));
81 n->ti_src = so->so_faddr;
82 n->ti_dst = so->so_laddr;
83 n->ti_sport = so->so_fport;
84 n->ti_dport = so->so_lport;
ths5fafdf22007-09-16 21:08:06 +000085
bellardf0cbd3e2004-04-22 00:10:48 +000086 n->ti_seq = 0;
87 n->ti_ack = 0;
88 n->ti_x2 = 0;
89 n->ti_off = 5;
90 n->ti_flags = 0;
91 n->ti_win = 0;
92 n->ti_sum = 0;
93 n->ti_urp = 0;
94}
95
96/*
97 * Send a single message to the TCP at address specified by
98 * the given TCP/IP header. If m == 0, then we make a copy
99 * of the tcpiphdr at ti and send directly to the addressed host.
100 * This is used to force keep alive messages out using the TCP
101 * template for a connection tp->t_template. If flags are given
102 * then we send a message back to the TCP which originated the
103 * segment ti, and discard the mbuf containing it and any other
104 * attached mbufs.
105 *
106 * In any case the ack and sequence number of the transmitted
107 * segment are as specified by the parameters.
108 */
109void
blueswir1511d2b12009-03-07 15:32:56 +0000110tcp_respond(struct tcpcb *tp, struct tcpiphdr *ti, struct mbuf *m,
111 tcp_seq ack, tcp_seq seq, int flags)
bellardf0cbd3e2004-04-22 00:10:48 +0000112{
113 register int tlen;
114 int win = 0;
115
116 DEBUG_CALL("tcp_respond");
Stefan Weilc4d12a72012-09-04 23:20:35 +0200117 DEBUG_ARG("tp = %p", tp);
118 DEBUG_ARG("ti = %p", ti);
119 DEBUG_ARG("m = %p", m);
bellardf0cbd3e2004-04-22 00:10:48 +0000120 DEBUG_ARG("ack = %u", ack);
121 DEBUG_ARG("seq = %u", seq);
122 DEBUG_ARG("flags = %x", flags);
ths5fafdf22007-09-16 21:08:06 +0000123
bellardf0cbd3e2004-04-22 00:10:48 +0000124 if (tp)
125 win = sbspace(&tp->t_socket->so_rcv);
blueswir1511d2b12009-03-07 15:32:56 +0000126 if (m == NULL) {
Stefan Weile56afbc52012-09-04 23:20:36 +0200127 if (!tp || (m = m_get(tp->t_socket->slirp)) == NULL)
bellardf0cbd3e2004-04-22 00:10:48 +0000128 return;
bellardf0cbd3e2004-04-22 00:10:48 +0000129 tlen = 0;
blueswir19634d902007-10-26 19:01:16 +0000130 m->m_data += IF_MAXLINKHDR;
bellardf0cbd3e2004-04-22 00:10:48 +0000131 *mtod(m, struct tcpiphdr *) = *ti;
132 ti = mtod(m, struct tcpiphdr *);
133 flags = TH_ACK;
134 } else {
ths5fafdf22007-09-16 21:08:06 +0000135 /*
bellardf0cbd3e2004-04-22 00:10:48 +0000136 * ti points into m so the next line is just making
137 * the mbuf point to ti
138 */
139 m->m_data = (caddr_t)ti;
ths3b46e622007-09-17 08:09:54 +0000140
bellardf0cbd3e2004-04-22 00:10:48 +0000141 m->m_len = sizeof (struct tcpiphdr);
142 tlen = 0;
143#define xchg(a,b,type) { type t; t=a; a=b; b=t; }
Stefan Weilb6dce922010-07-22 22:15:23 +0200144 xchg(ti->ti_dst.s_addr, ti->ti_src.s_addr, uint32_t);
145 xchg(ti->ti_dport, ti->ti_sport, uint16_t);
bellardf0cbd3e2004-04-22 00:10:48 +0000146#undef xchg
147 }
148 ti->ti_len = htons((u_short)(sizeof (struct tcphdr) + tlen));
149 tlen += sizeof (struct tcpiphdr);
150 m->m_len = tlen;
151
blueswir1511d2b12009-03-07 15:32:56 +0000152 ti->ti_mbuf = NULL;
bellardf0cbd3e2004-04-22 00:10:48 +0000153 ti->ti_x1 = 0;
154 ti->ti_seq = htonl(seq);
155 ti->ti_ack = htonl(ack);
156 ti->ti_x2 = 0;
157 ti->ti_off = sizeof (struct tcphdr) >> 2;
158 ti->ti_flags = flags;
159 if (tp)
Stefan Weilb6dce922010-07-22 22:15:23 +0200160 ti->ti_win = htons((uint16_t) (win >> tp->rcv_scale));
bellardf0cbd3e2004-04-22 00:10:48 +0000161 else
Stefan Weilb6dce922010-07-22 22:15:23 +0200162 ti->ti_win = htons((uint16_t)win);
bellardf0cbd3e2004-04-22 00:10:48 +0000163 ti->ti_urp = 0;
164 ti->ti_sum = 0;
165 ti->ti_sum = cksum(m, tlen);
166 ((struct ip *)ti)->ip_len = tlen;
167
ths5fafdf22007-09-16 21:08:06 +0000168 if(flags & TH_RST)
bellardf0cbd3e2004-04-22 00:10:48 +0000169 ((struct ip *)ti)->ip_ttl = MAXTTL;
ths5fafdf22007-09-16 21:08:06 +0000170 else
blueswir19634d902007-10-26 19:01:16 +0000171 ((struct ip *)ti)->ip_ttl = IPDEFTTL;
ths5fafdf22007-09-16 21:08:06 +0000172
bellardf0cbd3e2004-04-22 00:10:48 +0000173 (void) ip_output((struct socket *)0, m);
174}
175
176/*
177 * Create a new TCP control block, making an
178 * empty reassembly queue and hooking it to the argument
179 * protocol control block.
180 */
181struct tcpcb *
blueswir1511d2b12009-03-07 15:32:56 +0000182tcp_newtcpcb(struct socket *so)
bellardf0cbd3e2004-04-22 00:10:48 +0000183{
184 register struct tcpcb *tp;
ths5fafdf22007-09-16 21:08:06 +0000185
bellardf0cbd3e2004-04-22 00:10:48 +0000186 tp = (struct tcpcb *)malloc(sizeof(*tp));
187 if (tp == NULL)
188 return ((struct tcpcb *)0);
ths5fafdf22007-09-16 21:08:06 +0000189
bellardf0cbd3e2004-04-22 00:10:48 +0000190 memset((char *) tp, 0, sizeof(struct tcpcb));
blueswir1429d0a32009-01-13 19:48:42 +0000191 tp->seg_next = tp->seg_prev = (struct tcpiphdr*)tp;
blueswir19634d902007-10-26 19:01:16 +0000192 tp->t_maxseg = TCP_MSS;
ths5fafdf22007-09-16 21:08:06 +0000193
blueswir19634d902007-10-26 19:01:16 +0000194 tp->t_flags = TCP_DO_RFC1323 ? (TF_REQ_SCALE|TF_REQ_TSTMP) : 0;
bellardf0cbd3e2004-04-22 00:10:48 +0000195 tp->t_socket = so;
ths5fafdf22007-09-16 21:08:06 +0000196
bellardf0cbd3e2004-04-22 00:10:48 +0000197 /*
198 * Init srtt to TCPTV_SRTTBASE (0), so we can tell that we have no
199 * rtt estimate. Set rttvar so that srtt + 2 * rttvar gives
200 * reasonable initial retransmit time.
201 */
202 tp->t_srtt = TCPTV_SRTTBASE;
blueswir19634d902007-10-26 19:01:16 +0000203 tp->t_rttvar = TCPTV_SRTTDFLT << 2;
bellardf0cbd3e2004-04-22 00:10:48 +0000204 tp->t_rttmin = TCPTV_MIN;
205
ths5fafdf22007-09-16 21:08:06 +0000206 TCPT_RANGESET(tp->t_rxtcur,
bellardf0cbd3e2004-04-22 00:10:48 +0000207 ((TCPTV_SRTTBASE >> 2) + (TCPTV_SRTTDFLT << 2)) >> 1,
208 TCPTV_MIN, TCPTV_REXMTMAX);
209
210 tp->snd_cwnd = TCP_MAXWIN << TCP_MAX_WINSHIFT;
211 tp->snd_ssthresh = TCP_MAXWIN << TCP_MAX_WINSHIFT;
212 tp->t_state = TCPS_CLOSED;
ths5fafdf22007-09-16 21:08:06 +0000213
bellardf0cbd3e2004-04-22 00:10:48 +0000214 so->so_tcpcb = tp;
215
216 return (tp);
217}
218
219/*
220 * Drop a TCP connection, reporting
221 * the specified error. If connection is synchronized,
222 * then send a RST to peer.
223 */
ths5fafdf22007-09-16 21:08:06 +0000224struct tcpcb *tcp_drop(struct tcpcb *tp, int err)
bellardf0cbd3e2004-04-22 00:10:48 +0000225{
bellardf0cbd3e2004-04-22 00:10:48 +0000226 DEBUG_CALL("tcp_drop");
227 DEBUG_ARG("tp = %lx", (long)tp);
228 DEBUG_ARG("errno = %d", errno);
ths5fafdf22007-09-16 21:08:06 +0000229
bellardf0cbd3e2004-04-22 00:10:48 +0000230 if (TCPS_HAVERCVDSYN(tp->t_state)) {
231 tp->t_state = TCPS_CLOSED;
232 (void) tcp_output(tp);
Jan Kiszka0fe6a7f2009-06-24 14:42:29 +0200233 }
bellardf0cbd3e2004-04-22 00:10:48 +0000234 return (tcp_close(tp));
235}
236
237/*
238 * Close a TCP control block:
239 * discard all space held by the tcp
240 * discard internet protocol block
241 * wake up any sleepers
242 */
243struct tcpcb *
blueswir1511d2b12009-03-07 15:32:56 +0000244tcp_close(struct tcpcb *tp)
bellardf0cbd3e2004-04-22 00:10:48 +0000245{
246 register struct tcpiphdr *t;
247 struct socket *so = tp->t_socket;
Jan Kiszka460fec62009-06-24 14:42:31 +0200248 Slirp *slirp = so->slirp;
bellardf0cbd3e2004-04-22 00:10:48 +0000249 register struct mbuf *m;
250
251 DEBUG_CALL("tcp_close");
252 DEBUG_ARG("tp = %lx", (long )tp);
ths5fafdf22007-09-16 21:08:06 +0000253
bellardf0cbd3e2004-04-22 00:10:48 +0000254 /* free the reassembly queue, if any */
blueswir1429d0a32009-01-13 19:48:42 +0000255 t = tcpfrag_list_first(tp);
256 while (!tcpfrag_list_end(t, tp)) {
257 t = tcpiphdr_next(t);
258 m = tcpiphdr_prev(t)->ti_mbuf;
259 remque(tcpiphdr2qlink(tcpiphdr_prev(t)));
Jan Kiszka3acccfc2011-07-20 12:20:16 +0200260 m_free(m);
bellardf0cbd3e2004-04-22 00:10:48 +0000261 }
bellardf0cbd3e2004-04-22 00:10:48 +0000262 free(tp);
blueswir1511d2b12009-03-07 15:32:56 +0000263 so->so_tcpcb = NULL;
bellardf0cbd3e2004-04-22 00:10:48 +0000264 /* clobber input socket cache if we're closing the cached connection */
Jan Kiszka460fec62009-06-24 14:42:31 +0200265 if (so == slirp->tcp_last_so)
266 slirp->tcp_last_so = &slirp->tcb;
bellard379ff532004-07-12 22:33:07 +0000267 closesocket(so->s);
bellardf0cbd3e2004-04-22 00:10:48 +0000268 sbfree(&so->so_rcv);
269 sbfree(&so->so_snd);
270 sofree(so);
bellardf0cbd3e2004-04-22 00:10:48 +0000271 return ((struct tcpcb *)0);
272}
273
bellardf0cbd3e2004-04-22 00:10:48 +0000274/*
275 * TCP protocol interface to socket abstraction.
276 */
277
278/*
279 * User issued close, and wish to trail through shutdown states:
280 * if never received SYN, just forget it. If got a SYN from peer,
281 * but haven't sent FIN, then go to FIN_WAIT_1 state to send peer a FIN.
282 * If already got a FIN from peer, then almost done; go to LAST_ACK
283 * state. In all other cases, have already sent FIN to peer (e.g.
284 * after PRU_SHUTDOWN), and just have to play tedious game waiting
285 * for peer to send FIN or not respond to keep-alives, etc.
286 * We can let the user exit from the close as soon as the FIN is acked.
287 */
288void
blueswir1511d2b12009-03-07 15:32:56 +0000289tcp_sockclosed(struct tcpcb *tp)
bellardf0cbd3e2004-04-22 00:10:48 +0000290{
291
292 DEBUG_CALL("tcp_sockclosed");
293 DEBUG_ARG("tp = %lx", (long)tp);
ths5fafdf22007-09-16 21:08:06 +0000294
bellardf0cbd3e2004-04-22 00:10:48 +0000295 switch (tp->t_state) {
296
297 case TCPS_CLOSED:
298 case TCPS_LISTEN:
299 case TCPS_SYN_SENT:
300 tp->t_state = TCPS_CLOSED;
301 tp = tcp_close(tp);
302 break;
303
304 case TCPS_SYN_RECEIVED:
305 case TCPS_ESTABLISHED:
306 tp->t_state = TCPS_FIN_WAIT_1;
307 break;
308
309 case TCPS_CLOSE_WAIT:
310 tp->t_state = TCPS_LAST_ACK;
311 break;
312 }
bellardf0cbd3e2004-04-22 00:10:48 +0000313 if (tp)
314 tcp_output(tp);
315}
316
ths5fafdf22007-09-16 21:08:06 +0000317/*
bellardf0cbd3e2004-04-22 00:10:48 +0000318 * Connect to a host on the Internet
319 * Called by tcp_input
320 * Only do a connect, the tcp fields will be set in tcp_input
321 * return 0 if there's a result of the connect,
322 * else return -1 means we're still connecting
323 * The return value is almost always -1 since the socket is
ths5fafdf22007-09-16 21:08:06 +0000324 * nonblocking. Connect returns after the SYN is sent, and does
bellardf0cbd3e2004-04-22 00:10:48 +0000325 * not wait for ACK+SYN.
326 */
blueswir1511d2b12009-03-07 15:32:56 +0000327int tcp_fconnect(struct socket *so)
bellardf0cbd3e2004-04-22 00:10:48 +0000328{
Jan Kiszka460fec62009-06-24 14:42:31 +0200329 Slirp *slirp = so->slirp;
bellardf0cbd3e2004-04-22 00:10:48 +0000330 int ret=0;
ths3b46e622007-09-17 08:09:54 +0000331
bellardf0cbd3e2004-04-22 00:10:48 +0000332 DEBUG_CALL("tcp_fconnect");
333 DEBUG_ARG("so = %lx", (long )so);
334
Kevin Wolf40ff6d72009-12-02 12:24:42 +0100335 if( (ret = so->s = qemu_socket(AF_INET,SOCK_STREAM,0)) >= 0) {
bellardf0cbd3e2004-04-22 00:10:48 +0000336 int opt, s=so->s;
337 struct sockaddr_in addr;
338
Paolo Bonzini1c5970a2012-03-22 01:02:52 +0100339 socket_set_nonblock(s);
bellardf0cbd3e2004-04-22 00:10:48 +0000340 opt = 1;
341 setsockopt(s,SOL_SOCKET,SO_REUSEADDR,(char *)&opt,sizeof(opt ));
342 opt = 1;
343 setsockopt(s,SOL_SOCKET,SO_OOBINLINE,(char *)&opt,sizeof(opt ));
ths3b46e622007-09-17 08:09:54 +0000344
bellardf0cbd3e2004-04-22 00:10:48 +0000345 addr.sin_family = AF_INET;
Jan Kiszka460fec62009-06-24 14:42:31 +0200346 if ((so->so_faddr.s_addr & slirp->vnetwork_mask.s_addr) ==
347 slirp->vnetwork_addr.s_addr) {
bellardf0cbd3e2004-04-22 00:10:48 +0000348 /* It's an alias */
Jan Kiszka460fec62009-06-24 14:42:31 +0200349 if (so->so_faddr.s_addr == slirp->vnameserver_addr.s_addr) {
Ed Swierkdf7a86e2009-08-20 19:00:31 -0700350 if (get_dns_addr(&addr.sin_addr) < 0)
351 addr.sin_addr = loopback_addr;
Jan Kiszkaa13a4122009-06-24 14:42:28 +0200352 } else {
bellardf0cbd3e2004-04-22 00:10:48 +0000353 addr.sin_addr = loopback_addr;
bellardf0cbd3e2004-04-22 00:10:48 +0000354 }
355 } else
356 addr.sin_addr = so->so_faddr;
357 addr.sin_port = so->so_fport;
ths3b46e622007-09-17 08:09:54 +0000358
bellardf0cbd3e2004-04-22 00:10:48 +0000359 DEBUG_MISC((dfd, " connect()ing, addr.sin_port=%d, "
ths5fafdf22007-09-16 21:08:06 +0000360 "addr.sin_addr.s_addr=%.16s\n",
bellardf0cbd3e2004-04-22 00:10:48 +0000361 ntohs(addr.sin_port), inet_ntoa(addr.sin_addr)));
362 /* We don't care what port we get */
363 ret = connect(s,(struct sockaddr *)&addr,sizeof (addr));
ths3b46e622007-09-17 08:09:54 +0000364
bellardf0cbd3e2004-04-22 00:10:48 +0000365 /*
366 * If it's not in progress, it failed, so we just return 0,
367 * without clearing SS_NOFDREF
368 */
369 soisfconnecting(so);
370 }
371
372 return(ret);
373}
374
375/*
376 * Accept the socket and connect to the local-host
ths5fafdf22007-09-16 21:08:06 +0000377 *
bellardf0cbd3e2004-04-22 00:10:48 +0000378 * We have a problem. The correct thing to do would be
379 * to first connect to the local-host, and only if the
380 * connection is accepted, then do an accept() here.
ths5fafdf22007-09-16 21:08:06 +0000381 * But, a) we need to know who's trying to connect
bellardf0cbd3e2004-04-22 00:10:48 +0000382 * to the socket to be able to SYN the local-host, and
383 * b) we are already connected to the foreign host by
384 * the time it gets to accept(), so... We simply accept
385 * here and SYN the local-host.
ths5fafdf22007-09-16 21:08:06 +0000386 */
MORITA Kazutaka4ef7b892013-02-22 12:39:49 +0900387void tcp_connect(struct socket *inso)
bellardf0cbd3e2004-04-22 00:10:48 +0000388{
MORITA Kazutaka4ef7b892013-02-22 12:39:49 +0900389 Slirp *slirp = inso->slirp;
390 struct socket *so;
391 struct sockaddr_in addr;
392 socklen_t addrlen = sizeof(struct sockaddr_in);
393 struct tcpcb *tp;
394 int s, opt;
bellardf0cbd3e2004-04-22 00:10:48 +0000395
MORITA Kazutaka4ef7b892013-02-22 12:39:49 +0900396 DEBUG_CALL("tcp_connect");
397 DEBUG_ARG("inso = %lx", (long)inso);
ths5fafdf22007-09-16 21:08:06 +0000398
MORITA Kazutaka4ef7b892013-02-22 12:39:49 +0900399 /*
400 * If it's an SS_ACCEPTONCE socket, no need to socreate()
401 * another socket, just use the accept() socket.
402 */
403 if (inso->so_state & SS_FACCEPTONCE) {
404 /* FACCEPTONCE already have a tcpcb */
405 so = inso;
406 } else {
407 so = socreate(slirp);
408 if (so == NULL) {
409 /* If it failed, get rid of the pending connection */
410 closesocket(accept(inso->s, (struct sockaddr *)&addr, &addrlen));
411 return;
Anders Waldenborg648cd332012-07-13 22:54:17 +0200412 }
MORITA Kazutaka4ef7b892013-02-22 12:39:49 +0900413 if (tcp_attach(so) < 0) {
414 free(so); /* NOT sofree */
415 return;
416 }
417 so->so_laddr = inso->so_laddr;
418 so->so_lport = inso->so_lport;
419 }
ths5fafdf22007-09-16 21:08:06 +0000420
MORITA Kazutaka4ef7b892013-02-22 12:39:49 +0900421 tcp_mss(sototcpcb(so), 0);
ths5fafdf22007-09-16 21:08:06 +0000422
MORITA Kazutaka4ef7b892013-02-22 12:39:49 +0900423 s = accept(inso->s, (struct sockaddr *)&addr, &addrlen);
424 if (s < 0) {
425 tcp_close(sototcpcb(so)); /* This will sofree() as well */
426 return;
427 }
428 socket_set_nonblock(s);
429 opt = 1;
430 setsockopt(s, SOL_SOCKET, SO_REUSEADDR, (char *)&opt, sizeof(int));
431 opt = 1;
432 setsockopt(s, SOL_SOCKET, SO_OOBINLINE, (char *)&opt, sizeof(int));
433 opt = 1;
434 setsockopt(s, IPPROTO_TCP, TCP_NODELAY, (char *)&opt, sizeof(int));
bellardf0cbd3e2004-04-22 00:10:48 +0000435
MORITA Kazutaka4ef7b892013-02-22 12:39:49 +0900436 so->so_fport = addr.sin_port;
437 so->so_faddr = addr.sin_addr;
438 /* Translate connections from localhost to the real hostname */
439 if (so->so_faddr.s_addr == 0 ||
440 (so->so_faddr.s_addr & loopback_mask) ==
441 (loopback_addr.s_addr & loopback_mask)) {
442 so->so_faddr = slirp->vhost_addr;
443 }
ths5fafdf22007-09-16 21:08:06 +0000444
MORITA Kazutaka4ef7b892013-02-22 12:39:49 +0900445 /* Close the accept() socket, set right state */
446 if (inso->so_state & SS_FACCEPTONCE) {
447 /* If we only accept once, close the accept() socket */
448 closesocket(so->s);
449
450 /* Don't select it yet, even though we have an FD */
451 /* if it's not FACCEPTONCE, it's already NOFDREF */
452 so->so_state = SS_NOFDREF;
453 }
454 so->s = s;
455 so->so_state |= SS_INCOMING;
456
457 so->so_iptos = tcp_tos(so);
458 tp = sototcpcb(so);
459
460 tcp_template(tp);
461
462 tp->t_state = TCPS_SYN_SENT;
463 tp->t_timer[TCPT_KEEP] = TCPTV_KEEP_INIT;
464 tp->iss = slirp->tcp_iss;
465 slirp->tcp_iss += TCP_ISSINCR/2;
466 tcp_sendseqinit(tp);
467 tcp_output(tp);
bellardf0cbd3e2004-04-22 00:10:48 +0000468}
469
470/*
471 * Attach a TCPCB to a socket.
472 */
473int
blueswir1511d2b12009-03-07 15:32:56 +0000474tcp_attach(struct socket *so)
bellardf0cbd3e2004-04-22 00:10:48 +0000475{
476 if ((so->so_tcpcb = tcp_newtcpcb(so)) == NULL)
477 return -1;
ths5fafdf22007-09-16 21:08:06 +0000478
Jan Kiszka460fec62009-06-24 14:42:31 +0200479 insque(so, &so->slirp->tcb);
bellardf0cbd3e2004-04-22 00:10:48 +0000480
481 return 0;
482}
483
484/*
485 * Set the socket's type of service field
486 */
blueswir19634d902007-10-26 19:01:16 +0000487static const struct tos_t tcptos[] = {
bellardf0cbd3e2004-04-22 00:10:48 +0000488 {0, 20, IPTOS_THROUGHPUT, 0}, /* ftp data */
489 {21, 21, IPTOS_LOWDELAY, EMU_FTP}, /* ftp control */
490 {0, 23, IPTOS_LOWDELAY, 0}, /* telnet */
491 {0, 80, IPTOS_THROUGHPUT, 0}, /* WWW */
492 {0, 513, IPTOS_LOWDELAY, EMU_RLOGIN|EMU_NOCONNECT}, /* rlogin */
493 {0, 514, IPTOS_LOWDELAY, EMU_RSH|EMU_NOCONNECT}, /* shell */
494 {0, 544, IPTOS_LOWDELAY, EMU_KSH}, /* kshell */
495 {0, 543, IPTOS_LOWDELAY, 0}, /* klogin */
496 {0, 6667, IPTOS_THROUGHPUT, EMU_IRC}, /* IRC */
497 {0, 6668, IPTOS_THROUGHPUT, EMU_IRC}, /* IRC undernet */
498 {0, 7070, IPTOS_LOWDELAY, EMU_REALAUDIO }, /* RealAudio control */
499 {0, 113, IPTOS_LOWDELAY, EMU_IDENT }, /* identd protocol */
500 {0, 0, 0, 0}
501};
502
Jan Kiszka0d62c4c2009-06-24 14:42:29 +0200503static struct emu_t *tcpemu = NULL;
ths3b46e622007-09-17 08:09:54 +0000504
bellardf0cbd3e2004-04-22 00:10:48 +0000505/*
506 * Return TOS according to the above table
507 */
Stefan Weilb6dce922010-07-22 22:15:23 +0200508uint8_t
blueswir1511d2b12009-03-07 15:32:56 +0000509tcp_tos(struct socket *so)
bellardf0cbd3e2004-04-22 00:10:48 +0000510{
511 int i = 0;
512 struct emu_t *emup;
ths5fafdf22007-09-16 21:08:06 +0000513
bellardf0cbd3e2004-04-22 00:10:48 +0000514 while(tcptos[i].tos) {
515 if ((tcptos[i].fport && (ntohs(so->so_fport) == tcptos[i].fport)) ||
516 (tcptos[i].lport && (ntohs(so->so_lport) == tcptos[i].lport))) {
517 so->so_emu = tcptos[i].emu;
518 return tcptos[i].tos;
519 }
520 i++;
521 }
ths5fafdf22007-09-16 21:08:06 +0000522
bellardf0cbd3e2004-04-22 00:10:48 +0000523 /* Nope, lets see if there's a user-added one */
524 for (emup = tcpemu; emup; emup = emup->next) {
525 if ((emup->fport && (ntohs(so->so_fport) == emup->fport)) ||
526 (emup->lport && (ntohs(so->so_lport) == emup->lport))) {
527 so->so_emu = emup->emu;
528 return emup->tos;
529 }
530 }
ths5fafdf22007-09-16 21:08:06 +0000531
bellardf0cbd3e2004-04-22 00:10:48 +0000532 return 0;
533}
534
bellardf0cbd3e2004-04-22 00:10:48 +0000535/*
536 * Emulate programs that try and connect to us
537 * This includes ftp (the data connection is
538 * initiated by the server) and IRC (DCC CHAT and
539 * DCC SEND) for now
ths5fafdf22007-09-16 21:08:06 +0000540 *
bellardf0cbd3e2004-04-22 00:10:48 +0000541 * NOTE: It's possible to crash SLiRP by sending it
542 * unstandard strings to emulate... if this is a problem,
543 * more checks are needed here
544 *
545 * XXX Assumes the whole command came in one packet
ths3b46e622007-09-17 08:09:54 +0000546 *
bellardf0cbd3e2004-04-22 00:10:48 +0000547 * XXX Some ftp clients will have their TOS set to
548 * LOWDELAY and so Nagel will kick in. Because of this,
549 * we'll get the first letter, followed by the rest, so
550 * we simply scan for ORT instead of PORT...
551 * DCC doesn't have this problem because there's other stuff
552 * in the packet before the DCC command.
ths5fafdf22007-09-16 21:08:06 +0000553 *
554 * Return 1 if the mbuf m is still valid and should be
bellardf0cbd3e2004-04-22 00:10:48 +0000555 * sbappend()ed
ths5fafdf22007-09-16 21:08:06 +0000556 *
bellardf0cbd3e2004-04-22 00:10:48 +0000557 * NOTE: if you return 0 you MUST m_free() the mbuf!
558 */
559int
blueswir1511d2b12009-03-07 15:32:56 +0000560tcp_emu(struct socket *so, struct mbuf *m)
bellardf0cbd3e2004-04-22 00:10:48 +0000561{
Jan Kiszka460fec62009-06-24 14:42:31 +0200562 Slirp *slirp = so->slirp;
bellardf0cbd3e2004-04-22 00:10:48 +0000563 u_int n1, n2, n3, n4, n5, n6;
blueswir1363a37d2008-08-21 17:58:08 +0000564 char buff[257];
Stefan Weilb6dce922010-07-22 22:15:23 +0200565 uint32_t laddr;
bellardf0cbd3e2004-04-22 00:10:48 +0000566 u_int lport;
567 char *bptr;
ths5fafdf22007-09-16 21:08:06 +0000568
bellardf0cbd3e2004-04-22 00:10:48 +0000569 DEBUG_CALL("tcp_emu");
570 DEBUG_ARG("so = %lx", (long)so);
571 DEBUG_ARG("m = %lx", (long)m);
ths5fafdf22007-09-16 21:08:06 +0000572
bellardf0cbd3e2004-04-22 00:10:48 +0000573 switch(so->so_emu) {
574 int x, i;
ths3b46e622007-09-17 08:09:54 +0000575
bellardf0cbd3e2004-04-22 00:10:48 +0000576 case EMU_IDENT:
577 /*
578 * Identification protocol as per rfc-1413
579 */
ths3b46e622007-09-17 08:09:54 +0000580
bellardf0cbd3e2004-04-22 00:10:48 +0000581 {
582 struct socket *tmpso;
583 struct sockaddr_in addr;
blueswir1b55266b2008-09-20 08:07:15 +0000584 socklen_t addrlen = sizeof(struct sockaddr_in);
bellardf0cbd3e2004-04-22 00:10:48 +0000585 struct sbuf *so_rcv = &so->so_rcv;
ths3b46e622007-09-17 08:09:54 +0000586
bellardf0cbd3e2004-04-22 00:10:48 +0000587 memcpy(so_rcv->sb_wptr, m->m_data, m->m_len);
588 so_rcv->sb_wptr += m->m_len;
589 so_rcv->sb_rptr += m->m_len;
590 m->m_data[m->m_len] = 0; /* NULL terminate */
591 if (strchr(m->m_data, '\r') || strchr(m->m_data, '\n')) {
blueswir19634d902007-10-26 19:01:16 +0000592 if (sscanf(so_rcv->sb_data, "%u%*[ ,]%u", &n1, &n2) == 2) {
bellardf0cbd3e2004-04-22 00:10:48 +0000593 HTONS(n1);
594 HTONS(n2);
595 /* n2 is the one on our host */
Jan Kiszka460fec62009-06-24 14:42:31 +0200596 for (tmpso = slirp->tcb.so_next;
597 tmpso != &slirp->tcb;
598 tmpso = tmpso->so_next) {
bellardf0cbd3e2004-04-22 00:10:48 +0000599 if (tmpso->so_laddr.s_addr == so->so_laddr.s_addr &&
600 tmpso->so_lport == n2 &&
601 tmpso->so_faddr.s_addr == so->so_faddr.s_addr &&
602 tmpso->so_fport == n1) {
603 if (getsockname(tmpso->s,
604 (struct sockaddr *)&addr, &addrlen) == 0)
605 n2 = ntohs(addr.sin_port);
606 break;
607 }
608 }
609 }
blueswir1363a37d2008-08-21 17:58:08 +0000610 so_rcv->sb_cc = snprintf(so_rcv->sb_data,
611 so_rcv->sb_datalen,
612 "%d,%d\r\n", n1, n2);
bellardf0cbd3e2004-04-22 00:10:48 +0000613 so_rcv->sb_rptr = so_rcv->sb_data;
614 so_rcv->sb_wptr = so_rcv->sb_data + so_rcv->sb_cc;
615 }
616 m_free(m);
617 return 0;
618 }
ths3b46e622007-09-17 08:09:54 +0000619
bellardf0cbd3e2004-04-22 00:10:48 +0000620 case EMU_FTP: /* ftp */
blueswir1511d2b12009-03-07 15:32:56 +0000621 *(m->m_data+m->m_len) = 0; /* NUL terminate for strstr */
bellardf0cbd3e2004-04-22 00:10:48 +0000622 if ((bptr = (char *)strstr(m->m_data, "ORT")) != NULL) {
623 /*
624 * Need to emulate the PORT command
ths3b46e622007-09-17 08:09:54 +0000625 */
blueswir19634d902007-10-26 19:01:16 +0000626 x = sscanf(bptr, "ORT %u,%u,%u,%u,%u,%u\r\n%256[^\177]",
bellardf0cbd3e2004-04-22 00:10:48 +0000627 &n1, &n2, &n3, &n4, &n5, &n6, buff);
628 if (x < 6)
629 return 1;
ths3b46e622007-09-17 08:09:54 +0000630
bellardf0cbd3e2004-04-22 00:10:48 +0000631 laddr = htonl((n1 << 24) | (n2 << 16) | (n3 << 8) | (n4));
632 lport = htons((n5 << 8) | (n6));
ths3b46e622007-09-17 08:09:54 +0000633
Jan Kiszka460fec62009-06-24 14:42:31 +0200634 if ((so = tcp_listen(slirp, INADDR_ANY, 0, laddr,
635 lport, SS_FACCEPTONCE)) == NULL) {
bellardf0cbd3e2004-04-22 00:10:48 +0000636 return 1;
Jan Kiszka460fec62009-06-24 14:42:31 +0200637 }
bellardf0cbd3e2004-04-22 00:10:48 +0000638 n6 = ntohs(so->so_fport);
ths3b46e622007-09-17 08:09:54 +0000639
bellardf0cbd3e2004-04-22 00:10:48 +0000640 n5 = (n6 >> 8) & 0xff;
641 n6 &= 0xff;
ths3b46e622007-09-17 08:09:54 +0000642
bellardf0cbd3e2004-04-22 00:10:48 +0000643 laddr = ntohl(so->so_faddr.s_addr);
ths3b46e622007-09-17 08:09:54 +0000644
bellardf0cbd3e2004-04-22 00:10:48 +0000645 n1 = ((laddr >> 24) & 0xff);
646 n2 = ((laddr >> 16) & 0xff);
647 n3 = ((laddr >> 8) & 0xff);
648 n4 = (laddr & 0xff);
ths3b46e622007-09-17 08:09:54 +0000649
bellardf0cbd3e2004-04-22 00:10:48 +0000650 m->m_len = bptr - m->m_data; /* Adjust length */
blueswir1363a37d2008-08-21 17:58:08 +0000651 m->m_len += snprintf(bptr, m->m_hdr.mh_size - m->m_len,
652 "ORT %d,%d,%d,%d,%d,%d\r\n%s",
653 n1, n2, n3, n4, n5, n6, x==7?buff:"");
bellardf0cbd3e2004-04-22 00:10:48 +0000654 return 1;
655 } else if ((bptr = (char *)strstr(m->m_data, "27 Entering")) != NULL) {
656 /*
657 * Need to emulate the PASV response
658 */
blueswir19634d902007-10-26 19:01:16 +0000659 x = sscanf(bptr, "27 Entering Passive Mode (%u,%u,%u,%u,%u,%u)\r\n%256[^\177]",
bellardf0cbd3e2004-04-22 00:10:48 +0000660 &n1, &n2, &n3, &n4, &n5, &n6, buff);
661 if (x < 6)
662 return 1;
ths3b46e622007-09-17 08:09:54 +0000663
bellardf0cbd3e2004-04-22 00:10:48 +0000664 laddr = htonl((n1 << 24) | (n2 << 16) | (n3 << 8) | (n4));
665 lport = htons((n5 << 8) | (n6));
ths3b46e622007-09-17 08:09:54 +0000666
Jan Kiszka460fec62009-06-24 14:42:31 +0200667 if ((so = tcp_listen(slirp, INADDR_ANY, 0, laddr,
668 lport, SS_FACCEPTONCE)) == NULL) {
bellardf0cbd3e2004-04-22 00:10:48 +0000669 return 1;
Jan Kiszka460fec62009-06-24 14:42:31 +0200670 }
bellardf0cbd3e2004-04-22 00:10:48 +0000671 n6 = ntohs(so->so_fport);
ths3b46e622007-09-17 08:09:54 +0000672
bellardf0cbd3e2004-04-22 00:10:48 +0000673 n5 = (n6 >> 8) & 0xff;
674 n6 &= 0xff;
ths3b46e622007-09-17 08:09:54 +0000675
bellardf0cbd3e2004-04-22 00:10:48 +0000676 laddr = ntohl(so->so_faddr.s_addr);
ths3b46e622007-09-17 08:09:54 +0000677
bellardf0cbd3e2004-04-22 00:10:48 +0000678 n1 = ((laddr >> 24) & 0xff);
679 n2 = ((laddr >> 16) & 0xff);
680 n3 = ((laddr >> 8) & 0xff);
681 n4 = (laddr & 0xff);
ths3b46e622007-09-17 08:09:54 +0000682
bellardf0cbd3e2004-04-22 00:10:48 +0000683 m->m_len = bptr - m->m_data; /* Adjust length */
blueswir1363a37d2008-08-21 17:58:08 +0000684 m->m_len += snprintf(bptr, m->m_hdr.mh_size - m->m_len,
685 "27 Entering Passive Mode (%d,%d,%d,%d,%d,%d)\r\n%s",
686 n1, n2, n3, n4, n5, n6, x==7?buff:"");
ths3b46e622007-09-17 08:09:54 +0000687
bellardf0cbd3e2004-04-22 00:10:48 +0000688 return 1;
689 }
ths3b46e622007-09-17 08:09:54 +0000690
bellardf0cbd3e2004-04-22 00:10:48 +0000691 return 1;
ths3b46e622007-09-17 08:09:54 +0000692
bellardf0cbd3e2004-04-22 00:10:48 +0000693 case EMU_KSH:
694 /*
695 * The kshell (Kerberos rsh) and shell services both pass
696 * a local port port number to carry signals to the server
697 * and stderr to the client. It is passed at the beginning
698 * of the connection as a NUL-terminated decimal ASCII string.
699 */
700 so->so_emu = 0;
701 for (lport = 0, i = 0; i < m->m_len-1; ++i) {
702 if (m->m_data[i] < '0' || m->m_data[i] > '9')
703 return 1; /* invalid number */
704 lport *= 10;
705 lport += m->m_data[i] - '0';
706 }
707 if (m->m_data[m->m_len-1] == '\0' && lport != 0 &&
Jan Kiszka460fec62009-06-24 14:42:31 +0200708 (so = tcp_listen(slirp, INADDR_ANY, 0, so->so_laddr.s_addr,
709 htons(lport), SS_FACCEPTONCE)) != NULL)
blueswir1363a37d2008-08-21 17:58:08 +0000710 m->m_len = snprintf(m->m_data, m->m_hdr.mh_size, "%d",
711 ntohs(so->so_fport)) + 1;
bellardf0cbd3e2004-04-22 00:10:48 +0000712 return 1;
ths3b46e622007-09-17 08:09:54 +0000713
bellardf0cbd3e2004-04-22 00:10:48 +0000714 case EMU_IRC:
715 /*
716 * Need to emulate DCC CHAT, DCC SEND and DCC MOVE
717 */
718 *(m->m_data+m->m_len) = 0; /* NULL terminate the string for strstr */
719 if ((bptr = (char *)strstr(m->m_data, "DCC")) == NULL)
720 return 1;
ths3b46e622007-09-17 08:09:54 +0000721
bellardf0cbd3e2004-04-22 00:10:48 +0000722 /* The %256s is for the broken mIRC */
723 if (sscanf(bptr, "DCC CHAT %256s %u %u", buff, &laddr, &lport) == 3) {
Jan Kiszka460fec62009-06-24 14:42:31 +0200724 if ((so = tcp_listen(slirp, INADDR_ANY, 0,
725 htonl(laddr), htons(lport),
726 SS_FACCEPTONCE)) == NULL) {
bellardf0cbd3e2004-04-22 00:10:48 +0000727 return 1;
Jan Kiszka460fec62009-06-24 14:42:31 +0200728 }
bellardf0cbd3e2004-04-22 00:10:48 +0000729 m->m_len = bptr - m->m_data; /* Adjust length */
blueswir1363a37d2008-08-21 17:58:08 +0000730 m->m_len += snprintf(bptr, m->m_hdr.mh_size,
731 "DCC CHAT chat %lu %u%c\n",
732 (unsigned long)ntohl(so->so_faddr.s_addr),
733 ntohs(so->so_fport), 1);
bellardf0cbd3e2004-04-22 00:10:48 +0000734 } else if (sscanf(bptr, "DCC SEND %256s %u %u %u", buff, &laddr, &lport, &n1) == 4) {
Jan Kiszka460fec62009-06-24 14:42:31 +0200735 if ((so = tcp_listen(slirp, INADDR_ANY, 0,
736 htonl(laddr), htons(lport),
737 SS_FACCEPTONCE)) == NULL) {
bellardf0cbd3e2004-04-22 00:10:48 +0000738 return 1;
Jan Kiszka460fec62009-06-24 14:42:31 +0200739 }
bellardf0cbd3e2004-04-22 00:10:48 +0000740 m->m_len = bptr - m->m_data; /* Adjust length */
blueswir1363a37d2008-08-21 17:58:08 +0000741 m->m_len += snprintf(bptr, m->m_hdr.mh_size,
742 "DCC SEND %s %lu %u %u%c\n", buff,
743 (unsigned long)ntohl(so->so_faddr.s_addr),
744 ntohs(so->so_fport), n1, 1);
bellardf0cbd3e2004-04-22 00:10:48 +0000745 } else if (sscanf(bptr, "DCC MOVE %256s %u %u %u", buff, &laddr, &lport, &n1) == 4) {
Jan Kiszka460fec62009-06-24 14:42:31 +0200746 if ((so = tcp_listen(slirp, INADDR_ANY, 0,
747 htonl(laddr), htons(lport),
748 SS_FACCEPTONCE)) == NULL) {
bellardf0cbd3e2004-04-22 00:10:48 +0000749 return 1;
Jan Kiszka460fec62009-06-24 14:42:31 +0200750 }
bellardf0cbd3e2004-04-22 00:10:48 +0000751 m->m_len = bptr - m->m_data; /* Adjust length */
blueswir1363a37d2008-08-21 17:58:08 +0000752 m->m_len += snprintf(bptr, m->m_hdr.mh_size,
753 "DCC MOVE %s %lu %u %u%c\n", buff,
754 (unsigned long)ntohl(so->so_faddr.s_addr),
755 ntohs(so->so_fport), n1, 1);
bellardf0cbd3e2004-04-22 00:10:48 +0000756 }
757 return 1;
758
759 case EMU_REALAUDIO:
ths5fafdf22007-09-16 21:08:06 +0000760 /*
bellardf0cbd3e2004-04-22 00:10:48 +0000761 * RealAudio emulation - JP. We must try to parse the incoming
762 * data and try to find the two characters that contain the
763 * port number. Then we redirect an udp port and replace the
764 * number with the real port we got.
765 *
766 * The 1.0 beta versions of the player are not supported
767 * any more.
ths5fafdf22007-09-16 21:08:06 +0000768 *
bellardf0cbd3e2004-04-22 00:10:48 +0000769 * A typical packet for player version 1.0 (release version):
ths3b46e622007-09-17 08:09:54 +0000770 *
ths5fafdf22007-09-16 21:08:06 +0000771 * 0000:50 4E 41 00 05
Jan Kiszka0d62c4c2009-06-24 14:42:29 +0200772 * 0000:00 01 00 02 1B D7 00 00 67 E6 6C DC 63 00 12 50 ........g.l.c..P
bellardf0cbd3e2004-04-22 00:10:48 +0000773 * 0010:4E 43 4C 49 45 4E 54 20 31 30 31 20 41 4C 50 48 NCLIENT 101 ALPH
774 * 0020:41 6C 00 00 52 00 17 72 61 66 69 6C 65 73 2F 76 Al..R..rafiles/v
775 * 0030:6F 61 2F 65 6E 67 6C 69 73 68 5F 2E 72 61 79 42 oa/english_.rayB
ths3b46e622007-09-17 08:09:54 +0000776 *
bellardf0cbd3e2004-04-22 00:10:48 +0000777 * Now the port number 0x1BD7 is found at offset 0x04 of the
778 * Now the port number 0x1BD7 is found at offset 0x04 of the
779 * second packet. This time we received five bytes first and
780 * then the rest. You never know how many bytes you get.
781 *
782 * A typical packet for player version 2.0 (beta):
ths3b46e622007-09-17 08:09:54 +0000783 *
Jan Kiszka0d62c4c2009-06-24 14:42:29 +0200784 * 0000:50 4E 41 00 06 00 02 00 00 00 01 00 02 1B C1 00 PNA.............
785 * 0010:00 67 75 78 F5 63 00 0A 57 69 6E 32 2E 30 2E 30 .gux.c..Win2.0.0
bellardf0cbd3e2004-04-22 00:10:48 +0000786 * 0020:2E 35 6C 00 00 52 00 1C 72 61 66 69 6C 65 73 2F .5l..R..rafiles/
787 * 0030:77 65 62 73 69 74 65 2F 32 30 72 65 6C 65 61 73 website/20releas
788 * 0040:65 2E 72 61 79 53 00 00 06 36 42 e.rayS...6B
ths3b46e622007-09-17 08:09:54 +0000789 *
bellardf0cbd3e2004-04-22 00:10:48 +0000790 * Port number 0x1BC1 is found at offset 0x0d.
ths3b46e622007-09-17 08:09:54 +0000791 *
bellardf0cbd3e2004-04-22 00:10:48 +0000792 * This is just a horrible switch statement. Variable ra tells
793 * us where we're going.
794 */
ths3b46e622007-09-17 08:09:54 +0000795
bellardf0cbd3e2004-04-22 00:10:48 +0000796 bptr = m->m_data;
797 while (bptr < m->m_data + m->m_len) {
798 u_short p;
799 static int ra = 0;
ths5fafdf22007-09-16 21:08:06 +0000800 char ra_tbl[4];
ths3b46e622007-09-17 08:09:54 +0000801
bellardf0cbd3e2004-04-22 00:10:48 +0000802 ra_tbl[0] = 0x50;
803 ra_tbl[1] = 0x4e;
804 ra_tbl[2] = 0x41;
805 ra_tbl[3] = 0;
ths3b46e622007-09-17 08:09:54 +0000806
bellardf0cbd3e2004-04-22 00:10:48 +0000807 switch (ra) {
808 case 0:
809 case 2:
810 case 3:
811 if (*bptr++ != ra_tbl[ra]) {
812 ra = 0;
813 continue;
814 }
815 break;
ths3b46e622007-09-17 08:09:54 +0000816
bellardf0cbd3e2004-04-22 00:10:48 +0000817 case 1:
818 /*
819 * We may get 0x50 several times, ignore them
820 */
821 if (*bptr == 0x50) {
822 ra = 1;
823 bptr++;
824 continue;
825 } else if (*bptr++ != ra_tbl[ra]) {
826 ra = 0;
827 continue;
828 }
829 break;
ths3b46e622007-09-17 08:09:54 +0000830
ths5fafdf22007-09-16 21:08:06 +0000831 case 4:
832 /*
bellardf0cbd3e2004-04-22 00:10:48 +0000833 * skip version number
834 */
835 bptr++;
836 break;
ths3b46e622007-09-17 08:09:54 +0000837
ths5fafdf22007-09-16 21:08:06 +0000838 case 5:
bellardf0cbd3e2004-04-22 00:10:48 +0000839 /*
840 * The difference between versions 1.0 and
841 * 2.0 is here. For future versions of
842 * the player this may need to be modified.
843 */
844 if (*(bptr + 1) == 0x02)
845 bptr += 8;
846 else
847 bptr += 4;
ths3b46e622007-09-17 08:09:54 +0000848 break;
849
bellardf0cbd3e2004-04-22 00:10:48 +0000850 case 6:
851 /* This is the field containing the port
852 * number that RA-player is listening to.
853 */
ths5fafdf22007-09-16 21:08:06 +0000854 lport = (((u_char*)bptr)[0] << 8)
bellardf0cbd3e2004-04-22 00:10:48 +0000855 + ((u_char *)bptr)[1];
ths3b46e622007-09-17 08:09:54 +0000856 if (lport < 6970)
bellardf0cbd3e2004-04-22 00:10:48 +0000857 lport += 256; /* don't know why */
858 if (lport < 6970 || lport > 7170)
859 return 1; /* failed */
ths3b46e622007-09-17 08:09:54 +0000860
bellardf0cbd3e2004-04-22 00:10:48 +0000861 /* try to get udp port between 6970 - 7170 */
862 for (p = 6970; p < 7071; p++) {
Jan Kiszka460fec62009-06-24 14:42:31 +0200863 if (udp_listen(slirp, INADDR_ANY,
Jan Kiszka3c6a0582009-06-24 14:42:28 +0200864 htons(p),
bellardf0cbd3e2004-04-22 00:10:48 +0000865 so->so_laddr.s_addr,
866 htons(lport),
867 SS_FACCEPTONCE)) {
868 break;
869 }
870 }
871 if (p == 7071)
872 p = 0;
873 *(u_char *)bptr++ = (p >> 8) & 0xff;
Blue Swirl369c86e2010-03-07 13:45:37 +0000874 *(u_char *)bptr = p & 0xff;
ths5fafdf22007-09-16 21:08:06 +0000875 ra = 0;
bellardf0cbd3e2004-04-22 00:10:48 +0000876 return 1; /* port redirected, we're done */
ths3b46e622007-09-17 08:09:54 +0000877 break;
878
bellardf0cbd3e2004-04-22 00:10:48 +0000879 default:
ths3b46e622007-09-17 08:09:54 +0000880 ra = 0;
bellardf0cbd3e2004-04-22 00:10:48 +0000881 }
882 ra++;
883 }
ths3b46e622007-09-17 08:09:54 +0000884 return 1;
885
bellardf0cbd3e2004-04-22 00:10:48 +0000886 default:
887 /* Ooops, not emulated, won't call tcp_emu again */
888 so->so_emu = 0;
889 return 1;
890 }
891}
892
893/*
894 * Do misc. config of SLiRP while its running.
895 * Return 0 if this connections is to be closed, 1 otherwise,
896 * return 2 if this is a command-line connection
897 */
Jan Kiszkab35725c2009-06-24 14:42:28 +0200898int tcp_ctl(struct socket *so)
bellardf0cbd3e2004-04-22 00:10:48 +0000899{
Jan Kiszka460fec62009-06-24 14:42:31 +0200900 Slirp *slirp = so->slirp;
Jan Kiszkab35725c2009-06-24 14:42:28 +0200901 struct sbuf *sb = &so->so_snd;
902 struct ex_list *ex_ptr;
903 int do_pty;
ths5fafdf22007-09-16 21:08:06 +0000904
Jan Kiszkab35725c2009-06-24 14:42:28 +0200905 DEBUG_CALL("tcp_ctl");
906 DEBUG_ARG("so = %lx", (long )so);
ths5fafdf22007-09-16 21:08:06 +0000907
Jan Kiszka460fec62009-06-24 14:42:31 +0200908 if (so->so_faddr.s_addr != slirp->vhost_addr.s_addr) {
Jan Kiszkab35725c2009-06-24 14:42:28 +0200909 /* Check if it's pty_exec */
Jan Kiszka460fec62009-06-24 14:42:31 +0200910 for (ex_ptr = slirp->exec_list; ex_ptr; ex_ptr = ex_ptr->ex_next) {
Jan Kiszkab35725c2009-06-24 14:42:28 +0200911 if (ex_ptr->ex_fport == so->so_fport &&
Jan Kiszkaa13a4122009-06-24 14:42:28 +0200912 so->so_faddr.s_addr == ex_ptr->ex_addr.s_addr) {
Jan Kiszkab35725c2009-06-24 14:42:28 +0200913 if (ex_ptr->ex_pty == 3) {
914 so->s = -1;
915 so->extra = (void *)ex_ptr->ex_exec;
916 return 1;
917 }
918 do_pty = ex_ptr->ex_pty;
Stefan Weilb2bedb22011-09-12 22:33:01 +0200919 DEBUG_MISC((dfd, " executing %s\n", ex_ptr->ex_exec));
Jan Kiszkab35725c2009-06-24 14:42:28 +0200920 return fork_exec(so, ex_ptr->ex_exec, do_pty);
921 }
922 }
923 }
924 sb->sb_cc =
925 snprintf(sb->sb_wptr, sb->sb_datalen - (sb->sb_wptr - sb->sb_data),
926 "Error: No application configured.\r\n");
927 sb->sb_wptr += sb->sb_cc;
928 return 0;
bellardf0cbd3e2004-04-22 00:10:48 +0000929}