Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 1 | /* |
| 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 Marshall | 575e946 | 2015-12-04 12:56:14 -0500 | [diff] [blame] | 11 | #include "orangefs-kernel.h" |
| 12 | #include "orangefs-debugfs.h" |
| 13 | #include "orangefs-sysfs.h" |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 14 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 15 | /* ORANGEFS_VERSION is a ./configure define */ |
| 16 | #ifndef ORANGEFS_VERSION |
Mike Marshall | 4c27b32 | 2016-01-13 11:34:59 -0500 | [diff] [blame] | 17 | #define ORANGEFS_VERSION "upstream" |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 18 | #endif |
| 19 | |
| 20 | /* |
| 21 | * global variables declared here |
| 22 | */ |
| 23 | |
| 24 | /* array of client debug keyword/mask values */ |
| 25 | struct client_debug_mask *cdm_array; |
| 26 | int cdm_element_count; |
| 27 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 28 | char kernel_debug_string[ORANGEFS_MAX_DEBUG_STRING_LEN] = "none"; |
| 29 | char client_debug_string[ORANGEFS_MAX_DEBUG_STRING_LEN]; |
| 30 | char client_debug_array_string[ORANGEFS_MAX_DEBUG_STRING_LEN]; |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 31 | |
| 32 | char *debug_help_string; |
| 33 | int help_string_initialized; |
| 34 | struct dentry *help_file_dentry; |
| 35 | struct dentry *client_debug_dentry; |
| 36 | struct dentry *debug_dir; |
| 37 | int client_verbose_index; |
| 38 | int client_all_index; |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 39 | struct orangefs_stats g_orangefs_stats; |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 40 | |
| 41 | /* the size of the hash tables for ops in progress */ |
| 42 | int hash_table_size = 509; |
| 43 | |
| 44 | static ulong module_parm_debug_mask; |
| 45 | __u64 gossip_debug_mask; |
| 46 | struct client_debug_mask client_debug_mask = { NULL, 0, 0 }; |
| 47 | unsigned int kernel_mask_set_mod_init; /* implicitly false */ |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 48 | int op_timeout_secs = ORANGEFS_DEFAULT_OP_TIMEOUT_SECS; |
| 49 | int slot_timeout_secs = ORANGEFS_DEFAULT_SLOT_TIMEOUT_SECS; |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 50 | |
| 51 | MODULE_LICENSE("GPL"); |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 52 | MODULE_AUTHOR("ORANGEFS Development Team"); |
| 53 | MODULE_DESCRIPTION("The Linux Kernel VFS interface to ORANGEFS"); |
| 54 | MODULE_PARM_DESC(module_parm_debug_mask, "debugging level (see orangefs-debug.h for values)"); |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 55 | MODULE_PARM_DESC(op_timeout_secs, "Operation timeout in seconds"); |
| 56 | MODULE_PARM_DESC(slot_timeout_secs, "Slot timeout in seconds"); |
| 57 | MODULE_PARM_DESC(hash_table_size, |
| 58 | "size of hash table for operations in progress"); |
| 59 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 60 | static struct file_system_type orangefs_fs_type = { |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 61 | .name = "pvfs2", |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 62 | .mount = orangefs_mount, |
| 63 | .kill_sb = orangefs_kill_sb, |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 64 | .owner = THIS_MODULE, |
| 65 | }; |
| 66 | |
| 67 | module_param(hash_table_size, int, 0); |
Sasha Levin | cb987f3 | 2015-08-03 00:08:59 -0400 | [diff] [blame] | 68 | module_param(module_parm_debug_mask, ulong, 0644); |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 69 | module_param(op_timeout_secs, int, 0); |
| 70 | module_param(slot_timeout_secs, int, 0); |
| 71 | |
| 72 | /* synchronizes the request device file */ |
Al Viro | 3e1dd9a | 2016-01-19 11:33:40 -0500 | [diff] [blame] | 73 | DEFINE_MUTEX(devreq_mutex); |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 74 | |
| 75 | /* |
Mike Marshall | 5480494 | 2015-10-05 13:44:24 -0400 | [diff] [blame] | 76 | * 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 Viro | 3e1dd9a | 2016-01-19 11:33:40 -0500 | [diff] [blame] | 81 | DEFINE_MUTEX(request_mutex); |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 82 | |
| 83 | /* hash table for storing operations waiting for matching downcall */ |
| 84 | struct list_head *htable_ops_in_progress; |
| 85 | DEFINE_SPINLOCK(htable_ops_in_progress_lock); |
| 86 | |
| 87 | /* list for queueing upcall operations */ |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 88 | LIST_HEAD(orangefs_request_list); |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 89 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 90 | /* used to protect the above orangefs_request_list */ |
| 91 | DEFINE_SPINLOCK(orangefs_request_list_lock); |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 92 | |
| 93 | /* used for incoming request notification */ |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 94 | DECLARE_WAIT_QUEUE_HEAD(orangefs_request_list_waitq); |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 95 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 96 | static int __init orangefs_init(void) |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 97 | { |
| 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 Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 115 | * was set when the kernel module was loaded. The orangefs dev ioctl |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 116 | * 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 | |
| 122 | /* print information message to the system log */ |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 123 | pr_info("orangefs: orangefs_init called with debug mask: :%s: :%llx:\n", |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 124 | kernel_debug_string, |
| 125 | (unsigned long long)gossip_debug_mask); |
| 126 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 127 | ret = bdi_init(&orangefs_backing_dev_info); |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 128 | |
| 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 | |
| 143 | ret = dev_req_cache_initialize(); |
| 144 | if (ret < 0) |
| 145 | goto cleanup_op; |
| 146 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 147 | ret = orangefs_inode_cache_initialize(); |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 148 | if (ret < 0) |
| 149 | goto cleanup_req; |
| 150 | |
| 151 | ret = kiocb_cache_initialize(); |
| 152 | if (ret < 0) |
| 153 | goto cleanup_inode; |
| 154 | |
Mike Marshall | 575e946 | 2015-12-04 12:56:14 -0500 | [diff] [blame] | 155 | /* Initialize the orangefsdev subsystem. */ |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 156 | ret = orangefs_dev_init(); |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 157 | if (ret < 0) { |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 158 | gossip_err("orangefs: could not initialize device subsystem %d!\n", |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 159 | ret); |
| 160 | goto cleanup_kiocb; |
| 161 | } |
| 162 | |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 163 | htable_ops_in_progress = |
| 164 | kcalloc(hash_table_size, sizeof(struct list_head), GFP_KERNEL); |
| 165 | if (!htable_ops_in_progress) { |
| 166 | gossip_err("Failed to initialize op hashtable"); |
| 167 | ret = -ENOMEM; |
| 168 | goto cleanup_device; |
| 169 | } |
| 170 | |
| 171 | /* initialize a doubly linked at each hash table index */ |
| 172 | for (i = 0; i < hash_table_size; i++) |
| 173 | INIT_LIST_HEAD(&htable_ops_in_progress[i]); |
| 174 | |
| 175 | ret = fsid_key_table_initialize(); |
| 176 | if (ret < 0) |
| 177 | goto cleanup_progress_table; |
| 178 | |
| 179 | /* |
| 180 | * Build the contents of /sys/kernel/debug/orangefs/debug-help |
| 181 | * from the keywords in the kernel keyword/mask array. |
| 182 | * |
| 183 | * The keywords in the client keyword/mask array are |
| 184 | * unknown at boot time. |
| 185 | * |
| 186 | * orangefs_prepare_debugfs_help_string will be used again |
| 187 | * later to rebuild the debug-help file after the client starts |
| 188 | * and passes along the needed info. The argument signifies |
| 189 | * which time orangefs_prepare_debugfs_help_string is being |
| 190 | * called. |
| 191 | * |
| 192 | */ |
| 193 | ret = orangefs_prepare_debugfs_help_string(1); |
| 194 | if (ret) |
| 195 | goto out; |
| 196 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 197 | orangefs_debugfs_init(); |
| 198 | orangefs_kernel_debug_init(); |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 199 | orangefs_sysfs_init(); |
| 200 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 201 | ret = register_filesystem(&orangefs_fs_type); |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 202 | if (ret == 0) { |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 203 | pr_info("orangefs: module version %s loaded\n", ORANGEFS_VERSION); |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 204 | return 0; |
| 205 | } |
| 206 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 207 | orangefs_debugfs_cleanup(); |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 208 | orangefs_sysfs_exit(); |
| 209 | fsid_key_table_finalize(); |
| 210 | |
| 211 | cleanup_progress_table: |
| 212 | kfree(htable_ops_in_progress); |
| 213 | |
| 214 | cleanup_device: |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 215 | orangefs_dev_cleanup(); |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 216 | |
| 217 | cleanup_kiocb: |
| 218 | kiocb_cache_finalize(); |
| 219 | |
| 220 | cleanup_inode: |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 221 | orangefs_inode_cache_finalize(); |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 222 | |
| 223 | cleanup_req: |
| 224 | dev_req_cache_finalize(); |
| 225 | |
| 226 | cleanup_op: |
| 227 | op_cache_finalize(); |
| 228 | |
| 229 | err: |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 230 | bdi_destroy(&orangefs_backing_dev_info); |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 231 | |
| 232 | out: |
| 233 | return ret; |
| 234 | } |
| 235 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 236 | static void __exit orangefs_exit(void) |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 237 | { |
| 238 | int i = 0; |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 239 | gossip_debug(GOSSIP_INIT_DEBUG, "orangefs: orangefs_exit called\n"); |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 240 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 241 | unregister_filesystem(&orangefs_fs_type); |
| 242 | orangefs_debugfs_cleanup(); |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 243 | orangefs_sysfs_exit(); |
| 244 | fsid_key_table_finalize(); |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 245 | orangefs_dev_cleanup(); |
Al Viro | 96acf9d6 | 2016-01-22 13:34:32 -0500 | [diff] [blame^] | 246 | BUG_ON(!list_empty(&orangefs_request_list)); |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 247 | for (i = 0; i < hash_table_size; i++) |
Al Viro | 96acf9d6 | 2016-01-22 13:34:32 -0500 | [diff] [blame^] | 248 | BUG_ON(!list_empty(&htable_ops_in_progress[i])); |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 249 | |
| 250 | kiocb_cache_finalize(); |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 251 | orangefs_inode_cache_finalize(); |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 252 | dev_req_cache_finalize(); |
| 253 | op_cache_finalize(); |
| 254 | |
| 255 | kfree(htable_ops_in_progress); |
| 256 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 257 | bdi_destroy(&orangefs_backing_dev_info); |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 258 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 259 | pr_info("orangefs: module version %s unloaded\n", ORANGEFS_VERSION); |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 260 | } |
| 261 | |
| 262 | /* |
| 263 | * What we do in this function is to walk the list of operations |
| 264 | * that are in progress in the hash table and mark them as purged as well. |
| 265 | */ |
| 266 | void purge_inprogress_ops(void) |
| 267 | { |
| 268 | int i; |
| 269 | |
| 270 | for (i = 0; i < hash_table_size; i++) { |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 271 | struct orangefs_kernel_op_s *op; |
| 272 | struct orangefs_kernel_op_s *next; |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 273 | |
| 274 | list_for_each_entry_safe(op, |
| 275 | next, |
| 276 | &htable_ops_in_progress[i], |
| 277 | list) { |
| 278 | spin_lock(&op->lock); |
| 279 | gossip_debug(GOSSIP_INIT_DEBUG, |
| 280 | "pvfs2-client-core: purging in-progress op tag " |
| 281 | "%llu %s\n", |
| 282 | llu(op->tag), |
| 283 | get_opname_string(op)); |
| 284 | set_op_state_purged(op); |
| 285 | spin_unlock(&op->lock); |
Mike Marshall | 274dcf5 | 2015-07-17 10:38:13 -0400 | [diff] [blame] | 286 | } |
| 287 | } |
| 288 | } |
| 289 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 290 | module_init(orangefs_init); |
| 291 | module_exit(orangefs_exit); |