Whamcloud - gitweb
land b1_5 onto HEAD
[fs/lustre-release.git] / lustre / include / linux / lvfs.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (C) 2001 Cluster File Systems, Inc. <braam@clusterfs.com>
5  *
6  *   This file is part of Lustre, http://www.lustre.org.
7  *
8  *   Lustre is free software; you can redistribute it and/or
9  *   modify it under the terms of version 2 of the GNU General Public
10  *   License as published by the Free Software Foundation.
11  *
12  *   Lustre is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with Lustre; if not, write to the Free Software
19  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  * lustre VFS/process permission interface
22  */
23
24 #ifndef __LINUX_LVFS_H__
25 #define __LINUX_LVFS_H__
26
27 #ifndef __LVFS_H__
28 #error Do not #include this file directly. #include <lvfs.h> instead
29 #endif
30
31 #if defined __KERNEL__
32 #include <linux/lustre_compat25.h>
33 #include <linux/lvfs_linux.h>
34 #else
35 struct group_info { /* unused */ };
36 #endif
37
38 #define LLOG_LVFS
39
40 /* simple.c */
41
42 struct lvfs_ucred {
43         struct upcall_cache_entry *luc_uce;
44         __u32 luc_fsuid;
45         __u32 luc_fsgid;
46         __u32 luc_cap;
47         __u32 luc_suppgid1;
48         __u32 luc_suppgid2;
49         __u32 luc_umask;
50 };
51
52 struct lvfs_callback_ops {
53         struct dentry *(*l_fid2dentry)(__u64 id_ino, __u32 gen, __u64 gr, void *data);
54 };
55
56 #define OBD_RUN_CTXT_MAGIC      0xC0FFEEAA
57 #define OBD_CTXT_DEBUG          /* development-only debugging */
58 struct lvfs_run_ctxt {
59         struct vfsmount         *pwdmnt;
60         struct dentry           *pwd;
61         mm_segment_t             fs;
62         struct lvfs_ucred        luc;
63         int                      ngroups;
64         struct lvfs_callback_ops cb_ops;
65 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,4)
66         struct group_info       *group_info;
67 #else
68         struct group_info        group_info;
69 #endif
70 #ifdef OBD_CTXT_DEBUG
71         __u32                    magic;
72 #endif
73 };
74
75 #ifdef OBD_CTXT_DEBUG
76 #define OBD_SET_CTXT_MAGIC(ctxt) (ctxt)->magic = OBD_RUN_CTXT_MAGIC
77 #else
78 #define OBD_SET_CTXT_MAGIC(ctxt) do {} while(0)
79 #endif
80
81 #ifdef __KERNEL__
82
83 struct dentry *simple_mkdir(struct dentry *dir, char *name, int mode, int fix);
84 struct dentry *simple_mknod(struct dentry *dir, char *name, int mode, int fix);
85 int lustre_fread(struct file *file, void *buf, int len, loff_t *off);
86 int lustre_fwrite(struct file *file, const void *buf, int len, loff_t *off);
87 int lustre_fsync(struct file *file);
88 long l_readdir(struct file * file, struct list_head *dentry_list);
89
90 static inline void l_dput(struct dentry *de)
91 {
92         if (!de || IS_ERR(de))
93                 return;
94         //shrink_dcache_parent(de);
95         LASSERT(atomic_read(&de->d_count) > 0);
96         dput(de);
97 }
98
99 /* We need to hold the inode semaphore over the dcache lookup itself, or we
100  * run the risk of entering the filesystem lookup path concurrently on SMP
101  * systems, and instantiating two inodes for the same entry.  We still
102  * protect against concurrent addition/removal races with the DLM locking.
103  */
104 static inline struct dentry *ll_lookup_one_len(const char *fid_name,
105                                                struct dentry *dparent,
106                                                int fid_namelen)
107 {
108         struct dentry *dchild;
109
110         LOCK_INODE_MUTEX(dparent->d_inode);
111         dchild = lookup_one_len(fid_name, dparent, fid_namelen);
112         UNLOCK_INODE_MUTEX(dparent->d_inode);
113
114         if (IS_ERR(dchild) || dchild->d_inode == NULL)
115                 return dchild;
116
117         if (is_bad_inode(dchild->d_inode)) {
118                 CERROR("bad inode returned %lu/%u\n",
119                        dchild->d_inode->i_ino, dchild->d_inode->i_generation);
120                 dput(dchild);
121                 dchild = ERR_PTR(-ENOENT);
122         }
123         return dchild;
124 }
125
126 static inline void ll_sleep(int t)
127 {
128         set_current_state(TASK_INTERRUPTIBLE);
129         schedule_timeout(t * HZ);
130         set_current_state(TASK_RUNNING);
131 }
132 #endif
133
134 #endif