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