blob: 983558b572c70b3d87fe6657caa0db093812b15e [file] [log] [blame]
Thomas Gleixner09c434b2019-05-19 13:08:20 +01001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/fs/ufs/super.c
4 *
5 * Copyright (C) 1998
6 * Daniel Pirkl <daniel.pirkl@email.cz>
7 * Charles University, Faculty of Mathematics and Physics
8 */
9
10/* Derived from
11 *
12 * linux/fs/ext2/super.c
13 *
14 * Copyright (C) 1992, 1993, 1994, 1995
15 * Remy Card (card@masi.ibp.fr)
16 * Laboratoire MASI - Institut Blaise Pascal
17 * Universite Pierre et Marie Curie (Paris VI)
18 *
19 * from
20 *
21 * linux/fs/minix/inode.c
22 *
23 * Copyright (C) 1991, 1992 Linus Torvalds
24 *
25 * Big-endian to little-endian byte-swapping/bitmaps by
26 * David S. Miller (davem@caip.rutgers.edu), 1995
27 */
28
29/*
30 * Inspired by
31 *
32 * linux/fs/ufs/super.c
33 *
34 * Copyright (C) 1996
35 * Adrian Rodriguez (adrian@franklins-tower.rutgers.edu)
36 * Laboratory for Computer Science Research Computing Facility
37 * Rutgers, The State University of New Jersey
38 *
39 * Copyright (C) 1996 Eddie C. Dost (ecd@skynet.be)
40 *
41 * Kernel module support added on 96/04/26 by
42 * Stefan Reinauer <stepan@home.culture.mipt.ru>
43 *
44 * Module usage counts added on 96/04/29 by
Gertjan van Wingerdef762dd62009-03-21 23:18:57 +010045 * Gertjan van Wingerde <gwingerde@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 *
47 * Clean swab support on 19970406 by
48 * Francois-Rene Rideau <fare@tunes.org>
49 *
50 * 4.4BSD (FreeBSD) support added on February 1st 1998 by
51 * Niels Kristian Bech Jensen <nkbj@image.dk> partially based
52 * on code by Martin von Loewis <martin@mira.isdn.cs.tu-berlin.de>.
53 *
54 * NeXTstep support added on February 5th 1998 by
55 * Niels Kristian Bech Jensen <nkbj@image.dk>.
56 *
57 * write support Daniel Pirkl <daniel.pirkl@email.cz> 1998
58 *
59 * HP/UX hfs filesystem support added by
60 * Martin K. Petersen <mkp@mkp.net>, August 1999
61 *
62 * UFS2 (of FreeBSD 5.x) support added by
63 * Niraj Kumar <niraj17@iitbombay.org>, Jan 2004
64 *
Evgeniy Dushistovcbcae392007-02-12 00:54:30 -080065 * UFS2 write support added by
66 * Evgeniy Dushistov <dushistov@mail.ru>, 2007
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 */
68
Alexey Dobriyanf3e2a522009-12-15 16:46:51 -080069#include <linux/exportfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#include <linux/module.h>
71#include <linux/bitops.h>
72
73#include <stdarg.h>
74
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080075#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77#include <linux/errno.h>
78#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#include <linux/slab.h>
80#include <linux/time.h>
81#include <linux/stat.h>
82#include <linux/string.h>
83#include <linux/blkdev.h>
Tejun Heo66114ca2015-05-22 17:13:32 -040084#include <linux/backing-dev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#include <linux/init.h>
86#include <linux/parser.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#include <linux/buffer_head.h>
88#include <linux/vfs.h>
vignesh babu9e8c4272007-07-15 23:41:36 -070089#include <linux/log2.h>
Evgeniy Dushistov2a9807c2007-10-16 23:26:32 -070090#include <linux/mount.h>
91#include <linux/seq_file.h>
Jeff Laytonbb8c2d62017-12-11 06:35:18 -050092#include <linux/iversion.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Mike Frysingere5420592008-02-08 04:21:31 -080094#include "ufs_fs.h"
Christoph Hellwigbcd6d4e2007-10-16 23:26:51 -070095#include "ufs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070096#include "swab.h"
97#include "util.h"
98
Alexey Dobriyanf3e2a522009-12-15 16:46:51 -080099static struct inode *ufs_nfs_get_inode(struct super_block *sb, u64 ino, u32 generation)
100{
101 struct ufs_sb_private_info *uspi = UFS_SB(sb)->s_uspi;
102 struct inode *inode;
103
Colin Ian King88b2e9b2020-08-11 18:35:53 -0700104 if (ino < UFS_ROOTINO || ino > (u64)uspi->s_ncg * uspi->s_ipg)
Alexey Dobriyanf3e2a522009-12-15 16:46:51 -0800105 return ERR_PTR(-ESTALE);
106
107 inode = ufs_iget(sb, ino);
108 if (IS_ERR(inode))
109 return ERR_CAST(inode);
110 if (generation && inode->i_generation != generation) {
111 iput(inode);
112 return ERR_PTR(-ESTALE);
113 }
114 return inode;
115}
116
117static struct dentry *ufs_fh_to_dentry(struct super_block *sb, struct fid *fid,
118 int fh_len, int fh_type)
119{
120 return generic_fh_to_dentry(sb, fid, fh_len, fh_type, ufs_nfs_get_inode);
121}
122
123static struct dentry *ufs_fh_to_parent(struct super_block *sb, struct fid *fid,
124 int fh_len, int fh_type)
125{
126 return generic_fh_to_parent(sb, fid, fh_len, fh_type, ufs_nfs_get_inode);
127}
128
129static struct dentry *ufs_get_parent(struct dentry *child)
130{
Linus Torvalds26fe5752012-05-10 13:14:12 -0700131 struct qstr dot_dot = QSTR_INIT("..", 2);
Alexey Dobriyanf3e2a522009-12-15 16:46:51 -0800132 ino_t ino;
133
David Howells2b0143b2015-03-17 22:25:59 +0000134 ino = ufs_inode_by_name(d_inode(child), &dot_dot);
Alexey Dobriyanf3e2a522009-12-15 16:46:51 -0800135 if (!ino)
136 return ERR_PTR(-ENOENT);
Al Virofc640052016-04-10 01:33:30 -0400137 return d_obtain_alias(ufs_iget(child->d_sb, ino));
Alexey Dobriyanf3e2a522009-12-15 16:46:51 -0800138}
139
140static const struct export_operations ufs_export_ops = {
141 .fh_to_dentry = ufs_fh_to_dentry,
142 .fh_to_parent = ufs_fh_to_parent,
143 .get_parent = ufs_get_parent,
144};
145
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -0700146#ifdef CONFIG_UFS_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147/*
148 * Print contents of ufs_super_block, useful for debugging
149 */
Evgeniy Dushistov3313e292007-02-12 00:54:31 -0800150static void ufs_print_super_stuff(struct super_block *sb,
Evgeniy Dushistov647b7e82006-06-25 05:47:29 -0700151 struct ufs_super_block_first *usb1,
152 struct ufs_super_block_second *usb2,
153 struct ufs_super_block_third *usb3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Evgeniy Dushistov3313e292007-02-12 00:54:31 -0800155 u32 magic = fs32_to_cpu(sb, usb3->fs_magic);
156
Fabian Fredericka9814c52014-08-08 14:20:57 -0700157 pr_debug("ufs_print_super_stuff\n");
158 pr_debug(" magic: 0x%x\n", magic);
Evgeniy Dushistov3313e292007-02-12 00:54:31 -0800159 if (fs32_to_cpu(sb, usb3->fs_magic) == UFS2_MAGIC) {
Fabian Fredericka9814c52014-08-08 14:20:57 -0700160 pr_debug(" fs_size: %llu\n", (unsigned long long)
161 fs64_to_cpu(sb, usb3->fs_un1.fs_u2.fs_size));
162 pr_debug(" fs_dsize: %llu\n", (unsigned long long)
163 fs64_to_cpu(sb, usb3->fs_un1.fs_u2.fs_dsize));
164 pr_debug(" bsize: %u\n",
165 fs32_to_cpu(sb, usb1->fs_bsize));
166 pr_debug(" fsize: %u\n",
167 fs32_to_cpu(sb, usb1->fs_fsize));
168 pr_debug(" fs_volname: %s\n", usb2->fs_un.fs_u2.fs_volname);
169 pr_debug(" fs_sblockloc: %llu\n", (unsigned long long)
170 fs64_to_cpu(sb, usb2->fs_un.fs_u2.fs_sblockloc));
171 pr_debug(" cs_ndir(No of dirs): %llu\n", (unsigned long long)
172 fs64_to_cpu(sb, usb2->fs_un.fs_u2.cs_ndir));
173 pr_debug(" cs_nbfree(No of free blocks): %llu\n",
174 (unsigned long long)
175 fs64_to_cpu(sb, usb2->fs_un.fs_u2.cs_nbfree));
176 pr_info(" cs_nifree(Num of free inodes): %llu\n",
177 (unsigned long long)
178 fs64_to_cpu(sb, usb3->fs_un1.fs_u2.cs_nifree));
179 pr_info(" cs_nffree(Num of free frags): %llu\n",
180 (unsigned long long)
181 fs64_to_cpu(sb, usb3->fs_un1.fs_u2.cs_nffree));
182 pr_info(" fs_maxsymlinklen: %u\n",
183 fs32_to_cpu(sb, usb3->fs_un2.fs_44.fs_maxsymlinklen));
Evgeniy Dushistov647b7e82006-06-25 05:47:29 -0700184 } else {
Fabian Fredericka9814c52014-08-08 14:20:57 -0700185 pr_debug(" sblkno: %u\n", fs32_to_cpu(sb, usb1->fs_sblkno));
186 pr_debug(" cblkno: %u\n", fs32_to_cpu(sb, usb1->fs_cblkno));
187 pr_debug(" iblkno: %u\n", fs32_to_cpu(sb, usb1->fs_iblkno));
188 pr_debug(" dblkno: %u\n", fs32_to_cpu(sb, usb1->fs_dblkno));
189 pr_debug(" cgoffset: %u\n",
190 fs32_to_cpu(sb, usb1->fs_cgoffset));
191 pr_debug(" ~cgmask: 0x%x\n",
192 ~fs32_to_cpu(sb, usb1->fs_cgmask));
193 pr_debug(" size: %u\n", fs32_to_cpu(sb, usb1->fs_size));
194 pr_debug(" dsize: %u\n", fs32_to_cpu(sb, usb1->fs_dsize));
195 pr_debug(" ncg: %u\n", fs32_to_cpu(sb, usb1->fs_ncg));
196 pr_debug(" bsize: %u\n", fs32_to_cpu(sb, usb1->fs_bsize));
197 pr_debug(" fsize: %u\n", fs32_to_cpu(sb, usb1->fs_fsize));
198 pr_debug(" frag: %u\n", fs32_to_cpu(sb, usb1->fs_frag));
199 pr_debug(" fragshift: %u\n",
200 fs32_to_cpu(sb, usb1->fs_fragshift));
201 pr_debug(" ~fmask: %u\n", ~fs32_to_cpu(sb, usb1->fs_fmask));
202 pr_debug(" fshift: %u\n", fs32_to_cpu(sb, usb1->fs_fshift));
203 pr_debug(" sbsize: %u\n", fs32_to_cpu(sb, usb1->fs_sbsize));
204 pr_debug(" spc: %u\n", fs32_to_cpu(sb, usb1->fs_spc));
205 pr_debug(" cpg: %u\n", fs32_to_cpu(sb, usb1->fs_cpg));
206 pr_debug(" ipg: %u\n", fs32_to_cpu(sb, usb1->fs_ipg));
207 pr_debug(" fpg: %u\n", fs32_to_cpu(sb, usb1->fs_fpg));
208 pr_debug(" csaddr: %u\n", fs32_to_cpu(sb, usb1->fs_csaddr));
209 pr_debug(" cssize: %u\n", fs32_to_cpu(sb, usb1->fs_cssize));
210 pr_debug(" cgsize: %u\n", fs32_to_cpu(sb, usb1->fs_cgsize));
211 pr_debug(" fstodb: %u\n",
212 fs32_to_cpu(sb, usb1->fs_fsbtodb));
213 pr_debug(" nrpos: %u\n", fs32_to_cpu(sb, usb3->fs_nrpos));
214 pr_debug(" ndir %u\n",
215 fs32_to_cpu(sb, usb1->fs_cstotal.cs_ndir));
216 pr_debug(" nifree %u\n",
217 fs32_to_cpu(sb, usb1->fs_cstotal.cs_nifree));
218 pr_debug(" nbfree %u\n",
219 fs32_to_cpu(sb, usb1->fs_cstotal.cs_nbfree));
220 pr_debug(" nffree %u\n",
221 fs32_to_cpu(sb, usb1->fs_cstotal.cs_nffree));
Evgeniy Dushistov647b7e82006-06-25 05:47:29 -0700222 }
Fabian Fredericka9814c52014-08-08 14:20:57 -0700223 pr_debug("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
225
226/*
227 * Print contents of ufs_cylinder_group, useful for debugging
228 */
Evgeniy Dushistov647b7e82006-06-25 05:47:29 -0700229static void ufs_print_cylinder_stuff(struct super_block *sb,
230 struct ufs_cylinder_group *cg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
Fabian Fredericka9814c52014-08-08 14:20:57 -0700232 pr_debug("\nufs_print_cylinder_stuff\n");
233 pr_debug("size of ucg: %zu\n", sizeof(struct ufs_cylinder_group));
234 pr_debug(" magic: %x\n", fs32_to_cpu(sb, cg->cg_magic));
235 pr_debug(" time: %u\n", fs32_to_cpu(sb, cg->cg_time));
236 pr_debug(" cgx: %u\n", fs32_to_cpu(sb, cg->cg_cgx));
237 pr_debug(" ncyl: %u\n", fs16_to_cpu(sb, cg->cg_ncyl));
238 pr_debug(" niblk: %u\n", fs16_to_cpu(sb, cg->cg_niblk));
239 pr_debug(" ndblk: %u\n", fs32_to_cpu(sb, cg->cg_ndblk));
240 pr_debug(" cs_ndir: %u\n", fs32_to_cpu(sb, cg->cg_cs.cs_ndir));
241 pr_debug(" cs_nbfree: %u\n", fs32_to_cpu(sb, cg->cg_cs.cs_nbfree));
242 pr_debug(" cs_nifree: %u\n", fs32_to_cpu(sb, cg->cg_cs.cs_nifree));
243 pr_debug(" cs_nffree: %u\n", fs32_to_cpu(sb, cg->cg_cs.cs_nffree));
244 pr_debug(" rotor: %u\n", fs32_to_cpu(sb, cg->cg_rotor));
245 pr_debug(" frotor: %u\n", fs32_to_cpu(sb, cg->cg_frotor));
246 pr_debug(" irotor: %u\n", fs32_to_cpu(sb, cg->cg_irotor));
247 pr_debug(" frsum: %u, %u, %u, %u, %u, %u, %u, %u\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 fs32_to_cpu(sb, cg->cg_frsum[0]), fs32_to_cpu(sb, cg->cg_frsum[1]),
249 fs32_to_cpu(sb, cg->cg_frsum[2]), fs32_to_cpu(sb, cg->cg_frsum[3]),
250 fs32_to_cpu(sb, cg->cg_frsum[4]), fs32_to_cpu(sb, cg->cg_frsum[5]),
251 fs32_to_cpu(sb, cg->cg_frsum[6]), fs32_to_cpu(sb, cg->cg_frsum[7]));
Fabian Fredericka9814c52014-08-08 14:20:57 -0700252 pr_debug(" btotoff: %u\n", fs32_to_cpu(sb, cg->cg_btotoff));
253 pr_debug(" boff: %u\n", fs32_to_cpu(sb, cg->cg_boff));
254 pr_debug(" iuseoff: %u\n", fs32_to_cpu(sb, cg->cg_iusedoff));
255 pr_debug(" freeoff: %u\n", fs32_to_cpu(sb, cg->cg_freeoff));
256 pr_debug(" nextfreeoff: %u\n", fs32_to_cpu(sb, cg->cg_nextfreeoff));
257 pr_debug(" clustersumoff %u\n",
258 fs32_to_cpu(sb, cg->cg_u.cg_44.cg_clustersumoff));
259 pr_debug(" clusteroff %u\n",
260 fs32_to_cpu(sb, cg->cg_u.cg_44.cg_clusteroff));
261 pr_debug(" nclusterblks %u\n",
262 fs32_to_cpu(sb, cg->cg_u.cg_44.cg_nclusterblks));
263 pr_debug("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
Evgeniy Dushistov647b7e82006-06-25 05:47:29 -0700265#else
Evgeniy Dushistov3313e292007-02-12 00:54:31 -0800266# define ufs_print_super_stuff(sb, usb1, usb2, usb3) /**/
Evgeniy Dushistov647b7e82006-06-25 05:47:29 -0700267# define ufs_print_cylinder_stuff(sb, cg) /**/
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -0700268#endif /* CONFIG_UFS_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800270static const struct super_operations ufs_super_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272void ufs_error (struct super_block * sb, const char * function,
273 const char * fmt, ...)
274{
275 struct ufs_sb_private_info * uspi;
276 struct ufs_super_block_first * usb1;
Fabian Frederick7e1e4162014-08-08 14:21:03 -0700277 struct va_format vaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 va_list args;
279
280 uspi = UFS_SB(sb)->s_uspi;
Evgeniy7b4ee732006-01-14 11:42:06 +0300281 usb1 = ubh_get_usb_first(uspi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
David Howellsbc98a422017-07-17 08:45:34 +0100283 if (!sb_rdonly(sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 usb1->fs_clean = UFS_FSBAD;
Evgeniy Dushistov9695ef12006-06-25 05:47:22 -0700285 ubh_mark_buffer_dirty(USPI_UBH(uspi));
Artem Bityutskiy9e9ad5f2012-07-12 16:28:08 +0300286 ufs_mark_sb_dirty(sb);
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800287 sb->s_flags |= SB_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 }
Fabian Frederick7e1e4162014-08-08 14:21:03 -0700289 va_start(args, fmt);
290 vaf.fmt = fmt;
291 vaf.va = &args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 switch (UFS_SB(sb)->s_mount_opt & UFS_MOUNT_ONERROR) {
293 case UFS_MOUNT_ONERROR_PANIC:
Fabian Frederick7e1e4162014-08-08 14:21:03 -0700294 panic("panic (device %s): %s: %pV\n",
295 sb->s_id, function, &vaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297 case UFS_MOUNT_ONERROR_LOCK:
298 case UFS_MOUNT_ONERROR_UMOUNT:
299 case UFS_MOUNT_ONERROR_REPAIR:
Fabian Frederick7e1e4162014-08-08 14:21:03 -0700300 pr_crit("error (device %s): %s: %pV\n",
301 sb->s_id, function, &vaf);
302 }
303 va_end(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304}
305
306void ufs_panic (struct super_block * sb, const char * function,
307 const char * fmt, ...)
308{
309 struct ufs_sb_private_info * uspi;
310 struct ufs_super_block_first * usb1;
Fabian Frederick7e1e4162014-08-08 14:21:03 -0700311 struct va_format vaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 va_list args;
313
314 uspi = UFS_SB(sb)->s_uspi;
Evgeniy7b4ee732006-01-14 11:42:06 +0300315 usb1 = ubh_get_usb_first(uspi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
David Howellsbc98a422017-07-17 08:45:34 +0100317 if (!sb_rdonly(sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 usb1->fs_clean = UFS_FSBAD;
Evgeniy Dushistov9695ef12006-06-25 05:47:22 -0700319 ubh_mark_buffer_dirty(USPI_UBH(uspi));
Artem Bityutskiy9e9ad5f2012-07-12 16:28:08 +0300320 ufs_mark_sb_dirty(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 }
Fabian Frederick7e1e4162014-08-08 14:21:03 -0700322 va_start(args, fmt);
323 vaf.fmt = fmt;
324 vaf.va = &args;
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800325 sb->s_flags |= SB_RDONLY;
Fabian Frederick7e1e4162014-08-08 14:21:03 -0700326 pr_crit("panic (device %s): %s: %pV\n",
327 sb->s_id, function, &vaf);
328 va_end(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329}
330
331void ufs_warning (struct super_block * sb, const char * function,
332 const char * fmt, ...)
333{
Fabian Frederick7e1e4162014-08-08 14:21:03 -0700334 struct va_format vaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 va_list args;
336
Fabian Frederick7e1e4162014-08-08 14:21:03 -0700337 va_start(args, fmt);
338 vaf.fmt = fmt;
339 vaf.va = &args;
340 pr_warn("(device %s): %s: %pV\n",
341 sb->s_id, function, &vaf);
342 va_end(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343}
344
345enum {
Evgeniy Dushistov2a9807c2007-10-16 23:26:32 -0700346 Opt_type_old = UFS_MOUNT_UFSTYPE_OLD,
347 Opt_type_sunx86 = UFS_MOUNT_UFSTYPE_SUNx86,
348 Opt_type_sun = UFS_MOUNT_UFSTYPE_SUN,
349 Opt_type_sunos = UFS_MOUNT_UFSTYPE_SUNOS,
350 Opt_type_44bsd = UFS_MOUNT_UFSTYPE_44BSD,
351 Opt_type_ufs2 = UFS_MOUNT_UFSTYPE_UFS2,
352 Opt_type_hp = UFS_MOUNT_UFSTYPE_HP,
353 Opt_type_nextstepcd = UFS_MOUNT_UFSTYPE_NEXTSTEP_CD,
354 Opt_type_nextstep = UFS_MOUNT_UFSTYPE_NEXTSTEP,
355 Opt_type_openstep = UFS_MOUNT_UFSTYPE_OPENSTEP,
356 Opt_onerror_panic = UFS_MOUNT_ONERROR_PANIC,
357 Opt_onerror_lock = UFS_MOUNT_ONERROR_LOCK,
358 Opt_onerror_umount = UFS_MOUNT_ONERROR_UMOUNT,
359 Opt_onerror_repair = UFS_MOUNT_ONERROR_REPAIR,
360 Opt_err
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361};
362
Steven Whitehousea447c092008-10-13 10:46:57 +0100363static const match_table_t tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 {Opt_type_old, "ufstype=old"},
365 {Opt_type_sunx86, "ufstype=sunx86"},
366 {Opt_type_sun, "ufstype=sun"},
Mark Fortescue252e2112007-10-16 23:26:31 -0700367 {Opt_type_sunos, "ufstype=sunos"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 {Opt_type_44bsd, "ufstype=44bsd"},
369 {Opt_type_ufs2, "ufstype=ufs2"},
370 {Opt_type_ufs2, "ufstype=5xbsd"},
371 {Opt_type_hp, "ufstype=hp"},
372 {Opt_type_nextstepcd, "ufstype=nextstep-cd"},
373 {Opt_type_nextstep, "ufstype=nextstep"},
374 {Opt_type_openstep, "ufstype=openstep"},
Evgeniy Dushistov2a9807c2007-10-16 23:26:32 -0700375/*end of possible ufs types */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 {Opt_onerror_panic, "onerror=panic"},
377 {Opt_onerror_lock, "onerror=lock"},
378 {Opt_onerror_umount, "onerror=umount"},
379 {Opt_onerror_repair, "onerror=repair"},
380 {Opt_err, NULL}
381};
382
383static int ufs_parse_options (char * options, unsigned * mount_options)
384{
385 char * p;
386
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -0700387 UFSD("ENTER\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
389 if (!options)
390 return 1;
391
392 while ((p = strsep(&options, ",")) != NULL) {
393 substring_t args[MAX_OPT_ARGS];
394 int token;
395 if (!*p)
396 continue;
397
398 token = match_token(p, tokens, args);
399 switch (token) {
400 case Opt_type_old:
401 ufs_clear_opt (*mount_options, UFSTYPE);
402 ufs_set_opt (*mount_options, UFSTYPE_OLD);
403 break;
404 case Opt_type_sunx86:
405 ufs_clear_opt (*mount_options, UFSTYPE);
406 ufs_set_opt (*mount_options, UFSTYPE_SUNx86);
407 break;
408 case Opt_type_sun:
409 ufs_clear_opt (*mount_options, UFSTYPE);
410 ufs_set_opt (*mount_options, UFSTYPE_SUN);
411 break;
Mark Fortescue252e2112007-10-16 23:26:31 -0700412 case Opt_type_sunos:
413 ufs_clear_opt(*mount_options, UFSTYPE);
414 ufs_set_opt(*mount_options, UFSTYPE_SUNOS);
415 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 case Opt_type_44bsd:
417 ufs_clear_opt (*mount_options, UFSTYPE);
418 ufs_set_opt (*mount_options, UFSTYPE_44BSD);
419 break;
420 case Opt_type_ufs2:
421 ufs_clear_opt(*mount_options, UFSTYPE);
422 ufs_set_opt(*mount_options, UFSTYPE_UFS2);
423 break;
424 case Opt_type_hp:
425 ufs_clear_opt (*mount_options, UFSTYPE);
426 ufs_set_opt (*mount_options, UFSTYPE_HP);
427 break;
428 case Opt_type_nextstepcd:
429 ufs_clear_opt (*mount_options, UFSTYPE);
430 ufs_set_opt (*mount_options, UFSTYPE_NEXTSTEP_CD);
431 break;
432 case Opt_type_nextstep:
433 ufs_clear_opt (*mount_options, UFSTYPE);
434 ufs_set_opt (*mount_options, UFSTYPE_NEXTSTEP);
435 break;
436 case Opt_type_openstep:
437 ufs_clear_opt (*mount_options, UFSTYPE);
438 ufs_set_opt (*mount_options, UFSTYPE_OPENSTEP);
439 break;
440 case Opt_onerror_panic:
441 ufs_clear_opt (*mount_options, ONERROR);
442 ufs_set_opt (*mount_options, ONERROR_PANIC);
443 break;
444 case Opt_onerror_lock:
445 ufs_clear_opt (*mount_options, ONERROR);
446 ufs_set_opt (*mount_options, ONERROR_LOCK);
447 break;
448 case Opt_onerror_umount:
449 ufs_clear_opt (*mount_options, ONERROR);
450 ufs_set_opt (*mount_options, ONERROR_UMOUNT);
451 break;
452 case Opt_onerror_repair:
Fabian Frederickde771bd2014-08-08 14:20:59 -0700453 pr_err("Unable to do repair on error, will lock lock instead\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 ufs_clear_opt (*mount_options, ONERROR);
455 ufs_set_opt (*mount_options, ONERROR_REPAIR);
456 break;
457 default:
Fabian Frederickde771bd2014-08-08 14:20:59 -0700458 pr_err("Invalid option: \"%s\" or missing value\n", p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 return 0;
460 }
461 }
462 return 1;
463}
464
465/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300466 * Different types of UFS hold fs_cstotal in different
467 * places, and use different data structure for it.
468 * To make things simpler we just copy fs_cstotal to ufs_sb_private_info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 */
Evgeniy Dushistovee3ffd62006-06-25 05:47:30 -0700470static void ufs_setup_cstotal(struct super_block *sb)
Evgeniy Dushistove295cfc2006-02-03 03:04:04 -0800471{
Evgeniy Dushistov647b7e82006-06-25 05:47:29 -0700472 struct ufs_sb_info *sbi = UFS_SB(sb);
473 struct ufs_sb_private_info *uspi = sbi->s_uspi;
Evgeniy Dushistovee3ffd62006-06-25 05:47:30 -0700474 struct ufs_super_block_first *usb1;
475 struct ufs_super_block_second *usb2;
Evgeniy Dushistov647b7e82006-06-25 05:47:29 -0700476 struct ufs_super_block_third *usb3;
Evgeniy Dushistovee3ffd62006-06-25 05:47:30 -0700477 unsigned mtype = sbi->s_mount_opt & UFS_MOUNT_UFSTYPE;
478
479 UFSD("ENTER, mtype=%u\n", mtype);
480 usb1 = ubh_get_usb_first(uspi);
481 usb2 = ubh_get_usb_second(uspi);
482 usb3 = ubh_get_usb_third(uspi);
483
484 if ((mtype == UFS_MOUNT_UFSTYPE_44BSD &&
Al Viro96ecff12017-06-14 15:17:32 -0400485 (usb2->fs_un.fs_u2.fs_maxbsize == usb1->fs_bsize)) ||
Evgeniy Dushistovee3ffd62006-06-25 05:47:30 -0700486 mtype == UFS_MOUNT_UFSTYPE_UFS2) {
487 /*we have statistic in different place, then usual*/
488 uspi->cs_total.cs_ndir = fs64_to_cpu(sb, usb2->fs_un.fs_u2.cs_ndir);
489 uspi->cs_total.cs_nbfree = fs64_to_cpu(sb, usb2->fs_un.fs_u2.cs_nbfree);
490 uspi->cs_total.cs_nifree = fs64_to_cpu(sb, usb3->fs_un1.fs_u2.cs_nifree);
491 uspi->cs_total.cs_nffree = fs64_to_cpu(sb, usb3->fs_un1.fs_u2.cs_nffree);
492 } else {
493 uspi->cs_total.cs_ndir = fs32_to_cpu(sb, usb1->fs_cstotal.cs_ndir);
494 uspi->cs_total.cs_nbfree = fs32_to_cpu(sb, usb1->fs_cstotal.cs_nbfree);
495 uspi->cs_total.cs_nifree = fs32_to_cpu(sb, usb1->fs_cstotal.cs_nifree);
496 uspi->cs_total.cs_nffree = fs32_to_cpu(sb, usb1->fs_cstotal.cs_nffree);
497 }
498 UFSD("EXIT\n");
499}
500
501/*
502 * Read on-disk structures associated with cylinder groups
503 */
504static int ufs_read_cylinder_structures(struct super_block *sb)
505{
506 struct ufs_sb_info *sbi = UFS_SB(sb);
507 struct ufs_sb_private_info *uspi = sbi->s_uspi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 struct ufs_buffer_head * ubh;
509 unsigned char * base, * space;
510 unsigned size, blks, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Evgeniy Dushistovee3ffd62006-06-25 05:47:30 -0700512 UFSD("ENTER\n");
513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 /*
515 * Read cs structures from (usually) first data block
516 * on the device.
517 */
518 size = uspi->s_cssize;
519 blks = (size + uspi->s_fsize - 1) >> uspi->s_fshift;
Arnd Bergmann788257d2011-01-24 10:14:12 +0100520 base = space = kmalloc(size, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 if (!base)
522 goto failed;
Evgeniy Dushistove295cfc2006-02-03 03:04:04 -0800523 sbi->s_csp = (struct ufs_csum *)space;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 for (i = 0; i < blks; i += uspi->s_fpb) {
525 size = uspi->s_bsize;
526 if (i + uspi->s_fpb > blks)
527 size = (blks - i) * uspi->s_fsize;
528
Evgeniy Dushistov3313e292007-02-12 00:54:31 -0800529 ubh = ubh_bread(sb, uspi->s_csaddr + i, size);
Evgeniy7b4ee732006-01-14 11:42:06 +0300530
531 if (!ubh)
532 goto failed;
533
534 ubh_ubhcpymem (space, ubh, size);
Evgeniy7b4ee732006-01-14 11:42:06 +0300535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 space += size;
537 ubh_brelse (ubh);
538 ubh = NULL;
539 }
540
541 /*
542 * Read cylinder group (we read only first fragment from block
543 * at this time) and prepare internal data structures for cg caching.
544 */
Kees Cook6da2ec52018-06-12 13:55:00 -0700545 sbi->s_ucg = kmalloc_array(uspi->s_ncg, sizeof(struct buffer_head *),
546 GFP_NOFS);
547 if (!sbi->s_ucg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 goto failed;
549 for (i = 0; i < uspi->s_ncg; i++)
550 sbi->s_ucg[i] = NULL;
551 for (i = 0; i < UFS_MAX_GROUP_LOADED; i++) {
552 sbi->s_ucpi[i] = NULL;
553 sbi->s_cgno[i] = UFS_CGNO_EMPTY;
554 }
555 for (i = 0; i < uspi->s_ncg; i++) {
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -0700556 UFSD("read cg %u\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 if (!(sbi->s_ucg[i] = sb_bread(sb, ufs_cgcmin(i))))
558 goto failed;
559 if (!ufs_cg_chkmagic (sb, (struct ufs_cylinder_group *) sbi->s_ucg[i]->b_data))
560 goto failed;
Evgeniy Dushistov647b7e82006-06-25 05:47:29 -0700561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 ufs_print_cylinder_stuff(sb, (struct ufs_cylinder_group *) sbi->s_ucg[i]->b_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 }
564 for (i = 0; i < UFS_MAX_GROUP_LOADED; i++) {
Arnd Bergmann788257d2011-01-24 10:14:12 +0100565 if (!(sbi->s_ucpi[i] = kmalloc (sizeof(struct ufs_cg_private_info), GFP_NOFS)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 goto failed;
567 sbi->s_cgno[i] = UFS_CGNO_EMPTY;
568 }
569 sbi->s_cg_loaded = 0;
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -0700570 UFSD("EXIT\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 return 1;
572
573failed:
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800574 kfree (base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 if (sbi->s_ucg) {
576 for (i = 0; i < uspi->s_ncg; i++)
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800577 if (sbi->s_ucg[i])
578 brelse (sbi->s_ucg[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 kfree (sbi->s_ucg);
580 for (i = 0; i < UFS_MAX_GROUP_LOADED; i++)
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800581 kfree (sbi->s_ucpi[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 }
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -0700583 UFSD("EXIT (FAILED)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 return 0;
585}
586
587/*
Evgeniy Dushistovee3ffd62006-06-25 05:47:30 -0700588 * Sync our internal copy of fs_cstotal with disk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 */
Evgeniy Dushistovee3ffd62006-06-25 05:47:30 -0700590static void ufs_put_cstotal(struct super_block *sb)
Evgeniy Dushistove295cfc2006-02-03 03:04:04 -0800591{
Evgeniy Dushistovee3ffd62006-06-25 05:47:30 -0700592 unsigned mtype = UFS_SB(sb)->s_mount_opt & UFS_MOUNT_UFSTYPE;
593 struct ufs_sb_private_info *uspi = UFS_SB(sb)->s_uspi;
594 struct ufs_super_block_first *usb1;
595 struct ufs_super_block_second *usb2;
596 struct ufs_super_block_third *usb3;
597
598 UFSD("ENTER\n");
599 usb1 = ubh_get_usb_first(uspi);
600 usb2 = ubh_get_usb_second(uspi);
601 usb3 = ubh_get_usb_third(uspi);
602
Al Viro96ecff12017-06-14 15:17:32 -0400603 if (mtype == UFS_MOUNT_UFSTYPE_UFS2) {
Evgeniy Dushistovee3ffd62006-06-25 05:47:30 -0700604 /*we have statistic in different place, then usual*/
605 usb2->fs_un.fs_u2.cs_ndir =
606 cpu_to_fs64(sb, uspi->cs_total.cs_ndir);
607 usb2->fs_un.fs_u2.cs_nbfree =
608 cpu_to_fs64(sb, uspi->cs_total.cs_nbfree);
609 usb3->fs_un1.fs_u2.cs_nifree =
610 cpu_to_fs64(sb, uspi->cs_total.cs_nifree);
611 usb3->fs_un1.fs_u2.cs_nffree =
612 cpu_to_fs64(sb, uspi->cs_total.cs_nffree);
Al Viro96ecff12017-06-14 15:17:32 -0400613 goto out;
Evgeniy Dushistovee3ffd62006-06-25 05:47:30 -0700614 }
Al Viro96ecff12017-06-14 15:17:32 -0400615
616 if (mtype == UFS_MOUNT_UFSTYPE_44BSD &&
617 (usb2->fs_un.fs_u2.fs_maxbsize == usb1->fs_bsize)) {
618 /* store stats in both old and new places */
619 usb2->fs_un.fs_u2.cs_ndir =
620 cpu_to_fs64(sb, uspi->cs_total.cs_ndir);
621 usb2->fs_un.fs_u2.cs_nbfree =
622 cpu_to_fs64(sb, uspi->cs_total.cs_nbfree);
623 usb3->fs_un1.fs_u2.cs_nifree =
624 cpu_to_fs64(sb, uspi->cs_total.cs_nifree);
625 usb3->fs_un1.fs_u2.cs_nffree =
626 cpu_to_fs64(sb, uspi->cs_total.cs_nffree);
627 }
628 usb1->fs_cstotal.cs_ndir = cpu_to_fs32(sb, uspi->cs_total.cs_ndir);
629 usb1->fs_cstotal.cs_nbfree = cpu_to_fs32(sb, uspi->cs_total.cs_nbfree);
630 usb1->fs_cstotal.cs_nifree = cpu_to_fs32(sb, uspi->cs_total.cs_nifree);
631 usb1->fs_cstotal.cs_nffree = cpu_to_fs32(sb, uspi->cs_total.cs_nffree);
632out:
Evgeniy Dushistovee3ffd62006-06-25 05:47:30 -0700633 ubh_mark_buffer_dirty(USPI_UBH(uspi));
Evgeniy Dushistov3313e292007-02-12 00:54:31 -0800634 ufs_print_super_stuff(sb, usb1, usb2, usb3);
Evgeniy Dushistovee3ffd62006-06-25 05:47:30 -0700635 UFSD("EXIT\n");
636}
637
638/**
639 * ufs_put_super_internal() - put on-disk intrenal structures
640 * @sb: pointer to super_block structure
641 * Put on-disk structures associated with cylinder groups
642 * and write them back to disk, also update cs_total on disk
643 */
644static void ufs_put_super_internal(struct super_block *sb)
645{
646 struct ufs_sb_info *sbi = UFS_SB(sb);
647 struct ufs_sb_private_info *uspi = sbi->s_uspi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 struct ufs_buffer_head * ubh;
649 unsigned char * base, * space;
650 unsigned blks, size, i;
Evgeniy Dushistovee3ffd62006-06-25 05:47:30 -0700651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -0700653 UFSD("ENTER\n");
Christoph Hellwig6cfd0142009-05-05 15:40:36 +0200654
Evgeniy Dushistovee3ffd62006-06-25 05:47:30 -0700655 ufs_put_cstotal(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 size = uspi->s_cssize;
657 blks = (size + uspi->s_fsize - 1) >> uspi->s_fshift;
Evgeniy Dushistove295cfc2006-02-03 03:04:04 -0800658 base = space = (char*) sbi->s_csp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 for (i = 0; i < blks; i += uspi->s_fpb) {
660 size = uspi->s_bsize;
661 if (i + uspi->s_fpb > blks)
662 size = (blks - i) * uspi->s_fsize;
Evgeniy Dushistov3313e292007-02-12 00:54:31 -0800663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 ubh = ubh_bread(sb, uspi->s_csaddr + i, size);
Evgeniy Dushistov3313e292007-02-12 00:54:31 -0800665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 ubh_memcpyubh (ubh, space, size);
667 space += size;
668 ubh_mark_buffer_uptodate (ubh, 1);
669 ubh_mark_buffer_dirty (ubh);
670 ubh_brelse (ubh);
671 }
672 for (i = 0; i < sbi->s_cg_loaded; i++) {
673 ufs_put_cylinder (sb, i);
674 kfree (sbi->s_ucpi[i]);
675 }
676 for (; i < UFS_MAX_GROUP_LOADED; i++)
677 kfree (sbi->s_ucpi[i]);
678 for (i = 0; i < uspi->s_ncg; i++)
679 brelse (sbi->s_ucg[i]);
680 kfree (sbi->s_ucg);
681 kfree (base);
Christoph Hellwig6cfd0142009-05-05 15:40:36 +0200682
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -0700683 UFSD("EXIT\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684}
685
Artem Bityutskiy7bd54ef72012-07-12 16:28:07 +0300686static int ufs_sync_fs(struct super_block *sb, int wait)
687{
688 struct ufs_sb_private_info * uspi;
689 struct ufs_super_block_first * usb1;
690 struct ufs_super_block_third * usb3;
691 unsigned flags;
692
Fabian Frederickcdd9eef2015-06-10 10:09:32 +1000693 mutex_lock(&UFS_SB(sb)->s_lock);
Artem Bityutskiy7bd54ef72012-07-12 16:28:07 +0300694
695 UFSD("ENTER\n");
696
697 flags = UFS_SB(sb)->s_flags;
698 uspi = UFS_SB(sb)->s_uspi;
699 usb1 = ubh_get_usb_first(uspi);
700 usb3 = ubh_get_usb_third(uspi);
701
Arnd Bergmanna3fda0f2018-08-17 15:43:47 -0700702 usb1->fs_time = ufs_get_seconds(sb);
Artem Bityutskiy7bd54ef72012-07-12 16:28:07 +0300703 if ((flags & UFS_ST_MASK) == UFS_ST_SUN ||
704 (flags & UFS_ST_MASK) == UFS_ST_SUNOS ||
705 (flags & UFS_ST_MASK) == UFS_ST_SUNx86)
706 ufs_set_fs_state(sb, usb1, usb3,
707 UFS_FSOK - fs32_to_cpu(sb, usb1->fs_time));
708 ufs_put_cstotal(sb);
Artem Bityutskiy7bd54ef72012-07-12 16:28:07 +0300709
710 UFSD("EXIT\n");
Fabian Frederickcdd9eef2015-06-10 10:09:32 +1000711 mutex_unlock(&UFS_SB(sb)->s_lock);
Artem Bityutskiy7bd54ef72012-07-12 16:28:07 +0300712
713 return 0;
714}
715
Artem Bityutskiy9e9ad5f2012-07-12 16:28:08 +0300716static void delayed_sync_fs(struct work_struct *work)
Artem Bityutskiy7bd54ef72012-07-12 16:28:07 +0300717{
Artem Bityutskiy9e9ad5f2012-07-12 16:28:08 +0300718 struct ufs_sb_info *sbi;
719
720 sbi = container_of(work, struct ufs_sb_info, sync_work.work);
721
722 spin_lock(&sbi->work_lock);
723 sbi->work_queued = 0;
724 spin_unlock(&sbi->work_lock);
725
726 ufs_sync_fs(sbi->sb, 1);
727}
728
729void ufs_mark_sb_dirty(struct super_block *sb)
730{
731 struct ufs_sb_info *sbi = UFS_SB(sb);
732 unsigned long delay;
733
734 spin_lock(&sbi->work_lock);
735 if (!sbi->work_queued) {
736 delay = msecs_to_jiffies(dirty_writeback_interval * 10);
737 queue_delayed_work(system_long_wq, &sbi->sync_work, delay);
738 sbi->work_queued = 1;
739 }
740 spin_unlock(&sbi->work_lock);
Artem Bityutskiy7bd54ef72012-07-12 16:28:07 +0300741}
742
743static void ufs_put_super(struct super_block *sb)
744{
745 struct ufs_sb_info * sbi = UFS_SB(sb);
746
747 UFSD("ENTER\n");
748
David Howellsbc98a422017-07-17 08:45:34 +0100749 if (!sb_rdonly(sb))
Artem Bityutskiy7bd54ef72012-07-12 16:28:07 +0300750 ufs_put_super_internal(sb);
Artem Bityutskiy9e9ad5f2012-07-12 16:28:08 +0300751 cancel_delayed_work_sync(&sbi->sync_work);
Artem Bityutskiy7bd54ef72012-07-12 16:28:07 +0300752
753 ubh_brelse_uspi (sbi->s_uspi);
754 kfree (sbi->s_uspi);
755 kfree (sbi);
756 sb->s_fs_info = NULL;
757 UFSD("EXIT\n");
758 return;
759}
760
Al Viro6b0d1442017-06-08 21:15:45 -0400761static u64 ufs_max_bytes(struct super_block *sb)
762{
763 struct ufs_sb_private_info *uspi = UFS_SB(sb)->s_uspi;
764 int bits = uspi->s_apbshift;
765 u64 res;
766
767 if (bits > 21)
768 res = ~0ULL;
769 else
770 res = UFS_NDADDR + (1LL << bits) + (1LL << (2*bits)) +
771 (1LL << (3*bits));
772
773 if (res >= (MAX_LFS_FILESIZE >> uspi->s_bshift))
774 return MAX_LFS_FILESIZE;
775 return res << uspi->s_bshift;
776}
777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778static int ufs_fill_super(struct super_block *sb, void *data, int silent)
779{
780 struct ufs_sb_info * sbi;
781 struct ufs_sb_private_info * uspi;
782 struct ufs_super_block_first * usb1;
783 struct ufs_super_block_second * usb2;
784 struct ufs_super_block_third * usb3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 struct ufs_buffer_head * ubh;
786 struct inode *inode;
787 unsigned block_size, super_block_size;
788 unsigned flags;
Evgeniy7b4ee732006-01-14 11:42:06 +0300789 unsigned super_block_offset;
Duane Griffin9e6766c2009-01-08 22:43:48 +0000790 unsigned maxsymlen;
David Howellsb55c4602008-02-07 00:15:48 -0800791 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
793 uspi = NULL;
794 ubh = NULL;
795 flags = 0;
796
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -0700797 UFSD("ENTER\n");
Fabian Frederick02447562014-06-06 14:38:34 -0700798
799#ifndef CONFIG_UFS_FS_WRITE
David Howellsbc98a422017-07-17 08:45:34 +0100800 if (!sb_rdonly(sb)) {
Fabian Fredericka9814c52014-08-08 14:20:57 -0700801 pr_err("ufs was compiled with read-only support, can't be mounted as read-write\n");
Fabian Frederick02447562014-06-06 14:38:34 -0700802 return -EROFS;
803 }
804#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
Panagiotis Issarisf8314dc2006-09-27 01:49:37 -0700806 sbi = kzalloc(sizeof(struct ufs_sb_info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 if (!sbi)
808 goto failed_nomem;
809 sb->s_fs_info = sbi;
Artem Bityutskiy9e9ad5f2012-07-12 16:28:08 +0300810 sbi->sb = sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
David Howellsbc98a422017-07-17 08:45:34 +0100812 UFSD("flag %u\n", (int)(sb_rdonly(sb)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Fabian Fredericke4f95512015-06-17 18:15:45 +0200814 mutex_init(&sbi->s_lock);
Artem Bityutskiy9e9ad5f2012-07-12 16:28:08 +0300815 spin_lock_init(&sbi->work_lock);
816 INIT_DELAYED_WORK(&sbi->sync_work, delayed_sync_fs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 /*
818 * Set default mount options
819 * Parse mount options
820 */
821 sbi->s_mount_opt = 0;
822 ufs_set_opt (sbi->s_mount_opt, ONERROR_LOCK);
823 if (!ufs_parse_options ((char *) data, &sbi->s_mount_opt)) {
Fabian Fredericka9814c52014-08-08 14:20:57 -0700824 pr_err("wrong mount options\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 goto failed;
826 }
827 if (!(sbi->s_mount_opt & UFS_MOUNT_UFSTYPE)) {
828 if (!silent)
Fabian Fredericka9814c52014-08-08 14:20:57 -0700829 pr_err("You didn't specify the type of your ufs filesystem\n\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 "mount -t ufs -o ufstype="
Michael Owenc690a722006-03-24 18:21:44 +0100831 "sun|sunx86|44bsd|ufs2|5xbsd|old|hp|nextstep|nextstep-cd|openstep ...\n\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 ">>>WARNING<<< Wrong ufstype may corrupt your filesystem, "
833 "default is ufstype=old\n");
834 ufs_set_opt (sbi->s_mount_opt, UFSTYPE_OLD);
835 }
836
Mark Fortescue252e2112007-10-16 23:26:31 -0700837 uspi = kzalloc(sizeof(struct ufs_sb_private_info), GFP_KERNEL);
838 sbi->s_uspi = uspi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 if (!uspi)
840 goto failed;
Evgeniy Dushistovf3369532007-02-08 14:20:25 -0800841 uspi->s_dirblksize = UFS_SECTOR_SIZE;
Evgeniy7b4ee732006-01-14 11:42:06 +0300842 super_block_offset=UFS_SBLOCK;
843
Richard Narron239e2502017-06-04 16:23:18 -0700844 sb->s_maxbytes = MAX_LFS_FILESIZE;
845
Deepa Dinamani22b13962019-07-30 08:22:29 -0700846 sb->s_time_gran = NSEC_PER_SEC;
847 sb->s_time_min = S32_MIN;
848 sb->s_time_max = S32_MAX;
849
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 switch (sbi->s_mount_opt & UFS_MOUNT_UFSTYPE) {
851 case UFS_MOUNT_UFSTYPE_44BSD:
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -0700852 UFSD("ufstype=44bsd\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 uspi->s_fsize = block_size = 512;
854 uspi->s_fmask = ~(512 - 1);
855 uspi->s_fshift = 9;
856 uspi->s_sbsize = super_block_size = 1536;
857 uspi->s_sbbase = 0;
858 flags |= UFS_DE_44BSD | UFS_UID_44BSD | UFS_ST_44BSD | UFS_CG_44BSD;
859 break;
860 case UFS_MOUNT_UFSTYPE_UFS2:
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -0700861 UFSD("ufstype=ufs2\n");
Evgeniy7b4ee732006-01-14 11:42:06 +0300862 super_block_offset=SBLOCK_UFS2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 uspi->s_fsize = block_size = 512;
864 uspi->s_fmask = ~(512 - 1);
865 uspi->s_fshift = 9;
866 uspi->s_sbsize = super_block_size = 1536;
867 uspi->s_sbbase = 0;
Deepa Dinamani22b13962019-07-30 08:22:29 -0700868 sb->s_time_gran = 1;
869 sb->s_time_min = S64_MIN;
870 sb->s_time_max = S64_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 flags |= UFS_TYPE_UFS2 | UFS_DE_44BSD | UFS_UID_44BSD | UFS_ST_44BSD | UFS_CG_44BSD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 break;
873
874 case UFS_MOUNT_UFSTYPE_SUN:
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -0700875 UFSD("ufstype=sun\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 uspi->s_fsize = block_size = 1024;
877 uspi->s_fmask = ~(1024 - 1);
878 uspi->s_fshift = 10;
879 uspi->s_sbsize = super_block_size = 2048;
880 uspi->s_sbbase = 0;
Mark Fortescue252e2112007-10-16 23:26:31 -0700881 uspi->s_maxsymlinklen = 0; /* Not supported on disk */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 flags |= UFS_DE_OLD | UFS_UID_EFT | UFS_ST_SUN | UFS_CG_SUN;
883 break;
884
Mark Fortescue252e2112007-10-16 23:26:31 -0700885 case UFS_MOUNT_UFSTYPE_SUNOS:
Fabian Frederickd4beaab2014-08-08 14:21:05 -0700886 UFSD("ufstype=sunos\n");
Mark Fortescue252e2112007-10-16 23:26:31 -0700887 uspi->s_fsize = block_size = 1024;
888 uspi->s_fmask = ~(1024 - 1);
889 uspi->s_fshift = 10;
890 uspi->s_sbsize = 2048;
891 super_block_size = 2048;
892 uspi->s_sbbase = 0;
893 uspi->s_maxsymlinklen = 0; /* Not supported on disk */
894 flags |= UFS_DE_OLD | UFS_UID_OLD | UFS_ST_SUNOS | UFS_CG_SUN;
895 break;
896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 case UFS_MOUNT_UFSTYPE_SUNx86:
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -0700898 UFSD("ufstype=sunx86\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 uspi->s_fsize = block_size = 1024;
900 uspi->s_fmask = ~(1024 - 1);
901 uspi->s_fshift = 10;
902 uspi->s_sbsize = super_block_size = 2048;
903 uspi->s_sbbase = 0;
Mark Fortescue252e2112007-10-16 23:26:31 -0700904 uspi->s_maxsymlinklen = 0; /* Not supported on disk */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 flags |= UFS_DE_OLD | UFS_UID_EFT | UFS_ST_SUNx86 | UFS_CG_SUN;
906 break;
907
908 case UFS_MOUNT_UFSTYPE_OLD:
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -0700909 UFSD("ufstype=old\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 uspi->s_fsize = block_size = 1024;
911 uspi->s_fmask = ~(1024 - 1);
912 uspi->s_fshift = 10;
913 uspi->s_sbsize = super_block_size = 2048;
914 uspi->s_sbbase = 0;
915 flags |= UFS_DE_OLD | UFS_UID_OLD | UFS_ST_OLD | UFS_CG_OLD;
David Howellsbc98a422017-07-17 08:45:34 +0100916 if (!sb_rdonly(sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 if (!silent)
Fabian Fredericka9814c52014-08-08 14:20:57 -0700918 pr_info("ufstype=old is supported read-only\n");
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800919 sb->s_flags |= SB_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 }
921 break;
922
923 case UFS_MOUNT_UFSTYPE_NEXTSTEP:
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -0700924 UFSD("ufstype=nextstep\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 uspi->s_fsize = block_size = 1024;
926 uspi->s_fmask = ~(1024 - 1);
927 uspi->s_fshift = 10;
928 uspi->s_sbsize = super_block_size = 2048;
929 uspi->s_sbbase = 0;
Evgeniy Dushistov0c664f92007-12-04 23:45:06 -0800930 uspi->s_dirblksize = 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 flags |= UFS_DE_OLD | UFS_UID_OLD | UFS_ST_OLD | UFS_CG_OLD;
David Howellsbc98a422017-07-17 08:45:34 +0100932 if (!sb_rdonly(sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 if (!silent)
Fabian Fredericka9814c52014-08-08 14:20:57 -0700934 pr_info("ufstype=nextstep is supported read-only\n");
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800935 sb->s_flags |= SB_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 }
937 break;
938
939 case UFS_MOUNT_UFSTYPE_NEXTSTEP_CD:
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -0700940 UFSD("ufstype=nextstep-cd\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 uspi->s_fsize = block_size = 2048;
942 uspi->s_fmask = ~(2048 - 1);
943 uspi->s_fshift = 11;
944 uspi->s_sbsize = super_block_size = 2048;
945 uspi->s_sbbase = 0;
Evgeniy Dushistov0c664f92007-12-04 23:45:06 -0800946 uspi->s_dirblksize = 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 flags |= UFS_DE_OLD | UFS_UID_OLD | UFS_ST_OLD | UFS_CG_OLD;
David Howellsbc98a422017-07-17 08:45:34 +0100948 if (!sb_rdonly(sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 if (!silent)
Fabian Fredericka9814c52014-08-08 14:20:57 -0700950 pr_info("ufstype=nextstep-cd is supported read-only\n");
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800951 sb->s_flags |= SB_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 }
953 break;
954
955 case UFS_MOUNT_UFSTYPE_OPENSTEP:
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -0700956 UFSD("ufstype=openstep\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 uspi->s_fsize = block_size = 1024;
958 uspi->s_fmask = ~(1024 - 1);
959 uspi->s_fshift = 10;
960 uspi->s_sbsize = super_block_size = 2048;
961 uspi->s_sbbase = 0;
Evgeniy Dushistovf3369532007-02-08 14:20:25 -0800962 uspi->s_dirblksize = 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 flags |= UFS_DE_44BSD | UFS_UID_44BSD | UFS_ST_44BSD | UFS_CG_44BSD;
David Howellsbc98a422017-07-17 08:45:34 +0100964 if (!sb_rdonly(sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 if (!silent)
Fabian Fredericka9814c52014-08-08 14:20:57 -0700966 pr_info("ufstype=openstep is supported read-only\n");
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800967 sb->s_flags |= SB_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 }
969 break;
970
971 case UFS_MOUNT_UFSTYPE_HP:
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -0700972 UFSD("ufstype=hp\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 uspi->s_fsize = block_size = 1024;
974 uspi->s_fmask = ~(1024 - 1);
975 uspi->s_fshift = 10;
976 uspi->s_sbsize = super_block_size = 2048;
977 uspi->s_sbbase = 0;
978 flags |= UFS_DE_OLD | UFS_UID_OLD | UFS_ST_OLD | UFS_CG_OLD;
David Howellsbc98a422017-07-17 08:45:34 +0100979 if (!sb_rdonly(sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 if (!silent)
Fabian Fredericka9814c52014-08-08 14:20:57 -0700981 pr_info("ufstype=hp is supported read-only\n");
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800982 sb->s_flags |= SB_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 }
984 break;
985 default:
986 if (!silent)
Fabian Fredericka9814c52014-08-08 14:20:57 -0700987 pr_err("unknown ufstype\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 goto failed;
989 }
990
991again:
992 if (!sb_set_blocksize(sb, block_size)) {
Fabian Frederickde771bd2014-08-08 14:20:59 -0700993 pr_err("failed to set blocksize\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 goto failed;
995 }
996
997 /*
998 * read ufs super block from device
999 */
Evgeniy7b4ee732006-01-14 11:42:06 +03001000
1001 ubh = ubh_bread_uspi(uspi, sb, uspi->s_sbbase + super_block_offset/block_size, super_block_size);
1002
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 if (!ubh)
1004 goto failed;
1005
Evgeniy7b4ee732006-01-14 11:42:06 +03001006 usb1 = ubh_get_usb_first(uspi);
1007 usb2 = ubh_get_usb_second(uspi);
1008 usb3 = ubh_get_usb_third(uspi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
Mark Fortescue252e2112007-10-16 23:26:31 -07001010 /* Sort out mod used on SunOS 4.1.3 for fs_state */
1011 uspi->s_postblformat = fs32_to_cpu(sb, usb3->fs_postblformat);
1012 if (((flags & UFS_ST_MASK) == UFS_ST_SUNOS) &&
1013 (uspi->s_postblformat != UFS_42POSTBLFMT)) {
1014 flags &= ~UFS_ST_MASK;
1015 flags |= UFS_ST_SUN;
1016 }
1017
Al Viro96ecff12017-06-14 15:17:32 -04001018 if ((flags & UFS_ST_MASK) == UFS_ST_44BSD &&
1019 uspi->s_postblformat == UFS_42POSTBLFMT) {
1020 if (!silent)
1021 pr_err("this is not a 44bsd filesystem");
1022 goto failed;
1023 }
1024
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 /*
1026 * Check ufs magic number
1027 */
1028 sbi->s_bytesex = BYTESEX_LE;
1029 switch ((uspi->fs_magic = fs32_to_cpu(sb, usb3->fs_magic))) {
1030 case UFS_MAGIC:
Thomas Stewartd27d7a92010-05-26 14:42:33 -07001031 case UFS_MAGIC_BW:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 case UFS2_MAGIC:
1033 case UFS_MAGIC_LFN:
1034 case UFS_MAGIC_FEA:
1035 case UFS_MAGIC_4GB:
1036 goto magic_found;
1037 }
1038 sbi->s_bytesex = BYTESEX_BE;
1039 switch ((uspi->fs_magic = fs32_to_cpu(sb, usb3->fs_magic))) {
1040 case UFS_MAGIC:
Thomas Stewartd27d7a92010-05-26 14:42:33 -07001041 case UFS_MAGIC_BW:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 case UFS2_MAGIC:
1043 case UFS_MAGIC_LFN:
1044 case UFS_MAGIC_FEA:
1045 case UFS_MAGIC_4GB:
1046 goto magic_found;
1047 }
1048
1049 if ((((sbi->s_mount_opt & UFS_MOUNT_UFSTYPE) == UFS_MOUNT_UFSTYPE_NEXTSTEP)
1050 || ((sbi->s_mount_opt & UFS_MOUNT_UFSTYPE) == UFS_MOUNT_UFSTYPE_NEXTSTEP_CD)
1051 || ((sbi->s_mount_opt & UFS_MOUNT_UFSTYPE) == UFS_MOUNT_UFSTYPE_OPENSTEP))
1052 && uspi->s_sbbase < 256) {
1053 ubh_brelse_uspi(uspi);
1054 ubh = NULL;
1055 uspi->s_sbbase += 8;
1056 goto again;
1057 }
1058 if (!silent)
Fabian Frederick07bc94f2014-08-08 14:21:01 -07001059 pr_err("%s(): bad magic number\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 goto failed;
1061
1062magic_found:
1063 /*
1064 * Check block and fragment sizes
1065 */
1066 uspi->s_bsize = fs32_to_cpu(sb, usb1->fs_bsize);
1067 uspi->s_fsize = fs32_to_cpu(sb, usb1->fs_fsize);
1068 uspi->s_sbsize = fs32_to_cpu(sb, usb1->fs_sbsize);
1069 uspi->s_fmask = fs32_to_cpu(sb, usb1->fs_fmask);
1070 uspi->s_fshift = fs32_to_cpu(sb, usb1->fs_fshift);
1071
vignesh babu9e8c4272007-07-15 23:41:36 -07001072 if (!is_power_of_2(uspi->s_fsize)) {
Fabian Frederick07bc94f2014-08-08 14:21:01 -07001073 pr_err("%s(): fragment size %u is not a power of 2\n",
1074 __func__, uspi->s_fsize);
Fabian Fredericka9814c52014-08-08 14:20:57 -07001075 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 }
1077 if (uspi->s_fsize < 512) {
Fabian Frederick07bc94f2014-08-08 14:21:01 -07001078 pr_err("%s(): fragment size %u is too small\n",
1079 __func__, uspi->s_fsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 goto failed;
1081 }
1082 if (uspi->s_fsize > 4096) {
Fabian Frederick07bc94f2014-08-08 14:21:01 -07001083 pr_err("%s(): fragment size %u is too large\n",
1084 __func__, uspi->s_fsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 goto failed;
1086 }
vignesh babu9e8c4272007-07-15 23:41:36 -07001087 if (!is_power_of_2(uspi->s_bsize)) {
Fabian Frederick07bc94f2014-08-08 14:21:01 -07001088 pr_err("%s(): block size %u is not a power of 2\n",
1089 __func__, uspi->s_bsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 goto failed;
1091 }
1092 if (uspi->s_bsize < 4096) {
Fabian Frederick07bc94f2014-08-08 14:21:01 -07001093 pr_err("%s(): block size %u is too small\n",
1094 __func__, uspi->s_bsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 goto failed;
1096 }
1097 if (uspi->s_bsize / uspi->s_fsize > 8) {
Fabian Frederick07bc94f2014-08-08 14:21:01 -07001098 pr_err("%s(): too many fragments per block (%u)\n",
1099 __func__, uspi->s_bsize / uspi->s_fsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 goto failed;
1101 }
1102 if (uspi->s_fsize != block_size || uspi->s_sbsize != super_block_size) {
1103 ubh_brelse_uspi(uspi);
1104 ubh = NULL;
1105 block_size = uspi->s_fsize;
1106 super_block_size = uspi->s_sbsize;
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -07001107 UFSD("another value of block_size or super_block_size %u, %u\n", block_size, super_block_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 goto again;
1109 }
1110
Andrew Mortonf664f1f2007-10-29 14:37:21 -07001111 sbi->s_flags = flags;/*after that line some functions use s_flags*/
Evgeniy Dushistov3313e292007-02-12 00:54:31 -08001112 ufs_print_super_stuff(sb, usb1, usb2, usb3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
1114 /*
1115 * Check, if file system was correctly unmounted.
1116 * If not, make it read only.
1117 */
Andrew Mortonf664f1f2007-10-29 14:37:21 -07001118 if (((flags & UFS_ST_MASK) == UFS_ST_44BSD) ||
1119 ((flags & UFS_ST_MASK) == UFS_ST_OLD) ||
1120 (((flags & UFS_ST_MASK) == UFS_ST_SUN ||
1121 (flags & UFS_ST_MASK) == UFS_ST_SUNOS ||
1122 (flags & UFS_ST_MASK) == UFS_ST_SUNx86) &&
1123 (ufs_get_fs_state(sb, usb1, usb3) == (UFS_FSOK - fs32_to_cpu(sb, usb1->fs_time))))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 switch(usb1->fs_clean) {
1125 case UFS_FSCLEAN:
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -07001126 UFSD("fs is clean\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 break;
1128 case UFS_FSSTABLE:
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -07001129 UFSD("fs is stable\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 break;
Alex Viskovatoffb3a0fd42010-03-10 15:21:53 -08001131 case UFS_FSLOG:
1132 UFSD("fs is logging fs\n");
1133 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 case UFS_FSOSF1:
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -07001135 UFSD("fs is DEC OSF/1\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 break;
1137 case UFS_FSACTIVE:
Fabian Frederick07bc94f2014-08-08 14:21:01 -07001138 pr_err("%s(): fs is active\n", __func__);
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001139 sb->s_flags |= SB_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 break;
1141 case UFS_FSBAD:
Fabian Frederick07bc94f2014-08-08 14:21:01 -07001142 pr_err("%s(): fs is bad\n", __func__);
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001143 sb->s_flags |= SB_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 break;
1145 default:
Fabian Frederick07bc94f2014-08-08 14:21:01 -07001146 pr_err("%s(): can't grok fs_clean 0x%x\n",
1147 __func__, usb1->fs_clean);
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001148 sb->s_flags |= SB_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 break;
1150 }
Evgeniy Dushistovee3ffd62006-06-25 05:47:30 -07001151 } else {
Fabian Frederick07bc94f2014-08-08 14:21:01 -07001152 pr_err("%s(): fs needs fsck\n", __func__);
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001153 sb->s_flags |= SB_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 }
1155
1156 /*
1157 * Read ufs_super_block into internal data structures
1158 */
1159 sb->s_op = &ufs_super_ops;
Alexey Dobriyanf3e2a522009-12-15 16:46:51 -08001160 sb->s_export_op = &ufs_export_ops;
Christoph Hellwig123e9ca2010-05-19 07:16:44 -04001161
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 sb->s_magic = fs32_to_cpu(sb, usb3->fs_magic);
1163
1164 uspi->s_sblkno = fs32_to_cpu(sb, usb1->fs_sblkno);
1165 uspi->s_cblkno = fs32_to_cpu(sb, usb1->fs_cblkno);
1166 uspi->s_iblkno = fs32_to_cpu(sb, usb1->fs_iblkno);
1167 uspi->s_dblkno = fs32_to_cpu(sb, usb1->fs_dblkno);
1168 uspi->s_cgoffset = fs32_to_cpu(sb, usb1->fs_cgoffset);
1169 uspi->s_cgmask = fs32_to_cpu(sb, usb1->fs_cgmask);
1170
1171 if ((flags & UFS_TYPE_MASK) == UFS_TYPE_UFS2) {
Al Viroc5969612017-06-14 16:36:29 -04001172 uspi->s_size = fs64_to_cpu(sb, usb3->fs_un1.fs_u2.fs_size);
1173 uspi->s_dsize = fs64_to_cpu(sb, usb3->fs_un1.fs_u2.fs_dsize);
Evgeniy Dushistov647b7e82006-06-25 05:47:29 -07001174 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 uspi->s_size = fs32_to_cpu(sb, usb1->fs_size);
1176 uspi->s_dsize = fs32_to_cpu(sb, usb1->fs_dsize);
1177 }
1178
1179 uspi->s_ncg = fs32_to_cpu(sb, usb1->fs_ncg);
1180 /* s_bsize already set */
1181 /* s_fsize already set */
1182 uspi->s_fpb = fs32_to_cpu(sb, usb1->fs_frag);
1183 uspi->s_minfree = fs32_to_cpu(sb, usb1->fs_minfree);
1184 uspi->s_bmask = fs32_to_cpu(sb, usb1->fs_bmask);
1185 uspi->s_fmask = fs32_to_cpu(sb, usb1->fs_fmask);
1186 uspi->s_bshift = fs32_to_cpu(sb, usb1->fs_bshift);
1187 uspi->s_fshift = fs32_to_cpu(sb, usb1->fs_fshift);
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -07001188 UFSD("uspi->s_bshift = %d,uspi->s_fshift = %d", uspi->s_bshift,
1189 uspi->s_fshift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 uspi->s_fpbshift = fs32_to_cpu(sb, usb1->fs_fragshift);
1191 uspi->s_fsbtodb = fs32_to_cpu(sb, usb1->fs_fsbtodb);
1192 /* s_sbsize already set */
1193 uspi->s_csmask = fs32_to_cpu(sb, usb1->fs_csmask);
1194 uspi->s_csshift = fs32_to_cpu(sb, usb1->fs_csshift);
1195 uspi->s_nindir = fs32_to_cpu(sb, usb1->fs_nindir);
1196 uspi->s_inopb = fs32_to_cpu(sb, usb1->fs_inopb);
1197 uspi->s_nspf = fs32_to_cpu(sb, usb1->fs_nspf);
1198 uspi->s_npsect = ufs_get_fs_npsect(sb, usb1, usb3);
1199 uspi->s_interleave = fs32_to_cpu(sb, usb1->fs_interleave);
1200 uspi->s_trackskew = fs32_to_cpu(sb, usb1->fs_trackskew);
Evgeniy Dushistov3313e292007-02-12 00:54:31 -08001201
1202 if (uspi->fs_magic == UFS2_MAGIC)
1203 uspi->s_csaddr = fs64_to_cpu(sb, usb3->fs_un1.fs_u2.fs_csaddr);
1204 else
1205 uspi->s_csaddr = fs32_to_cpu(sb, usb1->fs_csaddr);
1206
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 uspi->s_cssize = fs32_to_cpu(sb, usb1->fs_cssize);
1208 uspi->s_cgsize = fs32_to_cpu(sb, usb1->fs_cgsize);
1209 uspi->s_ntrak = fs32_to_cpu(sb, usb1->fs_ntrak);
1210 uspi->s_nsect = fs32_to_cpu(sb, usb1->fs_nsect);
1211 uspi->s_spc = fs32_to_cpu(sb, usb1->fs_spc);
1212 uspi->s_ipg = fs32_to_cpu(sb, usb1->fs_ipg);
1213 uspi->s_fpg = fs32_to_cpu(sb, usb1->fs_fpg);
Evgeniy Dushistov647b7e82006-06-25 05:47:29 -07001214 uspi->s_cpc = fs32_to_cpu(sb, usb2->fs_un.fs_u1.fs_cpc);
1215 uspi->s_contigsumsize = fs32_to_cpu(sb, usb3->fs_un2.fs_44.fs_contigsumsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 uspi->s_qbmask = ufs_get_fs_qbmask(sb, usb3);
1217 uspi->s_qfmask = ufs_get_fs_qfmask(sb, usb3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 uspi->s_nrpos = fs32_to_cpu(sb, usb3->fs_nrpos);
1219 uspi->s_postbloff = fs32_to_cpu(sb, usb3->fs_postbloff);
1220 uspi->s_rotbloff = fs32_to_cpu(sb, usb3->fs_rotbloff);
1221
Al Viroc5969612017-06-14 16:36:29 -04001222 uspi->s_root_blocks = mul_u64_u32_div(uspi->s_dsize,
1223 uspi->s_minfree, 100);
Al Viro77e9ce32017-06-17 15:44:06 -04001224 if (uspi->s_minfree <= 5) {
1225 uspi->s_time_to_space = ~0ULL;
1226 uspi->s_space_to_time = 0;
1227 usb1->fs_optim = cpu_to_fs32(sb, UFS_OPTSPACE);
1228 } else {
1229 uspi->s_time_to_space = (uspi->s_root_blocks / 2) + 1;
1230 uspi->s_space_to_time = mul_u64_u32_div(uspi->s_dsize,
1231 uspi->s_minfree - 2, 100) - 1;
1232 }
Al Viroc5969612017-06-14 16:36:29 -04001233
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 /*
1235 * Compute another frequently used values
1236 */
1237 uspi->s_fpbmask = uspi->s_fpb - 1;
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -07001238 if ((flags & UFS_TYPE_MASK) == UFS_TYPE_UFS2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 uspi->s_apbshift = uspi->s_bshift - 3;
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -07001240 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 uspi->s_apbshift = uspi->s_bshift - 2;
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -07001242
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 uspi->s_2apbshift = uspi->s_apbshift * 2;
1244 uspi->s_3apbshift = uspi->s_apbshift * 3;
1245 uspi->s_apb = 1 << uspi->s_apbshift;
1246 uspi->s_2apb = 1 << uspi->s_2apbshift;
1247 uspi->s_3apb = 1 << uspi->s_3apbshift;
1248 uspi->s_apbmask = uspi->s_apb - 1;
1249 uspi->s_nspfshift = uspi->s_fshift - UFS_SECTOR_BITS;
1250 uspi->s_nspb = uspi->s_nspf << uspi->s_fpbshift;
1251 uspi->s_inopf = uspi->s_inopb >> uspi->s_fpbshift;
1252 uspi->s_bpf = uspi->s_fsize << 3;
1253 uspi->s_bpfshift = uspi->s_fshift + 3;
1254 uspi->s_bpfmask = uspi->s_bpf - 1;
Evgeniy Dushistov90b315a2008-02-08 04:20:16 -08001255 if ((sbi->s_mount_opt & UFS_MOUNT_UFSTYPE) == UFS_MOUNT_UFSTYPE_44BSD ||
1256 (sbi->s_mount_opt & UFS_MOUNT_UFSTYPE) == UFS_MOUNT_UFSTYPE_UFS2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 uspi->s_maxsymlinklen =
Evgeniy Dushistov647b7e82006-06-25 05:47:29 -07001258 fs32_to_cpu(sb, usb3->fs_un2.fs_44.fs_maxsymlinklen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
Duane Griffin9e6766c2009-01-08 22:43:48 +00001260 if (uspi->fs_magic == UFS2_MAGIC)
1261 maxsymlen = 2 * 4 * (UFS_NDADDR + UFS_NINDIR);
1262 else
1263 maxsymlen = 4 * (UFS_NDADDR + UFS_NINDIR);
1264 if (uspi->s_maxsymlinklen > maxsymlen) {
1265 ufs_warning(sb, __func__, "ufs_read_super: excessive maximum "
1266 "fast symlink size (%u)\n", uspi->s_maxsymlinklen);
1267 uspi->s_maxsymlinklen = maxsymlen;
1268 }
Al Viro6b0d1442017-06-08 21:15:45 -04001269 sb->s_maxbytes = ufs_max_bytes(sb);
Al Viro8de52772012-02-06 12:45:27 -05001270 sb->s_max_links = UFS_LINK_MAX;
Duane Griffin9e6766c2009-01-08 22:43:48 +00001271
David Howellsb55c4602008-02-07 00:15:48 -08001272 inode = ufs_iget(sb, UFS_ROOTINO);
1273 if (IS_ERR(inode)) {
1274 ret = PTR_ERR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 goto failed;
David Howellsb55c4602008-02-07 00:15:48 -08001276 }
Al Viro48fde702012-01-08 22:15:13 -05001277 sb->s_root = d_make_root(inode);
David Howellsb55c4602008-02-07 00:15:48 -08001278 if (!sb->s_root) {
1279 ret = -ENOMEM;
Al Viro48fde702012-01-08 22:15:13 -05001280 goto failed;
David Howellsb55c4602008-02-07 00:15:48 -08001281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
Evgeniy Dushistovee3ffd62006-06-25 05:47:30 -07001283 ufs_setup_cstotal(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 /*
1285 * Read cylinder group structures
1286 */
David Howellsbc98a422017-07-17 08:45:34 +01001287 if (!sb_rdonly(sb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 if (!ufs_read_cylinder_structures(sb))
1289 goto failed;
1290
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -07001291 UFSD("EXIT\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 return 0;
1293
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294failed:
Jesper Juhlf99d49a2005-11-07 01:01:34 -08001295 if (ubh)
1296 ubh_brelse_uspi (uspi);
1297 kfree (uspi);
1298 kfree(sbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 sb->s_fs_info = NULL;
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -07001300 UFSD("EXIT (FAILED)\n");
David Howellsb55c4602008-02-07 00:15:48 -08001301 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
1303failed_nomem:
Evgeniy Dushistovabf5d152006-06-25 05:47:24 -07001304 UFSD("EXIT (NOMEM)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 return -ENOMEM;
1306}
1307
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308static int ufs_remount (struct super_block *sb, int *mount_flags, char *data)
1309{
1310 struct ufs_sb_private_info * uspi;
1311 struct ufs_super_block_first * usb1;
1312 struct ufs_super_block_third * usb3;
1313 unsigned new_mount_opt, ufstype;
1314 unsigned flags;
Alessio Igor Bogani337eb002009-05-12 15:10:54 +02001315
Theodore Ts'o02b99842014-03-13 10:14:33 -04001316 sync_filesystem(sb);
Fabian Frederickcdd9eef2015-06-10 10:09:32 +10001317 mutex_lock(&UFS_SB(sb)->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 uspi = UFS_SB(sb)->s_uspi;
1319 flags = UFS_SB(sb)->s_flags;
Evgeniy7b4ee732006-01-14 11:42:06 +03001320 usb1 = ubh_get_usb_first(uspi);
1321 usb3 = ubh_get_usb_third(uspi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
1323 /*
1324 * Allow the "check" option to be passed as a remount option.
1325 * It is not possible to change ufstype option during remount
1326 */
1327 ufstype = UFS_SB(sb)->s_mount_opt & UFS_MOUNT_UFSTYPE;
1328 new_mount_opt = 0;
1329 ufs_set_opt (new_mount_opt, ONERROR_LOCK);
Al Virobbd68512009-05-06 10:43:07 -04001330 if (!ufs_parse_options (data, &new_mount_opt)) {
Fabian Frederickcdd9eef2015-06-10 10:09:32 +10001331 mutex_unlock(&UFS_SB(sb)->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 return -EINVAL;
Al Virobbd68512009-05-06 10:43:07 -04001333 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 if (!(new_mount_opt & UFS_MOUNT_UFSTYPE)) {
1335 new_mount_opt |= ufstype;
Evgeniy Dushistovee3ffd62006-06-25 05:47:30 -07001336 } else if ((new_mount_opt & UFS_MOUNT_UFSTYPE) != ufstype) {
Fabian Fredericka9814c52014-08-08 14:20:57 -07001337 pr_err("ufstype can't be changed during remount\n");
Fabian Frederickcdd9eef2015-06-10 10:09:32 +10001338 mutex_unlock(&UFS_SB(sb)->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 return -EINVAL;
1340 }
1341
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001342 if ((bool)(*mount_flags & SB_RDONLY) == sb_rdonly(sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 UFS_SB(sb)->s_mount_opt = new_mount_opt;
Fabian Frederickcdd9eef2015-06-10 10:09:32 +10001344 mutex_unlock(&UFS_SB(sb)->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 return 0;
1346 }
1347
1348 /*
1349 * fs was mouted as rw, remounting ro
1350 */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001351 if (*mount_flags & SB_RDONLY) {
Evgeniy Dushistovee3ffd62006-06-25 05:47:30 -07001352 ufs_put_super_internal(sb);
Arnd Bergmanna3fda0f2018-08-17 15:43:47 -07001353 usb1->fs_time = ufs_get_seconds(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 if ((flags & UFS_ST_MASK) == UFS_ST_SUN
Mark Fortescue252e2112007-10-16 23:26:31 -07001355 || (flags & UFS_ST_MASK) == UFS_ST_SUNOS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 || (flags & UFS_ST_MASK) == UFS_ST_SUNx86)
1357 ufs_set_fs_state(sb, usb1, usb3,
1358 UFS_FSOK - fs32_to_cpu(sb, usb1->fs_time));
Evgeniy Dushistov9695ef12006-06-25 05:47:22 -07001359 ubh_mark_buffer_dirty (USPI_UBH(uspi));
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001360 sb->s_flags |= SB_RDONLY;
Evgeniy Dushistovee3ffd62006-06-25 05:47:30 -07001361 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 /*
1363 * fs was mounted as ro, remounting rw
1364 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365#ifndef CONFIG_UFS_FS_WRITE
Fabian Fredericka9814c52014-08-08 14:20:57 -07001366 pr_err("ufs was compiled with read-only support, can't be mounted as read-write\n");
Fabian Frederickcdd9eef2015-06-10 10:09:32 +10001367 mutex_unlock(&UFS_SB(sb)->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 return -EINVAL;
1369#else
1370 if (ufstype != UFS_MOUNT_UFSTYPE_SUN &&
Mark Fortescue252e2112007-10-16 23:26:31 -07001371 ufstype != UFS_MOUNT_UFSTYPE_SUNOS &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 ufstype != UFS_MOUNT_UFSTYPE_44BSD &&
Evgeniy Dushistovcbcae392007-02-12 00:54:30 -08001373 ufstype != UFS_MOUNT_UFSTYPE_SUNx86 &&
1374 ufstype != UFS_MOUNT_UFSTYPE_UFS2) {
Fabian Fredericka9814c52014-08-08 14:20:57 -07001375 pr_err("this ufstype is read-only supported\n");
Fabian Frederickcdd9eef2015-06-10 10:09:32 +10001376 mutex_unlock(&UFS_SB(sb)->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 return -EINVAL;
1378 }
Evgeniy Dushistovee3ffd62006-06-25 05:47:30 -07001379 if (!ufs_read_cylinder_structures(sb)) {
Fabian Fredericka9814c52014-08-08 14:20:57 -07001380 pr_err("failed during remounting\n");
Fabian Frederickcdd9eef2015-06-10 10:09:32 +10001381 mutex_unlock(&UFS_SB(sb)->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 return -EPERM;
1383 }
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001384 sb->s_flags &= ~SB_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385#endif
1386 }
1387 UFS_SB(sb)->s_mount_opt = new_mount_opt;
Fabian Frederickcdd9eef2015-06-10 10:09:32 +10001388 mutex_unlock(&UFS_SB(sb)->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 return 0;
1390}
1391
Al Viro34c80b12011-12-08 21:32:45 -05001392static int ufs_show_options(struct seq_file *seq, struct dentry *root)
Evgeniy Dushistov2a9807c2007-10-16 23:26:32 -07001393{
Al Viro34c80b12011-12-08 21:32:45 -05001394 struct ufs_sb_info *sbi = UFS_SB(root->d_sb);
Evgeniy Dushistov2a9807c2007-10-16 23:26:32 -07001395 unsigned mval = sbi->s_mount_opt & UFS_MOUNT_UFSTYPE;
Steven Whitehousea447c092008-10-13 10:46:57 +01001396 const struct match_token *tp = tokens;
Evgeniy Dushistov2a9807c2007-10-16 23:26:32 -07001397
1398 while (tp->token != Opt_onerror_panic && tp->token != mval)
1399 ++tp;
1400 BUG_ON(tp->token == Opt_onerror_panic);
1401 seq_printf(seq, ",%s", tp->pattern);
1402
1403 mval = sbi->s_mount_opt & UFS_MOUNT_ONERROR;
1404 while (tp->token != Opt_err && tp->token != mval)
1405 ++tp;
1406 BUG_ON(tp->token == Opt_err);
1407 seq_printf(seq, ",%s", tp->pattern);
1408
1409 return 0;
1410}
1411
Evgeniy Dushistov647b7e82006-06-25 05:47:29 -07001412static int ufs_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413{
David Howells726c3342006-06-23 02:02:58 -07001414 struct super_block *sb = dentry->d_sb;
Evgeniy Dushistov647b7e82006-06-25 05:47:29 -07001415 struct ufs_sb_private_info *uspi= UFS_SB(sb)->s_uspi;
1416 unsigned flags = UFS_SB(sb)->s_flags;
Coly Li41d577a2009-04-02 16:59:44 -07001417 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
Al Virodff7cfd2015-06-16 04:27:05 -04001419 mutex_lock(&UFS_SB(sb)->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
Al Viroc5969612017-06-14 16:36:29 -04001421 if ((flags & UFS_TYPE_MASK) == UFS_TYPE_UFS2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 buf->f_type = UFS2_MAGIC;
Al Viroc5969612017-06-14 16:36:29 -04001423 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 buf->f_type = UFS_MAGIC;
Al Viroc5969612017-06-14 16:36:29 -04001425
1426 buf->f_blocks = uspi->s_dsize;
1427 buf->f_bfree = ufs_freefrags(uspi);
Evgeniy Dushistovee3ffd62006-06-25 05:47:30 -07001428 buf->f_ffree = uspi->cs_total.cs_nifree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 buf->f_bsize = sb->s_blocksize;
Al Viroc5969612017-06-14 16:36:29 -04001430 buf->f_bavail = (buf->f_bfree > uspi->s_root_blocks)
1431 ? (buf->f_bfree - uspi->s_root_blocks) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 buf->f_files = uspi->s_ncg * uspi->s_ipg;
1433 buf->f_namelen = UFS_MAXNAMLEN;
Al Viro6d1349c2020-09-18 16:45:50 -04001434 buf->f_fsid = u64_to_fsid(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435
Al Virodff7cfd2015-06-16 04:27:05 -04001436 mutex_unlock(&UFS_SB(sb)->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
1438 return 0;
1439}
1440
Christoph Lametere18b8902006-12-06 20:33:20 -08001441static struct kmem_cache * ufs_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
1443static struct inode *ufs_alloc_inode(struct super_block *sb)
1444{
1445 struct ufs_inode_info *ei;
Fabian Frederick61da3ae2015-02-17 13:45:28 -08001446
1447 ei = kmem_cache_alloc(ufs_inode_cachep, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 if (!ei)
1449 return NULL;
Fabian Frederick61da3ae2015-02-17 13:45:28 -08001450
Jeff Laytonbb8c2d62017-12-11 06:35:18 -05001451 inode_set_iversion(&ei->vfs_inode, 1);
Al Viro724bb092015-06-17 12:02:56 -04001452 seqlock_init(&ei->meta_lock);
1453 mutex_init(&ei->truncate_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 return &ei->vfs_inode;
1455}
1456
Al Viro98835e82019-04-15 22:29:33 -04001457static void ufs_free_in_core_inode(struct inode *inode)
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11001458{
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11001459 kmem_cache_free(ufs_inode_cachep, UFS_I(inode));
1460}
1461
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001462static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463{
1464 struct ufs_inode_info *ei = (struct ufs_inode_info *) foo;
1465
Christoph Lametera35afb82007-05-16 22:10:57 -07001466 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467}
Paul Mundt20c2df82007-07-20 10:11:58 +09001468
Fabian Frederick76ee4732014-04-07 15:39:55 -07001469static int __init init_inodecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470{
David Windsordf5f3cf2017-06-10 22:50:40 -04001471 ufs_inode_cachep = kmem_cache_create_usercopy("ufs_inode_cache",
1472 sizeof(struct ufs_inode_info), 0,
1473 (SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD|
1474 SLAB_ACCOUNT),
1475 offsetof(struct ufs_inode_info, i_u1.i_symlink),
1476 sizeof_field(struct ufs_inode_info,
1477 i_u1.i_symlink),
1478 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 if (ufs_inode_cachep == NULL)
1480 return -ENOMEM;
1481 return 0;
1482}
1483
1484static void destroy_inodecache(void)
1485{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +10001486 /*
1487 * Make sure all delayed rcu free inodes are flushed before we
1488 * destroy cache.
1489 */
1490 rcu_barrier();
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001491 kmem_cache_destroy(ufs_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492}
1493
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -08001494static const struct super_operations ufs_super_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 .alloc_inode = ufs_alloc_inode,
Al Viro98835e82019-04-15 22:29:33 -04001496 .free_inode = ufs_free_in_core_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 .write_inode = ufs_write_inode,
Al Viro58e82682010-06-05 19:40:56 -04001498 .evict_inode = ufs_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 .put_super = ufs_put_super,
Christoph Hellwig8c800652009-06-08 10:08:05 +02001500 .sync_fs = ufs_sync_fs,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 .statfs = ufs_statfs,
1502 .remount_fs = ufs_remount,
Evgeniy Dushistov2a9807c2007-10-16 23:26:32 -07001503 .show_options = ufs_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504};
1505
Al Viro152a0832010-07-25 00:46:55 +04001506static struct dentry *ufs_mount(struct file_system_type *fs_type,
1507 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508{
Al Viro152a0832010-07-25 00:46:55 +04001509 return mount_bdev(fs_type, flags, dev_name, data, ufs_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510}
1511
1512static struct file_system_type ufs_fs_type = {
1513 .owner = THIS_MODULE,
1514 .name = "ufs",
Al Viro152a0832010-07-25 00:46:55 +04001515 .mount = ufs_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 .kill_sb = kill_block_super,
1517 .fs_flags = FS_REQUIRES_DEV,
1518};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08001519MODULE_ALIAS_FS("ufs");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
1521static int __init init_ufs_fs(void)
1522{
1523 int err = init_inodecache();
1524 if (err)
1525 goto out1;
1526 err = register_filesystem(&ufs_fs_type);
1527 if (err)
1528 goto out;
1529 return 0;
1530out:
1531 destroy_inodecache();
1532out1:
1533 return err;
1534}
1535
1536static void __exit exit_ufs_fs(void)
1537{
1538 unregister_filesystem(&ufs_fs_type);
1539 destroy_inodecache();
1540}
1541
1542module_init(init_ufs_fs)
1543module_exit(exit_ufs_fs)
1544MODULE_LICENSE("GPL");