Whamcloud - gitweb
use special macro for print time_t, cleanup in includes.
[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 #include <liblustre.h>
37 #endif
38
39 #define LLOG_LVFS
40
41 /* simple.c */
42
43 struct lvfs_ucred {
44         __u32                   luc_uid;
45         __u32                   luc_gid;
46         __u32                   luc_fsuid;
47         __u32                   luc_fsgid;
48         __u32                   luc_cap;
49         __u32                   luc_umask;
50         struct group_info      *luc_ginfo;
51         struct md_identity     *luc_identity;
52 };
53
54 struct lvfs_callback_ops {
55         struct dentry *(*l_fid2dentry)(__u64 id_ino, __u32 gen, __u64 gr, void *data);
56 };
57
58 #define OBD_RUN_CTXT_MAGIC      0xC0FFEEAA
59 #define OBD_CTXT_DEBUG          /* development-only debugging */
60 struct lvfs_run_ctxt {
61         struct vfsmount         *pwdmnt;
62         struct dentry           *pwd;
63         mm_segment_t             fs;
64         struct lvfs_ucred        luc;
65         int                      ngroups;
66         struct lvfs_callback_ops cb_ops;
67         struct group_info       *group_info;
68 #ifdef OBD_CTXT_DEBUG
69         __u32                    magic;
70 #endif
71 };
72
73 #ifdef OBD_CTXT_DEBUG
74 #define OBD_SET_CTXT_MAGIC(ctxt) (ctxt)->magic = OBD_RUN_CTXT_MAGIC
75 #else
76 #define OBD_SET_CTXT_MAGIC(ctxt) do {} while(0)
77 #endif
78
79 #ifdef __KERNEL__
80
81 struct dentry *simple_mkdir(struct dentry *dir, char *name, int mode, int fix);
82 struct dentry *simple_mknod(struct dentry *dir, char *name, int mode, int fix);
83 int lustre_rename(struct dentry *dir, char *oldname, char *newname);
84 int lustre_fread(struct file *file, void *buf, int len, loff_t *off);
85 int lustre_fwrite(struct file *file, const void *buf, int len, loff_t *off);
86 int lustre_fsync(struct file *file);
87 long l_readdir(struct file * file, struct list_head *dentry_list);
88
89 static inline void l_dput(struct dentry *de)
90 {
91         if (!de || IS_ERR(de))
92                 return;
93         //shrink_dcache_parent(de);
94         LASSERT(atomic_read(&de->d_count) > 0);
95         dput(de);
96 }
97
98 /* We need to hold the inode semaphore over the dcache lookup itself, or we
99  * run the risk of entering the filesystem lookup path concurrently on SMP
100  * systems, and instantiating two inodes for the same entry.  We still
101  * protect against concurrent addition/removal races with the DLM locking.
102  */
103 static inline struct dentry *ll_lookup_one_len(const char *fid_name,
104                                                struct dentry *dparent,
105                                                int fid_namelen)
106 {
107         struct dentry *dchild;
108
109         LOCK_INODE_MUTEX(dparent->d_inode);
110         dchild = lookup_one_len(fid_name, dparent, fid_namelen);
111         UNLOCK_INODE_MUTEX(dparent->d_inode);
112
113         if (IS_ERR(dchild) || dchild->d_inode == NULL)
114                 return dchild;
115
116         if (is_bad_inode(dchild->d_inode)) {
117                 CERROR("bad inode returned %lu/%u\n",
118                        dchild->d_inode->i_ino, dchild->d_inode->i_generation);
119                 dput(dchild);
120                 dchild = ERR_PTR(-ENOENT);
121         }
122         return dchild;
123 }
124
125 static inline void ll_sleep(int t)
126 {
127         set_current_state(TASK_INTERRUPTIBLE);
128         schedule_timeout(t * HZ);
129         set_current_state(TASK_RUNNING);
130 }
131 #endif
132
133 #endif