blob: 4c06b2d5a861f21d49be3210f7292bbd69271803 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/fs/adfs/super.c
4 *
5 * Copyright (C) 1997-1999 Russell King
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
7#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/parser.h>
Miklos Szeredie11400b2008-02-08 04:21:35 -080010#include <linux/mount.h>
11#include <linux/seq_file.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/slab.h>
Al Viro608ba502009-06-16 14:52:13 -040013#include <linux/statfs.h>
Eric W. Biedermanc010d1f2012-02-07 15:58:38 -080014#include <linux/user_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include "adfs.h"
16#include "dir_f.h"
17#include "dir_fplus.h"
18
Russell King421d3c02019-06-04 14:50:03 +010019#define ADFS_SB_FLAGS SB_NOATIME
20
Miklos Szeredie11400b2008-02-08 04:21:35 -080021#define ADFS_DEFAULT_OWNER_MASK S_IRWXU
22#define ADFS_DEFAULT_OTHER_MASK (S_IRWXG | S_IRWXO)
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024void __adfs_error(struct super_block *sb, const char *function, const char *fmt, ...)
25{
Russell King2e670802019-06-04 14:49:47 +010026 struct va_format vaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 va_list args;
28
29 va_start(args, fmt);
Russell King2e670802019-06-04 14:49:47 +010030 vaf.fmt = fmt;
31 vaf.va = &args;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Russell King2e670802019-06-04 14:49:47 +010033 printk(KERN_CRIT "ADFS-fs error (device %s)%s%s: %pV\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 sb->s_id, function ? ": " : "",
Russell King2e670802019-06-04 14:49:47 +010035 function ? function : "", &vaf);
36
37 va_end(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038}
39
Russell Kingceb3b102019-06-04 14:49:52 +010040void adfs_msg(struct super_block *sb, const char *pfx, const char *fmt, ...)
41{
42 struct va_format vaf;
43 va_list args;
44
45 va_start(args, fmt);
46 vaf.fmt = fmt;
47 vaf.va = &args;
48 printk("%sADFS-fs (%s): %pV\n", pfx, sb->s_id, &vaf);
49 va_end(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050}
51
52static int adfs_checkdiscrecord(struct adfs_discrecord *dr)
53{
Russell King86161082019-06-04 14:50:19 +010054 unsigned int max_idlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 int i;
56
57 /* sector size must be 256, 512 or 1024 bytes */
58 if (dr->log2secsize != 8 &&
59 dr->log2secsize != 9 &&
60 dr->log2secsize != 10)
61 return 1;
62
63 /* idlen must be at least log2secsize + 3 */
64 if (dr->idlen < dr->log2secsize + 3)
65 return 1;
66
67 /* we cannot have such a large disc that we
68 * are unable to represent sector offsets in
69 * 32 bits. This works out at 2.0 TB.
70 */
71 if (le32_to_cpu(dr->disc_size_high) >> dr->log2secsize)
72 return 1;
73
Russell King86161082019-06-04 14:50:19 +010074 /*
75 * Maximum idlen is limited to 16 bits for new directories by
76 * the three-byte storage of an indirect disc address. For
77 * big directories, idlen must be no greater than 19 v2 [1.0]
78 */
79 max_idlen = dr->format_version ? 19 : 16;
80 if (dr->idlen > max_idlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 return 1;
82
83 /* reserved bytes should be zero */
84 for (i = 0; i < sizeof(dr->unused52); i++)
85 if (dr->unused52[i] != 0)
86 return 1;
87
88 return 0;
89}
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091static void adfs_put_super(struct super_block *sb)
92{
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 struct adfs_sb_info *asb = ADFS_SB(sb);
94
Russell King7b195262019-12-09 11:08:44 +000095 adfs_free_map(sb);
Al Viro2d1d9b52013-10-03 12:37:18 -040096 kfree_rcu(asb, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097}
98
Al Viro34c80b12011-12-08 21:32:45 -050099static int adfs_show_options(struct seq_file *seq, struct dentry *root)
Miklos Szeredie11400b2008-02-08 04:21:35 -0800100{
Al Viro34c80b12011-12-08 21:32:45 -0500101 struct adfs_sb_info *asb = ADFS_SB(root->d_sb);
Miklos Szeredie11400b2008-02-08 04:21:35 -0800102
Eric W. Biedermanc010d1f2012-02-07 15:58:38 -0800103 if (!uid_eq(asb->s_uid, GLOBAL_ROOT_UID))
104 seq_printf(seq, ",uid=%u", from_kuid_munged(&init_user_ns, asb->s_uid));
105 if (!gid_eq(asb->s_gid, GLOBAL_ROOT_GID))
106 seq_printf(seq, ",gid=%u", from_kgid_munged(&init_user_ns, asb->s_gid));
Miklos Szeredie11400b2008-02-08 04:21:35 -0800107 if (asb->s_owner_mask != ADFS_DEFAULT_OWNER_MASK)
108 seq_printf(seq, ",ownmask=%o", asb->s_owner_mask);
109 if (asb->s_other_mask != ADFS_DEFAULT_OTHER_MASK)
110 seq_printf(seq, ",othmask=%o", asb->s_other_mask);
Stuart Swalesda23ef02011-03-22 16:35:06 -0700111 if (asb->s_ftsuffix != 0)
112 seq_printf(seq, ",ftsuffix=%u", asb->s_ftsuffix);
Miklos Szeredie11400b2008-02-08 04:21:35 -0800113
114 return 0;
115}
116
Stuart Swalesda23ef02011-03-22 16:35:06 -0700117enum {Opt_uid, Opt_gid, Opt_ownmask, Opt_othmask, Opt_ftsuffix, Opt_err};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Steven Whitehousea447c092008-10-13 10:46:57 +0100119static const match_table_t tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 {Opt_uid, "uid=%u"},
121 {Opt_gid, "gid=%u"},
122 {Opt_ownmask, "ownmask=%o"},
123 {Opt_othmask, "othmask=%o"},
Stuart Swalesda23ef02011-03-22 16:35:06 -0700124 {Opt_ftsuffix, "ftsuffix=%u"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 {Opt_err, NULL}
126};
127
Russell King4c5762f2019-06-04 14:50:09 +0100128static int parse_options(struct super_block *sb, struct adfs_sb_info *asb,
129 char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
131 char *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 int option;
133
134 if (!options)
135 return 0;
136
137 while ((p = strsep(&options, ",")) != NULL) {
138 substring_t args[MAX_OPT_ARGS];
139 int token;
140 if (!*p)
141 continue;
142
143 token = match_token(p, tokens, args);
144 switch (token) {
145 case Opt_uid:
146 if (match_int(args, &option))
147 return -EINVAL;
Eric W. Biedermanc010d1f2012-02-07 15:58:38 -0800148 asb->s_uid = make_kuid(current_user_ns(), option);
149 if (!uid_valid(asb->s_uid))
150 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 break;
152 case Opt_gid:
153 if (match_int(args, &option))
154 return -EINVAL;
Eric W. Biedermanc010d1f2012-02-07 15:58:38 -0800155 asb->s_gid = make_kgid(current_user_ns(), option);
156 if (!gid_valid(asb->s_gid))
157 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 break;
159 case Opt_ownmask:
160 if (match_octal(args, &option))
161 return -EINVAL;
162 asb->s_owner_mask = option;
163 break;
164 case Opt_othmask:
165 if (match_octal(args, &option))
166 return -EINVAL;
167 asb->s_other_mask = option;
168 break;
Stuart Swalesda23ef02011-03-22 16:35:06 -0700169 case Opt_ftsuffix:
170 if (match_int(args, &option))
171 return -EINVAL;
172 asb->s_ftsuffix = option;
173 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 default:
Russell Kingceb3b102019-06-04 14:49:52 +0100175 adfs_msg(sb, KERN_ERR,
176 "unrecognised mount option \"%s\" or missing value",
177 p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 return -EINVAL;
179 }
180 }
181 return 0;
182}
183
184static int adfs_remount(struct super_block *sb, int *flags, char *data)
185{
Russell King4c5762f2019-06-04 14:50:09 +0100186 struct adfs_sb_info temp_asb;
187 int ret;
188
Theodore Ts'o02b99842014-03-13 10:14:33 -0400189 sync_filesystem(sb);
Russell King421d3c02019-06-04 14:50:03 +0100190 *flags |= ADFS_SB_FLAGS;
Russell King4c5762f2019-06-04 14:50:09 +0100191
192 temp_asb = *ADFS_SB(sb);
193 ret = parse_options(sb, &temp_asb, data);
194 if (ret == 0)
195 *ADFS_SB(sb) = temp_asb;
196
197 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198}
199
David Howells726c3342006-06-23 02:02:58 -0700200static int adfs_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
Coly Liaccb4012009-04-02 16:59:27 -0700202 struct super_block *sb = dentry->d_sb;
203 struct adfs_sb_info *sbi = ADFS_SB(sb);
204 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Russell Kinge6160e42019-12-09 11:08:34 +0000206 adfs_map_statfs(sb, buf);
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 buf->f_type = ADFS_SUPER_MAGIC;
Coly Liaccb4012009-04-02 16:59:27 -0700209 buf->f_namelen = sbi->s_namelen;
210 buf->f_bsize = sb->s_blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 buf->f_ffree = (long)(buf->f_bfree * buf->f_files) / (long)buf->f_blocks;
Coly Liaccb4012009-04-02 16:59:27 -0700212 buf->f_fsid.val[0] = (u32)id;
213 buf->f_fsid.val[1] = (u32)(id >> 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215 return 0;
216}
217
Christoph Lametere18b8902006-12-06 20:33:20 -0800218static struct kmem_cache *adfs_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220static struct inode *adfs_alloc_inode(struct super_block *sb)
221{
222 struct adfs_inode_info *ei;
Firo Yangd96f1842015-06-30 14:57:52 -0700223 ei = kmem_cache_alloc(adfs_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 if (!ei)
225 return NULL;
226 return &ei->vfs_inode;
227}
228
Al Viro8f05a792019-04-10 15:01:52 -0400229static void adfs_free_inode(struct inode *inode)
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100230{
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100231 kmem_cache_free(adfs_inode_cachep, ADFS_I(inode));
232}
233
Russell Kingf3520642019-12-09 11:11:18 +0000234static int adfs_drop_inode(struct inode *inode)
235{
236 /* always drop inodes if we are read-only */
237 return !IS_ENABLED(CONFIG_ADFS_FS_RW) || IS_RDONLY(inode);
238}
239
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700240static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
242 struct adfs_inode_info *ei = (struct adfs_inode_info *) foo;
243
Christoph Lametera35afb82007-05-16 22:10:57 -0700244 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245}
Paul Mundt20c2df82007-07-20 10:11:58 +0900246
Fabian Frederick894122d2014-04-07 15:38:58 -0700247static int __init init_inodecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248{
249 adfs_inode_cachep = kmem_cache_create("adfs_inode_cache",
250 sizeof(struct adfs_inode_info),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800251 0, (SLAB_RECLAIM_ACCOUNT|
Vladimir Davydov5d097052016-01-14 15:18:21 -0800252 SLAB_MEM_SPREAD|SLAB_ACCOUNT),
Paul Mundt20c2df82007-07-20 10:11:58 +0900253 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 if (adfs_inode_cachep == NULL)
255 return -ENOMEM;
256 return 0;
257}
258
259static void destroy_inodecache(void)
260{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000261 /*
262 * Make sure all delayed rcu free inodes are flushed before we
263 * destroy cache.
264 */
265 rcu_barrier();
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700266 kmem_cache_destroy(adfs_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800269static const struct super_operations adfs_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 .alloc_inode = adfs_alloc_inode,
Al Viro8f05a792019-04-10 15:01:52 -0400271 .free_inode = adfs_free_inode,
Russell Kingf3520642019-12-09 11:11:18 +0000272 .drop_inode = adfs_drop_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 .write_inode = adfs_write_inode,
274 .put_super = adfs_put_super,
275 .statfs = adfs_statfs,
276 .remount_fs = adfs_remount,
Miklos Szeredie11400b2008-02-08 04:21:35 -0800277 .show_options = adfs_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278};
279
Russell Kinge3858e12019-12-09 11:11:28 +0000280static int adfs_probe(struct super_block *sb, unsigned int offset, int silent,
281 int (*validate)(struct super_block *sb,
282 struct buffer_head *bh,
283 struct adfs_discrecord **bhp))
284{
285 struct adfs_sb_info *asb = ADFS_SB(sb);
286 struct adfs_discrecord *dr;
287 struct buffer_head *bh;
288 unsigned int blocksize = BLOCK_SIZE;
289 int ret, try;
290
291 for (try = 0; try < 2; try++) {
292 /* try to set the requested block size */
293 if (sb->s_blocksize != blocksize &&
294 !sb_set_blocksize(sb, blocksize)) {
295 if (!silent)
296 adfs_msg(sb, KERN_ERR,
297 "error: unsupported blocksize");
298 return -EINVAL;
299 }
300
301 /* read the buffer */
302 bh = sb_bread(sb, offset >> sb->s_blocksize_bits);
303 if (!bh) {
304 adfs_msg(sb, KERN_ERR,
305 "error: unable to read block %u, try %d",
306 offset >> sb->s_blocksize_bits, try);
307 return -EIO;
308 }
309
310 /* validate it */
311 ret = validate(sb, bh, &dr);
312 if (ret) {
313 brelse(bh);
314 return ret;
315 }
316
317 /* does the block size match the filesystem block size? */
318 blocksize = 1 << dr->log2secsize;
319 if (sb->s_blocksize == blocksize) {
320 asb->s_map = adfs_read_map(sb, dr);
321 brelse(bh);
322 return PTR_ERR_OR_ZERO(asb->s_map);
323 }
324
325 brelse(bh);
326 }
327
328 return -EIO;
329}
330
331static int adfs_validate_bblk(struct super_block *sb, struct buffer_head *bh,
332 struct adfs_discrecord **drp)
333{
334 struct adfs_discrecord *dr;
335 unsigned char *b_data;
336
337 b_data = bh->b_data + (ADFS_DISCRECORD % sb->s_blocksize);
338 if (adfs_checkbblk(b_data))
339 return -EILSEQ;
340
341 /* Do some sanity checks on the ADFS disc record */
342 dr = (struct adfs_discrecord *)(b_data + ADFS_DR_OFFSET);
343 if (adfs_checkdiscrecord(dr))
344 return -EILSEQ;
345
346 *drp = dr;
347 return 0;
348}
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350static int adfs_fill_super(struct super_block *sb, void *data, int silent)
351{
352 struct adfs_discrecord *dr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 struct object_info root_obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 struct adfs_sb_info *asb;
355 struct inode *root;
Sanidhya Kashyapb7964102015-04-16 12:48:13 -0700356 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Russell King421d3c02019-06-04 14:50:03 +0100358 sb->s_flags |= ADFS_SB_FLAGS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Panagiotis Issarisf8314dc2006-09-27 01:49:37 -0700360 asb = kzalloc(sizeof(*asb), GFP_KERNEL);
Arnd Bergmann4688a062011-01-22 20:05:05 +0100361 if (!asb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 return -ENOMEM;
Russell Kingeeeb9dd2019-12-09 11:08:18 +0000363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 sb->s_fs_info = asb;
Russell Kingf6f14a02019-12-09 11:08:59 +0000365 sb->s_magic = ADFS_SUPER_MAGIC;
Russell Kingeeeb9dd2019-12-09 11:08:18 +0000366 sb->s_time_gran = 10000000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368 /* set default options */
Eric W. Biedermanc010d1f2012-02-07 15:58:38 -0800369 asb->s_uid = GLOBAL_ROOT_UID;
370 asb->s_gid = GLOBAL_ROOT_GID;
Miklos Szeredie11400b2008-02-08 04:21:35 -0800371 asb->s_owner_mask = ADFS_DEFAULT_OWNER_MASK;
372 asb->s_other_mask = ADFS_DEFAULT_OTHER_MASK;
Stuart Swalesda23ef02011-03-22 16:35:06 -0700373 asb->s_ftsuffix = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Russell King4c5762f2019-06-04 14:50:09 +0100375 if (parse_options(sb, asb, data))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 goto error;
377
Russell Kinge3858e12019-12-09 11:11:28 +0000378 /* Try to probe the filesystem boot block */
379 ret = adfs_probe(sb, ADFS_DISCRECORD, silent, adfs_validate_bblk);
380 if (ret == -EILSEQ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 if (!silent)
Russell Kingceb3b102019-06-04 14:49:52 +0100382 adfs_msg(sb, KERN_ERR,
Russell Kinge3858e12019-12-09 11:11:28 +0000383 "error: can't find an ADFS filesystem on dev %s.",
384 sb->s_id);
Sanidhya Kashyapb7964102015-04-16 12:48:13 -0700385 ret = -EINVAL;
Russell Kinge3858e12019-12-09 11:11:28 +0000386 }
387 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Russell Kinge3858e12019-12-09 11:11:28 +0000390 /* set up enough so that we can read an inode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 sb->s_op = &adfs_sops;
392
Russell King1dfdfc92019-06-04 14:49:30 +0100393 dr = adfs_map_discrecord(asb->s_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Russell King5ed70bb2019-06-04 14:49:57 +0100395 root_obj.parent_id = root_obj.indaddr = le32_to_cpu(dr->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 root_obj.name_len = 0;
Stuart Swalesda23ef02011-03-22 16:35:06 -0700397 /* Set root object date as 01 Jan 1987 00:00:00 */
398 root_obj.loadaddr = 0xfff0003f;
399 root_obj.execaddr = 0xec22c000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 root_obj.size = ADFS_NEWDIR_SIZE;
401 root_obj.attr = ADFS_NDA_DIRECTORY | ADFS_NDA_OWNER_READ |
402 ADFS_NDA_OWNER_WRITE | ADFS_NDA_PUBLIC_READ;
403
404 /*
405 * If this is a F+ disk with variable length directories,
406 * get the root_size from the disc record.
407 */
Russell Kingcb88b5a2019-06-04 14:49:41 +0100408 if (dr->format_version) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 root_obj.size = le32_to_cpu(dr->root_size);
410 asb->s_dir = &adfs_fplus_dir_ops;
411 asb->s_namelen = ADFS_FPLUS_NAME_LEN;
412 } else {
413 asb->s_dir = &adfs_f_dir_ops;
414 asb->s_namelen = ADFS_F_NAME_LEN;
415 }
Stuart Swalesda23ef02011-03-22 16:35:06 -0700416 /*
417 * ,xyz hex filetype suffix may be added by driver
418 * to files that have valid RISC OS filetype
419 */
420 if (asb->s_ftsuffix)
421 asb->s_namelen += 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
Al Viro96e13912010-12-18 11:20:57 -0500423 sb->s_d_op = &adfs_dentry_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 root = adfs_iget(sb, &root_obj);
Al Viro48fde702012-01-08 22:15:13 -0500425 sb->s_root = d_make_root(root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 if (!sb->s_root) {
Russell King7b195262019-12-09 11:08:44 +0000427 adfs_free_map(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 adfs_error(sb, "get root inode failed\n");
Sanidhya Kashyapb7964102015-04-16 12:48:13 -0700429 ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 goto error;
Al Viro96e13912010-12-18 11:20:57 -0500431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 return 0;
433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434error:
435 sb->s_fs_info = NULL;
436 kfree(asb);
Sanidhya Kashyapb7964102015-04-16 12:48:13 -0700437 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438}
439
Al Viro152a0832010-07-25 00:46:55 +0400440static struct dentry *adfs_mount(struct file_system_type *fs_type,
441 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
Al Viro152a0832010-07-25 00:46:55 +0400443 return mount_bdev(fs_type, flags, dev_name, data, adfs_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444}
445
446static struct file_system_type adfs_fs_type = {
447 .owner = THIS_MODULE,
448 .name = "adfs",
Al Viro152a0832010-07-25 00:46:55 +0400449 .mount = adfs_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 .kill_sb = kill_block_super,
451 .fs_flags = FS_REQUIRES_DEV,
452};
Eric W. Biederman7f78e032013-03-02 19:39:14 -0800453MODULE_ALIAS_FS("adfs");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
455static int __init init_adfs_fs(void)
456{
457 int err = init_inodecache();
458 if (err)
459 goto out1;
460 err = register_filesystem(&adfs_fs_type);
461 if (err)
462 goto out;
463 return 0;
464out:
465 destroy_inodecache();
466out1:
467 return err;
468}
469
470static void __exit exit_adfs_fs(void)
471{
472 unregister_filesystem(&adfs_fs_type);
473 destroy_inodecache();
474}
475
476module_init(init_adfs_fs)
477module_exit(exit_adfs_fs)
Al Viro608ba502009-06-16 14:52:13 -0400478MODULE_LICENSE("GPL");