blob: c3b3b22115ebe06bc85346590861935d8bcdeb23 [file] [log] [blame]
Mike Marshallf7ab0932015-07-17 10:38:11 -04001/*
2 * (C) 2001 Clemson University and The University of Chicago
3 *
4 * See COPYING in top-level directory.
5 */
6
7/*
Yi Liu8bb8aef2015-11-24 15:12:14 -05008 * The ORANGEFS Linux kernel support allows ORANGEFS volumes to be mounted and
Mike Marshallf7ab0932015-07-17 10:38:11 -04009 * accessed through the Linux VFS (i.e. using standard I/O system calls).
10 * This support is only needed on clients that wish to mount the file system.
11 *
12 */
13
14/*
Yi Liu8bb8aef2015-11-24 15:12:14 -050015 * Declarations and macros for the ORANGEFS Linux kernel support.
Mike Marshallf7ab0932015-07-17 10:38:11 -040016 */
17
Yi Liu8bb8aef2015-11-24 15:12:14 -050018#ifndef __ORANGEFSKERNEL_H
19#define __ORANGEFSKERNEL_H
Mike Marshallf7ab0932015-07-17 10:38:11 -040020
21#include <linux/kernel.h>
22#include <linux/moduleparam.h>
23#include <linux/statfs.h>
24#include <linux/backing-dev.h>
25#include <linux/device.h>
26#include <linux/mpage.h>
27#include <linux/namei.h>
28#include <linux/errno.h>
29#include <linux/init.h>
30#include <linux/module.h>
31#include <linux/slab.h>
32#include <linux/types.h>
33#include <linux/fs.h>
34#include <linux/vmalloc.h>
35
36#include <linux/aio.h>
37#include <linux/posix_acl.h>
38#include <linux/posix_acl_xattr.h>
39#include <linux/compat.h>
40#include <linux/mount.h>
41#include <linux/uaccess.h>
42#include <linux/atomic.h>
43#include <linux/uio.h>
44#include <linux/sched.h>
45#include <linux/mm.h>
46#include <linux/wait.h>
47#include <linux/dcache.h>
48#include <linux/pagemap.h>
49#include <linux/poll.h>
50#include <linux/rwsem.h>
51#include <linux/xattr.h>
52#include <linux/exportfs.h>
53
54#include <asm/unaligned.h>
55
Mike Marshall575e9462015-12-04 12:56:14 -050056#include "orangefs-dev-proto.h"
Mike Marshallf7ab0932015-07-17 10:38:11 -040057
Yi Liu8bb8aef2015-11-24 15:12:14 -050058#ifdef ORANGEFS_KERNEL_DEBUG
59#define ORANGEFS_DEFAULT_OP_TIMEOUT_SECS 10
Mike Marshallf7ab0932015-07-17 10:38:11 -040060#else
Yi Liu8bb8aef2015-11-24 15:12:14 -050061#define ORANGEFS_DEFAULT_OP_TIMEOUT_SECS 20
Mike Marshallf7ab0932015-07-17 10:38:11 -040062#endif
63
Yi Liu8bb8aef2015-11-24 15:12:14 -050064#define ORANGEFS_BUFMAP_WAIT_TIMEOUT_SECS 30
Mike Marshallf7ab0932015-07-17 10:38:11 -040065
Yi Liu8bb8aef2015-11-24 15:12:14 -050066#define ORANGEFS_DEFAULT_SLOT_TIMEOUT_SECS 900 /* 15 minutes */
Mike Marshallf7ab0932015-07-17 10:38:11 -040067
Yi Liu8bb8aef2015-11-24 15:12:14 -050068#define ORANGEFS_REQDEVICE_NAME "pvfs2-req"
Mike Marshallf7ab0932015-07-17 10:38:11 -040069
Yi Liu8bb8aef2015-11-24 15:12:14 -050070#define ORANGEFS_DEVREQ_MAGIC 0x20030529
71#define ORANGEFS_LINK_MAX 0x000000FF
72#define ORANGEFS_PURGE_RETRY_COUNT 0x00000005
73#define ORANGEFS_SEEK_END 0x00000002
74#define ORANGEFS_MAX_NUM_OPTIONS 0x00000004
75#define ORANGEFS_MAX_MOUNT_OPT_LEN 0x00000080
76#define ORANGEFS_MAX_FSKEY_LEN 64
Mike Marshallf7ab0932015-07-17 10:38:11 -040077
Mike Marshallcf0c2772016-01-19 12:04:40 -050078#define MAX_DEV_REQ_UPSIZE (2 * sizeof(__s32) + \
Yi Liu8bb8aef2015-11-24 15:12:14 -050079sizeof(__u64) + sizeof(struct orangefs_upcall_s))
Mike Marshallcf0c2772016-01-19 12:04:40 -050080#define MAX_DEV_REQ_DOWNSIZE (2 * sizeof(__s32) + \
Yi Liu8bb8aef2015-11-24 15:12:14 -050081sizeof(__u64) + sizeof(struct orangefs_downcall_s))
Mike Marshallf7ab0932015-07-17 10:38:11 -040082
Mike Marshallf7ab0932015-07-17 10:38:11 -040083/*
Yi Liu8bb8aef2015-11-24 15:12:14 -050084 * valid orangefs kernel operation states
Mike Marshallf7ab0932015-07-17 10:38:11 -040085 *
86 * unknown - op was just initialized
87 * waiting - op is on request_list (upward bound)
88 * inprogr - op is in progress (waiting for downcall)
89 * serviced - op has matching downcall; ok
90 * purged - op has to start a timer since client-core
91 * exited uncleanly before servicing op
Al Viroed42fe02016-01-22 19:47:47 -050092 * given up - submitter has given up waiting for it
Mike Marshallf7ab0932015-07-17 10:38:11 -040093 */
Yi Liu8bb8aef2015-11-24 15:12:14 -050094enum orangefs_vfs_op_states {
Mike Marshallf7ab0932015-07-17 10:38:11 -040095 OP_VFS_STATE_UNKNOWN = 0,
96 OP_VFS_STATE_WAITING = 1,
97 OP_VFS_STATE_INPROGR = 2,
98 OP_VFS_STATE_SERVICED = 4,
99 OP_VFS_STATE_PURGED = 8,
Al Viroed42fe02016-01-22 19:47:47 -0500100 OP_VFS_STATE_GIVEN_UP = 16,
Mike Marshallf7ab0932015-07-17 10:38:11 -0400101};
102
Mike Marshallf7ab0932015-07-17 10:38:11 -0400103/*
104 * Defines for controlling whether I/O upcalls are for async or sync operations
105 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500106enum ORANGEFS_async_io_type {
107 ORANGEFS_VFS_SYNC_IO = 0,
108 ORANGEFS_VFS_ASYNC_IO = 1,
Mike Marshallf7ab0932015-07-17 10:38:11 -0400109};
110
111/*
112 * An array of client_debug_mask will be built to hold debug keyword/mask
113 * values fetched from userspace.
114 */
115struct client_debug_mask {
116 char *keyword;
117 __u64 mask1;
118 __u64 mask2;
119};
120
121/*
Yi Liu8bb8aef2015-11-24 15:12:14 -0500122 * orangefs kernel memory related flags
Mike Marshallf7ab0932015-07-17 10:38:11 -0400123 */
124
Yi Liu8bb8aef2015-11-24 15:12:14 -0500125#if ((defined ORANGEFS_KERNEL_DEBUG) && (defined CONFIG_DEBUG_SLAB))
126#define ORANGEFS_CACHE_CREATE_FLAGS SLAB_RED_ZONE
Mike Marshallf7ab0932015-07-17 10:38:11 -0400127#else
Yi Liu8bb8aef2015-11-24 15:12:14 -0500128#define ORANGEFS_CACHE_CREATE_FLAGS 0
129#endif /* ((defined ORANGEFS_KERNEL_DEBUG) && (defined CONFIG_DEBUG_SLAB)) */
Mike Marshallf7ab0932015-07-17 10:38:11 -0400130
Yi Liu8bb8aef2015-11-24 15:12:14 -0500131#define ORANGEFS_GFP_FLAGS (GFP_KERNEL)
132#define ORANGEFS_BUFMAP_GFP_FLAGS (GFP_KERNEL)
Mike Marshallf7ab0932015-07-17 10:38:11 -0400133
Yi Liu8bb8aef2015-11-24 15:12:14 -0500134/* orangefs xattr and acl related defines */
135#define ORANGEFS_XATTR_INDEX_POSIX_ACL_ACCESS 1
136#define ORANGEFS_XATTR_INDEX_POSIX_ACL_DEFAULT 2
137#define ORANGEFS_XATTR_INDEX_TRUSTED 3
138#define ORANGEFS_XATTR_INDEX_DEFAULT 4
Mike Marshallf7ab0932015-07-17 10:38:11 -0400139
Mike Marshallfef8b672015-12-17 14:31:24 -0500140#define ORANGEFS_XATTR_NAME_ACL_ACCESS XATTR_NAME_POSIX_ACL_ACCESS
141#define ORANGEFS_XATTR_NAME_ACL_DEFAULT XATTR_NAME_POSIX_ACL_DEFAULT
Yi Liu8bb8aef2015-11-24 15:12:14 -0500142#define ORANGEFS_XATTR_NAME_TRUSTED_PREFIX "trusted."
143#define ORANGEFS_XATTR_NAME_DEFAULT_PREFIX ""
Mike Marshallf7ab0932015-07-17 10:38:11 -0400144
Yi Liu8bb8aef2015-11-24 15:12:14 -0500145/* these functions are defined in orangefs-utils.c */
Mike Marshallf7ab0932015-07-17 10:38:11 -0400146int orangefs_prepare_cdm_array(char *debug_array_string);
147int orangefs_prepare_debugfs_help_string(int);
148
Yi Liu8bb8aef2015-11-24 15:12:14 -0500149/* defined in orangefs-debugfs.c */
150int orangefs_client_debug_init(void);
Mike Marshallf7ab0932015-07-17 10:38:11 -0400151
152void debug_string_to_mask(char *, void *, int);
153void do_c_mask(int, char *, struct client_debug_mask **);
154void do_k_mask(int, char *, __u64 **);
155
156void debug_mask_to_string(void *, int);
157void do_k_string(void *, int);
158void do_c_string(void *, int);
159int check_amalgam_keyword(void *, int);
160int keyword_is_amalgam(char *);
161
Yi Liu8bb8aef2015-11-24 15:12:14 -0500162/*these variables are defined in orangefs-mod.c */
163extern char kernel_debug_string[ORANGEFS_MAX_DEBUG_STRING_LEN];
164extern char client_debug_string[ORANGEFS_MAX_DEBUG_STRING_LEN];
165extern char client_debug_array_string[ORANGEFS_MAX_DEBUG_STRING_LEN];
Mike Marshallf7ab0932015-07-17 10:38:11 -0400166extern unsigned int kernel_mask_set_mod_init;
167
Yi Liu8bb8aef2015-11-24 15:12:14 -0500168extern int orangefs_init_acl(struct inode *inode, struct inode *dir);
169extern const struct xattr_handler *orangefs_xattr_handlers[];
Mike Marshallf7ab0932015-07-17 10:38:11 -0400170
Yi Liu8bb8aef2015-11-24 15:12:14 -0500171extern struct posix_acl *orangefs_get_acl(struct inode *inode, int type);
172extern int orangefs_set_acl(struct inode *inode, struct posix_acl *acl, int type);
Mike Marshallf7ab0932015-07-17 10:38:11 -0400173
Mike Marshallf7ab0932015-07-17 10:38:11 -0400174/*
175 * Redefine xtvec structure so that we could move helper functions out of
176 * the define
177 */
178struct xtvec {
179 __kernel_off_t xtv_off; /* must be off_t */
180 __kernel_size_t xtv_len; /* must be size_t */
181};
182
183/*
Yi Liu8bb8aef2015-11-24 15:12:14 -0500184 * orangefs data structures
Mike Marshallf7ab0932015-07-17 10:38:11 -0400185 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500186struct orangefs_kernel_op_s {
187 enum orangefs_vfs_op_states op_state;
Mike Marshallf7ab0932015-07-17 10:38:11 -0400188 __u64 tag;
189
190 /*
Mike Marshalld37c0f32016-02-24 13:24:14 -0500191 * Set uses_shared_memory to non zero if this operation uses
192 * shared memory. If true, then a retry on the op must also
193 * get a new shared memory buffer and re-populate it.
194 * Cancels don't care - it only matters for service_operation()
195 * retry logics and cancels don't go through it anymore. It
196 * safely stays non-zero when we use it as slot_to_free.
Mike Marshallf7ab0932015-07-17 10:38:11 -0400197 */
Al Viro78699e22016-02-11 23:07:19 -0500198 union {
199 int uses_shared_memory;
200 int slot_to_free;
201 };
Mike Marshallf7ab0932015-07-17 10:38:11 -0400202
Yi Liu8bb8aef2015-11-24 15:12:14 -0500203 struct orangefs_upcall_s upcall;
204 struct orangefs_downcall_s downcall;
Mike Marshallf7ab0932015-07-17 10:38:11 -0400205
Al Virod2d87a32016-02-13 10:15:22 -0500206 struct completion waitq;
Mike Marshallf7ab0932015-07-17 10:38:11 -0400207 spinlock_t lock;
208
Mike Marshallf7ab0932015-07-17 10:38:11 -0400209 int attempts;
210
211 struct list_head list;
212};
213
Al Viro60831942016-01-21 23:17:37 -0500214#define set_op_state_waiting(op) ((op)->op_state = OP_VFS_STATE_WAITING)
215#define set_op_state_inprogress(op) ((op)->op_state = OP_VFS_STATE_INPROGR)
Mike Marshall2d4cae02016-02-04 13:48:16 -0500216#define set_op_state_given_up(op) ((op)->op_state = OP_VFS_STATE_GIVEN_UP)
Al Viro60831942016-01-21 23:17:37 -0500217static inline void set_op_state_serviced(struct orangefs_kernel_op_s *op)
218{
219 op->op_state = OP_VFS_STATE_SERVICED;
Al Virod2d87a32016-02-13 10:15:22 -0500220 complete(&op->waitq);
Al Viro60831942016-01-21 23:17:37 -0500221}
Al Viro60831942016-01-21 23:17:37 -0500222
223#define op_state_waiting(op) ((op)->op_state & OP_VFS_STATE_WAITING)
224#define op_state_in_progress(op) ((op)->op_state & OP_VFS_STATE_INPROGR)
225#define op_state_serviced(op) ((op)->op_state & OP_VFS_STATE_SERVICED)
226#define op_state_purged(op) ((op)->op_state & OP_VFS_STATE_PURGED)
Al Viroed42fe02016-01-22 19:47:47 -0500227#define op_state_given_up(op) ((op)->op_state & OP_VFS_STATE_GIVEN_UP)
Al Viro78699e22016-02-11 23:07:19 -0500228#define op_is_cancel(op) ((op)->upcall.type == ORANGEFS_VFS_OP_CANCEL)
Al Viroed42fe02016-01-22 19:47:47 -0500229
Al Viroc1223ca2016-02-18 19:17:51 -0500230void op_release(struct orangefs_kernel_op_s *op);
Al Viro60831942016-01-21 23:17:37 -0500231
Al Viro78699e22016-02-11 23:07:19 -0500232extern void orangefs_bufmap_put(int);
233static inline void put_cancel(struct orangefs_kernel_op_s *op)
234{
235 orangefs_bufmap_put(op->slot_to_free);
236 op_release(op);
237}
238
239static inline void set_op_state_purged(struct orangefs_kernel_op_s *op)
240{
241 spin_lock(&op->lock);
242 if (unlikely(op_is_cancel(op))) {
Al Viro05a50a52016-02-18 18:59:44 -0500243 list_del_init(&op->list);
Al Viro78699e22016-02-11 23:07:19 -0500244 spin_unlock(&op->lock);
245 put_cancel(op);
246 } else {
247 op->op_state |= OP_VFS_STATE_PURGED;
Al Virod2d87a32016-02-13 10:15:22 -0500248 complete(&op->waitq);
Al Viro78699e22016-02-11 23:07:19 -0500249 spin_unlock(&op->lock);
250 }
251}
252
Yi Liu8bb8aef2015-11-24 15:12:14 -0500253/* per inode private orangefs info */
254struct orangefs_inode_s {
255 struct orangefs_object_kref refn;
256 char link_target[ORANGEFS_NAME_MAX];
Mike Marshallf7ab0932015-07-17 10:38:11 -0400257 __s64 blksize;
258 /*
259 * Reading/Writing Extended attributes need to acquire the appropriate
Yi Liu8bb8aef2015-11-24 15:12:14 -0500260 * reader/writer semaphore on the orangefs_inode_s structure.
Mike Marshallf7ab0932015-07-17 10:38:11 -0400261 */
262 struct rw_semaphore xattr_sem;
263
264 struct inode vfs_inode;
265 sector_t last_failed_block_index_read;
266
267 /*
268 * State of in-memory attributes not yet flushed to disk associated
269 * with this object
270 */
271 unsigned long pinode_flags;
Mike Marshallf7ab0932015-07-17 10:38:11 -0400272};
273
274#define P_ATIME_FLAG 0
275#define P_MTIME_FLAG 1
276#define P_CTIME_FLAG 2
277#define P_MODE_FLAG 3
278
279#define ClearAtimeFlag(pinode) clear_bit(P_ATIME_FLAG, &(pinode)->pinode_flags)
280#define SetAtimeFlag(pinode) set_bit(P_ATIME_FLAG, &(pinode)->pinode_flags)
281#define AtimeFlag(pinode) test_bit(P_ATIME_FLAG, &(pinode)->pinode_flags)
282
283#define ClearMtimeFlag(pinode) clear_bit(P_MTIME_FLAG, &(pinode)->pinode_flags)
284#define SetMtimeFlag(pinode) set_bit(P_MTIME_FLAG, &(pinode)->pinode_flags)
285#define MtimeFlag(pinode) test_bit(P_MTIME_FLAG, &(pinode)->pinode_flags)
286
287#define ClearCtimeFlag(pinode) clear_bit(P_CTIME_FLAG, &(pinode)->pinode_flags)
288#define SetCtimeFlag(pinode) set_bit(P_CTIME_FLAG, &(pinode)->pinode_flags)
289#define CtimeFlag(pinode) test_bit(P_CTIME_FLAG, &(pinode)->pinode_flags)
290
291#define ClearModeFlag(pinode) clear_bit(P_MODE_FLAG, &(pinode)->pinode_flags)
292#define SetModeFlag(pinode) set_bit(P_MODE_FLAG, &(pinode)->pinode_flags)
293#define ModeFlag(pinode) test_bit(P_MODE_FLAG, &(pinode)->pinode_flags)
294
Yi Liu8bb8aef2015-11-24 15:12:14 -0500295/* per superblock private orangefs info */
296struct orangefs_sb_info_s {
297 struct orangefs_khandle root_khandle;
Mike Marshallf7ab0932015-07-17 10:38:11 -0400298 __s32 fs_id;
299 int id;
300 int flags;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500301#define ORANGEFS_OPT_INTR 0x01
302#define ORANGEFS_OPT_LOCAL_LOCK 0x02
303 char devname[ORANGEFS_MAX_SERVER_ADDR_LEN];
Mike Marshallf7ab0932015-07-17 10:38:11 -0400304 struct super_block *sb;
305 int mount_pending;
306 struct list_head list;
307};
308
309/*
Mike Marshallf7ab0932015-07-17 10:38:11 -0400310 * structure that holds the state of any async I/O operation issued
311 * through the VFS. Needed especially to handle cancellation requests
312 * or even completion notification so that the VFS client-side daemon
313 * can free up its vfs_request slots.
314 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500315struct orangefs_kiocb_s {
Mike Marshallf7ab0932015-07-17 10:38:11 -0400316 /* the pointer to the task that initiated the AIO */
317 struct task_struct *tsk;
318
319 /* pointer to the kiocb that kicked this operation */
320 struct kiocb *kiocb;
321
322 /* buffer index that was used for the I/O */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500323 struct orangefs_bufmap *bufmap;
Mike Marshallf7ab0932015-07-17 10:38:11 -0400324 int buffer_index;
325
Yi Liu8bb8aef2015-11-24 15:12:14 -0500326 /* orangefs kernel operation type */
327 struct orangefs_kernel_op_s *op;
Mike Marshallf7ab0932015-07-17 10:38:11 -0400328
329 /* The user space buffers from/to which I/O is being staged */
330 struct iovec *iov;
331
332 /* number of elements in the iovector */
333 unsigned long nr_segs;
334
335 /* set to indicate the type of the operation */
336 int rw;
337
338 /* file offset */
339 loff_t offset;
340
341 /* and the count in bytes */
342 size_t bytes_to_be_copied;
343
344 ssize_t bytes_copied;
345 int needs_cleanup;
346};
347
Yi Liu8bb8aef2015-11-24 15:12:14 -0500348struct orangefs_stats {
Mike Marshallf7ab0932015-07-17 10:38:11 -0400349 unsigned long cache_hits;
350 unsigned long cache_misses;
351 unsigned long reads;
352 unsigned long writes;
353};
354
Yi Liu8bb8aef2015-11-24 15:12:14 -0500355extern struct orangefs_stats g_orangefs_stats;
Mike Marshallf7ab0932015-07-17 10:38:11 -0400356
357/*
Mike Marshall54804942015-10-05 13:44:24 -0400358 * NOTE: See Documentation/filesystems/porting for information
359 * on implementing FOO_I and properly accessing fs private data
360 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500361static inline struct orangefs_inode_s *ORANGEFS_I(struct inode *inode)
Mike Marshallf7ab0932015-07-17 10:38:11 -0400362{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500363 return container_of(inode, struct orangefs_inode_s, vfs_inode);
Mike Marshallf7ab0932015-07-17 10:38:11 -0400364}
365
Yi Liu8bb8aef2015-11-24 15:12:14 -0500366static inline struct orangefs_sb_info_s *ORANGEFS_SB(struct super_block *sb)
Mike Marshallf7ab0932015-07-17 10:38:11 -0400367{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500368 return (struct orangefs_sb_info_s *) sb->s_fs_info;
Mike Marshallf7ab0932015-07-17 10:38:11 -0400369}
370
371/* ino_t descends from "unsigned long", 8 bytes, 64 bits. */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500372static inline ino_t orangefs_khandle_to_ino(struct orangefs_khandle *khandle)
Mike Marshallf7ab0932015-07-17 10:38:11 -0400373{
374 union {
375 unsigned char u[8];
376 __u64 ino;
377 } ihandle;
378
379 ihandle.u[0] = khandle->u[0] ^ khandle->u[4];
380 ihandle.u[1] = khandle->u[1] ^ khandle->u[5];
381 ihandle.u[2] = khandle->u[2] ^ khandle->u[6];
382 ihandle.u[3] = khandle->u[3] ^ khandle->u[7];
383 ihandle.u[4] = khandle->u[12] ^ khandle->u[8];
384 ihandle.u[5] = khandle->u[13] ^ khandle->u[9];
385 ihandle.u[6] = khandle->u[14] ^ khandle->u[10];
386 ihandle.u[7] = khandle->u[15] ^ khandle->u[11];
387
388 return ihandle.ino;
389}
390
Yi Liu8bb8aef2015-11-24 15:12:14 -0500391static inline struct orangefs_khandle *get_khandle_from_ino(struct inode *inode)
Mike Marshallf7ab0932015-07-17 10:38:11 -0400392{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500393 return &(ORANGEFS_I(inode)->refn.khandle);
Mike Marshallf7ab0932015-07-17 10:38:11 -0400394}
395
396static inline __s32 get_fsid_from_ino(struct inode *inode)
397{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500398 return ORANGEFS_I(inode)->refn.fs_id;
Mike Marshallf7ab0932015-07-17 10:38:11 -0400399}
400
401static inline ino_t get_ino_from_khandle(struct inode *inode)
402{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500403 struct orangefs_khandle *khandle;
Mike Marshallf7ab0932015-07-17 10:38:11 -0400404 ino_t ino;
405
406 khandle = get_khandle_from_ino(inode);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500407 ino = orangefs_khandle_to_ino(khandle);
Mike Marshallf7ab0932015-07-17 10:38:11 -0400408 return ino;
409}
410
411static inline ino_t get_parent_ino_from_dentry(struct dentry *dentry)
412{
413 return get_ino_from_khandle(dentry->d_parent->d_inode);
414}
415
416static inline int is_root_handle(struct inode *inode)
417{
418 gossip_debug(GOSSIP_DCACHE_DEBUG,
419 "%s: root handle: %pU, this handle: %pU:\n",
420 __func__,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500421 &ORANGEFS_SB(inode->i_sb)->root_khandle,
Mike Marshallf7ab0932015-07-17 10:38:11 -0400422 get_khandle_from_ino(inode));
423
Yi Liu8bb8aef2015-11-24 15:12:14 -0500424 if (ORANGEFS_khandle_cmp(&(ORANGEFS_SB(inode->i_sb)->root_khandle),
Mike Marshallf7ab0932015-07-17 10:38:11 -0400425 get_khandle_from_ino(inode)))
426 return 0;
427 else
428 return 1;
429}
430
Yi Liu8bb8aef2015-11-24 15:12:14 -0500431static inline int match_handle(struct orangefs_khandle resp_handle,
Mike Marshallf7ab0932015-07-17 10:38:11 -0400432 struct inode *inode)
433{
434 gossip_debug(GOSSIP_DCACHE_DEBUG,
435 "%s: one handle: %pU, another handle:%pU:\n",
436 __func__,
437 &resp_handle,
438 get_khandle_from_ino(inode));
439
Yi Liu8bb8aef2015-11-24 15:12:14 -0500440 if (ORANGEFS_khandle_cmp(&resp_handle, get_khandle_from_ino(inode)))
Mike Marshallf7ab0932015-07-17 10:38:11 -0400441 return 0;
442 else
443 return 1;
444}
445
446/*
Yi Liu8bb8aef2015-11-24 15:12:14 -0500447 * defined in orangefs-cache.c
Mike Marshallf7ab0932015-07-17 10:38:11 -0400448 */
449int op_cache_initialize(void);
450int op_cache_finalize(void);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500451struct orangefs_kernel_op_s *op_alloc(__s32 type);
Al Viro78699e22016-02-11 23:07:19 -0500452void orangefs_new_tag(struct orangefs_kernel_op_s *op);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500453char *get_opname_string(struct orangefs_kernel_op_s *new_op);
Mike Marshallf7ab0932015-07-17 10:38:11 -0400454
Yi Liu8bb8aef2015-11-24 15:12:14 -0500455int orangefs_inode_cache_initialize(void);
456int orangefs_inode_cache_finalize(void);
Mike Marshallf7ab0932015-07-17 10:38:11 -0400457
Mike Marshallf7ab0932015-07-17 10:38:11 -0400458/*
Yi Liu8bb8aef2015-11-24 15:12:14 -0500459 * defined in orangefs-mod.c
Mike Marshallf7ab0932015-07-17 10:38:11 -0400460 */
461void purge_inprogress_ops(void);
462
463/*
464 * defined in waitqueue.c
465 */
Mike Marshallf7ab0932015-07-17 10:38:11 -0400466void purge_waiting_ops(void);
467
468/*
469 * defined in super.c
470 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500471struct dentry *orangefs_mount(struct file_system_type *fst,
Mike Marshallf7ab0932015-07-17 10:38:11 -0400472 int flags,
473 const char *devname,
474 void *data);
475
Yi Liu8bb8aef2015-11-24 15:12:14 -0500476void orangefs_kill_sb(struct super_block *sb);
477int orangefs_remount(struct super_block *sb);
Mike Marshallf7ab0932015-07-17 10:38:11 -0400478
479int fsid_key_table_initialize(void);
480void fsid_key_table_finalize(void);
481
482/*
483 * defined in inode.c
484 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500485__u32 convert_to_orangefs_mask(unsigned long lite_mask);
486struct inode *orangefs_new_inode(struct super_block *sb,
Mike Marshallf7ab0932015-07-17 10:38:11 -0400487 struct inode *dir,
488 int mode,
489 dev_t dev,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500490 struct orangefs_object_kref *ref);
Mike Marshallf7ab0932015-07-17 10:38:11 -0400491
Yi Liu8bb8aef2015-11-24 15:12:14 -0500492int orangefs_setattr(struct dentry *dentry, struct iattr *iattr);
Mike Marshallf7ab0932015-07-17 10:38:11 -0400493
Yi Liu8bb8aef2015-11-24 15:12:14 -0500494int orangefs_getattr(struct vfsmount *mnt,
Mike Marshallf7ab0932015-07-17 10:38:11 -0400495 struct dentry *dentry,
496 struct kstat *kstat);
497
Martin Brandenburg933287d2016-01-30 13:46:54 -0500498int orangefs_permission(struct inode *inode, int mask);
499
Mike Marshallf7ab0932015-07-17 10:38:11 -0400500/*
501 * defined in xattr.c
502 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500503int orangefs_setxattr(struct dentry *dentry,
Mike Marshallf7ab0932015-07-17 10:38:11 -0400504 const char *name,
505 const void *value,
506 size_t size,
507 int flags);
508
Yi Liu8bb8aef2015-11-24 15:12:14 -0500509ssize_t orangefs_getxattr(struct dentry *dentry,
Mike Marshallf7ab0932015-07-17 10:38:11 -0400510 const char *name,
511 void *buffer,
512 size_t size);
513
Yi Liu8bb8aef2015-11-24 15:12:14 -0500514ssize_t orangefs_listxattr(struct dentry *dentry, char *buffer, size_t size);
Mike Marshallf7ab0932015-07-17 10:38:11 -0400515
516/*
517 * defined in namei.c
518 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500519struct inode *orangefs_iget(struct super_block *sb,
520 struct orangefs_object_kref *ref);
Mike Marshallf7ab0932015-07-17 10:38:11 -0400521
Yi Liu8bb8aef2015-11-24 15:12:14 -0500522ssize_t orangefs_inode_read(struct inode *inode,
523 struct iov_iter *iter,
524 loff_t *offset,
525 loff_t readahead_size);
Mike Marshallf7ab0932015-07-17 10:38:11 -0400526
527/*
Yi Liu8bb8aef2015-11-24 15:12:14 -0500528 * defined in devorangefs-req.c
Mike Marshallf7ab0932015-07-17 10:38:11 -0400529 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500530int orangefs_dev_init(void);
531void orangefs_dev_cleanup(void);
Mike Marshallf7ab0932015-07-17 10:38:11 -0400532int is_daemon_in_service(void);
Al Viro78699e22016-02-11 23:07:19 -0500533bool __is_daemon_in_service(void);
Mike Marshallf7ab0932015-07-17 10:38:11 -0400534int fs_mount_pending(__s32 fsid);
535
536/*
Yi Liu8bb8aef2015-11-24 15:12:14 -0500537 * defined in orangefs-utils.c
Mike Marshallf7ab0932015-07-17 10:38:11 -0400538 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500539__s32 fsid_of_op(struct orangefs_kernel_op_s *op);
Mike Marshallf7ab0932015-07-17 10:38:11 -0400540
Yi Liu8bb8aef2015-11-24 15:12:14 -0500541int orangefs_flush_inode(struct inode *inode);
Mike Marshallf7ab0932015-07-17 10:38:11 -0400542
Yi Liu8bb8aef2015-11-24 15:12:14 -0500543ssize_t orangefs_inode_getxattr(struct inode *inode,
Mike Marshallf7ab0932015-07-17 10:38:11 -0400544 const char *prefix,
545 const char *name,
546 void *buffer,
547 size_t size);
548
Yi Liu8bb8aef2015-11-24 15:12:14 -0500549int orangefs_inode_setxattr(struct inode *inode,
Mike Marshallf7ab0932015-07-17 10:38:11 -0400550 const char *prefix,
551 const char *name,
552 const void *value,
553 size_t size,
554 int flags);
555
Martin Brandenburg99109822016-01-28 10:19:40 -0500556int orangefs_inode_getattr(struct inode *inode, __u32 mask, int check);
Mike Marshallf7ab0932015-07-17 10:38:11 -0400557
Yi Liu8bb8aef2015-11-24 15:12:14 -0500558int orangefs_inode_setattr(struct inode *inode, struct iattr *iattr);
Mike Marshallf7ab0932015-07-17 10:38:11 -0400559
Yi Liu8bb8aef2015-11-24 15:12:14 -0500560void orangefs_make_bad_inode(struct inode *inode);
Mike Marshallf7ab0932015-07-17 10:38:11 -0400561
Yi Liu8bb8aef2015-11-24 15:12:14 -0500562int orangefs_unmount_sb(struct super_block *sb);
Mike Marshallf7ab0932015-07-17 10:38:11 -0400563
Al Viro78699e22016-02-11 23:07:19 -0500564bool orangefs_cancel_op_in_progress(struct orangefs_kernel_op_s *op);
Mike Marshallf7ab0932015-07-17 10:38:11 -0400565
Yi Liu8bb8aef2015-11-24 15:12:14 -0500566static inline __u64 orangefs_convert_time_field(const struct timespec *ts)
Al Viro57141562015-10-08 22:02:00 -0400567{
568 return (__u64)ts->tv_sec;
569}
Mike Marshallf7ab0932015-07-17 10:38:11 -0400570
Yi Liu8bb8aef2015-11-24 15:12:14 -0500571int orangefs_normalize_to_errno(__s32 error_code);
Mike Marshallf7ab0932015-07-17 10:38:11 -0400572
573extern struct mutex devreq_mutex;
574extern struct mutex request_mutex;
575extern int debug;
576extern int op_timeout_secs;
577extern int slot_timeout_secs;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500578extern struct list_head orangefs_superblocks;
579extern spinlock_t orangefs_superblocks_lock;
580extern struct list_head orangefs_request_list;
581extern spinlock_t orangefs_request_list_lock;
582extern wait_queue_head_t orangefs_request_list_waitq;
Mike Marshallf7ab0932015-07-17 10:38:11 -0400583extern struct list_head *htable_ops_in_progress;
584extern spinlock_t htable_ops_in_progress_lock;
585extern int hash_table_size;
586
Yi Liu8bb8aef2015-11-24 15:12:14 -0500587extern const struct address_space_operations orangefs_address_operations;
588extern struct backing_dev_info orangefs_backing_dev_info;
589extern struct inode_operations orangefs_file_inode_operations;
590extern const struct file_operations orangefs_file_operations;
591extern struct inode_operations orangefs_symlink_inode_operations;
592extern struct inode_operations orangefs_dir_inode_operations;
593extern const struct file_operations orangefs_dir_operations;
594extern const struct dentry_operations orangefs_dentry_operations;
595extern const struct file_operations orangefs_devreq_file_operations;
Mike Marshallf7ab0932015-07-17 10:38:11 -0400596
Yi Liu8bb8aef2015-11-24 15:12:14 -0500597extern wait_queue_head_t orangefs_bufmap_init_waitq;
Mike Marshallf7ab0932015-07-17 10:38:11 -0400598
599/*
600 * misc convenience macros
601 */
Mike Marshallf7ab0932015-07-17 10:38:11 -0400602
Yi Liu8bb8aef2015-11-24 15:12:14 -0500603#define ORANGEFS_OP_INTERRUPTIBLE 1 /* service_operation() is interruptible */
604#define ORANGEFS_OP_PRIORITY 2 /* service_operation() is high priority */
605#define ORANGEFS_OP_CANCELLATION 4 /* this is a cancellation */
Mike Marshalladcf34a2016-02-24 16:54:27 -0500606#define ORANGEFS_OP_NO_MUTEX 8 /* don't acquire request_mutex */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500607#define ORANGEFS_OP_ASYNC 16 /* Queue it, but don't wait */
Mike Marshallf7ab0932015-07-17 10:38:11 -0400608
Yi Liu8bb8aef2015-11-24 15:12:14 -0500609int service_operation(struct orangefs_kernel_op_s *op,
Mike Marshallf7ab0932015-07-17 10:38:11 -0400610 const char *op_name,
611 int flags);
612
Mike Marshallf7ab0932015-07-17 10:38:11 -0400613#define get_interruptible_flag(inode) \
Yi Liu8bb8aef2015-11-24 15:12:14 -0500614 ((ORANGEFS_SB(inode->i_sb)->flags & ORANGEFS_OPT_INTR) ? \
615 ORANGEFS_OP_INTERRUPTIBLE : 0)
Mike Marshallf7ab0932015-07-17 10:38:11 -0400616
Yi Liu8bb8aef2015-11-24 15:12:14 -0500617#define add_orangefs_sb(sb) \
Mike Marshallf7ab0932015-07-17 10:38:11 -0400618do { \
619 gossip_debug(GOSSIP_SUPER_DEBUG, \
Yi Liu8bb8aef2015-11-24 15:12:14 -0500620 "Adding SB %p to orangefs superblocks\n", \
621 ORANGEFS_SB(sb)); \
622 spin_lock(&orangefs_superblocks_lock); \
623 list_add_tail(&ORANGEFS_SB(sb)->list, &orangefs_superblocks); \
624 spin_unlock(&orangefs_superblocks_lock); \
Mike Marshallf7ab0932015-07-17 10:38:11 -0400625} while (0)
626
Yi Liu8bb8aef2015-11-24 15:12:14 -0500627#define remove_orangefs_sb(sb) \
Mike Marshallf7ab0932015-07-17 10:38:11 -0400628do { \
629 struct list_head *tmp = NULL; \
630 struct list_head *tmp_safe = NULL; \
Yi Liu8bb8aef2015-11-24 15:12:14 -0500631 struct orangefs_sb_info_s *orangefs_sb = NULL; \
Mike Marshallf7ab0932015-07-17 10:38:11 -0400632 \
Yi Liu8bb8aef2015-11-24 15:12:14 -0500633 spin_lock(&orangefs_superblocks_lock); \
634 list_for_each_safe(tmp, tmp_safe, &orangefs_superblocks) { \
635 orangefs_sb = list_entry(tmp, \
636 struct orangefs_sb_info_s, \
Mike Marshallf7ab0932015-07-17 10:38:11 -0400637 list); \
Yi Liu8bb8aef2015-11-24 15:12:14 -0500638 if (orangefs_sb && (orangefs_sb->sb == sb)) { \
Mike Marshallf7ab0932015-07-17 10:38:11 -0400639 gossip_debug(GOSSIP_SUPER_DEBUG, \
Yi Liu8bb8aef2015-11-24 15:12:14 -0500640 "Removing SB %p from orangefs superblocks\n", \
641 orangefs_sb); \
642 list_del(&orangefs_sb->list); \
Mike Marshallf7ab0932015-07-17 10:38:11 -0400643 break; \
644 } \
645 } \
Yi Liu8bb8aef2015-11-24 15:12:14 -0500646 spin_unlock(&orangefs_superblocks_lock); \
Mike Marshallf7ab0932015-07-17 10:38:11 -0400647} while (0)
648
Yi Liu8bb8aef2015-11-24 15:12:14 -0500649#define orangefs_lock_inode(inode) spin_lock(&inode->i_lock)
650#define orangefs_unlock_inode(inode) spin_unlock(&inode->i_lock)
Mike Marshallf7ab0932015-07-17 10:38:11 -0400651
652#define fill_default_sys_attrs(sys_attr, type, mode) \
653do { \
654 sys_attr.owner = from_kuid(current_user_ns(), current_fsuid()); \
655 sys_attr.group = from_kgid(current_user_ns(), current_fsgid()); \
656 sys_attr.size = 0; \
Yi Liu8bb8aef2015-11-24 15:12:14 -0500657 sys_attr.perms = ORANGEFS_util_translate_mode(mode); \
Mike Marshallf7ab0932015-07-17 10:38:11 -0400658 sys_attr.objtype = type; \
Yi Liu8bb8aef2015-11-24 15:12:14 -0500659 sys_attr.mask = ORANGEFS_ATTR_SYS_ALL_SETABLE; \
Mike Marshallf7ab0932015-07-17 10:38:11 -0400660} while (0)
661
Yi Liu8bb8aef2015-11-24 15:12:14 -0500662#define orangefs_inode_lock(__i) mutex_lock(&(__i)->i_mutex)
Mike Marshallf7ab0932015-07-17 10:38:11 -0400663
Yi Liu8bb8aef2015-11-24 15:12:14 -0500664#define orangefs_inode_unlock(__i) mutex_unlock(&(__i)->i_mutex)
Mike Marshallf7ab0932015-07-17 10:38:11 -0400665
Yi Liu8bb8aef2015-11-24 15:12:14 -0500666static inline void orangefs_i_size_write(struct inode *inode, loff_t i_size)
Mike Marshallf7ab0932015-07-17 10:38:11 -0400667{
668#if BITS_PER_LONG == 32 && defined(CONFIG_SMP)
Arnd Bergmanneb57bcc2015-12-21 14:49:29 +0100669 orangefs_inode_lock(inode);
Mike Marshallf7ab0932015-07-17 10:38:11 -0400670#endif
671 i_size_write(inode, i_size);
672#if BITS_PER_LONG == 32 && defined(CONFIG_SMP)
Yi Liu8bb8aef2015-11-24 15:12:14 -0500673 orangefs_inode_unlock(inode);
Mike Marshallf7ab0932015-07-17 10:38:11 -0400674#endif
675}
676
677static inline unsigned int diff(struct timeval *end, struct timeval *begin)
678{
679 if (end->tv_usec < begin->tv_usec) {
680 end->tv_usec += 1000000;
681 end->tv_sec--;
682 }
683 end->tv_sec -= begin->tv_sec;
684 end->tv_usec -= begin->tv_usec;
685 return (end->tv_sec * 1000000) + end->tv_usec;
686}
687
Yi Liu8bb8aef2015-11-24 15:12:14 -0500688#endif /* __ORANGEFSKERNEL_H */