slirp.c 16.3 KB
Newer Older
B
bellard 已提交
1 2 3 4 5 6 7 8 9 10 11
#include "slirp.h"

/* host address */
struct in_addr our_addr;
/* host dns address */
struct in_addr dns_addr;
/* host loopback address */
struct in_addr loopback_addr;

/* address for slirp virtual addresses */
struct in_addr special_addr;
12 13
/* virtual address alias for host */
struct in_addr alias_addr;
B
bellard 已提交
14

15
const uint8_t special_ethaddr[6] = {
B
bellard 已提交
16 17 18 19 20 21 22 23 24
    0x52, 0x54, 0x00, 0x12, 0x35, 0x00
};

uint8_t client_ethaddr[6];

int do_slowtimo;
int link_up;
struct timeval tt;
FILE *lfd;
B
bellard 已提交
25
struct ex_list *exec_list;
B
bellard 已提交
26 27 28 29

/* XXX: suppress those select globals */
fd_set *global_readfds, *global_writefds, *global_xfds;

B
bellard 已提交
30
char slirp_hostname[33];
P
pbrook 已提交
31

B
bellard 已提交
32 33 34 35
#ifdef _WIN32

static int get_dns_addr(struct in_addr *pdns_addr)
{
B
bellard 已提交
36 37 38 39 40
    FIXED_INFO *FixedInfo=NULL;
    ULONG    BufLen;
    DWORD    ret;
    IP_ADDR_STRING *pIPAddr;
    struct in_addr tmp_addr;
41

B
bellard 已提交
42 43
    FixedInfo = (FIXED_INFO *)GlobalAlloc(GPTR, sizeof(FIXED_INFO));
    BufLen = sizeof(FIXED_INFO);
44

B
bellard 已提交
45 46 47 48 49 50 51
    if (ERROR_BUFFER_OVERFLOW == GetNetworkParams(FixedInfo, &BufLen)) {
        if (FixedInfo) {
            GlobalFree(FixedInfo);
            FixedInfo = NULL;
        }
        FixedInfo = GlobalAlloc(GPTR, BufLen);
    }
52

B
bellard 已提交
53 54 55 56 57 58 59 60
    if ((ret = GetNetworkParams(FixedInfo, &BufLen)) != ERROR_SUCCESS) {
        printf("GetNetworkParams failed. ret = %08x\n", (u_int)ret );
        if (FixedInfo) {
            GlobalFree(FixedInfo);
            FixedInfo = NULL;
        }
        return -1;
    }
61

B
bellard 已提交
62 63 64 65 66 67
    pIPAddr = &(FixedInfo->DnsServerList);
    inet_aton(pIPAddr->IpAddress.String, &tmp_addr);
    *pdns_addr = tmp_addr;
#if 0
    printf( "DNS Servers:\n" );
    printf( "DNS Addr:%s\n", pIPAddr->IpAddress.String );
68

B
bellard 已提交
69 70 71 72 73 74 75 76 77 78 79
    pIPAddr = FixedInfo -> DnsServerList.Next;
    while ( pIPAddr ) {
            printf( "DNS Addr:%s\n", pIPAddr ->IpAddress.String );
            pIPAddr = pIPAddr ->Next;
    }
#endif
    if (FixedInfo) {
        GlobalFree(FixedInfo);
        FixedInfo = NULL;
    }
    return 0;
B
bellard 已提交
80 81 82 83 84 85 86 87 88 89 90
}

#else

static int get_dns_addr(struct in_addr *pdns_addr)
{
    char buff[512];
    char buff2[256];
    FILE *f;
    int found = 0;
    struct in_addr tmp_addr;
91

B
bellard 已提交
92 93 94 95
    f = fopen("/etc/resolv.conf", "r");
    if (!f)
        return -1;

96
#ifdef DEBUG
B
bellard 已提交
97
    lprint("IP address of your DNS(s): ");
98
#endif
B
bellard 已提交
99 100 101 102 103 104 105 106 107
    while (fgets(buff, 512, f) != NULL) {
        if (sscanf(buff, "nameserver%*[ \t]%256s", buff2) == 1) {
            if (!inet_aton(buff2, &tmp_addr))
                continue;
            if (tmp_addr.s_addr == loopback_addr.s_addr)
                tmp_addr = our_addr;
            /* If it's the first one, set it to dns_addr */
            if (!found)
                *pdns_addr = tmp_addr;
108
#ifdef DEBUG
B
bellard 已提交
109 110
            else
                lprint(", ");
111
#endif
B
bellard 已提交
112
            if (++found > 3) {
113
#ifdef DEBUG
B
bellard 已提交
114
                lprint("(more)");
115
#endif
B
bellard 已提交
116
                break;
117 118 119
            }
#ifdef DEBUG
            else
B
bellard 已提交
120
                lprint("%s", inet_ntoa(tmp_addr));
121
#endif
B
bellard 已提交
122 123
        }
    }
B
bellard 已提交
124
    fclose(f);
B
bellard 已提交
125 126 127 128 129 130 131
    if (!found)
        return -1;
    return 0;
}

#endif

B
bellard 已提交
132 133 134 135 136 137 138
#ifdef _WIN32
void slirp_cleanup(void)
{
    WSACleanup();
}
#endif

B
bellard 已提交
139 140
void slirp_init(void)
{
B
bellard 已提交
141
    //    debug_init("/tmp/slirp.log", DEBUG_DEFAULT);
142

B
bellard 已提交
143 144 145 146 147 148 149 150
#ifdef _WIN32
    {
        WSADATA Data;
        WSAStartup(MAKEWORD(2,0), &Data);
	atexit(slirp_cleanup);
    }
#endif

B
bellard 已提交
151 152 153 154 155 156 157 158 159 160 161 162
    link_up = 1;

    if_init();
    ip_init();

    /* Initialise mbufs *after* setting the MTU */
    m_init();

    /* set default addresses */
    inet_aton("127.0.0.1", &loopback_addr);

    if (get_dns_addr(&dns_addr) < 0) {
P
pbrook 已提交
163 164
        dns_addr = loopback_addr;
        fprintf (stderr, "Warning: No DNS servers found\n");
B
bellard 已提交
165 166 167
    }

    inet_aton(CTL_SPECIAL, &special_addr);
168
    alias_addr.s_addr = special_addr.s_addr | htonl(CTL_ALIAS);
169
    getouraddr();
B
bellard 已提交
170 171 172 173 174 175 176 177 178
}

#define CONN_CANFSEND(so) (((so)->so_state & (SS_FCANTSENDMORE|SS_ISFCONNECTED)) == SS_ISFCONNECTED)
#define CONN_CANFRCV(so) (((so)->so_state & (SS_FCANTRCVMORE|SS_ISFCONNECTED)) == SS_ISFCONNECTED)
#define UPD_NFDS(x) if (nfds < (x)) nfds = (x)

/*
 * curtime kept to an accuracy of 1ms
 */
B
bellard 已提交
179 180 181 182 183 184 185 186 187 188
#ifdef _WIN32
static void updtime(void)
{
    struct _timeb tb;

    _ftime(&tb);
    curtime = (u_int)tb.time * (u_int)1000;
    curtime += (u_int)tb.millitm;
}
#else
B
bellard 已提交
189 190 191
static void updtime(void)
{
	gettimeofday(&tt, 0);
192

B
bellard 已提交
193 194
	curtime = (u_int)tt.tv_sec * (u_int)1000;
	curtime += (u_int)tt.tv_usec / (u_int)1000;
195

B
bellard 已提交
196 197 198
	if ((tt.tv_usec % 1000) >= 500)
	   curtime++;
}
B
bellard 已提交
199
#endif
B
bellard 已提交
200

201
void slirp_select_fill(int *pnfds,
B
bellard 已提交
202 203 204 205 206 207 208 209 210 211 212
                       fd_set *readfds, fd_set *writefds, fd_set *xfds)
{
    struct socket *so, *so_next;
    struct timeval timeout;
    int nfds;
    int tmp_time;

    /* fail safe */
    global_readfds = NULL;
    global_writefds = NULL;
    global_xfds = NULL;
213

B
bellard 已提交
214 215 216 217 218 219
    nfds = *pnfds;
	/*
	 * First, TCP sockets
	 */
	do_slowtimo = 0;
	if (link_up) {
220
		/*
B
bellard 已提交
221 222 223 224 225
		 * *_slowtimo needs calling if there are IP fragments
		 * in the fragment queue, or there are TCP connections active
		 */
		do_slowtimo = ((tcb.so_next != &tcb) ||
			       ((struct ipasfrag *)&ipq != (struct ipasfrag *)ipq.next));
226

B
bellard 已提交
227 228
		for (so = tcb.so_next; so != &tcb; so = so_next) {
			so_next = so->so_next;
229

B
bellard 已提交
230 231 232 233 234
			/*
			 * See if we need a tcp_fasttimo
			 */
			if (time_fasttimo == 0 && so->so_tcpcb->t_flags & TF_DELACK)
			   time_fasttimo = curtime; /* Flag when we want a fasttimo */
235

B
bellard 已提交
236 237 238 239 240 241
			/*
			 * NOFDREF can include still connecting to local-host,
			 * newly socreated() sockets etc. Don't want to select these.
	 		 */
			if (so->so_state & SS_NOFDREF || so->s == -1)
			   continue;
242

B
bellard 已提交
243 244 245 246 247 248 249 250
			/*
			 * Set for reading sockets which are accepting
			 */
			if (so->so_state & SS_FACCEPTCONN) {
                                FD_SET(so->s, readfds);
				UPD_NFDS(so->s);
				continue;
			}
251

B
bellard 已提交
252 253 254 255 256 257 258 259
			/*
			 * Set for writing sockets which are connecting
			 */
			if (so->so_state & SS_ISFCONNECTING) {
				FD_SET(so->s, writefds);
				UPD_NFDS(so->s);
				continue;
			}
260

B
bellard 已提交
261 262 263 264 265 266 267 268
			/*
			 * Set for writing if we are connected, can send more, and
			 * we have something to send
			 */
			if (CONN_CANFSEND(so) && so->so_rcv.sb_cc) {
				FD_SET(so->s, writefds);
				UPD_NFDS(so->s);
			}
269

B
bellard 已提交
270 271 272 273 274 275 276 277 278 279
			/*
			 * Set for reading (and urgent data) if we are connected, can
			 * receive more, and we have room for it XXX /2 ?
			 */
			if (CONN_CANFRCV(so) && (so->so_snd.sb_cc < (so->so_snd.sb_datalen/2))) {
				FD_SET(so->s, readfds);
				FD_SET(so->s, xfds);
				UPD_NFDS(so->s);
			}
		}
280

B
bellard 已提交
281 282 283 284 285
		/*
		 * UDP sockets
		 */
		for (so = udb.so_next; so != &udb; so = so_next) {
			so_next = so->so_next;
286

B
bellard 已提交
287 288 289 290 291 292 293 294 295 296
			/*
			 * See if it's timed out
			 */
			if (so->so_expire) {
				if (so->so_expire <= curtime) {
					udp_detach(so);
					continue;
				} else
					do_slowtimo = 1; /* Let socket expire */
			}
297

B
bellard 已提交
298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
			/*
			 * When UDP packets are received from over the
			 * link, they're sendto()'d straight away, so
			 * no need for setting for writing
			 * Limit the number of packets queued by this session
			 * to 4.  Note that even though we try and limit this
			 * to 4 packets, the session could have more queued
			 * if the packets needed to be fragmented
			 * (XXX <= 4 ?)
			 */
			if ((so->so_state & SS_ISFCONNECTED) && so->so_queued <= 4) {
				FD_SET(so->s, readfds);
				UPD_NFDS(so->s);
			}
		}
	}
314

B
bellard 已提交
315 316 317
	/*
	 * Setup timeout to use minimum CPU usage, especially when idle
	 */
318 319

	/*
B
bellard 已提交
320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335
	 * First, see the timeout needed by *timo
	 */
	timeout.tv_sec = 0;
	timeout.tv_usec = -1;
	/*
	 * If a slowtimo is needed, set timeout to 500ms from the last
	 * slow timeout. If a fast timeout is needed, set timeout within
	 * 200ms of when it was requested.
	 */
	if (do_slowtimo) {
		/* XXX + 10000 because some select()'s aren't that accurate */
		timeout.tv_usec = ((500 - (curtime - last_slowtimo)) * 1000) + 10000;
		if (timeout.tv_usec < 0)
		   timeout.tv_usec = 0;
		else if (timeout.tv_usec > 510000)
		   timeout.tv_usec = 510000;
336

B
bellard 已提交
337 338 339 340 341
		/* Can only fasttimo if we also slowtimo */
		if (time_fasttimo) {
			tmp_time = (200 - (curtime - time_fasttimo)) * 1000;
			if (tmp_time < 0)
			   tmp_time = 0;
342

B
bellard 已提交
343 344 345 346 347 348
			/* Choose the smallest of the 2 */
			if (tmp_time < timeout.tv_usec)
			   timeout.tv_usec = (u_int)tmp_time;
		}
	}
        *pnfds = nfds;
349
}
B
bellard 已提交
350 351 352 353 354 355 356 357 358 359 360 361

void slirp_select_poll(fd_set *readfds, fd_set *writefds, fd_set *xfds)
{
    struct socket *so, *so_next;
    int ret;

    global_readfds = readfds;
    global_writefds = writefds;
    global_xfds = xfds;

	/* Update time */
	updtime();
362

B
bellard 已提交
363
	/*
364
	 * See if anything has timed out
B
bellard 已提交
365 366
	 */
	if (link_up) {
B
bellard 已提交
367
		if (time_fasttimo && ((curtime - time_fasttimo) >= 2)) {
B
bellard 已提交
368 369 370 371 372 373 374 375 376
			tcp_fasttimo();
			time_fasttimo = 0;
		}
		if (do_slowtimo && ((curtime - last_slowtimo) >= 499)) {
			ip_slowtimo();
			tcp_slowtimo();
			last_slowtimo = curtime;
		}
	}
377

B
bellard 已提交
378 379 380 381 382 383 384 385 386
	/*
	 * Check sockets
	 */
	if (link_up) {
		/*
		 * Check TCP sockets
		 */
		for (so = tcb.so_next; so != &tcb; so = so_next) {
			so_next = so->so_next;
387

B
bellard 已提交
388 389 390 391 392 393
			/*
			 * FD_ISSET is meaningless on these sockets
			 * (and they can crash the program)
			 */
			if (so->so_state & SS_NOFDREF || so->s == -1)
			   continue;
394

B
bellard 已提交
395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413
			/*
			 * Check for URG data
			 * This will soread as well, so no need to
			 * test for readfds below if this succeeds
			 */
			if (FD_ISSET(so->s, xfds))
			   sorecvoob(so);
			/*
			 * Check sockets for reading
			 */
			else if (FD_ISSET(so->s, readfds)) {
				/*
				 * Check for incoming connections
				 */
				if (so->so_state & SS_FACCEPTCONN) {
					tcp_connect(so);
					continue;
				} /* else */
				ret = soread(so);
414

B
bellard 已提交
415 416 417 418
				/* Output it if we read something */
				if (ret > 0)
				   tcp_output(sototcpcb(so));
			}
419

B
bellard 已提交
420 421 422 423 424 425 426 427 428 429
			/*
			 * Check sockets for writing
			 */
			if (FD_ISSET(so->s, writefds)) {
			  /*
			   * Check for non-blocking, still-connecting sockets
			   */
			  if (so->so_state & SS_ISFCONNECTING) {
			    /* Connected */
			    so->so_state &= ~SS_ISFCONNECTING;
430

B
bellard 已提交
431
			    ret = send(so->s, &ret, 0, 0);
B
bellard 已提交
432 433 434 435 436
			    if (ret < 0) {
			      /* XXXXX Must fix, zero bytes is a NOP */
			      if (errno == EAGAIN || errno == EWOULDBLOCK ||
				  errno == EINPROGRESS || errno == ENOTCONN)
				continue;
437

B
bellard 已提交
438 439 440 441
			      /* else failed */
			      so->so_state = SS_NOFDREF;
			    }
			    /* else so->so_state &= ~SS_ISFCONNECTING; */
442

B
bellard 已提交
443 444 445 446 447 448 449 450
			    /*
			     * Continue tcp_input
			     */
			    tcp_input((struct mbuf *)NULL, sizeof(struct ip), so);
			    /* continue; */
			  } else
			    ret = sowrite(so);
			  /*
451
			   * XXXXX If we wrote something (a lot), there
B
bellard 已提交
452 453 454 455 456
			   * could be a need for a window update.
			   * In the worst case, the remote will send
			   * a window probe to get things going again
			   */
			}
457

B
bellard 已提交
458 459 460 461 462 463
			/*
			 * Probe a still-connecting, non-blocking socket
			 * to check if it's still alive
	 	 	 */
#ifdef PROBE_CONN
			if (so->so_state & SS_ISFCONNECTING) {
B
bellard 已提交
464
			  ret = recv(so->s, (char *)&ret, 0,0);
465

B
bellard 已提交
466 467 468 469 470
			  if (ret < 0) {
			    /* XXX */
			    if (errno == EAGAIN || errno == EWOULDBLOCK ||
				errno == EINPROGRESS || errno == ENOTCONN)
			      continue; /* Still connecting, continue */
471

B
bellard 已提交
472 473
			    /* else failed */
			    so->so_state = SS_NOFDREF;
474

B
bellard 已提交
475 476
			    /* tcp_input will take care of it */
			  } else {
B
bellard 已提交
477
			    ret = send(so->s, &ret, 0,0);
B
bellard 已提交
478 479 480 481 482 483 484 485 486
			    if (ret < 0) {
			      /* XXX */
			      if (errno == EAGAIN || errno == EWOULDBLOCK ||
				  errno == EINPROGRESS || errno == ENOTCONN)
				continue;
			      /* else failed */
			      so->so_state = SS_NOFDREF;
			    } else
			      so->so_state &= ~SS_ISFCONNECTING;
487

B
bellard 已提交
488 489 490 491 492
			  }
			  tcp_input((struct mbuf *)NULL, sizeof(struct ip),so);
			} /* SS_ISFCONNECTING */
#endif
		}
493

B
bellard 已提交
494 495 496 497 498 499 500
		/*
		 * Now UDP sockets.
		 * Incoming packets are sent straight away, they're not buffered.
		 * Incoming UDP data isn't buffered either.
		 */
		for (so = udb.so_next; so != &udb; so = so_next) {
			so_next = so->so_next;
501

B
bellard 已提交
502 503 504 505 506
			if (so->s != -1 && FD_ISSET(so->s, readfds)) {
                            sorecvfrom(so);
                        }
		}
	}
507

B
bellard 已提交
508 509 510 511 512
	/*
	 * See if we can start outputting
	 */
	if (if_queued && link_up)
	   if_start();
B
bellard 已提交
513 514 515 516 517 518 519 520 521

	/* clear global file descriptor sets.
	 * these reside on the stack in vl.c
	 * so they're unusable if we're not in
	 * slirp_select_fill or slirp_select_poll.
	 */
	 global_readfds = NULL;
	 global_writefds = NULL;
	 global_xfds = NULL;
B
bellard 已提交
522 523 524 525 526 527 528 529 530 531 532
}

#define ETH_ALEN 6
#define ETH_HLEN 14

#define ETH_P_IP	0x0800		/* Internet Protocol packet	*/
#define ETH_P_ARP	0x0806		/* Address Resolution packet	*/

#define	ARPOP_REQUEST	1		/* ARP request			*/
#define	ARPOP_REPLY	2		/* ARP reply			*/

533
struct ethhdr
B
bellard 已提交
534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564
{
	unsigned char	h_dest[ETH_ALEN];	/* destination eth addr	*/
	unsigned char	h_source[ETH_ALEN];	/* source ether addr	*/
	unsigned short	h_proto;		/* packet type ID field	*/
};

struct arphdr
{
	unsigned short	ar_hrd;		/* format of hardware address	*/
	unsigned short	ar_pro;		/* format of protocol address	*/
	unsigned char	ar_hln;		/* length of hardware address	*/
	unsigned char	ar_pln;		/* length of protocol address	*/
	unsigned short	ar_op;		/* ARP opcode (command)		*/

	 /*
	  *	 Ethernet looks like this : This bit is variable sized however...
	  */
	unsigned char		ar_sha[ETH_ALEN];	/* sender hardware address	*/
	unsigned char		ar_sip[4];		/* sender IP address		*/
	unsigned char		ar_tha[ETH_ALEN];	/* target hardware address	*/
	unsigned char		ar_tip[4];		/* target IP address		*/
};

void arp_input(const uint8_t *pkt, int pkt_len)
{
    struct ethhdr *eh = (struct ethhdr *)pkt;
    struct arphdr *ah = (struct arphdr *)(pkt + ETH_HLEN);
    uint8_t arp_reply[ETH_HLEN + sizeof(struct arphdr)];
    struct ethhdr *reh = (struct ethhdr *)arp_reply;
    struct arphdr *rah = (struct arphdr *)(arp_reply + ETH_HLEN);
    int ar_op;
B
bellard 已提交
565
    struct ex_list *ex_ptr;
B
bellard 已提交
566 567 568 569

    ar_op = ntohs(ah->ar_op);
    switch(ar_op) {
    case ARPOP_REQUEST:
B
bellard 已提交
570
        if (!memcmp(ah->ar_tip, &special_addr, 3)) {
571
            if (ah->ar_tip[3] == CTL_DNS || ah->ar_tip[3] == CTL_ALIAS)
B
bellard 已提交
572 573 574 575 576 577 578
                goto arp_ok;
            for (ex_ptr = exec_list; ex_ptr; ex_ptr = ex_ptr->ex_next) {
                if (ex_ptr->ex_addr == ah->ar_tip[3])
                    goto arp_ok;
            }
            return;
        arp_ok:
B
bellard 已提交
579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611
            /* XXX: make an ARP request to have the client address */
            memcpy(client_ethaddr, eh->h_source, ETH_ALEN);

            /* ARP request for alias/dns mac address */
            memcpy(reh->h_dest, pkt + ETH_ALEN, ETH_ALEN);
            memcpy(reh->h_source, special_ethaddr, ETH_ALEN - 1);
            reh->h_source[5] = ah->ar_tip[3];
            reh->h_proto = htons(ETH_P_ARP);

            rah->ar_hrd = htons(1);
            rah->ar_pro = htons(ETH_P_IP);
            rah->ar_hln = ETH_ALEN;
            rah->ar_pln = 4;
            rah->ar_op = htons(ARPOP_REPLY);
            memcpy(rah->ar_sha, reh->h_source, ETH_ALEN);
            memcpy(rah->ar_sip, ah->ar_tip, 4);
            memcpy(rah->ar_tha, ah->ar_sha, ETH_ALEN);
            memcpy(rah->ar_tip, ah->ar_sip, 4);
            slirp_output(arp_reply, sizeof(arp_reply));
        }
        break;
    default:
        break;
    }
}

void slirp_input(const uint8_t *pkt, int pkt_len)
{
    struct mbuf *m;
    int proto;

    if (pkt_len < ETH_HLEN)
        return;
612

B
bellard 已提交
613 614 615 616 617 618 619 620 621
    proto = ntohs(*(uint16_t *)(pkt + 12));
    switch(proto) {
    case ETH_P_ARP:
        arp_input(pkt, pkt_len);
        break;
    case ETH_P_IP:
        m = m_get();
        if (!m)
            return;
B
bellard 已提交
622 623 624
        /* Note: we add to align the IP header */
        m->m_len = pkt_len + 2;
        memcpy(m->m_data + 2, pkt, pkt_len);
B
bellard 已提交
625

B
bellard 已提交
626 627
        m->m_data += 2 + ETH_HLEN;
        m->m_len -= 2 + ETH_HLEN;
B
bellard 已提交
628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646

        ip_input(m);
        break;
    default:
        break;
    }
}

/* output the IP packet to the ethernet device */
void if_encap(const uint8_t *ip_data, int ip_data_len)
{
    uint8_t buf[1600];
    struct ethhdr *eh = (struct ethhdr *)buf;

    if (ip_data_len + ETH_HLEN > sizeof(buf))
        return;

    memcpy(eh->h_dest, client_ethaddr, ETH_ALEN);
    memcpy(eh->h_source, special_ethaddr, ETH_ALEN - 1);
B
bellard 已提交
647
    /* XXX: not correct */
B
bellard 已提交
648 649 650 651 652
    eh->h_source[5] = CTL_ALIAS;
    eh->h_proto = htons(ETH_P_IP);
    memcpy(buf + sizeof(struct ethhdr), ip_data, ip_data_len);
    slirp_output(buf, ip_data_len + ETH_HLEN);
}
B
bellard 已提交
653

654
int slirp_redir(int is_udp, int host_port,
B
bellard 已提交
655 656 657
                struct in_addr guest_addr, int guest_port)
{
    if (is_udp) {
658
        if (!udp_listen(htons(host_port), guest_addr.s_addr,
B
bellard 已提交
659 660 661
                        htons(guest_port), 0))
            return -1;
    } else {
662
        if (!solisten(htons(host_port), guest_addr.s_addr,
B
bellard 已提交
663 664 665 666 667
                      htons(guest_port), 0))
            return -1;
    }
    return 0;
}
B
bellard 已提交
668

669
int slirp_add_exec(int do_pty, const char *args, int addr_low_byte,
B
bellard 已提交
670 671
                  int guest_port)
{
672
    return add_exec(&exec_list, do_pty, (char *)args,
B
bellard 已提交
673 674
                    addr_low_byte, htons(guest_port));
}