2 * Copyright (c) 1982, 1986, 1988, 1990, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
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. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
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
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
34 * Changes and additions relating to SLiRP
35 * Copyright (c) 1995 Danny Gasparovski.
37 * Please read the file COPYRIGHT for the
38 * terms and conditions of the copyright.
41 #include "qemu/osdep.h"
44 /* patchable/settable parameters for tcp */
45 /* Don't do rfc1323 performance enhancements */
46 #define TCP_DO_RFC1323 0
52 tcp_init(Slirp
*slirp
)
54 slirp
->tcp_iss
= 1; /* wrong */
55 slirp
->tcb
.so_next
= slirp
->tcb
.so_prev
= &slirp
->tcb
;
56 slirp
->tcp_last_so
= &slirp
->tcb
;
59 void tcp_cleanup(Slirp
*slirp
)
61 while (slirp
->tcb
.so_next
!= &slirp
->tcb
) {
62 tcp_close(sototcpcb(slirp
->tcb
.so_next
));
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.
73 tcp_template(struct tcpcb
*tp
)
75 struct socket
*so
= tp
->t_socket
;
76 register struct tcpiphdr
*n
= &tp
->t_template
;
79 memset(&n
->ti
, 0, sizeof(n
->ti
));
81 switch (so
->so_ffamily
) {
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
;
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
;
101 g_assert_not_reached();
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
124 * In any case the ack and sequence number of the transmitted
125 * segment are as specified by the parameters.
128 tcp_respond(struct tcpcb
*tp
, struct tcpiphdr
*ti
, struct mbuf
*m
,
129 tcp_seq ack
, tcp_seq seq
, int flags
, unsigned short af
)
134 DEBUG_CALL("tcp_respond");
135 DEBUG_ARG("tp = %p", tp
);
136 DEBUG_ARG("ti = %p", ti
);
137 DEBUG_ARG("m = %p", m
);
138 DEBUG_ARG("ack = %u", ack
);
139 DEBUG_ARG("seq = %u", seq
);
140 DEBUG_ARG("flags = %x", flags
);
143 win
= sbspace(&tp
->t_socket
->so_rcv
);
145 if (!tp
|| (m
= m_get(tp
->t_socket
->slirp
)) == NULL
)
148 m
->m_data
+= IF_MAXLINKHDR
;
149 *mtod(m
, struct tcpiphdr
*) = *ti
;
150 ti
= mtod(m
, struct tcpiphdr
*);
153 ti
->ti
.ti_i4
.ih_x1
= 0;
156 ti
->ti
.ti_i6
.ih_x1
= 0;
159 g_assert_not_reached();
164 * ti points into m so the next line is just making
165 * the mbuf point to ti
167 m
->m_data
= (caddr_t
)ti
;
169 m
->m_len
= sizeof (struct tcpiphdr
);
171 #define xchg(a,b,type) { type t; t=a; a=b; b=t; }
174 xchg(ti
->ti_dst
.s_addr
, ti
->ti_src
.s_addr
, uint32_t);
175 xchg(ti
->ti_dport
, ti
->ti_sport
, uint16_t);
178 xchg(ti
->ti_dst6
, ti
->ti_src6
, struct in6_addr
);
179 xchg(ti
->ti_dport
, ti
->ti_sport
, uint16_t);
182 g_assert_not_reached();
186 ti
->ti_len
= htons((u_short
)(sizeof (struct tcphdr
) + tlen
));
187 tlen
+= sizeof (struct tcpiphdr
);
192 ti
->ti_seq
= htonl(seq
);
193 ti
->ti_ack
= htonl(ack
);
195 ti
->ti_off
= sizeof (struct tcphdr
) >> 2;
196 ti
->ti_flags
= flags
;
198 ti
->ti_win
= htons((uint16_t) (win
>> tp
->rcv_scale
));
200 ti
->ti_win
= htons((uint16_t)win
);
203 ti
->ti_sum
= cksum(m
, tlen
);
205 struct tcpiphdr tcpiph_save
= *(mtod(m
, struct tcpiphdr
*));
211 m
->m_data
+= sizeof(struct tcpiphdr
) - sizeof(struct tcphdr
)
213 m
->m_len
-= sizeof(struct tcpiphdr
) - sizeof(struct tcphdr
)
215 ip
= mtod(m
, struct ip
*);
216 ip
->ip_len
= m
->m_len
;
217 ip
->ip_dst
= tcpiph_save
.ti_dst
;
218 ip
->ip_src
= tcpiph_save
.ti_src
;
219 ip
->ip_p
= tcpiph_save
.ti_pr
;
221 if (flags
& TH_RST
) {
224 ip
->ip_ttl
= IPDEFTTL
;
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
*);
236 ip6
->ip_pl
= tcpiph_save
.ti_len
;
237 ip6
->ip_dst
= tcpiph_save
.ti_dst6
;
238 ip6
->ip_src
= tcpiph_save
.ti_src6
;
239 ip6
->ip_nh
= tcpiph_save
.ti_nh6
;
241 ip6_output(NULL
, m
, 0);
245 g_assert_not_reached();
250 * Create a new TCP control block, making an
251 * empty reassembly queue and hooking it to the argument
252 * protocol control block.
255 tcp_newtcpcb(struct socket
*so
)
257 register struct tcpcb
*tp
;
259 tp
= (struct tcpcb
*)malloc(sizeof(*tp
));
261 return ((struct tcpcb
*)0);
263 memset((char *) tp
, 0, sizeof(struct tcpcb
));
264 tp
->seg_next
= tp
->seg_prev
= (struct tcpiphdr
*)tp
;
265 tp
->t_maxseg
= (so
->so_ffamily
== AF_INET
) ? TCP_MSS
: TCP6_MSS
;
267 tp
->t_flags
= TCP_DO_RFC1323
? (TF_REQ_SCALE
|TF_REQ_TSTMP
) : 0;
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.
275 tp
->t_srtt
= TCPTV_SRTTBASE
;
276 tp
->t_rttvar
= TCPTV_SRTTDFLT
<< 2;
277 tp
->t_rttmin
= TCPTV_MIN
;
279 TCPT_RANGESET(tp
->t_rxtcur
,
280 ((TCPTV_SRTTBASE
>> 2) + (TCPTV_SRTTDFLT
<< 2)) >> 1,
281 TCPTV_MIN
, TCPTV_REXMTMAX
);
283 tp
->snd_cwnd
= TCP_MAXWIN
<< TCP_MAX_WINSHIFT
;
284 tp
->snd_ssthresh
= TCP_MAXWIN
<< TCP_MAX_WINSHIFT
;
285 tp
->t_state
= TCPS_CLOSED
;
293 * Drop a TCP connection, reporting
294 * the specified error. If connection is synchronized,
295 * then send a RST to peer.
297 struct tcpcb
*tcp_drop(struct tcpcb
*tp
, int err
)
299 DEBUG_CALL("tcp_drop");
300 DEBUG_ARG("tp = %p", tp
);
301 DEBUG_ARG("errno = %d", errno
);
303 if (TCPS_HAVERCVDSYN(tp
->t_state
)) {
304 tp
->t_state
= TCPS_CLOSED
;
305 (void) tcp_output(tp
);
307 return (tcp_close(tp
));
311 * Close a TCP control block:
312 * discard all space held by the tcp
313 * discard internet protocol block
314 * wake up any sleepers
317 tcp_close(struct tcpcb
*tp
)
319 register struct tcpiphdr
*t
;
320 struct socket
*so
= tp
->t_socket
;
321 Slirp
*slirp
= so
->slirp
;
322 register struct mbuf
*m
;
324 DEBUG_CALL("tcp_close");
325 DEBUG_ARG("tp = %p", tp
);
327 /* free the reassembly queue, if any */
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
)));
337 /* clobber input socket cache if we're closing the cached connection */
338 if (so
== slirp
->tcp_last_so
)
339 slirp
->tcp_last_so
= &slirp
->tcb
;
344 return ((struct tcpcb
*)0);
348 * TCP protocol interface to socket abstraction.
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.
362 tcp_sockclosed(struct tcpcb
*tp
)
365 DEBUG_CALL("tcp_sockclosed");
366 DEBUG_ARG("tp = %p", tp
);
372 switch (tp
->t_state
) {
377 tp
->t_state
= TCPS_CLOSED
;
381 case TCPS_SYN_RECEIVED
:
382 case TCPS_ESTABLISHED
:
383 tp
->t_state
= TCPS_FIN_WAIT_1
;
386 case TCPS_CLOSE_WAIT
:
387 tp
->t_state
= TCPS_LAST_ACK
;
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
400 * nonblocking. Connect returns after the SYN is sent, and does
401 * not wait for ACK+SYN.
403 int tcp_fconnect(struct socket
*so
, unsigned short af
)
407 DEBUG_CALL("tcp_fconnect");
408 DEBUG_ARG("so = %p", so
);
410 ret
= so
->s
= qemu_socket(af
, SOCK_STREAM
, 0);
413 struct sockaddr_storage addr
;
415 qemu_set_nonblock(s
);
416 socket_set_fast_reuse(s
);
418 qemu_setsockopt(s
, SOL_SOCKET
, SO_OOBINLINE
, &opt
, sizeof(opt
));
420 qemu_setsockopt(s
, IPPROTO_TCP
, TCP_NODELAY
, &opt
, sizeof(opt
));
423 DEBUG_CALL(" connect()ing")
424 sotranslate_out(so
, &addr
);
426 /* We don't care what port we get */
427 ret
= connect(s
, (struct sockaddr
*)&addr
, sockaddr_size(&addr
));
430 * If it's not in progress, it failed, so we just return 0,
431 * without clearing SS_NOFDREF
440 * Accept the socket and connect to the local-host
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.
445 * But, a) we need to know who's trying to connect
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.
451 void tcp_connect(struct socket
*inso
)
453 Slirp
*slirp
= inso
->slirp
;
455 struct sockaddr_storage addr
;
456 socklen_t addrlen
= sizeof(struct sockaddr_storage
);
460 DEBUG_CALL("tcp_connect");
461 DEBUG_ARG("inso = %p", inso
);
464 * If it's an SS_ACCEPTONCE socket, no need to socreate()
465 * another socket, just use the accept() socket.
467 if (inso
->so_state
& SS_FACCEPTONCE
) {
468 /* FACCEPTONCE already have a tcpcb */
471 so
= socreate(slirp
);
473 /* If it failed, get rid of the pending connection */
474 closesocket(accept(inso
->s
, (struct sockaddr
*)&addr
, &addrlen
));
477 if (tcp_attach(so
) < 0) {
478 free(so
); /* NOT sofree */
481 so
->lhost
= inso
->lhost
;
482 so
->so_ffamily
= inso
->so_ffamily
;
485 tcp_mss(sototcpcb(so
), 0);
487 s
= accept(inso
->s
, (struct sockaddr
*)&addr
, &addrlen
);
489 tcp_close(sototcpcb(so
)); /* This will sofree() as well */
492 qemu_set_nonblock(s
);
493 socket_set_fast_reuse(s
);
495 qemu_setsockopt(s
, SOL_SOCKET
, SO_OOBINLINE
, &opt
, sizeof(int));
496 socket_set_nodelay(s
);
499 sotranslate_accept(so
);
501 /* Close the accept() socket, set right state */
502 if (inso
->so_state
& SS_FACCEPTONCE
) {
503 /* If we only accept once, close the accept() socket */
506 /* Don't select it yet, even though we have an FD */
507 /* if it's not FACCEPTONCE, it's already NOFDREF */
508 so
->so_state
= SS_NOFDREF
;
511 so
->so_state
|= SS_INCOMING
;
513 so
->so_iptos
= tcp_tos(so
);
518 tp
->t_state
= TCPS_SYN_SENT
;
519 tp
->t_timer
[TCPT_KEEP
] = TCPTV_KEEP_INIT
;
520 tp
->iss
= slirp
->tcp_iss
;
521 slirp
->tcp_iss
+= TCP_ISSINCR
/2;
527 * Attach a TCPCB to a socket.
530 tcp_attach(struct socket
*so
)
532 if ((so
->so_tcpcb
= tcp_newtcpcb(so
)) == NULL
)
535 insque(so
, &so
->slirp
->tcb
);
541 * Set the socket's type of service field
543 static const struct tos_t tcptos
[] = {
544 {0, 20, IPTOS_THROUGHPUT
, 0}, /* ftp data */
545 {21, 21, IPTOS_LOWDELAY
, EMU_FTP
}, /* ftp control */
546 {0, 23, IPTOS_LOWDELAY
, 0}, /* telnet */
547 {0, 80, IPTOS_THROUGHPUT
, 0}, /* WWW */
548 {0, 513, IPTOS_LOWDELAY
, EMU_RLOGIN
|EMU_NOCONNECT
}, /* rlogin */
549 {0, 514, IPTOS_LOWDELAY
, EMU_RSH
|EMU_NOCONNECT
}, /* shell */
550 {0, 544, IPTOS_LOWDELAY
, EMU_KSH
}, /* kshell */
551 {0, 543, IPTOS_LOWDELAY
, 0}, /* klogin */
552 {0, 6667, IPTOS_THROUGHPUT
, EMU_IRC
}, /* IRC */
553 {0, 6668, IPTOS_THROUGHPUT
, EMU_IRC
}, /* IRC undernet */
554 {0, 7070, IPTOS_LOWDELAY
, EMU_REALAUDIO
}, /* RealAudio control */
555 {0, 113, IPTOS_LOWDELAY
, EMU_IDENT
}, /* identd protocol */
559 static struct emu_t
*tcpemu
= NULL
;
562 * Return TOS according to the above table
565 tcp_tos(struct socket
*so
)
570 while(tcptos
[i
].tos
) {
571 if ((tcptos
[i
].fport
&& (ntohs(so
->so_fport
) == tcptos
[i
].fport
)) ||
572 (tcptos
[i
].lport
&& (ntohs(so
->so_lport
) == tcptos
[i
].lport
))) {
573 so
->so_emu
= tcptos
[i
].emu
;
574 return tcptos
[i
].tos
;
579 /* Nope, lets see if there's a user-added one */
580 for (emup
= tcpemu
; emup
; emup
= emup
->next
) {
581 if ((emup
->fport
&& (ntohs(so
->so_fport
) == emup
->fport
)) ||
582 (emup
->lport
&& (ntohs(so
->so_lport
) == emup
->lport
))) {
583 so
->so_emu
= emup
->emu
;
592 * Emulate programs that try and connect to us
593 * This includes ftp (the data connection is
594 * initiated by the server) and IRC (DCC CHAT and
597 * NOTE: It's possible to crash SLiRP by sending it
598 * unstandard strings to emulate... if this is a problem,
599 * more checks are needed here
601 * XXX Assumes the whole command came in one packet
603 * XXX Some ftp clients will have their TOS set to
604 * LOWDELAY and so Nagel will kick in. Because of this,
605 * we'll get the first letter, followed by the rest, so
606 * we simply scan for ORT instead of PORT...
607 * DCC doesn't have this problem because there's other stuff
608 * in the packet before the DCC command.
610 * Return 1 if the mbuf m is still valid and should be
613 * NOTE: if you return 0 you MUST m_free() the mbuf!
616 tcp_emu(struct socket
*so
, struct mbuf
*m
)
618 Slirp
*slirp
= so
->slirp
;
619 u_int n1
, n2
, n3
, n4
, n5
, n6
;
625 DEBUG_CALL("tcp_emu");
626 DEBUG_ARG("so = %p", so
);
627 DEBUG_ARG("m = %p", m
);
634 * Identification protocol as per rfc-1413
638 struct socket
*tmpso
;
639 struct sockaddr_in addr
;
640 socklen_t addrlen
= sizeof(struct sockaddr_in
);
641 struct sbuf
*so_rcv
= &so
->so_rcv
;
643 memcpy(so_rcv
->sb_wptr
, m
->m_data
, m
->m_len
);
644 so_rcv
->sb_wptr
+= m
->m_len
;
645 so_rcv
->sb_rptr
+= m
->m_len
;
646 m
->m_data
[m
->m_len
] = 0; /* NULL terminate */
647 if (strchr(m
->m_data
, '\r') || strchr(m
->m_data
, '\n')) {
648 if (sscanf(so_rcv
->sb_data
, "%u%*[ ,]%u", &n1
, &n2
) == 2) {
651 /* n2 is the one on our host */
652 for (tmpso
= slirp
->tcb
.so_next
;
653 tmpso
!= &slirp
->tcb
;
654 tmpso
= tmpso
->so_next
) {
655 if (tmpso
->so_laddr
.s_addr
== so
->so_laddr
.s_addr
&&
656 tmpso
->so_lport
== n2
&&
657 tmpso
->so_faddr
.s_addr
== so
->so_faddr
.s_addr
&&
658 tmpso
->so_fport
== n1
) {
659 if (getsockname(tmpso
->s
,
660 (struct sockaddr
*)&addr
, &addrlen
) == 0)
661 n2
= ntohs(addr
.sin_port
);
666 so_rcv
->sb_cc
= snprintf(so_rcv
->sb_data
,
668 "%d,%d\r\n", n1
, n2
);
669 so_rcv
->sb_rptr
= so_rcv
->sb_data
;
670 so_rcv
->sb_wptr
= so_rcv
->sb_data
+ so_rcv
->sb_cc
;
676 case EMU_FTP
: /* ftp */
677 *(m
->m_data
+m
->m_len
) = 0; /* NUL terminate for strstr */
678 if ((bptr
= (char *)strstr(m
->m_data
, "ORT")) != NULL
) {
680 * Need to emulate the PORT command
682 x
= sscanf(bptr
, "ORT %u,%u,%u,%u,%u,%u\r\n%256[^\177]",
683 &n1
, &n2
, &n3
, &n4
, &n5
, &n6
, buff
);
687 laddr
= htonl((n1
<< 24) | (n2
<< 16) | (n3
<< 8) | (n4
));
688 lport
= htons((n5
<< 8) | (n6
));
690 if ((so
= tcp_listen(slirp
, INADDR_ANY
, 0, laddr
,
691 lport
, SS_FACCEPTONCE
)) == NULL
) {
694 n6
= ntohs(so
->so_fport
);
696 n5
= (n6
>> 8) & 0xff;
699 laddr
= ntohl(so
->so_faddr
.s_addr
);
701 n1
= ((laddr
>> 24) & 0xff);
702 n2
= ((laddr
>> 16) & 0xff);
703 n3
= ((laddr
>> 8) & 0xff);
706 m
->m_len
= bptr
- m
->m_data
; /* Adjust length */
707 m
->m_len
+= snprintf(bptr
, m
->m_size
- m
->m_len
,
708 "ORT %d,%d,%d,%d,%d,%d\r\n%s",
709 n1
, n2
, n3
, n4
, n5
, n6
, x
==7?buff
:"");
711 } else if ((bptr
= (char *)strstr(m
->m_data
, "27 Entering")) != NULL
) {
713 * Need to emulate the PASV response
715 x
= sscanf(bptr
, "27 Entering Passive Mode (%u,%u,%u,%u,%u,%u)\r\n%256[^\177]",
716 &n1
, &n2
, &n3
, &n4
, &n5
, &n6
, buff
);
720 laddr
= htonl((n1
<< 24) | (n2
<< 16) | (n3
<< 8) | (n4
));
721 lport
= htons((n5
<< 8) | (n6
));
723 if ((so
= tcp_listen(slirp
, INADDR_ANY
, 0, laddr
,
724 lport
, SS_FACCEPTONCE
)) == NULL
) {
727 n6
= ntohs(so
->so_fport
);
729 n5
= (n6
>> 8) & 0xff;
732 laddr
= ntohl(so
->so_faddr
.s_addr
);
734 n1
= ((laddr
>> 24) & 0xff);
735 n2
= ((laddr
>> 16) & 0xff);
736 n3
= ((laddr
>> 8) & 0xff);
739 m
->m_len
= bptr
- m
->m_data
; /* Adjust length */
740 m
->m_len
+= snprintf(bptr
, m
->m_size
- m
->m_len
,
741 "27 Entering Passive Mode (%d,%d,%d,%d,%d,%d)\r\n%s",
742 n1
, n2
, n3
, n4
, n5
, n6
, x
==7?buff
:"");
751 * The kshell (Kerberos rsh) and shell services both pass
752 * a local port port number to carry signals to the server
753 * and stderr to the client. It is passed at the beginning
754 * of the connection as a NUL-terminated decimal ASCII string.
757 for (lport
= 0, i
= 0; i
< m
->m_len
-1; ++i
) {
758 if (m
->m_data
[i
] < '0' || m
->m_data
[i
] > '9')
759 return 1; /* invalid number */
761 lport
+= m
->m_data
[i
] - '0';
763 if (m
->m_data
[m
->m_len
-1] == '\0' && lport
!= 0 &&
764 (so
= tcp_listen(slirp
, INADDR_ANY
, 0, so
->so_laddr
.s_addr
,
765 htons(lport
), SS_FACCEPTONCE
)) != NULL
)
766 m
->m_len
= snprintf(m
->m_data
, m
->m_size
, "%d",
767 ntohs(so
->so_fport
)) + 1;
772 * Need to emulate DCC CHAT, DCC SEND and DCC MOVE
774 *(m
->m_data
+m
->m_len
) = 0; /* NULL terminate the string for strstr */
775 if ((bptr
= (char *)strstr(m
->m_data
, "DCC")) == NULL
)
778 /* The %256s is for the broken mIRC */
779 if (sscanf(bptr
, "DCC CHAT %256s %u %u", buff
, &laddr
, &lport
) == 3) {
780 if ((so
= tcp_listen(slirp
, INADDR_ANY
, 0,
781 htonl(laddr
), htons(lport
),
782 SS_FACCEPTONCE
)) == NULL
) {
785 m
->m_len
= bptr
- m
->m_data
; /* Adjust length */
786 m
->m_len
+= snprintf(bptr
, m
->m_size
,
787 "DCC CHAT chat %lu %u%c\n",
788 (unsigned long)ntohl(so
->so_faddr
.s_addr
),
789 ntohs(so
->so_fport
), 1);
790 } else if (sscanf(bptr
, "DCC SEND %256s %u %u %u", buff
, &laddr
, &lport
, &n1
) == 4) {
791 if ((so
= tcp_listen(slirp
, INADDR_ANY
, 0,
792 htonl(laddr
), htons(lport
),
793 SS_FACCEPTONCE
)) == NULL
) {
796 m
->m_len
= bptr
- m
->m_data
; /* Adjust length */
797 m
->m_len
+= snprintf(bptr
, m
->m_size
,
798 "DCC SEND %s %lu %u %u%c\n", buff
,
799 (unsigned long)ntohl(so
->so_faddr
.s_addr
),
800 ntohs(so
->so_fport
), n1
, 1);
801 } else if (sscanf(bptr
, "DCC MOVE %256s %u %u %u", buff
, &laddr
, &lport
, &n1
) == 4) {
802 if ((so
= tcp_listen(slirp
, INADDR_ANY
, 0,
803 htonl(laddr
), htons(lport
),
804 SS_FACCEPTONCE
)) == NULL
) {
807 m
->m_len
= bptr
- m
->m_data
; /* Adjust length */
808 m
->m_len
+= snprintf(bptr
, m
->m_size
,
809 "DCC MOVE %s %lu %u %u%c\n", buff
,
810 (unsigned long)ntohl(so
->so_faddr
.s_addr
),
811 ntohs(so
->so_fport
), n1
, 1);
817 * RealAudio emulation - JP. We must try to parse the incoming
818 * data and try to find the two characters that contain the
819 * port number. Then we redirect an udp port and replace the
820 * number with the real port we got.
822 * The 1.0 beta versions of the player are not supported
825 * A typical packet for player version 1.0 (release version):
827 * 0000:50 4E 41 00 05
828 * 0000:00 01 00 02 1B D7 00 00 67 E6 6C DC 63 00 12 50 ........g.l.c..P
829 * 0010:4E 43 4C 49 45 4E 54 20 31 30 31 20 41 4C 50 48 NCLIENT 101 ALPH
830 * 0020:41 6C 00 00 52 00 17 72 61 66 69 6C 65 73 2F 76 Al..R..rafiles/v
831 * 0030:6F 61 2F 65 6E 67 6C 69 73 68 5F 2E 72 61 79 42 oa/english_.rayB
833 * Now the port number 0x1BD7 is found at offset 0x04 of the
834 * Now the port number 0x1BD7 is found at offset 0x04 of the
835 * second packet. This time we received five bytes first and
836 * then the rest. You never know how many bytes you get.
838 * A typical packet for player version 2.0 (beta):
840 * 0000:50 4E 41 00 06 00 02 00 00 00 01 00 02 1B C1 00 PNA.............
841 * 0010:00 67 75 78 F5 63 00 0A 57 69 6E 32 2E 30 2E 30 .gux.c..Win2.0.0
842 * 0020:2E 35 6C 00 00 52 00 1C 72 61 66 69 6C 65 73 2F .5l..R..rafiles/
843 * 0030:77 65 62 73 69 74 65 2F 32 30 72 65 6C 65 61 73 website/20releas
844 * 0040:65 2E 72 61 79 53 00 00 06 36 42 e.rayS...6B
846 * Port number 0x1BC1 is found at offset 0x0d.
848 * This is just a horrible switch statement. Variable ra tells
849 * us where we're going.
853 while (bptr
< m
->m_data
+ m
->m_len
) {
867 if (*bptr
++ != ra_tbl
[ra
]) {
875 * We may get 0x50 several times, ignore them
881 } else if (*bptr
++ != ra_tbl
[ra
]) {
889 * skip version number
896 * The difference between versions 1.0 and
897 * 2.0 is here. For future versions of
898 * the player this may need to be modified.
900 if (*(bptr
+ 1) == 0x02)
907 /* This is the field containing the port
908 * number that RA-player is listening to.
910 lport
= (((u_char
*)bptr
)[0] << 8)
911 + ((u_char
*)bptr
)[1];
913 lport
+= 256; /* don't know why */
914 if (lport
< 6970 || lport
> 7170)
915 return 1; /* failed */
917 /* try to get udp port between 6970 - 7170 */
918 for (p
= 6970; p
< 7071; p
++) {
919 if (udp_listen(slirp
, INADDR_ANY
,
929 *(u_char
*)bptr
++ = (p
>> 8) & 0xff;
930 *(u_char
*)bptr
= p
& 0xff;
932 return 1; /* port redirected, we're done */
943 /* Ooops, not emulated, won't call tcp_emu again */
950 * Do misc. config of SLiRP while its running.
951 * Return 0 if this connections is to be closed, 1 otherwise,
952 * return 2 if this is a command-line connection
954 int tcp_ctl(struct socket
*so
)
956 Slirp
*slirp
= so
->slirp
;
957 struct sbuf
*sb
= &so
->so_snd
;
958 struct ex_list
*ex_ptr
;
961 DEBUG_CALL("tcp_ctl");
962 DEBUG_ARG("so = %p", so
);
964 if (so
->so_faddr
.s_addr
!= slirp
->vhost_addr
.s_addr
) {
965 /* Check if it's pty_exec */
966 for (ex_ptr
= slirp
->exec_list
; ex_ptr
; ex_ptr
= ex_ptr
->ex_next
) {
967 if (ex_ptr
->ex_fport
== so
->so_fport
&&
968 so
->so_faddr
.s_addr
== ex_ptr
->ex_addr
.s_addr
) {
969 if (ex_ptr
->ex_pty
== 3) {
971 so
->extra
= (void *)ex_ptr
->ex_exec
;
974 do_pty
= ex_ptr
->ex_pty
;
975 DEBUG_MISC((dfd
, " executing %s\n", ex_ptr
->ex_exec
));
976 return fork_exec(so
, ex_ptr
->ex_exec
, do_pty
);
981 snprintf(sb
->sb_wptr
, sb
->sb_datalen
- (sb
->sb_wptr
- sb
->sb_data
),
982 "Error: No application configured.\r\n");
983 sb
->sb_wptr
+= sb
->sb_cc
;