3ac5604284dbd3c3a577aabc19c48d47f9685861
[yaffs2.git] / direct / basic-test / dtest.c
1 /*
2  * YAFFS: Yet another FFS. A NAND-flash specific file system. 
3  *
4  * Copyright (C) 2002-2010 Aleph One Ltd.
5  *   for Toby Churchill Ltd and Brightstar Engineering
6  *
7  * Created by Charles Manning <charles@aleph1.co.uk>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License version 2 as
11  * published by the Free Software Foundation.
12  *
13  */
14
15
16
17
18 #include <stdio.h>
19 #include <string.h>
20 #include <unistd.h>
21 #include <fcntl.h>
22
23 #include "yaffsfs.h"
24
25 #include "yaffs_guts.h" /* Only for dumping device innards */
26
27 extern int yaffs_traceMask;
28
29 void dumpDir(const char *dname);
30
31 char xx[600];
32
33 void copy_in_a_file(char *yaffsName,char *inName)
34 {
35         int inh,outh;
36         unsigned char buffer[100];
37         int ni,no;
38         inh = open(inName,O_RDONLY);
39         outh = yaffs_open(yaffsName, O_CREAT | O_RDWR | O_TRUNC, S_IREAD | S_IWRITE);
40         
41         while((ni = read(inh,buffer,100)) > 0)
42         {
43                 no = yaffs_write(outh,buffer,ni);
44                 if(ni != no)
45                 {
46                         printf("problem writing yaffs file\n");
47                 }
48                 
49         }
50         
51         yaffs_close(outh);
52         close(inh);
53 }
54
55 void make_a_file(char *yaffsName,char bval,int sizeOfFile)
56 {
57         int outh;
58         int i;
59         unsigned char buffer[100];
60
61         outh = yaffs_open(yaffsName, O_CREAT | O_RDWR | O_TRUNC, S_IREAD | S_IWRITE);
62         
63         memset(buffer,bval,100);
64         
65         do{
66                 i = sizeOfFile;
67                 if(i > 100) i = 100;
68                 sizeOfFile -= i;
69                 
70                 yaffs_write(outh,buffer,i);
71                 
72         } while (sizeOfFile > 0);
73         
74                 
75         yaffs_close(outh);
76
77 }
78
79 void make_pattern_file(char *fn,int size)
80 {
81         int outh;
82         int marker;
83         int i;
84         outh = yaffs_open(fn, O_CREAT | O_RDWR | O_TRUNC, S_IREAD | S_IWRITE);
85         yaffs_lseek(outh,size-1,SEEK_SET);
86         yaffs_write(outh,"A",1);
87         
88         for(i = 0; i < size; i+=256)
89         {
90                 marker = ~i;
91                 yaffs_lseek(outh,i,SEEK_SET);
92                 yaffs_write(outh,&marker,sizeof(marker));
93         }
94         yaffs_close(outh);
95         
96 }
97
98 int check_pattern_file(char *fn)
99 {
100         int h;
101         int marker;
102         int i;
103         int size;
104         int ok = 1;
105         
106         h = yaffs_open(fn, O_RDWR,0);
107         size = yaffs_lseek(h,0,SEEK_END);
108                 
109         for(i = 0; i < size; i+=256)
110         {
111                 yaffs_lseek(h,i,SEEK_SET);
112                 yaffs_read(h,&marker,sizeof(marker));
113                 ok = (marker == ~i);
114                 if(!ok)
115                 {
116                    printf("pattern check failed on file %s, size %d at position %d. Got %x instead of %x\n",
117                                         fn,size,i,marker,~i);
118                 }
119         }
120         yaffs_close(h);
121         return ok;
122 }
123
124
125
126
127
128 int dump_file_data(char *fn)
129 {
130         int h;
131         int i = 0;
132         int ok = 1;
133         unsigned char b;
134         
135         h = yaffs_open(fn, O_RDWR,0);
136
137                                 
138         printf("%s\n",fn);
139         while(yaffs_read(h,&b,1)> 0)
140         {
141                 printf("%02x",b);
142                 i++;
143                 if(i > 32) 
144                 {
145                    printf("\n");
146                    i = 0;;
147                  }
148         }
149         printf("\n");
150         yaffs_close(h);
151         return ok;
152 }
153
154
155
156 void dump_file(const char *fn)
157 {
158         int i;
159         int size;
160         int h;
161         
162         h = yaffs_open(fn,O_RDONLY,0);
163         if(h < 0)
164         {
165                 printf("*****\nDump file %s does not exist\n",fn);
166         }
167         else
168         {
169                 size = yaffs_lseek(h,0,SEEK_SET);
170                 printf("*****\nDump file %s size %d\n",fn,size);
171                 for(i = 0; i < size; i++)
172                 {
173                         
174                 }
175         }
176 }
177
178 void create_file_of_size(const char *fn,int syze)
179 {
180         int h;
181         int n;
182         int result;
183         int iteration = 0;
184         char xx[200];
185
186         h = yaffs_open(fn, O_CREAT | O_RDWR | O_TRUNC, S_IREAD | S_IWRITE);
187                 
188         while (syze > 0)
189         {
190                 sprintf(xx,"%s %8d",fn,iteration);
191                 n = strlen(xx);
192                 result = yaffs_write(h,xx,n);
193                 if(result != n){
194                         printf("Wrote %d, should have been %d. syze is %d\n",result,n,syze);
195                         syze = 0;
196                 } else
197                         syze-=n;
198                 iteration++;
199         }
200         yaffs_close (h);
201 }
202
203 void verify_file_of_size(const char *fn,int syze)
204 {
205         int h;
206         int result;
207         
208         char xx[200];
209         char yy[200];
210         int l;
211         
212         int iterations = (syze + strlen(fn) -1)/ strlen(fn);
213         
214         h = yaffs_open(fn, O_RDONLY, S_IREAD | S_IWRITE);
215                 
216         while (iterations > 0)
217         {
218                 sprintf(xx,"%s %8d",fn,iterations);
219                 l = strlen(xx);
220                 
221                 result = yaffs_read(h,yy,l);
222                 yy[l] = 0;
223                 
224                 if(strcmp(xx,yy)){
225                         printf("=====>>>>> verification of file %s failed near position %lld\n",fn,(long long)yaffs_lseek(h,0,SEEK_CUR));
226                 }
227                 iterations--;
228         }
229         yaffs_close (h);
230 }
231
232 void create_resized_file_of_size(const char *fn,int syze1,int reSyze, int syze2)
233 {
234         int h;
235         
236         int iterations;
237         
238         h = yaffs_open(fn, O_CREAT | O_RDWR | O_TRUNC, S_IREAD | S_IWRITE);
239                 
240         iterations = (syze1 + strlen(fn) -1)/ strlen(fn);
241         while (iterations > 0)
242         {
243                 yaffs_write(h,fn,strlen(fn));
244                 iterations--;
245         }
246         
247         yaffs_ftruncate(h,reSyze);
248         
249         yaffs_lseek(h,0,SEEK_SET);
250         iterations = (syze2 + strlen(fn) -1)/ strlen(fn);
251         while (iterations > 0)
252         {
253                 yaffs_write(h,fn,strlen(fn));
254                 iterations--;
255         }
256         
257         yaffs_close (h);
258 }
259
260
261 void do_some_file_stuff(const char *path)
262 {
263
264         char fn[100];
265
266         sprintf(fn,"%s/%s",path,"f1");
267         create_file_of_size(fn,10000);
268
269         sprintf(fn,"%s/%s",path,"fdel");
270         create_file_of_size(fn,10000);
271         yaffs_unlink(fn);
272
273         sprintf(fn,"%s/%s",path,"f2");
274         
275         create_resized_file_of_size(fn,10000,3000,4000);
276 }
277
278 void yaffs_backward_scan_test(const char *path)
279 {
280         char fn[100];
281         
282         yaffs_StartUp();        
283         
284         yaffs_mount(path);
285         
286         do_some_file_stuff(path);
287         
288         sprintf(fn,"%s/ddd",path);
289         
290         yaffs_mkdir(fn,0);
291         
292         do_some_file_stuff(fn);
293         
294         yaffs_unmount(path);
295         
296         yaffs_mount(path);
297 }
298
299 void null_name_test(const char *path)
300 {
301         char fn[100];
302         int h;
303         yaffs_StartUp();
304
305         yaffs_mount(path);
306
307         sprintf(fn,"%s",path);
308
309         h = yaffs_open(fn,O_CREAT| O_TRUNC| O_RDWR, 0666);
310
311         printf("%d\n",h);
312
313 }
314
315 char xxzz[2000];
316
317
318 void yaffs_device_flush_test(const char *path)
319 {
320         char fn[100];
321         int h;
322         int i;
323         
324         yaffs_StartUp();        
325         
326         yaffs_mount(path);
327         
328         do_some_file_stuff(path);
329         
330         // Open and add some data to a few files
331         for(i = 0; i < 10; i++) {
332         
333                 sprintf(fn,"%s/ff%d",path,i);
334
335                 h = yaffs_open(fn, O_CREAT | O_RDWR | O_TRUNC, S_IWRITE | S_IREAD);
336                 yaffs_write(h,xxzz,2000);
337                 yaffs_write(h,xxzz,2000);
338         }
339         yaffs_unmount(path);
340         
341         yaffs_mount(path);
342 }
343
344
345
346 void short_scan_test(const char *path, int fsize, int niterations)
347 {
348         int i;
349         char fn[100];
350         
351         sprintf(fn,"%s/%s",path,"f1");
352         
353         yaffs_StartUp();
354         for(i = 0; i < niterations; i++)
355         {
356                 printf("\n*****************\nIteration %d\n",i);
357                 yaffs_mount(path);
358                 printf("\nmount: Directory look-up of %s\n",path);
359                 dumpDir(path);
360                 make_a_file(fn,1,fsize);
361                 yaffs_unmount(path);
362         }
363 }
364
365
366
367 void scan_pattern_test(const char *path, int fsize, int niterations)
368 {
369         int i;
370         int j;
371         char fn[3][100];
372         int result;
373         
374         sprintf(fn[0],"%s/%s",path,"f0");
375         sprintf(fn[1],"%s/%s",path,"f1");
376         sprintf(fn[2],"%s/%s",path,"f2");
377         
378         yaffs_StartUp();
379         
380         for(i = 0; i < niterations; i++)
381         {
382                 printf("\n*****************\nIteration %d\n",i);
383                 yaffs_mount(path);
384                 printf("\nmount: Directory look-up of %s\n",path);
385                 dumpDir(path);
386                 for(j = 0; j < 3; j++)
387                 {
388                         result = dump_file_data(fn[j]);
389                         result = check_pattern_file(fn[j]);
390                         make_pattern_file(fn[j],fsize); 
391                         result = dump_file_data(fn[j]);
392                         result = check_pattern_file(fn[j]);
393                 }
394                 yaffs_unmount(path);
395         }
396 }
397
398 void fill_disk(const char *path,int nfiles)
399 {
400         int h;
401         int n;
402         int result;
403         int f;
404         
405         char str[50];
406         
407         for(n = 0; n < nfiles; n++)
408         {
409                 sprintf(str,"%s/%d",path,n);
410                 
411                 h = yaffs_open(str, O_CREAT | O_RDWR | O_TRUNC, S_IREAD | S_IWRITE);
412                 
413                 printf("writing file %s handle %d ",str, h);
414                 
415                 while ((result = yaffs_write(h,xx,600)) == 600)
416                 {
417                         f = yaffs_freespace(path);
418                 }
419                 result = yaffs_close(h);
420                 printf(" close %d\n",result);
421         }
422 }
423
424 void fill_disk_and_delete(const char *path, int nfiles, int ncycles)
425 {
426         int i,j;
427         char str[50];
428         int result;
429         
430         for(i = 0; i < ncycles; i++)
431         {
432                 printf("@@@@@@@@@@@@@@ cycle %d\n",i);
433                 fill_disk(path,nfiles);
434                 
435                 for(j = 0; j < nfiles; j++)
436                 {
437                         sprintf(str,"%s/%d",path,j);
438                         result = yaffs_unlink(str);
439                         printf("unlinking file %s, result %d\n",str,result);
440                 }
441         }
442 }
443
444
445 void fill_files(const char *path,int flags, int maxIterations,int siz)
446 {
447         int i;
448         int j;
449         char str[50];
450         int h;
451         
452         i = 0;
453         
454         do{
455                 sprintf(str,"%s/%d",path,i);
456                 h = yaffs_open(str, O_CREAT | O_TRUNC | O_RDWR,S_IREAD | S_IWRITE);
457
458                 if(h >= 0)
459                 {
460                         for(j = 0; j < siz; j++)
461                         {
462                                 yaffs_write(h,str,1);
463                         }
464                 }
465                 
466                 if( flags & 1)
467                 {
468                         yaffs_unlink(str);
469                 }
470                 i++;
471         } while(h >= 0 && i < maxIterations);
472         
473         if(flags & 2)
474         {
475                 i = 0;
476                 do{
477                         sprintf(str,"%s/%d",path,i);
478                         printf("unlink %s\n",str);
479                         i++;
480                 } while(yaffs_unlink(str) >= 0);
481         }
482 }
483
484 void leave_unlinked_file(char *path,int maxIterations,int siz)
485 {
486         int i;
487         char str[50];
488         int h;
489         
490         i = 0;
491         
492         do{
493                 sprintf(str,"%s/%d",path,i);
494                 printf("create %s\n",str);
495                 h = yaffs_open(str, O_CREAT | O_TRUNC | O_RDWR,S_IREAD | S_IWRITE);
496                 if(h >= 0)
497                 {
498                         yaffs_unlink(str);
499                 }
500                 i++;
501         } while(h < 0 && i < maxIterations);
502         
503         if(h >= 0)
504         {
505                 for(i = 0; i < siz; i++)
506                 {
507                         yaffs_write(h,str,1);
508                 }
509         }
510         
511         printf("Leaving file %s open\n",str);
512
513 }
514
515 void dumpDirFollow(const char *dname)
516 {
517         yaffs_DIR *d;
518         yaffs_dirent *de;
519         struct yaffs_stat s;
520         char str[100];
521                         
522         d = yaffs_opendir(dname);
523         
524         if(!d)
525         {
526                 printf("opendir failed\n");
527         }
528         else
529         {
530                 while((de = yaffs_readdir(d)) != NULL)
531                 {
532                         sprintf(str,"%s/%s",dname,de->d_name);
533                         
534                         yaffs_stat(str,&s);
535                         
536                         printf("%s ino %d length %d mode %X ",de->d_name,(int)s.st_ino,(int)s.st_size,s.st_mode);
537                         switch(s.st_mode & S_IFMT)
538                         {
539                                 case S_IFREG: printf("data file"); break;
540                                 case S_IFDIR: printf("directory"); break;
541                                 case S_IFLNK: printf("symlink -->");
542                                                           if(yaffs_readlink(str,str,100) < 0)
543                                                                 printf("no alias");
544                                                           else
545                                                                 printf("\"%s\"",str);    
546                                                           break;
547                                 default: printf("unknown"); break;
548                         }
549                         
550                         printf("\n");           
551                 }
552                 
553                 yaffs_closedir(d);
554         }
555         printf("\n");
556         
557         printf("Free space in %s is %d\n\n",dname,(int)yaffs_freespace(dname));
558
559 }
560
561
562 void dump_directory_tree_worker(const char *dname,int recursive)
563 {
564         yaffs_DIR *d;
565         yaffs_dirent *de;
566         struct yaffs_stat s;
567         char str[1000];
568                         
569         d = yaffs_opendir(dname);
570         
571         if(!d)
572         {
573                 printf("opendir failed\n");
574         }
575         else
576         {
577                 while((de = yaffs_readdir(d)) != NULL)
578                 {
579                         sprintf(str,"%s/%s",dname,de->d_name);
580                         
581                         yaffs_lstat(str,&s);
582                         
583                         printf("%s inode %d obj %x length %d mode %X ",str,s.st_ino,de->d_dont_use,(int)s.st_size,s.st_mode);
584                         switch(s.st_mode & S_IFMT)
585                         {
586                                 case S_IFREG: printf("data file"); break;
587                                 case S_IFDIR: printf("directory"); break;
588                                 case S_IFLNK: printf("symlink -->");
589                                                           if(yaffs_readlink(str,str,100) < 0)
590                                                                 printf("no alias");
591                                                           else
592                                                                 printf("\"%s\"",str);    
593                                                           break;
594                                 default: printf("unknown"); break;
595                         }
596                         
597                         printf("\n");
598
599                         if((s.st_mode & S_IFMT) == S_IFDIR && recursive)
600                                 dump_directory_tree_worker(str,1);
601                                                         
602                 }
603                 
604                 yaffs_closedir(d);
605         }
606
607 }
608
609 static void dump_directory_tree(const char *dname)
610 {
611         dump_directory_tree_worker(dname,1);
612         printf("\n");
613         printf("Free space in %s is %d\n\n",dname,(int)yaffs_freespace(dname));
614 }
615
616 void dumpDir(const char *dname)
617 {       dump_directory_tree_worker(dname,0);
618         printf("\n");
619         printf("Free space in %s is %d\n\n",dname,(int)yaffs_freespace(dname));
620 }
621
622
623 static void PermissionsCheck(const char *path, mode_t tmode, int tflags,int expectedResult)
624 {
625         int fd;
626         
627         if(yaffs_chmod(path,tmode)< 0) printf("chmod failed\n");
628         
629         fd = yaffs_open(path,tflags,0);
630         
631         if((fd >= 0) != (expectedResult > 0))
632         {
633                 printf("Permissions check %x %x %d failed\n",tmode,tflags,expectedResult);
634         }
635         else
636         {
637                 printf("Permissions check %x %x %d OK\n",tmode,tflags,expectedResult);
638         }
639         
640         
641         yaffs_close(fd);
642         
643         
644 }
645
646 int long_test(int argc, char *argv[])
647 {
648
649         int f;
650         int r;
651         char buffer[20];
652         
653         char str[100];
654         
655         int h;
656         mode_t temp_mode;
657         struct yaffs_stat ystat;
658         
659         yaffs_StartUp();
660         
661         yaffs_mount("/boot");
662         yaffs_mount("/data");
663         yaffs_mount("/flash");
664         yaffs_mount("/ram");
665         
666         printf("\nDirectory look-up of /boot\n");
667         dumpDir("/boot");
668         printf("\nDirectory look-up of /data\n");
669         dumpDir("/data");
670         printf("\nDirectory look-up of /flash\n");
671         dumpDir("/flash");
672
673         //leave_unlinked_file("/flash",20000,0);
674         //leave_unlinked_file("/data",20000,0);
675         
676         leave_unlinked_file("/ram",20,0);
677         
678
679         f = yaffs_open("/boot/b1", O_RDONLY,0);
680         
681         printf("open /boot/b1 readonly, f=%d\n",f);
682         
683         f = yaffs_open("/boot/b1", O_CREAT,S_IREAD | S_IWRITE);
684         
685         printf("open /boot/b1 O_CREAT, f=%d\n",f);
686         
687         
688         r = yaffs_write(f,"hello",1);
689         printf("write %d attempted to write to a read-only file\n",r);
690         
691         r = yaffs_close(f);
692         
693         printf("close %d\n",r);
694
695         f = yaffs_open("/boot/b1", O_RDWR,0);
696         
697         printf("open /boot/b1 O_RDWR,f=%d\n",f);
698         
699         
700         r = yaffs_write(f,"hello",2);
701         printf("write %d attempted to write to a writeable file\n",r);
702         r = yaffs_write(f,"world",3);
703         printf("write %d attempted to write to a writeable file\n",r);
704         
705         r= yaffs_lseek(f,0,SEEK_END);
706         printf("seek end %d\n",r);
707         memset(buffer,0,20);
708         r = yaffs_read(f,buffer,10);
709         printf("read %d \"%s\"\n",r,buffer);
710         r= yaffs_lseek(f,0,SEEK_SET);
711         printf("seek set %d\n",r);
712         memset(buffer,0,20);
713         r = yaffs_read(f,buffer,10);
714         printf("read %d \"%s\"\n",r,buffer);
715         memset(buffer,0,20);
716         r = yaffs_read(f,buffer,10);
717         printf("read %d \"%s\"\n",r,buffer);
718
719         // Check values reading at end.
720         // A read past end of file should return 0 for 0 bytes read.
721                 
722         r= yaffs_lseek(f,0,SEEK_END);
723         r = yaffs_read(f,buffer,10);
724         printf("read at end returned  %d\n",r); 
725         r= yaffs_lseek(f,500,SEEK_END);
726         r = yaffs_read(f,buffer,10);
727         printf("read past end returned  %d\n",r);       
728         
729         r = yaffs_close(f);
730         
731         printf("close %d\n",r);
732         
733         copy_in_a_file("/boot/yyfile","xxx");
734         
735         // Create a file with a long name
736         
737         copy_in_a_file("/boot/file with a long name","xxx");
738         
739         
740         printf("\nDirectory look-up of /boot\n");
741         dumpDir("/boot");
742
743         // Check stat
744         r = yaffs_stat("/boot/file with a long name",&ystat);
745         
746         // Check rename
747         
748         r = yaffs_rename("/boot/file with a long name","/boot/r1");
749         
750         printf("\nDirectory look-up of /boot\n");
751         dumpDir("/boot");
752         
753         // Check unlink
754         r = yaffs_unlink("/boot/r1");
755         
756         printf("\nDirectory look-up of /boot\n");
757         dumpDir("/boot");
758
759         // Check mkdir
760         
761         r = yaffs_mkdir("/boot/directory1",0);
762         
763         printf("\nDirectory look-up of /boot\n");
764         dumpDir("/boot");
765         printf("\nDirectory look-up of /boot/directory1\n");
766         dumpDir("/boot/directory1");
767
768         // add a file to the directory                  
769         copy_in_a_file("/boot/directory1/file with a long name","xxx");
770         
771         printf("\nDirectory look-up of /boot\n");
772         dumpDir("/boot");
773         printf("\nDirectory look-up of /boot/directory1\n");
774         dumpDir("/boot/directory1");
775         
776         //  Attempt to delete directory (should fail)
777         
778         r = yaffs_rmdir("/boot/directory1");
779         
780         printf("\nDirectory look-up of /boot\n");
781         dumpDir("/boot");
782         printf("\nDirectory look-up of /boot/directory1\n");
783         dumpDir("/boot/directory1");
784         
785         // Delete file first, then rmdir should work
786         r = yaffs_unlink("/boot/directory1/file with a long name");
787         r = yaffs_rmdir("/boot/directory1");
788         
789         
790         printf("\nDirectory look-up of /boot\n");
791         dumpDir("/boot");
792         printf("\nDirectory look-up of /boot/directory1\n");
793         dumpDir("/boot/directory1");
794
795 #if 0
796         fill_disk_and_delete("/boot",20,20);
797                         
798         printf("\nDirectory look-up of /boot\n");
799         dumpDir("/boot");
800 #endif
801
802         yaffs_symlink("yyfile","/boot/slink");
803         
804         yaffs_readlink("/boot/slink",str,100);
805         printf("symlink alias is %s\n",str);
806         
807         
808         
809         
810         printf("\nDirectory look-up of /boot\n");
811         dumpDir("/boot");
812         printf("\nDirectory look-up of /boot (using stat instead of lstat)\n");
813         dumpDirFollow("/boot");
814         printf("\nDirectory look-up of /boot/directory1\n");
815         dumpDir("/boot/directory1");
816
817         h = yaffs_open("/boot/slink",O_RDWR,0);
818         
819         printf("file length is %d\n",(int)yaffs_lseek(h,0,SEEK_END));
820         
821         yaffs_close(h);
822         
823         yaffs_unlink("/boot/slink");
824
825         
826         printf("\nDirectory look-up of /boot\n");
827         dumpDir("/boot");
828         
829         // Check chmod
830         
831         yaffs_stat("/boot/yyfile",&ystat);
832         temp_mode = ystat.st_mode;
833         
834         yaffs_chmod("/boot/yyfile",0x55555);
835         printf("\nDirectory look-up of /boot\n");
836         dumpDir("/boot");
837         
838         yaffs_chmod("/boot/yyfile",temp_mode);
839         printf("\nDirectory look-up of /boot\n");
840         dumpDir("/boot");
841         
842         // Permission checks...
843         PermissionsCheck("/boot/yyfile",0, O_WRONLY,0);
844         PermissionsCheck("/boot/yyfile",0, O_RDONLY,0);
845         PermissionsCheck("/boot/yyfile",0, O_RDWR,0);
846
847         PermissionsCheck("/boot/yyfile",S_IREAD, O_WRONLY,0);
848         PermissionsCheck("/boot/yyfile",S_IREAD, O_RDONLY,1);
849         PermissionsCheck("/boot/yyfile",S_IREAD, O_RDWR,0);
850
851         PermissionsCheck("/boot/yyfile",S_IWRITE, O_WRONLY,1);
852         PermissionsCheck("/boot/yyfile",S_IWRITE, O_RDONLY,0);
853         PermissionsCheck("/boot/yyfile",S_IWRITE, O_RDWR,0);
854         
855         PermissionsCheck("/boot/yyfile",S_IREAD | S_IWRITE, O_WRONLY,1);
856         PermissionsCheck("/boot/yyfile",S_IREAD | S_IWRITE, O_RDONLY,1);
857         PermissionsCheck("/boot/yyfile",S_IREAD | S_IWRITE, O_RDWR,1);
858
859         yaffs_chmod("/boot/yyfile",temp_mode);
860         
861         //create a zero-length file and unlink it (test for scan bug)
862         
863         h = yaffs_open("/boot/zlf",O_CREAT | O_TRUNC | O_RDWR,0);
864         yaffs_close(h);
865         
866         yaffs_unlink("/boot/zlf");
867         
868         
869         yaffs_DumpDevStruct("/boot");
870         
871         fill_disk_and_delete("/boot",20,20);
872         
873         yaffs_DumpDevStruct("/boot");
874         
875         fill_files("/boot",1,10000,0);
876         fill_files("/boot",1,10000,5000);
877         fill_files("/boot",2,10000,0);
878         fill_files("/boot",2,10000,5000);
879         
880         leave_unlinked_file("/data",20000,0);
881         leave_unlinked_file("/data",20000,5000);
882         leave_unlinked_file("/data",20000,5000);
883         leave_unlinked_file("/data",20000,5000);
884         leave_unlinked_file("/data",20000,5000);
885         leave_unlinked_file("/data",20000,5000);
886         
887         yaffs_DumpDevStruct("/boot");
888         yaffs_DumpDevStruct("/data");
889         
890                 
891                 
892         return 0;
893
894 }
895
896 int huge_directory_test_on_path(char *path)
897 {
898
899         yaffs_DIR *d;
900         yaffs_dirent *de;
901         struct yaffs_stat s;
902
903         int f;
904         int i;
905
906         int total = 0;
907         int lastTotal = 0;
908         
909         char str[100];
910
911         
912         yaffs_StartUp();
913         
914         yaffs_mount(path);
915         
916         // Create a large number of files
917         
918         for(i = 0; i < 2000; i++)
919         {
920           sprintf(str,"%s/%d",path,i);
921           
922            f = yaffs_open(str,O_CREAT,S_IREAD | S_IWRITE);
923            yaffs_close(f);
924         }
925         
926         
927         
928         d = yaffs_opendir(path);
929         i = 0;
930         if (d) {
931         while((de = yaffs_readdir(d)) != NULL) {
932         if (total >lastTotal+100*9*1024||(i & 1023)==0){
933         printf("files = %d, total = %d\n",i, total);
934         lastTotal = total;
935         }
936                 i++;
937                 sprintf(str,"%s/%s",path,de->d_name);
938                 yaffs_lstat(str,&s);
939                 switch(s.st_mode & S_IFMT){
940                 case S_IFREG:
941         //printf("data file");
942         total += s.st_size;
943         break;
944         }
945         }
946         
947         yaffs_closedir(d);
948         }
949         
950         return 0;
951 }
952
953 int yaffs_scan_test(const char *path)
954 {
955         return 0;
956 }
957
958
959 void rename_over_test(const char *mountpt)
960 {
961         int i;
962         char a[100];
963         char b[100];
964         char c[100];
965         
966         sprintf(a,"%s/a",mountpt);
967         sprintf(b,"%s/b",mountpt);
968         sprintf(c,"%s/c",mountpt);
969         
970         yaffs_StartUp();
971         
972         yaffs_mount(mountpt);
973         
974         printf("Existing files\n");
975         dumpDirFollow(mountpt);
976         
977         
978         
979         i = yaffs_open(c,O_CREAT | O_TRUNC | O_RDWR, S_IREAD | S_IWRITE);
980         printf("File c handle is %d\n",i);
981         yaffs_close(i);
982         i = yaffs_open(a,O_CREAT | O_TRUNC | O_RDWR,  S_IREAD | S_IWRITE); 
983         yaffs_close(i);
984         i = yaffs_open(b,O_CREAT | O_TRUNC | O_RDWR,  S_IREAD | S_IWRITE);
985         yaffs_close(i);
986         yaffs_rename(a,b); // rename over
987         yaffs_rename(b,a); // rename back again (not renaimng over)
988         yaffs_rename(a,b); // rename back again (not renaimng over)
989         
990         
991         yaffs_unmount(mountpt);
992         
993 }
994
995
996 int resize_stress_test(const char *path)
997 {
998    int a,b,i,j;
999    int x;
1000    int r;
1001    char aname[100];
1002    char bname[100];
1003    
1004    char abuffer[1000];
1005    char bbuffer[1000];
1006    
1007    yaffs_StartUp();
1008    
1009    yaffs_mount(path);
1010    
1011    sprintf(aname,"%s%s",path,"/a");
1012    sprintf(bname,"%s%s",path,"/b");
1013    
1014    memset(abuffer,'a',1000);
1015    memset(bbuffer,'b',1000);
1016    
1017    a = yaffs_open(aname, O_CREAT | O_TRUNC | O_RDWR, S_IREAD | S_IWRITE);
1018    b = yaffs_open(bname, O_CREAT | O_TRUNC | O_RDWR, S_IREAD | S_IWRITE);
1019    
1020    printf(" %s %d %s %d\n",aname,a,bname,b);
1021   
1022    x = 0;
1023    
1024    for(j = 0; j < 100; j++)
1025    {
1026                 yaffs_lseek(a,0,SEEK_END);
1027
1028                 
1029                 for(i = 0; i <20000; i++)
1030                 {
1031                    //r =        yaffs_lseek(b,i,SEEK_SET);
1032                         //r = yaffs_write(b,bbuffer,1000);
1033                         
1034                         if(x & 0x16)
1035                         {
1036                                 // shrink
1037                                 int syz = yaffs_lseek(a,0,SEEK_END);
1038                                 
1039                                 syz -= 500;
1040                                 if(syz < 0) syz = 0;
1041                                 yaffs_ftruncate(a,syz);
1042                                 
1043                         }
1044                         else
1045                         {
1046                                 //expand
1047                                 r = yaffs_lseek(a,i * 500,SEEK_SET);
1048                                 r = yaffs_write(a,abuffer,1000);
1049                         }
1050                         x++;
1051                         
1052                 }
1053    }
1054    
1055    return 0;
1056    
1057 }
1058
1059
1060 int overwrite_test(const char *path)
1061 {
1062    char aname[100];
1063    char bname[100];
1064    int i;
1065    int j;   
1066    int a;
1067    int b;
1068    yaffs_StartUp();
1069    
1070    yaffs_mount(path);
1071    
1072    sprintf(aname,"%s%s",path,"/a");
1073    sprintf(bname,"%s%s",path,"/b");
1074    
1075    b = yaffs_open(bname, O_CREAT | O_TRUNC | O_RDWR, S_IREAD | S_IWRITE);
1076    for(j= 0; j < 500; j++){
1077         yaffs_write(b,bname,100);
1078         a = yaffs_open(aname, O_CREAT | O_TRUNC | O_RDWR, S_IREAD | S_IWRITE);
1079         for(i = 0; i < rand() % 20000; i++)
1080                 yaffs_write(a,&a,sizeof(a));
1081         yaffs_close(a);
1082    }
1083    
1084    return 0;
1085    
1086 }
1087
1088
1089 int root_perm_remount(const char *path)
1090 {
1091    struct yaffs_stat s;
1092    
1093    yaffs_StartUp();
1094    
1095    yaffs_mount(path);
1096    
1097    yaffs_stat(path,&s);
1098    printf("root perms after mount %x\n",s.st_mode);
1099    
1100    yaffs_chmod(path, 0777);
1101
1102    yaffs_stat(path,&s);
1103    printf("root perms after setting to 0777 is  %x\n",s.st_mode);
1104    
1105    yaffs_unmount(path);
1106       
1107    return 0;
1108    
1109 }
1110
1111
1112 int resize_stress_test_no_grow_complex(const char *path,int iters)
1113 {
1114    int a,b,i,j;
1115    int x;
1116    int r;
1117    char aname[100];
1118    char bname[100];
1119    
1120    char abuffer[1000];
1121    char bbuffer[1000];
1122
1123    
1124    yaffs_StartUp();
1125    
1126    yaffs_mount(path);
1127    
1128    sprintf(aname,"%s%s",path,"/a");
1129    sprintf(bname,"%s%s",path,"/b");
1130    
1131    memset(abuffer,'a',1000);
1132    memset(bbuffer,'b',1000);
1133    
1134    a = yaffs_open(aname, O_CREAT | O_TRUNC | O_RDWR, S_IREAD | S_IWRITE);
1135    b = yaffs_open(bname, O_CREAT | O_TRUNC | O_RDWR, S_IREAD | S_IWRITE);
1136    
1137    printf(" %s %d %s %d\n",aname,a,bname,b);
1138   
1139    x = 0;
1140    
1141    for(j = 0; j < iters; j++)
1142    {
1143                 yaffs_lseek(a,0,SEEK_END);
1144
1145                 
1146                 for(i = 0; i <20000; i++)
1147                 {
1148                    //r =        yaffs_lseek(b,i,SEEK_SET);
1149                         //r = yaffs_write(b,bbuffer,1000);
1150                         
1151                         if(!(x%20))
1152                         {
1153                                 // shrink
1154                                 int syz = yaffs_lseek(a,0,SEEK_END);
1155                                 
1156                                 while(syz > 4000)
1157                                 {
1158                                 
1159                                         syz -= 2050;
1160                                         if(syz < 0) syz = 0;
1161                                         yaffs_ftruncate(a,syz);
1162                                         syz = yaffs_lseek(a,0,SEEK_END);
1163                                         printf("shrink to %d\n",syz);
1164                                 }
1165                                 
1166                                 
1167                         }
1168                         else
1169                         {
1170                                 //expand
1171                                 r = yaffs_lseek(a,500,SEEK_END);
1172                                 r = yaffs_write(a,abuffer,1000);
1173                         }
1174                         x++;
1175                         
1176                                         
1177                 }
1178                 
1179                 printf("file size is %lld\n",(long long)yaffs_lseek(a,0,SEEK_END));
1180
1181    }
1182    
1183    return 0;
1184    
1185 }
1186
1187 int resize_stress_test_no_grow(const char *path,int iters)
1188 {
1189    int a,b,i,j;
1190    int x;
1191    int r;
1192    char aname[100];
1193    char bname[100];
1194    
1195    char abuffer[1000];
1196    char bbuffer[1000];
1197    
1198    yaffs_StartUp();
1199    
1200    yaffs_mount(path);
1201    
1202    sprintf(aname,"%s%s",path,"/a");
1203    sprintf(bname,"%s%s",path,"/b");
1204    
1205    memset(abuffer,'a',1000);
1206    memset(bbuffer,'b',1000);
1207    
1208    a = yaffs_open(aname, O_CREAT | O_TRUNC | O_RDWR, S_IREAD | S_IWRITE);
1209    b = yaffs_open(bname, O_CREAT | O_TRUNC | O_RDWR, S_IREAD | S_IWRITE);
1210    
1211    printf(" %s %d %s %d\n",aname,a,bname,b);
1212   
1213    x = 0;
1214    
1215    for(j = 0; j < iters; j++)
1216    {
1217                 yaffs_lseek(a,0,SEEK_END);
1218
1219                 
1220                 for(i = 0; i <20000; i++)
1221                 {
1222                    //r =        yaffs_lseek(b,i,SEEK_SET);
1223                         //r = yaffs_write(b,bbuffer,1000);
1224                         
1225                         if(!(x%20))
1226                         {
1227                                 // shrink
1228                                 int syz = yaffs_lseek(a,0,SEEK_END);
1229                                 
1230                                 while(syz > 4000)
1231                                 {
1232                                 
1233                                         syz -= 2050;
1234                                         if(syz < 0) syz = 0;
1235                                         yaffs_ftruncate(a,syz);
1236                                         syz = yaffs_lseek(a,0,SEEK_END);
1237                                         printf("shrink to %d\n",syz);
1238                                 }
1239                                 
1240                                 
1241                         }
1242                         else
1243                         {
1244                                 //expand
1245                                 r = yaffs_lseek(a,-500,SEEK_END);
1246                                 r = yaffs_write(a,abuffer,1000);
1247                         }
1248                         x++;
1249                         
1250                                         
1251                 }
1252                 printf("file size is %lld\n",(long long)yaffs_lseek(a,0,SEEK_END));
1253
1254    }
1255    
1256    return 0;
1257    
1258 }
1259
1260 int directory_rename_test(void)
1261 {
1262         int r;
1263         yaffs_StartUp();
1264         
1265         yaffs_mount("/ram");
1266         yaffs_mkdir("/ram/a",0);
1267         yaffs_mkdir("/ram/a/b",0);
1268         yaffs_mkdir("/ram/c",0);
1269         
1270         printf("\nDirectory look-up of /ram\n");
1271         dumpDir("/ram");
1272         dumpDir("/ram/a");
1273         dumpDir("/ram/a/b");
1274
1275         printf("Do rename (should fail)\n");
1276                 
1277         r = yaffs_rename("/ram/a","/ram/a/b/d");
1278         printf("\nDirectory look-up of /ram\n");
1279         dumpDir("/ram");
1280         dumpDir("/ram/a");
1281         dumpDir("/ram/a/b");
1282
1283         printf("Do rename (should not fail)\n");
1284                 
1285         r = yaffs_rename("/ram/c","/ram/a/b/d");
1286         printf("\nDirectory look-up of /ram\n");
1287         dumpDir("/ram");
1288         dumpDir("/ram/a");
1289         dumpDir("/ram/a/b");
1290         
1291         
1292         return 1;
1293         
1294 }
1295
1296 int cache_read_test(void)
1297 {
1298         int a,b,c;
1299         int i;
1300         int sizeOfFiles = 500000;
1301         char buffer[100];
1302         
1303         yaffs_StartUp();
1304         
1305         yaffs_mount("/boot");
1306         
1307         make_a_file("/boot/a",'a',sizeOfFiles);
1308         make_a_file("/boot/b",'b',sizeOfFiles);
1309
1310         a = yaffs_open("/boot/a",O_RDONLY,0);
1311         b = yaffs_open("/boot/b",O_RDONLY,0);
1312         c = yaffs_open("/boot/c", O_CREAT | O_RDWR | O_TRUNC, S_IREAD | S_IWRITE);
1313
1314         do{
1315                 i = sizeOfFiles;
1316                 if (i > 100) i = 100;
1317                 sizeOfFiles  -= i;
1318                 yaffs_read(a,buffer,i);
1319                 yaffs_read(b,buffer,i);
1320                 yaffs_write(c,buffer,i);
1321         } while(sizeOfFiles > 0);
1322         
1323         
1324         
1325         return 1;
1326         
1327 }
1328
1329 int cache_bypass_bug_test(void)
1330 {
1331         // This test reporoduces a bug whereby YAFFS caching *was* buypassed
1332         // resulting in erroneous reads after writes.
1333         // This bug has been fixed.
1334         
1335         int a;
1336         char buffer1[1000];
1337         char buffer2[1000];
1338         
1339         memset(buffer1,0,sizeof(buffer1));
1340         memset(buffer2,0,sizeof(buffer2));
1341                 
1342         yaffs_StartUp();
1343         
1344         yaffs_mount("/boot");
1345         
1346         // Create a file of 2000 bytes.
1347         make_a_file("/boot/a",'X',2000);
1348
1349         a = yaffs_open("/boot/a",O_RDWR, S_IREAD | S_IWRITE);
1350         
1351         // Write a short sequence to the file.
1352         // This will go into the cache.
1353         yaffs_lseek(a,0,SEEK_SET);
1354         yaffs_write(a,"abcdefghijklmnopqrstuvwxyz",20); 
1355
1356         // Read a short sequence from the file.
1357         // This will come from the cache.
1358         yaffs_lseek(a,0,SEEK_SET);
1359         yaffs_read(a,buffer1,30); 
1360
1361         // Read a page size sequence from the file.
1362         yaffs_lseek(a,0,SEEK_SET);
1363         yaffs_read(a,buffer2,512); 
1364         
1365         printf("buffer 1 %s\n",buffer1);
1366         printf("buffer 2 %s\n",buffer2);
1367         
1368         if(strncmp(buffer1,buffer2,20))
1369         {
1370                 printf("Cache bypass bug detected!!!!!\n");
1371         }
1372         
1373         
1374         return 1;
1375 }
1376
1377
1378 int free_space_check(void)
1379 {
1380         int f;
1381         
1382                 yaffs_StartUp();
1383                 yaffs_mount("/boot");
1384             fill_disk("/boot/",2);
1385             f = yaffs_freespace("/boot");
1386             
1387             printf("%d free when disk full\n",f);           
1388             return 1;
1389 }
1390
1391 int truncate_test(void)
1392 {
1393         int a;
1394         int r;
1395         int i;
1396         int l;
1397
1398         char y[10];
1399
1400         yaffs_StartUp();
1401         yaffs_mount("/boot");
1402
1403         yaffs_unlink("/boot/trunctest");
1404         
1405         a = yaffs_open("/boot/trunctest", O_CREAT | O_TRUNC | O_RDWR,  S_IREAD | S_IWRITE);
1406         
1407         yaffs_write(a,"abcdefghijklmnopqrstuvwzyz",26);
1408         
1409         yaffs_ftruncate(a,3);
1410         l= yaffs_lseek(a,0,SEEK_END);
1411         
1412         printf("truncated length is %d\n",l);
1413
1414         yaffs_lseek(a,5,SEEK_SET);
1415         yaffs_write(a,"1",1);
1416
1417         yaffs_lseek(a,0,SEEK_SET);
1418         
1419         r = yaffs_read(a,y,10);
1420
1421         printf("read %d bytes:",r);
1422
1423         for(i = 0; i < r; i++) printf("[%02X]",y[i]);
1424
1425         printf("\n");
1426
1427         return 0;
1428
1429 }
1430
1431
1432
1433
1434
1435 void fill_disk_test(const char *mountpt)
1436 {
1437         int i;
1438         yaffs_StartUp();
1439         
1440         for(i = 0; i < 5; i++)
1441         {
1442                 yaffs_mount(mountpt);
1443                 fill_disk_and_delete(mountpt,100,i+1);
1444                 yaffs_unmount(mountpt);
1445         }
1446         
1447 }
1448
1449
1450 void fill_files_test(const char *mountpt)
1451 {
1452         int i;
1453         yaffs_StartUp();
1454         
1455         for(i = 0; i < 5; i++)
1456         {
1457                 yaffs_mount(mountpt);
1458                 fill_files(mountpt,2,3,100);
1459                 yaffs_unmount(mountpt);
1460         }
1461         
1462 }
1463
1464 void fill_empty_files_test(const char *mountpt)
1465 {
1466         int i;
1467         yaffs_StartUp();
1468         char name[100];
1469         int result = 0;
1470         
1471         int d,f;
1472
1473         for(i = 0; i < 5; i++)
1474         {
1475                 yaffs_mount(mountpt);
1476                 for(d = 0; result >= 0 && d < 1000; d++){
1477                         sprintf(name,"%s/%d",mountpt,d);
1478                         result= yaffs_mkdir(name,0);
1479                         printf("creating directory %s result %d\n",name,result);
1480                         
1481                         for(f = 0; result >= 0 && f < 100; f++){
1482                                 sprintf(name,"%s/%d/%d",mountpt,d,f);
1483                                 result= yaffs_open(name,O_CREAT, 0);
1484                                 yaffs_close(result);
1485                                 printf("creating file %s result %d\n",name,result);
1486                         }
1487                 }
1488                 yaffs_unmount(mountpt);
1489         }
1490         
1491 }
1492
1493 void long_name_test(const char *mountpt)
1494 {
1495         int i;
1496         yaffs_StartUp();
1497         char fullName[1000];
1498         char name[300];
1499         int result = 0;
1500         
1501         int d,f;
1502         
1503         // Make a 256 byte name
1504         memset(name,0,sizeof(name));
1505         for(i = 0; i < 256; i++)
1506                 name[i] = '0' + i % 10;
1507                 
1508         sprintf(fullName,"%s/%s",mountpt,name);
1509
1510         for(i = 0; i < 1; i++)
1511         {
1512                 yaffs_mount(mountpt);
1513                 
1514                 printf("Files at start\n");
1515                 dumpDir(mountpt);
1516                 
1517                 printf("Creating file %s\n",fullName);
1518                 
1519                 f = yaffs_open(fullName,O_CREAT | O_RDWR,0);
1520                 yaffs_close(f);
1521                 
1522                 printf("Result %d\n",f);
1523                         
1524                 printf("Files\n");
1525                 dumpDir(mountpt);
1526                 
1527                 printf("Deleting %s\n",fullName);
1528                 result = yaffs_unlink(fullName);
1529                 printf("Result %d\n",result);
1530                 
1531                 printf("Files\n");
1532                 
1533                 dumpDir(mountpt);
1534                 
1535                 yaffs_unmount(mountpt);
1536         }
1537         
1538 }
1539
1540
1541 void lookup_test(const char *mountpt)
1542 {
1543         int i;
1544         int h;
1545         char a[100];
1546         
1547
1548         yaffs_DIR *d;
1549         yaffs_dirent *de;
1550
1551         yaffs_StartUp();
1552         
1553         yaffs_mount(mountpt);
1554                                 
1555         d = yaffs_opendir(mountpt);
1556         
1557         if(!d)
1558         {
1559                 printf("opendir failed\n");
1560         }
1561         else
1562         {
1563                 
1564                 for(i = 0; (de = yaffs_readdir(d)) != NULL; i++)
1565                 {
1566                         printf("unlinking %s\n",de->d_name);
1567                         yaffs_unlink(de->d_name);
1568                 }
1569                 
1570                 printf("%d files deleted\n",i);
1571         }
1572         
1573         
1574         for(i = 0; i < 2000; i++){
1575         sprintf(a,"%s/%d",mountpt,i);
1576                 h =  yaffs_open(a,O_CREAT | O_TRUNC | O_RDWR, 0);
1577                 yaffs_close(h);
1578         }
1579
1580         yaffs_rewinddir(d);
1581         for(i = 0; (de = yaffs_readdir(d)) != NULL; i++)
1582         {
1583                 printf("%d  %s\n",i,de->d_name);
1584         }       
1585         
1586         printf("%d files listed\n\n\n",i);
1587         
1588         yaffs_rewinddir(d);
1589         yaffs_readdir(d);
1590         yaffs_readdir(d);
1591         yaffs_readdir(d);
1592         
1593         for(i = 0; i < 2000; i++){
1594                 sprintf(a,"%s/%d",mountpt,i);
1595                 yaffs_unlink(a);
1596         }
1597         
1598                 
1599         yaffs_unmount(mountpt);
1600         
1601 }
1602
1603 void link_test0(const char *mountpt)
1604 {
1605         int i;
1606         char namea[300];
1607         char nameb[300];
1608         int result = 0;
1609         
1610
1611         yaffs_StartUp();
1612         yaffs_mount(mountpt);
1613         
1614                 
1615         sprintf(namea,"%s/a",mountpt);
1616         sprintf(nameb,"%s/b",mountpt);
1617
1618         printf("mounted\n");
1619         dumpDir(mountpt);
1620
1621         yaffs_unlink(namea);
1622         printf("a unlinked\n");
1623         dumpDir(mountpt);
1624
1625         yaffs_unlink(nameb);
1626         printf("b unlinked\n");
1627         dumpDir(mountpt);
1628         
1629         result = yaffs_open(namea,O_CREAT| O_RDWR,0666);
1630         yaffs_close(result);
1631         printf("a created\n");
1632         dumpDir(mountpt);
1633
1634         yaffs_link(namea,nameb);
1635         printf("linked\n");
1636         dumpDir(mountpt);
1637         yaffs_unlink(namea);
1638         printf("a ulinked\n");
1639         dumpDir(mountpt);
1640         yaffs_unlink(nameb);
1641         printf("b unlinked\n");
1642         dumpDir(mountpt);
1643
1644         yaffs_unmount(mountpt);
1645 }
1646
1647
1648 void link_test1(const char *mountpt)
1649 {
1650         int i;
1651         int h;
1652         char a[100];
1653         char b[100];
1654         char c[100];
1655
1656         sprintf(a,"%s/aaa",mountpt);
1657         sprintf(b,"%s/bbb",mountpt);
1658         sprintf(c,"%s/ccc",mountpt);
1659         
1660         yaffs_StartUp();
1661         
1662         yaffs_mount(mountpt);
1663         
1664         
1665         h = yaffs_open(a, O_CREAT | O_TRUNC | O_RDWR, S_IREAD | S_IWRITE);
1666         for(i = 0; i < 100; i++)
1667                 yaffs_write(h,a,100);
1668         
1669         yaffs_close(h);
1670         
1671         yaffs_unlink(b);
1672         yaffs_unlink(c);
1673         yaffs_link(a,b);
1674         yaffs_link(a,c);
1675         yaffs_unlink(b);
1676         yaffs_unlink(c);
1677         yaffs_unlink(a);
1678         
1679         
1680         yaffs_unmount(mountpt);
1681         yaffs_mount(mountpt);
1682         
1683         printf("link test done\n");     
1684 }
1685
1686 void handle_test(const char *mountpt)
1687 {
1688         int i;
1689         int h;
1690         int cycle;
1691         char a[100];
1692
1693         sprintf(a,"%s/aaa",mountpt);
1694         
1695         yaffs_StartUp();
1696         
1697         yaffs_mount(mountpt);
1698
1699         for(cycle = 0; cycle < 5; cycle++){
1700         printf("Start cycle %d\n",cycle);
1701         i = 0;
1702         do {
1703         h = yaffs_open(a, O_CREAT | O_TRUNC | O_RDWR, S_IREAD | S_IWRITE);
1704         printf("%d  handle %d\n",i,h);
1705         i++;
1706         } while(h >= 0);
1707         
1708         while(i >= -1) {
1709          yaffs_close(i);
1710          i--;
1711         }
1712         }
1713         
1714         yaffs_unmount(mountpt);
1715 }
1716
1717 void freespace_test(const char *mountpt)
1718 {
1719         int i;
1720         int h;
1721         char a[100];
1722         
1723         int  f0;
1724         int f1;
1725         int f2;
1726         int f3;
1727         sprintf(a,"%s/aaa",mountpt);
1728         
1729         yaffs_StartUp();
1730         
1731         yaffs_mount(mountpt);
1732         
1733         f0 = yaffs_freespace(mountpt);
1734         
1735         h = yaffs_open(a, O_CREAT | O_TRUNC | O_RDWR, S_IREAD | S_IWRITE);
1736         
1737         for(i = 0; i < 100; i++)
1738                 yaffs_write(h,a,100);
1739         
1740         yaffs_close(h);
1741         
1742         f1 = yaffs_freespace(mountpt);
1743         
1744         yaffs_unlink(a);
1745         
1746         f2 = yaffs_freespace(mountpt);
1747         
1748                 
1749         yaffs_unmount(mountpt);
1750         yaffs_mount(mountpt);
1751         
1752         f3 = yaffs_freespace(mountpt);
1753         
1754         printf("%d\n%d\n%d\n%d\n",f0, f1,f2,f3);
1755         
1756         
1757 }
1758
1759 void simple_rw_test(const char *mountpt)
1760 {
1761         int i;
1762         int h;
1763         char a[100];
1764         
1765         int x;
1766         int result;
1767
1768         sprintf(a,"%s/aaa",mountpt);
1769         
1770         yaffs_StartUp();
1771         
1772         yaffs_mount(mountpt);
1773         
1774         yaffs_unlink(a);
1775         
1776         h = yaffs_open(a,O_CREAT| O_TRUNC | O_RDWR, S_IREAD | S_IWRITE);
1777         
1778         for(i = 100000;i < 200000; i++){
1779                 result = yaffs_write(h,&i,sizeof(i));
1780                 
1781                 if(result != 4)
1782                 {
1783                         printf("write error\n");
1784                         exit(1);
1785                 }
1786         }
1787         
1788         //yaffs_close(h);
1789         
1790         // h = yaffs_open(a,O_RDWR, S_IREAD | S_IWRITE);
1791         
1792         
1793         yaffs_lseek(h,0,SEEK_SET);
1794         
1795         for(i = 100000; i < 200000; i++){
1796                 result = yaffs_read(h,&x,sizeof(x));
1797                 
1798                 if(result != 4 || x != i){
1799                         printf("read error %d %x %x\n",i,result,x);
1800                 }
1801         }
1802         
1803         printf("Simple rw test passed\n");
1804         
1805         
1806         
1807 }
1808
1809
1810 void scan_deleted_files_test(const char *mountpt)
1811 {
1812         char fn[100];
1813         char sub[100];
1814         
1815         const char *p;
1816         
1817         int i;
1818         int j;
1819         int k;
1820         int h;
1821         
1822         sprintf(sub,"%s/sdir",mountpt);
1823         yaffs_StartUp();
1824         
1825         for(j = 0; j < 10; j++)
1826         {
1827                 printf("\n\n>>>>>>> Run %d <<<<<<<<<<<<<\n\n",j);
1828                 yaffs_mount(mountpt);
1829                 yaffs_mkdir(sub,0);
1830                 
1831                 
1832                 p = (j & 0) ? mountpt: sub;
1833         
1834                 for(i = 0; i < 100; i++)
1835                 {
1836                   sprintf(fn,"%s/%d",p,i);  
1837                   
1838                   if(i & 1)
1839                   {
1840                           h = yaffs_open(fn,O_CREAT | O_TRUNC | O_RDWR, S_IREAD | S_IWRITE);
1841                           for(k = 0; k < 1000; k++)
1842                                   yaffs_write(h,fn,100);
1843                           yaffs_close(h);
1844                   }
1845                   else
1846                         yaffs_mkdir(fn,0);
1847                 }
1848                 
1849                 for(i = 0; i < 10; i++)
1850                 {
1851                   sprintf(fn,"%s/%d",p,i);  
1852                   if(i & 1) 
1853                         yaffs_unlink(fn);
1854                   else
1855                         yaffs_rmdir(fn);
1856                   
1857                 }
1858                                 
1859                 yaffs_unmount(mountpt);
1860         }
1861         
1862         
1863         
1864
1865 }
1866
1867
1868 void write_10k(int h)
1869 {
1870    int i;
1871    const char *s="0123456789";
1872    for(i = 0; i < 1000; i++)
1873      yaffs_write(h,s,10);
1874
1875 }
1876 void write_200k_file(const char *fn, const char *fdel, const char *fdel1)
1877 {
1878    int h1;
1879    int i;
1880    int offs;
1881    
1882    h1 = yaffs_open(fn, O_CREAT | O_TRUNC | O_RDWR, S_IREAD | S_IWRITE);
1883    
1884    for(i = 0; i < 100000; i+= 10000)
1885    {
1886         write_10k(h1);
1887    }
1888    
1889    offs = yaffs_lseek(h1,0,SEEK_CUR);
1890    if( offs != 100000)
1891    {
1892         printf("Could not write file\n");
1893    }
1894    
1895    yaffs_unlink(fdel);
1896    for(i = 0; i < 100000; i+= 10000)
1897    {
1898         write_10k(h1);
1899    }
1900    
1901    offs = yaffs_lseek(h1,0,SEEK_CUR);
1902    if( offs != 200000)
1903    {
1904         printf("Could not write file\n");
1905    }
1906    
1907    yaffs_close(h1);
1908    yaffs_unlink(fdel1);
1909    
1910 }
1911
1912
1913 void verify_200k_file(const char *fn)
1914 {
1915    int h1;
1916    int i;
1917    char x[11];
1918    const char *s="0123456789";
1919    int errCount = 0;
1920    
1921    h1 = yaffs_open(fn, O_RDONLY, 0);
1922    
1923    for(i = 0; i < 200000 && errCount < 10; i+= 10)
1924    {
1925         yaffs_read(h1,x,10);
1926         if(strncmp(x,s,10) != 0)
1927         {
1928                 printf("File %s verification failed at %d\n",fn,i);
1929                 errCount++;
1930         }
1931    }
1932    if(errCount >= 10)
1933         printf("Too many errors... aborted\n");
1934       
1935    yaffs_close(h1);        
1936         
1937 }
1938
1939
1940 void check_resize_gc_bug(const char *mountpt)
1941 {
1942
1943         char a[30];
1944         char b[30];
1945         char c[30];
1946         
1947         int i;
1948         
1949         sprintf(a,"%s/a",mountpt);
1950         sprintf(b,"%s/b",mountpt);
1951         sprintf(c,"%s/c",mountpt);
1952         
1953
1954         
1955         
1956         yaffs_StartUp();
1957         yaffs_mount(mountpt);
1958         yaffs_unlink(a);
1959         yaffs_unlink(b);
1960         
1961         for(i = 0; i < 50; i++)
1962         {  
1963            printf("A\n");write_200k_file(a,"",c);
1964            printf("B\n");verify_200k_file(a);
1965            printf("C\n");write_200k_file(b,a,c);
1966            printf("D\n");verify_200k_file(b);
1967            yaffs_unmount(mountpt);
1968            yaffs_mount(mountpt);
1969            printf("E\n");verify_200k_file(a);
1970            printf("F\n");verify_200k_file(b);
1971         }
1972                 
1973 }
1974
1975
1976 void multi_mount_test(const char *mountpt,int nmounts)
1977 {
1978
1979         char a[30];
1980         
1981         int i;
1982         int j;
1983         
1984         sprintf(a,"%s/a",mountpt);
1985
1986         yaffs_StartUp();
1987         
1988         for(i = 0; i < nmounts; i++){
1989                 int h0;
1990                 int h1;
1991                 int len0;
1992                 int len1;
1993                 
1994                 static char xx[1000];
1995                 
1996                 printf("############### Iteration %d   Start\n",i);
1997                 if(1 || i == 0 || i == 5) 
1998                         yaffs_mount(mountpt);
1999
2000                 dump_directory_tree(mountpt);
2001                 
2002                 
2003                 yaffs_mkdir(a,0);
2004                 
2005                 sprintf(xx,"%s/0",a);
2006                 h0 = yaffs_open(xx, O_RDWR | O_CREAT | O_TRUNC, S_IREAD | S_IWRITE);
2007                 
2008                 sprintf(xx,"%s/1",a);
2009                 h1 = yaffs_open(xx, O_RDWR | O_CREAT | O_TRUNC, S_IREAD | S_IWRITE);
2010
2011 #if 0           
2012                 for(j = 0; j < 200; j++){
2013                    yaffs_write(h0,xx,1000);
2014                    yaffs_write(h1,xx,1000);
2015                 }
2016 #else
2017                 while(yaffs_write(h0,xx,1000) > 0){
2018                    
2019                    yaffs_write(h1,xx,1000);
2020                 }
2021 #endif
2022                 len0 = yaffs_lseek(h0,0,SEEK_END);
2023                 len1 = yaffs_lseek(h1,0,SEEK_END);
2024                 
2025                 yaffs_lseek(h0,0,SEEK_SET);
2026                 yaffs_lseek(h1,0,SEEK_SET);
2027
2028                 for(j = 0; j < 200; j++){
2029                    yaffs_read(h0,xx,1000);
2030                    yaffs_read(h1,xx,1000);
2031                 }
2032                 
2033                 
2034         //      yaffs_truncate(h0,0);
2035                 yaffs_close(h0);
2036                 yaffs_close(h1);
2037                 
2038                 printf("########### %d\n",i);
2039                 dump_directory_tree(mountpt);
2040
2041                 if(1 || i == 4 || i == nmounts -1)
2042                         yaffs_unmount(mountpt);
2043         }
2044 }
2045
2046
2047 void small_mount_test(const char *mountpt,int nmounts)
2048 {
2049
2050         char a[30];
2051         
2052         int i;
2053         int j;
2054
2055         int h0;
2056         int h1;
2057         int len0;
2058         int len1;
2059         int nread;
2060         
2061         sprintf(a,"%s/a",mountpt);
2062
2063         yaffs_StartUp();
2064         
2065         
2066         
2067         for(i = 0; i < nmounts; i++){
2068                 
2069                 static char xx[1000];
2070                 
2071                 printf("############### Iteration %d   Start\n",i);
2072                 if(1 || i == 0 || i == 5) 
2073                         yaffs_mount(mountpt);
2074
2075                 dump_directory_tree(mountpt);
2076                 
2077                 yaffs_mkdir(a,0);
2078                 
2079                 sprintf(xx,"%s/0",a);
2080                 if(i ==0){
2081                 
2082                         h0 = yaffs_open(xx, O_RDWR | O_CREAT | O_TRUNC, S_IREAD | S_IWRITE);
2083                         for(j = 0; j < 130; j++)
2084                                 yaffs_write(h0,xx,1000);
2085                         yaffs_close(h0);
2086                 }
2087                 
2088                 h0 = yaffs_open(xx,O_RDONLY,0);
2089                 
2090                 sprintf(xx,"%s/1",a);
2091                 h1 = yaffs_open(xx, O_RDWR | O_CREAT | O_TRUNC, S_IREAD | S_IWRITE);
2092                 
2093                 while((nread = yaffs_read(h0,xx,1000)) > 0)
2094                         yaffs_write(h1,xx,nread);
2095                 
2096                 
2097                 len0 = yaffs_lseek(h0,0,SEEK_END);
2098                 len1 = yaffs_lseek(h1,0,SEEK_END);
2099                 
2100                 yaffs_lseek(h0,0,SEEK_SET);
2101                 yaffs_lseek(h1,0,SEEK_SET);
2102
2103                 for(j = 0; j < 200; j++){
2104                    yaffs_read(h0,xx,1000);
2105                    yaffs_read(h1,xx,1000);
2106                 }
2107                 
2108                 yaffs_close(h0);
2109                 yaffs_close(h1);
2110                 
2111                 printf("########### %d\n",i);
2112                 dump_directory_tree(mountpt);
2113
2114                 if(1 || i == 4 || i == nmounts -1)
2115                         yaffs_unmount(mountpt);
2116         }
2117 }
2118
2119
2120 int early_exit;
2121
2122 void small_overwrite_test(const char *mountpt,int nmounts)
2123 {
2124
2125         char a[30];
2126         int i;
2127         int j;
2128
2129         int h0;
2130         int h1;
2131
2132         
2133         sprintf(a,"%s/a",mountpt);
2134
2135         yaffs_StartUp();
2136         
2137         
2138         
2139         for(i = 0; i < nmounts; i++){
2140                 
2141                 static char xx[8000];
2142                 
2143                 printf("############### Iteration %d   Start\n",i);
2144                 if(1)
2145                         yaffs_mount(mountpt);
2146
2147                 dump_directory_tree(mountpt);
2148                 
2149                 yaffs_mkdir(a,0);
2150                 
2151                 sprintf(xx,"%s/0",a);
2152                 h0 = yaffs_open(xx, O_RDWR | O_CREAT | O_TRUNC, S_IREAD | S_IWRITE);
2153                 sprintf(xx,"%s/1",a);
2154                 h1 = yaffs_open(xx, O_RDWR | O_CREAT | O_TRUNC, S_IREAD | S_IWRITE);
2155                 
2156                 for(j = 0; j < 1000000; j+=1000){
2157                         yaffs_ftruncate(h0,j);
2158                         yaffs_lseek(h0,j,SEEK_SET);
2159                         yaffs_write(h0,xx,7000);
2160                         yaffs_write(h1,xx,7000);
2161                         
2162                         if(early_exit)
2163                                 exit(0);
2164                 }
2165                 
2166                 yaffs_close(h0);
2167                 
2168                 printf("########### %d\n",i);
2169                 dump_directory_tree(mountpt);
2170
2171                 if(1)
2172                         yaffs_unmount(mountpt);
2173         }
2174 }
2175
2176
2177 void seek_overwrite_test(const char *mountpt,int nmounts)
2178 {
2179
2180         char a[30];
2181         
2182         int i;
2183         int j;
2184
2185         int h0;
2186
2187         
2188         sprintf(a,"%s/f",mountpt);
2189
2190         yaffs_StartUp();
2191         
2192         yaffs_mount(mountpt);
2193         
2194         
2195         for(i = 0; i < nmounts; i++){
2196                 
2197                 h0 = yaffs_open(a, O_RDWR | O_CREAT | O_TRUNC, S_IREAD | S_IWRITE);
2198                         
2199                 for(j = 0; j < 100000; j++){
2200                         yaffs_lseek(h0,0,SEEK_SET);
2201                         yaffs_write(h0,xx,5000);
2202                         yaffs_lseek(h0,0x100000,SEEK_SET);
2203                         yaffs_write(h0,xx,5000);
2204                         
2205                         if(early_exit)
2206                                 exit(0);
2207                 }
2208                 
2209                 yaffs_close(h0);
2210                 
2211         }
2212 }
2213
2214
2215 void yaffs_touch(const char *fn)
2216 {
2217         yaffs_chmod(fn, S_IREAD | S_IWRITE);
2218 }
2219
2220 void checkpoint_fill_test(const char *mountpt,int nmounts)
2221 {
2222
2223         char a[50];
2224         char b[50];
2225         char c[50];
2226         
2227         int i;
2228         int j;
2229         int h;
2230         
2231         sprintf(a,"%s/a",mountpt);
2232         
2233
2234         
2235         
2236         yaffs_StartUp();
2237         
2238         for(i = 0; i < nmounts; i++){
2239                 printf("############### Iteration %d   Start\n",i);
2240                 yaffs_mount(mountpt);
2241                 dump_directory_tree(mountpt);
2242                 yaffs_mkdir(a,0);
2243                 
2244                 sprintf(b,"%s/zz",a);
2245                 
2246                 h = yaffs_open(b,O_CREAT | O_RDWR,S_IREAD |S_IWRITE);
2247                 
2248                 
2249                 while(yaffs_write(h,c,50) == 50){}
2250                 
2251                 yaffs_close(h);
2252                 
2253                 for(j = 0; j < 2; j++){
2254                         printf("touch %d\n",j);
2255                         yaffs_touch(b);
2256                         yaffs_unmount(mountpt);
2257                         yaffs_mount(mountpt);
2258                 }
2259
2260                 dump_directory_tree(mountpt);           
2261                 yaffs_unmount(mountpt);
2262         }
2263 }
2264
2265
2266 int make_file2(const char *name1, const char *name2,int syz)
2267 {
2268
2269         char xx[2500];
2270         int i;
2271         int h1=-1,h2=-1;
2272         int n = 1;
2273
2274
2275         if(name1)
2276                 h1 = yaffs_open(name1,O_CREAT | O_TRUNC | O_RDWR, S_IREAD | S_IWRITE);
2277         if(name2)
2278                 h2 = yaffs_open(name2,O_CREAT | O_TRUNC | O_RDWR, S_IREAD | S_IWRITE);
2279         
2280         while(syz > 0 && n > 0){
2281                 i = (syz > 2500) ? 2500 : syz;
2282                 n = yaffs_write(h1,xx,i);
2283                 n = yaffs_write(h2,xx,i);
2284                 syz -= 500;
2285         }
2286         yaffs_close(h1);
2287         yaffs_close(h2);
2288         return 0;
2289 }
2290
2291
2292 extern void SetCheckpointReservedBlocks(int n);
2293
2294 void checkpoint_upgrade_test(const char *mountpt,int nmounts)
2295 {
2296
2297         char a[50];
2298         char b[50];
2299         char c[50];
2300         char d[50];
2301
2302         int j;
2303         
2304         sprintf(a,"%s/a",mountpt);
2305         
2306
2307         
2308         
2309         printf("Create start condition\n");
2310         yaffs_StartUp();
2311         yaffs_mount(mountpt);
2312         yaffs_mkdir(a,0);
2313         sprintf(b,"%s/zz",a);
2314         sprintf(c,"%s/xx",a);
2315         make_file2(b,c,2000000);
2316         sprintf(d,"%s/aa",a);
2317         make_file2(d,NULL,500000000);
2318         dump_directory_tree(mountpt);
2319         
2320         printf("Umount/mount attempt full\n");
2321         yaffs_unmount(mountpt);
2322         
2323         yaffs_mount(mountpt);
2324         
2325         printf("unlink small file\n");
2326         yaffs_unlink(c);
2327         dump_directory_tree(mountpt);
2328                 
2329         printf("Umount/mount attempt\n");
2330         yaffs_unmount(mountpt);
2331         yaffs_mount(mountpt);
2332         
2333         for(j = 0; j < 500; j++){
2334                 printf("***** touch %d\n",j);
2335                 dump_directory_tree(mountpt);
2336                 yaffs_touch(b);
2337                 yaffs_unmount(mountpt);
2338                 yaffs_mount(mountpt);
2339         }
2340
2341         for(j = 0; j < 500; j++){
2342                 printf("***** touch %d\n",j);
2343                 dump_directory_tree(mountpt);
2344                 yaffs_touch(b);
2345                 yaffs_unmount(mountpt);
2346                 yaffs_mount(mountpt);
2347         }
2348 }
2349         
2350 void huge_array_test(const char *mountpt,int n)
2351 {
2352
2353         char a[50];
2354
2355         
2356         int i;
2357         int space;
2358         
2359         int fnum;
2360         
2361         sprintf(a,"mount point %s",mountpt);
2362         
2363
2364         
2365         yaffs_StartUp();
2366
2367         yaffs_mount(mountpt);
2368         
2369         while(n>0){
2370                 n--;
2371                 fnum = 0;
2372                 printf("\n\n START run\n\n");
2373                 while((space = yaffs_freespace(mountpt)) > 25000000){
2374                         sprintf(a,"%s/file%d",mountpt,fnum);
2375                         fnum++;
2376                         printf("create file %s, free space %d\n",a,space);
2377                         create_file_of_size(a,10000000);
2378                         printf("verifying file %s\n",a);
2379                         verify_file_of_size(a,10000000);
2380                 }
2381                 
2382                 printf("\n\n verification/deletion\n\n");
2383                 
2384                 for(i = 0; i < fnum; i++){
2385                         sprintf(a,"%s/file%d",mountpt,i);
2386                         printf("verifying file %s\n",a);
2387                         verify_file_of_size(a,10000000);
2388                         printf("deleting file %s\n",a);
2389                         yaffs_unlink(a);
2390                 }
2391                 printf("\n\n done \n\n");
2392                         
2393                    
2394         }
2395 }
2396
2397
2398 void random_write(int h)
2399 {
2400         static char buffer[12000];
2401         int n;
2402         
2403         n = random() & 0x1FFF;
2404         yaffs_write(h,buffer,n);
2405 }
2406
2407 void random_seek(int h)
2408 {
2409         int n;
2410         n = random() & 0xFFFFF;
2411         yaffs_lseek(h,n,SEEK_SET);
2412 }
2413
2414 void random_truncate(int h, char * name)
2415 {
2416         int n;
2417         int flen;
2418         n = random() & 0xFFFFF;
2419         flen = yaffs_lseek(h,0,SEEK_END);
2420         if(n > flen)
2421                 n = flen / 2;
2422         yaffs_ftruncate(h,n);
2423         yaffs_lseek(h,n,SEEK_SET);
2424 }
2425
2426
2427 #define NSMALLFILES 10  
2428 void random_small_file_test(const char *mountpt,int iterations)
2429 {
2430
2431         char a[NSMALLFILES][50];
2432
2433         
2434         int i;
2435         int n;
2436         int h[NSMALLFILES];
2437         int r;
2438         
2439         
2440         yaffs_StartUp();
2441
2442         yaffs_mount(mountpt);
2443         
2444         for(i = 0; i < NSMALLFILES; i++){
2445                 h[i]=-1;
2446                 strcpy(a[i],"");
2447         }
2448         
2449         for(n = 0; n < iterations; n++){
2450                                 
2451                 for(i = 0; i < NSMALLFILES; i++) {
2452                         r = random();
2453                         
2454                         if(strlen(a[i]) == 0){
2455                                 sprintf(a[i],"%s/%dx%d",mountpt,n,i);
2456                                 h[i] = yaffs_open(a[i],O_RDWR | O_CREAT | O_TRUNC, S_IREAD | S_IWRITE);
2457                         }
2458                         
2459                         if(h[i] < -1)
2460                                 printf("Could not open yaffs file %d %d error %d\n",n,i,h[i]);
2461                         else {
2462                                 r = r & 7;
2463                                 switch(r){
2464                                         case 0:
2465                                         case 1:
2466                                         case 2:
2467                                                 random_write(h[i]);
2468                                                 break;
2469                                         case 3:
2470                                                 random_truncate(h[i],a[i]);
2471                                                 break;
2472                                         case 4:
2473                                         case 5: random_seek(h[i]);
2474                                                 break;
2475                                         case 6:
2476                                                 yaffs_close(h[i]);
2477                                                 h[i] = -1;
2478                                                 break;
2479                                         case 7:
2480                                                 yaffs_close(h[i]);
2481                                                 yaffs_unlink(a[i]);
2482                                                 strcpy(a[i],"");
2483                                                 h[i] = -1;
2484                                 }
2485                         }
2486                 }
2487                    
2488         }
2489         
2490         for(i = 0; i < NSMALLFILES; i++)
2491                 yaffs_close(h[i]);
2492                 
2493         yaffs_unmount(mountpt);
2494 }
2495
2496 void rmdir_test(const char *mountpt)
2497 {
2498         char name[100];
2499         yaffs_StartUp();
2500         
2501         yaffs_mount(mountpt);
2502         
2503         strcpy(name,mountpt);
2504         strcat(name,"/");
2505         strcat(name,"hello");
2506         yaffs_mkdir(name,0666);
2507         yaffs_rmdir(name);
2508         yaffs_unmount(mountpt);
2509 }
2510
2511
2512
2513 static void print_xattrib_val(const char *path, const char *name)
2514 {
2515         char buffer[1000];
2516         int n;
2517
2518         n = yaffs_getxattr(path,name,buffer,sizeof(buffer));
2519         if(n >= 0){
2520                 __u8 *b = (__u8 *)buffer;
2521
2522                 printf("%d bytes:",n);
2523                 if(n > 10)
2524                         n = 10;
2525                 while(n > 0){
2526                         printf("[%02X]",*b);
2527                         b++;
2528                         n--;
2529                 }
2530                 printf("\n");
2531         } else
2532                 printf(" Novalue result %d\n",n);
2533 }
2534
2535 static void list_xattr(const char *path)
2536 {
2537         char list[1000];
2538         int n=0;
2539         int list_len;
2540         int len;
2541
2542         list_len = yaffs_listxattr(path,list,sizeof(list));
2543         printf("xattribs for %s, result is %d\n",path,list_len);
2544         while(n < list_len){
2545                 len = strlen(list + n);
2546                 printf("\"%s\" value ",list+n);
2547                 print_xattrib_val(path,list + n);
2548                 n += (len + 1);
2549         }
2550         printf("end\n");
2551 }
2552
2553 void basic_xattr_test(const char *mountpt)
2554 {
2555         char name[100];
2556         int h;
2557         int result;
2558         int val1;
2559         int valread;
2560
2561         yaffs_StartUp();
2562
2563         yaffs_mount(mountpt);
2564
2565         strcpy(name,mountpt);
2566         strcat(name,"/");
2567         strcat(name,"xfile");
2568
2569         yaffs_unlink(name);
2570         h = yaffs_open(name,O_CREAT | O_TRUNC | O_RDWR, S_IREAD | S_IWRITE);
2571         yaffs_close(h);
2572
2573         printf("Start\n");
2574         list_xattr(name);
2575
2576         printf("Add an attribute\n");
2577         val1 = 0x123456;
2578         result = yaffs_setxattr(name,"foo",&val1,sizeof(val1),0);
2579         printf("wrote attribute foo: result %d\n",result);
2580         list_xattr(name);
2581         printf("Add an attribute\n");
2582         val1 = 0x7890;
2583         result = yaffs_setxattr(name,"bar",&val1,sizeof(val1),0);
2584         printf("wrote attribute bar: result %d\n",result);
2585         list_xattr(name);
2586
2587         printf("Get non-existanrt attribute\n");
2588         print_xattrib_val(name,"not here");
2589
2590         printf("Delete non existing attribute\n");
2591         yaffs_removexattr(name,"not here");
2592         list_xattr(name);
2593
2594         printf("Remove foo\n");
2595         yaffs_removexattr(name,"foo");
2596         list_xattr(name);
2597
2598         printf("Remove bar\n");
2599         yaffs_removexattr(name,"bar");
2600         list_xattr(name);
2601
2602 }
2603
2604 void big_xattr_test(const char *mountpt)
2605 {
2606         char name[100];
2607         int h;
2608         int result;
2609         char val[1000];
2610         char valread[1000];
2611
2612         yaffs_StartUp();
2613
2614         yaffs_mount(mountpt);
2615
2616         strcpy(name,mountpt);
2617         strcat(name,"/");
2618         strcat(name,"xfile");
2619
2620         yaffs_unlink(name);
2621         h = yaffs_open(name,O_CREAT | O_TRUNC | O_RDWR, S_IREAD | S_IWRITE);
2622         yaffs_close(h);
2623
2624         printf("Start\n");
2625         list_xattr(name);
2626
2627         printf("Add a large  attribute\n");
2628         memset(val,0x1,sizeof(val));
2629         result = yaffs_setxattr(name,"aaa",val,200,0);
2630         printf("wrote attribute aaa: result %d\n",result);
2631         list_xattr(name);
2632
2633         printf("Add a large  attribute\n");
2634         memset(val,0x2,sizeof(val));
2635         result = yaffs_setxattr(name,"bbb",val,1000,0);
2636         printf("wrote attribute bbb: result %d\n",result);
2637         list_xattr(name);
2638
2639         printf("Replace attribute\n");
2640         memset(val,0x3,sizeof(val));
2641         result = yaffs_setxattr(name,"aaa",val,1000,0);
2642         printf("wrote attribute aaa: result %d\n",result);
2643         list_xattr(name);
2644
2645 }
2646
2647
2648 void dump_dev_stats(yaffs_Device *dev, const char * str)
2649 {
2650         printf("%s\n",str);
2651         printf( "space free %d erased %d "
2652                 "nand reads %d writes %d erases %d "
2653                 "gc all %d passive %d oldestdirty %d blocks %d copies %d \n",
2654                 dev->nFreeChunks, dev->nErasedBlocks * dev->param.nChunksPerBlock,
2655                 dev->nPageReads, dev->nPageWrites, dev->nBlockErasures,
2656                 dev->allGCs, dev->passiveGCs, dev->oldestDirtyGCs, dev->nGCBlocks, dev->nGCCopies);
2657 }
2658
2659 void test_flash_traffic(const char *mountpt)
2660 {
2661         char name0[100];
2662         char name1[100];
2663         int i;
2664         yaffs_Device *dev;
2665
2666         yaffs_traceMask = 0;
2667
2668         yaffs_StartUp();
2669
2670         yaffs_mount(mountpt);
2671         
2672         dev = yaffs_getdev(mountpt);
2673
2674         strcpy(name0,mountpt);
2675         strcat(name0,"/x");
2676
2677         strcpy(name1,mountpt);
2678         strcat(name1,"/y");
2679
2680         dump_dev_stats(dev,"start");
2681         create_file_of_size(name0,32 * 1024 * 1024);
2682         dump_dev_stats(dev,"32MB written");
2683         for(i = 0; i < 20; i++)
2684                 create_file_of_size(name1,1024 * 1024);
2685         dump_dev_stats(dev,"20x 1MB files written");
2686
2687 }
2688
2689 int random_seed;
2690 int simulate_power_failure;
2691
2692 int main(int argc, char *argv[])
2693 {
2694         random_seed = time(NULL);
2695         //return long_test(argc,argv);
2696         
2697         //return cache_read_test();
2698         
2699         // resize_stress_test_no_grow("/flash/flash",20);
2700         //root_perm_remount("/flash/flash");
2701         
2702         //huge_directory_test_on_path("/ram2k");
2703         
2704          //yaffs_backward_scan_test("/flash/flash");
2705         // yaffs_device_flush_test("/flash/flash");
2706
2707         //rename_over_test("//////////////////flash///////////////////yaffs1///////////");
2708         
2709         //fill_empty_files_test("/yaffs2/");
2710         //resize_stress_test("/yaffs2");
2711         //overwrite_test("/yaffs2");
2712         
2713         //long_name_test("/yaffs2");
2714         //link_test0("/yaffs2");
2715         //link_test1("yaffs2");
2716          //scan_pattern_test("/flash",10000,10);
2717         //short_scan_test("/flash/flash",40000,200);
2718           //small_mount_test("/flash/flash",1000);
2719           //small_overwrite_test("/flash/flash",1000);
2720           //seek_overwrite_test("/flash/flash",1000);
2721          //checkpoint_fill_test("/flash/flash",20);
2722          //checkpoint_upgrade_test("/flash/flash",20);
2723           //small_overwrite_test("/flash/flash",1000);
2724           //checkpoint_fill_test("/flash/flash",20);
2725         // random_small_file_test("/flash/flash",10000);
2726          // huge_array_test("/flash/flash",10);
2727
2728
2729         // handle_test("yaffs2/");
2730         
2731         //long_test_on_path("/ram2k");
2732         // long_test_on_path("/flash");
2733         //simple_rw_test("/flash/flash");
2734         //fill_disk_test("/flash/flash");
2735         // rename_over_test("/flash");
2736         //lookup_test("/flash");
2737         //freespace_test("/flash/flash");
2738         
2739         //link_test("/flash/flash");
2740         
2741         // cache_bypass_bug_test();
2742         
2743          //free_space_check();
2744          
2745          //check_resize_gc_bug("/flash");
2746          
2747          //basic_xattr_test("/yaffs2");
2748          //big_xattr_test("/yaffs2");
2749
2750          //null_name_test("yaffs2");
2751
2752          test_flash_traffic("yaffs2");
2753
2754          return 0;
2755         
2756 }