blob: 319cf9dcacddae1b910bd119c3222459a052b319 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Mike Marshall5db11c22015-07-17 10:38:12 -04002/*
3 * (C) 2001 Clemson University and The University of Chicago
4 *
5 * Changes by Acxiom Corporation to add protocol version to kernel
6 * communication, Copyright Acxiom Corporation, 2005.
7 *
8 * See COPYING in top-level directory.
9 */
10
11#include "protocol.h"
Mike Marshall575e9462015-12-04 12:56:14 -050012#include "orangefs-kernel.h"
13#include "orangefs-dev-proto.h"
14#include "orangefs-bufmap.h"
Martin Brandenburg44f46412016-08-15 11:38:36 -040015#include "orangefs-debugfs.h"
Mike Marshall5db11c22015-07-17 10:38:12 -040016
17#include <linux/debugfs.h>
18#include <linux/slab.h>
19
20/* this file implements the /dev/pvfs2-req device node */
21
Martin Brandenburg482664d2016-08-12 12:02:31 -040022uint32_t orangefs_userspace_version;
Martin Brandenburgf2ee3b72016-08-09 15:59:26 -040023
Mike Marshall5db11c22015-07-17 10:38:12 -040024static int open_access_count;
25
Martin Brandenburga0fe0512016-08-15 15:21:16 -040026static DEFINE_MUTEX(devreq_mutex);
27
Mike Marshall5db11c22015-07-17 10:38:12 -040028#define DUMP_DEVICE_ERROR() \
29do { \
30 gossip_err("*****************************************************\n");\
Yi Liu8bb8aef2015-11-24 15:12:14 -050031 gossip_err("ORANGEFS Device Error: You cannot open the device file "); \
Mike Marshall5db11c22015-07-17 10:38:12 -040032 gossip_err("\n/dev/%s more than once. Please make sure that\nthere " \
Yi Liu8bb8aef2015-11-24 15:12:14 -050033 "are no ", ORANGEFS_REQDEVICE_NAME); \
Mike Marshall5db11c22015-07-17 10:38:12 -040034 gossip_err("instances of a program using this device\ncurrently " \
35 "running. (You must verify this!)\n"); \
36 gossip_err("For example, you can use the lsof program as follows:\n");\
37 gossip_err("'lsof | grep %s' (run this as root)\n", \
Yi Liu8bb8aef2015-11-24 15:12:14 -050038 ORANGEFS_REQDEVICE_NAME); \
Mike Marshall5db11c22015-07-17 10:38:12 -040039 gossip_err(" open_access_count = %d\n", open_access_count); \
40 gossip_err("*****************************************************\n");\
41} while (0)
42
43static int hash_func(__u64 tag, int table_size)
44{
Mike Marshall2c590d52015-07-24 10:37:15 -040045 return do_div(tag, (unsigned int)table_size);
Mike Marshall5db11c22015-07-17 10:38:12 -040046}
47
Yi Liu8bb8aef2015-11-24 15:12:14 -050048static void orangefs_devreq_add_op(struct orangefs_kernel_op_s *op)
Mike Marshall5db11c22015-07-17 10:38:12 -040049{
50 int index = hash_func(op->tag, hash_table_size);
51
Martin Brandenburg1d503612016-08-16 11:38:14 -040052 list_add_tail(&op->list, &orangefs_htable_ops_in_progress[index]);
Mike Marshall5db11c22015-07-17 10:38:12 -040053}
54
Mike Marshallca9f5182016-02-26 10:21:12 -050055/*
56 * find the op with this tag and remove it from the in progress
57 * hash table.
58 */
Yi Liu8bb8aef2015-11-24 15:12:14 -050059static struct orangefs_kernel_op_s *orangefs_devreq_remove_op(__u64 tag)
Mike Marshall5db11c22015-07-17 10:38:12 -040060{
Yi Liu8bb8aef2015-11-24 15:12:14 -050061 struct orangefs_kernel_op_s *op, *next;
Mike Marshall5db11c22015-07-17 10:38:12 -040062 int index;
63
64 index = hash_func(tag, hash_table_size);
65
Martin Brandenburg1d503612016-08-16 11:38:14 -040066 spin_lock(&orangefs_htable_ops_in_progress_lock);
Mike Marshall5db11c22015-07-17 10:38:12 -040067 list_for_each_entry_safe(op,
68 next,
Martin Brandenburg1d503612016-08-16 11:38:14 -040069 &orangefs_htable_ops_in_progress[index],
Mike Marshall5db11c22015-07-17 10:38:12 -040070 list) {
Al Viro05a50a52016-02-18 18:59:44 -050071 if (op->tag == tag && !op_state_purged(op) &&
72 !op_state_given_up(op)) {
Al Viroed42fe02016-01-22 19:47:47 -050073 list_del_init(&op->list);
Martin Brandenburg1d503612016-08-16 11:38:14 -040074 spin_unlock(&orangefs_htable_ops_in_progress_lock);
Mike Marshall5db11c22015-07-17 10:38:12 -040075 return op;
76 }
77 }
78
Martin Brandenburg1d503612016-08-16 11:38:14 -040079 spin_unlock(&orangefs_htable_ops_in_progress_lock);
Mike Marshall5db11c22015-07-17 10:38:12 -040080 return NULL;
81}
82
Martin Brandenburgacfcbaf2016-03-05 13:17:39 -050083/* Returns whether any FS are still pending remounted */
84static int mark_all_pending_mounts(void)
85{
86 int unmounted = 1;
87 struct orangefs_sb_info_s *orangefs_sb = NULL;
88
89 spin_lock(&orangefs_superblocks_lock);
90 list_for_each_entry(orangefs_sb, &orangefs_superblocks, list) {
91 /* All of these file system require a remount */
92 orangefs_sb->mount_pending = 1;
93 unmounted = 0;
94 }
95 spin_unlock(&orangefs_superblocks_lock);
96 return unmounted;
97}
98
99/*
100 * Determine if a given file system needs to be remounted or not
101 * Returns -1 on error
102 * 0 if already mounted
103 * 1 if needs remount
104 */
105static int fs_mount_pending(__s32 fsid)
106{
107 int mount_pending = -1;
108 struct orangefs_sb_info_s *orangefs_sb = NULL;
109
110 spin_lock(&orangefs_superblocks_lock);
111 list_for_each_entry(orangefs_sb, &orangefs_superblocks, list) {
112 if (orangefs_sb->fs_id == fsid) {
113 mount_pending = orangefs_sb->mount_pending;
114 break;
115 }
116 }
117 spin_unlock(&orangefs_superblocks_lock);
118 return mount_pending;
119}
120
Yi Liu8bb8aef2015-11-24 15:12:14 -0500121static int orangefs_devreq_open(struct inode *inode, struct file *file)
Mike Marshall5db11c22015-07-17 10:38:12 -0400122{
123 int ret = -EINVAL;
124
Jann Horn78fee0b2016-06-25 01:51:52 +0200125 /* in order to ensure that the filesystem driver sees correct UIDs */
126 if (file->f_cred->user_ns != &init_user_ns) {
127 gossip_err("%s: device cannot be opened outside init_user_ns\n",
128 __func__);
129 goto out;
130 }
131
Mike Marshall5db11c22015-07-17 10:38:12 -0400132 if (!(file->f_flags & O_NONBLOCK)) {
Mike Marshall97f10022015-12-11 16:45:03 -0500133 gossip_err("%s: device cannot be opened in blocking mode\n",
134 __func__);
Mike Marshall5db11c22015-07-17 10:38:12 -0400135 goto out;
136 }
137 ret = -EACCES;
Mike Marshall97f10022015-12-11 16:45:03 -0500138 gossip_debug(GOSSIP_DEV_DEBUG, "client-core: opening device\n");
Mike Marshall5db11c22015-07-17 10:38:12 -0400139 mutex_lock(&devreq_mutex);
140
141 if (open_access_count == 0) {
Al Virofee25ce2016-01-22 19:46:08 -0500142 open_access_count = 1;
Al Virofb6d2522016-01-19 12:00:26 -0500143 ret = 0;
Mike Marshall5db11c22015-07-17 10:38:12 -0400144 } else {
145 DUMP_DEVICE_ERROR();
146 }
147 mutex_unlock(&devreq_mutex);
148
149out:
150
151 gossip_debug(GOSSIP_DEV_DEBUG,
152 "pvfs2-client-core: open device complete (ret = %d)\n",
153 ret);
154 return ret;
155}
156
Mike Marshall97f10022015-12-11 16:45:03 -0500157/* Function for read() callers into the device */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500158static ssize_t orangefs_devreq_read(struct file *file,
Mike Marshall5db11c22015-07-17 10:38:12 -0400159 char __user *buf,
160 size_t count, loff_t *offset)
161{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500162 struct orangefs_kernel_op_s *op, *temp;
163 __s32 proto_ver = ORANGEFS_KERNEL_PROTO_VERSION;
164 static __s32 magic = ORANGEFS_DEVREQ_MAGIC;
Martin Brandenburga0ec1de2018-01-22 15:44:52 -0500165 struct orangefs_kernel_op_s *cur_op;
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500166 unsigned long ret;
Mike Marshall5db11c22015-07-17 10:38:12 -0400167
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500168 /* We do not support blocking IO. */
Mike Marshall5db11c22015-07-17 10:38:12 -0400169 if (!(file->f_flags & O_NONBLOCK)) {
Mike Marshall97f10022015-12-11 16:45:03 -0500170 gossip_err("%s: blocking read from client-core.\n",
171 __func__);
Mike Marshall5db11c22015-07-17 10:38:12 -0400172 return -EINVAL;
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500173 }
174
175 /*
Martin Brandenburga762ae62015-12-15 14:22:06 -0500176 * The client will do an ioctl to find MAX_DEV_REQ_UPSIZE, then
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500177 * always read with that size buffer.
178 */
Martin Brandenburga762ae62015-12-15 14:22:06 -0500179 if (count != MAX_DEV_REQ_UPSIZE) {
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500180 gossip_err("orangefs: client-core tried to read wrong size\n");
181 return -EINVAL;
182 }
183
Martin Brandenburgb7a57cc2017-04-25 15:38:06 -0400184 /* Check for an empty list before locking. */
185 if (list_empty(&orangefs_request_list))
186 return -EAGAIN;
187
Al Viroed42fe02016-01-22 19:47:47 -0500188restart:
Martin Brandenburga0ec1de2018-01-22 15:44:52 -0500189 cur_op = NULL;
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500190 /* Get next op (if any) from top of list. */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500191 spin_lock(&orangefs_request_list_lock);
192 list_for_each_entry_safe(op, temp, &orangefs_request_list, list) {
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500193 __s32 fsid;
194 /* This lock is held past the end of the loop when we break. */
195 spin_lock(&op->lock);
Al Viro05a50a52016-02-18 18:59:44 -0500196 if (unlikely(op_state_purged(op) || op_state_given_up(op))) {
Al Viroed42fe02016-01-22 19:47:47 -0500197 spin_unlock(&op->lock);
198 continue;
199 }
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500200
201 fsid = fsid_of_op(op);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500202 if (fsid != ORANGEFS_FS_ID_NULL) {
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500203 int ret;
204 /* Skip ops whose filesystem needs to be mounted. */
205 ret = fs_mount_pending(fsid);
206 if (ret == 1) {
Mike Marshall5db11c22015-07-17 10:38:12 -0400207 gossip_debug(GOSSIP_DEV_DEBUG,
Mike Marshall5090c962016-02-04 13:29:27 -0500208 "%s: mount pending, skipping op tag "
209 "%llu %s\n",
210 __func__,
211 llu(op->tag),
212 get_opname_string(op));
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500213 spin_unlock(&op->lock);
Mike Marshall5db11c22015-07-17 10:38:12 -0400214 continue;
Mike Marshall97f10022015-12-11 16:45:03 -0500215 /*
216 * Skip ops whose filesystem we don't know about unless
Martin Brandenburg1ec16882017-04-14 14:22:41 -0400217 * it is being mounted or unmounted. It is possible for
218 * a filesystem we don't know about to be unmounted if
219 * it fails to mount in the kernel after userspace has
220 * been sent the mount request.
Mike Marshall97f10022015-12-11 16:45:03 -0500221 */
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500222 /* XXX: is there a better way to detect this? */
223 } else if (ret == -1 &&
Mike Marshall97f10022015-12-11 16:45:03 -0500224 !(op->upcall.type ==
225 ORANGEFS_VFS_OP_FS_MOUNT ||
226 op->upcall.type ==
Martin Brandenburg1ec16882017-04-14 14:22:41 -0400227 ORANGEFS_VFS_OP_GETATTR ||
228 op->upcall.type ==
229 ORANGEFS_VFS_OP_FS_UMOUNT)) {
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500230 gossip_debug(GOSSIP_DEV_DEBUG,
231 "orangefs: skipping op tag %llu %s\n",
232 llu(op->tag), get_opname_string(op));
233 gossip_err(
234 "orangefs: ERROR: fs_mount_pending %d\n",
235 fsid);
236 spin_unlock(&op->lock);
237 continue;
Mike Marshall5db11c22015-07-17 10:38:12 -0400238 }
239 }
Mike Marshall5db11c22015-07-17 10:38:12 -0400240 /*
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500241 * Either this op does not pertain to a filesystem, is mounting
242 * a filesystem, or pertains to a mounted filesystem. Let it
243 * through.
Mike Marshall5db11c22015-07-17 10:38:12 -0400244 */
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500245 cur_op = op;
246 break;
Mike Marshall5db11c22015-07-17 10:38:12 -0400247 }
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500248
249 /*
250 * At this point we either have a valid op and can continue or have not
251 * found an op and must ask the client to try again later.
252 */
253 if (!cur_op) {
Yi Liu8bb8aef2015-11-24 15:12:14 -0500254 spin_unlock(&orangefs_request_list_lock);
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500255 return -EAGAIN;
256 }
257
Mike Marshallca9f5182016-02-26 10:21:12 -0500258 gossip_debug(GOSSIP_DEV_DEBUG, "%s: reading op tag %llu %s\n",
259 __func__,
260 llu(cur_op->tag),
261 get_opname_string(cur_op));
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500262
263 /*
264 * Such an op should never be on the list in the first place. If so, we
265 * will abort.
266 */
267 if (op_state_in_progress(cur_op) || op_state_serviced(cur_op)) {
268 gossip_err("orangefs: ERROR: Current op already queued.\n");
Al Viro05a50a52016-02-18 18:59:44 -0500269 list_del_init(&cur_op->list);
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500270 spin_unlock(&cur_op->lock);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500271 spin_unlock(&orangefs_request_list_lock);
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500272 return -EAGAIN;
273 }
Mike Marshallca9f5182016-02-26 10:21:12 -0500274
Al Viroed42fe02016-01-22 19:47:47 -0500275 list_del_init(&cur_op->list);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500276 spin_unlock(&orangefs_request_list_lock);
Al Viroed42fe02016-01-22 19:47:47 -0500277
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500278 spin_unlock(&cur_op->lock);
279
280 /* Push the upcall out. */
281 ret = copy_to_user(buf, &proto_ver, sizeof(__s32));
282 if (ret != 0)
283 goto error;
284 ret = copy_to_user(buf+sizeof(__s32), &magic, sizeof(__s32));
285 if (ret != 0)
286 goto error;
287 ret = copy_to_user(buf+2 * sizeof(__s32), &cur_op->tag, sizeof(__u64));
288 if (ret != 0)
289 goto error;
290 ret = copy_to_user(buf+2*sizeof(__s32)+sizeof(__u64), &cur_op->upcall,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500291 sizeof(struct orangefs_upcall_s));
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500292 if (ret != 0)
293 goto error;
294
Martin Brandenburg1d503612016-08-16 11:38:14 -0400295 spin_lock(&orangefs_htable_ops_in_progress_lock);
Al Viroed42fe02016-01-22 19:47:47 -0500296 spin_lock(&cur_op->lock);
297 if (unlikely(op_state_given_up(cur_op))) {
298 spin_unlock(&cur_op->lock);
Martin Brandenburg1d503612016-08-16 11:38:14 -0400299 spin_unlock(&orangefs_htable_ops_in_progress_lock);
Al Viro05a50a52016-02-18 18:59:44 -0500300 complete(&cur_op->waitq);
Al Viroed42fe02016-01-22 19:47:47 -0500301 goto restart;
302 }
303
304 /*
305 * Set the operation to be in progress and move it between lists since
306 * it has been sent to the client.
307 */
308 set_op_state_inprogress(cur_op);
Mike Marshall9d9e7ba2016-03-03 13:46:48 -0500309 gossip_debug(GOSSIP_DEV_DEBUG,
310 "%s: 1 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 orangefs_devreq_add_op(cur_op);
316 spin_unlock(&cur_op->lock);
Martin Brandenburg1d503612016-08-16 11:38:14 -0400317 spin_unlock(&orangefs_htable_ops_in_progress_lock);
Al Viroed42fe02016-01-22 19:47:47 -0500318
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500319 /* The client only asks to read one size buffer. */
Martin Brandenburga762ae62015-12-15 14:22:06 -0500320 return MAX_DEV_REQ_UPSIZE;
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500321error:
322 /*
323 * We were unable to copy the op data to the client. Put the op back in
324 * list. If client has crashed, the op will be purged later when the
325 * device is released.
326 */
327 gossip_err("orangefs: Failed to copy data to user space\n");
Yi Liu8bb8aef2015-11-24 15:12:14 -0500328 spin_lock(&orangefs_request_list_lock);
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500329 spin_lock(&cur_op->lock);
Al Viroed42fe02016-01-22 19:47:47 -0500330 if (likely(!op_state_given_up(cur_op))) {
331 set_op_state_waiting(cur_op);
Mike Marshall9d9e7ba2016-03-03 13:46:48 -0500332 gossip_debug(GOSSIP_DEV_DEBUG,
333 "%s: 2 op:%s: op_state:%d: process:%s:\n",
334 __func__,
335 get_opname_string(cur_op),
336 cur_op->op_state,
337 current->comm);
Al Viroed42fe02016-01-22 19:47:47 -0500338 list_add(&cur_op->list, &orangefs_request_list);
Al Viro05a50a52016-02-18 18:59:44 -0500339 spin_unlock(&cur_op->lock);
340 } else {
341 spin_unlock(&cur_op->lock);
342 complete(&cur_op->waitq);
Al Viroed42fe02016-01-22 19:47:47 -0500343 }
Yi Liu8bb8aef2015-11-24 15:12:14 -0500344 spin_unlock(&orangefs_request_list_lock);
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500345 return -EFAULT;
Mike Marshall5db11c22015-07-17 10:38:12 -0400346}
347
Mike Marshall97f10022015-12-11 16:45:03 -0500348/*
Mike Marshallb3ae4752016-01-13 11:18:12 -0500349 * Function for writev() callers into the device.
350 *
351 * Userspace should have written:
352 * - __u32 version
353 * - __u32 magic
354 * - __u64 tag
355 * - struct orangefs_downcall_s
356 * - trailer buffer (in the case of READDIR operations)
Mike Marshall97f10022015-12-11 16:45:03 -0500357 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500358static ssize_t orangefs_devreq_write_iter(struct kiocb *iocb,
Mike Marshall5db11c22015-07-17 10:38:12 -0400359 struct iov_iter *iter)
360{
Mike Marshallb3ae4752016-01-13 11:18:12 -0500361 ssize_t ret;
362 struct orangefs_kernel_op_s *op = NULL;
363 struct {
364 __u32 version;
365 __u32 magic;
366 __u64 tag;
367 } head;
368 int total = ret = iov_iter_count(iter);
Mike Marshallb3ae4752016-01-13 11:18:12 -0500369 int downcall_size = sizeof(struct orangefs_downcall_s);
370 int head_size = sizeof(head);
371
372 gossip_debug(GOSSIP_DEV_DEBUG, "%s: total:%d: ret:%zd:\n",
373 __func__,
374 total,
375 ret);
376
377 if (total < MAX_DEV_REQ_DOWNSIZE) {
Mike Marshallcf0c2772016-01-19 12:04:40 -0500378 gossip_err("%s: total:%d: must be at least:%u:\n",
Mike Marshallb3ae4752016-01-13 11:18:12 -0500379 __func__,
380 total,
Mike Marshallcf0c2772016-01-19 12:04:40 -0500381 (unsigned int) MAX_DEV_REQ_DOWNSIZE);
Al Viroed42fe02016-01-22 19:47:47 -0500382 return -EFAULT;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500383 }
384
Al Virocbbd26b2016-11-01 22:09:04 -0400385 if (!copy_from_iter_full(&head, head_size, iter)) {
Mike Marshallb3ae4752016-01-13 11:18:12 -0500386 gossip_err("%s: failed to copy head.\n", __func__);
Al Viroed42fe02016-01-22 19:47:47 -0500387 return -EFAULT;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500388 }
389
390 if (head.version < ORANGEFS_MINIMUM_USERSPACE_VERSION) {
391 gossip_err("%s: userspace claims version"
392 "%d, minimum version required: %d.\n",
393 __func__,
394 head.version,
395 ORANGEFS_MINIMUM_USERSPACE_VERSION);
Al Viroed42fe02016-01-22 19:47:47 -0500396 return -EPROTO;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500397 }
398
399 if (head.magic != ORANGEFS_DEVREQ_MAGIC) {
400 gossip_err("Error: Device magic number does not match.\n");
Al Viroed42fe02016-01-22 19:47:47 -0500401 return -EPROTO;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500402 }
403
Martin Brandenburg482664d2016-08-12 12:02:31 -0400404 if (!orangefs_userspace_version) {
405 orangefs_userspace_version = head.version;
406 } else if (orangefs_userspace_version != head.version) {
Martin Brandenburgf2ee3b72016-08-09 15:59:26 -0400407 gossip_err("Error: userspace version changes\n");
408 return -EPROTO;
409 }
410
Mike Marshallca9f5182016-02-26 10:21:12 -0500411 /* remove the op from the in progress hash table */
Mike Marshallb3ae4752016-01-13 11:18:12 -0500412 op = orangefs_devreq_remove_op(head.tag);
413 if (!op) {
Mike Marshall05973c22017-02-09 14:38:50 -0500414 gossip_debug(GOSSIP_DEV_DEBUG,
415 "%s: No one's waiting for tag %llu\n",
416 __func__, llu(head.tag));
Al Viroed42fe02016-01-22 19:47:47 -0500417 return ret;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500418 }
419
Al Virocbbd26b2016-11-01 22:09:04 -0400420 if (!copy_from_iter_full(&op->downcall, downcall_size, iter)) {
Mike Marshallb3ae4752016-01-13 11:18:12 -0500421 gossip_err("%s: failed to copy downcall.\n", __func__);
Al Viro5964c1b2016-02-18 18:53:41 -0500422 goto Efault;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500423 }
424
425 if (op->downcall.status)
426 goto wakeup;
427
428 /*
429 * We've successfully peeled off the head and the downcall.
430 * Something has gone awry if total doesn't equal the
431 * sum of head_size, downcall_size and trailer_size.
432 */
433 if ((head_size + downcall_size + op->downcall.trailer_size) != total) {
434 gossip_err("%s: funky write, head_size:%d"
435 ": downcall_size:%d: trailer_size:%lld"
436 ": total size:%d:\n",
437 __func__,
438 head_size,
439 downcall_size,
440 op->downcall.trailer_size,
441 total);
Al Viro5964c1b2016-02-18 18:53:41 -0500442 goto Efault;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500443 }
444
445 /* Only READDIR operations should have trailers. */
446 if ((op->downcall.type != ORANGEFS_VFS_OP_READDIR) &&
447 (op->downcall.trailer_size != 0)) {
448 gossip_err("%s: %x operation with trailer.",
449 __func__,
450 op->downcall.type);
Al Viro5964c1b2016-02-18 18:53:41 -0500451 goto Efault;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500452 }
453
454 /* READDIR operations should always have trailers. */
455 if ((op->downcall.type == ORANGEFS_VFS_OP_READDIR) &&
456 (op->downcall.trailer_size == 0)) {
457 gossip_err("%s: %x operation with no trailer.",
458 __func__,
459 op->downcall.type);
Al Viro5964c1b2016-02-18 18:53:41 -0500460 goto Efault;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500461 }
462
463 if (op->downcall.type != ORANGEFS_VFS_OP_READDIR)
464 goto wakeup;
465
Colin Ian King81e3d022018-01-26 19:42:47 +0000466 op->downcall.trailer_buf = vzalloc(op->downcall.trailer_size);
Markus Elfring07a25852017-08-17 21:00:07 +0200467 if (!op->downcall.trailer_buf)
Al Viro5964c1b2016-02-18 18:53:41 -0500468 goto Enomem;
Markus Elfring07a25852017-08-17 21:00:07 +0200469
Al Virocbbd26b2016-11-01 22:09:04 -0400470 if (!copy_from_iter_full(op->downcall.trailer_buf,
471 op->downcall.trailer_size, iter)) {
Mike Marshallb3ae4752016-01-13 11:18:12 -0500472 gossip_err("%s: failed to copy trailer.\n", __func__);
473 vfree(op->downcall.trailer_buf);
Al Viro5964c1b2016-02-18 18:53:41 -0500474 goto Efault;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500475 }
476
477wakeup:
Al Viro2a9e5c22016-01-23 13:45:46 -0500478 /*
Mike Marshall9f08cfe2016-02-26 14:39:08 -0500479 * Return to vfs waitqueue, and back to service_operation
480 * through wait_for_matching_downcall.
Al Viro2a9e5c22016-01-23 13:45:46 -0500481 */
482 spin_lock(&op->lock);
Al Viro5964c1b2016-02-18 18:53:41 -0500483 if (unlikely(op_is_cancel(op))) {
Al Viro2a9e5c22016-01-23 13:45:46 -0500484 spin_unlock(&op->lock);
Al Viro78699e22016-02-11 23:07:19 -0500485 put_cancel(op);
Al Viro5964c1b2016-02-18 18:53:41 -0500486 } else if (unlikely(op_state_given_up(op))) {
487 spin_unlock(&op->lock);
Al Viro05a50a52016-02-18 18:59:44 -0500488 complete(&op->waitq);
Al Viro5964c1b2016-02-18 18:53:41 -0500489 } else {
490 set_op_state_serviced(op);
Mike Marshall9d9e7ba2016-03-03 13:46:48 -0500491 gossip_debug(GOSSIP_DEV_DEBUG,
492 "%s: op:%s: op_state:%d: process:%s:\n",
493 __func__,
494 get_opname_string(op),
495 op->op_state,
496 current->comm);
Al Viro5964c1b2016-02-18 18:53:41 -0500497 spin_unlock(&op->lock);
498 }
Mike Marshallb3ae4752016-01-13 11:18:12 -0500499 return ret;
Al Viroed42fe02016-01-22 19:47:47 -0500500
Al Viro5964c1b2016-02-18 18:53:41 -0500501Efault:
502 op->downcall.status = -(ORANGEFS_ERROR_BIT | 9);
503 ret = -EFAULT;
504 goto wakeup;
505
506Enomem:
507 op->downcall.status = -(ORANGEFS_ERROR_BIT | 8);
508 ret = -ENOMEM;
509 goto wakeup;
Mike Marshall5db11c22015-07-17 10:38:12 -0400510}
511
Mike Marshall5db11c22015-07-17 10:38:12 -0400512/*
513 * NOTE: gets called when the last reference to this device is dropped.
514 * Using the open_access_count variable, we enforce a reference count
515 * on this file so that it can be opened by only one process at a time.
516 * the devreq_mutex is used to make sure all i/o has completed
Yi Liu8bb8aef2015-11-24 15:12:14 -0500517 * before we call orangefs_bufmap_finalize, and similar such tricky
Mike Marshall5db11c22015-07-17 10:38:12 -0400518 * situations
519 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500520static int orangefs_devreq_release(struct inode *inode, struct file *file)
Mike Marshall5db11c22015-07-17 10:38:12 -0400521{
522 int unmounted = 0;
523
524 gossip_debug(GOSSIP_DEV_DEBUG,
525 "%s:pvfs2-client-core: exiting, closing device\n",
526 __func__);
527
528 mutex_lock(&devreq_mutex);
Al Viroea2c9c92016-02-13 21:01:21 -0500529 orangefs_bufmap_finalize();
Mike Marshall5db11c22015-07-17 10:38:12 -0400530
Al Virofee25ce2016-01-22 19:46:08 -0500531 open_access_count = -1;
Mike Marshall5db11c22015-07-17 10:38:12 -0400532
533 unmounted = mark_all_pending_mounts();
Yi Liu8bb8aef2015-11-24 15:12:14 -0500534 gossip_debug(GOSSIP_DEV_DEBUG, "ORANGEFS Device Close: Filesystem(s) %s\n",
Mike Marshall5db11c22015-07-17 10:38:12 -0400535 (unmounted ? "UNMOUNTED" : "MOUNTED"));
Mike Marshall5db11c22015-07-17 10:38:12 -0400536
Mike Marshall5db11c22015-07-17 10:38:12 -0400537 purge_waiting_ops();
Mike Marshall5db11c22015-07-17 10:38:12 -0400538 purge_inprogress_ops();
Al Viroea2c9c92016-02-13 21:01:21 -0500539
540 orangefs_bufmap_run_down();
541
Mike Marshall5db11c22015-07-17 10:38:12 -0400542 gossip_debug(GOSSIP_DEV_DEBUG,
543 "pvfs2-client-core: device close complete\n");
Al Virofee25ce2016-01-22 19:46:08 -0500544 open_access_count = 0;
Martin Brandenburg482664d2016-08-12 12:02:31 -0400545 orangefs_userspace_version = 0;
Al Virofee25ce2016-01-22 19:46:08 -0500546 mutex_unlock(&devreq_mutex);
Mike Marshall5db11c22015-07-17 10:38:12 -0400547 return 0;
548}
549
550int is_daemon_in_service(void)
551{
552 int in_service;
553
554 /*
555 * What this function does is checks if client-core is alive
556 * based on the access count we maintain on the device.
557 */
558 mutex_lock(&devreq_mutex);
559 in_service = open_access_count == 1 ? 0 : -EIO;
560 mutex_unlock(&devreq_mutex);
561 return in_service;
562}
563
Al Viro78699e22016-02-11 23:07:19 -0500564bool __is_daemon_in_service(void)
565{
566 return open_access_count == 1;
567}
568
Mike Marshall5db11c22015-07-17 10:38:12 -0400569static inline long check_ioctl_command(unsigned int command)
570{
571 /* Check for valid ioctl codes */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500572 if (_IOC_TYPE(command) != ORANGEFS_DEV_MAGIC) {
Mike Marshall5db11c22015-07-17 10:38:12 -0400573 gossip_err("device ioctl magic numbers don't match! Did you rebuild pvfs2-client-core/libpvfs2? [cmd %x, magic %x != %x]\n",
574 command,
575 _IOC_TYPE(command),
Yi Liu8bb8aef2015-11-24 15:12:14 -0500576 ORANGEFS_DEV_MAGIC);
Mike Marshall5db11c22015-07-17 10:38:12 -0400577 return -EINVAL;
578 }
579 /* and valid ioctl commands */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500580 if (_IOC_NR(command) >= ORANGEFS_DEV_MAXNR || _IOC_NR(command) <= 0) {
Mike Marshall5db11c22015-07-17 10:38:12 -0400581 gossip_err("Invalid ioctl command number [%d >= %d]\n",
Yi Liu8bb8aef2015-11-24 15:12:14 -0500582 _IOC_NR(command), ORANGEFS_DEV_MAXNR);
Mike Marshall5db11c22015-07-17 10:38:12 -0400583 return -ENOIOCTLCMD;
584 }
585 return 0;
586}
587
588static long dispatch_ioctl_command(unsigned int command, unsigned long arg)
589{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500590 static __s32 magic = ORANGEFS_DEVREQ_MAGIC;
Martin Brandenburga762ae62015-12-15 14:22:06 -0500591 static __s32 max_up_size = MAX_DEV_REQ_UPSIZE;
592 static __s32 max_down_size = MAX_DEV_REQ_DOWNSIZE;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500593 struct ORANGEFS_dev_map_desc user_desc;
Mike Marshall5db11c22015-07-17 10:38:12 -0400594 int ret = 0;
Mike Marshall5db11c22015-07-17 10:38:12 -0400595 int upstream_kmod = 1;
Al Viro45996492016-03-25 19:56:34 -0400596 struct orangefs_sb_info_s *orangefs_sb;
Mike Marshall5db11c22015-07-17 10:38:12 -0400597
598 /* mtmoore: add locking here */
599
600 switch (command) {
Yi Liu8bb8aef2015-11-24 15:12:14 -0500601 case ORANGEFS_DEV_GET_MAGIC:
Mike Marshall5db11c22015-07-17 10:38:12 -0400602 return ((put_user(magic, (__s32 __user *) arg) == -EFAULT) ?
603 -EIO :
604 0);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500605 case ORANGEFS_DEV_GET_MAX_UPSIZE:
Mike Marshall5db11c22015-07-17 10:38:12 -0400606 return ((put_user(max_up_size,
607 (__s32 __user *) arg) == -EFAULT) ?
608 -EIO :
609 0);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500610 case ORANGEFS_DEV_GET_MAX_DOWNSIZE:
Mike Marshall5db11c22015-07-17 10:38:12 -0400611 return ((put_user(max_down_size,
612 (__s32 __user *) arg) == -EFAULT) ?
613 -EIO :
614 0);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500615 case ORANGEFS_DEV_MAP:
Mike Marshall5db11c22015-07-17 10:38:12 -0400616 ret = copy_from_user(&user_desc,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500617 (struct ORANGEFS_dev_map_desc __user *)
Mike Marshall5db11c22015-07-17 10:38:12 -0400618 arg,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500619 sizeof(struct ORANGEFS_dev_map_desc));
Al Viroea2c9c92016-02-13 21:01:21 -0500620 /* WTF -EIO and not -EFAULT? */
621 return ret ? -EIO : orangefs_bufmap_initialize(&user_desc);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500622 case ORANGEFS_DEV_REMOUNT_ALL:
Mike Marshall5db11c22015-07-17 10:38:12 -0400623 gossip_debug(GOSSIP_DEV_DEBUG,
Mike Marshall97f10022015-12-11 16:45:03 -0500624 "%s: got ORANGEFS_DEV_REMOUNT_ALL\n",
625 __func__);
Mike Marshall5db11c22015-07-17 10:38:12 -0400626
627 /*
Yi Liu8bb8aef2015-11-24 15:12:14 -0500628 * remount all mounted orangefs volumes to regain the lost
Mike Marshall5db11c22015-07-17 10:38:12 -0400629 * dynamic mount tables (if any) -- NOTE: this is done
630 * without keeping the superblock list locked due to the
Mike Marshalladcf34a2016-02-24 16:54:27 -0500631 * upcall/downcall waiting. also, the request mutex is
Mike Marshall5db11c22015-07-17 10:38:12 -0400632 * used to ensure that no operations will be serviced until
633 * all of the remounts are serviced (to avoid ops between
634 * mounts to fail)
635 */
Martin Brandenburg1d503612016-08-16 11:38:14 -0400636 ret = mutex_lock_interruptible(&orangefs_request_mutex);
Mike Marshall5db11c22015-07-17 10:38:12 -0400637 if (ret < 0)
638 return ret;
639 gossip_debug(GOSSIP_DEV_DEBUG,
Mike Marshall97f10022015-12-11 16:45:03 -0500640 "%s: priority remount in progress\n",
641 __func__);
Al Viro45996492016-03-25 19:56:34 -0400642 spin_lock(&orangefs_superblocks_lock);
643 list_for_each_entry(orangefs_sb, &orangefs_superblocks, list) {
644 /*
645 * We have to drop the spinlock, so entries can be
646 * removed. They can't be freed, though, so we just
647 * keep the forward pointers and zero the back ones -
648 * that way we can get to the rest of the list.
649 */
650 if (!orangefs_sb->list.prev)
651 continue;
652 gossip_debug(GOSSIP_DEV_DEBUG,
653 "%s: Remounting SB %p\n",
654 __func__,
655 orangefs_sb);
Mike Marshall5db11c22015-07-17 10:38:12 -0400656
Al Viro45996492016-03-25 19:56:34 -0400657 spin_unlock(&orangefs_superblocks_lock);
658 ret = orangefs_remount(orangefs_sb);
659 spin_lock(&orangefs_superblocks_lock);
660 if (ret) {
661 gossip_debug(GOSSIP_DEV_DEBUG,
662 "SB %p remount failed\n",
663 orangefs_sb);
664 break;
Mike Marshall5db11c22015-07-17 10:38:12 -0400665 }
666 }
Al Viro45996492016-03-25 19:56:34 -0400667 spin_unlock(&orangefs_superblocks_lock);
Mike Marshall5db11c22015-07-17 10:38:12 -0400668 gossip_debug(GOSSIP_DEV_DEBUG,
Mike Marshall97f10022015-12-11 16:45:03 -0500669 "%s: priority remount complete\n",
670 __func__);
Martin Brandenburg1d503612016-08-16 11:38:14 -0400671 mutex_unlock(&orangefs_request_mutex);
Mike Marshall5db11c22015-07-17 10:38:12 -0400672 return ret;
673
Yi Liu8bb8aef2015-11-24 15:12:14 -0500674 case ORANGEFS_DEV_UPSTREAM:
Mike Marshall5db11c22015-07-17 10:38:12 -0400675 ret = copy_to_user((void __user *)arg,
676 &upstream_kmod,
677 sizeof(upstream_kmod));
678
679 if (ret != 0)
680 return -EIO;
681 else
682 return ret;
683
Yi Liu8bb8aef2015-11-24 15:12:14 -0500684 case ORANGEFS_DEV_CLIENT_MASK:
Martin Brandenburg44f46412016-08-15 11:38:36 -0400685 return orangefs_debugfs_new_client_mask((void __user *)arg);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500686 case ORANGEFS_DEV_CLIENT_STRING:
Martin Brandenburg44f46412016-08-15 11:38:36 -0400687 return orangefs_debugfs_new_client_string((void __user *)arg);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500688 case ORANGEFS_DEV_DEBUG:
Martin Brandenburg44f46412016-08-15 11:38:36 -0400689 return orangefs_debugfs_new_debug((void __user *)arg);
Mike Marshall5db11c22015-07-17 10:38:12 -0400690 default:
691 return -ENOIOCTLCMD;
692 }
693 return -ENOIOCTLCMD;
694}
695
Yi Liu8bb8aef2015-11-24 15:12:14 -0500696static long orangefs_devreq_ioctl(struct file *file,
Mike Marshall5db11c22015-07-17 10:38:12 -0400697 unsigned int command, unsigned long arg)
698{
699 long ret;
700
701 /* Check for properly constructed commands */
702 ret = check_ioctl_command(command);
703 if (ret < 0)
704 return (int)ret;
705
706 return (int)dispatch_ioctl_command(command, arg);
707}
708
709#ifdef CONFIG_COMPAT /* CONFIG_COMPAT is in .config */
710
Yi Liu8bb8aef2015-11-24 15:12:14 -0500711/* Compat structure for the ORANGEFS_DEV_MAP ioctl */
712struct ORANGEFS_dev_map_desc32 {
Mike Marshall5db11c22015-07-17 10:38:12 -0400713 compat_uptr_t ptr;
714 __s32 total_size;
715 __s32 size;
716 __s32 count;
717};
718
719static unsigned long translate_dev_map26(unsigned long args, long *error)
720{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500721 struct ORANGEFS_dev_map_desc32 __user *p32 = (void __user *)args;
Mike Marshall5db11c22015-07-17 10:38:12 -0400722 /*
723 * Depending on the architecture, allocate some space on the
724 * user-call-stack based on our expected layout.
725 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500726 struct ORANGEFS_dev_map_desc __user *p =
Mike Marshall5db11c22015-07-17 10:38:12 -0400727 compat_alloc_user_space(sizeof(*p));
Mike Marshall84d02152015-07-28 13:27:51 -0400728 compat_uptr_t addr;
Mike Marshall5db11c22015-07-17 10:38:12 -0400729
730 *error = 0;
731 /* get the ptr from the 32 bit user-space */
732 if (get_user(addr, &p32->ptr))
733 goto err;
734 /* try to put that into a 64-bit layout */
735 if (put_user(compat_ptr(addr), &p->ptr))
736 goto err;
737 /* copy the remaining fields */
738 if (copy_in_user(&p->total_size, &p32->total_size, sizeof(__s32)))
739 goto err;
740 if (copy_in_user(&p->size, &p32->size, sizeof(__s32)))
741 goto err;
742 if (copy_in_user(&p->count, &p32->count, sizeof(__s32)))
743 goto err;
744 return (unsigned long)p;
745err:
746 *error = -EFAULT;
747 return 0;
748}
749
750/*
751 * 32 bit user-space apps' ioctl handlers when kernel modules
752 * is compiled as a 64 bit one
753 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500754static long orangefs_devreq_compat_ioctl(struct file *filp, unsigned int cmd,
Mike Marshall5db11c22015-07-17 10:38:12 -0400755 unsigned long args)
756{
757 long ret;
758 unsigned long arg = args;
759
760 /* Check for properly constructed commands */
761 ret = check_ioctl_command(cmd);
762 if (ret < 0)
763 return ret;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500764 if (cmd == ORANGEFS_DEV_MAP) {
Mike Marshall5db11c22015-07-17 10:38:12 -0400765 /*
766 * convert the arguments to what we expect internally
767 * in kernel space
768 */
769 arg = translate_dev_map26(args, &ret);
770 if (ret < 0) {
771 gossip_err("Could not translate dev map\n");
772 return ret;
773 }
774 }
775 /* no other ioctl requires translation */
776 return dispatch_ioctl_command(cmd, arg);
777}
778
Mike Marshall2c590d52015-07-24 10:37:15 -0400779#endif /* CONFIG_COMPAT is in .config */
780
Mike Marshall5db11c22015-07-17 10:38:12 -0400781/* the assigned character device major number */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500782static int orangefs_dev_major;
Mike Marshall5db11c22015-07-17 10:38:12 -0400783
784/*
Yi Liu8bb8aef2015-11-24 15:12:14 -0500785 * Initialize orangefs device specific state:
Mike Marshall5db11c22015-07-17 10:38:12 -0400786 * Must be called at module load time only
787 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500788int orangefs_dev_init(void)
Mike Marshall5db11c22015-07-17 10:38:12 -0400789{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500790 /* register orangefs-req device */
791 orangefs_dev_major = register_chrdev(0,
792 ORANGEFS_REQDEVICE_NAME,
793 &orangefs_devreq_file_operations);
794 if (orangefs_dev_major < 0) {
Mike Marshall5db11c22015-07-17 10:38:12 -0400795 gossip_debug(GOSSIP_DEV_DEBUG,
796 "Failed to register /dev/%s (error %d)\n",
Yi Liu8bb8aef2015-11-24 15:12:14 -0500797 ORANGEFS_REQDEVICE_NAME, orangefs_dev_major);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500798 return orangefs_dev_major;
Mike Marshall5db11c22015-07-17 10:38:12 -0400799 }
800
801 gossip_debug(GOSSIP_DEV_DEBUG,
802 "*** /dev/%s character device registered ***\n",
Yi Liu8bb8aef2015-11-24 15:12:14 -0500803 ORANGEFS_REQDEVICE_NAME);
Mike Marshall5db11c22015-07-17 10:38:12 -0400804 gossip_debug(GOSSIP_DEV_DEBUG, "'mknod /dev/%s c %d 0'.\n",
Yi Liu8bb8aef2015-11-24 15:12:14 -0500805 ORANGEFS_REQDEVICE_NAME, orangefs_dev_major);
Mike Marshall5db11c22015-07-17 10:38:12 -0400806 return 0;
807}
808
Yi Liu8bb8aef2015-11-24 15:12:14 -0500809void orangefs_dev_cleanup(void)
Mike Marshall5db11c22015-07-17 10:38:12 -0400810{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500811 unregister_chrdev(orangefs_dev_major, ORANGEFS_REQDEVICE_NAME);
Mike Marshall5db11c22015-07-17 10:38:12 -0400812 gossip_debug(GOSSIP_DEV_DEBUG,
813 "*** /dev/%s character device unregistered ***\n",
Yi Liu8bb8aef2015-11-24 15:12:14 -0500814 ORANGEFS_REQDEVICE_NAME);
Mike Marshall5db11c22015-07-17 10:38:12 -0400815}
816
Al Viro076ccb72017-07-03 01:02:18 -0400817static __poll_t orangefs_devreq_poll(struct file *file,
Mike Marshall5db11c22015-07-17 10:38:12 -0400818 struct poll_table_struct *poll_table)
819{
Al Viro076ccb72017-07-03 01:02:18 -0400820 __poll_t poll_revent_mask = 0;
Mike Marshall5db11c22015-07-17 10:38:12 -0400821
Al Viro83595db2016-01-19 12:03:05 -0500822 poll_wait(file, &orangefs_request_list_waitq, poll_table);
Mike Marshall5db11c22015-07-17 10:38:12 -0400823
Al Viro83595db2016-01-19 12:03:05 -0500824 if (!list_empty(&orangefs_request_list))
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800825 poll_revent_mask |= EPOLLIN;
Mike Marshall5db11c22015-07-17 10:38:12 -0400826 return poll_revent_mask;
827}
828
Yi Liu8bb8aef2015-11-24 15:12:14 -0500829const struct file_operations orangefs_devreq_file_operations = {
Mike Marshall5db11c22015-07-17 10:38:12 -0400830 .owner = THIS_MODULE,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500831 .read = orangefs_devreq_read,
832 .write_iter = orangefs_devreq_write_iter,
833 .open = orangefs_devreq_open,
834 .release = orangefs_devreq_release,
835 .unlocked_ioctl = orangefs_devreq_ioctl,
Mike Marshall5db11c22015-07-17 10:38:12 -0400836
837#ifdef CONFIG_COMPAT /* CONFIG_COMPAT is in .config */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500838 .compat_ioctl = orangefs_devreq_compat_ioctl,
Mike Marshall5db11c22015-07-17 10:38:12 -0400839#endif
Yi Liu8bb8aef2015-11-24 15:12:14 -0500840 .poll = orangefs_devreq_poll
Mike Marshall5db11c22015-07-17 10:38:12 -0400841};