]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - windows/winplink.c
0f86b41c648dbf6b978fd97a10b119dbe0c362d2
[PuTTY.git] / windows / winplink.c
1 /*
2  * PLink - a Windows command-line (stdin/stdout) variant of PuTTY.
3  */
4
5 #include <stdio.h>
6 #include <stdlib.h>
7 #include <assert.h>
8 #include <stdarg.h>
9
10 #define PUTTY_DO_GLOBALS               /* actually _define_ globals */
11 #include "putty.h"
12 #include "storage.h"
13 #include "tree234.h"
14 #include "winsecur.h"
15
16 #define WM_AGENT_CALLBACK (WM_APP + 4)
17
18 struct agent_callback {
19     void (*callback)(void *, void *, int);
20     void *callback_ctx;
21     void *data;
22     int len;
23 };
24
25 void fatalbox(const char *p, ...)
26 {
27     va_list ap;
28     fprintf(stderr, "FATAL ERROR: ");
29     va_start(ap, p);
30     vfprintf(stderr, p, ap);
31     va_end(ap);
32     fputc('\n', stderr);
33     if (logctx) {
34         log_free(logctx);
35         logctx = NULL;
36     }
37     cleanup_exit(1);
38 }
39 void modalfatalbox(const char *p, ...)
40 {
41     va_list ap;
42     fprintf(stderr, "FATAL ERROR: ");
43     va_start(ap, p);
44     vfprintf(stderr, p, ap);
45     va_end(ap);
46     fputc('\n', stderr);
47     if (logctx) {
48         log_free(logctx);
49         logctx = NULL;
50     }
51     cleanup_exit(1);
52 }
53 void nonfatal(const char *p, ...)
54 {
55     va_list ap;
56     fprintf(stderr, "ERROR: ");
57     va_start(ap, p);
58     vfprintf(stderr, p, ap);
59     va_end(ap);
60     fputc('\n', stderr);
61 }
62 void connection_fatal(void *frontend, const char *p, ...)
63 {
64     va_list ap;
65     fprintf(stderr, "FATAL ERROR: ");
66     va_start(ap, p);
67     vfprintf(stderr, p, ap);
68     va_end(ap);
69     fputc('\n', stderr);
70     if (logctx) {
71         log_free(logctx);
72         logctx = NULL;
73     }
74     cleanup_exit(1);
75 }
76 void cmdline_error(const char *p, ...)
77 {
78     va_list ap;
79     fprintf(stderr, "plink: ");
80     va_start(ap, p);
81     vfprintf(stderr, p, ap);
82     va_end(ap);
83     fputc('\n', stderr);
84     exit(1);
85 }
86
87 HANDLE inhandle, outhandle, errhandle;
88 struct handle *stdin_handle, *stdout_handle, *stderr_handle;
89 DWORD orig_console_mode;
90 int connopen;
91
92 WSAEVENT netevent;
93
94 static Backend *back;
95 static void *backhandle;
96 static Conf *conf;
97
98 int term_ldisc(Terminal *term, int mode)
99 {
100     return FALSE;
101 }
102 void frontend_echoedit_update(void *frontend, int echo, int edit)
103 {
104     /* Update stdin read mode to reflect changes in line discipline. */
105     DWORD mode;
106
107     mode = ENABLE_PROCESSED_INPUT;
108     if (echo)
109         mode = mode | ENABLE_ECHO_INPUT;
110     else
111         mode = mode & ~ENABLE_ECHO_INPUT;
112     if (edit)
113         mode = mode | ENABLE_LINE_INPUT;
114     else
115         mode = mode & ~ENABLE_LINE_INPUT;
116     SetConsoleMode(inhandle, mode);
117 }
118
119 char *get_ttymode(void *frontend, const char *mode) { return NULL; }
120
121 int from_backend(void *frontend_handle, int is_stderr,
122                  const char *data, int len)
123 {
124     if (is_stderr) {
125         handle_write(stderr_handle, data, len);
126     } else {
127         handle_write(stdout_handle, data, len);
128     }
129
130     return handle_backlog(stdout_handle) + handle_backlog(stderr_handle);
131 }
132
133 int from_backend_untrusted(void *frontend_handle, const char *data, int len)
134 {
135     /*
136      * No "untrusted" output should get here (the way the code is
137      * currently, it's all diverted by FLAG_STDERR).
138      */
139     assert(!"Unexpected call to from_backend_untrusted()");
140     return 0; /* not reached */
141 }
142
143 int from_backend_eof(void *frontend_handle)
144 {
145     handle_write_eof(stdout_handle);
146     return FALSE;   /* do not respond to incoming EOF with outgoing */
147 }
148
149 int get_userpass_input(prompts_t *p, const unsigned char *in, int inlen)
150 {
151     int ret;
152     ret = cmdline_get_passwd_input(p, in, inlen);
153     if (ret == -1)
154         ret = console_get_userpass_input(p, in, inlen);
155     return ret;
156 }
157
158 static DWORD main_thread_id;
159
160 void agent_schedule_callback(void (*callback)(void *, void *, int),
161                              void *callback_ctx, void *data, int len)
162 {
163     struct agent_callback *c = snew(struct agent_callback);
164     c->callback = callback;
165     c->callback_ctx = callback_ctx;
166     c->data = data;
167     c->len = len;
168     PostThreadMessage(main_thread_id, WM_AGENT_CALLBACK, 0, (LPARAM)c);
169 }
170
171 /*
172  *  Short description of parameters.
173  */
174 static void usage(void)
175 {
176     printf("Plink: command-line connection utility\n");
177     printf("%s\n", ver);
178     printf("Usage: plink [options] [user@]host [command]\n");
179     printf("       (\"host\" can also be a PuTTY saved session name)\n");
180     printf("Options:\n");
181     printf("  -V        print version information and exit\n");
182     printf("  -pgpfp    print PGP key fingerprints and exit\n");
183     printf("  -v        show verbose messages\n");
184     printf("  -load sessname  Load settings from saved session\n");
185     printf("  -ssh -telnet -rlogin -raw -serial\n");
186     printf("            force use of a particular protocol\n");
187     printf("  -P port   connect to specified port\n");
188     printf("  -l user   connect with specified username\n");
189     printf("  -batch    disable all interactive prompts\n");
190     printf("  -sercfg configuration-string (e.g. 19200,8,n,1,X)\n");
191     printf("            Specify the serial configuration (serial only)\n");
192     printf("The following options only apply to SSH connections:\n");
193     printf("  -pw passw login with specified password\n");
194     printf("  -D [listen-IP:]listen-port\n");
195     printf("            Dynamic SOCKS-based port forwarding\n");
196     printf("  -L [listen-IP:]listen-port:host:port\n");
197     printf("            Forward local port to remote address\n");
198     printf("  -R [listen-IP:]listen-port:host:port\n");
199     printf("            Forward remote port to local address\n");
200     printf("  -X -x     enable / disable X11 forwarding\n");
201     printf("  -A -a     enable / disable agent forwarding\n");
202     printf("  -t -T     enable / disable pty allocation\n");
203     printf("  -1 -2     force use of particular protocol version\n");
204     printf("  -4 -6     force use of IPv4 or IPv6\n");
205     printf("  -C        enable compression\n");
206     printf("  -i key    private key file for user authentication\n");
207     printf("  -noagent  disable use of Pageant\n");
208     printf("  -agent    enable use of Pageant\n");
209     printf("  -hostkey aa:bb:cc:...\n");
210     printf("            manually specify a host key (may be repeated)\n");
211     printf("  -m file   read remote command(s) from file\n");
212     printf("  -s        remote command is an SSH subsystem (SSH-2 only)\n");
213     printf("  -N        don't start a shell/command (SSH-2 only)\n");
214     printf("  -nc host:port\n");
215     printf("            open tunnel in place of session (SSH-2 only)\n");
216     printf("  -sshlog file\n");
217     printf("  -sshrawlog file\n");
218     printf("            log protocol details to a file\n");
219     printf("  -shareexists\n");
220     printf("            test whether a connection-sharing upstream exists\n");
221     exit(1);
222 }
223
224 static void version(void)
225 {
226     char *buildinfo_text = buildinfo("\n");
227     printf("plink: %s\n%s\n", ver, buildinfo_text);
228     sfree(buildinfo_text);
229     exit(1);
230 }
231
232 char *do_select(SOCKET skt, int startup)
233 {
234     int events;
235     if (startup) {
236         events = (FD_CONNECT | FD_READ | FD_WRITE |
237                   FD_OOB | FD_CLOSE | FD_ACCEPT);
238     } else {
239         events = 0;
240     }
241     if (p_WSAEventSelect(skt, netevent, events) == SOCKET_ERROR) {
242         switch (p_WSAGetLastError()) {
243           case WSAENETDOWN:
244             return "Network is down";
245           default:
246             return "WSAEventSelect(): unknown error";
247         }
248     }
249     return NULL;
250 }
251
252 int stdin_gotdata(struct handle *h, void *data, int len)
253 {
254     if (len < 0) {
255         /*
256          * Special case: report read error.
257          */
258         char buf[4096];
259         FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, NULL, -len, 0,
260                       buf, lenof(buf), NULL);
261         buf[lenof(buf)-1] = '\0';
262         if (buf[strlen(buf)-1] == '\n')
263             buf[strlen(buf)-1] = '\0';
264         fprintf(stderr, "Unable to read from standard input: %s\n", buf);
265         cleanup_exit(0);
266     }
267     noise_ultralight(len);
268     if (connopen && back->connected(backhandle)) {
269         if (len > 0) {
270             return back->send(backhandle, data, len);
271         } else {
272             back->special(backhandle, TS_EOF);
273             return 0;
274         }
275     } else
276         return 0;
277 }
278
279 void stdouterr_sent(struct handle *h, int new_backlog)
280 {
281     if (new_backlog < 0) {
282         /*
283          * Special case: report write error.
284          */
285         char buf[4096];
286         FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, NULL, -new_backlog, 0,
287                       buf, lenof(buf), NULL);
288         buf[lenof(buf)-1] = '\0';
289         if (buf[strlen(buf)-1] == '\n')
290             buf[strlen(buf)-1] = '\0';
291         fprintf(stderr, "Unable to write to standard %s: %s\n",
292                 (h == stdout_handle ? "output" : "error"), buf);
293         cleanup_exit(0);
294     }
295     if (connopen && back->connected(backhandle)) {
296         back->unthrottle(backhandle, (handle_backlog(stdout_handle) +
297                                       handle_backlog(stderr_handle)));
298     }
299 }
300
301 const int share_can_be_downstream = TRUE;
302 const int share_can_be_upstream = TRUE;
303
304 int main(int argc, char **argv)
305 {
306     int sending;
307     int portnumber = -1;
308     SOCKET *sklist;
309     int skcount, sksize;
310     int exitcode;
311     int errors;
312     int got_host = FALSE;
313     int use_subsystem = 0;
314     int just_test_share_exists = FALSE;
315     unsigned long now, next, then;
316
317     dll_hijacking_protection();
318
319     sklist = NULL;
320     skcount = sksize = 0;
321     /*
322      * Initialise port and protocol to sensible defaults. (These
323      * will be overridden by more or less anything.)
324      */
325     default_protocol = PROT_SSH;
326     default_port = 22;
327
328     flags = FLAG_STDERR;
329     /*
330      * Process the command line.
331      */
332     conf = conf_new();
333     do_defaults(NULL, conf);
334     loaded_session = FALSE;
335     default_protocol = conf_get_int(conf, CONF_protocol);
336     default_port = conf_get_int(conf, CONF_port);
337     errors = 0;
338     {
339         /*
340          * Override the default protocol if PLINK_PROTOCOL is set.
341          */
342         char *p = getenv("PLINK_PROTOCOL");
343         if (p) {
344             const Backend *b = backend_from_name(p);
345             if (b) {
346                 default_protocol = b->protocol;
347                 default_port = b->default_port;
348                 conf_set_int(conf, CONF_protocol, default_protocol);
349                 conf_set_int(conf, CONF_port, default_port);
350             }
351         }
352     }
353     while (--argc) {
354         char *p = *++argv;
355         if (*p == '-') {
356             int ret = cmdline_process_param(p, (argc > 1 ? argv[1] : NULL),
357                                             1, conf);
358             if (ret == -2) {
359                 fprintf(stderr,
360                         "plink: option \"%s\" requires an argument\n", p);
361                 errors = 1;
362             } else if (ret == 2) {
363                 --argc, ++argv;
364             } else if (ret == 1) {
365                 continue;
366             } else if (!strcmp(p, "-batch")) {
367                 console_batch_mode = 1;
368             } else if (!strcmp(p, "-s")) {
369                 /* Save status to write to conf later. */
370                 use_subsystem = 1;
371             } else if (!strcmp(p, "-V") || !strcmp(p, "--version")) {
372                 version();
373             } else if (!strcmp(p, "--help")) {
374                 usage();
375             } else if (!strcmp(p, "-pgpfp")) {
376                 pgp_fingerprints();
377                 exit(1);
378             } else if (!strcmp(p, "-shareexists")) {
379                 just_test_share_exists = TRUE;
380             } else {
381                 fprintf(stderr, "plink: unknown option \"%s\"\n", p);
382                 errors = 1;
383             }
384         } else if (*p) {
385             if (!conf_launchable(conf) || !(got_host || loaded_session)) {
386                 char *q = p;
387                 /*
388                  * If the hostname starts with "telnet:", set the
389                  * protocol to Telnet and process the string as a
390                  * Telnet URL.
391                  */
392                 if (!strncmp(q, "telnet:", 7)) {
393                     char c;
394
395                     q += 7;
396                     if (q[0] == '/' && q[1] == '/')
397                         q += 2;
398                     conf_set_int(conf, CONF_protocol, PROT_TELNET);
399                     p = q;
400                     p += host_strcspn(p, ":/");
401                     c = *p;
402                     if (*p)
403                         *p++ = '\0';
404                     if (c == ':')
405                         conf_set_int(conf, CONF_port, atoi(p));
406                     else
407                         conf_set_int(conf, CONF_port, -1);
408                     conf_set_str(conf, CONF_host, q);
409                     got_host = TRUE;
410                 } else {
411                     char *r, *user, *host;
412                     /*
413                      * Before we process the [user@]host string, we
414                      * first check for the presence of a protocol
415                      * prefix (a protocol name followed by ",").
416                      */
417                     r = strchr(p, ',');
418                     if (r) {
419                         const Backend *b;
420                         *r = '\0';
421                         b = backend_from_name(p);
422                         if (b) {
423                             default_protocol = b->protocol;
424                             conf_set_int(conf, CONF_protocol,
425                                          default_protocol);
426                             portnumber = b->default_port;
427                         }
428                         p = r + 1;
429                     }
430
431                     /*
432                      * A nonzero length string followed by an @ is treated
433                      * as a username. (We discount an _initial_ @.) The
434                      * rest of the string (or the whole string if no @)
435                      * is treated as a session name and/or hostname.
436                      */
437                     r = strrchr(p, '@');
438                     if (r == p)
439                         p++, r = NULL; /* discount initial @ */
440                     if (r) {
441                         *r++ = '\0';
442                         user = p, host = r;
443                     } else {
444                         user = NULL, host = p;
445                     }
446
447                     /*
448                      * Now attempt to load a saved session with the
449                      * same name as the hostname.
450                      */
451                     {
452                         Conf *conf2 = conf_new();
453                         do_defaults(host, conf2);
454                         if (loaded_session || !conf_launchable(conf2)) {
455                             /* No settings for this host; use defaults */
456                             /* (or session was already loaded with -load) */
457                             conf_set_str(conf, CONF_host, host);
458                             conf_set_int(conf, CONF_port, default_port);
459                             got_host = TRUE;
460                         } else {
461                             conf_copy_into(conf, conf2);
462                             loaded_session = TRUE;
463                         }
464                         conf_free(conf2);
465                     }
466
467                     if (user) {
468                         /* Patch in specified username. */
469                         conf_set_str(conf, CONF_username, user);
470                     }
471
472                 }
473             } else {
474                 char *command;
475                 int cmdlen, cmdsize;
476                 cmdlen = cmdsize = 0;
477                 command = NULL;
478
479                 while (argc) {
480                     while (*p) {
481                         if (cmdlen >= cmdsize) {
482                             cmdsize = cmdlen + 512;
483                             command = sresize(command, cmdsize, char);
484                         }
485                         command[cmdlen++]=*p++;
486                     }
487                     if (cmdlen >= cmdsize) {
488                         cmdsize = cmdlen + 512;
489                         command = sresize(command, cmdsize, char);
490                     }
491                     command[cmdlen++]=' '; /* always add trailing space */
492                     if (--argc) p = *++argv;
493                 }
494                 if (cmdlen) command[--cmdlen]='\0';
495                                        /* change trailing blank to NUL */
496                 conf_set_str(conf, CONF_remote_cmd, command);
497                 conf_set_str(conf, CONF_remote_cmd2, "");
498                 conf_set_int(conf, CONF_nopty, TRUE);  /* command => no tty */
499
500                 break;                 /* done with cmdline */
501             }
502         }
503     }
504
505     if (errors)
506         return 1;
507
508     if (!conf_launchable(conf) || !(got_host || loaded_session)) {
509         usage();
510     }
511
512     /*
513      * Muck about with the hostname in various ways.
514      */
515     {
516         char *hostbuf = dupstr(conf_get_str(conf, CONF_host));
517         char *host = hostbuf;
518         char *p, *q;
519
520         /*
521          * Trim leading whitespace.
522          */
523         host += strspn(host, " \t");
524
525         /*
526          * See if host is of the form user@host, and separate out
527          * the username if so.
528          */
529         if (host[0] != '\0') {
530             char *atsign = strrchr(host, '@');
531             if (atsign) {
532                 *atsign = '\0';
533                 conf_set_str(conf, CONF_username, host);
534                 host = atsign + 1;
535             }
536         }
537
538         /*
539          * Trim a colon suffix off the hostname if it's there. In
540          * order to protect unbracketed IPv6 address literals
541          * against this treatment, we do not do this if there's
542          * _more_ than one colon.
543          */
544         {
545             char *c = host_strchr(host, ':');
546  
547             if (c) {
548                 char *d = host_strchr(c+1, ':');
549                 if (!d)
550                     *c = '\0';
551             }
552         }
553
554         /*
555          * Remove any remaining whitespace.
556          */
557         p = hostbuf;
558         q = host;
559         while (*q) {
560             if (*q != ' ' && *q != '\t')
561                 *p++ = *q;
562             q++;
563         }
564         *p = '\0';
565
566         conf_set_str(conf, CONF_host, hostbuf);
567         sfree(hostbuf);
568     }
569
570     /*
571      * Perform command-line overrides on session configuration.
572      */
573     cmdline_run_saved(conf);
574
575     /*
576      * Apply subsystem status.
577      */
578     if (use_subsystem)
579         conf_set_int(conf, CONF_ssh_subsys, TRUE);
580
581     if (!*conf_get_str(conf, CONF_remote_cmd) &&
582         !*conf_get_str(conf, CONF_remote_cmd2) &&
583         !*conf_get_str(conf, CONF_ssh_nc_host))
584         flags |= FLAG_INTERACTIVE;
585
586     /*
587      * Select protocol. This is farmed out into a table in a
588      * separate file to enable an ssh-free variant.
589      */
590     back = backend_from_proto(conf_get_int(conf, CONF_protocol));
591     if (back == NULL) {
592         fprintf(stderr,
593                 "Internal fault: Unsupported protocol found\n");
594         return 1;
595     }
596
597     /*
598      * Select port.
599      */
600     if (portnumber != -1)
601         conf_set_int(conf, CONF_port, portnumber);
602
603     sk_init();
604     if (p_WSAEventSelect == NULL) {
605         fprintf(stderr, "Plink requires WinSock 2\n");
606         return 1;
607     }
608
609     /*
610      * Plink doesn't provide any way to add forwardings after the
611      * connection is set up, so if there are none now, we can safely set
612      * the "simple" flag.
613      */
614     if (conf_get_int(conf, CONF_protocol) == PROT_SSH &&
615         !conf_get_int(conf, CONF_x11_forward) &&
616         !conf_get_int(conf, CONF_agentfwd) &&
617         !conf_get_str_nthstrkey(conf, CONF_portfwd, 0))
618         conf_set_int(conf, CONF_ssh_simple, TRUE);
619
620     logctx = log_init(NULL, conf);
621     console_provide_logctx(logctx);
622
623     if (just_test_share_exists) {
624         if (!back->test_for_upstream) {
625             fprintf(stderr, "Connection sharing not supported for connection "
626                     "type '%s'\n", back->name);
627             return 1;
628         }
629         if (back->test_for_upstream(conf_get_str(conf, CONF_host),
630                                     conf_get_int(conf, CONF_port), conf))
631             return 0;
632         else
633             return 1;
634     }
635
636     /*
637      * Start up the connection.
638      */
639     netevent = CreateEvent(NULL, FALSE, FALSE, NULL);
640     {
641         const char *error;
642         char *realhost;
643         /* nodelay is only useful if stdin is a character device (console) */
644         int nodelay = conf_get_int(conf, CONF_tcp_nodelay) &&
645             (GetFileType(GetStdHandle(STD_INPUT_HANDLE)) == FILE_TYPE_CHAR);
646
647         error = back->init(NULL, &backhandle, conf,
648                            conf_get_str(conf, CONF_host),
649                            conf_get_int(conf, CONF_port),
650                            &realhost, nodelay,
651                            conf_get_int(conf, CONF_tcp_keepalives));
652         if (error) {
653             fprintf(stderr, "Unable to open connection:\n%s", error);
654             return 1;
655         }
656         back->provide_logctx(backhandle, logctx);
657         sfree(realhost);
658     }
659     connopen = 1;
660
661     inhandle = GetStdHandle(STD_INPUT_HANDLE);
662     outhandle = GetStdHandle(STD_OUTPUT_HANDLE);
663     errhandle = GetStdHandle(STD_ERROR_HANDLE);
664
665     /*
666      * Turn off ECHO and LINE input modes. We don't care if this
667      * call fails, because we know we aren't necessarily running in
668      * a console.
669      */
670     GetConsoleMode(inhandle, &orig_console_mode);
671     SetConsoleMode(inhandle, ENABLE_PROCESSED_INPUT);
672
673     /*
674      * Pass the output handles to the handle-handling subsystem.
675      * (The input one we leave until we're through the
676      * authentication process.)
677      */
678     stdout_handle = handle_output_new(outhandle, stdouterr_sent, NULL, 0);
679     stderr_handle = handle_output_new(errhandle, stdouterr_sent, NULL, 0);
680
681     main_thread_id = GetCurrentThreadId();
682
683     sending = FALSE;
684
685     now = GETTICKCOUNT();
686
687     while (1) {
688         int nhandles;
689         HANDLE *handles;        
690         int n;
691         DWORD ticks;
692
693         if (!sending && back->sendok(backhandle)) {
694             stdin_handle = handle_input_new(inhandle, stdin_gotdata, NULL,
695                                             0);
696             sending = TRUE;
697         }
698
699         if (toplevel_callback_pending()) {
700             ticks = 0;
701             next = now;
702         } else if (run_timers(now, &next)) {
703             then = now;
704             now = GETTICKCOUNT();
705             if (now - then > next - then)
706                 ticks = 0;
707             else
708                 ticks = next - now;
709         } else {
710             ticks = INFINITE;
711             /* no need to initialise next here because we can never
712              * get WAIT_TIMEOUT */
713         }
714
715         handles = handle_get_events(&nhandles);
716         handles = sresize(handles, nhandles+1, HANDLE);
717         handles[nhandles] = netevent;
718         n = MsgWaitForMultipleObjects(nhandles+1, handles, FALSE, ticks,
719                                       QS_POSTMESSAGE);
720         if ((unsigned)(n - WAIT_OBJECT_0) < (unsigned)nhandles) {
721             handle_got_event(handles[n - WAIT_OBJECT_0]);
722         } else if (n == WAIT_OBJECT_0 + nhandles) {
723             WSANETWORKEVENTS things;
724             SOCKET socket;
725             extern SOCKET first_socket(int *), next_socket(int *);
726             extern int select_result(WPARAM, LPARAM);
727             int i, socketstate;
728
729             /*
730              * We must not call select_result() for any socket
731              * until we have finished enumerating within the tree.
732              * This is because select_result() may close the socket
733              * and modify the tree.
734              */
735             /* Count the active sockets. */
736             i = 0;
737             for (socket = first_socket(&socketstate);
738                  socket != INVALID_SOCKET;
739                  socket = next_socket(&socketstate)) i++;
740
741             /* Expand the buffer if necessary. */
742             if (i > sksize) {
743                 sksize = i + 16;
744                 sklist = sresize(sklist, sksize, SOCKET);
745             }
746
747             /* Retrieve the sockets into sklist. */
748             skcount = 0;
749             for (socket = first_socket(&socketstate);
750                  socket != INVALID_SOCKET;
751                  socket = next_socket(&socketstate)) {
752                 sklist[skcount++] = socket;
753             }
754
755             /* Now we're done enumerating; go through the list. */
756             for (i = 0; i < skcount; i++) {
757                 WPARAM wp;
758                 socket = sklist[i];
759                 wp = (WPARAM) socket;
760                 if (!p_WSAEnumNetworkEvents(socket, NULL, &things)) {
761                     static const struct { int bit, mask; } eventtypes[] = {
762                         {FD_CONNECT_BIT, FD_CONNECT},
763                         {FD_READ_BIT, FD_READ},
764                         {FD_CLOSE_BIT, FD_CLOSE},
765                         {FD_OOB_BIT, FD_OOB},
766                         {FD_WRITE_BIT, FD_WRITE},
767                         {FD_ACCEPT_BIT, FD_ACCEPT},
768                     };
769                     int e;
770
771                     noise_ultralight(socket);
772                     noise_ultralight(things.lNetworkEvents);
773
774                     for (e = 0; e < lenof(eventtypes); e++)
775                         if (things.lNetworkEvents & eventtypes[e].mask) {
776                             LPARAM lp;
777                             int err = things.iErrorCode[eventtypes[e].bit];
778                             lp = WSAMAKESELECTREPLY(eventtypes[e].mask, err);
779                             connopen &= select_result(wp, lp);
780                         }
781                 }
782             }
783         } else if (n == WAIT_OBJECT_0 + nhandles + 1) {
784             MSG msg;
785             while (PeekMessage(&msg, INVALID_HANDLE_VALUE,
786                                WM_AGENT_CALLBACK, WM_AGENT_CALLBACK,
787                                PM_REMOVE)) {
788                 struct agent_callback *c = (struct agent_callback *)msg.lParam;
789                 c->callback(c->callback_ctx, c->data, c->len);
790                 sfree(c);
791             }
792         }
793
794         run_toplevel_callbacks();
795
796         if (n == WAIT_TIMEOUT) {
797             now = next;
798         } else {
799             now = GETTICKCOUNT();
800         }
801
802         sfree(handles);
803
804         if (sending)
805             handle_unthrottle(stdin_handle, back->sendbuffer(backhandle));
806
807         if ((!connopen || !back->connected(backhandle)) &&
808             handle_backlog(stdout_handle) + handle_backlog(stderr_handle) == 0)
809             break;                     /* we closed the connection */
810     }
811     exitcode = back->exitcode(backhandle);
812     if (exitcode < 0) {
813         fprintf(stderr, "Remote process exit code unavailable\n");
814         exitcode = 1;                  /* this is an error condition */
815     }
816     cleanup_exit(exitcode);
817     return 0;                          /* placate compiler warning */
818 }