blob: cf6fe4ad651a3705caf76fcbdb49d26f020f9c20 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
Jeff Garzike18fa702006-09-24 11:13:19 -040014#include <linux/magic.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040015#include <linux/sched.h>
Alessio Igor Bogani337eb002009-05-12 15:10:54 +020016#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
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... */
Alexey Dobriyan352d94d2006-12-06 20:37:04 -080051static char err_buf[1024];
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Alexey Dobriyan352d94d2006-12-06 20:37:04 -080053void hpfs_error(struct super_block *s, const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054{
Alexey Dobriyan352d94d2006-12-06 20:37:04 -080055 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 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");
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 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);
Christoph Hellwig6cfd0142009-05-05 15:40:36 +0200103
104 lock_kernel();
105
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800106 kfree(sbi->sb_cp_table);
107 kfree(sbi->sb_bmp_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 unmark_dirty(s);
109 s->s_fs_info = NULL;
110 kfree(sbi);
Christoph Hellwig6cfd0142009-05-05 15:40:36 +0200111
112 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
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;
Akinobu Mitac2923c32009-12-15 16:46:55 -0800122 for (i = 0; i < 2048 / sizeof(unsigned); i++)
123 count += hweight32(bits[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 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
David Howells726c3342006-06-23 02:02:58 -0700138static int hpfs_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
David Howells726c3342006-06-23 02:02:58 -0700140 struct super_block *s = dentry->d_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 struct hpfs_sb_info *sbi = hpfs_sb(s);
Coly Li604d2952009-04-02 16:59:37 -0700142 u64 id = huge_encode_dev(s->s_bdev->bd_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 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;
Coly Li604d2952009-04-02 16:59:37 -0700156 buf->f_fsid.val[0] = (u32)id;
157 buf->f_fsid.val[1] = (u32)(id >> 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 buf->f_namelen = 254;
159
160 unlock_kernel();
161
162 return 0;
163}
164
Christoph Lametere18b8902006-12-06 20:33:20 -0800165static struct kmem_cache * hpfs_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167static struct inode *hpfs_alloc_inode(struct super_block *sb)
168{
169 struct hpfs_inode_info *ei;
Christoph Lametere6b4f8d2006-12-06 20:33:14 -0800170 ei = (struct hpfs_inode_info *)kmem_cache_alloc(hpfs_inode_cachep, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 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
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700182static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
184 struct hpfs_inode_info *ei = (struct hpfs_inode_info *) foo;
185
Christoph Lametera35afb82007-05-16 22:10:57 -0700186 mutex_init(&ei->i_mutex);
187 mutex_init(&ei->i_parent_mutex);
188 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189}
Paul Mundt20c2df82007-07-20 10:11:58 +0900190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191static int init_inodecache(void)
192{
193 hpfs_inode_cachep = kmem_cache_create("hpfs_inode_cache",
194 sizeof(struct hpfs_inode_info),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800195 0, (SLAB_RECLAIM_ACCOUNT|
196 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900197 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 if (hpfs_inode_cachep == NULL)
199 return -ENOMEM;
200 return 0;
201}
202
203static void destroy_inodecache(void)
204{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700205 kmem_cache_destroy(hpfs_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206}
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
Steven Whitehousea447c092008-10-13 10:46:57 +0100224static const match_table_t tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 {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);
Miklos Szeredi6d9c1fd2008-02-08 04:21:44 -0800395 char *new_opts = kstrdup(data, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 *flags |= MS_NOATIME;
398
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200399 lock_kernel();
Al Virobbd68512009-05-06 10:43:07 -0400400 lock_super(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 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");
Miklos Szeredi6d9c1fd2008-02-08 04:21:44 -0800410 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 }
412 if (o == 2) {
413 hpfs_help();
Miklos Szeredi6d9c1fd2008-02-08 04:21:44 -0800414 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 }
416 if (timeshift != sbi->sb_timeshift) {
417 printk("HPFS: timeshift can't be changed using remount.\n");
Miklos Szeredi6d9c1fd2008-02-08 04:21:44 -0800418 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 }
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
Al Viro2a32ceb2009-05-08 16:05:57 -0400431 replace_mount_options(s, new_opts);
Miklos Szeredi6d9c1fd2008-02-08 04:21:44 -0800432
Al Virobbd68512009-05-06 10:43:07 -0400433 unlock_super(s);
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200434 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 return 0;
Miklos Szeredi6d9c1fd2008-02-08 04:21:44 -0800436
437out_err:
Al Virobbd68512009-05-06 10:43:07 -0400438 unlock_super(s);
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200439 unlock_kernel();
Miklos Szeredi6d9c1fd2008-02-08 04:21:44 -0800440 kfree(new_opts);
441 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442}
443
444/* Super operations */
445
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800446static const struct super_operations hpfs_sops =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
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,
Miklos Szeredi6d9c1fd2008-02-08 04:21:44 -0800454 .show_options = generic_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455};
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
Miklos Szeredi6d9c1fd2008-02-08 04:21:44 -0800477 save_mount_options(s, options);
478
Panagiotis Issarisf8314dc2006-09-27 01:49:37 -0700479 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 if (!sbi)
481 return -ENOMEM;
482 s->s_fs_info = sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484 sbi->sb_bmp_dir = NULL;
485 sbi->sb_cp_table = NULL;
486
487 init_MUTEX(&sbi->hpfs_creation_de);
488
David Howellsde395b82008-11-14 10:38:55 +1100489 uid = current_uid();
490 gid = current_gid();
Al Viroce3b0f82009-03-29 19:08:22 -0400491 umask = current_umask();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 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:
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800673 kfree(sbi->sb_bmp_dir);
674 kfree(sbi->sb_cp_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 s->s_fs_info = NULL;
676 kfree(sbi);
677 return -EINVAL;
678}
679
David Howells454e2392006-06-23 02:02:57 -0700680static int hpfs_get_sb(struct file_system_type *fs_type,
681 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
David Howells454e2392006-06-23 02:02:57 -0700683 return get_sb_bdev(fs_type, flags, dev_name, data, hpfs_fill_super,
684 mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685}
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");