Whamcloud - gitweb
- many fixes in GNS code after Nikita's code review. They are the following:
[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_fsuid;
51         __u32 luc_fsgid;
52         __u32 luc_cap;
53         __u32 luc_uid;
54         __u32 luc_umask;
55 };
56
57 struct lvfs_callback_ops {
58         struct dentry *(*l_id2dentry)(__u64 ino, __u32 gen, 
59                                       __u64 gr, void *data);
60 };
61
62 #define OBD_RUN_CTXT_MAGIC      0xC0FFEEAA
63 #define OBD_CTXT_DEBUG          /* development-only debugging */
64 struct lvfs_run_ctxt {
65         struct vfsmount         *pwdmnt;
66         struct dentry           *pwd;
67         mm_segment_t             fs;
68         struct lvfs_ucred        luc;
69         struct lvfs_callback_ops cb_ops;
70         int                      ngroups;
71 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,4)
72         struct group_info       *group_info;
73 #else
74         struct group_info        group_info;
75 #endif
76 #ifdef OBD_CTXT_DEBUG
77         int                      pid;
78         __u32                    magic;
79 #endif
80 };
81
82 struct lvfs_obd_ctxt {
83         struct vfsmount *loc_mnt;
84         atomic_t         loc_refcount;
85         char            *loc_name;
86         struct list_head loc_list; 
87 };
88
89 #ifdef OBD_CTXT_DEBUG
90 #define OBD_SET_CTXT_MAGIC(ctxt) (ctxt)->magic = OBD_RUN_CTXT_MAGIC
91 #else
92 #define OBD_SET_CTXT_MAGIC(ctxt) do {} while(0)
93 #endif
94
95 /* lvfs_common.c */
96 struct dentry *lvfs_id2dentry(struct lvfs_run_ctxt *, __u64, 
97                               __u32, __u64 ,void *data);
98
99 void push_ctxt(struct lvfs_run_ctxt *save, struct lvfs_run_ctxt *new_ctx,
100                struct lvfs_ucred *cred);
101 void pop_ctxt(struct lvfs_run_ctxt *saved, struct lvfs_run_ctxt *new_ctx,
102               struct lvfs_ucred *cred);
103
104 #ifdef __KERNEL__
105 int lvfs_reint(struct super_block *sb, void *r_rec);
106 int lvfs_undo(struct super_block *sb, void *r_rec);
107 struct dentry *simple_mkdir(struct dentry *dir, char *name, int mode, int fix);
108 struct dentry *simple_mknod(struct dentry *dir, char *name, int mode, int fix);
109 int lustre_fread(struct file *file, void *buf, int len, loff_t *off);
110 int lustre_fwrite(struct file *file, const void *buf, int len, loff_t *off);
111 int lustre_fsync(struct file *file);
112 long l_readdir(struct file * file, struct list_head *dentry_list);
113 int lvfs_mount_fs(char *name, char *fstype, char *options, int flags, 
114                   struct lvfs_obd_ctxt **lvfs_ctxt);
115 void lvfs_umount_fs(struct lvfs_obd_ctxt *lvfs_ctxt);
116 static inline void l_dput(struct dentry *de)
117 {
118         if (!de || IS_ERR(de))
119                 return;
120         //shrink_dcache_parent(de);
121         LASSERT(atomic_read(&de->d_count) > 0);
122         dput(de);
123 }
124
125 #ifdef S_PDIROPS
126 void *lock_dir(struct inode *dir, struct qstr *name);
127 void unlock_dir(struct inode *dir, void *lock);
128 #endif
129
130 /* We need to hold the inode semaphore over the dcache lookup itself, or we run
131  * the risk of entering the filesystem lookup path concurrently on SMP systems,
132  * and instantiating two inodes for the same entry.  We still protect against
133  * concurrent addition/removal races with the DLM locking. */
134 static inline struct dentry *
135 ll_lookup_one_len(const char *name, struct dentry *dparent, int namelen)
136 {
137         struct dentry *dchild;
138 #ifdef S_PDIROPS
139         struct qstr qstr;
140         void *lock;
141         qstr.name = name;
142         qstr.len = namelen;
143         lock = lock_dir(dparent->d_inode, &qstr);
144 #else
145         down(&dparent->d_inode->i_sem);
146 #endif
147
148         dchild = lookup_one_len(name, dparent, namelen);
149
150 #ifdef S_PDIROPS
151         unlock_dir(dparent->d_inode, lock);
152 #else
153         up(&dparent->d_inode->i_sem);
154 #endif
155
156         if (IS_ERR(dchild) || dchild->d_inode == NULL)
157                 return dchild;
158
159         if (is_bad_inode(dchild->d_inode)) {
160                 CERROR("bad inode returned %lu/%u\n",
161                        dchild->d_inode->i_ino, dchild->d_inode->i_generation);
162                 dput(dchild);
163                 dchild = ERR_PTR(-ENOENT);
164         }
165
166         return dchild;
167 }
168
169 static inline void ll_sleep(int t)
170 {
171         set_current_state(TASK_INTERRUPTIBLE);
172         schedule_timeout(t * HZ);
173         set_current_state(TASK_RUNNING);
174 }
175 #endif
176
177 static inline int ll_id2str(char *str, __u64 id, __u32 generation)
178 {
179         return sprintf(str, "%llx:%08x", (unsigned long long)id, 
180                        generation);
181 }
182
183 #endif