Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1 | /* -*- mode: c; c-basic-offset: 8; -*- |
| 2 | * vim: noexpandtab sw=8 ts=8 sts=0: |
| 3 | * |
| 4 | * super.c |
| 5 | * |
| 6 | * load/unload driver, mount/dismount volumes |
| 7 | * |
| 8 | * Copyright (C) 2002, 2004 Oracle. All rights reserved. |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or |
| 11 | * modify it under the terms of the GNU General Public |
| 12 | * License as published by the Free Software Foundation; either |
| 13 | * version 2 of the License, or (at your option) any later version. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 18 | * General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public |
| 21 | * License along with this program; if not, write to the |
| 22 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 23 | * Boston, MA 021110-1307, USA. |
| 24 | */ |
| 25 | |
| 26 | #include <linux/module.h> |
| 27 | #include <linux/fs.h> |
| 28 | #include <linux/types.h> |
| 29 | #include <linux/slab.h> |
| 30 | #include <linux/highmem.h> |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 31 | #include <linux/init.h> |
| 32 | #include <linux/random.h> |
| 33 | #include <linux/statfs.h> |
| 34 | #include <linux/moduleparam.h> |
| 35 | #include <linux/blkdev.h> |
| 36 | #include <linux/socket.h> |
| 37 | #include <linux/inet.h> |
| 38 | #include <linux/parser.h> |
| 39 | #include <linux/crc32.h> |
| 40 | #include <linux/debugfs.h> |
Sunil Mushran | d550071 | 2007-09-06 13:34:16 -0700 | [diff] [blame] | 41 | #include <linux/mount.h> |
Joel Becker | 6953b4c | 2008-01-29 16:59:56 -0800 | [diff] [blame] | 42 | #include <linux/seq_file.h> |
Jan Kara | 19ece54 | 2008-08-21 20:13:17 +0200 | [diff] [blame] | 43 | #include <linux/quotaops.h> |
Dan Magenheimer | 1cfd8bd | 2011-05-26 10:02:08 -0600 | [diff] [blame] | 44 | #include <linux/cleancache.h> |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 45 | |
Wengang Wang | 80a9a84 | 2011-02-21 11:13:14 +0800 | [diff] [blame] | 46 | #define CREATE_TRACE_POINTS |
| 47 | #include "ocfs2_trace.h" |
| 48 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 49 | #include <cluster/masklog.h> |
| 50 | |
| 51 | #include "ocfs2.h" |
| 52 | |
| 53 | /* this should be the only file to include a version 1 header */ |
| 54 | #include "ocfs1_fs_compat.h" |
| 55 | |
| 56 | #include "alloc.h" |
Mark Fasheh | a11f7e6 | 2011-06-22 14:23:38 -0700 | [diff] [blame] | 57 | #include "aops.h" |
Joel Becker | d030cc9 | 2008-12-11 15:04:14 -0800 | [diff] [blame] | 58 | #include "blockcheck.h" |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 59 | #include "dlmglue.h" |
| 60 | #include "export.h" |
| 61 | #include "extent_map.h" |
| 62 | #include "heartbeat.h" |
| 63 | #include "inode.h" |
| 64 | #include "journal.h" |
| 65 | #include "localalloc.h" |
| 66 | #include "namei.h" |
| 67 | #include "slot_map.h" |
| 68 | #include "super.h" |
| 69 | #include "sysfile.h" |
| 70 | #include "uptodate.h" |
Tiger Yang | cf1d6c7 | 2008-08-18 17:11:00 +0800 | [diff] [blame] | 71 | #include "xattr.h" |
Jan Kara | 9e33d69 | 2008-08-25 19:56:50 +0200 | [diff] [blame] | 72 | #include "quota.h" |
Tao Ma | 374a263 | 2009-08-24 11:13:37 +0800 | [diff] [blame] | 73 | #include "refcounttree.h" |
Tiger Yang | b89c542 | 2010-01-25 14:11:06 +0800 | [diff] [blame] | 74 | #include "suballoc.h" |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 75 | |
| 76 | #include "buffer_head_io.h" |
| 77 | |
Fabian Frederick | 1a5c4e2 | 2014-06-04 16:06:06 -0700 | [diff] [blame] | 78 | static struct kmem_cache *ocfs2_inode_cachep; |
Jan Kara | 9e33d69 | 2008-08-25 19:56:50 +0200 | [diff] [blame] | 79 | struct kmem_cache *ocfs2_dquot_cachep; |
| 80 | struct kmem_cache *ocfs2_qf_chunk_cachep; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 81 | |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 82 | /* OCFS2 needs to schedule several different types of work which |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 83 | * require cluster locking, disk I/O, recovery waits, etc. Since these |
| 84 | * types of work tend to be heavy we avoid using the kernel events |
| 85 | * workqueue and schedule on our own. */ |
| 86 | struct workqueue_struct *ocfs2_wq = NULL; |
| 87 | |
Fabian Frederick | 1a5c4e2 | 2014-06-04 16:06:06 -0700 | [diff] [blame] | 88 | static struct dentry *ocfs2_debugfs_root; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 89 | |
| 90 | MODULE_AUTHOR("Oracle"); |
| 91 | MODULE_LICENSE("GPL"); |
Goldwyn Rodrigues | ff8fb33 | 2014-01-21 15:48:20 -0800 | [diff] [blame] | 92 | MODULE_DESCRIPTION("OCFS2 cluster file system"); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 93 | |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 94 | struct mount_options |
| 95 | { |
Mark Fasheh | d147b3d | 2007-11-07 14:40:36 -0800 | [diff] [blame] | 96 | unsigned long commit_interval; |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 97 | unsigned long mount_opt; |
| 98 | unsigned int atime_quantum; |
| 99 | signed short slot; |
Mark Fasheh | 73c8a80 | 2010-04-05 18:17:13 -0700 | [diff] [blame] | 100 | int localalloc_opt; |
Mark Fasheh | d02f00c | 2009-12-07 13:10:48 -0800 | [diff] [blame] | 101 | unsigned int resv_level; |
Mark Fasheh | 83f9231 | 2010-04-05 18:17:16 -0700 | [diff] [blame] | 102 | int dir_resv_level; |
Joel Becker | b61817e | 2008-02-01 15:08:23 -0800 | [diff] [blame] | 103 | char cluster_stack[OCFS2_STACK_LABEL_LEN + 1]; |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 104 | }; |
| 105 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 106 | static int ocfs2_parse_options(struct super_block *sb, char *options, |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 107 | struct mount_options *mopt, |
Sunil Mushran | baf4661 | 2007-06-18 17:00:24 -0700 | [diff] [blame] | 108 | int is_remount); |
Jan Kara | 5297aad | 2009-10-15 14:54:04 +0200 | [diff] [blame] | 109 | static int ocfs2_check_set_options(struct super_block *sb, |
| 110 | struct mount_options *options); |
Al Viro | 34c80b1 | 2011-12-08 21:32:45 -0500 | [diff] [blame] | 111 | static int ocfs2_show_options(struct seq_file *s, struct dentry *root); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 112 | static void ocfs2_put_super(struct super_block *sb); |
| 113 | static int ocfs2_mount_volume(struct super_block *sb); |
| 114 | static int ocfs2_remount(struct super_block *sb, int *flags, char *data); |
| 115 | static void ocfs2_dismount_volume(struct super_block *sb, int mnt_err); |
| 116 | static int ocfs2_initialize_mem_caches(void); |
| 117 | static void ocfs2_free_mem_caches(void); |
| 118 | static void ocfs2_delete_osb(struct ocfs2_super *osb); |
| 119 | |
David Howells | 726c334 | 2006-06-23 02:02:58 -0700 | [diff] [blame] | 120 | static int ocfs2_statfs(struct dentry *dentry, struct kstatfs *buf); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 121 | |
| 122 | static int ocfs2_sync_fs(struct super_block *sb, int wait); |
| 123 | |
| 124 | static int ocfs2_init_global_system_inodes(struct ocfs2_super *osb); |
| 125 | static int ocfs2_init_local_system_inodes(struct ocfs2_super *osb); |
Denis Cheng | bddb8eb3 | 2007-09-27 02:10:04 +0800 | [diff] [blame] | 126 | static void ocfs2_release_system_inodes(struct ocfs2_super *osb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 127 | static int ocfs2_check_volume(struct ocfs2_super *osb); |
| 128 | static int ocfs2_verify_volume(struct ocfs2_dinode *di, |
| 129 | struct buffer_head *bh, |
Joel Becker | 73be192 | 2009-01-06 14:57:08 -0800 | [diff] [blame] | 130 | u32 sectsize, |
| 131 | struct ocfs2_blockcheck_stats *stats); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 132 | static int ocfs2_initialize_super(struct super_block *sb, |
| 133 | struct buffer_head *bh, |
Joel Becker | 73be192 | 2009-01-06 14:57:08 -0800 | [diff] [blame] | 134 | int sector_size, |
| 135 | struct ocfs2_blockcheck_stats *stats); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 136 | static int ocfs2_get_sector(struct super_block *sb, |
| 137 | struct buffer_head **bh, |
| 138 | int block, |
| 139 | int sect_size); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 140 | static struct inode *ocfs2_alloc_inode(struct super_block *sb); |
| 141 | static void ocfs2_destroy_inode(struct inode *inode); |
Jan Kara | 19ece54 | 2008-08-21 20:13:17 +0200 | [diff] [blame] | 142 | static int ocfs2_susp_quotas(struct ocfs2_super *osb, int unsuspend); |
| 143 | static int ocfs2_enable_quotas(struct ocfs2_super *osb); |
| 144 | static void ocfs2_disable_quotas(struct ocfs2_super *osb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 145 | |
Jan Kara | 1c92ec6 | 2014-09-29 15:02:51 +0200 | [diff] [blame] | 146 | static struct dquot **ocfs2_get_dquots(struct inode *inode) |
| 147 | { |
| 148 | return OCFS2_I(inode)->i_dquot; |
| 149 | } |
| 150 | |
Josef 'Jeff' Sipek | ee9b6d6 | 2007-02-12 00:55:41 -0800 | [diff] [blame] | 151 | static const struct super_operations ocfs2_sops = { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 152 | .statfs = ocfs2_statfs, |
| 153 | .alloc_inode = ocfs2_alloc_inode, |
| 154 | .destroy_inode = ocfs2_destroy_inode, |
| 155 | .drop_inode = ocfs2_drop_inode, |
Al Viro | 066d92d | 2010-06-08 21:28:10 -0400 | [diff] [blame] | 156 | .evict_inode = ocfs2_evict_inode, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 157 | .sync_fs = ocfs2_sync_fs, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 158 | .put_super = ocfs2_put_super, |
| 159 | .remount_fs = ocfs2_remount, |
Sunil Mushran | d550071 | 2007-09-06 13:34:16 -0700 | [diff] [blame] | 160 | .show_options = ocfs2_show_options, |
Jan Kara | 9e33d69 | 2008-08-25 19:56:50 +0200 | [diff] [blame] | 161 | .quota_read = ocfs2_quota_read, |
| 162 | .quota_write = ocfs2_quota_write, |
Jan Kara | 1c92ec6 | 2014-09-29 15:02:51 +0200 | [diff] [blame] | 163 | .get_dquots = ocfs2_get_dquots, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 164 | }; |
| 165 | |
| 166 | enum { |
| 167 | Opt_barrier, |
| 168 | Opt_err_panic, |
| 169 | Opt_err_ro, |
| 170 | Opt_intr, |
| 171 | Opt_nointr, |
| 172 | Opt_hb_none, |
| 173 | Opt_hb_local, |
Sunil Mushran | 2c44271 | 2010-10-07 15:23:50 -0700 | [diff] [blame] | 174 | Opt_hb_global, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 175 | Opt_data_ordered, |
| 176 | Opt_data_writeback, |
Tiger Yang | 7f1a37e | 2006-11-15 15:48:42 +0800 | [diff] [blame] | 177 | Opt_atime_quantum, |
Sunil Mushran | baf4661 | 2007-06-18 17:00:24 -0700 | [diff] [blame] | 178 | Opt_slot, |
Mark Fasheh | d147b3d | 2007-11-07 14:40:36 -0800 | [diff] [blame] | 179 | Opt_commit, |
Sunil Mushran | 2fbe8d1 | 2007-12-20 14:58:11 -0800 | [diff] [blame] | 180 | Opt_localalloc, |
Mark Fasheh | 53fc622 | 2007-12-20 16:49:04 -0800 | [diff] [blame] | 181 | Opt_localflocks, |
Joel Becker | b61817e | 2008-02-01 15:08:23 -0800 | [diff] [blame] | 182 | Opt_stack, |
Tiger Yang | cf1d6c7 | 2008-08-18 17:11:00 +0800 | [diff] [blame] | 183 | Opt_user_xattr, |
| 184 | Opt_nouser_xattr, |
Joel Becker | 12462f1 | 2008-09-03 20:03:40 -0700 | [diff] [blame] | 185 | Opt_inode64, |
Tiger Yang | a68979b | 2008-11-14 11:17:52 +0800 | [diff] [blame] | 186 | Opt_acl, |
| 187 | Opt_noacl, |
Jan Kara | 19ece54 | 2008-08-21 20:13:17 +0200 | [diff] [blame] | 188 | Opt_usrquota, |
| 189 | Opt_grpquota, |
Tristan Ye | 7bdb0d1 | 2010-10-11 16:46:39 +0800 | [diff] [blame] | 190 | Opt_coherency_buffered, |
| 191 | Opt_coherency_full, |
Mark Fasheh | d02f00c | 2009-12-07 13:10:48 -0800 | [diff] [blame] | 192 | Opt_resv_level, |
Mark Fasheh | 83f9231 | 2010-04-05 18:17:16 -0700 | [diff] [blame] | 193 | Opt_dir_resv_level, |
alex chen | 1dfeb76 | 2015-02-10 14:09:04 -0800 | [diff] [blame] | 194 | Opt_journal_async_commit, |
Goldwyn Rodrigues | 7d0fb91 | 2015-09-04 15:44:11 -0700 | [diff] [blame] | 195 | Opt_err_cont, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 196 | Opt_err, |
| 197 | }; |
| 198 | |
Steven Whitehouse | a447c09 | 2008-10-13 10:46:57 +0100 | [diff] [blame] | 199 | static const match_table_t tokens = { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 200 | {Opt_barrier, "barrier=%u"}, |
| 201 | {Opt_err_panic, "errors=panic"}, |
| 202 | {Opt_err_ro, "errors=remount-ro"}, |
| 203 | {Opt_intr, "intr"}, |
| 204 | {Opt_nointr, "nointr"}, |
| 205 | {Opt_hb_none, OCFS2_HB_NONE}, |
| 206 | {Opt_hb_local, OCFS2_HB_LOCAL}, |
Sunil Mushran | 2c44271 | 2010-10-07 15:23:50 -0700 | [diff] [blame] | 207 | {Opt_hb_global, OCFS2_HB_GLOBAL}, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 208 | {Opt_data_ordered, "data=ordered"}, |
| 209 | {Opt_data_writeback, "data=writeback"}, |
Tiger Yang | 7f1a37e | 2006-11-15 15:48:42 +0800 | [diff] [blame] | 210 | {Opt_atime_quantum, "atime_quantum=%u"}, |
Sunil Mushran | baf4661 | 2007-06-18 17:00:24 -0700 | [diff] [blame] | 211 | {Opt_slot, "preferred_slot=%u"}, |
Mark Fasheh | d147b3d | 2007-11-07 14:40:36 -0800 | [diff] [blame] | 212 | {Opt_commit, "commit=%u"}, |
Sunil Mushran | 2fbe8d1 | 2007-12-20 14:58:11 -0800 | [diff] [blame] | 213 | {Opt_localalloc, "localalloc=%d"}, |
Mark Fasheh | 53fc622 | 2007-12-20 16:49:04 -0800 | [diff] [blame] | 214 | {Opt_localflocks, "localflocks"}, |
Joel Becker | b61817e | 2008-02-01 15:08:23 -0800 | [diff] [blame] | 215 | {Opt_stack, "cluster_stack=%s"}, |
Tiger Yang | cf1d6c7 | 2008-08-18 17:11:00 +0800 | [diff] [blame] | 216 | {Opt_user_xattr, "user_xattr"}, |
| 217 | {Opt_nouser_xattr, "nouser_xattr"}, |
Joel Becker | 12462f1 | 2008-09-03 20:03:40 -0700 | [diff] [blame] | 218 | {Opt_inode64, "inode64"}, |
Tiger Yang | a68979b | 2008-11-14 11:17:52 +0800 | [diff] [blame] | 219 | {Opt_acl, "acl"}, |
| 220 | {Opt_noacl, "noacl"}, |
Jan Kara | 19ece54 | 2008-08-21 20:13:17 +0200 | [diff] [blame] | 221 | {Opt_usrquota, "usrquota"}, |
| 222 | {Opt_grpquota, "grpquota"}, |
Tristan Ye | 7bdb0d1 | 2010-10-11 16:46:39 +0800 | [diff] [blame] | 223 | {Opt_coherency_buffered, "coherency=buffered"}, |
| 224 | {Opt_coherency_full, "coherency=full"}, |
Mark Fasheh | d02f00c | 2009-12-07 13:10:48 -0800 | [diff] [blame] | 225 | {Opt_resv_level, "resv_level=%u"}, |
Mark Fasheh | 83f9231 | 2010-04-05 18:17:16 -0700 | [diff] [blame] | 226 | {Opt_dir_resv_level, "dir_resv_level=%u"}, |
alex chen | 1dfeb76 | 2015-02-10 14:09:04 -0800 | [diff] [blame] | 227 | {Opt_journal_async_commit, "journal_async_commit"}, |
Goldwyn Rodrigues | 7d0fb91 | 2015-09-04 15:44:11 -0700 | [diff] [blame] | 228 | {Opt_err_cont, "errors=continue"}, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 229 | {Opt_err, NULL} |
| 230 | }; |
| 231 | |
Sunil Mushran | 5039750 | 2008-12-17 14:17:43 -0800 | [diff] [blame] | 232 | #ifdef CONFIG_DEBUG_FS |
| 233 | static int ocfs2_osb_dump(struct ocfs2_super *osb, char *buf, int len) |
| 234 | { |
Sunil Mushran | 5039750 | 2008-12-17 14:17:43 -0800 | [diff] [blame] | 235 | struct ocfs2_cluster_connection *cconn = osb->cconn; |
| 236 | struct ocfs2_recovery_map *rm = osb->recovery_map; |
Sunil Mushran | df152c2 | 2009-06-22 11:40:07 -0700 | [diff] [blame] | 237 | struct ocfs2_orphan_scan *os = &osb->osb_orphan_scan; |
| 238 | int i, out = 0; |
Sunil Mushran | 5039750 | 2008-12-17 14:17:43 -0800 | [diff] [blame] | 239 | |
| 240 | out += snprintf(buf + out, len - out, |
| 241 | "%10s => Id: %-s Uuid: %-s Gen: 0x%X Label: %-s\n", |
| 242 | "Device", osb->dev_str, osb->uuid_str, |
| 243 | osb->fs_generation, osb->vol_label); |
| 244 | |
| 245 | out += snprintf(buf + out, len - out, |
| 246 | "%10s => State: %d Flags: 0x%lX\n", "Volume", |
| 247 | atomic_read(&osb->vol_state), osb->osb_flags); |
| 248 | |
| 249 | out += snprintf(buf + out, len - out, |
| 250 | "%10s => Block: %lu Cluster: %d\n", "Sizes", |
| 251 | osb->sb->s_blocksize, osb->s_clustersize); |
| 252 | |
| 253 | out += snprintf(buf + out, len - out, |
| 254 | "%10s => Compat: 0x%X Incompat: 0x%X " |
| 255 | "ROcompat: 0x%X\n", |
| 256 | "Features", osb->s_feature_compat, |
| 257 | osb->s_feature_incompat, osb->s_feature_ro_compat); |
| 258 | |
| 259 | out += snprintf(buf + out, len - out, |
| 260 | "%10s => Opts: 0x%lX AtimeQuanta: %u\n", "Mount", |
| 261 | osb->s_mount_opt, osb->s_atime_quantum); |
| 262 | |
Sunil Mushran | c3d3884 | 2009-06-19 14:45:55 -0700 | [diff] [blame] | 263 | if (cconn) { |
| 264 | out += snprintf(buf + out, len - out, |
| 265 | "%10s => Stack: %s Name: %*s " |
| 266 | "Version: %d.%d\n", "Cluster", |
| 267 | (*osb->osb_cluster_stack == '\0' ? |
| 268 | "o2cb" : osb->osb_cluster_stack), |
| 269 | cconn->cc_namelen, cconn->cc_name, |
| 270 | cconn->cc_version.pv_major, |
| 271 | cconn->cc_version.pv_minor); |
| 272 | } |
Sunil Mushran | 5039750 | 2008-12-17 14:17:43 -0800 | [diff] [blame] | 273 | |
| 274 | spin_lock(&osb->dc_task_lock); |
| 275 | out += snprintf(buf + out, len - out, |
| 276 | "%10s => Pid: %d Count: %lu WakeSeq: %lu " |
| 277 | "WorkSeq: %lu\n", "DownCnvt", |
Sunil Mushran | c3d3884 | 2009-06-19 14:45:55 -0700 | [diff] [blame] | 278 | (osb->dc_task ? task_pid_nr(osb->dc_task) : -1), |
| 279 | osb->blocked_lock_count, osb->dc_wake_sequence, |
| 280 | osb->dc_work_sequence); |
Sunil Mushran | 5039750 | 2008-12-17 14:17:43 -0800 | [diff] [blame] | 281 | spin_unlock(&osb->dc_task_lock); |
| 282 | |
| 283 | spin_lock(&osb->osb_lock); |
| 284 | out += snprintf(buf + out, len - out, "%10s => Pid: %d Nodes:", |
| 285 | "Recovery", |
| 286 | (osb->recovery_thread_task ? |
| 287 | task_pid_nr(osb->recovery_thread_task) : -1)); |
| 288 | if (rm->rm_used == 0) |
| 289 | out += snprintf(buf + out, len - out, " None\n"); |
| 290 | else { |
| 291 | for (i = 0; i < rm->rm_used; i++) |
| 292 | out += snprintf(buf + out, len - out, " %d", |
| 293 | rm->rm_entries[i]); |
| 294 | out += snprintf(buf + out, len - out, "\n"); |
| 295 | } |
| 296 | spin_unlock(&osb->osb_lock); |
| 297 | |
| 298 | out += snprintf(buf + out, len - out, |
Goldwyn Rodrigues | 8fa9d17 | 2013-07-03 15:00:51 -0700 | [diff] [blame] | 299 | "%10s => Pid: %d Interval: %lu\n", "Commit", |
Sunil Mushran | c3d3884 | 2009-06-19 14:45:55 -0700 | [diff] [blame] | 300 | (osb->commit_task ? task_pid_nr(osb->commit_task) : -1), |
Goldwyn Rodrigues | 8fa9d17 | 2013-07-03 15:00:51 -0700 | [diff] [blame] | 301 | osb->osb_commit_interval); |
Sunil Mushran | 5039750 | 2008-12-17 14:17:43 -0800 | [diff] [blame] | 302 | |
| 303 | out += snprintf(buf + out, len - out, |
Sunil Mushran | c3d3884 | 2009-06-19 14:45:55 -0700 | [diff] [blame] | 304 | "%10s => State: %d TxnId: %lu NumTxns: %d\n", |
Sunil Mushran | 5039750 | 2008-12-17 14:17:43 -0800 | [diff] [blame] | 305 | "Journal", osb->journal->j_state, |
Sunil Mushran | c3d3884 | 2009-06-19 14:45:55 -0700 | [diff] [blame] | 306 | osb->journal->j_trans_id, |
| 307 | atomic_read(&osb->journal->j_num_trans)); |
Sunil Mushran | 5039750 | 2008-12-17 14:17:43 -0800 | [diff] [blame] | 308 | |
| 309 | out += snprintf(buf + out, len - out, |
| 310 | "%10s => GlobalAllocs: %d LocalAllocs: %d " |
| 311 | "SubAllocs: %d LAWinMoves: %d SAExtends: %d\n", |
| 312 | "Stats", |
| 313 | atomic_read(&osb->alloc_stats.bitmap_data), |
| 314 | atomic_read(&osb->alloc_stats.local_data), |
| 315 | atomic_read(&osb->alloc_stats.bg_allocs), |
| 316 | atomic_read(&osb->alloc_stats.moves), |
| 317 | atomic_read(&osb->alloc_stats.bg_extends)); |
| 318 | |
| 319 | out += snprintf(buf + out, len - out, |
| 320 | "%10s => State: %u Descriptor: %llu Size: %u bits " |
| 321 | "Default: %u bits\n", |
| 322 | "LocalAlloc", osb->local_alloc_state, |
| 323 | (unsigned long long)osb->la_last_gd, |
| 324 | osb->local_alloc_bits, osb->local_alloc_default_bits); |
| 325 | |
| 326 | spin_lock(&osb->osb_lock); |
| 327 | out += snprintf(buf + out, len - out, |
Tiger Yang | b89c542 | 2010-01-25 14:11:06 +0800 | [diff] [blame] | 328 | "%10s => InodeSlot: %d StolenInodes: %d, " |
| 329 | "MetaSlot: %d StolenMeta: %d\n", "Steal", |
Sunil Mushran | 5039750 | 2008-12-17 14:17:43 -0800 | [diff] [blame] | 330 | osb->s_inode_steal_slot, |
Tiger Yang | b89c542 | 2010-01-25 14:11:06 +0800 | [diff] [blame] | 331 | atomic_read(&osb->s_num_inodes_stolen), |
| 332 | osb->s_meta_steal_slot, |
| 333 | atomic_read(&osb->s_num_meta_stolen)); |
Sunil Mushran | 5039750 | 2008-12-17 14:17:43 -0800 | [diff] [blame] | 334 | spin_unlock(&osb->osb_lock); |
| 335 | |
Sunil Mushran | df152c2 | 2009-06-22 11:40:07 -0700 | [diff] [blame] | 336 | out += snprintf(buf + out, len - out, "OrphanScan => "); |
| 337 | out += snprintf(buf + out, len - out, "Local: %u Global: %u ", |
| 338 | os->os_count, os->os_seqno); |
| 339 | out += snprintf(buf + out, len - out, " Last Scan: "); |
| 340 | if (atomic_read(&os->os_state) == ORPHAN_SCAN_INACTIVE) |
| 341 | out += snprintf(buf + out, len - out, "Disabled\n"); |
| 342 | else |
| 343 | out += snprintf(buf + out, len - out, "%lu seconds ago\n", |
| 344 | (get_seconds() - os->os_scantime.tv_sec)); |
| 345 | |
Sunil Mushran | 5039750 | 2008-12-17 14:17:43 -0800 | [diff] [blame] | 346 | out += snprintf(buf + out, len - out, "%10s => %3s %10s\n", |
| 347 | "Slots", "Num", "RecoGen"); |
Sunil Mushran | 5039750 | 2008-12-17 14:17:43 -0800 | [diff] [blame] | 348 | for (i = 0; i < osb->max_slots; ++i) { |
| 349 | out += snprintf(buf + out, len - out, |
| 350 | "%10s %c %3d %10d\n", |
| 351 | " ", |
| 352 | (i == osb->slot_num ? '*' : ' '), |
| 353 | i, osb->slot_recovery_generations[i]); |
| 354 | } |
| 355 | |
| 356 | return out; |
| 357 | } |
| 358 | |
| 359 | static int ocfs2_osb_debug_open(struct inode *inode, struct file *file) |
| 360 | { |
| 361 | struct ocfs2_super *osb = inode->i_private; |
| 362 | char *buf = NULL; |
| 363 | |
| 364 | buf = kmalloc(PAGE_SIZE, GFP_KERNEL); |
| 365 | if (!buf) |
| 366 | goto bail; |
| 367 | |
| 368 | i_size_write(inode, ocfs2_osb_dump(osb, buf, PAGE_SIZE)); |
| 369 | |
| 370 | file->private_data = buf; |
| 371 | |
| 372 | return 0; |
| 373 | bail: |
| 374 | return -ENOMEM; |
| 375 | } |
| 376 | |
| 377 | static int ocfs2_debug_release(struct inode *inode, struct file *file) |
| 378 | { |
| 379 | kfree(file->private_data); |
| 380 | return 0; |
| 381 | } |
| 382 | |
| 383 | static ssize_t ocfs2_debug_read(struct file *file, char __user *buf, |
| 384 | size_t nbytes, loff_t *ppos) |
| 385 | { |
| 386 | return simple_read_from_buffer(buf, nbytes, ppos, file->private_data, |
| 387 | i_size_read(file->f_mapping->host)); |
| 388 | } |
| 389 | #else |
| 390 | static int ocfs2_osb_debug_open(struct inode *inode, struct file *file) |
| 391 | { |
| 392 | return 0; |
| 393 | } |
| 394 | static int ocfs2_debug_release(struct inode *inode, struct file *file) |
| 395 | { |
| 396 | return 0; |
| 397 | } |
| 398 | static ssize_t ocfs2_debug_read(struct file *file, char __user *buf, |
| 399 | size_t nbytes, loff_t *ppos) |
| 400 | { |
| 401 | return 0; |
| 402 | } |
| 403 | #endif /* CONFIG_DEBUG_FS */ |
| 404 | |
Alexey Dobriyan | 828c095 | 2009-10-01 15:43:56 -0700 | [diff] [blame] | 405 | static const struct file_operations ocfs2_osb_debug_fops = { |
Sunil Mushran | 5039750 | 2008-12-17 14:17:43 -0800 | [diff] [blame] | 406 | .open = ocfs2_osb_debug_open, |
| 407 | .release = ocfs2_debug_release, |
| 408 | .read = ocfs2_debug_read, |
| 409 | .llseek = generic_file_llseek, |
| 410 | }; |
| 411 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 412 | static int ocfs2_sync_fs(struct super_block *sb, int wait) |
| 413 | { |
Denis Cheng | bddb8eb3 | 2007-09-27 02:10:04 +0800 | [diff] [blame] | 414 | int status; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 415 | tid_t target; |
| 416 | struct ocfs2_super *osb = OCFS2_SB(sb); |
| 417 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 418 | if (ocfs2_is_hard_readonly(osb)) |
| 419 | return -EROFS; |
| 420 | |
| 421 | if (wait) { |
| 422 | status = ocfs2_flush_truncate_log(osb); |
| 423 | if (status < 0) |
| 424 | mlog_errno(status); |
| 425 | } else { |
| 426 | ocfs2_schedule_truncate_log_flush(osb, 0); |
| 427 | } |
| 428 | |
Joel Becker | 2b4e30f | 2008-09-03 20:03:41 -0700 | [diff] [blame] | 429 | if (jbd2_journal_start_commit(OCFS2_SB(sb)->journal->j_journal, |
| 430 | &target)) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 431 | if (wait) |
Joel Becker | 2b4e30f | 2008-09-03 20:03:41 -0700 | [diff] [blame] | 432 | jbd2_log_wait_commit(OCFS2_SB(sb)->journal->j_journal, |
| 433 | target); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 434 | } |
| 435 | return 0; |
| 436 | } |
| 437 | |
Jan Kara | 1a224ad | 2008-08-20 15:43:36 +0200 | [diff] [blame] | 438 | static int ocfs2_need_system_inode(struct ocfs2_super *osb, int ino) |
| 439 | { |
| 440 | if (!OCFS2_HAS_RO_COMPAT_FEATURE(osb->sb, OCFS2_FEATURE_RO_COMPAT_USRQUOTA) |
| 441 | && (ino == USER_QUOTA_SYSTEM_INODE |
| 442 | || ino == LOCAL_USER_QUOTA_SYSTEM_INODE)) |
| 443 | return 0; |
| 444 | if (!OCFS2_HAS_RO_COMPAT_FEATURE(osb->sb, OCFS2_FEATURE_RO_COMPAT_GRPQUOTA) |
| 445 | && (ino == GROUP_QUOTA_SYSTEM_INODE |
| 446 | || ino == LOCAL_GROUP_QUOTA_SYSTEM_INODE)) |
| 447 | return 0; |
| 448 | return 1; |
| 449 | } |
| 450 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 451 | static int ocfs2_init_global_system_inodes(struct ocfs2_super *osb) |
| 452 | { |
| 453 | struct inode *new = NULL; |
| 454 | int status = 0; |
| 455 | int i; |
| 456 | |
Jan Kara | 5fa0613 | 2008-01-11 00:11:45 +0100 | [diff] [blame] | 457 | new = ocfs2_iget(osb, osb->root_blkno, OCFS2_FI_FLAG_SYSFILE, 0); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 458 | if (IS_ERR(new)) { |
| 459 | status = PTR_ERR(new); |
| 460 | mlog_errno(status); |
| 461 | goto bail; |
| 462 | } |
| 463 | osb->root_inode = new; |
| 464 | |
Jan Kara | 5fa0613 | 2008-01-11 00:11:45 +0100 | [diff] [blame] | 465 | new = ocfs2_iget(osb, osb->system_dir_blkno, OCFS2_FI_FLAG_SYSFILE, 0); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 466 | if (IS_ERR(new)) { |
| 467 | status = PTR_ERR(new); |
| 468 | mlog_errno(status); |
| 469 | goto bail; |
| 470 | } |
| 471 | osb->sys_root_inode = new; |
| 472 | |
| 473 | for (i = OCFS2_FIRST_ONLINE_SYSTEM_INODE; |
| 474 | i <= OCFS2_LAST_GLOBAL_SYSTEM_INODE; i++) { |
Jan Kara | 1a224ad | 2008-08-20 15:43:36 +0200 | [diff] [blame] | 475 | if (!ocfs2_need_system_inode(osb, i)) |
| 476 | continue; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 477 | new = ocfs2_get_system_file_inode(osb, i, osb->slot_num); |
| 478 | if (!new) { |
| 479 | ocfs2_release_system_inodes(osb); |
| 480 | status = -EINVAL; |
| 481 | mlog_errno(status); |
| 482 | /* FIXME: Should ERROR_RO_FS */ |
| 483 | mlog(ML_ERROR, "Unable to load system inode %d, " |
| 484 | "possibly corrupt fs?", i); |
| 485 | goto bail; |
| 486 | } |
| 487 | // the array now has one ref, so drop this one |
| 488 | iput(new); |
| 489 | } |
| 490 | |
| 491 | bail: |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 492 | if (status) |
| 493 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 494 | return status; |
| 495 | } |
| 496 | |
| 497 | static int ocfs2_init_local_system_inodes(struct ocfs2_super *osb) |
| 498 | { |
| 499 | struct inode *new = NULL; |
| 500 | int status = 0; |
| 501 | int i; |
| 502 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 503 | for (i = OCFS2_LAST_GLOBAL_SYSTEM_INODE + 1; |
| 504 | i < NUM_SYSTEM_INODES; |
| 505 | i++) { |
Jan Kara | 1a224ad | 2008-08-20 15:43:36 +0200 | [diff] [blame] | 506 | if (!ocfs2_need_system_inode(osb, i)) |
| 507 | continue; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 508 | new = ocfs2_get_system_file_inode(osb, i, osb->slot_num); |
| 509 | if (!new) { |
| 510 | ocfs2_release_system_inodes(osb); |
| 511 | status = -EINVAL; |
| 512 | mlog(ML_ERROR, "status=%d, sysfile=%d, slot=%d\n", |
| 513 | status, i, osb->slot_num); |
| 514 | goto bail; |
| 515 | } |
| 516 | /* the array now has one ref, so drop this one */ |
| 517 | iput(new); |
| 518 | } |
| 519 | |
| 520 | bail: |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 521 | if (status) |
| 522 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 523 | return status; |
| 524 | } |
| 525 | |
Denis Cheng | bddb8eb3 | 2007-09-27 02:10:04 +0800 | [diff] [blame] | 526 | static void ocfs2_release_system_inodes(struct ocfs2_super *osb) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 527 | { |
Denis Cheng | bddb8eb3 | 2007-09-27 02:10:04 +0800 | [diff] [blame] | 528 | int i; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 529 | struct inode *inode; |
| 530 | |
Tao Ma | b4d693f | 2010-08-16 16:58:21 +0800 | [diff] [blame] | 531 | for (i = 0; i < NUM_GLOBAL_SYSTEM_INODES; i++) { |
| 532 | inode = osb->global_system_inodes[i]; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 533 | if (inode) { |
| 534 | iput(inode); |
Tao Ma | b4d693f | 2010-08-16 16:58:21 +0800 | [diff] [blame] | 535 | osb->global_system_inodes[i] = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 536 | } |
| 537 | } |
| 538 | |
| 539 | inode = osb->sys_root_inode; |
| 540 | if (inode) { |
| 541 | iput(inode); |
| 542 | osb->sys_root_inode = NULL; |
| 543 | } |
| 544 | |
| 545 | inode = osb->root_inode; |
| 546 | if (inode) { |
| 547 | iput(inode); |
| 548 | osb->root_inode = NULL; |
| 549 | } |
| 550 | |
Tao Ma | b4d693f | 2010-08-16 16:58:21 +0800 | [diff] [blame] | 551 | if (!osb->local_system_inodes) |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 552 | return; |
Tao Ma | b4d693f | 2010-08-16 16:58:21 +0800 | [diff] [blame] | 553 | |
| 554 | for (i = 0; i < NUM_LOCAL_SYSTEM_INODES * osb->max_slots; i++) { |
| 555 | if (osb->local_system_inodes[i]) { |
| 556 | iput(osb->local_system_inodes[i]); |
| 557 | osb->local_system_inodes[i] = NULL; |
| 558 | } |
| 559 | } |
| 560 | |
| 561 | kfree(osb->local_system_inodes); |
| 562 | osb->local_system_inodes = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 563 | } |
| 564 | |
| 565 | /* We're allocating fs objects, use GFP_NOFS */ |
| 566 | static struct inode *ocfs2_alloc_inode(struct super_block *sb) |
| 567 | { |
| 568 | struct ocfs2_inode_info *oi; |
| 569 | |
Christoph Lameter | e6b4f8d | 2006-12-06 20:33:14 -0800 | [diff] [blame] | 570 | oi = kmem_cache_alloc(ocfs2_inode_cachep, GFP_NOFS); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 571 | if (!oi) |
| 572 | return NULL; |
| 573 | |
Darrick J. Wong | 2931cdc | 2014-04-03 14:46:48 -0700 | [diff] [blame] | 574 | oi->i_sync_tid = 0; |
| 575 | oi->i_datasync_tid = 0; |
Jan Kara | 1c92ec6 | 2014-09-29 15:02:51 +0200 | [diff] [blame] | 576 | memset(&oi->i_dquot, 0, sizeof(oi->i_dquot)); |
Darrick J. Wong | 2931cdc | 2014-04-03 14:46:48 -0700 | [diff] [blame] | 577 | |
Joel Becker | 2b4e30f | 2008-09-03 20:03:41 -0700 | [diff] [blame] | 578 | jbd2_journal_init_jbd_inode(&oi->ip_jinode, &oi->vfs_inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 579 | return &oi->vfs_inode; |
| 580 | } |
| 581 | |
Nick Piggin | fa0d7e3d | 2011-01-07 17:49:49 +1100 | [diff] [blame] | 582 | static void ocfs2_i_callback(struct rcu_head *head) |
| 583 | { |
| 584 | struct inode *inode = container_of(head, struct inode, i_rcu); |
Nick Piggin | fa0d7e3d | 2011-01-07 17:49:49 +1100 | [diff] [blame] | 585 | kmem_cache_free(ocfs2_inode_cachep, OCFS2_I(inode)); |
| 586 | } |
| 587 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 588 | static void ocfs2_destroy_inode(struct inode *inode) |
| 589 | { |
Nick Piggin | fa0d7e3d | 2011-01-07 17:49:49 +1100 | [diff] [blame] | 590 | call_rcu(&inode->i_rcu, ocfs2_i_callback); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 591 | } |
| 592 | |
Mark Fasheh | 5a25403 | 2007-07-20 12:56:16 -0700 | [diff] [blame] | 593 | static unsigned long long ocfs2_max_file_offset(unsigned int bbits, |
| 594 | unsigned int cbits) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 595 | { |
Mark Fasheh | 5a25403 | 2007-07-20 12:56:16 -0700 | [diff] [blame] | 596 | unsigned int bytes = 1 << cbits; |
| 597 | unsigned int trim = bytes; |
| 598 | unsigned int bitshift = 32; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 599 | |
Mark Fasheh | 5a25403 | 2007-07-20 12:56:16 -0700 | [diff] [blame] | 600 | /* |
| 601 | * i_size and all block offsets in ocfs2 are always 64 bits |
| 602 | * wide. i_clusters is 32 bits, in cluster-sized units. So on |
| 603 | * 64 bit platforms, cluster size will be the limiting factor. |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 604 | */ |
| 605 | |
| 606 | #if BITS_PER_LONG == 32 |
Bartlomiej Zolnierkiewicz | 90c699a | 2009-06-19 08:08:50 +0200 | [diff] [blame] | 607 | # if defined(CONFIG_LBDAF) |
Alexey Dobriyan | 2ecd05a | 2006-10-11 01:22:05 -0700 | [diff] [blame] | 608 | BUILD_BUG_ON(sizeof(sector_t) != 8); |
Mark Fasheh | 5a25403 | 2007-07-20 12:56:16 -0700 | [diff] [blame] | 609 | /* |
| 610 | * We might be limited by page cache size. |
| 611 | */ |
| 612 | if (bytes > PAGE_CACHE_SIZE) { |
| 613 | bytes = PAGE_CACHE_SIZE; |
| 614 | trim = 1; |
| 615 | /* |
| 616 | * Shift by 31 here so that we don't get larger than |
| 617 | * MAX_LFS_FILESIZE |
| 618 | */ |
| 619 | bitshift = 31; |
| 620 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 621 | # else |
Mark Fasheh | 5a25403 | 2007-07-20 12:56:16 -0700 | [diff] [blame] | 622 | /* |
| 623 | * We are limited by the size of sector_t. Use block size, as |
| 624 | * that's what we expose to the VFS. |
| 625 | */ |
| 626 | bytes = 1 << bbits; |
| 627 | trim = 1; |
| 628 | bitshift = 31; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 629 | # endif |
| 630 | #endif |
| 631 | |
Mark Fasheh | 5a25403 | 2007-07-20 12:56:16 -0700 | [diff] [blame] | 632 | /* |
| 633 | * Trim by a whole cluster when we can actually approach the |
| 634 | * on-disk limits. Otherwise we can overflow i_clusters when |
| 635 | * an extent start is at the max offset. |
| 636 | */ |
| 637 | return (((unsigned long long)bytes) << bitshift) - trim; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 638 | } |
| 639 | |
| 640 | static int ocfs2_remount(struct super_block *sb, int *flags, char *data) |
| 641 | { |
| 642 | int incompat_features; |
| 643 | int ret = 0; |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 644 | struct mount_options parsed_options; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 645 | struct ocfs2_super *osb = OCFS2_SB(sb); |
Sunil Mushran | 2c44271 | 2010-10-07 15:23:50 -0700 | [diff] [blame] | 646 | u32 tmp; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 647 | |
Theodore Ts'o | 02b9984 | 2014-03-13 10:14:33 -0400 | [diff] [blame] | 648 | sync_filesystem(sb); |
| 649 | |
Jan Kara | 5297aad | 2009-10-15 14:54:04 +0200 | [diff] [blame] | 650 | if (!ocfs2_parse_options(sb, data, &parsed_options, 1) || |
| 651 | !ocfs2_check_set_options(sb, &parsed_options)) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 652 | ret = -EINVAL; |
| 653 | goto out; |
| 654 | } |
| 655 | |
Sunil Mushran | 2c44271 | 2010-10-07 15:23:50 -0700 | [diff] [blame] | 656 | tmp = OCFS2_MOUNT_HB_LOCAL | OCFS2_MOUNT_HB_GLOBAL | |
| 657 | OCFS2_MOUNT_HB_NONE; |
| 658 | if ((osb->s_mount_opt & tmp) != (parsed_options.mount_opt & tmp)) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 659 | ret = -EINVAL; |
| 660 | mlog(ML_ERROR, "Cannot change heartbeat mode on remount\n"); |
| 661 | goto out; |
| 662 | } |
| 663 | |
| 664 | if ((osb->s_mount_opt & OCFS2_MOUNT_DATA_WRITEBACK) != |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 665 | (parsed_options.mount_opt & OCFS2_MOUNT_DATA_WRITEBACK)) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 666 | ret = -EINVAL; |
| 667 | mlog(ML_ERROR, "Cannot change data mode on remount\n"); |
| 668 | goto out; |
| 669 | } |
| 670 | |
Joel Becker | 12462f1 | 2008-09-03 20:03:40 -0700 | [diff] [blame] | 671 | /* Probably don't want this on remount; it might |
| 672 | * mess with other nodes */ |
| 673 | if (!(osb->s_mount_opt & OCFS2_MOUNT_INODE64) && |
| 674 | (parsed_options.mount_opt & OCFS2_MOUNT_INODE64)) { |
| 675 | ret = -EINVAL; |
| 676 | mlog(ML_ERROR, "Cannot enable inode64 on remount\n"); |
| 677 | goto out; |
| 678 | } |
| 679 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 680 | /* We're going to/from readonly mode. */ |
| 681 | if ((*flags & MS_RDONLY) != (sb->s_flags & MS_RDONLY)) { |
Jan Kara | 19ece54 | 2008-08-21 20:13:17 +0200 | [diff] [blame] | 682 | /* Disable quota accounting before remounting RO */ |
| 683 | if (*flags & MS_RDONLY) { |
| 684 | ret = ocfs2_susp_quotas(osb, 0); |
| 685 | if (ret < 0) |
| 686 | goto out; |
| 687 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 688 | /* Lock here so the check of HARD_RO and the potential |
| 689 | * setting of SOFT_RO is atomic. */ |
| 690 | spin_lock(&osb->osb_lock); |
| 691 | if (osb->osb_flags & OCFS2_OSB_HARD_RO) { |
| 692 | mlog(ML_ERROR, "Remount on readonly device is forbidden.\n"); |
| 693 | ret = -EROFS; |
| 694 | goto unlock_osb; |
| 695 | } |
| 696 | |
| 697 | if (*flags & MS_RDONLY) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 698 | sb->s_flags |= MS_RDONLY; |
| 699 | osb->osb_flags |= OCFS2_OSB_SOFT_RO; |
| 700 | } else { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 701 | if (osb->osb_flags & OCFS2_OSB_ERROR_FS) { |
| 702 | mlog(ML_ERROR, "Cannot remount RDWR " |
| 703 | "filesystem due to previous errors.\n"); |
| 704 | ret = -EROFS; |
| 705 | goto unlock_osb; |
| 706 | } |
| 707 | incompat_features = OCFS2_HAS_RO_COMPAT_FEATURE(sb, ~OCFS2_FEATURE_RO_COMPAT_SUPP); |
| 708 | if (incompat_features) { |
| 709 | mlog(ML_ERROR, "Cannot remount RDWR because " |
| 710 | "of unsupported optional features " |
| 711 | "(%x).\n", incompat_features); |
| 712 | ret = -EINVAL; |
| 713 | goto unlock_osb; |
| 714 | } |
| 715 | sb->s_flags &= ~MS_RDONLY; |
| 716 | osb->osb_flags &= ~OCFS2_OSB_SOFT_RO; |
| 717 | } |
Tao Ma | 32a42d3 | 2011-02-23 21:29:08 +0800 | [diff] [blame] | 718 | trace_ocfs2_remount(sb->s_flags, osb->osb_flags, *flags); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 719 | unlock_osb: |
| 720 | spin_unlock(&osb->osb_lock); |
Jan Kara | 19ece54 | 2008-08-21 20:13:17 +0200 | [diff] [blame] | 721 | /* Enable quota accounting after remounting RW */ |
| 722 | if (!ret && !(*flags & MS_RDONLY)) { |
| 723 | if (sb_any_quota_suspended(sb)) |
| 724 | ret = ocfs2_susp_quotas(osb, 1); |
| 725 | else |
| 726 | ret = ocfs2_enable_quotas(osb); |
| 727 | if (ret < 0) { |
| 728 | /* Return back changes... */ |
| 729 | spin_lock(&osb->osb_lock); |
| 730 | sb->s_flags |= MS_RDONLY; |
| 731 | osb->osb_flags |= OCFS2_OSB_SOFT_RO; |
| 732 | spin_unlock(&osb->osb_lock); |
| 733 | goto out; |
| 734 | } |
| 735 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 736 | } |
| 737 | |
| 738 | if (!ret) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 739 | /* Only save off the new mount options in case of a successful |
| 740 | * remount. */ |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 741 | osb->s_mount_opt = parsed_options.mount_opt; |
| 742 | osb->s_atime_quantum = parsed_options.atime_quantum; |
| 743 | osb->preferred_slot = parsed_options.slot; |
Mark Fasheh | d147b3d | 2007-11-07 14:40:36 -0800 | [diff] [blame] | 744 | if (parsed_options.commit_interval) |
| 745 | osb->osb_commit_interval = parsed_options.commit_interval; |
Mark Fasheh | e001e79 | 2007-11-07 14:21:45 -0800 | [diff] [blame] | 746 | |
| 747 | if (!ocfs2_is_hard_readonly(osb)) |
| 748 | ocfs2_set_journal_params(osb); |
Jan Kara | 57b09bb | 2009-10-15 14:54:05 +0200 | [diff] [blame] | 749 | |
| 750 | sb->s_flags = (sb->s_flags & ~MS_POSIXACL) | |
| 751 | ((osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL) ? |
| 752 | MS_POSIXACL : 0); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 753 | } |
| 754 | out: |
| 755 | return ret; |
| 756 | } |
| 757 | |
| 758 | static int ocfs2_sb_probe(struct super_block *sb, |
| 759 | struct buffer_head **bh, |
Joel Becker | 73be192 | 2009-01-06 14:57:08 -0800 | [diff] [blame] | 760 | int *sector_size, |
| 761 | struct ocfs2_blockcheck_stats *stats) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 762 | { |
Denis Cheng | bddb8eb3 | 2007-09-27 02:10:04 +0800 | [diff] [blame] | 763 | int status, tmpstat; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 764 | struct ocfs1_vol_disk_hdr *hdr; |
| 765 | struct ocfs2_dinode *di; |
| 766 | int blksize; |
| 767 | |
| 768 | *bh = NULL; |
| 769 | |
| 770 | /* may be > 512 */ |
Martin K. Petersen | e1defc4 | 2009-05-22 17:17:49 -0400 | [diff] [blame] | 771 | *sector_size = bdev_logical_block_size(sb->s_bdev); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 772 | if (*sector_size > OCFS2_MAX_BLOCKSIZE) { |
| 773 | mlog(ML_ERROR, "Hardware sector size too large: %d (max=%d)\n", |
| 774 | *sector_size, OCFS2_MAX_BLOCKSIZE); |
| 775 | status = -EINVAL; |
| 776 | goto bail; |
| 777 | } |
| 778 | |
| 779 | /* Can this really happen? */ |
| 780 | if (*sector_size < OCFS2_MIN_BLOCKSIZE) |
| 781 | *sector_size = OCFS2_MIN_BLOCKSIZE; |
| 782 | |
| 783 | /* check block zero for old format */ |
| 784 | status = ocfs2_get_sector(sb, bh, 0, *sector_size); |
| 785 | if (status < 0) { |
| 786 | mlog_errno(status); |
| 787 | goto bail; |
| 788 | } |
| 789 | hdr = (struct ocfs1_vol_disk_hdr *) (*bh)->b_data; |
| 790 | if (hdr->major_version == OCFS1_MAJOR_VERSION) { |
| 791 | mlog(ML_ERROR, "incompatible version: %u.%u\n", |
| 792 | hdr->major_version, hdr->minor_version); |
| 793 | status = -EINVAL; |
| 794 | } |
| 795 | if (memcmp(hdr->signature, OCFS1_VOLUME_SIGNATURE, |
| 796 | strlen(OCFS1_VOLUME_SIGNATURE)) == 0) { |
| 797 | mlog(ML_ERROR, "incompatible volume signature: %8s\n", |
| 798 | hdr->signature); |
| 799 | status = -EINVAL; |
| 800 | } |
| 801 | brelse(*bh); |
| 802 | *bh = NULL; |
| 803 | if (status < 0) { |
| 804 | mlog(ML_ERROR, "This is an ocfs v1 filesystem which must be " |
| 805 | "upgraded before mounting with ocfs v2\n"); |
| 806 | goto bail; |
| 807 | } |
| 808 | |
| 809 | /* |
| 810 | * Now check at magic offset for 512, 1024, 2048, 4096 |
| 811 | * blocksizes. 4096 is the maximum blocksize because it is |
| 812 | * the minimum clustersize. |
| 813 | */ |
| 814 | status = -EINVAL; |
| 815 | for (blksize = *sector_size; |
| 816 | blksize <= OCFS2_MAX_BLOCKSIZE; |
| 817 | blksize <<= 1) { |
| 818 | tmpstat = ocfs2_get_sector(sb, bh, |
| 819 | OCFS2_SUPER_BLOCK_BLKNO, |
| 820 | blksize); |
| 821 | if (tmpstat < 0) { |
| 822 | status = tmpstat; |
| 823 | mlog_errno(status); |
Joel Becker | fb5cbe9 | 2009-10-28 22:28:24 -0700 | [diff] [blame] | 824 | break; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 825 | } |
| 826 | di = (struct ocfs2_dinode *) (*bh)->b_data; |
Joel Becker | 73be192 | 2009-01-06 14:57:08 -0800 | [diff] [blame] | 827 | memset(stats, 0, sizeof(struct ocfs2_blockcheck_stats)); |
Jan Kara | 1c1d979 | 2009-07-22 13:17:19 +0200 | [diff] [blame] | 828 | spin_lock_init(&stats->b_lock); |
Joel Becker | fb5cbe9 | 2009-10-28 22:28:24 -0700 | [diff] [blame] | 829 | tmpstat = ocfs2_verify_volume(di, *bh, blksize, stats); |
| 830 | if (tmpstat < 0) { |
| 831 | brelse(*bh); |
| 832 | *bh = NULL; |
| 833 | } |
| 834 | if (tmpstat != -EAGAIN) { |
| 835 | status = tmpstat; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 836 | break; |
Joel Becker | fb5cbe9 | 2009-10-28 22:28:24 -0700 | [diff] [blame] | 837 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 838 | } |
| 839 | |
| 840 | bail: |
| 841 | return status; |
| 842 | } |
| 843 | |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 844 | static int ocfs2_verify_heartbeat(struct ocfs2_super *osb) |
| 845 | { |
Sunil Mushran | 2c44271 | 2010-10-07 15:23:50 -0700 | [diff] [blame] | 846 | u32 hb_enabled = OCFS2_MOUNT_HB_LOCAL | OCFS2_MOUNT_HB_GLOBAL; |
| 847 | |
| 848 | if (osb->s_mount_opt & hb_enabled) { |
| 849 | if (ocfs2_mount_local(osb)) { |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 850 | mlog(ML_ERROR, "Cannot heartbeat on a locally " |
| 851 | "mounted device.\n"); |
| 852 | return -EINVAL; |
| 853 | } |
Sunil Mushran | 2c44271 | 2010-10-07 15:23:50 -0700 | [diff] [blame] | 854 | if (ocfs2_userspace_stack(osb)) { |
Joel Becker | b61817e | 2008-02-01 15:08:23 -0800 | [diff] [blame] | 855 | mlog(ML_ERROR, "Userspace stack expected, but " |
| 856 | "o2cb heartbeat arguments passed to mount\n"); |
| 857 | return -EINVAL; |
| 858 | } |
Sunil Mushran | 2c44271 | 2010-10-07 15:23:50 -0700 | [diff] [blame] | 859 | if (((osb->s_mount_opt & OCFS2_MOUNT_HB_GLOBAL) && |
| 860 | !ocfs2_cluster_o2cb_global_heartbeat(osb)) || |
| 861 | ((osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) && |
| 862 | ocfs2_cluster_o2cb_global_heartbeat(osb))) { |
| 863 | mlog(ML_ERROR, "Mismatching o2cb heartbeat modes\n"); |
| 864 | return -EINVAL; |
| 865 | } |
Joel Becker | b61817e | 2008-02-01 15:08:23 -0800 | [diff] [blame] | 866 | } |
| 867 | |
Sunil Mushran | 2c44271 | 2010-10-07 15:23:50 -0700 | [diff] [blame] | 868 | if (!(osb->s_mount_opt & hb_enabled)) { |
Joel Becker | b61817e | 2008-02-01 15:08:23 -0800 | [diff] [blame] | 869 | if (!ocfs2_mount_local(osb) && !ocfs2_is_hard_readonly(osb) && |
| 870 | !ocfs2_userspace_stack(osb)) { |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 871 | mlog(ML_ERROR, "Heartbeat has to be started to mount " |
| 872 | "a read-write clustered device.\n"); |
| 873 | return -EINVAL; |
| 874 | } |
| 875 | } |
| 876 | |
| 877 | return 0; |
| 878 | } |
| 879 | |
Joel Becker | b61817e | 2008-02-01 15:08:23 -0800 | [diff] [blame] | 880 | /* |
| 881 | * If we're using a userspace stack, mount should have passed |
| 882 | * a name that matches the disk. If not, mount should not |
| 883 | * have passed a stack. |
| 884 | */ |
| 885 | static int ocfs2_verify_userspace_stack(struct ocfs2_super *osb, |
| 886 | struct mount_options *mopt) |
| 887 | { |
| 888 | if (!ocfs2_userspace_stack(osb) && mopt->cluster_stack[0]) { |
| 889 | mlog(ML_ERROR, |
| 890 | "cluster stack passed to mount, but this filesystem " |
| 891 | "does not support it\n"); |
| 892 | return -EINVAL; |
| 893 | } |
| 894 | |
| 895 | if (ocfs2_userspace_stack(osb) && |
| 896 | strncmp(osb->osb_cluster_stack, mopt->cluster_stack, |
| 897 | OCFS2_STACK_LABEL_LEN)) { |
| 898 | mlog(ML_ERROR, |
| 899 | "cluster stack passed to mount (\"%s\") does not " |
| 900 | "match the filesystem (\"%s\")\n", |
| 901 | mopt->cluster_stack, |
| 902 | osb->osb_cluster_stack); |
| 903 | return -EINVAL; |
| 904 | } |
| 905 | |
| 906 | return 0; |
| 907 | } |
| 908 | |
Jan Kara | 19ece54 | 2008-08-21 20:13:17 +0200 | [diff] [blame] | 909 | static int ocfs2_susp_quotas(struct ocfs2_super *osb, int unsuspend) |
| 910 | { |
| 911 | int type; |
| 912 | struct super_block *sb = osb->sb; |
Jan Kara | 5236281 | 2014-09-10 21:06:39 +0200 | [diff] [blame] | 913 | unsigned int feature[OCFS2_MAXQUOTAS] = { |
| 914 | OCFS2_FEATURE_RO_COMPAT_USRQUOTA, |
| 915 | OCFS2_FEATURE_RO_COMPAT_GRPQUOTA}; |
Jan Kara | 19ece54 | 2008-08-21 20:13:17 +0200 | [diff] [blame] | 916 | int status = 0; |
| 917 | |
Jan Kara | 5236281 | 2014-09-10 21:06:39 +0200 | [diff] [blame] | 918 | for (type = 0; type < OCFS2_MAXQUOTAS; type++) { |
Jan Kara | 19ece54 | 2008-08-21 20:13:17 +0200 | [diff] [blame] | 919 | if (!OCFS2_HAS_RO_COMPAT_FEATURE(sb, feature[type])) |
| 920 | continue; |
| 921 | if (unsuspend) |
Christoph Hellwig | 0f0dd62 | 2010-05-19 07:16:41 -0400 | [diff] [blame] | 922 | status = dquot_resume(sb, type); |
Jan Kara | eea7feb | 2010-05-13 22:14:53 +0200 | [diff] [blame] | 923 | else { |
| 924 | struct ocfs2_mem_dqinfo *oinfo; |
| 925 | |
| 926 | /* Cancel periodic syncing before suspending */ |
| 927 | oinfo = sb_dqinfo(sb, type)->dqi_priv; |
| 928 | cancel_delayed_work_sync(&oinfo->dqi_sync_work); |
Christoph Hellwig | 0f0dd62 | 2010-05-19 07:16:41 -0400 | [diff] [blame] | 929 | status = dquot_suspend(sb, type); |
Jan Kara | eea7feb | 2010-05-13 22:14:53 +0200 | [diff] [blame] | 930 | } |
Jan Kara | 19ece54 | 2008-08-21 20:13:17 +0200 | [diff] [blame] | 931 | if (status < 0) |
| 932 | break; |
| 933 | } |
| 934 | if (status < 0) |
| 935 | mlog(ML_ERROR, "Failed to suspend/unsuspend quotas on " |
| 936 | "remount (error = %d).\n", status); |
| 937 | return status; |
| 938 | } |
| 939 | |
| 940 | static int ocfs2_enable_quotas(struct ocfs2_super *osb) |
| 941 | { |
Jan Kara | 5236281 | 2014-09-10 21:06:39 +0200 | [diff] [blame] | 942 | struct inode *inode[OCFS2_MAXQUOTAS] = { NULL, NULL }; |
Jan Kara | 19ece54 | 2008-08-21 20:13:17 +0200 | [diff] [blame] | 943 | struct super_block *sb = osb->sb; |
Jan Kara | 5236281 | 2014-09-10 21:06:39 +0200 | [diff] [blame] | 944 | unsigned int feature[OCFS2_MAXQUOTAS] = { |
| 945 | OCFS2_FEATURE_RO_COMPAT_USRQUOTA, |
| 946 | OCFS2_FEATURE_RO_COMPAT_GRPQUOTA}; |
| 947 | unsigned int ino[OCFS2_MAXQUOTAS] = { |
| 948 | LOCAL_USER_QUOTA_SYSTEM_INODE, |
Jan Kara | 19ece54 | 2008-08-21 20:13:17 +0200 | [diff] [blame] | 949 | LOCAL_GROUP_QUOTA_SYSTEM_INODE }; |
| 950 | int status; |
| 951 | int type; |
| 952 | |
| 953 | sb_dqopt(sb)->flags |= DQUOT_QUOTA_SYS_FILE | DQUOT_NEGATIVE_USAGE; |
Jan Kara | 5236281 | 2014-09-10 21:06:39 +0200 | [diff] [blame] | 954 | for (type = 0; type < OCFS2_MAXQUOTAS; type++) { |
Jan Kara | 19ece54 | 2008-08-21 20:13:17 +0200 | [diff] [blame] | 955 | if (!OCFS2_HAS_RO_COMPAT_FEATURE(sb, feature[type])) |
| 956 | continue; |
| 957 | inode[type] = ocfs2_get_system_file_inode(osb, ino[type], |
| 958 | osb->slot_num); |
| 959 | if (!inode[type]) { |
| 960 | status = -ENOENT; |
| 961 | goto out_quota_off; |
| 962 | } |
Christoph Hellwig | 287a809 | 2010-05-19 07:16:45 -0400 | [diff] [blame] | 963 | status = dquot_enable(inode[type], type, QFMT_OCFS2, |
| 964 | DQUOT_USAGE_ENABLED); |
Jan Kara | 19ece54 | 2008-08-21 20:13:17 +0200 | [diff] [blame] | 965 | if (status < 0) |
| 966 | goto out_quota_off; |
| 967 | } |
| 968 | |
Jan Kara | 5236281 | 2014-09-10 21:06:39 +0200 | [diff] [blame] | 969 | for (type = 0; type < OCFS2_MAXQUOTAS; type++) |
Jan Kara | 19ece54 | 2008-08-21 20:13:17 +0200 | [diff] [blame] | 970 | iput(inode[type]); |
| 971 | return 0; |
| 972 | out_quota_off: |
| 973 | ocfs2_disable_quotas(osb); |
Jan Kara | 5236281 | 2014-09-10 21:06:39 +0200 | [diff] [blame] | 974 | for (type = 0; type < OCFS2_MAXQUOTAS; type++) |
Jan Kara | 19ece54 | 2008-08-21 20:13:17 +0200 | [diff] [blame] | 975 | iput(inode[type]); |
| 976 | mlog_errno(status); |
| 977 | return status; |
| 978 | } |
| 979 | |
| 980 | static void ocfs2_disable_quotas(struct ocfs2_super *osb) |
| 981 | { |
| 982 | int type; |
| 983 | struct inode *inode; |
| 984 | struct super_block *sb = osb->sb; |
Jan Kara | c06bcbf | 2010-05-13 22:14:53 +0200 | [diff] [blame] | 985 | struct ocfs2_mem_dqinfo *oinfo; |
Jan Kara | 19ece54 | 2008-08-21 20:13:17 +0200 | [diff] [blame] | 986 | |
| 987 | /* We mostly ignore errors in this function because there's not much |
| 988 | * we can do when we see them */ |
Jan Kara | 5236281 | 2014-09-10 21:06:39 +0200 | [diff] [blame] | 989 | for (type = 0; type < OCFS2_MAXQUOTAS; type++) { |
Jan Kara | 19ece54 | 2008-08-21 20:13:17 +0200 | [diff] [blame] | 990 | if (!sb_has_quota_loaded(sb, type)) |
| 991 | continue; |
Jan Kara | c06bcbf | 2010-05-13 22:14:53 +0200 | [diff] [blame] | 992 | /* Cancel periodic syncing before we grab dqonoff_mutex */ |
| 993 | oinfo = sb_dqinfo(sb, type)->dqi_priv; |
| 994 | cancel_delayed_work_sync(&oinfo->dqi_sync_work); |
Jan Kara | 19ece54 | 2008-08-21 20:13:17 +0200 | [diff] [blame] | 995 | inode = igrab(sb->s_dquot.files[type]); |
| 996 | /* Turn off quotas. This will remove all dquot structures from |
| 997 | * memory and so they will be automatically synced to global |
| 998 | * quota files */ |
Christoph Hellwig | 0f0dd62 | 2010-05-19 07:16:41 -0400 | [diff] [blame] | 999 | dquot_disable(sb, type, DQUOT_USAGE_ENABLED | |
| 1000 | DQUOT_LIMITS_ENABLED); |
Jan Kara | 19ece54 | 2008-08-21 20:13:17 +0200 | [diff] [blame] | 1001 | if (!inode) |
| 1002 | continue; |
| 1003 | iput(inode); |
| 1004 | } |
| 1005 | } |
| 1006 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1007 | static int ocfs2_fill_super(struct super_block *sb, void *data, int silent) |
| 1008 | { |
| 1009 | struct dentry *root; |
| 1010 | int status, sector_size; |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 1011 | struct mount_options parsed_options; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1012 | struct inode *inode = NULL; |
| 1013 | struct ocfs2_super *osb = NULL; |
| 1014 | struct buffer_head *bh = NULL; |
Goldwyn Rodrigues | 49fa814 | 2013-08-28 16:35:21 -0700 | [diff] [blame] | 1015 | char nodestr[12]; |
Joel Becker | 73be192 | 2009-01-06 14:57:08 -0800 | [diff] [blame] | 1016 | struct ocfs2_blockcheck_stats stats; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1017 | |
Tao Ma | 32a42d3 | 2011-02-23 21:29:08 +0800 | [diff] [blame] | 1018 | trace_ocfs2_fill_super(sb, data, silent); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1019 | |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 1020 | if (!ocfs2_parse_options(sb, data, &parsed_options, 0)) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1021 | status = -EINVAL; |
| 1022 | goto read_super_error; |
| 1023 | } |
| 1024 | |
| 1025 | /* probe for superblock */ |
Joel Becker | 73be192 | 2009-01-06 14:57:08 -0800 | [diff] [blame] | 1026 | status = ocfs2_sb_probe(sb, &bh, §or_size, &stats); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1027 | if (status < 0) { |
| 1028 | mlog(ML_ERROR, "superblock probe failed!\n"); |
| 1029 | goto read_super_error; |
| 1030 | } |
| 1031 | |
Joel Becker | 73be192 | 2009-01-06 14:57:08 -0800 | [diff] [blame] | 1032 | status = ocfs2_initialize_super(sb, bh, sector_size, &stats); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1033 | osb = OCFS2_SB(sb); |
| 1034 | if (status < 0) { |
| 1035 | mlog_errno(status); |
| 1036 | goto read_super_error; |
| 1037 | } |
| 1038 | brelse(bh); |
| 1039 | bh = NULL; |
Tiger Yang | a68979b | 2008-11-14 11:17:52 +0800 | [diff] [blame] | 1040 | |
Jan Kara | 5297aad | 2009-10-15 14:54:04 +0200 | [diff] [blame] | 1041 | if (!ocfs2_check_set_options(sb, &parsed_options)) { |
| 1042 | status = -EINVAL; |
| 1043 | goto read_super_error; |
| 1044 | } |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 1045 | osb->s_mount_opt = parsed_options.mount_opt; |
| 1046 | osb->s_atime_quantum = parsed_options.atime_quantum; |
| 1047 | osb->preferred_slot = parsed_options.slot; |
Mark Fasheh | d147b3d | 2007-11-07 14:40:36 -0800 | [diff] [blame] | 1048 | osb->osb_commit_interval = parsed_options.commit_interval; |
Mark Fasheh | 73c8a80 | 2010-04-05 18:17:13 -0700 | [diff] [blame] | 1049 | |
| 1050 | ocfs2_la_set_sizes(osb, parsed_options.localalloc_opt); |
Mark Fasheh | d02f00c | 2009-12-07 13:10:48 -0800 | [diff] [blame] | 1051 | osb->osb_resv_level = parsed_options.resv_level; |
Mark Fasheh | 83f9231 | 2010-04-05 18:17:16 -0700 | [diff] [blame] | 1052 | osb->osb_dir_resv_level = parsed_options.resv_level; |
| 1053 | if (parsed_options.dir_resv_level == -1) |
| 1054 | osb->osb_dir_resv_level = parsed_options.resv_level; |
| 1055 | else |
| 1056 | osb->osb_dir_resv_level = parsed_options.dir_resv_level; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1057 | |
Joel Becker | b61817e | 2008-02-01 15:08:23 -0800 | [diff] [blame] | 1058 | status = ocfs2_verify_userspace_stack(osb, &parsed_options); |
| 1059 | if (status) |
| 1060 | goto read_super_error; |
| 1061 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1062 | sb->s_magic = OCFS2_SUPER_MAGIC; |
| 1063 | |
Al Viro | 9e1f1de | 2011-06-03 18:24:58 -0400 | [diff] [blame] | 1064 | sb->s_flags = (sb->s_flags & ~(MS_POSIXACL | MS_NOSEC)) | |
Tiger Yang | a68979b | 2008-11-14 11:17:52 +0800 | [diff] [blame] | 1065 | ((osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0); |
| 1066 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1067 | /* Hard readonly mode only if: bdev_read_only, MS_RDONLY, |
| 1068 | * heartbeat=none */ |
| 1069 | if (bdev_read_only(sb->s_bdev)) { |
| 1070 | if (!(sb->s_flags & MS_RDONLY)) { |
| 1071 | status = -EACCES; |
| 1072 | mlog(ML_ERROR, "Readonly device detected but readonly " |
| 1073 | "mount was not specified.\n"); |
| 1074 | goto read_super_error; |
| 1075 | } |
| 1076 | |
| 1077 | /* You should not be able to start a local heartbeat |
| 1078 | * on a readonly device. */ |
| 1079 | if (osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) { |
| 1080 | status = -EROFS; |
| 1081 | mlog(ML_ERROR, "Local heartbeat specified on readonly " |
| 1082 | "device.\n"); |
| 1083 | goto read_super_error; |
| 1084 | } |
| 1085 | |
| 1086 | status = ocfs2_check_journals_nolocks(osb); |
| 1087 | if (status < 0) { |
| 1088 | if (status == -EROFS) |
| 1089 | mlog(ML_ERROR, "Recovery required on readonly " |
| 1090 | "file system, but write access is " |
| 1091 | "unavailable.\n"); |
| 1092 | else |
Sunil Mushran | 2bd6321 | 2010-01-25 16:57:38 -0800 | [diff] [blame] | 1093 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1094 | goto read_super_error; |
| 1095 | } |
| 1096 | |
| 1097 | ocfs2_set_ro_flag(osb, 1); |
| 1098 | |
Sunil Mushran | 619c200 | 2011-07-24 10:34:54 -0700 | [diff] [blame] | 1099 | printk(KERN_NOTICE "ocfs2: Readonly device (%s) detected. " |
| 1100 | "Cluster services will not be used for this mount. " |
| 1101 | "Recovery will be skipped.\n", osb->dev_str); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1102 | } |
| 1103 | |
| 1104 | if (!ocfs2_is_hard_readonly(osb)) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1105 | if (sb->s_flags & MS_RDONLY) |
| 1106 | ocfs2_set_ro_flag(osb, 0); |
| 1107 | } |
| 1108 | |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 1109 | status = ocfs2_verify_heartbeat(osb); |
| 1110 | if (status < 0) { |
| 1111 | mlog_errno(status); |
| 1112 | goto read_super_error; |
| 1113 | } |
| 1114 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1115 | osb->osb_debug_root = debugfs_create_dir(osb->uuid_str, |
| 1116 | ocfs2_debugfs_root); |
Linus Torvalds | 8f443e2 | 2015-04-21 09:17:28 -0700 | [diff] [blame] | 1117 | if (!osb->osb_debug_root) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1118 | status = -EINVAL; |
| 1119 | mlog(ML_ERROR, "Unable to create per-mount debugfs root.\n"); |
| 1120 | goto read_super_error; |
| 1121 | } |
| 1122 | |
Sunil Mushran | 5039750 | 2008-12-17 14:17:43 -0800 | [diff] [blame] | 1123 | osb->osb_ctxt = debugfs_create_file("fs_state", S_IFREG|S_IRUSR, |
| 1124 | osb->osb_debug_root, |
| 1125 | osb, |
| 1126 | &ocfs2_osb_debug_fops); |
Linus Torvalds | 8f443e2 | 2015-04-21 09:17:28 -0700 | [diff] [blame] | 1127 | if (!osb->osb_ctxt) { |
Sunil Mushran | 5039750 | 2008-12-17 14:17:43 -0800 | [diff] [blame] | 1128 | status = -EINVAL; |
| 1129 | mlog_errno(status); |
| 1130 | goto read_super_error; |
| 1131 | } |
| 1132 | |
Joel Becker | 73be192 | 2009-01-06 14:57:08 -0800 | [diff] [blame] | 1133 | if (ocfs2_meta_ecc(osb)) { |
| 1134 | status = ocfs2_blockcheck_stats_debugfs_install( |
| 1135 | &osb->osb_ecc_stats, |
| 1136 | osb->osb_debug_root); |
| 1137 | if (status) { |
| 1138 | mlog(ML_ERROR, |
| 1139 | "Unable to create blockcheck statistics " |
| 1140 | "files\n"); |
| 1141 | goto read_super_error; |
| 1142 | } |
| 1143 | } |
| 1144 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1145 | status = ocfs2_mount_volume(sb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1146 | if (status < 0) |
| 1147 | goto read_super_error; |
| 1148 | |
Al Viro | be0d93f | 2012-02-12 21:46:49 -0500 | [diff] [blame] | 1149 | if (osb->root_inode) |
| 1150 | inode = igrab(osb->root_inode); |
| 1151 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1152 | if (!inode) { |
| 1153 | status = -EIO; |
| 1154 | mlog_errno(status); |
| 1155 | goto read_super_error; |
| 1156 | } |
| 1157 | |
Al Viro | 48fde70 | 2012-01-08 22:15:13 -0500 | [diff] [blame] | 1158 | root = d_make_root(inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1159 | if (!root) { |
| 1160 | status = -ENOMEM; |
| 1161 | mlog_errno(status); |
| 1162 | goto read_super_error; |
| 1163 | } |
| 1164 | |
| 1165 | sb->s_root = root; |
| 1166 | |
| 1167 | ocfs2_complete_mount_recovery(osb); |
| 1168 | |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 1169 | if (ocfs2_mount_local(osb)) |
| 1170 | snprintf(nodestr, sizeof(nodestr), "local"); |
| 1171 | else |
Joel Becker | 19fdb62 | 2008-01-30 15:38:24 -0800 | [diff] [blame] | 1172 | snprintf(nodestr, sizeof(nodestr), "%u", osb->node_num); |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 1173 | |
| 1174 | printk(KERN_INFO "ocfs2: Mounting device (%s) on (node %s, slot %d) " |
Sunil Mushran | 781ee3e | 2006-04-27 16:41:31 -0700 | [diff] [blame] | 1175 | "with %s data mode.\n", |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 1176 | osb->dev_str, nodestr, osb->slot_num, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1177 | osb->s_mount_opt & OCFS2_MOUNT_DATA_WRITEBACK ? "writeback" : |
| 1178 | "ordered"); |
| 1179 | |
| 1180 | atomic_set(&osb->vol_state, VOLUME_MOUNTED); |
| 1181 | wake_up(&osb->osb_mount_event); |
| 1182 | |
Jan Kara | 19ece54 | 2008-08-21 20:13:17 +0200 | [diff] [blame] | 1183 | /* Now we can initialize quotas because we can afford to wait |
| 1184 | * for cluster locks recovery now. That also means that truncation |
| 1185 | * log recovery can happen but that waits for proper quota setup */ |
| 1186 | if (!(sb->s_flags & MS_RDONLY)) { |
| 1187 | status = ocfs2_enable_quotas(osb); |
| 1188 | if (status < 0) { |
| 1189 | /* We have to err-out specially here because |
| 1190 | * s_root is already set */ |
| 1191 | mlog_errno(status); |
| 1192 | atomic_set(&osb->vol_state, VOLUME_DISABLED); |
| 1193 | wake_up(&osb->osb_mount_event); |
Jan Kara | 19ece54 | 2008-08-21 20:13:17 +0200 | [diff] [blame] | 1194 | return status; |
| 1195 | } |
| 1196 | } |
| 1197 | |
| 1198 | ocfs2_complete_quota_recovery(osb); |
| 1199 | |
| 1200 | /* Now we wake up again for processes waiting for quotas */ |
| 1201 | atomic_set(&osb->vol_state, VOLUME_MOUNTED_QUOTAS); |
| 1202 | wake_up(&osb->osb_mount_event); |
| 1203 | |
Sunil Mushran | df152c2 | 2009-06-22 11:40:07 -0700 | [diff] [blame] | 1204 | /* Start this when the mount is almost sure of being successful */ |
Jeff Mahoney | 8b712cd | 2009-07-07 17:22:12 -0400 | [diff] [blame] | 1205 | ocfs2_orphan_scan_start(osb); |
Sunil Mushran | df152c2 | 2009-06-22 11:40:07 -0700 | [diff] [blame] | 1206 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1207 | return status; |
| 1208 | |
| 1209 | read_super_error: |
Mark Fasheh | a81cb88 | 2008-10-07 14:25:16 -0700 | [diff] [blame] | 1210 | brelse(bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1211 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1212 | if (osb) { |
| 1213 | atomic_set(&osb->vol_state, VOLUME_DISABLED); |
| 1214 | wake_up(&osb->osb_mount_event); |
| 1215 | ocfs2_dismount_volume(sb, 1); |
| 1216 | } |
| 1217 | |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 1218 | if (status) |
| 1219 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1220 | return status; |
| 1221 | } |
| 1222 | |
Al Viro | 152a083 | 2010-07-25 00:46:55 +0400 | [diff] [blame] | 1223 | static struct dentry *ocfs2_mount(struct file_system_type *fs_type, |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 1224 | int flags, |
| 1225 | const char *dev_name, |
Al Viro | 152a083 | 2010-07-25 00:46:55 +0400 | [diff] [blame] | 1226 | void *data) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1227 | { |
Al Viro | 152a083 | 2010-07-25 00:46:55 +0400 | [diff] [blame] | 1228 | return mount_bdev(fs_type, flags, dev_name, data, ocfs2_fill_super); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1229 | } |
| 1230 | |
| 1231 | static struct file_system_type ocfs2_fs_type = { |
| 1232 | .owner = THIS_MODULE, |
| 1233 | .name = "ocfs2", |
Al Viro | 152a083 | 2010-07-25 00:46:55 +0400 | [diff] [blame] | 1234 | .mount = ocfs2_mount, |
Goldwyn Rodrigues | 8ed6b23 | 2014-04-03 14:46:59 -0700 | [diff] [blame] | 1235 | .kill_sb = kill_block_super, |
Mark Fasheh | 1ba9da2 | 2006-09-08 14:22:54 -0700 | [diff] [blame] | 1236 | .fs_flags = FS_REQUIRES_DEV|FS_RENAME_DOES_D_MOVE, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1237 | .next = NULL |
| 1238 | }; |
Eric W. Biederman | 9141770 | 2013-03-07 01:08:55 -0800 | [diff] [blame] | 1239 | MODULE_ALIAS_FS("ocfs2"); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1240 | |
Jan Kara | 5297aad | 2009-10-15 14:54:04 +0200 | [diff] [blame] | 1241 | static int ocfs2_check_set_options(struct super_block *sb, |
| 1242 | struct mount_options *options) |
| 1243 | { |
| 1244 | if (options->mount_opt & OCFS2_MOUNT_USRQUOTA && |
| 1245 | !OCFS2_HAS_RO_COMPAT_FEATURE(sb, |
| 1246 | OCFS2_FEATURE_RO_COMPAT_USRQUOTA)) { |
| 1247 | mlog(ML_ERROR, "User quotas were requested, but this " |
| 1248 | "filesystem does not have the feature enabled.\n"); |
| 1249 | return 0; |
| 1250 | } |
| 1251 | if (options->mount_opt & OCFS2_MOUNT_GRPQUOTA && |
| 1252 | !OCFS2_HAS_RO_COMPAT_FEATURE(sb, |
| 1253 | OCFS2_FEATURE_RO_COMPAT_GRPQUOTA)) { |
| 1254 | mlog(ML_ERROR, "Group quotas were requested, but this " |
| 1255 | "filesystem does not have the feature enabled.\n"); |
| 1256 | return 0; |
| 1257 | } |
| 1258 | if (options->mount_opt & OCFS2_MOUNT_POSIX_ACL && |
| 1259 | !OCFS2_HAS_INCOMPAT_FEATURE(sb, OCFS2_FEATURE_INCOMPAT_XATTR)) { |
| 1260 | mlog(ML_ERROR, "ACL support requested but extended attributes " |
| 1261 | "feature is not enabled\n"); |
| 1262 | return 0; |
| 1263 | } |
| 1264 | /* No ACL setting specified? Use XATTR feature... */ |
| 1265 | if (!(options->mount_opt & (OCFS2_MOUNT_POSIX_ACL | |
| 1266 | OCFS2_MOUNT_NO_POSIX_ACL))) { |
| 1267 | if (OCFS2_HAS_INCOMPAT_FEATURE(sb, OCFS2_FEATURE_INCOMPAT_XATTR)) |
| 1268 | options->mount_opt |= OCFS2_MOUNT_POSIX_ACL; |
| 1269 | else |
| 1270 | options->mount_opt |= OCFS2_MOUNT_NO_POSIX_ACL; |
| 1271 | } |
| 1272 | return 1; |
| 1273 | } |
| 1274 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1275 | static int ocfs2_parse_options(struct super_block *sb, |
| 1276 | char *options, |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 1277 | struct mount_options *mopt, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1278 | int is_remount) |
| 1279 | { |
Mark Fasheh | 52c303c | 2011-01-31 11:31:04 -0800 | [diff] [blame] | 1280 | int status, user_stack = 0; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1281 | char *p; |
Sunil Mushran | 2c44271 | 2010-10-07 15:23:50 -0700 | [diff] [blame] | 1282 | u32 tmp; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1283 | |
Tao Ma | 32a42d3 | 2011-02-23 21:29:08 +0800 | [diff] [blame] | 1284 | trace_ocfs2_parse_options(is_remount, options ? options : "(none)"); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1285 | |
Mark Fasheh | d147b3d | 2007-11-07 14:40:36 -0800 | [diff] [blame] | 1286 | mopt->commit_interval = 0; |
Sunil Mushran | 4b37fcb | 2010-04-13 18:00:31 -0700 | [diff] [blame] | 1287 | mopt->mount_opt = OCFS2_MOUNT_NOINTR; |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 1288 | mopt->atime_quantum = OCFS2_DEFAULT_ATIME_QUANTUM; |
| 1289 | mopt->slot = OCFS2_INVALID_SLOT; |
Mark Fasheh | 73c8a80 | 2010-04-05 18:17:13 -0700 | [diff] [blame] | 1290 | mopt->localalloc_opt = -1; |
Joel Becker | b61817e | 2008-02-01 15:08:23 -0800 | [diff] [blame] | 1291 | mopt->cluster_stack[0] = '\0'; |
Mark Fasheh | d02f00c | 2009-12-07 13:10:48 -0800 | [diff] [blame] | 1292 | mopt->resv_level = OCFS2_DEFAULT_RESV_LEVEL; |
Mark Fasheh | 83f9231 | 2010-04-05 18:17:16 -0700 | [diff] [blame] | 1293 | mopt->dir_resv_level = -1; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1294 | |
| 1295 | if (!options) { |
| 1296 | status = 1; |
| 1297 | goto bail; |
| 1298 | } |
| 1299 | |
| 1300 | while ((p = strsep(&options, ",")) != NULL) { |
| 1301 | int token, option; |
| 1302 | substring_t args[MAX_OPT_ARGS]; |
| 1303 | |
| 1304 | if (!*p) |
| 1305 | continue; |
| 1306 | |
| 1307 | token = match_token(p, tokens, args); |
| 1308 | switch (token) { |
| 1309 | case Opt_hb_local: |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 1310 | mopt->mount_opt |= OCFS2_MOUNT_HB_LOCAL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1311 | break; |
| 1312 | case Opt_hb_none: |
Sunil Mushran | 2c44271 | 2010-10-07 15:23:50 -0700 | [diff] [blame] | 1313 | mopt->mount_opt |= OCFS2_MOUNT_HB_NONE; |
| 1314 | break; |
| 1315 | case Opt_hb_global: |
| 1316 | mopt->mount_opt |= OCFS2_MOUNT_HB_GLOBAL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1317 | break; |
| 1318 | case Opt_barrier: |
| 1319 | if (match_int(&args[0], &option)) { |
| 1320 | status = 0; |
| 1321 | goto bail; |
| 1322 | } |
| 1323 | if (option) |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 1324 | mopt->mount_opt |= OCFS2_MOUNT_BARRIER; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1325 | else |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 1326 | mopt->mount_opt &= ~OCFS2_MOUNT_BARRIER; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1327 | break; |
| 1328 | case Opt_intr: |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 1329 | mopt->mount_opt &= ~OCFS2_MOUNT_NOINTR; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1330 | break; |
| 1331 | case Opt_nointr: |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 1332 | mopt->mount_opt |= OCFS2_MOUNT_NOINTR; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1333 | break; |
| 1334 | case Opt_err_panic: |
Goldwyn Rodrigues | 7d0fb91 | 2015-09-04 15:44:11 -0700 | [diff] [blame] | 1335 | mopt->mount_opt &= ~OCFS2_MOUNT_ERRORS_CONT; |
| 1336 | mopt->mount_opt &= ~OCFS2_MOUNT_ERRORS_ROFS; |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 1337 | mopt->mount_opt |= OCFS2_MOUNT_ERRORS_PANIC; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1338 | break; |
| 1339 | case Opt_err_ro: |
Goldwyn Rodrigues | 7d0fb91 | 2015-09-04 15:44:11 -0700 | [diff] [blame] | 1340 | mopt->mount_opt &= ~OCFS2_MOUNT_ERRORS_CONT; |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 1341 | mopt->mount_opt &= ~OCFS2_MOUNT_ERRORS_PANIC; |
Goldwyn Rodrigues | 7d0fb91 | 2015-09-04 15:44:11 -0700 | [diff] [blame] | 1342 | mopt->mount_opt |= OCFS2_MOUNT_ERRORS_ROFS; |
| 1343 | break; |
| 1344 | case Opt_err_cont: |
| 1345 | mopt->mount_opt &= ~OCFS2_MOUNT_ERRORS_ROFS; |
| 1346 | mopt->mount_opt &= ~OCFS2_MOUNT_ERRORS_PANIC; |
| 1347 | mopt->mount_opt |= OCFS2_MOUNT_ERRORS_CONT; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1348 | break; |
| 1349 | case Opt_data_ordered: |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 1350 | mopt->mount_opt &= ~OCFS2_MOUNT_DATA_WRITEBACK; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1351 | break; |
| 1352 | case Opt_data_writeback: |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 1353 | mopt->mount_opt |= OCFS2_MOUNT_DATA_WRITEBACK; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1354 | break; |
Tiger Yang | cf1d6c7 | 2008-08-18 17:11:00 +0800 | [diff] [blame] | 1355 | case Opt_user_xattr: |
| 1356 | mopt->mount_opt &= ~OCFS2_MOUNT_NOUSERXATTR; |
| 1357 | break; |
| 1358 | case Opt_nouser_xattr: |
| 1359 | mopt->mount_opt |= OCFS2_MOUNT_NOUSERXATTR; |
| 1360 | break; |
Tiger Yang | 7f1a37e | 2006-11-15 15:48:42 +0800 | [diff] [blame] | 1361 | case Opt_atime_quantum: |
| 1362 | if (match_int(&args[0], &option)) { |
| 1363 | status = 0; |
| 1364 | goto bail; |
| 1365 | } |
| 1366 | if (option >= 0) |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 1367 | mopt->atime_quantum = option; |
Tiger Yang | 7f1a37e | 2006-11-15 15:48:42 +0800 | [diff] [blame] | 1368 | break; |
Sunil Mushran | baf4661 | 2007-06-18 17:00:24 -0700 | [diff] [blame] | 1369 | case Opt_slot: |
| 1370 | option = 0; |
| 1371 | if (match_int(&args[0], &option)) { |
| 1372 | status = 0; |
| 1373 | goto bail; |
| 1374 | } |
| 1375 | if (option) |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 1376 | mopt->slot = (s16)option; |
Sunil Mushran | baf4661 | 2007-06-18 17:00:24 -0700 | [diff] [blame] | 1377 | break; |
Mark Fasheh | d147b3d | 2007-11-07 14:40:36 -0800 | [diff] [blame] | 1378 | case Opt_commit: |
| 1379 | option = 0; |
| 1380 | if (match_int(&args[0], &option)) { |
| 1381 | status = 0; |
| 1382 | goto bail; |
| 1383 | } |
| 1384 | if (option < 0) |
| 1385 | return 0; |
| 1386 | if (option == 0) |
Joel Becker | 2b4e30f | 2008-09-03 20:03:41 -0700 | [diff] [blame] | 1387 | option = JBD2_DEFAULT_MAX_COMMIT_AGE; |
Mark Fasheh | d147b3d | 2007-11-07 14:40:36 -0800 | [diff] [blame] | 1388 | mopt->commit_interval = HZ * option; |
| 1389 | break; |
Sunil Mushran | 2fbe8d1 | 2007-12-20 14:58:11 -0800 | [diff] [blame] | 1390 | case Opt_localalloc: |
| 1391 | option = 0; |
| 1392 | if (match_int(&args[0], &option)) { |
| 1393 | status = 0; |
| 1394 | goto bail; |
| 1395 | } |
Mark Fasheh | 73c8a80 | 2010-04-05 18:17:13 -0700 | [diff] [blame] | 1396 | if (option >= 0) |
Sunil Mushran | 2fbe8d1 | 2007-12-20 14:58:11 -0800 | [diff] [blame] | 1397 | mopt->localalloc_opt = option; |
| 1398 | break; |
Mark Fasheh | 53fc622 | 2007-12-20 16:49:04 -0800 | [diff] [blame] | 1399 | case Opt_localflocks: |
| 1400 | /* |
| 1401 | * Changing this during remount could race |
| 1402 | * flock() requests, or "unbalance" existing |
| 1403 | * ones (e.g., a lock is taken in one mode but |
| 1404 | * dropped in the other). If users care enough |
| 1405 | * to flip locking modes during remount, we |
| 1406 | * could add a "local" flag to individual |
| 1407 | * flock structures for proper tracking of |
| 1408 | * state. |
| 1409 | */ |
| 1410 | if (!is_remount) |
| 1411 | mopt->mount_opt |= OCFS2_MOUNT_LOCALFLOCKS; |
| 1412 | break; |
Joel Becker | b61817e | 2008-02-01 15:08:23 -0800 | [diff] [blame] | 1413 | case Opt_stack: |
| 1414 | /* Check both that the option we were passed |
| 1415 | * is of the right length and that it is a proper |
| 1416 | * string of the right length. |
| 1417 | */ |
| 1418 | if (((args[0].to - args[0].from) != |
| 1419 | OCFS2_STACK_LABEL_LEN) || |
| 1420 | (strnlen(args[0].from, |
| 1421 | OCFS2_STACK_LABEL_LEN) != |
| 1422 | OCFS2_STACK_LABEL_LEN)) { |
| 1423 | mlog(ML_ERROR, |
| 1424 | "Invalid cluster_stack option\n"); |
| 1425 | status = 0; |
| 1426 | goto bail; |
| 1427 | } |
| 1428 | memcpy(mopt->cluster_stack, args[0].from, |
| 1429 | OCFS2_STACK_LABEL_LEN); |
| 1430 | mopt->cluster_stack[OCFS2_STACK_LABEL_LEN] = '\0'; |
Mark Fasheh | 52c303c | 2011-01-31 11:31:04 -0800 | [diff] [blame] | 1431 | /* |
| 1432 | * Open code the memcmp here as we don't have |
| 1433 | * an osb to pass to |
| 1434 | * ocfs2_userspace_stack(). |
| 1435 | */ |
| 1436 | if (memcmp(mopt->cluster_stack, |
| 1437 | OCFS2_CLASSIC_CLUSTER_STACK, |
| 1438 | OCFS2_STACK_LABEL_LEN)) |
| 1439 | user_stack = 1; |
Joel Becker | b61817e | 2008-02-01 15:08:23 -0800 | [diff] [blame] | 1440 | break; |
Joel Becker | 12462f1 | 2008-09-03 20:03:40 -0700 | [diff] [blame] | 1441 | case Opt_inode64: |
| 1442 | mopt->mount_opt |= OCFS2_MOUNT_INODE64; |
| 1443 | break; |
Jan Kara | 19ece54 | 2008-08-21 20:13:17 +0200 | [diff] [blame] | 1444 | case Opt_usrquota: |
Jan Kara | 19ece54 | 2008-08-21 20:13:17 +0200 | [diff] [blame] | 1445 | mopt->mount_opt |= OCFS2_MOUNT_USRQUOTA; |
| 1446 | break; |
| 1447 | case Opt_grpquota: |
Jan Kara | 19ece54 | 2008-08-21 20:13:17 +0200 | [diff] [blame] | 1448 | mopt->mount_opt |= OCFS2_MOUNT_GRPQUOTA; |
| 1449 | break; |
Tristan Ye | 7bdb0d1 | 2010-10-11 16:46:39 +0800 | [diff] [blame] | 1450 | case Opt_coherency_buffered: |
| 1451 | mopt->mount_opt |= OCFS2_MOUNT_COHERENCY_BUFFERED; |
| 1452 | break; |
| 1453 | case Opt_coherency_full: |
| 1454 | mopt->mount_opt &= ~OCFS2_MOUNT_COHERENCY_BUFFERED; |
| 1455 | break; |
Tiger Yang | a68979b | 2008-11-14 11:17:52 +0800 | [diff] [blame] | 1456 | case Opt_acl: |
| 1457 | mopt->mount_opt |= OCFS2_MOUNT_POSIX_ACL; |
Jan Kara | 5297aad | 2009-10-15 14:54:04 +0200 | [diff] [blame] | 1458 | mopt->mount_opt &= ~OCFS2_MOUNT_NO_POSIX_ACL; |
Tiger Yang | a68979b | 2008-11-14 11:17:52 +0800 | [diff] [blame] | 1459 | break; |
| 1460 | case Opt_noacl: |
Jan Kara | 5297aad | 2009-10-15 14:54:04 +0200 | [diff] [blame] | 1461 | mopt->mount_opt |= OCFS2_MOUNT_NO_POSIX_ACL; |
Tiger Yang | a68979b | 2008-11-14 11:17:52 +0800 | [diff] [blame] | 1462 | mopt->mount_opt &= ~OCFS2_MOUNT_POSIX_ACL; |
| 1463 | break; |
Mark Fasheh | d02f00c | 2009-12-07 13:10:48 -0800 | [diff] [blame] | 1464 | case Opt_resv_level: |
| 1465 | if (is_remount) |
| 1466 | break; |
| 1467 | if (match_int(&args[0], &option)) { |
| 1468 | status = 0; |
| 1469 | goto bail; |
| 1470 | } |
| 1471 | if (option >= OCFS2_MIN_RESV_LEVEL && |
| 1472 | option < OCFS2_MAX_RESV_LEVEL) |
| 1473 | mopt->resv_level = option; |
| 1474 | break; |
Mark Fasheh | 83f9231 | 2010-04-05 18:17:16 -0700 | [diff] [blame] | 1475 | case Opt_dir_resv_level: |
| 1476 | if (is_remount) |
| 1477 | break; |
| 1478 | if (match_int(&args[0], &option)) { |
| 1479 | status = 0; |
| 1480 | goto bail; |
| 1481 | } |
| 1482 | if (option >= OCFS2_MIN_RESV_LEVEL && |
| 1483 | option < OCFS2_MAX_RESV_LEVEL) |
| 1484 | mopt->dir_resv_level = option; |
| 1485 | break; |
alex chen | 1dfeb76 | 2015-02-10 14:09:04 -0800 | [diff] [blame] | 1486 | case Opt_journal_async_commit: |
| 1487 | mopt->mount_opt |= OCFS2_MOUNT_JOURNAL_ASYNC_COMMIT; |
| 1488 | break; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1489 | default: |
| 1490 | mlog(ML_ERROR, |
| 1491 | "Unrecognized mount option \"%s\" " |
| 1492 | "or missing value\n", p); |
| 1493 | status = 0; |
| 1494 | goto bail; |
| 1495 | } |
| 1496 | } |
| 1497 | |
Mark Fasheh | 52c303c | 2011-01-31 11:31:04 -0800 | [diff] [blame] | 1498 | if (user_stack == 0) { |
| 1499 | /* Ensure only one heartbeat mode */ |
| 1500 | tmp = mopt->mount_opt & (OCFS2_MOUNT_HB_LOCAL | |
| 1501 | OCFS2_MOUNT_HB_GLOBAL | |
| 1502 | OCFS2_MOUNT_HB_NONE); |
| 1503 | if (hweight32(tmp) != 1) { |
| 1504 | mlog(ML_ERROR, "Invalid heartbeat mount options\n"); |
| 1505 | status = 0; |
| 1506 | goto bail; |
| 1507 | } |
Sunil Mushran | 2c44271 | 2010-10-07 15:23:50 -0700 | [diff] [blame] | 1508 | } |
| 1509 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1510 | status = 1; |
| 1511 | |
| 1512 | bail: |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1513 | return status; |
| 1514 | } |
| 1515 | |
Al Viro | 34c80b1 | 2011-12-08 21:32:45 -0500 | [diff] [blame] | 1516 | static int ocfs2_show_options(struct seq_file *s, struct dentry *root) |
Sunil Mushran | d550071 | 2007-09-06 13:34:16 -0700 | [diff] [blame] | 1517 | { |
Al Viro | 34c80b1 | 2011-12-08 21:32:45 -0500 | [diff] [blame] | 1518 | struct ocfs2_super *osb = OCFS2_SB(root->d_sb); |
Sunil Mushran | d550071 | 2007-09-06 13:34:16 -0700 | [diff] [blame] | 1519 | unsigned long opts = osb->s_mount_opt; |
Mark Fasheh | ebcee4b | 2008-07-28 14:55:20 -0700 | [diff] [blame] | 1520 | unsigned int local_alloc_megs; |
Sunil Mushran | d550071 | 2007-09-06 13:34:16 -0700 | [diff] [blame] | 1521 | |
Sunil Mushran | 2c44271 | 2010-10-07 15:23:50 -0700 | [diff] [blame] | 1522 | if (opts & (OCFS2_MOUNT_HB_LOCAL | OCFS2_MOUNT_HB_GLOBAL)) { |
| 1523 | seq_printf(s, ",_netdev"); |
| 1524 | if (opts & OCFS2_MOUNT_HB_LOCAL) |
| 1525 | seq_printf(s, ",%s", OCFS2_HB_LOCAL); |
| 1526 | else |
| 1527 | seq_printf(s, ",%s", OCFS2_HB_GLOBAL); |
| 1528 | } else |
| 1529 | seq_printf(s, ",%s", OCFS2_HB_NONE); |
Sunil Mushran | d550071 | 2007-09-06 13:34:16 -0700 | [diff] [blame] | 1530 | |
| 1531 | if (opts & OCFS2_MOUNT_NOINTR) |
| 1532 | seq_printf(s, ",nointr"); |
| 1533 | |
| 1534 | if (opts & OCFS2_MOUNT_DATA_WRITEBACK) |
| 1535 | seq_printf(s, ",data=writeback"); |
| 1536 | else |
| 1537 | seq_printf(s, ",data=ordered"); |
| 1538 | |
| 1539 | if (opts & OCFS2_MOUNT_BARRIER) |
| 1540 | seq_printf(s, ",barrier=1"); |
| 1541 | |
| 1542 | if (opts & OCFS2_MOUNT_ERRORS_PANIC) |
| 1543 | seq_printf(s, ",errors=panic"); |
Goldwyn Rodrigues | 7d0fb91 | 2015-09-04 15:44:11 -0700 | [diff] [blame] | 1544 | else if (opts & OCFS2_MOUNT_ERRORS_CONT) |
| 1545 | seq_printf(s, ",errors=continue"); |
Sunil Mushran | d550071 | 2007-09-06 13:34:16 -0700 | [diff] [blame] | 1546 | else |
| 1547 | seq_printf(s, ",errors=remount-ro"); |
| 1548 | |
| 1549 | if (osb->preferred_slot != OCFS2_INVALID_SLOT) |
| 1550 | seq_printf(s, ",preferred_slot=%d", osb->preferred_slot); |
| 1551 | |
Al Viro | 34c80b1 | 2011-12-08 21:32:45 -0500 | [diff] [blame] | 1552 | seq_printf(s, ",atime_quantum=%u", osb->s_atime_quantum); |
Sunil Mushran | d550071 | 2007-09-06 13:34:16 -0700 | [diff] [blame] | 1553 | |
Mark Fasheh | d147b3d | 2007-11-07 14:40:36 -0800 | [diff] [blame] | 1554 | if (osb->osb_commit_interval) |
| 1555 | seq_printf(s, ",commit=%u", |
| 1556 | (unsigned) (osb->osb_commit_interval / HZ)); |
| 1557 | |
Mark Fasheh | ebcee4b | 2008-07-28 14:55:20 -0700 | [diff] [blame] | 1558 | local_alloc_megs = osb->local_alloc_bits >> (20 - osb->s_clustersize_bits); |
Mark Fasheh | 6b82021 | 2010-04-05 18:17:14 -0700 | [diff] [blame] | 1559 | if (local_alloc_megs != ocfs2_la_default_mb(osb)) |
Mark Fasheh | ebcee4b | 2008-07-28 14:55:20 -0700 | [diff] [blame] | 1560 | seq_printf(s, ",localalloc=%d", local_alloc_megs); |
Sunil Mushran | 2fbe8d1 | 2007-12-20 14:58:11 -0800 | [diff] [blame] | 1561 | |
Mark Fasheh | 53fc622 | 2007-12-20 16:49:04 -0800 | [diff] [blame] | 1562 | if (opts & OCFS2_MOUNT_LOCALFLOCKS) |
| 1563 | seq_printf(s, ",localflocks,"); |
| 1564 | |
Joel Becker | b61817e | 2008-02-01 15:08:23 -0800 | [diff] [blame] | 1565 | if (osb->osb_cluster_stack[0]) |
Kees Cook | a068acf | 2015-09-04 15:44:57 -0700 | [diff] [blame] | 1566 | seq_show_option_n(s, "cluster_stack", osb->osb_cluster_stack, |
| 1567 | OCFS2_STACK_LABEL_LEN); |
Jan Kara | 19ece54 | 2008-08-21 20:13:17 +0200 | [diff] [blame] | 1568 | if (opts & OCFS2_MOUNT_USRQUOTA) |
| 1569 | seq_printf(s, ",usrquota"); |
| 1570 | if (opts & OCFS2_MOUNT_GRPQUOTA) |
| 1571 | seq_printf(s, ",grpquota"); |
Joel Becker | b61817e | 2008-02-01 15:08:23 -0800 | [diff] [blame] | 1572 | |
Tristan Ye | 7bdb0d1 | 2010-10-11 16:46:39 +0800 | [diff] [blame] | 1573 | if (opts & OCFS2_MOUNT_COHERENCY_BUFFERED) |
| 1574 | seq_printf(s, ",coherency=buffered"); |
| 1575 | else |
| 1576 | seq_printf(s, ",coherency=full"); |
| 1577 | |
Sunil Mushran | b0f73cf | 2008-09-05 11:29:14 -0700 | [diff] [blame] | 1578 | if (opts & OCFS2_MOUNT_NOUSERXATTR) |
| 1579 | seq_printf(s, ",nouser_xattr"); |
| 1580 | else |
| 1581 | seq_printf(s, ",user_xattr"); |
| 1582 | |
Joel Becker | 12462f1 | 2008-09-03 20:03:40 -0700 | [diff] [blame] | 1583 | if (opts & OCFS2_MOUNT_INODE64) |
| 1584 | seq_printf(s, ",inode64"); |
| 1585 | |
Tiger Yang | a68979b | 2008-11-14 11:17:52 +0800 | [diff] [blame] | 1586 | if (opts & OCFS2_MOUNT_POSIX_ACL) |
| 1587 | seq_printf(s, ",acl"); |
| 1588 | else |
| 1589 | seq_printf(s, ",noacl"); |
Tiger Yang | a68979b | 2008-11-14 11:17:52 +0800 | [diff] [blame] | 1590 | |
Mark Fasheh | d02f00c | 2009-12-07 13:10:48 -0800 | [diff] [blame] | 1591 | if (osb->osb_resv_level != OCFS2_DEFAULT_RESV_LEVEL) |
| 1592 | seq_printf(s, ",resv_level=%d", osb->osb_resv_level); |
| 1593 | |
Mark Fasheh | 83f9231 | 2010-04-05 18:17:16 -0700 | [diff] [blame] | 1594 | if (osb->osb_dir_resv_level != osb->osb_resv_level) |
| 1595 | seq_printf(s, ",dir_resv_level=%d", osb->osb_resv_level); |
| 1596 | |
alex chen | 1dfeb76 | 2015-02-10 14:09:04 -0800 | [diff] [blame] | 1597 | if (opts & OCFS2_MOUNT_JOURNAL_ASYNC_COMMIT) |
| 1598 | seq_printf(s, ",journal_async_commit"); |
| 1599 | |
Sunil Mushran | d550071 | 2007-09-06 13:34:16 -0700 | [diff] [blame] | 1600 | return 0; |
| 1601 | } |
| 1602 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1603 | static int __init ocfs2_init(void) |
| 1604 | { |
Wengang Wang | c18ceab | 2014-04-03 14:46:46 -0700 | [diff] [blame] | 1605 | int status; |
Mark Fasheh | a11f7e6 | 2011-06-22 14:23:38 -0700 | [diff] [blame] | 1606 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1607 | status = init_ocfs2_uptodate_cache(); |
Al Viro | 342827d | 2012-03-17 22:03:58 -0400 | [diff] [blame] | 1608 | if (status < 0) |
| 1609 | goto out1; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1610 | |
| 1611 | status = ocfs2_initialize_mem_caches(); |
Al Viro | 342827d | 2012-03-17 22:03:58 -0400 | [diff] [blame] | 1612 | if (status < 0) |
| 1613 | goto out2; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1614 | |
| 1615 | ocfs2_wq = create_singlethread_workqueue("ocfs2_wq"); |
| 1616 | if (!ocfs2_wq) { |
| 1617 | status = -ENOMEM; |
Al Viro | 342827d | 2012-03-17 22:03:58 -0400 | [diff] [blame] | 1618 | goto out3; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1619 | } |
| 1620 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1621 | ocfs2_debugfs_root = debugfs_create_dir("ocfs2", NULL); |
Linus Torvalds | 8f443e2 | 2015-04-21 09:17:28 -0700 | [diff] [blame] | 1622 | if (!ocfs2_debugfs_root) { |
| 1623 | status = -ENOMEM; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1624 | mlog(ML_ERROR, "Unable to create ocfs2 debugfs root.\n"); |
Jan Kara | dc17158 | 2014-12-10 15:41:56 -0800 | [diff] [blame] | 1625 | goto out4; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1626 | } |
| 1627 | |
Joel Becker | 63e0c48 | 2008-01-30 16:58:36 -0800 | [diff] [blame] | 1628 | ocfs2_set_locking_protocol(); |
| 1629 | |
Jan Kara | 9e33d69 | 2008-08-25 19:56:50 +0200 | [diff] [blame] | 1630 | status = register_quota_format(&ocfs2_quota_format); |
Al Viro | 342827d | 2012-03-17 22:03:58 -0400 | [diff] [blame] | 1631 | if (status < 0) |
| 1632 | goto out4; |
| 1633 | status = register_filesystem(&ocfs2_fs_type); |
| 1634 | if (!status) |
| 1635 | return 0; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1636 | |
Al Viro | 342827d | 2012-03-17 22:03:58 -0400 | [diff] [blame] | 1637 | unregister_quota_format(&ocfs2_quota_format); |
| 1638 | out4: |
| 1639 | destroy_workqueue(ocfs2_wq); |
| 1640 | debugfs_remove(ocfs2_debugfs_root); |
| 1641 | out3: |
| 1642 | ocfs2_free_mem_caches(); |
| 1643 | out2: |
| 1644 | exit_ocfs2_uptodate_cache(); |
| 1645 | out1: |
| 1646 | mlog_errno(status); |
| 1647 | return status; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1648 | } |
| 1649 | |
| 1650 | static void __exit ocfs2_exit(void) |
| 1651 | { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1652 | if (ocfs2_wq) { |
| 1653 | flush_workqueue(ocfs2_wq); |
| 1654 | destroy_workqueue(ocfs2_wq); |
| 1655 | } |
| 1656 | |
Jan Kara | 9e33d69 | 2008-08-25 19:56:50 +0200 | [diff] [blame] | 1657 | unregister_quota_format(&ocfs2_quota_format); |
| 1658 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1659 | debugfs_remove(ocfs2_debugfs_root); |
| 1660 | |
| 1661 | ocfs2_free_mem_caches(); |
| 1662 | |
| 1663 | unregister_filesystem(&ocfs2_fs_type); |
| 1664 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1665 | exit_ocfs2_uptodate_cache(); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1666 | } |
| 1667 | |
| 1668 | static void ocfs2_put_super(struct super_block *sb) |
| 1669 | { |
Tao Ma | 32a42d3 | 2011-02-23 21:29:08 +0800 | [diff] [blame] | 1670 | trace_ocfs2_put_super(sb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1671 | |
| 1672 | ocfs2_sync_blockdev(sb); |
| 1673 | ocfs2_dismount_volume(sb, 0); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1674 | } |
| 1675 | |
David Howells | 726c334 | 2006-06-23 02:02:58 -0700 | [diff] [blame] | 1676 | static int ocfs2_statfs(struct dentry *dentry, struct kstatfs *buf) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1677 | { |
| 1678 | struct ocfs2_super *osb; |
| 1679 | u32 numbits, freebits; |
| 1680 | int status; |
| 1681 | struct ocfs2_dinode *bm_lock; |
| 1682 | struct buffer_head *bh = NULL; |
| 1683 | struct inode *inode = NULL; |
| 1684 | |
Tao Ma | 32a42d3 | 2011-02-23 21:29:08 +0800 | [diff] [blame] | 1685 | trace_ocfs2_statfs(dentry->d_sb, buf); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1686 | |
David Howells | 726c334 | 2006-06-23 02:02:58 -0700 | [diff] [blame] | 1687 | osb = OCFS2_SB(dentry->d_sb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1688 | |
| 1689 | inode = ocfs2_get_system_file_inode(osb, |
| 1690 | GLOBAL_BITMAP_SYSTEM_INODE, |
| 1691 | OCFS2_INVALID_SLOT); |
| 1692 | if (!inode) { |
| 1693 | mlog(ML_ERROR, "failed to get bitmap inode\n"); |
| 1694 | status = -EIO; |
| 1695 | goto bail; |
| 1696 | } |
| 1697 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1698 | status = ocfs2_inode_lock(inode, &bh, 0); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1699 | if (status < 0) { |
| 1700 | mlog_errno(status); |
| 1701 | goto bail; |
| 1702 | } |
| 1703 | |
| 1704 | bm_lock = (struct ocfs2_dinode *) bh->b_data; |
| 1705 | |
| 1706 | numbits = le32_to_cpu(bm_lock->id1.bitmap1.i_total); |
| 1707 | freebits = numbits - le32_to_cpu(bm_lock->id1.bitmap1.i_used); |
| 1708 | |
| 1709 | buf->f_type = OCFS2_SUPER_MAGIC; |
David Howells | 726c334 | 2006-06-23 02:02:58 -0700 | [diff] [blame] | 1710 | buf->f_bsize = dentry->d_sb->s_blocksize; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1711 | buf->f_namelen = OCFS2_MAX_FILENAME_LEN; |
| 1712 | buf->f_blocks = ((sector_t) numbits) * |
| 1713 | (osb->s_clustersize >> osb->sb->s_blocksize_bits); |
| 1714 | buf->f_bfree = ((sector_t) freebits) * |
| 1715 | (osb->s_clustersize >> osb->sb->s_blocksize_bits); |
| 1716 | buf->f_bavail = buf->f_bfree; |
| 1717 | buf->f_files = numbits; |
| 1718 | buf->f_ffree = freebits; |
Coly Li | 837711f | 2009-01-16 16:33:05 +0800 | [diff] [blame] | 1719 | buf->f_fsid.val[0] = crc32_le(0, osb->uuid_str, OCFS2_VOL_UUID_LEN) |
| 1720 | & 0xFFFFFFFFUL; |
| 1721 | buf->f_fsid.val[1] = crc32_le(0, osb->uuid_str + OCFS2_VOL_UUID_LEN, |
| 1722 | OCFS2_VOL_UUID_LEN) & 0xFFFFFFFFUL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1723 | |
| 1724 | brelse(bh); |
| 1725 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1726 | ocfs2_inode_unlock(inode, 0); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1727 | status = 0; |
| 1728 | bail: |
| 1729 | if (inode) |
| 1730 | iput(inode); |
| 1731 | |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 1732 | if (status) |
| 1733 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1734 | |
| 1735 | return status; |
| 1736 | } |
| 1737 | |
Alexey Dobriyan | 51cc506 | 2008-07-25 19:45:34 -0700 | [diff] [blame] | 1738 | static void ocfs2_inode_init_once(void *data) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1739 | { |
| 1740 | struct ocfs2_inode_info *oi = data; |
| 1741 | |
Christoph Lameter | a35afb8 | 2007-05-16 22:10:57 -0700 | [diff] [blame] | 1742 | oi->ip_flags = 0; |
| 1743 | oi->ip_open_count = 0; |
| 1744 | spin_lock_init(&oi->ip_lock); |
| 1745 | ocfs2_extent_map_init(&oi->vfs_inode); |
| 1746 | INIT_LIST_HEAD(&oi->ip_io_markers); |
Christoph Lameter | a35afb8 | 2007-05-16 22:10:57 -0700 | [diff] [blame] | 1747 | oi->ip_dir_start_lookup = 0; |
Wengang Wang | c18ceab | 2014-04-03 14:46:46 -0700 | [diff] [blame] | 1748 | mutex_init(&oi->ip_unaligned_aio); |
Christoph Lameter | a35afb8 | 2007-05-16 22:10:57 -0700 | [diff] [blame] | 1749 | init_rwsem(&oi->ip_alloc_sem); |
Tiger Yang | cf1d6c7 | 2008-08-18 17:11:00 +0800 | [diff] [blame] | 1750 | init_rwsem(&oi->ip_xattr_sem); |
Christoph Lameter | a35afb8 | 2007-05-16 22:10:57 -0700 | [diff] [blame] | 1751 | mutex_init(&oi->ip_io_mutex); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1752 | |
Christoph Lameter | a35afb8 | 2007-05-16 22:10:57 -0700 | [diff] [blame] | 1753 | oi->ip_blkno = 0ULL; |
| 1754 | oi->ip_clusters = 0; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1755 | |
Mark Fasheh | 4fe370a | 2009-12-07 13:15:40 -0800 | [diff] [blame] | 1756 | ocfs2_resv_init_once(&oi->ip_la_data_resv); |
| 1757 | |
Christoph Lameter | a35afb8 | 2007-05-16 22:10:57 -0700 | [diff] [blame] | 1758 | ocfs2_lock_res_init_once(&oi->ip_rw_lockres); |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1759 | ocfs2_lock_res_init_once(&oi->ip_inode_lockres); |
Christoph Lameter | a35afb8 | 2007-05-16 22:10:57 -0700 | [diff] [blame] | 1760 | ocfs2_lock_res_init_once(&oi->ip_open_lockres); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1761 | |
Joel Becker | 8cb471e | 2009-02-10 20:00:41 -0800 | [diff] [blame] | 1762 | ocfs2_metadata_cache_init(INODE_CACHE(&oi->vfs_inode), |
Joel Becker | 6e5a3d7 | 2009-02-10 19:00:37 -0800 | [diff] [blame] | 1763 | &ocfs2_inode_caching_ops); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1764 | |
Christoph Lameter | a35afb8 | 2007-05-16 22:10:57 -0700 | [diff] [blame] | 1765 | inode_init_once(&oi->vfs_inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1766 | } |
| 1767 | |
| 1768 | static int ocfs2_initialize_mem_caches(void) |
| 1769 | { |
| 1770 | ocfs2_inode_cachep = kmem_cache_create("ocfs2_inode_cache", |
Paul Jackson | fffb60f | 2006-03-24 03:16:06 -0800 | [diff] [blame] | 1771 | sizeof(struct ocfs2_inode_info), |
| 1772 | 0, |
| 1773 | (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT| |
| 1774 | SLAB_MEM_SPREAD), |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 1775 | ocfs2_inode_init_once); |
Jan Kara | 9e33d69 | 2008-08-25 19:56:50 +0200 | [diff] [blame] | 1776 | ocfs2_dquot_cachep = kmem_cache_create("ocfs2_dquot_cache", |
| 1777 | sizeof(struct ocfs2_dquot), |
| 1778 | 0, |
| 1779 | (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT| |
| 1780 | SLAB_MEM_SPREAD), |
| 1781 | NULL); |
| 1782 | ocfs2_qf_chunk_cachep = kmem_cache_create("ocfs2_qf_chunk_cache", |
| 1783 | sizeof(struct ocfs2_quota_chunk), |
| 1784 | 0, |
| 1785 | (SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD), |
| 1786 | NULL); |
| 1787 | if (!ocfs2_inode_cachep || !ocfs2_dquot_cachep || |
| 1788 | !ocfs2_qf_chunk_cachep) { |
| 1789 | if (ocfs2_inode_cachep) |
| 1790 | kmem_cache_destroy(ocfs2_inode_cachep); |
| 1791 | if (ocfs2_dquot_cachep) |
| 1792 | kmem_cache_destroy(ocfs2_dquot_cachep); |
| 1793 | if (ocfs2_qf_chunk_cachep) |
| 1794 | kmem_cache_destroy(ocfs2_qf_chunk_cachep); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1795 | return -ENOMEM; |
Jan Kara | 9e33d69 | 2008-08-25 19:56:50 +0200 | [diff] [blame] | 1796 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1797 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1798 | return 0; |
| 1799 | } |
| 1800 | |
| 1801 | static void ocfs2_free_mem_caches(void) |
| 1802 | { |
Kirill A. Shutemov | 8c0a853 | 2012-09-26 11:33:07 +1000 | [diff] [blame] | 1803 | /* |
| 1804 | * Make sure all delayed rcu free inodes are flushed before we |
| 1805 | * destroy cache. |
| 1806 | */ |
| 1807 | rcu_barrier(); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1808 | if (ocfs2_inode_cachep) |
| 1809 | kmem_cache_destroy(ocfs2_inode_cachep); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1810 | ocfs2_inode_cachep = NULL; |
Jan Kara | 9e33d69 | 2008-08-25 19:56:50 +0200 | [diff] [blame] | 1811 | |
| 1812 | if (ocfs2_dquot_cachep) |
| 1813 | kmem_cache_destroy(ocfs2_dquot_cachep); |
| 1814 | ocfs2_dquot_cachep = NULL; |
| 1815 | |
| 1816 | if (ocfs2_qf_chunk_cachep) |
| 1817 | kmem_cache_destroy(ocfs2_qf_chunk_cachep); |
| 1818 | ocfs2_qf_chunk_cachep = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1819 | } |
| 1820 | |
| 1821 | static int ocfs2_get_sector(struct super_block *sb, |
| 1822 | struct buffer_head **bh, |
| 1823 | int block, |
| 1824 | int sect_size) |
| 1825 | { |
| 1826 | if (!sb_set_blocksize(sb, sect_size)) { |
| 1827 | mlog(ML_ERROR, "unable to set blocksize\n"); |
| 1828 | return -EIO; |
| 1829 | } |
| 1830 | |
| 1831 | *bh = sb_getblk(sb, block); |
| 1832 | if (!*bh) { |
Rui Xiang | 7391a29 | 2013-11-12 15:06:54 -0800 | [diff] [blame] | 1833 | mlog_errno(-ENOMEM); |
| 1834 | return -ENOMEM; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1835 | } |
| 1836 | lock_buffer(*bh); |
| 1837 | if (!buffer_dirty(*bh)) |
| 1838 | clear_buffer_uptodate(*bh); |
| 1839 | unlock_buffer(*bh); |
| 1840 | ll_rw_block(READ, 1, bh); |
| 1841 | wait_on_buffer(*bh); |
wengang wang | 28d57d4 | 2009-02-13 10:11:47 +0800 | [diff] [blame] | 1842 | if (!buffer_uptodate(*bh)) { |
| 1843 | mlog_errno(-EIO); |
| 1844 | brelse(*bh); |
| 1845 | *bh = NULL; |
| 1846 | return -EIO; |
| 1847 | } |
| 1848 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1849 | return 0; |
| 1850 | } |
| 1851 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1852 | static int ocfs2_mount_volume(struct super_block *sb) |
| 1853 | { |
| 1854 | int status = 0; |
| 1855 | int unlock_super = 0; |
| 1856 | struct ocfs2_super *osb = OCFS2_SB(sb); |
| 1857 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1858 | if (ocfs2_is_hard_readonly(osb)) |
| 1859 | goto leave; |
| 1860 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1861 | status = ocfs2_dlm_init(osb); |
| 1862 | if (status < 0) { |
| 1863 | mlog_errno(status); |
| 1864 | goto leave; |
| 1865 | } |
| 1866 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1867 | status = ocfs2_super_lock(osb, 1); |
| 1868 | if (status < 0) { |
| 1869 | mlog_errno(status); |
| 1870 | goto leave; |
| 1871 | } |
| 1872 | unlock_super = 1; |
| 1873 | |
| 1874 | /* This will load up the node map and add ourselves to it. */ |
| 1875 | status = ocfs2_find_slot(osb); |
| 1876 | if (status < 0) { |
| 1877 | mlog_errno(status); |
| 1878 | goto leave; |
| 1879 | } |
| 1880 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1881 | /* load all node-local system inodes */ |
| 1882 | status = ocfs2_init_local_system_inodes(osb); |
| 1883 | if (status < 0) { |
| 1884 | mlog_errno(status); |
| 1885 | goto leave; |
| 1886 | } |
| 1887 | |
| 1888 | status = ocfs2_check_volume(osb); |
| 1889 | if (status < 0) { |
| 1890 | mlog_errno(status); |
| 1891 | goto leave; |
| 1892 | } |
| 1893 | |
| 1894 | status = ocfs2_truncate_log_init(osb); |
Tao Ma | 06c59bb | 2009-05-19 06:47:20 +0800 | [diff] [blame] | 1895 | if (status < 0) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1896 | mlog_errno(status); |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 1897 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1898 | leave: |
| 1899 | if (unlock_super) |
| 1900 | ocfs2_super_unlock(osb, 1); |
| 1901 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1902 | return status; |
| 1903 | } |
| 1904 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1905 | static void ocfs2_dismount_volume(struct super_block *sb, int mnt_err) |
| 1906 | { |
Joel Becker | 286eaa9 | 2008-02-01 15:03:57 -0800 | [diff] [blame] | 1907 | int tmp, hangup_needed = 0; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1908 | struct ocfs2_super *osb = NULL; |
Goldwyn Rodrigues | 99d7a88 | 2013-09-24 15:27:32 -0700 | [diff] [blame] | 1909 | char nodestr[12]; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1910 | |
Tao Ma | 32a42d3 | 2011-02-23 21:29:08 +0800 | [diff] [blame] | 1911 | trace_ocfs2_dismount_volume(sb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1912 | |
| 1913 | BUG_ON(!sb); |
| 1914 | osb = OCFS2_SB(sb); |
| 1915 | BUG_ON(!osb); |
| 1916 | |
Sunil Mushran | 5039750 | 2008-12-17 14:17:43 -0800 | [diff] [blame] | 1917 | debugfs_remove(osb->osb_ctxt); |
| 1918 | |
Sunil Mushran | 692684e | 2009-06-19 16:53:17 -0700 | [diff] [blame] | 1919 | /* Orphan scan should be stopped as early as possible */ |
| 1920 | ocfs2_orphan_scan_stop(osb); |
| 1921 | |
Jan Kara | 19ece54 | 2008-08-21 20:13:17 +0200 | [diff] [blame] | 1922 | ocfs2_disable_quotas(osb); |
| 1923 | |
Jan Kara | e3a767b | 2014-04-03 14:46:56 -0700 | [diff] [blame] | 1924 | /* All dquots should be freed by now */ |
| 1925 | WARN_ON(!llist_empty(&osb->dquot_drop_list)); |
| 1926 | /* Wait for worker to be done with the work structure in osb */ |
| 1927 | cancel_work_sync(&osb->dquot_drop_work); |
| 1928 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1929 | ocfs2_shutdown_local_alloc(osb); |
| 1930 | |
Xue jiufei | b253bfd | 2014-06-23 13:22:08 -0700 | [diff] [blame] | 1931 | ocfs2_truncate_log_shutdown(osb); |
| 1932 | |
Joel Becker | 553abd0 | 2008-02-01 12:03:57 -0800 | [diff] [blame] | 1933 | /* This will disable recovery and flush any recovery work. */ |
| 1934 | ocfs2_recovery_exit(osb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1935 | |
| 1936 | ocfs2_journal_shutdown(osb); |
| 1937 | |
| 1938 | ocfs2_sync_blockdev(sb); |
| 1939 | |
Tao Ma | 374a263 | 2009-08-24 11:13:37 +0800 | [diff] [blame] | 1940 | ocfs2_purge_refcount_trees(osb); |
| 1941 | |
Joel Becker | 4670c46 | 2008-02-01 14:39:35 -0800 | [diff] [blame] | 1942 | /* No cluster connection means we've failed during mount, so skip |
| 1943 | * all the steps which depended on that to complete. */ |
| 1944 | if (osb->cconn) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1945 | tmp = ocfs2_super_lock(osb, 1); |
| 1946 | if (tmp < 0) { |
| 1947 | mlog_errno(tmp); |
| 1948 | return; |
| 1949 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1950 | } |
| 1951 | |
Mark Fasheh | 19b613d | 2007-10-04 14:47:09 -0700 | [diff] [blame] | 1952 | if (osb->slot_num != OCFS2_INVALID_SLOT) |
| 1953 | ocfs2_put_slot(osb); |
| 1954 | |
Joel Becker | 4670c46 | 2008-02-01 14:39:35 -0800 | [diff] [blame] | 1955 | if (osb->cconn) |
Mark Fasheh | 19b613d | 2007-10-04 14:47:09 -0700 | [diff] [blame] | 1956 | ocfs2_super_unlock(osb, 1); |
| 1957 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1958 | ocfs2_release_system_inodes(osb); |
| 1959 | |
Joel Becker | 6953b4c | 2008-01-29 16:59:56 -0800 | [diff] [blame] | 1960 | /* |
Joel Becker | 6953b4c | 2008-01-29 16:59:56 -0800 | [diff] [blame] | 1961 | * If we're dismounting due to mount error, mount.ocfs2 will clean |
| 1962 | * up heartbeat. If we're a local mount, there is no heartbeat. |
| 1963 | * If we failed before we got a uuid_str yet, we can't stop |
| 1964 | * heartbeat. Otherwise, do it. |
| 1965 | */ |
Tiger Yang | 03efed8 | 2011-05-28 00:34:19 +0800 | [diff] [blame] | 1966 | if (!mnt_err && !ocfs2_mount_local(osb) && osb->uuid_str && |
| 1967 | !ocfs2_is_hard_readonly(osb)) |
Joel Becker | 286eaa9 | 2008-02-01 15:03:57 -0800 | [diff] [blame] | 1968 | hangup_needed = 1; |
| 1969 | |
| 1970 | if (osb->cconn) |
| 1971 | ocfs2_dlm_shutdown(osb, hangup_needed); |
| 1972 | |
Joel Becker | 73be192 | 2009-01-06 14:57:08 -0800 | [diff] [blame] | 1973 | ocfs2_blockcheck_stats_debugfs_remove(&osb->osb_ecc_stats); |
Joel Becker | 286eaa9 | 2008-02-01 15:03:57 -0800 | [diff] [blame] | 1974 | debugfs_remove(osb->osb_debug_root); |
| 1975 | |
| 1976 | if (hangup_needed) |
Joel Becker | 6953b4c | 2008-01-29 16:59:56 -0800 | [diff] [blame] | 1977 | ocfs2_cluster_hangup(osb->uuid_str, strlen(osb->uuid_str)); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1978 | |
| 1979 | atomic_set(&osb->vol_state, VOLUME_DISMOUNTED); |
| 1980 | |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 1981 | if (ocfs2_mount_local(osb)) |
| 1982 | snprintf(nodestr, sizeof(nodestr), "local"); |
| 1983 | else |
Joel Becker | 19fdb62 | 2008-01-30 15:38:24 -0800 | [diff] [blame] | 1984 | snprintf(nodestr, sizeof(nodestr), "%u", osb->node_num); |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 1985 | |
| 1986 | printk(KERN_INFO "ocfs2: Unmounting device (%s) on (node %s)\n", |
| 1987 | osb->dev_str, nodestr); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1988 | |
| 1989 | ocfs2_delete_osb(osb); |
| 1990 | kfree(osb); |
| 1991 | sb->s_dev = 0; |
| 1992 | sb->s_fs_info = NULL; |
| 1993 | } |
| 1994 | |
| 1995 | static int ocfs2_setup_osb_uuid(struct ocfs2_super *osb, const unsigned char *uuid, |
| 1996 | unsigned uuid_bytes) |
| 1997 | { |
| 1998 | int i, ret; |
| 1999 | char *ptr; |
| 2000 | |
| 2001 | BUG_ON(uuid_bytes != OCFS2_VOL_UUID_LEN); |
| 2002 | |
Robert P. J. Day | cd86128 | 2006-12-13 00:34:52 -0800 | [diff] [blame] | 2003 | osb->uuid_str = kzalloc(OCFS2_VOL_UUID_LEN * 2 + 1, GFP_KERNEL); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2004 | if (osb->uuid_str == NULL) |
| 2005 | return -ENOMEM; |
| 2006 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2007 | for (i = 0, ptr = osb->uuid_str; i < OCFS2_VOL_UUID_LEN; i++) { |
| 2008 | /* print with null */ |
| 2009 | ret = snprintf(ptr, 3, "%02X", uuid[i]); |
| 2010 | if (ret != 2) /* drop super cleans up */ |
| 2011 | return -EINVAL; |
| 2012 | /* then only advance past the last char */ |
| 2013 | ptr += 2; |
| 2014 | } |
| 2015 | |
| 2016 | return 0; |
| 2017 | } |
| 2018 | |
Patrick J. LoPresti | 3bdb8ef | 2010-07-22 15:05:57 -0700 | [diff] [blame] | 2019 | /* Make sure entire volume is addressable by our journal. Requires |
| 2020 | osb_clusters_at_boot to be valid and for the journal to have been |
| 2021 | initialized by ocfs2_journal_init(). */ |
| 2022 | static int ocfs2_journal_addressable(struct ocfs2_super *osb) |
| 2023 | { |
| 2024 | int status = 0; |
| 2025 | u64 max_block = |
| 2026 | ocfs2_clusters_to_blocks(osb->sb, |
| 2027 | osb->osb_clusters_at_boot) - 1; |
| 2028 | |
| 2029 | /* 32-bit block number is always OK. */ |
| 2030 | if (max_block <= (u32)~0ULL) |
| 2031 | goto out; |
| 2032 | |
| 2033 | /* Volume is "huge", so see if our journal is new enough to |
| 2034 | support it. */ |
| 2035 | if (!(OCFS2_HAS_COMPAT_FEATURE(osb->sb, |
| 2036 | OCFS2_FEATURE_COMPAT_JBD2_SB) && |
| 2037 | jbd2_journal_check_used_features(osb->journal->j_journal, 0, 0, |
| 2038 | JBD2_FEATURE_INCOMPAT_64BIT))) { |
| 2039 | mlog(ML_ERROR, "The journal cannot address the entire volume. " |
| 2040 | "Enable the 'block64' journal option with tunefs.ocfs2"); |
| 2041 | status = -EFBIG; |
| 2042 | goto out; |
| 2043 | } |
| 2044 | |
| 2045 | out: |
| 2046 | return status; |
| 2047 | } |
| 2048 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2049 | static int ocfs2_initialize_super(struct super_block *sb, |
| 2050 | struct buffer_head *bh, |
Joel Becker | 73be192 | 2009-01-06 14:57:08 -0800 | [diff] [blame] | 2051 | int sector_size, |
| 2052 | struct ocfs2_blockcheck_stats *stats) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2053 | { |
Denis Cheng | bddb8eb3 | 2007-09-27 02:10:04 +0800 | [diff] [blame] | 2054 | int status; |
Mark Fasheh | 5a25403 | 2007-07-20 12:56:16 -0700 | [diff] [blame] | 2055 | int i, cbits, bbits; |
| 2056 | struct ocfs2_dinode *di = (struct ocfs2_dinode *)bh->b_data; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2057 | struct inode *inode = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2058 | struct ocfs2_journal *journal; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2059 | struct ocfs2_super *osb; |
Patrick J. LoPresti | 3bdb8ef | 2010-07-22 15:05:57 -0700 | [diff] [blame] | 2060 | u64 total_blocks; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2061 | |
Robert P. J. Day | cd86128 | 2006-12-13 00:34:52 -0800 | [diff] [blame] | 2062 | osb = kzalloc(sizeof(struct ocfs2_super), GFP_KERNEL); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2063 | if (!osb) { |
| 2064 | status = -ENOMEM; |
| 2065 | mlog_errno(status); |
| 2066 | goto bail; |
| 2067 | } |
| 2068 | |
| 2069 | sb->s_fs_info = osb; |
| 2070 | sb->s_op = &ocfs2_sops; |
Al Viro | ba87167 | 2010-12-18 12:10:00 -0500 | [diff] [blame] | 2071 | sb->s_d_op = &ocfs2_dentry_ops; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2072 | sb->s_export_op = &ocfs2_export_ops; |
Jan Kara | 664dbd5 | 2014-10-08 18:30:19 +0200 | [diff] [blame] | 2073 | sb->s_qcop = &dquot_quotactl_sysfile_ops; |
Jan Kara | 19ece54 | 2008-08-21 20:13:17 +0200 | [diff] [blame] | 2074 | sb->dq_op = &ocfs2_quota_operations; |
Jan Kara | 1c92ec6 | 2014-09-29 15:02:51 +0200 | [diff] [blame] | 2075 | sb->s_quota_types = QTYPE_MASK_USR | QTYPE_MASK_GRP; |
Tiger Yang | cf1d6c7 | 2008-08-18 17:11:00 +0800 | [diff] [blame] | 2076 | sb->s_xattr = ocfs2_xattr_handlers; |
Mark Fasheh | e0dceaf | 2007-08-09 16:52:30 -0700 | [diff] [blame] | 2077 | sb->s_time_gran = 1; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2078 | sb->s_flags |= MS_NOATIME; |
| 2079 | /* this is needed to support O_LARGEFILE */ |
Mark Fasheh | 5a25403 | 2007-07-20 12:56:16 -0700 | [diff] [blame] | 2080 | cbits = le32_to_cpu(di->id2.i_super.s_clustersize_bits); |
| 2081 | bbits = le32_to_cpu(di->id2.i_super.s_blocksize_bits); |
| 2082 | sb->s_maxbytes = ocfs2_max_file_offset(bbits, cbits); |
Vladimir Davydov | 58be19d | 2015-04-14 15:46:39 -0700 | [diff] [blame] | 2083 | memcpy(sb->s_uuid, di->id2.i_super.s_uuid, |
| 2084 | sizeof(di->id2.i_super.s_uuid)); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2085 | |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 2086 | osb->osb_dx_mask = (1 << (cbits - bbits)) - 1; |
| 2087 | |
| 2088 | for (i = 0; i < 3; i++) |
| 2089 | osb->osb_dx_seed[i] = le32_to_cpu(di->id2.i_super.s_dx_seed[i]); |
| 2090 | osb->osb_dx_seed[3] = le32_to_cpu(di->id2.i_super.s_uuid_hash); |
| 2091 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2092 | osb->sb = sb; |
| 2093 | /* Save off for ocfs2_rw_direct */ |
| 2094 | osb->s_sectsize_bits = blksize_bits(sector_size); |
Eric Sesterhenn / snakebyte | ebdec83 | 2006-01-27 10:32:52 +0100 | [diff] [blame] | 2095 | BUG_ON(!osb->s_sectsize_bits); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2096 | |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 2097 | spin_lock_init(&osb->dc_task_lock); |
| 2098 | init_waitqueue_head(&osb->dc_event); |
| 2099 | osb->dc_work_sequence = 0; |
| 2100 | osb->dc_wake_sequence = 0; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2101 | INIT_LIST_HEAD(&osb->blocked_lock_list); |
| 2102 | osb->blocked_lock_count = 0; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2103 | spin_lock_init(&osb->osb_lock); |
Tao Ma | c8b9cf9 | 2009-02-24 17:40:26 -0800 | [diff] [blame] | 2104 | spin_lock_init(&osb->osb_xattr_lock); |
Tiger Yang | b89c542 | 2010-01-25 14:11:06 +0800 | [diff] [blame] | 2105 | ocfs2_init_steal_slots(osb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2106 | |
jiangyiwen | 43b10a2 | 2014-04-03 14:47:13 -0700 | [diff] [blame] | 2107 | mutex_init(&osb->system_file_mutex); |
| 2108 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2109 | atomic_set(&osb->alloc_stats.moves, 0); |
| 2110 | atomic_set(&osb->alloc_stats.local_data, 0); |
| 2111 | atomic_set(&osb->alloc_stats.bitmap_data, 0); |
| 2112 | atomic_set(&osb->alloc_stats.bg_allocs, 0); |
| 2113 | atomic_set(&osb->alloc_stats.bg_extends, 0); |
| 2114 | |
Joel Becker | 73be192 | 2009-01-06 14:57:08 -0800 | [diff] [blame] | 2115 | /* Copy the blockcheck stats from the superblock probe */ |
| 2116 | osb->osb_ecc_stats = *stats; |
| 2117 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2118 | ocfs2_init_node_maps(osb); |
| 2119 | |
| 2120 | snprintf(osb->dev_str, sizeof(osb->dev_str), "%u,%u", |
| 2121 | MAJOR(osb->sb->s_dev), MINOR(osb->sb->s_dev)); |
| 2122 | |
Goldwyn Rodrigues | 75d9bbc | 2010-10-11 12:57:09 -0500 | [diff] [blame] | 2123 | osb->max_slots = le16_to_cpu(di->id2.i_super.s_max_slots); |
| 2124 | if (osb->max_slots > OCFS2_MAX_SLOTS || osb->max_slots == 0) { |
| 2125 | mlog(ML_ERROR, "Invalid number of node slots (%u)\n", |
| 2126 | osb->max_slots); |
| 2127 | status = -EINVAL; |
| 2128 | goto bail; |
| 2129 | } |
Goldwyn Rodrigues | 75d9bbc | 2010-10-11 12:57:09 -0500 | [diff] [blame] | 2130 | |
Jeff Mahoney | 8b712cd | 2009-07-07 17:22:12 -0400 | [diff] [blame] | 2131 | ocfs2_orphan_scan_init(osb); |
| 2132 | |
Joel Becker | 553abd0 | 2008-02-01 12:03:57 -0800 | [diff] [blame] | 2133 | status = ocfs2_recovery_init(osb); |
| 2134 | if (status) { |
| 2135 | mlog(ML_ERROR, "Unable to initialize recovery state\n"); |
| 2136 | mlog_errno(status); |
| 2137 | goto bail; |
| 2138 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2139 | |
| 2140 | init_waitqueue_head(&osb->checkpoint_event); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2141 | |
Tiger Yang | 7f1a37e | 2006-11-15 15:48:42 +0800 | [diff] [blame] | 2142 | osb->s_atime_quantum = OCFS2_DEFAULT_ATIME_QUANTUM; |
| 2143 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2144 | osb->slot_num = OCFS2_INVALID_SLOT; |
| 2145 | |
Tiger Yang | 8154da3 | 2008-08-18 17:11:46 +0800 | [diff] [blame] | 2146 | osb->s_xattr_inline_size = le16_to_cpu( |
| 2147 | di->id2.i_super.s_xattr_inline_size); |
Tiger Yang | fdd7770 | 2008-08-18 17:08:55 +0800 | [diff] [blame] | 2148 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2149 | osb->local_alloc_state = OCFS2_LA_UNUSED; |
| 2150 | osb->local_alloc_bh = NULL; |
Mark Fasheh | 9c7af40 | 2008-07-28 18:02:53 -0700 | [diff] [blame] | 2151 | INIT_DELAYED_WORK(&osb->la_enable_wq, ocfs2_la_enable_worker); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2152 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2153 | init_waitqueue_head(&osb->osb_mount_event); |
| 2154 | |
Mark Fasheh | d02f00c | 2009-12-07 13:10:48 -0800 | [diff] [blame] | 2155 | status = ocfs2_resmap_init(osb, &osb->osb_la_resmap); |
| 2156 | if (status) { |
| 2157 | mlog_errno(status); |
| 2158 | goto bail; |
| 2159 | } |
| 2160 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2161 | osb->vol_label = kmalloc(OCFS2_MAX_VOL_LABEL_LEN, GFP_KERNEL); |
| 2162 | if (!osb->vol_label) { |
| 2163 | mlog(ML_ERROR, "unable to alloc vol label\n"); |
| 2164 | status = -ENOMEM; |
| 2165 | goto bail; |
| 2166 | } |
| 2167 | |
Sunil Mushran | 539d826 | 2008-07-14 17:31:10 -0700 | [diff] [blame] | 2168 | osb->slot_recovery_generations = |
| 2169 | kcalloc(osb->max_slots, sizeof(*osb->slot_recovery_generations), |
| 2170 | GFP_KERNEL); |
| 2171 | if (!osb->slot_recovery_generations) { |
| 2172 | status = -ENOMEM; |
| 2173 | mlog_errno(status); |
| 2174 | goto bail; |
| 2175 | } |
| 2176 | |
Mark Fasheh | b4df6ed | 2006-02-22 17:35:08 -0800 | [diff] [blame] | 2177 | init_waitqueue_head(&osb->osb_wipe_event); |
| 2178 | osb->osb_orphan_wipes = kcalloc(osb->max_slots, |
| 2179 | sizeof(*osb->osb_orphan_wipes), |
| 2180 | GFP_KERNEL); |
| 2181 | if (!osb->osb_orphan_wipes) { |
| 2182 | status = -ENOMEM; |
| 2183 | mlog_errno(status); |
| 2184 | goto bail; |
| 2185 | } |
| 2186 | |
Tao Ma | 374a263 | 2009-08-24 11:13:37 +0800 | [diff] [blame] | 2187 | osb->osb_rf_lock_tree = RB_ROOT; |
| 2188 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2189 | osb->s_feature_compat = |
| 2190 | le32_to_cpu(OCFS2_RAW_SB(di)->s_feature_compat); |
| 2191 | osb->s_feature_ro_compat = |
| 2192 | le32_to_cpu(OCFS2_RAW_SB(di)->s_feature_ro_compat); |
| 2193 | osb->s_feature_incompat = |
| 2194 | le32_to_cpu(OCFS2_RAW_SB(di)->s_feature_incompat); |
| 2195 | |
| 2196 | if ((i = OCFS2_HAS_INCOMPAT_FEATURE(osb->sb, ~OCFS2_FEATURE_INCOMPAT_SUPP))) { |
| 2197 | mlog(ML_ERROR, "couldn't mount because of unsupported " |
| 2198 | "optional features (%x).\n", i); |
| 2199 | status = -EINVAL; |
| 2200 | goto bail; |
| 2201 | } |
| 2202 | if (!(osb->sb->s_flags & MS_RDONLY) && |
| 2203 | (i = OCFS2_HAS_RO_COMPAT_FEATURE(osb->sb, ~OCFS2_FEATURE_RO_COMPAT_SUPP))) { |
| 2204 | mlog(ML_ERROR, "couldn't mount RDWR because of " |
| 2205 | "unsupported optional features (%x).\n", i); |
| 2206 | status = -EINVAL; |
| 2207 | goto bail; |
| 2208 | } |
| 2209 | |
Sunil Mushran | 98f486f2 | 2010-10-09 10:24:46 -0700 | [diff] [blame] | 2210 | if (ocfs2_clusterinfo_valid(osb)) { |
| 2211 | osb->osb_stackflags = |
| 2212 | OCFS2_RAW_SB(di)->s_cluster_info.ci_stackflags; |
Goldwyn Rodrigues | c74a3bd | 2014-01-21 15:48:21 -0800 | [diff] [blame] | 2213 | strlcpy(osb->osb_cluster_stack, |
Joel Becker | b61817e | 2008-02-01 15:08:23 -0800 | [diff] [blame] | 2214 | OCFS2_RAW_SB(di)->s_cluster_info.ci_stack, |
Goldwyn Rodrigues | c74a3bd | 2014-01-21 15:48:21 -0800 | [diff] [blame] | 2215 | OCFS2_STACK_LABEL_LEN + 1); |
Joel Becker | b61817e | 2008-02-01 15:08:23 -0800 | [diff] [blame] | 2216 | if (strlen(osb->osb_cluster_stack) != OCFS2_STACK_LABEL_LEN) { |
| 2217 | mlog(ML_ERROR, |
| 2218 | "couldn't mount because of an invalid " |
| 2219 | "cluster stack label (%s) \n", |
| 2220 | osb->osb_cluster_stack); |
| 2221 | status = -EINVAL; |
| 2222 | goto bail; |
| 2223 | } |
Goldwyn Rodrigues | c74a3bd | 2014-01-21 15:48:21 -0800 | [diff] [blame] | 2224 | strlcpy(osb->osb_cluster_name, |
| 2225 | OCFS2_RAW_SB(di)->s_cluster_info.ci_cluster, |
| 2226 | OCFS2_CLUSTER_NAME_LEN + 1); |
Joel Becker | b61817e | 2008-02-01 15:08:23 -0800 | [diff] [blame] | 2227 | } else { |
| 2228 | /* The empty string is identical with classic tools that |
| 2229 | * don't know about s_cluster_info. */ |
| 2230 | osb->osb_cluster_stack[0] = '\0'; |
| 2231 | } |
| 2232 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2233 | get_random_bytes(&osb->s_next_generation, sizeof(u32)); |
| 2234 | |
| 2235 | /* FIXME |
| 2236 | * This should be done in ocfs2_journal_init(), but unknown |
| 2237 | * ordering issues will cause the filesystem to crash. |
| 2238 | * If anyone wants to figure out what part of the code |
| 2239 | * refers to osb->journal before ocfs2_journal_init() is run, |
| 2240 | * be my guest. |
| 2241 | */ |
| 2242 | /* initialize our journal structure */ |
| 2243 | |
Robert P. J. Day | cd86128 | 2006-12-13 00:34:52 -0800 | [diff] [blame] | 2244 | journal = kzalloc(sizeof(struct ocfs2_journal), GFP_KERNEL); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2245 | if (!journal) { |
| 2246 | mlog(ML_ERROR, "unable to alloc journal\n"); |
| 2247 | status = -ENOMEM; |
| 2248 | goto bail; |
| 2249 | } |
| 2250 | osb->journal = journal; |
| 2251 | journal->j_osb = osb; |
| 2252 | |
| 2253 | atomic_set(&journal->j_num_trans, 0); |
| 2254 | init_rwsem(&journal->j_trans_barrier); |
| 2255 | init_waitqueue_head(&journal->j_checkpointed); |
| 2256 | spin_lock_init(&journal->j_lock); |
| 2257 | journal->j_trans_id = (unsigned long) 1; |
| 2258 | INIT_LIST_HEAD(&journal->j_la_cleanups); |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 2259 | INIT_WORK(&journal->j_recovery_work, ocfs2_complete_recovery); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2260 | journal->j_state = OCFS2_JOURNAL_FREE; |
| 2261 | |
Jan Kara | e3a767b | 2014-04-03 14:46:56 -0700 | [diff] [blame] | 2262 | INIT_WORK(&osb->dquot_drop_work, ocfs2_drop_dquot_refs); |
| 2263 | init_llist_head(&osb->dquot_drop_list); |
| 2264 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2265 | /* get some pseudo constants for clustersize bits */ |
| 2266 | osb->s_clustersize_bits = |
| 2267 | le32_to_cpu(di->id2.i_super.s_clustersize_bits); |
| 2268 | osb->s_clustersize = 1 << osb->s_clustersize_bits; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2269 | |
| 2270 | if (osb->s_clustersize < OCFS2_MIN_CLUSTERSIZE || |
| 2271 | osb->s_clustersize > OCFS2_MAX_CLUSTERSIZE) { |
| 2272 | mlog(ML_ERROR, "Volume has invalid cluster size (%d)\n", |
| 2273 | osb->s_clustersize); |
| 2274 | status = -EINVAL; |
| 2275 | goto bail; |
| 2276 | } |
| 2277 | |
Patrick J. LoPresti | 3bdb8ef | 2010-07-22 15:05:57 -0700 | [diff] [blame] | 2278 | total_blocks = ocfs2_clusters_to_blocks(osb->sb, |
| 2279 | le32_to_cpu(di->i_clusters)); |
| 2280 | |
| 2281 | status = generic_check_addressable(osb->sb->s_blocksize_bits, |
| 2282 | total_blocks); |
| 2283 | if (status) { |
| 2284 | mlog(ML_ERROR, "Volume too large " |
| 2285 | "to mount safely on this system"); |
| 2286 | status = -EFBIG; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2287 | goto bail; |
| 2288 | } |
| 2289 | |
| 2290 | if (ocfs2_setup_osb_uuid(osb, di->id2.i_super.s_uuid, |
| 2291 | sizeof(di->id2.i_super.s_uuid))) { |
| 2292 | mlog(ML_ERROR, "Out of memory trying to setup our uuid.\n"); |
| 2293 | status = -ENOMEM; |
| 2294 | goto bail; |
| 2295 | } |
| 2296 | |
Fabian Frederick | 69201bb | 2014-06-04 16:06:07 -0700 | [diff] [blame] | 2297 | strlcpy(osb->vol_label, di->id2.i_super.s_label, |
| 2298 | OCFS2_MAX_VOL_LABEL_LEN); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2299 | osb->root_blkno = le64_to_cpu(di->id2.i_super.s_root_blkno); |
| 2300 | osb->system_dir_blkno = le64_to_cpu(di->id2.i_super.s_system_dir_blkno); |
| 2301 | osb->first_cluster_group_blkno = |
| 2302 | le64_to_cpu(di->id2.i_super.s_first_cluster_group); |
| 2303 | osb->fs_generation = le32_to_cpu(di->i_fs_generation); |
Tiger Yang | cf1d6c7 | 2008-08-18 17:11:00 +0800 | [diff] [blame] | 2304 | osb->uuid_hash = le32_to_cpu(di->id2.i_super.s_uuid_hash); |
Tao Ma | 32a42d3 | 2011-02-23 21:29:08 +0800 | [diff] [blame] | 2305 | trace_ocfs2_initialize_super(osb->vol_label, osb->uuid_str, |
| 2306 | (unsigned long long)osb->root_blkno, |
| 2307 | (unsigned long long)osb->system_dir_blkno, |
| 2308 | osb->s_clustersize_bits); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2309 | |
| 2310 | osb->osb_dlm_debug = ocfs2_new_dlm_debug(); |
| 2311 | if (!osb->osb_dlm_debug) { |
| 2312 | status = -ENOMEM; |
| 2313 | mlog_errno(status); |
| 2314 | goto bail; |
| 2315 | } |
| 2316 | |
| 2317 | atomic_set(&osb->vol_state, VOLUME_INIT); |
| 2318 | |
| 2319 | /* load root, system_dir, and all global system inodes */ |
| 2320 | status = ocfs2_init_global_system_inodes(osb); |
| 2321 | if (status < 0) { |
| 2322 | mlog_errno(status); |
| 2323 | goto bail; |
| 2324 | } |
| 2325 | |
| 2326 | /* |
| 2327 | * global bitmap |
| 2328 | */ |
| 2329 | inode = ocfs2_get_system_file_inode(osb, GLOBAL_BITMAP_SYSTEM_INODE, |
| 2330 | OCFS2_INVALID_SLOT); |
| 2331 | if (!inode) { |
| 2332 | status = -EINVAL; |
| 2333 | mlog_errno(status); |
| 2334 | goto bail; |
| 2335 | } |
| 2336 | |
| 2337 | osb->bitmap_blkno = OCFS2_I(inode)->ip_blkno; |
Mark Fasheh | 6b82021 | 2010-04-05 18:17:14 -0700 | [diff] [blame] | 2338 | osb->osb_clusters_at_boot = OCFS2_I(inode)->ip_clusters; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2339 | iput(inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2340 | |
Tao Ma | 8571882 | 2010-04-13 14:38:06 +0800 | [diff] [blame] | 2341 | osb->bitmap_cpg = ocfs2_group_bitmap_size(sb, 0, |
| 2342 | osb->s_feature_incompat) * 8; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2343 | |
| 2344 | status = ocfs2_init_slot_info(osb); |
| 2345 | if (status < 0) { |
| 2346 | mlog_errno(status); |
| 2347 | goto bail; |
| 2348 | } |
Vladimir Davydov | 9de1626 | 2015-04-14 15:46:42 -0700 | [diff] [blame] | 2349 | cleancache_init_shared_fs(sb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2350 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2351 | bail: |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2352 | return status; |
| 2353 | } |
| 2354 | |
| 2355 | /* |
| 2356 | * will return: -EAGAIN if it is ok to keep searching for superblocks |
| 2357 | * -EINVAL if there is a bad superblock |
| 2358 | * 0 on success |
| 2359 | */ |
| 2360 | static int ocfs2_verify_volume(struct ocfs2_dinode *di, |
| 2361 | struct buffer_head *bh, |
Joel Becker | 73be192 | 2009-01-06 14:57:08 -0800 | [diff] [blame] | 2362 | u32 blksz, |
| 2363 | struct ocfs2_blockcheck_stats *stats) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2364 | { |
| 2365 | int status = -EAGAIN; |
| 2366 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2367 | if (memcmp(di->i_signature, OCFS2_SUPER_BLOCK_SIGNATURE, |
| 2368 | strlen(OCFS2_SUPER_BLOCK_SIGNATURE)) == 0) { |
Joel Becker | d030cc9 | 2008-12-11 15:04:14 -0800 | [diff] [blame] | 2369 | /* We have to do a raw check of the feature here */ |
| 2370 | if (le32_to_cpu(di->id2.i_super.s_feature_incompat) & |
| 2371 | OCFS2_FEATURE_INCOMPAT_META_ECC) { |
| 2372 | status = ocfs2_block_check_validate(bh->b_data, |
| 2373 | bh->b_size, |
Joel Becker | 73be192 | 2009-01-06 14:57:08 -0800 | [diff] [blame] | 2374 | &di->i_check, |
| 2375 | stats); |
Joel Becker | d030cc9 | 2008-12-11 15:04:14 -0800 | [diff] [blame] | 2376 | if (status) |
| 2377 | goto out; |
| 2378 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2379 | status = -EINVAL; |
| 2380 | if ((1 << le32_to_cpu(di->id2.i_super.s_blocksize_bits)) != blksz) { |
| 2381 | mlog(ML_ERROR, "found superblock with incorrect block " |
| 2382 | "size: found %u, should be %u\n", |
| 2383 | 1 << le32_to_cpu(di->id2.i_super.s_blocksize_bits), |
| 2384 | blksz); |
| 2385 | } else if (le16_to_cpu(di->id2.i_super.s_major_rev_level) != |
| 2386 | OCFS2_MAJOR_REV_LEVEL || |
| 2387 | le16_to_cpu(di->id2.i_super.s_minor_rev_level) != |
| 2388 | OCFS2_MINOR_REV_LEVEL) { |
| 2389 | mlog(ML_ERROR, "found superblock with bad version: " |
| 2390 | "found %u.%u, should be %u.%u\n", |
| 2391 | le16_to_cpu(di->id2.i_super.s_major_rev_level), |
| 2392 | le16_to_cpu(di->id2.i_super.s_minor_rev_level), |
| 2393 | OCFS2_MAJOR_REV_LEVEL, |
| 2394 | OCFS2_MINOR_REV_LEVEL); |
| 2395 | } else if (bh->b_blocknr != le64_to_cpu(di->i_blkno)) { |
| 2396 | mlog(ML_ERROR, "bad block number on superblock: " |
Mark Fasheh | b0697053 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 2397 | "found %llu, should be %llu\n", |
Mark Fasheh | 1ca1a11 | 2007-04-27 16:01:25 -0700 | [diff] [blame] | 2398 | (unsigned long long)le64_to_cpu(di->i_blkno), |
Mark Fasheh | b0697053 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 2399 | (unsigned long long)bh->b_blocknr); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2400 | } else if (le32_to_cpu(di->id2.i_super.s_clustersize_bits) < 12 || |
| 2401 | le32_to_cpu(di->id2.i_super.s_clustersize_bits) > 20) { |
| 2402 | mlog(ML_ERROR, "bad cluster size found: %u\n", |
| 2403 | 1 << le32_to_cpu(di->id2.i_super.s_clustersize_bits)); |
| 2404 | } else if (!le64_to_cpu(di->id2.i_super.s_root_blkno)) { |
| 2405 | mlog(ML_ERROR, "bad root_blkno: 0\n"); |
| 2406 | } else if (!le64_to_cpu(di->id2.i_super.s_system_dir_blkno)) { |
| 2407 | mlog(ML_ERROR, "bad system_dir_blkno: 0\n"); |
| 2408 | } else if (le16_to_cpu(di->id2.i_super.s_max_slots) > OCFS2_MAX_SLOTS) { |
| 2409 | mlog(ML_ERROR, |
| 2410 | "Superblock slots found greater than file system " |
| 2411 | "maximum: found %u, max %u\n", |
| 2412 | le16_to_cpu(di->id2.i_super.s_max_slots), |
| 2413 | OCFS2_MAX_SLOTS); |
| 2414 | } else { |
| 2415 | /* found it! */ |
| 2416 | status = 0; |
| 2417 | } |
| 2418 | } |
| 2419 | |
Joel Becker | d030cc9 | 2008-12-11 15:04:14 -0800 | [diff] [blame] | 2420 | out: |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 2421 | if (status && status != -EAGAIN) |
| 2422 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2423 | return status; |
| 2424 | } |
| 2425 | |
| 2426 | static int ocfs2_check_volume(struct ocfs2_super *osb) |
| 2427 | { |
Denis Cheng | bddb8eb3 | 2007-09-27 02:10:04 +0800 | [diff] [blame] | 2428 | int status; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2429 | int dirty; |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 2430 | int local; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2431 | struct ocfs2_dinode *local_alloc = NULL; /* only used if we |
| 2432 | * recover |
| 2433 | * ourselves. */ |
| 2434 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2435 | /* Init our journal object. */ |
| 2436 | status = ocfs2_journal_init(osb->journal, &dirty); |
| 2437 | if (status < 0) { |
| 2438 | mlog(ML_ERROR, "Could not initialize journal!\n"); |
| 2439 | goto finally; |
| 2440 | } |
| 2441 | |
Patrick J. LoPresti | 3bdb8ef | 2010-07-22 15:05:57 -0700 | [diff] [blame] | 2442 | /* Now that journal has been initialized, check to make sure |
| 2443 | entire volume is addressable. */ |
| 2444 | status = ocfs2_journal_addressable(osb); |
| 2445 | if (status) |
| 2446 | goto finally; |
| 2447 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2448 | /* If the journal was unmounted cleanly then we don't want to |
| 2449 | * recover anything. Otherwise, journal_load will do that |
| 2450 | * dirty work for us :) */ |
| 2451 | if (!dirty) { |
| 2452 | status = ocfs2_journal_wipe(osb->journal, 0); |
| 2453 | if (status < 0) { |
| 2454 | mlog_errno(status); |
| 2455 | goto finally; |
| 2456 | } |
| 2457 | } else { |
Sunil Mushran | 619c200 | 2011-07-24 10:34:54 -0700 | [diff] [blame] | 2458 | printk(KERN_NOTICE "ocfs2: File system on device (%s) was not " |
| 2459 | "unmounted cleanly, recovering it.\n", osb->dev_str); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2460 | } |
| 2461 | |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 2462 | local = ocfs2_mount_local(osb); |
| 2463 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2464 | /* will play back anything left in the journal. */ |
Sunil Mushran | 539d826 | 2008-07-14 17:31:10 -0700 | [diff] [blame] | 2465 | status = ocfs2_journal_load(osb->journal, local, dirty); |
Wengang Wang | 01af482 | 2008-06-10 14:24:48 +0800 | [diff] [blame] | 2466 | if (status < 0) { |
| 2467 | mlog(ML_ERROR, "ocfs2 journal load failed! %d\n", status); |
| 2468 | goto finally; |
| 2469 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2470 | |
alex chen | 1dfeb76 | 2015-02-10 14:09:04 -0800 | [diff] [blame] | 2471 | if (osb->s_mount_opt & OCFS2_MOUNT_JOURNAL_ASYNC_COMMIT) |
| 2472 | jbd2_journal_set_features(osb->journal->j_journal, |
| 2473 | JBD2_FEATURE_COMPAT_CHECKSUM, 0, |
| 2474 | JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT); |
| 2475 | else |
| 2476 | jbd2_journal_clear_features(osb->journal->j_journal, |
| 2477 | JBD2_FEATURE_COMPAT_CHECKSUM, 0, |
| 2478 | JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT); |
| 2479 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2480 | if (dirty) { |
| 2481 | /* recover my local alloc if we didn't unmount cleanly. */ |
| 2482 | status = ocfs2_begin_local_alloc_recovery(osb, |
| 2483 | osb->slot_num, |
| 2484 | &local_alloc); |
| 2485 | if (status < 0) { |
| 2486 | mlog_errno(status); |
| 2487 | goto finally; |
| 2488 | } |
| 2489 | /* we complete the recovery process after we've marked |
| 2490 | * ourselves as mounted. */ |
| 2491 | } |
| 2492 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2493 | status = ocfs2_load_local_alloc(osb); |
| 2494 | if (status < 0) { |
| 2495 | mlog_errno(status); |
| 2496 | goto finally; |
| 2497 | } |
| 2498 | |
| 2499 | if (dirty) { |
| 2500 | /* Recovery will be completed after we've mounted the |
| 2501 | * rest of the volume. */ |
| 2502 | osb->dirty = 1; |
| 2503 | osb->local_alloc_copy = local_alloc; |
| 2504 | local_alloc = NULL; |
| 2505 | } |
| 2506 | |
| 2507 | /* go through each journal, trylock it and if you get the |
| 2508 | * lock, and it's marked as dirty, set the bit in the recover |
| 2509 | * map and launch a recovery thread for it. */ |
| 2510 | status = ocfs2_mark_dead_nodes(osb); |
Srinivas Eeda | 9140db0 | 2009-03-06 14:21:46 -0800 | [diff] [blame] | 2511 | if (status < 0) { |
| 2512 | mlog_errno(status); |
| 2513 | goto finally; |
| 2514 | } |
| 2515 | |
| 2516 | status = ocfs2_compute_replay_slots(osb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2517 | if (status < 0) |
| 2518 | mlog_errno(status); |
| 2519 | |
| 2520 | finally: |
Tim Gardner | d787ab0 | 2013-02-21 16:42:44 -0800 | [diff] [blame] | 2521 | kfree(local_alloc); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2522 | |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 2523 | if (status) |
| 2524 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2525 | return status; |
| 2526 | } |
| 2527 | |
| 2528 | /* |
| 2529 | * The routine gets called from dismount or close whenever a dismount on |
| 2530 | * volume is requested and the osb open count becomes 1. |
| 2531 | * It will remove the osb from the global list and also free up all the |
| 2532 | * initialized resources and fileobject. |
| 2533 | */ |
| 2534 | static void ocfs2_delete_osb(struct ocfs2_super *osb) |
| 2535 | { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2536 | /* This function assumes that the caller has the main osb resource */ |
| 2537 | |
Mark Fasheh | 8e8a460 | 2008-02-01 11:59:09 -0800 | [diff] [blame] | 2538 | ocfs2_free_slot_info(osb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2539 | |
Mark Fasheh | b4df6ed | 2006-02-22 17:35:08 -0800 | [diff] [blame] | 2540 | kfree(osb->osb_orphan_wipes); |
Sunil Mushran | 539d826 | 2008-07-14 17:31:10 -0700 | [diff] [blame] | 2541 | kfree(osb->slot_recovery_generations); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2542 | /* FIXME |
| 2543 | * This belongs in journal shutdown, but because we have to |
Uwe Kleine-König | 421f91d | 2010-06-11 12:17:00 +0200 | [diff] [blame] | 2544 | * allocate osb->journal at the start of ocfs2_initialize_osb(), |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2545 | * we free it here. |
| 2546 | */ |
| 2547 | kfree(osb->journal); |
Tim Gardner | d787ab0 | 2013-02-21 16:42:44 -0800 | [diff] [blame] | 2548 | kfree(osb->local_alloc_copy); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2549 | kfree(osb->uuid_str); |
Joseph Qi | f13a568 | 2014-09-25 16:05:11 -0700 | [diff] [blame] | 2550 | kfree(osb->vol_label); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2551 | ocfs2_put_dlm_debug(osb->osb_dlm_debug); |
| 2552 | memset(osb, 0, sizeof(struct ocfs2_super)); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2553 | } |
| 2554 | |
Goldwyn Rodrigues | 7d0fb91 | 2015-09-04 15:44:11 -0700 | [diff] [blame] | 2555 | /* Depending on the mount option passed, perform one of the following: |
| 2556 | * Put OCFS2 into a readonly state (default) |
| 2557 | * Return EIO so that only the process errs |
| 2558 | * Fix the error as if fsck.ocfs2 -y |
| 2559 | * panic |
| 2560 | */ |
| 2561 | static int ocfs2_handle_error(struct super_block *sb) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2562 | { |
| 2563 | struct ocfs2_super *osb = OCFS2_SB(sb); |
Goldwyn Rodrigues | 7d0fb91 | 2015-09-04 15:44:11 -0700 | [diff] [blame] | 2564 | int rv = 0; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2565 | |
| 2566 | ocfs2_set_osb_flag(osb, OCFS2_OSB_ERROR_FS); |
Goldwyn Rodrigues | 7d0fb91 | 2015-09-04 15:44:11 -0700 | [diff] [blame] | 2567 | pr_crit("On-disk corruption discovered. " |
| 2568 | "Please run fsck.ocfs2 once the filesystem is unmounted.\n"); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2569 | |
Goldwyn Rodrigues | 7d0fb91 | 2015-09-04 15:44:11 -0700 | [diff] [blame] | 2570 | if (osb->s_mount_opt & OCFS2_MOUNT_ERRORS_PANIC) { |
| 2571 | panic("OCFS2: (device %s): panic forced after error\n", |
| 2572 | sb->s_id); |
| 2573 | } else if (osb->s_mount_opt & OCFS2_MOUNT_ERRORS_CONT) { |
| 2574 | pr_crit("OCFS2: Returning error to the calling process.\n"); |
| 2575 | rv = -EIO; |
| 2576 | } else { /* default option */ |
| 2577 | rv = -EROFS; |
| 2578 | if (sb->s_flags & MS_RDONLY && |
| 2579 | (ocfs2_is_soft_readonly(osb) || |
| 2580 | ocfs2_is_hard_readonly(osb))) |
| 2581 | return rv; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2582 | |
Goldwyn Rodrigues | 7d0fb91 | 2015-09-04 15:44:11 -0700 | [diff] [blame] | 2583 | pr_crit("OCFS2: File system is now read-only.\n"); |
| 2584 | sb->s_flags |= MS_RDONLY; |
| 2585 | ocfs2_set_ro_flag(osb, 0); |
| 2586 | } |
| 2587 | |
| 2588 | return rv; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2589 | } |
| 2590 | |
Goldwyn Rodrigues | 7d0fb91 | 2015-09-04 15:44:11 -0700 | [diff] [blame] | 2591 | int __ocfs2_error(struct super_block *sb, const char *function, |
Joe Perches | 1543306 | 2015-04-14 15:43:46 -0700 | [diff] [blame] | 2592 | const char *fmt, ...) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2593 | { |
Joe Perches | 1543306 | 2015-04-14 15:43:46 -0700 | [diff] [blame] | 2594 | struct va_format vaf; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2595 | va_list args; |
| 2596 | |
| 2597 | va_start(args, fmt); |
Joe Perches | 1543306 | 2015-04-14 15:43:46 -0700 | [diff] [blame] | 2598 | vaf.fmt = fmt; |
| 2599 | vaf.va = &args; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2600 | |
| 2601 | /* Not using mlog here because we want to show the actual |
| 2602 | * function the error came from. */ |
Joe Perches | 7ecef14 | 2015-09-04 15:44:51 -0700 | [diff] [blame] | 2603 | printk(KERN_CRIT "OCFS2: ERROR (device %s): %s: %pV", |
Joe Perches | 1543306 | 2015-04-14 15:43:46 -0700 | [diff] [blame] | 2604 | sb->s_id, function, &vaf); |
| 2605 | |
| 2606 | va_end(args); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2607 | |
Goldwyn Rodrigues | 7d0fb91 | 2015-09-04 15:44:11 -0700 | [diff] [blame] | 2608 | return ocfs2_handle_error(sb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2609 | } |
| 2610 | |
| 2611 | /* Handle critical errors. This is intentionally more drastic than |
| 2612 | * ocfs2_handle_error, so we only use for things like journal errors, |
| 2613 | * etc. */ |
Joe Perches | 1543306 | 2015-04-14 15:43:46 -0700 | [diff] [blame] | 2614 | void __ocfs2_abort(struct super_block *sb, const char *function, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2615 | const char *fmt, ...) |
| 2616 | { |
Joe Perches | 1543306 | 2015-04-14 15:43:46 -0700 | [diff] [blame] | 2617 | struct va_format vaf; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2618 | va_list args; |
| 2619 | |
| 2620 | va_start(args, fmt); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2621 | |
Joe Perches | 1543306 | 2015-04-14 15:43:46 -0700 | [diff] [blame] | 2622 | vaf.fmt = fmt; |
| 2623 | vaf.va = &args; |
| 2624 | |
Joe Perches | 7ecef14 | 2015-09-04 15:44:51 -0700 | [diff] [blame] | 2625 | printk(KERN_CRIT "OCFS2: abort (device %s): %s: %pV", |
Joe Perches | 1543306 | 2015-04-14 15:43:46 -0700 | [diff] [blame] | 2626 | sb->s_id, function, &vaf); |
| 2627 | |
| 2628 | va_end(args); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2629 | |
| 2630 | /* We don't have the cluster support yet to go straight to |
| 2631 | * hard readonly in here. Until then, we want to keep |
| 2632 | * ocfs2_abort() so that we can at least mark critical |
| 2633 | * errors. |
| 2634 | * |
| 2635 | * TODO: This should abort the journal and alert other nodes |
| 2636 | * that our slot needs recovery. */ |
| 2637 | |
| 2638 | /* Force a panic(). This stinks, but it's better than letting |
| 2639 | * things continue without having a proper hard readonly |
| 2640 | * here. */ |
Sunil Mushran | a2f2ddb | 2009-08-19 15:16:01 -0700 | [diff] [blame] | 2641 | if (!ocfs2_mount_local(OCFS2_SB(sb))) |
| 2642 | OCFS2_SB(sb)->s_mount_opt |= OCFS2_MOUNT_ERRORS_PANIC; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2643 | ocfs2_handle_error(sb); |
| 2644 | } |
| 2645 | |
Joel Becker | e4b963f | 2009-09-02 17:17:36 -0700 | [diff] [blame] | 2646 | /* |
| 2647 | * Void signal blockers, because in-kernel sigprocmask() only fails |
| 2648 | * when SIG_* is wrong. |
| 2649 | */ |
| 2650 | void ocfs2_block_signals(sigset_t *oldset) |
| 2651 | { |
| 2652 | int rc; |
| 2653 | sigset_t blocked; |
| 2654 | |
| 2655 | sigfillset(&blocked); |
| 2656 | rc = sigprocmask(SIG_BLOCK, &blocked, oldset); |
| 2657 | BUG_ON(rc); |
| 2658 | } |
| 2659 | |
| 2660 | void ocfs2_unblock_signals(sigset_t *oldset) |
| 2661 | { |
| 2662 | int rc = sigprocmask(SIG_SETMASK, oldset, NULL); |
| 2663 | BUG_ON(rc); |
| 2664 | } |
| 2665 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2666 | module_init(ocfs2_init); |
| 2667 | module_exit(ocfs2_exit); |