]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - windows/winutils.c
Remove spurious #include.
[PuTTY.git] / windows / winutils.c
1 /*
2  * winutils.c: miscellaneous Windows utilities for GUI apps
3  */
4
5 #include <stdio.h>
6 #include <stdlib.h>
7 #include <ctype.h>
8
9 #include "putty.h"
10 #include "misc.h"
11
12 #ifdef TESTMODE
13 /* Definitions to allow this module to be compiled standalone for testing
14  * split_into_argv(). */
15 #define smalloc malloc
16 #define srealloc realloc
17 #define sfree free
18 #endif
19
20 /*
21  * GetOpenFileName/GetSaveFileName tend to muck around with the process'
22  * working directory on at least some versions of Windows.
23  * Here's a wrapper that gives more control over this, and hides a little
24  * bit of other grottiness.
25  */
26
27 struct filereq_tag {
28     TCHAR cwd[MAX_PATH];
29 };
30
31 /*
32  * `of' is expected to be initialised with most interesting fields, but
33  * this function does some administrivia. (assume `of' was memset to 0)
34  * save==1 -> GetSaveFileName; save==0 -> GetOpenFileName
35  * `state' is optional.
36  */
37 BOOL request_file(filereq *state, OPENFILENAME *of, int preserve, int save)
38 {
39     TCHAR cwd[MAX_PATH]; /* process CWD */
40     BOOL ret;
41
42     /* Get process CWD */
43     if (preserve) {
44         DWORD r = GetCurrentDirectory(lenof(cwd), cwd);
45         if (r == 0 || r >= lenof(cwd))
46             /* Didn't work, oh well. Stop trying to be clever. */
47             preserve = 0;
48     }
49
50     /* Open the file requester, maybe setting lpstrInitialDir */
51     {
52 #ifdef OPENFILENAME_SIZE_VERSION_400
53         of->lStructSize = OPENFILENAME_SIZE_VERSION_400;
54 #else
55         of->lStructSize = sizeof(*of);
56 #endif
57         of->lpstrInitialDir = (state && state->cwd[0]) ? state->cwd : NULL;
58         /* Actually put up the requester. */
59         ret = save ? GetSaveFileName(of) : GetOpenFileName(of);
60     }
61
62     /* Get CWD left by requester */
63     if (state) {
64         DWORD r = GetCurrentDirectory(lenof(state->cwd), state->cwd);
65         if (r == 0 || r >= lenof(state->cwd))
66             /* Didn't work, oh well. */
67             state->cwd[0] = '\0';
68     }
69     
70     /* Restore process CWD */
71     if (preserve)
72         /* If it fails, there's not much we can do. */
73         (void) SetCurrentDirectory(cwd);
74
75     return ret;
76 }
77
78 filereq *filereq_new(void)
79 {
80     filereq *ret = snew(filereq);
81     ret->cwd[0] = '\0';
82     return ret;
83 }
84
85 void filereq_free(filereq *state)
86 {
87     sfree(state);
88 }
89
90 /*
91  * Message box with optional context help.
92  */
93
94 /* Callback function to launch context help. */
95 static VOID CALLBACK message_box_help_callback(LPHELPINFO lpHelpInfo)
96 {
97     if (help_path) {
98         char *context = NULL;
99 #define CHECK_CTX(name) \
100         do { \
101             if (lpHelpInfo->dwContextId == WINHELP_CTXID_ ## name) \
102                 context = WINHELP_CTX_ ## name; \
103         } while (0)
104         CHECK_CTX(errors_hostkey_absent);
105         CHECK_CTX(errors_hostkey_changed);
106         CHECK_CTX(errors_cantloadkey);
107         CHECK_CTX(option_cleanup);
108         CHECK_CTX(pgp_fingerprints);
109 #undef CHECK_CTX
110         if (context) {
111             /* We avoid using malloc, in case we're in a situation where
112              * it would be awkward to do so. */
113             char cmd[WINHELP_CTX_MAXLEN+10];
114             sprintf(cmd, "JI(`',`%.*s')", WINHELP_CTX_MAXLEN, context);
115             WinHelp(hwnd, help_path, HELP_COMMAND, (DWORD)cmd);
116             requested_help = TRUE;
117         }
118     }
119 }
120
121 int message_box(LPCTSTR text, LPCTSTR caption, DWORD style, DWORD helpctxid)
122 {
123     MSGBOXPARAMS mbox;
124     
125     /*
126      * We use MessageBoxIndirect() because it allows us to specify a
127      * callback function for the Help button.
128      */
129     mbox.cbSize = sizeof(mbox);
130     /* Assumes the globals `hinst' and `hwnd' have sensible values. */
131     mbox.hInstance = hinst;
132     mbox.hwndOwner = hwnd;
133     mbox.lpfnMsgBoxCallback = &message_box_help_callback;
134     mbox.dwLanguageId = LANG_NEUTRAL;
135     mbox.lpszText = text;
136     mbox.lpszCaption = caption;
137     mbox.dwContextHelpId = helpctxid;
138     mbox.dwStyle = style;
139     if (helpctxid != 0 && help_path) mbox.dwStyle |= MB_HELP;
140     return MessageBoxIndirect(&mbox);
141 }
142
143 /*
144  * Display the fingerprints of the PGP Master Keys to the user.
145  */
146 void pgp_fingerprints(void)
147 {
148     message_box("These are the fingerprints of the PuTTY PGP Master Keys. They can\n"
149                 "be used to establish a trust path from this executable to another\n"
150                 "one. See the manual for more information.\n"
151                 "(Note: these fingerprints have nothing to do with SSH!)\n"
152                 "\n"
153                 "PuTTY Master Key (RSA), 1024-bit:\n"
154                 "  " PGP_RSA_MASTER_KEY_FP "\n"
155                 "PuTTY Master Key (DSA), 1024-bit:\n"
156                 "  " PGP_DSA_MASTER_KEY_FP,
157                 "PGP fingerprints", MB_ICONINFORMATION | MB_OK,
158                 HELPCTXID(pgp_fingerprints));
159 }
160
161 /*
162  * Split a complete command line into argc/argv, attempting to do
163  * it exactly the same way Windows itself would do it (so that
164  * console utilities, which receive argc and argv from Windows,
165  * will have their command lines processed in the same way as GUI
166  * utilities which get a whole command line and must break it
167  * themselves).
168  * 
169  * Does not modify the input command line.
170  * 
171  * The final parameter (argstart) is used to return a second array
172  * of char * pointers, the same length as argv, each one pointing
173  * at the start of the corresponding element of argv in the
174  * original command line. So if you get half way through processing
175  * your command line in argc/argv form and then decide you want to
176  * treat the rest as a raw string, you can. If you don't want to,
177  * `argstart' can be safely left NULL.
178  */
179 void split_into_argv(char *cmdline, int *argc, char ***argv,
180                      char ***argstart)
181 {
182     char *p;
183     char *outputline, *q;
184     char **outputargv, **outputargstart;
185     int outputargc;
186
187     /*
188      * At first glance the rules appeared to be:
189      *
190      *  - Single quotes are not special characters.
191      *
192      *  - Double quotes are removed, but within them spaces cease
193      *    to be special.
194      *
195      *  - Backslashes are _only_ special when a sequence of them
196      *    appear just before a double quote. In this situation,
197      *    they are treated like C backslashes: so \" just gives a
198      *    literal quote, \\" gives a literal backslash and then
199      *    opens or closes a double-quoted segment, \\\" gives a
200      *    literal backslash and then a literal quote, \\\\" gives
201      *    two literal backslashes and then opens/closes a
202      *    double-quoted segment, and so forth. Note that this
203      *    behaviour is identical inside and outside double quotes.
204      *
205      *  - Two successive double quotes become one literal double
206      *    quote, but only _inside_ a double-quoted segment.
207      *    Outside, they just form an empty double-quoted segment
208      *    (which may cause an empty argument word).
209      *
210      *  - That only leaves the interesting question of what happens
211      *    when one or more backslashes precedes two or more double
212      *    quotes, starting inside a double-quoted string. And the
213      *    answer to that appears somewhat bizarre. Here I tabulate
214      *    number of backslashes (across the top) against number of
215      *    quotes (down the left), and indicate how many backslashes
216      *    are output, how many quotes are output, and whether a
217      *    quoted segment is open at the end of the sequence:
218      * 
219      *                      backslashes
220      * 
221      *               0         1      2      3      4
222      * 
223      *         0   0,0,y  |  1,0,y  2,0,y  3,0,y  4,0,y
224      *            --------+-----------------------------
225      *         1   0,0,n  |  0,1,y  1,0,n  1,1,y  2,0,n
226      *    q    2   0,1,n  |  0,1,n  1,1,n  1,1,n  2,1,n
227      *    u    3   0,1,y  |  0,2,n  1,1,y  1,2,n  2,1,y
228      *    o    4   0,1,n  |  0,2,y  1,1,n  1,2,y  2,1,n
229      *    t    5   0,2,n  |  0,2,n  1,2,n  1,2,n  2,2,n
230      *    e    6   0,2,y  |  0,3,n  1,2,y  1,3,n  2,2,y
231      *    s    7   0,2,n  |  0,3,y  1,2,n  1,3,y  2,2,n
232      *         8   0,3,n  |  0,3,n  1,3,n  1,3,n  2,3,n
233      *         9   0,3,y  |  0,4,n  1,3,y  1,4,n  2,3,y
234      *        10   0,3,n  |  0,4,y  1,3,n  1,4,y  2,3,n
235      *        11   0,4,n  |  0,4,n  1,4,n  1,4,n  2,4,n
236      * 
237      * 
238      *      [Test fragment was of the form "a\\\"""b c" d.]
239      * 
240      * There is very weird mod-3 behaviour going on here in the
241      * number of quotes, and it even applies when there aren't any
242      * backslashes! How ghastly.
243      * 
244      * With a bit of thought, this extremely odd diagram suddenly
245      * coalesced itself into a coherent, if still ghastly, model of
246      * how things work:
247      * 
248      *  - As before, backslashes are only special when one or more
249      *    of them appear contiguously before at least one double
250      *    quote. In this situation the backslashes do exactly what
251      *    you'd expect: each one quotes the next thing in front of
252      *    it, so you end up with n/2 literal backslashes (if n is
253      *    even) or (n-1)/2 literal backslashes and a literal quote
254      *    (if n is odd). In the latter case the double quote
255      *    character right after the backslashes is used up.
256      * 
257      *  - After that, any remaining double quotes are processed. A
258      *    string of contiguous unescaped double quotes has a mod-3
259      *    behaviour:
260      * 
261      *     * inside a quoted segment, a quote ends the segment.
262      *     * _immediately_ after ending a quoted segment, a quote
263      *       simply produces a literal quote.
264      *     * otherwise, outside a quoted segment, a quote begins a
265      *       quoted segment.
266      * 
267      *    So, for example, if we started inside a quoted segment
268      *    then two contiguous quotes would close the segment and
269      *    produce a literal quote; three would close the segment,
270      *    produce a literal quote, and open a new segment. If we
271      *    started outside a quoted segment, then two contiguous
272      *    quotes would open and then close a segment, producing no
273      *    output (but potentially creating a zero-length argument);
274      *    but three quotes would open and close a segment and then
275      *    produce a literal quote.
276      */
277
278     /*
279      * First deal with the simplest of all special cases: if there
280      * aren't any arguments, return 0,NULL,NULL.
281      */
282     while (*cmdline && isspace(*cmdline)) cmdline++;
283     if (!*cmdline) {
284         if (argc) *argc = 0;
285         if (argv) *argv = NULL;
286         if (argstart) *argstart = NULL;
287         return;
288     }
289
290     /*
291      * This will guaranteeably be big enough; we can realloc it
292      * down later.
293      */
294     outputline = snewn(1+strlen(cmdline), char);
295     outputargv = snewn(strlen(cmdline)+1 / 2, char *);
296     outputargstart = snewn(strlen(cmdline)+1 / 2, char *);
297
298     p = cmdline; q = outputline; outputargc = 0;
299
300     while (*p) {
301         int quote;
302
303         /* Skip whitespace searching for start of argument. */
304         while (*p && isspace(*p)) p++;
305         if (!*p) break;
306
307         /* We have an argument; start it. */
308         outputargv[outputargc] = q;
309         outputargstart[outputargc] = p;
310         outputargc++;
311         quote = 0;
312
313         /* Copy data into the argument until it's finished. */
314         while (*p) {
315             if (!quote && isspace(*p))
316                 break;                 /* argument is finished */
317
318             if (*p == '"' || *p == '\\') {
319                 /*
320                  * We have a sequence of zero or more backslashes
321                  * followed by a sequence of zero or more quotes.
322                  * Count up how many of each, and then deal with
323                  * them as appropriate.
324                  */
325                 int i, slashes = 0, quotes = 0;
326                 while (*p == '\\') slashes++, p++;
327                 while (*p == '"') quotes++, p++;
328
329                 if (!quotes) {
330                     /*
331                      * Special case: if there are no quotes,
332                      * slashes are not special at all, so just copy
333                      * n slashes to the output string.
334                      */
335                     while (slashes--) *q++ = '\\';
336                 } else {
337                     /* Slashes annihilate in pairs. */
338                     while (slashes >= 2) slashes -= 2, *q++ = '\\';
339
340                     /* One remaining slash takes out the first quote. */
341                     if (slashes) quotes--, *q++ = '"';
342
343                     if (quotes > 0) {
344                         /* Outside a quote segment, a quote starts one. */
345                         if (!quote) quotes--, quote = 1;
346
347                         /* Now we produce (n+1)/3 literal quotes... */
348                         for (i = 3; i <= quotes+1; i += 3) *q++ = '"';
349
350                         /* ... and end in a quote segment iff 3 divides n. */
351                         quote = (quotes % 3 == 0);
352                     }
353                 }
354             } else {
355                 *q++ = *p++;
356             }
357         }
358
359         /* At the end of an argument, just append a trailing NUL. */
360         *q++ = '\0';
361     }
362
363     outputargv = sresize(outputargv, outputargc, char *);
364     outputargstart = sresize(outputargstart, outputargc, char *);
365
366     if (argc) *argc = outputargc;
367     if (argv) *argv = outputargv; else sfree(outputargv);
368     if (argstart) *argstart = outputargstart; else sfree(outputargstart);
369 }
370
371 #ifdef TESTMODE
372
373 const struct argv_test {
374     const char *cmdline;
375     const char *argv[10];
376 } argv_tests[] = {
377     /*
378      * We generate this set of tests by invoking ourself with
379      * `-generate'.
380      */
381     {"ab c\" d", {"ab", "c d", NULL}},
382     {"a\"b c\" d", {"ab c", "d", NULL}},
383     {"a\"\"b c\" d", {"ab", "c d", NULL}},
384     {"a\"\"\"b c\" d", {"a\"b", "c d", NULL}},
385     {"a\"\"\"\"b c\" d", {"a\"b c", "d", NULL}},
386     {"a\"\"\"\"\"b c\" d", {"a\"b", "c d", NULL}},
387     {"a\"\"\"\"\"\"b c\" d", {"a\"\"b", "c d", NULL}},
388     {"a\"\"\"\"\"\"\"b c\" d", {"a\"\"b c", "d", NULL}},
389     {"a\"\"\"\"\"\"\"\"b c\" d", {"a\"\"b", "c d", NULL}},
390     {"a\\b c\" d", {"a\\b", "c d", NULL}},
391     {"a\\\"b c\" d", {"a\"b", "c d", NULL}},
392     {"a\\\"\"b c\" d", {"a\"b c", "d", NULL}},
393     {"a\\\"\"\"b c\" d", {"a\"b", "c d", NULL}},
394     {"a\\\"\"\"\"b c\" d", {"a\"\"b", "c d", NULL}},
395     {"a\\\"\"\"\"\"b c\" d", {"a\"\"b c", "d", NULL}},
396     {"a\\\"\"\"\"\"\"b c\" d", {"a\"\"b", "c d", NULL}},
397     {"a\\\"\"\"\"\"\"\"b c\" d", {"a\"\"\"b", "c d", NULL}},
398     {"a\\\"\"\"\"\"\"\"\"b c\" d", {"a\"\"\"b c", "d", NULL}},
399     {"a\\\\b c\" d", {"a\\\\b", "c d", NULL}},
400     {"a\\\\\"b c\" d", {"a\\b c", "d", NULL}},
401     {"a\\\\\"\"b c\" d", {"a\\b", "c d", NULL}},
402     {"a\\\\\"\"\"b c\" d", {"a\\\"b", "c d", NULL}},
403     {"a\\\\\"\"\"\"b c\" d", {"a\\\"b c", "d", NULL}},
404     {"a\\\\\"\"\"\"\"b c\" d", {"a\\\"b", "c d", NULL}},
405     {"a\\\\\"\"\"\"\"\"b c\" d", {"a\\\"\"b", "c d", NULL}},
406     {"a\\\\\"\"\"\"\"\"\"b c\" d", {"a\\\"\"b c", "d", NULL}},
407     {"a\\\\\"\"\"\"\"\"\"\"b c\" d", {"a\\\"\"b", "c d", NULL}},
408     {"a\\\\\\b c\" d", {"a\\\\\\b", "c d", NULL}},
409     {"a\\\\\\\"b c\" d", {"a\\\"b", "c d", NULL}},
410     {"a\\\\\\\"\"b c\" d", {"a\\\"b c", "d", NULL}},
411     {"a\\\\\\\"\"\"b c\" d", {"a\\\"b", "c d", NULL}},
412     {"a\\\\\\\"\"\"\"b c\" d", {"a\\\"\"b", "c d", NULL}},
413     {"a\\\\\\\"\"\"\"\"b c\" d", {"a\\\"\"b c", "d", NULL}},
414     {"a\\\\\\\"\"\"\"\"\"b c\" d", {"a\\\"\"b", "c d", NULL}},
415     {"a\\\\\\\"\"\"\"\"\"\"b c\" d", {"a\\\"\"\"b", "c d", NULL}},
416     {"a\\\\\\\"\"\"\"\"\"\"\"b c\" d", {"a\\\"\"\"b c", "d", NULL}},
417     {"a\\\\\\\\b c\" d", {"a\\\\\\\\b", "c d", NULL}},
418     {"a\\\\\\\\\"b c\" d", {"a\\\\b c", "d", NULL}},
419     {"a\\\\\\\\\"\"b c\" d", {"a\\\\b", "c d", NULL}},
420     {"a\\\\\\\\\"\"\"b c\" d", {"a\\\\\"b", "c d", NULL}},
421     {"a\\\\\\\\\"\"\"\"b c\" d", {"a\\\\\"b c", "d", NULL}},
422     {"a\\\\\\\\\"\"\"\"\"b c\" d", {"a\\\\\"b", "c d", NULL}},
423     {"a\\\\\\\\\"\"\"\"\"\"b c\" d", {"a\\\\\"\"b", "c d", NULL}},
424     {"a\\\\\\\\\"\"\"\"\"\"\"b c\" d", {"a\\\\\"\"b c", "d", NULL}},
425     {"a\\\\\\\\\"\"\"\"\"\"\"\"b c\" d", {"a\\\\\"\"b", "c d", NULL}},
426     {"\"ab c\" d", {"ab c", "d", NULL}},
427     {"\"a\"b c\" d", {"ab", "c d", NULL}},
428     {"\"a\"\"b c\" d", {"a\"b", "c d", NULL}},
429     {"\"a\"\"\"b c\" d", {"a\"b c", "d", NULL}},
430     {"\"a\"\"\"\"b c\" d", {"a\"b", "c d", NULL}},
431     {"\"a\"\"\"\"\"b c\" d", {"a\"\"b", "c d", NULL}},
432     {"\"a\"\"\"\"\"\"b c\" d", {"a\"\"b c", "d", NULL}},
433     {"\"a\"\"\"\"\"\"\"b c\" d", {"a\"\"b", "c d", NULL}},
434     {"\"a\"\"\"\"\"\"\"\"b c\" d", {"a\"\"\"b", "c d", NULL}},
435     {"\"a\\b c\" d", {"a\\b c", "d", NULL}},
436     {"\"a\\\"b c\" d", {"a\"b c", "d", NULL}},
437     {"\"a\\\"\"b c\" d", {"a\"b", "c d", NULL}},
438     {"\"a\\\"\"\"b c\" d", {"a\"\"b", "c d", NULL}},
439     {"\"a\\\"\"\"\"b c\" d", {"a\"\"b c", "d", NULL}},
440     {"\"a\\\"\"\"\"\"b c\" d", {"a\"\"b", "c d", NULL}},
441     {"\"a\\\"\"\"\"\"\"b c\" d", {"a\"\"\"b", "c d", NULL}},
442     {"\"a\\\"\"\"\"\"\"\"b c\" d", {"a\"\"\"b c", "d", NULL}},
443     {"\"a\\\"\"\"\"\"\"\"\"b c\" d", {"a\"\"\"b", "c d", NULL}},
444     {"\"a\\\\b c\" d", {"a\\\\b c", "d", NULL}},
445     {"\"a\\\\\"b c\" d", {"a\\b", "c d", NULL}},
446     {"\"a\\\\\"\"b c\" d", {"a\\\"b", "c d", NULL}},
447     {"\"a\\\\\"\"\"b c\" d", {"a\\\"b c", "d", NULL}},
448     {"\"a\\\\\"\"\"\"b c\" d", {"a\\\"b", "c d", NULL}},
449     {"\"a\\\\\"\"\"\"\"b c\" d", {"a\\\"\"b", "c d", NULL}},
450     {"\"a\\\\\"\"\"\"\"\"b c\" d", {"a\\\"\"b c", "d", NULL}},
451     {"\"a\\\\\"\"\"\"\"\"\"b c\" d", {"a\\\"\"b", "c d", NULL}},
452     {"\"a\\\\\"\"\"\"\"\"\"\"b c\" d", {"a\\\"\"\"b", "c d", NULL}},
453     {"\"a\\\\\\b c\" d", {"a\\\\\\b c", "d", NULL}},
454     {"\"a\\\\\\\"b c\" d", {"a\\\"b c", "d", NULL}},
455     {"\"a\\\\\\\"\"b c\" d", {"a\\\"b", "c d", NULL}},
456     {"\"a\\\\\\\"\"\"b c\" d", {"a\\\"\"b", "c d", NULL}},
457     {"\"a\\\\\\\"\"\"\"b c\" d", {"a\\\"\"b c", "d", NULL}},
458     {"\"a\\\\\\\"\"\"\"\"b c\" d", {"a\\\"\"b", "c d", NULL}},
459     {"\"a\\\\\\\"\"\"\"\"\"b c\" d", {"a\\\"\"\"b", "c d", NULL}},
460     {"\"a\\\\\\\"\"\"\"\"\"\"b c\" d", {"a\\\"\"\"b c", "d", NULL}},
461     {"\"a\\\\\\\"\"\"\"\"\"\"\"b c\" d", {"a\\\"\"\"b", "c d", NULL}},
462     {"\"a\\\\\\\\b c\" d", {"a\\\\\\\\b c", "d", NULL}},
463     {"\"a\\\\\\\\\"b c\" d", {"a\\\\b", "c d", NULL}},
464     {"\"a\\\\\\\\\"\"b c\" d", {"a\\\\\"b", "c d", NULL}},
465     {"\"a\\\\\\\\\"\"\"b c\" d", {"a\\\\\"b c", "d", NULL}},
466     {"\"a\\\\\\\\\"\"\"\"b c\" d", {"a\\\\\"b", "c d", NULL}},
467     {"\"a\\\\\\\\\"\"\"\"\"b c\" d", {"a\\\\\"\"b", "c d", NULL}},
468     {"\"a\\\\\\\\\"\"\"\"\"\"b c\" d", {"a\\\\\"\"b c", "d", NULL}},
469     {"\"a\\\\\\\\\"\"\"\"\"\"\"b c\" d", {"a\\\\\"\"b", "c d", NULL}},
470     {"\"a\\\\\\\\\"\"\"\"\"\"\"\"b c\" d", {"a\\\\\"\"\"b", "c d", NULL}},
471 };
472
473 int main(int argc, char **argv)
474 {
475     int i, j;
476
477     if (argc > 1) {
478         /*
479          * Generation of tests.
480          * 
481          * Given `-splat <args>', we print out a C-style
482          * representation of each argument (in the form "a", "b",
483          * NULL), backslash-escaping each backslash and double
484          * quote.
485          * 
486          * Given `-split <string>', we first doctor `string' by
487          * turning forward slashes into backslashes, single quotes
488          * into double quotes and underscores into spaces; and then
489          * we feed the resulting string to ourself with `-splat'.
490          * 
491          * Given `-generate', we concoct a variety of fun test
492          * cases, encode them in quote-safe form (mapping \, " and
493          * space to /, ' and _ respectively) and feed each one to
494          * `-split'.
495          */
496         if (!strcmp(argv[1], "-splat")) {
497             int i;
498             char *p;
499             for (i = 2; i < argc; i++) {
500                 putchar('"');
501                 for (p = argv[i]; *p; p++) {
502                     if (*p == '\\' || *p == '"')
503                         putchar('\\');
504                     putchar(*p);
505                 }
506                 printf("\", ");
507             }
508             printf("NULL");
509             return 0;
510         }
511
512         if (!strcmp(argv[1], "-split") && argc > 2) {
513             char *str = malloc(20 + strlen(argv[0]) + strlen(argv[2]));
514             char *p, *q;
515
516             q = str + sprintf(str, "%s -splat ", argv[0]);
517             printf("    {\"");
518             for (p = argv[2]; *p; p++, q++) {
519                 switch (*p) {
520                   case '/':  printf("\\\\"); *q = '\\'; break;
521                   case '\'': printf("\\\""); *q = '"';  break;
522                   case '_':  printf(" ");    *q = ' ';  break;
523                   default:   putchar(*p);    *q = *p;   break;
524                 }
525             }
526             *p = '\0';
527             printf("\", {");
528             fflush(stdout);
529
530             system(str);
531
532             printf("}},\n");
533
534             return 0;
535         }
536
537         if (!strcmp(argv[1], "-generate")) {
538             char *teststr, *p;
539             int i, initialquote, backslashes, quotes;
540
541             teststr = malloc(200 + strlen(argv[0]));
542
543             for (initialquote = 0; initialquote <= 1; initialquote++) {
544                 for (backslashes = 0; backslashes < 5; backslashes++) {
545                     for (quotes = 0; quotes < 9; quotes++) {
546                         p = teststr + sprintf(teststr, "%s -split ", argv[0]);
547                         if (initialquote) *p++ = '\'';
548                         *p++ = 'a';
549                         for (i = 0; i < backslashes; i++) *p++ = '/';
550                         for (i = 0; i < quotes; i++) *p++ = '\'';
551                         *p++ = 'b';
552                         *p++ = '_';
553                         *p++ = 'c';
554                         *p++ = '\'';
555                         *p++ = '_';
556                         *p++ = 'd';
557                         *p = '\0';
558
559                         system(teststr);
560                     }
561                 }
562             }
563             return 0;
564         }
565
566         fprintf(stderr, "unrecognised option: \"%s\"\n", argv[1]);
567         return 1;
568     }
569
570     /*
571      * If we get here, we were invoked with no arguments, so just
572      * run the tests.
573      */
574
575     for (i = 0; i < lenof(argv_tests); i++) {
576         int ac;
577         char **av;
578
579         split_into_argv(argv_tests[i].cmdline, &ac, &av);
580
581         for (j = 0; j < ac && argv_tests[i].argv[j]; j++) {
582             if (strcmp(av[j], argv_tests[i].argv[j])) {
583                 printf("failed test %d (|%s|) arg %d: |%s| should be |%s|\n",
584                        i, argv_tests[i].cmdline,
585                        j, av[j], argv_tests[i].argv[j]);
586             }
587 #ifdef VERBOSE
588             else {
589                 printf("test %d (|%s|) arg %d: |%s| == |%s|\n",
590                        i, argv_tests[i].cmdline,
591                        j, av[j], argv_tests[i].argv[j]);
592             }
593 #endif
594         }
595         if (j < ac)
596             printf("failed test %d (|%s|): %d args returned, should be %d\n",
597                    i, argv_tests[i].cmdline, ac, j);
598         if (argv_tests[i].argv[j])
599             printf("failed test %d (|%s|): %d args returned, should be more\n",
600                    i, argv_tests[i].cmdline, ac);
601     }
602
603     return 0;
604 }
605
606 #endif