2e0183d37493817ae8e8bdb350a6358b02114361
[u/mdw/putty] / 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 char *context = NULL;
98 #define CHECK_CTX(name) \
99 do { \
100 if (lpHelpInfo->dwContextId == WINHELP_CTXID_ ## name) \
101 context = WINHELP_CTX_ ## name; \
102 } while (0)
103 CHECK_CTX(errors_hostkey_absent);
104 CHECK_CTX(errors_hostkey_changed);
105 CHECK_CTX(errors_cantloadkey);
106 CHECK_CTX(option_cleanup);
107 CHECK_CTX(pgp_fingerprints);
108 #undef CHECK_CTX
109 if (context)
110 launch_help(hwnd, context);
111 }
112
113 int message_box(LPCTSTR text, LPCTSTR caption, DWORD style, DWORD helpctxid)
114 {
115 MSGBOXPARAMS mbox;
116
117 /*
118 * We use MessageBoxIndirect() because it allows us to specify a
119 * callback function for the Help button.
120 */
121 mbox.cbSize = sizeof(mbox);
122 /* Assumes the globals `hinst' and `hwnd' have sensible values. */
123 mbox.hInstance = hinst;
124 mbox.hwndOwner = hwnd;
125 mbox.lpfnMsgBoxCallback = &message_box_help_callback;
126 mbox.dwLanguageId = LANG_NEUTRAL;
127 mbox.lpszText = text;
128 mbox.lpszCaption = caption;
129 mbox.dwContextHelpId = helpctxid;
130 mbox.dwStyle = style;
131 if (helpctxid != 0 && has_help()) mbox.dwStyle |= MB_HELP;
132 return MessageBoxIndirect(&mbox);
133 }
134
135 /*
136 * Display the fingerprints of the PGP Master Keys to the user.
137 */
138 void pgp_fingerprints(void)
139 {
140 message_box("These are the fingerprints of the PuTTY PGP Master Keys. They can\n"
141 "be used to establish a trust path from this executable to another\n"
142 "one. See the manual for more information.\n"
143 "(Note: these fingerprints have nothing to do with SSH!)\n"
144 "\n"
145 "PuTTY Master Key (RSA), 1024-bit:\n"
146 " " PGP_RSA_MASTER_KEY_FP "\n"
147 "PuTTY Master Key (DSA), 1024-bit:\n"
148 " " PGP_DSA_MASTER_KEY_FP,
149 "PGP fingerprints", MB_ICONINFORMATION | MB_OK,
150 HELPCTXID(pgp_fingerprints));
151 }
152
153 /*
154 * Handy wrapper around GetDlgItemText which doesn't make you invent
155 * an arbitrary length limit on the output string. Returned string is
156 * dynamically allocated; caller must free.
157 */
158 char *GetDlgItemText_alloc(HWND hwnd, int id)
159 {
160 char *ret = NULL;
161 int size = 0;
162
163 do {
164 size = size * 4 / 3 + 512;
165 ret = sresize(ret, size, char);
166 GetDlgItemText(hwnd, id, ret, size);
167 } while (!memchr(ret, '\0', size-1));
168
169 return ret;
170 }
171
172 /*
173 * Split a complete command line into argc/argv, attempting to do
174 * it exactly the same way Windows itself would do it (so that
175 * console utilities, which receive argc and argv from Windows,
176 * will have their command lines processed in the same way as GUI
177 * utilities which get a whole command line and must break it
178 * themselves).
179 *
180 * Does not modify the input command line.
181 *
182 * The final parameter (argstart) is used to return a second array
183 * of char * pointers, the same length as argv, each one pointing
184 * at the start of the corresponding element of argv in the
185 * original command line. So if you get half way through processing
186 * your command line in argc/argv form and then decide you want to
187 * treat the rest as a raw string, you can. If you don't want to,
188 * `argstart' can be safely left NULL.
189 */
190 void split_into_argv(char *cmdline, int *argc, char ***argv,
191 char ***argstart)
192 {
193 char *p;
194 char *outputline, *q;
195 char **outputargv, **outputargstart;
196 int outputargc;
197
198 /*
199 * At first glance the rules appeared to be:
200 *
201 * - Single quotes are not special characters.
202 *
203 * - Double quotes are removed, but within them spaces cease
204 * to be special.
205 *
206 * - Backslashes are _only_ special when a sequence of them
207 * appear just before a double quote. In this situation,
208 * they are treated like C backslashes: so \" just gives a
209 * literal quote, \\" gives a literal backslash and then
210 * opens or closes a double-quoted segment, \\\" gives a
211 * literal backslash and then a literal quote, \\\\" gives
212 * two literal backslashes and then opens/closes a
213 * double-quoted segment, and so forth. Note that this
214 * behaviour is identical inside and outside double quotes.
215 *
216 * - Two successive double quotes become one literal double
217 * quote, but only _inside_ a double-quoted segment.
218 * Outside, they just form an empty double-quoted segment
219 * (which may cause an empty argument word).
220 *
221 * - That only leaves the interesting question of what happens
222 * when one or more backslashes precedes two or more double
223 * quotes, starting inside a double-quoted string. And the
224 * answer to that appears somewhat bizarre. Here I tabulate
225 * number of backslashes (across the top) against number of
226 * quotes (down the left), and indicate how many backslashes
227 * are output, how many quotes are output, and whether a
228 * quoted segment is open at the end of the sequence:
229 *
230 * backslashes
231 *
232 * 0 1 2 3 4
233 *
234 * 0 0,0,y | 1,0,y 2,0,y 3,0,y 4,0,y
235 * --------+-----------------------------
236 * 1 0,0,n | 0,1,y 1,0,n 1,1,y 2,0,n
237 * q 2 0,1,n | 0,1,n 1,1,n 1,1,n 2,1,n
238 * u 3 0,1,y | 0,2,n 1,1,y 1,2,n 2,1,y
239 * o 4 0,1,n | 0,2,y 1,1,n 1,2,y 2,1,n
240 * t 5 0,2,n | 0,2,n 1,2,n 1,2,n 2,2,n
241 * e 6 0,2,y | 0,3,n 1,2,y 1,3,n 2,2,y
242 * s 7 0,2,n | 0,3,y 1,2,n 1,3,y 2,2,n
243 * 8 0,3,n | 0,3,n 1,3,n 1,3,n 2,3,n
244 * 9 0,3,y | 0,4,n 1,3,y 1,4,n 2,3,y
245 * 10 0,3,n | 0,4,y 1,3,n 1,4,y 2,3,n
246 * 11 0,4,n | 0,4,n 1,4,n 1,4,n 2,4,n
247 *
248 *
249 * [Test fragment was of the form "a\\\"""b c" d.]
250 *
251 * There is very weird mod-3 behaviour going on here in the
252 * number of quotes, and it even applies when there aren't any
253 * backslashes! How ghastly.
254 *
255 * With a bit of thought, this extremely odd diagram suddenly
256 * coalesced itself into a coherent, if still ghastly, model of
257 * how things work:
258 *
259 * - As before, backslashes are only special when one or more
260 * of them appear contiguously before at least one double
261 * quote. In this situation the backslashes do exactly what
262 * you'd expect: each one quotes the next thing in front of
263 * it, so you end up with n/2 literal backslashes (if n is
264 * even) or (n-1)/2 literal backslashes and a literal quote
265 * (if n is odd). In the latter case the double quote
266 * character right after the backslashes is used up.
267 *
268 * - After that, any remaining double quotes are processed. A
269 * string of contiguous unescaped double quotes has a mod-3
270 * behaviour:
271 *
272 * * inside a quoted segment, a quote ends the segment.
273 * * _immediately_ after ending a quoted segment, a quote
274 * simply produces a literal quote.
275 * * otherwise, outside a quoted segment, a quote begins a
276 * quoted segment.
277 *
278 * So, for example, if we started inside a quoted segment
279 * then two contiguous quotes would close the segment and
280 * produce a literal quote; three would close the segment,
281 * produce a literal quote, and open a new segment. If we
282 * started outside a quoted segment, then two contiguous
283 * quotes would open and then close a segment, producing no
284 * output (but potentially creating a zero-length argument);
285 * but three quotes would open and close a segment and then
286 * produce a literal quote.
287 */
288
289 /*
290 * First deal with the simplest of all special cases: if there
291 * aren't any arguments, return 0,NULL,NULL.
292 */
293 while (*cmdline && isspace(*cmdline)) cmdline++;
294 if (!*cmdline) {
295 if (argc) *argc = 0;
296 if (argv) *argv = NULL;
297 if (argstart) *argstart = NULL;
298 return;
299 }
300
301 /*
302 * This will guaranteeably be big enough; we can realloc it
303 * down later.
304 */
305 outputline = snewn(1+strlen(cmdline), char);
306 outputargv = snewn(strlen(cmdline)+1 / 2, char *);
307 outputargstart = snewn(strlen(cmdline)+1 / 2, char *);
308
309 p = cmdline; q = outputline; outputargc = 0;
310
311 while (*p) {
312 int quote;
313
314 /* Skip whitespace searching for start of argument. */
315 while (*p && isspace(*p)) p++;
316 if (!*p) break;
317
318 /* We have an argument; start it. */
319 outputargv[outputargc] = q;
320 outputargstart[outputargc] = p;
321 outputargc++;
322 quote = 0;
323
324 /* Copy data into the argument until it's finished. */
325 while (*p) {
326 if (!quote && isspace(*p))
327 break; /* argument is finished */
328
329 if (*p == '"' || *p == '\\') {
330 /*
331 * We have a sequence of zero or more backslashes
332 * followed by a sequence of zero or more quotes.
333 * Count up how many of each, and then deal with
334 * them as appropriate.
335 */
336 int i, slashes = 0, quotes = 0;
337 while (*p == '\\') slashes++, p++;
338 while (*p == '"') quotes++, p++;
339
340 if (!quotes) {
341 /*
342 * Special case: if there are no quotes,
343 * slashes are not special at all, so just copy
344 * n slashes to the output string.
345 */
346 while (slashes--) *q++ = '\\';
347 } else {
348 /* Slashes annihilate in pairs. */
349 while (slashes >= 2) slashes -= 2, *q++ = '\\';
350
351 /* One remaining slash takes out the first quote. */
352 if (slashes) quotes--, *q++ = '"';
353
354 if (quotes > 0) {
355 /* Outside a quote segment, a quote starts one. */
356 if (!quote) quotes--, quote = 1;
357
358 /* Now we produce (n+1)/3 literal quotes... */
359 for (i = 3; i <= quotes+1; i += 3) *q++ = '"';
360
361 /* ... and end in a quote segment iff 3 divides n. */
362 quote = (quotes % 3 == 0);
363 }
364 }
365 } else {
366 *q++ = *p++;
367 }
368 }
369
370 /* At the end of an argument, just append a trailing NUL. */
371 *q++ = '\0';
372 }
373
374 outputargv = sresize(outputargv, outputargc, char *);
375 outputargstart = sresize(outputargstart, outputargc, char *);
376
377 if (argc) *argc = outputargc;
378 if (argv) *argv = outputargv; else sfree(outputargv);
379 if (argstart) *argstart = outputargstart; else sfree(outputargstart);
380 }
381
382 #ifdef TESTMODE
383
384 const struct argv_test {
385 const char *cmdline;
386 const char *argv[10];
387 } argv_tests[] = {
388 /*
389 * We generate this set of tests by invoking ourself with
390 * `-generate'.
391 */
392 {"ab c\" d", {"ab", "c d", NULL}},
393 {"a\"b c\" d", {"ab c", "d", NULL}},
394 {"a\"\"b c\" d", {"ab", "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 {"a\\\\\\\"\"\"\"\"\"\"b c\" d", {"a\\\"\"\"b", "c d", NULL}},
427 {"a\\\\\\\"\"\"\"\"\"\"\"b c\" d", {"a\\\"\"\"b 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 {"\"ab c\" d", {"ab c", "d", NULL}},
438 {"\"a\"b c\" d", {"ab", "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 {"\"a\\\\\\\"\"\"\"\"\"\"b c\" d", {"a\\\"\"\"b c", "d", NULL}},
472 {"\"a\\\\\\\"\"\"\"\"\"\"\"b c\" d", {"a\\\"\"\"b", "c d", NULL}},
473 {"\"a\\\\\\\\b c\" d", {"a\\\\\\\\b c", "d", NULL}},
474 {"\"a\\\\\\\\\"b c\" d", {"a\\\\b", "c d", NULL}},
475 {"\"a\\\\\\\\\"\"b c\" d", {"a\\\\\"b", "c d", NULL}},
476 {"\"a\\\\\\\\\"\"\"b c\" d", {"a\\\\\"b c", "d", NULL}},
477 {"\"a\\\\\\\\\"\"\"\"b c\" d", {"a\\\\\"b", "c d", NULL}},
478 {"\"a\\\\\\\\\"\"\"\"\"b c\" d", {"a\\\\\"\"b", "c d", NULL}},
479 {"\"a\\\\\\\\\"\"\"\"\"\"b c\" d", {"a\\\\\"\"b c", "d", NULL}},
480 {"\"a\\\\\\\\\"\"\"\"\"\"\"b c\" d", {"a\\\\\"\"b", "c d", NULL}},
481 {"\"a\\\\\\\\\"\"\"\"\"\"\"\"b c\" d", {"a\\\\\"\"\"b", "c d", NULL}},
482 };
483
484 int main(int argc, char **argv)
485 {
486 int i, j;
487
488 if (argc > 1) {
489 /*
490 * Generation of tests.
491 *
492 * Given `-splat <args>', we print out a C-style
493 * representation of each argument (in the form "a", "b",
494 * NULL), backslash-escaping each backslash and double
495 * quote.
496 *
497 * Given `-split <string>', we first doctor `string' by
498 * turning forward slashes into backslashes, single quotes
499 * into double quotes and underscores into spaces; and then
500 * we feed the resulting string to ourself with `-splat'.
501 *
502 * Given `-generate', we concoct a variety of fun test
503 * cases, encode them in quote-safe form (mapping \, " and
504 * space to /, ' and _ respectively) and feed each one to
505 * `-split'.
506 */
507 if (!strcmp(argv[1], "-splat")) {
508 int i;
509 char *p;
510 for (i = 2; i < argc; i++) {
511 putchar('"');
512 for (p = argv[i]; *p; p++) {
513 if (*p == '\\' || *p == '"')
514 putchar('\\');
515 putchar(*p);
516 }
517 printf("\", ");
518 }
519 printf("NULL");
520 return 0;
521 }
522
523 if (!strcmp(argv[1], "-split") && argc > 2) {
524 char *str = malloc(20 + strlen(argv[0]) + strlen(argv[2]));
525 char *p, *q;
526
527 q = str + sprintf(str, "%s -splat ", argv[0]);
528 printf(" {\"");
529 for (p = argv[2]; *p; p++, q++) {
530 switch (*p) {
531 case '/': printf("\\\\"); *q = '\\'; break;
532 case '\'': printf("\\\""); *q = '"'; break;
533 case '_': printf(" "); *q = ' '; break;
534 default: putchar(*p); *q = *p; break;
535 }
536 }
537 *p = '\0';
538 printf("\", {");
539 fflush(stdout);
540
541 system(str);
542
543 printf("}},\n");
544
545 return 0;
546 }
547
548 if (!strcmp(argv[1], "-generate")) {
549 char *teststr, *p;
550 int i, initialquote, backslashes, quotes;
551
552 teststr = malloc(200 + strlen(argv[0]));
553
554 for (initialquote = 0; initialquote <= 1; initialquote++) {
555 for (backslashes = 0; backslashes < 5; backslashes++) {
556 for (quotes = 0; quotes < 9; quotes++) {
557 p = teststr + sprintf(teststr, "%s -split ", argv[0]);
558 if (initialquote) *p++ = '\'';
559 *p++ = 'a';
560 for (i = 0; i < backslashes; i++) *p++ = '/';
561 for (i = 0; i < quotes; i++) *p++ = '\'';
562 *p++ = 'b';
563 *p++ = '_';
564 *p++ = 'c';
565 *p++ = '\'';
566 *p++ = '_';
567 *p++ = 'd';
568 *p = '\0';
569
570 system(teststr);
571 }
572 }
573 }
574 return 0;
575 }
576
577 fprintf(stderr, "unrecognised option: \"%s\"\n", argv[1]);
578 return 1;
579 }
580
581 /*
582 * If we get here, we were invoked with no arguments, so just
583 * run the tests.
584 */
585
586 for (i = 0; i < lenof(argv_tests); i++) {
587 int ac;
588 char **av;
589
590 split_into_argv(argv_tests[i].cmdline, &ac, &av);
591
592 for (j = 0; j < ac && argv_tests[i].argv[j]; j++) {
593 if (strcmp(av[j], argv_tests[i].argv[j])) {
594 printf("failed test %d (|%s|) arg %d: |%s| should be |%s|\n",
595 i, argv_tests[i].cmdline,
596 j, av[j], argv_tests[i].argv[j]);
597 }
598 #ifdef VERBOSE
599 else {
600 printf("test %d (|%s|) arg %d: |%s| == |%s|\n",
601 i, argv_tests[i].cmdline,
602 j, av[j], argv_tests[i].argv[j]);
603 }
604 #endif
605 }
606 if (j < ac)
607 printf("failed test %d (|%s|): %d args returned, should be %d\n",
608 i, argv_tests[i].cmdline, ac, j);
609 if (argv_tests[i].argv[j])
610 printf("failed test %d (|%s|): %d args returned, should be more\n",
611 i, argv_tests[i].cmdline, ac);
612 }
613
614 return 0;
615 }
616
617 #endif