hpfs: use hweight32
[deliverable/linux.git] / fs / hpfs / super.c
CommitLineData
1da177e4
LT
1/*
2 * linux/fs/hpfs/super.c
3 *
4 * Mikulas Patocka (mikulas@artax.karlin.mff.cuni.cz), 1998-1999
5 *
6 * mounting, unmounting, error handling
7 */
8
9#include "hpfs_fn.h"
10#include <linux/module.h>
11#include <linux/parser.h>
12#include <linux/init.h>
13#include <linux/statfs.h>
e18fa700 14#include <linux/magic.h>
e8edc6e0 15#include <linux/sched.h>
337eb00a 16#include <linux/smp_lock.h>
1da177e4
LT
17
18/* Mark the filesystem dirty, so that chkdsk checks it when os/2 booted */
19
20static void mark_dirty(struct super_block *s)
21{
22 if (hpfs_sb(s)->sb_chkdsk && !(s->s_flags & MS_RDONLY)) {
23 struct buffer_head *bh;
24 struct hpfs_spare_block *sb;
25 if ((sb = hpfs_map_sector(s, 17, &bh, 0))) {
26 sb->dirty = 1;
27 sb->old_wrote = 0;
28 mark_buffer_dirty(bh);
29 brelse(bh);
30 }
31 }
32}
33
34/* Mark the filesystem clean (mark it dirty for chkdsk if chkdsk==2 or if there
35 were errors) */
36
37static void unmark_dirty(struct super_block *s)
38{
39 struct buffer_head *bh;
40 struct hpfs_spare_block *sb;
41 if (s->s_flags & MS_RDONLY) return;
42 if ((sb = hpfs_map_sector(s, 17, &bh, 0))) {
43 sb->dirty = hpfs_sb(s)->sb_chkdsk > 1 - hpfs_sb(s)->sb_was_error;
44 sb->old_wrote = hpfs_sb(s)->sb_chkdsk >= 2 && !hpfs_sb(s)->sb_was_error;
45 mark_buffer_dirty(bh);
46 brelse(bh);
47 }
48}
49
50/* Filesystem error... */
352d94d0 51static char err_buf[1024];
1da177e4 52
352d94d0 53void hpfs_error(struct super_block *s, const char *fmt, ...)
1da177e4 54{
352d94d0
AD
55 va_list args;
56
57 va_start(args, fmt);
58 vsnprintf(err_buf, sizeof(err_buf), fmt, args);
59 va_end(args);
60
61 printk("HPFS: filesystem error: %s", err_buf);
1da177e4
LT
62 if (!hpfs_sb(s)->sb_was_error) {
63 if (hpfs_sb(s)->sb_err == 2) {
64 printk("; crashing the system because you wanted it\n");
65 mark_dirty(s);
66 panic("HPFS panic");
67 } else if (hpfs_sb(s)->sb_err == 1) {
68 if (s->s_flags & MS_RDONLY) printk("; already mounted read-only\n");
69 else {
70 printk("; remounting read-only\n");
71 mark_dirty(s);
72 s->s_flags |= MS_RDONLY;
73 }
74 } else if (s->s_flags & MS_RDONLY) printk("; going on - but anything won't be destroyed because it's read-only\n");
75 else printk("; corrupted filesystem mounted read/write - your computer will explode within 20 seconds ... but you wanted it so!\n");
76 } else printk("\n");
1da177e4
LT
77 hpfs_sb(s)->sb_was_error = 1;
78}
79
80/*
81 * A little trick to detect cycles in many hpfs structures and don't let the
82 * kernel crash on corrupted filesystem. When first called, set c2 to 0.
83 *
84 * BTW. chkdsk doesn't detect cycles correctly. When I had 2 lost directories
85 * nested each in other, chkdsk locked up happilly.
86 */
87
88int hpfs_stop_cycles(struct super_block *s, int key, int *c1, int *c2,
89 char *msg)
90{
91 if (*c2 && *c1 == key) {
92 hpfs_error(s, "cycle detected on key %08x in %s", key, msg);
93 return 1;
94 }
95 (*c2)++;
96 if (!((*c2 - 1) & *c2)) *c1 = key;
97 return 0;
98}
99
100static void hpfs_put_super(struct super_block *s)
101{
102 struct hpfs_sb_info *sbi = hpfs_sb(s);
6cfd0148
CH
103
104 lock_kernel();
105
f99d49ad
JJ
106 kfree(sbi->sb_cp_table);
107 kfree(sbi->sb_bmp_dir);
1da177e4
LT
108 unmark_dirty(s);
109 s->s_fs_info = NULL;
110 kfree(sbi);
6cfd0148
CH
111
112 unlock_kernel();
1da177e4
LT
113}
114
115unsigned hpfs_count_one_bitmap(struct super_block *s, secno secno)
116{
117 struct quad_buffer_head qbh;
118 unsigned *bits;
119 unsigned i, count;
120 if (!(bits = hpfs_map_4sectors(s, secno, &qbh, 4))) return 0;
121 count = 0;
c2923c3a
AM
122 for (i = 0; i < 2048 / sizeof(unsigned); i++)
123 count += hweight32(bits[i]);
1da177e4
LT
124 hpfs_brelse4(&qbh);
125 return count;
126}
127
128static unsigned count_bitmaps(struct super_block *s)
129{
130 unsigned n, count, n_bands;
131 n_bands = (hpfs_sb(s)->sb_fs_size + 0x3fff) >> 14;
132 count = 0;
133 for (n = 0; n < n_bands; n++)
134 count += hpfs_count_one_bitmap(s, hpfs_sb(s)->sb_bmp_dir[n]);
135 return count;
136}
137
726c3342 138static int hpfs_statfs(struct dentry *dentry, struct kstatfs *buf)
1da177e4 139{
726c3342 140 struct super_block *s = dentry->d_sb;
1da177e4 141 struct hpfs_sb_info *sbi = hpfs_sb(s);
604d295c 142 u64 id = huge_encode_dev(s->s_bdev->bd_dev);
1da177e4
LT
143 lock_kernel();
144
145 /*if (sbi->sb_n_free == -1) {*/
146 sbi->sb_n_free = count_bitmaps(s);
147 sbi->sb_n_free_dnodes = hpfs_count_one_bitmap(s, sbi->sb_dmap);
148 /*}*/
149 buf->f_type = s->s_magic;
150 buf->f_bsize = 512;
151 buf->f_blocks = sbi->sb_fs_size;
152 buf->f_bfree = sbi->sb_n_free;
153 buf->f_bavail = sbi->sb_n_free;
154 buf->f_files = sbi->sb_dirband_size / 4;
155 buf->f_ffree = sbi->sb_n_free_dnodes;
604d295c
CL
156 buf->f_fsid.val[0] = (u32)id;
157 buf->f_fsid.val[1] = (u32)(id >> 32);
1da177e4
LT
158 buf->f_namelen = 254;
159
160 unlock_kernel();
161
162 return 0;
163}
164
e18b890b 165static struct kmem_cache * hpfs_inode_cachep;
1da177e4
LT
166
167static struct inode *hpfs_alloc_inode(struct super_block *sb)
168{
169 struct hpfs_inode_info *ei;
e6b4f8da 170 ei = (struct hpfs_inode_info *)kmem_cache_alloc(hpfs_inode_cachep, GFP_NOFS);
1da177e4
LT
171 if (!ei)
172 return NULL;
173 ei->vfs_inode.i_version = 1;
174 return &ei->vfs_inode;
175}
176
177static void hpfs_destroy_inode(struct inode *inode)
178{
179 kmem_cache_free(hpfs_inode_cachep, hpfs_i(inode));
180}
181
51cc5068 182static void init_once(void *foo)
1da177e4
LT
183{
184 struct hpfs_inode_info *ei = (struct hpfs_inode_info *) foo;
185
a35afb83
CL
186 mutex_init(&ei->i_mutex);
187 mutex_init(&ei->i_parent_mutex);
188 inode_init_once(&ei->vfs_inode);
1da177e4 189}
20c2df83 190
1da177e4
LT
191static int init_inodecache(void)
192{
193 hpfs_inode_cachep = kmem_cache_create("hpfs_inode_cache",
194 sizeof(struct hpfs_inode_info),
fffb60f9
PJ
195 0, (SLAB_RECLAIM_ACCOUNT|
196 SLAB_MEM_SPREAD),
20c2df83 197 init_once);
1da177e4
LT
198 if (hpfs_inode_cachep == NULL)
199 return -ENOMEM;
200 return 0;
201}
202
203static void destroy_inodecache(void)
204{
1a1d92c1 205 kmem_cache_destroy(hpfs_inode_cachep);
1da177e4
LT
206}
207
208/*
209 * A tiny parser for option strings, stolen from dosfs.
210 * Stolen again from read-only hpfs.
211 * And updated for table-driven option parsing.
212 */
213
214enum {
215 Opt_help, Opt_uid, Opt_gid, Opt_umask, Opt_case_lower, Opt_case_asis,
216 Opt_conv_binary, Opt_conv_text, Opt_conv_auto,
217 Opt_check_none, Opt_check_normal, Opt_check_strict,
218 Opt_err_cont, Opt_err_ro, Opt_err_panic,
219 Opt_eas_no, Opt_eas_ro, Opt_eas_rw,
220 Opt_chkdsk_no, Opt_chkdsk_errors, Opt_chkdsk_always,
221 Opt_timeshift, Opt_err,
222};
223
a447c093 224static const match_table_t tokens = {
1da177e4
LT
225 {Opt_help, "help"},
226 {Opt_uid, "uid=%u"},
227 {Opt_gid, "gid=%u"},
228 {Opt_umask, "umask=%o"},
229 {Opt_case_lower, "case=lower"},
230 {Opt_case_asis, "case=asis"},
231 {Opt_conv_binary, "conv=binary"},
232 {Opt_conv_text, "conv=text"},
233 {Opt_conv_auto, "conv=auto"},
234 {Opt_check_none, "check=none"},
235 {Opt_check_normal, "check=normal"},
236 {Opt_check_strict, "check=strict"},
237 {Opt_err_cont, "errors=continue"},
238 {Opt_err_ro, "errors=remount-ro"},
239 {Opt_err_panic, "errors=panic"},
240 {Opt_eas_no, "eas=no"},
241 {Opt_eas_ro, "eas=ro"},
242 {Opt_eas_rw, "eas=rw"},
243 {Opt_chkdsk_no, "chkdsk=no"},
244 {Opt_chkdsk_errors, "chkdsk=errors"},
245 {Opt_chkdsk_always, "chkdsk=always"},
246 {Opt_timeshift, "timeshift=%d"},
247 {Opt_err, NULL},
248};
249
250static int parse_opts(char *opts, uid_t *uid, gid_t *gid, umode_t *umask,
251 int *lowercase, int *conv, int *eas, int *chk, int *errs,
252 int *chkdsk, int *timeshift)
253{
254 char *p;
255 int option;
256
257 if (!opts)
258 return 1;
259
260 /*printk("Parsing opts: '%s'\n",opts);*/
261
262 while ((p = strsep(&opts, ",")) != NULL) {
263 substring_t args[MAX_OPT_ARGS];
264 int token;
265 if (!*p)
266 continue;
267
268 token = match_token(p, tokens, args);
269 switch (token) {
270 case Opt_help:
271 return 2;
272 case Opt_uid:
273 if (match_int(args, &option))
274 return 0;
275 *uid = option;
276 break;
277 case Opt_gid:
278 if (match_int(args, &option))
279 return 0;
280 *gid = option;
281 break;
282 case Opt_umask:
283 if (match_octal(args, &option))
284 return 0;
285 *umask = option;
286 break;
287 case Opt_case_lower:
288 *lowercase = 1;
289 break;
290 case Opt_case_asis:
291 *lowercase = 0;
292 break;
293 case Opt_conv_binary:
294 *conv = CONV_BINARY;
295 break;
296 case Opt_conv_text:
297 *conv = CONV_TEXT;
298 break;
299 case Opt_conv_auto:
300 *conv = CONV_AUTO;
301 break;
302 case Opt_check_none:
303 *chk = 0;
304 break;
305 case Opt_check_normal:
306 *chk = 1;
307 break;
308 case Opt_check_strict:
309 *chk = 2;
310 break;
311 case Opt_err_cont:
312 *errs = 0;
313 break;
314 case Opt_err_ro:
315 *errs = 1;
316 break;
317 case Opt_err_panic:
318 *errs = 2;
319 break;
320 case Opt_eas_no:
321 *eas = 0;
322 break;
323 case Opt_eas_ro:
324 *eas = 1;
325 break;
326 case Opt_eas_rw:
327 *eas = 2;
328 break;
329 case Opt_chkdsk_no:
330 *chkdsk = 0;
331 break;
332 case Opt_chkdsk_errors:
333 *chkdsk = 1;
334 break;
335 case Opt_chkdsk_always:
336 *chkdsk = 2;
337 break;
338 case Opt_timeshift:
339 {
340 int m = 1;
341 char *rhs = args[0].from;
342 if (!rhs || !*rhs)
343 return 0;
344 if (*rhs == '-') m = -1;
345 if (*rhs == '+' || *rhs == '-') rhs++;
346 *timeshift = simple_strtoul(rhs, &rhs, 0) * m;
347 if (*rhs)
348 return 0;
349 break;
350 }
351 default:
352 return 0;
353 }
354 }
355 return 1;
356}
357
358static inline void hpfs_help(void)
359{
360 printk("\n\
361HPFS filesystem options:\n\
362 help do not mount and display this text\n\
363 uid=xxx set uid of files that don't have uid specified in eas\n\
364 gid=xxx set gid of files that don't have gid specified in eas\n\
365 umask=xxx set mode of files that don't have mode specified in eas\n\
366 case=lower lowercase all files\n\
367 case=asis do not lowercase files (default)\n\
368 conv=binary do not convert CR/LF -> LF (default)\n\
369 conv=auto convert only files with known text extensions\n\
370 conv=text convert all files\n\
371 check=none no fs checks - kernel may crash on corrupted filesystem\n\
372 check=normal do some checks - it should not crash (default)\n\
373 check=strict do extra time-consuming checks, used for debugging\n\
374 errors=continue continue on errors\n\
375 errors=remount-ro remount read-only if errors found (default)\n\
376 errors=panic panic on errors\n\
377 chkdsk=no do not mark fs for chkdsking even if there were errors\n\
378 chkdsk=errors mark fs dirty if errors found (default)\n\
379 chkdsk=always always mark fs dirty - used for debugging\n\
380 eas=no ignore extended attributes\n\
381 eas=ro read but do not write extended attributes\n\
382 eas=rw r/w eas => enables chmod, chown, mknod, ln -s (default)\n\
383 timeshift=nnn add nnn seconds to file times\n\
384\n");
385}
386
387static int hpfs_remount_fs(struct super_block *s, int *flags, char *data)
388{
389 uid_t uid;
390 gid_t gid;
391 umode_t umask;
392 int lowercase, conv, eas, chk, errs, chkdsk, timeshift;
393 int o;
394 struct hpfs_sb_info *sbi = hpfs_sb(s);
6d9c1fd4 395 char *new_opts = kstrdup(data, GFP_KERNEL);
1da177e4
LT
396
397 *flags |= MS_NOATIME;
398
337eb00a 399 lock_kernel();
bbd6851a 400 lock_super(s);
1da177e4
LT
401 uid = sbi->sb_uid; gid = sbi->sb_gid;
402 umask = 0777 & ~sbi->sb_mode;
403 lowercase = sbi->sb_lowercase; conv = sbi->sb_conv;
404 eas = sbi->sb_eas; chk = sbi->sb_chk; chkdsk = sbi->sb_chkdsk;
405 errs = sbi->sb_err; timeshift = sbi->sb_timeshift;
406
407 if (!(o = parse_opts(data, &uid, &gid, &umask, &lowercase, &conv,
408 &eas, &chk, &errs, &chkdsk, &timeshift))) {
409 printk("HPFS: bad mount options.\n");
6d9c1fd4 410 goto out_err;
1da177e4
LT
411 }
412 if (o == 2) {
413 hpfs_help();
6d9c1fd4 414 goto out_err;
1da177e4
LT
415 }
416 if (timeshift != sbi->sb_timeshift) {
417 printk("HPFS: timeshift can't be changed using remount.\n");
6d9c1fd4 418 goto out_err;
1da177e4
LT
419 }
420
421 unmark_dirty(s);
422
423 sbi->sb_uid = uid; sbi->sb_gid = gid;
424 sbi->sb_mode = 0777 & ~umask;
425 sbi->sb_lowercase = lowercase; sbi->sb_conv = conv;
426 sbi->sb_eas = eas; sbi->sb_chk = chk; sbi->sb_chkdsk = chkdsk;
427 sbi->sb_err = errs; sbi->sb_timeshift = timeshift;
428
429 if (!(*flags & MS_RDONLY)) mark_dirty(s);
430
2a32cebd 431 replace_mount_options(s, new_opts);
6d9c1fd4 432
bbd6851a 433 unlock_super(s);
337eb00a 434 unlock_kernel();
1da177e4 435 return 0;
6d9c1fd4
MS
436
437out_err:
bbd6851a 438 unlock_super(s);
337eb00a 439 unlock_kernel();
6d9c1fd4
MS
440 kfree(new_opts);
441 return -EINVAL;
1da177e4
LT
442}
443
444/* Super operations */
445
ee9b6d61 446static const struct super_operations hpfs_sops =
1da177e4
LT
447{
448 .alloc_inode = hpfs_alloc_inode,
449 .destroy_inode = hpfs_destroy_inode,
450 .delete_inode = hpfs_delete_inode,
451 .put_super = hpfs_put_super,
452 .statfs = hpfs_statfs,
453 .remount_fs = hpfs_remount_fs,
6d9c1fd4 454 .show_options = generic_show_options,
1da177e4
LT
455};
456
457static int hpfs_fill_super(struct super_block *s, void *options, int silent)
458{
459 struct buffer_head *bh0, *bh1, *bh2;
460 struct hpfs_boot_block *bootblock;
461 struct hpfs_super_block *superblock;
462 struct hpfs_spare_block *spareblock;
463 struct hpfs_sb_info *sbi;
464 struct inode *root;
465
466 uid_t uid;
467 gid_t gid;
468 umode_t umask;
469 int lowercase, conv, eas, chk, errs, chkdsk, timeshift;
470
471 dnode_secno root_dno;
472 struct hpfs_dirent *de = NULL;
473 struct quad_buffer_head qbh;
474
475 int o;
476
6d9c1fd4
MS
477 save_mount_options(s, options);
478
f8314dc6 479 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
1da177e4
LT
480 if (!sbi)
481 return -ENOMEM;
482 s->s_fs_info = sbi;
1da177e4
LT
483
484 sbi->sb_bmp_dir = NULL;
485 sbi->sb_cp_table = NULL;
486
487 init_MUTEX(&sbi->hpfs_creation_de);
488
de395b8a
DH
489 uid = current_uid();
490 gid = current_gid();
ce3b0f8d 491 umask = current_umask();
1da177e4
LT
492 lowercase = 0;
493 conv = CONV_BINARY;
494 eas = 2;
495 chk = 1;
496 errs = 1;
497 chkdsk = 1;
498 timeshift = 0;
499
500 if (!(o = parse_opts(options, &uid, &gid, &umask, &lowercase, &conv,
501 &eas, &chk, &errs, &chkdsk, &timeshift))) {
502 printk("HPFS: bad mount options.\n");
503 goto bail0;
504 }
505 if (o==2) {
506 hpfs_help();
507 goto bail0;
508 }
509
510 /*sbi->sb_mounting = 1;*/
511 sb_set_blocksize(s, 512);
512 sbi->sb_fs_size = -1;
513 if (!(bootblock = hpfs_map_sector(s, 0, &bh0, 0))) goto bail1;
514 if (!(superblock = hpfs_map_sector(s, 16, &bh1, 1))) goto bail2;
515 if (!(spareblock = hpfs_map_sector(s, 17, &bh2, 0))) goto bail3;
516
517 /* Check magics */
518 if (/*bootblock->magic != BB_MAGIC
519 ||*/ superblock->magic != SB_MAGIC
520 || spareblock->magic != SP_MAGIC) {
521 if (!silent) printk("HPFS: Bad magic ... probably not HPFS\n");
522 goto bail4;
523 }
524
525 /* Check version */
526 if (!(s->s_flags & MS_RDONLY) &&
527 superblock->funcversion != 2 && superblock->funcversion != 3) {
528 printk("HPFS: Bad version %d,%d. Mount readonly to go around\n",
529 (int)superblock->version, (int)superblock->funcversion);
530 printk("HPFS: please try recent version of HPFS driver at http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi and if it still can't understand this format, contact author - mikulas@artax.karlin.mff.cuni.cz\n");
531 goto bail4;
532 }
533
534 s->s_flags |= MS_NOATIME;
535
536 /* Fill superblock stuff */
537 s->s_magic = HPFS_SUPER_MAGIC;
538 s->s_op = &hpfs_sops;
539
540 sbi->sb_root = superblock->root;
541 sbi->sb_fs_size = superblock->n_sectors;
542 sbi->sb_bitmaps = superblock->bitmaps;
543 sbi->sb_dirband_start = superblock->dir_band_start;
544 sbi->sb_dirband_size = superblock->n_dir_band;
545 sbi->sb_dmap = superblock->dir_band_bitmap;
546 sbi->sb_uid = uid;
547 sbi->sb_gid = gid;
548 sbi->sb_mode = 0777 & ~umask;
549 sbi->sb_n_free = -1;
550 sbi->sb_n_free_dnodes = -1;
551 sbi->sb_lowercase = lowercase;
552 sbi->sb_conv = conv;
553 sbi->sb_eas = eas;
554 sbi->sb_chk = chk;
555 sbi->sb_chkdsk = chkdsk;
556 sbi->sb_err = errs;
557 sbi->sb_timeshift = timeshift;
558 sbi->sb_was_error = 0;
559 sbi->sb_cp_table = NULL;
560 sbi->sb_c_bitmap = -1;
561 sbi->sb_max_fwd_alloc = 0xffffff;
562
563 /* Load bitmap directory */
564 if (!(sbi->sb_bmp_dir = hpfs_load_bitmap_directory(s, superblock->bitmaps)))
565 goto bail4;
566
567 /* Check for general fs errors*/
568 if (spareblock->dirty && !spareblock->old_wrote) {
569 if (errs == 2) {
570 printk("HPFS: Improperly stopped, not mounted\n");
571 goto bail4;
572 }
573 hpfs_error(s, "improperly stopped");
574 }
575
576 if (!(s->s_flags & MS_RDONLY)) {
577 spareblock->dirty = 1;
578 spareblock->old_wrote = 0;
579 mark_buffer_dirty(bh2);
580 }
581
582 if (spareblock->hotfixes_used || spareblock->n_spares_used) {
583 if (errs >= 2) {
584 printk("HPFS: Hotfixes not supported here, try chkdsk\n");
585 mark_dirty(s);
586 goto bail4;
587 }
588 hpfs_error(s, "hotfixes not supported here, try chkdsk");
589 if (errs == 0) printk("HPFS: Proceeding, but your filesystem will be probably corrupted by this driver...\n");
590 else printk("HPFS: This driver may read bad files or crash when operating on disk with hotfixes.\n");
591 }
592 if (spareblock->n_dnode_spares != spareblock->n_dnode_spares_free) {
593 if (errs >= 2) {
594 printk("HPFS: Spare dnodes used, try chkdsk\n");
595 mark_dirty(s);
596 goto bail4;
597 }
598 hpfs_error(s, "warning: spare dnodes used, try chkdsk");
599 if (errs == 0) printk("HPFS: Proceeding, but your filesystem could be corrupted if you delete files or directories\n");
600 }
601 if (chk) {
602 unsigned a;
603 if (superblock->dir_band_end - superblock->dir_band_start + 1 != superblock->n_dir_band ||
604 superblock->dir_band_end < superblock->dir_band_start || superblock->n_dir_band > 0x4000) {
605 hpfs_error(s, "dir band size mismatch: dir_band_start==%08x, dir_band_end==%08x, n_dir_band==%08x",
606 superblock->dir_band_start, superblock->dir_band_end, superblock->n_dir_band);
607 goto bail4;
608 }
609 a = sbi->sb_dirband_size;
610 sbi->sb_dirband_size = 0;
611 if (hpfs_chk_sectors(s, superblock->dir_band_start, superblock->n_dir_band, "dir_band") ||
612 hpfs_chk_sectors(s, superblock->dir_band_bitmap, 4, "dir_band_bitmap") ||
613 hpfs_chk_sectors(s, superblock->bitmaps, 4, "bitmaps")) {
614 mark_dirty(s);
615 goto bail4;
616 }
617 sbi->sb_dirband_size = a;
618 } else printk("HPFS: You really don't want any checks? You are crazy...\n");
619
620 /* Load code page table */
621 if (spareblock->n_code_pages)
622 if (!(sbi->sb_cp_table = hpfs_load_code_page(s, spareblock->code_page_dir)))
623 printk("HPFS: Warning: code page support is disabled\n");
624
625 brelse(bh2);
626 brelse(bh1);
627 brelse(bh0);
628
629 root = iget_locked(s, sbi->sb_root);
630 if (!root)
631 goto bail0;
632 hpfs_init_inode(root);
633 hpfs_read_inode(root);
634 unlock_new_inode(root);
635 s->s_root = d_alloc_root(root);
636 if (!s->s_root) {
637 iput(root);
638 goto bail0;
639 }
640 hpfs_set_dentry_operations(s->s_root);
641
642 /*
643 * find the root directory's . pointer & finish filling in the inode
644 */
645
646 root_dno = hpfs_fnode_dno(s, sbi->sb_root);
647 if (root_dno)
648 de = map_dirent(root, root_dno, "\001\001", 2, NULL, &qbh);
649 if (!de)
650 hpfs_error(s, "unable to find root dir");
651 else {
652 root->i_atime.tv_sec = local_to_gmt(s, de->read_date);
653 root->i_atime.tv_nsec = 0;
654 root->i_mtime.tv_sec = local_to_gmt(s, de->write_date);
655 root->i_mtime.tv_nsec = 0;
656 root->i_ctime.tv_sec = local_to_gmt(s, de->creation_date);
657 root->i_ctime.tv_nsec = 0;
658 hpfs_i(root)->i_ea_size = de->ea_size;
659 hpfs_i(root)->i_parent_dir = root->i_ino;
660 if (root->i_size == -1)
661 root->i_size = 2048;
662 if (root->i_blocks == -1)
663 root->i_blocks = 5;
664 hpfs_brelse4(&qbh);
665 }
666 return 0;
667
668bail4: brelse(bh2);
669bail3: brelse(bh1);
670bail2: brelse(bh0);
671bail1:
672bail0:
f99d49ad
JJ
673 kfree(sbi->sb_bmp_dir);
674 kfree(sbi->sb_cp_table);
1da177e4
LT
675 s->s_fs_info = NULL;
676 kfree(sbi);
677 return -EINVAL;
678}
679
454e2398
DH
680static int hpfs_get_sb(struct file_system_type *fs_type,
681 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
1da177e4 682{
454e2398
DH
683 return get_sb_bdev(fs_type, flags, dev_name, data, hpfs_fill_super,
684 mnt);
1da177e4
LT
685}
686
687static struct file_system_type hpfs_fs_type = {
688 .owner = THIS_MODULE,
689 .name = "hpfs",
690 .get_sb = hpfs_get_sb,
691 .kill_sb = kill_block_super,
692 .fs_flags = FS_REQUIRES_DEV,
693};
694
695static int __init init_hpfs_fs(void)
696{
697 int err = init_inodecache();
698 if (err)
699 goto out1;
700 err = register_filesystem(&hpfs_fs_type);
701 if (err)
702 goto out;
703 return 0;
704out:
705 destroy_inodecache();
706out1:
707 return err;
708}
709
710static void __exit exit_hpfs_fs(void)
711{
712 unregister_filesystem(&hpfs_fs_type);
713 destroy_inodecache();
714}
715
716module_init(init_hpfs_fs)
717module_exit(exit_hpfs_fs)
718MODULE_LICENSE("GPL");
This page took 0.781071 seconds and 5 git commands to generate.