Whamcloud - gitweb
merge b_devel into HEAD, which will become 0.7.3
[fs/lustre-release.git] / lustre / mds / mds_lib.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (c) 2003 Cluster File Systems, Inc.
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
22 #define DEBUG_SUBSYSTEM S_MDS
23
24 #include <linux/config.h>
25 #include <linux/module.h>
26 #include <linux/kernel.h>
27 #include <linux/mm.h>
28 #include <linux/string.h>
29 #include <linux/stat.h>
30 #include <linux/errno.h>
31 #include <linux/version.h>
32 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
33 # include <linux/locks.h>   // for wait_on_buffer
34 #else
35 # include <linux/buffer_head.h>   // for wait_on_buffer
36 #endif
37 #include <linux/unistd.h>
38
39 #include <asm/system.h>
40 #include <asm/uaccess.h>
41
42 #include <linux/fs.h>
43 #include <linux/stat.h>
44 #include <asm/uaccess.h>
45 #include <linux/slab.h>
46 #include <asm/segment.h>
47
48 #include <linux/obd_support.h>
49 #include <linux/lustre_lib.h>
50 #include <linux/lustre_mds.h>
51 #include <linux/lustre_lite.h>
52
53 void mds_pack_inode2fid(struct ll_fid *fid, struct inode *inode)
54 {
55         fid->id = inode->i_ino;
56         fid->generation = inode->i_generation;
57         fid->f_type = (S_IFMT & inode->i_mode);
58 }
59
60 /* Note that we can copy all of the fields, just some will not be "valid" */
61 void mds_pack_inode2body(struct mds_body *b, struct inode *inode)
62 {
63         b->valid = OBD_MD_FLID | OBD_MD_FLCTIME | OBD_MD_FLUID | OBD_MD_FLGID |
64                 OBD_MD_FLTYPE | OBD_MD_FLMODE | OBD_MD_FLNLINK | OBD_MD_FLGENER;
65
66         if (!S_ISREG(inode->i_mode))
67                 b->valid |= OBD_MD_FLSIZE | OBD_MD_FLBLOCKS | OBD_MD_FLATIME |
68                             OBD_MD_FLMTIME;
69
70         b->ino = inode->i_ino;
71         b->atime = LTIME_S(inode->i_atime);
72         b->mtime = LTIME_S(inode->i_mtime);
73         b->ctime = LTIME_S(inode->i_ctime);
74         b->mode = inode->i_mode;
75         b->size = inode->i_size;
76         b->blocks = inode->i_blocks;
77         b->uid = inode->i_uid;
78         b->gid = inode->i_gid;
79         b->flags = inode->i_flags;
80         b->rdev = b->rdev;
81         /* Return the correct link count for orphan inodes */
82         b->nlink = mds_inode_is_orphan(inode) ? 0 : inode->i_nlink;
83         b->generation = inode->i_generation;
84         b->suppgid = -1;
85 }
86
87 /* unpacking */
88 static int mds_setattr_unpack(struct ptlrpc_request *req, int offset,
89                               struct mds_update_record *r)
90 {
91         struct iattr *attr = &r->ur_iattr;
92         struct mds_rec_setattr *rec;
93         ENTRY;
94
95         rec = lustre_swab_reqbuf(req, offset, sizeof(*rec),
96                                  lustre_swab_mds_rec_setattr);
97         if (rec == NULL)
98                 RETURN (-EFAULT);
99
100         r->ur_fsuid = rec->sa_fsuid;
101         r->ur_fsgid = rec->sa_fsgid;
102         r->ur_cap = rec->sa_cap;
103         r->ur_suppgid1 = rec->sa_suppgid;
104         r->ur_suppgid2 = -1;
105         r->ur_fid1 = &rec->sa_fid;
106         attr->ia_valid = rec->sa_valid;
107         attr->ia_mode = rec->sa_mode;
108         attr->ia_uid = rec->sa_uid;
109         attr->ia_gid = rec->sa_gid;
110         attr->ia_size = rec->sa_size;
111         LTIME_S(attr->ia_atime) = rec->sa_atime;
112         LTIME_S(attr->ia_mtime) = rec->sa_mtime;
113         LTIME_S(attr->ia_ctime) = rec->sa_ctime;
114         attr->ia_attr_flags = rec->sa_attr_flags;
115
116         LASSERT_REQSWAB (req, offset + 1);
117         if (req->rq_reqmsg->bufcount > offset + 1) {
118                 r->ur_eadata = lustre_msg_buf (req->rq_reqmsg,
119                                                offset + 1, 0);
120                 if (r->ur_eadata == NULL)
121                         RETURN (-EFAULT);
122                 r->ur_eadatalen = req->rq_reqmsg->buflens[offset + 1];
123         }
124
125         if (req->rq_reqmsg->bufcount > offset + 2) {
126                 r->ur_logcookies = lustre_msg_buf(req->rq_reqmsg, offset + 2,0);
127                 if (r->ur_eadata == NULL)
128                         RETURN (-EFAULT);
129
130                 r->ur_cookielen = req->rq_reqmsg->buflens[offset + 2];
131         }
132
133         RETURN(0);
134 }
135
136 static int mds_create_unpack(struct ptlrpc_request *req, int offset,
137                              struct mds_update_record *r)
138 {
139         struct mds_rec_create *rec;
140         ENTRY;
141
142         rec = lustre_swab_reqbuf (req, offset, sizeof (*rec),
143                                   lustre_swab_mds_rec_create);
144         if (rec == NULL)
145                 RETURN (-EFAULT);
146
147         r->ur_fsuid = rec->cr_fsuid;
148         r->ur_fsgid = rec->cr_fsgid;
149         r->ur_cap = rec->cr_cap;
150         r->ur_fid1 = &rec->cr_fid;
151         r->ur_fid2 = &rec->cr_replayfid;
152         r->ur_mode = rec->cr_mode;
153         r->ur_rdev = rec->cr_rdev;
154         r->ur_uid = rec->cr_uid;
155         r->ur_gid = rec->cr_gid;
156         r->ur_time = rec->cr_time;
157         r->ur_flags = rec->cr_flags;
158         r->ur_suppgid1 = rec->cr_suppgid;
159         r->ur_suppgid2 = -1;
160
161         LASSERT_REQSWAB (req, offset + 1);
162         r->ur_name = lustre_msg_string (req->rq_reqmsg, offset + 1, 0);
163         if (r->ur_name == NULL)
164                 RETURN (-EFAULT);
165         r->ur_namelen = req->rq_reqmsg->buflens[offset + 1];
166
167         LASSERT_REQSWAB (req, offset + 2);
168         if (req->rq_reqmsg->bufcount > offset + 2) {
169                 /* NB for now, we only seem to pass NULL terminated symlink
170                  * target strings here.  If this ever changes, we'll have
171                  * to stop checking for a buffer filled completely with a
172                  * NULL terminated string here, and make the callers check
173                  * depending on what they expect.  We should probably stash
174                  * it in r->ur_eadata in that case, so it's obvious... -eeb
175                  */
176                 r->ur_tgt = lustre_msg_string(req->rq_reqmsg, offset + 2, 0);
177                 if (r->ur_tgt == NULL)
178                         RETURN (-EFAULT);
179                 r->ur_tgtlen = req->rq_reqmsg->buflens[offset + 2];
180         }
181         RETURN(0);
182 }
183
184 static int mds_link_unpack(struct ptlrpc_request *req, int offset,
185                            struct mds_update_record *r)
186 {
187         struct mds_rec_link *rec;
188         ENTRY;
189
190         rec = lustre_swab_reqbuf (req, offset, sizeof (*rec),
191                                   lustre_swab_mds_rec_link);
192         if (rec == NULL)
193                 RETURN (-EFAULT);
194
195         r->ur_fsuid = rec->lk_fsuid;
196         r->ur_fsgid = rec->lk_fsgid;
197         r->ur_cap = rec->lk_cap;
198         r->ur_suppgid1 = rec->lk_suppgid1;
199         r->ur_suppgid2 = rec->lk_suppgid2;
200         r->ur_fid1 = &rec->lk_fid1;
201         r->ur_fid2 = &rec->lk_fid2;
202
203         LASSERT_REQSWAB (req, offset + 1);
204         r->ur_name = lustre_msg_string (req->rq_reqmsg, offset + 1, 0);
205         if (r->ur_name == NULL)
206                 RETURN (-EFAULT);
207         r->ur_namelen = req->rq_reqmsg->buflens[offset + 1];
208         RETURN(0);
209 }
210
211 static int mds_unlink_unpack(struct ptlrpc_request *req, int offset,
212                              struct mds_update_record *r)
213 {
214         struct mds_rec_unlink *rec;
215         ENTRY;
216
217         rec = lustre_swab_reqbuf (req, offset, sizeof (*rec),
218                                   lustre_swab_mds_rec_unlink);
219         if (rec == NULL)
220                 RETURN(-EFAULT);
221
222         r->ur_fsuid = rec->ul_fsuid;
223         r->ur_fsgid = rec->ul_fsgid;
224         r->ur_cap = rec->ul_cap;
225         r->ur_mode = rec->ul_mode;
226         r->ur_suppgid1 = rec->ul_suppgid;
227         r->ur_suppgid2 = -1;
228         r->ur_fid1 = &rec->ul_fid1;
229         r->ur_fid2 = &rec->ul_fid2;
230
231         LASSERT_REQSWAB (req, offset + 1);
232         r->ur_name = lustre_msg_string(req->rq_reqmsg, offset + 1, 0);
233         if (r->ur_name == NULL)
234                 RETURN(-EFAULT);
235         r->ur_namelen = req->rq_reqmsg->buflens[offset + 1];
236         RETURN(0);
237 }
238
239 static int mds_rename_unpack(struct ptlrpc_request *req, int offset,
240                              struct mds_update_record *r)
241 {
242         struct mds_rec_rename *rec;
243         ENTRY;
244
245         rec = lustre_swab_reqbuf (req, offset, sizeof (*rec),
246                                   lustre_swab_mds_rec_unlink);
247         if (rec == NULL)
248                 RETURN(-EFAULT);
249
250         r->ur_fsuid = rec->rn_fsuid;
251         r->ur_fsgid = rec->rn_fsgid;
252         r->ur_cap = rec->rn_cap;
253         r->ur_suppgid1 = rec->rn_suppgid1;
254         r->ur_suppgid2 = rec->rn_suppgid2;
255         r->ur_fid1 = &rec->rn_fid1;
256         r->ur_fid2 = &rec->rn_fid2;
257
258         LASSERT_REQSWAB (req, offset + 1);
259         r->ur_name = lustre_msg_string(req->rq_reqmsg, offset + 1, 0);
260         if (r->ur_name == NULL)
261                 RETURN(-EFAULT);
262         r->ur_namelen = req->rq_reqmsg->buflens[offset + 1];
263
264         LASSERT_REQSWAB (req, offset + 2);
265         r->ur_tgt = lustre_msg_string(req->rq_reqmsg, offset + 2, 0);
266         if (r->ur_tgt == NULL)
267                 RETURN(-EFAULT);
268         r->ur_tgtlen = req->rq_reqmsg->buflens[offset + 2];
269         RETURN(0);
270 }
271
272 typedef int (*update_unpacker)(struct ptlrpc_request *req, int offset,
273                                struct mds_update_record *r);
274
275 static update_unpacker mds_unpackers[REINT_MAX + 1] = {
276         [REINT_SETATTR] mds_setattr_unpack,
277         [REINT_CREATE] mds_create_unpack,
278         [REINT_LINK] mds_link_unpack,
279         [REINT_UNLINK] mds_unlink_unpack,
280         [REINT_RENAME] mds_rename_unpack,
281         [REINT_OPEN] mds_create_unpack,
282 };
283
284 int mds_update_unpack(struct ptlrpc_request *req, int offset,
285                       struct mds_update_record *rec)
286 {
287         __u32 *opcodep;
288         __u32  opcode;
289         int rc;
290         ENTRY;
291
292         /* NB don't lustre_swab_reqbuf() here.  We're just taking a peek
293          * and we want to leave it to the specific unpacker once we've
294          * identified the message type */
295         opcodep = lustre_msg_buf (req->rq_reqmsg, offset, sizeof (*opcodep));
296         if (opcodep == NULL)
297                 RETURN(-EFAULT);
298
299         opcode = *opcodep;
300         if (lustre_msg_swabbed (req->rq_reqmsg))
301                 __swab32s (&opcode);
302
303         if (opcode > REINT_MAX ||
304             mds_unpackers[opcode] == NULL) {
305                 CERROR ("Unexpected opcode %d\n", opcode);
306                 RETURN(-EFAULT);
307         }
308
309         rec->ur_opcode = opcode;
310         rc = mds_unpackers[opcode](req, offset, rec);
311         RETURN(rc);
312 }