blob: a1a295b739fb893586dd5130edb15c2063852ea5 [file] [log] [blame]
Thomas Gleixner7336d0e2019-05-31 01:09:56 -07001// SPDX-License-Identifier: GPL-2.0-only
David Teiglandb3b94fa2006-01-16 16:50:04 +00002/*
3 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Steven Whitehouse3a8a9a12006-05-18 15:09:15 -04004 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00005 */
6
Joe Perchesd77d1b52014-03-06 12:10:45 -08007#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
8
David Teiglandb3b94fa2006-01-16 16:50:04 +00009#include <linux/slab.h>
10#include <linux/spinlock.h>
11#include <linux/completion.h>
12#include <linux/buffer_head.h>
13#include <linux/module.h>
14#include <linux/init.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050015#include <linux/gfs2_ondisk.h>
Steven Whitehousebc015cb2011-01-19 09:30:01 +000016#include <linux/rcupdate.h>
17#include <linux/rculist_bl.h>
Arun Sharma600634972011-07-26 16:09:06 -070018#include <linux/atomic.h>
Steven Whitehouse75ca61c12012-03-08 12:10:23 +000019#include <linux/mempool.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000020
21#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050022#include "incore.h"
Steven Whitehouseb2760582008-10-14 16:05:55 +010023#include "super.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000024#include "sys.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050025#include "util.h"
Steven Whitehouse85d1da62006-09-07 14:40:21 -040026#include "glock.h"
Abhijith Das0a7ab792009-01-07 16:03:37 -060027#include "quota.h"
Tejun Heo6ecd7c22010-07-20 22:09:02 +020028#include "recovery.h"
Steven Whitehouse8d123582010-09-17 12:30:23 +010029#include "dir.h"
Benjamin Marzinski2e60d762014-11-13 20:42:04 -060030#include "glops.h"
Abhijith Das0a7ab792009-01-07 16:03:37 -060031
David Teiglande0c2a9a2012-01-09 17:18:05 -050032struct workqueue_struct *gfs2_control_wq;
33
Alexey Dobriyan51cc5062008-07-25 19:45:34 -070034static void gfs2_init_inode_once(void *foo)
Steven Whitehouse320dd102006-05-18 16:25:27 -040035{
36 struct gfs2_inode *ip = foo;
Christoph Lametera35afb82007-05-16 22:10:57 -070037
38 inode_init_once(&ip->i_inode);
Andreas Gruenbacher21f09c42018-08-30 16:01:50 +010039 atomic_set(&ip->i_sizehint, 0);
Christoph Lametera35afb82007-05-16 22:10:57 -070040 init_rwsem(&ip->i_rw_mutex);
Steven Whitehouse813e0c42008-11-18 13:38:48 +000041 INIT_LIST_HEAD(&ip->i_trunc_list);
Bob Petersonb54e9a02015-10-26 10:40:28 -050042 ip->i_qadata = NULL;
Andreas Gruenbacher21f09c42018-08-30 16:01:50 +010043 gfs2_holder_mark_uninitialized(&ip->i_rgd_gh);
Bob Petersona097dc7e2015-07-16 08:28:04 -050044 memset(&ip->i_res, 0, sizeof(ip->i_res));
45 RB_CLEAR_NODE(&ip->i_res.rs_node);
Steven Whitehouse17d539f2011-06-15 10:29:37 +010046 ip->i_hash_cache = NULL;
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -050047 gfs2_holder_mark_uninitialized(&ip->i_iopen_gh);
Steven Whitehouse320dd102006-05-18 16:25:27 -040048}
49
Alexey Dobriyan51cc5062008-07-25 19:45:34 -070050static void gfs2_init_glock_once(void *foo)
Steven Whitehouseec45d9f2006-08-30 10:36:52 -040051{
52 struct gfs2_glock *gl = foo;
Christoph Lametera35afb82007-05-16 22:10:57 -070053
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -050054 spin_lock_init(&gl->gl_lockref.lock);
Christoph Lametera35afb82007-05-16 22:10:57 -070055 INIT_LIST_HEAD(&gl->gl_holders);
Steven Whitehouse97cc10252008-11-20 13:39:47 +000056 INIT_LIST_HEAD(&gl->gl_lru);
Christoph Lametera35afb82007-05-16 22:10:57 -070057 INIT_LIST_HEAD(&gl->gl_ail_list);
58 atomic_set(&gl->gl_ail_count, 0);
Bob Peterson638803d2019-06-06 07:33:38 -050059 atomic_set(&gl->gl_revokes, 0);
Steven Whitehouseec45d9f2006-08-30 10:36:52 -040060}
61
Steven Whitehouse009d8512009-12-08 12:12:13 +000062static void gfs2_init_gl_aspace_once(void *foo)
63{
64 struct gfs2_glock *gl = foo;
65 struct address_space *mapping = (struct address_space *)(gl + 1);
66
67 gfs2_init_glock_once(gl);
Miklos Szeredi2aa15892011-02-23 13:49:47 +010068 address_space_init_once(mapping);
Steven Whitehouse009d8512009-12-08 12:12:13 +000069}
70
David Teiglandb3b94fa2006-01-16 16:50:04 +000071/**
72 * init_gfs2_fs - Register GFS2 as a filesystem
73 *
74 * Returns: 0 on success, error code on failure
75 */
76
77static int __init init_gfs2_fs(void)
78{
79 int error;
80
Steven Whitehouse8d123582010-09-17 12:30:23 +010081 gfs2_str2qstr(&gfs2_qdot, ".");
82 gfs2_str2qstr(&gfs2_qdotdot, "..");
Steven Whitehousec754fbb2013-12-12 10:47:59 +000083 gfs2_quota_hash_init();
Steven Whitehouse8d123582010-09-17 12:30:23 +010084
David Teiglandb3b94fa2006-01-16 16:50:04 +000085 error = gfs2_sys_init();
86 if (error)
87 return error;
88
Steven Whitehouse2147dbf2013-11-04 10:15:08 +000089 error = list_lru_init(&gfs2_qd_lru);
90 if (error)
91 goto fail_lru;
92
Steven Whitehouse85d1da62006-09-07 14:40:21 -040093 error = gfs2_glock_init();
94 if (error)
Tetsuo Handa8b0d7f52017-11-27 08:56:34 -060095 goto fail_glock;
David Teiglandb3b94fa2006-01-16 16:50:04 +000096
Steven Whitehouse85d1da62006-09-07 14:40:21 -040097 error = -ENOMEM;
David Teiglandb3b94fa2006-01-16 16:50:04 +000098 gfs2_glock_cachep = kmem_cache_create("gfs2_glock",
99 sizeof(struct gfs2_glock),
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400100 0, 0,
Paul Mundt20c2df82007-07-20 10:11:58 +0900101 gfs2_init_glock_once);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000102 if (!gfs2_glock_cachep)
Tetsuo Handa8b0d7f52017-11-27 08:56:34 -0600103 goto fail_cachep1;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000104
Steven Whitehouse7c9a84a2010-03-12 17:05:31 +0000105 gfs2_glock_aspace_cachep = kmem_cache_create("gfs2_glock(aspace)",
Steven Whitehouse009d8512009-12-08 12:12:13 +0000106 sizeof(struct gfs2_glock) +
107 sizeof(struct address_space),
108 0, 0, gfs2_init_gl_aspace_once);
109
110 if (!gfs2_glock_aspace_cachep)
Tetsuo Handa8b0d7f52017-11-27 08:56:34 -0600111 goto fail_cachep2;
Steven Whitehouse009d8512009-12-08 12:12:13 +0000112
David Teiglandb3b94fa2006-01-16 16:50:04 +0000113 gfs2_inode_cachep = kmem_cache_create("gfs2_inode",
114 sizeof(struct gfs2_inode),
Alexey Dobriyaneb1dc332006-10-28 03:03:48 +0400115 0, SLAB_RECLAIM_ACCOUNT|
Vladimir Davydov5d097052016-01-14 15:18:21 -0800116 SLAB_MEM_SPREAD|
117 SLAB_ACCOUNT,
Paul Mundt20c2df82007-07-20 10:11:58 +0900118 gfs2_init_inode_once);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000119 if (!gfs2_inode_cachep)
Tetsuo Handa8b0d7f52017-11-27 08:56:34 -0600120 goto fail_cachep3;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000121
122 gfs2_bufdata_cachep = kmem_cache_create("gfs2_bufdata",
123 sizeof(struct gfs2_bufdata),
Paul Mundt20c2df82007-07-20 10:11:58 +0900124 0, 0, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000125 if (!gfs2_bufdata_cachep)
Tetsuo Handa8b0d7f52017-11-27 08:56:34 -0600126 goto fail_cachep4;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000127
Bob Peterson6bdd9be2008-01-28 17:20:26 -0600128 gfs2_rgrpd_cachep = kmem_cache_create("gfs2_rgrpd",
129 sizeof(struct gfs2_rgrpd),
130 0, 0, NULL);
131 if (!gfs2_rgrpd_cachep)
Tetsuo Handa8b0d7f52017-11-27 08:56:34 -0600132 goto fail_cachep5;
Bob Peterson6bdd9be2008-01-28 17:20:26 -0600133
Steven Whitehouse37b2c832008-11-17 14:25:37 +0000134 gfs2_quotad_cachep = kmem_cache_create("gfs2_quotad",
135 sizeof(struct gfs2_quota_data),
136 0, 0, NULL);
137 if (!gfs2_quotad_cachep)
Tetsuo Handa8b0d7f52017-11-27 08:56:34 -0600138 goto fail_cachep6;
Steven Whitehouse37b2c832008-11-17 14:25:37 +0000139
Bob Petersonb54e9a02015-10-26 10:40:28 -0500140 gfs2_qadata_cachep = kmem_cache_create("gfs2_qadata",
141 sizeof(struct gfs2_qadata),
142 0, 0, NULL);
143 if (!gfs2_qadata_cachep)
Tetsuo Handa8b0d7f52017-11-27 08:56:34 -0600144 goto fail_cachep7;
Bob Petersonb54e9a02015-10-26 10:40:28 -0500145
Chao Yue0d735c2016-09-21 12:09:40 -0500146 error = register_shrinker(&gfs2_qd_shrinker);
147 if (error)
Tetsuo Handa8b0d7f52017-11-27 08:56:34 -0600148 goto fail_shrinker;
Abhijith Das0a7ab792009-01-07 16:03:37 -0600149
David Teiglandb3b94fa2006-01-16 16:50:04 +0000150 error = register_filesystem(&gfs2_fs_type);
151 if (error)
Tetsuo Handa8b0d7f52017-11-27 08:56:34 -0600152 goto fail_fs1;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000153
Steven Whitehouse419c93e02006-03-02 16:33:41 -0500154 error = register_filesystem(&gfs2meta_fs_type);
155 if (error)
Tetsuo Handa8b0d7f52017-11-27 08:56:34 -0600156 goto fail_fs2;
Steven Whitehouse419c93e02006-03-02 16:33:41 -0500157
Tejun Heo6ecd7c22010-07-20 22:09:02 +0200158 error = -ENOMEM;
159 gfs_recovery_wq = alloc_workqueue("gfs_recovery",
Tejun Heo58a69cb2011-02-16 09:25:31 +0100160 WQ_MEM_RECLAIM | WQ_FREEZABLE, 0);
Tejun Heo6ecd7c22010-07-20 22:09:02 +0200161 if (!gfs_recovery_wq)
Tetsuo Handa8b0d7f52017-11-27 08:56:34 -0600162 goto fail_wq1;
Steven Whitehousefe64d512009-05-19 10:01:18 +0100163
David Teiglande0c2a9a2012-01-09 17:18:05 -0500164 gfs2_control_wq = alloc_workqueue("gfs2_control",
Tejun Heod08fa652013-07-30 08:40:25 -0400165 WQ_UNBOUND | WQ_FREEZABLE, 0);
David Teiglande0c2a9a2012-01-09 17:18:05 -0500166 if (!gfs2_control_wq)
Tetsuo Handa8b0d7f52017-11-27 08:56:34 -0600167 goto fail_wq2;
Steven Whitehouse75ca61c12012-03-08 12:10:23 +0000168
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600169 gfs2_freeze_wq = alloc_workqueue("freeze_workqueue", 0, 0);
170
171 if (!gfs2_freeze_wq)
Tetsuo Handa8b0d7f52017-11-27 08:56:34 -0600172 goto fail_wq3;
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600173
Steven Whitehousee8c92ed2012-04-16 09:28:31 +0100174 gfs2_page_pool = mempool_create_page_pool(64, 0);
175 if (!gfs2_page_pool)
Tetsuo Handa8b0d7f52017-11-27 08:56:34 -0600176 goto fail_mempool;
David Teiglande0c2a9a2012-01-09 17:18:05 -0500177
Greg Kroah-Hartman2abbf9a2019-01-22 16:21:51 +0100178 gfs2_register_debugfs();
Robert Peterson7c52b162007-03-16 10:26:37 +0000179
Fabian Frederickfc554ed2014-03-05 22:06:42 +0800180 pr_info("GFS2 installed\n");
David Teiglandb3b94fa2006-01-16 16:50:04 +0000181
182 return 0;
183
Tetsuo Handa8b0d7f52017-11-27 08:56:34 -0600184fail_mempool:
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600185 destroy_workqueue(gfs2_freeze_wq);
Tetsuo Handa8b0d7f52017-11-27 08:56:34 -0600186fail_wq3:
Steven Whitehouse75ca61c12012-03-08 12:10:23 +0000187 destroy_workqueue(gfs2_control_wq);
Tetsuo Handa8b0d7f52017-11-27 08:56:34 -0600188fail_wq2:
David Teiglande0c2a9a2012-01-09 17:18:05 -0500189 destroy_workqueue(gfs_recovery_wq);
Tetsuo Handa8b0d7f52017-11-27 08:56:34 -0600190fail_wq1:
Steven Whitehousefe64d512009-05-19 10:01:18 +0100191 unregister_filesystem(&gfs2meta_fs_type);
Tetsuo Handa8b0d7f52017-11-27 08:56:34 -0600192fail_fs2:
Steven Whitehouse419c93e02006-03-02 16:33:41 -0500193 unregister_filesystem(&gfs2_fs_type);
Tetsuo Handa8b0d7f52017-11-27 08:56:34 -0600194fail_fs1:
195 unregister_shrinker(&gfs2_qd_shrinker);
196fail_shrinker:
197 kmem_cache_destroy(gfs2_qadata_cachep);
198fail_cachep7:
199 kmem_cache_destroy(gfs2_quotad_cachep);
200fail_cachep6:
201 kmem_cache_destroy(gfs2_rgrpd_cachep);
202fail_cachep5:
203 kmem_cache_destroy(gfs2_bufdata_cachep);
204fail_cachep4:
205 kmem_cache_destroy(gfs2_inode_cachep);
206fail_cachep3:
207 kmem_cache_destroy(gfs2_glock_aspace_cachep);
208fail_cachep2:
209 kmem_cache_destroy(gfs2_glock_cachep);
210fail_cachep1:
211 gfs2_glock_exit();
212fail_glock:
Steven Whitehouse2147dbf2013-11-04 10:15:08 +0000213 list_lru_destroy(&gfs2_qd_lru);
214fail_lru:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000215 gfs2_sys_uninit();
216 return error;
217}
218
219/**
220 * exit_gfs2_fs - Unregister the file system
221 *
222 */
223
224static void __exit exit_gfs2_fs(void)
225{
Steven Whitehouse2147dbf2013-11-04 10:15:08 +0000226 unregister_shrinker(&gfs2_qd_shrinker);
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +0100227 gfs2_glock_exit();
Robert Peterson7c52b162007-03-16 10:26:37 +0000228 gfs2_unregister_debugfs();
David Teiglandb3b94fa2006-01-16 16:50:04 +0000229 unregister_filesystem(&gfs2_fs_type);
Steven Whitehouse419c93e02006-03-02 16:33:41 -0500230 unregister_filesystem(&gfs2meta_fs_type);
Tejun Heo6ecd7c22010-07-20 22:09:02 +0200231 destroy_workqueue(gfs_recovery_wq);
David Teiglande0c2a9a2012-01-09 17:18:05 -0500232 destroy_workqueue(gfs2_control_wq);
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600233 destroy_workqueue(gfs2_freeze_wq);
Steven Whitehouse2147dbf2013-11-04 10:15:08 +0000234 list_lru_destroy(&gfs2_qd_lru);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000235
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000236 rcu_barrier();
237
Steven Whitehousee8c92ed2012-04-16 09:28:31 +0100238 mempool_destroy(gfs2_page_pool);
Bob Petersonb54e9a02015-10-26 10:40:28 -0500239 kmem_cache_destroy(gfs2_qadata_cachep);
Steven Whitehouse37b2c832008-11-17 14:25:37 +0000240 kmem_cache_destroy(gfs2_quotad_cachep);
Bob Peterson6bdd9be2008-01-28 17:20:26 -0600241 kmem_cache_destroy(gfs2_rgrpd_cachep);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000242 kmem_cache_destroy(gfs2_bufdata_cachep);
243 kmem_cache_destroy(gfs2_inode_cachep);
Steven Whitehouse009d8512009-12-08 12:12:13 +0000244 kmem_cache_destroy(gfs2_glock_aspace_cachep);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000245 kmem_cache_destroy(gfs2_glock_cachep);
246
247 gfs2_sys_uninit();
248}
249
250MODULE_DESCRIPTION("Global File System");
251MODULE_AUTHOR("Red Hat, Inc.");
252MODULE_LICENSE("GPL");
253
254module_init(init_gfs2_fs);
255module_exit(exit_gfs2_fs);
256