blob: fe2cbeb90772aabf399aea2809b34af552efac98 [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
Al Viroed42fe02016-01-22 19:47:47 -0500183restart:
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500184 /* Get next op (if any) from top of list. */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500185 spin_lock(&orangefs_request_list_lock);
186 list_for_each_entry_safe(op, temp, &orangefs_request_list, list) {
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500187 __s32 fsid;
188 /* This lock is held past the end of the loop when we break. */
189 spin_lock(&op->lock);
Al Viro05a50a52016-02-18 18:59:44 -0500190 if (unlikely(op_state_purged(op) || op_state_given_up(op))) {
Al Viroed42fe02016-01-22 19:47:47 -0500191 spin_unlock(&op->lock);
192 continue;
193 }
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500194
195 fsid = fsid_of_op(op);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500196 if (fsid != ORANGEFS_FS_ID_NULL) {
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500197 int ret;
198 /* Skip ops whose filesystem needs to be mounted. */
199 ret = fs_mount_pending(fsid);
200 if (ret == 1) {
Mike Marshall5db11c22015-07-17 10:38:12 -0400201 gossip_debug(GOSSIP_DEV_DEBUG,
Mike Marshall5090c962016-02-04 13:29:27 -0500202 "%s: mount pending, skipping op tag "
203 "%llu %s\n",
204 __func__,
205 llu(op->tag),
206 get_opname_string(op));
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500207 spin_unlock(&op->lock);
Mike Marshall5db11c22015-07-17 10:38:12 -0400208 continue;
Mike Marshall97f10022015-12-11 16:45:03 -0500209 /*
210 * Skip ops whose filesystem we don't know about unless
Martin Brandenburg975a7ea2017-04-14 14:22:41 -0400211 * it is being mounted or unmounted. It is possible for
212 * a filesystem we don't know about to be unmounted if
213 * it fails to mount in the kernel after userspace has
214 * been sent the mount request.
Mike Marshall97f10022015-12-11 16:45:03 -0500215 */
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500216 /* XXX: is there a better way to detect this? */
217 } else if (ret == -1 &&
Mike Marshall97f10022015-12-11 16:45:03 -0500218 !(op->upcall.type ==
219 ORANGEFS_VFS_OP_FS_MOUNT ||
220 op->upcall.type ==
Martin Brandenburg975a7ea2017-04-14 14:22:41 -0400221 ORANGEFS_VFS_OP_GETATTR ||
222 op->upcall.type ==
223 ORANGEFS_VFS_OP_FS_UMOUNT)) {
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500224 gossip_debug(GOSSIP_DEV_DEBUG,
225 "orangefs: skipping op tag %llu %s\n",
226 llu(op->tag), get_opname_string(op));
227 gossip_err(
228 "orangefs: ERROR: fs_mount_pending %d\n",
229 fsid);
230 spin_unlock(&op->lock);
231 continue;
Mike Marshall5db11c22015-07-17 10:38:12 -0400232 }
233 }
Mike Marshall5db11c22015-07-17 10:38:12 -0400234 /*
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500235 * Either this op does not pertain to a filesystem, is mounting
236 * a filesystem, or pertains to a mounted filesystem. Let it
237 * through.
Mike Marshall5db11c22015-07-17 10:38:12 -0400238 */
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500239 cur_op = op;
240 break;
Mike Marshall5db11c22015-07-17 10:38:12 -0400241 }
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500242
243 /*
244 * At this point we either have a valid op and can continue or have not
245 * found an op and must ask the client to try again later.
246 */
247 if (!cur_op) {
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 }
251
Mike Marshallca9f5182016-02-26 10:21:12 -0500252 gossip_debug(GOSSIP_DEV_DEBUG, "%s: reading op tag %llu %s\n",
253 __func__,
254 llu(cur_op->tag),
255 get_opname_string(cur_op));
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500256
257 /*
258 * Such an op should never be on the list in the first place. If so, we
259 * will abort.
260 */
261 if (op_state_in_progress(cur_op) || op_state_serviced(cur_op)) {
262 gossip_err("orangefs: ERROR: Current op already queued.\n");
Al Viro05a50a52016-02-18 18:59:44 -0500263 list_del_init(&cur_op->list);
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500264 spin_unlock(&cur_op->lock);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500265 spin_unlock(&orangefs_request_list_lock);
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500266 return -EAGAIN;
267 }
Mike Marshallca9f5182016-02-26 10:21:12 -0500268
Al Viroed42fe02016-01-22 19:47:47 -0500269 list_del_init(&cur_op->list);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500270 spin_unlock(&orangefs_request_list_lock);
Al Viroed42fe02016-01-22 19:47:47 -0500271
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500272 spin_unlock(&cur_op->lock);
273
274 /* Push the upcall out. */
275 ret = copy_to_user(buf, &proto_ver, sizeof(__s32));
276 if (ret != 0)
277 goto error;
278 ret = copy_to_user(buf+sizeof(__s32), &magic, sizeof(__s32));
279 if (ret != 0)
280 goto error;
281 ret = copy_to_user(buf+2 * sizeof(__s32), &cur_op->tag, sizeof(__u64));
282 if (ret != 0)
283 goto error;
284 ret = copy_to_user(buf+2*sizeof(__s32)+sizeof(__u64), &cur_op->upcall,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500285 sizeof(struct orangefs_upcall_s));
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500286 if (ret != 0)
287 goto error;
288
Martin Brandenburg1d503612016-08-16 11:38:14 -0400289 spin_lock(&orangefs_htable_ops_in_progress_lock);
Al Viroed42fe02016-01-22 19:47:47 -0500290 spin_lock(&cur_op->lock);
291 if (unlikely(op_state_given_up(cur_op))) {
292 spin_unlock(&cur_op->lock);
Martin Brandenburg1d503612016-08-16 11:38:14 -0400293 spin_unlock(&orangefs_htable_ops_in_progress_lock);
Al Viro05a50a52016-02-18 18:59:44 -0500294 complete(&cur_op->waitq);
Al Viroed42fe02016-01-22 19:47:47 -0500295 goto restart;
296 }
297
298 /*
299 * Set the operation to be in progress and move it between lists since
300 * it has been sent to the client.
301 */
302 set_op_state_inprogress(cur_op);
Mike Marshall9d9e7ba2016-03-03 13:46:48 -0500303 gossip_debug(GOSSIP_DEV_DEBUG,
304 "%s: 1 op:%s: op_state:%d: process:%s:\n",
305 __func__,
306 get_opname_string(cur_op),
307 cur_op->op_state,
308 current->comm);
Al Viroed42fe02016-01-22 19:47:47 -0500309 orangefs_devreq_add_op(cur_op);
310 spin_unlock(&cur_op->lock);
Martin Brandenburg1d503612016-08-16 11:38:14 -0400311 spin_unlock(&orangefs_htable_ops_in_progress_lock);
Al Viroed42fe02016-01-22 19:47:47 -0500312
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500313 /* The client only asks to read one size buffer. */
Martin Brandenburga762ae62015-12-15 14:22:06 -0500314 return MAX_DEV_REQ_UPSIZE;
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500315error:
316 /*
317 * We were unable to copy the op data to the client. Put the op back in
318 * list. If client has crashed, the op will be purged later when the
319 * device is released.
320 */
321 gossip_err("orangefs: Failed to copy data to user space\n");
Yi Liu8bb8aef2015-11-24 15:12:14 -0500322 spin_lock(&orangefs_request_list_lock);
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500323 spin_lock(&cur_op->lock);
Al Viroed42fe02016-01-22 19:47:47 -0500324 if (likely(!op_state_given_up(cur_op))) {
325 set_op_state_waiting(cur_op);
Mike Marshall9d9e7ba2016-03-03 13:46:48 -0500326 gossip_debug(GOSSIP_DEV_DEBUG,
327 "%s: 2 op:%s: op_state:%d: process:%s:\n",
328 __func__,
329 get_opname_string(cur_op),
330 cur_op->op_state,
331 current->comm);
Al Viroed42fe02016-01-22 19:47:47 -0500332 list_add(&cur_op->list, &orangefs_request_list);
Al Viro05a50a52016-02-18 18:59:44 -0500333 spin_unlock(&cur_op->lock);
334 } else {
335 spin_unlock(&cur_op->lock);
336 complete(&cur_op->waitq);
Al Viroed42fe02016-01-22 19:47:47 -0500337 }
Yi Liu8bb8aef2015-11-24 15:12:14 -0500338 spin_unlock(&orangefs_request_list_lock);
Martin Brandenburg24c8d082015-11-13 14:26:10 -0500339 return -EFAULT;
Mike Marshall5db11c22015-07-17 10:38:12 -0400340}
341
Mike Marshall97f10022015-12-11 16:45:03 -0500342/*
Mike Marshallb3ae4752016-01-13 11:18:12 -0500343 * Function for writev() callers into the device.
344 *
345 * Userspace should have written:
346 * - __u32 version
347 * - __u32 magic
348 * - __u64 tag
349 * - struct orangefs_downcall_s
350 * - trailer buffer (in the case of READDIR operations)
Mike Marshall97f10022015-12-11 16:45:03 -0500351 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500352static ssize_t orangefs_devreq_write_iter(struct kiocb *iocb,
Mike Marshall5db11c22015-07-17 10:38:12 -0400353 struct iov_iter *iter)
354{
Mike Marshallb3ae4752016-01-13 11:18:12 -0500355 ssize_t ret;
356 struct orangefs_kernel_op_s *op = NULL;
357 struct {
358 __u32 version;
359 __u32 magic;
360 __u64 tag;
361 } head;
362 int total = ret = iov_iter_count(iter);
363 int n;
364 int downcall_size = sizeof(struct orangefs_downcall_s);
365 int head_size = sizeof(head);
366
367 gossip_debug(GOSSIP_DEV_DEBUG, "%s: total:%d: ret:%zd:\n",
368 __func__,
369 total,
370 ret);
371
372 if (total < MAX_DEV_REQ_DOWNSIZE) {
Mike Marshallcf0c2772016-01-19 12:04:40 -0500373 gossip_err("%s: total:%d: must be at least:%u:\n",
Mike Marshallb3ae4752016-01-13 11:18:12 -0500374 __func__,
375 total,
Mike Marshallcf0c2772016-01-19 12:04:40 -0500376 (unsigned int) MAX_DEV_REQ_DOWNSIZE);
Al Viroed42fe02016-01-22 19:47:47 -0500377 return -EFAULT;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500378 }
379
380 n = copy_from_iter(&head, head_size, iter);
381 if (n < head_size) {
382 gossip_err("%s: failed to copy head.\n", __func__);
Al Viroed42fe02016-01-22 19:47:47 -0500383 return -EFAULT;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500384 }
385
386 if (head.version < ORANGEFS_MINIMUM_USERSPACE_VERSION) {
387 gossip_err("%s: userspace claims version"
388 "%d, minimum version required: %d.\n",
389 __func__,
390 head.version,
391 ORANGEFS_MINIMUM_USERSPACE_VERSION);
Al Viroed42fe02016-01-22 19:47:47 -0500392 return -EPROTO;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500393 }
394
395 if (head.magic != ORANGEFS_DEVREQ_MAGIC) {
396 gossip_err("Error: Device magic number does not match.\n");
Al Viroed42fe02016-01-22 19:47:47 -0500397 return -EPROTO;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500398 }
399
Martin Brandenburg482664d2016-08-12 12:02:31 -0400400 if (!orangefs_userspace_version) {
401 orangefs_userspace_version = head.version;
402 } else if (orangefs_userspace_version != head.version) {
Martin Brandenburgf2ee3b72016-08-09 15:59:26 -0400403 gossip_err("Error: userspace version changes\n");
404 return -EPROTO;
405 }
406
Mike Marshallca9f5182016-02-26 10:21:12 -0500407 /* remove the op from the in progress hash table */
Mike Marshallb3ae4752016-01-13 11:18:12 -0500408 op = orangefs_devreq_remove_op(head.tag);
409 if (!op) {
Mike Marshall1b992182017-02-09 14:38:50 -0500410 gossip_debug(GOSSIP_DEV_DEBUG,
411 "%s: No one's waiting for tag %llu\n",
412 __func__, llu(head.tag));
Al Viroed42fe02016-01-22 19:47:47 -0500413 return ret;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500414 }
415
Mike Marshallb3ae4752016-01-13 11:18:12 -0500416 n = copy_from_iter(&op->downcall, downcall_size, iter);
417 if (n != downcall_size) {
418 gossip_err("%s: failed to copy downcall.\n", __func__);
Al Viro5964c1b2016-02-18 18:53:41 -0500419 goto Efault;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500420 }
421
422 if (op->downcall.status)
423 goto wakeup;
424
425 /*
426 * We've successfully peeled off the head and the downcall.
427 * Something has gone awry if total doesn't equal the
428 * sum of head_size, downcall_size and trailer_size.
429 */
430 if ((head_size + downcall_size + op->downcall.trailer_size) != total) {
431 gossip_err("%s: funky write, head_size:%d"
432 ": downcall_size:%d: trailer_size:%lld"
433 ": total size:%d:\n",
434 __func__,
435 head_size,
436 downcall_size,
437 op->downcall.trailer_size,
438 total);
Al Viro5964c1b2016-02-18 18:53:41 -0500439 goto Efault;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500440 }
441
442 /* Only READDIR operations should have trailers. */
443 if ((op->downcall.type != ORANGEFS_VFS_OP_READDIR) &&
444 (op->downcall.trailer_size != 0)) {
445 gossip_err("%s: %x operation with trailer.",
446 __func__,
447 op->downcall.type);
Al Viro5964c1b2016-02-18 18:53:41 -0500448 goto Efault;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500449 }
450
451 /* READDIR operations should always have trailers. */
452 if ((op->downcall.type == ORANGEFS_VFS_OP_READDIR) &&
453 (op->downcall.trailer_size == 0)) {
454 gossip_err("%s: %x operation with no trailer.",
455 __func__,
456 op->downcall.type);
Al Viro5964c1b2016-02-18 18:53:41 -0500457 goto Efault;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500458 }
459
460 if (op->downcall.type != ORANGEFS_VFS_OP_READDIR)
461 goto wakeup;
462
463 op->downcall.trailer_buf =
464 vmalloc(op->downcall.trailer_size);
465 if (op->downcall.trailer_buf == NULL) {
466 gossip_err("%s: failed trailer vmalloc.\n",
467 __func__);
Al Viro5964c1b2016-02-18 18:53:41 -0500468 goto Enomem;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500469 }
470 memset(op->downcall.trailer_buf, 0, op->downcall.trailer_size);
471 n = copy_from_iter(op->downcall.trailer_buf,
472 op->downcall.trailer_size,
473 iter);
474 if (n != op->downcall.trailer_size) {
475 gossip_err("%s: failed to copy trailer.\n", __func__);
476 vfree(op->downcall.trailer_buf);
Al Viro5964c1b2016-02-18 18:53:41 -0500477 goto Efault;
Mike Marshallb3ae4752016-01-13 11:18:12 -0500478 }
479
480wakeup:
Al Viro2a9e5c22016-01-23 13:45:46 -0500481 /*
Mike Marshall9f08cfe92016-02-26 14:39:08 -0500482 * Return to vfs waitqueue, and back to service_operation
483 * through wait_for_matching_downcall.
Al Viro2a9e5c22016-01-23 13:45:46 -0500484 */
485 spin_lock(&op->lock);
Al Viro5964c1b2016-02-18 18:53:41 -0500486 if (unlikely(op_is_cancel(op))) {
Al Viro2a9e5c22016-01-23 13:45:46 -0500487 spin_unlock(&op->lock);
Al Viro78699e22016-02-11 23:07:19 -0500488 put_cancel(op);
Al Viro5964c1b2016-02-18 18:53:41 -0500489 } else if (unlikely(op_state_given_up(op))) {
490 spin_unlock(&op->lock);
Al Viro05a50a52016-02-18 18:59:44 -0500491 complete(&op->waitq);
Al Viro5964c1b2016-02-18 18:53:41 -0500492 } else {
493 set_op_state_serviced(op);
Mike Marshall9d9e7ba2016-03-03 13:46:48 -0500494 gossip_debug(GOSSIP_DEV_DEBUG,
495 "%s: op:%s: op_state:%d: process:%s:\n",
496 __func__,
497 get_opname_string(op),
498 op->op_state,
499 current->comm);
Al Viro5964c1b2016-02-18 18:53:41 -0500500 spin_unlock(&op->lock);
501 }
Mike Marshallb3ae4752016-01-13 11:18:12 -0500502 return ret;
Al Viroed42fe02016-01-22 19:47:47 -0500503
Al Viro5964c1b2016-02-18 18:53:41 -0500504Efault:
505 op->downcall.status = -(ORANGEFS_ERROR_BIT | 9);
506 ret = -EFAULT;
507 goto wakeup;
508
509Enomem:
510 op->downcall.status = -(ORANGEFS_ERROR_BIT | 8);
511 ret = -ENOMEM;
512 goto wakeup;
Mike Marshall5db11c22015-07-17 10:38:12 -0400513}
514
Mike Marshall5db11c22015-07-17 10:38:12 -0400515/*
516 * NOTE: gets called when the last reference to this device is dropped.
517 * Using the open_access_count variable, we enforce a reference count
518 * on this file so that it can be opened by only one process at a time.
519 * the devreq_mutex is used to make sure all i/o has completed
Yi Liu8bb8aef2015-11-24 15:12:14 -0500520 * before we call orangefs_bufmap_finalize, and similar such tricky
Mike Marshall5db11c22015-07-17 10:38:12 -0400521 * situations
522 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500523static int orangefs_devreq_release(struct inode *inode, struct file *file)
Mike Marshall5db11c22015-07-17 10:38:12 -0400524{
525 int unmounted = 0;
526
527 gossip_debug(GOSSIP_DEV_DEBUG,
528 "%s:pvfs2-client-core: exiting, closing device\n",
529 __func__);
530
531 mutex_lock(&devreq_mutex);
Al Viroea2c9c92016-02-13 21:01:21 -0500532 orangefs_bufmap_finalize();
Mike Marshall5db11c22015-07-17 10:38:12 -0400533
Al Virofee25ce2016-01-22 19:46:08 -0500534 open_access_count = -1;
Mike Marshall5db11c22015-07-17 10:38:12 -0400535
536 unmounted = mark_all_pending_mounts();
Yi Liu8bb8aef2015-11-24 15:12:14 -0500537 gossip_debug(GOSSIP_DEV_DEBUG, "ORANGEFS Device Close: Filesystem(s) %s\n",
Mike Marshall5db11c22015-07-17 10:38:12 -0400538 (unmounted ? "UNMOUNTED" : "MOUNTED"));
Mike Marshall5db11c22015-07-17 10:38:12 -0400539
Mike Marshall5db11c22015-07-17 10:38:12 -0400540 purge_waiting_ops();
Mike Marshall5db11c22015-07-17 10:38:12 -0400541 purge_inprogress_ops();
Al Viroea2c9c92016-02-13 21:01:21 -0500542
543 orangefs_bufmap_run_down();
544
Mike Marshall5db11c22015-07-17 10:38:12 -0400545 gossip_debug(GOSSIP_DEV_DEBUG,
546 "pvfs2-client-core: device close complete\n");
Al Virofee25ce2016-01-22 19:46:08 -0500547 open_access_count = 0;
Martin Brandenburg482664d2016-08-12 12:02:31 -0400548 orangefs_userspace_version = 0;
Al Virofee25ce2016-01-22 19:46:08 -0500549 mutex_unlock(&devreq_mutex);
Mike Marshall5db11c22015-07-17 10:38:12 -0400550 return 0;
551}
552
553int is_daemon_in_service(void)
554{
555 int in_service;
556
557 /*
558 * What this function does is checks if client-core is alive
559 * based on the access count we maintain on the device.
560 */
561 mutex_lock(&devreq_mutex);
562 in_service = open_access_count == 1 ? 0 : -EIO;
563 mutex_unlock(&devreq_mutex);
564 return in_service;
565}
566
Al Viro78699e22016-02-11 23:07:19 -0500567bool __is_daemon_in_service(void)
568{
569 return open_access_count == 1;
570}
571
Mike Marshall5db11c22015-07-17 10:38:12 -0400572static inline long check_ioctl_command(unsigned int command)
573{
574 /* Check for valid ioctl codes */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500575 if (_IOC_TYPE(command) != ORANGEFS_DEV_MAGIC) {
Mike Marshall5db11c22015-07-17 10:38:12 -0400576 gossip_err("device ioctl magic numbers don't match! Did you rebuild pvfs2-client-core/libpvfs2? [cmd %x, magic %x != %x]\n",
577 command,
578 _IOC_TYPE(command),
Yi Liu8bb8aef2015-11-24 15:12:14 -0500579 ORANGEFS_DEV_MAGIC);
Mike Marshall5db11c22015-07-17 10:38:12 -0400580 return -EINVAL;
581 }
582 /* and valid ioctl commands */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500583 if (_IOC_NR(command) >= ORANGEFS_DEV_MAXNR || _IOC_NR(command) <= 0) {
Mike Marshall5db11c22015-07-17 10:38:12 -0400584 gossip_err("Invalid ioctl command number [%d >= %d]\n",
Yi Liu8bb8aef2015-11-24 15:12:14 -0500585 _IOC_NR(command), ORANGEFS_DEV_MAXNR);
Mike Marshall5db11c22015-07-17 10:38:12 -0400586 return -ENOIOCTLCMD;
587 }
588 return 0;
589}
590
591static long dispatch_ioctl_command(unsigned int command, unsigned long arg)
592{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500593 static __s32 magic = ORANGEFS_DEVREQ_MAGIC;
Martin Brandenburga762ae62015-12-15 14:22:06 -0500594 static __s32 max_up_size = MAX_DEV_REQ_UPSIZE;
595 static __s32 max_down_size = MAX_DEV_REQ_DOWNSIZE;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500596 struct ORANGEFS_dev_map_desc user_desc;
Mike Marshall5db11c22015-07-17 10:38:12 -0400597 int ret = 0;
Mike Marshall5db11c22015-07-17 10:38:12 -0400598 int upstream_kmod = 1;
Al Viro45996492016-03-25 19:56:34 -0400599 struct orangefs_sb_info_s *orangefs_sb;
Mike Marshall5db11c22015-07-17 10:38:12 -0400600
601 /* mtmoore: add locking here */
602
603 switch (command) {
Yi Liu8bb8aef2015-11-24 15:12:14 -0500604 case ORANGEFS_DEV_GET_MAGIC:
Mike Marshall5db11c22015-07-17 10:38:12 -0400605 return ((put_user(magic, (__s32 __user *) arg) == -EFAULT) ?
606 -EIO :
607 0);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500608 case ORANGEFS_DEV_GET_MAX_UPSIZE:
Mike Marshall5db11c22015-07-17 10:38:12 -0400609 return ((put_user(max_up_size,
610 (__s32 __user *) arg) == -EFAULT) ?
611 -EIO :
612 0);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500613 case ORANGEFS_DEV_GET_MAX_DOWNSIZE:
Mike Marshall5db11c22015-07-17 10:38:12 -0400614 return ((put_user(max_down_size,
615 (__s32 __user *) arg) == -EFAULT) ?
616 -EIO :
617 0);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500618 case ORANGEFS_DEV_MAP:
Mike Marshall5db11c22015-07-17 10:38:12 -0400619 ret = copy_from_user(&user_desc,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500620 (struct ORANGEFS_dev_map_desc __user *)
Mike Marshall5db11c22015-07-17 10:38:12 -0400621 arg,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500622 sizeof(struct ORANGEFS_dev_map_desc));
Al Viroea2c9c92016-02-13 21:01:21 -0500623 /* WTF -EIO and not -EFAULT? */
624 return ret ? -EIO : orangefs_bufmap_initialize(&user_desc);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500625 case ORANGEFS_DEV_REMOUNT_ALL:
Mike Marshall5db11c22015-07-17 10:38:12 -0400626 gossip_debug(GOSSIP_DEV_DEBUG,
Mike Marshall97f10022015-12-11 16:45:03 -0500627 "%s: got ORANGEFS_DEV_REMOUNT_ALL\n",
628 __func__);
Mike Marshall5db11c22015-07-17 10:38:12 -0400629
630 /*
Yi Liu8bb8aef2015-11-24 15:12:14 -0500631 * remount all mounted orangefs volumes to regain the lost
Mike Marshall5db11c22015-07-17 10:38:12 -0400632 * dynamic mount tables (if any) -- NOTE: this is done
633 * without keeping the superblock list locked due to the
Mike Marshalladcf34a2016-02-24 16:54:27 -0500634 * upcall/downcall waiting. also, the request mutex is
Mike Marshall5db11c22015-07-17 10:38:12 -0400635 * used to ensure that no operations will be serviced until
636 * all of the remounts are serviced (to avoid ops between
637 * mounts to fail)
638 */
Martin Brandenburg1d503612016-08-16 11:38:14 -0400639 ret = mutex_lock_interruptible(&orangefs_request_mutex);
Mike Marshall5db11c22015-07-17 10:38:12 -0400640 if (ret < 0)
641 return ret;
642 gossip_debug(GOSSIP_DEV_DEBUG,
Mike Marshall97f10022015-12-11 16:45:03 -0500643 "%s: priority remount in progress\n",
644 __func__);
Al Viro45996492016-03-25 19:56:34 -0400645 spin_lock(&orangefs_superblocks_lock);
646 list_for_each_entry(orangefs_sb, &orangefs_superblocks, list) {
647 /*
648 * We have to drop the spinlock, so entries can be
649 * removed. They can't be freed, though, so we just
650 * keep the forward pointers and zero the back ones -
651 * that way we can get to the rest of the list.
652 */
653 if (!orangefs_sb->list.prev)
654 continue;
655 gossip_debug(GOSSIP_DEV_DEBUG,
656 "%s: Remounting SB %p\n",
657 __func__,
658 orangefs_sb);
Mike Marshall5db11c22015-07-17 10:38:12 -0400659
Al Viro45996492016-03-25 19:56:34 -0400660 spin_unlock(&orangefs_superblocks_lock);
661 ret = orangefs_remount(orangefs_sb);
662 spin_lock(&orangefs_superblocks_lock);
663 if (ret) {
664 gossip_debug(GOSSIP_DEV_DEBUG,
665 "SB %p remount failed\n",
666 orangefs_sb);
667 break;
Mike Marshall5db11c22015-07-17 10:38:12 -0400668 }
669 }
Al Viro45996492016-03-25 19:56:34 -0400670 spin_unlock(&orangefs_superblocks_lock);
Mike Marshall5db11c22015-07-17 10:38:12 -0400671 gossip_debug(GOSSIP_DEV_DEBUG,
Mike Marshall97f10022015-12-11 16:45:03 -0500672 "%s: priority remount complete\n",
673 __func__);
Martin Brandenburg1d503612016-08-16 11:38:14 -0400674 mutex_unlock(&orangefs_request_mutex);
Mike Marshall5db11c22015-07-17 10:38:12 -0400675 return ret;
676
Yi Liu8bb8aef2015-11-24 15:12:14 -0500677 case ORANGEFS_DEV_UPSTREAM:
Mike Marshall5db11c22015-07-17 10:38:12 -0400678 ret = copy_to_user((void __user *)arg,
679 &upstream_kmod,
680 sizeof(upstream_kmod));
681
682 if (ret != 0)
683 return -EIO;
684 else
685 return ret;
686
Yi Liu8bb8aef2015-11-24 15:12:14 -0500687 case ORANGEFS_DEV_CLIENT_MASK:
Martin Brandenburg44f46412016-08-15 11:38:36 -0400688 return orangefs_debugfs_new_client_mask((void __user *)arg);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500689 case ORANGEFS_DEV_CLIENT_STRING:
Martin Brandenburg44f46412016-08-15 11:38:36 -0400690 return orangefs_debugfs_new_client_string((void __user *)arg);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500691 case ORANGEFS_DEV_DEBUG:
Martin Brandenburg44f46412016-08-15 11:38:36 -0400692 return orangefs_debugfs_new_debug((void __user *)arg);
Mike Marshall5db11c22015-07-17 10:38:12 -0400693 default:
694 return -ENOIOCTLCMD;
695 }
696 return -ENOIOCTLCMD;
697}
698
Yi Liu8bb8aef2015-11-24 15:12:14 -0500699static long orangefs_devreq_ioctl(struct file *file,
Mike Marshall5db11c22015-07-17 10:38:12 -0400700 unsigned int command, unsigned long arg)
701{
702 long ret;
703
704 /* Check for properly constructed commands */
705 ret = check_ioctl_command(command);
706 if (ret < 0)
707 return (int)ret;
708
709 return (int)dispatch_ioctl_command(command, arg);
710}
711
712#ifdef CONFIG_COMPAT /* CONFIG_COMPAT is in .config */
713
Yi Liu8bb8aef2015-11-24 15:12:14 -0500714/* Compat structure for the ORANGEFS_DEV_MAP ioctl */
715struct ORANGEFS_dev_map_desc32 {
Mike Marshall5db11c22015-07-17 10:38:12 -0400716 compat_uptr_t ptr;
717 __s32 total_size;
718 __s32 size;
719 __s32 count;
720};
721
722static unsigned long translate_dev_map26(unsigned long args, long *error)
723{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500724 struct ORANGEFS_dev_map_desc32 __user *p32 = (void __user *)args;
Mike Marshall5db11c22015-07-17 10:38:12 -0400725 /*
726 * Depending on the architecture, allocate some space on the
727 * user-call-stack based on our expected layout.
728 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500729 struct ORANGEFS_dev_map_desc __user *p =
Mike Marshall5db11c22015-07-17 10:38:12 -0400730 compat_alloc_user_space(sizeof(*p));
Mike Marshall84d02152015-07-28 13:27:51 -0400731 compat_uptr_t addr;
Mike Marshall5db11c22015-07-17 10:38:12 -0400732
733 *error = 0;
734 /* get the ptr from the 32 bit user-space */
735 if (get_user(addr, &p32->ptr))
736 goto err;
737 /* try to put that into a 64-bit layout */
738 if (put_user(compat_ptr(addr), &p->ptr))
739 goto err;
740 /* copy the remaining fields */
741 if (copy_in_user(&p->total_size, &p32->total_size, sizeof(__s32)))
742 goto err;
743 if (copy_in_user(&p->size, &p32->size, sizeof(__s32)))
744 goto err;
745 if (copy_in_user(&p->count, &p32->count, sizeof(__s32)))
746 goto err;
747 return (unsigned long)p;
748err:
749 *error = -EFAULT;
750 return 0;
751}
752
753/*
754 * 32 bit user-space apps' ioctl handlers when kernel modules
755 * is compiled as a 64 bit one
756 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500757static long orangefs_devreq_compat_ioctl(struct file *filp, unsigned int cmd,
Mike Marshall5db11c22015-07-17 10:38:12 -0400758 unsigned long args)
759{
760 long ret;
761 unsigned long arg = args;
762
763 /* Check for properly constructed commands */
764 ret = check_ioctl_command(cmd);
765 if (ret < 0)
766 return ret;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500767 if (cmd == ORANGEFS_DEV_MAP) {
Mike Marshall5db11c22015-07-17 10:38:12 -0400768 /*
769 * convert the arguments to what we expect internally
770 * in kernel space
771 */
772 arg = translate_dev_map26(args, &ret);
773 if (ret < 0) {
774 gossip_err("Could not translate dev map\n");
775 return ret;
776 }
777 }
778 /* no other ioctl requires translation */
779 return dispatch_ioctl_command(cmd, arg);
780}
781
Mike Marshall2c590d52015-07-24 10:37:15 -0400782#endif /* CONFIG_COMPAT is in .config */
783
Mike Marshall5db11c22015-07-17 10:38:12 -0400784/* the assigned character device major number */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500785static int orangefs_dev_major;
Mike Marshall5db11c22015-07-17 10:38:12 -0400786
787/*
Yi Liu8bb8aef2015-11-24 15:12:14 -0500788 * Initialize orangefs device specific state:
Mike Marshall5db11c22015-07-17 10:38:12 -0400789 * Must be called at module load time only
790 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500791int orangefs_dev_init(void)
Mike Marshall5db11c22015-07-17 10:38:12 -0400792{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500793 /* register orangefs-req device */
794 orangefs_dev_major = register_chrdev(0,
795 ORANGEFS_REQDEVICE_NAME,
796 &orangefs_devreq_file_operations);
797 if (orangefs_dev_major < 0) {
Mike Marshall5db11c22015-07-17 10:38:12 -0400798 gossip_debug(GOSSIP_DEV_DEBUG,
799 "Failed to register /dev/%s (error %d)\n",
Yi Liu8bb8aef2015-11-24 15:12:14 -0500800 ORANGEFS_REQDEVICE_NAME, orangefs_dev_major);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500801 return orangefs_dev_major;
Mike Marshall5db11c22015-07-17 10:38:12 -0400802 }
803
804 gossip_debug(GOSSIP_DEV_DEBUG,
805 "*** /dev/%s character device registered ***\n",
Yi Liu8bb8aef2015-11-24 15:12:14 -0500806 ORANGEFS_REQDEVICE_NAME);
Mike Marshall5db11c22015-07-17 10:38:12 -0400807 gossip_debug(GOSSIP_DEV_DEBUG, "'mknod /dev/%s c %d 0'.\n",
Yi Liu8bb8aef2015-11-24 15:12:14 -0500808 ORANGEFS_REQDEVICE_NAME, orangefs_dev_major);
Mike Marshall5db11c22015-07-17 10:38:12 -0400809 return 0;
810}
811
Yi Liu8bb8aef2015-11-24 15:12:14 -0500812void orangefs_dev_cleanup(void)
Mike Marshall5db11c22015-07-17 10:38:12 -0400813{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500814 unregister_chrdev(orangefs_dev_major, ORANGEFS_REQDEVICE_NAME);
Mike Marshall5db11c22015-07-17 10:38:12 -0400815 gossip_debug(GOSSIP_DEV_DEBUG,
816 "*** /dev/%s character device unregistered ***\n",
Yi Liu8bb8aef2015-11-24 15:12:14 -0500817 ORANGEFS_REQDEVICE_NAME);
Mike Marshall5db11c22015-07-17 10:38:12 -0400818}
819
Yi Liu8bb8aef2015-11-24 15:12:14 -0500820static unsigned int orangefs_devreq_poll(struct file *file,
Mike Marshall5db11c22015-07-17 10:38:12 -0400821 struct poll_table_struct *poll_table)
822{
823 int poll_revent_mask = 0;
824
Al Viro83595db2016-01-19 12:03:05 -0500825 poll_wait(file, &orangefs_request_list_waitq, poll_table);
Mike Marshall5db11c22015-07-17 10:38:12 -0400826
Al Viro83595db2016-01-19 12:03:05 -0500827 if (!list_empty(&orangefs_request_list))
828 poll_revent_mask |= POLL_IN;
Mike Marshall5db11c22015-07-17 10:38:12 -0400829 return poll_revent_mask;
830}
831
Yi Liu8bb8aef2015-11-24 15:12:14 -0500832const struct file_operations orangefs_devreq_file_operations = {
Mike Marshall5db11c22015-07-17 10:38:12 -0400833 .owner = THIS_MODULE,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500834 .read = orangefs_devreq_read,
835 .write_iter = orangefs_devreq_write_iter,
836 .open = orangefs_devreq_open,
837 .release = orangefs_devreq_release,
838 .unlocked_ioctl = orangefs_devreq_ioctl,
Mike Marshall5db11c22015-07-17 10:38:12 -0400839
840#ifdef CONFIG_COMPAT /* CONFIG_COMPAT is in .config */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500841 .compat_ioctl = orangefs_devreq_compat_ioctl,
Mike Marshall5db11c22015-07-17 10:38:12 -0400842#endif
Yi Liu8bb8aef2015-11-24 15:12:14 -0500843 .poll = orangefs_devreq_poll
Mike Marshall5db11c22015-07-17 10:38:12 -0400844};