blob: c19f0787c9c65bddfc8b82ca7fad2f88549f2f91 [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"
Martin Brandenburg44f46412016-08-15 11:38:36 -040014#include "orangefs-debugfs.h"
Mike Marshall5db11c22015-07-17 10:38:12 -040015
16#include <linux/debugfs.h>
17#include <linux/slab.h>
18
19/* this file implements the /dev/pvfs2-req device node */
20
Martin Brandenburg482664d2016-08-12 12:02:31 -040021uint32_t orangefs_userspace_version;
Martin Brandenburgf2ee3b72016-08-09 15:59:26 -040022
Mike Marshall5db11c22015-07-17 10:38:12 -040023static int open_access_count;
24
Martin Brandenburga0fe0512016-08-15 15:21:16 -040025static DEFINE_MUTEX(devreq_mutex);
26
Mike Marshall5db11c22015-07-17 10:38:12 -040027#define DUMP_DEVICE_ERROR() \
28do { \
29 gossip_err("*****************************************************\n");\
Yi Liu8bb8aef2015-11-24 15:12:14 -050030 gossip_err("ORANGEFS Device Error: You cannot open the device file "); \
Mike Marshall5db11c22015-07-17 10:38:12 -040031 gossip_err("\n/dev/%s more than once. Please make sure that\nthere " \
Yi Liu8bb8aef2015-11-24 15:12:14 -050032 "are no ", ORANGEFS_REQDEVICE_NAME); \
Mike Marshall5db11c22015-07-17 10:38:12 -040033 gossip_err("instances of a program using this device\ncurrently " \
34 "running. (You must verify this!)\n"); \
35 gossip_err("For example, you can use the lsof program as follows:\n");\
36 gossip_err("'lsof | grep %s' (run this as root)\n", \
Yi Liu8bb8aef2015-11-24 15:12:14 -050037 ORANGEFS_REQDEVICE_NAME); \
Mike Marshall5db11c22015-07-17 10:38:12 -040038 gossip_err(" open_access_count = %d\n", open_access_count); \
39 gossip_err("*****************************************************\n");\
40} while (0)
41
42static int hash_func(__u64 tag, int table_size)
43{
Mike Marshall2c590d52015-07-24 10:37:15 -040044 return do_div(tag, (unsigned int)table_size);
Mike Marshall5db11c22015-07-17 10:38:12 -040045}
46
Yi Liu8bb8aef2015-11-24 15:12:14 -050047static void orangefs_devreq_add_op(struct orangefs_kernel_op_s *op)
Mike Marshall5db11c22015-07-17 10:38:12 -040048{
49 int index = hash_func(op->tag, hash_table_size);
50
Martin Brandenburg1d503612016-08-16 11:38:14 -040051 list_add_tail(&op->list, &orangefs_htable_ops_in_progress[index]);
Mike Marshall5db11c22015-07-17 10:38:12 -040052}
53
Mike Marshallca9f5182016-02-26 10:21:12 -050054/*
55 * find the op with this tag and remove it from the in progress
56 * hash table.
57 */
Yi Liu8bb8aef2015-11-24 15:12:14 -050058static struct orangefs_kernel_op_s *orangefs_devreq_remove_op(__u64 tag)
Mike Marshall5db11c22015-07-17 10:38:12 -040059{
Yi Liu8bb8aef2015-11-24 15:12:14 -050060 struct orangefs_kernel_op_s *op, *next;
Mike Marshall5db11c22015-07-17 10:38:12 -040061 int index;
62
63 index = hash_func(tag, hash_table_size);
64
Martin Brandenburg1d503612016-08-16 11:38:14 -040065 spin_lock(&orangefs_htable_ops_in_progress_lock);
Mike Marshall5db11c22015-07-17 10:38:12 -040066 list_for_each_entry_safe(op,
67 next,
Martin Brandenburg1d503612016-08-16 11:38:14 -040068 &orangefs_htable_ops_in_progress[index],
Mike Marshall5db11c22015-07-17 10:38:12 -040069 list) {
Al Viro05a50a52016-02-18 18:59:44 -050070 if (op->tag == tag && !op_state_purged(op) &&
71 !op_state_given_up(op)) {
Al Viroed42fe02016-01-22 19:47:47 -050072 list_del_init(&op->list);
Martin Brandenburg1d503612016-08-16 11:38:14 -040073 spin_unlock(&orangefs_htable_ops_in_progress_lock);
Mike Marshall5db11c22015-07-17 10:38:12 -040074 return op;
75 }
76 }
77
Martin Brandenburg1d503612016-08-16 11:38:14 -040078 spin_unlock(&orangefs_htable_ops_in_progress_lock);
Mike Marshall5db11c22015-07-17 10:38:12 -040079 return NULL;
80}
81
Martin Brandenburgacfcbaf2016-03-05 13:17:39 -050082/* Returns whether any FS are still pending remounted */
83static int mark_all_pending_mounts(void)
84{
85 int unmounted = 1;
86 struct orangefs_sb_info_s *orangefs_sb = NULL;
87
88 spin_lock(&orangefs_superblocks_lock);
89 list_for_each_entry(orangefs_sb, &orangefs_superblocks, list) {
90 /* All of these file system require a remount */
91 orangefs_sb->mount_pending = 1;
92 unmounted = 0;
93 }
94 spin_unlock(&orangefs_superblocks_lock);
95 return unmounted;
96}
97
98/*
99 * Determine if a given file system needs to be remounted or not
100 * Returns -1 on error
101 * 0 if already mounted
102 * 1 if needs remount
103 */
104static int fs_mount_pending(__s32 fsid)
105{
106 int mount_pending = -1;
107 struct orangefs_sb_info_s *orangefs_sb = NULL;
108
109 spin_lock(&orangefs_superblocks_lock);
110 list_for_each_entry(orangefs_sb, &orangefs_superblocks, list) {
111 if (orangefs_sb->fs_id == fsid) {
112 mount_pending = orangefs_sb->mount_pending;
113 break;
114 }
115 }
116 spin_unlock(&orangefs_superblocks_lock);
117 return mount_pending;
118}
119
Yi Liu8bb8aef2015-11-24 15:12:14 -0500120static int orangefs_devreq_open(struct inode *inode, struct file *file)
Mike Marshall5db11c22015-07-17 10:38:12 -0400121{
122 int ret = -EINVAL;
123
Jann Horn78fee0b2016-06-25 01:51:52 +0200124 /* in order to ensure that the filesystem driver sees correct UIDs */
125 if (file->f_cred->user_ns != &init_user_ns) {
126 gossip_err("%s: device cannot be opened outside init_user_ns\n",
127 __func__);
128 goto out;
129 }
130
Mike Marshall5db11c22015-07-17 10:38:12 -0400131 if (!(file->f_flags & O_NONBLOCK)) {
Mike Marshall97f10022015-12-11 16:45:03 -0500132 gossip_err("%s: device cannot be opened in blocking mode\n",
133 __func__);
Mike Marshall5db11c22015-07-17 10:38:12 -0400134 goto out;
135 }
136 ret = -EACCES;
Mike Marshall97f10022015-12-11 16:45:03 -0500137 gossip_debug(GOSSIP_DEV_DEBUG, "client-core: opening device\n");
Mike Marshall5db11c22015-07-17 10:38:12 -0400138 mutex_lock(&devreq_mutex);
139
140 if (open_access_count == 0) {
Al Virofee25ce2016-01-22 19:46:08 -0500141 open_access_count = 1;
Al Virofb6d2522016-01-19 12:00:26 -0500142 ret = 0;
Mike Marshall5db11c22015-07-17 10:38:12 -0400143 } else {
144 DUMP_DEVICE_ERROR();
145 }
146 mutex_unlock(&devreq_mutex);
147
148out:
149
150 gossip_debug(GOSSIP_DEV_DEBUG,
151 "pvfs2-client-core: open device complete (ret = %d)\n",
152 ret);
153 return ret;
154}
155
Mike Marshall97f10022015-12-11 16:45:03 -0500156/* Function for read() callers into the device */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500157static ssize_t orangefs_devreq_read(struct file *file,
Mike Marshall5db11c22015-07-17 10:38:12 -0400158 char __user *buf,
159 size_t count, loff_t *offset)
160{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500161 struct orangefs_kernel_op_s *op, *temp;
162 __s32 proto_ver = ORANGEFS_KERNEL_PROTO_VERSION;
163 static __s32 magic = ORANGEFS_DEVREQ_MAGIC;
164 struct orangefs_kernel_op_s *cur_op = NULL;
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500165 unsigned long ret;
Mike Marshall5db11c22015-07-17 10:38:12 -0400166
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500167 /* We do not support blocking IO. */
Mike Marshall5db11c22015-07-17 10:38:12 -0400168 if (!(file->f_flags & O_NONBLOCK)) {
Mike Marshall97f10022015-12-11 16:45:03 -0500169 gossip_err("%s: blocking read from client-core.\n",
170 __func__);
Mike Marshall5db11c22015-07-17 10:38:12 -0400171 return -EINVAL;
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500172 }
173
174 /*
Martin Brandenburga762ae62015-12-15 14:22:06 -0500175 * The client will do an ioctl to find MAX_DEV_REQ_UPSIZE, then
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500176 * always read with that size buffer.
177 */
Martin Brandenburga762ae62015-12-15 14:22:06 -0500178 if (count != MAX_DEV_REQ_UPSIZE) {
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500179 gossip_err("orangefs: client-core tried to read wrong size\n");
180 return -EINVAL;
181 }
182
Martin Brandenburgb7a57cc2017-04-25 15:38:06 -0400183 /* Check for an empty list before locking. */
184 if (list_empty(&orangefs_request_list))
185 return -EAGAIN;
186
Al Viroed42fe02016-01-22 19:47:47 -0500187restart:
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500188 /* Get next op (if any) from top of list. */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500189 spin_lock(&orangefs_request_list_lock);
190 list_for_each_entry_safe(op, temp, &orangefs_request_list, list) {
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500191 __s32 fsid;
192 /* This lock is held past the end of the loop when we break. */
193 spin_lock(&op->lock);
Al Viro05a50a52016-02-18 18:59:44 -0500194 if (unlikely(op_state_purged(op) || op_state_given_up(op))) {
Al Viroed42fe02016-01-22 19:47:47 -0500195 spin_unlock(&op->lock);
196 continue;
197 }
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500198
199 fsid = fsid_of_op(op);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500200 if (fsid != ORANGEFS_FS_ID_NULL) {
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500201 int ret;
202 /* Skip ops whose filesystem needs to be mounted. */
203 ret = fs_mount_pending(fsid);
204 if (ret == 1) {
Mike Marshall5db11c22015-07-17 10:38:12 -0400205 gossip_debug(GOSSIP_DEV_DEBUG,
Mike Marshall5090c962016-02-04 13:29:27 -0500206 "%s: mount pending, skipping op tag "
207 "%llu %s\n",
208 __func__,
209 llu(op->tag),
210 get_opname_string(op));
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500211 spin_unlock(&op->lock);
Mike Marshall5db11c22015-07-17 10:38:12 -0400212 continue;
Mike Marshall97f10022015-12-11 16:45:03 -0500213 /*
214 * Skip ops whose filesystem we don't know about unless
Martin Brandenburg1ec16882017-04-14 14:22:41 -0400215 * it is being mounted or unmounted. It is possible for
216 * a filesystem we don't know about to be unmounted if
217 * it fails to mount in the kernel after userspace has
218 * been sent the mount request.
Mike Marshall97f10022015-12-11 16:45:03 -0500219 */
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500220 /* XXX: is there a better way to detect this? */
221 } else if (ret == -1 &&
Mike Marshall97f10022015-12-11 16:45:03 -0500222 !(op->upcall.type ==
223 ORANGEFS_VFS_OP_FS_MOUNT ||
224 op->upcall.type ==
Martin Brandenburg1ec16882017-04-14 14:22:41 -0400225 ORANGEFS_VFS_OP_GETATTR ||
226 op->upcall.type ==
227 ORANGEFS_VFS_OP_FS_UMOUNT)) {
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500228 gossip_debug(GOSSIP_DEV_DEBUG,
229 "orangefs: skipping op tag %llu %s\n",
230 llu(op->tag), get_opname_string(op));
231 gossip_err(
232 "orangefs: ERROR: fs_mount_pending %d\n",
233 fsid);
234 spin_unlock(&op->lock);
235 continue;
Mike Marshall5db11c22015-07-17 10:38:12 -0400236 }
237 }
Mike Marshall5db11c22015-07-17 10:38:12 -0400238 /*
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500239 * Either this op does not pertain to a filesystem, is mounting
240 * a filesystem, or pertains to a mounted filesystem. Let it
241 * through.
Mike Marshall5db11c22015-07-17 10:38:12 -0400242 */
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500243 cur_op = op;
244 break;
Mike Marshall5db11c22015-07-17 10:38:12 -0400245 }
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500246
247 /*
248 * At this point we either have a valid op and can continue or have not
249 * found an op and must ask the client to try again later.
250 */
251 if (!cur_op) {
Yi Liu8bb8aef2015-11-24 15:12:14 -0500252 spin_unlock(&orangefs_request_list_lock);
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500253 return -EAGAIN;
254 }
255
Mike Marshallca9f5182016-02-26 10:21:12 -0500256 gossip_debug(GOSSIP_DEV_DEBUG, "%s: reading op tag %llu %s\n",
257 __func__,
258 llu(cur_op->tag),
259 get_opname_string(cur_op));
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500260
261 /*
262 * Such an op should never be on the list in the first place. If so, we
263 * will abort.
264 */
265 if (op_state_in_progress(cur_op) || op_state_serviced(cur_op)) {
266 gossip_err("orangefs: ERROR: Current op already queued.\n");
Al Viro05a50a52016-02-18 18:59:44 -0500267 list_del_init(&cur_op->list);
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500268 spin_unlock(&cur_op->lock);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500269 spin_unlock(&orangefs_request_list_lock);
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500270 return -EAGAIN;
271 }
Mike Marshallca9f5182016-02-26 10:21:12 -0500272
Al Viroed42fe02016-01-22 19:47:47 -0500273 list_del_init(&cur_op->list);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500274 spin_unlock(&orangefs_request_list_lock);
Al Viroed42fe02016-01-22 19:47:47 -0500275
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500276 spin_unlock(&cur_op->lock);
277
278 /* Push the upcall out. */
279 ret = copy_to_user(buf, &proto_ver, sizeof(__s32));
280 if (ret != 0)
281 goto error;
282 ret = copy_to_user(buf+sizeof(__s32), &magic, sizeof(__s32));
283 if (ret != 0)
284 goto error;
285 ret = copy_to_user(buf+2 * sizeof(__s32), &cur_op->tag, sizeof(__u64));
286 if (ret != 0)
287 goto error;
288 ret = copy_to_user(buf+2*sizeof(__s32)+sizeof(__u64), &cur_op->upcall,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500289 sizeof(struct orangefs_upcall_s));
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500290 if (ret != 0)
291 goto error;
292
Martin Brandenburg1d503612016-08-16 11:38:14 -0400293 spin_lock(&orangefs_htable_ops_in_progress_lock);
Al Viroed42fe02016-01-22 19:47:47 -0500294 spin_lock(&cur_op->lock);
295 if (unlikely(op_state_given_up(cur_op))) {
296 spin_unlock(&cur_op->lock);
Martin Brandenburg1d503612016-08-16 11:38:14 -0400297 spin_unlock(&orangefs_htable_ops_in_progress_lock);
Al Viro05a50a52016-02-18 18:59:44 -0500298 complete(&cur_op->waitq);
Al Viroed42fe02016-01-22 19:47:47 -0500299 goto restart;
300 }
301
302 /*
303 * Set the operation to be in progress and move it between lists since
304 * it has been sent to the client.
305 */
306 set_op_state_inprogress(cur_op);
Mike Marshall9d9e7ba2016-03-03 13:46:48 -0500307 gossip_debug(GOSSIP_DEV_DEBUG,
308 "%s: 1 op:%s: op_state:%d: process:%s:\n",
309 __func__,
310 get_opname_string(cur_op),
311 cur_op->op_state,
312 current->comm);
Al Viroed42fe02016-01-22 19:47:47 -0500313 orangefs_devreq_add_op(cur_op);
314 spin_unlock(&cur_op->lock);
Martin Brandenburg1d503612016-08-16 11:38:14 -0400315 spin_unlock(&orangefs_htable_ops_in_progress_lock);
Al Viroed42fe02016-01-22 19:47:47 -0500316
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500317 /* The client only asks to read one size buffer. */
Martin Brandenburga762ae62015-12-15 14:22:06 -0500318 return MAX_DEV_REQ_UPSIZE;
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500319error:
320 /*
321 * We were unable to copy the op data to the client. Put the op back in
322 * list. If client has crashed, the op will be purged later when the
323 * device is released.
324 */
325 gossip_err("orangefs: Failed to copy data to user space\n");
Yi Liu8bb8aef2015-11-24 15:12:14 -0500326 spin_lock(&orangefs_request_list_lock);
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500327 spin_lock(&cur_op->lock);
Al Viroed42fe02016-01-22 19:47:47 -0500328 if (likely(!op_state_given_up(cur_op))) {
329 set_op_state_waiting(cur_op);
Mike Marshall9d9e7ba2016-03-03 13:46:48 -0500330 gossip_debug(GOSSIP_DEV_DEBUG,
331 "%s: 2 op:%s: op_state:%d: process:%s:\n",
332 __func__,
333 get_opname_string(cur_op),
334 cur_op->op_state,
335 current->comm);
Al Viroed42fe02016-01-22 19:47:47 -0500336 list_add(&cur_op->list, &orangefs_request_list);
Al Viro05a50a52016-02-18 18:59:44 -0500337 spin_unlock(&cur_op->lock);
338 } else {
339 spin_unlock(&cur_op->lock);
340 complete(&cur_op->waitq);
Al Viroed42fe02016-01-22 19:47:47 -0500341 }
Yi Liu8bb8aef2015-11-24 15:12:14 -0500342 spin_unlock(&orangefs_request_list_lock);
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500343 return -EFAULT;
Mike Marshall5db11c22015-07-17 10:38:12 -0400344}
345
Mike Marshall97f10022015-12-11 16:45:03 -0500346/*
Mike Marshallb3ae4752016-01-13 11:18:12 -0500347 * Function for writev() callers into the device.
348 *
349 * Userspace should have written:
350 * - __u32 version
351 * - __u32 magic
352 * - __u64 tag
353 * - struct orangefs_downcall_s
354 * - trailer buffer (in the case of READDIR operations)
Mike Marshall97f10022015-12-11 16:45:03 -0500355 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500356static ssize_t orangefs_devreq_write_iter(struct kiocb *iocb,
Mike Marshall5db11c22015-07-17 10:38:12 -0400357 struct iov_iter *iter)
358{
Mike Marshallb3ae4752016-01-13 11:18:12 -0500359 ssize_t ret;
360 struct orangefs_kernel_op_s *op = NULL;
361 struct {
362 __u32 version;
363 __u32 magic;
364 __u64 tag;
365 } head;
366 int total = ret = iov_iter_count(iter);
Mike Marshallb3ae4752016-01-13 11:18:12 -0500367 int downcall_size = sizeof(struct orangefs_downcall_s);
368 int head_size = sizeof(head);
369
370 gossip_debug(GOSSIP_DEV_DEBUG, "%s: total:%d: ret:%zd:\n",
371 __func__,
372 total,
373 ret);
374
375 if (total < MAX_DEV_REQ_DOWNSIZE) {
Mike Marshallcf0c2772016-01-19 12:04:40 -0500376 gossip_err("%s: total:%d: must be at least:%u:\n",
Mike Marshallb3ae4752016-01-13 11:18:12 -0500377 __func__,
378 total,
Mike Marshallcf0c2772016-01-19 12:04:40 -0500379 (unsigned int) MAX_DEV_REQ_DOWNSIZE);
Al Viroed42fe02016-01-22 19:47:47 -0500380 return -EFAULT;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500381 }
382
Al Virocbbd26b2016-11-01 22:09:04 -0400383 if (!copy_from_iter_full(&head, head_size, iter)) {
Mike Marshallb3ae4752016-01-13 11:18:12 -0500384 gossip_err("%s: failed to copy head.\n", __func__);
Al Viroed42fe02016-01-22 19:47:47 -0500385 return -EFAULT;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500386 }
387
388 if (head.version < ORANGEFS_MINIMUM_USERSPACE_VERSION) {
389 gossip_err("%s: userspace claims version"
390 "%d, minimum version required: %d.\n",
391 __func__,
392 head.version,
393 ORANGEFS_MINIMUM_USERSPACE_VERSION);
Al Viroed42fe02016-01-22 19:47:47 -0500394 return -EPROTO;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500395 }
396
397 if (head.magic != ORANGEFS_DEVREQ_MAGIC) {
398 gossip_err("Error: Device magic number does not match.\n");
Al Viroed42fe02016-01-22 19:47:47 -0500399 return -EPROTO;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500400 }
401
Martin Brandenburg482664d2016-08-12 12:02:31 -0400402 if (!orangefs_userspace_version) {
403 orangefs_userspace_version = head.version;
404 } else if (orangefs_userspace_version != head.version) {
Martin Brandenburgf2ee3b72016-08-09 15:59:26 -0400405 gossip_err("Error: userspace version changes\n");
406 return -EPROTO;
407 }
408
Mike Marshallca9f5182016-02-26 10:21:12 -0500409 /* remove the op from the in progress hash table */
Mike Marshallb3ae4752016-01-13 11:18:12 -0500410 op = orangefs_devreq_remove_op(head.tag);
411 if (!op) {
Mike Marshall05973c22017-02-09 14:38:50 -0500412 gossip_debug(GOSSIP_DEV_DEBUG,
413 "%s: No one's waiting for tag %llu\n",
414 __func__, llu(head.tag));
Al Viroed42fe02016-01-22 19:47:47 -0500415 return ret;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500416 }
417
Al Virocbbd26b2016-11-01 22:09:04 -0400418 if (!copy_from_iter_full(&op->downcall, downcall_size, iter)) {
Mike Marshallb3ae4752016-01-13 11:18:12 -0500419 gossip_err("%s: failed to copy downcall.\n", __func__);
Al Viro5964c1b2016-02-18 18:53:41 -0500420 goto Efault;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500421 }
422
423 if (op->downcall.status)
424 goto wakeup;
425
426 /*
427 * We've successfully peeled off the head and the downcall.
428 * Something has gone awry if total doesn't equal the
429 * sum of head_size, downcall_size and trailer_size.
430 */
431 if ((head_size + downcall_size + op->downcall.trailer_size) != total) {
432 gossip_err("%s: funky write, head_size:%d"
433 ": downcall_size:%d: trailer_size:%lld"
434 ": total size:%d:\n",
435 __func__,
436 head_size,
437 downcall_size,
438 op->downcall.trailer_size,
439 total);
Al Viro5964c1b2016-02-18 18:53:41 -0500440 goto Efault;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500441 }
442
443 /* Only READDIR operations should have trailers. */
444 if ((op->downcall.type != ORANGEFS_VFS_OP_READDIR) &&
445 (op->downcall.trailer_size != 0)) {
446 gossip_err("%s: %x operation with trailer.",
447 __func__,
448 op->downcall.type);
Al Viro5964c1b2016-02-18 18:53:41 -0500449 goto Efault;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500450 }
451
452 /* READDIR operations should always have trailers. */
453 if ((op->downcall.type == ORANGEFS_VFS_OP_READDIR) &&
454 (op->downcall.trailer_size == 0)) {
455 gossip_err("%s: %x operation with no trailer.",
456 __func__,
457 op->downcall.type);
Al Viro5964c1b2016-02-18 18:53:41 -0500458 goto Efault;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500459 }
460
461 if (op->downcall.type != ORANGEFS_VFS_OP_READDIR)
462 goto wakeup;
463
464 op->downcall.trailer_buf =
465 vmalloc(op->downcall.trailer_size);
466 if (op->downcall.trailer_buf == NULL) {
467 gossip_err("%s: failed trailer vmalloc.\n",
468 __func__);
Al Viro5964c1b2016-02-18 18:53:41 -0500469 goto Enomem;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500470 }
471 memset(op->downcall.trailer_buf, 0, op->downcall.trailer_size);
Al Virocbbd26b2016-11-01 22:09:04 -0400472 if (!copy_from_iter_full(op->downcall.trailer_buf,
473 op->downcall.trailer_size, iter)) {
Mike Marshallb3ae4752016-01-13 11:18:12 -0500474 gossip_err("%s: failed to copy trailer.\n", __func__);
475 vfree(op->downcall.trailer_buf);
Al Viro5964c1b2016-02-18 18:53:41 -0500476 goto Efault;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500477 }
478
479wakeup:
Al Viro2a9e5c22016-01-23 13:45:46 -0500480 /*
Mike Marshall9f08cfe2016-02-26 14:39:08 -0500481 * Return to vfs waitqueue, and back to service_operation
482 * through wait_for_matching_downcall.
Al Viro2a9e5c22016-01-23 13:45:46 -0500483 */
484 spin_lock(&op->lock);
Al Viro5964c1b2016-02-18 18:53:41 -0500485 if (unlikely(op_is_cancel(op))) {
Al Viro2a9e5c22016-01-23 13:45:46 -0500486 spin_unlock(&op->lock);
Al Viro78699e22016-02-11 23:07:19 -0500487 put_cancel(op);
Al Viro5964c1b2016-02-18 18:53:41 -0500488 } else if (unlikely(op_state_given_up(op))) {
489 spin_unlock(&op->lock);
Al Viro05a50a52016-02-18 18:59:44 -0500490 complete(&op->waitq);
Al Viro5964c1b2016-02-18 18:53:41 -0500491 } else {
492 set_op_state_serviced(op);
Mike Marshall9d9e7ba2016-03-03 13:46:48 -0500493 gossip_debug(GOSSIP_DEV_DEBUG,
494 "%s: op:%s: op_state:%d: process:%s:\n",
495 __func__,
496 get_opname_string(op),
497 op->op_state,
498 current->comm);
Al Viro5964c1b2016-02-18 18:53:41 -0500499 spin_unlock(&op->lock);
500 }
Mike Marshallb3ae4752016-01-13 11:18:12 -0500501 return ret;
Al Viroed42fe02016-01-22 19:47:47 -0500502
Al Viro5964c1b2016-02-18 18:53:41 -0500503Efault:
504 op->downcall.status = -(ORANGEFS_ERROR_BIT | 9);
505 ret = -EFAULT;
506 goto wakeup;
507
508Enomem:
509 op->downcall.status = -(ORANGEFS_ERROR_BIT | 8);
510 ret = -ENOMEM;
511 goto wakeup;
Mike Marshall5db11c22015-07-17 10:38:12 -0400512}
513
Mike Marshall5db11c22015-07-17 10:38:12 -0400514/*
515 * NOTE: gets called when the last reference to this device is dropped.
516 * Using the open_access_count variable, we enforce a reference count
517 * on this file so that it can be opened by only one process at a time.
518 * the devreq_mutex is used to make sure all i/o has completed
Yi Liu8bb8aef2015-11-24 15:12:14 -0500519 * before we call orangefs_bufmap_finalize, and similar such tricky
Mike Marshall5db11c22015-07-17 10:38:12 -0400520 * situations
521 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500522static int orangefs_devreq_release(struct inode *inode, struct file *file)
Mike Marshall5db11c22015-07-17 10:38:12 -0400523{
524 int unmounted = 0;
525
526 gossip_debug(GOSSIP_DEV_DEBUG,
527 "%s:pvfs2-client-core: exiting, closing device\n",
528 __func__);
529
530 mutex_lock(&devreq_mutex);
Al Viroea2c9c92016-02-13 21:01:21 -0500531 orangefs_bufmap_finalize();
Mike Marshall5db11c22015-07-17 10:38:12 -0400532
Al Virofee25ce2016-01-22 19:46:08 -0500533 open_access_count = -1;
Mike Marshall5db11c22015-07-17 10:38:12 -0400534
535 unmounted = mark_all_pending_mounts();
Yi Liu8bb8aef2015-11-24 15:12:14 -0500536 gossip_debug(GOSSIP_DEV_DEBUG, "ORANGEFS Device Close: Filesystem(s) %s\n",
Mike Marshall5db11c22015-07-17 10:38:12 -0400537 (unmounted ? "UNMOUNTED" : "MOUNTED"));
Mike Marshall5db11c22015-07-17 10:38:12 -0400538
Mike Marshall5db11c22015-07-17 10:38:12 -0400539 purge_waiting_ops();
Mike Marshall5db11c22015-07-17 10:38:12 -0400540 purge_inprogress_ops();
Al Viroea2c9c92016-02-13 21:01:21 -0500541
542 orangefs_bufmap_run_down();
543
Mike Marshall5db11c22015-07-17 10:38:12 -0400544 gossip_debug(GOSSIP_DEV_DEBUG,
545 "pvfs2-client-core: device close complete\n");
Al Virofee25ce2016-01-22 19:46:08 -0500546 open_access_count = 0;
Martin Brandenburg482664d2016-08-12 12:02:31 -0400547 orangefs_userspace_version = 0;
Al Virofee25ce2016-01-22 19:46:08 -0500548 mutex_unlock(&devreq_mutex);
Mike Marshall5db11c22015-07-17 10:38:12 -0400549 return 0;
550}
551
552int is_daemon_in_service(void)
553{
554 int in_service;
555
556 /*
557 * What this function does is checks if client-core is alive
558 * based on the access count we maintain on the device.
559 */
560 mutex_lock(&devreq_mutex);
561 in_service = open_access_count == 1 ? 0 : -EIO;
562 mutex_unlock(&devreq_mutex);
563 return in_service;
564}
565
Al Viro78699e22016-02-11 23:07:19 -0500566bool __is_daemon_in_service(void)
567{
568 return open_access_count == 1;
569}
570
Mike Marshall5db11c22015-07-17 10:38:12 -0400571static inline long check_ioctl_command(unsigned int command)
572{
573 /* Check for valid ioctl codes */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500574 if (_IOC_TYPE(command) != ORANGEFS_DEV_MAGIC) {
Mike Marshall5db11c22015-07-17 10:38:12 -0400575 gossip_err("device ioctl magic numbers don't match! Did you rebuild pvfs2-client-core/libpvfs2? [cmd %x, magic %x != %x]\n",
576 command,
577 _IOC_TYPE(command),
Yi Liu8bb8aef2015-11-24 15:12:14 -0500578 ORANGEFS_DEV_MAGIC);
Mike Marshall5db11c22015-07-17 10:38:12 -0400579 return -EINVAL;
580 }
581 /* and valid ioctl commands */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500582 if (_IOC_NR(command) >= ORANGEFS_DEV_MAXNR || _IOC_NR(command) <= 0) {
Mike Marshall5db11c22015-07-17 10:38:12 -0400583 gossip_err("Invalid ioctl command number [%d >= %d]\n",
Yi Liu8bb8aef2015-11-24 15:12:14 -0500584 _IOC_NR(command), ORANGEFS_DEV_MAXNR);
Mike Marshall5db11c22015-07-17 10:38:12 -0400585 return -ENOIOCTLCMD;
586 }
587 return 0;
588}
589
590static long dispatch_ioctl_command(unsigned int command, unsigned long arg)
591{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500592 static __s32 magic = ORANGEFS_DEVREQ_MAGIC;
Martin Brandenburga762ae62015-12-15 14:22:06 -0500593 static __s32 max_up_size = MAX_DEV_REQ_UPSIZE;
594 static __s32 max_down_size = MAX_DEV_REQ_DOWNSIZE;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500595 struct ORANGEFS_dev_map_desc user_desc;
Mike Marshall5db11c22015-07-17 10:38:12 -0400596 int ret = 0;
Mike Marshall5db11c22015-07-17 10:38:12 -0400597 int upstream_kmod = 1;
Al Viro45996492016-03-25 19:56:34 -0400598 struct orangefs_sb_info_s *orangefs_sb;
Mike Marshall5db11c22015-07-17 10:38:12 -0400599
600 /* mtmoore: add locking here */
601
602 switch (command) {
Yi Liu8bb8aef2015-11-24 15:12:14 -0500603 case ORANGEFS_DEV_GET_MAGIC:
Mike Marshall5db11c22015-07-17 10:38:12 -0400604 return ((put_user(magic, (__s32 __user *) arg) == -EFAULT) ?
605 -EIO :
606 0);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500607 case ORANGEFS_DEV_GET_MAX_UPSIZE:
Mike Marshall5db11c22015-07-17 10:38:12 -0400608 return ((put_user(max_up_size,
609 (__s32 __user *) arg) == -EFAULT) ?
610 -EIO :
611 0);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500612 case ORANGEFS_DEV_GET_MAX_DOWNSIZE:
Mike Marshall5db11c22015-07-17 10:38:12 -0400613 return ((put_user(max_down_size,
614 (__s32 __user *) arg) == -EFAULT) ?
615 -EIO :
616 0);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500617 case ORANGEFS_DEV_MAP:
Mike Marshall5db11c22015-07-17 10:38:12 -0400618 ret = copy_from_user(&user_desc,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500619 (struct ORANGEFS_dev_map_desc __user *)
Mike Marshall5db11c22015-07-17 10:38:12 -0400620 arg,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500621 sizeof(struct ORANGEFS_dev_map_desc));
Al Viroea2c9c92016-02-13 21:01:21 -0500622 /* WTF -EIO and not -EFAULT? */
623 return ret ? -EIO : orangefs_bufmap_initialize(&user_desc);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500624 case ORANGEFS_DEV_REMOUNT_ALL:
Mike Marshall5db11c22015-07-17 10:38:12 -0400625 gossip_debug(GOSSIP_DEV_DEBUG,
Mike Marshall97f10022015-12-11 16:45:03 -0500626 "%s: got ORANGEFS_DEV_REMOUNT_ALL\n",
627 __func__);
Mike Marshall5db11c22015-07-17 10:38:12 -0400628
629 /*
Yi Liu8bb8aef2015-11-24 15:12:14 -0500630 * remount all mounted orangefs volumes to regain the lost
Mike Marshall5db11c22015-07-17 10:38:12 -0400631 * dynamic mount tables (if any) -- NOTE: this is done
632 * without keeping the superblock list locked due to the
Mike Marshalladcf34a2016-02-24 16:54:27 -0500633 * upcall/downcall waiting. also, the request mutex is
Mike Marshall5db11c22015-07-17 10:38:12 -0400634 * used to ensure that no operations will be serviced until
635 * all of the remounts are serviced (to avoid ops between
636 * mounts to fail)
637 */
Martin Brandenburg1d503612016-08-16 11:38:14 -0400638 ret = mutex_lock_interruptible(&orangefs_request_mutex);
Mike Marshall5db11c22015-07-17 10:38:12 -0400639 if (ret < 0)
640 return ret;
641 gossip_debug(GOSSIP_DEV_DEBUG,
Mike Marshall97f10022015-12-11 16:45:03 -0500642 "%s: priority remount in progress\n",
643 __func__);
Al Viro45996492016-03-25 19:56:34 -0400644 spin_lock(&orangefs_superblocks_lock);
645 list_for_each_entry(orangefs_sb, &orangefs_superblocks, list) {
646 /*
647 * We have to drop the spinlock, so entries can be
648 * removed. They can't be freed, though, so we just
649 * keep the forward pointers and zero the back ones -
650 * that way we can get to the rest of the list.
651 */
652 if (!orangefs_sb->list.prev)
653 continue;
654 gossip_debug(GOSSIP_DEV_DEBUG,
655 "%s: Remounting SB %p\n",
656 __func__,
657 orangefs_sb);
Mike Marshall5db11c22015-07-17 10:38:12 -0400658
Al Viro45996492016-03-25 19:56:34 -0400659 spin_unlock(&orangefs_superblocks_lock);
660 ret = orangefs_remount(orangefs_sb);
661 spin_lock(&orangefs_superblocks_lock);
662 if (ret) {
663 gossip_debug(GOSSIP_DEV_DEBUG,
664 "SB %p remount failed\n",
665 orangefs_sb);
666 break;
Mike Marshall5db11c22015-07-17 10:38:12 -0400667 }
668 }
Al Viro45996492016-03-25 19:56:34 -0400669 spin_unlock(&orangefs_superblocks_lock);
Mike Marshall5db11c22015-07-17 10:38:12 -0400670 gossip_debug(GOSSIP_DEV_DEBUG,
Mike Marshall97f10022015-12-11 16:45:03 -0500671 "%s: priority remount complete\n",
672 __func__);
Martin Brandenburg1d503612016-08-16 11:38:14 -0400673 mutex_unlock(&orangefs_request_mutex);
Mike Marshall5db11c22015-07-17 10:38:12 -0400674 return ret;
675
Yi Liu8bb8aef2015-11-24 15:12:14 -0500676 case ORANGEFS_DEV_UPSTREAM:
Mike Marshall5db11c22015-07-17 10:38:12 -0400677 ret = copy_to_user((void __user *)arg,
678 &upstream_kmod,
679 sizeof(upstream_kmod));
680
681 if (ret != 0)
682 return -EIO;
683 else
684 return ret;
685
Yi Liu8bb8aef2015-11-24 15:12:14 -0500686 case ORANGEFS_DEV_CLIENT_MASK:
Martin Brandenburg44f46412016-08-15 11:38:36 -0400687 return orangefs_debugfs_new_client_mask((void __user *)arg);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500688 case ORANGEFS_DEV_CLIENT_STRING:
Martin Brandenburg44f46412016-08-15 11:38:36 -0400689 return orangefs_debugfs_new_client_string((void __user *)arg);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500690 case ORANGEFS_DEV_DEBUG:
Martin Brandenburg44f46412016-08-15 11:38:36 -0400691 return orangefs_debugfs_new_debug((void __user *)arg);
Mike Marshall5db11c22015-07-17 10:38:12 -0400692 default:
693 return -ENOIOCTLCMD;
694 }
695 return -ENOIOCTLCMD;
696}
697
Yi Liu8bb8aef2015-11-24 15:12:14 -0500698static long orangefs_devreq_ioctl(struct file *file,
Mike Marshall5db11c22015-07-17 10:38:12 -0400699 unsigned int command, unsigned long arg)
700{
701 long ret;
702
703 /* Check for properly constructed commands */
704 ret = check_ioctl_command(command);
705 if (ret < 0)
706 return (int)ret;
707
708 return (int)dispatch_ioctl_command(command, arg);
709}
710
711#ifdef CONFIG_COMPAT /* CONFIG_COMPAT is in .config */
712
Yi Liu8bb8aef2015-11-24 15:12:14 -0500713/* Compat structure for the ORANGEFS_DEV_MAP ioctl */
714struct ORANGEFS_dev_map_desc32 {
Mike Marshall5db11c22015-07-17 10:38:12 -0400715 compat_uptr_t ptr;
716 __s32 total_size;
717 __s32 size;
718 __s32 count;
719};
720
721static unsigned long translate_dev_map26(unsigned long args, long *error)
722{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500723 struct ORANGEFS_dev_map_desc32 __user *p32 = (void __user *)args;
Mike Marshall5db11c22015-07-17 10:38:12 -0400724 /*
725 * Depending on the architecture, allocate some space on the
726 * user-call-stack based on our expected layout.
727 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500728 struct ORANGEFS_dev_map_desc __user *p =
Mike Marshall5db11c22015-07-17 10:38:12 -0400729 compat_alloc_user_space(sizeof(*p));
Mike Marshall84d02152015-07-28 13:27:51 -0400730 compat_uptr_t addr;
Mike Marshall5db11c22015-07-17 10:38:12 -0400731
732 *error = 0;
733 /* get the ptr from the 32 bit user-space */
734 if (get_user(addr, &p32->ptr))
735 goto err;
736 /* try to put that into a 64-bit layout */
737 if (put_user(compat_ptr(addr), &p->ptr))
738 goto err;
739 /* copy the remaining fields */
740 if (copy_in_user(&p->total_size, &p32->total_size, sizeof(__s32)))
741 goto err;
742 if (copy_in_user(&p->size, &p32->size, sizeof(__s32)))
743 goto err;
744 if (copy_in_user(&p->count, &p32->count, sizeof(__s32)))
745 goto err;
746 return (unsigned long)p;
747err:
748 *error = -EFAULT;
749 return 0;
750}
751
752/*
753 * 32 bit user-space apps' ioctl handlers when kernel modules
754 * is compiled as a 64 bit one
755 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500756static long orangefs_devreq_compat_ioctl(struct file *filp, unsigned int cmd,
Mike Marshall5db11c22015-07-17 10:38:12 -0400757 unsigned long args)
758{
759 long ret;
760 unsigned long arg = args;
761
762 /* Check for properly constructed commands */
763 ret = check_ioctl_command(cmd);
764 if (ret < 0)
765 return ret;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500766 if (cmd == ORANGEFS_DEV_MAP) {
Mike Marshall5db11c22015-07-17 10:38:12 -0400767 /*
768 * convert the arguments to what we expect internally
769 * in kernel space
770 */
771 arg = translate_dev_map26(args, &ret);
772 if (ret < 0) {
773 gossip_err("Could not translate dev map\n");
774 return ret;
775 }
776 }
777 /* no other ioctl requires translation */
778 return dispatch_ioctl_command(cmd, arg);
779}
780
Mike Marshall2c590d52015-07-24 10:37:15 -0400781#endif /* CONFIG_COMPAT is in .config */
782
Mike Marshall5db11c22015-07-17 10:38:12 -0400783/* the assigned character device major number */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500784static int orangefs_dev_major;
Mike Marshall5db11c22015-07-17 10:38:12 -0400785
786/*
Yi Liu8bb8aef2015-11-24 15:12:14 -0500787 * Initialize orangefs device specific state:
Mike Marshall5db11c22015-07-17 10:38:12 -0400788 * Must be called at module load time only
789 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500790int orangefs_dev_init(void)
Mike Marshall5db11c22015-07-17 10:38:12 -0400791{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500792 /* register orangefs-req device */
793 orangefs_dev_major = register_chrdev(0,
794 ORANGEFS_REQDEVICE_NAME,
795 &orangefs_devreq_file_operations);
796 if (orangefs_dev_major < 0) {
Mike Marshall5db11c22015-07-17 10:38:12 -0400797 gossip_debug(GOSSIP_DEV_DEBUG,
798 "Failed to register /dev/%s (error %d)\n",
Yi Liu8bb8aef2015-11-24 15:12:14 -0500799 ORANGEFS_REQDEVICE_NAME, orangefs_dev_major);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500800 return orangefs_dev_major;
Mike Marshall5db11c22015-07-17 10:38:12 -0400801 }
802
803 gossip_debug(GOSSIP_DEV_DEBUG,
804 "*** /dev/%s character device registered ***\n",
Yi Liu8bb8aef2015-11-24 15:12:14 -0500805 ORANGEFS_REQDEVICE_NAME);
Mike Marshall5db11c22015-07-17 10:38:12 -0400806 gossip_debug(GOSSIP_DEV_DEBUG, "'mknod /dev/%s c %d 0'.\n",
Yi Liu8bb8aef2015-11-24 15:12:14 -0500807 ORANGEFS_REQDEVICE_NAME, orangefs_dev_major);
Mike Marshall5db11c22015-07-17 10:38:12 -0400808 return 0;
809}
810
Yi Liu8bb8aef2015-11-24 15:12:14 -0500811void orangefs_dev_cleanup(void)
Mike Marshall5db11c22015-07-17 10:38:12 -0400812{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500813 unregister_chrdev(orangefs_dev_major, ORANGEFS_REQDEVICE_NAME);
Mike Marshall5db11c22015-07-17 10:38:12 -0400814 gossip_debug(GOSSIP_DEV_DEBUG,
815 "*** /dev/%s character device unregistered ***\n",
Yi Liu8bb8aef2015-11-24 15:12:14 -0500816 ORANGEFS_REQDEVICE_NAME);
Mike Marshall5db11c22015-07-17 10:38:12 -0400817}
818
Yi Liu8bb8aef2015-11-24 15:12:14 -0500819static unsigned int orangefs_devreq_poll(struct file *file,
Mike Marshall5db11c22015-07-17 10:38:12 -0400820 struct poll_table_struct *poll_table)
821{
822 int poll_revent_mask = 0;
823
Al Viro83595db2016-01-19 12:03:05 -0500824 poll_wait(file, &orangefs_request_list_waitq, poll_table);
Mike Marshall5db11c22015-07-17 10:38:12 -0400825
Al Viro83595db2016-01-19 12:03:05 -0500826 if (!list_empty(&orangefs_request_list))
827 poll_revent_mask |= POLL_IN;
Mike Marshall5db11c22015-07-17 10:38:12 -0400828 return poll_revent_mask;
829}
830
Yi Liu8bb8aef2015-11-24 15:12:14 -0500831const struct file_operations orangefs_devreq_file_operations = {
Mike Marshall5db11c22015-07-17 10:38:12 -0400832 .owner = THIS_MODULE,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500833 .read = orangefs_devreq_read,
834 .write_iter = orangefs_devreq_write_iter,
835 .open = orangefs_devreq_open,
836 .release = orangefs_devreq_release,
837 .unlocked_ioctl = orangefs_devreq_ioctl,
Mike Marshall5db11c22015-07-17 10:38:12 -0400838
839#ifdef CONFIG_COMPAT /* CONFIG_COMPAT is in .config */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500840 .compat_ioctl = orangefs_devreq_compat_ioctl,
Mike Marshall5db11c22015-07-17 10:38:12 -0400841#endif
Yi Liu8bb8aef2015-11-24 15:12:14 -0500842 .poll = orangefs_devreq_poll
Mike Marshall5db11c22015-07-17 10:38:12 -0400843};