orangefs-kernel.h 19.8 KB
Newer Older
M
Mike Marshall 已提交
1 2 3 4 5 6 7
/*
 * (C) 2001 Clemson University and The University of Chicago
 *
 * See COPYING in top-level directory.
 */

/*
8
 *  The ORANGEFS Linux kernel support allows ORANGEFS volumes to be mounted and
M
Mike Marshall 已提交
9 10 11 12 13 14
 *  accessed through the Linux VFS (i.e. using standard I/O system calls).
 *  This support is only needed on clients that wish to mount the file system.
 *
 */

/*
15
 *  Declarations and macros for the ORANGEFS Linux kernel support.
M
Mike Marshall 已提交
16 17
 */

18 19
#ifndef __ORANGEFSKERNEL_H
#define __ORANGEFSKERNEL_H
M
Mike Marshall 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55

#include <linux/kernel.h>
#include <linux/moduleparam.h>
#include <linux/statfs.h>
#include <linux/backing-dev.h>
#include <linux/device.h>
#include <linux/mpage.h>
#include <linux/namei.h>
#include <linux/errno.h>
#include <linux/init.h>
#include <linux/module.h>
#include <linux/slab.h>
#include <linux/types.h>
#include <linux/fs.h>
#include <linux/vmalloc.h>

#include <linux/aio.h>
#include <linux/posix_acl.h>
#include <linux/posix_acl_xattr.h>
#include <linux/compat.h>
#include <linux/mount.h>
#include <linux/uaccess.h>
#include <linux/atomic.h>
#include <linux/uio.h>
#include <linux/sched.h>
#include <linux/mm.h>
#include <linux/wait.h>
#include <linux/dcache.h>
#include <linux/pagemap.h>
#include <linux/poll.h>
#include <linux/rwsem.h>
#include <linux/xattr.h>
#include <linux/exportfs.h>

#include <asm/unaligned.h>

56
#include "orangefs-dev-proto.h"
M
Mike Marshall 已提交
57

58 59
#ifdef ORANGEFS_KERNEL_DEBUG
#define ORANGEFS_DEFAULT_OP_TIMEOUT_SECS       10
M
Mike Marshall 已提交
60
#else
61
#define ORANGEFS_DEFAULT_OP_TIMEOUT_SECS       20
M
Mike Marshall 已提交
62 63
#endif

64
#define ORANGEFS_BUFMAP_WAIT_TIMEOUT_SECS   30
M
Mike Marshall 已提交
65

66
#define ORANGEFS_DEFAULT_SLOT_TIMEOUT_SECS     900	/* 15 minutes */
M
Mike Marshall 已提交
67

68
#define ORANGEFS_REQDEVICE_NAME          "pvfs2-req"
M
Mike Marshall 已提交
69

70 71 72 73 74 75 76
#define ORANGEFS_DEVREQ_MAGIC             0x20030529
#define ORANGEFS_LINK_MAX                 0x000000FF
#define ORANGEFS_PURGE_RETRY_COUNT     0x00000005
#define ORANGEFS_SEEK_END              0x00000002
#define ORANGEFS_MAX_NUM_OPTIONS          0x00000004
#define ORANGEFS_MAX_MOUNT_OPT_LEN        0x00000080
#define ORANGEFS_MAX_FSKEY_LEN            64
M
Mike Marshall 已提交
77

78
#define MAX_DEV_REQ_UPSIZE (2 * sizeof(__s32) +   \
79
sizeof(__u64) + sizeof(struct orangefs_upcall_s))
80
#define MAX_DEV_REQ_DOWNSIZE (2 * sizeof(__s32) + \
81
sizeof(__u64) + sizeof(struct orangefs_downcall_s))
M
Mike Marshall 已提交
82 83

/*
84
 * valid orangefs kernel operation states
M
Mike Marshall 已提交
85 86 87 88 89 90 91
 *
 * unknown  - op was just initialized
 * waiting  - op is on request_list (upward bound)
 * inprogr  - op is in progress (waiting for downcall)
 * serviced - op has matching downcall; ok
 * purged   - op has to start a timer since client-core
 *            exited uncleanly before servicing op
92
 * given up - submitter has given up waiting for it
M
Mike Marshall 已提交
93
 */
94
enum orangefs_vfs_op_states {
M
Mike Marshall 已提交
95 96 97 98 99
	OP_VFS_STATE_UNKNOWN = 0,
	OP_VFS_STATE_WAITING = 1,
	OP_VFS_STATE_INPROGR = 2,
	OP_VFS_STATE_SERVICED = 4,
	OP_VFS_STATE_PURGED = 8,
100
	OP_VFS_STATE_GIVEN_UP = 16,
M
Mike Marshall 已提交
101 102 103 104 105
};

/*
 * Defines for controlling whether I/O upcalls are for async or sync operations
 */
106 107 108
enum ORANGEFS_async_io_type {
	ORANGEFS_VFS_SYNC_IO = 0,
	ORANGEFS_VFS_ASYNC_IO = 1,
M
Mike Marshall 已提交
109 110 111 112 113 114 115 116 117 118 119 120 121
};

/*
 * An array of client_debug_mask will be built to hold debug keyword/mask
 * values fetched from userspace.
 */
struct client_debug_mask {
	char *keyword;
	__u64 mask1;
	__u64 mask2;
};

/*
122
 * orangefs kernel memory related flags
M
Mike Marshall 已提交
123 124
 */

125 126
#if ((defined ORANGEFS_KERNEL_DEBUG) && (defined CONFIG_DEBUG_SLAB))
#define ORANGEFS_CACHE_CREATE_FLAGS SLAB_RED_ZONE
M
Mike Marshall 已提交
127
#else
128 129
#define ORANGEFS_CACHE_CREATE_FLAGS 0
#endif /* ((defined ORANGEFS_KERNEL_DEBUG) && (defined CONFIG_DEBUG_SLAB)) */
M
Mike Marshall 已提交
130

131 132
#define ORANGEFS_GFP_FLAGS (GFP_KERNEL)
#define ORANGEFS_BUFMAP_GFP_FLAGS (GFP_KERNEL)
M
Mike Marshall 已提交
133

134 135 136 137 138
/* orangefs xattr and acl related defines */
#define ORANGEFS_XATTR_INDEX_POSIX_ACL_ACCESS  1
#define ORANGEFS_XATTR_INDEX_POSIX_ACL_DEFAULT 2
#define ORANGEFS_XATTR_INDEX_TRUSTED           3
#define ORANGEFS_XATTR_INDEX_DEFAULT           4
M
Mike Marshall 已提交
139

140 141
#define ORANGEFS_XATTR_NAME_ACL_ACCESS XATTR_NAME_POSIX_ACL_ACCESS
#define ORANGEFS_XATTR_NAME_ACL_DEFAULT XATTR_NAME_POSIX_ACL_DEFAULT
142 143
#define ORANGEFS_XATTR_NAME_TRUSTED_PREFIX "trusted."
#define ORANGEFS_XATTR_NAME_DEFAULT_PREFIX ""
M
Mike Marshall 已提交
144

145
/* these functions are defined in orangefs-utils.c */
M
Mike Marshall 已提交
146 147 148
int orangefs_prepare_cdm_array(char *debug_array_string);
int orangefs_prepare_debugfs_help_string(int);

149 150
/* defined in orangefs-debugfs.c */
int orangefs_client_debug_init(void);
M
Mike Marshall 已提交
151 152 153 154 155 156 157 158 159 160 161

void debug_string_to_mask(char *, void *, int);
void do_c_mask(int, char *, struct client_debug_mask **);
void do_k_mask(int, char *, __u64 **);

void debug_mask_to_string(void *, int);
void do_k_string(void *, int);
void do_c_string(void *, int);
int check_amalgam_keyword(void *, int);
int keyword_is_amalgam(char *);

162 163 164 165
/*these variables are defined in orangefs-mod.c */
extern char kernel_debug_string[ORANGEFS_MAX_DEBUG_STRING_LEN];
extern char client_debug_string[ORANGEFS_MAX_DEBUG_STRING_LEN];
extern char client_debug_array_string[ORANGEFS_MAX_DEBUG_STRING_LEN];
M
Mike Marshall 已提交
166 167
extern unsigned int kernel_mask_set_mod_init;

168 169
extern int orangefs_init_acl(struct inode *inode, struct inode *dir);
extern const struct xattr_handler *orangefs_xattr_handlers[];
M
Mike Marshall 已提交
170

171 172
extern struct posix_acl *orangefs_get_acl(struct inode *inode, int type);
extern int orangefs_set_acl(struct inode *inode, struct posix_acl *acl, int type);
M
Mike Marshall 已提交
173 174 175 176 177 178 179 180 181 182 183

/*
 * Redefine xtvec structure so that we could move helper functions out of
 * the define
 */
struct xtvec {
	__kernel_off_t xtv_off;		/* must be off_t */
	__kernel_size_t xtv_len;	/* must be size_t */
};

/*
184
 * orangefs data structures
M
Mike Marshall 已提交
185
 */
186 187
struct orangefs_kernel_op_s {
	enum orangefs_vfs_op_states op_state;
M
Mike Marshall 已提交
188 189 190 191 192
	__u64 tag;

	/*
	 * Set uses_shared_memory to 1 if this operation uses shared memory.
	 * If true, then a retry on the op must also get a new shared memory
193 194 195
	 * buffer and re-populate it.  Cancels don't care - it only matters
	 * for service_operation() retry logics and cancels don't go through
	 * it anymore.
M
Mike Marshall 已提交
196
	 */
197 198 199 200
	union {
		int uses_shared_memory;
		int slot_to_free;
	};
M
Mike Marshall 已提交
201

202 203
	struct orangefs_upcall_s upcall;
	struct orangefs_downcall_s downcall;
M
Mike Marshall 已提交
204

205
	struct completion waitq;
M
Mike Marshall 已提交
206 207
	spinlock_t lock;

208 209
	atomic_t ref_count;

M
Mike Marshall 已提交
210 211 212 213 214 215 216
	/* VFS aio fields */

	int attempts;

	struct list_head list;
};

217 218
#define set_op_state_waiting(op)     ((op)->op_state = OP_VFS_STATE_WAITING)
#define set_op_state_inprogress(op)  ((op)->op_state = OP_VFS_STATE_INPROGR)
219
#define set_op_state_given_up(op)  ((op)->op_state = OP_VFS_STATE_GIVEN_UP)
220 221 222
static inline void set_op_state_serviced(struct orangefs_kernel_op_s *op)
{
	op->op_state = OP_VFS_STATE_SERVICED;
223
	complete(&op->waitq);
224 225 226 227 228 229
}

#define op_state_waiting(op)     ((op)->op_state & OP_VFS_STATE_WAITING)
#define op_state_in_progress(op) ((op)->op_state & OP_VFS_STATE_INPROGR)
#define op_state_serviced(op)    ((op)->op_state & OP_VFS_STATE_SERVICED)
#define op_state_purged(op)      ((op)->op_state & OP_VFS_STATE_PURGED)
230
#define op_state_given_up(op)    ((op)->op_state & OP_VFS_STATE_GIVEN_UP)
231
#define op_is_cancel(op)         ((op)->upcall.type == ORANGEFS_VFS_OP_CANCEL)
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249

static inline void get_op(struct orangefs_kernel_op_s *op)
{
	atomic_inc(&op->ref_count);
	gossip_debug(GOSSIP_DEV_DEBUG,
			"(get) Alloced OP (%p:%llu)\n",	op, llu(op->tag));
}

void __op_release(struct orangefs_kernel_op_s *op);

static inline void op_release(struct orangefs_kernel_op_s *op)
{
	if (atomic_dec_and_test(&op->ref_count)) {
		gossip_debug(GOSSIP_DEV_DEBUG,
			"(put) Releasing OP (%p:%llu)\n", op, llu((op)->tag));
		__op_release(op);
	}
}
250

251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
extern void orangefs_bufmap_put(int);
static inline void put_cancel(struct orangefs_kernel_op_s *op)
{
	orangefs_bufmap_put(op->slot_to_free);
	op_release(op);
}

static inline void set_op_state_purged(struct orangefs_kernel_op_s *op)
{
	spin_lock(&op->lock);
	if (unlikely(op_is_cancel(op))) {
		list_del(&op->list);
		spin_unlock(&op->lock);
		put_cancel(op);
	} else {
		op->op_state |= OP_VFS_STATE_PURGED;
267
		complete(&op->waitq);
268 269 270 271
		spin_unlock(&op->lock);
	}
}

272 273 274 275
/* per inode private orangefs info */
struct orangefs_inode_s {
	struct orangefs_object_kref refn;
	char link_target[ORANGEFS_NAME_MAX];
M
Mike Marshall 已提交
276 277 278
	__s64 blksize;
	/*
	 * Reading/Writing Extended attributes need to acquire the appropriate
279
	 * reader/writer semaphore on the orangefs_inode_s structure.
M
Mike Marshall 已提交
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
	 */
	struct rw_semaphore xattr_sem;

	struct inode vfs_inode;
	sector_t last_failed_block_index_read;

	/*
	 * State of in-memory attributes not yet flushed to disk associated
	 * with this object
	 */
	unsigned long pinode_flags;
};

#define P_ATIME_FLAG 0
#define P_MTIME_FLAG 1
#define P_CTIME_FLAG 2
#define P_MODE_FLAG  3

#define ClearAtimeFlag(pinode) clear_bit(P_ATIME_FLAG, &(pinode)->pinode_flags)
#define SetAtimeFlag(pinode)   set_bit(P_ATIME_FLAG, &(pinode)->pinode_flags)
#define AtimeFlag(pinode)      test_bit(P_ATIME_FLAG, &(pinode)->pinode_flags)

#define ClearMtimeFlag(pinode) clear_bit(P_MTIME_FLAG, &(pinode)->pinode_flags)
#define SetMtimeFlag(pinode)   set_bit(P_MTIME_FLAG, &(pinode)->pinode_flags)
#define MtimeFlag(pinode)      test_bit(P_MTIME_FLAG, &(pinode)->pinode_flags)

#define ClearCtimeFlag(pinode) clear_bit(P_CTIME_FLAG, &(pinode)->pinode_flags)
#define SetCtimeFlag(pinode)   set_bit(P_CTIME_FLAG, &(pinode)->pinode_flags)
#define CtimeFlag(pinode)      test_bit(P_CTIME_FLAG, &(pinode)->pinode_flags)

#define ClearModeFlag(pinode) clear_bit(P_MODE_FLAG, &(pinode)->pinode_flags)
#define SetModeFlag(pinode)   set_bit(P_MODE_FLAG, &(pinode)->pinode_flags)
#define ModeFlag(pinode)      test_bit(P_MODE_FLAG, &(pinode)->pinode_flags)

314 315 316
/* per superblock private orangefs info */
struct orangefs_sb_info_s {
	struct orangefs_khandle root_khandle;
M
Mike Marshall 已提交
317 318 319
	__s32 fs_id;
	int id;
	int flags;
320 321 322
#define ORANGEFS_OPT_INTR	0x01
#define ORANGEFS_OPT_LOCAL_LOCK	0x02
	char devname[ORANGEFS_MAX_SERVER_ADDR_LEN];
M
Mike Marshall 已提交
323 324 325 326 327 328 329 330 331 332 333
	struct super_block *sb;
	int mount_pending;
	struct list_head list;
};

/*
 * structure that holds the state of any async I/O operation issued
 * through the VFS. Needed especially to handle cancellation requests
 * or even completion notification so that the VFS client-side daemon
 * can free up its vfs_request slots.
 */
334
struct orangefs_kiocb_s {
M
Mike Marshall 已提交
335 336 337 338 339 340 341
	/* the pointer to the task that initiated the AIO */
	struct task_struct *tsk;

	/* pointer to the kiocb that kicked this operation */
	struct kiocb *kiocb;

	/* buffer index that was used for the I/O */
342
	struct orangefs_bufmap *bufmap;
M
Mike Marshall 已提交
343 344
	int buffer_index;

345 346
	/* orangefs kernel operation type */
	struct orangefs_kernel_op_s *op;
M
Mike Marshall 已提交
347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366

	/* The user space buffers from/to which I/O is being staged */
	struct iovec *iov;

	/* number of elements in the iovector */
	unsigned long nr_segs;

	/* set to indicate the type of the operation */
	int rw;

	/* file offset */
	loff_t offset;

	/* and the count in bytes */
	size_t bytes_to_be_copied;

	ssize_t bytes_copied;
	int needs_cleanup;
};

367
struct orangefs_stats {
M
Mike Marshall 已提交
368 369 370 371 372 373
	unsigned long cache_hits;
	unsigned long cache_misses;
	unsigned long reads;
	unsigned long writes;
};

374
extern struct orangefs_stats g_orangefs_stats;
M
Mike Marshall 已提交
375 376

/*
377 378 379
 * NOTE: See Documentation/filesystems/porting for information
 * on implementing FOO_I and properly accessing fs private data
 */
380
static inline struct orangefs_inode_s *ORANGEFS_I(struct inode *inode)
M
Mike Marshall 已提交
381
{
382
	return container_of(inode, struct orangefs_inode_s, vfs_inode);
M
Mike Marshall 已提交
383 384
}

385
static inline struct orangefs_sb_info_s *ORANGEFS_SB(struct super_block *sb)
M
Mike Marshall 已提交
386
{
387
	return (struct orangefs_sb_info_s *) sb->s_fs_info;
M
Mike Marshall 已提交
388 389 390
}

/* ino_t descends from "unsigned long", 8 bytes, 64 bits. */
391
static inline ino_t orangefs_khandle_to_ino(struct orangefs_khandle *khandle)
M
Mike Marshall 已提交
392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409
{
	union {
		unsigned char u[8];
		__u64 ino;
	} ihandle;

	ihandle.u[0] = khandle->u[0] ^ khandle->u[4];
	ihandle.u[1] = khandle->u[1] ^ khandle->u[5];
	ihandle.u[2] = khandle->u[2] ^ khandle->u[6];
	ihandle.u[3] = khandle->u[3] ^ khandle->u[7];
	ihandle.u[4] = khandle->u[12] ^ khandle->u[8];
	ihandle.u[5] = khandle->u[13] ^ khandle->u[9];
	ihandle.u[6] = khandle->u[14] ^ khandle->u[10];
	ihandle.u[7] = khandle->u[15] ^ khandle->u[11];

	return ihandle.ino;
}

410
static inline struct orangefs_khandle *get_khandle_from_ino(struct inode *inode)
M
Mike Marshall 已提交
411
{
412
	return &(ORANGEFS_I(inode)->refn.khandle);
M
Mike Marshall 已提交
413 414 415 416
}

static inline __s32 get_fsid_from_ino(struct inode *inode)
{
417
	return ORANGEFS_I(inode)->refn.fs_id;
M
Mike Marshall 已提交
418 419 420 421
}

static inline ino_t get_ino_from_khandle(struct inode *inode)
{
422
	struct orangefs_khandle *khandle;
M
Mike Marshall 已提交
423 424 425
	ino_t ino;

	khandle = get_khandle_from_ino(inode);
426
	ino = orangefs_khandle_to_ino(khandle);
M
Mike Marshall 已提交
427 428 429 430 431 432 433 434 435 436 437 438 439
	return ino;
}

static inline ino_t get_parent_ino_from_dentry(struct dentry *dentry)
{
	return get_ino_from_khandle(dentry->d_parent->d_inode);
}

static inline int is_root_handle(struct inode *inode)
{
	gossip_debug(GOSSIP_DCACHE_DEBUG,
		     "%s: root handle: %pU, this handle: %pU:\n",
		     __func__,
440
		     &ORANGEFS_SB(inode->i_sb)->root_khandle,
M
Mike Marshall 已提交
441 442
		     get_khandle_from_ino(inode));

443
	if (ORANGEFS_khandle_cmp(&(ORANGEFS_SB(inode->i_sb)->root_khandle),
M
Mike Marshall 已提交
444 445 446 447 448 449
			     get_khandle_from_ino(inode)))
		return 0;
	else
		return 1;
}

450
static inline int match_handle(struct orangefs_khandle resp_handle,
M
Mike Marshall 已提交
451 452 453 454 455 456 457 458
			       struct inode *inode)
{
	gossip_debug(GOSSIP_DCACHE_DEBUG,
		     "%s: one handle: %pU, another handle:%pU:\n",
		     __func__,
		     &resp_handle,
		     get_khandle_from_ino(inode));

459
	if (ORANGEFS_khandle_cmp(&resp_handle, get_khandle_from_ino(inode)))
M
Mike Marshall 已提交
460 461 462 463 464 465
		return 0;
	else
		return 1;
}

/*
466
 * defined in orangefs-cache.c
M
Mike Marshall 已提交
467 468 469
 */
int op_cache_initialize(void);
int op_cache_finalize(void);
470
struct orangefs_kernel_op_s *op_alloc(__s32 type);
471
void orangefs_new_tag(struct orangefs_kernel_op_s *op);
472
char *get_opname_string(struct orangefs_kernel_op_s *new_op);
M
Mike Marshall 已提交
473

474 475
int orangefs_inode_cache_initialize(void);
int orangefs_inode_cache_finalize(void);
M
Mike Marshall 已提交
476 477

/*
478
 * defined in orangefs-mod.c
M
Mike Marshall 已提交
479 480 481 482 483 484 485 486 487 488 489
 */
void purge_inprogress_ops(void);

/*
 * defined in waitqueue.c
 */
void purge_waiting_ops(void);

/*
 * defined in super.c
 */
490
struct dentry *orangefs_mount(struct file_system_type *fst,
M
Mike Marshall 已提交
491 492 493 494
			   int flags,
			   const char *devname,
			   void *data);

495 496
void orangefs_kill_sb(struct super_block *sb);
int orangefs_remount(struct super_block *sb);
M
Mike Marshall 已提交
497 498 499 500 501 502 503

int fsid_key_table_initialize(void);
void fsid_key_table_finalize(void);

/*
 * defined in inode.c
 */
504 505
__u32 convert_to_orangefs_mask(unsigned long lite_mask);
struct inode *orangefs_new_inode(struct super_block *sb,
M
Mike Marshall 已提交
506 507 508
			      struct inode *dir,
			      int mode,
			      dev_t dev,
509
			      struct orangefs_object_kref *ref);
M
Mike Marshall 已提交
510

511
int orangefs_setattr(struct dentry *dentry, struct iattr *iattr);
M
Mike Marshall 已提交
512

513
int orangefs_getattr(struct vfsmount *mnt,
M
Mike Marshall 已提交
514 515 516
		  struct dentry *dentry,
		  struct kstat *kstat);

517 518
int orangefs_permission(struct inode *inode, int mask);

M
Mike Marshall 已提交
519 520 521
/*
 * defined in xattr.c
 */
522
int orangefs_setxattr(struct dentry *dentry,
M
Mike Marshall 已提交
523 524 525 526 527
		   const char *name,
		   const void *value,
		   size_t size,
		   int flags);

528
ssize_t orangefs_getxattr(struct dentry *dentry,
M
Mike Marshall 已提交
529 530 531 532
		       const char *name,
		       void *buffer,
		       size_t size);

533
ssize_t orangefs_listxattr(struct dentry *dentry, char *buffer, size_t size);
M
Mike Marshall 已提交
534 535 536 537

/*
 * defined in namei.c
 */
538 539
struct inode *orangefs_iget(struct super_block *sb,
			 struct orangefs_object_kref *ref);
M
Mike Marshall 已提交
540

541 542 543 544
ssize_t orangefs_inode_read(struct inode *inode,
			    struct iov_iter *iter,
			    loff_t *offset,
			    loff_t readahead_size);
M
Mike Marshall 已提交
545 546

/*
547
 * defined in devorangefs-req.c
M
Mike Marshall 已提交
548
 */
549 550
int orangefs_dev_init(void);
void orangefs_dev_cleanup(void);
M
Mike Marshall 已提交
551
int is_daemon_in_service(void);
552
bool __is_daemon_in_service(void);
M
Mike Marshall 已提交
553 554 555
int fs_mount_pending(__s32 fsid);

/*
556
 * defined in orangefs-utils.c
M
Mike Marshall 已提交
557
 */
558
__s32 fsid_of_op(struct orangefs_kernel_op_s *op);
M
Mike Marshall 已提交
559

560
int orangefs_flush_inode(struct inode *inode);
M
Mike Marshall 已提交
561

562
ssize_t orangefs_inode_getxattr(struct inode *inode,
M
Mike Marshall 已提交
563 564 565 566 567
			     const char *prefix,
			     const char *name,
			     void *buffer,
			     size_t size);

568
int orangefs_inode_setxattr(struct inode *inode,
M
Mike Marshall 已提交
569 570 571 572 573 574
			 const char *prefix,
			 const char *name,
			 const void *value,
			 size_t size,
			 int flags);

M
Martin Brandenburg 已提交
575
int orangefs_inode_getattr(struct inode *inode, __u32 mask, int check);
M
Mike Marshall 已提交
576

577
int orangefs_inode_setattr(struct inode *inode, struct iattr *iattr);
M
Mike Marshall 已提交
578

579
void orangefs_make_bad_inode(struct inode *inode);
M
Mike Marshall 已提交
580

581
int orangefs_unmount_sb(struct super_block *sb);
M
Mike Marshall 已提交
582

583
bool orangefs_cancel_op_in_progress(struct orangefs_kernel_op_s *op);
M
Mike Marshall 已提交
584

585
static inline __u64 orangefs_convert_time_field(const struct timespec *ts)
586 587 588
{
	return (__u64)ts->tv_sec;
}
M
Mike Marshall 已提交
589

590
int orangefs_normalize_to_errno(__s32 error_code);
M
Mike Marshall 已提交
591 592 593 594 595 596

extern struct mutex devreq_mutex;
extern struct mutex request_mutex;
extern int debug;
extern int op_timeout_secs;
extern int slot_timeout_secs;
597 598 599 600 601
extern struct list_head orangefs_superblocks;
extern spinlock_t orangefs_superblocks_lock;
extern struct list_head orangefs_request_list;
extern spinlock_t orangefs_request_list_lock;
extern wait_queue_head_t orangefs_request_list_waitq;
M
Mike Marshall 已提交
602 603 604 605
extern struct list_head *htable_ops_in_progress;
extern spinlock_t htable_ops_in_progress_lock;
extern int hash_table_size;

606 607 608 609 610 611 612 613 614
extern const struct address_space_operations orangefs_address_operations;
extern struct backing_dev_info orangefs_backing_dev_info;
extern struct inode_operations orangefs_file_inode_operations;
extern const struct file_operations orangefs_file_operations;
extern struct inode_operations orangefs_symlink_inode_operations;
extern struct inode_operations orangefs_dir_inode_operations;
extern const struct file_operations orangefs_dir_operations;
extern const struct dentry_operations orangefs_dentry_operations;
extern const struct file_operations orangefs_devreq_file_operations;
M
Mike Marshall 已提交
615

616
extern wait_queue_head_t orangefs_bufmap_init_waitq;
M
Mike Marshall 已提交
617 618 619 620 621

/*
 * misc convenience macros
 */

622 623 624 625 626
#define ORANGEFS_OP_INTERRUPTIBLE 1   /* service_operation() is interruptible */
#define ORANGEFS_OP_PRIORITY      2   /* service_operation() is high priority */
#define ORANGEFS_OP_CANCELLATION  4   /* this is a cancellation */
#define ORANGEFS_OP_NO_SEMAPHORE  8   /* don't acquire semaphore */
#define ORANGEFS_OP_ASYNC         16  /* Queue it, but don't wait */
M
Mike Marshall 已提交
627

628
int service_operation(struct orangefs_kernel_op_s *op,
M
Mike Marshall 已提交
629 630 631 632
		      const char *op_name,
		      int flags);

#define get_interruptible_flag(inode) \
633 634
	((ORANGEFS_SB(inode->i_sb)->flags & ORANGEFS_OPT_INTR) ? \
		ORANGEFS_OP_INTERRUPTIBLE : 0)
M
Mike Marshall 已提交
635

636
#define add_orangefs_sb(sb)						\
M
Mike Marshall 已提交
637 638
do {									\
	gossip_debug(GOSSIP_SUPER_DEBUG,				\
639 640 641 642 643
		     "Adding SB %p to orangefs superblocks\n",		\
		     ORANGEFS_SB(sb));					\
	spin_lock(&orangefs_superblocks_lock);				\
	list_add_tail(&ORANGEFS_SB(sb)->list, &orangefs_superblocks);		\
	spin_unlock(&orangefs_superblocks_lock); \
M
Mike Marshall 已提交
644 645
} while (0)

646
#define remove_orangefs_sb(sb)						\
M
Mike Marshall 已提交
647 648 649
do {									\
	struct list_head *tmp = NULL;					\
	struct list_head *tmp_safe = NULL;				\
650
	struct orangefs_sb_info_s *orangefs_sb = NULL;			\
M
Mike Marshall 已提交
651
									\
652 653 654 655
	spin_lock(&orangefs_superblocks_lock);				\
	list_for_each_safe(tmp, tmp_safe, &orangefs_superblocks) {		\
		orangefs_sb = list_entry(tmp,				\
				      struct orangefs_sb_info_s,		\
M
Mike Marshall 已提交
656
				      list);				\
657
		if (orangefs_sb && (orangefs_sb->sb == sb)) {			\
M
Mike Marshall 已提交
658
			gossip_debug(GOSSIP_SUPER_DEBUG,		\
659 660 661
			    "Removing SB %p from orangefs superblocks\n",	\
			orangefs_sb);					\
			list_del(&orangefs_sb->list);			\
M
Mike Marshall 已提交
662 663 664
			break;						\
		}							\
	}								\
665
	spin_unlock(&orangefs_superblocks_lock);				\
M
Mike Marshall 已提交
666 667
} while (0)

668 669
#define orangefs_lock_inode(inode) spin_lock(&inode->i_lock)
#define orangefs_unlock_inode(inode) spin_unlock(&inode->i_lock)
M
Mike Marshall 已提交
670 671 672 673 674 675

#define fill_default_sys_attrs(sys_attr, type, mode)			\
do {									\
	sys_attr.owner = from_kuid(current_user_ns(), current_fsuid()); \
	sys_attr.group = from_kgid(current_user_ns(), current_fsgid()); \
	sys_attr.size = 0;						\
676
	sys_attr.perms = ORANGEFS_util_translate_mode(mode);		\
M
Mike Marshall 已提交
677
	sys_attr.objtype = type;					\
678
	sys_attr.mask = ORANGEFS_ATTR_SYS_ALL_SETABLE;			\
M
Mike Marshall 已提交
679 680
} while (0)

681
#define orangefs_inode_lock(__i)  mutex_lock(&(__i)->i_mutex)
M
Mike Marshall 已提交
682

683
#define orangefs_inode_unlock(__i) mutex_unlock(&(__i)->i_mutex)
M
Mike Marshall 已提交
684

685
static inline void orangefs_i_size_write(struct inode *inode, loff_t i_size)
M
Mike Marshall 已提交
686 687
{
#if BITS_PER_LONG == 32 && defined(CONFIG_SMP)
688
	orangefs_inode_lock(inode);
M
Mike Marshall 已提交
689 690 691
#endif
	i_size_write(inode, i_size);
#if BITS_PER_LONG == 32 && defined(CONFIG_SMP)
692
	orangefs_inode_unlock(inode);
M
Mike Marshall 已提交
693 694 695 696 697 698 699 700 701 702 703 704 705 706
#endif
}

static inline unsigned int diff(struct timeval *end, struct timeval *begin)
{
	if (end->tv_usec < begin->tv_usec) {
		end->tv_usec += 1000000;
		end->tv_sec--;
	}
	end->tv_sec -= begin->tv_sec;
	end->tv_usec -= begin->tv_usec;
	return (end->tv_sec * 1000000) + end->tv_usec;
}

707
#endif /* __ORANGEFSKERNEL_H */