]> git.proxmox.com Git - mirror_qemu.git/blame - slirp/tcp_subr.c
slirp: associate slirp_output callback with the Slirp context
[mirror_qemu.git] / slirp / tcp_subr.c
CommitLineData
f0cbd3ec
FB
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.
2f5f8996 13 * 3. Neither the name of the University nor the names of its contributors
f0cbd3ec
FB
14 * 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.
5fafdf24
TS
36 *
37 * Please read the file COPYRIGHT for the
f0cbd3ec
FB
38 * terms and conditions of the copyright.
39 */
40
7df7482b 41#include "qemu/osdep.h"
a9c94277 42#include "slirp.h"
f0cbd3ec
FB
43
44/* patchable/settable parameters for tcp */
9634d903
BS
45/* Don't do rfc1323 performance enhancements */
46#define TCP_DO_RFC1323 0
f0cbd3ec
FB
47
48/*
49 * Tcp initialization
50 */
51void
460fec67 52tcp_init(Slirp *slirp)
f0cbd3ec 53{
460fec67
JK
54 slirp->tcp_iss = 1; /* wrong */
55 slirp->tcb.so_next = slirp->tcb.so_prev = &slirp->tcb;
56 slirp->tcp_last_so = &slirp->tcb;
f0cbd3ec
FB
57}
58
a68adc22
JK
59void tcp_cleanup(Slirp *slirp)
60{
61 while (slirp->tcb.so_next != &slirp->tcb) {
62 tcp_close(sototcpcb(slirp->tcb.so_next));
63 }
64}
65
f0cbd3ec
FB
66/*
67 * Create template to be used to send tcp packets on a connection.
68 * Call after host entry created, fills
69 * in a skeletal tcp/ip header, minimizing the amount of work
70 * necessary when the connection is used.
71 */
f0cbd3ec 72void
511d2b14 73tcp_template(struct tcpcb *tp)
f0cbd3ec
FB
74{
75 struct socket *so = tp->t_socket;
76 register struct tcpiphdr *n = &tp->t_template;
77
429d0a3d 78 n->ti_mbuf = NULL;
98c63057
GS
79 memset(&n->ti, 0, sizeof(n->ti));
80 n->ti_x0 = 0;
9dfbf250
GS
81 switch (so->so_ffamily) {
82 case AF_INET:
1252cf40
GS
83 n->ti_pr = IPPROTO_TCP;
84 n->ti_len = htons(sizeof(struct tcphdr));
85 n->ti_src = so->so_faddr;
86 n->ti_dst = so->so_laddr;
87 n->ti_sport = so->so_fport;
88 n->ti_dport = so->so_lport;
9dfbf250
GS
89 break;
90
3feea444
GS
91 case AF_INET6:
92 n->ti_nh6 = IPPROTO_TCP;
93 n->ti_len = htons(sizeof(struct tcphdr));
94 n->ti_src6 = so->so_faddr6;
95 n->ti_dst6 = so->so_laddr6;
96 n->ti_sport = so->so_fport6;
97 n->ti_dport = so->so_lport6;
98 break;
99
9dfbf250
GS
100 default:
101 g_assert_not_reached();
102 }
5fafdf24 103
f0cbd3ec
FB
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}
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 */
127void
511d2b14 128tcp_respond(struct tcpcb *tp, struct tcpiphdr *ti, struct mbuf *m,
9dfbf250 129 tcp_seq ack, tcp_seq seq, int flags, unsigned short af)
f0cbd3ec
FB
130{
131 register int tlen;
132 int win = 0;
133
134 DEBUG_CALL("tcp_respond");
c4d12a74
SW
135 DEBUG_ARG("tp = %p", tp);
136 DEBUG_ARG("ti = %p", ti);
137 DEBUG_ARG("m = %p", m);
f0cbd3ec
FB
138 DEBUG_ARG("ack = %u", ack);
139 DEBUG_ARG("seq = %u", seq);
140 DEBUG_ARG("flags = %x", flags);
5fafdf24 141
f0cbd3ec
FB
142 if (tp)
143 win = sbspace(&tp->t_socket->so_rcv);
511d2b14 144 if (m == NULL) {
e56afbc5 145 if (!tp || (m = m_get(tp->t_socket->slirp)) == NULL)
f0cbd3ec 146 return;
f0cbd3ec 147 tlen = 0;
9634d903 148 m->m_data += IF_MAXLINKHDR;
f0cbd3ec
FB
149 *mtod(m, struct tcpiphdr *) = *ti;
150 ti = mtod(m, struct tcpiphdr *);
990132cd
TW
151 switch (af) {
152 case AF_INET:
153 ti->ti.ti_i4.ih_x1 = 0;
154 break;
155 case AF_INET6:
156 ti->ti.ti_i6.ih_x1 = 0;
157 break;
158 default:
159 g_assert_not_reached();
160 }
f0cbd3ec
FB
161 flags = TH_ACK;
162 } else {
5fafdf24 163 /*
f0cbd3ec
FB
164 * ti points into m so the next line is just making
165 * the mbuf point to ti
166 */
167 m->m_data = (caddr_t)ti;
3b46e624 168
f0cbd3ec
FB
169 m->m_len = sizeof (struct tcpiphdr);
170 tlen = 0;
171#define xchg(a,b,type) { type t; t=a; a=b; b=t; }
9dfbf250
GS
172 switch (af) {
173 case AF_INET:
1252cf40
GS
174 xchg(ti->ti_dst.s_addr, ti->ti_src.s_addr, uint32_t);
175 xchg(ti->ti_dport, ti->ti_sport, uint16_t);
9dfbf250 176 break;
3feea444
GS
177 case AF_INET6:
178 xchg(ti->ti_dst6, ti->ti_src6, struct in6_addr);
179 xchg(ti->ti_dport, ti->ti_sport, uint16_t);
180 break;
9dfbf250
GS
181 default:
182 g_assert_not_reached();
183 }
f0cbd3ec
FB
184#undef xchg
185 }
186 ti->ti_len = htons((u_short)(sizeof (struct tcphdr) + tlen));
187 tlen += sizeof (struct tcpiphdr);
188 m->m_len = tlen;
189
98c63057
GS
190 ti->ti_mbuf = NULL;
191 ti->ti_x0 = 0;
f0cbd3ec
FB
192 ti->ti_seq = htonl(seq);
193 ti->ti_ack = htonl(ack);
194 ti->ti_x2 = 0;
195 ti->ti_off = sizeof (struct tcphdr) >> 2;
196 ti->ti_flags = flags;
197 if (tp)
b6dce92e 198 ti->ti_win = htons((uint16_t) (win >> tp->rcv_scale));
f0cbd3ec 199 else
b6dce92e 200 ti->ti_win = htons((uint16_t)win);
f0cbd3ec
FB
201 ti->ti_urp = 0;
202 ti->ti_sum = 0;
203 ti->ti_sum = cksum(m, tlen);
f0cbd3ec 204
98c63057 205 struct tcpiphdr tcpiph_save = *(mtod(m, struct tcpiphdr *));
9dfbf250 206 struct ip *ip;
3feea444 207 struct ip6 *ip6;
9dfbf250
GS
208
209 switch (af) {
210 case AF_INET:
1252cf40
GS
211 m->m_data += sizeof(struct tcpiphdr) - sizeof(struct tcphdr)
212 - sizeof(struct ip);
213 m->m_len -= sizeof(struct tcpiphdr) - sizeof(struct tcphdr)
214 - sizeof(struct ip);
215 ip = mtod(m, struct ip *);
2e30230a 216 ip->ip_len = m->m_len;
1252cf40
GS
217 ip->ip_dst = tcpiph_save.ti_dst;
218 ip->ip_src = tcpiph_save.ti_src;
219 ip->ip_p = tcpiph_save.ti_pr;
220
221 if (flags & TH_RST) {
222 ip->ip_ttl = MAXTTL;
223 } else {
224 ip->ip_ttl = IPDEFTTL;
225 }
226
3feea444
GS
227 ip_output(NULL, m);
228 break;
229
230 case AF_INET6:
231 m->m_data += sizeof(struct tcpiphdr) - sizeof(struct tcphdr)
232 - sizeof(struct ip6);
233 m->m_len -= sizeof(struct tcpiphdr) - sizeof(struct tcphdr)
234 - sizeof(struct ip6);
235 ip6 = mtod(m, struct ip6 *);
2e30230a 236 ip6->ip_pl = tcpiph_save.ti_len;
3feea444
GS
237 ip6->ip_dst = tcpiph_save.ti_dst6;
238 ip6->ip_src = tcpiph_save.ti_src6;
239 ip6->ip_nh = tcpiph_save.ti_nh6;
240
241 ip6_output(NULL, m, 0);
9dfbf250
GS
242 break;
243
244 default:
245 g_assert_not_reached();
246 }
f0cbd3ec
FB
247}
248
249/*
250 * Create a new TCP control block, making an
251 * empty reassembly queue and hooking it to the argument
252 * protocol control block.
253 */
254struct tcpcb *
511d2b14 255tcp_newtcpcb(struct socket *so)
f0cbd3ec
FB
256{
257 register struct tcpcb *tp;
5fafdf24 258
f0cbd3ec
FB
259 tp = (struct tcpcb *)malloc(sizeof(*tp));
260 if (tp == NULL)
261 return ((struct tcpcb *)0);
5fafdf24 262
f0cbd3ec 263 memset((char *) tp, 0, sizeof(struct tcpcb));
429d0a3d 264 tp->seg_next = tp->seg_prev = (struct tcpiphdr*)tp;
3feea444 265 tp->t_maxseg = (so->so_ffamily == AF_INET) ? TCP_MSS : TCP6_MSS;
5fafdf24 266
9634d903 267 tp->t_flags = TCP_DO_RFC1323 ? (TF_REQ_SCALE|TF_REQ_TSTMP) : 0;
f0cbd3ec 268 tp->t_socket = so;
5fafdf24 269
f0cbd3ec
FB
270 /*
271 * Init srtt to TCPTV_SRTTBASE (0), so we can tell that we have no
272 * rtt estimate. Set rttvar so that srtt + 2 * rttvar gives
273 * reasonable initial retransmit time.
274 */
275 tp->t_srtt = TCPTV_SRTTBASE;
9634d903 276 tp->t_rttvar = TCPTV_SRTTDFLT << 2;
f0cbd3ec
FB
277 tp->t_rttmin = TCPTV_MIN;
278
5fafdf24 279 TCPT_RANGESET(tp->t_rxtcur,
f0cbd3ec
FB
280 ((TCPTV_SRTTBASE >> 2) + (TCPTV_SRTTDFLT << 2)) >> 1,
281 TCPTV_MIN, TCPTV_REXMTMAX);
282
283 tp->snd_cwnd = TCP_MAXWIN << TCP_MAX_WINSHIFT;
284 tp->snd_ssthresh = TCP_MAXWIN << TCP_MAX_WINSHIFT;
285 tp->t_state = TCPS_CLOSED;
5fafdf24 286
f0cbd3ec
FB
287 so->so_tcpcb = tp;
288
289 return (tp);
290}
291
292/*
293 * Drop a TCP connection, reporting
294 * the specified error. If connection is synchronized,
295 * then send a RST to peer.
296 */
5fafdf24 297struct tcpcb *tcp_drop(struct tcpcb *tp, int err)
f0cbd3ec 298{
f0cbd3ec 299 DEBUG_CALL("tcp_drop");
ecc804ca 300 DEBUG_ARG("tp = %p", tp);
f0cbd3ec 301 DEBUG_ARG("errno = %d", errno);
5fafdf24 302
f0cbd3ec
FB
303 if (TCPS_HAVERCVDSYN(tp->t_state)) {
304 tp->t_state = TCPS_CLOSED;
305 (void) tcp_output(tp);
0fe6a7f2 306 }
f0cbd3ec
FB
307 return (tcp_close(tp));
308}
309
310/*
311 * Close a TCP control block:
312 * discard all space held by the tcp
313 * discard internet protocol block
314 * wake up any sleepers
315 */
316struct tcpcb *
511d2b14 317tcp_close(struct tcpcb *tp)
f0cbd3ec
FB
318{
319 register struct tcpiphdr *t;
320 struct socket *so = tp->t_socket;
460fec67 321 Slirp *slirp = so->slirp;
f0cbd3ec
FB
322 register struct mbuf *m;
323
324 DEBUG_CALL("tcp_close");
ecc804ca 325 DEBUG_ARG("tp = %p", tp);
5fafdf24 326
f0cbd3ec 327 /* free the reassembly queue, if any */
429d0a3d
BS
328 t = tcpfrag_list_first(tp);
329 while (!tcpfrag_list_end(t, tp)) {
330 t = tcpiphdr_next(t);
331 m = tcpiphdr_prev(t)->ti_mbuf;
332 remque(tcpiphdr2qlink(tcpiphdr_prev(t)));
3acccfc6 333 m_free(m);
f0cbd3ec 334 }
f0cbd3ec 335 free(tp);
511d2b14 336 so->so_tcpcb = NULL;
f0cbd3ec 337 /* clobber input socket cache if we're closing the cached connection */
460fec67
JK
338 if (so == slirp->tcp_last_so)
339 slirp->tcp_last_so = &slirp->tcb;
379ff53d 340 closesocket(so->s);
f0cbd3ec
FB
341 sbfree(&so->so_rcv);
342 sbfree(&so->so_snd);
343 sofree(so);
f0cbd3ec
FB
344 return ((struct tcpcb *)0);
345}
346
f0cbd3ec
FB
347/*
348 * TCP protocol interface to socket abstraction.
349 */
350
351/*
352 * User issued close, and wish to trail through shutdown states:
353 * if never received SYN, just forget it. If got a SYN from peer,
354 * but haven't sent FIN, then go to FIN_WAIT_1 state to send peer a FIN.
355 * If already got a FIN from peer, then almost done; go to LAST_ACK
356 * state. In all other cases, have already sent FIN to peer (e.g.
357 * after PRU_SHUTDOWN), and just have to play tedious game waiting
358 * for peer to send FIN or not respond to keep-alives, etc.
359 * We can let the user exit from the close as soon as the FIN is acked.
360 */
361void
511d2b14 362tcp_sockclosed(struct tcpcb *tp)
f0cbd3ec
FB
363{
364
365 DEBUG_CALL("tcp_sockclosed");
ecc804ca 366 DEBUG_ARG("tp = %p", tp);
5fafdf24 367
b5ab6771
SL
368 if (!tp) {
369 return;
370 }
371
f0cbd3ec
FB
372 switch (tp->t_state) {
373
374 case TCPS_CLOSED:
375 case TCPS_LISTEN:
376 case TCPS_SYN_SENT:
377 tp->t_state = TCPS_CLOSED;
378 tp = tcp_close(tp);
379 break;
380
381 case TCPS_SYN_RECEIVED:
382 case TCPS_ESTABLISHED:
383 tp->t_state = TCPS_FIN_WAIT_1;
384 break;
385
386 case TCPS_CLOSE_WAIT:
387 tp->t_state = TCPS_LAST_ACK;
388 break;
389 }
b5ab6771 390 tcp_output(tp);
f0cbd3ec
FB
391}
392
5fafdf24 393/*
f0cbd3ec
FB
394 * Connect to a host on the Internet
395 * Called by tcp_input
396 * Only do a connect, the tcp fields will be set in tcp_input
397 * return 0 if there's a result of the connect,
398 * else return -1 means we're still connecting
399 * The return value is almost always -1 since the socket is
5fafdf24 400 * nonblocking. Connect returns after the SYN is sent, and does
f0cbd3ec
FB
401 * not wait for ACK+SYN.
402 */
cc573a69 403int tcp_fconnect(struct socket *so, unsigned short af)
f0cbd3ec
FB
404{
405 int ret=0;
3b46e624 406
f0cbd3ec 407 DEBUG_CALL("tcp_fconnect");
ecc804ca 408 DEBUG_ARG("so = %p", so);
f0cbd3ec 409
cc573a69
GS
410 ret = so->s = qemu_socket(af, SOCK_STREAM, 0);
411 if (ret >= 0) {
f0cbd3ec 412 int opt, s=so->s;
5379229a 413 struct sockaddr_storage addr;
f0cbd3ec 414
f9e8cacc 415 qemu_set_nonblock(s);
aad1239a 416 socket_set_fast_reuse(s);
f0cbd3ec 417 opt = 1;
9957fc7f 418 qemu_setsockopt(s, SOL_SOCKET, SO_OOBINLINE, &opt, sizeof(opt));
058665b9
AG
419 opt = 1;
420 qemu_setsockopt(s, IPPROTO_TCP, TCP_NODELAY, &opt, sizeof(opt));
3b46e624 421
5379229a
GS
422 addr = so->fhost.ss;
423 DEBUG_CALL(" connect()ing")
424 sotranslate_out(so, &addr);
425
f0cbd3ec 426 /* We don't care what port we get */
0d48dfed 427 ret = connect(s, (struct sockaddr *)&addr, sockaddr_size(&addr));
3b46e624 428
f0cbd3ec
FB
429 /*
430 * If it's not in progress, it failed, so we just return 0,
431 * without clearing SS_NOFDREF
432 */
433 soisfconnecting(so);
434 }
435
436 return(ret);
437}
438
439/*
440 * Accept the socket and connect to the local-host
5fafdf24 441 *
f0cbd3ec
FB
442 * We have a problem. The correct thing to do would be
443 * to first connect to the local-host, and only if the
444 * connection is accepted, then do an accept() here.
5fafdf24 445 * But, a) we need to know who's trying to connect
f0cbd3ec
FB
446 * to the socket to be able to SYN the local-host, and
447 * b) we are already connected to the foreign host by
448 * the time it gets to accept(), so... We simply accept
449 * here and SYN the local-host.
5fafdf24 450 */
4ef7b894 451void tcp_connect(struct socket *inso)
f0cbd3ec 452{
4ef7b894
MK
453 Slirp *slirp = inso->slirp;
454 struct socket *so;
9dfbf250
GS
455 struct sockaddr_storage addr;
456 socklen_t addrlen = sizeof(struct sockaddr_storage);
4ef7b894
MK
457 struct tcpcb *tp;
458 int s, opt;
f0cbd3ec 459
4ef7b894 460 DEBUG_CALL("tcp_connect");
ecc804ca 461 DEBUG_ARG("inso = %p", inso);
5fafdf24 462
4ef7b894
MK
463 /*
464 * If it's an SS_ACCEPTONCE socket, no need to socreate()
465 * another socket, just use the accept() socket.
466 */
467 if (inso->so_state & SS_FACCEPTONCE) {
468 /* FACCEPTONCE already have a tcpcb */
469 so = inso;
470 } else {
471 so = socreate(slirp);
4ef7b894 472 if (tcp_attach(so) < 0) {
84ec9bfa 473 g_free(so); /* NOT sofree */
4ef7b894
MK
474 return;
475 }
9dfbf250
GS
476 so->lhost = inso->lhost;
477 so->so_ffamily = inso->so_ffamily;
4ef7b894 478 }
5fafdf24 479
4ef7b894 480 tcp_mss(sototcpcb(so), 0);
f0cbd3ec 481
4ef7b894
MK
482 s = accept(inso->s, (struct sockaddr *)&addr, &addrlen);
483 if (s < 0) {
484 tcp_close(sototcpcb(so)); /* This will sofree() as well */
485 return;
486 }
f9e8cacc 487 qemu_set_nonblock(s);
aad1239a 488 socket_set_fast_reuse(s);
4ef7b894 489 opt = 1;
9957fc7f 490 qemu_setsockopt(s, SOL_SOCKET, SO_OOBINLINE, &opt, sizeof(int));
bf1c852a 491 socket_set_nodelay(s);
4ef7b894 492
9dfbf250 493 so->fhost.ss = addr;
5379229a 494 sotranslate_accept(so);
5fafdf24 495
4ef7b894
MK
496 /* Close the accept() socket, set right state */
497 if (inso->so_state & SS_FACCEPTONCE) {
498 /* If we only accept once, close the accept() socket */
499 closesocket(so->s);
500
501 /* Don't select it yet, even though we have an FD */
502 /* if it's not FACCEPTONCE, it's already NOFDREF */
503 so->so_state = SS_NOFDREF;
504 }
505 so->s = s;
506 so->so_state |= SS_INCOMING;
5fafdf24 507
4ef7b894
MK
508 so->so_iptos = tcp_tos(so);
509 tp = sototcpcb(so);
f0cbd3ec 510
4ef7b894 511 tcp_template(tp);
5fafdf24 512
4ef7b894
MK
513 tp->t_state = TCPS_SYN_SENT;
514 tp->t_timer[TCPT_KEEP] = TCPTV_KEEP_INIT;
515 tp->iss = slirp->tcp_iss;
516 slirp->tcp_iss += TCP_ISSINCR/2;
517 tcp_sendseqinit(tp);
518 tcp_output(tp);
f0cbd3ec
FB
519}
520
521/*
522 * Attach a TCPCB to a socket.
523 */
524int
511d2b14 525tcp_attach(struct socket *so)
f0cbd3ec
FB
526{
527 if ((so->so_tcpcb = tcp_newtcpcb(so)) == NULL)
528 return -1;
5fafdf24 529
460fec67 530 insque(so, &so->slirp->tcb);
f0cbd3ec
FB
531
532 return 0;
533}
534
535/*
536 * Set the socket's type of service field
537 */
9634d903 538static const struct tos_t tcptos[] = {
f0cbd3ec
FB
539 {0, 20, IPTOS_THROUGHPUT, 0}, /* ftp data */
540 {21, 21, IPTOS_LOWDELAY, EMU_FTP}, /* ftp control */
541 {0, 23, IPTOS_LOWDELAY, 0}, /* telnet */
542 {0, 80, IPTOS_THROUGHPUT, 0}, /* WWW */
543 {0, 513, IPTOS_LOWDELAY, EMU_RLOGIN|EMU_NOCONNECT}, /* rlogin */
544 {0, 514, IPTOS_LOWDELAY, EMU_RSH|EMU_NOCONNECT}, /* shell */
545 {0, 544, IPTOS_LOWDELAY, EMU_KSH}, /* kshell */
546 {0, 543, IPTOS_LOWDELAY, 0}, /* klogin */
547 {0, 6667, IPTOS_THROUGHPUT, EMU_IRC}, /* IRC */
548 {0, 6668, IPTOS_THROUGHPUT, EMU_IRC}, /* IRC undernet */
549 {0, 7070, IPTOS_LOWDELAY, EMU_REALAUDIO }, /* RealAudio control */
550 {0, 113, IPTOS_LOWDELAY, EMU_IDENT }, /* identd protocol */
551 {0, 0, 0, 0}
552};
553
0d62c4cf 554static struct emu_t *tcpemu = NULL;
3b46e624 555
f0cbd3ec
FB
556/*
557 * Return TOS according to the above table
558 */
b6dce92e 559uint8_t
511d2b14 560tcp_tos(struct socket *so)
f0cbd3ec
FB
561{
562 int i = 0;
563 struct emu_t *emup;
5fafdf24 564
f0cbd3ec
FB
565 while(tcptos[i].tos) {
566 if ((tcptos[i].fport && (ntohs(so->so_fport) == tcptos[i].fport)) ||
567 (tcptos[i].lport && (ntohs(so->so_lport) == tcptos[i].lport))) {
568 so->so_emu = tcptos[i].emu;
569 return tcptos[i].tos;
570 }
571 i++;
572 }
5fafdf24 573
f0cbd3ec
FB
574 /* Nope, lets see if there's a user-added one */
575 for (emup = tcpemu; emup; emup = emup->next) {
576 if ((emup->fport && (ntohs(so->so_fport) == emup->fport)) ||
577 (emup->lport && (ntohs(so->so_lport) == emup->lport))) {
578 so->so_emu = emup->emu;
579 return emup->tos;
580 }
581 }
5fafdf24 582
f0cbd3ec
FB
583 return 0;
584}
585
f0cbd3ec
FB
586/*
587 * Emulate programs that try and connect to us
588 * This includes ftp (the data connection is
589 * initiated by the server) and IRC (DCC CHAT and
590 * DCC SEND) for now
5fafdf24 591 *
f0cbd3ec
FB
592 * NOTE: It's possible to crash SLiRP by sending it
593 * unstandard strings to emulate... if this is a problem,
594 * more checks are needed here
595 *
596 * XXX Assumes the whole command came in one packet
3b46e624 597 *
f0cbd3ec
FB
598 * XXX Some ftp clients will have their TOS set to
599 * LOWDELAY and so Nagel will kick in. Because of this,
600 * we'll get the first letter, followed by the rest, so
601 * we simply scan for ORT instead of PORT...
602 * DCC doesn't have this problem because there's other stuff
603 * in the packet before the DCC command.
5fafdf24
TS
604 *
605 * Return 1 if the mbuf m is still valid and should be
f0cbd3ec 606 * sbappend()ed
5fafdf24 607 *
f0cbd3ec
FB
608 * NOTE: if you return 0 you MUST m_free() the mbuf!
609 */
610int
511d2b14 611tcp_emu(struct socket *so, struct mbuf *m)
f0cbd3ec 612{
460fec67 613 Slirp *slirp = so->slirp;
f0cbd3ec 614 u_int n1, n2, n3, n4, n5, n6;
363a37d5 615 char buff[257];
b6dce92e 616 uint32_t laddr;
f0cbd3ec
FB
617 u_int lport;
618 char *bptr;
5fafdf24 619
f0cbd3ec 620 DEBUG_CALL("tcp_emu");
ecc804ca
SW
621 DEBUG_ARG("so = %p", so);
622 DEBUG_ARG("m = %p", m);
5fafdf24 623
f0cbd3ec
FB
624 switch(so->so_emu) {
625 int x, i;
3b46e624 626
f0cbd3ec
FB
627 case EMU_IDENT:
628 /*
629 * Identification protocol as per rfc-1413
630 */
3b46e624 631
f0cbd3ec
FB
632 {
633 struct socket *tmpso;
634 struct sockaddr_in addr;
b55266b5 635 socklen_t addrlen = sizeof(struct sockaddr_in);
f0cbd3ec 636 struct sbuf *so_rcv = &so->so_rcv;
3b46e624 637
f0cbd3ec
FB
638 memcpy(so_rcv->sb_wptr, m->m_data, m->m_len);
639 so_rcv->sb_wptr += m->m_len;
640 so_rcv->sb_rptr += m->m_len;
641 m->m_data[m->m_len] = 0; /* NULL terminate */
642 if (strchr(m->m_data, '\r') || strchr(m->m_data, '\n')) {
9634d903 643 if (sscanf(so_rcv->sb_data, "%u%*[ ,]%u", &n1, &n2) == 2) {
f0cbd3ec
FB
644 HTONS(n1);
645 HTONS(n2);
646 /* n2 is the one on our host */
460fec67
JK
647 for (tmpso = slirp->tcb.so_next;
648 tmpso != &slirp->tcb;
649 tmpso = tmpso->so_next) {
f0cbd3ec
FB
650 if (tmpso->so_laddr.s_addr == so->so_laddr.s_addr &&
651 tmpso->so_lport == n2 &&
652 tmpso->so_faddr.s_addr == so->so_faddr.s_addr &&
653 tmpso->so_fport == n1) {
654 if (getsockname(tmpso->s,
655 (struct sockaddr *)&addr, &addrlen) == 0)
656 n2 = ntohs(addr.sin_port);
657 break;
658 }
659 }
660 }
363a37d5
BS
661 so_rcv->sb_cc = snprintf(so_rcv->sb_data,
662 so_rcv->sb_datalen,
663 "%d,%d\r\n", n1, n2);
f0cbd3ec
FB
664 so_rcv->sb_rptr = so_rcv->sb_data;
665 so_rcv->sb_wptr = so_rcv->sb_data + so_rcv->sb_cc;
666 }
667 m_free(m);
668 return 0;
669 }
3b46e624 670
f0cbd3ec 671 case EMU_FTP: /* ftp */
511d2b14 672 *(m->m_data+m->m_len) = 0; /* NUL terminate for strstr */
f0cbd3ec
FB
673 if ((bptr = (char *)strstr(m->m_data, "ORT")) != NULL) {
674 /*
675 * Need to emulate the PORT command
3b46e624 676 */
9634d903 677 x = sscanf(bptr, "ORT %u,%u,%u,%u,%u,%u\r\n%256[^\177]",
f0cbd3ec
FB
678 &n1, &n2, &n3, &n4, &n5, &n6, buff);
679 if (x < 6)
680 return 1;
3b46e624 681
f0cbd3ec
FB
682 laddr = htonl((n1 << 24) | (n2 << 16) | (n3 << 8) | (n4));
683 lport = htons((n5 << 8) | (n6));
3b46e624 684
460fec67
JK
685 if ((so = tcp_listen(slirp, INADDR_ANY, 0, laddr,
686 lport, SS_FACCEPTONCE)) == NULL) {
f0cbd3ec 687 return 1;
460fec67 688 }
f0cbd3ec 689 n6 = ntohs(so->so_fport);
3b46e624 690
f0cbd3ec
FB
691 n5 = (n6 >> 8) & 0xff;
692 n6 &= 0xff;
3b46e624 693
f0cbd3ec 694 laddr = ntohl(so->so_faddr.s_addr);
3b46e624 695
f0cbd3ec
FB
696 n1 = ((laddr >> 24) & 0xff);
697 n2 = ((laddr >> 16) & 0xff);
698 n3 = ((laddr >> 8) & 0xff);
699 n4 = (laddr & 0xff);
3b46e624 700
f0cbd3ec 701 m->m_len = bptr - m->m_data; /* Adjust length */
0e44486c 702 m->m_len += snprintf(bptr, m->m_size - m->m_len,
363a37d5
BS
703 "ORT %d,%d,%d,%d,%d,%d\r\n%s",
704 n1, n2, n3, n4, n5, n6, x==7?buff:"");
f0cbd3ec
FB
705 return 1;
706 } else if ((bptr = (char *)strstr(m->m_data, "27 Entering")) != NULL) {
707 /*
708 * Need to emulate the PASV response
709 */
9634d903 710 x = sscanf(bptr, "27 Entering Passive Mode (%u,%u,%u,%u,%u,%u)\r\n%256[^\177]",
f0cbd3ec
FB
711 &n1, &n2, &n3, &n4, &n5, &n6, buff);
712 if (x < 6)
713 return 1;
3b46e624 714
f0cbd3ec
FB
715 laddr = htonl((n1 << 24) | (n2 << 16) | (n3 << 8) | (n4));
716 lport = htons((n5 << 8) | (n6));
3b46e624 717
460fec67
JK
718 if ((so = tcp_listen(slirp, INADDR_ANY, 0, laddr,
719 lport, SS_FACCEPTONCE)) == NULL) {
f0cbd3ec 720 return 1;
460fec67 721 }
f0cbd3ec 722 n6 = ntohs(so->so_fport);
3b46e624 723
f0cbd3ec
FB
724 n5 = (n6 >> 8) & 0xff;
725 n6 &= 0xff;
3b46e624 726
f0cbd3ec 727 laddr = ntohl(so->so_faddr.s_addr);
3b46e624 728
f0cbd3ec
FB
729 n1 = ((laddr >> 24) & 0xff);
730 n2 = ((laddr >> 16) & 0xff);
731 n3 = ((laddr >> 8) & 0xff);
732 n4 = (laddr & 0xff);
3b46e624 733
f0cbd3ec 734 m->m_len = bptr - m->m_data; /* Adjust length */
0e44486c 735 m->m_len += snprintf(bptr, m->m_size - m->m_len,
363a37d5
BS
736 "27 Entering Passive Mode (%d,%d,%d,%d,%d,%d)\r\n%s",
737 n1, n2, n3, n4, n5, n6, x==7?buff:"");
3b46e624 738
f0cbd3ec
FB
739 return 1;
740 }
3b46e624 741
f0cbd3ec 742 return 1;
3b46e624 743
f0cbd3ec
FB
744 case EMU_KSH:
745 /*
746 * The kshell (Kerberos rsh) and shell services both pass
747 * a local port port number to carry signals to the server
748 * and stderr to the client. It is passed at the beginning
749 * of the connection as a NUL-terminated decimal ASCII string.
750 */
751 so->so_emu = 0;
752 for (lport = 0, i = 0; i < m->m_len-1; ++i) {
753 if (m->m_data[i] < '0' || m->m_data[i] > '9')
754 return 1; /* invalid number */
755 lport *= 10;
756 lport += m->m_data[i] - '0';
757 }
758 if (m->m_data[m->m_len-1] == '\0' && lport != 0 &&
460fec67
JK
759 (so = tcp_listen(slirp, INADDR_ANY, 0, so->so_laddr.s_addr,
760 htons(lport), SS_FACCEPTONCE)) != NULL)
0e44486c 761 m->m_len = snprintf(m->m_data, m->m_size, "%d",
363a37d5 762 ntohs(so->so_fport)) + 1;
f0cbd3ec 763 return 1;
3b46e624 764
f0cbd3ec
FB
765 case EMU_IRC:
766 /*
767 * Need to emulate DCC CHAT, DCC SEND and DCC MOVE
768 */
769 *(m->m_data+m->m_len) = 0; /* NULL terminate the string for strstr */
770 if ((bptr = (char *)strstr(m->m_data, "DCC")) == NULL)
771 return 1;
3b46e624 772
f0cbd3ec
FB
773 /* The %256s is for the broken mIRC */
774 if (sscanf(bptr, "DCC CHAT %256s %u %u", buff, &laddr, &lport) == 3) {
460fec67
JK
775 if ((so = tcp_listen(slirp, INADDR_ANY, 0,
776 htonl(laddr), htons(lport),
777 SS_FACCEPTONCE)) == NULL) {
f0cbd3ec 778 return 1;
460fec67 779 }
f0cbd3ec 780 m->m_len = bptr - m->m_data; /* Adjust length */
0e44486c 781 m->m_len += snprintf(bptr, m->m_size,
363a37d5
BS
782 "DCC CHAT chat %lu %u%c\n",
783 (unsigned long)ntohl(so->so_faddr.s_addr),
784 ntohs(so->so_fport), 1);
f0cbd3ec 785 } else if (sscanf(bptr, "DCC SEND %256s %u %u %u", buff, &laddr, &lport, &n1) == 4) {
460fec67
JK
786 if ((so = tcp_listen(slirp, INADDR_ANY, 0,
787 htonl(laddr), htons(lport),
788 SS_FACCEPTONCE)) == NULL) {
f0cbd3ec 789 return 1;
460fec67 790 }
f0cbd3ec 791 m->m_len = bptr - m->m_data; /* Adjust length */
0e44486c 792 m->m_len += snprintf(bptr, m->m_size,
363a37d5
BS
793 "DCC SEND %s %lu %u %u%c\n", buff,
794 (unsigned long)ntohl(so->so_faddr.s_addr),
795 ntohs(so->so_fport), n1, 1);
f0cbd3ec 796 } else if (sscanf(bptr, "DCC MOVE %256s %u %u %u", buff, &laddr, &lport, &n1) == 4) {
460fec67
JK
797 if ((so = tcp_listen(slirp, INADDR_ANY, 0,
798 htonl(laddr), htons(lport),
799 SS_FACCEPTONCE)) == NULL) {
f0cbd3ec 800 return 1;
460fec67 801 }
f0cbd3ec 802 m->m_len = bptr - m->m_data; /* Adjust length */
0e44486c 803 m->m_len += snprintf(bptr, m->m_size,
363a37d5
BS
804 "DCC MOVE %s %lu %u %u%c\n", buff,
805 (unsigned long)ntohl(so->so_faddr.s_addr),
806 ntohs(so->so_fport), n1, 1);
f0cbd3ec
FB
807 }
808 return 1;
809
810 case EMU_REALAUDIO:
5fafdf24 811 /*
f0cbd3ec
FB
812 * RealAudio emulation - JP. We must try to parse the incoming
813 * data and try to find the two characters that contain the
814 * port number. Then we redirect an udp port and replace the
815 * number with the real port we got.
816 *
817 * The 1.0 beta versions of the player are not supported
818 * any more.
5fafdf24 819 *
f0cbd3ec 820 * A typical packet for player version 1.0 (release version):
3b46e624 821 *
5fafdf24 822 * 0000:50 4E 41 00 05
0d62c4cf 823 * 0000:00 01 00 02 1B D7 00 00 67 E6 6C DC 63 00 12 50 ........g.l.c..P
f0cbd3ec
FB
824 * 0010:4E 43 4C 49 45 4E 54 20 31 30 31 20 41 4C 50 48 NCLIENT 101 ALPH
825 * 0020:41 6C 00 00 52 00 17 72 61 66 69 6C 65 73 2F 76 Al..R..rafiles/v
826 * 0030:6F 61 2F 65 6E 67 6C 69 73 68 5F 2E 72 61 79 42 oa/english_.rayB
3b46e624 827 *
f0cbd3ec
FB
828 * Now the port number 0x1BD7 is found at offset 0x04 of the
829 * Now the port number 0x1BD7 is found at offset 0x04 of the
830 * second packet. This time we received five bytes first and
831 * then the rest. You never know how many bytes you get.
832 *
833 * A typical packet for player version 2.0 (beta):
3b46e624 834 *
0d62c4cf
JK
835 * 0000:50 4E 41 00 06 00 02 00 00 00 01 00 02 1B C1 00 PNA.............
836 * 0010:00 67 75 78 F5 63 00 0A 57 69 6E 32 2E 30 2E 30 .gux.c..Win2.0.0
f0cbd3ec
FB
837 * 0020:2E 35 6C 00 00 52 00 1C 72 61 66 69 6C 65 73 2F .5l..R..rafiles/
838 * 0030:77 65 62 73 69 74 65 2F 32 30 72 65 6C 65 61 73 website/20releas
839 * 0040:65 2E 72 61 79 53 00 00 06 36 42 e.rayS...6B
3b46e624 840 *
f0cbd3ec 841 * Port number 0x1BC1 is found at offset 0x0d.
3b46e624 842 *
f0cbd3ec
FB
843 * This is just a horrible switch statement. Variable ra tells
844 * us where we're going.
845 */
3b46e624 846
f0cbd3ec
FB
847 bptr = m->m_data;
848 while (bptr < m->m_data + m->m_len) {
849 u_short p;
850 static int ra = 0;
5fafdf24 851 char ra_tbl[4];
3b46e624 852
f0cbd3ec
FB
853 ra_tbl[0] = 0x50;
854 ra_tbl[1] = 0x4e;
855 ra_tbl[2] = 0x41;
856 ra_tbl[3] = 0;
3b46e624 857
f0cbd3ec
FB
858 switch (ra) {
859 case 0:
860 case 2:
861 case 3:
862 if (*bptr++ != ra_tbl[ra]) {
863 ra = 0;
864 continue;
865 }
866 break;
3b46e624 867
f0cbd3ec
FB
868 case 1:
869 /*
870 * We may get 0x50 several times, ignore them
871 */
872 if (*bptr == 0x50) {
873 ra = 1;
874 bptr++;
875 continue;
876 } else if (*bptr++ != ra_tbl[ra]) {
877 ra = 0;
878 continue;
879 }
880 break;
3b46e624 881
5fafdf24
TS
882 case 4:
883 /*
f0cbd3ec
FB
884 * skip version number
885 */
886 bptr++;
887 break;
3b46e624 888
5fafdf24 889 case 5:
f0cbd3ec
FB
890 /*
891 * The difference between versions 1.0 and
892 * 2.0 is here. For future versions of
893 * the player this may need to be modified.
894 */
895 if (*(bptr + 1) == 0x02)
896 bptr += 8;
897 else
898 bptr += 4;
3b46e624
TS
899 break;
900
f0cbd3ec
FB
901 case 6:
902 /* This is the field containing the port
903 * number that RA-player is listening to.
904 */
5fafdf24 905 lport = (((u_char*)bptr)[0] << 8)
f0cbd3ec 906 + ((u_char *)bptr)[1];
3b46e624 907 if (lport < 6970)
f0cbd3ec
FB
908 lport += 256; /* don't know why */
909 if (lport < 6970 || lport > 7170)
910 return 1; /* failed */
3b46e624 911
f0cbd3ec
FB
912 /* try to get udp port between 6970 - 7170 */
913 for (p = 6970; p < 7071; p++) {
460fec67 914 if (udp_listen(slirp, INADDR_ANY,
3c6a0580 915 htons(p),
f0cbd3ec
FB
916 so->so_laddr.s_addr,
917 htons(lport),
918 SS_FACCEPTONCE)) {
919 break;
920 }
921 }
922 if (p == 7071)
923 p = 0;
924 *(u_char *)bptr++ = (p >> 8) & 0xff;
369c86e7 925 *(u_char *)bptr = p & 0xff;
5fafdf24 926 ra = 0;
f0cbd3ec 927 return 1; /* port redirected, we're done */
3b46e624
TS
928 break;
929
f0cbd3ec 930 default:
3b46e624 931 ra = 0;
f0cbd3ec
FB
932 }
933 ra++;
934 }
3b46e624
TS
935 return 1;
936
f0cbd3ec
FB
937 default:
938 /* Ooops, not emulated, won't call tcp_emu again */
939 so->so_emu = 0;
940 return 1;
941 }
942}
943
944/*
945 * Do misc. config of SLiRP while its running.
946 * Return 0 if this connections is to be closed, 1 otherwise,
947 * return 2 if this is a command-line connection
948 */
b35725c5 949int tcp_ctl(struct socket *so)
f0cbd3ec 950{
460fec67 951 Slirp *slirp = so->slirp;
b35725c5
JK
952 struct sbuf *sb = &so->so_snd;
953 struct ex_list *ex_ptr;
954 int do_pty;
955
956 DEBUG_CALL("tcp_ctl");
ecc804ca 957 DEBUG_ARG("so = %p", so);
b35725c5 958
460fec67 959 if (so->so_faddr.s_addr != slirp->vhost_addr.s_addr) {
b35725c5 960 /* Check if it's pty_exec */
460fec67 961 for (ex_ptr = slirp->exec_list; ex_ptr; ex_ptr = ex_ptr->ex_next) {
b35725c5 962 if (ex_ptr->ex_fport == so->so_fport &&
a13a4126 963 so->so_faddr.s_addr == ex_ptr->ex_addr.s_addr) {
b35725c5
JK
964 if (ex_ptr->ex_pty == 3) {
965 so->s = -1;
966 so->extra = (void *)ex_ptr->ex_exec;
967 return 1;
968 }
969 do_pty = ex_ptr->ex_pty;
b2bedb21 970 DEBUG_MISC((dfd, " executing %s\n", ex_ptr->ex_exec));
b35725c5
JK
971 return fork_exec(so, ex_ptr->ex_exec, do_pty);
972 }
973 }
974 }
975 sb->sb_cc =
976 snprintf(sb->sb_wptr, sb->sb_datalen - (sb->sb_wptr - sb->sb_data),
977 "Error: No application configured.\r\n");
978 sb->sb_wptr += sb->sb_cc;
979 return 0;
f0cbd3ec 980}