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

#include <slirp.h>
9 10
#include <libslirp.h>

11
#include "monitor/monitor.h"
12
#include "qemu/main-loop.h"
B
bellard 已提交
13

14 15 16 17
#ifdef DEBUG
int slirp_debug = DBG_CALL|DBG_MISC|DBG_ERROR;
#endif

B
bellard 已提交
18 19 20 21 22 23
struct quehead {
	struct quehead *qh_link;
	struct quehead *qh_rlink;
};

inline void
24
insque(void *a, void *b)
B
bellard 已提交
25 26 27 28 29 30 31 32 33 34 35
{
	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
36
remque(void *a)
B
bellard 已提交
37 38 39 40 41 42 43
{
  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;
}

44 45
int add_exec(struct ex_list **ex_ptr, int do_pty, char *exec,
             struct in_addr addr, int port)
B
bellard 已提交
46 47
{
	struct ex_list *tmp_ptr;
48

B
bellard 已提交
49 50
	/* First, check if the port is "bound" */
	for (tmp_ptr = *ex_ptr; tmp_ptr; tmp_ptr = tmp_ptr->ex_next) {
51 52 53
		if (port == tmp_ptr->ex_fport &&
		    addr.s_addr == tmp_ptr->ex_addr.s_addr)
			return -1;
B
bellard 已提交
54
	}
55

B
bellard 已提交
56 57 58 59 60
	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;
61
	(*ex_ptr)->ex_exec = (do_pty == 3) ? exec : strdup(exec);
B
bellard 已提交
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
	(*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 已提交
88 89 90
#ifdef _WIN32

int
91
fork_exec(struct socket *so, const char *ex, int do_pty)
B
bellard 已提交
92 93 94 95 96 97 98
{
    /* not implemented */
    return 0;
}

#else

B
bellard 已提交
99 100 101 102 103 104
/*
 * 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.
105
 *
B
bellard 已提交
106 107 108 109 110
 * do_pty = 0   Fork/exec inetd style
 * do_pty = 1   Fork/exec using slirp.telnetd
 * do_ptr = 2   Fork/exec using pty
 */
int
111
fork_exec(struct socket *so, const char *ex, int do_pty)
B
bellard 已提交
112 113 114
{
	int s;
	struct sockaddr_in addr;
115
	socklen_t addrlen = sizeof(addr);
B
bellard 已提交
116
	int opt;
117
	const char *argv[256];
B
bellard 已提交
118 119
	/* don't want to clobber the original */
	char *bptr;
120
	const char *curarg;
121
	int c, i, ret;
122
	pid_t pid;
123

B
bellard 已提交
124 125 126 127
	DEBUG_CALL("fork_exec");
	DEBUG_ARG("so = %lx", (long)so);
	DEBUG_ARG("ex = %lx", (long)ex);
	DEBUG_ARG("do_pty = %lx", (long)do_pty);
128

B
bellard 已提交
129
	if (do_pty == 2) {
130
                return 0;
B
bellard 已提交
131 132 133 134
	} else {
		addr.sin_family = AF_INET;
		addr.sin_port = 0;
		addr.sin_addr.s_addr = INADDR_ANY;
135

K
Kevin Wolf 已提交
136
		if ((s = qemu_socket(AF_INET, SOCK_STREAM, 0)) < 0 ||
B
bellard 已提交
137 138 139
		    bind(s, (struct sockaddr *)&addr, addrlen) < 0 ||
		    listen(s, 1) < 0) {
			lprint("Error: inet socket: %s\n", strerror(errno));
B
bellard 已提交
140
			closesocket(s);
141

B
bellard 已提交
142 143 144
			return 0;
		}
	}
145

146 147
	pid = fork();
	switch(pid) {
B
bellard 已提交
148 149 150 151
	 case -1:
		lprint("Error: fork failed: %s\n", strerror(errno));
		close(s);
		return 0;
152

B
bellard 已提交
153
	 case 0:
154 155
                setsid();

B
bellard 已提交
156
		/* Set the DISPLAY */
157 158 159 160 161 162 163 164 165 166 167
                getsockname(s, (struct sockaddr *)&addr, &addrlen);
                close(s);
                /*
                 * Connect to the socket
                 * XXX If any of these fail, we're in trouble!
                 */
                s = qemu_socket(AF_INET, SOCK_STREAM, 0);
                addr.sin_addr = loopback_addr;
                do {
                    ret = connect(s, (struct sockaddr *)&addr, addrlen);
                } while (ret < 0 && errno == EINTR);
168

B
bellard 已提交
169 170 171
		dup2(s, 0);
		dup2(s, 1);
		dup2(s, 2);
172
		for (s = getdtablesize() - 1; s >= 3; s--)
B
bellard 已提交
173
		   close(s);
174

B
bellard 已提交
175
		i = 0;
176
		bptr = g_strdup(ex); /* No need to free() this */
B
bellard 已提交
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
		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);
192

193
                argv[i] = NULL;
194
		execvp(argv[0], (char **)argv);
195

B
bellard 已提交
196
		/* Ooops, failed, let's tell the user why */
197 198
        fprintf(stderr, "Error: execvp of %s failed: %s\n",
                argv[0], strerror(errno));
B
bellard 已提交
199 200
		close(0); close(1); close(2); /* XXX */
		exit(1);
201

B
bellard 已提交
202
	 default:
203
		qemu_add_child_watch(pid);
204 205 206 207 208 209 210 211 212 213 214
                /*
                 * 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
                 */
                do {
                    so->s = accept(s, (struct sockaddr *)&addr, &addrlen);
                } while (so->s < 0 && errno == EINTR);
                closesocket(s);
215
                socket_set_fast_reuse(so->s);
216
                opt = 1;
217
                qemu_setsockopt(so->s, SOL_SOCKET, SO_OOBINLINE, &opt, sizeof(int));
218
		qemu_set_nonblock(so->s);
219

B
bellard 已提交
220
		/* Append the telnet options now */
221
                if (so->so_m != NULL && do_pty == 1)  {
B
bellard 已提交
222
			sbappend(so, so->so_m);
223
                        so->so_m = NULL;
B
bellard 已提交
224
		}
225

B
bellard 已提交
226 227 228 229 230 231 232 233 234 235 236
		return 1;
	}
}
#endif

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

B
bellard 已提交
238 239
	bptr = (char *)malloc(strlen(str)+1);
	strcpy(bptr, str);
240

B
bellard 已提交
241 242 243 244
	return bptr;
}
#endif

245 246 247 248 249
void lprint(const char *format, ...)
{
    va_list args;

    va_start(args, format);
250
    monitor_vprintf(default_mon, format, args);
251 252
    va_end(args);
}
B
bellard 已提交
253

254
void slirp_connection_info(Slirp *slirp, Monitor *mon)
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
{
    const char * const tcpstates[] = {
        [TCPS_CLOSED]       = "CLOSED",
        [TCPS_LISTEN]       = "LISTEN",
        [TCPS_SYN_SENT]     = "SYN_SENT",
        [TCPS_SYN_RECEIVED] = "SYN_RCVD",
        [TCPS_ESTABLISHED]  = "ESTABLISHED",
        [TCPS_CLOSE_WAIT]   = "CLOSE_WAIT",
        [TCPS_FIN_WAIT_1]   = "FIN_WAIT_1",
        [TCPS_CLOSING]      = "CLOSING",
        [TCPS_LAST_ACK]     = "LAST_ACK",
        [TCPS_FIN_WAIT_2]   = "FIN_WAIT_2",
        [TCPS_TIME_WAIT]    = "TIME_WAIT",
    };
    struct in_addr dst_addr;
    struct sockaddr_in src;
    socklen_t src_len;
    uint16_t dst_port;
    struct socket *so;
    const char *state;
    char buf[20];

    monitor_printf(mon, "  Protocol[State]    FD  Source Address  Port   "
                        "Dest. Address  Port RecvQ SendQ\n");

280
    for (so = slirp->tcb.so_next; so != &slirp->tcb; so = so->so_next) {
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
        if (so->so_state & SS_HOSTFWD) {
            state = "HOST_FORWARD";
        } else if (so->so_tcpcb) {
            state = tcpstates[so->so_tcpcb->t_state];
        } else {
            state = "NONE";
        }
        if (so->so_state & (SS_HOSTFWD | SS_INCOMING)) {
            src_len = sizeof(src);
            getsockname(so->s, (struct sockaddr *)&src, &src_len);
            dst_addr = so->so_laddr;
            dst_port = so->so_lport;
        } else {
            src.sin_addr = so->so_laddr;
            src.sin_port = so->so_lport;
            dst_addr = so->so_faddr;
            dst_port = so->so_fport;
        }
299 300
        snprintf(buf, sizeof(buf), "  TCP[%s]", state);
        monitor_printf(mon, "%-19s %3d %15s %5d ", buf, so->s,
301 302 303 304 305 306 307
                       src.sin_addr.s_addr ? inet_ntoa(src.sin_addr) : "*",
                       ntohs(src.sin_port));
        monitor_printf(mon, "%15s %5d %5d %5d\n",
                       inet_ntoa(dst_addr), ntohs(dst_port),
                       so->so_rcv.sb_cc, so->so_snd.sb_cc);
    }

308
    for (so = slirp->udb.so_next; so != &slirp->udb; so = so->so_next) {
309
        if (so->so_state & SS_HOSTFWD) {
310
            snprintf(buf, sizeof(buf), "  UDP[HOST_FORWARD]");
311 312 313 314 315
            src_len = sizeof(src);
            getsockname(so->s, (struct sockaddr *)&src, &src_len);
            dst_addr = so->so_laddr;
            dst_port = so->so_lport;
        } else {
316
            snprintf(buf, sizeof(buf), "  UDP[%d sec]",
317 318 319 320 321 322
                         (so->so_expire - curtime) / 1000);
            src.sin_addr = so->so_laddr;
            src.sin_port = so->so_lport;
            dst_addr = so->so_faddr;
            dst_port = so->so_fport;
        }
323
        monitor_printf(mon, "%-19s %3d %15s %5d ", buf, so->s,
324 325 326 327 328 329
                       src.sin_addr.s_addr ? inet_ntoa(src.sin_addr) : "*",
                       ntohs(src.sin_port));
        monitor_printf(mon, "%15s %5d %5d %5d\n",
                       inet_ntoa(dst_addr), ntohs(dst_port),
                       so->so_rcv.sb_cc, so->so_snd.sb_cc);
    }
330 331

    for (so = slirp->icmp.so_next; so != &slirp->icmp; so = so->so_next) {
332
        snprintf(buf, sizeof(buf), "  ICMP[%d sec]",
333 334 335
                     (so->so_expire - curtime) / 1000);
        src.sin_addr = so->so_laddr;
        dst_addr = so->so_faddr;
336
        monitor_printf(mon, "%-19s %3d %15s  -    ", buf, so->s,
337 338 339 340
                       src.sin_addr.s_addr ? inet_ntoa(src.sin_addr) : "*");
        monitor_printf(mon, "%15s  -    %5d %5d\n", inet_ntoa(dst_addr),
                       so->so_rcv.sb_cc, so->so_snd.sb_cc);
    }
341
}