blob: e9fd5755c05faf55d223ac5e63751d19f357662e [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;
Martin Brandenburg957ee432016-07-26 13:23:04 -040050int dcache_timeout_msecs = 50;
51int getattr_timeout_msecs = 50;
Mike Marshall274dcf52015-07-17 10:38:13 -040052
53MODULE_LICENSE("GPL");
Yi Liu8bb8aef2015-11-24 15:12:14 -050054MODULE_AUTHOR("ORANGEFS Development Team");
55MODULE_DESCRIPTION("The Linux Kernel VFS interface to ORANGEFS");
56MODULE_PARM_DESC(module_parm_debug_mask, "debugging level (see orangefs-debug.h for values)");
Mike Marshall274dcf52015-07-17 10:38:13 -040057MODULE_PARM_DESC(op_timeout_secs, "Operation timeout in seconds");
58MODULE_PARM_DESC(slot_timeout_secs, "Slot timeout in seconds");
59MODULE_PARM_DESC(hash_table_size,
60 "size of hash table for operations in progress");
61
Yi Liu8bb8aef2015-11-24 15:12:14 -050062static struct file_system_type orangefs_fs_type = {
Mike Marshall274dcf52015-07-17 10:38:13 -040063 .name = "pvfs2",
Yi Liu8bb8aef2015-11-24 15:12:14 -050064 .mount = orangefs_mount,
65 .kill_sb = orangefs_kill_sb,
Mike Marshall274dcf52015-07-17 10:38:13 -040066 .owner = THIS_MODULE,
67};
68
69module_param(hash_table_size, int, 0);
Sasha Levincb987f32015-08-03 00:08:59 -040070module_param(module_parm_debug_mask, ulong, 0644);
Mike Marshall274dcf52015-07-17 10:38:13 -040071module_param(op_timeout_secs, int, 0);
72module_param(slot_timeout_secs, int, 0);
73
74/* synchronizes the request device file */
Al Viro3e1dd9a2016-01-19 11:33:40 -050075DEFINE_MUTEX(devreq_mutex);
Mike Marshall274dcf52015-07-17 10:38:13 -040076
77/*
Mike Marshall54804942015-10-05 13:44:24 -040078 * Blocks non-priority requests from being queued for servicing. This
79 * could be used for protecting the request list data structure, but
80 * for now it's only being used to stall the op addition to the request
81 * list
82 */
Al Viro3e1dd9a2016-01-19 11:33:40 -050083DEFINE_MUTEX(request_mutex);
Mike Marshall274dcf52015-07-17 10:38:13 -040084
85/* hash table for storing operations waiting for matching downcall */
86struct list_head *htable_ops_in_progress;
87DEFINE_SPINLOCK(htable_ops_in_progress_lock);
88
89/* list for queueing upcall operations */
Yi Liu8bb8aef2015-11-24 15:12:14 -050090LIST_HEAD(orangefs_request_list);
Mike Marshall274dcf52015-07-17 10:38:13 -040091
Yi Liu8bb8aef2015-11-24 15:12:14 -050092/* used to protect the above orangefs_request_list */
93DEFINE_SPINLOCK(orangefs_request_list_lock);
Mike Marshall274dcf52015-07-17 10:38:13 -040094
95/* used for incoming request notification */
Yi Liu8bb8aef2015-11-24 15:12:14 -050096DECLARE_WAIT_QUEUE_HEAD(orangefs_request_list_waitq);
Mike Marshall274dcf52015-07-17 10:38:13 -040097
Yi Liu8bb8aef2015-11-24 15:12:14 -050098static int __init orangefs_init(void)
Mike Marshall274dcf52015-07-17 10:38:13 -040099{
100 int ret = -1;
101 __u32 i = 0;
102
103 /* convert input debug mask to a 64-bit unsigned integer */
104 gossip_debug_mask = (unsigned long long) module_parm_debug_mask;
105
106 /*
107 * set the kernel's gossip debug string; invalid mask values will
108 * be ignored.
109 */
110 debug_mask_to_string(&gossip_debug_mask, 0);
111
112 /* remove any invalid values from the mask */
113 debug_string_to_mask(kernel_debug_string, &gossip_debug_mask, 0);
114
115 /*
116 * if the mask has a non-zero value, then indicate that the mask
Yi Liu8bb8aef2015-11-24 15:12:14 -0500117 * was set when the kernel module was loaded. The orangefs dev ioctl
Mike Marshall274dcf52015-07-17 10:38:13 -0400118 * command will look at this boolean to determine if the kernel's
119 * debug mask should be overwritten when the client-core is started.
120 */
121 if (gossip_debug_mask != 0)
122 kernel_mask_set_mod_init = true;
123
Mike Marshallca9f5182016-02-26 10:21:12 -0500124 pr_info("%s: called with debug mask: :%s: :%llx:\n",
125 __func__,
126 kernel_debug_string,
127 (unsigned long long)gossip_debug_mask);
Mike Marshall274dcf52015-07-17 10:38:13 -0400128
Yi Liu8bb8aef2015-11-24 15:12:14 -0500129 ret = bdi_init(&orangefs_backing_dev_info);
Mike Marshall274dcf52015-07-17 10:38:13 -0400130
131 if (ret)
132 return ret;
133
134 if (op_timeout_secs < 0)
135 op_timeout_secs = 0;
136
137 if (slot_timeout_secs < 0)
138 slot_timeout_secs = 0;
139
140 /* initialize global book keeping data structures */
141 ret = op_cache_initialize();
142 if (ret < 0)
143 goto err;
144
Yi Liu8bb8aef2015-11-24 15:12:14 -0500145 ret = orangefs_inode_cache_initialize();
Mike Marshall274dcf52015-07-17 10:38:13 -0400146 if (ret < 0)
Mike Marshall2d4cae02016-02-04 13:48:16 -0500147 goto cleanup_op;
Mike Marshall274dcf52015-07-17 10:38:13 -0400148
Mike Marshall274dcf52015-07-17 10:38:13 -0400149 htable_ops_in_progress =
150 kcalloc(hash_table_size, sizeof(struct list_head), GFP_KERNEL);
151 if (!htable_ops_in_progress) {
152 gossip_err("Failed to initialize op hashtable");
153 ret = -ENOMEM;
Martin Brandenburg2f83ace2016-03-17 13:20:35 -0400154 goto cleanup_inode;
Mike Marshall274dcf52015-07-17 10:38:13 -0400155 }
156
157 /* initialize a doubly linked at each hash table index */
158 for (i = 0; i < hash_table_size; i++)
159 INIT_LIST_HEAD(&htable_ops_in_progress[i]);
160
161 ret = fsid_key_table_initialize();
162 if (ret < 0)
163 goto cleanup_progress_table;
164
165 /*
166 * Build the contents of /sys/kernel/debug/orangefs/debug-help
167 * from the keywords in the kernel keyword/mask array.
168 *
169 * The keywords in the client keyword/mask array are
170 * unknown at boot time.
171 *
172 * orangefs_prepare_debugfs_help_string will be used again
173 * later to rebuild the debug-help file after the client starts
174 * and passes along the needed info. The argument signifies
175 * which time orangefs_prepare_debugfs_help_string is being
176 * called.
Mike Marshall274dcf52015-07-17 10:38:13 -0400177 */
178 ret = orangefs_prepare_debugfs_help_string(1);
179 if (ret)
Mike Marshall1a0ce162016-03-17 13:24:34 -0400180 goto cleanup_key_table;
Mike Marshall274dcf52015-07-17 10:38:13 -0400181
Mike Marshall2180c522016-03-14 15:30:39 -0400182 ret = orangefs_debugfs_init();
183 if (ret)
184 goto debugfs_init_failed;
185
186 ret = orangefs_kernel_debug_init();
187 if (ret)
188 goto kernel_debug_init_failed;
189
190 ret = orangefs_sysfs_init();
191 if (ret)
192 goto sysfs_init_failed;
Mike Marshall274dcf52015-07-17 10:38:13 -0400193
Martin Brandenburg2f83ace2016-03-17 13:20:35 -0400194 /* Initialize the orangefsdev subsystem. */
195 ret = orangefs_dev_init();
196 if (ret < 0) {
197 gossip_err("%s: could not initialize device subsystem %d!\n",
198 __func__,
199 ret);
200 goto cleanup_device;
201 }
202
Yi Liu8bb8aef2015-11-24 15:12:14 -0500203 ret = register_filesystem(&orangefs_fs_type);
Mike Marshall274dcf52015-07-17 10:38:13 -0400204 if (ret == 0) {
Yi Liu8bb8aef2015-11-24 15:12:14 -0500205 pr_info("orangefs: module version %s loaded\n", ORANGEFS_VERSION);
Mike Marshall2180c522016-03-14 15:30:39 -0400206 ret = 0;
207 goto out;
Mike Marshall274dcf52015-07-17 10:38:13 -0400208 }
209
Mike Marshall274dcf52015-07-17 10:38:13 -0400210 orangefs_sysfs_exit();
Mike Marshall274dcf52015-07-17 10:38:13 -0400211
Martin Brandenburg2f83ace2016-03-17 13:20:35 -0400212cleanup_device:
213 orangefs_dev_cleanup();
214
Mike Marshall2180c522016-03-14 15:30:39 -0400215sysfs_init_failed:
216
217kernel_debug_init_failed:
218
219debugfs_init_failed:
220 orangefs_debugfs_cleanup();
221
Mike Marshall1a0ce162016-03-17 13:24:34 -0400222cleanup_key_table:
223 fsid_key_table_finalize();
Mike Marshall2180c522016-03-14 15:30:39 -0400224
Mike Marshall274dcf52015-07-17 10:38:13 -0400225cleanup_progress_table:
226 kfree(htable_ops_in_progress);
227
Mike Marshall274dcf52015-07-17 10:38:13 -0400228cleanup_inode:
Yi Liu8bb8aef2015-11-24 15:12:14 -0500229 orangefs_inode_cache_finalize();
Mike Marshall274dcf52015-07-17 10:38:13 -0400230
Mike Marshall274dcf52015-07-17 10:38:13 -0400231cleanup_op:
232 op_cache_finalize();
233
234err:
Yi Liu8bb8aef2015-11-24 15:12:14 -0500235 bdi_destroy(&orangefs_backing_dev_info);
Mike Marshall274dcf52015-07-17 10:38:13 -0400236
237out:
238 return ret;
239}
240
Yi Liu8bb8aef2015-11-24 15:12:14 -0500241static void __exit orangefs_exit(void)
Mike Marshall274dcf52015-07-17 10:38:13 -0400242{
243 int i = 0;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500244 gossip_debug(GOSSIP_INIT_DEBUG, "orangefs: orangefs_exit called\n");
Mike Marshall274dcf52015-07-17 10:38:13 -0400245
Yi Liu8bb8aef2015-11-24 15:12:14 -0500246 unregister_filesystem(&orangefs_fs_type);
247 orangefs_debugfs_cleanup();
Mike Marshall274dcf52015-07-17 10:38:13 -0400248 orangefs_sysfs_exit();
249 fsid_key_table_finalize();
Yi Liu8bb8aef2015-11-24 15:12:14 -0500250 orangefs_dev_cleanup();
Al Viro96acf9d62016-01-22 13:34:32 -0500251 BUG_ON(!list_empty(&orangefs_request_list));
Mike Marshall274dcf52015-07-17 10:38:13 -0400252 for (i = 0; i < hash_table_size; i++)
Al Viro96acf9d62016-01-22 13:34:32 -0500253 BUG_ON(!list_empty(&htable_ops_in_progress[i]));
Mike Marshall274dcf52015-07-17 10:38:13 -0400254
Yi Liu8bb8aef2015-11-24 15:12:14 -0500255 orangefs_inode_cache_finalize();
Mike Marshall274dcf52015-07-17 10:38:13 -0400256 op_cache_finalize();
257
258 kfree(htable_ops_in_progress);
259
Yi Liu8bb8aef2015-11-24 15:12:14 -0500260 bdi_destroy(&orangefs_backing_dev_info);
Mike Marshall274dcf52015-07-17 10:38:13 -0400261
Yi Liu8bb8aef2015-11-24 15:12:14 -0500262 pr_info("orangefs: module version %s unloaded\n", ORANGEFS_VERSION);
Mike Marshall274dcf52015-07-17 10:38:13 -0400263}
264
265/*
266 * What we do in this function is to walk the list of operations
267 * that are in progress in the hash table and mark them as purged as well.
268 */
269void purge_inprogress_ops(void)
270{
271 int i;
272
273 for (i = 0; i < hash_table_size; i++) {
Yi Liu8bb8aef2015-11-24 15:12:14 -0500274 struct orangefs_kernel_op_s *op;
275 struct orangefs_kernel_op_s *next;
Mike Marshall274dcf52015-07-17 10:38:13 -0400276
Al Viroed42fe02016-01-22 19:47:47 -0500277 spin_lock(&htable_ops_in_progress_lock);
Mike Marshall274dcf52015-07-17 10:38:13 -0400278 list_for_each_entry_safe(op,
279 next,
280 &htable_ops_in_progress[i],
281 list) {
Mike Marshall274dcf52015-07-17 10:38:13 -0400282 set_op_state_purged(op);
Mike Marshall9d9e7ba2016-03-03 13:46:48 -0500283 gossip_debug(GOSSIP_DEV_DEBUG,
284 "%s: op:%s: op_state:%d: process:%s:\n",
285 __func__,
286 get_opname_string(op),
287 op->op_state,
288 current->comm);
Mike Marshall274dcf52015-07-17 10:38:13 -0400289 }
Al Viroed42fe02016-01-22 19:47:47 -0500290 spin_unlock(&htable_ops_in_progress_lock);
Mike Marshall274dcf52015-07-17 10:38:13 -0400291 }
292}
293
Yi Liu8bb8aef2015-11-24 15:12:14 -0500294module_init(orangefs_init);
295module_exit(orangefs_exit);