2 * Copyright (c) 1995 Danny Gasparovski.
4 * Please read the file COPYRIGHT for the
5 * terms and conditions of the copyright.
8 #include "qemu/osdep.h"
12 #include "monitor/monitor.h"
13 #include "qemu/error-report.h"
14 #include "qemu/main-loop.h"
17 int slirp_debug = DBG_CALL|DBG_MISC|DBG_ERROR;
21 struct quehead *qh_link;
22 struct quehead *qh_rlink;
26 insque(void *a, void *b)
28 register struct quehead *element = (struct quehead *) a;
29 register struct quehead *head = (struct quehead *) b;
30 element->qh_link = head->qh_link;
31 head->qh_link = (struct quehead *)element;
32 element->qh_rlink = (struct quehead *)head;
33 ((struct quehead *)(element->qh_link))->qh_rlink
34 = (struct quehead *)element;
40 register struct quehead *element = (struct quehead *) a;
41 ((struct quehead *)(element->qh_link))->qh_rlink = element->qh_rlink;
42 ((struct quehead *)(element->qh_rlink))->qh_link = element->qh_link;
43 element->qh_rlink = NULL;
46 int add_exec(struct ex_list **ex_ptr, int do_pty, char *exec,
47 struct in_addr addr, int port)
49 struct ex_list *tmp_ptr;
51 /* First, check if the port is "bound" */
52 for (tmp_ptr = *ex_ptr; tmp_ptr; tmp_ptr = tmp_ptr->ex_next) {
53 if (port == tmp_ptr->ex_fport &&
54 addr.s_addr == tmp_ptr->ex_addr.s_addr)
59 *ex_ptr = g_new(struct ex_list, 1);
60 (*ex_ptr)->ex_fport = port;
61 (*ex_ptr)->ex_addr = addr;
62 (*ex_ptr)->ex_pty = do_pty;
63 (*ex_ptr)->ex_exec = (do_pty == 3) ? exec : g_strdup(exec);
64 (*ex_ptr)->ex_next = tmp_ptr;
71 * For systems with no strerror
75 extern char *sys_errlist[];
82 return sys_errlist[error];
84 return "Unknown error.";
93 fork_exec(struct socket *so, const char *ex, int do_pty)
103 * We create and bind a socket, then fork off to another
104 * process, which connects to this socket, after which we
105 * exec the wanted program. If something (strange) happens,
106 * the accept() call could block us forever.
108 * do_pty = 0 Fork/exec inetd style
109 * do_pty = 1 Fork/exec using slirp.telnetd
110 * do_ptr = 2 Fork/exec using pty
113 fork_exec(struct socket *so, const char *ex, int do_pty)
116 struct sockaddr_in addr;
117 socklen_t addrlen = sizeof(addr);
119 const char *argv[256];
120 /* don't want to clobber the original */
126 DEBUG_CALL("fork_exec");
127 DEBUG_ARG("so = %p", so);
128 DEBUG_ARG("ex = %p", ex);
129 DEBUG_ARG("do_pty = %x", do_pty);
134 addr.sin_family = AF_INET;
136 addr.sin_addr.s_addr = INADDR_ANY;
138 if ((s = qemu_socket(AF_INET, SOCK_STREAM, 0)) < 0 ||
139 bind(s, (struct sockaddr *)&addr, addrlen) < 0 ||
141 error_report("Error: inet socket: %s", strerror(errno));
151 error_report("Error: fork failed: %s", strerror(errno));
158 /* Set the DISPLAY */
159 getsockname(s, (struct sockaddr *)&addr, &addrlen);
162 * Connect to the socket
163 * XXX If any of these fail, we're in trouble!
165 s = qemu_socket(AF_INET, SOCK_STREAM, 0);
166 addr.sin_addr = loopback_addr;
168 ret = connect(s, (struct sockaddr *)&addr, addrlen);
169 } while (ret < 0 && errno == EINTR);
174 for (s = getdtablesize() - 1; s >= 3; s--)
178 bptr = g_strdup(ex); /* No need to free() this */
180 /* Setup "slirp.telnetd -x" */
181 argv[i++] = "slirp.telnetd";
186 /* Change the string into argv[] */
188 while (*bptr != ' ' && *bptr != (char)0)
192 argv[i++] = g_strdup(curarg);
196 execvp(argv[0], (char **)argv);
198 /* Ooops, failed, let's tell the user why */
199 fprintf(stderr, "Error: execvp of %s failed: %s\n",
200 argv[0], strerror(errno));
201 close(0); close(1); close(2); /* XXX */
205 qemu_add_child_watch(pid);
207 * XXX this could block us...
208 * XXX Should set a timer here, and if accept() doesn't
209 * return after X seconds, declare it a failure
210 * The only reason this will block forever is if socket()
211 * of connect() fail in the child process
214 so->s = accept(s, (struct sockaddr *)&addr, &addrlen);
215 } while (so->s < 0 && errno == EINTR);
217 socket_set_fast_reuse(so->s);
219 qemu_setsockopt(so->s, SOL_SOCKET, SO_OOBINLINE, &opt, sizeof(int));
220 qemu_set_nonblock(so->s);
222 /* Append the telnet options now */
223 if (so->so_m != NULL && do_pty == 1) {
224 sbappend(so, so->so_m);
233 void slirp_connection_info(Slirp *slirp, Monitor *mon)
235 const char * const tcpstates[] = {
236 [TCPS_CLOSED] = "CLOSED",
237 [TCPS_LISTEN] = "LISTEN",
238 [TCPS_SYN_SENT] = "SYN_SENT",
239 [TCPS_SYN_RECEIVED] = "SYN_RCVD",
240 [TCPS_ESTABLISHED] = "ESTABLISHED",
241 [TCPS_CLOSE_WAIT] = "CLOSE_WAIT",
242 [TCPS_FIN_WAIT_1] = "FIN_WAIT_1",
243 [TCPS_CLOSING] = "CLOSING",
244 [TCPS_LAST_ACK] = "LAST_ACK",
245 [TCPS_FIN_WAIT_2] = "FIN_WAIT_2",
246 [TCPS_TIME_WAIT] = "TIME_WAIT",
248 struct in_addr dst_addr;
249 struct sockaddr_in src;
256 monitor_printf(mon, " Protocol[State] FD Source Address Port "
257 "Dest. Address Port RecvQ SendQ\n");
259 for (so = slirp->tcb.so_next; so != &slirp->tcb; so = so->so_next) {
260 if (so->so_state & SS_HOSTFWD) {
261 state = "HOST_FORWARD";
262 } else if (so->so_tcpcb) {
263 state = tcpstates[so->so_tcpcb->t_state];
267 if (so->so_state & (SS_HOSTFWD | SS_INCOMING)) {
268 src_len = sizeof(src);
269 getsockname(so->s, (struct sockaddr *)&src, &src_len);
270 dst_addr = so->so_laddr;
271 dst_port = so->so_lport;
273 src.sin_addr = so->so_laddr;
274 src.sin_port = so->so_lport;
275 dst_addr = so->so_faddr;
276 dst_port = so->so_fport;
278 snprintf(buf, sizeof(buf), " TCP[%s]", state);
279 monitor_printf(mon, "%-19s %3d %15s %5d ", buf, so->s,
280 src.sin_addr.s_addr ? inet_ntoa(src.sin_addr) : "*",
281 ntohs(src.sin_port));
282 monitor_printf(mon, "%15s %5d %5d %5d\n",
283 inet_ntoa(dst_addr), ntohs(dst_port),
284 so->so_rcv.sb_cc, so->so_snd.sb_cc);
287 for (so = slirp->udb.so_next; so != &slirp->udb; so = so->so_next) {
288 if (so->so_state & SS_HOSTFWD) {
289 snprintf(buf, sizeof(buf), " UDP[HOST_FORWARD]");
290 src_len = sizeof(src);
291 getsockname(so->s, (struct sockaddr *)&src, &src_len);
292 dst_addr = so->so_laddr;
293 dst_port = so->so_lport;
295 snprintf(buf, sizeof(buf), " UDP[%d sec]",
296 (so->so_expire - curtime) / 1000);
297 src.sin_addr = so->so_laddr;
298 src.sin_port = so->so_lport;
299 dst_addr = so->so_faddr;
300 dst_port = so->so_fport;
302 monitor_printf(mon, "%-19s %3d %15s %5d ", buf, so->s,
303 src.sin_addr.s_addr ? inet_ntoa(src.sin_addr) : "*",
304 ntohs(src.sin_port));
305 monitor_printf(mon, "%15s %5d %5d %5d\n",
306 inet_ntoa(dst_addr), ntohs(dst_port),
307 so->so_rcv.sb_cc, so->so_snd.sb_cc);
310 for (so = slirp->icmp.so_next; so != &slirp->icmp; so = so->so_next) {
311 snprintf(buf, sizeof(buf), " ICMP[%d sec]",
312 (so->so_expire - curtime) / 1000);
313 src.sin_addr = so->so_laddr;
314 dst_addr = so->so_faddr;
315 monitor_printf(mon, "%-19s %3d %15s - ", buf, so->s,
316 src.sin_addr.s_addr ? inet_ntoa(src.sin_addr) : "*");
317 monitor_printf(mon, "%15s - %5d %5d\n", inet_ntoa(dst_addr),
318 so->so_rcv.sb_cc, so->so_snd.sb_cc);