4 * Mikulas Patocka (mikulas@artax.karlin.mff.cuni.cz), 1998-1999
6 * mapping structures to memory with some minimal checks
11 unsigned *hpfs_map_dnode_bitmap(struct super_block
*s
, struct quad_buffer_head
*qbh
)
13 return hpfs_map_4sectors(s
, hpfs_sb(s
)->sb_dmap
, qbh
, 0);
16 unsigned int *hpfs_map_bitmap(struct super_block
*s
, unsigned bmp_block
,
17 struct quad_buffer_head
*qbh
, char *id
)
20 if (hpfs_sb(s
)->sb_chk
) if (bmp_block
* 16384 > hpfs_sb(s
)->sb_fs_size
) {
21 hpfs_error(s
, "hpfs_map_bitmap called with bad parameter: %08x at %s", bmp_block
, id
);
24 sec
= hpfs_sb(s
)->sb_bmp_dir
[bmp_block
];
25 if (!sec
|| sec
> hpfs_sb(s
)->sb_fs_size
-4) {
26 hpfs_error(s
, "invalid bitmap block pointer %08x -> %08x at %s", bmp_block
, sec
, id
);
29 return hpfs_map_4sectors(s
, sec
, qbh
, 4);
33 * Load first code page into kernel memory, return pointer to 256-byte array,
34 * first 128 bytes are uppercasing table for chars 128-255, next 128 bytes are
38 char *hpfs_load_code_page(struct super_block
*s
, secno cps
)
40 struct buffer_head
*bh
;
44 unsigned char *cp_table
;
46 struct code_page_data
*cpd
;
47 struct code_page_directory
*cp
= hpfs_map_sector(s
, cps
, &bh
, 0);
49 if (cp
->magic
!= CP_DIR_MAGIC
) {
50 printk("HPFS: Code page directory magic doesn't match (magic = %08x)\n", cp
->magic
);
54 if (!cp
->n_code_pages
) {
55 printk("HPFS: n_code_pages == 0\n");
59 cpds
= cp
->array
[0].code_page_data
;
60 cpi
= cp
->array
[0].index
;
64 printk("HPFS: Code page index out of array\n");
68 if (!(cpd
= hpfs_map_sector(s
, cpds
, &bh
, 0))) return NULL
;
69 if ((unsigned)cpd
->offs
[cpi
] > 0x178) {
70 printk("HPFS: Code page index out of sector\n");
74 ptr
= (char *)cpd
+ cpd
->offs
[cpi
] + 6;
75 if (!(cp_table
= kmalloc(256, GFP_KERNEL
))) {
76 printk("HPFS: out of memory for code page table\n");
80 memcpy(cp_table
, ptr
, 128);
83 /* Try to build lowercasing table from uppercasing one */
85 for (i
=128; i
<256; i
++) cp_table
[i
]=i
;
86 for (i
=128; i
<256; i
++) if (cp_table
[i
-128]!=i
&& cp_table
[i
-128]>=128)
87 cp_table
[cp_table
[i
-128]] = i
;
92 secno
*hpfs_load_bitmap_directory(struct super_block
*s
, secno bmp
)
94 struct buffer_head
*bh
;
95 int n
= (hpfs_sb(s
)->sb_fs_size
+ 0x200000 - 1) >> 21;
98 if (!(b
= kmalloc(n
* 512, GFP_KERNEL
))) {
99 printk("HPFS: can't allocate memory for bitmap directory\n");
103 secno
*d
= hpfs_map_sector(s
, bmp
+i
, &bh
, n
- i
- 1);
108 memcpy((char *)b
+ 512 * i
, d
, 512);
115 * Load fnode to memory
118 struct fnode
*hpfs_map_fnode(struct super_block
*s
, ino_t ino
, struct buffer_head
**bhp
)
121 if (hpfs_sb(s
)->sb_chk
) if (hpfs_chk_sectors(s
, ino
, 1, "fnode")) {
124 if ((fnode
= hpfs_map_sector(s
, ino
, bhp
, FNODE_RD_AHEAD
))) {
125 if (hpfs_sb(s
)->sb_chk
) {
126 struct extended_attribute
*ea
;
127 struct extended_attribute
*ea_end
;
128 if (fnode
->magic
!= FNODE_MAGIC
) {
129 hpfs_error(s
, "bad magic on fnode %08lx",
133 if (!fnode
->dirflag
) {
134 if ((unsigned)fnode
->btree
.n_used_nodes
+ (unsigned)fnode
->btree
.n_free_nodes
!=
135 (fnode
->btree
.internal
? 12 : 8)) {
137 "bad number of nodes in fnode %08lx",
141 if (fnode
->btree
.first_free
!=
142 8 + fnode
->btree
.n_used_nodes
* (fnode
->btree
.internal
? 8 : 12)) {
144 "bad first_free pointer in fnode %08lx",
149 if (fnode
->ea_size_s
&& ((signed int)fnode
->ea_offs
< 0xc4 ||
150 (signed int)fnode
->ea_offs
+ fnode
->acl_size_s
+ fnode
->ea_size_s
> 0x200)) {
152 "bad EA info in fnode %08lx: ea_offs == %04x ea_size_s == %04x",
154 fnode
->ea_offs
, fnode
->ea_size_s
);
157 ea
= fnode_ea(fnode
);
158 ea_end
= fnode_end_ea(fnode
);
159 while (ea
!= ea_end
) {
161 hpfs_error(s
, "bad EA in fnode %08lx",
175 struct anode
*hpfs_map_anode(struct super_block
*s
, anode_secno ano
, struct buffer_head
**bhp
)
178 if (hpfs_sb(s
)->sb_chk
) if (hpfs_chk_sectors(s
, ano
, 1, "anode")) return NULL
;
179 if ((anode
= hpfs_map_sector(s
, ano
, bhp
, ANODE_RD_AHEAD
)))
180 if (hpfs_sb(s
)->sb_chk
) {
181 if (anode
->magic
!= ANODE_MAGIC
|| anode
->self
!= ano
) {
182 hpfs_error(s
, "bad magic on anode %08x", ano
);
185 if ((unsigned)anode
->btree
.n_used_nodes
+ (unsigned)anode
->btree
.n_free_nodes
!=
186 (anode
->btree
.internal
? 60 : 40)) {
187 hpfs_error(s
, "bad number of nodes in anode %08x", ano
);
190 if (anode
->btree
.first_free
!=
191 8 + anode
->btree
.n_used_nodes
* (anode
->btree
.internal
? 8 : 12)) {
192 hpfs_error(s
, "bad first_free pointer in anode %08x", ano
);
203 * Load dnode to memory and do some checks
206 struct dnode
*hpfs_map_dnode(struct super_block
*s
, unsigned secno
,
207 struct quad_buffer_head
*qbh
)
210 if (hpfs_sb(s
)->sb_chk
) {
211 if (hpfs_chk_sectors(s
, secno
, 4, "dnode")) return NULL
;
213 hpfs_error(s
, "dnode %08x not byte-aligned", secno
);
217 if ((dnode
= hpfs_map_4sectors(s
, secno
, qbh
, DNODE_RD_AHEAD
)))
218 if (hpfs_sb(s
)->sb_chk
) {
220 unsigned char *d
= (char *)dnode
;
222 if (dnode
->magic
!= DNODE_MAGIC
) {
223 hpfs_error(s
, "bad magic on dnode %08x", secno
);
226 if (dnode
->self
!= secno
)
227 hpfs_error(s
, "bad self pointer on dnode %08x self = %08x", secno
, dnode
->self
);
228 /* Check dirents - bad dirents would cause infinite
229 loops or shooting to memory */
230 if (dnode
->first_free
> 2048/* || dnode->first_free < 84*/) {
231 hpfs_error(s
, "dnode %08x has first_free == %08x", secno
, dnode
->first_free
);
234 for (p
= 20; p
< dnode
->first_free
; p
+= d
[p
] + (d
[p
+1] << 8)) {
235 struct hpfs_dirent
*de
= (struct hpfs_dirent
*)((char *)dnode
+ p
);
236 if (de
->length
> 292 || (de
->length
< 32) || (de
->length
& 3) || p
+ de
->length
> 2048) {
237 hpfs_error(s
, "bad dirent size in dnode %08x, dirent %03x, last %03x", secno
, p
, pp
);
240 if (((31 + de
->namelen
+ de
->down
*4 + 3) & ~3) != de
->length
) {
241 if (((31 + de
->namelen
+ de
->down
*4 + 3) & ~3) < de
->length
&& s
->s_flags
& MS_RDONLY
) goto ok
;
242 hpfs_error(s
, "namelen does not match dirent size in dnode %08x, dirent %03x, last %03x", secno
, p
, pp
);
246 if (hpfs_sb(s
)->sb_chk
>= 2) b
|= 1 << de
->down
;
247 if (de
->down
) if (de_down_pointer(de
) < 0x10) {
248 hpfs_error(s
, "bad down pointer in dnode %08x, dirent %03x, last %03x", secno
, p
, pp
);
254 if (p
!= dnode
->first_free
) {
255 hpfs_error(s
, "size on last dirent does not match first_free; dnode %08x", secno
);
258 if (d
[pp
+ 30] != 1 || d
[pp
+ 31] != 255) {
259 hpfs_error(s
, "dnode %08x does not end with \\377 entry", secno
);
262 if (b
== 3) printk("HPFS: warning: unbalanced dnode tree, dnode %08x; see hpfs.txt 4 more info\n", secno
);
270 dnode_secno
hpfs_fnode_dno(struct super_block
*s
, ino_t ino
)
272 struct buffer_head
*bh
;
276 fnode
= hpfs_map_fnode(s
, ino
, &bh
);
280 dno
= fnode
->u
.external
[0].disk_secno
;