yaffs: Tweak tests to use log files
[yaffs2.git] / direct / tests / yaffs_fsx.c
1 /*
2  * Copyright (c) 1998-2001 Apple Computer, Inc. All rights reserved.
3  *
4  * @APPLE_LICENSE_HEADER_START@
5  *
6  * The contents of this file constitute Original Code as defined in and
7  * are subject to the Apple Public Source License Version 1.2 (the
8  * "License").  You may not use this file except in compliance with the
9  * License.  Please obtain a copy of the License at
10  * http://www.apple.com/publicsource and read it before using this file.
11  *
12  * This Original Code and all software distributed under the License are
13  * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT.  Please see the
17  * License for the specific language governing rights and limitations
18  * under the License.
19  *
20  * @APPLE_LICENSE_HEADER_END@
21  *
22  *      WARNING--WARNING--WARNING
23  *      This is not the original fsx.c. It has been modified to run with
24  *      yaffs direct. Seek out the original fsx.c if you want to do anything
25  *      else.
26  *
27  *      
28  *
29  *      File:   fsx.c
30  *      Author: Avadis Tevanian, Jr.
31  *
32  *      File system exerciser. 
33  *
34  *      Rewrite and enhancements 1998-2001 Conrad Minshall -- conrad@mac.com
35  *
36  *      Various features from Joe Sokol, Pat Dirks, and Clark Warner.
37  *
38  *      Small changes to work under Linux -- davej@suse.de
39  *
40  *      Sundry porting patches from Guy Harris 12/2001
41  *
42  *      Checks for mmap last-page zero fill.
43  *
44  *      Modified heavily by Charles Manning to exercise via the
45  *      yaffs direct interface.
46  *
47  */
48
49 #include "yaffs_fsx.h"
50
51 #include <sys/types.h>
52 #include <sys/stat.h>
53 #ifdef _UWIN
54 # include <sys/param.h>
55 # include <limits.h>
56 # include <time.h>
57 # include <strings.h>
58 #endif
59 #include <fcntl.h>
60 #include <sys/mman.h>
61 #ifndef MAP_FILE
62 # define MAP_FILE 0
63 #endif
64 #include <limits.h>
65 #include <signal.h>
66 #include <stdio.h>
67 #include <stdlib.h>
68 #include <string.h>
69 #include <unistd.h>
70 #include <stdarg.h>
71 #include <errno.h>
72 #include <time.h>
73
74 #include "yaffsfs.h"
75
76 #define NUMPRINTCOLUMNS 32      /* # columns of data to print on each line */
77
78 /*
79  *      A log entry is an operation and a bunch of arguments.
80  */
81
82 struct log_entry {
83         int     operation;
84         int     args[3];
85 };
86
87 #define LOGSIZE 1000
88
89 struct log_entry        oplog[LOGSIZE]; /* the log */
90 int                     logptr = 0;     /* current position in log */
91 int                     logcount = 0;   /* total ops */
92
93 /*
94  *      Define operations
95  */
96
97 #define OP_READ         1
98 #define OP_WRITE        2
99 #define OP_TRUNCATE     3
100 #define OP_CLOSEOPEN    4
101 #define OP_MAPREAD      5
102 #define OP_MAPWRITE     6
103 #define OP_SKIPPED      7
104
105 int page_size;
106 int page_mask;
107
108 char    *original_buf;                  /* a pointer to the original data */
109 char    *good_buf;                      /* a pointer to the correct data */
110 char    *temp_buf;                      /* a pointer to the current data */
111
112 char    fname[200];                             /* name of our test file */
113 char    mount_name[200];
114
115 int     fd;                             /* fd for our test file */
116
117 off_t           file_size = 0;
118 off_t           biggest = 0;
119 char            state[256];
120 unsigned long   testcalls = 0;          /* calls to function "test" */
121
122 unsigned long   simulatedopcount = 0;   /* -b flag */
123 int     closeprob = 0;                  /* -c flag */
124 int     debug = 0;                      /* -d flag */
125 unsigned long   debugstart = 0;         /* -D flag */
126 unsigned long   maxfilelen = 256 * 1024;        /* -l flag */
127 int     sizechecks = 1;                 /* -n flag disables them */
128 int     maxoplen = 64 * 1024;           /* -o flag */
129 int     quiet = 0;                      /* -q flag */
130 unsigned long progressinterval = 0;     /* -p flag */
131 int     readbdy = 1;                    /* -r flag */
132 int     style = 0;                      /* -s flag */
133 int     truncbdy = 1;                   /* -t flag */
134 int     writebdy = 1;                   /* -w flag */
135 long    monitorstart = -1;              /* -m flag */
136 long    monitorend = -1;                /* -m flag */
137 int     lite = 0;                       /* -L flag */
138 int     randomoplen = 1;                /* -O flag disables it */
139 int     seed = 1;                       /* -S flag */
140
141 int     mapped_writes = 0;            /* yaffs direct does not support mmapped files */
142 int     mapped_reads = 0;
143
144 int     fsxgoodfd = 0;
145 FILE *  fsxlogf = NULL;
146 int badoff = -1;
147 int closeopen = 0;
148
149
150
151 void EXIT(int x)
152 {
153         printf("fsx wanted to exit with %d\n",x);
154         while(x){}
155 }
156
157 char goodfile[1024];
158 char logfile[1024];
159
160
161 void
162 vwarnc(code, fmt, ap)
163         int code;
164         const char *fmt;
165         va_list ap;
166 {
167         fprintf(stderr, "fsx: ");
168         if (fmt != NULL) {
169                 vfprintf(stderr, fmt, ap);
170                 fprintf(stderr, ": ");
171         }
172         fprintf(stderr, "%s\n", strerror(code));
173 }
174
175
176 void
177 warn(const char * fmt, ...)
178 {
179         va_list ap;
180         va_start(ap, fmt);
181         vwarnc(errno, fmt, ap);
182         va_end(ap);
183 }
184
185
186 void
187 prt(char *fmt, ...)
188 {
189         va_list args;
190
191         va_start(args, fmt);
192         vfprintf(stdout, fmt, args);
193         if (fsxlogf)
194                 vfprintf(fsxlogf, fmt, args);
195         va_end(args);
196 }
197
198 void
199 prterr(char *prefix)
200 {
201         prt("%s%s%s\n", prefix, prefix ? ": " : "", strerror(errno));
202 }
203
204
205 void
206 log4(int operation, int arg0, int arg1, int arg2)
207 {
208         struct log_entry *le;
209
210         le = &oplog[logptr];
211         le->operation = operation;
212         if (closeopen)
213                 le->operation = ~ le->operation;
214         le->args[0] = arg0;
215         le->args[1] = arg1;
216         le->args[2] = arg2;
217         logptr++;
218         logcount++;
219         if (logptr >= LOGSIZE)
220                 logptr = 0;
221 }
222
223
224 void
225 logdump(void)
226 {
227         int     i, count, down;
228         struct log_entry        *lp;
229
230         prt("LOG DUMP (%d total operations):\n", logcount);
231         if (logcount < LOGSIZE) {
232                 i = 0;
233                 count = logcount;
234         } else {
235                 i = logptr;
236                 count = LOGSIZE;
237         }
238         for ( ; count > 0; count--) {
239                 int opnum;
240
241                 opnum = i+1 + (logcount/LOGSIZE)*LOGSIZE;
242                 prt("%d(%d mod 256): ", opnum, opnum%256);
243                 lp = &oplog[i];
244                 if ((closeopen = lp->operation < 0))
245                         lp->operation = ~ lp->operation;
246                         
247                 switch (lp->operation) {
248                 case OP_MAPREAD:
249                         prt("MAPREAD\t0x%x thru 0x%x\t(0x%x bytes)",
250                             lp->args[0], lp->args[0] + lp->args[1] - 1,
251                             lp->args[1]);
252                         if (badoff >= lp->args[0] && badoff <
253                                                      lp->args[0] + lp->args[1])
254                                 prt("\t***RRRR***");
255                         break;
256                 case OP_MAPWRITE:
257                         prt("MAPWRITE 0x%x thru 0x%x\t(0x%x bytes)",
258                             lp->args[0], lp->args[0] + lp->args[1] - 1,
259                             lp->args[1]);
260                         if (badoff >= lp->args[0] && badoff <
261                                                      lp->args[0] + lp->args[1])
262                                 prt("\t******WWWW");
263                         break;
264                 case OP_READ:
265                         prt("READ\t0x%x thru 0x%x\t(0x%x bytes)",
266                             lp->args[0], lp->args[0] + lp->args[1] - 1,
267                             lp->args[1]);
268                         if (badoff >= lp->args[0] &&
269                             badoff < lp->args[0] + lp->args[1])
270                                 prt("\t***RRRR***");
271                         break;
272                 case OP_WRITE:
273                         prt("WRITE\t0x%x thru 0x%x\t(0x%x bytes)",
274                             lp->args[0], lp->args[0] + lp->args[1] - 1,
275                             lp->args[1]);
276                         if (lp->args[0] > lp->args[2])
277                                 prt(" HOLE");
278                         else if (lp->args[0] + lp->args[1] > lp->args[2])
279                                 prt(" EXTEND");
280                         if ((badoff >= lp->args[0] || badoff >=lp->args[2]) &&
281                             badoff < lp->args[0] + lp->args[1])
282                                 prt("\t***WWWW");
283                         break;
284                 case OP_TRUNCATE:
285                         down = lp->args[0] < lp->args[1];
286                         prt("TRUNCATE %s\tfrom 0x%x to 0x%x",
287                             down ? "DOWN" : "UP", lp->args[1], lp->args[0]);
288                         if (badoff >= lp->args[!down] &&
289                             badoff < lp->args[!!down])
290                                 prt("\t******WWWW");
291                         break;
292                 case OP_SKIPPED:
293                         prt("SKIPPED (no operation)");
294                         break;
295                 default:
296                         prt("BOGUS LOG ENTRY (operation code = %d)!",
297                             lp->operation);
298                 }
299                 if (closeopen)
300                         prt("\n\t\tCLOSE/OPEN");
301                 prt("\n");
302                 i++;
303                 if (i == LOGSIZE)
304                         i = 0;
305         }
306 }
307
308
309 void
310 save_buffer(char *buffer, off_t bufferlength, int fd)
311 {
312         off_t ret;
313         ssize_t byteswritten;
314
315         if (fd <= 0 || bufferlength == 0)
316                 return;
317
318         if (bufferlength > SSIZE_MAX) {
319                 prt("fsx flaw: overflow in save_buffer\n");
320                 EXIT(67);
321         }
322         if (lite) {
323                 off_t size_by_seek = yaffs_lseek(fd, (off_t)0, SEEK_END);
324                 if (size_by_seek == (off_t)-1)
325                         prterr("save_buffer: lseek eof");
326                 else if (bufferlength > size_by_seek) {
327                         warn("save_buffer: .fsxgood file too short... will save 0x%llx bytes instead of 0x%llx\n", (unsigned long long)size_by_seek,
328                              (unsigned long long)bufferlength);
329                         bufferlength = size_by_seek;
330                 }
331         }
332
333         ret = yaffs_lseek(fd, (off_t)0, SEEK_SET);
334         if (ret == (off_t)-1)
335                 prterr("save_buffer: lseek 0");
336         
337         byteswritten = yaffs_write(fd, buffer, (size_t)bufferlength);
338         if (byteswritten != bufferlength) {
339                 if (byteswritten == -1)
340                         prterr("save_buffer write");
341                 else
342                         warn("save_buffer: short write, 0x%x bytes instead of 0x%llx\n",
343                              (unsigned)byteswritten,
344                              (unsigned long long)bufferlength);
345         }
346 }
347
348
349 void
350 report_failure(int status)
351 {
352         logdump();
353         
354         if (fsxgoodfd) {
355                 if (good_buf) {
356                         save_buffer(good_buf, file_size, fsxgoodfd);
357                         prt("Correct content saved for comparison\n");
358                         prt("(maybe hexdump \"%s\" vs \"%s.fsxgood\")\n",
359                             fname, fname);
360                 }
361                 close(fsxgoodfd);
362         }
363         prt("Exiting with %d\n",status);
364         EXIT(status);
365 }
366
367
368 #define short_at(cp) ((unsigned short)((*((unsigned char *)(cp)) << 8) | \
369                                         *(((unsigned char *)(cp)) + 1)))
370
371 void
372 check_buffers(unsigned offset, unsigned size)
373 {
374         unsigned char c, t;
375         unsigned i = 0;
376         unsigned n = 0;
377         unsigned op = 0;
378         unsigned bad = 0;
379
380         if (memcmp(good_buf + offset, temp_buf, size) != 0) {
381                 prt("READ BAD DATA: offset = 0x%x, size = 0x%x\n",
382                     offset, size);
383                 prt("OFFSET\tGOOD\tBAD\tRANGE\n");
384                 while (size > 0) {
385                         c = good_buf[offset];
386                         t = temp_buf[i];
387                         if (c != t) {
388                                 if (n == 0) {
389                                         bad = short_at(&temp_buf[i]);
390                                         prt("0x%5x\t0x%04x\t0x%04x", offset,
391                                             short_at(&good_buf[offset]), bad);
392                                         op = temp_buf[offset & 1 ? i+1 : i];
393                                 }
394                                 n++;
395                                 badoff = offset;
396                         }
397                         offset++;
398                         i++;
399                         size--;
400                 }
401                 if (n) {
402                         prt("\t0x%5x\n", n);
403                         if (bad)
404                                 prt("operation# (mod 256) for the bad data may be %u\n", ((unsigned)op & 0xff));
405                         else
406                                 prt("operation# (mod 256) for the bad data unknown, check HOLE and EXTEND ops\n");
407                 } else
408                         prt("????????????????\n");
409                 report_failure(110);
410         }
411 }
412
413
414 void
415 check_size(void)
416 {
417         struct yaffs_stat       statbuf;
418         off_t   size_by_seek;
419
420         if (yaffs_fstat(fd, &statbuf)) {
421                 prterr("check_size: fstat");
422                 statbuf.st_size = -1;
423         }
424         size_by_seek = yaffs_lseek(fd, (off_t)0, SEEK_END);
425         if (file_size != statbuf.st_size || file_size != size_by_seek) {
426                 prt("Size error: expected 0x%llx stat 0x%llx seek 0x%llx\n",
427                     (unsigned long long)file_size,
428                     (unsigned long long)statbuf.st_size,
429                     (unsigned long long)size_by_seek);
430                 report_failure(120);
431         }
432 }
433
434
435 void
436 check_trunc_hack(void)
437 {
438         struct yaffs_stat statbuf;
439
440         yaffs_ftruncate(fd, (off_t)0);
441         yaffs_ftruncate(fd, (off_t)100000);
442         yaffs_fstat(fd, &statbuf);
443         if (statbuf.st_size != (off_t)100000) {
444                 prt("no extend on truncate! not posix!\n");
445                 EXIT(130);
446         }
447         yaffs_ftruncate(fd, (off_t)0);
448 }
449
450
451 void
452 doread(unsigned offset, unsigned size)
453 {
454         off_t ret;
455         unsigned iret;
456
457         offset -= offset % readbdy;
458         if (size == 0) {
459                 if (!quiet && testcalls > simulatedopcount)
460                         prt("skipping zero size read\n");
461                 log4(OP_SKIPPED, OP_READ, offset, size);
462                 return;
463         }
464         if (size + offset > file_size) {
465                 if (!quiet && testcalls > simulatedopcount)
466                         prt("skipping seek/read past end of file\n");
467                 log4(OP_SKIPPED, OP_READ, offset, size);
468                 return;
469         }
470
471         log4(OP_READ, offset, size, 0);
472
473         if (testcalls <= simulatedopcount)
474                 return;
475
476         if (!quiet && ((progressinterval &&
477                         testcalls % progressinterval == 0) ||
478                        (debug &&
479                         (monitorstart == -1 ||
480                          (offset + size > monitorstart &&
481                           (monitorend == -1 || offset <= monitorend))))))
482                 prt("%lu read\t0x%x thru\t0x%x\t(0x%x bytes)\n", testcalls,
483                     offset, offset + size - 1, size);
484         ret = yaffs_lseek(fd, (off_t)offset, SEEK_SET);
485         if (ret == (off_t)-1) {
486                 prterr("doread: lseek");
487                 report_failure(140);
488         }
489         iret = yaffs_read(fd, temp_buf, size);
490         if (iret != size) {
491                 if (iret == -1)
492                         prterr("doread: read");
493                 else
494                         prt("short read: 0x%x bytes instead of 0x%x\n",
495                             iret, size);
496                 report_failure(141);
497         }
498         check_buffers(offset, size);
499 }
500
501
502
503
504
505 void
506 gendata(char *original_buf, char *good_buf, unsigned offset, unsigned size)
507 {
508         while (size--) {
509                 good_buf[offset] = testcalls % 256; 
510                 if (offset % 2)
511                         good_buf[offset] += original_buf[offset];
512                 offset++;
513         }
514 }
515
516
517 void
518 dowrite(unsigned offset, unsigned size)
519 {
520         off_t ret;
521         unsigned iret;
522
523         offset -= offset % writebdy;
524         if (size == 0) {
525                 if (!quiet && testcalls > simulatedopcount)
526                         prt("skipping zero size write\n");
527                 log4(OP_SKIPPED, OP_WRITE, offset, size);
528                 return;
529         }
530
531         log4(OP_WRITE, offset, size, file_size);
532
533         gendata(original_buf, good_buf, offset, size);
534         if (file_size < offset + size) {
535                 if (file_size < offset)
536                         memset(good_buf + file_size, '\0', offset - file_size);
537                 file_size = offset + size;
538                 if (lite) {
539                         warn("Lite file size bug in fsx!");
540                         report_failure(149);
541                 }
542         }
543
544         if (testcalls <= simulatedopcount)
545                 return;
546
547         if (!quiet && ((progressinterval &&
548                         testcalls % progressinterval == 0) ||
549                        (debug &&
550                         (monitorstart == -1 ||
551                          (offset + size > monitorstart &&
552                           (monitorend == -1 || offset <= monitorend))))))
553                 prt("%lu write\t0x%x thru\t0x%x\t(0x%x bytes)\n", testcalls,
554                     offset, offset + size - 1, size);
555         ret = yaffs_lseek(fd, (off_t)offset, SEEK_SET);
556         if (ret == (off_t)-1) {
557                 prterr("dowrite: lseek");
558                 report_failure(150);
559         }
560         iret = yaffs_write(fd, good_buf + offset, size);
561         if (iret != size) {
562                 if (iret == -1)
563                         prterr("dowrite: write");
564                 else
565                         prt("short write: 0x%x bytes instead of 0x%x\n",
566                             iret, size);
567                 report_failure(151);
568         }
569 }
570
571
572
573 void
574 dotruncate(unsigned size)
575 {
576         int oldsize = file_size;
577
578         size -= size % truncbdy;
579         if (size > biggest) {
580                 biggest = size;
581                 if (!quiet && testcalls > simulatedopcount)
582                         prt("truncating to largest ever: 0x%x\n", size);
583         }
584
585         log4(OP_TRUNCATE, size, (unsigned)file_size, 0);
586
587         if (size > file_size)
588                 memset(good_buf + file_size, '\0', size - file_size);
589         file_size = size;
590
591         if (testcalls <= simulatedopcount)
592                 return;
593         
594         if ((progressinterval && testcalls % progressinterval == 0) ||
595             (debug && (monitorstart == -1 || monitorend == -1 ||
596                        size <= monitorend)))
597                 prt("%lu trunc\tfrom 0x%x to 0x%x\n", testcalls, oldsize, size);
598         if (yaffs_ftruncate(fd, (off_t)size) == -1) {
599                 prt("ftruncate1: %x\n", size);
600                 prterr("dotruncate: ftruncate");
601                 report_failure(160);
602         }
603 }
604
605
606 void
607 writefileimage()
608 {
609         ssize_t iret;
610
611         if (yaffs_lseek(fd, (off_t)0, SEEK_SET) == (off_t)-1) {
612                 prterr("writefileimage: lseek");
613                 report_failure(171);
614         }
615         iret = yaffs_write(fd, good_buf, file_size);
616         if ((off_t)iret != file_size) {
617                 if (iret == -1)
618                         prterr("writefileimage: write");
619                 else
620                         prt("short write: 0x%x bytes instead of 0x%llx\n",
621                             iret, (unsigned long long)file_size);
622                 report_failure(172);
623         }
624         if (lite ? 0 : yaffs_ftruncate(fd, file_size) == -1) {
625                 prt("ftruncate2: %llx\n", (unsigned long long)file_size);
626                 prterr("writefileimage: ftruncate");
627                 report_failure(173);
628         }
629 }
630
631
632 void
633 docloseopen(void)
634
635         if (testcalls <= simulatedopcount)
636                 return;
637
638         if (debug)
639                 prt("%lu close/open\n", testcalls);
640         if (yaffs_close(fd)) {
641                 prterr("docloseopen: close");
642                 report_failure(180);
643         }
644         fd = yaffs_open(fname, O_RDWR, 0);
645         if (fd < 0) {
646                 prterr("docloseopen: open");
647                 report_failure(181);
648         }
649 }
650
651
652 void
653 yaffs_fsx_do_op(void)
654 {
655         unsigned long   offset;
656         unsigned long   size = maxoplen;
657         unsigned long   rv = random();
658         unsigned long   op = rv % (3 + !lite + mapped_writes);
659
660         /* turn off the map read if necessary */
661
662         if (op == 2 && !mapped_reads)
663             op = 0;
664
665         if (simulatedopcount > 0 && testcalls == simulatedopcount)
666                 writefileimage();
667
668         testcalls++;
669
670         if (closeprob)
671                 closeopen = (rv >> 3) < (1 << 28) / closeprob;
672
673         if (debugstart > 0 && testcalls >= debugstart)
674                 debug = 1;
675
676         if (!quiet && testcalls < simulatedopcount && testcalls % 100000 == 0)
677                 prt("%lu...\n", testcalls);
678
679         /*
680          * READ:        op = 0
681          * WRITE:       op = 1
682          * MAPREAD:     op = 2
683          * TRUNCATE:    op = 3
684          * MAPWRITE:    op = 3 or 4
685          */
686         if (lite ? 0 : op == 3 && (style & 1) == 0) /* vanilla truncate? */
687                 dotruncate(random() % maxfilelen);
688         else {
689                 if (randomoplen)
690                         size = random() % (maxoplen+1);
691                 if (lite ? 0 : op == 3)
692                         dotruncate(size);
693                 else {
694                         offset = random();
695                         if (op == 1 || op == (lite ? 3 : 4)) {
696                                 offset %= maxfilelen;
697                                 if (offset + size > maxfilelen)
698                                         size = maxfilelen - offset;
699                                 dowrite(offset, size);
700                         } else {
701                                 if (file_size)
702                                         offset %= file_size;
703                                 else
704                                         offset = 0;
705                                 if (offset + size > file_size)
706                                         size = file_size - offset;
707                                 doread(offset, size);
708                         }
709                 }
710         }
711         if (sizechecks && testcalls > simulatedopcount)
712                 check_size();
713         if (closeopen)
714                 docloseopen();
715 }
716
717
718 void
719 cleanup(sig)
720         int     sig;
721 {
722         if (sig)
723                 prt("signal %d\n", sig);
724         prt("testcalls = %lu\n", testcalls);
725         EXIT(sig);
726 }
727
728
729 void
730 usage(void)
731 {
732         fprintf(stdout, "usage: %s",
733                 "fsx [-dnqLOW] [-b opnum] [-c Prob] [-l flen] [-m start:end] [-o oplen] [-p progressinterval] [-r readbdy] [-s style] [-t truncbdy] [-w writebdy] [-D startingop] [-N numops] [-P dirpath] [-S seed] fname\n\
734         -b opnum: beginning operation number (default 1)\n\
735         -c P: 1 in P chance of file close+open at each op (default infinity)\n\
736         -d: debug output for all operations\n\
737         -l flen: the upper bound on file size (default 262144)\n\
738         -m startop:endop: monitor (print debug output) specified byte range (default 0:infinity)\n\
739         -n: no verifications of file size\n\
740         -o oplen: the upper bound on operation size (default 65536)\n\
741         -p progressinterval: debug output at specified operation interval\n\
742         -q: quieter operation\n\
743         -r readbdy: 4096 would make reads page aligned (default 1)\n\
744         -s style: 1 gives smaller truncates (default 0)\n\
745         -t truncbdy: 4096 would make truncates page aligned (default 1)\n\
746         -w writebdy: 4096 would make writes page aligned (default 1)\n\
747         -D startingop: debug output starting at specified operation\n\
748         -L: fsxLite - no file creations & no file size changes\n\
749         -N numops: total # operations to do (default infinity)\n\
750         -O: use oplen (see -o flag) for every op (default random)\n\
751         -P dirpath: save .fsxlog and .fsxgood files in dirpath (default ./)\n\
752         -S seed: for random # generator (default 1) 0 gets timestamp\n\
753         fname: this filename is REQUIRED (no default)\n");
754         EXIT(90);
755 }
756
757
758 int
759 getnum(char *s, char **e)
760 {
761         int ret = -1;
762
763         *e = (char *) 0;
764         ret = strtol(s, e, 0);
765         if (*e)
766                 switch (**e) {
767                 case 'b':
768                 case 'B':
769                         ret *= 512;
770                         *e = *e + 1;
771                         break;
772                 case 'k':
773                 case 'K':
774                         ret *= 1024;
775                         *e = *e + 1;
776                         break;
777                 case 'm':
778                 case 'M':
779                         ret *= 1024*1024;
780                         *e = *e + 1;
781                         break;
782                 case 'w':
783                 case 'W':
784                         ret *= 4;
785                         *e = *e + 1;
786                         break;
787                 }
788         return (ret);
789 }
790
791
792
793 extern int random_seed;
794 extern int simulate_power_failure;
795
796
797 int mounted_by_fsx = 0;
798
799 int
800 yaffs_fsx_init(const char *mount_pt)
801 {
802         int     i;
803
804         goodfile[0] = 0;
805         logfile[0] = 0;
806
807         page_size = getpagesize();
808         page_mask = page_size - 1;
809
810         setvbuf(stdout, (char *)0, _IOLBF, 0); /* line buffered stdout */
811
812         strcpy(mount_name,mount_pt);
813         strcpy(fname,mount_name);
814         strcat(fname,"/fsxdata");
815         
816 #if 0
817         signal(SIGHUP,  cleanup);
818         signal(SIGINT,  cleanup);
819         signal(SIGPIPE, cleanup);
820         signal(SIGALRM, cleanup);
821         signal(SIGTERM, cleanup);
822         signal(SIGXCPU, cleanup);
823         signal(SIGXFSZ, cleanup);
824         signal(SIGVTALRM,       cleanup);
825         signal(SIGUSR1, cleanup);
826         signal(SIGUSR2, cleanup);
827 #endif
828
829         initstate(seed, state, 256);
830         setstate(state);
831         fd = yaffs_open(fname, O_RDWR|(lite ? 0 : O_CREAT|O_TRUNC), 0666);
832         if (fd < 0) {
833                 prterr(fname);
834                 EXIT(91);
835         }
836         strncat(goodfile, fname, 256);
837         strcat (goodfile, ".fsxgood");
838         fsxgoodfd = yaffs_open(goodfile, O_RDWR|O_CREAT|O_TRUNC, 0666);
839         if (fsxgoodfd < 0) {
840                 prterr(goodfile);
841                 EXIT(92);
842         }
843         strncat(logfile, "fsx", 256);
844         strcat (logfile, ".fsxlog");
845         fsxlogf = fopen(logfile, "w");
846         if (fsxlogf == NULL) {
847                 prterr(logfile);
848                 EXIT(93);
849         }
850         if (lite) {
851                 off_t ret;
852                 file_size = maxfilelen = yaffs_lseek(fd, (off_t)0, SEEK_END);
853                 if (file_size == (off_t)-1) {
854                         prterr(fname);
855                         warn("main: lseek eof");
856                         EXIT(94);
857                 }
858                 ret = yaffs_lseek(fd, (off_t)0, SEEK_SET);
859                 if (ret == (off_t)-1) {
860                         prterr(fname);
861                         warn("main: lseek 0");
862                         EXIT(95);
863                 }
864         }
865         original_buf = (char *) malloc(maxfilelen);
866         for (i = 0; i < maxfilelen; i++)
867                 original_buf[i] = random() % 256;
868         good_buf = (char *) malloc(maxfilelen);
869         memset(good_buf, '\0', maxfilelen);
870         temp_buf = (char *) malloc(maxoplen);
871         memset(temp_buf, '\0', maxoplen);
872         if (lite) {     /* zero entire existing file */
873                 ssize_t written;
874
875                 written = yaffs_write(fd, good_buf, (size_t)maxfilelen);
876                 if (written != maxfilelen) {
877                         if (written == -1) {
878                                 prterr(fname);
879                                 warn("main: error on write");
880                         } else
881                                 warn("main: short write, 0x%x bytes instead of 0x%x\n",
882                                      (unsigned)written, maxfilelen);
883                         EXIT(98);
884                 }
885         } else 
886                 check_trunc_hack();
887                 
888         printf("yaffs_fsx_init done\n");
889                 
890         return 0;
891 }
892
893
894 int yaffs_fsx_complete(void)
895 {
896         if (yaffs_close(fd)) {
897                 prterr("close");
898                 report_failure(99);
899         }
900         
901         yaffs_close(fsxgoodfd);
902         
903         prt("All operations completed A-OK!\n");
904
905         EXIT(0);
906         return 0;
907 }
908
909 int
910 yaffs_fsx_main(const char *mount_pt, int numops)
911 {
912         yaffs_fsx_init(mount_pt);
913         while (numops == -1 || numops--)
914                 yaffs_fsx_do_op();
915         yaffs_fsx_complete();
916         
917         return 0;
918 }