blob: abc41fa2d2c422033e4d501e32e2a203628b9392 [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
24/* array of client debug keyword/mask values */
25struct client_debug_mask *cdm_array;
26int cdm_element_count;
27
Yi Liu8bb8aef2015-11-24 15:12:14 -050028char kernel_debug_string[ORANGEFS_MAX_DEBUG_STRING_LEN] = "none";
29char client_debug_string[ORANGEFS_MAX_DEBUG_STRING_LEN];
30char client_debug_array_string[ORANGEFS_MAX_DEBUG_STRING_LEN];
Mike Marshall274dcf52015-07-17 10:38:13 -040031
32char *debug_help_string;
33int help_string_initialized;
34struct dentry *help_file_dentry;
35struct dentry *client_debug_dentry;
36struct dentry *debug_dir;
37int client_verbose_index;
38int client_all_index;
Yi Liu8bb8aef2015-11-24 15:12:14 -050039struct orangefs_stats g_orangefs_stats;
Mike Marshall274dcf52015-07-17 10:38:13 -040040
41/* the size of the hash tables for ops in progress */
42int hash_table_size = 509;
43
44static ulong module_parm_debug_mask;
45__u64 gossip_debug_mask;
46struct client_debug_mask client_debug_mask = { NULL, 0, 0 };
47unsigned int kernel_mask_set_mod_init; /* implicitly false */
Yi Liu8bb8aef2015-11-24 15:12:14 -050048int op_timeout_secs = ORANGEFS_DEFAULT_OP_TIMEOUT_SECS;
49int slot_timeout_secs = ORANGEFS_DEFAULT_SLOT_TIMEOUT_SECS;
Mike Marshall274dcf52015-07-17 10:38:13 -040050
51MODULE_LICENSE("GPL");
Yi Liu8bb8aef2015-11-24 15:12:14 -050052MODULE_AUTHOR("ORANGEFS Development Team");
53MODULE_DESCRIPTION("The Linux Kernel VFS interface to ORANGEFS");
54MODULE_PARM_DESC(module_parm_debug_mask, "debugging level (see orangefs-debug.h for values)");
Mike Marshall274dcf52015-07-17 10:38:13 -040055MODULE_PARM_DESC(op_timeout_secs, "Operation timeout in seconds");
56MODULE_PARM_DESC(slot_timeout_secs, "Slot timeout in seconds");
57MODULE_PARM_DESC(hash_table_size,
58 "size of hash table for operations in progress");
59
Yi Liu8bb8aef2015-11-24 15:12:14 -050060static struct file_system_type orangefs_fs_type = {
Mike Marshall274dcf52015-07-17 10:38:13 -040061 .name = "pvfs2",
Yi Liu8bb8aef2015-11-24 15:12:14 -050062 .mount = orangefs_mount,
63 .kill_sb = orangefs_kill_sb,
Mike Marshall274dcf52015-07-17 10:38:13 -040064 .owner = THIS_MODULE,
65};
66
67module_param(hash_table_size, int, 0);
Sasha Levincb987f32015-08-03 00:08:59 -040068module_param(module_parm_debug_mask, ulong, 0644);
Mike Marshall274dcf52015-07-17 10:38:13 -040069module_param(op_timeout_secs, int, 0);
70module_param(slot_timeout_secs, int, 0);
71
72/* synchronizes the request device file */
Al Viro3e1dd9a2016-01-19 11:33:40 -050073DEFINE_MUTEX(devreq_mutex);
Mike Marshall274dcf52015-07-17 10:38:13 -040074
75/*
Mike Marshall54804942015-10-05 13:44:24 -040076 * Blocks non-priority requests from being queued for servicing. This
77 * could be used for protecting the request list data structure, but
78 * for now it's only being used to stall the op addition to the request
79 * list
80 */
Al Viro3e1dd9a2016-01-19 11:33:40 -050081DEFINE_MUTEX(request_mutex);
Mike Marshall274dcf52015-07-17 10:38:13 -040082
83/* hash table for storing operations waiting for matching downcall */
84struct list_head *htable_ops_in_progress;
85DEFINE_SPINLOCK(htable_ops_in_progress_lock);
86
87/* list for queueing upcall operations */
Yi Liu8bb8aef2015-11-24 15:12:14 -050088LIST_HEAD(orangefs_request_list);
Mike Marshall274dcf52015-07-17 10:38:13 -040089
Yi Liu8bb8aef2015-11-24 15:12:14 -050090/* used to protect the above orangefs_request_list */
91DEFINE_SPINLOCK(orangefs_request_list_lock);
Mike Marshall274dcf52015-07-17 10:38:13 -040092
93/* used for incoming request notification */
Yi Liu8bb8aef2015-11-24 15:12:14 -050094DECLARE_WAIT_QUEUE_HEAD(orangefs_request_list_waitq);
Mike Marshall274dcf52015-07-17 10:38:13 -040095
Yi Liu8bb8aef2015-11-24 15:12:14 -050096static int __init orangefs_init(void)
Mike Marshall274dcf52015-07-17 10:38:13 -040097{
98 int ret = -1;
99 __u32 i = 0;
100
101 /* convert input debug mask to a 64-bit unsigned integer */
102 gossip_debug_mask = (unsigned long long) module_parm_debug_mask;
103
104 /*
105 * set the kernel's gossip debug string; invalid mask values will
106 * be ignored.
107 */
108 debug_mask_to_string(&gossip_debug_mask, 0);
109
110 /* remove any invalid values from the mask */
111 debug_string_to_mask(kernel_debug_string, &gossip_debug_mask, 0);
112
113 /*
114 * if the mask has a non-zero value, then indicate that the mask
Yi Liu8bb8aef2015-11-24 15:12:14 -0500115 * was set when the kernel module was loaded. The orangefs dev ioctl
Mike Marshall274dcf52015-07-17 10:38:13 -0400116 * command will look at this boolean to determine if the kernel's
117 * debug mask should be overwritten when the client-core is started.
118 */
119 if (gossip_debug_mask != 0)
120 kernel_mask_set_mod_init = true;
121
Mike Marshallca9f5182016-02-26 10:21:12 -0500122 pr_info("%s: called with debug mask: :%s: :%llx:\n",
123 __func__,
124 kernel_debug_string,
125 (unsigned long long)gossip_debug_mask);
Mike Marshall274dcf52015-07-17 10:38:13 -0400126
Yi Liu8bb8aef2015-11-24 15:12:14 -0500127 ret = bdi_init(&orangefs_backing_dev_info);
Mike Marshall274dcf52015-07-17 10:38:13 -0400128
129 if (ret)
130 return ret;
131
132 if (op_timeout_secs < 0)
133 op_timeout_secs = 0;
134
135 if (slot_timeout_secs < 0)
136 slot_timeout_secs = 0;
137
138 /* initialize global book keeping data structures */
139 ret = op_cache_initialize();
140 if (ret < 0)
141 goto err;
142
Yi Liu8bb8aef2015-11-24 15:12:14 -0500143 ret = orangefs_inode_cache_initialize();
Mike Marshall274dcf52015-07-17 10:38:13 -0400144 if (ret < 0)
Mike Marshall2d4cae02016-02-04 13:48:16 -0500145 goto cleanup_op;
Mike Marshall274dcf52015-07-17 10:38:13 -0400146
Mike Marshall575e9462015-12-04 12:56:14 -0500147 /* Initialize the orangefsdev subsystem. */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500148 ret = orangefs_dev_init();
Mike Marshall274dcf52015-07-17 10:38:13 -0400149 if (ret < 0) {
Mike Marshallca9f5182016-02-26 10:21:12 -0500150 gossip_err("%s: could not initialize device subsystem %d!\n",
151 __func__,
Mike Marshall274dcf52015-07-17 10:38:13 -0400152 ret);
Mike Marshall2d4cae02016-02-04 13:48:16 -0500153 goto cleanup_inode;
Mike Marshall274dcf52015-07-17 10:38:13 -0400154 }
155
Mike Marshall274dcf52015-07-17 10:38:13 -0400156 htable_ops_in_progress =
157 kcalloc(hash_table_size, sizeof(struct list_head), GFP_KERNEL);
158 if (!htable_ops_in_progress) {
159 gossip_err("Failed to initialize op hashtable");
160 ret = -ENOMEM;
161 goto cleanup_device;
162 }
163
164 /* initialize a doubly linked at each hash table index */
165 for (i = 0; i < hash_table_size; i++)
166 INIT_LIST_HEAD(&htable_ops_in_progress[i]);
167
168 ret = fsid_key_table_initialize();
169 if (ret < 0)
170 goto cleanup_progress_table;
171
172 /*
173 * Build the contents of /sys/kernel/debug/orangefs/debug-help
174 * from the keywords in the kernel keyword/mask array.
175 *
176 * The keywords in the client keyword/mask array are
177 * unknown at boot time.
178 *
179 * orangefs_prepare_debugfs_help_string will be used again
180 * later to rebuild the debug-help file after the client starts
181 * and passes along the needed info. The argument signifies
182 * which time orangefs_prepare_debugfs_help_string is being
183 * called.
184 *
185 */
186 ret = orangefs_prepare_debugfs_help_string(1);
187 if (ret)
Mike Marshall2180c522016-03-14 15:30:39 -0400188 goto prepare_helpstring_failed;
Mike Marshall274dcf52015-07-17 10:38:13 -0400189
Mike Marshall2180c522016-03-14 15:30:39 -0400190 ret = orangefs_debugfs_init();
191 if (ret)
192 goto debugfs_init_failed;
193
194 ret = orangefs_kernel_debug_init();
195 if (ret)
196 goto kernel_debug_init_failed;
197
198 ret = orangefs_sysfs_init();
199 if (ret)
200 goto sysfs_init_failed;
Mike Marshall274dcf52015-07-17 10:38:13 -0400201
Yi Liu8bb8aef2015-11-24 15:12:14 -0500202 ret = register_filesystem(&orangefs_fs_type);
Mike Marshall274dcf52015-07-17 10:38:13 -0400203 if (ret == 0) {
Yi Liu8bb8aef2015-11-24 15:12:14 -0500204 pr_info("orangefs: module version %s loaded\n", ORANGEFS_VERSION);
Mike Marshall2180c522016-03-14 15:30:39 -0400205 ret = 0;
206 goto out;
Mike Marshall274dcf52015-07-17 10:38:13 -0400207 }
208
Mike Marshall274dcf52015-07-17 10:38:13 -0400209 orangefs_sysfs_exit();
210 fsid_key_table_finalize();
211
Mike Marshall2180c522016-03-14 15:30:39 -0400212sysfs_init_failed:
213
214kernel_debug_init_failed:
215
216debugfs_init_failed:
217 orangefs_debugfs_cleanup();
218
219prepare_helpstring_failed:
220
Mike Marshall274dcf52015-07-17 10:38:13 -0400221cleanup_progress_table:
222 kfree(htable_ops_in_progress);
223
224cleanup_device:
Yi Liu8bb8aef2015-11-24 15:12:14 -0500225 orangefs_dev_cleanup();
Mike Marshall274dcf52015-07-17 10:38:13 -0400226
Mike Marshall274dcf52015-07-17 10:38:13 -0400227cleanup_inode:
Yi Liu8bb8aef2015-11-24 15:12:14 -0500228 orangefs_inode_cache_finalize();
Mike Marshall274dcf52015-07-17 10:38:13 -0400229
Mike Marshall274dcf52015-07-17 10:38:13 -0400230cleanup_op:
231 op_cache_finalize();
232
233err:
Yi Liu8bb8aef2015-11-24 15:12:14 -0500234 bdi_destroy(&orangefs_backing_dev_info);
Mike Marshall274dcf52015-07-17 10:38:13 -0400235
236out:
237 return ret;
238}
239
Yi Liu8bb8aef2015-11-24 15:12:14 -0500240static void __exit orangefs_exit(void)
Mike Marshall274dcf52015-07-17 10:38:13 -0400241{
242 int i = 0;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500243 gossip_debug(GOSSIP_INIT_DEBUG, "orangefs: orangefs_exit called\n");
Mike Marshall274dcf52015-07-17 10:38:13 -0400244
Yi Liu8bb8aef2015-11-24 15:12:14 -0500245 unregister_filesystem(&orangefs_fs_type);
246 orangefs_debugfs_cleanup();
Mike Marshall274dcf52015-07-17 10:38:13 -0400247 orangefs_sysfs_exit();
248 fsid_key_table_finalize();
Yi Liu8bb8aef2015-11-24 15:12:14 -0500249 orangefs_dev_cleanup();
Al Viro96acf9d62016-01-22 13:34:32 -0500250 BUG_ON(!list_empty(&orangefs_request_list));
Mike Marshall274dcf52015-07-17 10:38:13 -0400251 for (i = 0; i < hash_table_size; i++)
Al Viro96acf9d62016-01-22 13:34:32 -0500252 BUG_ON(!list_empty(&htable_ops_in_progress[i]));
Mike Marshall274dcf52015-07-17 10:38:13 -0400253
Yi Liu8bb8aef2015-11-24 15:12:14 -0500254 orangefs_inode_cache_finalize();
Mike Marshall274dcf52015-07-17 10:38:13 -0400255 op_cache_finalize();
256
257 kfree(htable_ops_in_progress);
258
Yi Liu8bb8aef2015-11-24 15:12:14 -0500259 bdi_destroy(&orangefs_backing_dev_info);
Mike Marshall274dcf52015-07-17 10:38:13 -0400260
Yi Liu8bb8aef2015-11-24 15:12:14 -0500261 pr_info("orangefs: module version %s unloaded\n", ORANGEFS_VERSION);
Mike Marshall274dcf52015-07-17 10:38:13 -0400262}
263
264/*
265 * What we do in this function is to walk the list of operations
266 * that are in progress in the hash table and mark them as purged as well.
267 */
268void purge_inprogress_ops(void)
269{
270 int i;
271
272 for (i = 0; i < hash_table_size; i++) {
Yi Liu8bb8aef2015-11-24 15:12:14 -0500273 struct orangefs_kernel_op_s *op;
274 struct orangefs_kernel_op_s *next;
Mike Marshall274dcf52015-07-17 10:38:13 -0400275
Al Viroed42fe02016-01-22 19:47:47 -0500276 spin_lock(&htable_ops_in_progress_lock);
Mike Marshall274dcf52015-07-17 10:38:13 -0400277 list_for_each_entry_safe(op,
278 next,
279 &htable_ops_in_progress[i],
280 list) {
Mike Marshall274dcf52015-07-17 10:38:13 -0400281 set_op_state_purged(op);
Mike Marshall9d9e7ba2016-03-03 13:46:48 -0500282 gossip_debug(GOSSIP_DEV_DEBUG,
283 "%s: op:%s: op_state:%d: process:%s:\n",
284 __func__,
285 get_opname_string(op),
286 op->op_state,
287 current->comm);
Mike Marshall274dcf52015-07-17 10:38:13 -0400288 }
Al Viroed42fe02016-01-22 19:47:47 -0500289 spin_unlock(&htable_ops_in_progress_lock);
Mike Marshall274dcf52015-07-17 10:38:13 -0400290 }
291}
292
Yi Liu8bb8aef2015-11-24 15:12:14 -0500293module_init(orangefs_init);
294module_exit(orangefs_exit);