]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - windows/winplink.c
99e269fdc106687e7edff5c51fb778ee22d545b7
[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     printf("plink: %s\n", ver);
227     exit(1);
228 }
229
230 char *do_select(SOCKET skt, int startup)
231 {
232     int events;
233     if (startup) {
234         events = (FD_CONNECT | FD_READ | FD_WRITE |
235                   FD_OOB | FD_CLOSE | FD_ACCEPT);
236     } else {
237         events = 0;
238     }
239     if (p_WSAEventSelect(skt, netevent, events) == SOCKET_ERROR) {
240         switch (p_WSAGetLastError()) {
241           case WSAENETDOWN:
242             return "Network is down";
243           default:
244             return "WSAEventSelect(): unknown error";
245         }
246     }
247     return NULL;
248 }
249
250 int stdin_gotdata(struct handle *h, void *data, int len)
251 {
252     if (len < 0) {
253         /*
254          * Special case: report read error.
255          */
256         char buf[4096];
257         FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, NULL, -len, 0,
258                       buf, lenof(buf), NULL);
259         buf[lenof(buf)-1] = '\0';
260         if (buf[strlen(buf)-1] == '\n')
261             buf[strlen(buf)-1] = '\0';
262         fprintf(stderr, "Unable to read from standard input: %s\n", buf);
263         cleanup_exit(0);
264     }
265     noise_ultralight(len);
266     if (connopen && back->connected(backhandle)) {
267         if (len > 0) {
268             return back->send(backhandle, data, len);
269         } else {
270             back->special(backhandle, TS_EOF);
271             return 0;
272         }
273     } else
274         return 0;
275 }
276
277 void stdouterr_sent(struct handle *h, int new_backlog)
278 {
279     if (new_backlog < 0) {
280         /*
281          * Special case: report write error.
282          */
283         char buf[4096];
284         FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, NULL, -new_backlog, 0,
285                       buf, lenof(buf), NULL);
286         buf[lenof(buf)-1] = '\0';
287         if (buf[strlen(buf)-1] == '\n')
288             buf[strlen(buf)-1] = '\0';
289         fprintf(stderr, "Unable to write to standard %s: %s\n",
290                 (h == stdout_handle ? "output" : "error"), buf);
291         cleanup_exit(0);
292     }
293     if (connopen && back->connected(backhandle)) {
294         back->unthrottle(backhandle, (handle_backlog(stdout_handle) +
295                                       handle_backlog(stderr_handle)));
296     }
297 }
298
299 const int share_can_be_downstream = TRUE;
300 const int share_can_be_upstream = TRUE;
301
302 int main(int argc, char **argv)
303 {
304     int sending;
305     int portnumber = -1;
306     SOCKET *sklist;
307     int skcount, sksize;
308     int exitcode;
309     int errors;
310     int got_host = FALSE;
311     int use_subsystem = 0;
312     int just_test_share_exists = FALSE;
313     unsigned long now, next, then;
314
315     sklist = NULL;
316     skcount = sksize = 0;
317     /*
318      * Initialise port and protocol to sensible defaults. (These
319      * will be overridden by more or less anything.)
320      */
321     default_protocol = PROT_SSH;
322     default_port = 22;
323
324     flags = FLAG_STDERR;
325     /*
326      * Process the command line.
327      */
328     conf = conf_new();
329     do_defaults(NULL, conf);
330     loaded_session = FALSE;
331     default_protocol = conf_get_int(conf, CONF_protocol);
332     default_port = conf_get_int(conf, CONF_port);
333     errors = 0;
334     {
335         /*
336          * Override the default protocol if PLINK_PROTOCOL is set.
337          */
338         char *p = getenv("PLINK_PROTOCOL");
339         if (p) {
340             const Backend *b = backend_from_name(p);
341             if (b) {
342                 default_protocol = b->protocol;
343                 default_port = b->default_port;
344                 conf_set_int(conf, CONF_protocol, default_protocol);
345                 conf_set_int(conf, CONF_port, default_port);
346             }
347         }
348     }
349     while (--argc) {
350         char *p = *++argv;
351         if (*p == '-') {
352             int ret = cmdline_process_param(p, (argc > 1 ? argv[1] : NULL),
353                                             1, conf);
354             if (ret == -2) {
355                 fprintf(stderr,
356                         "plink: option \"%s\" requires an argument\n", p);
357                 errors = 1;
358             } else if (ret == 2) {
359                 --argc, ++argv;
360             } else if (ret == 1) {
361                 continue;
362             } else if (!strcmp(p, "-batch")) {
363                 console_batch_mode = 1;
364             } else if (!strcmp(p, "-s")) {
365                 /* Save status to write to conf later. */
366                 use_subsystem = 1;
367             } else if (!strcmp(p, "-V") || !strcmp(p, "--version")) {
368                 version();
369             } else if (!strcmp(p, "--help")) {
370                 usage();
371             } else if (!strcmp(p, "-pgpfp")) {
372                 pgp_fingerprints();
373                 exit(1);
374             } else if (!strcmp(p, "-shareexists")) {
375                 just_test_share_exists = TRUE;
376             } else {
377                 fprintf(stderr, "plink: unknown option \"%s\"\n", p);
378                 errors = 1;
379             }
380         } else if (*p) {
381             if (!conf_launchable(conf) || !(got_host || loaded_session)) {
382                 char *q = p;
383                 /*
384                  * If the hostname starts with "telnet:", set the
385                  * protocol to Telnet and process the string as a
386                  * Telnet URL.
387                  */
388                 if (!strncmp(q, "telnet:", 7)) {
389                     char c;
390
391                     q += 7;
392                     if (q[0] == '/' && q[1] == '/')
393                         q += 2;
394                     conf_set_int(conf, CONF_protocol, PROT_TELNET);
395                     p = q;
396                     p += host_strcspn(p, ":/");
397                     c = *p;
398                     if (*p)
399                         *p++ = '\0';
400                     if (c == ':')
401                         conf_set_int(conf, CONF_port, atoi(p));
402                     else
403                         conf_set_int(conf, CONF_port, -1);
404                     conf_set_str(conf, CONF_host, q);
405                     got_host = TRUE;
406                 } else {
407                     char *r, *user, *host;
408                     /*
409                      * Before we process the [user@]host string, we
410                      * first check for the presence of a protocol
411                      * prefix (a protocol name followed by ",").
412                      */
413                     r = strchr(p, ',');
414                     if (r) {
415                         const Backend *b;
416                         *r = '\0';
417                         b = backend_from_name(p);
418                         if (b) {
419                             default_protocol = b->protocol;
420                             conf_set_int(conf, CONF_protocol,
421                                          default_protocol);
422                             portnumber = b->default_port;
423                         }
424                         p = r + 1;
425                     }
426
427                     /*
428                      * A nonzero length string followed by an @ is treated
429                      * as a username. (We discount an _initial_ @.) The
430                      * rest of the string (or the whole string if no @)
431                      * is treated as a session name and/or hostname.
432                      */
433                     r = strrchr(p, '@');
434                     if (r == p)
435                         p++, r = NULL; /* discount initial @ */
436                     if (r) {
437                         *r++ = '\0';
438                         user = p, host = r;
439                     } else {
440                         user = NULL, host = p;
441                     }
442
443                     /*
444                      * Now attempt to load a saved session with the
445                      * same name as the hostname.
446                      */
447                     {
448                         Conf *conf2 = conf_new();
449                         do_defaults(host, conf2);
450                         if (loaded_session || !conf_launchable(conf2)) {
451                             /* No settings for this host; use defaults */
452                             /* (or session was already loaded with -load) */
453                             conf_set_str(conf, CONF_host, host);
454                             conf_set_int(conf, CONF_port, default_port);
455                             got_host = TRUE;
456                         } else {
457                             conf_copy_into(conf, conf2);
458                             loaded_session = TRUE;
459                         }
460                         conf_free(conf2);
461                     }
462
463                     if (user) {
464                         /* Patch in specified username. */
465                         conf_set_str(conf, CONF_username, user);
466                     }
467
468                 }
469             } else {
470                 char *command;
471                 int cmdlen, cmdsize;
472                 cmdlen = cmdsize = 0;
473                 command = NULL;
474
475                 while (argc) {
476                     while (*p) {
477                         if (cmdlen >= cmdsize) {
478                             cmdsize = cmdlen + 512;
479                             command = sresize(command, cmdsize, char);
480                         }
481                         command[cmdlen++]=*p++;
482                     }
483                     if (cmdlen >= cmdsize) {
484                         cmdsize = cmdlen + 512;
485                         command = sresize(command, cmdsize, char);
486                     }
487                     command[cmdlen++]=' '; /* always add trailing space */
488                     if (--argc) p = *++argv;
489                 }
490                 if (cmdlen) command[--cmdlen]='\0';
491                                        /* change trailing blank to NUL */
492                 conf_set_str(conf, CONF_remote_cmd, command);
493                 conf_set_str(conf, CONF_remote_cmd2, "");
494                 conf_set_int(conf, CONF_nopty, TRUE);  /* command => no tty */
495
496                 break;                 /* done with cmdline */
497             }
498         }
499     }
500
501 #if !defined UNPROTECT && !defined NO_SECURITY
502     /*
503      * Protect our process.
504      */
505     {
506         char *error = NULL;
507         if (!setprocessacl(error)) {
508             char *message = dupprintf("Could not restrict process ACL: %s",
509                                       error);
510             logevent(NULL, message);
511             sfree(message);
512             sfree(error);
513         }
514     }
515 #endif
516
517     if (errors)
518         return 1;
519
520     if (!conf_launchable(conf) || !(got_host || loaded_session)) {
521         usage();
522     }
523
524     /*
525      * Muck about with the hostname in various ways.
526      */
527     {
528         char *hostbuf = dupstr(conf_get_str(conf, CONF_host));
529         char *host = hostbuf;
530         char *p, *q;
531
532         /*
533          * Trim leading whitespace.
534          */
535         host += strspn(host, " \t");
536
537         /*
538          * See if host is of the form user@host, and separate out
539          * the username if so.
540          */
541         if (host[0] != '\0') {
542             char *atsign = strrchr(host, '@');
543             if (atsign) {
544                 *atsign = '\0';
545                 conf_set_str(conf, CONF_username, host);
546                 host = atsign + 1;
547             }
548         }
549
550         /*
551          * Trim a colon suffix off the hostname if it's there. In
552          * order to protect unbracketed IPv6 address literals
553          * against this treatment, we do not do this if there's
554          * _more_ than one colon.
555          */
556         {
557             char *c = host_strchr(host, ':');
558  
559             if (c) {
560                 char *d = host_strchr(c+1, ':');
561                 if (!d)
562                     *c = '\0';
563             }
564         }
565
566         /*
567          * Remove any remaining whitespace.
568          */
569         p = hostbuf;
570         q = host;
571         while (*q) {
572             if (*q != ' ' && *q != '\t')
573                 *p++ = *q;
574             q++;
575         }
576         *p = '\0';
577
578         conf_set_str(conf, CONF_host, hostbuf);
579         sfree(hostbuf);
580     }
581
582     /*
583      * Perform command-line overrides on session configuration.
584      */
585     cmdline_run_saved(conf);
586
587     /*
588      * Apply subsystem status.
589      */
590     if (use_subsystem)
591         conf_set_int(conf, CONF_ssh_subsys, TRUE);
592
593     if (!*conf_get_str(conf, CONF_remote_cmd) &&
594         !*conf_get_str(conf, CONF_remote_cmd2) &&
595         !*conf_get_str(conf, CONF_ssh_nc_host))
596         flags |= FLAG_INTERACTIVE;
597
598     /*
599      * Select protocol. This is farmed out into a table in a
600      * separate file to enable an ssh-free variant.
601      */
602     back = backend_from_proto(conf_get_int(conf, CONF_protocol));
603     if (back == NULL) {
604         fprintf(stderr,
605                 "Internal fault: Unsupported protocol found\n");
606         return 1;
607     }
608
609     /*
610      * Select port.
611      */
612     if (portnumber != -1)
613         conf_set_int(conf, CONF_port, portnumber);
614
615     sk_init();
616     if (p_WSAEventSelect == NULL) {
617         fprintf(stderr, "Plink requires WinSock 2\n");
618         return 1;
619     }
620
621     /*
622      * Plink doesn't provide any way to add forwardings after the
623      * connection is set up, so if there are none now, we can safely set
624      * the "simple" flag.
625      */
626     if (conf_get_int(conf, CONF_protocol) == PROT_SSH &&
627         !conf_get_int(conf, CONF_x11_forward) &&
628         !conf_get_int(conf, CONF_agentfwd) &&
629         !conf_get_str_nthstrkey(conf, CONF_portfwd, 0))
630         conf_set_int(conf, CONF_ssh_simple, TRUE);
631
632     logctx = log_init(NULL, conf);
633     console_provide_logctx(logctx);
634
635     if (just_test_share_exists) {
636         if (!back->test_for_upstream) {
637             fprintf(stderr, "Connection sharing not supported for connection "
638                     "type '%s'\n", back->name);
639             return 1;
640         }
641         if (back->test_for_upstream(conf_get_str(conf, CONF_host),
642                                     conf_get_int(conf, CONF_port), conf))
643             return 0;
644         else
645             return 1;
646     }
647
648     /*
649      * Start up the connection.
650      */
651     netevent = CreateEvent(NULL, FALSE, FALSE, NULL);
652     {
653         const char *error;
654         char *realhost;
655         /* nodelay is only useful if stdin is a character device (console) */
656         int nodelay = conf_get_int(conf, CONF_tcp_nodelay) &&
657             (GetFileType(GetStdHandle(STD_INPUT_HANDLE)) == FILE_TYPE_CHAR);
658
659         error = back->init(NULL, &backhandle, conf,
660                            conf_get_str(conf, CONF_host),
661                            conf_get_int(conf, CONF_port),
662                            &realhost, nodelay,
663                            conf_get_int(conf, CONF_tcp_keepalives));
664         if (error) {
665             fprintf(stderr, "Unable to open connection:\n%s", error);
666             return 1;
667         }
668         back->provide_logctx(backhandle, logctx);
669         sfree(realhost);
670     }
671     connopen = 1;
672
673     inhandle = GetStdHandle(STD_INPUT_HANDLE);
674     outhandle = GetStdHandle(STD_OUTPUT_HANDLE);
675     errhandle = GetStdHandle(STD_ERROR_HANDLE);
676
677     /*
678      * Turn off ECHO and LINE input modes. We don't care if this
679      * call fails, because we know we aren't necessarily running in
680      * a console.
681      */
682     GetConsoleMode(inhandle, &orig_console_mode);
683     SetConsoleMode(inhandle, ENABLE_PROCESSED_INPUT);
684
685     /*
686      * Pass the output handles to the handle-handling subsystem.
687      * (The input one we leave until we're through the
688      * authentication process.)
689      */
690     stdout_handle = handle_output_new(outhandle, stdouterr_sent, NULL, 0);
691     stderr_handle = handle_output_new(errhandle, stdouterr_sent, NULL, 0);
692
693     main_thread_id = GetCurrentThreadId();
694
695     sending = FALSE;
696
697     now = GETTICKCOUNT();
698
699     while (1) {
700         int nhandles;
701         HANDLE *handles;        
702         int n;
703         DWORD ticks;
704
705         if (!sending && back->sendok(backhandle)) {
706             stdin_handle = handle_input_new(inhandle, stdin_gotdata, NULL,
707                                             0);
708             sending = TRUE;
709         }
710
711         if (toplevel_callback_pending()) {
712             ticks = 0;
713             next = now;
714         } else if (run_timers(now, &next)) {
715             then = now;
716             now = GETTICKCOUNT();
717             if (now - then > next - then)
718                 ticks = 0;
719             else
720                 ticks = next - now;
721         } else {
722             ticks = INFINITE;
723             /* no need to initialise next here because we can never
724              * get WAIT_TIMEOUT */
725         }
726
727         handles = handle_get_events(&nhandles);
728         handles = sresize(handles, nhandles+1, HANDLE);
729         handles[nhandles] = netevent;
730         n = MsgWaitForMultipleObjects(nhandles+1, handles, FALSE, ticks,
731                                       QS_POSTMESSAGE);
732         if ((unsigned)(n - WAIT_OBJECT_0) < (unsigned)nhandles) {
733             handle_got_event(handles[n - WAIT_OBJECT_0]);
734         } else if (n == WAIT_OBJECT_0 + nhandles) {
735             WSANETWORKEVENTS things;
736             SOCKET socket;
737             extern SOCKET first_socket(int *), next_socket(int *);
738             extern int select_result(WPARAM, LPARAM);
739             int i, socketstate;
740
741             /*
742              * We must not call select_result() for any socket
743              * until we have finished enumerating within the tree.
744              * This is because select_result() may close the socket
745              * and modify the tree.
746              */
747             /* Count the active sockets. */
748             i = 0;
749             for (socket = first_socket(&socketstate);
750                  socket != INVALID_SOCKET;
751                  socket = next_socket(&socketstate)) i++;
752
753             /* Expand the buffer if necessary. */
754             if (i > sksize) {
755                 sksize = i + 16;
756                 sklist = sresize(sklist, sksize, SOCKET);
757             }
758
759             /* Retrieve the sockets into sklist. */
760             skcount = 0;
761             for (socket = first_socket(&socketstate);
762                  socket != INVALID_SOCKET;
763                  socket = next_socket(&socketstate)) {
764                 sklist[skcount++] = socket;
765             }
766
767             /* Now we're done enumerating; go through the list. */
768             for (i = 0; i < skcount; i++) {
769                 WPARAM wp;
770                 socket = sklist[i];
771                 wp = (WPARAM) socket;
772                 if (!p_WSAEnumNetworkEvents(socket, NULL, &things)) {
773                     static const struct { int bit, mask; } eventtypes[] = {
774                         {FD_CONNECT_BIT, FD_CONNECT},
775                         {FD_READ_BIT, FD_READ},
776                         {FD_CLOSE_BIT, FD_CLOSE},
777                         {FD_OOB_BIT, FD_OOB},
778                         {FD_WRITE_BIT, FD_WRITE},
779                         {FD_ACCEPT_BIT, FD_ACCEPT},
780                     };
781                     int e;
782
783                     noise_ultralight(socket);
784                     noise_ultralight(things.lNetworkEvents);
785
786                     for (e = 0; e < lenof(eventtypes); e++)
787                         if (things.lNetworkEvents & eventtypes[e].mask) {
788                             LPARAM lp;
789                             int err = things.iErrorCode[eventtypes[e].bit];
790                             lp = WSAMAKESELECTREPLY(eventtypes[e].mask, err);
791                             connopen &= select_result(wp, lp);
792                         }
793                 }
794             }
795         } else if (n == WAIT_OBJECT_0 + nhandles + 1) {
796             MSG msg;
797             while (PeekMessage(&msg, INVALID_HANDLE_VALUE,
798                                WM_AGENT_CALLBACK, WM_AGENT_CALLBACK,
799                                PM_REMOVE)) {
800                 struct agent_callback *c = (struct agent_callback *)msg.lParam;
801                 c->callback(c->callback_ctx, c->data, c->len);
802                 sfree(c);
803             }
804         }
805
806         run_toplevel_callbacks();
807
808         if (n == WAIT_TIMEOUT) {
809             now = next;
810         } else {
811             now = GETTICKCOUNT();
812         }
813
814         sfree(handles);
815
816         if (sending)
817             handle_unthrottle(stdin_handle, back->sendbuffer(backhandle));
818
819         if ((!connopen || !back->connected(backhandle)) &&
820             handle_backlog(stdout_handle) + handle_backlog(stderr_handle) == 0)
821             break;                     /* we closed the connection */
822     }
823     exitcode = back->exitcode(backhandle);
824     if (exitcode < 0) {
825         fprintf(stderr, "Remote process exit code unavailable\n");
826         exitcode = 1;                  /* this is an error condition */
827     }
828     cleanup_exit(exitcode);
829     return 0;                          /* placate compiler warning */
830 }