blob: db170beba7974c3d5d4491df452f0d75ca15ea13 [file] [log] [blame]
Mike Marshall5db11c22015-07-17 10:38:12 -04001/*
2 * (C) 2001 Clemson University and The University of Chicago
3 *
4 * Changes by Acxiom Corporation to add protocol version to kernel
5 * communication, 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-dev-proto.h"
13#include "orangefs-bufmap.h"
Mike Marshall5db11c22015-07-17 10:38:12 -040014
15#include <linux/debugfs.h>
16#include <linux/slab.h>
17
18/* this file implements the /dev/pvfs2-req device node */
19
20static int open_access_count;
21
22#define DUMP_DEVICE_ERROR() \
23do { \
24 gossip_err("*****************************************************\n");\
Yi Liu8bb8aef2015-11-24 15:12:14 -050025 gossip_err("ORANGEFS Device Error: You cannot open the device file "); \
Mike Marshall5db11c22015-07-17 10:38:12 -040026 gossip_err("\n/dev/%s more than once. Please make sure that\nthere " \
Yi Liu8bb8aef2015-11-24 15:12:14 -050027 "are no ", ORANGEFS_REQDEVICE_NAME); \
Mike Marshall5db11c22015-07-17 10:38:12 -040028 gossip_err("instances of a program using this device\ncurrently " \
29 "running. (You must verify this!)\n"); \
30 gossip_err("For example, you can use the lsof program as follows:\n");\
31 gossip_err("'lsof | grep %s' (run this as root)\n", \
Yi Liu8bb8aef2015-11-24 15:12:14 -050032 ORANGEFS_REQDEVICE_NAME); \
Mike Marshall5db11c22015-07-17 10:38:12 -040033 gossip_err(" open_access_count = %d\n", open_access_count); \
34 gossip_err("*****************************************************\n");\
35} while (0)
36
37static int hash_func(__u64 tag, int table_size)
38{
Mike Marshall2c590d52015-07-24 10:37:15 -040039 return do_div(tag, (unsigned int)table_size);
Mike Marshall5db11c22015-07-17 10:38:12 -040040}
41
Yi Liu8bb8aef2015-11-24 15:12:14 -050042static void orangefs_devreq_add_op(struct orangefs_kernel_op_s *op)
Mike Marshall5db11c22015-07-17 10:38:12 -040043{
44 int index = hash_func(op->tag, hash_table_size);
45
Mike Marshall5db11c22015-07-17 10:38:12 -040046 list_add_tail(&op->list, &htable_ops_in_progress[index]);
Mike Marshall5db11c22015-07-17 10:38:12 -040047}
48
Mike Marshallca9f5182016-02-26 10:21:12 -050049/*
50 * find the op with this tag and remove it from the in progress
51 * hash table.
52 */
Yi Liu8bb8aef2015-11-24 15:12:14 -050053static struct orangefs_kernel_op_s *orangefs_devreq_remove_op(__u64 tag)
Mike Marshall5db11c22015-07-17 10:38:12 -040054{
Yi Liu8bb8aef2015-11-24 15:12:14 -050055 struct orangefs_kernel_op_s *op, *next;
Mike Marshall5db11c22015-07-17 10:38:12 -040056 int index;
57
58 index = hash_func(tag, hash_table_size);
59
60 spin_lock(&htable_ops_in_progress_lock);
61 list_for_each_entry_safe(op,
62 next,
63 &htable_ops_in_progress[index],
64 list) {
Al Viro05a50a52016-02-18 18:59:44 -050065 if (op->tag == tag && !op_state_purged(op) &&
66 !op_state_given_up(op)) {
Al Viroed42fe02016-01-22 19:47:47 -050067 list_del_init(&op->list);
Mike Marshall5db11c22015-07-17 10:38:12 -040068 spin_unlock(&htable_ops_in_progress_lock);
69 return op;
70 }
71 }
72
73 spin_unlock(&htable_ops_in_progress_lock);
74 return NULL;
75}
76
Martin Brandenburgacfcbaf2016-03-05 13:17:39 -050077/* Returns whether any FS are still pending remounted */
78static int mark_all_pending_mounts(void)
79{
80 int unmounted = 1;
81 struct orangefs_sb_info_s *orangefs_sb = NULL;
82
83 spin_lock(&orangefs_superblocks_lock);
84 list_for_each_entry(orangefs_sb, &orangefs_superblocks, list) {
85 /* All of these file system require a remount */
86 orangefs_sb->mount_pending = 1;
87 unmounted = 0;
88 }
89 spin_unlock(&orangefs_superblocks_lock);
90 return unmounted;
91}
92
93/*
94 * Determine if a given file system needs to be remounted or not
95 * Returns -1 on error
96 * 0 if already mounted
97 * 1 if needs remount
98 */
99static int fs_mount_pending(__s32 fsid)
100{
101 int mount_pending = -1;
102 struct orangefs_sb_info_s *orangefs_sb = NULL;
103
104 spin_lock(&orangefs_superblocks_lock);
105 list_for_each_entry(orangefs_sb, &orangefs_superblocks, list) {
106 if (orangefs_sb->fs_id == fsid) {
107 mount_pending = orangefs_sb->mount_pending;
108 break;
109 }
110 }
111 spin_unlock(&orangefs_superblocks_lock);
112 return mount_pending;
113}
114
Yi Liu8bb8aef2015-11-24 15:12:14 -0500115static int orangefs_devreq_open(struct inode *inode, struct file *file)
Mike Marshall5db11c22015-07-17 10:38:12 -0400116{
117 int ret = -EINVAL;
118
119 if (!(file->f_flags & O_NONBLOCK)) {
Mike Marshall97f10022015-12-11 16:45:03 -0500120 gossip_err("%s: device cannot be opened in blocking mode\n",
121 __func__);
Mike Marshall5db11c22015-07-17 10:38:12 -0400122 goto out;
123 }
124 ret = -EACCES;
Mike Marshall97f10022015-12-11 16:45:03 -0500125 gossip_debug(GOSSIP_DEV_DEBUG, "client-core: opening device\n");
Mike Marshall5db11c22015-07-17 10:38:12 -0400126 mutex_lock(&devreq_mutex);
127
128 if (open_access_count == 0) {
Al Virofee25ce2016-01-22 19:46:08 -0500129 open_access_count = 1;
Al Virofb6d2522016-01-19 12:00:26 -0500130 ret = 0;
Mike Marshall5db11c22015-07-17 10:38:12 -0400131 } else {
132 DUMP_DEVICE_ERROR();
133 }
134 mutex_unlock(&devreq_mutex);
135
136out:
137
138 gossip_debug(GOSSIP_DEV_DEBUG,
139 "pvfs2-client-core: open device complete (ret = %d)\n",
140 ret);
141 return ret;
142}
143
Mike Marshall97f10022015-12-11 16:45:03 -0500144/* Function for read() callers into the device */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500145static ssize_t orangefs_devreq_read(struct file *file,
Mike Marshall5db11c22015-07-17 10:38:12 -0400146 char __user *buf,
147 size_t count, loff_t *offset)
148{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500149 struct orangefs_kernel_op_s *op, *temp;
150 __s32 proto_ver = ORANGEFS_KERNEL_PROTO_VERSION;
151 static __s32 magic = ORANGEFS_DEVREQ_MAGIC;
152 struct orangefs_kernel_op_s *cur_op = NULL;
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500153 unsigned long ret;
Mike Marshall5db11c22015-07-17 10:38:12 -0400154
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500155 /* We do not support blocking IO. */
Mike Marshall5db11c22015-07-17 10:38:12 -0400156 if (!(file->f_flags & O_NONBLOCK)) {
Mike Marshall97f10022015-12-11 16:45:03 -0500157 gossip_err("%s: blocking read from client-core.\n",
158 __func__);
Mike Marshall5db11c22015-07-17 10:38:12 -0400159 return -EINVAL;
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500160 }
161
162 /*
Martin Brandenburga762ae62015-12-15 14:22:06 -0500163 * The client will do an ioctl to find MAX_DEV_REQ_UPSIZE, then
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500164 * always read with that size buffer.
165 */
Martin Brandenburga762ae62015-12-15 14:22:06 -0500166 if (count != MAX_DEV_REQ_UPSIZE) {
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500167 gossip_err("orangefs: client-core tried to read wrong size\n");
168 return -EINVAL;
169 }
170
Al Viroed42fe02016-01-22 19:47:47 -0500171restart:
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500172 /* Get next op (if any) from top of list. */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500173 spin_lock(&orangefs_request_list_lock);
174 list_for_each_entry_safe(op, temp, &orangefs_request_list, list) {
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500175 __s32 fsid;
176 /* This lock is held past the end of the loop when we break. */
177 spin_lock(&op->lock);
Al Viro05a50a52016-02-18 18:59:44 -0500178 if (unlikely(op_state_purged(op) || op_state_given_up(op))) {
Al Viroed42fe02016-01-22 19:47:47 -0500179 spin_unlock(&op->lock);
180 continue;
181 }
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500182
183 fsid = fsid_of_op(op);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500184 if (fsid != ORANGEFS_FS_ID_NULL) {
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500185 int ret;
186 /* Skip ops whose filesystem needs to be mounted. */
187 ret = fs_mount_pending(fsid);
188 if (ret == 1) {
Mike Marshall5db11c22015-07-17 10:38:12 -0400189 gossip_debug(GOSSIP_DEV_DEBUG,
Mike Marshall5090c962016-02-04 13:29:27 -0500190 "%s: mount pending, skipping op tag "
191 "%llu %s\n",
192 __func__,
193 llu(op->tag),
194 get_opname_string(op));
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500195 spin_unlock(&op->lock);
Mike Marshall5db11c22015-07-17 10:38:12 -0400196 continue;
Mike Marshall97f10022015-12-11 16:45:03 -0500197 /*
198 * Skip ops whose filesystem we don't know about unless
199 * it is being mounted.
200 */
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500201 /* XXX: is there a better way to detect this? */
202 } else if (ret == -1 &&
Mike Marshall97f10022015-12-11 16:45:03 -0500203 !(op->upcall.type ==
204 ORANGEFS_VFS_OP_FS_MOUNT ||
205 op->upcall.type ==
206 ORANGEFS_VFS_OP_GETATTR)) {
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500207 gossip_debug(GOSSIP_DEV_DEBUG,
208 "orangefs: skipping op tag %llu %s\n",
209 llu(op->tag), get_opname_string(op));
210 gossip_err(
211 "orangefs: ERROR: fs_mount_pending %d\n",
212 fsid);
213 spin_unlock(&op->lock);
214 continue;
Mike Marshall5db11c22015-07-17 10:38:12 -0400215 }
216 }
Mike Marshall5db11c22015-07-17 10:38:12 -0400217 /*
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500218 * Either this op does not pertain to a filesystem, is mounting
219 * a filesystem, or pertains to a mounted filesystem. Let it
220 * through.
Mike Marshall5db11c22015-07-17 10:38:12 -0400221 */
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500222 cur_op = op;
223 break;
Mike Marshall5db11c22015-07-17 10:38:12 -0400224 }
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500225
226 /*
227 * At this point we either have a valid op and can continue or have not
228 * found an op and must ask the client to try again later.
229 */
230 if (!cur_op) {
Yi Liu8bb8aef2015-11-24 15:12:14 -0500231 spin_unlock(&orangefs_request_list_lock);
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500232 return -EAGAIN;
233 }
234
Mike Marshallca9f5182016-02-26 10:21:12 -0500235 gossip_debug(GOSSIP_DEV_DEBUG, "%s: reading op tag %llu %s\n",
236 __func__,
237 llu(cur_op->tag),
238 get_opname_string(cur_op));
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500239
240 /*
241 * Such an op should never be on the list in the first place. If so, we
242 * will abort.
243 */
244 if (op_state_in_progress(cur_op) || op_state_serviced(cur_op)) {
245 gossip_err("orangefs: ERROR: Current op already queued.\n");
Al Viro05a50a52016-02-18 18:59:44 -0500246 list_del_init(&cur_op->list);
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500247 spin_unlock(&cur_op->lock);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500248 spin_unlock(&orangefs_request_list_lock);
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500249 return -EAGAIN;
250 }
Mike Marshallca9f5182016-02-26 10:21:12 -0500251
Al Viroed42fe02016-01-22 19:47:47 -0500252 list_del_init(&cur_op->list);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500253 spin_unlock(&orangefs_request_list_lock);
Al Viroed42fe02016-01-22 19:47:47 -0500254
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500255 spin_unlock(&cur_op->lock);
256
257 /* Push the upcall out. */
258 ret = copy_to_user(buf, &proto_ver, sizeof(__s32));
259 if (ret != 0)
260 goto error;
261 ret = copy_to_user(buf+sizeof(__s32), &magic, sizeof(__s32));
262 if (ret != 0)
263 goto error;
264 ret = copy_to_user(buf+2 * sizeof(__s32), &cur_op->tag, sizeof(__u64));
265 if (ret != 0)
266 goto error;
267 ret = copy_to_user(buf+2*sizeof(__s32)+sizeof(__u64), &cur_op->upcall,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500268 sizeof(struct orangefs_upcall_s));
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500269 if (ret != 0)
270 goto error;
271
Al Viroed42fe02016-01-22 19:47:47 -0500272 spin_lock(&htable_ops_in_progress_lock);
273 spin_lock(&cur_op->lock);
274 if (unlikely(op_state_given_up(cur_op))) {
275 spin_unlock(&cur_op->lock);
276 spin_unlock(&htable_ops_in_progress_lock);
Al Viro05a50a52016-02-18 18:59:44 -0500277 complete(&cur_op->waitq);
Al Viroed42fe02016-01-22 19:47:47 -0500278 goto restart;
279 }
280
281 /*
282 * Set the operation to be in progress and move it between lists since
283 * it has been sent to the client.
284 */
285 set_op_state_inprogress(cur_op);
Mike Marshall9d9e7ba2016-03-03 13:46:48 -0500286 gossip_debug(GOSSIP_DEV_DEBUG,
287 "%s: 1 op:%s: op_state:%d: process:%s:\n",
288 __func__,
289 get_opname_string(cur_op),
290 cur_op->op_state,
291 current->comm);
Al Viroed42fe02016-01-22 19:47:47 -0500292 orangefs_devreq_add_op(cur_op);
293 spin_unlock(&cur_op->lock);
294 spin_unlock(&htable_ops_in_progress_lock);
Al Viroed42fe02016-01-22 19:47:47 -0500295
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500296 /* The client only asks to read one size buffer. */
Martin Brandenburga762ae62015-12-15 14:22:06 -0500297 return MAX_DEV_REQ_UPSIZE;
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500298error:
299 /*
300 * We were unable to copy the op data to the client. Put the op back in
301 * list. If client has crashed, the op will be purged later when the
302 * device is released.
303 */
304 gossip_err("orangefs: Failed to copy data to user space\n");
Yi Liu8bb8aef2015-11-24 15:12:14 -0500305 spin_lock(&orangefs_request_list_lock);
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500306 spin_lock(&cur_op->lock);
Al Viroed42fe02016-01-22 19:47:47 -0500307 if (likely(!op_state_given_up(cur_op))) {
308 set_op_state_waiting(cur_op);
Mike Marshall9d9e7ba2016-03-03 13:46:48 -0500309 gossip_debug(GOSSIP_DEV_DEBUG,
310 "%s: 2 op:%s: op_state:%d: process:%s:\n",
311 __func__,
312 get_opname_string(cur_op),
313 cur_op->op_state,
314 current->comm);
Al Viroed42fe02016-01-22 19:47:47 -0500315 list_add(&cur_op->list, &orangefs_request_list);
Al Viro05a50a52016-02-18 18:59:44 -0500316 spin_unlock(&cur_op->lock);
317 } else {
318 spin_unlock(&cur_op->lock);
319 complete(&cur_op->waitq);
Al Viroed42fe02016-01-22 19:47:47 -0500320 }
Yi Liu8bb8aef2015-11-24 15:12:14 -0500321 spin_unlock(&orangefs_request_list_lock);
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500322 return -EFAULT;
Mike Marshall5db11c22015-07-17 10:38:12 -0400323}
324
Mike Marshall97f10022015-12-11 16:45:03 -0500325/*
Mike Marshallb3ae4752016-01-13 11:18:12 -0500326 * Function for writev() callers into the device.
327 *
328 * Userspace should have written:
329 * - __u32 version
330 * - __u32 magic
331 * - __u64 tag
332 * - struct orangefs_downcall_s
333 * - trailer buffer (in the case of READDIR operations)
Mike Marshall97f10022015-12-11 16:45:03 -0500334 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500335static ssize_t orangefs_devreq_write_iter(struct kiocb *iocb,
Mike Marshall5db11c22015-07-17 10:38:12 -0400336 struct iov_iter *iter)
337{
Mike Marshallb3ae4752016-01-13 11:18:12 -0500338 ssize_t ret;
339 struct orangefs_kernel_op_s *op = NULL;
340 struct {
341 __u32 version;
342 __u32 magic;
343 __u64 tag;
344 } head;
345 int total = ret = iov_iter_count(iter);
346 int n;
347 int downcall_size = sizeof(struct orangefs_downcall_s);
348 int head_size = sizeof(head);
349
350 gossip_debug(GOSSIP_DEV_DEBUG, "%s: total:%d: ret:%zd:\n",
351 __func__,
352 total,
353 ret);
354
355 if (total < MAX_DEV_REQ_DOWNSIZE) {
Mike Marshallcf0c2772016-01-19 12:04:40 -0500356 gossip_err("%s: total:%d: must be at least:%u:\n",
Mike Marshallb3ae4752016-01-13 11:18:12 -0500357 __func__,
358 total,
Mike Marshallcf0c2772016-01-19 12:04:40 -0500359 (unsigned int) MAX_DEV_REQ_DOWNSIZE);
Al Viroed42fe02016-01-22 19:47:47 -0500360 return -EFAULT;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500361 }
362
363 n = copy_from_iter(&head, head_size, iter);
364 if (n < head_size) {
365 gossip_err("%s: failed to copy head.\n", __func__);
Al Viroed42fe02016-01-22 19:47:47 -0500366 return -EFAULT;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500367 }
368
369 if (head.version < ORANGEFS_MINIMUM_USERSPACE_VERSION) {
370 gossip_err("%s: userspace claims version"
371 "%d, minimum version required: %d.\n",
372 __func__,
373 head.version,
374 ORANGEFS_MINIMUM_USERSPACE_VERSION);
Al Viroed42fe02016-01-22 19:47:47 -0500375 return -EPROTO;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500376 }
377
378 if (head.magic != ORANGEFS_DEVREQ_MAGIC) {
379 gossip_err("Error: Device magic number does not match.\n");
Al Viroed42fe02016-01-22 19:47:47 -0500380 return -EPROTO;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500381 }
382
Mike Marshallca9f5182016-02-26 10:21:12 -0500383 /* remove the op from the in progress hash table */
Mike Marshallb3ae4752016-01-13 11:18:12 -0500384 op = orangefs_devreq_remove_op(head.tag);
385 if (!op) {
386 gossip_err("WARNING: No one's waiting for tag %llu\n",
387 llu(head.tag));
Al Viroed42fe02016-01-22 19:47:47 -0500388 return ret;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500389 }
390
Mike Marshallb3ae4752016-01-13 11:18:12 -0500391 n = copy_from_iter(&op->downcall, downcall_size, iter);
392 if (n != downcall_size) {
393 gossip_err("%s: failed to copy downcall.\n", __func__);
Al Viro5964c1b2016-02-18 18:53:41 -0500394 goto Efault;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500395 }
396
397 if (op->downcall.status)
398 goto wakeup;
399
400 /*
401 * We've successfully peeled off the head and the downcall.
402 * Something has gone awry if total doesn't equal the
403 * sum of head_size, downcall_size and trailer_size.
404 */
405 if ((head_size + downcall_size + op->downcall.trailer_size) != total) {
406 gossip_err("%s: funky write, head_size:%d"
407 ": downcall_size:%d: trailer_size:%lld"
408 ": total size:%d:\n",
409 __func__,
410 head_size,
411 downcall_size,
412 op->downcall.trailer_size,
413 total);
Al Viro5964c1b2016-02-18 18:53:41 -0500414 goto Efault;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500415 }
416
417 /* Only READDIR operations should have trailers. */
418 if ((op->downcall.type != ORANGEFS_VFS_OP_READDIR) &&
419 (op->downcall.trailer_size != 0)) {
420 gossip_err("%s: %x operation with trailer.",
421 __func__,
422 op->downcall.type);
Al Viro5964c1b2016-02-18 18:53:41 -0500423 goto Efault;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500424 }
425
426 /* READDIR operations should always have trailers. */
427 if ((op->downcall.type == ORANGEFS_VFS_OP_READDIR) &&
428 (op->downcall.trailer_size == 0)) {
429 gossip_err("%s: %x operation with no trailer.",
430 __func__,
431 op->downcall.type);
Al Viro5964c1b2016-02-18 18:53:41 -0500432 goto Efault;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500433 }
434
435 if (op->downcall.type != ORANGEFS_VFS_OP_READDIR)
436 goto wakeup;
437
438 op->downcall.trailer_buf =
439 vmalloc(op->downcall.trailer_size);
440 if (op->downcall.trailer_buf == NULL) {
441 gossip_err("%s: failed trailer vmalloc.\n",
442 __func__);
Al Viro5964c1b2016-02-18 18:53:41 -0500443 goto Enomem;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500444 }
445 memset(op->downcall.trailer_buf, 0, op->downcall.trailer_size);
446 n = copy_from_iter(op->downcall.trailer_buf,
447 op->downcall.trailer_size,
448 iter);
449 if (n != op->downcall.trailer_size) {
450 gossip_err("%s: failed to copy trailer.\n", __func__);
451 vfree(op->downcall.trailer_buf);
Al Viro5964c1b2016-02-18 18:53:41 -0500452 goto Efault;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500453 }
454
455wakeup:
Al Viro2a9e5c22016-01-23 13:45:46 -0500456 /*
Mike Marshall9f08cfe92016-02-26 14:39:08 -0500457 * Return to vfs waitqueue, and back to service_operation
458 * through wait_for_matching_downcall.
Al Viro2a9e5c22016-01-23 13:45:46 -0500459 */
460 spin_lock(&op->lock);
Al Viro5964c1b2016-02-18 18:53:41 -0500461 if (unlikely(op_is_cancel(op))) {
Al Viro2a9e5c22016-01-23 13:45:46 -0500462 spin_unlock(&op->lock);
Al Viro78699e22016-02-11 23:07:19 -0500463 put_cancel(op);
Al Viro5964c1b2016-02-18 18:53:41 -0500464 } else if (unlikely(op_state_given_up(op))) {
465 spin_unlock(&op->lock);
Al Viro05a50a52016-02-18 18:59:44 -0500466 complete(&op->waitq);
Al Viro5964c1b2016-02-18 18:53:41 -0500467 } else {
468 set_op_state_serviced(op);
Mike Marshall9d9e7ba2016-03-03 13:46:48 -0500469 gossip_debug(GOSSIP_DEV_DEBUG,
470 "%s: op:%s: op_state:%d: process:%s:\n",
471 __func__,
472 get_opname_string(op),
473 op->op_state,
474 current->comm);
Al Viro5964c1b2016-02-18 18:53:41 -0500475 spin_unlock(&op->lock);
476 }
Mike Marshallb3ae4752016-01-13 11:18:12 -0500477 return ret;
Al Viroed42fe02016-01-22 19:47:47 -0500478
Al Viro5964c1b2016-02-18 18:53:41 -0500479Efault:
480 op->downcall.status = -(ORANGEFS_ERROR_BIT | 9);
481 ret = -EFAULT;
482 goto wakeup;
483
484Enomem:
485 op->downcall.status = -(ORANGEFS_ERROR_BIT | 8);
486 ret = -ENOMEM;
487 goto wakeup;
Mike Marshall5db11c22015-07-17 10:38:12 -0400488}
489
Mike Marshall5db11c22015-07-17 10:38:12 -0400490/*
491 * NOTE: gets called when the last reference to this device is dropped.
492 * Using the open_access_count variable, we enforce a reference count
493 * on this file so that it can be opened by only one process at a time.
494 * the devreq_mutex is used to make sure all i/o has completed
Yi Liu8bb8aef2015-11-24 15:12:14 -0500495 * before we call orangefs_bufmap_finalize, and similar such tricky
Mike Marshall5db11c22015-07-17 10:38:12 -0400496 * situations
497 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500498static int orangefs_devreq_release(struct inode *inode, struct file *file)
Mike Marshall5db11c22015-07-17 10:38:12 -0400499{
500 int unmounted = 0;
501
502 gossip_debug(GOSSIP_DEV_DEBUG,
503 "%s:pvfs2-client-core: exiting, closing device\n",
504 __func__);
505
506 mutex_lock(&devreq_mutex);
Al Viroea2c9c92016-02-13 21:01:21 -0500507 orangefs_bufmap_finalize();
Mike Marshall5db11c22015-07-17 10:38:12 -0400508
Al Virofee25ce2016-01-22 19:46:08 -0500509 open_access_count = -1;
Mike Marshall5db11c22015-07-17 10:38:12 -0400510
511 unmounted = mark_all_pending_mounts();
Yi Liu8bb8aef2015-11-24 15:12:14 -0500512 gossip_debug(GOSSIP_DEV_DEBUG, "ORANGEFS Device Close: Filesystem(s) %s\n",
Mike Marshall5db11c22015-07-17 10:38:12 -0400513 (unmounted ? "UNMOUNTED" : "MOUNTED"));
Mike Marshall5db11c22015-07-17 10:38:12 -0400514
Mike Marshall5db11c22015-07-17 10:38:12 -0400515 purge_waiting_ops();
Mike Marshall5db11c22015-07-17 10:38:12 -0400516 purge_inprogress_ops();
Al Viroea2c9c92016-02-13 21:01:21 -0500517
518 orangefs_bufmap_run_down();
519
Mike Marshall5db11c22015-07-17 10:38:12 -0400520 gossip_debug(GOSSIP_DEV_DEBUG,
521 "pvfs2-client-core: device close complete\n");
Al Virofee25ce2016-01-22 19:46:08 -0500522 open_access_count = 0;
523 mutex_unlock(&devreq_mutex);
Mike Marshall5db11c22015-07-17 10:38:12 -0400524 return 0;
525}
526
527int is_daemon_in_service(void)
528{
529 int in_service;
530
531 /*
532 * What this function does is checks if client-core is alive
533 * based on the access count we maintain on the device.
534 */
535 mutex_lock(&devreq_mutex);
536 in_service = open_access_count == 1 ? 0 : -EIO;
537 mutex_unlock(&devreq_mutex);
538 return in_service;
539}
540
Al Viro78699e22016-02-11 23:07:19 -0500541bool __is_daemon_in_service(void)
542{
543 return open_access_count == 1;
544}
545
Mike Marshall5db11c22015-07-17 10:38:12 -0400546static inline long check_ioctl_command(unsigned int command)
547{
548 /* Check for valid ioctl codes */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500549 if (_IOC_TYPE(command) != ORANGEFS_DEV_MAGIC) {
Mike Marshall5db11c22015-07-17 10:38:12 -0400550 gossip_err("device ioctl magic numbers don't match! Did you rebuild pvfs2-client-core/libpvfs2? [cmd %x, magic %x != %x]\n",
551 command,
552 _IOC_TYPE(command),
Yi Liu8bb8aef2015-11-24 15:12:14 -0500553 ORANGEFS_DEV_MAGIC);
Mike Marshall5db11c22015-07-17 10:38:12 -0400554 return -EINVAL;
555 }
556 /* and valid ioctl commands */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500557 if (_IOC_NR(command) >= ORANGEFS_DEV_MAXNR || _IOC_NR(command) <= 0) {
Mike Marshall5db11c22015-07-17 10:38:12 -0400558 gossip_err("Invalid ioctl command number [%d >= %d]\n",
Yi Liu8bb8aef2015-11-24 15:12:14 -0500559 _IOC_NR(command), ORANGEFS_DEV_MAXNR);
Mike Marshall5db11c22015-07-17 10:38:12 -0400560 return -ENOIOCTLCMD;
561 }
562 return 0;
563}
564
565static long dispatch_ioctl_command(unsigned int command, unsigned long arg)
566{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500567 static __s32 magic = ORANGEFS_DEVREQ_MAGIC;
Martin Brandenburga762ae62015-12-15 14:22:06 -0500568 static __s32 max_up_size = MAX_DEV_REQ_UPSIZE;
569 static __s32 max_down_size = MAX_DEV_REQ_DOWNSIZE;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500570 struct ORANGEFS_dev_map_desc user_desc;
Mike Marshall5db11c22015-07-17 10:38:12 -0400571 int ret = 0;
572 struct dev_mask_info_s mask_info = { 0 };
573 struct dev_mask2_info_s mask2_info = { 0, 0 };
574 int upstream_kmod = 1;
Al Viro45996492016-03-25 19:56:34 -0400575 struct orangefs_sb_info_s *orangefs_sb;
Mike Marshall5db11c22015-07-17 10:38:12 -0400576
577 /* mtmoore: add locking here */
578
579 switch (command) {
Yi Liu8bb8aef2015-11-24 15:12:14 -0500580 case ORANGEFS_DEV_GET_MAGIC:
Mike Marshall5db11c22015-07-17 10:38:12 -0400581 return ((put_user(magic, (__s32 __user *) arg) == -EFAULT) ?
582 -EIO :
583 0);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500584 case ORANGEFS_DEV_GET_MAX_UPSIZE:
Mike Marshall5db11c22015-07-17 10:38:12 -0400585 return ((put_user(max_up_size,
586 (__s32 __user *) arg) == -EFAULT) ?
587 -EIO :
588 0);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500589 case ORANGEFS_DEV_GET_MAX_DOWNSIZE:
Mike Marshall5db11c22015-07-17 10:38:12 -0400590 return ((put_user(max_down_size,
591 (__s32 __user *) arg) == -EFAULT) ?
592 -EIO :
593 0);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500594 case ORANGEFS_DEV_MAP:
Mike Marshall5db11c22015-07-17 10:38:12 -0400595 ret = copy_from_user(&user_desc,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500596 (struct ORANGEFS_dev_map_desc __user *)
Mike Marshall5db11c22015-07-17 10:38:12 -0400597 arg,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500598 sizeof(struct ORANGEFS_dev_map_desc));
Al Viroea2c9c92016-02-13 21:01:21 -0500599 /* WTF -EIO and not -EFAULT? */
600 return ret ? -EIO : orangefs_bufmap_initialize(&user_desc);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500601 case ORANGEFS_DEV_REMOUNT_ALL:
Mike Marshall5db11c22015-07-17 10:38:12 -0400602 gossip_debug(GOSSIP_DEV_DEBUG,
Mike Marshall97f10022015-12-11 16:45:03 -0500603 "%s: got ORANGEFS_DEV_REMOUNT_ALL\n",
604 __func__);
Mike Marshall5db11c22015-07-17 10:38:12 -0400605
606 /*
Yi Liu8bb8aef2015-11-24 15:12:14 -0500607 * remount all mounted orangefs volumes to regain the lost
Mike Marshall5db11c22015-07-17 10:38:12 -0400608 * dynamic mount tables (if any) -- NOTE: this is done
609 * without keeping the superblock list locked due to the
Mike Marshalladcf34a2016-02-24 16:54:27 -0500610 * upcall/downcall waiting. also, the request mutex is
Mike Marshall5db11c22015-07-17 10:38:12 -0400611 * used to ensure that no operations will be serviced until
612 * all of the remounts are serviced (to avoid ops between
613 * mounts to fail)
614 */
615 ret = mutex_lock_interruptible(&request_mutex);
616 if (ret < 0)
617 return ret;
618 gossip_debug(GOSSIP_DEV_DEBUG,
Mike Marshall97f10022015-12-11 16:45:03 -0500619 "%s: priority remount in progress\n",
620 __func__);
Al Viro45996492016-03-25 19:56:34 -0400621 spin_lock(&orangefs_superblocks_lock);
622 list_for_each_entry(orangefs_sb, &orangefs_superblocks, list) {
623 /*
624 * We have to drop the spinlock, so entries can be
625 * removed. They can't be freed, though, so we just
626 * keep the forward pointers and zero the back ones -
627 * that way we can get to the rest of the list.
628 */
629 if (!orangefs_sb->list.prev)
630 continue;
631 gossip_debug(GOSSIP_DEV_DEBUG,
632 "%s: Remounting SB %p\n",
633 __func__,
634 orangefs_sb);
Mike Marshall5db11c22015-07-17 10:38:12 -0400635
Al Viro45996492016-03-25 19:56:34 -0400636 spin_unlock(&orangefs_superblocks_lock);
637 ret = orangefs_remount(orangefs_sb);
638 spin_lock(&orangefs_superblocks_lock);
639 if (ret) {
640 gossip_debug(GOSSIP_DEV_DEBUG,
641 "SB %p remount failed\n",
642 orangefs_sb);
643 break;
Mike Marshall5db11c22015-07-17 10:38:12 -0400644 }
645 }
Al Viro45996492016-03-25 19:56:34 -0400646 spin_unlock(&orangefs_superblocks_lock);
Mike Marshall5db11c22015-07-17 10:38:12 -0400647 gossip_debug(GOSSIP_DEV_DEBUG,
Mike Marshall97f10022015-12-11 16:45:03 -0500648 "%s: priority remount complete\n",
649 __func__);
Mike Marshall5db11c22015-07-17 10:38:12 -0400650 mutex_unlock(&request_mutex);
651 return ret;
652
Yi Liu8bb8aef2015-11-24 15:12:14 -0500653 case ORANGEFS_DEV_UPSTREAM:
Mike Marshall5db11c22015-07-17 10:38:12 -0400654 ret = copy_to_user((void __user *)arg,
655 &upstream_kmod,
656 sizeof(upstream_kmod));
657
658 if (ret != 0)
659 return -EIO;
660 else
661 return ret;
662
Yi Liu8bb8aef2015-11-24 15:12:14 -0500663 case ORANGEFS_DEV_CLIENT_MASK:
Mike Marshall5db11c22015-07-17 10:38:12 -0400664 ret = copy_from_user(&mask2_info,
665 (void __user *)arg,
666 sizeof(struct dev_mask2_info_s));
667
668 if (ret != 0)
669 return -EIO;
670
671 client_debug_mask.mask1 = mask2_info.mask1_value;
672 client_debug_mask.mask2 = mask2_info.mask2_value;
673
674 pr_info("%s: client debug mask has been been received "
675 ":%llx: :%llx:\n",
676 __func__,
677 (unsigned long long)client_debug_mask.mask1,
678 (unsigned long long)client_debug_mask.mask2);
679
680 return ret;
681
Yi Liu8bb8aef2015-11-24 15:12:14 -0500682 case ORANGEFS_DEV_CLIENT_STRING:
Mike Marshall5db11c22015-07-17 10:38:12 -0400683 ret = copy_from_user(&client_debug_array_string,
684 (void __user *)arg,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500685 ORANGEFS_MAX_DEBUG_STRING_LEN);
Mike Marshall53f57fe2016-03-14 15:28:34 -0400686 /*
687 * The real client-core makes an effort to ensure
688 * that actual strings that aren't too long to fit in
689 * this buffer is what we get here. We're going to use
690 * string functions on the stuff we got, so we'll make
691 * this extra effort to try and keep from
692 * flowing out of this buffer when we use the string
693 * functions, even if somehow the stuff we end up
694 * with here is garbage.
695 */
696 client_debug_array_string[ORANGEFS_MAX_DEBUG_STRING_LEN - 1] =
697 '\0';
698
Mike Marshall5db11c22015-07-17 10:38:12 -0400699 if (ret != 0) {
Mike Marshall97f10022015-12-11 16:45:03 -0500700 pr_info("%s: CLIENT_STRING: copy_from_user failed\n",
Mike Marshall5db11c22015-07-17 10:38:12 -0400701 __func__);
702 return -EIO;
703 }
704
Mike Marshall97f10022015-12-11 16:45:03 -0500705 pr_info("%s: client debug array string has been received.\n",
Mike Marshall5db11c22015-07-17 10:38:12 -0400706 __func__);
707
708 if (!help_string_initialized) {
709
710 /* Free the "we don't know yet" default string... */
711 kfree(debug_help_string);
712
713 /* build a proper debug help string */
714 if (orangefs_prepare_debugfs_help_string(0)) {
Mike Marshall97f10022015-12-11 16:45:03 -0500715 gossip_err("%s: no debug help string \n",
Mike Marshall5db11c22015-07-17 10:38:12 -0400716 __func__);
717 return -EIO;
718 }
719
720 /* Replace the boilerplate boot-time debug-help file. */
721 debugfs_remove(help_file_dentry);
722
723 help_file_dentry =
724 debugfs_create_file(
725 ORANGEFS_KMOD_DEBUG_HELP_FILE,
726 0444,
727 debug_dir,
728 debug_help_string,
729 &debug_help_fops);
730
731 if (!help_file_dentry) {
732 gossip_err("%s: debugfs_create_file failed for"
733 " :%s:!\n",
734 __func__,
735 ORANGEFS_KMOD_DEBUG_HELP_FILE);
736 return -EIO;
737 }
738 }
739
740 debug_mask_to_string(&client_debug_mask, 1);
741
742 debugfs_remove(client_debug_dentry);
743
Yi Liu8bb8aef2015-11-24 15:12:14 -0500744 orangefs_client_debug_init();
Mike Marshall5db11c22015-07-17 10:38:12 -0400745
746 help_string_initialized++;
747
748 return ret;
749
Yi Liu8bb8aef2015-11-24 15:12:14 -0500750 case ORANGEFS_DEV_DEBUG:
Mike Marshall5db11c22015-07-17 10:38:12 -0400751 ret = copy_from_user(&mask_info,
752 (void __user *)arg,
753 sizeof(mask_info));
754
755 if (ret != 0)
756 return -EIO;
757
758 if (mask_info.mask_type == KERNEL_MASK) {
759 if ((mask_info.mask_value == 0)
760 && (kernel_mask_set_mod_init)) {
761 /*
762 * the kernel debug mask was set when the
763 * kernel module was loaded; don't override
764 * it if the client-core was started without
Yi Liu8bb8aef2015-11-24 15:12:14 -0500765 * a value for ORANGEFS_KMODMASK.
Mike Marshall5db11c22015-07-17 10:38:12 -0400766 */
767 return 0;
768 }
769 debug_mask_to_string(&mask_info.mask_value,
770 mask_info.mask_type);
771 gossip_debug_mask = mask_info.mask_value;
Mike Marshall97f10022015-12-11 16:45:03 -0500772 pr_info("%s: kernel debug mask has been modified to "
Mike Marshall5db11c22015-07-17 10:38:12 -0400773 ":%s: :%llx:\n",
Mike Marshall97f10022015-12-11 16:45:03 -0500774 __func__,
Mike Marshall5db11c22015-07-17 10:38:12 -0400775 kernel_debug_string,
776 (unsigned long long)gossip_debug_mask);
777 } else if (mask_info.mask_type == CLIENT_MASK) {
778 debug_mask_to_string(&mask_info.mask_value,
779 mask_info.mask_type);
Mike Marshall97f10022015-12-11 16:45:03 -0500780 pr_info("%s: client debug mask has been modified to"
Mike Marshall5db11c22015-07-17 10:38:12 -0400781 ":%s: :%llx:\n",
Mike Marshall97f10022015-12-11 16:45:03 -0500782 __func__,
Mike Marshall5db11c22015-07-17 10:38:12 -0400783 client_debug_string,
784 llu(mask_info.mask_value));
785 } else {
786 gossip_lerr("Invalid mask type....\n");
787 return -EINVAL;
788 }
789
790 return ret;
791
792 default:
793 return -ENOIOCTLCMD;
794 }
795 return -ENOIOCTLCMD;
796}
797
Yi Liu8bb8aef2015-11-24 15:12:14 -0500798static long orangefs_devreq_ioctl(struct file *file,
Mike Marshall5db11c22015-07-17 10:38:12 -0400799 unsigned int command, unsigned long arg)
800{
801 long ret;
802
803 /* Check for properly constructed commands */
804 ret = check_ioctl_command(command);
805 if (ret < 0)
806 return (int)ret;
807
808 return (int)dispatch_ioctl_command(command, arg);
809}
810
811#ifdef CONFIG_COMPAT /* CONFIG_COMPAT is in .config */
812
Yi Liu8bb8aef2015-11-24 15:12:14 -0500813/* Compat structure for the ORANGEFS_DEV_MAP ioctl */
814struct ORANGEFS_dev_map_desc32 {
Mike Marshall5db11c22015-07-17 10:38:12 -0400815 compat_uptr_t ptr;
816 __s32 total_size;
817 __s32 size;
818 __s32 count;
819};
820
821static unsigned long translate_dev_map26(unsigned long args, long *error)
822{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500823 struct ORANGEFS_dev_map_desc32 __user *p32 = (void __user *)args;
Mike Marshall5db11c22015-07-17 10:38:12 -0400824 /*
825 * Depending on the architecture, allocate some space on the
826 * user-call-stack based on our expected layout.
827 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500828 struct ORANGEFS_dev_map_desc __user *p =
Mike Marshall5db11c22015-07-17 10:38:12 -0400829 compat_alloc_user_space(sizeof(*p));
Mike Marshall84d02152015-07-28 13:27:51 -0400830 compat_uptr_t addr;
Mike Marshall5db11c22015-07-17 10:38:12 -0400831
832 *error = 0;
833 /* get the ptr from the 32 bit user-space */
834 if (get_user(addr, &p32->ptr))
835 goto err;
836 /* try to put that into a 64-bit layout */
837 if (put_user(compat_ptr(addr), &p->ptr))
838 goto err;
839 /* copy the remaining fields */
840 if (copy_in_user(&p->total_size, &p32->total_size, sizeof(__s32)))
841 goto err;
842 if (copy_in_user(&p->size, &p32->size, sizeof(__s32)))
843 goto err;
844 if (copy_in_user(&p->count, &p32->count, sizeof(__s32)))
845 goto err;
846 return (unsigned long)p;
847err:
848 *error = -EFAULT;
849 return 0;
850}
851
852/*
853 * 32 bit user-space apps' ioctl handlers when kernel modules
854 * is compiled as a 64 bit one
855 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500856static long orangefs_devreq_compat_ioctl(struct file *filp, unsigned int cmd,
Mike Marshall5db11c22015-07-17 10:38:12 -0400857 unsigned long args)
858{
859 long ret;
860 unsigned long arg = args;
861
862 /* Check for properly constructed commands */
863 ret = check_ioctl_command(cmd);
864 if (ret < 0)
865 return ret;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500866 if (cmd == ORANGEFS_DEV_MAP) {
Mike Marshall5db11c22015-07-17 10:38:12 -0400867 /*
868 * convert the arguments to what we expect internally
869 * in kernel space
870 */
871 arg = translate_dev_map26(args, &ret);
872 if (ret < 0) {
873 gossip_err("Could not translate dev map\n");
874 return ret;
875 }
876 }
877 /* no other ioctl requires translation */
878 return dispatch_ioctl_command(cmd, arg);
879}
880
Mike Marshall2c590d52015-07-24 10:37:15 -0400881#endif /* CONFIG_COMPAT is in .config */
882
Mike Marshall5db11c22015-07-17 10:38:12 -0400883/* the assigned character device major number */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500884static int orangefs_dev_major;
Mike Marshall5db11c22015-07-17 10:38:12 -0400885
886/*
Yi Liu8bb8aef2015-11-24 15:12:14 -0500887 * Initialize orangefs device specific state:
Mike Marshall5db11c22015-07-17 10:38:12 -0400888 * Must be called at module load time only
889 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500890int orangefs_dev_init(void)
Mike Marshall5db11c22015-07-17 10:38:12 -0400891{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500892 /* register orangefs-req device */
893 orangefs_dev_major = register_chrdev(0,
894 ORANGEFS_REQDEVICE_NAME,
895 &orangefs_devreq_file_operations);
896 if (orangefs_dev_major < 0) {
Mike Marshall5db11c22015-07-17 10:38:12 -0400897 gossip_debug(GOSSIP_DEV_DEBUG,
898 "Failed to register /dev/%s (error %d)\n",
Yi Liu8bb8aef2015-11-24 15:12:14 -0500899 ORANGEFS_REQDEVICE_NAME, orangefs_dev_major);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500900 return orangefs_dev_major;
Mike Marshall5db11c22015-07-17 10:38:12 -0400901 }
902
903 gossip_debug(GOSSIP_DEV_DEBUG,
904 "*** /dev/%s character device registered ***\n",
Yi Liu8bb8aef2015-11-24 15:12:14 -0500905 ORANGEFS_REQDEVICE_NAME);
Mike Marshall5db11c22015-07-17 10:38:12 -0400906 gossip_debug(GOSSIP_DEV_DEBUG, "'mknod /dev/%s c %d 0'.\n",
Yi Liu8bb8aef2015-11-24 15:12:14 -0500907 ORANGEFS_REQDEVICE_NAME, orangefs_dev_major);
Mike Marshall5db11c22015-07-17 10:38:12 -0400908 return 0;
909}
910
Yi Liu8bb8aef2015-11-24 15:12:14 -0500911void orangefs_dev_cleanup(void)
Mike Marshall5db11c22015-07-17 10:38:12 -0400912{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500913 unregister_chrdev(orangefs_dev_major, ORANGEFS_REQDEVICE_NAME);
Mike Marshall5db11c22015-07-17 10:38:12 -0400914 gossip_debug(GOSSIP_DEV_DEBUG,
915 "*** /dev/%s character device unregistered ***\n",
Yi Liu8bb8aef2015-11-24 15:12:14 -0500916 ORANGEFS_REQDEVICE_NAME);
Mike Marshall5db11c22015-07-17 10:38:12 -0400917}
918
Yi Liu8bb8aef2015-11-24 15:12:14 -0500919static unsigned int orangefs_devreq_poll(struct file *file,
Mike Marshall5db11c22015-07-17 10:38:12 -0400920 struct poll_table_struct *poll_table)
921{
922 int poll_revent_mask = 0;
923
Al Viro83595db2016-01-19 12:03:05 -0500924 poll_wait(file, &orangefs_request_list_waitq, poll_table);
Mike Marshall5db11c22015-07-17 10:38:12 -0400925
Al Viro83595db2016-01-19 12:03:05 -0500926 if (!list_empty(&orangefs_request_list))
927 poll_revent_mask |= POLL_IN;
Mike Marshall5db11c22015-07-17 10:38:12 -0400928 return poll_revent_mask;
929}
930
Yi Liu8bb8aef2015-11-24 15:12:14 -0500931const struct file_operations orangefs_devreq_file_operations = {
Mike Marshall5db11c22015-07-17 10:38:12 -0400932 .owner = THIS_MODULE,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500933 .read = orangefs_devreq_read,
934 .write_iter = orangefs_devreq_write_iter,
935 .open = orangefs_devreq_open,
936 .release = orangefs_devreq_release,
937 .unlocked_ioctl = orangefs_devreq_ioctl,
Mike Marshall5db11c22015-07-17 10:38:12 -0400938
939#ifdef CONFIG_COMPAT /* CONFIG_COMPAT is in .config */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500940 .compat_ioctl = orangefs_devreq_compat_ioctl,
Mike Marshall5db11c22015-07-17 10:38:12 -0400941#endif
Yi Liu8bb8aef2015-11-24 15:12:14 -0500942 .poll = orangefs_devreq_poll
Mike Marshall5db11c22015-07-17 10:38:12 -0400943};