]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - contrib/libarchive/cpio/test/main.c
MFC r307215:
[FreeBSD/stable/10.git] / contrib / libarchive / cpio / 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_option_f.cpio.uu"
65 #define ENVBASE "BSDCPIO" /* Prefix for environment variables. */
66 #define PROGRAM "bsdcpio" /* Name of program being tested. */
67 #define PROGRAM_ALIAS "cpio" /* 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 /* Test that two paths point to the same file. */
1168 /* As a side-effect, asserts that both files exist. */
1169 static int
1170 is_hardlink(const char *file, int line,
1171     const char *path1, const char *path2)
1172 {
1173 #if defined(_WIN32) && !defined(__CYGWIN__)
1174         BY_HANDLE_FILE_INFORMATION bhfi1, bhfi2;
1175         int r;
1176
1177         assertion_count(file, line);
1178         r = my_GetFileInformationByName(path1, &bhfi1);
1179         if (r == 0) {
1180                 failure_start(file, line, "File %s can't be inspected?", path1);
1181                 failure_finish(NULL);
1182                 return (0);
1183         }
1184         r = my_GetFileInformationByName(path2, &bhfi2);
1185         if (r == 0) {
1186                 failure_start(file, line, "File %s can't be inspected?", path2);
1187                 failure_finish(NULL);
1188                 return (0);
1189         }
1190         return (bhfi1.dwVolumeSerialNumber == bhfi2.dwVolumeSerialNumber
1191                 && bhfi1.nFileIndexHigh == bhfi2.nFileIndexHigh
1192                 && bhfi1.nFileIndexLow == bhfi2.nFileIndexLow);
1193 #else
1194         struct stat st1, st2;
1195         int r;
1196
1197         assertion_count(file, line);
1198         r = lstat(path1, &st1);
1199         if (r != 0) {
1200                 failure_start(file, line, "File should exist: %s", path1);
1201                 failure_finish(NULL);
1202                 return (0);
1203         }
1204         r = lstat(path2, &st2);
1205         if (r != 0) {
1206                 failure_start(file, line, "File should exist: %s", path2);
1207                 failure_finish(NULL);
1208                 return (0);
1209         }
1210         return (st1.st_ino == st2.st_ino && st1.st_dev == st2.st_dev);
1211 #endif
1212 }
1213
1214 int
1215 assertion_is_hardlink(const char *file, int line,
1216     const char *path1, const char *path2)
1217 {
1218         if (is_hardlink(file, line, path1, path2))
1219                 return (1);
1220         failure_start(file, line,
1221             "Files %s and %s are not hardlinked", path1, path2);
1222         failure_finish(NULL);
1223         return (0);
1224 }
1225
1226 int
1227 assertion_is_not_hardlink(const char *file, int line,
1228     const char *path1, const char *path2)
1229 {
1230         if (!is_hardlink(file, line, path1, path2))
1231                 return (1);
1232         failure_start(file, line,
1233             "Files %s and %s should not be hardlinked", path1, path2);
1234         failure_finish(NULL);
1235         return (0);
1236 }
1237
1238 /* Verify a/b/mtime of 'pathname'. */
1239 /* If 'recent', verify that it's within last 10 seconds. */
1240 static int
1241 assertion_file_time(const char *file, int line,
1242     const char *pathname, long t, long nsec, char type, int recent)
1243 {
1244         long long filet, filet_nsec;
1245         int r;
1246
1247 #if defined(_WIN32) && !defined(__CYGWIN__)
1248 #define EPOC_TIME       (116444736000000000ULL)
1249         FILETIME fxtime, fbirthtime, fatime, fmtime;
1250         ULARGE_INTEGER wintm;
1251         HANDLE h;
1252         fxtime.dwLowDateTime = 0;
1253         fxtime.dwHighDateTime = 0;
1254
1255         assertion_count(file, line);
1256         /* Note: FILE_FLAG_BACKUP_SEMANTICS applies to open
1257          * a directory file. If not, CreateFile() will fail when
1258          * the pathname is a directory. */
1259         h = CreateFile(pathname, FILE_READ_ATTRIBUTES, 0, NULL,
1260             OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
1261         if (h == INVALID_HANDLE_VALUE) {
1262                 failure_start(file, line, "Can't access %s\n", pathname);
1263                 failure_finish(NULL);
1264                 return (0);
1265         }
1266         r = GetFileTime(h, &fbirthtime, &fatime, &fmtime);
1267         switch (type) {
1268         case 'a': fxtime = fatime; break;
1269         case 'b': fxtime = fbirthtime; break;
1270         case 'm': fxtime = fmtime; break;
1271         }
1272         CloseHandle(h);
1273         if (r == 0) {
1274                 failure_start(file, line, "Can't GetFileTime %s\n", pathname);
1275                 failure_finish(NULL);
1276                 return (0);
1277         }
1278         wintm.LowPart = fxtime.dwLowDateTime;
1279         wintm.HighPart = fxtime.dwHighDateTime;
1280         filet = (wintm.QuadPart - EPOC_TIME) / 10000000;
1281         filet_nsec = ((wintm.QuadPart - EPOC_TIME) % 10000000) * 100;
1282         nsec = (nsec / 100) * 100; /* Round the request */
1283 #else
1284         struct stat st;
1285
1286         assertion_count(file, line);
1287         r = lstat(pathname, &st);
1288         if (r != 0) {
1289                 failure_start(file, line, "Can't stat %s\n", pathname);
1290                 failure_finish(NULL);
1291                 return (0);
1292         }
1293         switch (type) {
1294         case 'a': filet = st.st_atime; break;
1295         case 'm': filet = st.st_mtime; break;
1296         case 'b': filet = 0; break;
1297         default: fprintf(stderr, "INTERNAL: Bad type %c for file time", type);
1298                 exit(1);
1299         }
1300 #if defined(__FreeBSD__)
1301         switch (type) {
1302         case 'a': filet_nsec = st.st_atimespec.tv_nsec; break;
1303         case 'b': filet = st.st_birthtime;
1304                 /* FreeBSD filesystems that don't support birthtime
1305                  * (e.g., UFS1) always return -1 here. */
1306                 if (filet == -1) {
1307                         return (1);
1308                 }
1309                 filet_nsec = st.st_birthtimespec.tv_nsec; break;
1310         case 'm': filet_nsec = st.st_mtimespec.tv_nsec; break;
1311         default: fprintf(stderr, "INTERNAL: Bad type %c for file time", type);
1312                 exit(1);
1313         }
1314         /* FreeBSD generally only stores to microsecond res, so round. */
1315         filet_nsec = (filet_nsec / 1000) * 1000;
1316         nsec = (nsec / 1000) * 1000;
1317 #else
1318         filet_nsec = nsec = 0;  /* Generic POSIX only has whole seconds. */
1319         if (type == 'b') return (1); /* Generic POSIX doesn't have birthtime */
1320 #if defined(__HAIKU__)
1321         if (type == 'a') return (1); /* Haiku doesn't have atime. */
1322 #endif
1323 #endif
1324 #endif
1325         if (recent) {
1326                 /* Check that requested time is up-to-date. */
1327                 time_t now = time(NULL);
1328                 if (filet < now - 10 || filet > now + 1) {
1329                         failure_start(file, line,
1330                             "File %s has %ctime %lld, %lld seconds ago\n",
1331                             pathname, type, filet, now - filet);
1332                         failure_finish(NULL);
1333                         return (0);
1334                 }
1335         } else if (filet != t || filet_nsec != nsec) {
1336                 failure_start(file, line,
1337                     "File %s has %ctime %lld.%09lld, expected %lld.%09lld",
1338                     pathname, type, filet, filet_nsec, t, nsec);
1339                 failure_finish(NULL);
1340                 return (0);
1341         }
1342         return (1);
1343 }
1344
1345 /* Verify atime of 'pathname'. */
1346 int
1347 assertion_file_atime(const char *file, int line,
1348     const char *pathname, long t, long nsec)
1349 {
1350         return assertion_file_time(file, line, pathname, t, nsec, 'a', 0);
1351 }
1352
1353 /* Verify atime of 'pathname' is up-to-date. */
1354 int
1355 assertion_file_atime_recent(const char *file, int line, const char *pathname)
1356 {
1357         return assertion_file_time(file, line, pathname, 0, 0, 'a', 1);
1358 }
1359
1360 /* Verify birthtime of 'pathname'. */
1361 int
1362 assertion_file_birthtime(const char *file, int line,
1363     const char *pathname, long t, long nsec)
1364 {
1365         return assertion_file_time(file, line, pathname, t, nsec, 'b', 0);
1366 }
1367
1368 /* Verify birthtime of 'pathname' is up-to-date. */
1369 int
1370 assertion_file_birthtime_recent(const char *file, int line,
1371     const char *pathname)
1372 {
1373         return assertion_file_time(file, line, pathname, 0, 0, 'b', 1);
1374 }
1375
1376 /* Verify mode of 'pathname'. */
1377 int
1378 assertion_file_mode(const char *file, int line, const char *pathname, int expected_mode)
1379 {
1380         int mode;
1381         int r;
1382
1383         assertion_count(file, line);
1384 #if defined(_WIN32) && !defined(__CYGWIN__)
1385         failure_start(file, line, "assertFileMode not yet implemented for Windows");
1386 #else
1387         {
1388                 struct stat st;
1389                 r = lstat(pathname, &st);
1390                 mode = (int)(st.st_mode & 0777);
1391         }
1392         if (r == 0 && mode == expected_mode)
1393                         return (1);
1394         failure_start(file, line, "File %s has mode %o, expected %o",
1395             pathname, mode, expected_mode);
1396 #endif
1397         failure_finish(NULL);
1398         return (0);
1399 }
1400
1401 /* Verify mtime of 'pathname'. */
1402 int
1403 assertion_file_mtime(const char *file, int line,
1404     const char *pathname, long t, long nsec)
1405 {
1406         return assertion_file_time(file, line, pathname, t, nsec, 'm', 0);
1407 }
1408
1409 /* Verify mtime of 'pathname' is up-to-date. */
1410 int
1411 assertion_file_mtime_recent(const char *file, int line, const char *pathname)
1412 {
1413         return assertion_file_time(file, line, pathname, 0, 0, 'm', 1);
1414 }
1415
1416 /* Verify number of links to 'pathname'. */
1417 int
1418 assertion_file_nlinks(const char *file, int line,
1419     const char *pathname, int nlinks)
1420 {
1421 #if defined(_WIN32) && !defined(__CYGWIN__)
1422         BY_HANDLE_FILE_INFORMATION bhfi;
1423         int r;
1424
1425         assertion_count(file, line);
1426         r = my_GetFileInformationByName(pathname, &bhfi);
1427         if (r != 0 && bhfi.nNumberOfLinks == (DWORD)nlinks)
1428                 return (1);
1429         failure_start(file, line, "File %s has %d links, expected %d",
1430             pathname, bhfi.nNumberOfLinks, nlinks);
1431         failure_finish(NULL);
1432         return (0);
1433 #else
1434         struct stat st;
1435         int r;
1436
1437         assertion_count(file, line);
1438         r = lstat(pathname, &st);
1439         if (r == 0 && (int)st.st_nlink == nlinks)
1440                 return (1);
1441         failure_start(file, line, "File %s has %d links, expected %d",
1442             pathname, st.st_nlink, nlinks);
1443         failure_finish(NULL);
1444         return (0);
1445 #endif
1446 }
1447
1448 /* Verify size of 'pathname'. */
1449 int
1450 assertion_file_size(const char *file, int line, const char *pathname, long size)
1451 {
1452         int64_t filesize;
1453         int r;
1454
1455         assertion_count(file, line);
1456 #if defined(_WIN32) && !defined(__CYGWIN__)
1457         {
1458                 BY_HANDLE_FILE_INFORMATION bhfi;
1459                 r = !my_GetFileInformationByName(pathname, &bhfi);
1460                 filesize = ((int64_t)bhfi.nFileSizeHigh << 32) + bhfi.nFileSizeLow;
1461         }
1462 #else
1463         {
1464                 struct stat st;
1465                 r = lstat(pathname, &st);
1466                 filesize = st.st_size;
1467         }
1468 #endif
1469         if (r == 0 && filesize == size)
1470                         return (1);
1471         failure_start(file, line, "File %s has size %ld, expected %ld",
1472             pathname, (long)filesize, (long)size);
1473         failure_finish(NULL);
1474         return (0);
1475 }
1476
1477 /* Assert that 'pathname' is a dir.  If mode >= 0, verify that too. */
1478 int
1479 assertion_is_dir(const char *file, int line, const char *pathname, int mode)
1480 {
1481         struct stat st;
1482         int r;
1483
1484 #if defined(_WIN32) && !defined(__CYGWIN__)
1485         (void)mode; /* UNUSED */
1486 #endif
1487         assertion_count(file, line);
1488         r = lstat(pathname, &st);
1489         if (r != 0) {
1490                 failure_start(file, line, "Dir should exist: %s", pathname);
1491                 failure_finish(NULL);
1492                 return (0);
1493         }
1494         if (!S_ISDIR(st.st_mode)) {
1495                 failure_start(file, line, "%s is not a dir", pathname);
1496                 failure_finish(NULL);
1497                 return (0);
1498         }
1499 #if !defined(_WIN32) || defined(__CYGWIN__)
1500         /* Windows doesn't handle permissions the same way as POSIX,
1501          * so just ignore the mode tests. */
1502         /* TODO: Can we do better here? */
1503         if (mode >= 0 && (mode_t)mode != (st.st_mode & 07777)) {
1504                 failure_start(file, line, "Dir %s has wrong mode", pathname);
1505                 logprintf("  Expected: 0%3o\n", mode);
1506                 logprintf("  Found: 0%3o\n", st.st_mode & 07777);
1507                 failure_finish(NULL);
1508                 return (0);
1509         }
1510 #endif
1511         return (1);
1512 }
1513
1514 /* Verify that 'pathname' is a regular file.  If 'mode' is >= 0,
1515  * verify that too. */
1516 int
1517 assertion_is_reg(const char *file, int line, const char *pathname, int mode)
1518 {
1519         struct stat st;
1520         int r;
1521
1522 #if defined(_WIN32) && !defined(__CYGWIN__)
1523         (void)mode; /* UNUSED */
1524 #endif
1525         assertion_count(file, line);
1526         r = lstat(pathname, &st);
1527         if (r != 0 || !S_ISREG(st.st_mode)) {
1528                 failure_start(file, line, "File should exist: %s", pathname);
1529                 failure_finish(NULL);
1530                 return (0);
1531         }
1532 #if !defined(_WIN32) || defined(__CYGWIN__)
1533         /* Windows doesn't handle permissions the same way as POSIX,
1534          * so just ignore the mode tests. */
1535         /* TODO: Can we do better here? */
1536         if (mode >= 0 && (mode_t)mode != (st.st_mode & 07777)) {
1537                 failure_start(file, line, "File %s has wrong mode", pathname);
1538                 logprintf("  Expected: 0%3o\n", mode);
1539                 logprintf("  Found: 0%3o\n", st.st_mode & 07777);
1540                 failure_finish(NULL);
1541                 return (0);
1542         }
1543 #endif
1544         return (1);
1545 }
1546
1547 /* Check whether 'pathname' is a symbolic link.  If 'contents' is
1548  * non-NULL, verify that the symlink has those contents. */
1549 static int
1550 is_symlink(const char *file, int line,
1551     const char *pathname, const char *contents)
1552 {
1553 #if defined(_WIN32) && !defined(__CYGWIN__)
1554         (void)pathname; /* UNUSED */
1555         (void)contents; /* UNUSED */
1556         assertion_count(file, line);
1557         /* Windows sort-of has real symlinks, but they're only usable
1558          * by privileged users and are crippled even then, so there's
1559          * really not much point in bothering with this. */
1560         return (0);
1561 #else
1562         char buff[300];
1563         struct stat st;
1564         ssize_t linklen;
1565         int r;
1566
1567         assertion_count(file, line);
1568         r = lstat(pathname, &st);
1569         if (r != 0) {
1570                 failure_start(file, line,
1571                     "Symlink should exist: %s", pathname);
1572                 failure_finish(NULL);
1573                 return (0);
1574         }
1575         if (!S_ISLNK(st.st_mode))
1576                 return (0);
1577         if (contents == NULL)
1578                 return (1);
1579         linklen = readlink(pathname, buff, sizeof(buff));
1580         if (linklen < 0) {
1581                 failure_start(file, line, "Can't read symlink %s", pathname);
1582                 failure_finish(NULL);
1583                 return (0);
1584         }
1585         buff[linklen] = '\0';
1586         if (strcmp(buff, contents) != 0)
1587                 return (0);
1588         return (1);
1589 #endif
1590 }
1591
1592 /* Assert that path is a symlink that (optionally) contains contents. */
1593 int
1594 assertion_is_symlink(const char *file, int line,
1595     const char *path, const char *contents)
1596 {
1597         if (is_symlink(file, line, path, contents))
1598                 return (1);
1599         if (contents)
1600                 failure_start(file, line, "File %s is not a symlink to %s",
1601                     path, contents);
1602         else
1603                 failure_start(file, line, "File %s is not a symlink", path);
1604         failure_finish(NULL);
1605         return (0);
1606 }
1607
1608
1609 /* Create a directory and report any errors. */
1610 int
1611 assertion_make_dir(const char *file, int line, const char *dirname, int mode)
1612 {
1613         assertion_count(file, line);
1614 #if defined(_WIN32) && !defined(__CYGWIN__)
1615         (void)mode; /* UNUSED */
1616         if (0 == _mkdir(dirname))
1617                 return (1);
1618 #else
1619         if (0 == mkdir(dirname, mode)) {
1620                 if (0 == chmod(dirname, mode)) {
1621                         assertion_file_mode(file, line, dirname, mode);
1622                         return (1);
1623                 }
1624         }
1625 #endif
1626         failure_start(file, line, "Could not create directory %s", dirname);
1627         failure_finish(NULL);
1628         return(0);
1629 }
1630
1631 /* Create a file with the specified contents and report any failures. */
1632 int
1633 assertion_make_file(const char *file, int line,
1634     const char *path, int mode, int csize, const void *contents)
1635 {
1636 #if defined(_WIN32) && !defined(__CYGWIN__)
1637         /* TODO: Rework this to set file mode as well. */
1638         FILE *f;
1639         (void)mode; /* UNUSED */
1640         assertion_count(file, line);
1641         f = fopen(path, "wb");
1642         if (f == NULL) {
1643                 failure_start(file, line, "Could not create file %s", path);
1644                 failure_finish(NULL);
1645                 return (0);
1646         }
1647         if (contents != NULL) {
1648                 size_t wsize;
1649
1650                 if (csize < 0)
1651                         wsize = strlen(contents);
1652                 else
1653                         wsize = (size_t)csize;
1654                 if (wsize != fwrite(contents, 1, wsize, f)) {
1655                         fclose(f);
1656                         failure_start(file, line,
1657                             "Could not write file %s", path);
1658                         failure_finish(NULL);
1659                         return (0);
1660                 }
1661         }
1662         fclose(f);
1663         return (1);
1664 #else
1665         int fd;
1666         assertion_count(file, line);
1667         fd = open(path, O_CREAT | O_WRONLY, mode >= 0 ? mode : 0644);
1668         if (fd < 0) {
1669                 failure_start(file, line, "Could not create %s", path);
1670                 failure_finish(NULL);
1671                 return (0);
1672         }
1673         if (0 != chmod(path, mode)) {
1674                 failure_start(file, line, "Could not chmod %s", path);
1675                 failure_finish(NULL);
1676                 close(fd);
1677                 return (0);
1678         }
1679         if (contents != NULL) {
1680                 ssize_t wsize;
1681
1682                 if (csize < 0)
1683                         wsize = (ssize_t)strlen(contents);
1684                 else
1685                         wsize = (ssize_t)csize;
1686                 if (wsize != write(fd, contents, wsize)) {
1687                         close(fd);
1688                         failure_start(file, line,
1689                             "Could not write to %s", path);
1690                         failure_finish(NULL);
1691                         close(fd);
1692                         return (0);
1693                 }
1694         }
1695         close(fd);
1696         assertion_file_mode(file, line, path, mode);
1697         return (1);
1698 #endif
1699 }
1700
1701 /* Create a hardlink and report any failures. */
1702 int
1703 assertion_make_hardlink(const char *file, int line,
1704     const char *newpath, const char *linkto)
1705 {
1706         int succeeded;
1707
1708         assertion_count(file, line);
1709 #if defined(_WIN32) && !defined(__CYGWIN__)
1710         succeeded = my_CreateHardLinkA(newpath, linkto);
1711 #elif HAVE_LINK
1712         succeeded = !link(linkto, newpath);
1713 #else
1714         succeeded = 0;
1715 #endif
1716         if (succeeded)
1717                 return (1);
1718         failure_start(file, line, "Could not create hardlink");
1719         logprintf("   New link: %s\n", newpath);
1720         logprintf("   Old name: %s\n", linkto);
1721         failure_finish(NULL);
1722         return(0);
1723 }
1724
1725 /* Create a symlink and report any failures. */
1726 int
1727 assertion_make_symlink(const char *file, int line,
1728     const char *newpath, const char *linkto)
1729 {
1730 #if defined(_WIN32) && !defined(__CYGWIN__)
1731         int targetIsDir = 0;  /* TODO: Fix this */
1732         assertion_count(file, line);
1733         if (my_CreateSymbolicLinkA(newpath, linkto, targetIsDir))
1734                 return (1);
1735 #elif HAVE_SYMLINK
1736         assertion_count(file, line);
1737         if (0 == symlink(linkto, newpath))
1738                 return (1);
1739 #endif
1740         failure_start(file, line, "Could not create symlink");
1741         logprintf("   New link: %s\n", newpath);
1742         logprintf("   Old name: %s\n", linkto);
1743         failure_finish(NULL);
1744         return(0);
1745 }
1746
1747 /* Set umask, report failures. */
1748 int
1749 assertion_umask(const char *file, int line, int mask)
1750 {
1751         assertion_count(file, line);
1752         (void)file; /* UNUSED */
1753         (void)line; /* UNUSED */
1754         umask(mask);
1755         return (1);
1756 }
1757
1758 /* Set times, report failures. */
1759 int
1760 assertion_utimes(const char *file, int line,
1761     const char *pathname, long at, long at_nsec, long mt, long mt_nsec)
1762 {
1763         int r;
1764
1765 #if defined(_WIN32) && !defined(__CYGWIN__)
1766 #define WINTIME(sec, nsec) ((Int32x32To64(sec, 10000000) + EPOC_TIME)\
1767          + (((nsec)/1000)*10))
1768         HANDLE h;
1769         ULARGE_INTEGER wintm;
1770         FILETIME fatime, fmtime;
1771         FILETIME *pat, *pmt;
1772
1773         assertion_count(file, line);
1774         h = CreateFileA(pathname,GENERIC_READ | GENERIC_WRITE,
1775                     FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING,
1776                     FILE_FLAG_BACKUP_SEMANTICS, NULL);
1777         if (h == INVALID_HANDLE_VALUE) {
1778                 failure_start(file, line, "Can't access %s\n", pathname);
1779                 failure_finish(NULL);
1780                 return (0);
1781         }
1782
1783         if (at > 0 || at_nsec > 0) {
1784                 wintm.QuadPart = WINTIME(at, at_nsec);
1785                 fatime.dwLowDateTime = wintm.LowPart;
1786                 fatime.dwHighDateTime = wintm.HighPart;
1787                 pat = &fatime;
1788         } else
1789                 pat = NULL;
1790         if (mt > 0 || mt_nsec > 0) {
1791                 wintm.QuadPart = WINTIME(mt, mt_nsec);
1792                 fmtime.dwLowDateTime = wintm.LowPart;
1793                 fmtime.dwHighDateTime = wintm.HighPart;
1794                 pmt = &fmtime;
1795         } else
1796                 pmt = NULL;
1797         if (pat != NULL || pmt != NULL)
1798                 r = SetFileTime(h, NULL, pat, pmt);
1799         else
1800                 r = 1;
1801         CloseHandle(h);
1802         if (r == 0) {
1803                 failure_start(file, line, "Can't SetFileTime %s\n", pathname);
1804                 failure_finish(NULL);
1805                 return (0);
1806         }
1807         return (1);
1808 #else /* defined(_WIN32) && !defined(__CYGWIN__) */
1809         struct stat st;
1810         struct timeval times[2];
1811
1812 #if !defined(__FreeBSD__)
1813         mt_nsec = at_nsec = 0;  /* Generic POSIX only has whole seconds. */
1814 #endif
1815         if (mt == 0 && mt_nsec == 0 && at == 0 && at_nsec == 0)
1816                 return (1);
1817
1818         r = lstat(pathname, &st);
1819         if (r < 0) {
1820                 failure_start(file, line, "Can't stat %s\n", pathname);
1821                 failure_finish(NULL);
1822                 return (0);
1823         }
1824
1825         if (mt == 0 && mt_nsec == 0) {
1826                 mt = st.st_mtime;
1827 #if defined(__FreeBSD__)
1828                 mt_nsec = st.st_mtimespec.tv_nsec;
1829                 /* FreeBSD generally only stores to microsecond res, so round. */
1830                 mt_nsec = (mt_nsec / 1000) * 1000;
1831 #endif
1832         }
1833         if (at == 0 && at_nsec == 0) {
1834                 at = st.st_atime;
1835 #if defined(__FreeBSD__)
1836                 at_nsec = st.st_atimespec.tv_nsec;
1837                 /* FreeBSD generally only stores to microsecond res, so round. */
1838                 at_nsec = (at_nsec / 1000) * 1000;
1839 #endif
1840         }
1841
1842         times[1].tv_sec = mt;
1843         times[1].tv_usec = mt_nsec / 1000;
1844
1845         times[0].tv_sec = at;
1846         times[0].tv_usec = at_nsec / 1000;
1847
1848 #ifdef HAVE_LUTIMES
1849         r = lutimes(pathname, times);
1850 #else
1851         r = utimes(pathname, times);
1852 #endif
1853         if (r < 0) {
1854                 failure_start(file, line, "Can't utimes %s\n", pathname);
1855                 failure_finish(NULL);
1856                 return (0);
1857         }
1858         return (1);
1859 #endif /* defined(_WIN32) && !defined(__CYGWIN__) */
1860 }
1861
1862 /* Set nodump, report failures. */
1863 int
1864 assertion_nodump(const char *file, int line, const char *pathname)
1865 {
1866 #if defined(HAVE_STRUCT_STAT_ST_FLAGS) && defined(UF_NODUMP)
1867         int r;
1868
1869         assertion_count(file, line);
1870         r = chflags(pathname, UF_NODUMP);
1871         if (r < 0) {
1872                 failure_start(file, line, "Can't set nodump %s\n", pathname);
1873                 failure_finish(NULL);
1874                 return (0);
1875         }
1876 #elif defined(EXT2_IOC_GETFLAGS) && defined(HAVE_WORKING_EXT2_IOC_GETFLAGS)\
1877          && defined(EXT2_NODUMP_FL)
1878         int fd, r, flags;
1879
1880         assertion_count(file, line);
1881         fd = open(pathname, O_RDONLY | O_NONBLOCK);
1882         if (fd < 0) {
1883                 failure_start(file, line, "Can't open %s\n", pathname);
1884                 failure_finish(NULL);
1885                 return (0);
1886         }
1887         r = ioctl(fd, EXT2_IOC_GETFLAGS, &flags);
1888         if (r < 0) {
1889                 failure_start(file, line, "Can't get flags %s\n", pathname);
1890                 failure_finish(NULL);
1891                 return (0);
1892         }
1893         flags |= EXT2_NODUMP_FL;
1894         r = ioctl(fd, EXT2_IOC_SETFLAGS, &flags);
1895         if (r < 0) {
1896                 failure_start(file, line, "Can't set nodump %s\n", pathname);
1897                 failure_finish(NULL);
1898                 return (0);
1899         }
1900         close(fd);
1901 #else
1902         (void)pathname; /* UNUSED */
1903         assertion_count(file, line);
1904 #endif
1905         return (1);
1906 }
1907
1908 /*
1909  *
1910  *  UTILITIES for use by tests.
1911  *
1912  */
1913
1914 /*
1915  * Check whether platform supports symlinks.  This is intended
1916  * for tests to use in deciding whether to bother testing symlink
1917  * support; if the platform doesn't support symlinks, there's no point
1918  * in checking whether the program being tested can create them.
1919  *
1920  * Note that the first time this test is called, we actually go out to
1921  * disk to create and verify a symlink.  This is necessary because
1922  * symlink support is actually a property of a particular filesystem
1923  * and can thus vary between directories on a single system.  After
1924  * the first call, this returns the cached result from memory, so it's
1925  * safe to call it as often as you wish.
1926  */
1927 int
1928 canSymlink(void)
1929 {
1930         /* Remember the test result */
1931         static int value = 0, tested = 0;
1932         if (tested)
1933                 return (value);
1934
1935         ++tested;
1936         assertion_make_file(__FILE__, __LINE__, "canSymlink.0", 0644, 1, "a");
1937         /* Note: Cygwin has its own symlink() emulation that does not
1938          * use the Win32 CreateSymbolicLink() function. */
1939 #if defined(_WIN32) && !defined(__CYGWIN__)
1940         value = my_CreateSymbolicLinkA("canSymlink.1", "canSymlink.0", 0)
1941             && is_symlink(__FILE__, __LINE__, "canSymlink.1", "canSymlink.0");
1942 #elif HAVE_SYMLINK
1943         value = (0 == symlink("canSymlink.0", "canSymlink.1"))
1944             && is_symlink(__FILE__, __LINE__, "canSymlink.1","canSymlink.0");
1945 #endif
1946         return (value);
1947 }
1948
1949 /* Platform-dependent options for hiding the output of a subcommand. */
1950 #if defined(_WIN32) && !defined(__CYGWIN__)
1951 static const char *redirectArgs = ">NUL 2>NUL"; /* Win32 cmd.exe */
1952 #else
1953 static const char *redirectArgs = ">/dev/null 2>/dev/null"; /* POSIX 'sh' */
1954 #endif
1955 /*
1956  * Can this platform run the bzip2 program?
1957  */
1958 int
1959 canBzip2(void)
1960 {
1961         static int tested = 0, value = 0;
1962         if (!tested) {
1963                 tested = 1;
1964                 if (systemf("bzip2 -d -V %s", redirectArgs) == 0)
1965                         value = 1;
1966         }
1967         return (value);
1968 }
1969
1970 /*
1971  * Can this platform run the grzip program?
1972  */
1973 int
1974 canGrzip(void)
1975 {
1976         static int tested = 0, value = 0;
1977         if (!tested) {
1978                 tested = 1;
1979                 if (systemf("grzip -V %s", redirectArgs) == 0)
1980                         value = 1;
1981         }
1982         return (value);
1983 }
1984
1985 /*
1986  * Can this platform run the gzip program?
1987  */
1988 int
1989 canGzip(void)
1990 {
1991         static int tested = 0, value = 0;
1992         if (!tested) {
1993                 tested = 1;
1994                 if (systemf("gzip -V %s", redirectArgs) == 0)
1995                         value = 1;
1996         }
1997         return (value);
1998 }
1999
2000 /*
2001  * Can this platform run the lrzip program?
2002  */
2003 int
2004 canRunCommand(const char *cmd)
2005 {
2006   static int tested = 0, value = 0;
2007   if (!tested) {
2008     tested = 1;
2009     if (systemf("%s %s", cmd, redirectArgs) == 0)
2010       value = 1;
2011   }
2012   return (value);
2013 }
2014
2015 int
2016 canLrzip(void)
2017 {
2018         static int tested = 0, value = 0;
2019         if (!tested) {
2020                 tested = 1;
2021                 if (systemf("lrzip -V %s", redirectArgs) == 0)
2022                         value = 1;
2023         }
2024         return (value);
2025 }
2026
2027 /*
2028  * Can this platform run the lz4 program?
2029  */
2030 int
2031 canLz4(void)
2032 {
2033         static int tested = 0, value = 0;
2034         if (!tested) {
2035                 tested = 1;
2036                 if (systemf("lz4 -V %s", redirectArgs) == 0)
2037                         value = 1;
2038         }
2039         return (value);
2040 }
2041
2042 /*
2043  * Can this platform run the lzip program?
2044  */
2045 int
2046 canLzip(void)
2047 {
2048         static int tested = 0, value = 0;
2049         if (!tested) {
2050                 tested = 1;
2051                 if (systemf("lzip -V %s", redirectArgs) == 0)
2052                         value = 1;
2053         }
2054         return (value);
2055 }
2056
2057 /*
2058  * Can this platform run the lzma program?
2059  */
2060 int
2061 canLzma(void)
2062 {
2063         static int tested = 0, value = 0;
2064         if (!tested) {
2065                 tested = 1;
2066                 if (systemf("lzma -V %s", redirectArgs) == 0)
2067                         value = 1;
2068         }
2069         return (value);
2070 }
2071
2072 /*
2073  * Can this platform run the lzop program?
2074  */
2075 int
2076 canLzop(void)
2077 {
2078         static int tested = 0, value = 0;
2079         if (!tested) {
2080                 tested = 1;
2081                 if (systemf("lzop -V %s", redirectArgs) == 0)
2082                         value = 1;
2083         }
2084         return (value);
2085 }
2086
2087 /*
2088  * Can this platform run the xz program?
2089  */
2090 int
2091 canXz(void)
2092 {
2093         static int tested = 0, value = 0;
2094         if (!tested) {
2095                 tested = 1;
2096                 if (systemf("xz -V %s", redirectArgs) == 0)
2097                         value = 1;
2098         }
2099         return (value);
2100 }
2101
2102 /*
2103  * Can this filesystem handle nodump flags.
2104  */
2105 #if defined(HAVE_STRUCT_STAT_ST_FLAGS) && defined(UF_NODUMP)
2106
2107 int
2108 canNodump(void)
2109 {
2110         const char *path = "cannodumptest";
2111         struct stat sb;
2112
2113         assertion_make_file(__FILE__, __LINE__, path, 0644, 0, NULL);
2114         if (chflags(path, UF_NODUMP) < 0)
2115                 return (0);
2116         if (stat(path, &sb) < 0)
2117                 return (0);
2118         if (sb.st_flags & UF_NODUMP)
2119                 return (1);
2120         return (0);
2121 }
2122
2123 #elif defined(EXT2_IOC_GETFLAGS) && defined(HAVE_WORKING_EXT2_IOC_GETFLAGS)\
2124          && defined(EXT2_NODUMP_FL)
2125
2126 int
2127 canNodump(void)
2128 {
2129         const char *path = "cannodumptest";
2130         int fd, r, flags;
2131
2132         assertion_make_file(__FILE__, __LINE__, path, 0644, 0, NULL);
2133         fd = open(path, O_RDONLY | O_NONBLOCK);
2134         if (fd < 0)
2135                 return (0);
2136         r = ioctl(fd, EXT2_IOC_GETFLAGS, &flags);
2137         if (r < 0)
2138                 return (0);
2139         flags |= EXT2_NODUMP_FL;
2140         r = ioctl(fd, EXT2_IOC_SETFLAGS, &flags);
2141         if (r < 0)
2142                 return (0);
2143         close(fd);
2144         fd = open(path, O_RDONLY | O_NONBLOCK);
2145         if (fd < 0)
2146                 return (0);
2147         r = ioctl(fd, EXT2_IOC_GETFLAGS, &flags);
2148         if (r < 0)
2149                 return (0);
2150         close(fd);
2151         if (flags & EXT2_NODUMP_FL)
2152                 return (1);
2153         return (0);
2154 }
2155
2156 #else
2157
2158 int
2159 canNodump()
2160 {
2161         return (0);
2162 }
2163
2164 #endif
2165
2166 /*
2167  * Sleep as needed; useful for verifying disk timestamp changes by
2168  * ensuring that the wall-clock time has actually changed before we
2169  * go back to re-read something from disk.
2170  */
2171 void
2172 sleepUntilAfter(time_t t)
2173 {
2174         while (t >= time(NULL))
2175 #if defined(_WIN32) && !defined(__CYGWIN__)
2176                 Sleep(500);
2177 #else
2178                 sleep(1);
2179 #endif
2180 }
2181
2182 /*
2183  * Call standard system() call, but build up the command line using
2184  * sprintf() conventions.
2185  */
2186 int
2187 systemf(const char *fmt, ...)
2188 {
2189         char buff[8192];
2190         va_list ap;
2191         int r;
2192
2193         va_start(ap, fmt);
2194         vsprintf(buff, fmt, ap);
2195         if (verbosity > VERBOSITY_FULL)
2196                 logprintf("Cmd: %s\n", buff);
2197         r = system(buff);
2198         va_end(ap);
2199         return (r);
2200 }
2201
2202 /*
2203  * Slurp a file into memory for ease of comparison and testing.
2204  * Returns size of file in 'sizep' if non-NULL, null-terminates
2205  * data in memory for ease of use.
2206  */
2207 char *
2208 slurpfile(size_t * sizep, const char *fmt, ...)
2209 {
2210         char filename[8192];
2211         struct stat st;
2212         va_list ap;
2213         char *p;
2214         ssize_t bytes_read;
2215         FILE *f;
2216         int r;
2217
2218         va_start(ap, fmt);
2219         vsprintf(filename, fmt, ap);
2220         va_end(ap);
2221
2222         f = fopen(filename, "rb");
2223         if (f == NULL) {
2224                 /* Note: No error; non-existent file is okay here. */
2225                 return (NULL);
2226         }
2227         r = fstat(fileno(f), &st);
2228         if (r != 0) {
2229                 logprintf("Can't stat file %s\n", filename);
2230                 fclose(f);
2231                 return (NULL);
2232         }
2233         p = malloc((size_t)st.st_size + 1);
2234         if (p == NULL) {
2235                 logprintf("Can't allocate %ld bytes of memory to read file %s\n",
2236                     (long int)st.st_size, filename);
2237                 fclose(f);
2238                 return (NULL);
2239         }
2240         bytes_read = fread(p, 1, (size_t)st.st_size, f);
2241         if (bytes_read < st.st_size) {
2242                 logprintf("Can't read file %s\n", filename);
2243                 fclose(f);
2244                 free(p);
2245                 return (NULL);
2246         }
2247         p[st.st_size] = '\0';
2248         if (sizep != NULL)
2249                 *sizep = (size_t)st.st_size;
2250         fclose(f);
2251         return (p);
2252 }
2253
2254 /*
2255  * Slurp a file into memory for ease of comparison and testing.
2256  * Returns size of file in 'sizep' if non-NULL, null-terminates
2257  * data in memory for ease of use.
2258  */
2259 void
2260 dumpfile(const char *filename, void *data, size_t len)
2261 {
2262         ssize_t bytes_written;
2263         FILE *f;
2264
2265         f = fopen(filename, "wb");
2266         if (f == NULL) {
2267                 logprintf("Can't open file %s for writing\n", filename);
2268                 return;
2269         }
2270         bytes_written = fwrite(data, 1, len, f);
2271         if (bytes_written < (ssize_t)len)
2272                 logprintf("Can't write file %s\n", filename);
2273         fclose(f);
2274 }
2275
2276 /* Read a uuencoded file from the reference directory, decode, and
2277  * write the result into the current directory. */
2278 #define VALID_UUDECODE(c) (c >= 32 && c <= 96)
2279 #define UUDECODE(c) (((c) - 0x20) & 0x3f)
2280 void
2281 extract_reference_file(const char *name)
2282 {
2283         char buff[1024];
2284         FILE *in, *out;
2285
2286         sprintf(buff, "%s/%s.uu", refdir, name);
2287         in = fopen(buff, "r");
2288         failure("Couldn't open reference file %s", buff);
2289         assert(in != NULL);
2290         if (in == NULL)
2291                 return;
2292         /* Read up to and including the 'begin' line. */
2293         for (;;) {
2294                 if (fgets(buff, sizeof(buff), in) == NULL) {
2295                         /* TODO: This is a failure. */
2296                         return;
2297                 }
2298                 if (memcmp(buff, "begin ", 6) == 0)
2299                         break;
2300         }
2301         /* Now, decode the rest and write it. */
2302         out = fopen(name, "wb");
2303         while (fgets(buff, sizeof(buff), in) != NULL) {
2304                 char *p = buff;
2305                 int bytes;
2306
2307                 if (memcmp(buff, "end", 3) == 0)
2308                         break;
2309
2310                 bytes = UUDECODE(*p++);
2311                 while (bytes > 0) {
2312                         int n = 0;
2313                         /* Write out 1-3 bytes from that. */
2314                         if (bytes > 0) {
2315                                 assert(VALID_UUDECODE(p[0]));
2316                                 assert(VALID_UUDECODE(p[1]));
2317                                 n = UUDECODE(*p++) << 18;
2318                                 n |= UUDECODE(*p++) << 12;
2319                                 fputc(n >> 16, out);
2320                                 --bytes;
2321                         }
2322                         if (bytes > 0) {
2323                                 assert(VALID_UUDECODE(p[0]));
2324                                 n |= UUDECODE(*p++) << 6;
2325                                 fputc((n >> 8) & 0xFF, out);
2326                                 --bytes;
2327                         }
2328                         if (bytes > 0) {
2329                                 assert(VALID_UUDECODE(p[0]));
2330                                 n |= UUDECODE(*p++);
2331                                 fputc(n & 0xFF, out);
2332                                 --bytes;
2333                         }
2334                 }
2335         }
2336         fclose(out);
2337         fclose(in);
2338 }
2339
2340 void
2341 copy_reference_file(const char *name)
2342 {
2343         char buff[1024];
2344         FILE *in, *out;
2345         size_t rbytes;
2346
2347         sprintf(buff, "%s/%s", refdir, name);
2348         in = fopen(buff, "rb");
2349         failure("Couldn't open reference file %s", buff);
2350         assert(in != NULL);
2351         if (in == NULL)
2352                 return;
2353         /* Now, decode the rest and write it. */
2354         /* Not a lot of error checking here; the input better be right. */
2355         out = fopen(name, "wb");
2356         while ((rbytes = fread(buff, 1, sizeof(buff), in)) > 0) {
2357                 if (fwrite(buff, 1, rbytes, out) != rbytes) {
2358                         logprintf("Error: fwrite\n");
2359                         break;
2360                 }
2361         }
2362         fclose(out);
2363         fclose(in);
2364 }
2365
2366 int
2367 is_LargeInode(const char *file)
2368 {
2369 #if defined(_WIN32) && !defined(__CYGWIN__)
2370         BY_HANDLE_FILE_INFORMATION bhfi;
2371         int r;
2372
2373         r = my_GetFileInformationByName(file, &bhfi);
2374         if (r != 0)
2375                 return (0);
2376         return (bhfi.nFileIndexHigh & 0x0000FFFFUL);
2377 #else
2378         struct stat st;
2379         int64_t ino;
2380
2381         if (stat(file, &st) < 0)
2382                 return (0);
2383         ino = (int64_t)st.st_ino;
2384         return (ino > 0xffffffff);
2385 #endif
2386 }
2387
2388 void
2389 extract_reference_files(const char **names)
2390 {
2391         while (names && *names)
2392                 extract_reference_file(*names++);
2393 }
2394
2395 /*
2396  *
2397  * TEST management
2398  *
2399  */
2400
2401 /*
2402  * "list.h" is simply created by "grep DEFINE_TEST test_*.c"; it has
2403  * a line like
2404  *      DEFINE_TEST(test_function)
2405  * for each test.
2406  */
2407
2408 /* Use "list.h" to declare all of the test functions. */
2409 #undef DEFINE_TEST
2410 #define DEFINE_TEST(name) void name(void);
2411 #include "list.h"
2412
2413 /* Use "list.h" to create a list of all tests (functions and names). */
2414 #undef DEFINE_TEST
2415 #define DEFINE_TEST(n) { n, #n, 0 },
2416 struct test_list_t tests[] = {
2417         #include "list.h"
2418 };
2419
2420 /*
2421  * Summarize repeated failures in the just-completed test.
2422  */
2423 static void
2424 test_summarize(int failed, int skips_num)
2425 {
2426         unsigned int i;
2427
2428         switch (verbosity) {
2429         case VERBOSITY_SUMMARY_ONLY:
2430                 printf(failed ? "E" : ".");
2431                 fflush(stdout);
2432                 break;
2433         case VERBOSITY_PASSFAIL:
2434                 printf(failed ? "FAIL\n" : skips_num ? "ok (S)\n" : "ok\n");
2435                 break;
2436         }
2437
2438         log_console = (verbosity == VERBOSITY_LIGHT_REPORT);
2439
2440         for (i = 0; i < sizeof(failed_lines)/sizeof(failed_lines[0]); i++) {
2441                 if (failed_lines[i].count > 1 && !failed_lines[i].skip)
2442                         logprintf("%s:%d: Summary: Failed %d times\n",
2443                             failed_filename, i, failed_lines[i].count);
2444         }
2445         /* Clear the failure history for the next file. */
2446         failed_filename = NULL;
2447         memset(failed_lines, 0, sizeof(failed_lines));
2448 }
2449
2450 /*
2451  * Actually run a single test, with appropriate setup and cleanup.
2452  */
2453 static int
2454 test_run(int i, const char *tmpdir)
2455 {
2456         char workdir[1024];
2457         char logfilename[64];
2458         int failures_before = failures;
2459         int skips_before = skips;
2460         int oldumask;
2461
2462         switch (verbosity) {
2463         case VERBOSITY_SUMMARY_ONLY: /* No per-test reports at all */
2464                 break;
2465         case VERBOSITY_PASSFAIL: /* rest of line will include ok/FAIL marker */
2466                 printf("%3d: %-64s", i, tests[i].name);
2467                 fflush(stdout);
2468                 break;
2469         default: /* Title of test, details will follow */
2470                 printf("%3d: %s\n", i, tests[i].name);
2471         }
2472
2473         /* Chdir to the top-level work directory. */
2474         if (!assertChdir(tmpdir)) {
2475                 fprintf(stderr,
2476                     "ERROR: Can't chdir to top work dir %s\n", tmpdir);
2477                 exit(1);
2478         }
2479         /* Create a log file for this test. */
2480         sprintf(logfilename, "%s.log", tests[i].name);
2481         logfile = fopen(logfilename, "w");
2482         fprintf(logfile, "%s\n\n", tests[i].name);
2483         /* Chdir() to a work dir for this specific test. */
2484         snprintf(workdir, sizeof(workdir), "%s/%s", tmpdir, tests[i].name);
2485         testworkdir = workdir;
2486         if (!assertMakeDir(testworkdir, 0755)
2487             || !assertChdir(testworkdir)) {
2488                 fprintf(stderr,
2489                     "ERROR: Can't chdir to work dir %s\n", testworkdir);
2490                 exit(1);
2491         }
2492         /* Explicitly reset the locale before each test. */
2493         setlocale(LC_ALL, "C");
2494         /* Record the umask before we run the test. */
2495         umask(oldumask = umask(0));
2496         /*
2497          * Run the actual test.
2498          */
2499         (*tests[i].func)();
2500         /*
2501          * Clean up and report afterwards.
2502          */
2503         testworkdir = NULL;
2504         /* Restore umask */
2505         umask(oldumask);
2506         /* Reset locale. */
2507         setlocale(LC_ALL, "C");
2508         /* Reset directory. */
2509         if (!assertChdir(tmpdir)) {
2510                 fprintf(stderr, "ERROR: Couldn't chdir to temp dir %s\n",
2511                     tmpdir);
2512                 exit(1);
2513         }
2514         /* Report per-test summaries. */
2515         tests[i].failures = failures - failures_before;
2516         test_summarize(tests[i].failures, skips - skips_before);
2517         /* Close the per-test log file. */
2518         fclose(logfile);
2519         logfile = NULL;
2520         /* If there were no failures, we can remove the work dir and logfile. */
2521         if (tests[i].failures == 0) {
2522                 if (!keep_temp_files && assertChdir(tmpdir)) {
2523 #if defined(_WIN32) && !defined(__CYGWIN__)
2524                         /* Make sure not to leave empty directories.
2525                          * Sometimes a processing of closing files used by tests
2526                          * is not done, then rmdir will be failed and it will
2527                          * leave a empty test directory. So we should wait a few
2528                          * seconds and retry rmdir. */
2529                         int r, t;
2530                         for (t = 0; t < 10; t++) {
2531                                 if (t > 0)
2532                                         Sleep(1000);
2533                                 r = systemf("rmdir /S /Q %s", tests[i].name);
2534                                 if (r == 0)
2535                                         break;
2536                         }
2537                         systemf("del %s", logfilename);
2538 #else
2539                         systemf("rm -rf %s", tests[i].name);
2540                         systemf("rm %s", logfilename);
2541 #endif
2542                 }
2543         }
2544         /* Return appropriate status. */
2545         return (tests[i].failures);
2546 }
2547
2548 /*
2549  *
2550  *
2551  * MAIN and support routines.
2552  *
2553  *
2554  */
2555
2556 static void
2557 usage(const char *program)
2558 {
2559         static const int limit = sizeof(tests) / sizeof(tests[0]);
2560         int i;
2561
2562         printf("Usage: %s [options] <test> <test> ...\n", program);
2563         printf("Default is to run all tests.\n");
2564         printf("Otherwise, specify the numbers of the tests you wish to run.\n");
2565         printf("Options:\n");
2566         printf("  -d  Dump core after any failure, for debugging.\n");
2567         printf("  -k  Keep all temp files.\n");
2568         printf("      Default: temp files for successful tests deleted.\n");
2569 #ifdef PROGRAM
2570         printf("  -p <path>  Path to executable to be tested.\n");
2571         printf("      Default: path taken from " ENVBASE " environment variable.\n");
2572 #endif
2573         printf("  -q  Quiet.\n");
2574         printf("  -r <dir>   Path to dir containing reference files.\n");
2575         printf("      Default: Current directory.\n");
2576         printf("  -u  Keep running specifies tests until one fails.\n");
2577         printf("  -v  Verbose.\n");
2578         printf("Available tests:\n");
2579         for (i = 0; i < limit; i++)
2580                 printf("  %d: %s\n", i, tests[i].name);
2581         exit(1);
2582 }
2583
2584 static char *
2585 get_refdir(const char *d)
2586 {
2587         size_t tried_size, buff_size;
2588         char *buff, *tried, *pwd = NULL, *p = NULL;
2589
2590 #ifdef PATH_MAX
2591         buff_size = PATH_MAX;
2592 #else
2593         buff_size = 8192;
2594 #endif
2595         buff = calloc(buff_size, 1);
2596         if (buff == NULL) {
2597                 fprintf(stderr, "Unable to allocate memory\n");
2598                 exit(1);
2599         }
2600
2601         /* Allocate a buffer to hold the various directories we checked. */
2602         tried_size = buff_size * 2;
2603         tried = calloc(tried_size, 1);
2604         if (tried == NULL) {
2605                 fprintf(stderr, "Unable to allocate memory\n");
2606                 exit(1);
2607         }
2608
2609         /* If a dir was specified, try that */
2610         if (d != NULL) {
2611                 pwd = NULL;
2612                 snprintf(buff, buff_size, "%s", d);
2613                 p = slurpfile(NULL, "%s/%s", buff, KNOWNREF);
2614                 if (p != NULL) goto success;
2615                 strncat(tried, buff, tried_size - strlen(tried) - 1);
2616                 strncat(tried, "\n", tried_size - strlen(tried) - 1);
2617                 goto failure;
2618         }
2619
2620         /* Get the current dir. */
2621 #ifdef PATH_MAX
2622         pwd = getcwd(NULL, PATH_MAX);/* Solaris getcwd needs the size. */
2623 #else
2624         pwd = getcwd(NULL, 0);
2625 #endif
2626         while (pwd[strlen(pwd) - 1] == '\n')
2627                 pwd[strlen(pwd) - 1] = '\0';
2628
2629         /* Look for a known file. */
2630         snprintf(buff, buff_size, "%s", pwd);
2631         p = slurpfile(NULL, "%s/%s", buff, KNOWNREF);
2632         if (p != NULL) goto success;
2633         strncat(tried, buff, tried_size - strlen(tried) - 1);
2634         strncat(tried, "\n", tried_size - strlen(tried) - 1);
2635
2636         snprintf(buff, buff_size, "%s/test", pwd);
2637         p = slurpfile(NULL, "%s/%s", buff, KNOWNREF);
2638         if (p != NULL) goto success;
2639         strncat(tried, buff, tried_size - strlen(tried) - 1);
2640         strncat(tried, "\n", tried_size - strlen(tried) - 1);
2641
2642 #if defined(LIBRARY)
2643         snprintf(buff, buff_size, "%s/%s/test", pwd, LIBRARY);
2644 #else
2645         snprintf(buff, buff_size, "%s/%s/test", pwd, PROGRAM);
2646 #endif
2647         p = slurpfile(NULL, "%s/%s", buff, KNOWNREF);
2648         if (p != NULL) goto success;
2649         strncat(tried, buff, tried_size - strlen(tried) - 1);
2650         strncat(tried, "\n", tried_size - strlen(tried) - 1);
2651
2652 #if defined(PROGRAM_ALIAS)
2653         snprintf(buff, buff_size, "%s/%s/test", pwd, PROGRAM_ALIAS);
2654         p = slurpfile(NULL, "%s/%s", buff, KNOWNREF);
2655         if (p != NULL) goto success;
2656         strncat(tried, buff, tried_size - strlen(tried) - 1);
2657         strncat(tried, "\n", tried_size - strlen(tried) - 1);
2658 #endif
2659
2660         if (memcmp(pwd, "/usr/obj", 8) == 0) {
2661                 snprintf(buff, buff_size, "%s", pwd + 8);
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 + 8);
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
2674 failure:
2675         printf("Unable to locate known reference file %s\n", KNOWNREF);
2676         printf("  Checked following directories:\n%s\n", tried);
2677         printf("Use -r option to specify full path to reference directory\n");
2678 #if defined(_WIN32) && !defined(__CYGWIN__) && defined(_DEBUG)
2679         DebugBreak();
2680 #endif
2681         exit(1);
2682
2683 success:
2684         free(p);
2685         free(pwd);
2686         free(tried);
2687
2688         /* Copy result into a fresh buffer to reduce memory usage. */
2689         p = strdup(buff);
2690         free(buff);
2691         return p;
2692 }
2693
2694 int
2695 main(int argc, char **argv)
2696 {
2697         static const int limit = sizeof(tests) / sizeof(tests[0]);
2698         int test_set[sizeof(tests) / sizeof(tests[0])];
2699         int i = 0, j = 0, tests_run = 0, tests_failed = 0, option;
2700         time_t now;
2701         char *refdir_alloc = NULL;
2702         const char *progname;
2703         char **saved_argv;
2704         const char *tmp, *option_arg, *p;
2705         char tmpdir[256], *pwd, *testprogdir, *tmp2 = NULL, *vlevel = NULL;
2706         char tmpdir_timestamp[256];
2707
2708         (void)argc; /* UNUSED */
2709
2710         /* Get the current dir. */
2711 #ifdef PATH_MAX
2712         pwd = getcwd(NULL, PATH_MAX);/* Solaris getcwd needs the size. */
2713 #else
2714         pwd = getcwd(NULL, 0);
2715 #endif
2716         while (pwd[strlen(pwd) - 1] == '\n')
2717                 pwd[strlen(pwd) - 1] = '\0';
2718
2719 #if defined(HAVE__CrtSetReportMode) && !defined(__WATCOMC__)
2720         /* To stop to run the default invalid parameter handler. */
2721         _set_invalid_parameter_handler(invalid_parameter_handler);
2722         /* Disable annoying assertion message box. */
2723         _CrtSetReportMode(_CRT_ASSERT, 0);
2724 #endif
2725
2726         /*
2727          * Name of this program, used to build root of our temp directory
2728          * tree.
2729          */
2730         progname = p = argv[0];
2731         if ((testprogdir = (char *)malloc(strlen(progname) + 1)) == NULL)
2732         {
2733                 fprintf(stderr, "ERROR: Out of memory.");
2734                 exit(1);
2735         }
2736         strcpy(testprogdir, progname);
2737         while (*p != '\0') {
2738                 /* Support \ or / dir separators for Windows compat. */
2739                 if (*p == '/' || *p == '\\')
2740                 {
2741                         progname = p + 1;
2742                         i = j;
2743                 }
2744                 ++p;
2745                 j++;
2746         }
2747         testprogdir[i] = '\0';
2748 #if defined(_WIN32) && !defined(__CYGWIN__)
2749         if (testprogdir[0] != '/' && testprogdir[0] != '\\' &&
2750             !(((testprogdir[0] >= 'a' && testprogdir[0] <= 'z') ||
2751                (testprogdir[0] >= 'A' && testprogdir[0] <= 'Z')) &&
2752                 testprogdir[1] == ':' &&
2753                 (testprogdir[2] == '/' || testprogdir[2] == '\\')))
2754 #else
2755         if (testprogdir[0] != '/')
2756 #endif
2757         {
2758                 /* Fixup path for relative directories. */
2759                 if ((testprogdir = (char *)realloc(testprogdir,
2760                         strlen(pwd) + 1 + strlen(testprogdir) + 1)) == NULL)
2761                 {
2762                         fprintf(stderr, "ERROR: Out of memory.");
2763                         exit(1);
2764                 }
2765                 memmove(testprogdir + strlen(pwd) + 1, testprogdir,
2766                     strlen(testprogdir) + 1);
2767                 memcpy(testprogdir, pwd, strlen(pwd));
2768                 testprogdir[strlen(pwd)] = '/';
2769         }
2770
2771 #ifdef PROGRAM
2772         /* Get the target program from environment, if available. */
2773         testprogfile = getenv(ENVBASE);
2774 #endif
2775
2776         if (getenv("TMPDIR") != NULL)
2777                 tmp = getenv("TMPDIR");
2778         else if (getenv("TMP") != NULL)
2779                 tmp = getenv("TMP");
2780         else if (getenv("TEMP") != NULL)
2781                 tmp = getenv("TEMP");
2782         else if (getenv("TEMPDIR") != NULL)
2783                 tmp = getenv("TEMPDIR");
2784         else
2785                 tmp = "/tmp";
2786
2787         /* Allow -d to be controlled through the environment. */
2788         if (getenv(ENVBASE "_DEBUG") != NULL)
2789                 dump_on_failure = 1;
2790
2791         /* Allow -v to be controlled through the environment. */
2792         if (getenv("_VERBOSITY_LEVEL") != NULL)
2793         {
2794                 vlevel = getenv("_VERBOSITY_LEVEL");
2795                 verbosity = atoi(vlevel);
2796                 if (verbosity < VERBOSITY_SUMMARY_ONLY || verbosity > VERBOSITY_FULL)
2797                 {
2798                         /* Unsupported verbosity levels are silently ignored */
2799                         vlevel = NULL;
2800                         verbosity = VERBOSITY_PASSFAIL;
2801                 }
2802         }
2803
2804         /* Get the directory holding test files from environment. */
2805         refdir = getenv(ENVBASE "_TEST_FILES");
2806
2807         /*
2808          * Parse options, without using getopt(), which isn't available
2809          * on all platforms.
2810          */
2811         ++argv; /* Skip program name */
2812         while (*argv != NULL) {
2813                 if (**argv != '-')
2814                         break;
2815                 p = *argv++;
2816                 ++p; /* Skip '-' */
2817                 while (*p != '\0') {
2818                         option = *p++;
2819                         option_arg = NULL;
2820                         /* If 'opt' takes an argument, parse that. */
2821                         if (option == 'p' || option == 'r') {
2822                                 if (*p != '\0')
2823                                         option_arg = p;
2824                                 else if (*argv == NULL) {
2825                                         fprintf(stderr,
2826                                             "Option -%c requires argument.\n",
2827                                             option);
2828                                         usage(progname);
2829                                 } else
2830                                         option_arg = *argv++;
2831                                 p = ""; /* End of this option word. */
2832                         }
2833
2834                         /* Now, handle the option. */
2835                         switch (option) {
2836                         case 'd':
2837                                 dump_on_failure = 1;
2838                                 break;
2839                         case 'k':
2840                                 keep_temp_files = 1;
2841                                 break;
2842                         case 'p':
2843 #ifdef PROGRAM
2844                                 testprogfile = option_arg;
2845 #else
2846                                 fprintf(stderr, "-p option not permitted\n");
2847                                 usage(progname);
2848 #endif
2849                                 break;
2850                         case 'q':
2851                                 if (!vlevel)
2852                                         verbosity--;
2853                                 break;
2854                         case 'r':
2855                                 refdir = option_arg;
2856                                 break;
2857                         case 'u':
2858                                 until_failure++;
2859                                 break;
2860                         case 'v':
2861                                 if (!vlevel)
2862                                         verbosity++;
2863                                 break;
2864                         default:
2865                                 fprintf(stderr, "Unrecognized option '%c'\n",
2866                                     option);
2867                                 usage(progname);
2868                         }
2869                 }
2870         }
2871
2872         /*
2873          * Sanity-check that our options make sense.
2874          */
2875 #ifdef PROGRAM
2876         if (testprogfile == NULL)
2877         {
2878                 if ((tmp2 = (char *)malloc(strlen(testprogdir) + 1 +
2879                         strlen(PROGRAM) + 1)) == NULL)
2880                 {
2881                         fprintf(stderr, "ERROR: Out of memory.");
2882                         exit(1);
2883                 }
2884                 strcpy(tmp2, testprogdir);
2885                 strcat(tmp2, "/");
2886                 strcat(tmp2, PROGRAM);
2887                 testprogfile = tmp2;
2888         }
2889
2890         {
2891                 char *testprg;
2892 #if defined(_WIN32) && !defined(__CYGWIN__)
2893                 /* Command.com sometimes rejects '/' separators. */
2894                 testprg = strdup(testprogfile);
2895                 for (i = 0; testprg[i] != '\0'; i++) {
2896                         if (testprg[i] == '/')
2897                                 testprg[i] = '\\';
2898                 }
2899                 testprogfile = testprg;
2900 #endif
2901                 /* Quote the name that gets put into shell command lines. */
2902                 testprg = malloc(strlen(testprogfile) + 3);
2903                 strcpy(testprg, "\"");
2904                 strcat(testprg, testprogfile);
2905                 strcat(testprg, "\"");
2906                 testprog = testprg;
2907         }
2908 #endif
2909
2910 #if !defined(_WIN32) && defined(SIGPIPE)
2911         {   /* Ignore SIGPIPE signals */
2912                 struct sigaction sa;
2913                 sa.sa_handler = SIG_IGN;
2914                 sigemptyset(&sa.sa_mask);
2915                 sa.sa_flags = 0;
2916                 sigaction(SIGPIPE, &sa, NULL);
2917         }
2918 #endif
2919
2920         /*
2921          * Create a temp directory for the following tests.
2922          * Include the time the tests started as part of the name,
2923          * to make it easier to track the results of multiple tests.
2924          */
2925         now = time(NULL);
2926         for (i = 0; ; i++) {
2927                 strftime(tmpdir_timestamp, sizeof(tmpdir_timestamp),
2928                     "%Y-%m-%dT%H.%M.%S",
2929                     localtime(&now));
2930                 sprintf(tmpdir, "%s/%s.%s-%03d", tmp, progname,
2931                     tmpdir_timestamp, i);
2932                 if (assertMakeDir(tmpdir,0755))
2933                         break;
2934                 if (i >= 999) {
2935                         fprintf(stderr,
2936                             "ERROR: Unable to create temp directory %s\n",
2937                             tmpdir);
2938                         exit(1);
2939                 }
2940         }
2941
2942         /*
2943          * If the user didn't specify a directory for locating
2944          * reference files, try to find the reference files in
2945          * the "usual places."
2946          */
2947         refdir = refdir_alloc = get_refdir(refdir);
2948
2949         /*
2950          * Banner with basic information.
2951          */
2952         printf("\n");
2953         printf("If tests fail or crash, details will be in:\n");
2954         printf("   %s\n", tmpdir);
2955         printf("\n");
2956         if (verbosity > VERBOSITY_SUMMARY_ONLY) {
2957                 printf("Reference files will be read from: %s\n", refdir);
2958 #ifdef PROGRAM
2959                 printf("Running tests on: %s\n", testprog);
2960 #endif
2961                 printf("Exercising: ");
2962                 fflush(stdout);
2963                 printf("%s\n", EXTRA_VERSION);
2964         } else {
2965                 printf("Running ");
2966                 fflush(stdout);
2967         }
2968
2969         /*
2970          * Run some or all of the individual tests.
2971          */
2972         saved_argv = argv;
2973         do {
2974                 argv = saved_argv;
2975                 do {
2976                         int test_num;
2977
2978                         test_num = get_test_set(test_set, limit, *argv, tests);
2979                         if (test_num < 0) {
2980                                 printf("*** INVALID Test %s\n", *argv);
2981                                 free(refdir_alloc);
2982                                 free(testprogdir);
2983                                 usage(progname);
2984                                 return (1);
2985                         }
2986                         for (i = 0; i < test_num; i++) {
2987                                 tests_run++;
2988                                 if (test_run(test_set[i], tmpdir)) {
2989                                         tests_failed++;
2990                                         if (until_failure)
2991                                                 goto finish;
2992                                 }
2993                         }
2994                         if (*argv != NULL)
2995                                 argv++;
2996                 } while (*argv != NULL);
2997         } while (until_failure);
2998
2999 finish:
3000         /* Must be freed after all tests run */
3001         free(tmp2);
3002         free(testprogdir);
3003         free(pwd);
3004
3005         /*
3006          * Report summary statistics.
3007          */
3008         if (verbosity > VERBOSITY_SUMMARY_ONLY) {
3009                 printf("\n");
3010                 printf("Totals:\n");
3011                 printf("  Tests run:         %8d\n", tests_run);
3012                 printf("  Tests failed:      %8d\n", tests_failed);
3013                 printf("  Assertions checked:%8d\n", assertions);
3014                 printf("  Assertions failed: %8d\n", failures);
3015                 printf("  Skips reported:    %8d\n", skips);
3016         }
3017         if (failures) {
3018                 printf("\n");
3019                 printf("Failing tests:\n");
3020                 for (i = 0; i < limit; ++i) {
3021                         if (tests[i].failures)
3022                                 printf("  %d: %s (%d failures)\n", i,
3023                                     tests[i].name, tests[i].failures);
3024                 }
3025                 printf("\n");
3026                 printf("Details for failing tests: %s\n", tmpdir);
3027                 printf("\n");
3028         } else {
3029                 if (verbosity == VERBOSITY_SUMMARY_ONLY)
3030                         printf("\n");
3031                 printf("%d tests passed, no failures\n", tests_run);
3032         }
3033
3034         free(refdir_alloc);
3035
3036         /* If the final tmpdir is empty, we can remove it. */
3037         /* This should be the usual case when all tests succeed. */
3038         assertChdir("..");
3039         rmdir(tmpdir);
3040
3041         return (tests_failed ? 1 : 0);
3042 }