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