Whamcloud - gitweb
a8804338984363ee6facb2b643324559ac8c33d6
[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
30 #include <linux/obd_support.h>
31 #include <linux/lustre_idl.h>
32 #include <linux/lustre_net.h>
33
34 struct mds_run_ctxt { 
35         struct vfsmount *pwdmnt;
36         struct dentry   *pwd;
37         mm_segment_t     fs;
38 };
39
40 #define MDS_UNMOUNT 1
41 #define LUSTRE_MDS_NAME "mds"
42
43 struct mds_obd {
44         char *mds_fstype;
45         struct task_struct *mds_thread;
46         __u32 mds_remote_nid;
47         wait_queue_head_t mds_waitq;
48         wait_queue_head_t mds_done_waitq;
49         struct timer_list *mds_timer;
50         int mds_interval; 
51         int mds_flags;
52         struct list_head mds_reqs;
53         struct super_block * mds_sb;
54         struct vfsmount *mds_vfsmnt;
55         struct mds_run_ctxt  mds_ctxt;
56         spinlock_t mds_lock;
57         __u64 mds_lastino;
58         struct file_operations *mds_fop; 
59         struct inode_operations *mds_iop;
60         struct address_space_operations *mds_aops;
61 };
62
63
64 struct mds_update_record { 
65         __u32 ur_reclen;
66         __u32 ur_opcode;
67         struct ll_fid *ur_fid1;
68         struct ll_fid *ur_fid2;
69         int ur_namelen;
70         char *ur_name;
71         int ur_tgtlen;
72         char *ur_tgt;
73         struct iattr ur_iattr;
74         __u64 ur_id;
75         __u32 ur_mode;
76         __u32 ur_uid;
77         __u32 ur_gid;
78         __u64 ur_time;
79 }; 
80
81 /* mds/mds_pack.c */
82 void *mds_req_tgt(struct mds_req *req);
83 int mds_pack_req(char *name, int namelen, char *tgt, int tgtlen, struct ptlreq_hdr **hdr, struct mds_req **req, int *len, char **buf);
84 int mds_unpack_req(char *buf, int len, struct ptlreq_hdr **hdr, struct mds_req **req);
85 int mds_pack_rep(char *name, int namelen, char *tgt, int tgtlen, struct ptlrep_hdr **hdr, struct mds_rep **rep, int *len, char **buf);
86 int mds_unpack_rep(char *buf, int len, struct ptlrep_hdr **hdr, struct mds_rep **rep);
87
88 /* mds/mds_reint.c  */
89 int mds_reint_rec(struct mds_update_record *r, struct ptlrpc_request *req); 
90
91 /* lib/mds_updates.c */
92 int mds_update_unpack(char *buf, int len, struct mds_update_record *r); 
93
94 void mds_setattr_pack(struct mds_rec_setattr *rec, struct inode *inode, struct iattr *iattr);
95 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);
96
97 /* mds/handler.c */
98 struct dentry *mds_fid2dentry(struct mds_obd *mds, struct ll_fid *fid, struct vfsmount **mnt);
99
100 /* llight/request.c */
101 int mdc_getattr(struct lustre_peer *peer, ino_t ino, int type, int valid, 
102                 struct mds_rep  **mds_reply, struct ptlrep_hdr **hdr);
103 int mdc_setattr(struct lustre_peer *peer, struct inode *inode,
104                 struct iattr *iattr, struct mds_rep  **mds_reply,
105                 struct ptlrep_hdr **hdr);
106 int mdc_readpage(struct lustre_peer *peer, ino_t ino, int type, __u64 offset,
107                  char *addr, struct mds_rep  **rep, struct ptlrep_hdr **hdr);
108 int mdc_create(struct lustre_peer *peer, struct inode *dir, const char *name, 
109                int namelen, int mode, __u64 id, __u32 uid, 
110                __u32 gid, __u64 time, 
111                struct mds_rep **rep, struct ptlrep_hdr **hdr);
112
113 /* ioctls for trying requests */
114 #define IOC_REQUEST_TYPE                   'f'
115 #define IOC_REQUEST_MIN_NR                 30
116
117 #define IOC_REQUEST_GETATTR             _IOWR('f', 30, long)
118 #define IOC_REQUEST_READPAGE            _IOWR('f', 31, long)
119 #define IOC_REQUEST_SETATTR             _IOWR('f', 32, long)
120 #define IOC_REQUEST_CREATE              _IOWR('f', 33, long)
121 #define IOC_REQUEST_MAX_NR               33
122
123 #endif
124
125