Statistics
| Branch: | Revision:

root / slirp / misc.c @ 1b2b0af5

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