Statistics
| Branch: | Revision:

root / slirp / misc.c @ 977d5710

History | View | Annotate | Download (19 kB)

1 f0cbd3ec bellard
/*
2 f0cbd3ec bellard
 * Copyright (c) 1995 Danny Gasparovski.
3 f0cbd3ec bellard
 * 
4 f0cbd3ec bellard
 * Please read the file COPYRIGHT for the
5 f0cbd3ec bellard
 * terms and conditions of the copyright.
6 f0cbd3ec bellard
 */
7 f0cbd3ec bellard
8 f0cbd3ec bellard
#define WANT_SYS_IOCTL_H
9 f0cbd3ec bellard
#include <slirp.h>
10 f0cbd3ec bellard
11 f0cbd3ec bellard
u_int curtime, time_fasttimo, last_slowtimo, detach_time;
12 f0cbd3ec bellard
u_int detach_wait = 600000;        /* 10 minutes */
13 f0cbd3ec bellard
14 f0cbd3ec bellard
#if 0
15 f0cbd3ec bellard
int x_port = -1;
16 f0cbd3ec bellard
int x_display = 0;
17 f0cbd3ec bellard
int x_screen = 0;
18 f0cbd3ec bellard

19 f0cbd3ec bellard
int
20 f0cbd3ec bellard
show_x(buff, inso)
21 f0cbd3ec bellard
        char *buff;
22 f0cbd3ec bellard
        struct socket *inso;
23 f0cbd3ec bellard
{
24 f0cbd3ec bellard
        if (x_port < 0) {
25 f0cbd3ec bellard
                lprint("X Redir: X not being redirected.\r\n");
26 f0cbd3ec bellard
        } else {
27 f0cbd3ec bellard
                lprint("X Redir: In sh/bash/zsh/etc. type: DISPLAY=%s:%d.%d; export DISPLAY\r\n",
28 f0cbd3ec bellard
                      inet_ntoa(our_addr), x_port, x_screen);
29 f0cbd3ec bellard
                lprint("X Redir: In csh/tcsh/etc. type:    setenv DISPLAY %s:%d.%d\r\n",
30 f0cbd3ec bellard
                      inet_ntoa(our_addr), x_port, x_screen);
31 f0cbd3ec bellard
                if (x_display)
32 f0cbd3ec bellard
                   lprint("X Redir: Redirecting to display %d\r\n", x_display);
33 f0cbd3ec bellard
        }
34 f0cbd3ec bellard
        
35 f0cbd3ec bellard
        return CFG_OK;
36 f0cbd3ec bellard
}
37 f0cbd3ec bellard

38 f0cbd3ec bellard

39 f0cbd3ec bellard
/*
40 f0cbd3ec bellard
 * XXX Allow more than one X redirection?
41 f0cbd3ec bellard
 */
42 f0cbd3ec bellard
void
43 f0cbd3ec bellard
redir_x(inaddr, start_port, display, screen)
44 f0cbd3ec bellard
        u_int32_t inaddr;
45 f0cbd3ec bellard
        int start_port;
46 f0cbd3ec bellard
        int display;
47 f0cbd3ec bellard
        int screen;
48 f0cbd3ec bellard
{
49 f0cbd3ec bellard
        int i;
50 f0cbd3ec bellard
        
51 f0cbd3ec bellard
        if (x_port >= 0) {
52 f0cbd3ec bellard
                lprint("X Redir: X already being redirected.\r\n");
53 f0cbd3ec bellard
                show_x(0, 0);
54 f0cbd3ec bellard
        } else {
55 f0cbd3ec bellard
                for (i = 6001 + (start_port-1); i <= 6100; i++) {
56 f0cbd3ec bellard
                        if (solisten(htons(i), inaddr, htons(6000 + display), 0)) {
57 f0cbd3ec bellard
                                /* Success */
58 f0cbd3ec bellard
                                x_port = i - 6000;
59 f0cbd3ec bellard
                                x_display = display;
60 f0cbd3ec bellard
                                x_screen = screen;
61 f0cbd3ec bellard
                                show_x(0, 0);
62 f0cbd3ec bellard
                                return;
63 f0cbd3ec bellard
                        }
64 f0cbd3ec bellard
                }
65 f0cbd3ec bellard
                lprint("X Redir: Error: Couldn't redirect a port for X. Weird.\r\n");
66 f0cbd3ec bellard
        }
67 f0cbd3ec bellard
}
68 f0cbd3ec bellard
#endif
69 f0cbd3ec bellard
70 f0cbd3ec bellard
#ifndef HAVE_INET_ATON
71 f0cbd3ec bellard
int
72 f0cbd3ec bellard
inet_aton(cp, ia)
73 f0cbd3ec bellard
        const char *cp;
74 f0cbd3ec bellard
        struct in_addr *ia;
75 f0cbd3ec bellard
{
76 f0cbd3ec bellard
        u_int32_t addr = inet_addr(cp);
77 f0cbd3ec bellard
        if (addr == 0xffffffff)
78 f0cbd3ec bellard
                return 0;
79 f0cbd3ec bellard
        ia->s_addr = addr;
80 f0cbd3ec bellard
        return 1;
81 f0cbd3ec bellard
}
82 f0cbd3ec bellard
#endif
83 f0cbd3ec bellard
84 f0cbd3ec bellard
/*
85 f0cbd3ec bellard
 * Get our IP address and put it in our_addr
86 f0cbd3ec bellard
 */
87 f0cbd3ec bellard
void
88 f0cbd3ec bellard
getouraddr()
89 f0cbd3ec bellard
{
90 f0cbd3ec bellard
        char buff[256];
91 f0cbd3ec bellard
        struct hostent *he;
92 f0cbd3ec bellard
        
93 f0cbd3ec bellard
        if (gethostname(buff,256) < 0)
94 f0cbd3ec bellard
           return;
95 f0cbd3ec bellard
        
96 f0cbd3ec bellard
        if ((he = gethostbyname(buff)) == NULL)
97 f0cbd3ec bellard
           return;
98 f0cbd3ec bellard
        
99 f0cbd3ec bellard
        our_addr = *(struct in_addr *)he->h_addr;
100 f0cbd3ec bellard
}
101 f0cbd3ec bellard
102 f0cbd3ec bellard
#if SIZEOF_CHAR_P == 8
103 f0cbd3ec bellard
104 f0cbd3ec bellard
struct quehead_32 {
105 f0cbd3ec bellard
        u_int32_t qh_link;
106 f0cbd3ec bellard
        u_int32_t qh_rlink;
107 f0cbd3ec bellard
};
108 f0cbd3ec bellard
109 f0cbd3ec bellard
inline void
110 f0cbd3ec bellard
insque_32(a, b)
111 f0cbd3ec bellard
        void *a;
112 f0cbd3ec bellard
        void *b;
113 f0cbd3ec bellard
{
114 f0cbd3ec bellard
        register struct quehead_32 *element = (struct quehead_32 *) a;
115 f0cbd3ec bellard
        register struct quehead_32 *head = (struct quehead_32 *) b;
116 f0cbd3ec bellard
        element->qh_link = head->qh_link;
117 f0cbd3ec bellard
        head->qh_link = (u_int32_t)element;
118 f0cbd3ec bellard
        element->qh_rlink = (u_int32_t)head;
119 f0cbd3ec bellard
        ((struct quehead_32 *)(element->qh_link))->qh_rlink
120 f0cbd3ec bellard
        = (u_int32_t)element;
121 f0cbd3ec bellard
}
122 f0cbd3ec bellard
123 f0cbd3ec bellard
inline void
124 f0cbd3ec bellard
remque_32(a)
125 f0cbd3ec bellard
        void *a;
126 f0cbd3ec bellard
{
127 f0cbd3ec bellard
        register struct quehead_32 *element = (struct quehead_32 *) a;
128 f0cbd3ec bellard
        ((struct quehead_32 *)(element->qh_link))->qh_rlink = element->qh_rlink;
129 f0cbd3ec bellard
        ((struct quehead_32 *)(element->qh_rlink))->qh_link = element->qh_link;
130 f0cbd3ec bellard
        element->qh_rlink = 0;
131 f0cbd3ec bellard
}
132 f0cbd3ec bellard
133 f0cbd3ec bellard
#endif /* SIZEOF_CHAR_P == 8 */
134 f0cbd3ec bellard
135 f0cbd3ec bellard
struct quehead {
136 f0cbd3ec bellard
        struct quehead *qh_link;
137 f0cbd3ec bellard
        struct quehead *qh_rlink;
138 f0cbd3ec bellard
};
139 f0cbd3ec bellard
140 f0cbd3ec bellard
inline void
141 f0cbd3ec bellard
insque(a, b)
142 f0cbd3ec bellard
        void *a, *b;
143 f0cbd3ec bellard
{
144 f0cbd3ec bellard
        register struct quehead *element = (struct quehead *) a;
145 f0cbd3ec bellard
        register struct quehead *head = (struct quehead *) b;
146 f0cbd3ec bellard
        element->qh_link = head->qh_link;
147 f0cbd3ec bellard
        head->qh_link = (struct quehead *)element;
148 f0cbd3ec bellard
        element->qh_rlink = (struct quehead *)head;
149 f0cbd3ec bellard
        ((struct quehead *)(element->qh_link))->qh_rlink
150 f0cbd3ec bellard
        = (struct quehead *)element;
151 f0cbd3ec bellard
}
152 f0cbd3ec bellard
153 f0cbd3ec bellard
inline void
154 f0cbd3ec bellard
remque(a)
155 f0cbd3ec bellard
     void *a;
156 f0cbd3ec bellard
{
157 f0cbd3ec bellard
  register struct quehead *element = (struct quehead *) a;
158 f0cbd3ec bellard
  ((struct quehead *)(element->qh_link))->qh_rlink = element->qh_rlink;
159 f0cbd3ec bellard
  ((struct quehead *)(element->qh_rlink))->qh_link = element->qh_link;
160 f0cbd3ec bellard
  element->qh_rlink = NULL;
161 f0cbd3ec bellard
  /*  element->qh_link = NULL;  TCP FIN1 crashes if you do this.  Why ? */
162 f0cbd3ec bellard
}
163 f0cbd3ec bellard
164 f0cbd3ec bellard
/* #endif */
165 f0cbd3ec bellard
166 f0cbd3ec bellard
167 f0cbd3ec bellard
int
168 f0cbd3ec bellard
add_exec(ex_ptr, do_pty, exec, addr, port)
169 f0cbd3ec bellard
        struct ex_list **ex_ptr;
170 f0cbd3ec bellard
        int do_pty;
171 f0cbd3ec bellard
        char *exec;
172 f0cbd3ec bellard
        int addr;
173 f0cbd3ec bellard
        int port;
174 f0cbd3ec bellard
{
175 f0cbd3ec bellard
        struct ex_list *tmp_ptr;
176 f0cbd3ec bellard
        
177 f0cbd3ec bellard
        /* First, check if the port is "bound" */
178 f0cbd3ec bellard
        for (tmp_ptr = *ex_ptr; tmp_ptr; tmp_ptr = tmp_ptr->ex_next) {
179 f0cbd3ec bellard
                if (port == tmp_ptr->ex_fport && addr == tmp_ptr->ex_addr)
180 f0cbd3ec bellard
                   return -1;
181 f0cbd3ec bellard
        }
182 f0cbd3ec bellard
        
183 f0cbd3ec bellard
        tmp_ptr = *ex_ptr;
184 f0cbd3ec bellard
        *ex_ptr = (struct ex_list *)malloc(sizeof(struct ex_list));
185 f0cbd3ec bellard
        (*ex_ptr)->ex_fport = port;
186 f0cbd3ec bellard
        (*ex_ptr)->ex_addr = addr;
187 f0cbd3ec bellard
        (*ex_ptr)->ex_pty = do_pty;
188 f0cbd3ec bellard
        (*ex_ptr)->ex_exec = strdup(exec);
189 f0cbd3ec bellard
        (*ex_ptr)->ex_next = tmp_ptr;
190 f0cbd3ec bellard
        return 0;
191 f0cbd3ec bellard
}
192 f0cbd3ec bellard
193 f0cbd3ec bellard
#ifndef HAVE_STRERROR
194 f0cbd3ec bellard
195 f0cbd3ec bellard
/*
196 f0cbd3ec bellard
 * For systems with no strerror
197 f0cbd3ec bellard
 */
198 f0cbd3ec bellard
199 f0cbd3ec bellard
extern int sys_nerr;
200 f0cbd3ec bellard
extern char *sys_errlist[];
201 f0cbd3ec bellard
202 f0cbd3ec bellard
char *
203 f0cbd3ec bellard
strerror(error)
204 f0cbd3ec bellard
        int error;
205 f0cbd3ec bellard
{
206 f0cbd3ec bellard
        if (error < sys_nerr)
207 f0cbd3ec bellard
           return sys_errlist[error];
208 f0cbd3ec bellard
        else
209 f0cbd3ec bellard
           return "Unknown error.";
210 f0cbd3ec bellard
}
211 f0cbd3ec bellard
212 f0cbd3ec bellard
#endif
213 f0cbd3ec bellard
214 f0cbd3ec bellard
215 a3d4af03 bellard
#ifdef _WIN32
216 a3d4af03 bellard
217 a3d4af03 bellard
int
218 a3d4af03 bellard
fork_exec(so, ex, do_pty)
219 a3d4af03 bellard
        struct socket *so;
220 a3d4af03 bellard
        char *ex;
221 a3d4af03 bellard
        int do_pty;
222 a3d4af03 bellard
{
223 a3d4af03 bellard
    /* not implemented */
224 a3d4af03 bellard
    return 0;
225 a3d4af03 bellard
}
226 a3d4af03 bellard
227 a3d4af03 bellard
#else
228 a3d4af03 bellard
229 f0cbd3ec bellard
int
230 f3ff649d bellard
slirp_openpty(amaster, aslave)
231 f3ff649d bellard
     int *amaster, *aslave;
232 f0cbd3ec bellard
{
233 f0cbd3ec bellard
        register int master, slave;
234 f0cbd3ec bellard
235 f0cbd3ec bellard
#ifdef HAVE_GRANTPT
236 f0cbd3ec bellard
        char *ptr;
237 f0cbd3ec bellard
        
238 f0cbd3ec bellard
        if ((master = open("/dev/ptmx", O_RDWR)) < 0 ||
239 f0cbd3ec bellard
            grantpt(master) < 0 ||
240 f0cbd3ec bellard
            unlockpt(master) < 0 ||
241 f0cbd3ec bellard
            (ptr = ptsname(master)) == NULL)  {
242 f0cbd3ec bellard
                close(master);
243 f0cbd3ec bellard
                return -1;
244 f0cbd3ec bellard
        }
245 f0cbd3ec bellard
        
246 f0cbd3ec bellard
        if ((slave = open(ptr, O_RDWR)) < 0 ||
247 f0cbd3ec bellard
            ioctl(slave, I_PUSH, "ptem") < 0 ||
248 f0cbd3ec bellard
            ioctl(slave, I_PUSH, "ldterm") < 0 ||
249 f0cbd3ec bellard
            ioctl(slave, I_PUSH, "ttcompat") < 0) {
250 f0cbd3ec bellard
                close(master);
251 f0cbd3ec bellard
                close(slave);
252 f0cbd3ec bellard
                return -1;
253 f0cbd3ec bellard
        }
254 f0cbd3ec bellard
        
255 f0cbd3ec bellard
        *amaster = master;
256 f0cbd3ec bellard
        *aslave = slave;
257 f0cbd3ec bellard
        return 0;
258 f0cbd3ec bellard
        
259 f0cbd3ec bellard
#else
260 f0cbd3ec bellard
        
261 f0cbd3ec bellard
        static char line[] = "/dev/ptyXX";
262 f0cbd3ec bellard
        register const char *cp1, *cp2;
263 f0cbd3ec bellard
        
264 f0cbd3ec bellard
        for (cp1 = "pqrsPQRS"; *cp1; cp1++) {
265 f0cbd3ec bellard
                line[8] = *cp1;
266 f0cbd3ec bellard
                for (cp2 = "0123456789abcdefghijklmnopqrstuv"; *cp2; cp2++) {
267 f0cbd3ec bellard
                        line[9] = *cp2;
268 f0cbd3ec bellard
                        if ((master = open(line, O_RDWR, 0)) == -1) {
269 f0cbd3ec bellard
                                if (errno == ENOENT)
270 f0cbd3ec bellard
                                   return (-1);    /* out of ptys */
271 f0cbd3ec bellard
                        } else {
272 f0cbd3ec bellard
                                line[5] = 't';
273 f0cbd3ec bellard
                                /* These will fail */
274 f0cbd3ec bellard
                                (void) chown(line, getuid(), 0);
275 f0cbd3ec bellard
                                (void) chmod(line, S_IRUSR|S_IWUSR|S_IWGRP);
276 f0cbd3ec bellard
#ifdef HAVE_REVOKE
277 f0cbd3ec bellard
                                (void) revoke(line);
278 f0cbd3ec bellard
#endif
279 f0cbd3ec bellard
                                if ((slave = open(line, O_RDWR, 0)) != -1) {
280 f0cbd3ec bellard
                                        *amaster = master;
281 f0cbd3ec bellard
                                        *aslave = slave;
282 f0cbd3ec bellard
                                        return 0;
283 f0cbd3ec bellard
                                }
284 f0cbd3ec bellard
                                (void) close(master);
285 f0cbd3ec bellard
                                line[5] = 'p';
286 f0cbd3ec bellard
                        }
287 f0cbd3ec bellard
                }
288 f0cbd3ec bellard
        }
289 f0cbd3ec bellard
        errno = ENOENT; /* out of ptys */
290 f0cbd3ec bellard
        return (-1);
291 f0cbd3ec bellard
#endif
292 f0cbd3ec bellard
}
293 f0cbd3ec bellard
294 f0cbd3ec bellard
/*
295 f0cbd3ec bellard
 * XXX This is ugly
296 f0cbd3ec bellard
 * We create and bind a socket, then fork off to another
297 f0cbd3ec bellard
 * process, which connects to this socket, after which we
298 f0cbd3ec bellard
 * exec the wanted program.  If something (strange) happens,
299 f0cbd3ec bellard
 * the accept() call could block us forever.
300 f0cbd3ec bellard
 * 
301 f0cbd3ec bellard
 * do_pty = 0   Fork/exec inetd style
302 f0cbd3ec bellard
 * do_pty = 1   Fork/exec using slirp.telnetd
303 f0cbd3ec bellard
 * do_ptr = 2   Fork/exec using pty
304 f0cbd3ec bellard
 */
305 f0cbd3ec bellard
int
306 f0cbd3ec bellard
fork_exec(so, ex, do_pty)
307 f0cbd3ec bellard
        struct socket *so;
308 f0cbd3ec bellard
        char *ex;
309 f0cbd3ec bellard
        int do_pty;
310 f0cbd3ec bellard
{
311 f0cbd3ec bellard
        int s;
312 f0cbd3ec bellard
        struct sockaddr_in addr;
313 f0cbd3ec bellard
        int addrlen = sizeof(addr);
314 f0cbd3ec bellard
        int opt;
315 f0cbd3ec bellard
        int master;
316 f0cbd3ec bellard
        char *argv[256];
317 a3d4af03 bellard
#if 0
318 f0cbd3ec bellard
        char buff[256];
319 a3d4af03 bellard
#endif
320 f0cbd3ec bellard
        /* don't want to clobber the original */
321 f0cbd3ec bellard
        char *bptr;
322 f0cbd3ec bellard
        char *curarg;
323 7b91a172 bellard
        int c, i, ret;
324 f0cbd3ec bellard
        
325 f0cbd3ec bellard
        DEBUG_CALL("fork_exec");
326 f0cbd3ec bellard
        DEBUG_ARG("so = %lx", (long)so);
327 f0cbd3ec bellard
        DEBUG_ARG("ex = %lx", (long)ex);
328 f0cbd3ec bellard
        DEBUG_ARG("do_pty = %lx", (long)do_pty);
329 f0cbd3ec bellard
        
330 f0cbd3ec bellard
        if (do_pty == 2) {
331 f3ff649d bellard
                if (slirp_openpty(&master, &s) == -1) {
332 f0cbd3ec bellard
                        lprint("Error: openpty failed: %s\n", strerror(errno));
333 f0cbd3ec bellard
                        return 0;
334 f0cbd3ec bellard
                }
335 f0cbd3ec bellard
        } else {
336 f0cbd3ec bellard
                addr.sin_family = AF_INET;
337 f0cbd3ec bellard
                addr.sin_port = 0;
338 f0cbd3ec bellard
                addr.sin_addr.s_addr = INADDR_ANY;
339 f0cbd3ec bellard
                
340 f0cbd3ec bellard
                if ((s = socket(AF_INET, SOCK_STREAM, 0)) < 0 ||
341 f0cbd3ec bellard
                    bind(s, (struct sockaddr *)&addr, addrlen) < 0 ||
342 f0cbd3ec bellard
                    listen(s, 1) < 0) {
343 f0cbd3ec bellard
                        lprint("Error: inet socket: %s\n", strerror(errno));
344 379ff53d bellard
                        closesocket(s);
345 f0cbd3ec bellard
                        
346 f0cbd3ec bellard
                        return 0;
347 f0cbd3ec bellard
                }
348 f0cbd3ec bellard
        }
349 f0cbd3ec bellard
        
350 f0cbd3ec bellard
        switch(fork()) {
351 f0cbd3ec bellard
         case -1:
352 f0cbd3ec bellard
                lprint("Error: fork failed: %s\n", strerror(errno));
353 f0cbd3ec bellard
                close(s);
354 f0cbd3ec bellard
                if (do_pty == 2)
355 f0cbd3ec bellard
                   close(master);
356 f0cbd3ec bellard
                return 0;
357 f0cbd3ec bellard
                
358 f0cbd3ec bellard
         case 0:
359 f0cbd3ec bellard
                /* Set the DISPLAY */
360 f0cbd3ec bellard
                if (do_pty == 2) {
361 f0cbd3ec bellard
                        (void) close(master);
362 f0cbd3ec bellard
#ifdef TIOCSCTTY /* XXXXX */
363 f0cbd3ec bellard
                        (void) setsid();
364 f0cbd3ec bellard
                        ioctl(s, TIOCSCTTY, (char *)NULL);
365 f0cbd3ec bellard
#endif
366 f0cbd3ec bellard
                } else {
367 f0cbd3ec bellard
                        getsockname(s, (struct sockaddr *)&addr, &addrlen);
368 f0cbd3ec bellard
                        close(s);
369 f0cbd3ec bellard
                        /*
370 f0cbd3ec bellard
                         * Connect to the socket
371 f0cbd3ec bellard
                         * XXX If any of these fail, we're in trouble!
372 f0cbd3ec bellard
                          */
373 f0cbd3ec bellard
                        s = socket(AF_INET, SOCK_STREAM, 0);
374 f0cbd3ec bellard
                        addr.sin_addr = loopback_addr;
375 7b91a172 bellard
                        do {
376 7b91a172 bellard
                            ret = connect(s, (struct sockaddr *)&addr, addrlen);
377 7b91a172 bellard
                        } while (ret < 0 && errno == EINTR);
378 f0cbd3ec bellard
                }
379 f0cbd3ec bellard
                
380 a3d4af03 bellard
#if 0
381 f0cbd3ec bellard
                if (x_port >= 0) {
382 f0cbd3ec bellard
#ifdef HAVE_SETENV
383 f0cbd3ec bellard
                        sprintf(buff, "%s:%d.%d", inet_ntoa(our_addr), x_port, x_screen);
384 f0cbd3ec bellard
                        setenv("DISPLAY", buff, 1);
385 f0cbd3ec bellard
#else
386 f0cbd3ec bellard
                        sprintf(buff, "DISPLAY=%s:%d.%d", inet_ntoa(our_addr), x_port, x_screen);
387 f0cbd3ec bellard
                        putenv(buff);
388 f0cbd3ec bellard
#endif
389 f0cbd3ec bellard
                }
390 a3d4af03 bellard
#endif        
391 f0cbd3ec bellard
                dup2(s, 0);
392 f0cbd3ec bellard
                dup2(s, 1);
393 f0cbd3ec bellard
                dup2(s, 2);
394 f0cbd3ec bellard
                for (s = 3; s <= 255; s++)
395 f0cbd3ec bellard
                   close(s);
396 f0cbd3ec bellard
                
397 f0cbd3ec bellard
                i = 0;
398 f0cbd3ec bellard
                bptr = strdup(ex); /* No need to free() this */
399 f0cbd3ec bellard
                if (do_pty == 1) {
400 f0cbd3ec bellard
                        /* Setup "slirp.telnetd -x" */
401 f0cbd3ec bellard
                        argv[i++] = "slirp.telnetd";
402 f0cbd3ec bellard
                        argv[i++] = "-x";
403 f0cbd3ec bellard
                        argv[i++] = bptr;
404 f0cbd3ec bellard
                } else
405 f0cbd3ec bellard
                   do {
406 f0cbd3ec bellard
                        /* Change the string into argv[] */
407 f0cbd3ec bellard
                        curarg = bptr;
408 f0cbd3ec bellard
                        while (*bptr != ' ' && *bptr != (char)0)
409 f0cbd3ec bellard
                           bptr++;
410 f0cbd3ec bellard
                        c = *bptr;
411 f0cbd3ec bellard
                        *bptr++ = (char)0;
412 f0cbd3ec bellard
                        argv[i++] = strdup(curarg);
413 f0cbd3ec bellard
                   } while (c);
414 f0cbd3ec bellard
                
415 f0cbd3ec bellard
                argv[i] = 0;
416 f0cbd3ec bellard
                execvp(argv[0], argv);
417 f0cbd3ec bellard
                
418 f0cbd3ec bellard
                /* Ooops, failed, let's tell the user why */
419 f0cbd3ec bellard
                  {
420 f0cbd3ec bellard
                          char buff[256];
421 f0cbd3ec bellard
                          
422 f0cbd3ec bellard
                          sprintf(buff, "Error: execvp of %s failed: %s\n", 
423 f0cbd3ec bellard
                                  argv[0], strerror(errno));
424 f0cbd3ec bellard
                          write(2, buff, strlen(buff)+1);
425 f0cbd3ec bellard
                  }
426 f0cbd3ec bellard
                close(0); close(1); close(2); /* XXX */
427 f0cbd3ec bellard
                exit(1);
428 f0cbd3ec bellard
                
429 f0cbd3ec bellard
         default:
430 f0cbd3ec bellard
                if (do_pty == 2) {
431 f0cbd3ec bellard
                        close(s);
432 f0cbd3ec bellard
                        so->s = master;
433 f0cbd3ec bellard
                } else {
434 f0cbd3ec bellard
                        /*
435 f0cbd3ec bellard
                         * XXX this could block us...
436 f0cbd3ec bellard
                         * XXX Should set a timer here, and if accept() doesn't
437 f0cbd3ec bellard
                          * return after X seconds, declare it a failure
438 f0cbd3ec bellard
                          * The only reason this will block forever is if socket()
439 f0cbd3ec bellard
                          * of connect() fail in the child process
440 f0cbd3ec bellard
                          */
441 7b91a172 bellard
                        do {
442 7b91a172 bellard
                            so->s = accept(s, (struct sockaddr *)&addr, &addrlen);
443 7b91a172 bellard
                        } while (so->s < 0 && errno == EINTR);
444 7b91a172 bellard
                        closesocket(s);
445 f0cbd3ec bellard
                        opt = 1;
446 f0cbd3ec bellard
                        setsockopt(so->s,SOL_SOCKET,SO_REUSEADDR,(char *)&opt,sizeof(int));
447 f0cbd3ec bellard
                        opt = 1;
448 f0cbd3ec bellard
                        setsockopt(so->s,SOL_SOCKET,SO_OOBINLINE,(char *)&opt,sizeof(int));
449 f0cbd3ec bellard
                }
450 f0cbd3ec bellard
                fd_nonblock(so->s);
451 f0cbd3ec bellard
                
452 f0cbd3ec bellard
                /* Append the telnet options now */
453 f0cbd3ec bellard
                if (so->so_m != 0 && do_pty == 1)  {
454 f0cbd3ec bellard
                        sbappend(so, so->so_m);
455 f0cbd3ec bellard
                        so->so_m = 0;
456 f0cbd3ec bellard
                }
457 f0cbd3ec bellard
                
458 f0cbd3ec bellard
                return 1;
459 f0cbd3ec bellard
        }
460 f0cbd3ec bellard
}
461 f0cbd3ec bellard
#endif
462 f0cbd3ec bellard
463 f0cbd3ec bellard
#ifndef HAVE_STRDUP
464 f0cbd3ec bellard
char *
465 f0cbd3ec bellard
strdup(str)
466 f0cbd3ec bellard
        const char *str;
467 f0cbd3ec bellard
{
468 f0cbd3ec bellard
        char *bptr;
469 f0cbd3ec bellard
        
470 f0cbd3ec bellard
        bptr = (char *)malloc(strlen(str)+1);
471 f0cbd3ec bellard
        strcpy(bptr, str);
472 f0cbd3ec bellard
        
473 f0cbd3ec bellard
        return bptr;
474 f0cbd3ec bellard
}
475 f0cbd3ec bellard
#endif
476 f0cbd3ec bellard
477 f0cbd3ec bellard
#if 0
478 f0cbd3ec bellard
void
479 f0cbd3ec bellard
snooze_hup(num)
480 f0cbd3ec bellard
        int num;
481 f0cbd3ec bellard
{
482 f0cbd3ec bellard
        int s, ret;
483 f0cbd3ec bellard
#ifndef NO_UNIX_SOCKETS
484 f0cbd3ec bellard
        struct sockaddr_un sock_un;
485 f0cbd3ec bellard
#endif
486 f0cbd3ec bellard
        struct sockaddr_in sock_in;
487 f0cbd3ec bellard
        char buff[256];
488 f0cbd3ec bellard
        
489 f0cbd3ec bellard
        ret = -1;
490 f0cbd3ec bellard
        if (slirp_socket_passwd) {
491 f0cbd3ec bellard
                s = socket(AF_INET, SOCK_STREAM, 0);
492 f0cbd3ec bellard
                if (s < 0)
493 f0cbd3ec bellard
                   slirp_exit(1);
494 f0cbd3ec bellard
                sock_in.sin_family = AF_INET;
495 f0cbd3ec bellard
                sock_in.sin_addr.s_addr = slirp_socket_addr;
496 f0cbd3ec bellard
                sock_in.sin_port = htons(slirp_socket_port);
497 f0cbd3ec bellard
                if (connect(s, (struct sockaddr *)&sock_in, sizeof(sock_in)) != 0)
498 f0cbd3ec bellard
                   slirp_exit(1); /* just exit...*/
499 f0cbd3ec bellard
                sprintf(buff, "kill %s:%d", slirp_socket_passwd, slirp_socket_unit);
500 f0cbd3ec bellard
                write(s, buff, strlen(buff)+1);
501 f0cbd3ec bellard
        }
502 f0cbd3ec bellard
#ifndef NO_UNIX_SOCKETS
503 f0cbd3ec bellard
          else {
504 f0cbd3ec bellard
                s = socket(AF_UNIX, SOCK_STREAM, 0);
505 f0cbd3ec bellard
                if (s < 0)
506 f0cbd3ec bellard
                   slirp_exit(1);
507 f0cbd3ec bellard
                sock_un.sun_family = AF_UNIX;
508 f0cbd3ec bellard
                strcpy(sock_un.sun_path, socket_path);
509 f0cbd3ec bellard
                if (connect(s, (struct sockaddr *)&sock_un,
510 f0cbd3ec bellard
                              sizeof(sock_un.sun_family) + sizeof(sock_un.sun_path)) != 0)
511 f0cbd3ec bellard
                   slirp_exit(1);
512 f0cbd3ec bellard
                sprintf(buff, "kill none:%d", slirp_socket_unit);
513 f0cbd3ec bellard
                write(s, buff, strlen(buff)+1);
514 f0cbd3ec bellard
        }
515 f0cbd3ec bellard
#endif
516 f0cbd3ec bellard
        slirp_exit(0);
517 f0cbd3ec bellard
}
518 f0cbd3ec bellard
        
519 f0cbd3ec bellard
        
520 f0cbd3ec bellard
void
521 f0cbd3ec bellard
snooze()
522 f0cbd3ec bellard
{
523 f0cbd3ec bellard
        sigset_t s;
524 f0cbd3ec bellard
        int i;
525 f0cbd3ec bellard
        
526 f0cbd3ec bellard
        /* Don't need our data anymore */
527 f0cbd3ec bellard
        /* XXX This makes SunOS barf */
528 f0cbd3ec bellard
/*        brk(0); */
529 f0cbd3ec bellard
        
530 f0cbd3ec bellard
        /* Close all fd's */
531 f0cbd3ec bellard
        for (i = 255; i >= 0; i--)
532 f0cbd3ec bellard
           close(i);
533 f0cbd3ec bellard
        
534 f0cbd3ec bellard
        signal(SIGQUIT, slirp_exit);
535 f0cbd3ec bellard
        signal(SIGHUP, snooze_hup);
536 f0cbd3ec bellard
        sigemptyset(&s);
537 f0cbd3ec bellard
        
538 f0cbd3ec bellard
        /* Wait for any signal */
539 f0cbd3ec bellard
        sigsuspend(&s);
540 f0cbd3ec bellard
        
541 f0cbd3ec bellard
        /* Just in case ... */
542 f0cbd3ec bellard
        exit(255);
543 f0cbd3ec bellard
}
544 f0cbd3ec bellard
545 f0cbd3ec bellard
void
546 f0cbd3ec bellard
relay(s)
547 f0cbd3ec bellard
        int s;
548 f0cbd3ec bellard
{
549 f0cbd3ec bellard
        char buf[8192];
550 f0cbd3ec bellard
        int n;
551 f0cbd3ec bellard
        fd_set readfds;
552 f0cbd3ec bellard
        struct ttys *ttyp;
553 f0cbd3ec bellard
        
554 f0cbd3ec bellard
        /* Don't need our data anymore */
555 f0cbd3ec bellard
        /* XXX This makes SunOS barf */
556 f0cbd3ec bellard
/*        brk(0); */
557 f0cbd3ec bellard
        
558 f0cbd3ec bellard
        signal(SIGQUIT, slirp_exit);
559 f0cbd3ec bellard
        signal(SIGHUP, slirp_exit);
560 f0cbd3ec bellard
        signal(SIGINT, slirp_exit);
561 f0cbd3ec bellard
        signal(SIGTERM, slirp_exit);
562 f0cbd3ec bellard
        
563 f0cbd3ec bellard
        /* Fudge to get term_raw and term_restore to work */
564 f0cbd3ec bellard
        if (NULL == (ttyp = tty_attach (0, slirp_tty))) {
565 f0cbd3ec bellard
         lprint ("Error: tty_attach failed in misc.c:relay()\r\n");
566 f0cbd3ec bellard
         slirp_exit (1);
567 f0cbd3ec bellard
    }
568 f0cbd3ec bellard
        ttyp->fd = 0;
569 f0cbd3ec bellard
        ttyp->flags |= TTY_CTTY;
570 f0cbd3ec bellard
        term_raw(ttyp);
571 f0cbd3ec bellard
        
572 f0cbd3ec bellard
        while (1) {
573 f0cbd3ec bellard
                FD_ZERO(&readfds);
574 f0cbd3ec bellard
                
575 f0cbd3ec bellard
                FD_SET(0, &readfds);
576 f0cbd3ec bellard
                FD_SET(s, &readfds);
577 f0cbd3ec bellard
                
578 f0cbd3ec bellard
                n = select(s+1, &readfds, (fd_set *)0, (fd_set *)0, (struct timeval *)0);
579 f0cbd3ec bellard
                
580 f0cbd3ec bellard
                if (n <= 0)
581 f0cbd3ec bellard
                   slirp_exit(0);
582 f0cbd3ec bellard
                
583 f0cbd3ec bellard
                if (FD_ISSET(0, &readfds)) {
584 f0cbd3ec bellard
                        n = read(0, buf, 8192);
585 f0cbd3ec bellard
                        if (n <= 0)
586 f0cbd3ec bellard
                           slirp_exit(0);
587 f0cbd3ec bellard
                        n = writen(s, buf, n);
588 f0cbd3ec bellard
                        if (n <= 0)
589 f0cbd3ec bellard
                           slirp_exit(0);
590 f0cbd3ec bellard
                }
591 f0cbd3ec bellard
                
592 f0cbd3ec bellard
                if (FD_ISSET(s, &readfds)) {
593 f0cbd3ec bellard
                        n = read(s, buf, 8192);
594 f0cbd3ec bellard
                        if (n <= 0)
595 f0cbd3ec bellard
                           slirp_exit(0);
596 f0cbd3ec bellard
                        n = writen(0, buf, n);
597 f0cbd3ec bellard
                        if (n <= 0)
598 f0cbd3ec bellard
                           slirp_exit(0);
599 f0cbd3ec bellard
                }
600 f0cbd3ec bellard
        }
601 f0cbd3ec bellard
        
602 f0cbd3ec bellard
        /* Just in case.... */
603 f0cbd3ec bellard
        exit(1);
604 f0cbd3ec bellard
}
605 f0cbd3ec bellard
#endif
606 f0cbd3ec bellard
607 f0cbd3ec bellard
int (*lprint_print) _P((void *, const char *, va_list));
608 f0cbd3ec bellard
char *lprint_ptr, *lprint_ptr2, **lprint_arg;
609 f0cbd3ec bellard
610 f0cbd3ec bellard
void
611 f0cbd3ec bellard
#ifdef __STDC__
612 f0cbd3ec bellard
lprint(const char *format, ...)
613 f0cbd3ec bellard
#else
614 f0cbd3ec bellard
lprint(va_alist) va_dcl
615 f0cbd3ec bellard
#endif
616 f0cbd3ec bellard
{
617 f0cbd3ec bellard
        va_list args;
618 f0cbd3ec bellard
        
619 f0cbd3ec bellard
#ifdef __STDC__
620 f0cbd3ec bellard
        va_start(args, format);
621 f0cbd3ec bellard
#else
622 f0cbd3ec bellard
        char *format;
623 f0cbd3ec bellard
        va_start(args);
624 f0cbd3ec bellard
        format = va_arg(args, char *);
625 f0cbd3ec bellard
#endif
626 f0cbd3ec bellard
#if 0
627 f0cbd3ec bellard
        /* If we're printing to an sbuf, make sure there's enough room */
628 f0cbd3ec bellard
        /* XXX +100? */
629 f0cbd3ec bellard
        if (lprint_sb) {
630 f0cbd3ec bellard
                if ((lprint_ptr - lprint_sb->sb_wptr) >=
631 f0cbd3ec bellard
                    (lprint_sb->sb_datalen - (strlen(format) + 100))) {
632 f0cbd3ec bellard
                        int deltaw = lprint_sb->sb_wptr - lprint_sb->sb_data;
633 f0cbd3ec bellard
                        int deltar = lprint_sb->sb_rptr - lprint_sb->sb_data;
634 f0cbd3ec bellard
                        int deltap = lprint_ptr -         lprint_sb->sb_data;
635 f0cbd3ec bellard
                                                
636 f0cbd3ec bellard
                        lprint_sb->sb_data = (char *)realloc(lprint_sb->sb_data,
637 f0cbd3ec bellard
                                                             lprint_sb->sb_datalen + TCP_SNDSPACE);
638 f0cbd3ec bellard
                        
639 f0cbd3ec bellard
                        /* Adjust all values */
640 f0cbd3ec bellard
                        lprint_sb->sb_wptr = lprint_sb->sb_data + deltaw;
641 f0cbd3ec bellard
                        lprint_sb->sb_rptr = lprint_sb->sb_data + deltar;
642 f0cbd3ec bellard
                        lprint_ptr =         lprint_sb->sb_data + deltap;
643 f0cbd3ec bellard
                        
644 f0cbd3ec bellard
                        lprint_sb->sb_datalen += TCP_SNDSPACE;
645 f0cbd3ec bellard
                }
646 f0cbd3ec bellard
        }
647 f0cbd3ec bellard
#endif        
648 f0cbd3ec bellard
        if (lprint_print)
649 f0cbd3ec bellard
           lprint_ptr += (*lprint_print)(*lprint_arg, format, args);
650 f0cbd3ec bellard
        
651 f0cbd3ec bellard
        /* Check if they want output to be logged to file as well */
652 f0cbd3ec bellard
        if (lfd) {
653 f0cbd3ec bellard
                /* 
654 f0cbd3ec bellard
                 * Remove \r's
655 f0cbd3ec bellard
                 * otherwise you'll get ^M all over the file
656 f0cbd3ec bellard
                 */
657 f0cbd3ec bellard
                int len = strlen(format);
658 f0cbd3ec bellard
                char *bptr1, *bptr2;
659 f0cbd3ec bellard
                
660 f0cbd3ec bellard
                bptr1 = bptr2 = strdup(format);
661 f0cbd3ec bellard
                
662 f0cbd3ec bellard
                while (len--) {
663 f0cbd3ec bellard
                        if (*bptr1 == '\r')
664 f0cbd3ec bellard
                           memcpy(bptr1, bptr1+1, len+1);
665 f0cbd3ec bellard
                        else
666 f0cbd3ec bellard
                           bptr1++;
667 f0cbd3ec bellard
                }
668 f0cbd3ec bellard
                vfprintf(lfd, bptr2, args);
669 f0cbd3ec bellard
                free(bptr2);
670 f0cbd3ec bellard
        }
671 f0cbd3ec bellard
        va_end(args);
672 f0cbd3ec bellard
}
673 f0cbd3ec bellard
674 f0cbd3ec bellard
void
675 f0cbd3ec bellard
add_emu(buff)
676 f0cbd3ec bellard
        char *buff;
677 f0cbd3ec bellard
{
678 f0cbd3ec bellard
        u_int lport, fport;
679 f0cbd3ec bellard
        u_int8_t tos = 0, emu = 0;
680 f0cbd3ec bellard
        char buff1[256], buff2[256], buff4[128];
681 f0cbd3ec bellard
        char *buff3 = buff4;
682 f0cbd3ec bellard
        struct emu_t *emup;
683 f0cbd3ec bellard
        struct socket *so;
684 f0cbd3ec bellard
        
685 f0cbd3ec bellard
        if (sscanf(buff, "%256s %256s", buff2, buff1) != 2) {
686 f0cbd3ec bellard
                lprint("Error: Bad arguments\r\n");
687 f0cbd3ec bellard
                return;
688 f0cbd3ec bellard
        }
689 f0cbd3ec bellard
        
690 f0cbd3ec bellard
        if (sscanf(buff1, "%d:%d", &lport, &fport) != 2) {
691 f0cbd3ec bellard
                lport = 0;
692 f0cbd3ec bellard
                if (sscanf(buff1, "%d", &fport) != 1) {
693 f0cbd3ec bellard
                        lprint("Error: Bad first argument\r\n");
694 f0cbd3ec bellard
                        return;
695 f0cbd3ec bellard
                }
696 f0cbd3ec bellard
        }
697 f0cbd3ec bellard
        
698 f0cbd3ec bellard
        if (sscanf(buff2, "%128[^:]:%128s", buff1, buff3) != 2) {
699 f0cbd3ec bellard
                buff3 = 0;
700 f0cbd3ec bellard
                if (sscanf(buff2, "%256s", buff1) != 1) {
701 f0cbd3ec bellard
                        lprint("Error: Bad second argument\r\n");
702 f0cbd3ec bellard
                        return;
703 f0cbd3ec bellard
                }
704 f0cbd3ec bellard
        }
705 f0cbd3ec bellard
        
706 f0cbd3ec bellard
        if (buff3) {
707 f0cbd3ec bellard
                if (strcmp(buff3, "lowdelay") == 0)
708 f0cbd3ec bellard
                   tos = IPTOS_LOWDELAY;
709 f0cbd3ec bellard
                else if (strcmp(buff3, "throughput") == 0)
710 f0cbd3ec bellard
                   tos = IPTOS_THROUGHPUT;
711 f0cbd3ec bellard
                else {
712 f0cbd3ec bellard
                        lprint("Error: Expecting \"lowdelay\"/\"throughput\"\r\n");
713 f0cbd3ec bellard
                        return;
714 f0cbd3ec bellard
                }
715 f0cbd3ec bellard
        }
716 f0cbd3ec bellard
        
717 f0cbd3ec bellard
        if (strcmp(buff1, "ftp") == 0)
718 f0cbd3ec bellard
           emu = EMU_FTP;
719 f0cbd3ec bellard
        else if (strcmp(buff1, "irc") == 0)
720 f0cbd3ec bellard
           emu = EMU_IRC;
721 f0cbd3ec bellard
        else if (strcmp(buff1, "none") == 0)
722 f0cbd3ec bellard
           emu = EMU_NONE; /* ie: no emulation */
723 f0cbd3ec bellard
        else {
724 f0cbd3ec bellard
                lprint("Error: Unknown service\r\n");
725 f0cbd3ec bellard
                return;
726 f0cbd3ec bellard
        }
727 f0cbd3ec bellard
        
728 f0cbd3ec bellard
        /* First, check that it isn't already emulated */
729 f0cbd3ec bellard
        for (emup = tcpemu; emup; emup = emup->next) {
730 f0cbd3ec bellard
                if (emup->lport == lport && emup->fport == fport) {
731 f0cbd3ec bellard
                        lprint("Error: port already emulated\r\n");
732 f0cbd3ec bellard
                        return;
733 f0cbd3ec bellard
                }
734 f0cbd3ec bellard
        }
735 f0cbd3ec bellard
        
736 f0cbd3ec bellard
        /* link it */
737 f0cbd3ec bellard
        emup = (struct emu_t *)malloc(sizeof (struct emu_t));
738 f0cbd3ec bellard
        emup->lport = (u_int16_t)lport;
739 f0cbd3ec bellard
        emup->fport = (u_int16_t)fport;
740 f0cbd3ec bellard
        emup->tos = tos;
741 f0cbd3ec bellard
        emup->emu = emu;
742 f0cbd3ec bellard
        emup->next = tcpemu;
743 f0cbd3ec bellard
        tcpemu = emup;
744 f0cbd3ec bellard
        
745 f0cbd3ec bellard
        /* And finally, mark all current sessions, if any, as being emulated */
746 f0cbd3ec bellard
        for (so = tcb.so_next; so != &tcb; so = so->so_next) {
747 f0cbd3ec bellard
                if ((lport && lport == ntohs(so->so_lport)) ||
748 f0cbd3ec bellard
                    (fport && fport == ntohs(so->so_fport))) {
749 f0cbd3ec bellard
                        if (emu)
750 f0cbd3ec bellard
                           so->so_emu = emu;
751 f0cbd3ec bellard
                        if (tos)
752 f0cbd3ec bellard
                           so->so_iptos = tos;
753 f0cbd3ec bellard
                }
754 f0cbd3ec bellard
        }
755 f0cbd3ec bellard
        
756 f0cbd3ec bellard
        lprint("Adding emulation for %s to port %d/%d\r\n", buff1, emup->lport, emup->fport);
757 f0cbd3ec bellard
}
758 f0cbd3ec bellard
759 f0cbd3ec bellard
#ifdef BAD_SPRINTF
760 f0cbd3ec bellard
761 f0cbd3ec bellard
#undef vsprintf
762 f0cbd3ec bellard
#undef sprintf
763 f0cbd3ec bellard
764 f0cbd3ec bellard
/*
765 f0cbd3ec bellard
 * Some BSD-derived systems have a sprintf which returns char *
766 f0cbd3ec bellard
 */
767 f0cbd3ec bellard
768 f0cbd3ec bellard
int
769 f0cbd3ec bellard
vsprintf_len(string, format, args)
770 f0cbd3ec bellard
        char *string;
771 f0cbd3ec bellard
        const char *format;
772 f0cbd3ec bellard
        va_list args;
773 f0cbd3ec bellard
{
774 f0cbd3ec bellard
        vsprintf(string, format, args);
775 f0cbd3ec bellard
        return strlen(string);
776 f0cbd3ec bellard
}
777 f0cbd3ec bellard
778 f0cbd3ec bellard
int
779 f0cbd3ec bellard
#ifdef __STDC__
780 f0cbd3ec bellard
sprintf_len(char *string, const char *format, ...)
781 f0cbd3ec bellard
#else
782 f0cbd3ec bellard
sprintf_len(va_alist) va_dcl
783 f0cbd3ec bellard
#endif
784 f0cbd3ec bellard
{
785 f0cbd3ec bellard
        va_list args;
786 f0cbd3ec bellard
#ifdef __STDC__
787 f0cbd3ec bellard
        va_start(args, format);
788 f0cbd3ec bellard
#else
789 f0cbd3ec bellard
        char *string;
790 f0cbd3ec bellard
        char *format;
791 f0cbd3ec bellard
        va_start(args);
792 f0cbd3ec bellard
        string = va_arg(args, char *);
793 f0cbd3ec bellard
        format = va_arg(args, char *);
794 f0cbd3ec bellard
#endif
795 f0cbd3ec bellard
        vsprintf(string, format, args);
796 f0cbd3ec bellard
        return strlen(string);
797 f0cbd3ec bellard
}
798 f0cbd3ec bellard
799 f0cbd3ec bellard
#endif
800 f0cbd3ec bellard
801 f0cbd3ec bellard
void
802 f0cbd3ec bellard
u_sleep(usec)
803 f0cbd3ec bellard
        int usec;
804 f0cbd3ec bellard
{
805 f0cbd3ec bellard
        struct timeval t;
806 f0cbd3ec bellard
        fd_set fdset;
807 f0cbd3ec bellard
        
808 f0cbd3ec bellard
        FD_ZERO(&fdset);
809 f0cbd3ec bellard
        
810 f0cbd3ec bellard
        t.tv_sec = 0;
811 f0cbd3ec bellard
        t.tv_usec = usec * 1000;
812 f0cbd3ec bellard
        
813 f0cbd3ec bellard
        select(0, &fdset, &fdset, &fdset, &t);
814 f0cbd3ec bellard
}
815 f0cbd3ec bellard
816 f0cbd3ec bellard
/*
817 f0cbd3ec bellard
 * Set fd blocking and non-blocking
818 f0cbd3ec bellard
 */
819 f0cbd3ec bellard
820 f0cbd3ec bellard
void
821 f0cbd3ec bellard
fd_nonblock(fd)
822 f0cbd3ec bellard
        int fd;
823 f0cbd3ec bellard
{
824 f0cbd3ec bellard
#ifdef FIONBIO
825 f0cbd3ec bellard
        int opt = 1;
826 f0cbd3ec bellard
        
827 379ff53d bellard
        ioctlsocket(fd, FIONBIO, &opt);
828 f0cbd3ec bellard
#else
829 f0cbd3ec bellard
        int opt;
830 f0cbd3ec bellard
        
831 f0cbd3ec bellard
        opt = fcntl(fd, F_GETFL, 0);
832 f0cbd3ec bellard
        opt |= O_NONBLOCK;
833 f0cbd3ec bellard
        fcntl(fd, F_SETFL, opt);
834 f0cbd3ec bellard
#endif
835 f0cbd3ec bellard
}
836 f0cbd3ec bellard
837 f0cbd3ec bellard
void
838 f0cbd3ec bellard
fd_block(fd)
839 f0cbd3ec bellard
        int fd;
840 f0cbd3ec bellard
{
841 f0cbd3ec bellard
#ifdef FIONBIO
842 f0cbd3ec bellard
        int opt = 0;
843 f0cbd3ec bellard
        
844 379ff53d bellard
        ioctlsocket(fd, FIONBIO, &opt);
845 f0cbd3ec bellard
#else
846 f0cbd3ec bellard
        int opt;
847 f0cbd3ec bellard
        
848 f0cbd3ec bellard
        opt = fcntl(fd, F_GETFL, 0);
849 f0cbd3ec bellard
        opt &= ~O_NONBLOCK;
850 f0cbd3ec bellard
        fcntl(fd, F_SETFL, opt);
851 f0cbd3ec bellard
#endif
852 f0cbd3ec bellard
}
853 f0cbd3ec bellard
854 f0cbd3ec bellard
855 f0cbd3ec bellard
#if 0
856 f0cbd3ec bellard
/*
857 f0cbd3ec bellard
 * invoke RSH
858 f0cbd3ec bellard
 */
859 f0cbd3ec bellard
int
860 f0cbd3ec bellard
rsh_exec(so,ns, user, host, args)
861 f0cbd3ec bellard
        struct socket *so;
862 f0cbd3ec bellard
        struct socket *ns;
863 f0cbd3ec bellard
        char *user;
864 f0cbd3ec bellard
        char *host;
865 f0cbd3ec bellard
        char *args;
866 f0cbd3ec bellard
{
867 f0cbd3ec bellard
        int fd[2];
868 f0cbd3ec bellard
        int fd0[2];
869 f0cbd3ec bellard
        int s;
870 f0cbd3ec bellard
        char buff[256];
871 f0cbd3ec bellard
        
872 f0cbd3ec bellard
        DEBUG_CALL("rsh_exec");
873 f0cbd3ec bellard
        DEBUG_ARG("so = %lx", (long)so);
874 f0cbd3ec bellard
        
875 f0cbd3ec bellard
        if (pipe(fd)<0) {
876 f0cbd3ec bellard
          lprint("Error: pipe failed: %s\n", strerror(errno));
877 f0cbd3ec bellard
          return 0;
878 f0cbd3ec bellard
        }
879 f0cbd3ec bellard
/* #ifdef HAVE_SOCKETPAIR */
880 f0cbd3ec bellard
#if 1
881 f0cbd3ec bellard
        if (socketpair(PF_UNIX,SOCK_STREAM,0, fd0) == -1) {
882 f0cbd3ec bellard
          close(fd[0]);
883 f0cbd3ec bellard
          close(fd[1]);
884 f0cbd3ec bellard
          lprint("Error: openpty failed: %s\n", strerror(errno));
885 f0cbd3ec bellard
          return 0;
886 f0cbd3ec bellard
        }
887 f0cbd3ec bellard
#else
888 f3ff649d bellard
        if (slirp_openpty(&fd0[0], &fd0[1]) == -1) {
889 f0cbd3ec bellard
          close(fd[0]);
890 f0cbd3ec bellard
          close(fd[1]);
891 f0cbd3ec bellard
          lprint("Error: openpty failed: %s\n", strerror(errno));
892 f0cbd3ec bellard
          return 0;
893 f0cbd3ec bellard
        }
894 f0cbd3ec bellard
#endif
895 f0cbd3ec bellard
        
896 f0cbd3ec bellard
        switch(fork()) {
897 f0cbd3ec bellard
         case -1:
898 f0cbd3ec bellard
           lprint("Error: fork failed: %s\n", strerror(errno));
899 f0cbd3ec bellard
           close(fd[0]);
900 f0cbd3ec bellard
           close(fd[1]);
901 f0cbd3ec bellard
           close(fd0[0]);
902 f0cbd3ec bellard
           close(fd0[1]);
903 f0cbd3ec bellard
           return 0;
904 f0cbd3ec bellard
           
905 f0cbd3ec bellard
         case 0:
906 f0cbd3ec bellard
           close(fd[0]);
907 f0cbd3ec bellard
           close(fd0[0]);
908 f0cbd3ec bellard
           
909 f0cbd3ec bellard
                /* Set the DISPLAY */
910 f0cbd3ec bellard
           if (x_port >= 0) {
911 f0cbd3ec bellard
#ifdef HAVE_SETENV
912 f0cbd3ec bellard
             sprintf(buff, "%s:%d.%d", inet_ntoa(our_addr), x_port, x_screen);
913 f0cbd3ec bellard
             setenv("DISPLAY", buff, 1);
914 f0cbd3ec bellard
#else
915 f0cbd3ec bellard
             sprintf(buff, "DISPLAY=%s:%d.%d", inet_ntoa(our_addr), x_port, x_screen);
916 f0cbd3ec bellard
             putenv(buff);
917 f0cbd3ec bellard
#endif
918 f0cbd3ec bellard
           }
919 f0cbd3ec bellard
           
920 f0cbd3ec bellard
           dup2(fd0[1], 0);
921 f0cbd3ec bellard
           dup2(fd0[1], 1);
922 f0cbd3ec bellard
           dup2(fd[1], 2);
923 f0cbd3ec bellard
           for (s = 3; s <= 255; s++)
924 f0cbd3ec bellard
             close(s);
925 f0cbd3ec bellard
           
926 f0cbd3ec bellard
           execlp("rsh","rsh","-l", user, host, args, NULL);
927 f0cbd3ec bellard
           
928 f0cbd3ec bellard
           /* Ooops, failed, let's tell the user why */
929 f0cbd3ec bellard
           
930 f0cbd3ec bellard
           sprintf(buff, "Error: execlp of %s failed: %s\n", 
931 f0cbd3ec bellard
                   "rsh", strerror(errno));
932 f0cbd3ec bellard
           write(2, buff, strlen(buff)+1);
933 f0cbd3ec bellard
           close(0); close(1); close(2); /* XXX */
934 f0cbd3ec bellard
           exit(1);
935 f0cbd3ec bellard
           
936 f0cbd3ec bellard
        default:
937 f0cbd3ec bellard
          close(fd[1]);
938 f0cbd3ec bellard
          close(fd0[1]);
939 f0cbd3ec bellard
          ns->s=fd[0];
940 f0cbd3ec bellard
          so->s=fd0[0];
941 f0cbd3ec bellard
          
942 f0cbd3ec bellard
          return 1;
943 f0cbd3ec bellard
        }
944 f0cbd3ec bellard
}
945 f0cbd3ec bellard
#endif