Whamcloud - gitweb
Land b1_8_gate onto b1_8 (20081218_1708)
[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  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/include/linux/lvfs.h
37  *
38  * lustre VFS/process permission interface
39  */
40
41 #ifndef __LINUX_LVFS_H__
42 #define __LINUX_LVFS_H__
43
44 #ifndef __LVFS_H__
45 #error Do not #include this file directly. #include <lvfs.h> instead
46 #endif
47
48 #if defined __KERNEL__
49 #include <linux/lustre_compat25.h>
50 #include <linux/lvfs_linux.h>
51 #else
52 struct group_info { /* unused */ };
53 #endif
54
55 #define LLOG_LVFS
56
57 /* lvfs.c */
58 int obd_alloc_fail(const void *ptr, const char *name, const char *type,
59                    size_t size, const char *file, int line);
60
61 /* simple.c */
62
63 struct lvfs_ucred {
64         struct upcall_cache_entry *luc_uce;
65         __u32 luc_fsuid;
66         __u32 luc_fsgid;
67         cfs_kernel_cap_t luc_cap;
68         __u32 luc_suppgid1;
69         __u32 luc_suppgid2;
70         __u32 luc_umask;
71 };
72
73 struct lvfs_callback_ops {
74         struct dentry *(*l_fid2dentry)(__u64 id_ino, __u32 gen, __u64 gr, void *data);
75 };
76
77 #define OBD_RUN_CTXT_MAGIC      0xC0FFEEAA
78 #define OBD_CTXT_DEBUG          /* development-only debugging */
79 struct lvfs_run_ctxt {
80         struct vfsmount         *pwdmnt;
81         struct dentry           *pwd;
82         mm_segment_t             fs;
83         struct lvfs_ucred        luc;
84         int                      ngroups;
85         struct lvfs_callback_ops cb_ops;
86 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,4)
87         struct group_info       *group_info;
88 #else
89         struct group_info        group_info;
90 #endif
91 #ifdef OBD_CTXT_DEBUG
92         __u32                    magic;
93 #endif
94 };
95
96 #ifdef OBD_CTXT_DEBUG
97 #define OBD_SET_CTXT_MAGIC(ctxt) (ctxt)->magic = OBD_RUN_CTXT_MAGIC
98 #else
99 #define OBD_SET_CTXT_MAGIC(ctxt) do {} while(0)
100 #endif
101
102 #ifdef __KERNEL__
103
104 struct dentry *simple_mkdir(struct dentry *dir, struct vfsmount *mnt, 
105                             char *name, int mode, int fix);
106 struct dentry *simple_mknod(struct dentry *dir, char *name, int mode, int fix);
107 int lustre_rename(struct dentry *dir, struct vfsmount *mnt, char *oldname,
108                   char *newname);
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 l_notify_change(struct vfsmount *mnt, struct dentry *dchild,
114                     struct iattr *newattrs);
115 int simple_truncate(struct dentry *dir, struct vfsmount *mnt,
116                                char *name, loff_t length);
117
118 static inline void l_dput(struct dentry *de)
119 {
120         if (!de || IS_ERR(de))
121                 return;
122         //shrink_dcache_parent(de);
123         LASSERT(atomic_read(&de->d_count) > 0);
124         dput(de);
125 }
126
127 /* We need to hold the inode semaphore over the dcache lookup itself, or we
128  * run the risk of entering the filesystem lookup path concurrently on SMP
129  * systems, and instantiating two inodes for the same entry.  We still
130  * protect against concurrent addition/removal races with the DLM locking.
131  */
132 static inline struct dentry *ll_lookup_one_len(const char *fid_name,
133                                                struct dentry *dparent,
134                                                int fid_namelen)
135 {
136         struct dentry *dchild;
137
138         LOCK_INODE_MUTEX(dparent->d_inode);
139         dchild = lookup_one_len(fid_name, dparent, fid_namelen);
140         UNLOCK_INODE_MUTEX(dparent->d_inode);
141
142         if (IS_ERR(dchild) || dchild->d_inode == NULL)
143                 return dchild;
144
145         if (is_bad_inode(dchild->d_inode)) {
146                 CERROR("bad inode returned %lu/%u\n",
147                        dchild->d_inode->i_ino, dchild->d_inode->i_generation);
148                 dput(dchild);
149                 dchild = ERR_PTR(-ENOENT);
150         }
151         return dchild;
152 }
153
154 static inline void ll_sleep(int t)
155 {
156         set_current_state(TASK_INTERRUPTIBLE);
157         schedule_timeout(t * HZ);
158         set_current_state(TASK_RUNNING);
159 }
160 #endif
161
162 #endif