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. |
| 13 | * 3. All advertising materials mentioning features or use of this software |
| 14 | * must display the following acknowledgement: |
| 15 | * This product includes software developed by the University of |
| 16 | * California, Berkeley and its contributors. |
| 17 | * 4. Neither the name of the University nor the names of its contributors |
| 18 | * may be used to endorse or promote products derived from this software |
| 19 | * without specific prior written permission. |
| 20 | * |
| 21 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 22 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 23 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 24 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 25 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 26 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 27 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 28 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 29 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 30 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 31 | * SUCH DAMAGE. |
| 32 | * |
| 33 | * @(#)tcp_subr.c 8.1 (Berkeley) 6/10/93 |
| 34 | * tcp_subr.c,v 1.5 1994/10/08 22:39:58 phk Exp |
| 35 | */ |
| 36 | |
| 37 | /* |
| 38 | * Changes and additions relating to SLiRP |
| 39 | * Copyright (c) 1995 Danny Gasparovski. |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 40 | * |
| 41 | * Please read the file COPYRIGHT for the |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 42 | * terms and conditions of the copyright. |
| 43 | */ |
| 44 | |
| 45 | #define WANT_SYS_IOCTL_H |
| 46 | #include <slirp.h> |
| 47 | |
| 48 | /* patchable/settable parameters for tcp */ |
blueswir1 | 9634d90 | 2007-10-26 19:01:16 +0000 | [diff] [blame] | 49 | /* Don't do rfc1323 performance enhancements */ |
| 50 | #define TCP_DO_RFC1323 0 |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 51 | |
| 52 | /* |
| 53 | * Tcp initialization |
| 54 | */ |
| 55 | void |
| 56 | tcp_init() |
| 57 | { |
| 58 | tcp_iss = 1; /* wrong */ |
| 59 | tcb.so_next = tcb.so_prev = &tcb; |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | /* |
| 63 | * Create template to be used to send tcp packets on a connection. |
| 64 | * Call after host entry created, fills |
| 65 | * in a skeletal tcp/ip header, minimizing the amount of work |
| 66 | * necessary when the connection is used. |
| 67 | */ |
| 68 | /* struct tcpiphdr * */ |
| 69 | void |
| 70 | tcp_template(tp) |
| 71 | struct tcpcb *tp; |
| 72 | { |
| 73 | struct socket *so = tp->t_socket; |
| 74 | register struct tcpiphdr *n = &tp->t_template; |
| 75 | |
blueswir1 | 429d0a3 | 2009-01-13 19:48:42 +0000 | [diff] [blame] | 76 | n->ti_mbuf = NULL; |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 77 | n->ti_x1 = 0; |
| 78 | n->ti_pr = IPPROTO_TCP; |
| 79 | n->ti_len = htons(sizeof (struct tcpiphdr) - sizeof (struct ip)); |
| 80 | n->ti_src = so->so_faddr; |
| 81 | n->ti_dst = so->so_laddr; |
| 82 | n->ti_sport = so->so_fport; |
| 83 | n->ti_dport = so->so_lport; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 84 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 85 | n->ti_seq = 0; |
| 86 | n->ti_ack = 0; |
| 87 | n->ti_x2 = 0; |
| 88 | n->ti_off = 5; |
| 89 | n->ti_flags = 0; |
| 90 | n->ti_win = 0; |
| 91 | n->ti_sum = 0; |
| 92 | n->ti_urp = 0; |
| 93 | } |
| 94 | |
| 95 | /* |
| 96 | * Send a single message to the TCP at address specified by |
| 97 | * the given TCP/IP header. If m == 0, then we make a copy |
| 98 | * of the tcpiphdr at ti and send directly to the addressed host. |
| 99 | * This is used to force keep alive messages out using the TCP |
| 100 | * template for a connection tp->t_template. If flags are given |
| 101 | * then we send a message back to the TCP which originated the |
| 102 | * segment ti, and discard the mbuf containing it and any other |
| 103 | * attached mbufs. |
| 104 | * |
| 105 | * In any case the ack and sequence number of the transmitted |
| 106 | * segment are as specified by the parameters. |
| 107 | */ |
| 108 | void |
| 109 | tcp_respond(tp, ti, m, ack, seq, flags) |
| 110 | struct tcpcb *tp; |
| 111 | register struct tcpiphdr *ti; |
| 112 | register struct mbuf *m; |
| 113 | tcp_seq ack, seq; |
| 114 | int flags; |
| 115 | { |
| 116 | register int tlen; |
| 117 | int win = 0; |
| 118 | |
| 119 | DEBUG_CALL("tcp_respond"); |
| 120 | DEBUG_ARG("tp = %lx", (long)tp); |
| 121 | DEBUG_ARG("ti = %lx", (long)ti); |
| 122 | DEBUG_ARG("m = %lx", (long)m); |
| 123 | DEBUG_ARG("ack = %u", ack); |
| 124 | DEBUG_ARG("seq = %u", seq); |
| 125 | DEBUG_ARG("flags = %x", flags); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 126 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 127 | if (tp) |
| 128 | win = sbspace(&tp->t_socket->so_rcv); |
| 129 | if (m == 0) { |
| 130 | if ((m = m_get()) == NULL) |
| 131 | return; |
| 132 | #ifdef TCP_COMPAT_42 |
| 133 | tlen = 1; |
| 134 | #else |
| 135 | tlen = 0; |
| 136 | #endif |
blueswir1 | 9634d90 | 2007-10-26 19:01:16 +0000 | [diff] [blame] | 137 | m->m_data += IF_MAXLINKHDR; |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 138 | *mtod(m, struct tcpiphdr *) = *ti; |
| 139 | ti = mtod(m, struct tcpiphdr *); |
| 140 | flags = TH_ACK; |
| 141 | } else { |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 142 | /* |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 143 | * ti points into m so the next line is just making |
| 144 | * the mbuf point to ti |
| 145 | */ |
| 146 | m->m_data = (caddr_t)ti; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 147 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 148 | m->m_len = sizeof (struct tcpiphdr); |
| 149 | tlen = 0; |
| 150 | #define xchg(a,b,type) { type t; t=a; a=b; b=t; } |
| 151 | xchg(ti->ti_dst.s_addr, ti->ti_src.s_addr, u_int32_t); |
| 152 | xchg(ti->ti_dport, ti->ti_sport, u_int16_t); |
| 153 | #undef xchg |
| 154 | } |
| 155 | ti->ti_len = htons((u_short)(sizeof (struct tcphdr) + tlen)); |
| 156 | tlen += sizeof (struct tcpiphdr); |
| 157 | m->m_len = tlen; |
| 158 | |
blueswir1 | 429d0a3 | 2009-01-13 19:48:42 +0000 | [diff] [blame] | 159 | ti->ti_mbuf = 0; |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 160 | ti->ti_x1 = 0; |
| 161 | ti->ti_seq = htonl(seq); |
| 162 | ti->ti_ack = htonl(ack); |
| 163 | ti->ti_x2 = 0; |
| 164 | ti->ti_off = sizeof (struct tcphdr) >> 2; |
| 165 | ti->ti_flags = flags; |
| 166 | if (tp) |
| 167 | ti->ti_win = htons((u_int16_t) (win >> tp->rcv_scale)); |
| 168 | else |
| 169 | ti->ti_win = htons((u_int16_t)win); |
| 170 | ti->ti_urp = 0; |
| 171 | ti->ti_sum = 0; |
| 172 | ti->ti_sum = cksum(m, tlen); |
| 173 | ((struct ip *)ti)->ip_len = tlen; |
| 174 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 175 | if(flags & TH_RST) |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 176 | ((struct ip *)ti)->ip_ttl = MAXTTL; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 177 | else |
blueswir1 | 9634d90 | 2007-10-26 19:01:16 +0000 | [diff] [blame] | 178 | ((struct ip *)ti)->ip_ttl = IPDEFTTL; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 179 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 180 | (void) ip_output((struct socket *)0, m); |
| 181 | } |
| 182 | |
| 183 | /* |
| 184 | * Create a new TCP control block, making an |
| 185 | * empty reassembly queue and hooking it to the argument |
| 186 | * protocol control block. |
| 187 | */ |
| 188 | struct tcpcb * |
| 189 | tcp_newtcpcb(so) |
| 190 | struct socket *so; |
| 191 | { |
| 192 | register struct tcpcb *tp; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 193 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 194 | tp = (struct tcpcb *)malloc(sizeof(*tp)); |
| 195 | if (tp == NULL) |
| 196 | return ((struct tcpcb *)0); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 197 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 198 | memset((char *) tp, 0, sizeof(struct tcpcb)); |
blueswir1 | 429d0a3 | 2009-01-13 19:48:42 +0000 | [diff] [blame] | 199 | tp->seg_next = tp->seg_prev = (struct tcpiphdr*)tp; |
blueswir1 | 9634d90 | 2007-10-26 19:01:16 +0000 | [diff] [blame] | 200 | tp->t_maxseg = TCP_MSS; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 201 | |
blueswir1 | 9634d90 | 2007-10-26 19:01:16 +0000 | [diff] [blame] | 202 | tp->t_flags = TCP_DO_RFC1323 ? (TF_REQ_SCALE|TF_REQ_TSTMP) : 0; |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 203 | tp->t_socket = so; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 204 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 205 | /* |
| 206 | * Init srtt to TCPTV_SRTTBASE (0), so we can tell that we have no |
| 207 | * rtt estimate. Set rttvar so that srtt + 2 * rttvar gives |
| 208 | * reasonable initial retransmit time. |
| 209 | */ |
| 210 | tp->t_srtt = TCPTV_SRTTBASE; |
blueswir1 | 9634d90 | 2007-10-26 19:01:16 +0000 | [diff] [blame] | 211 | tp->t_rttvar = TCPTV_SRTTDFLT << 2; |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 212 | tp->t_rttmin = TCPTV_MIN; |
| 213 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 214 | TCPT_RANGESET(tp->t_rxtcur, |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 215 | ((TCPTV_SRTTBASE >> 2) + (TCPTV_SRTTDFLT << 2)) >> 1, |
| 216 | TCPTV_MIN, TCPTV_REXMTMAX); |
| 217 | |
| 218 | tp->snd_cwnd = TCP_MAXWIN << TCP_MAX_WINSHIFT; |
| 219 | tp->snd_ssthresh = TCP_MAXWIN << TCP_MAX_WINSHIFT; |
| 220 | tp->t_state = TCPS_CLOSED; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 221 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 222 | so->so_tcpcb = tp; |
| 223 | |
| 224 | return (tp); |
| 225 | } |
| 226 | |
| 227 | /* |
| 228 | * Drop a TCP connection, reporting |
| 229 | * the specified error. If connection is synchronized, |
| 230 | * then send a RST to peer. |
| 231 | */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 232 | struct tcpcb *tcp_drop(struct tcpcb *tp, int err) |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 233 | { |
| 234 | /* tcp_drop(tp, errno) |
| 235 | register struct tcpcb *tp; |
| 236 | int errno; |
| 237 | { |
| 238 | */ |
| 239 | |
| 240 | DEBUG_CALL("tcp_drop"); |
| 241 | DEBUG_ARG("tp = %lx", (long)tp); |
| 242 | DEBUG_ARG("errno = %d", errno); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 243 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 244 | if (TCPS_HAVERCVDSYN(tp->t_state)) { |
| 245 | tp->t_state = TCPS_CLOSED; |
| 246 | (void) tcp_output(tp); |
blueswir1 | 31a60e2 | 2007-10-26 18:42:59 +0000 | [diff] [blame] | 247 | STAT(tcpstat.tcps_drops++); |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 248 | } else |
blueswir1 | 31a60e2 | 2007-10-26 18:42:59 +0000 | [diff] [blame] | 249 | STAT(tcpstat.tcps_conndrops++); |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 250 | /* if (errno == ETIMEDOUT && tp->t_softerror) |
| 251 | * errno = tp->t_softerror; |
| 252 | */ |
| 253 | /* so->so_error = errno; */ |
| 254 | return (tcp_close(tp)); |
| 255 | } |
| 256 | |
| 257 | /* |
| 258 | * Close a TCP control block: |
| 259 | * discard all space held by the tcp |
| 260 | * discard internet protocol block |
| 261 | * wake up any sleepers |
| 262 | */ |
| 263 | struct tcpcb * |
| 264 | tcp_close(tp) |
| 265 | register struct tcpcb *tp; |
| 266 | { |
| 267 | register struct tcpiphdr *t; |
| 268 | struct socket *so = tp->t_socket; |
| 269 | register struct mbuf *m; |
| 270 | |
| 271 | DEBUG_CALL("tcp_close"); |
| 272 | DEBUG_ARG("tp = %lx", (long )tp); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 273 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 274 | /* free the reassembly queue, if any */ |
blueswir1 | 429d0a3 | 2009-01-13 19:48:42 +0000 | [diff] [blame] | 275 | t = tcpfrag_list_first(tp); |
| 276 | while (!tcpfrag_list_end(t, tp)) { |
| 277 | t = tcpiphdr_next(t); |
| 278 | m = tcpiphdr_prev(t)->ti_mbuf; |
| 279 | remque(tcpiphdr2qlink(tcpiphdr_prev(t))); |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 280 | m_freem(m); |
| 281 | } |
| 282 | /* It's static */ |
| 283 | /* if (tp->t_template) |
| 284 | * (void) m_free(dtom(tp->t_template)); |
| 285 | */ |
| 286 | /* free(tp, M_PCB); */ |
| 287 | free(tp); |
| 288 | so->so_tcpcb = 0; |
| 289 | soisfdisconnected(so); |
| 290 | /* clobber input socket cache if we're closing the cached connection */ |
| 291 | if (so == tcp_last_so) |
| 292 | tcp_last_so = &tcb; |
bellard | 379ff53 | 2004-07-12 22:33:07 +0000 | [diff] [blame] | 293 | closesocket(so->s); |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 294 | sbfree(&so->so_rcv); |
| 295 | sbfree(&so->so_snd); |
| 296 | sofree(so); |
blueswir1 | 31a60e2 | 2007-10-26 18:42:59 +0000 | [diff] [blame] | 297 | STAT(tcpstat.tcps_closed++); |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 298 | return ((struct tcpcb *)0); |
| 299 | } |
| 300 | |
blueswir1 | 9634d90 | 2007-10-26 19:01:16 +0000 | [diff] [blame] | 301 | #ifdef notdef |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 302 | void |
| 303 | tcp_drain() |
| 304 | { |
| 305 | /* XXX */ |
| 306 | } |
| 307 | |
| 308 | /* |
| 309 | * When a source quench is received, close congestion window |
| 310 | * to one segment. We will gradually open it again as we proceed. |
| 311 | */ |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 312 | void |
| 313 | tcp_quench(i, errno) |
| 314 | |
| 315 | int errno; |
| 316 | { |
| 317 | struct tcpcb *tp = intotcpcb(inp); |
| 318 | |
| 319 | if (tp) |
| 320 | tp->snd_cwnd = tp->t_maxseg; |
| 321 | } |
| 322 | |
| 323 | #endif /* notdef */ |
| 324 | |
| 325 | /* |
| 326 | * TCP protocol interface to socket abstraction. |
| 327 | */ |
| 328 | |
| 329 | /* |
| 330 | * User issued close, and wish to trail through shutdown states: |
| 331 | * if never received SYN, just forget it. If got a SYN from peer, |
| 332 | * but haven't sent FIN, then go to FIN_WAIT_1 state to send peer a FIN. |
| 333 | * If already got a FIN from peer, then almost done; go to LAST_ACK |
| 334 | * state. In all other cases, have already sent FIN to peer (e.g. |
| 335 | * after PRU_SHUTDOWN), and just have to play tedious game waiting |
| 336 | * for peer to send FIN or not respond to keep-alives, etc. |
| 337 | * We can let the user exit from the close as soon as the FIN is acked. |
| 338 | */ |
| 339 | void |
| 340 | tcp_sockclosed(tp) |
| 341 | struct tcpcb *tp; |
| 342 | { |
| 343 | |
| 344 | DEBUG_CALL("tcp_sockclosed"); |
| 345 | DEBUG_ARG("tp = %lx", (long)tp); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 346 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 347 | switch (tp->t_state) { |
| 348 | |
| 349 | case TCPS_CLOSED: |
| 350 | case TCPS_LISTEN: |
| 351 | case TCPS_SYN_SENT: |
| 352 | tp->t_state = TCPS_CLOSED; |
| 353 | tp = tcp_close(tp); |
| 354 | break; |
| 355 | |
| 356 | case TCPS_SYN_RECEIVED: |
| 357 | case TCPS_ESTABLISHED: |
| 358 | tp->t_state = TCPS_FIN_WAIT_1; |
| 359 | break; |
| 360 | |
| 361 | case TCPS_CLOSE_WAIT: |
| 362 | tp->t_state = TCPS_LAST_ACK; |
| 363 | break; |
| 364 | } |
| 365 | /* soisfdisconnecting(tp->t_socket); */ |
| 366 | if (tp && tp->t_state >= TCPS_FIN_WAIT_2) |
| 367 | soisfdisconnected(tp->t_socket); |
| 368 | if (tp) |
| 369 | tcp_output(tp); |
| 370 | } |
| 371 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 372 | /* |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 373 | * Connect to a host on the Internet |
| 374 | * Called by tcp_input |
| 375 | * Only do a connect, the tcp fields will be set in tcp_input |
| 376 | * return 0 if there's a result of the connect, |
| 377 | * else return -1 means we're still connecting |
| 378 | * The return value is almost always -1 since the socket is |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 379 | * nonblocking. Connect returns after the SYN is sent, and does |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 380 | * not wait for ACK+SYN. |
| 381 | */ |
| 382 | int tcp_fconnect(so) |
| 383 | struct socket *so; |
| 384 | { |
| 385 | int ret=0; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 386 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 387 | DEBUG_CALL("tcp_fconnect"); |
| 388 | DEBUG_ARG("so = %lx", (long )so); |
| 389 | |
| 390 | if( (ret=so->s=socket(AF_INET,SOCK_STREAM,0)) >= 0) { |
| 391 | int opt, s=so->s; |
| 392 | struct sockaddr_in addr; |
| 393 | |
| 394 | fd_nonblock(s); |
| 395 | opt = 1; |
| 396 | setsockopt(s,SOL_SOCKET,SO_REUSEADDR,(char *)&opt,sizeof(opt )); |
| 397 | opt = 1; |
| 398 | setsockopt(s,SOL_SOCKET,SO_OOBINLINE,(char *)&opt,sizeof(opt )); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 399 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 400 | addr.sin_family = AF_INET; |
| 401 | if ((so->so_faddr.s_addr & htonl(0xffffff00)) == special_addr.s_addr) { |
| 402 | /* It's an alias */ |
| 403 | switch(ntohl(so->so_faddr.s_addr) & 0xff) { |
| 404 | case CTL_DNS: |
| 405 | addr.sin_addr = dns_addr; |
| 406 | break; |
| 407 | case CTL_ALIAS: |
| 408 | default: |
| 409 | addr.sin_addr = loopback_addr; |
| 410 | break; |
| 411 | } |
| 412 | } else |
| 413 | addr.sin_addr = so->so_faddr; |
| 414 | addr.sin_port = so->so_fport; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 415 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 416 | DEBUG_MISC((dfd, " connect()ing, addr.sin_port=%d, " |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 417 | "addr.sin_addr.s_addr=%.16s\n", |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 418 | ntohs(addr.sin_port), inet_ntoa(addr.sin_addr))); |
| 419 | /* We don't care what port we get */ |
| 420 | ret = connect(s,(struct sockaddr *)&addr,sizeof (addr)); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 421 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 422 | /* |
| 423 | * If it's not in progress, it failed, so we just return 0, |
| 424 | * without clearing SS_NOFDREF |
| 425 | */ |
| 426 | soisfconnecting(so); |
| 427 | } |
| 428 | |
| 429 | return(ret); |
| 430 | } |
| 431 | |
| 432 | /* |
| 433 | * Accept the socket and connect to the local-host |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 434 | * |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 435 | * We have a problem. The correct thing to do would be |
| 436 | * to first connect to the local-host, and only if the |
| 437 | * connection is accepted, then do an accept() here. |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 438 | * But, a) we need to know who's trying to connect |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 439 | * to the socket to be able to SYN the local-host, and |
| 440 | * b) we are already connected to the foreign host by |
| 441 | * the time it gets to accept(), so... We simply accept |
| 442 | * here and SYN the local-host. |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 443 | */ |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 444 | void |
| 445 | tcp_connect(inso) |
| 446 | struct socket *inso; |
| 447 | { |
| 448 | struct socket *so; |
| 449 | struct sockaddr_in addr; |
blueswir1 | b55266b | 2008-09-20 08:07:15 +0000 | [diff] [blame] | 450 | socklen_t addrlen = sizeof(struct sockaddr_in); |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 451 | struct tcpcb *tp; |
| 452 | int s, opt; |
| 453 | |
| 454 | DEBUG_CALL("tcp_connect"); |
| 455 | DEBUG_ARG("inso = %lx", (long)inso); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 456 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 457 | /* |
| 458 | * If it's an SS_ACCEPTONCE socket, no need to socreate() |
| 459 | * another socket, just use the accept() socket. |
| 460 | */ |
| 461 | if (inso->so_state & SS_FACCEPTONCE) { |
| 462 | /* FACCEPTONCE already have a tcpcb */ |
| 463 | so = inso; |
| 464 | } else { |
| 465 | if ((so = socreate()) == NULL) { |
| 466 | /* If it failed, get rid of the pending connection */ |
bellard | 379ff53 | 2004-07-12 22:33:07 +0000 | [diff] [blame] | 467 | closesocket(accept(inso->s,(struct sockaddr *)&addr,&addrlen)); |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 468 | return; |
| 469 | } |
| 470 | if (tcp_attach(so) < 0) { |
| 471 | free(so); /* NOT sofree */ |
| 472 | return; |
| 473 | } |
| 474 | so->so_laddr = inso->so_laddr; |
| 475 | so->so_lport = inso->so_lport; |
| 476 | } |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 477 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 478 | (void) tcp_mss(sototcpcb(so), 0); |
| 479 | |
| 480 | if ((s = accept(inso->s,(struct sockaddr *)&addr,&addrlen)) < 0) { |
| 481 | tcp_close(sototcpcb(so)); /* This will sofree() as well */ |
| 482 | return; |
| 483 | } |
| 484 | fd_nonblock(s); |
| 485 | opt = 1; |
| 486 | setsockopt(s,SOL_SOCKET,SO_REUSEADDR,(char *)&opt,sizeof(int)); |
| 487 | opt = 1; |
| 488 | setsockopt(s,SOL_SOCKET,SO_OOBINLINE,(char *)&opt,sizeof(int)); |
ths | eaf7e70 | 2006-12-21 19:10:59 +0000 | [diff] [blame] | 489 | opt = 1; |
| 490 | setsockopt(s,IPPROTO_TCP,TCP_NODELAY,(char *)&opt,sizeof(int)); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 491 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 492 | so->so_fport = addr.sin_port; |
| 493 | so->so_faddr = addr.sin_addr; |
| 494 | /* Translate connections from localhost to the real hostname */ |
| 495 | if (so->so_faddr.s_addr == 0 || so->so_faddr.s_addr == loopback_addr.s_addr) |
bellard | 8dbca8d | 2006-05-03 19:58:17 +0000 | [diff] [blame] | 496 | so->so_faddr = alias_addr; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 497 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 498 | /* Close the accept() socket, set right state */ |
| 499 | if (inso->so_state & SS_FACCEPTONCE) { |
bellard | 379ff53 | 2004-07-12 22:33:07 +0000 | [diff] [blame] | 500 | closesocket(so->s); /* If we only accept once, close the accept() socket */ |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 501 | so->so_state = SS_NOFDREF; /* Don't select it yet, even though we have an FD */ |
| 502 | /* if it's not FACCEPTONCE, it's already NOFDREF */ |
| 503 | } |
| 504 | so->s = s; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 505 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 506 | so->so_iptos = tcp_tos(so); |
| 507 | tp = sototcpcb(so); |
| 508 | |
| 509 | tcp_template(tp); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 510 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 511 | /* Compute window scaling to request. */ |
| 512 | /* while (tp->request_r_scale < TCP_MAX_WINSHIFT && |
| 513 | * (TCP_MAXWIN << tp->request_r_scale) < so->so_rcv.sb_hiwat) |
| 514 | * tp->request_r_scale++; |
| 515 | */ |
| 516 | |
| 517 | /* soisconnecting(so); */ /* NOFDREF used instead */ |
blueswir1 | 31a60e2 | 2007-10-26 18:42:59 +0000 | [diff] [blame] | 518 | STAT(tcpstat.tcps_connattempt++); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 519 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 520 | tp->t_state = TCPS_SYN_SENT; |
| 521 | tp->t_timer[TCPT_KEEP] = TCPTV_KEEP_INIT; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 522 | tp->iss = tcp_iss; |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 523 | tcp_iss += TCP_ISSINCR/2; |
| 524 | tcp_sendseqinit(tp); |
| 525 | tcp_output(tp); |
| 526 | } |
| 527 | |
| 528 | /* |
| 529 | * Attach a TCPCB to a socket. |
| 530 | */ |
| 531 | int |
| 532 | tcp_attach(so) |
| 533 | struct socket *so; |
| 534 | { |
| 535 | if ((so->so_tcpcb = tcp_newtcpcb(so)) == NULL) |
| 536 | return -1; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 537 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 538 | insque(so, &tcb); |
| 539 | |
| 540 | return 0; |
| 541 | } |
| 542 | |
| 543 | /* |
| 544 | * Set the socket's type of service field |
| 545 | */ |
blueswir1 | 9634d90 | 2007-10-26 19:01:16 +0000 | [diff] [blame] | 546 | static const struct tos_t tcptos[] = { |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 547 | {0, 20, IPTOS_THROUGHPUT, 0}, /* ftp data */ |
| 548 | {21, 21, IPTOS_LOWDELAY, EMU_FTP}, /* ftp control */ |
| 549 | {0, 23, IPTOS_LOWDELAY, 0}, /* telnet */ |
| 550 | {0, 80, IPTOS_THROUGHPUT, 0}, /* WWW */ |
| 551 | {0, 513, IPTOS_LOWDELAY, EMU_RLOGIN|EMU_NOCONNECT}, /* rlogin */ |
| 552 | {0, 514, IPTOS_LOWDELAY, EMU_RSH|EMU_NOCONNECT}, /* shell */ |
| 553 | {0, 544, IPTOS_LOWDELAY, EMU_KSH}, /* kshell */ |
| 554 | {0, 543, IPTOS_LOWDELAY, 0}, /* klogin */ |
| 555 | {0, 6667, IPTOS_THROUGHPUT, EMU_IRC}, /* IRC */ |
| 556 | {0, 6668, IPTOS_THROUGHPUT, EMU_IRC}, /* IRC undernet */ |
| 557 | {0, 7070, IPTOS_LOWDELAY, EMU_REALAUDIO }, /* RealAudio control */ |
| 558 | {0, 113, IPTOS_LOWDELAY, EMU_IDENT }, /* identd protocol */ |
| 559 | {0, 0, 0, 0} |
| 560 | }; |
| 561 | |
blueswir1 | 7c82986 | 2007-11-01 19:23:51 +0000 | [diff] [blame] | 562 | #ifdef CONFIG_QEMU |
| 563 | static |
| 564 | #endif |
| 565 | struct emu_t *tcpemu = 0; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 566 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 567 | /* |
| 568 | * Return TOS according to the above table |
| 569 | */ |
| 570 | u_int8_t |
| 571 | tcp_tos(so) |
| 572 | struct socket *so; |
| 573 | { |
| 574 | int i = 0; |
| 575 | struct emu_t *emup; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 576 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 577 | while(tcptos[i].tos) { |
| 578 | if ((tcptos[i].fport && (ntohs(so->so_fport) == tcptos[i].fport)) || |
| 579 | (tcptos[i].lport && (ntohs(so->so_lport) == tcptos[i].lport))) { |
| 580 | so->so_emu = tcptos[i].emu; |
| 581 | return tcptos[i].tos; |
| 582 | } |
| 583 | i++; |
| 584 | } |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 585 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 586 | /* Nope, lets see if there's a user-added one */ |
| 587 | for (emup = tcpemu; emup; emup = emup->next) { |
| 588 | if ((emup->fport && (ntohs(so->so_fport) == emup->fport)) || |
| 589 | (emup->lport && (ntohs(so->so_lport) == emup->lport))) { |
| 590 | so->so_emu = emup->emu; |
| 591 | return emup->tos; |
| 592 | } |
| 593 | } |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 594 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 595 | return 0; |
| 596 | } |
| 597 | |
blueswir1 | 7878ff6 | 2007-10-26 19:34:46 +0000 | [diff] [blame] | 598 | #if 0 |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 599 | int do_echo = -1; |
blueswir1 | 7878ff6 | 2007-10-26 19:34:46 +0000 | [diff] [blame] | 600 | #endif |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 601 | |
| 602 | /* |
| 603 | * Emulate programs that try and connect to us |
| 604 | * This includes ftp (the data connection is |
| 605 | * initiated by the server) and IRC (DCC CHAT and |
| 606 | * DCC SEND) for now |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 607 | * |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 608 | * NOTE: It's possible to crash SLiRP by sending it |
| 609 | * unstandard strings to emulate... if this is a problem, |
| 610 | * more checks are needed here |
| 611 | * |
| 612 | * XXX Assumes the whole command came in one packet |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 613 | * |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 614 | * XXX Some ftp clients will have their TOS set to |
| 615 | * LOWDELAY and so Nagel will kick in. Because of this, |
| 616 | * we'll get the first letter, followed by the rest, so |
| 617 | * we simply scan for ORT instead of PORT... |
| 618 | * DCC doesn't have this problem because there's other stuff |
| 619 | * in the packet before the DCC command. |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 620 | * |
| 621 | * Return 1 if the mbuf m is still valid and should be |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 622 | * sbappend()ed |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 623 | * |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 624 | * NOTE: if you return 0 you MUST m_free() the mbuf! |
| 625 | */ |
| 626 | int |
| 627 | tcp_emu(so, m) |
| 628 | struct socket *so; |
| 629 | struct mbuf *m; |
| 630 | { |
| 631 | u_int n1, n2, n3, n4, n5, n6; |
blueswir1 | 363a37d | 2008-08-21 17:58:08 +0000 | [diff] [blame] | 632 | char buff[257]; |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 633 | u_int32_t laddr; |
| 634 | u_int lport; |
| 635 | char *bptr; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 636 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 637 | DEBUG_CALL("tcp_emu"); |
| 638 | DEBUG_ARG("so = %lx", (long)so); |
| 639 | DEBUG_ARG("m = %lx", (long)m); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 640 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 641 | switch(so->so_emu) { |
| 642 | int x, i; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 643 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 644 | case EMU_IDENT: |
| 645 | /* |
| 646 | * Identification protocol as per rfc-1413 |
| 647 | */ |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 648 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 649 | { |
| 650 | struct socket *tmpso; |
| 651 | struct sockaddr_in addr; |
blueswir1 | b55266b | 2008-09-20 08:07:15 +0000 | [diff] [blame] | 652 | socklen_t addrlen = sizeof(struct sockaddr_in); |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 653 | struct sbuf *so_rcv = &so->so_rcv; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 654 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 655 | memcpy(so_rcv->sb_wptr, m->m_data, m->m_len); |
| 656 | so_rcv->sb_wptr += m->m_len; |
| 657 | so_rcv->sb_rptr += m->m_len; |
| 658 | m->m_data[m->m_len] = 0; /* NULL terminate */ |
| 659 | if (strchr(m->m_data, '\r') || strchr(m->m_data, '\n')) { |
blueswir1 | 9634d90 | 2007-10-26 19:01:16 +0000 | [diff] [blame] | 660 | if (sscanf(so_rcv->sb_data, "%u%*[ ,]%u", &n1, &n2) == 2) { |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 661 | HTONS(n1); |
| 662 | HTONS(n2); |
| 663 | /* n2 is the one on our host */ |
| 664 | for (tmpso = tcb.so_next; tmpso != &tcb; tmpso = tmpso->so_next) { |
| 665 | if (tmpso->so_laddr.s_addr == so->so_laddr.s_addr && |
| 666 | tmpso->so_lport == n2 && |
| 667 | tmpso->so_faddr.s_addr == so->so_faddr.s_addr && |
| 668 | tmpso->so_fport == n1) { |
| 669 | if (getsockname(tmpso->s, |
| 670 | (struct sockaddr *)&addr, &addrlen) == 0) |
| 671 | n2 = ntohs(addr.sin_port); |
| 672 | break; |
| 673 | } |
| 674 | } |
| 675 | } |
blueswir1 | 363a37d | 2008-08-21 17:58:08 +0000 | [diff] [blame] | 676 | so_rcv->sb_cc = snprintf(so_rcv->sb_data, |
| 677 | so_rcv->sb_datalen, |
| 678 | "%d,%d\r\n", n1, n2); |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 679 | so_rcv->sb_rptr = so_rcv->sb_data; |
| 680 | so_rcv->sb_wptr = so_rcv->sb_data + so_rcv->sb_cc; |
| 681 | } |
| 682 | m_free(m); |
| 683 | return 0; |
| 684 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 685 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 686 | #if 0 |
| 687 | case EMU_RLOGIN: |
| 688 | /* |
| 689 | * Rlogin emulation |
| 690 | * First we accumulate all the initial option negotiation, |
| 691 | * then fork_exec() rlogin according to the options |
| 692 | */ |
| 693 | { |
| 694 | int i, i2, n; |
| 695 | char *ptr; |
| 696 | char args[100]; |
| 697 | char term[100]; |
| 698 | struct sbuf *so_snd = &so->so_snd; |
| 699 | struct sbuf *so_rcv = &so->so_rcv; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 700 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 701 | /* First check if they have a priveladged port, or too much data has arrived */ |
| 702 | if (ntohs(so->so_lport) > 1023 || ntohs(so->so_lport) < 512 || |
| 703 | (m->m_len + so_rcv->sb_wptr) > (so_rcv->sb_data + so_rcv->sb_datalen)) { |
| 704 | memcpy(so_snd->sb_wptr, "Permission denied\n", 18); |
| 705 | so_snd->sb_wptr += 18; |
| 706 | so_snd->sb_cc += 18; |
| 707 | tcp_sockclosed(sototcpcb(so)); |
| 708 | m_free(m); |
| 709 | return 0; |
| 710 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 711 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 712 | /* Append the current data */ |
| 713 | memcpy(so_rcv->sb_wptr, m->m_data, m->m_len); |
| 714 | so_rcv->sb_wptr += m->m_len; |
| 715 | so_rcv->sb_rptr += m->m_len; |
| 716 | m_free(m); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 717 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 718 | /* |
| 719 | * Check if we have all the initial options, |
| 720 | * and build argument list to rlogin while we're here |
| 721 | */ |
| 722 | n = 0; |
| 723 | ptr = so_rcv->sb_data; |
| 724 | args[0] = 0; |
| 725 | term[0] = 0; |
| 726 | while (ptr < so_rcv->sb_wptr) { |
| 727 | if (*ptr++ == 0) { |
| 728 | n++; |
| 729 | if (n == 2) { |
| 730 | sprintf(args, "rlogin -l %s %s", |
| 731 | ptr, inet_ntoa(so->so_faddr)); |
| 732 | } else if (n == 3) { |
| 733 | i2 = so_rcv->sb_wptr - ptr; |
| 734 | for (i = 0; i < i2; i++) { |
| 735 | if (ptr[i] == '/') { |
| 736 | ptr[i] = 0; |
| 737 | #ifdef HAVE_SETENV |
| 738 | sprintf(term, "%s", ptr); |
| 739 | #else |
| 740 | sprintf(term, "TERM=%s", ptr); |
| 741 | #endif |
| 742 | ptr[i] = '/'; |
| 743 | break; |
| 744 | } |
| 745 | } |
| 746 | } |
| 747 | } |
| 748 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 749 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 750 | if (n != 4) |
| 751 | return 0; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 752 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 753 | /* We have it, set our term variable and fork_exec() */ |
| 754 | #ifdef HAVE_SETENV |
| 755 | setenv("TERM", term, 1); |
| 756 | #else |
| 757 | putenv(term); |
| 758 | #endif |
| 759 | fork_exec(so, args, 2); |
| 760 | term[0] = 0; |
| 761 | so->so_emu = 0; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 762 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 763 | /* And finally, send the client a 0 character */ |
| 764 | so_snd->sb_wptr[0] = 0; |
| 765 | so_snd->sb_wptr++; |
| 766 | so_snd->sb_cc++; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 767 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 768 | return 0; |
| 769 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 770 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 771 | case EMU_RSH: |
| 772 | /* |
| 773 | * rsh emulation |
| 774 | * First we accumulate all the initial option negotiation, |
| 775 | * then rsh_exec() rsh according to the options |
| 776 | */ |
| 777 | { |
| 778 | int n; |
| 779 | char *ptr; |
| 780 | char *user; |
| 781 | char *args; |
| 782 | struct sbuf *so_snd = &so->so_snd; |
| 783 | struct sbuf *so_rcv = &so->so_rcv; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 784 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 785 | /* First check if they have a priveladged port, or too much data has arrived */ |
| 786 | if (ntohs(so->so_lport) > 1023 || ntohs(so->so_lport) < 512 || |
| 787 | (m->m_len + so_rcv->sb_wptr) > (so_rcv->sb_data + so_rcv->sb_datalen)) { |
| 788 | memcpy(so_snd->sb_wptr, "Permission denied\n", 18); |
| 789 | so_snd->sb_wptr += 18; |
| 790 | so_snd->sb_cc += 18; |
| 791 | tcp_sockclosed(sototcpcb(so)); |
| 792 | m_free(m); |
| 793 | return 0; |
| 794 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 795 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 796 | /* Append the current data */ |
| 797 | memcpy(so_rcv->sb_wptr, m->m_data, m->m_len); |
| 798 | so_rcv->sb_wptr += m->m_len; |
| 799 | so_rcv->sb_rptr += m->m_len; |
| 800 | m_free(m); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 801 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 802 | /* |
| 803 | * Check if we have all the initial options, |
| 804 | * and build argument list to rlogin while we're here |
| 805 | */ |
| 806 | n = 0; |
| 807 | ptr = so_rcv->sb_data; |
| 808 | user=""; |
| 809 | args=""; |
| 810 | if (so->extra==NULL) { |
| 811 | struct socket *ns; |
| 812 | struct tcpcb* tp; |
| 813 | int port=atoi(ptr); |
| 814 | if (port <= 0) return 0; |
| 815 | if (port > 1023 || port < 512) { |
| 816 | memcpy(so_snd->sb_wptr, "Permission denied\n", 18); |
| 817 | so_snd->sb_wptr += 18; |
| 818 | so_snd->sb_cc += 18; |
| 819 | tcp_sockclosed(sototcpcb(so)); |
| 820 | return 0; |
| 821 | } |
| 822 | if ((ns=socreate()) == NULL) |
| 823 | return 0; |
| 824 | if (tcp_attach(ns)<0) { |
| 825 | free(ns); |
| 826 | return 0; |
| 827 | } |
| 828 | |
| 829 | ns->so_laddr=so->so_laddr; |
| 830 | ns->so_lport=htons(port); |
| 831 | |
| 832 | (void) tcp_mss(sototcpcb(ns), 0); |
| 833 | |
| 834 | ns->so_faddr=so->so_faddr; |
| 835 | ns->so_fport=htons(IPPORT_RESERVED-1); /* Use a fake port. */ |
| 836 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 837 | if (ns->so_faddr.s_addr == 0 || |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 838 | ns->so_faddr.s_addr == loopback_addr.s_addr) |
bellard | 8dbca8d | 2006-05-03 19:58:17 +0000 | [diff] [blame] | 839 | ns->so_faddr = alias_addr; |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 840 | |
| 841 | ns->so_iptos = tcp_tos(ns); |
| 842 | tp = sototcpcb(ns); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 843 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 844 | tcp_template(tp); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 845 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 846 | /* Compute window scaling to request. */ |
| 847 | /* while (tp->request_r_scale < TCP_MAX_WINSHIFT && |
| 848 | * (TCP_MAXWIN << tp->request_r_scale) < so->so_rcv.sb_hiwat) |
| 849 | * tp->request_r_scale++; |
| 850 | */ |
| 851 | |
| 852 | /*soisfconnecting(ns);*/ |
| 853 | |
blueswir1 | 31a60e2 | 2007-10-26 18:42:59 +0000 | [diff] [blame] | 854 | STAT(tcpstat.tcps_connattempt++); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 855 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 856 | tp->t_state = TCPS_SYN_SENT; |
| 857 | tp->t_timer[TCPT_KEEP] = TCPTV_KEEP_INIT; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 858 | tp->iss = tcp_iss; |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 859 | tcp_iss += TCP_ISSINCR/2; |
| 860 | tcp_sendseqinit(tp); |
| 861 | tcp_output(tp); |
| 862 | so->extra=ns; |
| 863 | } |
| 864 | while (ptr < so_rcv->sb_wptr) { |
| 865 | if (*ptr++ == 0) { |
| 866 | n++; |
| 867 | if (n == 2) { |
| 868 | user=ptr; |
| 869 | } else if (n == 3) { |
| 870 | args=ptr; |
| 871 | } |
| 872 | } |
| 873 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 874 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 875 | if (n != 4) |
| 876 | return 0; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 877 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 878 | rsh_exec(so,so->extra, user, inet_ntoa(so->so_faddr), args); |
| 879 | so->so_emu = 0; |
| 880 | so->extra=NULL; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 881 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 882 | /* And finally, send the client a 0 character */ |
| 883 | so_snd->sb_wptr[0] = 0; |
| 884 | so_snd->sb_wptr++; |
| 885 | so_snd->sb_cc++; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 886 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 887 | return 0; |
| 888 | } |
| 889 | |
| 890 | case EMU_CTL: |
| 891 | { |
| 892 | int num; |
| 893 | struct sbuf *so_snd = &so->so_snd; |
| 894 | struct sbuf *so_rcv = &so->so_rcv; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 895 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 896 | /* |
| 897 | * If there is binary data here, we save it in so->so_m |
| 898 | */ |
| 899 | if (!so->so_m) { |
| 900 | int rxlen; |
| 901 | char *rxdata; |
| 902 | rxdata=mtod(m, char *); |
| 903 | for (rxlen=m->m_len; rxlen; rxlen--) { |
| 904 | if (*rxdata++ & 0x80) { |
| 905 | so->so_m = m; |
| 906 | return 0; |
| 907 | } |
| 908 | } |
| 909 | } /* if(so->so_m==NULL) */ |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 910 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 911 | /* |
| 912 | * Append the line |
| 913 | */ |
| 914 | sbappendsb(so_rcv, m); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 915 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 916 | /* To avoid going over the edge of the buffer, we reset it */ |
| 917 | if (so_snd->sb_cc == 0) |
| 918 | so_snd->sb_wptr = so_snd->sb_rptr = so_snd->sb_data; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 919 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 920 | /* |
| 921 | * A bit of a hack: |
| 922 | * If the first packet we get here is 1 byte long, then it |
| 923 | * was done in telnet character mode, therefore we must echo |
| 924 | * the characters as they come. Otherwise, we echo nothing, |
| 925 | * because in linemode, the line is already echoed |
| 926 | * XXX two or more control connections won't work |
| 927 | */ |
| 928 | if (do_echo == -1) { |
| 929 | if (m->m_len == 1) do_echo = 1; |
| 930 | else do_echo = 0; |
| 931 | } |
| 932 | if (do_echo) { |
| 933 | sbappendsb(so_snd, m); |
| 934 | m_free(m); |
| 935 | tcp_output(sototcpcb(so)); /* XXX */ |
| 936 | } else |
| 937 | m_free(m); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 938 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 939 | num = 0; |
| 940 | while (num < so->so_rcv.sb_cc) { |
| 941 | if (*(so->so_rcv.sb_rptr + num) == '\n' || |
| 942 | *(so->so_rcv.sb_rptr + num) == '\r') { |
| 943 | int n; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 944 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 945 | *(so_rcv->sb_rptr + num) = 0; |
| 946 | if (ctl_password && !ctl_password_ok) { |
| 947 | /* Need a password */ |
| 948 | if (sscanf(so_rcv->sb_rptr, "pass %256s", buff) == 1) { |
| 949 | if (strcmp(buff, ctl_password) == 0) { |
| 950 | ctl_password_ok = 1; |
| 951 | n = sprintf(so_snd->sb_wptr, |
| 952 | "Password OK.\r\n"); |
| 953 | goto do_prompt; |
| 954 | } |
| 955 | } |
| 956 | n = sprintf(so_snd->sb_wptr, |
| 957 | "Error: Password required, log on with \"pass PASSWORD\"\r\n"); |
| 958 | goto do_prompt; |
| 959 | } |
| 960 | cfg_quitting = 0; |
| 961 | n = do_config(so_rcv->sb_rptr, so, PRN_SPRINTF); |
| 962 | if (!cfg_quitting) { |
| 963 | /* Register the printed data */ |
| 964 | do_prompt: |
| 965 | so_snd->sb_cc += n; |
| 966 | so_snd->sb_wptr += n; |
| 967 | /* Add prompt */ |
| 968 | n = sprintf(so_snd->sb_wptr, "Slirp> "); |
| 969 | so_snd->sb_cc += n; |
| 970 | so_snd->sb_wptr += n; |
| 971 | } |
| 972 | /* Drop so_rcv data */ |
| 973 | so_rcv->sb_cc = 0; |
| 974 | so_rcv->sb_wptr = so_rcv->sb_rptr = so_rcv->sb_data; |
| 975 | tcp_output(sototcpcb(so)); /* Send the reply */ |
| 976 | } |
| 977 | num++; |
| 978 | } |
| 979 | return 0; |
| 980 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 981 | #endif |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 982 | case EMU_FTP: /* ftp */ |
| 983 | *(m->m_data+m->m_len) = 0; /* NULL terminate for strstr */ |
| 984 | if ((bptr = (char *)strstr(m->m_data, "ORT")) != NULL) { |
| 985 | /* |
| 986 | * Need to emulate the PORT command |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 987 | */ |
blueswir1 | 9634d90 | 2007-10-26 19:01:16 +0000 | [diff] [blame] | 988 | 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] | 989 | &n1, &n2, &n3, &n4, &n5, &n6, buff); |
| 990 | if (x < 6) |
| 991 | return 1; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 992 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 993 | laddr = htonl((n1 << 24) | (n2 << 16) | (n3 << 8) | (n4)); |
| 994 | lport = htons((n5 << 8) | (n6)); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 995 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 996 | if ((so = solisten(0, laddr, lport, SS_FACCEPTONCE)) == NULL) |
| 997 | return 1; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 998 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 999 | n6 = ntohs(so->so_fport); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1000 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1001 | n5 = (n6 >> 8) & 0xff; |
| 1002 | n6 &= 0xff; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1003 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1004 | laddr = ntohl(so->so_faddr.s_addr); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1005 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1006 | n1 = ((laddr >> 24) & 0xff); |
| 1007 | n2 = ((laddr >> 16) & 0xff); |
| 1008 | n3 = ((laddr >> 8) & 0xff); |
| 1009 | n4 = (laddr & 0xff); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1010 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1011 | m->m_len = bptr - m->m_data; /* Adjust length */ |
blueswir1 | 363a37d | 2008-08-21 17:58:08 +0000 | [diff] [blame] | 1012 | m->m_len += snprintf(bptr, m->m_hdr.mh_size - m->m_len, |
| 1013 | "ORT %d,%d,%d,%d,%d,%d\r\n%s", |
| 1014 | n1, n2, n3, n4, n5, n6, x==7?buff:""); |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1015 | return 1; |
| 1016 | } else if ((bptr = (char *)strstr(m->m_data, "27 Entering")) != NULL) { |
| 1017 | /* |
| 1018 | * Need to emulate the PASV response |
| 1019 | */ |
blueswir1 | 9634d90 | 2007-10-26 19:01:16 +0000 | [diff] [blame] | 1020 | 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] | 1021 | &n1, &n2, &n3, &n4, &n5, &n6, buff); |
| 1022 | if (x < 6) |
| 1023 | return 1; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1024 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1025 | laddr = htonl((n1 << 24) | (n2 << 16) | (n3 << 8) | (n4)); |
| 1026 | lport = htons((n5 << 8) | (n6)); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1027 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1028 | if ((so = solisten(0, laddr, lport, SS_FACCEPTONCE)) == NULL) |
| 1029 | return 1; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1030 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1031 | n6 = ntohs(so->so_fport); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1032 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1033 | n5 = (n6 >> 8) & 0xff; |
| 1034 | n6 &= 0xff; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1035 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1036 | laddr = ntohl(so->so_faddr.s_addr); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1037 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1038 | n1 = ((laddr >> 24) & 0xff); |
| 1039 | n2 = ((laddr >> 16) & 0xff); |
| 1040 | n3 = ((laddr >> 8) & 0xff); |
| 1041 | n4 = (laddr & 0xff); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1042 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1043 | m->m_len = bptr - m->m_data; /* Adjust length */ |
blueswir1 | 363a37d | 2008-08-21 17:58:08 +0000 | [diff] [blame] | 1044 | m->m_len += snprintf(bptr, m->m_hdr.mh_size - m->m_len, |
| 1045 | "27 Entering Passive Mode (%d,%d,%d,%d,%d,%d)\r\n%s", |
| 1046 | n1, n2, n3, n4, n5, n6, x==7?buff:""); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1047 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1048 | return 1; |
| 1049 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1050 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1051 | return 1; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1052 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1053 | case EMU_KSH: |
| 1054 | /* |
| 1055 | * The kshell (Kerberos rsh) and shell services both pass |
| 1056 | * a local port port number to carry signals to the server |
| 1057 | * and stderr to the client. It is passed at the beginning |
| 1058 | * of the connection as a NUL-terminated decimal ASCII string. |
| 1059 | */ |
| 1060 | so->so_emu = 0; |
| 1061 | for (lport = 0, i = 0; i < m->m_len-1; ++i) { |
| 1062 | if (m->m_data[i] < '0' || m->m_data[i] > '9') |
| 1063 | return 1; /* invalid number */ |
| 1064 | lport *= 10; |
| 1065 | lport += m->m_data[i] - '0'; |
| 1066 | } |
| 1067 | if (m->m_data[m->m_len-1] == '\0' && lport != 0 && |
| 1068 | (so = solisten(0, so->so_laddr.s_addr, htons(lport), SS_FACCEPTONCE)) != NULL) |
blueswir1 | 363a37d | 2008-08-21 17:58:08 +0000 | [diff] [blame] | 1069 | m->m_len = snprintf(m->m_data, m->m_hdr.mh_size, "%d", |
| 1070 | ntohs(so->so_fport)) + 1; |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1071 | return 1; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1072 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1073 | case EMU_IRC: |
| 1074 | /* |
| 1075 | * Need to emulate DCC CHAT, DCC SEND and DCC MOVE |
| 1076 | */ |
| 1077 | *(m->m_data+m->m_len) = 0; /* NULL terminate the string for strstr */ |
| 1078 | if ((bptr = (char *)strstr(m->m_data, "DCC")) == NULL) |
| 1079 | return 1; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1080 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1081 | /* The %256s is for the broken mIRC */ |
| 1082 | if (sscanf(bptr, "DCC CHAT %256s %u %u", buff, &laddr, &lport) == 3) { |
| 1083 | if ((so = solisten(0, htonl(laddr), htons(lport), SS_FACCEPTONCE)) == NULL) |
| 1084 | return 1; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1085 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1086 | m->m_len = bptr - m->m_data; /* Adjust length */ |
blueswir1 | 363a37d | 2008-08-21 17:58:08 +0000 | [diff] [blame] | 1087 | m->m_len += snprintf(bptr, m->m_hdr.mh_size, |
| 1088 | "DCC CHAT chat %lu %u%c\n", |
| 1089 | (unsigned long)ntohl(so->so_faddr.s_addr), |
| 1090 | ntohs(so->so_fport), 1); |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1091 | } else if (sscanf(bptr, "DCC SEND %256s %u %u %u", buff, &laddr, &lport, &n1) == 4) { |
| 1092 | if ((so = solisten(0, htonl(laddr), htons(lport), SS_FACCEPTONCE)) == NULL) |
| 1093 | return 1; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1094 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1095 | m->m_len = bptr - m->m_data; /* Adjust length */ |
blueswir1 | 363a37d | 2008-08-21 17:58:08 +0000 | [diff] [blame] | 1096 | m->m_len += snprintf(bptr, m->m_hdr.mh_size, |
| 1097 | "DCC SEND %s %lu %u %u%c\n", buff, |
| 1098 | (unsigned long)ntohl(so->so_faddr.s_addr), |
| 1099 | ntohs(so->so_fport), n1, 1); |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1100 | } else if (sscanf(bptr, "DCC MOVE %256s %u %u %u", buff, &laddr, &lport, &n1) == 4) { |
| 1101 | if ((so = solisten(0, htonl(laddr), htons(lport), SS_FACCEPTONCE)) == NULL) |
| 1102 | return 1; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1103 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1104 | m->m_len = bptr - m->m_data; /* Adjust length */ |
blueswir1 | 363a37d | 2008-08-21 17:58:08 +0000 | [diff] [blame] | 1105 | m->m_len += snprintf(bptr, m->m_hdr.mh_size, |
| 1106 | "DCC MOVE %s %lu %u %u%c\n", buff, |
| 1107 | (unsigned long)ntohl(so->so_faddr.s_addr), |
| 1108 | ntohs(so->so_fport), n1, 1); |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1109 | } |
| 1110 | return 1; |
| 1111 | |
| 1112 | case EMU_REALAUDIO: |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1113 | /* |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1114 | * RealAudio emulation - JP. We must try to parse the incoming |
| 1115 | * data and try to find the two characters that contain the |
| 1116 | * port number. Then we redirect an udp port and replace the |
| 1117 | * number with the real port we got. |
| 1118 | * |
| 1119 | * The 1.0 beta versions of the player are not supported |
| 1120 | * any more. |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1121 | * |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1122 | * A typical packet for player version 1.0 (release version): |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1123 | * |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1124 | * 0000:50 4E 41 00 05 |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1125 | * 0000:00 01 00 02 1B D7 00 00 67 E6 6C DC 63 00 12 50 .....×..gælÜc..P |
| 1126 | * 0010:4E 43 4C 49 45 4E 54 20 31 30 31 20 41 4C 50 48 NCLIENT 101 ALPH |
| 1127 | * 0020:41 6C 00 00 52 00 17 72 61 66 69 6C 65 73 2F 76 Al..R..rafiles/v |
| 1128 | * 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] | 1129 | * |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1130 | * Now the port number 0x1BD7 is found at offset 0x04 of the |
| 1131 | * Now the port number 0x1BD7 is found at offset 0x04 of the |
| 1132 | * second packet. This time we received five bytes first and |
| 1133 | * then the rest. You never know how many bytes you get. |
| 1134 | * |
| 1135 | * A typical packet for player version 2.0 (beta): |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1136 | * |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1137 | * 0000:50 4E 41 00 06 00 02 00 00 00 01 00 02 1B C1 00 PNA...........Á. |
| 1138 | * 0010:00 67 75 78 F5 63 00 0A 57 69 6E 32 2E 30 2E 30 .guxõc..Win2.0.0 |
| 1139 | * 0020:2E 35 6C 00 00 52 00 1C 72 61 66 69 6C 65 73 2F .5l..R..rafiles/ |
| 1140 | * 0030:77 65 62 73 69 74 65 2F 32 30 72 65 6C 65 61 73 website/20releas |
| 1141 | * 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] | 1142 | * |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1143 | * Port number 0x1BC1 is found at offset 0x0d. |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1144 | * |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1145 | * This is just a horrible switch statement. Variable ra tells |
| 1146 | * us where we're going. |
| 1147 | */ |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1148 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1149 | bptr = m->m_data; |
| 1150 | while (bptr < m->m_data + m->m_len) { |
| 1151 | u_short p; |
| 1152 | static int ra = 0; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1153 | char ra_tbl[4]; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1154 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1155 | ra_tbl[0] = 0x50; |
| 1156 | ra_tbl[1] = 0x4e; |
| 1157 | ra_tbl[2] = 0x41; |
| 1158 | ra_tbl[3] = 0; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1159 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1160 | switch (ra) { |
| 1161 | case 0: |
| 1162 | case 2: |
| 1163 | case 3: |
| 1164 | if (*bptr++ != ra_tbl[ra]) { |
| 1165 | ra = 0; |
| 1166 | continue; |
| 1167 | } |
| 1168 | break; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1169 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1170 | case 1: |
| 1171 | /* |
| 1172 | * We may get 0x50 several times, ignore them |
| 1173 | */ |
| 1174 | if (*bptr == 0x50) { |
| 1175 | ra = 1; |
| 1176 | bptr++; |
| 1177 | continue; |
| 1178 | } else if (*bptr++ != ra_tbl[ra]) { |
| 1179 | ra = 0; |
| 1180 | continue; |
| 1181 | } |
| 1182 | break; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1183 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1184 | case 4: |
| 1185 | /* |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1186 | * skip version number |
| 1187 | */ |
| 1188 | bptr++; |
| 1189 | break; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1190 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1191 | case 5: |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1192 | /* |
| 1193 | * The difference between versions 1.0 and |
| 1194 | * 2.0 is here. For future versions of |
| 1195 | * the player this may need to be modified. |
| 1196 | */ |
| 1197 | if (*(bptr + 1) == 0x02) |
| 1198 | bptr += 8; |
| 1199 | else |
| 1200 | bptr += 4; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1201 | break; |
| 1202 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1203 | case 6: |
| 1204 | /* This is the field containing the port |
| 1205 | * number that RA-player is listening to. |
| 1206 | */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1207 | lport = (((u_char*)bptr)[0] << 8) |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1208 | + ((u_char *)bptr)[1]; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1209 | if (lport < 6970) |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1210 | lport += 256; /* don't know why */ |
| 1211 | if (lport < 6970 || lport > 7170) |
| 1212 | return 1; /* failed */ |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1213 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1214 | /* try to get udp port between 6970 - 7170 */ |
| 1215 | for (p = 6970; p < 7071; p++) { |
| 1216 | if (udp_listen( htons(p), |
| 1217 | so->so_laddr.s_addr, |
| 1218 | htons(lport), |
| 1219 | SS_FACCEPTONCE)) { |
| 1220 | break; |
| 1221 | } |
| 1222 | } |
| 1223 | if (p == 7071) |
| 1224 | p = 0; |
| 1225 | *(u_char *)bptr++ = (p >> 8) & 0xff; |
| 1226 | *(u_char *)bptr++ = p & 0xff; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1227 | ra = 0; |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1228 | return 1; /* port redirected, we're done */ |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1229 | break; |
| 1230 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1231 | default: |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1232 | ra = 0; |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1233 | } |
| 1234 | ra++; |
| 1235 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1236 | return 1; |
| 1237 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1238 | default: |
| 1239 | /* Ooops, not emulated, won't call tcp_emu again */ |
| 1240 | so->so_emu = 0; |
| 1241 | return 1; |
| 1242 | } |
| 1243 | } |
| 1244 | |
| 1245 | /* |
| 1246 | * Do misc. config of SLiRP while its running. |
| 1247 | * Return 0 if this connections is to be closed, 1 otherwise, |
| 1248 | * return 2 if this is a command-line connection |
| 1249 | */ |
| 1250 | int |
| 1251 | tcp_ctl(so) |
| 1252 | struct socket *so; |
| 1253 | { |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1254 | struct sbuf *sb = &so->so_snd; |
| 1255 | int command; |
| 1256 | struct ex_list *ex_ptr; |
| 1257 | int do_pty; |
bellard | 99679ec | 2004-09-18 19:33:56 +0000 | [diff] [blame] | 1258 | // struct socket *tmpso; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1259 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1260 | DEBUG_CALL("tcp_ctl"); |
| 1261 | DEBUG_ARG("so = %lx", (long )so); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1262 | |
bellard | a3d4af0 | 2004-09-05 23:10:26 +0000 | [diff] [blame] | 1263 | #if 0 |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1264 | /* |
| 1265 | * Check if they're authorised |
| 1266 | */ |
| 1267 | if (ctl_addr.s_addr && (ctl_addr.s_addr == -1 || (so->so_laddr.s_addr != ctl_addr.s_addr))) { |
| 1268 | sb->sb_cc = sprintf(sb->sb_wptr,"Error: Permission denied.\r\n"); |
| 1269 | sb->sb_wptr += sb->sb_cc; |
| 1270 | return 0; |
| 1271 | } |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1272 | #endif |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1273 | command = (ntohl(so->so_faddr.s_addr) & 0xff); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1274 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1275 | switch(command) { |
| 1276 | default: /* Check for exec's */ |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1277 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1278 | /* |
| 1279 | * Check if it's pty_exec |
| 1280 | */ |
| 1281 | for (ex_ptr = exec_list; ex_ptr; ex_ptr = ex_ptr->ex_next) { |
| 1282 | if (ex_ptr->ex_fport == so->so_fport && |
| 1283 | command == ex_ptr->ex_addr) { |
aliguori | e1c5a2b | 2009-01-08 19:18:21 +0000 | [diff] [blame] | 1284 | if (ex_ptr->ex_pty == 3) { |
| 1285 | so->s = -1; |
blueswir1 | 0580ac9 | 2009-01-12 17:51:06 +0000 | [diff] [blame] | 1286 | so->extra = (void *)ex_ptr->ex_exec; |
aliguori | e1c5a2b | 2009-01-08 19:18:21 +0000 | [diff] [blame] | 1287 | return 1; |
| 1288 | } |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1289 | do_pty = ex_ptr->ex_pty; |
| 1290 | goto do_exec; |
| 1291 | } |
| 1292 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1293 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1294 | /* |
| 1295 | * Nothing bound.. |
| 1296 | */ |
| 1297 | /* tcp_fconnect(so); */ |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1298 | |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1299 | /* FALLTHROUGH */ |
| 1300 | case CTL_ALIAS: |
blueswir1 | 363a37d | 2008-08-21 17:58:08 +0000 | [diff] [blame] | 1301 | sb->sb_cc = snprintf(sb->sb_wptr, sb->sb_datalen - (sb->sb_wptr - sb->sb_data), |
| 1302 | "Error: No application configured.\r\n"); |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1303 | sb->sb_wptr += sb->sb_cc; |
| 1304 | return(0); |
| 1305 | |
| 1306 | do_exec: |
| 1307 | DEBUG_MISC((dfd, " executing %s \n",ex_ptr->ex_exec)); |
| 1308 | return(fork_exec(so, ex_ptr->ex_exec, do_pty)); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1309 | |
bellard | a3d4af0 | 2004-09-05 23:10:26 +0000 | [diff] [blame] | 1310 | #if 0 |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1311 | case CTL_CMD: |
| 1312 | for (tmpso = tcb.so_next; tmpso != &tcb; tmpso = tmpso->so_next) { |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1313 | if (tmpso->so_emu == EMU_CTL && |
| 1314 | !(tmpso->so_tcpcb? |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1315 | (tmpso->so_tcpcb->t_state & (TCPS_TIME_WAIT|TCPS_LAST_ACK)) |
| 1316 | :0)) { |
| 1317 | /* Ooops, control connection already active */ |
| 1318 | sb->sb_cc = sprintf(sb->sb_wptr,"Sorry, already connected.\r\n"); |
| 1319 | sb->sb_wptr += sb->sb_cc; |
| 1320 | return 0; |
| 1321 | } |
| 1322 | } |
| 1323 | so->so_emu = EMU_CTL; |
| 1324 | ctl_password_ok = 0; |
| 1325 | sb->sb_cc = sprintf(sb->sb_wptr, "Slirp command-line ready (type \"help\" for help).\r\nSlirp> "); |
| 1326 | sb->sb_wptr += sb->sb_cc; |
| 1327 | do_echo=-1; |
| 1328 | return(2); |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1329 | #endif |
bellard | a3d4af0 | 2004-09-05 23:10:26 +0000 | [diff] [blame] | 1330 | } |
bellard | f0cbd3e | 2004-04-22 00:10:48 +0000 | [diff] [blame] | 1331 | } |