Fix compiler grizzle
[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 <sys/types.h>
50 #include <sys/stat.h>
51 #ifdef _UWIN
52 # include <sys/param.h>
53 # include <limits.h>
54 # include <time.h>
55 # include <strings.h>
56 #endif
57 #include <fcntl.h>
58 #include <sys/mman.h>
59 #ifndef MAP_FILE
60 # define MAP_FILE 0
61 #endif
62 #include <limits.h>
63 #include <signal.h>
64 #include <stdio.h>
65 #include <stdlib.h>
66 #include <string.h>
67 #include <unistd.h>
68 #include <stdarg.h>
69 #include <errno.h>
70 #include <time.h>
71
72 #include "yaffsfs.h"
73
74 #define NUMPRINTCOLUMNS 32      /* # columns of data to print on each line */
75
76 /*
77  *      A log entry is an operation and a bunch of arguments.
78  */
79
80 struct log_entry {
81         int     operation;
82         int     args[3];
83 };
84
85 #define LOGSIZE 1000
86
87 struct log_entry        oplog[LOGSIZE]; /* the log */
88 int                     logptr = 0;     /* current position in log */
89 int                     logcount = 0;   /* total ops */
90
91 /*
92  *      Define operations
93  */
94
95 #define OP_READ         1
96 #define OP_WRITE        2
97 #define OP_TRUNCATE     3
98 #define OP_CLOSEOPEN    4
99 #define OP_MAPREAD      5
100 #define OP_MAPWRITE     6
101 #define OP_SKIPPED      7
102
103 int page_size;
104 int page_mask;
105
106 char    *original_buf;                  /* a pointer to the original data */
107 char    *good_buf;                      /* a pointer to the correct data */
108 char    *temp_buf;                      /* a pointer to the current data */
109
110 char    fname[200];                             /* name of our test file */
111 char    mount_name[200];
112
113 int     fd;                             /* fd for our test file */
114
115 off_t           file_size = 0;
116 off_t           biggest = 0;
117 char            state[256];
118 unsigned long   testcalls = 0;          /* calls to function "test" */
119
120 unsigned long   simulatedopcount = 0;   /* -b flag */
121 int     closeprob = 0;                  /* -c flag */
122 int     debug = 0;                      /* -d flag */
123 unsigned long   debugstart = 0;         /* -D flag */
124 unsigned long   maxfilelen = 256 * 1024;        /* -l flag */
125 int     sizechecks = 1;                 /* -n flag disables them */
126 int     maxoplen = 64 * 1024;           /* -o flag */
127 int     quiet = 0;                      /* -q flag */
128 unsigned long progressinterval = 0;     /* -p flag */
129 int     readbdy = 1;                    /* -r flag */
130 int     style = 0;                      /* -s flag */
131 int     truncbdy = 1;                   /* -t flag */
132 int     writebdy = 1;                   /* -w flag */
133 long    monitorstart = -1;              /* -m flag */
134 long    monitorend = -1;                /* -m flag */
135 int     lite = 0;                       /* -L flag */
136 long    numops = /*-1 */ 10000000;                      /* -N flag */
137 int     randomoplen = 1;                /* -O flag disables it */
138 int     seed = 1;                       /* -S flag */
139
140 int     mapped_writes = 0;            /* yaffs direct does not support mmapped files */
141 int     mapped_reads = 0;
142
143 int     fsxgoodfd = 0;
144 FILE *  fsxlogf = NULL;
145 int badoff = -1;
146 int closeopen = 0;
147
148
149
150 void EXIT(int x)
151 {
152         printf("fsx wanted to exit with %d\n",x);
153         while(1){}
154 }
155
156 char goodfile[1024];
157 char logfile[1024];
158
159
160 void
161 vwarnc(code, fmt, ap)
162         int code;
163         const char *fmt;
164         va_list ap;
165 {
166         fprintf(stderr, "fsx: ");
167         if (fmt != NULL) {
168                 vfprintf(stderr, fmt, ap);
169                 fprintf(stderr, ": ");
170         }
171         fprintf(stderr, "%s\n", strerror(code));
172 }
173
174
175 void
176 warn(const char * fmt, ...)
177 {
178         va_list ap;
179         va_start(ap, fmt);
180         vwarnc(errno, fmt, ap);
181         va_end(ap);
182 }
183
184
185 void
186 prt(char *fmt, ...)
187 {
188         va_list args;
189
190         va_start(args, fmt);
191         vfprintf(stdout, fmt, args);
192         if (fsxlogf)
193                 vfprintf(fsxlogf, fmt, args);
194         va_end(args);
195 }
196
197 void
198 prterr(char *prefix)
199 {
200         prt("%s%s%s\n", prefix, prefix ? ": " : "", strerror(errno));
201 }
202
203
204 void
205 log4(int operation, int arg0, int arg1, int arg2)
206 {
207         struct log_entry *le;
208
209         le = &oplog[logptr];
210         le->operation = operation;
211         if (closeopen)
212                 le->operation = ~ le->operation;
213         le->args[0] = arg0;
214         le->args[1] = arg1;
215         le->args[2] = arg2;
216         logptr++;
217         logcount++;
218         if (logptr >= LOGSIZE)
219                 logptr = 0;
220 }
221
222
223 void
224 logdump(void)
225 {
226         int     i, count, down;
227         struct log_entry        *lp;
228
229         prt("LOG DUMP (%d total operations):\n", logcount);
230         if (logcount < LOGSIZE) {
231                 i = 0;
232                 count = logcount;
233         } else {
234                 i = logptr;
235                 count = LOGSIZE;
236         }
237         for ( ; count > 0; count--) {
238                 int opnum;
239
240                 opnum = i+1 + (logcount/LOGSIZE)*LOGSIZE;
241                 prt("%d(%d mod 256): ", opnum, opnum%256);
242                 lp = &oplog[i];
243                 if ((closeopen = lp->operation < 0))
244                         lp->operation = ~ lp->operation;
245                         
246                 switch (lp->operation) {
247                 case OP_MAPREAD:
248                         prt("MAPREAD\t0x%x thru 0x%x\t(0x%x bytes)",
249                             lp->args[0], lp->args[0] + lp->args[1] - 1,
250                             lp->args[1]);
251                         if (badoff >= lp->args[0] && badoff <
252                                                      lp->args[0] + lp->args[1])
253                                 prt("\t***RRRR***");
254                         break;
255                 case OP_MAPWRITE:
256                         prt("MAPWRITE 0x%x thru 0x%x\t(0x%x bytes)",
257                             lp->args[0], lp->args[0] + lp->args[1] - 1,
258                             lp->args[1]);
259                         if (badoff >= lp->args[0] && badoff <
260                                                      lp->args[0] + lp->args[1])
261                                 prt("\t******WWWW");
262                         break;
263                 case OP_READ:
264                         prt("READ\t0x%x thru 0x%x\t(0x%x bytes)",
265                             lp->args[0], lp->args[0] + lp->args[1] - 1,
266                             lp->args[1]);
267                         if (badoff >= lp->args[0] &&
268                             badoff < lp->args[0] + lp->args[1])
269                                 prt("\t***RRRR***");
270                         break;
271                 case OP_WRITE:
272                         prt("WRITE\t0x%x thru 0x%x\t(0x%x bytes)",
273                             lp->args[0], lp->args[0] + lp->args[1] - 1,
274                             lp->args[1]);
275                         if (lp->args[0] > lp->args[2])
276                                 prt(" HOLE");
277                         else if (lp->args[0] + lp->args[1] > lp->args[2])
278                                 prt(" EXTEND");
279                         if ((badoff >= lp->args[0] || badoff >=lp->args[2]) &&
280                             badoff < lp->args[0] + lp->args[1])
281                                 prt("\t***WWWW");
282                         break;
283                 case OP_TRUNCATE:
284                         down = lp->args[0] < lp->args[1];
285                         prt("TRUNCATE %s\tfrom 0x%x to 0x%x",
286                             down ? "DOWN" : "UP", lp->args[1], lp->args[0]);
287                         if (badoff >= lp->args[!down] &&
288                             badoff < lp->args[!!down])
289                                 prt("\t******WWWW");
290                         break;
291                 case OP_SKIPPED:
292                         prt("SKIPPED (no operation)");
293                         break;
294                 default:
295                         prt("BOGUS LOG ENTRY (operation code = %d)!",
296                             lp->operation);
297                 }
298                 if (closeopen)
299                         prt("\n\t\tCLOSE/OPEN");
300                 prt("\n");
301                 i++;
302                 if (i == LOGSIZE)
303                         i = 0;
304         }
305 }
306
307
308 void
309 save_buffer(char *buffer, off_t bufferlength, int fd)
310 {
311         off_t ret;
312         ssize_t byteswritten;
313
314         if (fd <= 0 || bufferlength == 0)
315                 return;
316
317         if (bufferlength > SSIZE_MAX) {
318                 prt("fsx flaw: overflow in save_buffer\n");
319                 EXIT(67);
320         }
321         if (lite) {
322                 off_t size_by_seek = yaffs_lseek(fd, (off_t)0, SEEK_END);
323                 if (size_by_seek == (off_t)-1)
324                         prterr("save_buffer: lseek eof");
325                 else if (bufferlength > size_by_seek) {
326                         warn("save_buffer: .fsxgood file too short... will save 0x%llx bytes instead of 0x%llx\n", (unsigned long long)size_by_seek,
327                              (unsigned long long)bufferlength);
328                         bufferlength = size_by_seek;
329                 }
330         }
331
332         ret = yaffs_lseek(fd, (off_t)0, SEEK_SET);
333         if (ret == (off_t)-1)
334                 prterr("save_buffer: lseek 0");
335         
336         byteswritten = yaffs_write(fd, buffer, (size_t)bufferlength);
337         if (byteswritten != bufferlength) {
338                 if (byteswritten == -1)
339                         prterr("save_buffer write");
340                 else
341                         warn("save_buffer: short write, 0x%x bytes instead of 0x%llx\n",
342                              (unsigned)byteswritten,
343                              (unsigned long long)bufferlength);
344         }
345 }
346
347
348 void
349 report_failure(int status)
350 {
351         logdump();
352         
353         if (fsxgoodfd) {
354                 if (good_buf) {
355                         save_buffer(good_buf, file_size, fsxgoodfd);
356                         prt("Correct content saved for comparison\n");
357                         prt("(maybe hexdump \"%s\" vs \"%s.fsxgood\")\n",
358                             fname, fname);
359                 }
360                 close(fsxgoodfd);
361         }
362         prt("Exiting with %d\n",status);
363         EXIT(status);
364 }
365
366
367 #define short_at(cp) ((unsigned short)((*((unsigned char *)(cp)) << 8) | \
368                                         *(((unsigned char *)(cp)) + 1)))
369
370 void
371 check_buffers(unsigned offset, unsigned size)
372 {
373         unsigned char c, t;
374         unsigned i = 0;
375         unsigned n = 0;
376         unsigned op = 0;
377         unsigned bad = 0;
378
379         if (memcmp(good_buf + offset, temp_buf, size) != 0) {
380                 prt("READ BAD DATA: offset = 0x%x, size = 0x%x\n",
381                     offset, size);
382                 prt("OFFSET\tGOOD\tBAD\tRANGE\n");
383                 while (size > 0) {
384                         c = good_buf[offset];
385                         t = temp_buf[i];
386                         if (c != t) {
387                                 if (n == 0) {
388                                         bad = short_at(&temp_buf[i]);
389                                         prt("0x%5x\t0x%04x\t0x%04x", offset,
390                                             short_at(&good_buf[offset]), bad);
391                                         op = temp_buf[offset & 1 ? i+1 : i];
392                                 }
393                                 n++;
394                                 badoff = offset;
395                         }
396                         offset++;
397                         i++;
398                         size--;
399                 }
400                 if (n) {
401                         prt("\t0x%5x\n", n);
402                         if (bad)
403                                 prt("operation# (mod 256) for the bad data may be %u\n", ((unsigned)op & 0xff));
404                         else
405                                 prt("operation# (mod 256) for the bad data unknown, check HOLE and EXTEND ops\n");
406                 } else
407                         prt("????????????????\n");
408                 report_failure(110);
409         }
410 }
411
412
413 void
414 check_size(void)
415 {
416         struct yaffs_stat       statbuf;
417         off_t   size_by_seek;
418
419         if (yaffs_fstat(fd, &statbuf)) {
420                 prterr("check_size: fstat");
421                 statbuf.st_size = -1;
422         }
423         size_by_seek = yaffs_lseek(fd, (off_t)0, SEEK_END);
424         if (file_size != statbuf.st_size || file_size != size_by_seek) {
425                 prt("Size error: expected 0x%llx stat 0x%llx seek 0x%llx\n",
426                     (unsigned long long)file_size,
427                     (unsigned long long)statbuf.st_size,
428                     (unsigned long long)size_by_seek);
429                 report_failure(120);
430         }
431 }
432
433
434 void
435 check_trunc_hack(void)
436 {
437         struct yaffs_stat statbuf;
438
439         yaffs_ftruncate(fd, (off_t)0);
440         yaffs_ftruncate(fd, (off_t)100000);
441         yaffs_fstat(fd, &statbuf);
442         if (statbuf.st_size != (off_t)100000) {
443                 prt("no extend on truncate! not posix!\n");
444                 EXIT(130);
445         }
446         yaffs_ftruncate(fd, (off_t)0);
447 }
448
449
450 void
451 doread(unsigned offset, unsigned size)
452 {
453         off_t ret;
454         unsigned iret;
455
456         offset -= offset % readbdy;
457         if (size == 0) {
458                 if (!quiet && testcalls > simulatedopcount)
459                         prt("skipping zero size read\n");
460                 log4(OP_SKIPPED, OP_READ, offset, size);
461                 return;
462         }
463         if (size + offset > file_size) {
464                 if (!quiet && testcalls > simulatedopcount)
465                         prt("skipping seek/read past end of file\n");
466                 log4(OP_SKIPPED, OP_READ, offset, size);
467                 return;
468         }
469
470         log4(OP_READ, offset, size, 0);
471
472         if (testcalls <= simulatedopcount)
473                 return;
474
475         if (!quiet && ((progressinterval &&
476                         testcalls % progressinterval == 0) ||
477                        (debug &&
478                         (monitorstart == -1 ||
479                          (offset + size > monitorstart &&
480                           (monitorend == -1 || offset <= monitorend))))))
481                 prt("%lu read\t0x%x thru\t0x%x\t(0x%x bytes)\n", testcalls,
482                     offset, offset + size - 1, size);
483         ret = yaffs_lseek(fd, (off_t)offset, SEEK_SET);
484         if (ret == (off_t)-1) {
485                 prterr("doread: lseek");
486                 report_failure(140);
487         }
488         iret = yaffs_read(fd, temp_buf, size);
489         if (iret != size) {
490                 if (iret == -1)
491                         prterr("doread: read");
492                 else
493                         prt("short read: 0x%x bytes instead of 0x%x\n",
494                             iret, size);
495                 report_failure(141);
496         }
497         check_buffers(offset, size);
498 }
499
500
501
502
503
504 void
505 gendata(char *original_buf, char *good_buf, unsigned offset, unsigned size)
506 {
507         while (size--) {
508                 good_buf[offset] = testcalls % 256; 
509                 if (offset % 2)
510                         good_buf[offset] += original_buf[offset];
511                 offset++;
512         }
513 }
514
515
516 void
517 dowrite(unsigned offset, unsigned size)
518 {
519         off_t ret;
520         unsigned iret;
521
522         offset -= offset % writebdy;
523         if (size == 0) {
524                 if (!quiet && testcalls > simulatedopcount)
525                         prt("skipping zero size write\n");
526                 log4(OP_SKIPPED, OP_WRITE, offset, size);
527                 return;
528         }
529
530         log4(OP_WRITE, offset, size, file_size);
531
532         gendata(original_buf, good_buf, offset, size);
533         if (file_size < offset + size) {
534                 if (file_size < offset)
535                         memset(good_buf + file_size, '\0', offset - file_size);
536                 file_size = offset + size;
537                 if (lite) {
538                         warn("Lite file size bug in fsx!");
539                         report_failure(149);
540                 }
541         }
542
543         if (testcalls <= simulatedopcount)
544                 return;
545
546         if (!quiet && ((progressinterval &&
547                         testcalls % progressinterval == 0) ||
548                        (debug &&
549                         (monitorstart == -1 ||
550                          (offset + size > monitorstart &&
551                           (monitorend == -1 || offset <= monitorend))))))
552                 prt("%lu write\t0x%x thru\t0x%x\t(0x%x bytes)\n", testcalls,
553                     offset, offset + size - 1, size);
554         ret = yaffs_lseek(fd, (off_t)offset, SEEK_SET);
555         if (ret == (off_t)-1) {
556                 prterr("dowrite: lseek");
557                 report_failure(150);
558         }
559         iret = yaffs_write(fd, good_buf + offset, size);
560         if (iret != size) {
561                 if (iret == -1)
562                         prterr("dowrite: write");
563                 else
564                         prt("short write: 0x%x bytes instead of 0x%x\n",
565                             iret, size);
566                 report_failure(151);
567         }
568 }
569
570
571
572 void
573 dotruncate(unsigned size)
574 {
575         int oldsize = file_size;
576
577         size -= size % truncbdy;
578         if (size > biggest) {
579                 biggest = size;
580                 if (!quiet && testcalls > simulatedopcount)
581                         prt("truncating to largest ever: 0x%x\n", size);
582         }
583
584         log4(OP_TRUNCATE, size, (unsigned)file_size, 0);
585
586         if (size > file_size)
587                 memset(good_buf + file_size, '\0', size - file_size);
588         file_size = size;
589
590         if (testcalls <= simulatedopcount)
591                 return;
592         
593         if ((progressinterval && testcalls % progressinterval == 0) ||
594             (debug && (monitorstart == -1 || monitorend == -1 ||
595                        size <= monitorend)))
596                 prt("%lu trunc\tfrom 0x%x to 0x%x\n", testcalls, oldsize, size);
597         if (yaffs_ftruncate(fd, (off_t)size) == -1) {
598                 prt("ftruncate1: %x\n", size);
599                 prterr("dotruncate: ftruncate");
600                 report_failure(160);
601         }
602 }
603
604
605 void
606 writefileimage()
607 {
608         ssize_t iret;
609
610         if (yaffs_lseek(fd, (off_t)0, SEEK_SET) == (off_t)-1) {
611                 prterr("writefileimage: lseek");
612                 report_failure(171);
613         }
614         iret = yaffs_write(fd, good_buf, file_size);
615         if ((off_t)iret != file_size) {
616                 if (iret == -1)
617                         prterr("writefileimage: write");
618                 else
619                         prt("short write: 0x%x bytes instead of 0x%llx\n",
620                             iret, (unsigned long long)file_size);
621                 report_failure(172);
622         }
623         if (lite ? 0 : yaffs_ftruncate(fd, file_size) == -1) {
624                 prt("ftruncate2: %llx\n", (unsigned long long)file_size);
625                 prterr("writefileimage: ftruncate");
626                 report_failure(173);
627         }
628 }
629
630
631 void
632 docloseopen(void)
633
634         if (testcalls <= simulatedopcount)
635                 return;
636
637         if (debug)
638                 prt("%lu close/open\n", testcalls);
639         if (yaffs_close(fd)) {
640                 prterr("docloseopen: close");
641                 report_failure(180);
642         }
643         fd = yaffs_open(fname, O_RDWR, 0);
644         if (fd < 0) {
645                 prterr("docloseopen: open");
646                 report_failure(181);
647         }
648 }
649
650
651 void
652 yaffs_fsx_do_op(void)
653 {
654         unsigned long   offset;
655         unsigned long   size = maxoplen;
656         unsigned long   rv = random();
657         unsigned long   op = rv % (3 + !lite + mapped_writes);
658
659         /* turn off the map read if necessary */
660
661         if (op == 2 && !mapped_reads)
662             op = 0;
663
664         if (simulatedopcount > 0 && testcalls == simulatedopcount)
665                 writefileimage();
666
667         testcalls++;
668
669         if (closeprob)
670                 closeopen = (rv >> 3) < (1 << 28) / closeprob;
671
672         if (debugstart > 0 && testcalls >= debugstart)
673                 debug = 1;
674
675         if (!quiet && testcalls < simulatedopcount && testcalls % 100000 == 0)
676                 prt("%lu...\n", testcalls);
677
678         /*
679          * READ:        op = 0
680          * WRITE:       op = 1
681          * MAPREAD:     op = 2
682          * TRUNCATE:    op = 3
683          * MAPWRITE:    op = 3 or 4
684          */
685         if (lite ? 0 : op == 3 && (style & 1) == 0) /* vanilla truncate? */
686                 dotruncate(random() % maxfilelen);
687         else {
688                 if (randomoplen)
689                         size = random() % (maxoplen+1);
690                 if (lite ? 0 : op == 3)
691                         dotruncate(size);
692                 else {
693                         offset = random();
694                         if (op == 1 || op == (lite ? 3 : 4)) {
695                                 offset %= maxfilelen;
696                                 if (offset + size > maxfilelen)
697                                         size = maxfilelen - offset;
698                                 dowrite(offset, size);
699                         } else {
700                                 if (file_size)
701                                         offset %= file_size;
702                                 else
703                                         offset = 0;
704                                 if (offset + size > file_size)
705                                         size = file_size - offset;
706                                 doread(offset, size);
707                         }
708                 }
709         }
710         if (sizechecks && testcalls > simulatedopcount)
711                 check_size();
712         if (closeopen)
713                 docloseopen();
714 }
715
716
717 void
718 cleanup(sig)
719         int     sig;
720 {
721         if (sig)
722                 prt("signal %d\n", sig);
723         prt("testcalls = %lu\n", testcalls);
724         EXIT(sig);
725 }
726
727
728 void
729 usage(void)
730 {
731         fprintf(stdout, "usage: %s",
732                 "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\
733         -b opnum: beginning operation number (default 1)\n\
734         -c P: 1 in P chance of file close+open at each op (default infinity)\n\
735         -d: debug output for all operations\n\
736         -l flen: the upper bound on file size (default 262144)\n\
737         -m startop:endop: monitor (print debug output) specified byte range (default 0:infinity)\n\
738         -n: no verifications of file size\n\
739         -o oplen: the upper bound on operation size (default 65536)\n\
740         -p progressinterval: debug output at specified operation interval\n\
741         -q: quieter operation\n\
742         -r readbdy: 4096 would make reads page aligned (default 1)\n\
743         -s style: 1 gives smaller truncates (default 0)\n\
744         -t truncbdy: 4096 would make truncates page aligned (default 1)\n\
745         -w writebdy: 4096 would make writes page aligned (default 1)\n\
746         -D startingop: debug output starting at specified operation\n\
747         -L: fsxLite - no file creations & no file size changes\n\
748         -N numops: total # operations to do (default infinity)\n\
749         -O: use oplen (see -o flag) for every op (default random)\n\
750         -P dirpath: save .fsxlog and .fsxgood files in dirpath (default ./)\n\
751         -S seed: for random # generator (default 1) 0 gets timestamp\n\
752         fname: this filename is REQUIRED (no default)\n");
753         EXIT(90);
754 }
755
756
757 int
758 getnum(char *s, char **e)
759 {
760         int ret = -1;
761
762         *e = (char *) 0;
763         ret = strtol(s, e, 0);
764         if (*e)
765                 switch (**e) {
766                 case 'b':
767                 case 'B':
768                         ret *= 512;
769                         *e = *e + 1;
770                         break;
771                 case 'k':
772                 case 'K':
773                         ret *= 1024;
774                         *e = *e + 1;
775                         break;
776                 case 'm':
777                 case 'M':
778                         ret *= 1024*1024;
779                         *e = *e + 1;
780                         break;
781                 case 'w':
782                 case 'W':
783                         ret *= 4;
784                         *e = *e + 1;
785                         break;
786                 }
787         return (ret);
788 }
789
790
791
792 extern int random_seed;
793 extern int simulate_power_failure;
794
795
796 int mounted_by_fsx = 0;
797
798 int
799 yaffs_fsx_init(const char *mount_pt)
800 {
801         int     i, style, ch;
802         char    *endp;
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         return 0;
889 }
890
891
892 int yaffs_fsx_complete(void)
893 {
894         if (yaffs_close(fd)) {
895                 prterr("close");
896                 report_failure(99);
897         }
898         
899         yaffs_close(fsxgoodfd);
900         
901         prt("All operations completed A-OK!\n");
902
903         EXIT(0);
904         return 0;
905 }
906
907 int
908 yaffs_fsx_main(const char *mount_pt)
909 {
910         yaffs_fsx_init(mount_pt);
911         while (numops == -1 || numops--)
912                 yaffs_fsx_do_op();
913         yaffs_fsx_complete();
914 }