Whamcloud - gitweb
bdf94ffd3fd77f6176557e6810625720c567d8a3
[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, 2002, 2003, 2004 Cluster File Systems, Inc.
5  *
6  *  Author: <braam@clusterfs.com>
7  *
8  *   This file is part of Lustre, http://www.lustre.org.
9  *
10  *   Lustre is free software; you can redistribute it and/or
11  *   modify it under the terms of version 2 of the GNU General Public
12  *   License as published by the Free Software Foundation.
13  *
14  *   Lustre is distributed in the hope that it will be useful,
15  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *   GNU General Public License for more details.
18  *
19  *   You should have received a copy of the GNU General Public License
20  *   along with Lustre; if not, write to the Free Software
21  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22  *
23  * lustre VFS/process permission interface
24  */
25
26 #ifndef __LVFS_H__
27 #define __LVFS_H__
28
29 #include <libcfs/kp30.h>
30
31 #define LL_ID_NAMELEN (16 + 1 + 8 + 1)
32
33 #if defined __KERNEL__
34 #include <linux/dcache.h>
35 #include <linux/namei.h>
36 #include <linux/lustre_compat25.h>
37 #include <linux/lvfs_linux.h>
38 #endif
39
40 #ifdef LIBLUSTRE
41 #include <lvfs_user_fs.h>
42 #endif
43
44 struct mds_grp_hash_entry;
45
46 /* simple.c */
47 struct lvfs_ucred {
48         struct lustre_sec_desc *luc_lsd;
49         struct group_info      *luc_ginfo;
50         __u32                   luc_uid;
51         __u32                   luc_gid;
52         __u32                   luc_fsuid;
53         __u32                   luc_fsgid;
54         __u32                   luc_cap;
55         __u32                   luc_umask;
56 };
57
58 struct lvfs_callback_ops {
59         struct dentry *(*l_id2dentry)(__u64 ino, __u32 gen, 
60                                       __u64 gr, void *data);
61 };
62
63 #define OBD_RUN_CTXT_MAGIC      0xC0FFEEAA
64 #define OBD_CTXT_DEBUG          /* development-only debugging */
65 struct lvfs_run_ctxt {
66         struct vfsmount         *pwdmnt;
67         struct dentry           *pwd;
68         mm_segment_t             fs;
69         struct lvfs_ucred        luc;
70         struct lvfs_callback_ops cb_ops;
71         int                      ngroups;
72 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,4)
73         struct group_info       *group_info;
74 #else
75         struct group_info        group_info;
76 #endif
77 #ifdef OBD_CTXT_DEBUG
78         int                      pid;
79         __u32                    magic;
80 #endif
81 };
82
83 struct lvfs_obd_ctxt {
84         struct vfsmount *loc_mnt;
85         atomic_t         loc_refcount;
86         char            *loc_name;
87         struct list_head loc_list; 
88 };
89
90 #ifdef OBD_CTXT_DEBUG
91 #define OBD_SET_CTXT_MAGIC(ctxt) (ctxt)->magic = OBD_RUN_CTXT_MAGIC
92 #else
93 #define OBD_SET_CTXT_MAGIC(ctxt) do {} while(0)
94 #endif
95
96 /* lvfs_common.c */
97 struct dentry *lvfs_id2dentry(struct lvfs_run_ctxt *, __u64, 
98                               __u32, __u64 ,void *data);
99
100 void push_ctxt(struct lvfs_run_ctxt *save, struct lvfs_run_ctxt *new_ctx,
101                struct lvfs_ucred *cred);
102 void pop_ctxt(struct lvfs_run_ctxt *saved, struct lvfs_run_ctxt *new_ctx,
103               struct lvfs_ucred *cred);
104
105 #ifdef __KERNEL__
106 int lvfs_reint(struct super_block *sb, void *r_rec);
107 int lvfs_undo(struct super_block *sb, void *r_rec);
108 struct dentry *simple_mkdir(struct dentry *dir, char *name, int mode, int fix);
109 struct dentry *simple_mknod(struct dentry *dir, char *name, int mode, int fix);
110 int lustre_fread(struct file *file, void *buf, int len, loff_t *off);
111 int lustre_fwrite(struct file *file, const void *buf, int len, loff_t *off);
112 int lustre_fsync(struct file *file);
113 long l_readdir(struct file * file, struct list_head *dentry_list);
114 int lvfs_mount_fs(char *name, char *fstype, char *options, int flags, 
115                   struct lvfs_obd_ctxt **lvfs_ctxt);
116 void lvfs_umount_fs(struct lvfs_obd_ctxt *lvfs_ctxt);
117 static inline void l_dput(struct dentry *de)
118 {
119         if (!de || IS_ERR(de))
120                 return;
121         //shrink_dcache_parent(de);
122         LASSERT(atomic_read(&de->d_count) > 0);
123         dput(de);
124 }
125
126 #ifdef S_PDIROPS
127 void *lock_dir(struct inode *dir, struct qstr *name);
128 void unlock_dir(struct inode *dir, void *lock);
129 #endif
130
131 /* We need to hold the inode semaphore over the dcache lookup itself, or we run
132  * the risk of entering the filesystem lookup path concurrently on SMP systems,
133  * and instantiating two inodes for the same entry.  We still protect against
134  * concurrent addition/removal races with the DLM locking. */
135 static inline struct dentry *
136 ll_lookup_one_len(const char *name, struct dentry *dparent, int namelen)
137 {
138         struct dentry *dchild;
139 #ifdef S_PDIROPS
140         struct qstr qstr;
141         void *lock;
142         qstr.name = name;
143         qstr.len = namelen;
144         lock = lock_dir(dparent->d_inode, &qstr);
145 #else
146         down(&dparent->d_inode->i_sem);
147 #endif
148
149         dchild = lookup_one_len(name, dparent, namelen);
150
151 #ifdef S_PDIROPS
152         unlock_dir(dparent->d_inode, lock);
153 #else
154         up(&dparent->d_inode->i_sem);
155 #endif
156
157         if (IS_ERR(dchild) || dchild->d_inode == NULL)
158                 return dchild;
159
160         if (is_bad_inode(dchild->d_inode)) {
161                 CERROR("bad inode returned %lu/%u\n",
162                        dchild->d_inode->i_ino, dchild->d_inode->i_generation);
163                 dput(dchild);
164                 dchild = ERR_PTR(-ENOENT);
165         }
166
167         return dchild;
168 }
169
170 static inline void ll_sleep(int t)
171 {
172         set_current_state(TASK_INTERRUPTIBLE);
173         schedule_timeout(t * HZ);
174         set_current_state(TASK_RUNNING);
175 }
176 #endif
177
178 static inline int ll_id2str(char *str, __u64 id, __u32 generation)
179 {
180         return sprintf(str, "%llx:%08x", (unsigned long long)id, 
181                        generation);
182 }
183
184 #endif