Whamcloud - gitweb
Land b_orphan on HEAD (20040130_1601)
[fs/lustre-release.git] / lustre / mds / mds_open.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  *   Author: Peter Braam <braam@clusterfs.com>
6  *   Author: Andreas Dilger <adilger@clusterfs.com>
7  *   Author: Phil Schwan <phil@clusterfs.com>
8  *   Author: Mike Shaver <shaver@clusterfs.com>
9  *
10  *   This file is part of Lustre, http://www.lustre.org.
11  *
12  *   Lustre is free software; you can redistribute it and/or
13  *   modify it under the terms of version 2 of the GNU General Public
14  *   License as published by the Free Software Foundation.
15  *
16  *   Lustre is distributed in the hope that it will be useful,
17  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
18  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  *   GNU General Public License for more details.
20  *
21  *   You should have received a copy of the GNU General Public License
22  *   along with Lustre; if not, write to the Free Software
23  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24  */
25
26 #ifndef EXPORT_SYMTAB
27 # define EXPORT_SYMTAB
28 #endif
29 #define DEBUG_SUBSYSTEM S_MDS
30
31 #include <linux/module.h>
32 #include <linux/init.h>
33 #include <linux/version.h>
34 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
35 # include <linux/buffer_head.h>
36 # include <linux/workqueue.h>
37 #else
38 # include <linux/locks.h>
39 #endif
40
41 #include <linux/obd_class.h>
42 #include <linux/lustre_mds.h>
43 #include <linux/obd_lov.h>
44 #include <linux/lustre_fsfilt.h>
45 #include <linux/lprocfs_status.h>
46
47 #include "mds_internal.h"
48
49 /* Exported function from this file are:
50  *
51  * mds_open - called by the intent handler
52  * mds_close - an rpc handling function
53  * mds_pin - an rpc handling function - which will go away
54  * mds_mfd_close - for force closing files when a client dies
55  */
56
57 /* 
58  * MDS file data handling: file data holds a handle for a file opened
59  * by a client.
60  */
61
62 static void mds_mfd_addref(void *mfdp)
63 {
64         struct mds_file_data *mfd = mfdp;
65
66         atomic_inc(&mfd->mfd_refcount);
67         CDEBUG(D_INFO, "GETting mfd %p : new refcount %d\n", mfd,
68                atomic_read(&mfd->mfd_refcount));
69 }
70
71 struct mds_file_data *mds_mfd_new(void)
72 {
73         struct mds_file_data *mfd;
74
75         OBD_ALLOC(mfd, sizeof *mfd);
76         if (mfd == NULL) {
77                 CERROR("mds: out of memory\n");
78                 return NULL;
79         }
80
81         atomic_set(&mfd->mfd_refcount, 2);
82
83         INIT_LIST_HEAD(&mfd->mfd_handle.h_link);
84         class_handle_hash(&mfd->mfd_handle, mds_mfd_addref);
85
86         return mfd;
87 }
88
89 static struct mds_file_data *mds_handle2mfd(struct lustre_handle *handle)
90 {
91         ENTRY;
92         LASSERT(handle != NULL);
93         RETURN(class_handle2object(handle->cookie));
94 }
95
96 static void mds_mfd_put(struct mds_file_data *mfd)
97 {
98         CDEBUG(D_INFO, "PUTting mfd %p : new refcount %d\n", mfd,
99                atomic_read(&mfd->mfd_refcount) - 1);
100         LASSERT(atomic_read(&mfd->mfd_refcount) > 0 &&
101                 atomic_read(&mfd->mfd_refcount) < 0x5a5a);
102         if (atomic_dec_and_test(&mfd->mfd_refcount)) {
103                 LASSERT(list_empty(&mfd->mfd_handle.h_link));
104                 OBD_FREE(mfd, sizeof *mfd);
105         }
106 }
107
108 static void mds_mfd_destroy(struct mds_file_data *mfd)
109 {
110         class_handle_unhash(&mfd->mfd_handle);
111         mds_mfd_put(mfd);
112 }
113
114
115 /* Caller must hold mds->mds_epoch_sem */
116 static int mds_alloc_filterdata(struct inode *inode)
117 {
118         LASSERT(inode->i_filterdata == NULL);
119         OBD_ALLOC(inode->i_filterdata, sizeof(struct mds_filter_data));
120         if (inode->i_filterdata == NULL)
121                 return -ENOMEM;
122         LASSERT(igrab(inode) == inode);
123         return 0;
124 }
125
126 /* Caller must hold mds->mds_epoch_sem */
127 static void mds_free_filterdata(struct inode *inode)
128 {
129         LASSERT(inode->i_filterdata != NULL);
130         OBD_FREE(inode->i_filterdata, sizeof(struct mds_filter_data));
131         inode->i_filterdata = NULL;
132         iput(inode);
133 }
134
135 /* Write access to a file: executors cause a negative count, 
136  * writers a positive count.  The semaphore is needed to perform
137  * a check for the sign and then increment or decrement atomically.
138  *
139  * This code is closely tied to the allocation of the d_fsdata and the
140  * MDS epoch, so we use the same semaphore for the whole lot.
141  *
142  * We could use a different semaphore for each file, if it ever shows
143  * up in a profile, which it won't.
144  *
145  * epoch argument is nonzero during recovery */
146 static int mds_get_write_access(struct mds_obd *mds, struct inode *inode,
147                                 __u64 epoch)
148 {
149         int rc = 0;
150
151         down(&mds->mds_epoch_sem);
152
153         if (atomic_read(&inode->i_writecount) < 0) {
154                 up(&mds->mds_epoch_sem);
155                 RETURN(-ETXTBSY);
156         }
157
158
159         if (MDS_FILTERDATA(inode) && MDS_FILTERDATA(inode)->io_epoch != 0) {
160                 CDEBUG(D_INODE, "continuing MDS epoch "LPU64" for ino %lu/%u\n",
161                        MDS_FILTERDATA(inode)->io_epoch, inode->i_ino,
162                        inode->i_generation);
163                 goto out;
164         }
165
166         if (inode->i_filterdata == NULL)
167                 mds_alloc_filterdata(inode);
168         if (inode->i_filterdata == NULL) {
169                 rc = -ENOMEM;
170                 goto out;
171         }
172         if (epoch > mds->mds_io_epoch)
173                 mds->mds_io_epoch = epoch;
174         else
175                 mds->mds_io_epoch++;
176         MDS_FILTERDATA(inode)->io_epoch = mds->mds_io_epoch;
177         CDEBUG(D_INODE, "starting MDS epoch "LPU64" for ino %lu/%u\n",
178                mds->mds_io_epoch, inode->i_ino, inode->i_generation);
179  out:
180         if (rc == 0)
181                 atomic_inc(&inode->i_writecount);
182         up(&mds->mds_epoch_sem);
183         return rc;
184 }
185
186 /* Returns EAGAIN if the client needs to get size and/or cookies and close
187  * again -- which is never true if the file is about to be unlinked.  Otherwise
188  * returns the number of remaining writers. */
189 static int mds_put_write_access(struct mds_obd *mds, struct inode *inode,
190                                 struct mds_body *body, int unlinking)
191 {
192         int rc = 0;
193         ENTRY;
194
195         down(&mds->mds_epoch_sem);
196         atomic_dec(&inode->i_writecount);
197         rc = atomic_read(&inode->i_writecount);
198         if (rc > 0)
199                 GOTO(out, rc);
200 #if 0
201         if (!unlinking && !(body->valid & OBD_MD_FLSIZE))
202                 GOTO(out, rc = EAGAIN);
203 #endif
204         mds_free_filterdata(inode);
205  out:
206         up(&mds->mds_epoch_sem);
207         return rc;
208 }
209
210 static int mds_deny_write_access(struct mds_obd *mds, struct inode *inode)
211 {
212         ENTRY;
213         down(&mds->mds_epoch_sem);
214         if (atomic_read(&inode->i_writecount) > 0) {
215                 up(&mds->mds_epoch_sem);
216                 RETURN(-ETXTBSY);
217         }
218         atomic_dec(&inode->i_writecount);
219         up(&mds->mds_epoch_sem);
220         RETURN(0);
221 }
222
223 static void mds_allow_write_access(struct inode *inode)
224 {
225         ENTRY;
226         atomic_inc(&inode->i_writecount);
227 }
228
229 int mds_query_write_access(struct inode *inode)
230 {
231         ENTRY;
232         RETURN(atomic_read(&inode->i_writecount));
233 }
234
235 /* This replaces the VFS mds_dentry_open, it manages mfd and writecount */
236 static struct mds_file_data *mds_dentry_open(struct dentry *dentry,
237                                              struct vfsmount *mnt, int flags,
238                                              struct ptlrpc_request *req)
239 {
240         struct mds_export_data *med = &req->rq_export->exp_mds_data;
241         struct mds_obd *mds = mds_req2mds(req);
242         struct mds_file_data *mfd;
243         struct mds_body *body;
244         int error;
245         ENTRY;
246         
247         mfd = mds_mfd_new();
248         if (mfd == NULL) {
249                 CERROR("mds: out of memory\n");
250                 GOTO(cleanup_dentry, error = -ENOMEM);
251         }
252
253         body = lustre_msg_buf(req->rq_repmsg, 1, sizeof (*body));
254
255         if (flags & FMODE_WRITE) {
256                 /* FIXME: in recovery, need to pass old epoch here */
257                 error = mds_get_write_access(mds, dentry->d_inode, 0);
258                 if (error)
259                         GOTO(cleanup_mfd, error);
260                 body->io_epoch = MDS_FILTERDATA(dentry->d_inode)->io_epoch;
261         } else if (flags & FMODE_EXEC) {
262                 error = mds_deny_write_access(mds, dentry->d_inode);
263                 if (error)
264                         GOTO(cleanup_mfd, error);
265         }
266
267         dget(dentry);
268
269         /* Mark the file as open to handle open-unlink. */
270         mds_open_orphan_inc(dentry->d_inode);
271
272         mfd->mfd_mode = flags;
273         mfd->mfd_dentry = dentry;
274         mfd->mfd_xid = req->rq_xid;
275
276         spin_lock(&med->med_open_lock);
277         list_add(&mfd->mfd_list, &med->med_open_head);
278         spin_unlock(&med->med_open_lock);
279         mds_mfd_put(mfd);
280
281         body->handle.cookie = mfd->mfd_handle.h_cookie;
282
283         RETURN(mfd);
284
285 cleanup_mfd:
286         mds_mfd_put(mfd);
287         mds_mfd_destroy(mfd);
288 cleanup_dentry:
289         return ERR_PTR(error);
290 }
291
292 static void mds_objids_from_lmm(obd_id *ids, struct lov_mds_md *lmm,
293                                 struct lov_desc *desc)
294 {
295         int i;
296         for (i = 0; i < le32_to_cpu(lmm->lmm_stripe_count); i++) {
297                 ids[le32_to_cpu(lmm->lmm_objects[i].l_ost_idx)] =
298                         le64_to_cpu(lmm->lmm_objects[i].l_object_id);
299         }
300 }
301
302 /* Must be called with i_sem held */
303 static int mds_create_objects(struct ptlrpc_request *req, int offset,
304                               struct mds_update_record *rec,
305                               struct mds_obd *mds, struct obd_device *obd,
306                               struct inode *inode, void **handle, obd_id **ids)
307 {
308         struct obdo *oa;
309         struct obd_trans_info oti = { 0 };
310         struct mds_body *body;
311         struct lov_stripe_md *lsm = NULL;
312         struct lov_mds_md *lmm = NULL;
313         void *lmm_buf;
314         int rc, lmm_bufsize, lmm_size;
315         ENTRY;
316
317         if (rec->ur_flags & MDS_OPEN_DELAY_CREATE ||
318             !(rec->ur_flags & FMODE_WRITE))
319                 RETURN(0);
320
321         body = lustre_msg_buf(req->rq_repmsg, 1, sizeof(*body));
322
323         if (!S_ISREG(inode->i_mode))
324                 RETURN(0);
325         if (body->valid & OBD_MD_FLEASIZE)
326                 RETURN(0);
327
328         OBD_ALLOC(*ids, mds->mds_lov_desc.ld_tgt_count * sizeof(**ids));
329         if (*ids == NULL)
330                 RETURN(-ENOMEM);
331         oti.oti_objid = *ids;
332
333         if (*handle == NULL)
334                 *handle = fsfilt_start(obd, inode, FSFILT_OP_CREATE, NULL);
335         if (IS_ERR(*handle)) {
336                 rc = PTR_ERR(*handle);
337                 *handle = NULL;
338                 GOTO(out_ids, rc);
339         }
340
341         /* replay case */
342         if (rec->ur_fid2->id) {
343                 body->valid |= OBD_MD_FLBLKSZ | OBD_MD_FLEASIZE;
344                 lmm_size = rec->ur_eadatalen;
345                 lmm = rec->ur_eadata;
346                 LASSERT(lmm);
347
348                 mds_objids_from_lmm(*ids, lmm, &mds->mds_lov_desc);
349
350                 lmm_buf = lustre_msg_buf(req->rq_repmsg, offset, 0);
351                 lmm_bufsize = req->rq_repmsg->buflens[offset];
352                 LASSERT(lmm_buf);
353                 LASSERT(lmm_bufsize >= lmm_size);
354                 memcpy(lmm_buf, lmm, lmm_size);
355                 rc = fsfilt_set_md(obd, inode, *handle, lmm, lmm_size);
356                 if (rc)
357                         CERROR("open replay failed to set md:%d\n", rc);
358                 RETURN(0);
359         }
360
361         oa = obdo_alloc();
362         if (oa == NULL)
363                 GOTO(out_ids, rc = -ENOMEM);
364         oa->o_mode = S_IFREG | 0600;
365         oa->o_id = inode->i_ino;
366         oa->o_generation = inode->i_generation;
367         oa->o_uid = 0; /* must have 0 uid / gid on OST */
368         oa->o_gid = 0;
369         oa->o_valid = OBD_MD_FLID | OBD_MD_FLGENER | OBD_MD_FLTYPE |
370                 OBD_MD_FLMODE | OBD_MD_FLUID | OBD_MD_FLGID;
371         oa->o_size = 0;
372
373         obdo_from_inode(oa, inode, OBD_MD_FLTYPE|OBD_MD_FLATIME|OBD_MD_FLMTIME|
374                         OBD_MD_FLCTIME);
375
376         /* check if things like lstripe/lfs stripe are sending us the ea */
377         if (rec->ur_flags & MDS_OPEN_HAS_EA) {
378                 rc = obd_iocontrol(OBD_IOC_LOV_SETSTRIPE, mds->mds_osc_exp,
379                                    0, &lsm, rec->ur_eadata);
380                 if (rc)
381                         GOTO(out_oa, rc);
382         }
383
384         rc = obd_create(mds->mds_osc_exp, oa, &lsm, &oti);
385         if (rc) {
386                 int level = D_ERROR;
387                 if (rc == -ENOSPC)
388                         level = D_INODE;
389                 CDEBUG(level, "error creating objects for inode %lu: rc = %d\n",
390                        inode->i_ino, rc);
391                 if (rc > 0) {
392                         CERROR("obd_create returned invalid rc %d\n", rc);
393                         rc = -EIO;
394                 }
395                 GOTO(out_oa, rc);
396         }
397
398         if (inode->i_size) {
399                 oa->o_size = inode->i_size;
400                 obdo_from_inode(oa, inode, OBD_MD_FLTYPE|OBD_MD_FLATIME|
401                                 OBD_MD_FLMTIME| OBD_MD_FLCTIME| OBD_MD_FLSIZE);
402                 rc = obd_setattr(mds->mds_osc_exp, oa, lsm, &oti);
403                 if (rc) {
404                         CERROR("error setting attrs for inode %lu: rc %d\n",
405                                inode->i_ino, rc);
406                         if (rc > 0) {
407                                 CERROR("obd_setattr returned bad rc %d\n", rc);
408                                 rc = -EIO;
409                         }
410                         GOTO(out_oa, rc);
411                 }
412         }
413
414         body->valid |= OBD_MD_FLBLKSZ | OBD_MD_FLEASIZE;
415         obdo_refresh_inode(inode, oa, OBD_MD_FLBLKSZ);
416
417         LASSERT(lsm && lsm->lsm_object_id);
418         lmm = NULL;
419         rc = obd_packmd(mds->mds_osc_exp, &lmm, lsm);
420         if (!rec->ur_fid2->id)
421                 obd_free_memmd(mds->mds_osc_exp, &lsm);
422         LASSERT(rc >= 0);
423         lmm_size = rc;
424         body->eadatasize = rc;
425         rc = fsfilt_set_md(obd, inode, *handle, lmm, lmm_size);
426         lmm_buf = lustre_msg_buf(req->rq_repmsg, offset, 0);
427         lmm_bufsize = req->rq_repmsg->buflens[offset];
428         LASSERT(lmm_buf);
429         LASSERT(lmm_bufsize >= lmm_size);
430
431         memcpy(lmm_buf, lmm, lmm_size);
432         obd_free_diskmd(mds->mds_osc_exp, &lmm);
433  out_oa:
434         oti_free_cookies(&oti);
435         obdo_free(oa);
436  out_ids:
437         if (rc) {
438                 OBD_FREE(*ids, mds->mds_lov_desc.ld_tgt_count * sizeof(**ids));
439                 *ids = NULL;
440         }
441         RETURN(rc);
442 }
443
444 static void reconstruct_open(struct mds_update_record *rec, int offset,
445                              struct ptlrpc_request *req,
446                              struct lustre_handle *child_lockh)
447 {
448         struct ptlrpc_request *oldreq = req->rq_export->exp_outstanding_reply;
449         struct mds_export_data *med = &req->rq_export->exp_mds_data;
450         struct mds_client_data *mcd = med->med_mcd;
451         struct mds_obd *mds = mds_req2mds(req);
452         struct mds_file_data *mfd;
453         struct obd_device *obd = req->rq_export->exp_obd;
454         struct dentry *parent, *child;
455         struct ldlm_reply *rep;
456         struct mds_body *body;
457         int rc;
458         struct list_head *t;
459         int put_child = 1;
460         ENTRY;
461
462         LASSERT(offset == 2);                  /* only called via intent */
463         rep = lustre_msg_buf(req->rq_repmsg, 0, sizeof (*rep));
464         body = lustre_msg_buf(req->rq_repmsg, 1, sizeof (*body));
465
466         /* copy rc, transno and disp; steal locks */
467         mds_req_from_mcd(req, mcd);
468         intent_set_disposition(rep, mcd->mcd_last_data);
469
470         /* Only replay if create or open actually happened. */
471         if (!intent_disposition(rep, DISP_OPEN_CREATE | DISP_OPEN_OPEN) ) {
472                 EXIT;
473                 return; /* error looking up parent or child */
474         }
475
476         parent = mds_fid2dentry(mds, rec->ur_fid1, NULL);
477         LASSERT(!IS_ERR(parent));
478
479         child = ll_lookup_one_len(rec->ur_name, parent, rec->ur_namelen - 1);
480         LASSERT(!IS_ERR(child));
481
482         if (!child->d_inode) {
483                 GOTO(out_dput, 0); /* child not present to open */
484         }
485
486         /* At this point, we know we have a child. We'll send
487          * it back _unless_ it not created and open failed.
488          */
489         if (intent_disposition(rep, DISP_OPEN_OPEN) &&
490             !intent_disposition(rep, DISP_OPEN_CREATE) &&
491             req->rq_status) {
492                 GOTO(out_dput, 0);
493         }
494
495         /* get lock (write for O_CREAT, read otherwise) */
496
497         mds_pack_inode2fid(&body->fid1, child->d_inode);
498         mds_pack_inode2body(body, child->d_inode);
499         if (S_ISREG(child->d_inode->i_mode)) {
500                 rc = mds_pack_md(obd, req->rq_repmsg, 2, body,
501                                  child->d_inode, 1);
502
503                 if (rc)
504                         LASSERT(rc == req->rq_status);
505
506                 /* If we have LOV EA data, the OST holds size, mtime */
507                 if (!(body->valid & OBD_MD_FLEASIZE))
508                         body->valid |= (OBD_MD_FLSIZE | OBD_MD_FLBLOCKS |
509                                         OBD_MD_FLATIME | OBD_MD_FLMTIME);
510         } else {
511                 /* XXX need to check this case */
512         }
513
514         /* If we're opening a file without an EA, change to a write
515            lock (unless we already have one). */
516
517         /* If we have -EEXIST as the status, and we were asked to create
518          * exclusively, we can tell we failed because the file already existed.
519          */
520         if (req->rq_status == -EEXIST &&
521             ((rec->ur_flags & (MDS_OPEN_CREAT | MDS_OPEN_EXCL)) ==
522              (MDS_OPEN_CREAT | MDS_OPEN_EXCL))) {
523                 GOTO(out_dput, 0);
524         }
525
526         /* If we didn't get as far as trying to open, then some locking thing
527          * probably went wrong, and we'll just bail here.
528          */
529         if (!intent_disposition(rep, DISP_OPEN_OPEN))
530                 GOTO(out_dput, 0);
531
532         /* If we failed, then we must have failed opening, so don't look for
533          * file descriptor or anything, just give the client the bad news.
534          */
535         if (req->rq_status)
536                 GOTO(out_dput, 0);
537
538         mfd = NULL;
539         list_for_each(t, &med->med_open_head) {
540                 mfd = list_entry(t, struct mds_file_data, mfd_list);
541                 if (mfd->mfd_xid == req->rq_xid)
542                         break;
543                 mfd = NULL;
544         }
545
546         if (oldreq != NULL) {
547                 /* if we're not recovering, it had better be found */
548                 LASSERT(mfd != NULL);
549         } else if (mfd == NULL) {
550                 mntget(mds->mds_vfsmnt);
551                 CERROR("Re-opened file \n");
552                 mfd = mds_dentry_open(child, mds->mds_vfsmnt,
553                                       rec->ur_flags & ~MDS_OPEN_TRUNC, req);
554                 if (!mfd) {
555                         CERROR("mds: out of memory\n");
556                         GOTO(out_dput, req->rq_status = -ENOMEM);
557                 }
558                 put_child = 0;
559         }
560
561  out_dput:
562         if (put_child)
563                 l_dput(child);
564         l_dput(parent);
565         EXIT;
566 }
567
568 /* do NOT or the MAY_*'s, you'll get the weakest */
569 static int accmode(int flags)
570 {
571         int res = 0;
572
573         if (flags & FMODE_READ)
574                 res = MAY_READ;
575         if (flags & (FMODE_WRITE|MDS_OPEN_TRUNC))
576                 res |= MAY_WRITE;
577         if (flags & FMODE_EXEC)
578                 res = MAY_EXEC;
579         return res;
580 }
581
582 /* Handles object creation, actual opening, and I/O epoch */
583 static int mds_finish_open(struct ptlrpc_request *req, struct dentry *dchild,
584                            struct mds_body *body, int flags, void **handle,
585                            struct mds_update_record *rec,struct ldlm_reply *rep)
586 {
587         struct mds_obd *mds = mds_req2mds(req);
588         struct obd_device *obd = req->rq_export->exp_obd;
589         struct mds_file_data *mfd = NULL;
590         obd_id *ids = NULL; /* object IDs created */
591         int rc = 0;
592         ENTRY;
593
594         /* atomically create objects if necessary */
595         down(&dchild->d_inode->i_sem);
596         if (S_ISREG(dchild->d_inode->i_mode) &&
597             !(body->valid & OBD_MD_FLEASIZE)) {
598                 rc = mds_pack_md(obd, req->rq_repmsg, 2, body,
599                                  dchild->d_inode, 0);
600                 if (rc) {
601                         up(&dchild->d_inode->i_sem);
602                         RETURN(rc);
603                 }
604         }
605         if (rec != NULL) {
606                 /* no EA: create objects */
607                 rc = mds_create_objects(req, 2, rec, mds, obd,
608                                         dchild->d_inode, handle, &ids);
609                 if (rc) {
610                         CERROR("mds_create_objects: rc = %d\n", rc);
611                         up(&dchild->d_inode->i_sem);
612                         RETURN(rc);
613                 }
614         }
615         /* If the inode has EA data, then OSTs hold size, mtime */
616         if (S_ISREG(dchild->d_inode->i_mode) &&
617             !(body->valid & OBD_MD_FLEASIZE)) {
618                 body->valid |= (OBD_MD_FLSIZE | OBD_MD_FLBLOCKS |
619                                 OBD_MD_FLATIME | OBD_MD_FLMTIME);
620         }
621         up(&dchild->d_inode->i_sem);
622
623         intent_set_disposition(rep, DISP_OPEN_OPEN);
624         mfd = mds_dentry_open(dchild, mds->mds_vfsmnt, flags, req);
625         if (IS_ERR(mfd))
626                 RETURN(PTR_ERR(mfd));
627
628         CDEBUG(D_INODE, "mfd %p, cookie "LPX64"\n", mfd,
629                mfd->mfd_handle.h_cookie);
630         if (ids != NULL) {
631                 mds_lov_update_objids(obd, ids);
632                 OBD_FREE(ids, sizeof(*ids) * mds->mds_lov_desc.ld_tgt_count);
633         }
634         //if (rc)
635         //        mds_mfd_destroy(mfd);
636         RETURN(rc);
637 }
638
639 static int mds_open_by_fid(struct ptlrpc_request *req, struct ll_fid *fid,
640                            struct mds_body *body, int flags,
641                            struct mds_update_record *rec,struct ldlm_reply *rep)
642 {
643         struct mds_obd *mds = mds_req2mds(req);
644         struct inode *pending_dir = mds->mds_pending_dir->d_inode;
645         struct dentry *dchild;
646         char fidname[LL_FID_NAMELEN];
647         int fidlen = 0, rc;
648         void *handle = NULL;
649         ENTRY;
650
651         down(&pending_dir->i_sem);
652         fidlen = ll_fid2str(fidname, fid->id, fid->generation);
653         dchild = lookup_one_len(fidname, mds->mds_pending_dir, fidlen);
654         if (IS_ERR(dchild)) {
655                 up(&pending_dir->i_sem);
656                 rc = PTR_ERR(dchild);
657                 CERROR("error looking up %s in PENDING: rc = %d\n",fidname, rc);
658                 RETURN(rc);
659         }
660
661         if (dchild->d_inode != NULL) {
662                 up(&pending_dir->i_sem);
663                 mds_inode_set_orphan(dchild->d_inode);
664                 mds_pack_inode2fid(&body->fid1, dchild->d_inode);
665                 mds_pack_inode2body(body, dchild->d_inode);
666                 intent_set_disposition(rep, DISP_LOOKUP_EXECD);
667                 intent_set_disposition(rep, DISP_LOOKUP_POS);
668                 CWARN("Orphan %s found and opened in PENDING directory\n",
669                        fidname);
670                 goto open;
671         }
672         dput(dchild);
673         up(&pending_dir->i_sem);
674
675         /* We didn't find it in PENDING so it isn't an orphan.  See
676          * if it was a regular inode that was previously created. */
677         dchild = mds_fid2dentry(mds, fid, NULL);
678         if (IS_ERR(dchild))
679                 RETURN(PTR_ERR(dchild));
680
681         mds_pack_inode2fid(&body->fid1, dchild->d_inode);
682         mds_pack_inode2body(body, dchild->d_inode);
683         intent_set_disposition(rep, DISP_LOOKUP_EXECD);
684         intent_set_disposition(rep, DISP_LOOKUP_POS);
685
686  open:
687         rc = mds_finish_open(req, dchild, body, flags, &handle, rec, rep);
688         rc = mds_finish_transno(mds, dchild ? dchild->d_inode : NULL, handle,
689                                 req, rc, rep ? rep->lock_policy_res1 : 0);
690         /* XXX what do we do here if mds_finish_transno itself failed? */
691
692         l_dput(dchild);
693         RETURN(rc);
694 }
695
696 int mds_pin(struct ptlrpc_request *req)
697 {
698         struct obd_device *obd = req->rq_export->exp_obd;
699         struct mds_body *request_body, *reply_body;
700         struct obd_run_ctxt saved;
701         int rc, size = sizeof(*reply_body);
702         ENTRY;
703
704         request_body = lustre_msg_buf(req->rq_reqmsg, 0, sizeof(*request_body));
705
706         rc = lustre_pack_reply(req, 1, &size, NULL);
707         if (rc)
708                 RETURN(rc);
709         reply_body = lustre_msg_buf(req->rq_repmsg, 0, sizeof(*reply_body));
710
711         push_ctxt(&saved, &obd->obd_ctxt, NULL);
712         rc = mds_open_by_fid(req, &request_body->fid1, reply_body,
713                              request_body->flags, NULL, NULL);
714         pop_ctxt(&saved, &obd->obd_ctxt, NULL);
715
716         RETURN(rc);
717 }
718
719 /*  Get a lock on the ino to sync with creation WRT inode reuse (bug 2029).
720  *  If child_lockh is NULL we just get the lock as a barrier to wait for
721  *  other holders of this lock, and drop it right away again. */
722 int mds_lock_new_child(struct obd_device *obd, struct inode *inode,
723                        struct lustre_handle *child_lockh)
724 {
725         struct ldlm_res_id child_res_id = { .name = { inode->i_ino, 0, 1, 0 } };
726         struct lustre_handle lockh;
727         int lock_flags = 0;
728         int rc;
729
730         if (child_lockh == NULL)
731                 child_lockh = &lockh;
732
733         rc = ldlm_cli_enqueue(NULL, NULL, obd->obd_namespace, NULL,
734                               child_res_id, LDLM_PLAIN, NULL, 0,
735                               LCK_EX, &lock_flags, ldlm_completion_ast,
736                               mds_blocking_ast, NULL, child_lockh);
737         if (rc != ELDLM_OK)
738                 CERROR("ldlm_cli_enqueue: %d\n", rc);
739         else if (child_lockh == &lockh)
740                 ldlm_lock_decref(child_lockh, LCK_EX);
741
742         return rc;
743 }
744
745 int mds_open(struct mds_update_record *rec, int offset,
746              struct ptlrpc_request *req, struct lustre_handle *child_lockh)
747 {
748         /* XXX ALLOCATE _something_ - 464 bytes on stack here */
749         struct obd_device *obd = req->rq_export->exp_obd;
750         struct mds_obd *mds = mds_req2mds(req);
751         struct ldlm_reply *rep = NULL;
752         struct mds_body *body = NULL;
753         struct dentry *dchild = NULL, *dparent = NULL;
754         struct mds_export_data *med;
755         struct lustre_handle parent_lockh;
756         int rc = 0, cleanup_phase = 0, acc_mode, created = 0;
757         int parent_mode = LCK_PR;
758         void *handle = NULL;
759         struct dentry_params dp;
760         ENTRY;
761
762         if (offset == 2) { /* intent */
763                 rep = lustre_msg_buf(req->rq_repmsg, 0, sizeof (*rep));
764                 body = lustre_msg_buf(req->rq_repmsg, 1, sizeof (*body));
765         } else if (offset == 0) { /* non-intent reint */
766                 body = lustre_msg_buf(req->rq_repmsg, 0, sizeof (*body));
767         } else {
768                 body = NULL;
769                 LBUG();
770         }
771
772         MDS_CHECK_RESENT(req, reconstruct_open(rec, offset, req, child_lockh));
773
774         /* Step 0: If we are passed a fid, then we assume the client already
775          * opened this file and is only replaying the RPC, so we open the
776          * inode by fid (at some large expense in security). */
777         if (rec->ur_fid2->id) {
778                 rc = mds_open_by_fid(req, rec->ur_fid2, body, rec->ur_flags,
779                                      rec, rep);
780                 if (rc != -ENOENT)
781                         RETURN(rc);
782                 /* We didn't find the correct inode on disk either, so we
783                  * need to re-create it via a regular replay. */
784                 LASSERT(rec->ur_flags & MDS_OPEN_CREAT);
785         }
786         LASSERT(offset == 2); /* If we got here, we must be called via intent */
787
788         med = &req->rq_export->exp_mds_data;
789         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_OPEN_PACK)) {
790                 CERROR("test case OBD_FAIL_MDS_OPEN_PACK\n");
791                 RETURN(-ENOMEM);
792         }
793
794         acc_mode = accmode(rec->ur_flags);
795
796         /* Step 1: Find and lock the parent */
797         if (rec->ur_flags & O_CREAT)
798                 parent_mode = LCK_PW;
799         dparent = mds_fid2locked_dentry(obd, rec->ur_fid1, NULL, parent_mode,
800                                         &parent_lockh, rec->ur_name,
801                                         rec->ur_namelen - 1);
802         if (IS_ERR(dparent)) {
803                 rc = PTR_ERR(dparent);
804                 CERROR("parent lookup error %d\n", rc);
805                 GOTO(cleanup, rc);
806         }
807         LASSERT(dparent->d_inode != NULL);
808
809         cleanup_phase = 1; /* parent dentry and lock */
810
811         /* Step 2: Lookup the child */
812         dchild = ll_lookup_one_len(rec->ur_name, dparent, rec->ur_namelen - 1);
813         if (IS_ERR(dchild)) {
814                 rc = PTR_ERR(dchild);
815                 dchild = NULL; /* don't confuse mds_finish_transno() below */
816                 GOTO(cleanup, rc);
817         }
818
819         cleanup_phase = 2; /* child dentry */
820
821         intent_set_disposition(rep, DISP_LOOKUP_EXECD);
822         if (dchild->d_inode)
823                 intent_set_disposition(rep, DISP_LOOKUP_POS);
824         else
825                 intent_set_disposition(rep, DISP_LOOKUP_NEG);
826
827         /*Step 3: If the child was negative, and we're supposed to, create it.*/
828         if (dchild->d_inode == NULL) {
829                 unsigned long ino = rec->ur_fid2->id;
830                 struct iattr iattr;
831                 struct inode *inode;
832
833                 if (!(rec->ur_flags & MDS_OPEN_CREAT)) {
834                         /* It's negative and we weren't supposed to create it */
835                         GOTO(cleanup, rc = -ENOENT);
836                 }
837
838                 intent_set_disposition(rep, DISP_OPEN_CREATE);
839                 handle = fsfilt_start(obd, dparent->d_inode, FSFILT_OP_CREATE,
840                                       NULL);
841                 if (IS_ERR(handle)) {
842                         rc = PTR_ERR(handle);
843                         handle = NULL;
844                         GOTO(cleanup, rc);
845                 }
846                 dchild->d_fsdata = (void *) &dp;
847                 dp.p_ptr = req;
848                 dp.p_inum = ino;
849
850                 rc = ll_vfs_create(dparent->d_inode, dchild, rec->ur_mode,NULL);
851                 if (dchild->d_fsdata == (void *)(unsigned long)ino)
852                         dchild->d_fsdata = NULL;
853
854                 if (rc) {
855                         CDEBUG(D_INODE, "error during create: %d\n", rc);
856                         GOTO(cleanup, rc);
857                 }
858                 inode = dchild->d_inode;
859                 if (ino) {
860                         LASSERT(ino == inode->i_ino);
861                         /* Written as part of setattr */
862                         inode->i_generation = rec->ur_fid2->generation;
863                         CDEBUG(D_HA, "recreated ino %lu with gen %u\n",
864                                inode->i_ino, inode->i_generation);
865                 }
866
867                 created = 1;
868                 LTIME_S(iattr.ia_atime) = rec->ur_time;
869                 LTIME_S(iattr.ia_ctime) = rec->ur_time;
870                 LTIME_S(iattr.ia_mtime) = rec->ur_time;
871
872                 iattr.ia_uid = rec->ur_fsuid;
873                 if (dparent->d_inode->i_mode & S_ISGID)
874                         iattr.ia_gid = dparent->d_inode->i_gid;
875                 else
876                         iattr.ia_gid = rec->ur_fsgid;
877
878                 iattr.ia_valid = ATTR_UID | ATTR_GID | ATTR_ATIME |
879                         ATTR_MTIME | ATTR_CTIME;
880
881                 rc = fsfilt_setattr(obd, dchild, handle, &iattr, 0);
882                 if (rc)
883                         CERROR("error on child setattr: rc = %d\n", rc);
884
885                 iattr.ia_valid = ATTR_MTIME | ATTR_CTIME;
886
887                 rc = fsfilt_setattr(obd, dparent, handle, &iattr, 0);
888                 if (rc)
889                         CERROR("error on parent setattr: rc = %d\n", rc);
890
891                 acc_mode = 0;                  /* Don't check for permissions */
892         }
893
894         LASSERT(!mds_inode_is_orphan(dchild->d_inode));
895
896         mds_pack_inode2fid(&body->fid1, dchild->d_inode);
897         mds_pack_inode2body(body, dchild->d_inode);
898
899         if (S_ISREG(dchild->d_inode->i_mode)) {
900                 /* Check permissions etc */
901                 rc = ll_permission(dchild->d_inode, acc_mode, NULL);
902                 if (rc != 0)
903                         GOTO(cleanup, rc);
904
905                 /* Can't write to a read-only file */
906                 if (IS_RDONLY(dchild->d_inode) && (acc_mode & MAY_WRITE) != 0)
907                         GOTO(cleanup, rc = -EPERM);
908
909                 /* An append-only file must be opened in append mode for
910                  * writing */
911                 if (IS_APPEND(dchild->d_inode) && (acc_mode & MAY_WRITE) != 0 &&
912                     ((rec->ur_flags & MDS_OPEN_APPEND) == 0 ||
913                      (rec->ur_flags & MDS_OPEN_TRUNC) != 0))
914                         GOTO(cleanup, rc = -EPERM);
915         }
916
917         if (!created && (rec->ur_flags & MDS_OPEN_CREAT) &&
918             (rec->ur_flags & MDS_OPEN_EXCL)) {
919                 /* File already exists, we didn't just create it, and we
920                  * were passed O_EXCL; err-or. */
921                 GOTO(cleanup, rc = -EEXIST); // returns a lock to the client
922         }
923
924         /* if we are following a symlink, don't open */
925         if (S_ISLNK(dchild->d_inode->i_mode))
926                 GOTO(cleanup, rc = 0);
927
928         if ((rec->ur_flags & MDS_OPEN_DIRECTORY) &&
929             !S_ISDIR(dchild->d_inode->i_mode))
930                 GOTO(cleanup, rc = -ENOTDIR);
931
932         /* Step 5: mds_open it */
933         rc = mds_finish_open(req, dchild, body, rec->ur_flags, &handle, rec,
934                              rep);
935         GOTO(cleanup, rc);
936
937  cleanup:
938         rc = mds_finish_transno(mds, dchild ? dchild->d_inode : NULL, handle,
939                                 req, rc, rep ? rep->lock_policy_res1 : 0);
940
941         switch (cleanup_phase) {
942         case 2:
943                 if (rc && created) {
944                         int err = vfs_unlink(dparent->d_inode, dchild);
945                         if (err) {
946                                 CERROR("unlink(%*s) in error path: %d\n",
947                                        dchild->d_name.len, dchild->d_name.name,
948                                        err);
949                         }
950                 } else if (created) {
951                         mds_lock_new_child(obd, dchild->d_inode, NULL);
952                 }
953                 l_dput(dchild);
954         case 1:
955                 if (dparent == NULL)
956                         break;
957
958                 l_dput(dparent);
959                 if (rc)
960                         ldlm_lock_decref(&parent_lockh, parent_mode);
961                 else
962                         ldlm_put_lock_into_req(req, &parent_lockh, parent_mode);
963         }
964         if (rc == 0)
965                 atomic_inc(&mds->mds_open_count);
966         RETURN(rc);
967 }
968
969 /* Close a "file descriptor" and possibly unlink an orphan from the
970  * PENDING directory.
971  *
972  * If we are being called from mds_disconnect() because the client has
973  * disappeared, then req == NULL and we do not update last_rcvd because
974  * there is nothing that could be recovered by the client at this stage
975  * (it will not even _have_ an entry in last_rcvd anymore).
976  *
977  * Returns EAGAIN if the client needs to get more data and re-close. */
978 int mds_mfd_close(struct ptlrpc_request *req, struct obd_device *obd,
979                   struct mds_file_data *mfd, int unlink_orphan)
980 {
981         struct inode *inode = mfd->mfd_dentry->d_inode;
982         char fidname[LL_FID_NAMELEN];
983         int last_orphan, fidlen, rc = 0, cleanup_phase = 0;
984         struct dentry *pending_child = NULL;
985         struct mds_obd *mds = &obd->u.mds;
986         struct inode *pending_dir = mds->mds_pending_dir->d_inode;
987         void *handle = NULL;
988         struct mds_body *request_body = NULL, *reply_body;
989         struct dentry_params dp;
990         ENTRY;
991
992         if (req != NULL) {
993                 request_body = lustre_msg_buf(req->rq_reqmsg, 0,
994                                               sizeof(*request_body));
995                 reply_body = lustre_msg_buf(req->rq_repmsg, 0,
996                                             sizeof(*reply_body));
997         }
998
999         fidlen = ll_fid2str(fidname, inode->i_ino, inode->i_generation);
1000
1001         last_orphan = mds_open_orphan_dec_test(inode) &&
1002                 mds_inode_is_orphan(inode);
1003
1004         /* this is half of the actual "close" */
1005         if (mfd->mfd_mode & FMODE_WRITE) {
1006                 rc = mds_put_write_access(mds, inode, request_body,
1007                                           last_orphan && unlink_orphan);
1008         } else if (mfd->mfd_mode & FMODE_EXEC) {
1009                 mds_allow_write_access(inode);
1010         }
1011
1012         if (last_orphan && unlink_orphan) {
1013                 LASSERT(rc == 0); /* mds_put_write_access must have succeeded */
1014
1015                 CWARN("destroying orphan object %s\n", fidname);
1016
1017                 /* Sadly, there is no easy way to save pending_child from
1018                  * mds_reint_unlink() into mfd, so we need to re-lookup,
1019                  * but normally it will still be in the dcache. */
1020                 pending_dir = mds->mds_pending_dir->d_inode;
1021                 down(&pending_dir->i_sem);
1022                 cleanup_phase = 1; /* up(i_sem) when finished */
1023                 pending_child = lookup_one_len(fidname, mds->mds_pending_dir,
1024                                                fidlen);
1025                 if (IS_ERR(pending_child))
1026                         GOTO(cleanup, rc = PTR_ERR(pending_child));
1027                 LASSERT(pending_child->d_inode != NULL);
1028
1029                 cleanup_phase = 2; /* dput(pending_child) when finished */
1030                 handle = fsfilt_start(obd, pending_dir, FSFILT_OP_UNLINK_LOG,
1031                                       NULL);
1032                 if (IS_ERR(handle)) {
1033                         rc = PTR_ERR(handle);
1034                         handle = NULL;
1035                         GOTO(cleanup, rc);
1036                 }
1037
1038                 if (req != NULL &&
1039                     (reply_body->valid & OBD_MD_FLEASIZE) &&
1040                     mds_log_op_unlink(obd, pending_child->d_inode,
1041                                       req->rq_repmsg, 1) > 0) {
1042                         reply_body->valid |= OBD_MD_FLCOOKIE;
1043                 }
1044
1045                 pending_child->d_fsdata = (void *) &dp;
1046                 dp.p_inum = 0;
1047                 dp.p_ptr = req;
1048                 if (S_ISDIR(pending_child->d_inode->i_mode))
1049                         rc = vfs_rmdir(pending_dir, pending_child);
1050                 else
1051                         rc = vfs_unlink(pending_dir, pending_child);
1052                 if (rc)
1053                         CERROR("error unlinking orphan %s: rc %d\n",fidname,rc);
1054         } else if (mfd->mfd_mode & FMODE_WRITE && rc == 0) {
1055                 /* Update the on-disk attributes if this was the last write
1056                  * close, and all information was provided (i.e., rc == 0)
1057                  *
1058                  * XXX this should probably be abstracted with mds_reint_setattr
1059                  */
1060 #if 0
1061                 struct iattr iattr;
1062
1063                 /* XXX can't set block count with fsfilt_setattr (!) */
1064                 iattr.ia_valid = ATTR_CTIME | ATTR_ATIME |
1065                         ATTR_MTIME | ATTR_SIZE;
1066                 iattr.ia_atime = request_body->atime;
1067                 iattr.ia_ctime = request_body->ctime;
1068                 iattr.ia_mtime = request_body->mtime;
1069                 iattr.ia_size = request_body->size;
1070                 /* iattr.ia_blocks = request_body->blocks */
1071
1072                 handle = fsfilt_start(obd, inode, FSFILT_OP_SETATTR, NULL);
1073                 if (IS_ERR(handle))
1074                         GOTO(cleanup, rc = PTR_ERR(handle));
1075                 rc = fsfilt_setattr(obd, mfd->mfd_dentry, handle, &iattr, 0);
1076                 if (rc)
1077                         CERROR("error in setattr(%s): rc %d\n", fidname, rc);
1078 #endif
1079         }
1080         /* If other clients have this file open for write, rc will be > 0 */
1081         if (rc > 0)
1082                 rc = 0;
1083         l_dput(mfd->mfd_dentry);
1084         mds_mfd_destroy(mfd);
1085
1086  cleanup:
1087         atomic_dec(&mds->mds_open_count);
1088         if (req) {
1089                 rc = mds_finish_transno(mds, pending_dir, handle, req, rc, 0);
1090         } else if (handle) {
1091                 int err = fsfilt_commit(obd, pending_dir, handle, 0);
1092                 if (err) {
1093                         CERROR("error committing close: %d\n", err);
1094                         if (!rc)
1095                                 rc = err;
1096                 }
1097         }
1098
1099         switch (cleanup_phase) {
1100         case 2:
1101                 dput(pending_child);
1102         case 1:
1103                 up(&pending_dir->i_sem);
1104         }
1105         RETURN(rc);
1106 }
1107
1108 int mds_close(struct ptlrpc_request *req)
1109 {
1110         struct mds_export_data *med = &req->rq_export->exp_mds_data;
1111         struct obd_device *obd = req->rq_export->exp_obd;
1112         struct mds_body *body;
1113         struct mds_file_data *mfd;
1114         struct obd_run_ctxt saved;
1115         struct inode *inode;
1116         int rc, repsize[3] = {sizeof(struct mds_body),
1117                               obd->u.mds.mds_max_mdsize,
1118                               obd->u.mds.mds_max_cookiesize};
1119         ENTRY;
1120
1121         rc = lustre_pack_reply(req, 3, repsize, NULL);
1122         if (rc) {
1123                 CERROR("lustre_pack_reply: rc = %d\n", rc);
1124                 req->rq_status = rc;
1125         } else {
1126                 MDS_CHECK_RESENT(req, mds_reconstruct_generic(req));
1127         }
1128
1129         body = lustre_swab_reqbuf(req, 0, sizeof(*body), lustre_swab_mds_body);
1130         if (body == NULL) {
1131                 CERROR("Can't unpack body\n");
1132                 req->rq_status = -EFAULT;
1133                 RETURN(-EFAULT);
1134         }
1135
1136         if (body->flags & MDS_BFLAG_UNCOMMITTED_WRITES)
1137                 /* do some stuff */ ;
1138
1139         mfd = mds_handle2mfd(&body->handle);
1140         if (mfd == NULL) {
1141                 DEBUG_REQ(D_ERROR, req, "no handle for file close ino "LPD64
1142                           ": cookie "LPX64, body->fid1.id, body->handle.cookie);
1143                 req->rq_status = -ESTALE;
1144                 RETURN(-ESTALE);
1145         }
1146
1147         inode = mfd->mfd_dentry->d_inode;
1148         if (mds_inode_is_orphan(inode) && mds_open_orphan_count(inode) == 1) {
1149                 body = lustre_msg_buf(req->rq_repmsg, 0, sizeof (*body));
1150                 LASSERT(body != NULL);
1151
1152                 mds_pack_inode2fid(&body->fid1, inode);
1153                 mds_pack_inode2body(body, inode);
1154                 mds_pack_md(obd, req->rq_repmsg, 1, body, inode, 1);
1155         }
1156         spin_lock(&med->med_open_lock);
1157         list_del(&mfd->mfd_list);
1158         spin_unlock(&med->med_open_lock);
1159
1160         push_ctxt(&saved, &obd->obd_ctxt, NULL);
1161         req->rq_status = mds_mfd_close(rc ? NULL : req, obd, mfd, 1);
1162         pop_ctxt(&saved, &obd->obd_ctxt, NULL);
1163
1164         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_CLOSE_PACK)) {
1165                 CERROR("test case OBD_FAIL_MDS_CLOSE_PACK\n");
1166                 req->rq_status = -ENOMEM;
1167                 mds_mfd_put(mfd);
1168                 RETURN(-ENOMEM);
1169         }
1170
1171         mds_mfd_put(mfd);
1172         RETURN(0);
1173 }
1174
1175 int mds_done_writing(struct ptlrpc_request *req)
1176 {
1177         struct mds_body *body;
1178         int rc, size = sizeof(struct mds_body);
1179         ENTRY;
1180
1181         MDS_CHECK_RESENT(req, mds_reconstruct_generic(req));
1182
1183         body = lustre_swab_reqbuf(req, 0, sizeof(*body), lustre_swab_mds_body);
1184         if (body == NULL) {
1185                 CERROR("Can't unpack body\n");
1186                 req->rq_status = -EFAULT;
1187                 RETURN(-EFAULT);
1188         }
1189
1190         rc = lustre_pack_reply(req, 1, &size, NULL);
1191         if (rc) {
1192                 CERROR("lustre_pack_reply: rc = %d\n", rc);
1193                 req->rq_status = rc;
1194         }
1195
1196         RETURN(0);
1197 }