2 * Copyright 2000 by Hans Reiser, licensing governed by reiserfs/README
5 #include <linux/time.h>
6 #include <linux/reiserfs_fs.h>
8 // this contains item handlers for old item types: sd, direct,
11 /* and where are the comments? how about saying where we can find an
12 explanation of each item handler method? -Hans */
14 //////////////////////////////////////////////////////////////////////////////
15 // stat data functions
17 static int sd_bytes_number(struct item_head
*ih
, int block_size
)
22 static void sd_decrement_key(struct cpu_key
*key
)
24 key
->on_disk_key
.k_objectid
--;
25 set_cpu_key_k_type(key
, TYPE_ANY
);
26 set_cpu_key_k_offset(key
, (loff_t
) (-1));
29 static int sd_is_left_mergeable(struct reiserfs_key
*key
, unsigned long bsize
)
34 static char *print_time(time_t t
)
36 static char timebuf
[256];
38 sprintf(timebuf
, "%ld", t
);
42 static void sd_print_item(struct item_head
*ih
, char *item
)
44 printk("\tmode | size | nlinks | first direct | mtime\n");
45 if (stat_data_v1(ih
)) {
46 struct stat_data_v1
*sd
= (struct stat_data_v1
*)item
;
48 printk("\t0%-6o | %6u | %2u | %d | %s\n", sd_v1_mode(sd
),
49 sd_v1_size(sd
), sd_v1_nlink(sd
),
50 sd_v1_first_direct_byte(sd
),
51 print_time(sd_v1_mtime(sd
)));
53 struct stat_data
*sd
= (struct stat_data
*)item
;
55 printk("\t0%-6o | %6Lu | %2u | %d | %s\n", sd_v2_mode(sd
),
56 (unsigned long long)sd_v2_size(sd
), sd_v2_nlink(sd
),
57 sd_v2_rdev(sd
), print_time(sd_v2_mtime(sd
)));
61 static void sd_check_item(struct item_head
*ih
, char *item
)
63 // FIXME: type something here!
66 static int sd_create_vi(struct virtual_node
*vn
,
67 struct virtual_item
*vi
,
68 int is_affected
, int insert_size
)
70 vi
->vi_index
= TYPE_STAT_DATA
;
71 //vi->vi_type |= VI_TYPE_STAT_DATA;// not needed?
75 static int sd_check_left(struct virtual_item
*vi
, int free
,
76 int start_skip
, int end_skip
)
78 if (start_skip
|| end_skip
)
83 static int sd_check_right(struct virtual_item
*vi
, int free
)
88 static int sd_part_size(struct virtual_item
*vi
, int first
, int count
)
95 static int sd_unit_num(struct virtual_item
*vi
)
97 return vi
->vi_item_len
- IH_SIZE
;
100 static void sd_print_vi(struct virtual_item
*vi
)
102 reiserfs_warning(NULL
, "STATDATA, index %d, type 0x%x, %h",
103 vi
->vi_index
, vi
->vi_type
, vi
->vi_ih
);
106 static struct item_operations stat_data_ops
= {
107 .bytes_number
= sd_bytes_number
,
108 .decrement_key
= sd_decrement_key
,
109 .is_left_mergeable
= sd_is_left_mergeable
,
110 .print_item
= sd_print_item
,
111 .check_item
= sd_check_item
,
113 .create_vi
= sd_create_vi
,
114 .check_left
= sd_check_left
,
115 .check_right
= sd_check_right
,
116 .part_size
= sd_part_size
,
117 .unit_num
= sd_unit_num
,
118 .print_vi
= sd_print_vi
121 //////////////////////////////////////////////////////////////////////////////
122 // direct item functions
124 static int direct_bytes_number(struct item_head
*ih
, int block_size
)
126 return ih_item_len(ih
);
129 // FIXME: this should probably switch to indirect as well
130 static void direct_decrement_key(struct cpu_key
*key
)
132 cpu_key_k_offset_dec(key
);
133 if (cpu_key_k_offset(key
) == 0)
134 set_cpu_key_k_type(key
, TYPE_STAT_DATA
);
137 static int direct_is_left_mergeable(struct reiserfs_key
*key
,
140 int version
= le_key_version(key
);
141 return ((le_key_k_offset(version
, key
) & (bsize
- 1)) != 1);
144 static void direct_print_item(struct item_head
*ih
, char *item
)
150 while (j
< ih_item_len(ih
))
151 printk("%c", item
[j
++]);
155 static void direct_check_item(struct item_head
*ih
, char *item
)
157 // FIXME: type something here!
160 static int direct_create_vi(struct virtual_node
*vn
,
161 struct virtual_item
*vi
,
162 int is_affected
, int insert_size
)
164 vi
->vi_index
= TYPE_DIRECT
;
165 //vi->vi_type |= VI_TYPE_DIRECT;
169 static int direct_check_left(struct virtual_item
*vi
, int free
,
170 int start_skip
, int end_skip
)
174 bytes
= free
- free
% 8;
178 static int direct_check_right(struct virtual_item
*vi
, int free
)
180 return direct_check_left(vi
, free
, 0, 0);
183 static int direct_part_size(struct virtual_item
*vi
, int first
, int count
)
188 static int direct_unit_num(struct virtual_item
*vi
)
190 return vi
->vi_item_len
- IH_SIZE
;
193 static void direct_print_vi(struct virtual_item
*vi
)
195 reiserfs_warning(NULL
, "DIRECT, index %d, type 0x%x, %h",
196 vi
->vi_index
, vi
->vi_type
, vi
->vi_ih
);
199 static struct item_operations direct_ops
= {
200 .bytes_number
= direct_bytes_number
,
201 .decrement_key
= direct_decrement_key
,
202 .is_left_mergeable
= direct_is_left_mergeable
,
203 .print_item
= direct_print_item
,
204 .check_item
= direct_check_item
,
206 .create_vi
= direct_create_vi
,
207 .check_left
= direct_check_left
,
208 .check_right
= direct_check_right
,
209 .part_size
= direct_part_size
,
210 .unit_num
= direct_unit_num
,
211 .print_vi
= direct_print_vi
214 //////////////////////////////////////////////////////////////////////////////
215 // indirect item functions
218 static int indirect_bytes_number(struct item_head
*ih
, int block_size
)
220 return ih_item_len(ih
) / UNFM_P_SIZE
* block_size
; //- get_ih_free_space (ih);
223 // decrease offset, if it becomes 0, change type to stat data
224 static void indirect_decrement_key(struct cpu_key
*key
)
226 cpu_key_k_offset_dec(key
);
227 if (cpu_key_k_offset(key
) == 0)
228 set_cpu_key_k_type(key
, TYPE_STAT_DATA
);
231 // if it is not first item of the body, then it is mergeable
232 static int indirect_is_left_mergeable(struct reiserfs_key
*key
,
235 int version
= le_key_version(key
);
236 return (le_key_k_offset(version
, key
) != 1);
239 // printing of indirect item
240 static void start_new_sequence(__u32
* start
, int *len
, __u32
new)
246 static int sequence_finished(__u32 start
, int *len
, __u32
new)
248 if (start
== INT_MAX
)
251 if (start
== 0 && new == 0) {
255 if (start
!= 0 && (start
+ *len
) == new) {
262 static void print_sequence(__u32 start
, int len
)
264 if (start
== INT_MAX
)
268 printk(" %d", start
);
270 printk(" %d(%d)", start
, len
);
273 static void indirect_print_item(struct item_head
*ih
, char *item
)
277 __u32 prev
= INT_MAX
;
280 unp
= (__le32
*) item
;
282 if (ih_item_len(ih
) % UNFM_P_SIZE
)
283 reiserfs_warning(NULL
, "indirect_print_item: invalid item len");
285 printk("%d pointers\n[ ", (int)I_UNFM_NUM(ih
));
286 for (j
= 0; j
< I_UNFM_NUM(ih
); j
++) {
287 if (sequence_finished(prev
, &num
, get_block_num(unp
, j
))) {
288 print_sequence(prev
, num
);
289 start_new_sequence(&prev
, &num
, get_block_num(unp
, j
));
292 print_sequence(prev
, num
);
296 static void indirect_check_item(struct item_head
*ih
, char *item
)
298 // FIXME: type something here!
301 static int indirect_create_vi(struct virtual_node
*vn
,
302 struct virtual_item
*vi
,
303 int is_affected
, int insert_size
)
305 vi
->vi_index
= TYPE_INDIRECT
;
306 //vi->vi_type |= VI_TYPE_INDIRECT;
310 static int indirect_check_left(struct virtual_item
*vi
, int free
,
311 int start_skip
, int end_skip
)
315 bytes
= free
- free
% UNFM_P_SIZE
;
319 static int indirect_check_right(struct virtual_item
*vi
, int free
)
321 return indirect_check_left(vi
, free
, 0, 0);
324 // return size in bytes of 'units' units. If first == 0 - calculate from the head (left), otherwise - from tail (right)
325 static int indirect_part_size(struct virtual_item
*vi
, int first
, int units
)
327 // unit of indirect item is byte (yet)
331 static int indirect_unit_num(struct virtual_item
*vi
)
333 // unit of indirect item is byte (yet)
334 return vi
->vi_item_len
- IH_SIZE
;
337 static void indirect_print_vi(struct virtual_item
*vi
)
339 reiserfs_warning(NULL
, "INDIRECT, index %d, type 0x%x, %h",
340 vi
->vi_index
, vi
->vi_type
, vi
->vi_ih
);
343 static struct item_operations indirect_ops
= {
344 .bytes_number
= indirect_bytes_number
,
345 .decrement_key
= indirect_decrement_key
,
346 .is_left_mergeable
= indirect_is_left_mergeable
,
347 .print_item
= indirect_print_item
,
348 .check_item
= indirect_check_item
,
350 .create_vi
= indirect_create_vi
,
351 .check_left
= indirect_check_left
,
352 .check_right
= indirect_check_right
,
353 .part_size
= indirect_part_size
,
354 .unit_num
= indirect_unit_num
,
355 .print_vi
= indirect_print_vi
358 //////////////////////////////////////////////////////////////////////////////
359 // direntry functions
362 static int direntry_bytes_number(struct item_head
*ih
, int block_size
)
364 reiserfs_warning(NULL
, "vs-16090: direntry_bytes_number: "
365 "bytes number is asked for direntry");
369 static void direntry_decrement_key(struct cpu_key
*key
)
371 cpu_key_k_offset_dec(key
);
372 if (cpu_key_k_offset(key
) == 0)
373 set_cpu_key_k_type(key
, TYPE_STAT_DATA
);
376 static int direntry_is_left_mergeable(struct reiserfs_key
*key
,
379 if (le32_to_cpu(key
->u
.k_offset_v1
.k_offset
) == DOT_OFFSET
)
385 static void direntry_print_item(struct item_head
*ih
, char *item
)
389 struct reiserfs_de_head
*deh
;
391 static char namebuf
[80];
393 printk("\n # %-15s%-30s%-15s%-15s%-15s\n", "Name",
394 "Key of pointed object", "Hash", "Gen number", "Status");
396 deh
= (struct reiserfs_de_head
*)item
;
398 for (i
= 0; i
< I_ENTRY_COUNT(ih
); i
++, deh
++) {
400 (i
? (deh_location(deh
- 1)) : ih_item_len(ih
)) -
402 name
= item
+ deh_location(deh
);
403 if (name
[namelen
- 1] == 0)
404 namelen
= strlen(name
);
406 if (namelen
> sizeof(namebuf
) - 3) {
407 strncpy(namebuf
+ 1, name
, sizeof(namebuf
) - 3);
408 namebuf
[sizeof(namebuf
) - 2] = '"';
409 namebuf
[sizeof(namebuf
) - 1] = 0;
411 memcpy(namebuf
+ 1, name
, namelen
);
412 namebuf
[namelen
+ 1] = '"';
413 namebuf
[namelen
+ 2] = 0;
416 printk("%d: %-15s%-15d%-15d%-15Ld%-15Ld(%s)\n",
418 deh_dir_id(deh
), deh_objectid(deh
),
419 GET_HASH_VALUE(deh_offset(deh
)),
420 GET_GENERATION_NUMBER((deh_offset(deh
))),
421 (de_hidden(deh
)) ? "HIDDEN" : "VISIBLE");
425 static void direntry_check_item(struct item_head
*ih
, char *item
)
428 struct reiserfs_de_head
*deh
;
430 // FIXME: type something here!
431 deh
= (struct reiserfs_de_head
*)item
;
432 for (i
= 0; i
< I_ENTRY_COUNT(ih
); i
++, deh
++) {
437 #define DIRENTRY_VI_FIRST_DIRENTRY_ITEM 1
440 * function returns old entry number in directory item in real node
441 * using new entry number in virtual item in virtual node */
442 static inline int old_entry_num(int is_affected
, int virtual_entry_num
,
443 int pos_in_item
, int mode
)
445 if (mode
== M_INSERT
|| mode
== M_DELETE
)
446 return virtual_entry_num
;
449 /* cut or paste is applied to another item */
450 return virtual_entry_num
;
452 if (virtual_entry_num
< pos_in_item
)
453 return virtual_entry_num
;
456 return virtual_entry_num
+ 1;
458 RFALSE(mode
!= M_PASTE
|| virtual_entry_num
== 0,
459 "vs-8015: old_entry_num: mode must be M_PASTE (mode = \'%c\'",
462 return virtual_entry_num
- 1;
465 /* Create an array of sizes of directory entries for virtual
466 item. Return space used by an item. FIXME: no control over
467 consuming of space used by this item handler */
468 static int direntry_create_vi(struct virtual_node
*vn
,
469 struct virtual_item
*vi
,
470 int is_affected
, int insert_size
)
472 struct direntry_uarea
*dir_u
= vi
->vi_uarea
;
474 int size
= sizeof(struct direntry_uarea
);
475 struct reiserfs_de_head
*deh
;
477 vi
->vi_index
= TYPE_DIRENTRY
;
479 if (!(vi
->vi_ih
) || !vi
->vi_item
)
483 if (le_ih_k_offset(vi
->vi_ih
) == DOT_OFFSET
)
484 dir_u
->flags
|= DIRENTRY_VI_FIRST_DIRENTRY_ITEM
;
486 deh
= (struct reiserfs_de_head
*)(vi
->vi_item
);
488 /* virtual directory item have this amount of entry after */
489 dir_u
->entry_count
= ih_entry_count(vi
->vi_ih
) +
490 ((is_affected
) ? ((vn
->vn_mode
== M_CUT
) ? -1 :
491 (vn
->vn_mode
== M_PASTE
? 1 : 0)) : 0);
493 for (i
= 0; i
< dir_u
->entry_count
; i
++) {
494 j
= old_entry_num(is_affected
, i
, vn
->vn_pos_in_item
,
496 dir_u
->entry_sizes
[i
] =
497 (j
? deh_location(&(deh
[j
- 1])) : ih_item_len(vi
->vi_ih
)) -
498 deh_location(&(deh
[j
])) + DEH_SIZE
;
501 size
+= (dir_u
->entry_count
* sizeof(short));
503 /* set size of pasted entry */
504 if (is_affected
&& vn
->vn_mode
== M_PASTE
)
505 dir_u
->entry_sizes
[vn
->vn_pos_in_item
] = insert_size
;
507 #ifdef CONFIG_REISERFS_CHECK
508 /* compare total size of entries with item length */
513 for (k
= 0; k
< dir_u
->entry_count
; k
++)
514 l
+= dir_u
->entry_sizes
[k
];
516 if (l
+ IH_SIZE
!= vi
->vi_item_len
+
518 && (vn
->vn_mode
== M_PASTE
519 || vn
->vn_mode
== M_CUT
)) ? insert_size
: 0)) {
521 "vs-8025: set_entry_sizes: (mode==%c, insert_size==%d), invalid length of directory item",
522 vn
->vn_mode
, insert_size
);
532 // return number of entries which may fit into specified amount of
533 // free space, or -1 if free space is not enough even for 1 entry
535 static int direntry_check_left(struct virtual_item
*vi
, int free
,
536 int start_skip
, int end_skip
)
540 struct direntry_uarea
*dir_u
= vi
->vi_uarea
;
542 for (i
= start_skip
; i
< dir_u
->entry_count
- end_skip
; i
++) {
543 if (dir_u
->entry_sizes
[i
] > free
)
544 /* i-th entry doesn't fit into the remaining free space */
547 free
-= dir_u
->entry_sizes
[i
];
551 if (entries
== dir_u
->entry_count
) {
552 reiserfs_panic(NULL
, "free space %d, entry_count %d\n", free
,
556 /* "." and ".." can not be separated from each other */
557 if (start_skip
== 0 && (dir_u
->flags
& DIRENTRY_VI_FIRST_DIRENTRY_ITEM
)
561 return entries
? : -1;
564 static int direntry_check_right(struct virtual_item
*vi
, int free
)
568 struct direntry_uarea
*dir_u
= vi
->vi_uarea
;
570 for (i
= dir_u
->entry_count
- 1; i
>= 0; i
--) {
571 if (dir_u
->entry_sizes
[i
] > free
)
572 /* i-th entry doesn't fit into the remaining free space */
575 free
-= dir_u
->entry_sizes
[i
];
578 if (entries
== dir_u
->entry_count
)
581 /* "." and ".." can not be separated from each other */
582 if ((dir_u
->flags
& DIRENTRY_VI_FIRST_DIRENTRY_ITEM
)
583 && entries
> dir_u
->entry_count
- 2)
584 entries
= dir_u
->entry_count
- 2;
586 return entries
? : -1;
589 /* sum of entry sizes between from-th and to-th entries including both edges */
590 static int direntry_part_size(struct virtual_item
*vi
, int first
, int count
)
594 struct direntry_uarea
*dir_u
= vi
->vi_uarea
;
600 from
= dir_u
->entry_count
- count
;
601 to
= from
+ count
- 1;
603 for (i
= from
; i
<= to
; i
++)
604 retval
+= dir_u
->entry_sizes
[i
];
609 static int direntry_unit_num(struct virtual_item
*vi
)
611 struct direntry_uarea
*dir_u
= vi
->vi_uarea
;
613 return dir_u
->entry_count
;
616 static void direntry_print_vi(struct virtual_item
*vi
)
619 struct direntry_uarea
*dir_u
= vi
->vi_uarea
;
621 reiserfs_warning(NULL
, "DIRENTRY, index %d, type 0x%x, %h, flags 0x%x",
622 vi
->vi_index
, vi
->vi_type
, vi
->vi_ih
, dir_u
->flags
);
623 printk("%d entries: ", dir_u
->entry_count
);
624 for (i
= 0; i
< dir_u
->entry_count
; i
++)
625 printk("%d ", dir_u
->entry_sizes
[i
]);
629 static struct item_operations direntry_ops
= {
630 .bytes_number
= direntry_bytes_number
,
631 .decrement_key
= direntry_decrement_key
,
632 .is_left_mergeable
= direntry_is_left_mergeable
,
633 .print_item
= direntry_print_item
,
634 .check_item
= direntry_check_item
,
636 .create_vi
= direntry_create_vi
,
637 .check_left
= direntry_check_left
,
638 .check_right
= direntry_check_right
,
639 .part_size
= direntry_part_size
,
640 .unit_num
= direntry_unit_num
,
641 .print_vi
= direntry_print_vi
644 //////////////////////////////////////////////////////////////////////////////
645 // Error catching functions to catch errors caused by incorrect item types.
647 static int errcatch_bytes_number(struct item_head
*ih
, int block_size
)
649 reiserfs_warning(NULL
,
650 "green-16001: Invalid item type observed, run fsck ASAP");
654 static void errcatch_decrement_key(struct cpu_key
*key
)
656 reiserfs_warning(NULL
,
657 "green-16002: Invalid item type observed, run fsck ASAP");
660 static int errcatch_is_left_mergeable(struct reiserfs_key
*key
,
663 reiserfs_warning(NULL
,
664 "green-16003: Invalid item type observed, run fsck ASAP");
668 static void errcatch_print_item(struct item_head
*ih
, char *item
)
670 reiserfs_warning(NULL
,
671 "green-16004: Invalid item type observed, run fsck ASAP");
674 static void errcatch_check_item(struct item_head
*ih
, char *item
)
676 reiserfs_warning(NULL
,
677 "green-16005: Invalid item type observed, run fsck ASAP");
680 static int errcatch_create_vi(struct virtual_node
*vn
,
681 struct virtual_item
*vi
,
682 int is_affected
, int insert_size
)
684 reiserfs_warning(NULL
,
685 "green-16006: Invalid item type observed, run fsck ASAP");
686 return 0; // We might return -1 here as well, but it won't help as create_virtual_node() from where
687 // this operation is called from is of return type void.
690 static int errcatch_check_left(struct virtual_item
*vi
, int free
,
691 int start_skip
, int end_skip
)
693 reiserfs_warning(NULL
,
694 "green-16007: Invalid item type observed, run fsck ASAP");
698 static int errcatch_check_right(struct virtual_item
*vi
, int free
)
700 reiserfs_warning(NULL
,
701 "green-16008: Invalid item type observed, run fsck ASAP");
705 static int errcatch_part_size(struct virtual_item
*vi
, int first
, int count
)
707 reiserfs_warning(NULL
,
708 "green-16009: Invalid item type observed, run fsck ASAP");
712 static int errcatch_unit_num(struct virtual_item
*vi
)
714 reiserfs_warning(NULL
,
715 "green-16010: Invalid item type observed, run fsck ASAP");
719 static void errcatch_print_vi(struct virtual_item
*vi
)
721 reiserfs_warning(NULL
,
722 "green-16011: Invalid item type observed, run fsck ASAP");
725 static struct item_operations errcatch_ops
= {
726 errcatch_bytes_number
,
727 errcatch_decrement_key
,
728 errcatch_is_left_mergeable
,
734 errcatch_check_right
,
740 //////////////////////////////////////////////////////////////////////////////
743 #if ! (TYPE_STAT_DATA == 0 && TYPE_INDIRECT == 1 && TYPE_DIRECT == 2 && TYPE_DIRENTRY == 3)
744 #error Item types must use disk-format assigned values.
747 struct item_operations
*item_ops
[TYPE_ANY
+ 1] = {
752 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
,
753 &errcatch_ops
/* This is to catch errors with invalid type (15th entry for TYPE_ANY) */