]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - contrib/libarchive/tar/test/main.c
MFC r307861:
[FreeBSD/stable/10.git] / contrib / libarchive / tar / test / main.c
1 /*
2  * Copyright (c) 2003-2009 Tim Kientzle
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
15  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17  * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
18  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  */
25
26 #include "test.h"
27 #include "test_utils.h"
28 #ifdef HAVE_SYS_IOCTL_H
29 #include <sys/ioctl.h>
30 #endif
31 #ifdef HAVE_SYS_TIME_H
32 #include <sys/time.h>
33 #endif
34 #include <errno.h>
35 #ifdef HAVE_ICONV_H
36 #include <iconv.h>
37 #endif
38 /*
39  * Some Linux distributions have both linux/ext2_fs.h and ext2fs/ext2_fs.h.
40  * As the include guards don't agree, the order of include is important.
41  */
42 #ifdef HAVE_LINUX_EXT2_FS_H
43 #include <linux/ext2_fs.h>      /* for Linux file flags */
44 #endif
45 #if defined(HAVE_EXT2FS_EXT2_FS_H) && !defined(__CYGWIN__)
46 #include <ext2fs/ext2_fs.h>     /* Linux file flags, broken on Cygwin */
47 #endif
48 #include <limits.h>
49 #include <locale.h>
50 #ifdef HAVE_SIGNAL_H
51 #include <signal.h>
52 #endif
53 #include <stdarg.h>
54 #include <time.h>
55
56 /*
57  * This same file is used pretty much verbatim for all test harnesses.
58  *
59  * The next few lines are the only differences.
60  * TODO: Move this into a separate configuration header, have all test
61  * suites share one copy of this file.
62  */
63 __FBSDID("$FreeBSD$");
64 #define KNOWNREF        "test_patterns_2.tar.uu"
65 #define ENVBASE "BSDTAR"  /* Prefix for environment variables. */
66 #define PROGRAM "bsdtar"  /* Name of program being tested. */
67 #define PROGRAM_ALIAS "tar" /* Generic alias for program */
68 #undef  LIBRARY           /* Not testing a library. */
69 #undef  EXTRA_DUMP        /* How to dump extra data */
70 #undef  EXTRA_ERRNO       /* How to dump errno */
71 /* How to generate extra version info. */
72 #define EXTRA_VERSION    (systemf("%s --version", testprog) ? "" : "")
73
74 /*
75  *
76  * Windows support routines
77  *
78  * Note: Configuration is a tricky issue.  Using HAVE_* feature macros
79  * in the test harness is dangerous because they cover up
80  * configuration errors.  The classic example of this is omitting a
81  * configure check.  If libarchive and libarchive_test both look for
82  * the same feature macro, such errors are hard to detect.  Platform
83  * macros (e.g., _WIN32 or __GNUC__) are a little better, but can
84  * easily lead to very messy code.  It's best to limit yourself
85  * to only the most generic programming techniques in the test harness
86  * and thus avoid conditionals altogether.  Where that's not possible,
87  * try to minimize conditionals by grouping platform-specific tests in
88  * one place (e.g., test_acl_freebsd) or by adding new assert()
89  * functions (e.g., assertMakeHardlink()) to cover up platform
90  * differences.  Platform-specific coding in libarchive_test is often
91  * a symptom that some capability is missing from libarchive itself.
92  */
93 #if defined(_WIN32) && !defined(__CYGWIN__)
94 #include <io.h>
95 #include <direct.h>
96 #include <windows.h>
97 #ifndef F_OK
98 #define F_OK (0)
99 #endif
100 #ifndef S_ISDIR
101 #define S_ISDIR(m)  ((m) & _S_IFDIR)
102 #endif
103 #ifndef S_ISREG
104 #define S_ISREG(m)  ((m) & _S_IFREG)
105 #endif
106 #if !defined(__BORLANDC__)
107 #define access _access
108 #undef chdir
109 #define chdir _chdir
110 #endif
111 #ifndef fileno
112 #define fileno _fileno
113 #endif
114 /*#define fstat _fstat64*/
115 #if !defined(__BORLANDC__)
116 #define getcwd _getcwd
117 #endif
118 #define lstat stat
119 /*#define lstat _stat64*/
120 /*#define stat _stat64*/
121 #define rmdir _rmdir
122 #if !defined(__BORLANDC__)
123 #define strdup _strdup
124 #define umask _umask
125 #endif
126 #define int64_t __int64
127 #endif
128
129 #if defined(HAVE__CrtSetReportMode)
130 # include <crtdbg.h>
131 #endif
132
133 mode_t umasked(mode_t expected_mode)
134 {
135         mode_t mode = umask(0);
136         umask(mode);
137         return expected_mode & ~mode;
138 }
139
140 /* Path to working directory for current test */
141 const char *testworkdir;
142 #ifdef PROGRAM
143 /* Pathname of exe to be tested. */
144 const char *testprogfile;
145 /* Name of exe to use in printf-formatted command strings. */
146 /* On Windows, this includes leading/trailing quotes. */
147 const char *testprog;
148 #endif
149
150 #if defined(_WIN32) && !defined(__CYGWIN__)
151 static void     *GetFunctionKernel32(const char *);
152 static int       my_CreateSymbolicLinkA(const char *, const char *, int);
153 static int       my_CreateHardLinkA(const char *, const char *);
154 static int       my_GetFileInformationByName(const char *,
155                      BY_HANDLE_FILE_INFORMATION *);
156
157 static void *
158 GetFunctionKernel32(const char *name)
159 {
160         static HINSTANCE lib;
161         static int set;
162         if (!set) {
163                 set = 1;
164                 lib = LoadLibrary("kernel32.dll");
165         }
166         if (lib == NULL) {
167                 fprintf(stderr, "Can't load kernel32.dll?!\n");
168                 exit(1);
169         }
170         return (void *)GetProcAddress(lib, name);
171 }
172
173 static int
174 my_CreateSymbolicLinkA(const char *linkname, const char *target, int flags)
175 {
176         static BOOLEAN (WINAPI *f)(LPCSTR, LPCSTR, DWORD);
177         static int set;
178         if (!set) {
179                 set = 1;
180                 f = GetFunctionKernel32("CreateSymbolicLinkA");
181         }
182         return f == NULL ? 0 : (*f)(linkname, target, flags);
183 }
184
185 static int
186 my_CreateHardLinkA(const char *linkname, const char *target)
187 {
188         static BOOLEAN (WINAPI *f)(LPCSTR, LPCSTR, LPSECURITY_ATTRIBUTES);
189         static int set;
190         if (!set) {
191                 set = 1;
192                 f = GetFunctionKernel32("CreateHardLinkA");
193         }
194         return f == NULL ? 0 : (*f)(linkname, target, NULL);
195 }
196
197 static int
198 my_GetFileInformationByName(const char *path, BY_HANDLE_FILE_INFORMATION *bhfi)
199 {
200         HANDLE h;
201         int r;
202
203         memset(bhfi, 0, sizeof(*bhfi));
204         h = CreateFile(path, FILE_READ_ATTRIBUTES, 0, NULL,
205                 OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
206         if (h == INVALID_HANDLE_VALUE)
207                 return (0);
208         r = GetFileInformationByHandle(h, bhfi);
209         CloseHandle(h);
210         return (r);
211 }
212 #endif
213
214 #if defined(HAVE__CrtSetReportMode) && !defined(__WATCOMC__)
215 static void
216 invalid_parameter_handler(const wchar_t * expression,
217     const wchar_t * function, const wchar_t * file,
218     unsigned int line, uintptr_t pReserved)
219 {
220         /* nop */
221 }
222 #endif
223
224 /*
225  *
226  * OPTIONS FLAGS
227  *
228  */
229
230 /* Enable core dump on failure. */
231 static int dump_on_failure = 0;
232 /* Default is to remove temp dirs and log data for successful tests. */
233 static int keep_temp_files = 0;
234 /* Default is to run the specified tests once and report errors. */
235 static int until_failure = 0;
236 /* Default is to just report pass/fail for each test. */
237 static int verbosity = 0;
238 #define VERBOSITY_SUMMARY_ONLY -1 /* -q */
239 #define VERBOSITY_PASSFAIL 0   /* Default */
240 #define VERBOSITY_LIGHT_REPORT 1 /* -v */
241 #define VERBOSITY_FULL 2 /* -vv */
242 /* A few places generate even more output for verbosity > VERBOSITY_FULL,
243  * mostly for debugging the test harness itself. */
244 /* Cumulative count of assertion failures. */
245 static int failures = 0;
246 /* Cumulative count of reported skips. */
247 static int skips = 0;
248 /* Cumulative count of assertions checked. */
249 static int assertions = 0;
250
251 /* Directory where uuencoded reference files can be found. */
252 static const char *refdir;
253
254 /*
255  * Report log information selectively to console and/or disk log.
256  */
257 static int log_console = 0;
258 static FILE *logfile;
259 static void
260 vlogprintf(const char *fmt, va_list ap)
261 {
262 #ifdef va_copy
263         va_list lfap;
264         va_copy(lfap, ap);
265 #endif
266         if (log_console)
267                 vfprintf(stdout, fmt, ap);
268         if (logfile != NULL)
269 #ifdef va_copy
270                 vfprintf(logfile, fmt, lfap);
271         va_end(lfap);
272 #else
273                 vfprintf(logfile, fmt, ap);
274 #endif
275 }
276
277 static void
278 logprintf(const char *fmt, ...)
279 {
280         va_list ap;
281         va_start(ap, fmt);
282         vlogprintf(fmt, ap);
283         va_end(ap);
284 }
285
286 /* Set up a message to display only if next assertion fails. */
287 static char msgbuff[4096];
288 static const char *msg, *nextmsg;
289 void
290 failure(const char *fmt, ...)
291 {
292         va_list ap;
293         if (fmt == NULL) {
294                 nextmsg = NULL;
295         } else {
296                 va_start(ap, fmt);
297                 vsprintf(msgbuff, fmt, ap);
298                 va_end(ap);
299                 nextmsg = msgbuff;
300         }
301 }
302
303 /*
304  * Copy arguments into file-local variables.
305  * This was added to permit vararg assert() functions without needing
306  * variadic wrapper macros.  Turns out that the vararg capability is almost
307  * never used, so almost all of the vararg assertions can be simplified
308  * by removing the vararg capability and reworking the wrapper macro to
309  * pass __FILE__, __LINE__ directly into the function instead of using
310  * this hook.  I suspect this machinery is used so rarely that we
311  * would be better off just removing it entirely.  That would simplify
312  * the code here noticeably.
313  */
314 static const char *skipping_filename;
315 static int skipping_line;
316 void skipping_setup(const char *filename, int line)
317 {
318         skipping_filename = filename;
319         skipping_line = line;
320 }
321
322 /* Called at the beginning of each assert() function. */
323 static void
324 assertion_count(const char *file, int line)
325 {
326         (void)file; /* UNUSED */
327         (void)line; /* UNUSED */
328         ++assertions;
329         /* Proper handling of "failure()" message. */
330         msg = nextmsg;
331         nextmsg = NULL;
332         /* Uncomment to print file:line after every assertion.
333          * Verbose, but occasionally useful in tracking down crashes. */
334         /* printf("Checked %s:%d\n", file, line); */
335 }
336
337 /*
338  * For each test source file, we remember how many times each
339  * assertion was reported.  Cleared before each new test,
340  * used by test_summarize().
341  */
342 static struct line {
343         int count;
344         int skip;
345 }  failed_lines[10000];
346 const char *failed_filename;
347
348 /* Count this failure, setup up log destination and handle initial report. */
349 static void
350 failure_start(const char *filename, int line, const char *fmt, ...)
351 {
352         va_list ap;
353
354         /* Record another failure for this line. */
355         ++failures;
356         failed_filename = filename;
357         failed_lines[line].count++;
358
359         /* Determine whether to log header to console. */
360         switch (verbosity) {
361         case VERBOSITY_LIGHT_REPORT:
362                 log_console = (failed_lines[line].count < 2);
363                 break;
364         default:
365                 log_console = (verbosity >= VERBOSITY_FULL);
366         }
367
368         /* Log file:line header for this failure */
369         va_start(ap, fmt);
370 #if _MSC_VER
371         logprintf("%s(%d): ", filename, line);
372 #else
373         logprintf("%s:%d: ", filename, line);
374 #endif
375         vlogprintf(fmt, ap);
376         va_end(ap);
377         logprintf("\n");
378
379         if (msg != NULL && msg[0] != '\0') {
380                 logprintf("   Description: %s\n", msg);
381                 msg = NULL;
382         }
383
384         /* Determine whether to log details to console. */
385         if (verbosity == VERBOSITY_LIGHT_REPORT)
386                 log_console = 0;
387 }
388
389 /* Complete reporting of failed tests. */
390 /*
391  * The 'extra' hook here is used by libarchive to include libarchive
392  * error messages with assertion failures.  It could also be used
393  * to add strerror() output, for example.  Just define the EXTRA_DUMP()
394  * macro appropriately.
395  */
396 static void
397 failure_finish(void *extra)
398 {
399         (void)extra; /* UNUSED (maybe) */
400 #ifdef EXTRA_DUMP
401         if (extra != NULL) {
402                 logprintf("    errno: %d\n", EXTRA_ERRNO(extra));
403                 logprintf("   detail: %s\n", EXTRA_DUMP(extra));
404         }
405 #endif
406
407         if (dump_on_failure) {
408                 fprintf(stderr,
409                     " *** forcing core dump so failure can be debugged ***\n");
410                 abort();
411         }
412 }
413
414 /* Inform user that we're skipping some checks. */
415 void
416 test_skipping(const char *fmt, ...)
417 {
418         char buff[1024];
419         va_list ap;
420
421         va_start(ap, fmt);
422         vsprintf(buff, fmt, ap);
423         va_end(ap);
424         /* Use failure() message if set. */
425         msg = nextmsg;
426         nextmsg = NULL;
427         /* failure_start() isn't quite right, but is awfully convenient. */
428         failure_start(skipping_filename, skipping_line, "SKIPPING: %s", buff);
429         --failures; /* Undo failures++ in failure_start() */
430         /* Don't failure_finish() here. */
431         /* Mark as skip, so doesn't count as failed test. */
432         failed_lines[skipping_line].skip = 1;
433         ++skips;
434 }
435
436 /*
437  *
438  * ASSERTIONS
439  *
440  */
441
442 /* Generic assert() just displays the failed condition. */
443 int
444 assertion_assert(const char *file, int line, int value,
445     const char *condition, void *extra)
446 {
447         assertion_count(file, line);
448         if (!value) {
449                 failure_start(file, line, "Assertion failed: %s", condition);
450                 failure_finish(extra);
451         }
452         return (value);
453 }
454
455 /* chdir() and report any errors */
456 int
457 assertion_chdir(const char *file, int line, const char *pathname)
458 {
459         assertion_count(file, line);
460         if (chdir(pathname) == 0)
461                 return (1);
462         failure_start(file, line, "chdir(\"%s\")", pathname);
463         failure_finish(NULL);
464         return (0);
465
466 }
467
468 /* Verify two integers are equal. */
469 int
470 assertion_equal_int(const char *file, int line,
471     long long v1, const char *e1, long long v2, const char *e2, void *extra)
472 {
473         assertion_count(file, line);
474         if (v1 == v2)
475                 return (1);
476         failure_start(file, line, "%s != %s", e1, e2);
477         logprintf("      %s=%lld (0x%llx, 0%llo)\n", e1, v1, v1, v1);
478         logprintf("      %s=%lld (0x%llx, 0%llo)\n", e2, v2, v2, v2);
479         failure_finish(extra);
480         return (0);
481 }
482
483 /*
484  * Utility to convert a single UTF-8 sequence.
485  */
486 static int
487 _utf8_to_unicode(uint32_t *pwc, const char *s, size_t n)
488 {
489         static const char utf8_count[256] = {
490                  1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,/* 00 - 0F */
491                  1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,/* 10 - 1F */
492                  1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,/* 20 - 2F */
493                  1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,/* 30 - 3F */
494                  1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,/* 40 - 4F */
495                  1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,/* 50 - 5F */
496                  1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,/* 60 - 6F */
497                  1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,/* 70 - 7F */
498                  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,/* 80 - 8F */
499                  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,/* 90 - 9F */
500                  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,/* A0 - AF */
501                  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,/* B0 - BF */
502                  0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,/* C0 - CF */
503                  2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,/* D0 - DF */
504                  3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,/* E0 - EF */
505                  4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 /* F0 - FF */
506         };
507         int ch;
508         int cnt;
509         uint32_t wc;
510
511         *pwc = 0;
512
513         /* Sanity check. */
514         if (n == 0)
515                 return (0);
516         /*
517          * Decode 1-4 bytes depending on the value of the first byte.
518          */
519         ch = (unsigned char)*s;
520         if (ch == 0)
521                 return (0); /* Standard:  return 0 for end-of-string. */
522         cnt = utf8_count[ch];
523
524         /* Invalide sequence or there are not plenty bytes. */
525         if (n < (size_t)cnt)
526                 return (-1);
527
528         /* Make a Unicode code point from a single UTF-8 sequence. */
529         switch (cnt) {
530         case 1: /* 1 byte sequence. */
531                 *pwc = ch & 0x7f;
532                 return (cnt);
533         case 2: /* 2 bytes sequence. */
534                 if ((s[1] & 0xc0) != 0x80) return (-1);
535                 *pwc = ((ch & 0x1f) << 6) | (s[1] & 0x3f);
536                 return (cnt);
537         case 3: /* 3 bytes sequence. */
538                 if ((s[1] & 0xc0) != 0x80) return (-1);
539                 if ((s[2] & 0xc0) != 0x80) return (-1);
540                 wc = ((ch & 0x0f) << 12)
541                     | ((s[1] & 0x3f) << 6)
542                     | (s[2] & 0x3f);
543                 if (wc < 0x800)
544                         return (-1);/* Overlong sequence. */
545                 break;
546         case 4: /* 4 bytes sequence. */
547                 if (n < 4)
548                         return (-1);
549                 if ((s[1] & 0xc0) != 0x80) return (-1);
550                 if ((s[2] & 0xc0) != 0x80) return (-1);
551                 if ((s[3] & 0xc0) != 0x80) return (-1);
552                 wc = ((ch & 0x07) << 18)
553                     | ((s[1] & 0x3f) << 12)
554                     | ((s[2] & 0x3f) << 6)
555                     | (s[3] & 0x3f);
556                 if (wc < 0x10000)
557                         return (-1);/* Overlong sequence. */
558                 break;
559         default:
560                 return (-1);
561         }
562
563         /* The code point larger than 0x10FFFF is not leagal
564          * Unicode values. */
565         if (wc > 0x10FFFF)
566                 return (-1);
567         /* Correctly gets a Unicode, returns used bytes. */
568         *pwc = wc;
569         return (cnt);
570 }
571
572 static void strdump(const char *e, const char *p, int ewidth, int utf8)
573 {
574         const char *q = p;
575
576         logprintf("      %*s = ", ewidth, e);
577         if (p == NULL) {
578                 logprintf("NULL\n");
579                 return;
580         }
581         logprintf("\"");
582         while (*p != '\0') {
583                 unsigned int c = 0xff & *p++;
584                 switch (c) {
585                 case '\a': logprintf("\\a"); break;
586                 case '\b': logprintf("\\b"); break;
587                 case '\n': logprintf("\\n"); break;
588                 case '\r': logprintf("\\r"); break;
589                 default:
590                         if (c >= 32 && c < 127)
591                                 logprintf("%c", c);
592                         else
593                                 logprintf("\\x%02X", c);
594                 }
595         }
596         logprintf("\"");
597         logprintf(" (length %d)", q == NULL ? -1 : (int)strlen(q));
598
599         /*
600          * If the current string is UTF-8, dump its code points.
601          */
602         if (utf8) {
603                 size_t len;
604                 uint32_t uc;
605                 int n;
606                 int cnt = 0;
607
608                 p = q;
609                 len = strlen(p);
610                 logprintf(" [");
611                 while ((n = _utf8_to_unicode(&uc, p, len)) > 0) {
612                         if (p != q)
613                                 logprintf(" ");
614                         logprintf("%04X", uc);
615                         p += n;
616                         len -= n;
617                         cnt++;
618                 }
619                 logprintf("]");
620                 logprintf(" (count %d", cnt);
621                 if (n < 0) {
622                         logprintf(",unknown %d bytes", len);
623                 }
624                 logprintf(")");
625
626         }
627         logprintf("\n");
628 }
629
630 /* Verify two strings are equal, dump them if not. */
631 int
632 assertion_equal_string(const char *file, int line,
633     const char *v1, const char *e1,
634     const char *v2, const char *e2,
635     void *extra, int utf8)
636 {
637         int l1, l2;
638
639         assertion_count(file, line);
640         if (v1 == v2 || (v1 != NULL && v2 != NULL && strcmp(v1, v2) == 0))
641                 return (1);
642         failure_start(file, line, "%s != %s", e1, e2);
643         l1 = (int)strlen(e1);
644         l2 = (int)strlen(e2);
645         if (l1 < l2)
646                 l1 = l2;
647         strdump(e1, v1, l1, utf8);
648         strdump(e2, v2, l1, utf8);
649         failure_finish(extra);
650         return (0);
651 }
652
653 static void
654 wcsdump(const char *e, const wchar_t *w)
655 {
656         logprintf("      %s = ", e);
657         if (w == NULL) {
658                 logprintf("(null)");
659                 return;
660         }
661         logprintf("\"");
662         while (*w != L'\0') {
663                 unsigned int c = *w++;
664                 if (c >= 32 && c < 127)
665                         logprintf("%c", c);
666                 else if (c < 256)
667                         logprintf("\\x%02X", c);
668                 else if (c < 0x10000)
669                         logprintf("\\u%04X", c);
670                 else
671                         logprintf("\\U%08X", c);
672         }
673         logprintf("\"\n");
674 }
675
676 #ifndef HAVE_WCSCMP
677 static int
678 wcscmp(const wchar_t *s1, const wchar_t *s2)
679 {
680
681         while (*s1 == *s2++) {
682                 if (*s1++ == L'\0')
683                         return 0;
684         }
685         if (*s1 > *--s2)
686                 return 1;
687         else
688                 return -1;
689 }
690 #endif
691
692 /* Verify that two wide strings are equal, dump them if not. */
693 int
694 assertion_equal_wstring(const char *file, int line,
695     const wchar_t *v1, const char *e1,
696     const wchar_t *v2, const char *e2,
697     void *extra)
698 {
699         assertion_count(file, line);
700         if (v1 == v2)
701                 return (1);
702         if (v1 != NULL && v2 != NULL && wcscmp(v1, v2) == 0)
703                 return (1);
704         failure_start(file, line, "%s != %s", e1, e2);
705         wcsdump(e1, v1);
706         wcsdump(e2, v2);
707         failure_finish(extra);
708         return (0);
709 }
710
711 /*
712  * Pretty standard hexdump routine.  As a bonus, if ref != NULL, then
713  * any bytes in p that differ from ref will be highlighted with '_'
714  * before and after the hex value.
715  */
716 static void
717 hexdump(const char *p, const char *ref, size_t l, size_t offset)
718 {
719         size_t i, j;
720         char sep;
721
722         if (p == NULL) {
723                 logprintf("(null)\n");
724                 return;
725         }
726         for(i=0; i < l; i+=16) {
727                 logprintf("%04x", (unsigned)(i + offset));
728                 sep = ' ';
729                 for (j = 0; j < 16 && i + j < l; j++) {
730                         if (ref != NULL && p[i + j] != ref[i + j])
731                                 sep = '_';
732                         logprintf("%c%02x", sep, 0xff & (int)p[i+j]);
733                         if (ref != NULL && p[i + j] == ref[i + j])
734                                 sep = ' ';
735                 }
736                 for (; j < 16; j++) {
737                         logprintf("%c  ", sep);
738                         sep = ' ';
739                 }
740                 logprintf("%c", sep);
741                 for (j=0; j < 16 && i + j < l; j++) {
742                         int c = p[i + j];
743                         if (c >= ' ' && c <= 126)
744                                 logprintf("%c", c);
745                         else
746                                 logprintf(".");
747                 }
748                 logprintf("\n");
749         }
750 }
751
752 /* Verify that two blocks of memory are the same, display the first
753  * block of differences if they're not. */
754 int
755 assertion_equal_mem(const char *file, int line,
756     const void *_v1, const char *e1,
757     const void *_v2, const char *e2,
758     size_t l, const char *ld, void *extra)
759 {
760         const char *v1 = (const char *)_v1;
761         const char *v2 = (const char *)_v2;
762         size_t offset;
763
764         assertion_count(file, line);
765         if (v1 == v2 || (v1 != NULL && v2 != NULL && memcmp(v1, v2, l) == 0))
766                 return (1);
767         if (v1 == NULL || v2 == NULL)
768                 return (0);
769
770         failure_start(file, line, "%s != %s", e1, e2);
771         logprintf("      size %s = %d\n", ld, (int)l);
772         /* Dump 48 bytes (3 lines) so that the first difference is
773          * in the second line. */
774         offset = 0;
775         while (l > 64 && memcmp(v1, v2, 32) == 0) {
776                 /* Two lines agree, so step forward one line. */
777                 v1 += 16;
778                 v2 += 16;
779                 l -= 16;
780                 offset += 16;
781         }
782         logprintf("      Dump of %s\n", e1);
783         hexdump(v1, v2, l < 128 ? l : 128, offset);
784         logprintf("      Dump of %s\n", e2);
785         hexdump(v2, v1, l < 128 ? l : 128, offset);
786         logprintf("\n");
787         failure_finish(extra);
788         return (0);
789 }
790
791 /* Verify that a block of memory is filled with the specified byte. */
792 int
793 assertion_memory_filled_with(const char *file, int line,
794     const void *_v1, const char *vd,
795     size_t l, const char *ld,
796     char b, const char *bd, void *extra)
797 {
798         const char *v1 = (const char *)_v1;
799         size_t c = 0;
800         size_t i;
801         (void)ld; /* UNUSED */
802
803         assertion_count(file, line);
804
805         for (i = 0; i < l; ++i) {
806                 if (v1[i] == b) {
807                         ++c;
808                 }
809         }
810         if (c == l)
811                 return (1);
812
813         failure_start(file, line, "%s (size %d) not filled with %s", vd, (int)l, bd);
814         logprintf("   Only %d bytes were correct\n", (int)c);
815         failure_finish(extra);
816         return (0);
817 }
818
819 /* Verify that the named file exists and is empty. */
820 int
821 assertion_empty_file(const char *filename, int line, const char *f1)
822 {
823         char buff[1024];
824         struct stat st;
825         ssize_t s;
826         FILE *f;
827
828         assertion_count(filename, line);
829
830         if (stat(f1, &st) != 0) {
831                 failure_start(filename, line, "Stat failed: %s", f1);
832                 failure_finish(NULL);
833                 return (0);
834         }
835         if (st.st_size == 0)
836                 return (1);
837
838         failure_start(filename, line, "File should be empty: %s", f1);
839         logprintf("    File size: %d\n", (int)st.st_size);
840         logprintf("    Contents:\n");
841         f = fopen(f1, "rb");
842         if (f == NULL) {
843                 logprintf("    Unable to open %s\n", f1);
844         } else {
845                 s = ((off_t)sizeof(buff) < st.st_size) ?
846                     (ssize_t)sizeof(buff) : (ssize_t)st.st_size;
847                 s = fread(buff, 1, s, f);
848                 hexdump(buff, NULL, s, 0);
849                 fclose(f);
850         }
851         failure_finish(NULL);
852         return (0);
853 }
854
855 /* Verify that the named file exists and is not empty. */
856 int
857 assertion_non_empty_file(const char *filename, int line, const char *f1)
858 {
859         struct stat st;
860
861         assertion_count(filename, line);
862
863         if (stat(f1, &st) != 0) {
864                 failure_start(filename, line, "Stat failed: %s", f1);
865                 failure_finish(NULL);
866                 return (0);
867         }
868         if (st.st_size == 0) {
869                 failure_start(filename, line, "File empty: %s", f1);
870                 failure_finish(NULL);
871                 return (0);
872         }
873         return (1);
874 }
875
876 /* Verify that two files have the same contents. */
877 /* TODO: hexdump the first bytes that actually differ. */
878 int
879 assertion_equal_file(const char *filename, int line, const char *fn1, const char *fn2)
880 {
881         char buff1[1024];
882         char buff2[1024];
883         FILE *f1, *f2;
884         int n1, n2;
885
886         assertion_count(filename, line);
887
888         f1 = fopen(fn1, "rb");
889         f2 = fopen(fn2, "rb");
890         if (f1 == NULL || f2 == NULL) {
891                 if (f1) fclose(f1);
892                 if (f2) fclose(f2);
893                 return (0);
894         }
895         for (;;) {
896                 n1 = (int)fread(buff1, 1, sizeof(buff1), f1);
897                 n2 = (int)fread(buff2, 1, sizeof(buff2), f2);
898                 if (n1 != n2)
899                         break;
900                 if (n1 == 0 && n2 == 0) {
901                         fclose(f1);
902                         fclose(f2);
903                         return (1);
904                 }
905                 if (memcmp(buff1, buff2, n1) != 0)
906                         break;
907         }
908         fclose(f1);
909         fclose(f2);
910         failure_start(filename, line, "Files not identical");
911         logprintf("  file1=\"%s\"\n", fn1);
912         logprintf("  file2=\"%s\"\n", fn2);
913         failure_finish(NULL);
914         return (0);
915 }
916
917 /* Verify that the named file does exist. */
918 int
919 assertion_file_exists(const char *filename, int line, const char *f)
920 {
921         assertion_count(filename, line);
922
923 #if defined(_WIN32) && !defined(__CYGWIN__)
924         if (!_access(f, 0))
925                 return (1);
926 #else
927         if (!access(f, F_OK))
928                 return (1);
929 #endif
930         failure_start(filename, line, "File should exist: %s", f);
931         failure_finish(NULL);
932         return (0);
933 }
934
935 /* Verify that the named file doesn't exist. */
936 int
937 assertion_file_not_exists(const char *filename, int line, const char *f)
938 {
939         assertion_count(filename, line);
940
941 #if defined(_WIN32) && !defined(__CYGWIN__)
942         if (_access(f, 0))
943                 return (1);
944 #else
945         if (access(f, F_OK))
946                 return (1);
947 #endif
948         failure_start(filename, line, "File should not exist: %s", f);
949         failure_finish(NULL);
950         return (0);
951 }
952
953 /* Compare the contents of a file to a block of memory. */
954 int
955 assertion_file_contents(const char *filename, int line, const void *buff, int s, const char *fn)
956 {
957         char *contents;
958         FILE *f;
959         int n;
960
961         assertion_count(filename, line);
962
963         f = fopen(fn, "rb");
964         if (f == NULL) {
965                 failure_start(filename, line,
966                     "File should exist: %s", fn);
967                 failure_finish(NULL);
968                 return (0);
969         }
970         contents = malloc(s * 2);
971         n = (int)fread(contents, 1, s * 2, f);
972         fclose(f);
973         if (n == s && memcmp(buff, contents, s) == 0) {
974                 free(contents);
975                 return (1);
976         }
977         failure_start(filename, line, "File contents don't match");
978         logprintf("  file=\"%s\"\n", fn);
979         if (n > 0)
980                 hexdump(contents, buff, n > 512 ? 512 : n, 0);
981         else {
982                 logprintf("  File empty, contents should be:\n");
983                 hexdump(buff, NULL, s > 512 ? 512 : s, 0);
984         }
985         failure_finish(NULL);
986         free(contents);
987         return (0);
988 }
989
990 /* Check the contents of a text file, being tolerant of line endings. */
991 int
992 assertion_text_file_contents(const char *filename, int line, const char *buff, const char *fn)
993 {
994         char *contents;
995         const char *btxt, *ftxt;
996         FILE *f;
997         int n, s;
998
999         assertion_count(filename, line);
1000         f = fopen(fn, "r");
1001         if (f == NULL) {
1002                 failure_start(filename, line,
1003                     "File doesn't exist: %s", fn);
1004                 failure_finish(NULL);
1005                 return (0);
1006         }
1007         s = (int)strlen(buff);
1008         contents = malloc(s * 2 + 128);
1009         n = (int)fread(contents, 1, s * 2 + 128 - 1, f);
1010         if (n >= 0)
1011                 contents[n] = '\0';
1012         fclose(f);
1013         /* Compare texts. */
1014         btxt = buff;
1015         ftxt = (const char *)contents;
1016         while (*btxt != '\0' && *ftxt != '\0') {
1017                 if (*btxt == *ftxt) {
1018                         ++btxt;
1019                         ++ftxt;
1020                         continue;
1021                 }
1022                 if (btxt[0] == '\n' && ftxt[0] == '\r' && ftxt[1] == '\n') {
1023                         /* Pass over different new line characters. */
1024                         ++btxt;
1025                         ftxt += 2;
1026                         continue;
1027                 }
1028                 break;
1029         }
1030         if (*btxt == '\0' && *ftxt == '\0') {
1031                 free(contents);
1032                 return (1);
1033         }
1034         failure_start(filename, line, "Contents don't match");
1035         logprintf("  file=\"%s\"\n", fn);
1036         if (n > 0) {
1037                 hexdump(contents, buff, n, 0);
1038                 logprintf("  expected\n", fn);
1039                 hexdump(buff, contents, s, 0);
1040         } else {
1041                 logprintf("  File empty, contents should be:\n");
1042                 hexdump(buff, NULL, s, 0);
1043         }
1044         failure_finish(NULL);
1045         free(contents);
1046         return (0);
1047 }
1048
1049 /* Verify that a text file contains the specified lines, regardless of order */
1050 /* This could be more efficient if we sorted both sets of lines, etc, but
1051  * since this is used only for testing and only ever deals with a dozen or so
1052  * lines at a time, this relatively crude approach is just fine. */
1053 int
1054 assertion_file_contains_lines_any_order(const char *file, int line,
1055     const char *pathname, const char *lines[])
1056 {
1057         char *buff;
1058         size_t buff_size;
1059         size_t expected_count, actual_count, i, j;
1060         char **expected = NULL;
1061         char *p, **actual = NULL;
1062         char c;
1063         int expected_failure = 0, actual_failure = 0;
1064
1065         assertion_count(file, line);
1066
1067         buff = slurpfile(&buff_size, "%s", pathname);
1068         if (buff == NULL) {
1069                 failure_start(pathname, line, "Can't read file: %s", pathname);
1070                 failure_finish(NULL);
1071                 return (0);
1072         }
1073
1074         /* Make a copy of the provided lines and count up the expected
1075          * file size. */
1076         for (i = 0; lines[i] != NULL; ++i) {
1077         }
1078         expected_count = i;
1079         if (expected_count) {
1080                 expected = malloc(sizeof(char *) * expected_count);
1081                 if (expected == NULL) {
1082                         failure_start(pathname, line, "Can't allocate memory");
1083                         failure_finish(NULL);
1084                         free(expected);
1085                         return (0);
1086                 }
1087                 for (i = 0; lines[i] != NULL; ++i) {
1088                         expected[i] = strdup(lines[i]);
1089                 }
1090         }
1091
1092         /* Break the file into lines */
1093         actual_count = 0;
1094         for (c = '\0', p = buff; p < buff + buff_size; ++p) {
1095                 if (*p == '\x0d' || *p == '\x0a')
1096                         *p = '\0';
1097                 if (c == '\0' && *p != '\0')
1098                         ++actual_count;
1099                 c = *p;
1100         }
1101         if (actual_count) {
1102                 actual = calloc(sizeof(char *), actual_count);
1103                 if (actual == NULL) {
1104                         failure_start(pathname, line, "Can't allocate memory");
1105                         failure_finish(NULL);
1106                         free(expected);
1107                         return (0);
1108                 }
1109                 for (j = 0, p = buff; p < buff + buff_size;
1110                     p += 1 + strlen(p)) {
1111                         if (*p != '\0') {
1112                                 actual[j] = p;
1113                                 ++j;
1114                         }
1115                 }
1116         }
1117
1118         /* Erase matching lines from both lists */
1119         for (i = 0; i < expected_count; ++i) {
1120                 if (expected[i] == NULL)
1121                         continue;
1122                 for (j = 0; j < actual_count; ++j) {
1123                         if (actual[j] == NULL)
1124                                 continue;
1125                         if (strcmp(expected[i], actual[j]) == 0) {
1126                                 free(expected[i]);
1127                                 expected[i] = NULL;
1128                                 actual[j] = NULL;
1129                                 break;
1130                         }
1131                 }
1132         }
1133
1134         /* If there's anything left, it's a failure */
1135         for (i = 0; i < expected_count; ++i) {
1136                 if (expected[i] != NULL)
1137                         ++expected_failure;
1138         }
1139         for (j = 0; j < actual_count; ++j) {
1140                 if (actual[j] != NULL)
1141                         ++actual_failure;
1142         }
1143         if (expected_failure == 0 && actual_failure == 0) {
1144                 free(buff);
1145                 free(expected);
1146                 free(actual);
1147                 return (1);
1148         }
1149         failure_start(file, line, "File doesn't match: %s", pathname);
1150         for (i = 0; i < expected_count; ++i) {
1151                 if (expected[i] != NULL) {
1152                         logprintf("  Expected but not present: %s\n", expected[i]);
1153                         free(expected[i]);
1154                 }
1155         }
1156         for (j = 0; j < actual_count; ++j) {
1157                 if (actual[j] != NULL)
1158                         logprintf("  Present but not expected: %s\n", actual[j]);
1159         }
1160         failure_finish(NULL);
1161         free(buff);
1162         free(expected);
1163         free(actual);
1164         return (0);
1165 }
1166
1167 /* Verify that a text file does not contains the specified strings */
1168 int
1169 assertion_file_contains_no_invalid_strings(const char *file, int line,
1170     const char *pathname, const char *strings[])
1171 {
1172         char *buff;
1173         int i;
1174
1175         buff = slurpfile(NULL, "%s", pathname);
1176         if (buff == NULL) {
1177                 failure_start(file, line, "Can't read file: %s", pathname);
1178                 failure_finish(NULL);
1179                 return (0);
1180         }
1181
1182         for (i = 0; strings[i] != NULL; ++i) {
1183                 if (strstr(buff, strings[i]) != NULL) {
1184                         failure_start(file, line, "Invalid string in %s: %s", pathname,
1185                             strings[i]);
1186                         failure_finish(NULL);
1187                         free(buff);
1188                         return(0);
1189                 }
1190         }
1191
1192         free(buff);
1193         return (0);
1194 }
1195
1196 /* Test that two paths point to the same file. */
1197 /* As a side-effect, asserts that both files exist. */
1198 static int
1199 is_hardlink(const char *file, int line,
1200     const char *path1, const char *path2)
1201 {
1202 #if defined(_WIN32) && !defined(__CYGWIN__)
1203         BY_HANDLE_FILE_INFORMATION bhfi1, bhfi2;
1204         int r;
1205
1206         assertion_count(file, line);
1207         r = my_GetFileInformationByName(path1, &bhfi1);
1208         if (r == 0) {
1209                 failure_start(file, line, "File %s can't be inspected?", path1);
1210                 failure_finish(NULL);
1211                 return (0);
1212         }
1213         r = my_GetFileInformationByName(path2, &bhfi2);
1214         if (r == 0) {
1215                 failure_start(file, line, "File %s can't be inspected?", path2);
1216                 failure_finish(NULL);
1217                 return (0);
1218         }
1219         return (bhfi1.dwVolumeSerialNumber == bhfi2.dwVolumeSerialNumber
1220                 && bhfi1.nFileIndexHigh == bhfi2.nFileIndexHigh
1221                 && bhfi1.nFileIndexLow == bhfi2.nFileIndexLow);
1222 #else
1223         struct stat st1, st2;
1224         int r;
1225
1226         assertion_count(file, line);
1227         r = lstat(path1, &st1);
1228         if (r != 0) {
1229                 failure_start(file, line, "File should exist: %s", path1);
1230                 failure_finish(NULL);
1231                 return (0);
1232         }
1233         r = lstat(path2, &st2);
1234         if (r != 0) {
1235                 failure_start(file, line, "File should exist: %s", path2);
1236                 failure_finish(NULL);
1237                 return (0);
1238         }
1239         return (st1.st_ino == st2.st_ino && st1.st_dev == st2.st_dev);
1240 #endif
1241 }
1242
1243 int
1244 assertion_is_hardlink(const char *file, int line,
1245     const char *path1, const char *path2)
1246 {
1247         if (is_hardlink(file, line, path1, path2))
1248                 return (1);
1249         failure_start(file, line,
1250             "Files %s and %s are not hardlinked", path1, path2);
1251         failure_finish(NULL);
1252         return (0);
1253 }
1254
1255 int
1256 assertion_is_not_hardlink(const char *file, int line,
1257     const char *path1, const char *path2)
1258 {
1259         if (!is_hardlink(file, line, path1, path2))
1260                 return (1);
1261         failure_start(file, line,
1262             "Files %s and %s should not be hardlinked", path1, path2);
1263         failure_finish(NULL);
1264         return (0);
1265 }
1266
1267 /* Verify a/b/mtime of 'pathname'. */
1268 /* If 'recent', verify that it's within last 10 seconds. */
1269 static int
1270 assertion_file_time(const char *file, int line,
1271     const char *pathname, long t, long nsec, char type, int recent)
1272 {
1273         long long filet, filet_nsec;
1274         int r;
1275
1276 #if defined(_WIN32) && !defined(__CYGWIN__)
1277 #define EPOC_TIME       (116444736000000000ULL)
1278         FILETIME fxtime, fbirthtime, fatime, fmtime;
1279         ULARGE_INTEGER wintm;
1280         HANDLE h;
1281         fxtime.dwLowDateTime = 0;
1282         fxtime.dwHighDateTime = 0;
1283
1284         assertion_count(file, line);
1285         /* Note: FILE_FLAG_BACKUP_SEMANTICS applies to open
1286          * a directory file. If not, CreateFile() will fail when
1287          * the pathname is a directory. */
1288         h = CreateFile(pathname, FILE_READ_ATTRIBUTES, 0, NULL,
1289             OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
1290         if (h == INVALID_HANDLE_VALUE) {
1291                 failure_start(file, line, "Can't access %s\n", pathname);
1292                 failure_finish(NULL);
1293                 return (0);
1294         }
1295         r = GetFileTime(h, &fbirthtime, &fatime, &fmtime);
1296         switch (type) {
1297         case 'a': fxtime = fatime; break;
1298         case 'b': fxtime = fbirthtime; break;
1299         case 'm': fxtime = fmtime; break;
1300         }
1301         CloseHandle(h);
1302         if (r == 0) {
1303                 failure_start(file, line, "Can't GetFileTime %s\n", pathname);
1304                 failure_finish(NULL);
1305                 return (0);
1306         }
1307         wintm.LowPart = fxtime.dwLowDateTime;
1308         wintm.HighPart = fxtime.dwHighDateTime;
1309         filet = (wintm.QuadPart - EPOC_TIME) / 10000000;
1310         filet_nsec = ((wintm.QuadPart - EPOC_TIME) % 10000000) * 100;
1311         nsec = (nsec / 100) * 100; /* Round the request */
1312 #else
1313         struct stat st;
1314
1315         assertion_count(file, line);
1316         r = lstat(pathname, &st);
1317         if (r != 0) {
1318                 failure_start(file, line, "Can't stat %s\n", pathname);
1319                 failure_finish(NULL);
1320                 return (0);
1321         }
1322         switch (type) {
1323         case 'a': filet = st.st_atime; break;
1324         case 'm': filet = st.st_mtime; break;
1325         case 'b': filet = 0; break;
1326         default: fprintf(stderr, "INTERNAL: Bad type %c for file time", type);
1327                 exit(1);
1328         }
1329 #if defined(__FreeBSD__)
1330         switch (type) {
1331         case 'a': filet_nsec = st.st_atimespec.tv_nsec; break;
1332         case 'b': filet = st.st_birthtime;
1333                 /* FreeBSD filesystems that don't support birthtime
1334                  * (e.g., UFS1) always return -1 here. */
1335                 if (filet == -1) {
1336                         return (1);
1337                 }
1338                 filet_nsec = st.st_birthtimespec.tv_nsec; break;
1339         case 'm': filet_nsec = st.st_mtimespec.tv_nsec; break;
1340         default: fprintf(stderr, "INTERNAL: Bad type %c for file time", type);
1341                 exit(1);
1342         }
1343         /* FreeBSD generally only stores to microsecond res, so round. */
1344         filet_nsec = (filet_nsec / 1000) * 1000;
1345         nsec = (nsec / 1000) * 1000;
1346 #else
1347         filet_nsec = nsec = 0;  /* Generic POSIX only has whole seconds. */
1348         if (type == 'b') return (1); /* Generic POSIX doesn't have birthtime */
1349 #if defined(__HAIKU__)
1350         if (type == 'a') return (1); /* Haiku doesn't have atime. */
1351 #endif
1352 #endif
1353 #endif
1354         if (recent) {
1355                 /* Check that requested time is up-to-date. */
1356                 time_t now = time(NULL);
1357                 if (filet < now - 10 || filet > now + 1) {
1358                         failure_start(file, line,
1359                             "File %s has %ctime %lld, %lld seconds ago\n",
1360                             pathname, type, filet, now - filet);
1361                         failure_finish(NULL);
1362                         return (0);
1363                 }
1364         } else if (filet != t || filet_nsec != nsec) {
1365                 failure_start(file, line,
1366                     "File %s has %ctime %lld.%09lld, expected %lld.%09lld",
1367                     pathname, type, filet, filet_nsec, t, nsec);
1368                 failure_finish(NULL);
1369                 return (0);
1370         }
1371         return (1);
1372 }
1373
1374 /* Verify atime of 'pathname'. */
1375 int
1376 assertion_file_atime(const char *file, int line,
1377     const char *pathname, long t, long nsec)
1378 {
1379         return assertion_file_time(file, line, pathname, t, nsec, 'a', 0);
1380 }
1381
1382 /* Verify atime of 'pathname' is up-to-date. */
1383 int
1384 assertion_file_atime_recent(const char *file, int line, const char *pathname)
1385 {
1386         return assertion_file_time(file, line, pathname, 0, 0, 'a', 1);
1387 }
1388
1389 /* Verify birthtime of 'pathname'. */
1390 int
1391 assertion_file_birthtime(const char *file, int line,
1392     const char *pathname, long t, long nsec)
1393 {
1394         return assertion_file_time(file, line, pathname, t, nsec, 'b', 0);
1395 }
1396
1397 /* Verify birthtime of 'pathname' is up-to-date. */
1398 int
1399 assertion_file_birthtime_recent(const char *file, int line,
1400     const char *pathname)
1401 {
1402         return assertion_file_time(file, line, pathname, 0, 0, 'b', 1);
1403 }
1404
1405 /* Verify mode of 'pathname'. */
1406 int
1407 assertion_file_mode(const char *file, int line, const char *pathname, int expected_mode)
1408 {
1409         int mode;
1410         int r;
1411
1412         assertion_count(file, line);
1413 #if defined(_WIN32) && !defined(__CYGWIN__)
1414         failure_start(file, line, "assertFileMode not yet implemented for Windows");
1415         (void)mode; /* UNUSED */
1416         (void)r; /* UNUSED */
1417 #else
1418         {
1419                 struct stat st;
1420                 r = lstat(pathname, &st);
1421                 mode = (int)(st.st_mode & 0777);
1422         }
1423         if (r == 0 && mode == expected_mode)
1424                         return (1);
1425         failure_start(file, line, "File %s has mode %o, expected %o",
1426             pathname, mode, expected_mode);
1427 #endif
1428         failure_finish(NULL);
1429         return (0);
1430 }
1431
1432 /* Verify mtime of 'pathname'. */
1433 int
1434 assertion_file_mtime(const char *file, int line,
1435     const char *pathname, long t, long nsec)
1436 {
1437         return assertion_file_time(file, line, pathname, t, nsec, 'm', 0);
1438 }
1439
1440 /* Verify mtime of 'pathname' is up-to-date. */
1441 int
1442 assertion_file_mtime_recent(const char *file, int line, const char *pathname)
1443 {
1444         return assertion_file_time(file, line, pathname, 0, 0, 'm', 1);
1445 }
1446
1447 /* Verify number of links to 'pathname'. */
1448 int
1449 assertion_file_nlinks(const char *file, int line,
1450     const char *pathname, int nlinks)
1451 {
1452 #if defined(_WIN32) && !defined(__CYGWIN__)
1453         BY_HANDLE_FILE_INFORMATION bhfi;
1454         int r;
1455
1456         assertion_count(file, line);
1457         r = my_GetFileInformationByName(pathname, &bhfi);
1458         if (r != 0 && bhfi.nNumberOfLinks == (DWORD)nlinks)
1459                 return (1);
1460         failure_start(file, line, "File %s has %d links, expected %d",
1461             pathname, bhfi.nNumberOfLinks, nlinks);
1462         failure_finish(NULL);
1463         return (0);
1464 #else
1465         struct stat st;
1466         int r;
1467
1468         assertion_count(file, line);
1469         r = lstat(pathname, &st);
1470         if (r == 0 && (int)st.st_nlink == nlinks)
1471                 return (1);
1472         failure_start(file, line, "File %s has %d links, expected %d",
1473             pathname, st.st_nlink, nlinks);
1474         failure_finish(NULL);
1475         return (0);
1476 #endif
1477 }
1478
1479 /* Verify size of 'pathname'. */
1480 int
1481 assertion_file_size(const char *file, int line, const char *pathname, long size)
1482 {
1483         int64_t filesize;
1484         int r;
1485
1486         assertion_count(file, line);
1487 #if defined(_WIN32) && !defined(__CYGWIN__)
1488         {
1489                 BY_HANDLE_FILE_INFORMATION bhfi;
1490                 r = !my_GetFileInformationByName(pathname, &bhfi);
1491                 filesize = ((int64_t)bhfi.nFileSizeHigh << 32) + bhfi.nFileSizeLow;
1492         }
1493 #else
1494         {
1495                 struct stat st;
1496                 r = lstat(pathname, &st);
1497                 filesize = st.st_size;
1498         }
1499 #endif
1500         if (r == 0 && filesize == size)
1501                         return (1);
1502         failure_start(file, line, "File %s has size %ld, expected %ld",
1503             pathname, (long)filesize, (long)size);
1504         failure_finish(NULL);
1505         return (0);
1506 }
1507
1508 /* Assert that 'pathname' is a dir.  If mode >= 0, verify that too. */
1509 int
1510 assertion_is_dir(const char *file, int line, const char *pathname, int mode)
1511 {
1512         struct stat st;
1513         int r;
1514
1515 #if defined(_WIN32) && !defined(__CYGWIN__)
1516         (void)mode; /* UNUSED */
1517 #endif
1518         assertion_count(file, line);
1519         r = lstat(pathname, &st);
1520         if (r != 0) {
1521                 failure_start(file, line, "Dir should exist: %s", pathname);
1522                 failure_finish(NULL);
1523                 return (0);
1524         }
1525         if (!S_ISDIR(st.st_mode)) {
1526                 failure_start(file, line, "%s is not a dir", pathname);
1527                 failure_finish(NULL);
1528                 return (0);
1529         }
1530 #if !defined(_WIN32) || defined(__CYGWIN__)
1531         /* Windows doesn't handle permissions the same way as POSIX,
1532          * so just ignore the mode tests. */
1533         /* TODO: Can we do better here? */
1534         if (mode >= 0 && (mode_t)mode != (st.st_mode & 07777)) {
1535                 failure_start(file, line, "Dir %s has wrong mode", pathname);
1536                 logprintf("  Expected: 0%3o\n", mode);
1537                 logprintf("  Found: 0%3o\n", st.st_mode & 07777);
1538                 failure_finish(NULL);
1539                 return (0);
1540         }
1541 #endif
1542         return (1);
1543 }
1544
1545 /* Verify that 'pathname' is a regular file.  If 'mode' is >= 0,
1546  * verify that too. */
1547 int
1548 assertion_is_reg(const char *file, int line, const char *pathname, int mode)
1549 {
1550         struct stat st;
1551         int r;
1552
1553 #if defined(_WIN32) && !defined(__CYGWIN__)
1554         (void)mode; /* UNUSED */
1555 #endif
1556         assertion_count(file, line);
1557         r = lstat(pathname, &st);
1558         if (r != 0 || !S_ISREG(st.st_mode)) {
1559                 failure_start(file, line, "File should exist: %s", pathname);
1560                 failure_finish(NULL);
1561                 return (0);
1562         }
1563 #if !defined(_WIN32) || defined(__CYGWIN__)
1564         /* Windows doesn't handle permissions the same way as POSIX,
1565          * so just ignore the mode tests. */
1566         /* TODO: Can we do better here? */
1567         if (mode >= 0 && (mode_t)mode != (st.st_mode & 07777)) {
1568                 failure_start(file, line, "File %s has wrong mode", pathname);
1569                 logprintf("  Expected: 0%3o\n", mode);
1570                 logprintf("  Found: 0%3o\n", st.st_mode & 07777);
1571                 failure_finish(NULL);
1572                 return (0);
1573         }
1574 #endif
1575         return (1);
1576 }
1577
1578 /* Check whether 'pathname' is a symbolic link.  If 'contents' is
1579  * non-NULL, verify that the symlink has those contents. */
1580 static int
1581 is_symlink(const char *file, int line,
1582     const char *pathname, const char *contents)
1583 {
1584 #if defined(_WIN32) && !defined(__CYGWIN__)
1585         (void)pathname; /* UNUSED */
1586         (void)contents; /* UNUSED */
1587         assertion_count(file, line);
1588         /* Windows sort-of has real symlinks, but they're only usable
1589          * by privileged users and are crippled even then, so there's
1590          * really not much point in bothering with this. */
1591         return (0);
1592 #else
1593         char buff[300];
1594         struct stat st;
1595         ssize_t linklen;
1596         int r;
1597
1598         assertion_count(file, line);
1599         r = lstat(pathname, &st);
1600         if (r != 0) {
1601                 failure_start(file, line,
1602                     "Symlink should exist: %s", pathname);
1603                 failure_finish(NULL);
1604                 return (0);
1605         }
1606         if (!S_ISLNK(st.st_mode))
1607                 return (0);
1608         if (contents == NULL)
1609                 return (1);
1610         linklen = readlink(pathname, buff, sizeof(buff));
1611         if (linklen < 0) {
1612                 failure_start(file, line, "Can't read symlink %s", pathname);
1613                 failure_finish(NULL);
1614                 return (0);
1615         }
1616         buff[linklen] = '\0';
1617         if (strcmp(buff, contents) != 0)
1618                 return (0);
1619         return (1);
1620 #endif
1621 }
1622
1623 /* Assert that path is a symlink that (optionally) contains contents. */
1624 int
1625 assertion_is_symlink(const char *file, int line,
1626     const char *path, const char *contents)
1627 {
1628         if (is_symlink(file, line, path, contents))
1629                 return (1);
1630         if (contents)
1631                 failure_start(file, line, "File %s is not a symlink to %s",
1632                     path, contents);
1633         else
1634                 failure_start(file, line, "File %s is not a symlink", path);
1635         failure_finish(NULL);
1636         return (0);
1637 }
1638
1639
1640 /* Create a directory and report any errors. */
1641 int
1642 assertion_make_dir(const char *file, int line, const char *dirname, int mode)
1643 {
1644         assertion_count(file, line);
1645 #if defined(_WIN32) && !defined(__CYGWIN__)
1646         (void)mode; /* UNUSED */
1647         if (0 == _mkdir(dirname))
1648                 return (1);
1649 #else
1650         if (0 == mkdir(dirname, mode)) {
1651                 if (0 == chmod(dirname, mode)) {
1652                         assertion_file_mode(file, line, dirname, mode);
1653                         return (1);
1654                 }
1655         }
1656 #endif
1657         failure_start(file, line, "Could not create directory %s", dirname);
1658         failure_finish(NULL);
1659         return(0);
1660 }
1661
1662 /* Create a file with the specified contents and report any failures. */
1663 int
1664 assertion_make_file(const char *file, int line,
1665     const char *path, int mode, int csize, const void *contents)
1666 {
1667 #if defined(_WIN32) && !defined(__CYGWIN__)
1668         /* TODO: Rework this to set file mode as well. */
1669         FILE *f;
1670         (void)mode; /* UNUSED */
1671         assertion_count(file, line);
1672         f = fopen(path, "wb");
1673         if (f == NULL) {
1674                 failure_start(file, line, "Could not create file %s", path);
1675                 failure_finish(NULL);
1676                 return (0);
1677         }
1678         if (contents != NULL) {
1679                 size_t wsize;
1680
1681                 if (csize < 0)
1682                         wsize = strlen(contents);
1683                 else
1684                         wsize = (size_t)csize;
1685                 if (wsize != fwrite(contents, 1, wsize, f)) {
1686                         fclose(f);
1687                         failure_start(file, line,
1688                             "Could not write file %s", path);
1689                         failure_finish(NULL);
1690                         return (0);
1691                 }
1692         }
1693         fclose(f);
1694         return (1);
1695 #else
1696         int fd;
1697         assertion_count(file, line);
1698         fd = open(path, O_CREAT | O_WRONLY, mode >= 0 ? mode : 0644);
1699         if (fd < 0) {
1700                 failure_start(file, line, "Could not create %s", path);
1701                 failure_finish(NULL);
1702                 return (0);
1703         }
1704         if (0 != chmod(path, mode)) {
1705                 failure_start(file, line, "Could not chmod %s", path);
1706                 failure_finish(NULL);
1707                 close(fd);
1708                 return (0);
1709         }
1710         if (contents != NULL) {
1711                 ssize_t wsize;
1712
1713                 if (csize < 0)
1714                         wsize = (ssize_t)strlen(contents);
1715                 else
1716                         wsize = (ssize_t)csize;
1717                 if (wsize != write(fd, contents, wsize)) {
1718                         close(fd);
1719                         failure_start(file, line,
1720                             "Could not write to %s", path);
1721                         failure_finish(NULL);
1722                         close(fd);
1723                         return (0);
1724                 }
1725         }
1726         close(fd);
1727         assertion_file_mode(file, line, path, mode);
1728         return (1);
1729 #endif
1730 }
1731
1732 /* Create a hardlink and report any failures. */
1733 int
1734 assertion_make_hardlink(const char *file, int line,
1735     const char *newpath, const char *linkto)
1736 {
1737         int succeeded;
1738
1739         assertion_count(file, line);
1740 #if defined(_WIN32) && !defined(__CYGWIN__)
1741         succeeded = my_CreateHardLinkA(newpath, linkto);
1742 #elif HAVE_LINK
1743         succeeded = !link(linkto, newpath);
1744 #else
1745         succeeded = 0;
1746 #endif
1747         if (succeeded)
1748                 return (1);
1749         failure_start(file, line, "Could not create hardlink");
1750         logprintf("   New link: %s\n", newpath);
1751         logprintf("   Old name: %s\n", linkto);
1752         failure_finish(NULL);
1753         return(0);
1754 }
1755
1756 /* Create a symlink and report any failures. */
1757 int
1758 assertion_make_symlink(const char *file, int line,
1759     const char *newpath, const char *linkto)
1760 {
1761 #if defined(_WIN32) && !defined(__CYGWIN__)
1762         int targetIsDir = 0;  /* TODO: Fix this */
1763         assertion_count(file, line);
1764         if (my_CreateSymbolicLinkA(newpath, linkto, targetIsDir))
1765                 return (1);
1766 #elif HAVE_SYMLINK
1767         assertion_count(file, line);
1768         if (0 == symlink(linkto, newpath))
1769                 return (1);
1770 #endif
1771         failure_start(file, line, "Could not create symlink");
1772         logprintf("   New link: %s\n", newpath);
1773         logprintf("   Old name: %s\n", linkto);
1774         failure_finish(NULL);
1775         return(0);
1776 }
1777
1778 /* Set umask, report failures. */
1779 int
1780 assertion_umask(const char *file, int line, int mask)
1781 {
1782         assertion_count(file, line);
1783         (void)file; /* UNUSED */
1784         (void)line; /* UNUSED */
1785         umask(mask);
1786         return (1);
1787 }
1788
1789 /* Set times, report failures. */
1790 int
1791 assertion_utimes(const char *file, int line,
1792     const char *pathname, long at, long at_nsec, long mt, long mt_nsec)
1793 {
1794         int r;
1795
1796 #if defined(_WIN32) && !defined(__CYGWIN__)
1797 #define WINTIME(sec, nsec) ((Int32x32To64(sec, 10000000) + EPOC_TIME)\
1798          + (((nsec)/1000)*10))
1799         HANDLE h;
1800         ULARGE_INTEGER wintm;
1801         FILETIME fatime, fmtime;
1802         FILETIME *pat, *pmt;
1803
1804         assertion_count(file, line);
1805         h = CreateFileA(pathname,GENERIC_READ | GENERIC_WRITE,
1806                     FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING,
1807                     FILE_FLAG_BACKUP_SEMANTICS, NULL);
1808         if (h == INVALID_HANDLE_VALUE) {
1809                 failure_start(file, line, "Can't access %s\n", pathname);
1810                 failure_finish(NULL);
1811                 return (0);
1812         }
1813
1814         if (at > 0 || at_nsec > 0) {
1815                 wintm.QuadPart = WINTIME(at, at_nsec);
1816                 fatime.dwLowDateTime = wintm.LowPart;
1817                 fatime.dwHighDateTime = wintm.HighPart;
1818                 pat = &fatime;
1819         } else
1820                 pat = NULL;
1821         if (mt > 0 || mt_nsec > 0) {
1822                 wintm.QuadPart = WINTIME(mt, mt_nsec);
1823                 fmtime.dwLowDateTime = wintm.LowPart;
1824                 fmtime.dwHighDateTime = wintm.HighPart;
1825                 pmt = &fmtime;
1826         } else
1827                 pmt = NULL;
1828         if (pat != NULL || pmt != NULL)
1829                 r = SetFileTime(h, NULL, pat, pmt);
1830         else
1831                 r = 1;
1832         CloseHandle(h);
1833         if (r == 0) {
1834                 failure_start(file, line, "Can't SetFileTime %s\n", pathname);
1835                 failure_finish(NULL);
1836                 return (0);
1837         }
1838         return (1);
1839 #else /* defined(_WIN32) && !defined(__CYGWIN__) */
1840         struct stat st;
1841         struct timeval times[2];
1842
1843 #if !defined(__FreeBSD__)
1844         mt_nsec = at_nsec = 0;  /* Generic POSIX only has whole seconds. */
1845 #endif
1846         if (mt == 0 && mt_nsec == 0 && at == 0 && at_nsec == 0)
1847                 return (1);
1848
1849         r = lstat(pathname, &st);
1850         if (r < 0) {
1851                 failure_start(file, line, "Can't stat %s\n", pathname);
1852                 failure_finish(NULL);
1853                 return (0);
1854         }
1855
1856         if (mt == 0 && mt_nsec == 0) {
1857                 mt = st.st_mtime;
1858 #if defined(__FreeBSD__)
1859                 mt_nsec = st.st_mtimespec.tv_nsec;
1860                 /* FreeBSD generally only stores to microsecond res, so round. */
1861                 mt_nsec = (mt_nsec / 1000) * 1000;
1862 #endif
1863         }
1864         if (at == 0 && at_nsec == 0) {
1865                 at = st.st_atime;
1866 #if defined(__FreeBSD__)
1867                 at_nsec = st.st_atimespec.tv_nsec;
1868                 /* FreeBSD generally only stores to microsecond res, so round. */
1869                 at_nsec = (at_nsec / 1000) * 1000;
1870 #endif
1871         }
1872
1873         times[1].tv_sec = mt;
1874         times[1].tv_usec = mt_nsec / 1000;
1875
1876         times[0].tv_sec = at;
1877         times[0].tv_usec = at_nsec / 1000;
1878
1879 #ifdef HAVE_LUTIMES
1880         r = lutimes(pathname, times);
1881 #else
1882         r = utimes(pathname, times);
1883 #endif
1884         if (r < 0) {
1885                 failure_start(file, line, "Can't utimes %s\n", pathname);
1886                 failure_finish(NULL);
1887                 return (0);
1888         }
1889         return (1);
1890 #endif /* defined(_WIN32) && !defined(__CYGWIN__) */
1891 }
1892
1893 /* Set nodump, report failures. */
1894 int
1895 assertion_nodump(const char *file, int line, const char *pathname)
1896 {
1897 #if defined(HAVE_STRUCT_STAT_ST_FLAGS) && defined(UF_NODUMP)
1898         int r;
1899
1900         assertion_count(file, line);
1901         r = chflags(pathname, UF_NODUMP);
1902         if (r < 0) {
1903                 failure_start(file, line, "Can't set nodump %s\n", pathname);
1904                 failure_finish(NULL);
1905                 return (0);
1906         }
1907 #elif defined(EXT2_IOC_GETFLAGS) && defined(HAVE_WORKING_EXT2_IOC_GETFLAGS)\
1908          && defined(EXT2_NODUMP_FL)
1909         int fd, r, flags;
1910
1911         assertion_count(file, line);
1912         fd = open(pathname, O_RDONLY | O_NONBLOCK);
1913         if (fd < 0) {
1914                 failure_start(file, line, "Can't open %s\n", pathname);
1915                 failure_finish(NULL);
1916                 return (0);
1917         }
1918         r = ioctl(fd, EXT2_IOC_GETFLAGS, &flags);
1919         if (r < 0) {
1920                 failure_start(file, line, "Can't get flags %s\n", pathname);
1921                 failure_finish(NULL);
1922                 return (0);
1923         }
1924         flags |= EXT2_NODUMP_FL;
1925         r = ioctl(fd, EXT2_IOC_SETFLAGS, &flags);
1926         if (r < 0) {
1927                 failure_start(file, line, "Can't set nodump %s\n", pathname);
1928                 failure_finish(NULL);
1929                 return (0);
1930         }
1931         close(fd);
1932 #else
1933         (void)pathname; /* UNUSED */
1934         assertion_count(file, line);
1935 #endif
1936         return (1);
1937 }
1938
1939 /*
1940  *
1941  *  UTILITIES for use by tests.
1942  *
1943  */
1944
1945 /*
1946  * Check whether platform supports symlinks.  This is intended
1947  * for tests to use in deciding whether to bother testing symlink
1948  * support; if the platform doesn't support symlinks, there's no point
1949  * in checking whether the program being tested can create them.
1950  *
1951  * Note that the first time this test is called, we actually go out to
1952  * disk to create and verify a symlink.  This is necessary because
1953  * symlink support is actually a property of a particular filesystem
1954  * and can thus vary between directories on a single system.  After
1955  * the first call, this returns the cached result from memory, so it's
1956  * safe to call it as often as you wish.
1957  */
1958 int
1959 canSymlink(void)
1960 {
1961         /* Remember the test result */
1962         static int value = 0, tested = 0;
1963         if (tested)
1964                 return (value);
1965
1966         ++tested;
1967         assertion_make_file(__FILE__, __LINE__, "canSymlink.0", 0644, 1, "a");
1968         /* Note: Cygwin has its own symlink() emulation that does not
1969          * use the Win32 CreateSymbolicLink() function. */
1970 #if defined(_WIN32) && !defined(__CYGWIN__)
1971         value = my_CreateSymbolicLinkA("canSymlink.1", "canSymlink.0", 0)
1972             && is_symlink(__FILE__, __LINE__, "canSymlink.1", "canSymlink.0");
1973 #elif HAVE_SYMLINK
1974         value = (0 == symlink("canSymlink.0", "canSymlink.1"))
1975             && is_symlink(__FILE__, __LINE__, "canSymlink.1","canSymlink.0");
1976 #endif
1977         return (value);
1978 }
1979
1980 /* Platform-dependent options for hiding the output of a subcommand. */
1981 #if defined(_WIN32) && !defined(__CYGWIN__)
1982 static const char *redirectArgs = ">NUL 2>NUL"; /* Win32 cmd.exe */
1983 #else
1984 static const char *redirectArgs = ">/dev/null 2>/dev/null"; /* POSIX 'sh' */
1985 #endif
1986 /*
1987  * Can this platform run the bzip2 program?
1988  */
1989 int
1990 canBzip2(void)
1991 {
1992         static int tested = 0, value = 0;
1993         if (!tested) {
1994                 tested = 1;
1995                 if (systemf("bzip2 -d -V %s", redirectArgs) == 0)
1996                         value = 1;
1997         }
1998         return (value);
1999 }
2000
2001 /*
2002  * Can this platform run the grzip program?
2003  */
2004 int
2005 canGrzip(void)
2006 {
2007         static int tested = 0, value = 0;
2008         if (!tested) {
2009                 tested = 1;
2010                 if (systemf("grzip -V %s", redirectArgs) == 0)
2011                         value = 1;
2012         }
2013         return (value);
2014 }
2015
2016 /*
2017  * Can this platform run the gzip program?
2018  */
2019 int
2020 canGzip(void)
2021 {
2022         static int tested = 0, value = 0;
2023         if (!tested) {
2024                 tested = 1;
2025                 if (systemf("gzip -V %s", redirectArgs) == 0)
2026                         value = 1;
2027         }
2028         return (value);
2029 }
2030
2031 /*
2032  * Can this platform run the lrzip program?
2033  */
2034 int
2035 canRunCommand(const char *cmd)
2036 {
2037   static int tested = 0, value = 0;
2038   if (!tested) {
2039     tested = 1;
2040     if (systemf("%s %s", cmd, redirectArgs) == 0)
2041       value = 1;
2042   }
2043   return (value);
2044 }
2045
2046 int
2047 canLrzip(void)
2048 {
2049         static int tested = 0, value = 0;
2050         if (!tested) {
2051                 tested = 1;
2052                 if (systemf("lrzip -V %s", redirectArgs) == 0)
2053                         value = 1;
2054         }
2055         return (value);
2056 }
2057
2058 /*
2059  * Can this platform run the lz4 program?
2060  */
2061 int
2062 canLz4(void)
2063 {
2064         static int tested = 0, value = 0;
2065         if (!tested) {
2066                 tested = 1;
2067                 if (systemf("lz4 -V %s", redirectArgs) == 0)
2068                         value = 1;
2069         }
2070         return (value);
2071 }
2072
2073 /*
2074  * Can this platform run the lzip program?
2075  */
2076 int
2077 canLzip(void)
2078 {
2079         static int tested = 0, value = 0;
2080         if (!tested) {
2081                 tested = 1;
2082                 if (systemf("lzip -V %s", redirectArgs) == 0)
2083                         value = 1;
2084         }
2085         return (value);
2086 }
2087
2088 /*
2089  * Can this platform run the lzma program?
2090  */
2091 int
2092 canLzma(void)
2093 {
2094         static int tested = 0, value = 0;
2095         if (!tested) {
2096                 tested = 1;
2097                 if (systemf("lzma -V %s", redirectArgs) == 0)
2098                         value = 1;
2099         }
2100         return (value);
2101 }
2102
2103 /*
2104  * Can this platform run the lzop program?
2105  */
2106 int
2107 canLzop(void)
2108 {
2109         static int tested = 0, value = 0;
2110         if (!tested) {
2111                 tested = 1;
2112                 if (systemf("lzop -V %s", redirectArgs) == 0)
2113                         value = 1;
2114         }
2115         return (value);
2116 }
2117
2118 /*
2119  * Can this platform run the xz program?
2120  */
2121 int
2122 canXz(void)
2123 {
2124         static int tested = 0, value = 0;
2125         if (!tested) {
2126                 tested = 1;
2127                 if (systemf("xz -V %s", redirectArgs) == 0)
2128                         value = 1;
2129         }
2130         return (value);
2131 }
2132
2133 /*
2134  * Can this filesystem handle nodump flags.
2135  */
2136 #if defined(HAVE_STRUCT_STAT_ST_FLAGS) && defined(UF_NODUMP)
2137
2138 int
2139 canNodump(void)
2140 {
2141         const char *path = "cannodumptest";
2142         struct stat sb;
2143
2144         assertion_make_file(__FILE__, __LINE__, path, 0644, 0, NULL);
2145         if (chflags(path, UF_NODUMP) < 0)
2146                 return (0);
2147         if (stat(path, &sb) < 0)
2148                 return (0);
2149         if (sb.st_flags & UF_NODUMP)
2150                 return (1);
2151         return (0);
2152 }
2153
2154 #elif defined(EXT2_IOC_GETFLAGS) && defined(HAVE_WORKING_EXT2_IOC_GETFLAGS)\
2155          && defined(EXT2_NODUMP_FL)
2156
2157 int
2158 canNodump(void)
2159 {
2160         const char *path = "cannodumptest";
2161         int fd, r, flags;
2162
2163         assertion_make_file(__FILE__, __LINE__, path, 0644, 0, NULL);
2164         fd = open(path, O_RDONLY | O_NONBLOCK);
2165         if (fd < 0)
2166                 return (0);
2167         r = ioctl(fd, EXT2_IOC_GETFLAGS, &flags);
2168         if (r < 0)
2169                 return (0);
2170         flags |= EXT2_NODUMP_FL;
2171         r = ioctl(fd, EXT2_IOC_SETFLAGS, &flags);
2172         if (r < 0)
2173                 return (0);
2174         close(fd);
2175         fd = open(path, O_RDONLY | O_NONBLOCK);
2176         if (fd < 0)
2177                 return (0);
2178         r = ioctl(fd, EXT2_IOC_GETFLAGS, &flags);
2179         if (r < 0)
2180                 return (0);
2181         close(fd);
2182         if (flags & EXT2_NODUMP_FL)
2183                 return (1);
2184         return (0);
2185 }
2186
2187 #else
2188
2189 int
2190 canNodump()
2191 {
2192         return (0);
2193 }
2194
2195 #endif
2196
2197 /*
2198  * Sleep as needed; useful for verifying disk timestamp changes by
2199  * ensuring that the wall-clock time has actually changed before we
2200  * go back to re-read something from disk.
2201  */
2202 void
2203 sleepUntilAfter(time_t t)
2204 {
2205         while (t >= time(NULL))
2206 #if defined(_WIN32) && !defined(__CYGWIN__)
2207                 Sleep(500);
2208 #else
2209                 sleep(1);
2210 #endif
2211 }
2212
2213 /*
2214  * Call standard system() call, but build up the command line using
2215  * sprintf() conventions.
2216  */
2217 int
2218 systemf(const char *fmt, ...)
2219 {
2220         char buff[8192];
2221         va_list ap;
2222         int r;
2223
2224         va_start(ap, fmt);
2225         vsprintf(buff, fmt, ap);
2226         if (verbosity > VERBOSITY_FULL)
2227                 logprintf("Cmd: %s\n", buff);
2228         r = system(buff);
2229         va_end(ap);
2230         return (r);
2231 }
2232
2233 /*
2234  * Slurp a file into memory for ease of comparison and testing.
2235  * Returns size of file in 'sizep' if non-NULL, null-terminates
2236  * data in memory for ease of use.
2237  */
2238 char *
2239 slurpfile(size_t * sizep, const char *fmt, ...)
2240 {
2241         char filename[8192];
2242         struct stat st;
2243         va_list ap;
2244         char *p;
2245         ssize_t bytes_read;
2246         FILE *f;
2247         int r;
2248
2249         va_start(ap, fmt);
2250         vsprintf(filename, fmt, ap);
2251         va_end(ap);
2252
2253         f = fopen(filename, "rb");
2254         if (f == NULL) {
2255                 /* Note: No error; non-existent file is okay here. */
2256                 return (NULL);
2257         }
2258         r = fstat(fileno(f), &st);
2259         if (r != 0) {
2260                 logprintf("Can't stat file %s\n", filename);
2261                 fclose(f);
2262                 return (NULL);
2263         }
2264         p = malloc((size_t)st.st_size + 1);
2265         if (p == NULL) {
2266                 logprintf("Can't allocate %ld bytes of memory to read file %s\n",
2267                     (long int)st.st_size, filename);
2268                 fclose(f);
2269                 return (NULL);
2270         }
2271         bytes_read = fread(p, 1, (size_t)st.st_size, f);
2272         if (bytes_read < st.st_size) {
2273                 logprintf("Can't read file %s\n", filename);
2274                 fclose(f);
2275                 free(p);
2276                 return (NULL);
2277         }
2278         p[st.st_size] = '\0';
2279         if (sizep != NULL)
2280                 *sizep = (size_t)st.st_size;
2281         fclose(f);
2282         return (p);
2283 }
2284
2285 /*
2286  * Slurp a file into memory for ease of comparison and testing.
2287  * Returns size of file in 'sizep' if non-NULL, null-terminates
2288  * data in memory for ease of use.
2289  */
2290 void
2291 dumpfile(const char *filename, void *data, size_t len)
2292 {
2293         ssize_t bytes_written;
2294         FILE *f;
2295
2296         f = fopen(filename, "wb");
2297         if (f == NULL) {
2298                 logprintf("Can't open file %s for writing\n", filename);
2299                 return;
2300         }
2301         bytes_written = fwrite(data, 1, len, f);
2302         if (bytes_written < (ssize_t)len)
2303                 logprintf("Can't write file %s\n", filename);
2304         fclose(f);
2305 }
2306
2307 /* Read a uuencoded file from the reference directory, decode, and
2308  * write the result into the current directory. */
2309 #define VALID_UUDECODE(c) (c >= 32 && c <= 96)
2310 #define UUDECODE(c) (((c) - 0x20) & 0x3f)
2311 void
2312 extract_reference_file(const char *name)
2313 {
2314         char buff[1024];
2315         FILE *in, *out;
2316
2317         sprintf(buff, "%s/%s.uu", refdir, name);
2318         in = fopen(buff, "r");
2319         failure("Couldn't open reference file %s", buff);
2320         assert(in != NULL);
2321         if (in == NULL)
2322                 return;
2323         /* Read up to and including the 'begin' line. */
2324         for (;;) {
2325                 if (fgets(buff, sizeof(buff), in) == NULL) {
2326                         /* TODO: This is a failure. */
2327                         return;
2328                 }
2329                 if (memcmp(buff, "begin ", 6) == 0)
2330                         break;
2331         }
2332         /* Now, decode the rest and write it. */
2333         out = fopen(name, "wb");
2334         while (fgets(buff, sizeof(buff), in) != NULL) {
2335                 char *p = buff;
2336                 int bytes;
2337
2338                 if (memcmp(buff, "end", 3) == 0)
2339                         break;
2340
2341                 bytes = UUDECODE(*p++);
2342                 while (bytes > 0) {
2343                         int n = 0;
2344                         /* Write out 1-3 bytes from that. */
2345                         if (bytes > 0) {
2346                                 assert(VALID_UUDECODE(p[0]));
2347                                 assert(VALID_UUDECODE(p[1]));
2348                                 n = UUDECODE(*p++) << 18;
2349                                 n |= UUDECODE(*p++) << 12;
2350                                 fputc(n >> 16, out);
2351                                 --bytes;
2352                         }
2353                         if (bytes > 0) {
2354                                 assert(VALID_UUDECODE(p[0]));
2355                                 n |= UUDECODE(*p++) << 6;
2356                                 fputc((n >> 8) & 0xFF, out);
2357                                 --bytes;
2358                         }
2359                         if (bytes > 0) {
2360                                 assert(VALID_UUDECODE(p[0]));
2361                                 n |= UUDECODE(*p++);
2362                                 fputc(n & 0xFF, out);
2363                                 --bytes;
2364                         }
2365                 }
2366         }
2367         fclose(out);
2368         fclose(in);
2369 }
2370
2371 void
2372 copy_reference_file(const char *name)
2373 {
2374         char buff[1024];
2375         FILE *in, *out;
2376         size_t rbytes;
2377
2378         sprintf(buff, "%s/%s", refdir, name);
2379         in = fopen(buff, "rb");
2380         failure("Couldn't open reference file %s", buff);
2381         assert(in != NULL);
2382         if (in == NULL)
2383                 return;
2384         /* Now, decode the rest and write it. */
2385         /* Not a lot of error checking here; the input better be right. */
2386         out = fopen(name, "wb");
2387         while ((rbytes = fread(buff, 1, sizeof(buff), in)) > 0) {
2388                 if (fwrite(buff, 1, rbytes, out) != rbytes) {
2389                         logprintf("Error: fwrite\n");
2390                         break;
2391                 }
2392         }
2393         fclose(out);
2394         fclose(in);
2395 }
2396
2397 int
2398 is_LargeInode(const char *file)
2399 {
2400 #if defined(_WIN32) && !defined(__CYGWIN__)
2401         BY_HANDLE_FILE_INFORMATION bhfi;
2402         int r;
2403
2404         r = my_GetFileInformationByName(file, &bhfi);
2405         if (r != 0)
2406                 return (0);
2407         return (bhfi.nFileIndexHigh & 0x0000FFFFUL);
2408 #else
2409         struct stat st;
2410         int64_t ino;
2411
2412         if (stat(file, &st) < 0)
2413                 return (0);
2414         ino = (int64_t)st.st_ino;
2415         return (ino > 0xffffffff);
2416 #endif
2417 }
2418
2419 void
2420 extract_reference_files(const char **names)
2421 {
2422         while (names && *names)
2423                 extract_reference_file(*names++);
2424 }
2425
2426 /*
2427  *
2428  * TEST management
2429  *
2430  */
2431
2432 /*
2433  * "list.h" is simply created by "grep DEFINE_TEST test_*.c"; it has
2434  * a line like
2435  *      DEFINE_TEST(test_function)
2436  * for each test.
2437  */
2438
2439 /* Use "list.h" to declare all of the test functions. */
2440 #undef DEFINE_TEST
2441 #define DEFINE_TEST(name) void name(void);
2442 #include "list.h"
2443
2444 /* Use "list.h" to create a list of all tests (functions and names). */
2445 #undef DEFINE_TEST
2446 #define DEFINE_TEST(n) { n, #n, 0 },
2447 struct test_list_t tests[] = {
2448         #include "list.h"
2449 };
2450
2451 /*
2452  * Summarize repeated failures in the just-completed test.
2453  */
2454 static void
2455 test_summarize(int failed, int skips_num)
2456 {
2457         unsigned int i;
2458
2459         switch (verbosity) {
2460         case VERBOSITY_SUMMARY_ONLY:
2461                 printf(failed ? "E" : ".");
2462                 fflush(stdout);
2463                 break;
2464         case VERBOSITY_PASSFAIL:
2465                 printf(failed ? "FAIL\n" : skips_num ? "ok (S)\n" : "ok\n");
2466                 break;
2467         }
2468
2469         log_console = (verbosity == VERBOSITY_LIGHT_REPORT);
2470
2471         for (i = 0; i < sizeof(failed_lines)/sizeof(failed_lines[0]); i++) {
2472                 if (failed_lines[i].count > 1 && !failed_lines[i].skip)
2473                         logprintf("%s:%d: Summary: Failed %d times\n",
2474                             failed_filename, i, failed_lines[i].count);
2475         }
2476         /* Clear the failure history for the next file. */
2477         failed_filename = NULL;
2478         memset(failed_lines, 0, sizeof(failed_lines));
2479 }
2480
2481 /*
2482  * Actually run a single test, with appropriate setup and cleanup.
2483  */
2484 static int
2485 test_run(int i, const char *tmpdir)
2486 {
2487         char workdir[1024];
2488         char logfilename[64];
2489         int failures_before = failures;
2490         int skips_before = skips;
2491         int oldumask;
2492
2493         switch (verbosity) {
2494         case VERBOSITY_SUMMARY_ONLY: /* No per-test reports at all */
2495                 break;
2496         case VERBOSITY_PASSFAIL: /* rest of line will include ok/FAIL marker */
2497                 printf("%3d: %-64s", i, tests[i].name);
2498                 fflush(stdout);
2499                 break;
2500         default: /* Title of test, details will follow */
2501                 printf("%3d: %s\n", i, tests[i].name);
2502         }
2503
2504         /* Chdir to the top-level work directory. */
2505         if (!assertChdir(tmpdir)) {
2506                 fprintf(stderr,
2507                     "ERROR: Can't chdir to top work dir %s\n", tmpdir);
2508                 exit(1);
2509         }
2510         /* Create a log file for this test. */
2511         sprintf(logfilename, "%s.log", tests[i].name);
2512         logfile = fopen(logfilename, "w");
2513         fprintf(logfile, "%s\n\n", tests[i].name);
2514         /* Chdir() to a work dir for this specific test. */
2515         snprintf(workdir, sizeof(workdir), "%s/%s", tmpdir, tests[i].name);
2516         testworkdir = workdir;
2517         if (!assertMakeDir(testworkdir, 0755)
2518             || !assertChdir(testworkdir)) {
2519                 fprintf(stderr,
2520                     "ERROR: Can't chdir to work dir %s\n", testworkdir);
2521                 exit(1);
2522         }
2523         /* Explicitly reset the locale before each test. */
2524         setlocale(LC_ALL, "C");
2525         /* Record the umask before we run the test. */
2526         umask(oldumask = umask(0));
2527         /*
2528          * Run the actual test.
2529          */
2530         (*tests[i].func)();
2531         /*
2532          * Clean up and report afterwards.
2533          */
2534         testworkdir = NULL;
2535         /* Restore umask */
2536         umask(oldumask);
2537         /* Reset locale. */
2538         setlocale(LC_ALL, "C");
2539         /* Reset directory. */
2540         if (!assertChdir(tmpdir)) {
2541                 fprintf(stderr, "ERROR: Couldn't chdir to temp dir %s\n",
2542                     tmpdir);
2543                 exit(1);
2544         }
2545         /* Report per-test summaries. */
2546         tests[i].failures = failures - failures_before;
2547         test_summarize(tests[i].failures, skips - skips_before);
2548         /* Close the per-test log file. */
2549         fclose(logfile);
2550         logfile = NULL;
2551         /* If there were no failures, we can remove the work dir and logfile. */
2552         if (tests[i].failures == 0) {
2553                 if (!keep_temp_files && assertChdir(tmpdir)) {
2554 #if defined(_WIN32) && !defined(__CYGWIN__)
2555                         /* Make sure not to leave empty directories.
2556                          * Sometimes a processing of closing files used by tests
2557                          * is not done, then rmdir will be failed and it will
2558                          * leave a empty test directory. So we should wait a few
2559                          * seconds and retry rmdir. */
2560                         int r, t;
2561                         for (t = 0; t < 10; t++) {
2562                                 if (t > 0)
2563                                         Sleep(1000);
2564                                 r = systemf("rmdir /S /Q %s", tests[i].name);
2565                                 if (r == 0)
2566                                         break;
2567                         }
2568                         systemf("del %s", logfilename);
2569 #else
2570                         systemf("rm -rf %s", tests[i].name);
2571                         systemf("rm %s", logfilename);
2572 #endif
2573                 }
2574         }
2575         /* Return appropriate status. */
2576         return (tests[i].failures);
2577 }
2578
2579 /*
2580  *
2581  *
2582  * MAIN and support routines.
2583  *
2584  *
2585  */
2586
2587 static void
2588 usage(const char *program)
2589 {
2590         static const int limit = sizeof(tests) / sizeof(tests[0]);
2591         int i;
2592
2593         printf("Usage: %s [options] <test> <test> ...\n", program);
2594         printf("Default is to run all tests.\n");
2595         printf("Otherwise, specify the numbers of the tests you wish to run.\n");
2596         printf("Options:\n");
2597         printf("  -d  Dump core after any failure, for debugging.\n");
2598         printf("  -k  Keep all temp files.\n");
2599         printf("      Default: temp files for successful tests deleted.\n");
2600 #ifdef PROGRAM
2601         printf("  -p <path>  Path to executable to be tested.\n");
2602         printf("      Default: path taken from " ENVBASE " environment variable.\n");
2603 #endif
2604         printf("  -q  Quiet.\n");
2605         printf("  -r <dir>   Path to dir containing reference files.\n");
2606         printf("      Default: Current directory.\n");
2607         printf("  -u  Keep running specifies tests until one fails.\n");
2608         printf("  -v  Verbose.\n");
2609         printf("Available tests:\n");
2610         for (i = 0; i < limit; i++)
2611                 printf("  %d: %s\n", i, tests[i].name);
2612         exit(1);
2613 }
2614
2615 static char *
2616 get_refdir(const char *d)
2617 {
2618         size_t tried_size, buff_size;
2619         char *buff, *tried, *pwd = NULL, *p = NULL;
2620
2621 #ifdef PATH_MAX
2622         buff_size = PATH_MAX;
2623 #else
2624         buff_size = 8192;
2625 #endif
2626         buff = calloc(buff_size, 1);
2627         if (buff == NULL) {
2628                 fprintf(stderr, "Unable to allocate memory\n");
2629                 exit(1);
2630         }
2631
2632         /* Allocate a buffer to hold the various directories we checked. */
2633         tried_size = buff_size * 2;
2634         tried = calloc(tried_size, 1);
2635         if (tried == NULL) {
2636                 fprintf(stderr, "Unable to allocate memory\n");
2637                 exit(1);
2638         }
2639
2640         /* If a dir was specified, try that */
2641         if (d != NULL) {
2642                 pwd = NULL;
2643                 snprintf(buff, buff_size, "%s", d);
2644                 p = slurpfile(NULL, "%s/%s", buff, KNOWNREF);
2645                 if (p != NULL) goto success;
2646                 strncat(tried, buff, tried_size - strlen(tried) - 1);
2647                 strncat(tried, "\n", tried_size - strlen(tried) - 1);
2648                 goto failure;
2649         }
2650
2651         /* Get the current dir. */
2652 #ifdef PATH_MAX
2653         pwd = getcwd(NULL, PATH_MAX);/* Solaris getcwd needs the size. */
2654 #else
2655         pwd = getcwd(NULL, 0);
2656 #endif
2657         while (pwd[strlen(pwd) - 1] == '\n')
2658                 pwd[strlen(pwd) - 1] = '\0';
2659
2660         /* Look for a known file. */
2661         snprintf(buff, buff_size, "%s", pwd);
2662         p = slurpfile(NULL, "%s/%s", buff, KNOWNREF);
2663         if (p != NULL) goto success;
2664         strncat(tried, buff, tried_size - strlen(tried) - 1);
2665         strncat(tried, "\n", tried_size - strlen(tried) - 1);
2666
2667         snprintf(buff, buff_size, "%s/test", pwd);
2668         p = slurpfile(NULL, "%s/%s", buff, KNOWNREF);
2669         if (p != NULL) goto success;
2670         strncat(tried, buff, tried_size - strlen(tried) - 1);
2671         strncat(tried, "\n", tried_size - strlen(tried) - 1);
2672
2673 #if defined(LIBRARY)
2674         snprintf(buff, buff_size, "%s/%s/test", pwd, LIBRARY);
2675 #else
2676         snprintf(buff, buff_size, "%s/%s/test", pwd, PROGRAM);
2677 #endif
2678         p = slurpfile(NULL, "%s/%s", buff, KNOWNREF);
2679         if (p != NULL) goto success;
2680         strncat(tried, buff, tried_size - strlen(tried) - 1);
2681         strncat(tried, "\n", tried_size - strlen(tried) - 1);
2682
2683 #if defined(PROGRAM_ALIAS)
2684         snprintf(buff, buff_size, "%s/%s/test", pwd, PROGRAM_ALIAS);
2685         p = slurpfile(NULL, "%s/%s", buff, KNOWNREF);
2686         if (p != NULL) goto success;
2687         strncat(tried, buff, tried_size - strlen(tried) - 1);
2688         strncat(tried, "\n", tried_size - strlen(tried) - 1);
2689 #endif
2690
2691         if (memcmp(pwd, "/usr/obj", 8) == 0) {
2692                 snprintf(buff, buff_size, "%s", pwd + 8);
2693                 p = slurpfile(NULL, "%s/%s", buff, KNOWNREF);
2694                 if (p != NULL) goto success;
2695                 strncat(tried, buff, tried_size - strlen(tried) - 1);
2696                 strncat(tried, "\n", tried_size - strlen(tried) - 1);
2697
2698                 snprintf(buff, buff_size, "%s/test", pwd + 8);
2699                 p = slurpfile(NULL, "%s/%s", buff, KNOWNREF);
2700                 if (p != NULL) goto success;
2701                 strncat(tried, buff, tried_size - strlen(tried) - 1);
2702                 strncat(tried, "\n", tried_size - strlen(tried) - 1);
2703         }
2704
2705 failure:
2706         printf("Unable to locate known reference file %s\n", KNOWNREF);
2707         printf("  Checked following directories:\n%s\n", tried);
2708         printf("Use -r option to specify full path to reference directory\n");
2709 #if defined(_WIN32) && !defined(__CYGWIN__) && defined(_DEBUG)
2710         DebugBreak();
2711 #endif
2712         exit(1);
2713
2714 success:
2715         free(p);
2716         free(pwd);
2717         free(tried);
2718
2719         /* Copy result into a fresh buffer to reduce memory usage. */
2720         p = strdup(buff);
2721         free(buff);
2722         return p;
2723 }
2724
2725 int
2726 main(int argc, char **argv)
2727 {
2728         static const int limit = sizeof(tests) / sizeof(tests[0]);
2729         int test_set[sizeof(tests) / sizeof(tests[0])];
2730         int i = 0, j = 0, tests_run = 0, tests_failed = 0, option;
2731         time_t now;
2732         char *refdir_alloc = NULL;
2733         const char *progname;
2734         char **saved_argv;
2735         const char *tmp, *option_arg, *p;
2736         char tmpdir[256], *pwd, *testprogdir, *tmp2 = NULL, *vlevel = NULL;
2737         char tmpdir_timestamp[256];
2738
2739         (void)argc; /* UNUSED */
2740
2741         /* Get the current dir. */
2742 #ifdef PATH_MAX
2743         pwd = getcwd(NULL, PATH_MAX);/* Solaris getcwd needs the size. */
2744 #else
2745         pwd = getcwd(NULL, 0);
2746 #endif
2747         while (pwd[strlen(pwd) - 1] == '\n')
2748                 pwd[strlen(pwd) - 1] = '\0';
2749
2750 #if defined(HAVE__CrtSetReportMode) && !defined(__WATCOMC__)
2751         /* To stop to run the default invalid parameter handler. */
2752         _set_invalid_parameter_handler(invalid_parameter_handler);
2753         /* Disable annoying assertion message box. */
2754         _CrtSetReportMode(_CRT_ASSERT, 0);
2755 #endif
2756
2757         /*
2758          * Name of this program, used to build root of our temp directory
2759          * tree.
2760          */
2761         progname = p = argv[0];
2762         if ((testprogdir = (char *)malloc(strlen(progname) + 1)) == NULL)
2763         {
2764                 fprintf(stderr, "ERROR: Out of memory.");
2765                 exit(1);
2766         }
2767         strcpy(testprogdir, progname);
2768         while (*p != '\0') {
2769                 /* Support \ or / dir separators for Windows compat. */
2770                 if (*p == '/' || *p == '\\')
2771                 {
2772                         progname = p + 1;
2773                         i = j;
2774                 }
2775                 ++p;
2776                 j++;
2777         }
2778         testprogdir[i] = '\0';
2779 #if defined(_WIN32) && !defined(__CYGWIN__)
2780         if (testprogdir[0] != '/' && testprogdir[0] != '\\' &&
2781             !(((testprogdir[0] >= 'a' && testprogdir[0] <= 'z') ||
2782                (testprogdir[0] >= 'A' && testprogdir[0] <= 'Z')) &&
2783                 testprogdir[1] == ':' &&
2784                 (testprogdir[2] == '/' || testprogdir[2] == '\\')))
2785 #else
2786         if (testprogdir[0] != '/')
2787 #endif
2788         {
2789                 /* Fixup path for relative directories. */
2790                 if ((testprogdir = (char *)realloc(testprogdir,
2791                         strlen(pwd) + 1 + strlen(testprogdir) + 1)) == NULL)
2792                 {
2793                         fprintf(stderr, "ERROR: Out of memory.");
2794                         exit(1);
2795                 }
2796                 memmove(testprogdir + strlen(pwd) + 1, testprogdir,
2797                     strlen(testprogdir) + 1);
2798                 memcpy(testprogdir, pwd, strlen(pwd));
2799                 testprogdir[strlen(pwd)] = '/';
2800         }
2801
2802 #ifdef PROGRAM
2803         /* Get the target program from environment, if available. */
2804         testprogfile = getenv(ENVBASE);
2805 #endif
2806
2807         if (getenv("TMPDIR") != NULL)
2808                 tmp = getenv("TMPDIR");
2809         else if (getenv("TMP") != NULL)
2810                 tmp = getenv("TMP");
2811         else if (getenv("TEMP") != NULL)
2812                 tmp = getenv("TEMP");
2813         else if (getenv("TEMPDIR") != NULL)
2814                 tmp = getenv("TEMPDIR");
2815         else
2816                 tmp = "/tmp";
2817
2818         /* Allow -d to be controlled through the environment. */
2819         if (getenv(ENVBASE "_DEBUG") != NULL)
2820                 dump_on_failure = 1;
2821
2822         /* Allow -v to be controlled through the environment. */
2823         if (getenv("_VERBOSITY_LEVEL") != NULL)
2824         {
2825                 vlevel = getenv("_VERBOSITY_LEVEL");
2826                 verbosity = atoi(vlevel);
2827                 if (verbosity < VERBOSITY_SUMMARY_ONLY || verbosity > VERBOSITY_FULL)
2828                 {
2829                         /* Unsupported verbosity levels are silently ignored */
2830                         vlevel = NULL;
2831                         verbosity = VERBOSITY_PASSFAIL;
2832                 }
2833         }
2834
2835         /* Get the directory holding test files from environment. */
2836         refdir = getenv(ENVBASE "_TEST_FILES");
2837
2838         /*
2839          * Parse options, without using getopt(), which isn't available
2840          * on all platforms.
2841          */
2842         ++argv; /* Skip program name */
2843         while (*argv != NULL) {
2844                 if (**argv != '-')
2845                         break;
2846                 p = *argv++;
2847                 ++p; /* Skip '-' */
2848                 while (*p != '\0') {
2849                         option = *p++;
2850                         option_arg = NULL;
2851                         /* If 'opt' takes an argument, parse that. */
2852                         if (option == 'p' || option == 'r') {
2853                                 if (*p != '\0')
2854                                         option_arg = p;
2855                                 else if (*argv == NULL) {
2856                                         fprintf(stderr,
2857                                             "Option -%c requires argument.\n",
2858                                             option);
2859                                         usage(progname);
2860                                 } else
2861                                         option_arg = *argv++;
2862                                 p = ""; /* End of this option word. */
2863                         }
2864
2865                         /* Now, handle the option. */
2866                         switch (option) {
2867                         case 'd':
2868                                 dump_on_failure = 1;
2869                                 break;
2870                         case 'k':
2871                                 keep_temp_files = 1;
2872                                 break;
2873                         case 'p':
2874 #ifdef PROGRAM
2875                                 testprogfile = option_arg;
2876 #else
2877                                 fprintf(stderr, "-p option not permitted\n");
2878                                 usage(progname);
2879 #endif
2880                                 break;
2881                         case 'q':
2882                                 if (!vlevel)
2883                                         verbosity--;
2884                                 break;
2885                         case 'r':
2886                                 refdir = option_arg;
2887                                 break;
2888                         case 'u':
2889                                 until_failure++;
2890                                 break;
2891                         case 'v':
2892                                 if (!vlevel)
2893                                         verbosity++;
2894                                 break;
2895                         default:
2896                                 fprintf(stderr, "Unrecognized option '%c'\n",
2897                                     option);
2898                                 usage(progname);
2899                         }
2900                 }
2901         }
2902
2903         /*
2904          * Sanity-check that our options make sense.
2905          */
2906 #ifdef PROGRAM
2907         if (testprogfile == NULL)
2908         {
2909                 if ((tmp2 = (char *)malloc(strlen(testprogdir) + 1 +
2910                         strlen(PROGRAM) + 1)) == NULL)
2911                 {
2912                         fprintf(stderr, "ERROR: Out of memory.");
2913                         exit(1);
2914                 }
2915                 strcpy(tmp2, testprogdir);
2916                 strcat(tmp2, "/");
2917                 strcat(tmp2, PROGRAM);
2918                 testprogfile = tmp2;
2919         }
2920
2921         {
2922                 char *testprg;
2923 #if defined(_WIN32) && !defined(__CYGWIN__)
2924                 /* Command.com sometimes rejects '/' separators. */
2925                 testprg = strdup(testprogfile);
2926                 for (i = 0; testprg[i] != '\0'; i++) {
2927                         if (testprg[i] == '/')
2928                                 testprg[i] = '\\';
2929                 }
2930                 testprogfile = testprg;
2931 #endif
2932                 /* Quote the name that gets put into shell command lines. */
2933                 testprg = malloc(strlen(testprogfile) + 3);
2934                 strcpy(testprg, "\"");
2935                 strcat(testprg, testprogfile);
2936                 strcat(testprg, "\"");
2937                 testprog = testprg;
2938         }
2939 #endif
2940
2941 #if !defined(_WIN32) && defined(SIGPIPE)
2942         {   /* Ignore SIGPIPE signals */
2943                 struct sigaction sa;
2944                 sa.sa_handler = SIG_IGN;
2945                 sigemptyset(&sa.sa_mask);
2946                 sa.sa_flags = 0;
2947                 sigaction(SIGPIPE, &sa, NULL);
2948         }
2949 #endif
2950
2951         /*
2952          * Create a temp directory for the following tests.
2953          * Include the time the tests started as part of the name,
2954          * to make it easier to track the results of multiple tests.
2955          */
2956         now = time(NULL);
2957         for (i = 0; ; i++) {
2958                 strftime(tmpdir_timestamp, sizeof(tmpdir_timestamp),
2959                     "%Y-%m-%dT%H.%M.%S",
2960                     localtime(&now));
2961                 sprintf(tmpdir, "%s/%s.%s-%03d", tmp, progname,
2962                     tmpdir_timestamp, i);
2963                 if (assertMakeDir(tmpdir,0755))
2964                         break;
2965                 if (i >= 999) {
2966                         fprintf(stderr,
2967                             "ERROR: Unable to create temp directory %s\n",
2968                             tmpdir);
2969                         exit(1);
2970                 }
2971         }
2972
2973         /*
2974          * If the user didn't specify a directory for locating
2975          * reference files, try to find the reference files in
2976          * the "usual places."
2977          */
2978         refdir = refdir_alloc = get_refdir(refdir);
2979
2980         /*
2981          * Banner with basic information.
2982          */
2983         printf("\n");
2984         printf("If tests fail or crash, details will be in:\n");
2985         printf("   %s\n", tmpdir);
2986         printf("\n");
2987         if (verbosity > VERBOSITY_SUMMARY_ONLY) {
2988                 printf("Reference files will be read from: %s\n", refdir);
2989 #ifdef PROGRAM
2990                 printf("Running tests on: %s\n", testprog);
2991 #endif
2992                 printf("Exercising: ");
2993                 fflush(stdout);
2994                 printf("%s\n", EXTRA_VERSION);
2995         } else {
2996                 printf("Running ");
2997                 fflush(stdout);
2998         }
2999
3000         /*
3001          * Run some or all of the individual tests.
3002          */
3003         saved_argv = argv;
3004         do {
3005                 argv = saved_argv;
3006                 do {
3007                         int test_num;
3008
3009                         test_num = get_test_set(test_set, limit, *argv, tests);
3010                         if (test_num < 0) {
3011                                 printf("*** INVALID Test %s\n", *argv);
3012                                 free(refdir_alloc);
3013                                 free(testprogdir);
3014                                 usage(progname);
3015                                 return (1);
3016                         }
3017                         for (i = 0; i < test_num; i++) {
3018                                 tests_run++;
3019                                 if (test_run(test_set[i], tmpdir)) {
3020                                         tests_failed++;
3021                                         if (until_failure)
3022                                                 goto finish;
3023                                 }
3024                         }
3025                         if (*argv != NULL)
3026                                 argv++;
3027                 } while (*argv != NULL);
3028         } while (until_failure);
3029
3030 finish:
3031         /* Must be freed after all tests run */
3032         free(tmp2);
3033         free(testprogdir);
3034         free(pwd);
3035
3036         /*
3037          * Report summary statistics.
3038          */
3039         if (verbosity > VERBOSITY_SUMMARY_ONLY) {
3040                 printf("\n");
3041                 printf("Totals:\n");
3042                 printf("  Tests run:         %8d\n", tests_run);
3043                 printf("  Tests failed:      %8d\n", tests_failed);
3044                 printf("  Assertions checked:%8d\n", assertions);
3045                 printf("  Assertions failed: %8d\n", failures);
3046                 printf("  Skips reported:    %8d\n", skips);
3047         }
3048         if (failures) {
3049                 printf("\n");
3050                 printf("Failing tests:\n");
3051                 for (i = 0; i < limit; ++i) {
3052                         if (tests[i].failures)
3053                                 printf("  %d: %s (%d failures)\n", i,
3054                                     tests[i].name, tests[i].failures);
3055                 }
3056                 printf("\n");
3057                 printf("Details for failing tests: %s\n", tmpdir);
3058                 printf("\n");
3059         } else {
3060                 if (verbosity == VERBOSITY_SUMMARY_ONLY)
3061                         printf("\n");
3062                 printf("%d tests passed, no failures\n", tests_run);
3063         }
3064
3065         free(refdir_alloc);
3066
3067         /* If the final tmpdir is empty, we can remove it. */
3068         /* This should be the usual case when all tests succeed. */
3069         assertChdir("..");
3070         rmdir(tmpdir);
3071
3072         return (tests_failed ? 1 : 0);
3073 }