blob: 2e5b03065f345a3e9f48d0401f0def348eeaa1e6 [file] [log] [blame]
Mike Marshall274dcf52015-07-17 10:38:13 -04001/*
2 * (C) 2001 Clemson University and The University of Chicago
3 *
4 * Changes by Acxiom Corporation to add proc file handler for pvfs2 client
5 * parameters, Copyright Acxiom Corporation, 2005.
6 *
7 * See COPYING in top-level directory.
8 */
9
10#include "protocol.h"
Mike Marshall575e9462015-12-04 12:56:14 -050011#include "orangefs-kernel.h"
12#include "orangefs-debugfs.h"
13#include "orangefs-sysfs.h"
Mike Marshall274dcf52015-07-17 10:38:13 -040014
Yi Liu8bb8aef2015-11-24 15:12:14 -050015/* ORANGEFS_VERSION is a ./configure define */
16#ifndef ORANGEFS_VERSION
Mike Marshall4c27b322016-01-13 11:34:59 -050017#define ORANGEFS_VERSION "upstream"
Mike Marshall274dcf52015-07-17 10:38:13 -040018#endif
19
20/*
21 * global variables declared here
22 */
23
Martin Brandenburg889d5f12016-08-15 15:33:42 -040024struct orangefs_stats orangefs_stats;
Mike Marshall274dcf52015-07-17 10:38:13 -040025
26/* the size of the hash tables for ops in progress */
27int hash_table_size = 509;
28
29static ulong module_parm_debug_mask;
Martin Brandenburg44f46412016-08-15 11:38:36 -040030__u64 orangefs_gossip_debug_mask;
Yi Liu8bb8aef2015-11-24 15:12:14 -050031int op_timeout_secs = ORANGEFS_DEFAULT_OP_TIMEOUT_SECS;
32int slot_timeout_secs = ORANGEFS_DEFAULT_SLOT_TIMEOUT_SECS;
Martin Brandenburg1d503612016-08-16 11:38:14 -040033int orangefs_dcache_timeout_msecs = 50;
34int orangefs_getattr_timeout_msecs = 50;
Mike Marshall274dcf52015-07-17 10:38:13 -040035
36MODULE_LICENSE("GPL");
Yi Liu8bb8aef2015-11-24 15:12:14 -050037MODULE_AUTHOR("ORANGEFS Development Team");
38MODULE_DESCRIPTION("The Linux Kernel VFS interface to ORANGEFS");
39MODULE_PARM_DESC(module_parm_debug_mask, "debugging level (see orangefs-debug.h for values)");
Mike Marshall274dcf52015-07-17 10:38:13 -040040MODULE_PARM_DESC(op_timeout_secs, "Operation timeout in seconds");
41MODULE_PARM_DESC(slot_timeout_secs, "Slot timeout in seconds");
42MODULE_PARM_DESC(hash_table_size,
43 "size of hash table for operations in progress");
44
Yi Liu8bb8aef2015-11-24 15:12:14 -050045static struct file_system_type orangefs_fs_type = {
Mike Marshall274dcf52015-07-17 10:38:13 -040046 .name = "pvfs2",
Yi Liu8bb8aef2015-11-24 15:12:14 -050047 .mount = orangefs_mount,
48 .kill_sb = orangefs_kill_sb,
Mike Marshall274dcf52015-07-17 10:38:13 -040049 .owner = THIS_MODULE,
50};
51
52module_param(hash_table_size, int, 0);
Sasha Levincb987f32015-08-03 00:08:59 -040053module_param(module_parm_debug_mask, ulong, 0644);
Mike Marshall274dcf52015-07-17 10:38:13 -040054module_param(op_timeout_secs, int, 0);
55module_param(slot_timeout_secs, int, 0);
56
Mike Marshall274dcf52015-07-17 10:38:13 -040057/*
Mike Marshall54804942015-10-05 13:44:24 -040058 * Blocks non-priority requests from being queued for servicing. This
59 * could be used for protecting the request list data structure, but
60 * for now it's only being used to stall the op addition to the request
61 * list
62 */
Martin Brandenburg1d503612016-08-16 11:38:14 -040063DEFINE_MUTEX(orangefs_request_mutex);
Mike Marshall274dcf52015-07-17 10:38:13 -040064
65/* hash table for storing operations waiting for matching downcall */
Martin Brandenburg1d503612016-08-16 11:38:14 -040066struct list_head *orangefs_htable_ops_in_progress;
67DEFINE_SPINLOCK(orangefs_htable_ops_in_progress_lock);
Mike Marshall274dcf52015-07-17 10:38:13 -040068
69/* list for queueing upcall operations */
Yi Liu8bb8aef2015-11-24 15:12:14 -050070LIST_HEAD(orangefs_request_list);
Mike Marshall274dcf52015-07-17 10:38:13 -040071
Yi Liu8bb8aef2015-11-24 15:12:14 -050072/* used to protect the above orangefs_request_list */
73DEFINE_SPINLOCK(orangefs_request_list_lock);
Mike Marshall274dcf52015-07-17 10:38:13 -040074
75/* used for incoming request notification */
Yi Liu8bb8aef2015-11-24 15:12:14 -050076DECLARE_WAIT_QUEUE_HEAD(orangefs_request_list_waitq);
Mike Marshall274dcf52015-07-17 10:38:13 -040077
Yi Liu8bb8aef2015-11-24 15:12:14 -050078static int __init orangefs_init(void)
Mike Marshall274dcf52015-07-17 10:38:13 -040079{
80 int ret = -1;
81 __u32 i = 0;
82
Yi Liu8bb8aef2015-11-24 15:12:14 -050083 ret = bdi_init(&orangefs_backing_dev_info);
Mike Marshall274dcf52015-07-17 10:38:13 -040084
85 if (ret)
86 return ret;
87
88 if (op_timeout_secs < 0)
89 op_timeout_secs = 0;
90
91 if (slot_timeout_secs < 0)
92 slot_timeout_secs = 0;
93
94 /* initialize global book keeping data structures */
95 ret = op_cache_initialize();
96 if (ret < 0)
97 goto err;
98
Yi Liu8bb8aef2015-11-24 15:12:14 -050099 ret = orangefs_inode_cache_initialize();
Mike Marshall274dcf52015-07-17 10:38:13 -0400100 if (ret < 0)
Mike Marshall2d4cae02016-02-04 13:48:16 -0500101 goto cleanup_op;
Mike Marshall274dcf52015-07-17 10:38:13 -0400102
Martin Brandenburg1d503612016-08-16 11:38:14 -0400103 orangefs_htable_ops_in_progress =
Mike Marshall274dcf52015-07-17 10:38:13 -0400104 kcalloc(hash_table_size, sizeof(struct list_head), GFP_KERNEL);
Martin Brandenburg1d503612016-08-16 11:38:14 -0400105 if (!orangefs_htable_ops_in_progress) {
Mike Marshall274dcf52015-07-17 10:38:13 -0400106 gossip_err("Failed to initialize op hashtable");
107 ret = -ENOMEM;
Martin Brandenburg2f83ace2016-03-17 13:20:35 -0400108 goto cleanup_inode;
Mike Marshall274dcf52015-07-17 10:38:13 -0400109 }
110
111 /* initialize a doubly linked at each hash table index */
112 for (i = 0; i < hash_table_size; i++)
Martin Brandenburg1d503612016-08-16 11:38:14 -0400113 INIT_LIST_HEAD(&orangefs_htable_ops_in_progress[i]);
Mike Marshall274dcf52015-07-17 10:38:13 -0400114
115 ret = fsid_key_table_initialize();
116 if (ret < 0)
117 goto cleanup_progress_table;
118
119 /*
120 * Build the contents of /sys/kernel/debug/orangefs/debug-help
121 * from the keywords in the kernel keyword/mask array.
122 *
123 * The keywords in the client keyword/mask array are
124 * unknown at boot time.
125 *
126 * orangefs_prepare_debugfs_help_string will be used again
127 * later to rebuild the debug-help file after the client starts
128 * and passes along the needed info. The argument signifies
129 * which time orangefs_prepare_debugfs_help_string is being
130 * called.
Mike Marshall274dcf52015-07-17 10:38:13 -0400131 */
132 ret = orangefs_prepare_debugfs_help_string(1);
133 if (ret)
Mike Marshall1a0ce162016-03-17 13:24:34 -0400134 goto cleanup_key_table;
Mike Marshall274dcf52015-07-17 10:38:13 -0400135
Martin Brandenburg44f46412016-08-15 11:38:36 -0400136 ret = orangefs_debugfs_init(module_parm_debug_mask);
Mike Marshall2180c522016-03-14 15:30:39 -0400137 if (ret)
138 goto debugfs_init_failed;
139
Mike Marshall2180c522016-03-14 15:30:39 -0400140 ret = orangefs_sysfs_init();
141 if (ret)
142 goto sysfs_init_failed;
Mike Marshall274dcf52015-07-17 10:38:13 -0400143
Martin Brandenburg2f83ace2016-03-17 13:20:35 -0400144 /* Initialize the orangefsdev subsystem. */
145 ret = orangefs_dev_init();
146 if (ret < 0) {
147 gossip_err("%s: could not initialize device subsystem %d!\n",
148 __func__,
149 ret);
150 goto cleanup_device;
151 }
152
Yi Liu8bb8aef2015-11-24 15:12:14 -0500153 ret = register_filesystem(&orangefs_fs_type);
Mike Marshall274dcf52015-07-17 10:38:13 -0400154 if (ret == 0) {
Yi Liu8bb8aef2015-11-24 15:12:14 -0500155 pr_info("orangefs: module version %s loaded\n", ORANGEFS_VERSION);
Mike Marshall2180c522016-03-14 15:30:39 -0400156 ret = 0;
157 goto out;
Mike Marshall274dcf52015-07-17 10:38:13 -0400158 }
159
Mike Marshall274dcf52015-07-17 10:38:13 -0400160 orangefs_sysfs_exit();
Mike Marshall274dcf52015-07-17 10:38:13 -0400161
Martin Brandenburg2f83ace2016-03-17 13:20:35 -0400162cleanup_device:
163 orangefs_dev_cleanup();
164
Mike Marshall2180c522016-03-14 15:30:39 -0400165sysfs_init_failed:
166
Mike Marshall2180c522016-03-14 15:30:39 -0400167debugfs_init_failed:
168 orangefs_debugfs_cleanup();
169
Mike Marshall1a0ce162016-03-17 13:24:34 -0400170cleanup_key_table:
171 fsid_key_table_finalize();
Mike Marshall2180c522016-03-14 15:30:39 -0400172
Mike Marshall274dcf52015-07-17 10:38:13 -0400173cleanup_progress_table:
Martin Brandenburg1d503612016-08-16 11:38:14 -0400174 kfree(orangefs_htable_ops_in_progress);
Mike Marshall274dcf52015-07-17 10:38:13 -0400175
Mike Marshall274dcf52015-07-17 10:38:13 -0400176cleanup_inode:
Yi Liu8bb8aef2015-11-24 15:12:14 -0500177 orangefs_inode_cache_finalize();
Mike Marshall274dcf52015-07-17 10:38:13 -0400178
Mike Marshall274dcf52015-07-17 10:38:13 -0400179cleanup_op:
180 op_cache_finalize();
181
182err:
Yi Liu8bb8aef2015-11-24 15:12:14 -0500183 bdi_destroy(&orangefs_backing_dev_info);
Mike Marshall274dcf52015-07-17 10:38:13 -0400184
185out:
186 return ret;
187}
188
Yi Liu8bb8aef2015-11-24 15:12:14 -0500189static void __exit orangefs_exit(void)
Mike Marshall274dcf52015-07-17 10:38:13 -0400190{
191 int i = 0;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500192 gossip_debug(GOSSIP_INIT_DEBUG, "orangefs: orangefs_exit called\n");
Mike Marshall274dcf52015-07-17 10:38:13 -0400193
Yi Liu8bb8aef2015-11-24 15:12:14 -0500194 unregister_filesystem(&orangefs_fs_type);
195 orangefs_debugfs_cleanup();
Mike Marshall274dcf52015-07-17 10:38:13 -0400196 orangefs_sysfs_exit();
197 fsid_key_table_finalize();
Yi Liu8bb8aef2015-11-24 15:12:14 -0500198 orangefs_dev_cleanup();
Al Viro96acf9d62016-01-22 13:34:32 -0500199 BUG_ON(!list_empty(&orangefs_request_list));
Mike Marshall274dcf52015-07-17 10:38:13 -0400200 for (i = 0; i < hash_table_size; i++)
Martin Brandenburg1d503612016-08-16 11:38:14 -0400201 BUG_ON(!list_empty(&orangefs_htable_ops_in_progress[i]));
Mike Marshall274dcf52015-07-17 10:38:13 -0400202
Yi Liu8bb8aef2015-11-24 15:12:14 -0500203 orangefs_inode_cache_finalize();
Mike Marshall274dcf52015-07-17 10:38:13 -0400204 op_cache_finalize();
205
Martin Brandenburg1d503612016-08-16 11:38:14 -0400206 kfree(orangefs_htable_ops_in_progress);
Mike Marshall274dcf52015-07-17 10:38:13 -0400207
Yi Liu8bb8aef2015-11-24 15:12:14 -0500208 bdi_destroy(&orangefs_backing_dev_info);
Mike Marshall274dcf52015-07-17 10:38:13 -0400209
Yi Liu8bb8aef2015-11-24 15:12:14 -0500210 pr_info("orangefs: module version %s unloaded\n", ORANGEFS_VERSION);
Mike Marshall274dcf52015-07-17 10:38:13 -0400211}
212
213/*
214 * What we do in this function is to walk the list of operations
215 * that are in progress in the hash table and mark them as purged as well.
216 */
217void purge_inprogress_ops(void)
218{
219 int i;
220
221 for (i = 0; i < hash_table_size; i++) {
Yi Liu8bb8aef2015-11-24 15:12:14 -0500222 struct orangefs_kernel_op_s *op;
223 struct orangefs_kernel_op_s *next;
Mike Marshall274dcf52015-07-17 10:38:13 -0400224
Martin Brandenburg1d503612016-08-16 11:38:14 -0400225 spin_lock(&orangefs_htable_ops_in_progress_lock);
Mike Marshall274dcf52015-07-17 10:38:13 -0400226 list_for_each_entry_safe(op,
227 next,
Martin Brandenburg1d503612016-08-16 11:38:14 -0400228 &orangefs_htable_ops_in_progress[i],
Mike Marshall274dcf52015-07-17 10:38:13 -0400229 list) {
Mike Marshall274dcf52015-07-17 10:38:13 -0400230 set_op_state_purged(op);
Mike Marshall9d9e7ba2016-03-03 13:46:48 -0500231 gossip_debug(GOSSIP_DEV_DEBUG,
232 "%s: op:%s: op_state:%d: process:%s:\n",
233 __func__,
234 get_opname_string(op),
235 op->op_state,
236 current->comm);
Mike Marshall274dcf52015-07-17 10:38:13 -0400237 }
Martin Brandenburg1d503612016-08-16 11:38:14 -0400238 spin_unlock(&orangefs_htable_ops_in_progress_lock);
Mike Marshall274dcf52015-07-17 10:38:13 -0400239 }
240}
241
Yi Liu8bb8aef2015-11-24 15:12:14 -0500242module_init(orangefs_init);
243module_exit(orangefs_exit);