Whamcloud - gitweb
Changes for file creation and small fixes.
[fs/lustre-release.git] / lustre / include / linux / lustre_mds.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  * MDS data structures.  
22  * See also lustre_idl.h for wire formats of requests.
23  *
24  */
25
26 #ifndef _LUSTRE_MDS_H
27 #define _LUSTRE_MDS_H
28
29 #include <linux/obd_support.h>
30
31
32 struct mds_run_ctxt { 
33         struct vfsmount *pwdmnt;
34         struct dentry   *pwd;
35         mm_segment_t     fs;
36 };
37
38 #define MDS_UNMOUNT 1
39 #define LUSTRE_MDS_NAME "mds"
40
41 struct mds_obd {
42         char *mds_fstype;
43         struct task_struct *mds_thread;
44         wait_queue_head_t mds_waitq;
45         wait_queue_head_t mds_done_waitq;
46         struct timer_list *mds_timer;
47         int mds_interval; 
48         int mds_flags;
49         struct list_head mds_reqs;
50         struct super_block * mds_sb;
51         struct vfsmount *mds_vfsmnt;
52         struct mds_run_ctxt  mds_ctxt;
53         spinlock_t mds_lock;
54         __u64 mds_lastino;
55         struct file_operations *mds_fop; 
56         struct inode_operations *mds_iop;
57         struct address_space_operations *mds_aops;
58 };
59
60
61 struct mds_request { 
62         struct list_head rq_list;
63         struct mds_obd *rq_obd;
64         int rq_status;
65
66         char *rq_reqbuf;
67         int rq_reqlen;
68         struct mds_req_hdr *rq_reqhdr;
69         struct mds_req *rq_req;
70
71         char *rq_repbuf;
72         int rq_replen;
73         struct mds_rep_hdr *rq_rephdr;
74         struct mds_rep *rq_rep;
75
76         void * rq_reply_handle;
77         wait_queue_head_t rq_wait_for_rep;
78 };
79
80
81 /* more or less identical to the packed structure, except for the pointers */
82 struct mds_req {
83         struct ll_fid        fid1;
84         struct ll_fid        fid2;
85         int                        namelen;
86         int                        tgtlen;
87         __u32                       opcode;
88         __u32                       valid;
89         __u32                       mode;
90         __u32                       uid;
91         __u32                       gid;
92         __u64                       size;
93         __u32                       mtime;
94         __u32                       ctime;
95         __u32                       atime;
96         __u32                       flags;
97         __u32                       major;
98         __u32                       minor;
99         __u32                       ino;
100         __u32                       nlink;
101         __u32                       generation;
102         __u64                       objid;
103 };
104
105 /* more or less identical to the packed structure, except for the pointers */
106 struct mds_rep {
107         struct ll_fid        fid1;
108         struct ll_fid        fid2;
109         int                        namelen;
110         int                        tgtlen;
111         __u32                       valid;
112         __u32                       mode;
113         __u32                       uid;
114         __u32                       gid;
115         __u64                       size;
116         __u32                       mtime;
117         __u32                       ctime;
118         __u32                       atime;
119         __u32                       flags;
120         __u32                       major;
121         __u32                       minor;
122         __u32                       ino;
123         __u32                       nlink;
124         __u32                       generation;
125         __u64                       objid;
126 };
127
128 struct mds_update_record { 
129         __u32 ur_reclen;
130         __u32 ur_opcode;
131         struct ll_fid *ur_fid1;
132         struct ll_fid *ur_fid2;
133         int ur_namelen;
134         char *ur_name;
135         int ur_tgtlen;
136         char *ur_tgt;
137         struct iattr ur_iattr;
138         __u64 ur_id;
139         __u32 ur_mode;
140         __u32 ur_uid;
141         __u32 ur_gid;
142         __u64 ur_time;
143 }; 
144
145 /* mds/mds_pack.c */
146 void *mds_req_tgt(struct mds_req *req);
147 int mds_pack_req(char *name, int namelen, char *tgt, int tgtlen, struct mds_req_hdr **hdr, struct mds_req **req, int *len, char **buf);
148 int mds_unpack_req(char *buf, int len, struct mds_req_hdr **hdr, struct mds_req **req);
149 int mds_pack_rep(char *name, int namelen, char *tgt, int tgtlen, struct mds_rep_hdr **hdr, struct mds_rep **rep, int *len, char **buf);
150 int mds_unpack_rep(char *buf, int len, struct mds_rep_hdr **hdr, struct mds_rep **rep);
151
152 /* mds/mds_reint.c  */
153 int mds_reint_rec(struct mds_update_record *r, struct mds_request *req); 
154
155 /* lib/mds_updates.c */
156 int mds_update_unpack(char *buf, int len, struct mds_update_record *r); 
157
158 void mds_setattr_pack(struct mds_rec_setattr *rec, struct inode *inode, struct iattr *iattr);
159 void mds_create_pack(struct mds_rec_create *rec, struct inode *inode, const char *name, int namelen, __u32 mode, __u64 id, __u32 uid, __u32 gid, __u64 time);
160
161 /* mds/handler.c */
162 struct dentry *mds_fid2dentry(struct mds_obd *mds, struct ll_fid *fid, struct vfsmount **mnt);
163
164 /* llight/request.c */
165 int mdc_getattr(ino_t ino, int type, int valid, 
166                 struct mds_rep  **mds_reply, struct mds_rep_hdr **hdr);
167 int mdc_setattr(struct inode *inode, struct iattr *iattr, 
168                 struct mds_rep  **mds_reply, struct mds_rep_hdr **hdr);
169 int mdc_readpage(ino_t ino, int type, __u64 offset, char *addr, 
170                  struct mds_rep  **rep, struct mds_rep_hdr **hdr);
171 int mdc_create(struct inode *dir, const char *name, 
172                int namelen, int mode, __u64 id, __u32 uid, 
173                __u32 gid, __u64 time, 
174                struct mds_rep **rep, struct mds_rep_hdr **hdr);
175
176 /* ioctls for trying requests */
177 #define IOC_REQUEST_TYPE                   'f'
178 #define IOC_REQUEST_MIN_NR                 30
179
180 #define IOC_REQUEST_GETATTR             _IOWR('f', 30, long)
181 #define IOC_REQUEST_READPAGE            _IOWR('f', 31, long)
182 #define IOC_REQUEST_SETATTR             _IOWR('f', 32, long)
183 #define IOC_REQUEST_CREATE              _IOWR('f', 33, long)
184 #define IOC_REQUEST_MAX_NR               33
185
186 #endif
187
188