misc.c 18.3 KB
Newer Older
B
bellard 已提交
1 2
/*
 * Copyright (c) 1995 Danny Gasparovski.
3
 *
B
bellard 已提交
4 5 6 7 8 9 10
 * Please read the file COPYRIGHT for the
 * terms and conditions of the copyright.
 */

#define WANT_SYS_IOCTL_H
#include <slirp.h>

11
u_int curtime, time_fasttimo, last_slowtimo;
B
bellard 已提交
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32

#if 0
int x_port = -1;
int x_display = 0;
int x_screen = 0;

int
show_x(buff, inso)
	char *buff;
	struct socket *inso;
{
	if (x_port < 0) {
		lprint("X Redir: X not being redirected.\r\n");
	} else {
		lprint("X Redir: In sh/bash/zsh/etc. type: DISPLAY=%s:%d.%d; export DISPLAY\r\n",
		      inet_ntoa(our_addr), x_port, x_screen);
		lprint("X Redir: In csh/tcsh/etc. type:    setenv DISPLAY %s:%d.%d\r\n",
		      inet_ntoa(our_addr), x_port, x_screen);
		if (x_display)
		   lprint("X Redir: Redirecting to display %d\r\n", x_display);
	}
33

B
bellard 已提交
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
	return CFG_OK;
}


/*
 * XXX Allow more than one X redirection?
 */
void
redir_x(inaddr, start_port, display, screen)
	u_int32_t inaddr;
	int start_port;
	int display;
	int screen;
{
	int i;
49

B
bellard 已提交
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
	if (x_port >= 0) {
		lprint("X Redir: X already being redirected.\r\n");
		show_x(0, 0);
	} else {
		for (i = 6001 + (start_port-1); i <= 6100; i++) {
			if (solisten(htons(i), inaddr, htons(6000 + display), 0)) {
				/* Success */
				x_port = i - 6000;
				x_display = display;
				x_screen = screen;
				show_x(0, 0);
				return;
			}
		}
		lprint("X Redir: Error: Couldn't redirect a port for X. Weird.\r\n");
	}
}
#endif

/*
 * Get our IP address and put it in our_addr
 */
void
getouraddr()
{
	char buff[256];
76
	struct hostent *he = NULL;
77

78 79 80 81
	if (gethostname(buff,256) == 0)
            he = gethostbyname(buff);
        if (he)
            our_addr = *(struct in_addr *)he->h_addr;
82 83
        if (our_addr.s_addr == 0)
            our_addr.s_addr = loopback_addr.s_addr;
B
bellard 已提交
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
}

struct quehead {
	struct quehead *qh_link;
	struct quehead *qh_rlink;
};

inline void
insque(a, b)
	void *a, *b;
{
	register struct quehead *element = (struct quehead *) a;
	register struct quehead *head = (struct quehead *) b;
	element->qh_link = head->qh_link;
	head->qh_link = (struct quehead *)element;
	element->qh_rlink = (struct quehead *)head;
	((struct quehead *)(element->qh_link))->qh_rlink
	= (struct quehead *)element;
}

inline void
remque(a)
     void *a;
{
  register struct quehead *element = (struct quehead *) a;
  ((struct quehead *)(element->qh_link))->qh_rlink = element->qh_rlink;
  ((struct quehead *)(element->qh_rlink))->qh_link = element->qh_link;
  element->qh_rlink = NULL;
  /*  element->qh_link = NULL;  TCP FIN1 crashes if you do this.  Why ? */
}

/* #endif */


int
add_exec(ex_ptr, do_pty, exec, addr, port)
	struct ex_list **ex_ptr;
	int do_pty;
	char *exec;
	int addr;
	int port;
{
	struct ex_list *tmp_ptr;
127

B
bellard 已提交
128 129 130 131 132
	/* First, check if the port is "bound" */
	for (tmp_ptr = *ex_ptr; tmp_ptr; tmp_ptr = tmp_ptr->ex_next) {
		if (port == tmp_ptr->ex_fport && addr == tmp_ptr->ex_addr)
		   return -1;
	}
133

B
bellard 已提交
134 135 136 137 138
	tmp_ptr = *ex_ptr;
	*ex_ptr = (struct ex_list *)malloc(sizeof(struct ex_list));
	(*ex_ptr)->ex_fport = port;
	(*ex_ptr)->ex_addr = addr;
	(*ex_ptr)->ex_pty = do_pty;
139
	(*ex_ptr)->ex_exec = (do_pty == 3) ? exec : strdup(exec);
B
bellard 已提交
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
	(*ex_ptr)->ex_next = tmp_ptr;
	return 0;
}

#ifndef HAVE_STRERROR

/*
 * For systems with no strerror
 */

extern int sys_nerr;
extern char *sys_errlist[];

char *
strerror(error)
	int error;
{
	if (error < sys_nerr)
	   return sys_errlist[error];
	else
	   return "Unknown error.";
}

#endif


B
bellard 已提交
166 167 168
#ifdef _WIN32

int
169
fork_exec(struct socket *so, const char *ex, int do_pty)
B
bellard 已提交
170 171 172 173 174 175 176
{
    /* not implemented */
    return 0;
}

#else

177
#ifndef CONFIG_QEMU
B
bellard 已提交
178
int
B
bellard 已提交
179 180
slirp_openpty(amaster, aslave)
     int *amaster, *aslave;
B
bellard 已提交
181 182 183 184 185
{
	register int master, slave;

#ifdef HAVE_GRANTPT
	char *ptr;
186

B
bellard 已提交
187 188 189 190 191 192 193
	if ((master = open("/dev/ptmx", O_RDWR)) < 0 ||
	    grantpt(master) < 0 ||
	    unlockpt(master) < 0 ||
	    (ptr = ptsname(master)) == NULL)  {
		close(master);
		return -1;
	}
194

B
bellard 已提交
195 196 197 198 199 200 201 202
	if ((slave = open(ptr, O_RDWR)) < 0 ||
	    ioctl(slave, I_PUSH, "ptem") < 0 ||
	    ioctl(slave, I_PUSH, "ldterm") < 0 ||
	    ioctl(slave, I_PUSH, "ttcompat") < 0) {
		close(master);
		close(slave);
		return -1;
	}
203

B
bellard 已提交
204 205 206
	*amaster = master;
	*aslave = slave;
	return 0;
207

B
bellard 已提交
208
#else
209

B
bellard 已提交
210 211
	static char line[] = "/dev/ptyXX";
	register const char *cp1, *cp2;
212

B
bellard 已提交
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
	for (cp1 = "pqrsPQRS"; *cp1; cp1++) {
		line[8] = *cp1;
		for (cp2 = "0123456789abcdefghijklmnopqrstuv"; *cp2; cp2++) {
			line[9] = *cp2;
			if ((master = open(line, O_RDWR, 0)) == -1) {
				if (errno == ENOENT)
				   return (-1);    /* out of ptys */
			} else {
				line[5] = 't';
				/* These will fail */
				(void) chown(line, getuid(), 0);
				(void) chmod(line, S_IRUSR|S_IWUSR|S_IWGRP);
#ifdef HAVE_REVOKE
				(void) revoke(line);
#endif
				if ((slave = open(line, O_RDWR, 0)) != -1) {
					*amaster = master;
					*aslave = slave;
					return 0;
				}
				(void) close(master);
				line[5] = 'p';
			}
		}
	}
	errno = ENOENT; /* out of ptys */
	return (-1);
#endif
}
242
#endif
B
bellard 已提交
243 244 245 246 247 248 249

/*
 * XXX This is ugly
 * We create and bind a socket, then fork off to another
 * process, which connects to this socket, after which we
 * exec the wanted program.  If something (strange) happens,
 * the accept() call could block us forever.
250
 *
B
bellard 已提交
251 252 253 254 255
 * do_pty = 0   Fork/exec inetd style
 * do_pty = 1   Fork/exec using slirp.telnetd
 * do_ptr = 2   Fork/exec using pty
 */
int
256
fork_exec(struct socket *so, const char *ex, int do_pty)
B
bellard 已提交
257 258 259
{
	int s;
	struct sockaddr_in addr;
260
	socklen_t addrlen = sizeof(addr);
B
bellard 已提交
261
	int opt;
262
        int master = -1;
263
	const char *argv[256];
B
bellard 已提交
264
#if 0
B
bellard 已提交
265
	char buff[256];
B
bellard 已提交
266
#endif
B
bellard 已提交
267 268
	/* don't want to clobber the original */
	char *bptr;
269
	const char *curarg;
270
	int c, i, ret;
271

B
bellard 已提交
272 273 274 275
	DEBUG_CALL("fork_exec");
	DEBUG_ARG("so = %lx", (long)so);
	DEBUG_ARG("ex = %lx", (long)ex);
	DEBUG_ARG("do_pty = %lx", (long)do_pty);
276

B
bellard 已提交
277
	if (do_pty == 2) {
278
#if 0
B
bellard 已提交
279
		if (slirp_openpty(&master, &s) == -1) {
B
bellard 已提交
280 281 282
			lprint("Error: openpty failed: %s\n", strerror(errno));
			return 0;
		}
283 284
#else
                return 0;
285
#endif
B
bellard 已提交
286 287 288 289
	} else {
		addr.sin_family = AF_INET;
		addr.sin_port = 0;
		addr.sin_addr.s_addr = INADDR_ANY;
290

B
bellard 已提交
291 292 293 294
		if ((s = socket(AF_INET, SOCK_STREAM, 0)) < 0 ||
		    bind(s, (struct sockaddr *)&addr, addrlen) < 0 ||
		    listen(s, 1) < 0) {
			lprint("Error: inet socket: %s\n", strerror(errno));
B
bellard 已提交
295
			closesocket(s);
296

B
bellard 已提交
297 298 299
			return 0;
		}
	}
300

B
bellard 已提交
301 302 303 304 305 306 307
	switch(fork()) {
	 case -1:
		lprint("Error: fork failed: %s\n", strerror(errno));
		close(s);
		if (do_pty == 2)
		   close(master);
		return 0;
308

B
bellard 已提交
309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
	 case 0:
		/* Set the DISPLAY */
		if (do_pty == 2) {
			(void) close(master);
#ifdef TIOCSCTTY /* XXXXX */
			(void) setsid();
			ioctl(s, TIOCSCTTY, (char *)NULL);
#endif
		} else {
			getsockname(s, (struct sockaddr *)&addr, &addrlen);
			close(s);
			/*
			 * Connect to the socket
			 * XXX If any of these fail, we're in trouble!
	 		 */
			s = socket(AF_INET, SOCK_STREAM, 0);
			addr.sin_addr = loopback_addr;
326 327 328
                        do {
                            ret = connect(s, (struct sockaddr *)&addr, addrlen);
                        } while (ret < 0 && errno == EINTR);
B
bellard 已提交
329
		}
330

B
bellard 已提交
331
#if 0
B
bellard 已提交
332 333 334 335 336 337 338 339 340
		if (x_port >= 0) {
#ifdef HAVE_SETENV
			sprintf(buff, "%s:%d.%d", inet_ntoa(our_addr), x_port, x_screen);
			setenv("DISPLAY", buff, 1);
#else
			sprintf(buff, "DISPLAY=%s:%d.%d", inet_ntoa(our_addr), x_port, x_screen);
			putenv(buff);
#endif
		}
341
#endif
B
bellard 已提交
342 343 344
		dup2(s, 0);
		dup2(s, 1);
		dup2(s, 2);
345
		for (s = getdtablesize() - 1; s >= 3; s--)
B
bellard 已提交
346
		   close(s);
347

B
bellard 已提交
348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364
		i = 0;
		bptr = strdup(ex); /* No need to free() this */
		if (do_pty == 1) {
			/* Setup "slirp.telnetd -x" */
			argv[i++] = "slirp.telnetd";
			argv[i++] = "-x";
			argv[i++] = bptr;
		} else
		   do {
			/* Change the string into argv[] */
			curarg = bptr;
			while (*bptr != ' ' && *bptr != (char)0)
			   bptr++;
			c = *bptr;
			*bptr++ = (char)0;
			argv[i++] = strdup(curarg);
		   } while (c);
365

B
bellard 已提交
366
		argv[i] = 0;
367
		execvp(argv[0], (char **)argv);
368

B
bellard 已提交
369 370 371
		/* Ooops, failed, let's tell the user why */
		  {
			  char buff[256];
372

B
blueswir1 已提交
373 374 375
			  snprintf(buff, sizeof(buff),
                                   "Error: execvp of %s failed: %s\n",
                                   argv[0], strerror(errno));
B
bellard 已提交
376 377 378 379
			  write(2, buff, strlen(buff)+1);
		  }
		close(0); close(1); close(2); /* XXX */
		exit(1);
380

B
bellard 已提交
381 382 383 384 385 386 387 388 389 390 391 392
	 default:
		if (do_pty == 2) {
			close(s);
			so->s = master;
		} else {
			/*
			 * XXX this could block us...
			 * XXX Should set a timer here, and if accept() doesn't
		 	 * return after X seconds, declare it a failure
		 	 * The only reason this will block forever is if socket()
		 	 * of connect() fail in the child process
		 	 */
393 394 395 396
                        do {
                            so->s = accept(s, (struct sockaddr *)&addr, &addrlen);
                        } while (so->s < 0 && errno == EINTR);
                        closesocket(s);
B
bellard 已提交
397 398 399 400 401 402
			opt = 1;
			setsockopt(so->s,SOL_SOCKET,SO_REUSEADDR,(char *)&opt,sizeof(int));
			opt = 1;
			setsockopt(so->s,SOL_SOCKET,SO_OOBINLINE,(char *)&opt,sizeof(int));
		}
		fd_nonblock(so->s);
403

B
bellard 已提交
404 405 406 407 408
		/* Append the telnet options now */
		if (so->so_m != 0 && do_pty == 1)  {
			sbappend(so, so->so_m);
			so->so_m = 0;
		}
409

B
bellard 已提交
410 411 412 413 414 415 416 417 418 419 420
		return 1;
	}
}
#endif

#ifndef HAVE_STRDUP
char *
strdup(str)
	const char *str;
{
	char *bptr;
421

B
bellard 已提交
422 423
	bptr = (char *)malloc(strlen(str)+1);
	strcpy(bptr, str);
424

B
bellard 已提交
425 426 427 428 429 430 431 432 433 434 435 436 437 438 439
	return bptr;
}
#endif

#if 0
void
snooze_hup(num)
	int num;
{
	int s, ret;
#ifndef NO_UNIX_SOCKETS
	struct sockaddr_un sock_un;
#endif
	struct sockaddr_in sock_in;
	char buff[256];
440

B
bellard 已提交
441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469
	ret = -1;
	if (slirp_socket_passwd) {
		s = socket(AF_INET, SOCK_STREAM, 0);
		if (s < 0)
		   slirp_exit(1);
		sock_in.sin_family = AF_INET;
		sock_in.sin_addr.s_addr = slirp_socket_addr;
		sock_in.sin_port = htons(slirp_socket_port);
		if (connect(s, (struct sockaddr *)&sock_in, sizeof(sock_in)) != 0)
		   slirp_exit(1); /* just exit...*/
		sprintf(buff, "kill %s:%d", slirp_socket_passwd, slirp_socket_unit);
		write(s, buff, strlen(buff)+1);
	}
#ifndef NO_UNIX_SOCKETS
	  else {
		s = socket(AF_UNIX, SOCK_STREAM, 0);
		if (s < 0)
		   slirp_exit(1);
		sock_un.sun_family = AF_UNIX;
		strcpy(sock_un.sun_path, socket_path);
		if (connect(s, (struct sockaddr *)&sock_un,
			      sizeof(sock_un.sun_family) + sizeof(sock_un.sun_path)) != 0)
		   slirp_exit(1);
		sprintf(buff, "kill none:%d", slirp_socket_unit);
		write(s, buff, strlen(buff)+1);
	}
#endif
	slirp_exit(0);
}
470 471


B
bellard 已提交
472 473 474 475 476
void
snooze()
{
	sigset_t s;
	int i;
477

B
bellard 已提交
478 479 480
	/* Don't need our data anymore */
	/* XXX This makes SunOS barf */
/*	brk(0); */
481

B
bellard 已提交
482 483 484
	/* Close all fd's */
	for (i = 255; i >= 0; i--)
	   close(i);
485

B
bellard 已提交
486 487 488
	signal(SIGQUIT, slirp_exit);
	signal(SIGHUP, snooze_hup);
	sigemptyset(&s);
489

B
bellard 已提交
490 491
	/* Wait for any signal */
	sigsuspend(&s);
492

B
bellard 已提交
493 494 495 496 497 498 499 500 501 502 503 504
	/* Just in case ... */
	exit(255);
}

void
relay(s)
	int s;
{
	char buf[8192];
	int n;
	fd_set readfds;
	struct ttys *ttyp;
505

B
bellard 已提交
506 507 508
	/* Don't need our data anymore */
	/* XXX This makes SunOS barf */
/*	brk(0); */
509

B
bellard 已提交
510 511 512 513
	signal(SIGQUIT, slirp_exit);
	signal(SIGHUP, slirp_exit);
        signal(SIGINT, slirp_exit);
	signal(SIGTERM, slirp_exit);
514

B
bellard 已提交
515 516 517 518 519 520 521 522
	/* Fudge to get term_raw and term_restore to work */
	if (NULL == (ttyp = tty_attach (0, slirp_tty))) {
         lprint ("Error: tty_attach failed in misc.c:relay()\r\n");
         slirp_exit (1);
    }
	ttyp->fd = 0;
	ttyp->flags |= TTY_CTTY;
	term_raw(ttyp);
523

B
bellard 已提交
524 525
	while (1) {
		FD_ZERO(&readfds);
526

B
bellard 已提交
527 528
		FD_SET(0, &readfds);
		FD_SET(s, &readfds);
529

B
bellard 已提交
530
		n = select(s+1, &readfds, (fd_set *)0, (fd_set *)0, (struct timeval *)0);
531

B
bellard 已提交
532 533
		if (n <= 0)
		   slirp_exit(0);
534

B
bellard 已提交
535 536 537 538 539 540 541 542
		if (FD_ISSET(0, &readfds)) {
			n = read(0, buf, 8192);
			if (n <= 0)
			   slirp_exit(0);
			n = writen(s, buf, n);
			if (n <= 0)
			   slirp_exit(0);
		}
543

B
bellard 已提交
544 545 546 547 548 549 550 551 552
		if (FD_ISSET(s, &readfds)) {
			n = read(s, buf, 8192);
			if (n <= 0)
			   slirp_exit(0);
			n = writen(0, buf, n);
			if (n <= 0)
			   slirp_exit(0);
		}
	}
553

B
bellard 已提交
554 555 556 557 558
	/* Just in case.... */
	exit(1);
}
#endif

559
#ifdef CONFIG_QEMU
A
aliguori 已提交
560
#include "monitor.h"
561

562 563 564 565 566
void lprint(const char *format, ...)
{
    va_list args;

    va_start(args, format);
A
aliguori 已提交
567
    monitor_vprintf(cur_mon, format, args);
568 569 570
    va_end(args);
}
#else
B
bellard 已提交
571 572 573 574 575 576 577 578 579 580 581
int (*lprint_print) _P((void *, const char *, va_list));
char *lprint_ptr, *lprint_ptr2, **lprint_arg;

void
#ifdef __STDC__
lprint(const char *format, ...)
#else
lprint(va_alist) va_dcl
#endif
{
	va_list args;
582

B
bellard 已提交
583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598
#ifdef __STDC__
        va_start(args, format);
#else
        char *format;
        va_start(args);
        format = va_arg(args, char *);
#endif
#if 0
	/* If we're printing to an sbuf, make sure there's enough room */
	/* XXX +100? */
	if (lprint_sb) {
		if ((lprint_ptr - lprint_sb->sb_wptr) >=
		    (lprint_sb->sb_datalen - (strlen(format) + 100))) {
			int deltaw = lprint_sb->sb_wptr - lprint_sb->sb_data;
			int deltar = lprint_sb->sb_rptr - lprint_sb->sb_data;
			int deltap = lprint_ptr -         lprint_sb->sb_data;
599

B
bellard 已提交
600 601
			lprint_sb->sb_data = (char *)realloc(lprint_sb->sb_data,
							     lprint_sb->sb_datalen + TCP_SNDSPACE);
602

B
bellard 已提交
603 604 605 606
			/* Adjust all values */
			lprint_sb->sb_wptr = lprint_sb->sb_data + deltaw;
			lprint_sb->sb_rptr = lprint_sb->sb_data + deltar;
			lprint_ptr =         lprint_sb->sb_data + deltap;
607

B
bellard 已提交
608 609 610
			lprint_sb->sb_datalen += TCP_SNDSPACE;
		}
	}
611
#endif
B
bellard 已提交
612 613
	if (lprint_print)
	   lprint_ptr += (*lprint_print)(*lprint_arg, format, args);
614

B
bellard 已提交
615 616
	/* Check if they want output to be logged to file as well */
	if (lfd) {
617
		/*
B
bellard 已提交
618 619 620 621 622
		 * Remove \r's
		 * otherwise you'll get ^M all over the file
		 */
		int len = strlen(format);
		char *bptr1, *bptr2;
623

B
bellard 已提交
624
		bptr1 = bptr2 = strdup(format);
625

B
bellard 已提交
626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647
		while (len--) {
			if (*bptr1 == '\r')
			   memcpy(bptr1, bptr1+1, len+1);
			else
			   bptr1++;
		}
		vfprintf(lfd, bptr2, args);
		free(bptr2);
	}
	va_end(args);
}

void
add_emu(buff)
	char *buff;
{
	u_int lport, fport;
	u_int8_t tos = 0, emu = 0;
	char buff1[256], buff2[256], buff4[128];
	char *buff3 = buff4;
	struct emu_t *emup;
	struct socket *so;
648

B
bellard 已提交
649 650 651 652
	if (sscanf(buff, "%256s %256s", buff2, buff1) != 2) {
		lprint("Error: Bad arguments\r\n");
		return;
	}
653

B
bellard 已提交
654 655 656 657 658 659 660
	if (sscanf(buff1, "%d:%d", &lport, &fport) != 2) {
		lport = 0;
		if (sscanf(buff1, "%d", &fport) != 1) {
			lprint("Error: Bad first argument\r\n");
			return;
		}
	}
661

B
bellard 已提交
662 663 664 665 666 667 668
	if (sscanf(buff2, "%128[^:]:%128s", buff1, buff3) != 2) {
		buff3 = 0;
		if (sscanf(buff2, "%256s", buff1) != 1) {
			lprint("Error: Bad second argument\r\n");
			return;
		}
	}
669

B
bellard 已提交
670 671 672 673 674 675 676 677 678 679
	if (buff3) {
		if (strcmp(buff3, "lowdelay") == 0)
		   tos = IPTOS_LOWDELAY;
		else if (strcmp(buff3, "throughput") == 0)
		   tos = IPTOS_THROUGHPUT;
		else {
			lprint("Error: Expecting \"lowdelay\"/\"throughput\"\r\n");
			return;
		}
	}
680

B
bellard 已提交
681 682 683 684 685 686 687 688 689 690
	if (strcmp(buff1, "ftp") == 0)
	   emu = EMU_FTP;
	else if (strcmp(buff1, "irc") == 0)
	   emu = EMU_IRC;
	else if (strcmp(buff1, "none") == 0)
	   emu = EMU_NONE; /* ie: no emulation */
	else {
		lprint("Error: Unknown service\r\n");
		return;
	}
691

B
bellard 已提交
692 693 694 695 696 697 698
	/* First, check that it isn't already emulated */
	for (emup = tcpemu; emup; emup = emup->next) {
		if (emup->lport == lport && emup->fport == fport) {
			lprint("Error: port already emulated\r\n");
			return;
		}
	}
699

B
bellard 已提交
700 701 702 703 704 705 706 707
	/* link it */
	emup = (struct emu_t *)malloc(sizeof (struct emu_t));
	emup->lport = (u_int16_t)lport;
	emup->fport = (u_int16_t)fport;
	emup->tos = tos;
	emup->emu = emu;
	emup->next = tcpemu;
	tcpemu = emup;
708

B
bellard 已提交
709 710 711 712 713 714 715 716 717 718
	/* And finally, mark all current sessions, if any, as being emulated */
	for (so = tcb.so_next; so != &tcb; so = so->so_next) {
		if ((lport && lport == ntohs(so->so_lport)) ||
		    (fport && fport == ntohs(so->so_fport))) {
			if (emu)
			   so->so_emu = emu;
			if (tos)
			   so->so_iptos = tos;
		}
	}
719

B
bellard 已提交
720 721
	lprint("Adding emulation for %s to port %d/%d\r\n", buff1, emup->lport, emup->fport);
}
722
#endif
B
bellard 已提交
723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771

#ifdef BAD_SPRINTF

#undef vsprintf
#undef sprintf

/*
 * Some BSD-derived systems have a sprintf which returns char *
 */

int
vsprintf_len(string, format, args)
	char *string;
	const char *format;
	va_list args;
{
	vsprintf(string, format, args);
	return strlen(string);
}

int
#ifdef __STDC__
sprintf_len(char *string, const char *format, ...)
#else
sprintf_len(va_alist) va_dcl
#endif
{
	va_list args;
#ifdef __STDC__
	va_start(args, format);
#else
	char *string;
	char *format;
	va_start(args);
	string = va_arg(args, char *);
	format = va_arg(args, char *);
#endif
	vsprintf(string, format, args);
	return strlen(string);
}

#endif

void
u_sleep(usec)
	int usec;
{
	struct timeval t;
	fd_set fdset;
772

B
bellard 已提交
773
	FD_ZERO(&fdset);
774

B
bellard 已提交
775 776
	t.tv_sec = 0;
	t.tv_usec = usec * 1000;
777

B
bellard 已提交
778 779 780 781 782 783 784 785 786 787 788 789 790
	select(0, &fdset, &fdset, &fdset, &t);
}

/*
 * Set fd blocking and non-blocking
 */

void
fd_nonblock(fd)
	int fd;
{
#ifdef FIONBIO
	int opt = 1;
791

B
bellard 已提交
792
	ioctlsocket(fd, FIONBIO, &opt);
B
bellard 已提交
793 794
#else
	int opt;
795

B
bellard 已提交
796 797 798 799 800 801 802 803 804 805 806 807
	opt = fcntl(fd, F_GETFL, 0);
	opt |= O_NONBLOCK;
	fcntl(fd, F_SETFL, opt);
#endif
}

void
fd_block(fd)
	int fd;
{
#ifdef FIONBIO
	int opt = 0;
808

B
bellard 已提交
809
	ioctlsocket(fd, FIONBIO, &opt);
B
bellard 已提交
810 811
#else
	int opt;
812

B
bellard 已提交
813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835
	opt = fcntl(fd, F_GETFL, 0);
	opt &= ~O_NONBLOCK;
	fcntl(fd, F_SETFL, opt);
#endif
}


#if 0
/*
 * invoke RSH
 */
int
rsh_exec(so,ns, user, host, args)
	struct socket *so;
	struct socket *ns;
	char *user;
	char *host;
	char *args;
{
	int fd[2];
	int fd0[2];
	int s;
	char buff[256];
836

B
bellard 已提交
837 838
	DEBUG_CALL("rsh_exec");
	DEBUG_ARG("so = %lx", (long)so);
839

B
bellard 已提交
840 841 842 843 844 845 846 847 848 849 850 851 852
	if (pipe(fd)<0) {
          lprint("Error: pipe failed: %s\n", strerror(errno));
          return 0;
	}
/* #ifdef HAVE_SOCKETPAIR */
#if 1
        if (socketpair(PF_UNIX,SOCK_STREAM,0, fd0) == -1) {
          close(fd[0]);
          close(fd[1]);
          lprint("Error: openpty failed: %s\n", strerror(errno));
          return 0;
        }
#else
B
bellard 已提交
853
        if (slirp_openpty(&fd0[0], &fd0[1]) == -1) {
B
bellard 已提交
854 855 856 857 858 859
          close(fd[0]);
          close(fd[1]);
          lprint("Error: openpty failed: %s\n", strerror(errno));
          return 0;
        }
#endif
860

B
bellard 已提交
861 862 863 864 865 866 867 868
	switch(fork()) {
	 case -1:
           lprint("Error: fork failed: %s\n", strerror(errno));
           close(fd[0]);
           close(fd[1]);
           close(fd0[0]);
           close(fd0[1]);
           return 0;
869

B
bellard 已提交
870 871 872
	 case 0:
           close(fd[0]);
           close(fd0[0]);
873

B
bellard 已提交
874 875 876 877 878 879 880 881 882 883
		/* Set the DISPLAY */
           if (x_port >= 0) {
#ifdef HAVE_SETENV
             sprintf(buff, "%s:%d.%d", inet_ntoa(our_addr), x_port, x_screen);
             setenv("DISPLAY", buff, 1);
#else
             sprintf(buff, "DISPLAY=%s:%d.%d", inet_ntoa(our_addr), x_port, x_screen);
             putenv(buff);
#endif
           }
884

B
bellard 已提交
885 886 887 888 889
           dup2(fd0[1], 0);
           dup2(fd0[1], 1);
           dup2(fd[1], 2);
           for (s = 3; s <= 255; s++)
             close(s);
890

B
bellard 已提交
891
           execlp("rsh","rsh","-l", user, host, args, NULL);
892

B
bellard 已提交
893
           /* Ooops, failed, let's tell the user why */
894

895
           sprintf(buff, "Error: execlp of %s failed: %s\n",
B
bellard 已提交
896 897 898 899
                   "rsh", strerror(errno));
           write(2, buff, strlen(buff)+1);
           close(0); close(1); close(2); /* XXX */
           exit(1);
900

B
bellard 已提交
901 902 903 904 905
        default:
          close(fd[1]);
          close(fd0[1]);
          ns->s=fd[0];
          so->s=fd0[0];
906

B
bellard 已提交
907 908 909 910
          return 1;
	}
}
#endif