Whamcloud - gitweb
libext2fs: move the alignment field from unix_io to the io_manager
[tools/e2fsprogs.git] / lib / ext2fs / icount.c
1 /*
2  * icount.c --- an efficient inode count abstraction
3  *
4  * Copyright (C) 1997 Theodore Ts'o.
5  *
6  * %Begin-Header%
7  * This file may be redistributed under the terms of the GNU Library
8  * General Public License, version 2.
9  * %End-Header%
10  */
11
12 #include "config.h"
13 #if HAVE_UNISTD_H
14 #include <unistd.h>
15 #endif
16 #include <string.h>
17 #include <stdio.h>
18 #include <sys/stat.h>
19 #include <fcntl.h>
20 #include <errno.h>
21
22 #include "ext2_fs.h"
23 #include "ext2fs.h"
24 #include "tdb.h"
25
26 /*
27  * The data storage strategy used by icount relies on the observation
28  * that most inode counts are either zero (for non-allocated inodes),
29  * one (for most files), and only a few that are two or more
30  * (directories and files that are linked to more than one directory).
31  *
32  * Also, e2fsck tends to load the icount data sequentially.
33  *
34  * So, we use an inode bitmap to indicate which inodes have a count of
35  * one, and then use a sorted list to store the counts for inodes
36  * which are greater than one.
37  *
38  * We also use an optional bitmap to indicate which inodes are already
39  * in the sorted list, to speed up the use of this abstraction by
40  * e2fsck's pass 2.  Pass 2 increments inode counts as it finds them,
41  * so this extra bitmap avoids searching the sorted list to see if a
42  * particular inode is on the sorted list already.
43  */
44
45 struct ext2_icount_el {
46         ext2_ino_t      ino;
47         __u32           count;
48 };
49
50 struct ext2_icount {
51         errcode_t               magic;
52         ext2fs_inode_bitmap     single;
53         ext2fs_inode_bitmap     multiple;
54         ext2_ino_t              count;
55         ext2_ino_t              size;
56         ext2_ino_t              num_inodes;
57         ext2_ino_t              cursor;
58         struct ext2_icount_el   *list;
59         struct ext2_icount_el   *last_lookup;
60         char                    *tdb_fn;
61         TDB_CONTEXT             *tdb;
62 };
63
64 /*
65  * We now use a 32-bit counter field because it doesn't cost us
66  * anything extra for the in-memory data structure, due to alignment
67  * padding.  But there's no point changing the interface if most of
68  * the time we only care if the number is bigger than 65,000 or not.
69  * So use the following translation function to return a 16-bit count.
70  */
71 #define icount_16_xlate(x) (((x) > 65500) ? 65500 : (x))
72
73 void ext2fs_free_icount(ext2_icount_t icount)
74 {
75         if (!icount)
76                 return;
77
78         icount->magic = 0;
79         if (icount->list)
80                 ext2fs_free_mem(&icount->list);
81         if (icount->single)
82                 ext2fs_free_inode_bitmap(icount->single);
83         if (icount->multiple)
84                 ext2fs_free_inode_bitmap(icount->multiple);
85         if (icount->tdb)
86                 tdb_close(icount->tdb);
87         if (icount->tdb_fn) {
88                 unlink(icount->tdb_fn);
89                 free(icount->tdb_fn);
90         }
91
92         ext2fs_free_mem(&icount);
93 }
94
95 static errcode_t alloc_icount(ext2_filsys fs, int flags, ext2_icount_t *ret)
96 {
97         ext2_icount_t   icount;
98         errcode_t       retval;
99
100         *ret = 0;
101
102         retval = ext2fs_get_mem(sizeof(struct ext2_icount), &icount);
103         if (retval)
104                 return retval;
105         memset(icount, 0, sizeof(struct ext2_icount));
106
107         retval = ext2fs_allocate_inode_bitmap(fs, "icount", &icount->single);
108         if (retval)
109                 goto errout;
110
111         if (flags & EXT2_ICOUNT_OPT_INCREMENT) {
112                 retval = ext2fs_allocate_inode_bitmap(fs, "icount_inc",
113                                                       &icount->multiple);
114                 if (retval)
115                         goto errout;
116         } else
117                 icount->multiple = 0;
118
119         icount->magic = EXT2_ET_MAGIC_ICOUNT;
120         icount->num_inodes = fs->super->s_inodes_count;
121
122         *ret = icount;
123         return 0;
124
125 errout:
126         ext2fs_free_icount(icount);
127         return(retval);
128 }
129
130 struct uuid {
131         __u32   time_low;
132         __u16   time_mid;
133         __u16   time_hi_and_version;
134         __u16   clock_seq;
135         __u8    node[6];
136 };
137
138 static void unpack_uuid(void *in, struct uuid *uu)
139 {
140         __u8    *ptr = in;
141         __u32   tmp;
142
143         tmp = *ptr++;
144         tmp = (tmp << 8) | *ptr++;
145         tmp = (tmp << 8) | *ptr++;
146         tmp = (tmp << 8) | *ptr++;
147         uu->time_low = tmp;
148
149         tmp = *ptr++;
150         tmp = (tmp << 8) | *ptr++;
151         uu->time_mid = tmp;
152
153         tmp = *ptr++;
154         tmp = (tmp << 8) | *ptr++;
155         uu->time_hi_and_version = tmp;
156
157         tmp = *ptr++;
158         tmp = (tmp << 8) | *ptr++;
159         uu->clock_seq = tmp;
160
161         memcpy(uu->node, ptr, 6);
162 }
163
164 static void uuid_unparse(void *uu, char *out)
165 {
166         struct uuid uuid;
167
168         unpack_uuid(uu, &uuid);
169         sprintf(out,
170                 "%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x",
171                 uuid.time_low, uuid.time_mid, uuid.time_hi_and_version,
172                 uuid.clock_seq >> 8, uuid.clock_seq & 0xFF,
173                 uuid.node[0], uuid.node[1], uuid.node[2],
174                 uuid.node[3], uuid.node[4], uuid.node[5]);
175 }
176
177 errcode_t ext2fs_create_icount_tdb(ext2_filsys fs, char *tdb_dir,
178                                    int flags, ext2_icount_t *ret)
179 {
180         ext2_icount_t   icount;
181         errcode_t       retval;
182         char            *fn, uuid[40];
183         ext2_ino_t      num_inodes;
184         int             fd;
185
186         retval = alloc_icount(fs, flags,  &icount);
187         if (retval)
188                 return retval;
189
190         retval = ext2fs_get_mem(strlen(tdb_dir) + 64, &fn);
191         if (retval)
192                 goto errout;
193         uuid_unparse(fs->super->s_uuid, uuid);
194         sprintf(fn, "%s/%s-icount-XXXXXX", tdb_dir, uuid);
195         fd = mkstemp(fn);
196
197         /*
198          * This is an overestimate of the size that we will need; the
199          * ideal value is the number of used inodes with a count
200          * greater than 1.  OTOH the times when we really need this is
201          * with the backup programs that use lots of hard links, in
202          * which case the number of inodes in use approaches the ideal
203          * value.
204          */
205         num_inodes = fs->super->s_inodes_count - fs->super->s_free_inodes_count;
206
207         icount->tdb_fn = fn;
208         icount->tdb = tdb_open(fn, num_inodes, TDB_NOLOCK | TDB_NOSYNC,
209                                O_RDWR | O_CREAT | O_TRUNC, 0600);
210         if (icount->tdb) {
211                 close(fd);
212                 *ret = icount;
213                 return 0;
214         }
215
216         retval = errno;
217         close(fd);
218
219 errout:
220         ext2fs_free_icount(icount);
221         return(retval);
222 }
223
224 errcode_t ext2fs_create_icount2(ext2_filsys fs, int flags, unsigned int size,
225                                 ext2_icount_t hint, ext2_icount_t *ret)
226 {
227         ext2_icount_t   icount;
228         errcode_t       retval;
229         size_t          bytes;
230         ext2_ino_t      i;
231
232         if (hint) {
233                 EXT2_CHECK_MAGIC(hint, EXT2_ET_MAGIC_ICOUNT);
234                 if (hint->size > size)
235                         size = (size_t) hint->size;
236         }
237
238         retval = alloc_icount(fs, flags, &icount);
239         if (retval)
240                 return retval;
241
242         if (size) {
243                 icount->size = size;
244         } else {
245                 /*
246                  * Figure out how many special case inode counts we will
247                  * have.  We know we will need one for each directory;
248                  * we also need to reserve some extra room for file links
249                  */
250                 retval = ext2fs_get_num_dirs(fs, &icount->size);
251                 if (retval)
252                         goto errout;
253                 icount->size += fs->super->s_inodes_count / 50;
254         }
255
256         bytes = (size_t) (icount->size * sizeof(struct ext2_icount_el));
257 #if 0
258         printf("Icount allocated %u entries, %d bytes.\n",
259                icount->size, bytes);
260 #endif
261         retval = ext2fs_get_array(icount->size, sizeof(struct ext2_icount_el),
262                          &icount->list);
263         if (retval)
264                 goto errout;
265         memset(icount->list, 0, bytes);
266
267         icount->count = 0;
268         icount->cursor = 0;
269
270         /*
271          * Populate the sorted list with those entries which were
272          * found in the hint icount (since those are ones which will
273          * likely need to be in the sorted list this time around).
274          */
275         if (hint) {
276                 for (i=0; i < hint->count; i++)
277                         icount->list[i].ino = hint->list[i].ino;
278                 icount->count = hint->count;
279         }
280
281         *ret = icount;
282         return 0;
283
284 errout:
285         ext2fs_free_icount(icount);
286         return(retval);
287 }
288
289 errcode_t ext2fs_create_icount(ext2_filsys fs, int flags,
290                                unsigned int size,
291                                ext2_icount_t *ret)
292 {
293         return ext2fs_create_icount2(fs, flags, size, 0, ret);
294 }
295
296 /*
297  * insert_icount_el() --- Insert a new entry into the sorted list at a
298  *      specified position.
299  */
300 static struct ext2_icount_el *insert_icount_el(ext2_icount_t icount,
301                                             ext2_ino_t ino, int pos)
302 {
303         struct ext2_icount_el   *el;
304         errcode_t               retval;
305         ext2_ino_t              new_size = 0;
306         int                     num;
307
308         if (icount->last_lookup && icount->last_lookup->ino == ino)
309                 return icount->last_lookup;
310
311         if (icount->count >= icount->size) {
312                 if (icount->count) {
313                         new_size = icount->list[(unsigned)icount->count-1].ino;
314                         new_size = (ext2_ino_t) (icount->count *
315                                 ((float) icount->num_inodes / new_size));
316                 }
317                 if (new_size < (icount->size + 100))
318                         new_size = icount->size + 100;
319 #if 0
320                 printf("Reallocating icount %u entries...\n", new_size);
321 #endif
322                 retval = ext2fs_resize_mem((size_t) icount->size *
323                                            sizeof(struct ext2_icount_el),
324                                            (size_t) new_size *
325                                            sizeof(struct ext2_icount_el),
326                                            &icount->list);
327                 if (retval)
328                         return 0;
329                 icount->size = new_size;
330         }
331         num = (int) icount->count - pos;
332         if (num < 0)
333                 return 0;       /* should never happen */
334         if (num) {
335                 memmove(&icount->list[pos+1], &icount->list[pos],
336                         sizeof(struct ext2_icount_el) * num);
337         }
338         icount->count++;
339         el = &icount->list[pos];
340         el->count = 0;
341         el->ino = ino;
342         icount->last_lookup = el;
343         return el;
344 }
345
346 /*
347  * get_icount_el() --- given an inode number, try to find icount
348  *      information in the sorted list.  If the create flag is set,
349  *      and we can't find an entry, create one in the sorted list.
350  */
351 static struct ext2_icount_el *get_icount_el(ext2_icount_t icount,
352                                             ext2_ino_t ino, int create)
353 {
354         int     low, high, mid;
355
356         if (!icount || !icount->list)
357                 return 0;
358
359         if (create && ((icount->count == 0) ||
360                        (ino > icount->list[(unsigned)icount->count-1].ino))) {
361                 return insert_icount_el(icount, ino, (unsigned) icount->count);
362         }
363         if (icount->count == 0)
364                 return 0;
365
366         if (icount->cursor >= icount->count)
367                 icount->cursor = 0;
368         if (ino == icount->list[icount->cursor].ino)
369                 return &icount->list[icount->cursor++];
370 #if 0
371         printf("Non-cursor get_icount_el: %u\n", ino);
372 #endif
373         low = 0;
374         high = (int) icount->count-1;
375         while (low <= high) {
376                 mid = ((unsigned)low + (unsigned)high) >> 1;
377                 if (ino == icount->list[mid].ino) {
378                         icount->cursor = mid+1;
379                         return &icount->list[mid];
380                 }
381                 if (ino < icount->list[mid].ino)
382                         high = mid-1;
383                 else
384                         low = mid+1;
385         }
386         /*
387          * If we need to create a new entry, it should be right at
388          * low (where high will be left at low-1).
389          */
390         if (create)
391                 return insert_icount_el(icount, ino, low);
392         return 0;
393 }
394
395 static errcode_t set_inode_count(ext2_icount_t icount, ext2_ino_t ino,
396                                  __u32 count)
397 {
398         struct ext2_icount_el   *el;
399         TDB_DATA key, data;
400
401         if (icount->tdb) {
402                 key.dptr = (unsigned char *) &ino;
403                 key.dsize = sizeof(ext2_ino_t);
404                 data.dptr = (unsigned char *) &count;
405                 data.dsize = sizeof(__u32);
406                 if (count) {
407                         if (tdb_store(icount->tdb, key, data, TDB_REPLACE))
408                                 return tdb_error(icount->tdb) +
409                                         EXT2_ET_TDB_SUCCESS;
410                 } else {
411                         if (tdb_delete(icount->tdb, key))
412                                 return tdb_error(icount->tdb) +
413                                         EXT2_ET_TDB_SUCCESS;
414                 }
415                 return 0;
416         }
417
418         el = get_icount_el(icount, ino, 1);
419         if (!el)
420                 return EXT2_ET_NO_MEMORY;
421
422         el->count = count;
423         return 0;
424 }
425
426 static errcode_t get_inode_count(ext2_icount_t icount, ext2_ino_t ino,
427                                  __u32 *count)
428 {
429         struct ext2_icount_el   *el;
430         TDB_DATA key, data;
431
432         if (icount->tdb) {
433                 key.dptr = (unsigned char *) &ino;
434                 key.dsize = sizeof(ext2_ino_t);
435
436                 data = tdb_fetch(icount->tdb, key);
437                 if (data.dptr == NULL) {
438                         *count = 0;
439                         return tdb_error(icount->tdb) + EXT2_ET_TDB_SUCCESS;
440                 }
441
442                 *count = *((__u32 *) data.dptr);
443                 free(data.dptr);
444                 return 0;
445         }
446         el = get_icount_el(icount, ino, 0);
447         if (!el) {
448                 *count = 0;
449                 return ENOENT;
450         }
451
452         *count = el->count;
453         return 0;
454 }
455
456 errcode_t ext2fs_icount_validate(ext2_icount_t icount, FILE *out)
457 {
458         errcode_t       ret = 0;
459         unsigned int    i;
460         const char *bad = "bad icount";
461
462         EXT2_CHECK_MAGIC(icount, EXT2_ET_MAGIC_ICOUNT);
463
464         if (icount->count > icount->size) {
465                 fprintf(out, "%s: count > size\n", bad);
466                 return EXT2_ET_INVALID_ARGUMENT;
467         }
468         for (i=1; i < icount->count; i++) {
469                 if (icount->list[i-1].ino >= icount->list[i].ino) {
470                         fprintf(out, "%s: list[%d].ino=%u, list[%d].ino=%u\n",
471                                 bad, i-1, icount->list[i-1].ino,
472                                 i, icount->list[i].ino);
473                         ret = EXT2_ET_INVALID_ARGUMENT;
474                 }
475         }
476         return ret;
477 }
478
479 errcode_t ext2fs_icount_fetch(ext2_icount_t icount, ext2_ino_t ino, __u16 *ret)
480 {
481         __u32   val;
482         EXT2_CHECK_MAGIC(icount, EXT2_ET_MAGIC_ICOUNT);
483
484         if (!ino || (ino > icount->num_inodes))
485                 return EXT2_ET_INVALID_ARGUMENT;
486
487         if (ext2fs_test_inode_bitmap2(icount->single, ino)) {
488                 *ret = 1;
489                 return 0;
490         }
491         if (icount->multiple &&
492             !ext2fs_test_inode_bitmap2(icount->multiple, ino)) {
493                 *ret = 0;
494                 return 0;
495         }
496         get_inode_count(icount, ino, &val);
497         *ret = icount_16_xlate(val);
498         return 0;
499 }
500
501 errcode_t ext2fs_icount_increment(ext2_icount_t icount, ext2_ino_t ino,
502                                   __u16 *ret)
503 {
504         __u32                   curr_value;
505
506         EXT2_CHECK_MAGIC(icount, EXT2_ET_MAGIC_ICOUNT);
507
508         if (!ino || (ino > icount->num_inodes))
509                 return EXT2_ET_INVALID_ARGUMENT;
510
511         if (ext2fs_test_inode_bitmap2(icount->single, ino)) {
512                 /*
513                  * If the existing count is 1, then we know there is
514                  * no entry in the list.
515                  */
516                 if (set_inode_count(icount, ino, 2))
517                         return EXT2_ET_NO_MEMORY;
518                 curr_value = 2;
519                 ext2fs_unmark_inode_bitmap2(icount->single, ino);
520         } else if (icount->multiple) {
521                 /*
522                  * The count is either zero or greater than 1; if the
523                  * inode is set in icount->multiple, then there should
524                  * be an entry in the list, so we need to fix it.
525                  */
526                 if (ext2fs_test_inode_bitmap2(icount->multiple, ino)) {
527                         get_inode_count(icount, ino, &curr_value);
528                         curr_value++;
529                         if (set_inode_count(icount, ino, curr_value))
530                                 return EXT2_ET_NO_MEMORY;
531                 } else {
532                         /*
533                          * The count was zero; mark the single bitmap
534                          * and return.
535                          */
536                         ext2fs_mark_inode_bitmap2(icount->single, ino);
537                         if (ret)
538                                 *ret = 1;
539                         return 0;
540                 }
541         } else {
542                 /*
543                  * The count is either zero or greater than 1; try to
544                  * find an entry in the list to determine which.
545                  */
546                 get_inode_count(icount, ino, &curr_value);
547                 curr_value++;
548                 if (set_inode_count(icount, ino, curr_value))
549                         return EXT2_ET_NO_MEMORY;
550         }
551         if (icount->multiple)
552                 ext2fs_mark_inode_bitmap2(icount->multiple, ino);
553         if (ret)
554                 *ret = icount_16_xlate(curr_value);
555         return 0;
556 }
557
558 errcode_t ext2fs_icount_decrement(ext2_icount_t icount, ext2_ino_t ino,
559                                   __u16 *ret)
560 {
561         __u32                   curr_value;
562
563         if (!ino || (ino > icount->num_inodes))
564                 return EXT2_ET_INVALID_ARGUMENT;
565
566         EXT2_CHECK_MAGIC(icount, EXT2_ET_MAGIC_ICOUNT);
567
568         if (ext2fs_test_inode_bitmap2(icount->single, ino)) {
569                 ext2fs_unmark_inode_bitmap2(icount->single, ino);
570                 if (icount->multiple)
571                         ext2fs_unmark_inode_bitmap2(icount->multiple, ino);
572                 else {
573                         set_inode_count(icount, ino, 0);
574                 }
575                 if (ret)
576                         *ret = 0;
577                 return 0;
578         }
579
580         if (icount->multiple &&
581             !ext2fs_test_inode_bitmap2(icount->multiple, ino))
582                 return EXT2_ET_INVALID_ARGUMENT;
583
584         get_inode_count(icount, ino, &curr_value);
585         if (!curr_value)
586                 return EXT2_ET_INVALID_ARGUMENT;
587         curr_value--;
588         if (set_inode_count(icount, ino, curr_value))
589                 return EXT2_ET_NO_MEMORY;
590
591         if (curr_value == 1)
592                 ext2fs_mark_inode_bitmap2(icount->single, ino);
593         if ((curr_value == 0) && icount->multiple)
594                 ext2fs_unmark_inode_bitmap2(icount->multiple, ino);
595
596         if (ret)
597                 *ret = icount_16_xlate(curr_value);
598         return 0;
599 }
600
601 errcode_t ext2fs_icount_store(ext2_icount_t icount, ext2_ino_t ino,
602                               __u16 count)
603 {
604         if (!ino || (ino > icount->num_inodes))
605                 return EXT2_ET_INVALID_ARGUMENT;
606
607         EXT2_CHECK_MAGIC(icount, EXT2_ET_MAGIC_ICOUNT);
608
609         if (count == 1) {
610                 ext2fs_mark_inode_bitmap2(icount->single, ino);
611                 if (icount->multiple)
612                         ext2fs_unmark_inode_bitmap2(icount->multiple, ino);
613                 return 0;
614         }
615         if (count == 0) {
616                 ext2fs_unmark_inode_bitmap2(icount->single, ino);
617                 if (icount->multiple) {
618                         /*
619                          * If the icount->multiple bitmap is enabled,
620                          * we can just clear both bitmaps and we're done
621                          */
622                         ext2fs_unmark_inode_bitmap2(icount->multiple, ino);
623                 } else
624                         set_inode_count(icount, ino, 0);
625                 return 0;
626         }
627
628         if (set_inode_count(icount, ino, count))
629                 return EXT2_ET_NO_MEMORY;
630         ext2fs_unmark_inode_bitmap2(icount->single, ino);
631         if (icount->multiple)
632                 ext2fs_mark_inode_bitmap2(icount->multiple, ino);
633         return 0;
634 }
635
636 ext2_ino_t ext2fs_get_icount_size(ext2_icount_t icount)
637 {
638         if (!icount || icount->magic != EXT2_ET_MAGIC_ICOUNT)
639                 return 0;
640
641         return icount->size;
642 }
643
644 #ifdef DEBUG
645
646 ext2_filsys     test_fs;
647 ext2_icount_t   icount;
648
649 #define EXIT            0x00
650 #define FETCH           0x01
651 #define STORE           0x02
652 #define INCREMENT       0x03
653 #define DECREMENT       0x04
654
655 struct test_program {
656         int             cmd;
657         ext2_ino_t      ino;
658         __u16           arg;
659         __u16           expected;
660 };
661
662 struct test_program prog[] = {
663         { STORE, 42, 42, 42 },
664         { STORE, 1,  1, 1 },
665         { STORE, 2,  2, 2 },
666         { STORE, 3,  3, 3 },
667         { STORE, 10, 1, 1 },
668         { STORE, 42, 0, 0 },
669         { INCREMENT, 5, 0, 1 },
670         { INCREMENT, 5, 0, 2 },
671         { INCREMENT, 5, 0, 3 },
672         { INCREMENT, 5, 0, 4 },
673         { DECREMENT, 5, 0, 3 },
674         { DECREMENT, 5, 0, 2 },
675         { DECREMENT, 5, 0, 1 },
676         { DECREMENT, 5, 0, 0 },
677         { FETCH, 10, 0, 1 },
678         { FETCH, 1, 0, 1 },
679         { FETCH, 2, 0, 2 },
680         { FETCH, 3, 0, 3 },
681         { INCREMENT, 1, 0, 2 },
682         { DECREMENT, 2, 0, 1 },
683         { DECREMENT, 2, 0, 0 },
684         { FETCH, 12, 0, 0 },
685         { EXIT, 0, 0, 0 }
686 };
687
688 struct test_program extended[] = {
689         { STORE, 1,  1, 1 },
690         { STORE, 2,  2, 2 },
691         { STORE, 3,  3, 3 },
692         { STORE, 4,  4, 4 },
693         { STORE, 5,  5, 5 },
694         { STORE, 6,  1, 1 },
695         { STORE, 7,  2, 2 },
696         { STORE, 8,  3, 3 },
697         { STORE, 9,  4, 4 },
698         { STORE, 10, 5, 5 },
699         { STORE, 11, 1, 1 },
700         { STORE, 12, 2, 2 },
701         { STORE, 13, 3, 3 },
702         { STORE, 14, 4, 4 },
703         { STORE, 15, 5, 5 },
704         { STORE, 16, 1, 1 },
705         { STORE, 17, 2, 2 },
706         { STORE, 18, 3, 3 },
707         { STORE, 19, 4, 4 },
708         { STORE, 20, 5, 5 },
709         { STORE, 21, 1, 1 },
710         { STORE, 22, 2, 2 },
711         { STORE, 23, 3, 3 },
712         { STORE, 24, 4, 4 },
713         { STORE, 25, 5, 5 },
714         { STORE, 26, 1, 1 },
715         { STORE, 27, 2, 2 },
716         { STORE, 28, 3, 3 },
717         { STORE, 29, 4, 4 },
718         { STORE, 30, 5, 5 },
719         { EXIT, 0, 0, 0 }
720 };
721
722 /*
723  * Setup the variables for doing the inode scan test.
724  */
725 static void setup(void)
726 {
727         errcode_t       retval;
728         struct ext2_super_block param;
729
730         initialize_ext2_error_table();
731
732         memset(&param, 0, sizeof(param));
733         ext2fs_blocks_count_set(&param, 12000);
734
735         retval = ext2fs_initialize("test fs", EXT2_FLAG_64BITS, &param,
736                                    test_io_manager, &test_fs);
737         if (retval) {
738                 com_err("setup", retval,
739                         "while initializing filesystem");
740                 exit(1);
741         }
742         retval = ext2fs_allocate_tables(test_fs);
743         if (retval) {
744                 com_err("setup", retval,
745                         "while allocating tables for test filesystem");
746                 exit(1);
747         }
748 }
749
750 int run_test(int flags, int size, char *dir, struct test_program *prog)
751 {
752         errcode_t       retval;
753         ext2_icount_t   icount;
754         struct test_program *pc;
755         __u16           result;
756         int             problem = 0;
757
758         if (dir) {
759                 retval = ext2fs_create_icount_tdb(test_fs, dir,
760                                                   flags, &icount);
761                 if (retval) {
762                         com_err("run_test", retval,
763                                 "while creating icount using tdb");
764                         exit(1);
765                 }
766         } else {
767                 retval = ext2fs_create_icount2(test_fs, flags, size, 0,
768                                                &icount);
769                 if (retval) {
770                         com_err("run_test", retval, "while creating icount");
771                         exit(1);
772                 }
773         }
774         for (pc = prog; pc->cmd != EXIT; pc++) {
775                 switch (pc->cmd) {
776                 case FETCH:
777                         printf("icount_fetch(%u) = ", pc->ino);
778                         break;
779                 case STORE:
780                         retval = ext2fs_icount_store(icount, pc->ino, pc->arg);
781                         if (retval) {
782                                 com_err("run_test", retval,
783                                         "while calling icount_store");
784                                 exit(1);
785                         }
786                         printf("icount_store(%u, %u) = ", pc->ino, pc->arg);
787                         break;
788                 case INCREMENT:
789                         retval = ext2fs_icount_increment(icount, pc->ino, 0);
790                         if (retval) {
791                                 com_err("run_test", retval,
792                                         "while calling icount_increment");
793                                 exit(1);
794                         }
795                         printf("icount_increment(%u) = ", pc->ino);
796                         break;
797                 case DECREMENT:
798                         retval = ext2fs_icount_decrement(icount, pc->ino, 0);
799                         if (retval) {
800                                 com_err("run_test", retval,
801                                         "while calling icount_decrement");
802                                 exit(1);
803                         }
804                         printf("icount_decrement(%u) = ", pc->ino);
805                         break;
806                 }
807                 retval = ext2fs_icount_fetch(icount, pc->ino, &result);
808                 if (retval) {
809                         com_err("run_test", retval,
810                                 "while calling icount_fetch");
811                         exit(1);
812                 }
813                 printf("%u (%s)\n", result, (result == pc->expected) ?
814                        "OK" : "NOT OK");
815                 if (result != pc->expected)
816                         problem++;
817         }
818         printf("icount size is %u\n", ext2fs_get_icount_size(icount));
819         retval = ext2fs_icount_validate(icount, stdout);
820         if (retval) {
821                 com_err("run_test", retval, "while calling icount_validate");
822                 exit(1);
823         }
824         ext2fs_free_icount(icount);
825         return problem;
826 }
827
828
829 int main(int argc, char **argv)
830 {
831         int failed = 0;
832
833         setup();
834         printf("Standard icount run:\n");
835         failed += run_test(0, 0, 0, prog);
836         printf("\nMultiple bitmap test:\n");
837         failed += run_test(EXT2_ICOUNT_OPT_INCREMENT, 0, 0, prog);
838         printf("\nResizing icount:\n");
839         failed += run_test(0, 3, 0, extended);
840         printf("\nStandard icount run with tdb:\n");
841         failed += run_test(0, 0, ".", prog);
842         printf("\nMultiple bitmap test with tdb:\n");
843         failed += run_test(EXT2_ICOUNT_OPT_INCREMENT, 0, ".", prog);
844         if (failed)
845                 printf("FAILED!\n");
846         return failed;
847 }
848 #endif