blob: bdbd26e571ed37b0a3def3fb25ed70467f6350d1 [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>
Christoph Hellwig621c1f42020-06-20 09:16:44 +020015#include <linux/blkdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include "adfs.h"
17#include "dir_f.h"
18#include "dir_fplus.h"
19
Russell King421d3c02019-06-04 14:50:03 +010020#define ADFS_SB_FLAGS SB_NOATIME
21
Miklos Szeredie11400b2008-02-08 04:21:35 -080022#define ADFS_DEFAULT_OWNER_MASK S_IRWXU
23#define ADFS_DEFAULT_OTHER_MASK (S_IRWXG | S_IRWXO)
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025void __adfs_error(struct super_block *sb, const char *function, const char *fmt, ...)
26{
Russell King2e670802019-06-04 14:49:47 +010027 struct va_format vaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 va_list args;
29
30 va_start(args, fmt);
Russell King2e670802019-06-04 14:49:47 +010031 vaf.fmt = fmt;
32 vaf.va = &args;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Russell King2e670802019-06-04 14:49:47 +010034 printk(KERN_CRIT "ADFS-fs error (device %s)%s%s: %pV\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 sb->s_id, function ? ": " : "",
Russell King2e670802019-06-04 14:49:47 +010036 function ? function : "", &vaf);
37
38 va_end(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039}
40
Russell Kingceb3b102019-06-04 14:49:52 +010041void adfs_msg(struct super_block *sb, const char *pfx, const char *fmt, ...)
42{
43 struct va_format vaf;
44 va_list args;
45
46 va_start(args, fmt);
47 vaf.fmt = fmt;
48 vaf.va = &args;
49 printk("%sADFS-fs (%s): %pV\n", pfx, sb->s_id, &vaf);
50 va_end(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051}
52
53static int adfs_checkdiscrecord(struct adfs_discrecord *dr)
54{
Russell King86161082019-06-04 14:50:19 +010055 unsigned int max_idlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 int i;
57
58 /* sector size must be 256, 512 or 1024 bytes */
59 if (dr->log2secsize != 8 &&
60 dr->log2secsize != 9 &&
61 dr->log2secsize != 10)
62 return 1;
63
64 /* idlen must be at least log2secsize + 3 */
65 if (dr->idlen < dr->log2secsize + 3)
66 return 1;
67
68 /* we cannot have such a large disc that we
69 * are unable to represent sector offsets in
70 * 32 bits. This works out at 2.0 TB.
71 */
72 if (le32_to_cpu(dr->disc_size_high) >> dr->log2secsize)
73 return 1;
74
Russell King86161082019-06-04 14:50:19 +010075 /*
76 * Maximum idlen is limited to 16 bits for new directories by
77 * the three-byte storage of an indirect disc address. For
78 * big directories, idlen must be no greater than 19 v2 [1.0]
79 */
80 max_idlen = dr->format_version ? 19 : 16;
81 if (dr->idlen > max_idlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 return 1;
83
84 /* reserved bytes should be zero */
85 for (i = 0; i < sizeof(dr->unused52); i++)
86 if (dr->unused52[i] != 0)
87 return 1;
88
89 return 0;
90}
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092static void adfs_put_super(struct super_block *sb)
93{
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 struct adfs_sb_info *asb = ADFS_SB(sb);
95
Russell King7b195262019-12-09 11:08:44 +000096 adfs_free_map(sb);
Al Viro2d1d9b52013-10-03 12:37:18 -040097 kfree_rcu(asb, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}
99
Al Viro34c80b12011-12-08 21:32:45 -0500100static int adfs_show_options(struct seq_file *seq, struct dentry *root)
Miklos Szeredie11400b2008-02-08 04:21:35 -0800101{
Al Viro34c80b12011-12-08 21:32:45 -0500102 struct adfs_sb_info *asb = ADFS_SB(root->d_sb);
Miklos Szeredie11400b2008-02-08 04:21:35 -0800103
Eric W. Biedermanc010d1f2012-02-07 15:58:38 -0800104 if (!uid_eq(asb->s_uid, GLOBAL_ROOT_UID))
105 seq_printf(seq, ",uid=%u", from_kuid_munged(&init_user_ns, asb->s_uid));
106 if (!gid_eq(asb->s_gid, GLOBAL_ROOT_GID))
107 seq_printf(seq, ",gid=%u", from_kgid_munged(&init_user_ns, asb->s_gid));
Miklos Szeredie11400b2008-02-08 04:21:35 -0800108 if (asb->s_owner_mask != ADFS_DEFAULT_OWNER_MASK)
109 seq_printf(seq, ",ownmask=%o", asb->s_owner_mask);
110 if (asb->s_other_mask != ADFS_DEFAULT_OTHER_MASK)
111 seq_printf(seq, ",othmask=%o", asb->s_other_mask);
Stuart Swalesda23ef02011-03-22 16:35:06 -0700112 if (asb->s_ftsuffix != 0)
113 seq_printf(seq, ",ftsuffix=%u", asb->s_ftsuffix);
Miklos Szeredie11400b2008-02-08 04:21:35 -0800114
115 return 0;
116}
117
Stuart Swalesda23ef02011-03-22 16:35:06 -0700118enum {Opt_uid, Opt_gid, Opt_ownmask, Opt_othmask, Opt_ftsuffix, Opt_err};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Steven Whitehousea447c092008-10-13 10:46:57 +0100120static const match_table_t tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 {Opt_uid, "uid=%u"},
122 {Opt_gid, "gid=%u"},
123 {Opt_ownmask, "ownmask=%o"},
124 {Opt_othmask, "othmask=%o"},
Stuart Swalesda23ef02011-03-22 16:35:06 -0700125 {Opt_ftsuffix, "ftsuffix=%u"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 {Opt_err, NULL}
127};
128
Russell King4c5762f2019-06-04 14:50:09 +0100129static int parse_options(struct super_block *sb, struct adfs_sb_info *asb,
130 char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
132 char *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 int option;
134
135 if (!options)
136 return 0;
137
138 while ((p = strsep(&options, ",")) != NULL) {
139 substring_t args[MAX_OPT_ARGS];
140 int token;
141 if (!*p)
142 continue;
143
144 token = match_token(p, tokens, args);
145 switch (token) {
146 case Opt_uid:
147 if (match_int(args, &option))
148 return -EINVAL;
Eric W. Biedermanc010d1f2012-02-07 15:58:38 -0800149 asb->s_uid = make_kuid(current_user_ns(), option);
150 if (!uid_valid(asb->s_uid))
151 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 break;
153 case Opt_gid:
154 if (match_int(args, &option))
155 return -EINVAL;
Eric W. Biedermanc010d1f2012-02-07 15:58:38 -0800156 asb->s_gid = make_kgid(current_user_ns(), option);
157 if (!gid_valid(asb->s_gid))
158 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 break;
160 case Opt_ownmask:
161 if (match_octal(args, &option))
162 return -EINVAL;
163 asb->s_owner_mask = option;
164 break;
165 case Opt_othmask:
166 if (match_octal(args, &option))
167 return -EINVAL;
168 asb->s_other_mask = option;
169 break;
Stuart Swalesda23ef02011-03-22 16:35:06 -0700170 case Opt_ftsuffix:
171 if (match_int(args, &option))
172 return -EINVAL;
173 asb->s_ftsuffix = option;
174 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 default:
Russell Kingceb3b102019-06-04 14:49:52 +0100176 adfs_msg(sb, KERN_ERR,
177 "unrecognised mount option \"%s\" or missing value",
178 p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 return -EINVAL;
180 }
181 }
182 return 0;
183}
184
185static int adfs_remount(struct super_block *sb, int *flags, char *data)
186{
Russell King4c5762f2019-06-04 14:50:09 +0100187 struct adfs_sb_info temp_asb;
188 int ret;
189
Theodore Ts'o02b99842014-03-13 10:14:33 -0400190 sync_filesystem(sb);
Russell King421d3c02019-06-04 14:50:03 +0100191 *flags |= ADFS_SB_FLAGS;
Russell King4c5762f2019-06-04 14:50:09 +0100192
193 temp_asb = *ADFS_SB(sb);
194 ret = parse_options(sb, &temp_asb, data);
195 if (ret == 0)
196 *ADFS_SB(sb) = temp_asb;
197
198 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199}
200
David Howells726c3342006-06-23 02:02:58 -0700201static int adfs_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Coly Liaccb4012009-04-02 16:59:27 -0700203 struct super_block *sb = dentry->d_sb;
204 struct adfs_sb_info *sbi = ADFS_SB(sb);
205 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Russell Kinge6160e42019-12-09 11:08:34 +0000207 adfs_map_statfs(sb, buf);
208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 buf->f_type = ADFS_SUPER_MAGIC;
Coly Liaccb4012009-04-02 16:59:27 -0700210 buf->f_namelen = sbi->s_namelen;
211 buf->f_bsize = sb->s_blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 buf->f_ffree = (long)(buf->f_bfree * buf->f_files) / (long)buf->f_blocks;
Al Viro6d1349c2020-09-18 16:45:50 -0400213 buf->f_fsid = u64_to_fsid(id);
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
Russell King08ead1b2019-12-09 11:11:33 +0000350static int adfs_validate_dr0(struct super_block *sb, struct buffer_head *bh,
351 struct adfs_discrecord **drp)
352{
353 struct adfs_discrecord *dr;
354
355 /* Do some sanity checks on the ADFS disc record */
356 dr = (struct adfs_discrecord *)(bh->b_data + 4);
357 if (adfs_checkdiscrecord(dr) || dr->nzones_high || dr->nzones != 1)
358 return -EILSEQ;
359
360 *drp = dr;
361 return 0;
362}
363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364static int adfs_fill_super(struct super_block *sb, void *data, int silent)
365{
366 struct adfs_discrecord *dr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 struct object_info root_obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 struct adfs_sb_info *asb;
369 struct inode *root;
Sanidhya Kashyapb7964102015-04-16 12:48:13 -0700370 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Russell King421d3c02019-06-04 14:50:03 +0100372 sb->s_flags |= ADFS_SB_FLAGS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Panagiotis Issarisf8314dc2006-09-27 01:49:37 -0700374 asb = kzalloc(sizeof(*asb), GFP_KERNEL);
Arnd Bergmann4688a062011-01-22 20:05:05 +0100375 if (!asb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return -ENOMEM;
Russell Kingeeeb9dd2019-12-09 11:08:18 +0000377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 sb->s_fs_info = asb;
Russell Kingf6f14a02019-12-09 11:08:59 +0000379 sb->s_magic = ADFS_SUPER_MAGIC;
Russell Kingeeeb9dd2019-12-09 11:08:18 +0000380 sb->s_time_gran = 10000000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382 /* set default options */
Eric W. Biedermanc010d1f2012-02-07 15:58:38 -0800383 asb->s_uid = GLOBAL_ROOT_UID;
384 asb->s_gid = GLOBAL_ROOT_GID;
Miklos Szeredie11400b2008-02-08 04:21:35 -0800385 asb->s_owner_mask = ADFS_DEFAULT_OWNER_MASK;
386 asb->s_other_mask = ADFS_DEFAULT_OTHER_MASK;
Stuart Swalesda23ef02011-03-22 16:35:06 -0700387 asb->s_ftsuffix = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Russell King4c5762f2019-06-04 14:50:09 +0100389 if (parse_options(sb, asb, data))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 goto error;
391
Russell Kinge3858e12019-12-09 11:11:28 +0000392 /* Try to probe the filesystem boot block */
Russell King08ead1b2019-12-09 11:11:33 +0000393 ret = adfs_probe(sb, ADFS_DISCRECORD, 1, adfs_validate_bblk);
394 if (ret == -EILSEQ)
395 ret = adfs_probe(sb, 0, silent, adfs_validate_dr0);
Russell Kinge3858e12019-12-09 11:11:28 +0000396 if (ret == -EILSEQ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 if (!silent)
Russell Kingceb3b102019-06-04 14:49:52 +0100398 adfs_msg(sb, KERN_ERR,
Russell Kinge3858e12019-12-09 11:11:28 +0000399 "error: can't find an ADFS filesystem on dev %s.",
400 sb->s_id);
Sanidhya Kashyapb7964102015-04-16 12:48:13 -0700401 ret = -EINVAL;
Russell Kinge3858e12019-12-09 11:11:28 +0000402 }
403 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Russell Kinge3858e12019-12-09 11:11:28 +0000406 /* set up enough so that we can read an inode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 sb->s_op = &adfs_sops;
408
Russell King1dfdfc92019-06-04 14:49:30 +0100409 dr = adfs_map_discrecord(asb->s_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Russell King5ed70bb2019-06-04 14:49:57 +0100411 root_obj.parent_id = root_obj.indaddr = le32_to_cpu(dr->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 root_obj.name_len = 0;
Stuart Swalesda23ef02011-03-22 16:35:06 -0700413 /* Set root object date as 01 Jan 1987 00:00:00 */
414 root_obj.loadaddr = 0xfff0003f;
415 root_obj.execaddr = 0xec22c000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 root_obj.size = ADFS_NEWDIR_SIZE;
417 root_obj.attr = ADFS_NDA_DIRECTORY | ADFS_NDA_OWNER_READ |
418 ADFS_NDA_OWNER_WRITE | ADFS_NDA_PUBLIC_READ;
419
420 /*
421 * If this is a F+ disk with variable length directories,
422 * get the root_size from the disc record.
423 */
Russell Kingcb88b5a2019-06-04 14:49:41 +0100424 if (dr->format_version) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 root_obj.size = le32_to_cpu(dr->root_size);
426 asb->s_dir = &adfs_fplus_dir_ops;
427 asb->s_namelen = ADFS_FPLUS_NAME_LEN;
428 } else {
429 asb->s_dir = &adfs_f_dir_ops;
430 asb->s_namelen = ADFS_F_NAME_LEN;
431 }
Stuart Swalesda23ef02011-03-22 16:35:06 -0700432 /*
433 * ,xyz hex filetype suffix may be added by driver
434 * to files that have valid RISC OS filetype
435 */
436 if (asb->s_ftsuffix)
437 asb->s_namelen += 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Al Viro96e13912010-12-18 11:20:57 -0500439 sb->s_d_op = &adfs_dentry_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 root = adfs_iget(sb, &root_obj);
Al Viro48fde702012-01-08 22:15:13 -0500441 sb->s_root = d_make_root(root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 if (!sb->s_root) {
Russell King7b195262019-12-09 11:08:44 +0000443 adfs_free_map(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 adfs_error(sb, "get root inode failed\n");
Sanidhya Kashyapb7964102015-04-16 12:48:13 -0700445 ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 goto error;
Al Viro96e13912010-12-18 11:20:57 -0500447 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 return 0;
449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450error:
451 sb->s_fs_info = NULL;
452 kfree(asb);
Sanidhya Kashyapb7964102015-04-16 12:48:13 -0700453 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454}
455
Al Viro152a0832010-07-25 00:46:55 +0400456static struct dentry *adfs_mount(struct file_system_type *fs_type,
457 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
Al Viro152a0832010-07-25 00:46:55 +0400459 return mount_bdev(fs_type, flags, dev_name, data, adfs_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
461
462static struct file_system_type adfs_fs_type = {
463 .owner = THIS_MODULE,
464 .name = "adfs",
Al Viro152a0832010-07-25 00:46:55 +0400465 .mount = adfs_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 .kill_sb = kill_block_super,
467 .fs_flags = FS_REQUIRES_DEV,
468};
Eric W. Biederman7f78e032013-03-02 19:39:14 -0800469MODULE_ALIAS_FS("adfs");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471static int __init init_adfs_fs(void)
472{
473 int err = init_inodecache();
474 if (err)
475 goto out1;
476 err = register_filesystem(&adfs_fs_type);
477 if (err)
478 goto out;
479 return 0;
480out:
481 destroy_inodecache();
482out1:
483 return err;
484}
485
486static void __exit exit_adfs_fs(void)
487{
488 unregister_filesystem(&adfs_fs_type);
489 destroy_inodecache();
490}
491
492module_init(init_adfs_fs)
493module_exit(exit_adfs_fs)
Al Viro608ba502009-06-16 14:52:13 -0400494MODULE_LICENSE("GPL");