orangefs: get rid of op refcounts
[deliverable/linux.git] / fs / orangefs / orangefs-kernel.h
CommitLineData
f7ab093f
MM
1/*
2 * (C) 2001 Clemson University and The University of Chicago
3 *
4 * See COPYING in top-level directory.
5 */
6
7/*
8bb8aefd 8 * The ORANGEFS Linux kernel support allows ORANGEFS volumes to be mounted and
f7ab093f
MM
9 * 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/*
8bb8aefd 15 * Declarations and macros for the ORANGEFS Linux kernel support.
f7ab093f
MM
16 */
17
8bb8aefd
YL
18#ifndef __ORANGEFSKERNEL_H
19#define __ORANGEFSKERNEL_H
f7ab093f
MM
20
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
575e9461 56#include "orangefs-dev-proto.h"
f7ab093f 57
8bb8aefd
YL
58#ifdef ORANGEFS_KERNEL_DEBUG
59#define ORANGEFS_DEFAULT_OP_TIMEOUT_SECS 10
f7ab093f 60#else
8bb8aefd 61#define ORANGEFS_DEFAULT_OP_TIMEOUT_SECS 20
f7ab093f
MM
62#endif
63
8bb8aefd 64#define ORANGEFS_BUFMAP_WAIT_TIMEOUT_SECS 30
f7ab093f 65
8bb8aefd 66#define ORANGEFS_DEFAULT_SLOT_TIMEOUT_SECS 900 /* 15 minutes */
f7ab093f 67
8bb8aefd 68#define ORANGEFS_REQDEVICE_NAME "pvfs2-req"
f7ab093f 69
8bb8aefd
YL
70#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
f7ab093f 77
cf0c2771 78#define MAX_DEV_REQ_UPSIZE (2 * sizeof(__s32) + \
8bb8aefd 79sizeof(__u64) + sizeof(struct orangefs_upcall_s))
cf0c2771 80#define MAX_DEV_REQ_DOWNSIZE (2 * sizeof(__s32) + \
8bb8aefd 81sizeof(__u64) + sizeof(struct orangefs_downcall_s))
f7ab093f 82
f7ab093f 83/*
8bb8aefd 84 * valid orangefs kernel operation states
f7ab093f
MM
85 *
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
ed42fe05 92 * given up - submitter has given up waiting for it
f7ab093f 93 */
8bb8aefd 94enum orangefs_vfs_op_states {
f7ab093f
MM
95 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,
ed42fe05 100 OP_VFS_STATE_GIVEN_UP = 16,
f7ab093f
MM
101};
102
f7ab093f
MM
103/*
104 * Defines for controlling whether I/O upcalls are for async or sync operations
105 */
8bb8aefd
YL
106enum ORANGEFS_async_io_type {
107 ORANGEFS_VFS_SYNC_IO = 0,
108 ORANGEFS_VFS_ASYNC_IO = 1,
f7ab093f
MM
109};
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/*
8bb8aefd 122 * orangefs kernel memory related flags
f7ab093f
MM
123 */
124
8bb8aefd
YL
125#if ((defined ORANGEFS_KERNEL_DEBUG) && (defined CONFIG_DEBUG_SLAB))
126#define ORANGEFS_CACHE_CREATE_FLAGS SLAB_RED_ZONE
f7ab093f 127#else
8bb8aefd
YL
128#define ORANGEFS_CACHE_CREATE_FLAGS 0
129#endif /* ((defined ORANGEFS_KERNEL_DEBUG) && (defined CONFIG_DEBUG_SLAB)) */
f7ab093f 130
8bb8aefd
YL
131#define ORANGEFS_GFP_FLAGS (GFP_KERNEL)
132#define ORANGEFS_BUFMAP_GFP_FLAGS (GFP_KERNEL)
f7ab093f 133
8bb8aefd
YL
134/* 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
f7ab093f 139
fef8b67c
MM
140#define ORANGEFS_XATTR_NAME_ACL_ACCESS XATTR_NAME_POSIX_ACL_ACCESS
141#define ORANGEFS_XATTR_NAME_ACL_DEFAULT XATTR_NAME_POSIX_ACL_DEFAULT
8bb8aefd
YL
142#define ORANGEFS_XATTR_NAME_TRUSTED_PREFIX "trusted."
143#define ORANGEFS_XATTR_NAME_DEFAULT_PREFIX ""
f7ab093f 144
8bb8aefd 145/* these functions are defined in orangefs-utils.c */
f7ab093f
MM
146int orangefs_prepare_cdm_array(char *debug_array_string);
147int orangefs_prepare_debugfs_help_string(int);
148
8bb8aefd
YL
149/* defined in orangefs-debugfs.c */
150int orangefs_client_debug_init(void);
f7ab093f
MM
151
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
8bb8aefd
YL
162/*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];
f7ab093f
MM
166extern unsigned int kernel_mask_set_mod_init;
167
8bb8aefd
YL
168extern int orangefs_init_acl(struct inode *inode, struct inode *dir);
169extern const struct xattr_handler *orangefs_xattr_handlers[];
f7ab093f 170
8bb8aefd
YL
171extern 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);
f7ab093f 173
f7ab093f
MM
174/*
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/*
8bb8aefd 184 * orangefs data structures
f7ab093f 185 */
8bb8aefd
YL
186struct orangefs_kernel_op_s {
187 enum orangefs_vfs_op_states op_state;
f7ab093f
MM
188 __u64 tag;
189
190 /*
191 * Set uses_shared_memory to 1 if this operation uses shared memory.
192 * If true, then a retry on the op must also get a new shared memory
78699e29
AV
193 * buffer and re-populate it. Cancels don't care - it only matters
194 * for service_operation() retry logics and cancels don't go through
195 * it anymore.
f7ab093f 196 */
78699e29
AV
197 union {
198 int uses_shared_memory;
199 int slot_to_free;
200 };
f7ab093f 201
8bb8aefd
YL
202 struct orangefs_upcall_s upcall;
203 struct orangefs_downcall_s downcall;
f7ab093f 204
d2d87a3b 205 struct completion waitq;
f7ab093f
MM
206 spinlock_t lock;
207
f7ab093f
MM
208 /* VFS aio fields */
209
f7ab093f
MM
210 int attempts;
211
212 struct list_head list;
213};
214
60831949
AV
215#define set_op_state_waiting(op) ((op)->op_state = OP_VFS_STATE_WAITING)
216#define set_op_state_inprogress(op) ((op)->op_state = OP_VFS_STATE_INPROGR)
2d4cae0d 217#define set_op_state_given_up(op) ((op)->op_state = OP_VFS_STATE_GIVEN_UP)
60831949
AV
218static inline void set_op_state_serviced(struct orangefs_kernel_op_s *op)
219{
220 op->op_state = OP_VFS_STATE_SERVICED;
d2d87a3b 221 complete(&op->waitq);
60831949 222}
60831949
AV
223
224#define op_state_waiting(op) ((op)->op_state & OP_VFS_STATE_WAITING)
225#define op_state_in_progress(op) ((op)->op_state & OP_VFS_STATE_INPROGR)
226#define op_state_serviced(op) ((op)->op_state & OP_VFS_STATE_SERVICED)
227#define op_state_purged(op) ((op)->op_state & OP_VFS_STATE_PURGED)
ed42fe05 228#define op_state_given_up(op) ((op)->op_state & OP_VFS_STATE_GIVEN_UP)
78699e29 229#define op_is_cancel(op) ((op)->upcall.type == ORANGEFS_VFS_OP_CANCEL)
ed42fe05 230
c1223ca4 231void op_release(struct orangefs_kernel_op_s *op);
60831949 232
78699e29
AV
233extern void orangefs_bufmap_put(int);
234static inline void put_cancel(struct orangefs_kernel_op_s *op)
235{
236 orangefs_bufmap_put(op->slot_to_free);
237 op_release(op);
238}
239
240static inline void set_op_state_purged(struct orangefs_kernel_op_s *op)
241{
242 spin_lock(&op->lock);
243 if (unlikely(op_is_cancel(op))) {
05a50a5b 244 list_del_init(&op->list);
78699e29
AV
245 spin_unlock(&op->lock);
246 put_cancel(op);
247 } else {
248 op->op_state |= OP_VFS_STATE_PURGED;
d2d87a3b 249 complete(&op->waitq);
78699e29
AV
250 spin_unlock(&op->lock);
251 }
252}
253
8bb8aefd
YL
254/* per inode private orangefs info */
255struct orangefs_inode_s {
256 struct orangefs_object_kref refn;
257 char link_target[ORANGEFS_NAME_MAX];
f7ab093f
MM
258 __s64 blksize;
259 /*
260 * Reading/Writing Extended attributes need to acquire the appropriate
8bb8aefd 261 * reader/writer semaphore on the orangefs_inode_s structure.
f7ab093f
MM
262 */
263 struct rw_semaphore xattr_sem;
264
265 struct inode vfs_inode;
266 sector_t last_failed_block_index_read;
267
268 /*
269 * State of in-memory attributes not yet flushed to disk associated
270 * with this object
271 */
272 unsigned long pinode_flags;
f7ab093f
MM
273};
274
275#define P_ATIME_FLAG 0
276#define P_MTIME_FLAG 1
277#define P_CTIME_FLAG 2
278#define P_MODE_FLAG 3
279
280#define ClearAtimeFlag(pinode) clear_bit(P_ATIME_FLAG, &(pinode)->pinode_flags)
281#define SetAtimeFlag(pinode) set_bit(P_ATIME_FLAG, &(pinode)->pinode_flags)
282#define AtimeFlag(pinode) test_bit(P_ATIME_FLAG, &(pinode)->pinode_flags)
283
284#define ClearMtimeFlag(pinode) clear_bit(P_MTIME_FLAG, &(pinode)->pinode_flags)
285#define SetMtimeFlag(pinode) set_bit(P_MTIME_FLAG, &(pinode)->pinode_flags)
286#define MtimeFlag(pinode) test_bit(P_MTIME_FLAG, &(pinode)->pinode_flags)
287
288#define ClearCtimeFlag(pinode) clear_bit(P_CTIME_FLAG, &(pinode)->pinode_flags)
289#define SetCtimeFlag(pinode) set_bit(P_CTIME_FLAG, &(pinode)->pinode_flags)
290#define CtimeFlag(pinode) test_bit(P_CTIME_FLAG, &(pinode)->pinode_flags)
291
292#define ClearModeFlag(pinode) clear_bit(P_MODE_FLAG, &(pinode)->pinode_flags)
293#define SetModeFlag(pinode) set_bit(P_MODE_FLAG, &(pinode)->pinode_flags)
294#define ModeFlag(pinode) test_bit(P_MODE_FLAG, &(pinode)->pinode_flags)
295
8bb8aefd
YL
296/* per superblock private orangefs info */
297struct orangefs_sb_info_s {
298 struct orangefs_khandle root_khandle;
f7ab093f
MM
299 __s32 fs_id;
300 int id;
301 int flags;
8bb8aefd
YL
302#define ORANGEFS_OPT_INTR 0x01
303#define ORANGEFS_OPT_LOCAL_LOCK 0x02
304 char devname[ORANGEFS_MAX_SERVER_ADDR_LEN];
f7ab093f
MM
305 struct super_block *sb;
306 int mount_pending;
307 struct list_head list;
308};
309
f7ab093f
MM
310/*
311 * structure that holds the state of any async I/O operation issued
312 * through the VFS. Needed especially to handle cancellation requests
313 * or even completion notification so that the VFS client-side daemon
314 * can free up its vfs_request slots.
315 */
8bb8aefd 316struct orangefs_kiocb_s {
f7ab093f
MM
317 /* the pointer to the task that initiated the AIO */
318 struct task_struct *tsk;
319
320 /* pointer to the kiocb that kicked this operation */
321 struct kiocb *kiocb;
322
323 /* buffer index that was used for the I/O */
8bb8aefd 324 struct orangefs_bufmap *bufmap;
f7ab093f
MM
325 int buffer_index;
326
8bb8aefd
YL
327 /* orangefs kernel operation type */
328 struct orangefs_kernel_op_s *op;
f7ab093f
MM
329
330 /* The user space buffers from/to which I/O is being staged */
331 struct iovec *iov;
332
333 /* number of elements in the iovector */
334 unsigned long nr_segs;
335
336 /* set to indicate the type of the operation */
337 int rw;
338
339 /* file offset */
340 loff_t offset;
341
342 /* and the count in bytes */
343 size_t bytes_to_be_copied;
344
345 ssize_t bytes_copied;
346 int needs_cleanup;
347};
348
8bb8aefd 349struct orangefs_stats {
f7ab093f
MM
350 unsigned long cache_hits;
351 unsigned long cache_misses;
352 unsigned long reads;
353 unsigned long writes;
354};
355
8bb8aefd 356extern struct orangefs_stats g_orangefs_stats;
f7ab093f
MM
357
358/*
54804949
MM
359 * NOTE: See Documentation/filesystems/porting for information
360 * on implementing FOO_I and properly accessing fs private data
361 */
8bb8aefd 362static inline struct orangefs_inode_s *ORANGEFS_I(struct inode *inode)
f7ab093f 363{
8bb8aefd 364 return container_of(inode, struct orangefs_inode_s, vfs_inode);
f7ab093f
MM
365}
366
8bb8aefd 367static inline struct orangefs_sb_info_s *ORANGEFS_SB(struct super_block *sb)
f7ab093f 368{
8bb8aefd 369 return (struct orangefs_sb_info_s *) sb->s_fs_info;
f7ab093f
MM
370}
371
372/* ino_t descends from "unsigned long", 8 bytes, 64 bits. */
8bb8aefd 373static inline ino_t orangefs_khandle_to_ino(struct orangefs_khandle *khandle)
f7ab093f
MM
374{
375 union {
376 unsigned char u[8];
377 __u64 ino;
378 } ihandle;
379
380 ihandle.u[0] = khandle->u[0] ^ khandle->u[4];
381 ihandle.u[1] = khandle->u[1] ^ khandle->u[5];
382 ihandle.u[2] = khandle->u[2] ^ khandle->u[6];
383 ihandle.u[3] = khandle->u[3] ^ khandle->u[7];
384 ihandle.u[4] = khandle->u[12] ^ khandle->u[8];
385 ihandle.u[5] = khandle->u[13] ^ khandle->u[9];
386 ihandle.u[6] = khandle->u[14] ^ khandle->u[10];
387 ihandle.u[7] = khandle->u[15] ^ khandle->u[11];
388
389 return ihandle.ino;
390}
391
8bb8aefd 392static inline struct orangefs_khandle *get_khandle_from_ino(struct inode *inode)
f7ab093f 393{
8bb8aefd 394 return &(ORANGEFS_I(inode)->refn.khandle);
f7ab093f
MM
395}
396
397static inline __s32 get_fsid_from_ino(struct inode *inode)
398{
8bb8aefd 399 return ORANGEFS_I(inode)->refn.fs_id;
f7ab093f
MM
400}
401
402static inline ino_t get_ino_from_khandle(struct inode *inode)
403{
8bb8aefd 404 struct orangefs_khandle *khandle;
f7ab093f
MM
405 ino_t ino;
406
407 khandle = get_khandle_from_ino(inode);
8bb8aefd 408 ino = orangefs_khandle_to_ino(khandle);
f7ab093f
MM
409 return ino;
410}
411
412static inline ino_t get_parent_ino_from_dentry(struct dentry *dentry)
413{
414 return get_ino_from_khandle(dentry->d_parent->d_inode);
415}
416
417static inline int is_root_handle(struct inode *inode)
418{
419 gossip_debug(GOSSIP_DCACHE_DEBUG,
420 "%s: root handle: %pU, this handle: %pU:\n",
421 __func__,
8bb8aefd 422 &ORANGEFS_SB(inode->i_sb)->root_khandle,
f7ab093f
MM
423 get_khandle_from_ino(inode));
424
8bb8aefd 425 if (ORANGEFS_khandle_cmp(&(ORANGEFS_SB(inode->i_sb)->root_khandle),
f7ab093f
MM
426 get_khandle_from_ino(inode)))
427 return 0;
428 else
429 return 1;
430}
431
8bb8aefd 432static inline int match_handle(struct orangefs_khandle resp_handle,
f7ab093f
MM
433 struct inode *inode)
434{
435 gossip_debug(GOSSIP_DCACHE_DEBUG,
436 "%s: one handle: %pU, another handle:%pU:\n",
437 __func__,
438 &resp_handle,
439 get_khandle_from_ino(inode));
440
8bb8aefd 441 if (ORANGEFS_khandle_cmp(&resp_handle, get_khandle_from_ino(inode)))
f7ab093f
MM
442 return 0;
443 else
444 return 1;
445}
446
447/*
8bb8aefd 448 * defined in orangefs-cache.c
f7ab093f
MM
449 */
450int op_cache_initialize(void);
451int op_cache_finalize(void);
8bb8aefd 452struct orangefs_kernel_op_s *op_alloc(__s32 type);
78699e29 453void orangefs_new_tag(struct orangefs_kernel_op_s *op);
8bb8aefd 454char *get_opname_string(struct orangefs_kernel_op_s *new_op);
f7ab093f 455
8bb8aefd
YL
456int orangefs_inode_cache_initialize(void);
457int orangefs_inode_cache_finalize(void);
f7ab093f 458
f7ab093f 459/*
8bb8aefd 460 * defined in orangefs-mod.c
f7ab093f
MM
461 */
462void purge_inprogress_ops(void);
463
464/*
465 * defined in waitqueue.c
466 */
f7ab093f
MM
467void purge_waiting_ops(void);
468
469/*
470 * defined in super.c
471 */
8bb8aefd 472struct dentry *orangefs_mount(struct file_system_type *fst,
f7ab093f
MM
473 int flags,
474 const char *devname,
475 void *data);
476
8bb8aefd
YL
477void orangefs_kill_sb(struct super_block *sb);
478int orangefs_remount(struct super_block *sb);
f7ab093f
MM
479
480int fsid_key_table_initialize(void);
481void fsid_key_table_finalize(void);
482
483/*
484 * defined in inode.c
485 */
8bb8aefd
YL
486__u32 convert_to_orangefs_mask(unsigned long lite_mask);
487struct inode *orangefs_new_inode(struct super_block *sb,
f7ab093f
MM
488 struct inode *dir,
489 int mode,
490 dev_t dev,
8bb8aefd 491 struct orangefs_object_kref *ref);
f7ab093f 492
8bb8aefd 493int orangefs_setattr(struct dentry *dentry, struct iattr *iattr);
f7ab093f 494
8bb8aefd 495int orangefs_getattr(struct vfsmount *mnt,
f7ab093f
MM
496 struct dentry *dentry,
497 struct kstat *kstat);
498
933287da
MB
499int orangefs_permission(struct inode *inode, int mask);
500
f7ab093f
MM
501/*
502 * defined in xattr.c
503 */
8bb8aefd 504int orangefs_setxattr(struct dentry *dentry,
f7ab093f
MM
505 const char *name,
506 const void *value,
507 size_t size,
508 int flags);
509
8bb8aefd 510ssize_t orangefs_getxattr(struct dentry *dentry,
f7ab093f
MM
511 const char *name,
512 void *buffer,
513 size_t size);
514
8bb8aefd 515ssize_t orangefs_listxattr(struct dentry *dentry, char *buffer, size_t size);
f7ab093f
MM
516
517/*
518 * defined in namei.c
519 */
8bb8aefd
YL
520struct inode *orangefs_iget(struct super_block *sb,
521 struct orangefs_object_kref *ref);
f7ab093f 522
8bb8aefd
YL
523ssize_t orangefs_inode_read(struct inode *inode,
524 struct iov_iter *iter,
525 loff_t *offset,
526 loff_t readahead_size);
f7ab093f
MM
527
528/*
8bb8aefd 529 * defined in devorangefs-req.c
f7ab093f 530 */
8bb8aefd
YL
531int orangefs_dev_init(void);
532void orangefs_dev_cleanup(void);
f7ab093f 533int is_daemon_in_service(void);
78699e29 534bool __is_daemon_in_service(void);
f7ab093f
MM
535int fs_mount_pending(__s32 fsid);
536
537/*
8bb8aefd 538 * defined in orangefs-utils.c
f7ab093f 539 */
8bb8aefd 540__s32 fsid_of_op(struct orangefs_kernel_op_s *op);
f7ab093f 541
8bb8aefd 542int orangefs_flush_inode(struct inode *inode);
f7ab093f 543
8bb8aefd 544ssize_t orangefs_inode_getxattr(struct inode *inode,
f7ab093f
MM
545 const char *prefix,
546 const char *name,
547 void *buffer,
548 size_t size);
549
8bb8aefd 550int orangefs_inode_setxattr(struct inode *inode,
f7ab093f
MM
551 const char *prefix,
552 const char *name,
553 const void *value,
554 size_t size,
555 int flags);
556
99109822 557int orangefs_inode_getattr(struct inode *inode, __u32 mask, int check);
f7ab093f 558
8bb8aefd 559int orangefs_inode_setattr(struct inode *inode, struct iattr *iattr);
f7ab093f 560
8bb8aefd 561void orangefs_make_bad_inode(struct inode *inode);
f7ab093f 562
8bb8aefd 563int orangefs_unmount_sb(struct super_block *sb);
f7ab093f 564
78699e29 565bool orangefs_cancel_op_in_progress(struct orangefs_kernel_op_s *op);
f7ab093f 566
8bb8aefd 567static inline __u64 orangefs_convert_time_field(const struct timespec *ts)
5714156b
AV
568{
569 return (__u64)ts->tv_sec;
570}
f7ab093f 571
8bb8aefd 572int orangefs_normalize_to_errno(__s32 error_code);
f7ab093f
MM
573
574extern struct mutex devreq_mutex;
575extern struct mutex request_mutex;
576extern int debug;
577extern int op_timeout_secs;
578extern int slot_timeout_secs;
8bb8aefd
YL
579extern struct list_head orangefs_superblocks;
580extern spinlock_t orangefs_superblocks_lock;
581extern struct list_head orangefs_request_list;
582extern spinlock_t orangefs_request_list_lock;
583extern wait_queue_head_t orangefs_request_list_waitq;
f7ab093f
MM
584extern struct list_head *htable_ops_in_progress;
585extern spinlock_t htable_ops_in_progress_lock;
586extern int hash_table_size;
587
8bb8aefd
YL
588extern const struct address_space_operations orangefs_address_operations;
589extern struct backing_dev_info orangefs_backing_dev_info;
590extern struct inode_operations orangefs_file_inode_operations;
591extern const struct file_operations orangefs_file_operations;
592extern struct inode_operations orangefs_symlink_inode_operations;
593extern struct inode_operations orangefs_dir_inode_operations;
594extern const struct file_operations orangefs_dir_operations;
595extern const struct dentry_operations orangefs_dentry_operations;
596extern const struct file_operations orangefs_devreq_file_operations;
f7ab093f 597
8bb8aefd 598extern wait_queue_head_t orangefs_bufmap_init_waitq;
f7ab093f
MM
599
600/*
601 * misc convenience macros
602 */
f7ab093f 603
8bb8aefd
YL
604#define ORANGEFS_OP_INTERRUPTIBLE 1 /* service_operation() is interruptible */
605#define ORANGEFS_OP_PRIORITY 2 /* service_operation() is high priority */
606#define ORANGEFS_OP_CANCELLATION 4 /* this is a cancellation */
607#define ORANGEFS_OP_NO_SEMAPHORE 8 /* don't acquire semaphore */
608#define ORANGEFS_OP_ASYNC 16 /* Queue it, but don't wait */
f7ab093f 609
8bb8aefd 610int service_operation(struct orangefs_kernel_op_s *op,
f7ab093f
MM
611 const char *op_name,
612 int flags);
613
f7ab093f 614#define get_interruptible_flag(inode) \
8bb8aefd
YL
615 ((ORANGEFS_SB(inode->i_sb)->flags & ORANGEFS_OPT_INTR) ? \
616 ORANGEFS_OP_INTERRUPTIBLE : 0)
f7ab093f 617
8bb8aefd 618#define add_orangefs_sb(sb) \
f7ab093f
MM
619do { \
620 gossip_debug(GOSSIP_SUPER_DEBUG, \
8bb8aefd
YL
621 "Adding SB %p to orangefs superblocks\n", \
622 ORANGEFS_SB(sb)); \
623 spin_lock(&orangefs_superblocks_lock); \
624 list_add_tail(&ORANGEFS_SB(sb)->list, &orangefs_superblocks); \
625 spin_unlock(&orangefs_superblocks_lock); \
f7ab093f
MM
626} while (0)
627
8bb8aefd 628#define remove_orangefs_sb(sb) \
f7ab093f
MM
629do { \
630 struct list_head *tmp = NULL; \
631 struct list_head *tmp_safe = NULL; \
8bb8aefd 632 struct orangefs_sb_info_s *orangefs_sb = NULL; \
f7ab093f 633 \
8bb8aefd
YL
634 spin_lock(&orangefs_superblocks_lock); \
635 list_for_each_safe(tmp, tmp_safe, &orangefs_superblocks) { \
636 orangefs_sb = list_entry(tmp, \
637 struct orangefs_sb_info_s, \
f7ab093f 638 list); \
8bb8aefd 639 if (orangefs_sb && (orangefs_sb->sb == sb)) { \
f7ab093f 640 gossip_debug(GOSSIP_SUPER_DEBUG, \
8bb8aefd
YL
641 "Removing SB %p from orangefs superblocks\n", \
642 orangefs_sb); \
643 list_del(&orangefs_sb->list); \
f7ab093f
MM
644 break; \
645 } \
646 } \
8bb8aefd 647 spin_unlock(&orangefs_superblocks_lock); \
f7ab093f
MM
648} while (0)
649
8bb8aefd
YL
650#define orangefs_lock_inode(inode) spin_lock(&inode->i_lock)
651#define orangefs_unlock_inode(inode) spin_unlock(&inode->i_lock)
f7ab093f
MM
652
653#define fill_default_sys_attrs(sys_attr, type, mode) \
654do { \
655 sys_attr.owner = from_kuid(current_user_ns(), current_fsuid()); \
656 sys_attr.group = from_kgid(current_user_ns(), current_fsgid()); \
657 sys_attr.size = 0; \
8bb8aefd 658 sys_attr.perms = ORANGEFS_util_translate_mode(mode); \
f7ab093f 659 sys_attr.objtype = type; \
8bb8aefd 660 sys_attr.mask = ORANGEFS_ATTR_SYS_ALL_SETABLE; \
f7ab093f
MM
661} while (0)
662
8bb8aefd 663#define orangefs_inode_lock(__i) mutex_lock(&(__i)->i_mutex)
f7ab093f 664
8bb8aefd 665#define orangefs_inode_unlock(__i) mutex_unlock(&(__i)->i_mutex)
f7ab093f 666
8bb8aefd 667static inline void orangefs_i_size_write(struct inode *inode, loff_t i_size)
f7ab093f
MM
668{
669#if BITS_PER_LONG == 32 && defined(CONFIG_SMP)
eb57bcc2 670 orangefs_inode_lock(inode);
f7ab093f
MM
671#endif
672 i_size_write(inode, i_size);
673#if BITS_PER_LONG == 32 && defined(CONFIG_SMP)
8bb8aefd 674 orangefs_inode_unlock(inode);
f7ab093f
MM
675#endif
676}
677
678static inline unsigned int diff(struct timeval *end, struct timeval *begin)
679{
680 if (end->tv_usec < begin->tv_usec) {
681 end->tv_usec += 1000000;
682 end->tv_sec--;
683 }
684 end->tv_sec -= begin->tv_sec;
685 end->tv_usec -= begin->tv_usec;
686 return (end->tv_sec * 1000000) + end->tv_usec;
687}
688
8bb8aefd 689#endif /* __ORANGEFSKERNEL_H */
This page took 0.119132 seconds and 5 git commands to generate.