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