Whamcloud - gitweb
ac62bf0dbf29d97694ffdae2c2ecdc454c091775
[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 dentry *dchild, void **handle, 
308                               obd_id **ids)
309 {
310         struct obdo *oa;
311         struct obd_trans_info oti = { 0 };
312         struct mds_body *body;
313         struct lov_stripe_md *lsm = NULL;
314         struct lov_mds_md *lmm = NULL;
315         struct inode *inode = dchild->d_inode;
316         void *lmm_buf;
317         int rc, lmm_bufsize, lmm_size;
318         ENTRY;
319
320         if (rec->ur_flags & MDS_OPEN_DELAY_CREATE ||
321             !(rec->ur_flags & FMODE_WRITE))
322                 RETURN(0);
323
324         body = lustre_msg_buf(req->rq_repmsg, 1, sizeof(*body));
325
326         if (!S_ISREG(inode->i_mode))
327                 RETURN(0);
328         if (body->valid & OBD_MD_FLEASIZE)
329                 RETURN(0);
330
331         OBD_ALLOC(*ids, mds->mds_lov_desc.ld_tgt_count * sizeof(**ids));
332         if (*ids == NULL)
333                 RETURN(-ENOMEM);
334         oti.oti_objid = *ids;
335
336         if (*handle == NULL)
337                 *handle = fsfilt_start(obd, inode, FSFILT_OP_CREATE, NULL);
338         if (IS_ERR(*handle)) {
339                 rc = PTR_ERR(*handle);
340                 *handle = NULL;
341                 GOTO(out_ids, rc);
342         }
343
344         /* replay case */
345         if(lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY) {
346                 LASSERT (rec->ur_fid2->id);
347                 body->valid |= OBD_MD_FLBLKSZ | OBD_MD_FLEASIZE;
348                 lmm_size = rec->ur_eadatalen;
349                 lmm = rec->ur_eadata;
350                 LASSERT(lmm);
351
352                 mds_objids_from_lmm(*ids, lmm, &mds->mds_lov_desc);
353
354                 lmm_buf = lustre_msg_buf(req->rq_repmsg, offset, 0);
355                 lmm_bufsize = req->rq_repmsg->buflens[offset];
356                 LASSERT(lmm_buf);
357                 LASSERT(lmm_bufsize >= lmm_size);
358                 memcpy(lmm_buf, lmm, lmm_size);
359                 rc = fsfilt_set_md(obd, inode, *handle, lmm, lmm_size);
360                 if (rc)
361                         CERROR("open replay failed to set md:%d\n", rc);
362                 RETURN(0);
363         }
364
365         
366         if (OBD_FAIL_CHECK_ONCE(OBD_FAIL_MDS_ALLOC_OBDO))
367                 GOTO(out_ids, rc = -ENOMEM);
368
369         oa = obdo_alloc();
370         if (oa == NULL)
371                 GOTO(out_ids, rc = -ENOMEM);
372         oa->o_mode = S_IFREG | 0600;
373         oa->o_id = inode->i_ino;
374         oa->o_generation = inode->i_generation;
375         oa->o_uid = 0; /* must have 0 uid / gid on OST */
376         oa->o_gid = 0;
377         oa->o_valid = OBD_MD_FLID | OBD_MD_FLGENER | OBD_MD_FLTYPE |
378                 OBD_MD_FLMODE | OBD_MD_FLUID | OBD_MD_FLGID;
379         oa->o_size = 0;
380
381         obdo_from_inode(oa, inode, OBD_MD_FLTYPE|OBD_MD_FLATIME|OBD_MD_FLMTIME|
382                         OBD_MD_FLCTIME);
383
384         if (!(rec->ur_flags & MDS_OPEN_HAS_OBJS)) {
385                 /* check if things like lstripe/lfs stripe are sending us the ea */
386                 if (rec->ur_flags & MDS_OPEN_HAS_EA) {
387                         rc = obd_iocontrol(OBD_IOC_LOV_SETSTRIPE, 
388                                            mds->mds_osc_exp,
389                                            0, &lsm, rec->ur_eadata);
390                         if (rc)
391                                 GOTO(out_oa, rc);
392                 } else {
393                         OBD_ALLOC(lmm, mds->mds_max_mdsize);
394                         if (lmm == NULL)
395                                 GOTO(out_oa, rc = -ENOMEM);
396
397                         lmm_size = mds->mds_max_mdsize;
398                         rc = mds_get_md(obd, dchild->d_parent->d_inode,
399                                         lmm, &lmm_size, 1);
400                         if (rc > 0)
401                                 rc = obd_iocontrol(OBD_IOC_LOV_SETSTRIPE,
402                                                    mds->mds_osc_exp, 
403                                                    0, &lsm, lmm);
404                         OBD_FREE(lmm, mds->mds_max_mdsize);
405                         if (rc)
406                                 GOTO(out_oa, rc);
407                 }
408                 rc = obd_create(mds->mds_osc_exp, oa, &lsm, &oti);
409                 if (rc) {
410                         int level = D_ERROR;
411                         if (rc == -ENOSPC)
412                                 level = D_INODE;
413                         CDEBUG(level, "error creating objects for "
414                                       "inode %lu: rc = %d\n",
415                                inode->i_ino, rc);
416                         if (rc > 0) {
417                                 CERROR("obd_create returned invalid "
418                                        "rc %d\n", rc);
419                                 rc = -EIO;
420                         }
421                         GOTO(out_oa, rc);
422                 }
423         } else {
424                 rc = obd_iocontrol(OBD_IOC_LOV_SETEA, mds->mds_osc_exp,
425                                    0, &lsm, rec->ur_eadata);
426                 if (rc) {
427                         GOTO(out_oa, rc);
428                 }
429                 lsm->lsm_object_id = oa->o_id;
430         }
431         if (inode->i_size) {
432                 oa->o_size = inode->i_size;
433                 obdo_from_inode(oa, inode, OBD_MD_FLTYPE|OBD_MD_FLATIME|
434                                 OBD_MD_FLMTIME| OBD_MD_FLCTIME| OBD_MD_FLSIZE);
435                 rc = obd_setattr(mds->mds_osc_exp, oa, lsm, &oti);
436                 if (rc) {
437                         CERROR("error setting attrs for inode %lu: rc %d\n",
438                                inode->i_ino, rc);
439                         if (rc > 0) {
440                                 CERROR("obd_setattr returned bad rc %d\n", rc);
441                                 rc = -EIO;
442                         }
443                         GOTO(out_oa, rc);
444                 }
445         }
446
447         body->valid |= OBD_MD_FLBLKSZ | OBD_MD_FLEASIZE;
448         obdo_refresh_inode(inode, oa, OBD_MD_FLBLKSZ);
449
450         LASSERT(lsm && lsm->lsm_object_id);
451         lmm = NULL;
452         rc = obd_packmd(mds->mds_osc_exp, &lmm, lsm);
453         if (!rec->ur_fid2->id)
454                 obd_free_memmd(mds->mds_osc_exp, &lsm);
455         LASSERT(rc >= 0);
456         lmm_size = rc;
457         body->eadatasize = rc;
458         rc = fsfilt_set_md(obd, inode, *handle, lmm, lmm_size);
459         lmm_buf = lustre_msg_buf(req->rq_repmsg, offset, 0);
460         lmm_bufsize = req->rq_repmsg->buflens[offset];
461         LASSERT(lmm_buf);
462         LASSERT(lmm_bufsize >= lmm_size);
463
464         memcpy(lmm_buf, lmm, lmm_size);
465         obd_free_diskmd(mds->mds_osc_exp, &lmm);
466  out_oa:
467         oti_free_cookies(&oti);
468         obdo_free(oa);
469  out_ids:
470         if (rc) {
471                 OBD_FREE(*ids, mds->mds_lov_desc.ld_tgt_count * sizeof(**ids));
472                 *ids = NULL;
473         }
474         RETURN(rc);
475 }
476
477 static void reconstruct_open(struct mds_update_record *rec, int offset,
478                              struct ptlrpc_request *req,
479                              struct lustre_handle *child_lockh)
480 {
481         struct mds_export_data *med = &req->rq_export->exp_mds_data;
482         struct mds_client_data *mcd = med->med_mcd;
483         struct mds_obd *mds = mds_req2mds(req);
484         struct mds_file_data *mfd;
485         struct obd_device *obd = req->rq_export->exp_obd;
486         struct dentry *parent, *child;
487         struct ldlm_reply *rep;
488         struct mds_body *body;
489         int rc;
490         struct list_head *t;
491         int put_child = 1;
492         ENTRY;
493
494         LASSERT(offset == 2);                  /* only called via intent */
495         rep = lustre_msg_buf(req->rq_repmsg, 0, sizeof (*rep));
496         body = lustre_msg_buf(req->rq_repmsg, 1, sizeof (*body));
497
498         /* copy rc, transno and disp; steal locks */
499         mds_req_from_mcd(req, mcd);
500         intent_set_disposition(rep, mcd->mcd_last_data);
501
502         /* Only replay if create or open actually happened. */
503         if (!intent_disposition(rep, DISP_OPEN_CREATE | DISP_OPEN_OPEN) ) {
504                 EXIT;
505                 return; /* error looking up parent or child */
506         }
507
508         parent = mds_fid2dentry(mds, rec->ur_fid1, NULL);
509         LASSERT(!IS_ERR(parent));
510
511         child = ll_lookup_one_len(rec->ur_name, parent, rec->ur_namelen - 1);
512         LASSERT(!IS_ERR(child));
513
514         if (!child->d_inode) {
515                 GOTO(out_dput, 0); /* child not present to open */
516         }
517
518         /* At this point, we know we have a child. We'll send
519          * it back _unless_ it not created and open failed.
520          */
521         if (intent_disposition(rep, DISP_OPEN_OPEN) &&
522             !intent_disposition(rep, DISP_OPEN_CREATE) &&
523             req->rq_status) {
524                 GOTO(out_dput, 0);
525         }
526
527         /* get lock (write for O_CREAT, read otherwise) */
528
529         mds_pack_inode2fid(&body->fid1, child->d_inode);
530         mds_pack_inode2body(body, child->d_inode);
531         if (S_ISREG(child->d_inode->i_mode)) {
532                 rc = mds_pack_md(obd, req->rq_repmsg, 2, body,
533                                  child->d_inode, 1);
534
535                 if (rc)
536                         LASSERT(rc == req->rq_status);
537
538                 /* If we have LOV EA data, the OST holds size, mtime */
539                 if (!(body->valid & OBD_MD_FLEASIZE))
540                         body->valid |= (OBD_MD_FLSIZE | OBD_MD_FLBLOCKS |
541                                         OBD_MD_FLATIME | OBD_MD_FLMTIME);
542         } else {
543                 /* XXX need to check this case */
544         }
545
546         /* If we're opening a file without an EA, change to a write
547            lock (unless we already have one). */
548
549         /* If we have -EEXIST as the status, and we were asked to create
550          * exclusively, we can tell we failed because the file already existed.
551          */
552         if (req->rq_status == -EEXIST &&
553             ((rec->ur_flags & (MDS_OPEN_CREAT | MDS_OPEN_EXCL)) ==
554              (MDS_OPEN_CREAT | MDS_OPEN_EXCL))) {
555                 GOTO(out_dput, 0);
556         }
557
558         /* If we didn't get as far as trying to open, then some locking thing
559          * probably went wrong, and we'll just bail here.
560          */
561         if (!intent_disposition(rep, DISP_OPEN_OPEN))
562                 GOTO(out_dput, 0);
563
564         /* If we failed, then we must have failed opening, so don't look for
565          * file descriptor or anything, just give the client the bad news.
566          */
567         if (req->rq_status)
568                 GOTO(out_dput, 0);
569
570         mfd = NULL;
571         list_for_each(t, &med->med_open_head) {
572                 mfd = list_entry(t, struct mds_file_data, mfd_list);
573                 if (mfd->mfd_xid == req->rq_xid)
574                         break;
575                 mfd = NULL;
576         }
577
578 #warning "XXX fixme"
579         /* Here it used to LASSERT(mfd) if exp_outstanding_reply != NULL.
580          * Now that exp_outstanding_reply is a list, it's just using mfd != NULL
581          * to detect a re-open */
582         if (mfd == NULL) {
583                 mntget(mds->mds_vfsmnt);
584                 CERROR("Re-opened file \n");
585                 mfd = mds_dentry_open(child, mds->mds_vfsmnt,
586                                       rec->ur_flags & ~MDS_OPEN_TRUNC, req);
587                 if (!mfd) {
588                         CERROR("mds: out of memory\n");
589                         GOTO(out_dput, req->rq_status = -ENOMEM);
590                 }
591                 put_child = 0;
592         }
593
594  out_dput:
595         if (put_child)
596                 l_dput(child);
597         l_dput(parent);
598         EXIT;
599 }
600
601 /* do NOT or the MAY_*'s, you'll get the weakest */
602 static int accmode(int flags)
603 {
604         int res = 0;
605
606         if (flags & FMODE_READ)
607                 res = MAY_READ;
608         if (flags & (FMODE_WRITE|MDS_OPEN_TRUNC))
609                 res |= MAY_WRITE;
610         if (flags & FMODE_EXEC)
611                 res = MAY_EXEC;
612         return res;
613 }
614
615 /* Handles object creation, actual opening, and I/O epoch */
616 static int mds_finish_open(struct ptlrpc_request *req, struct dentry *dchild,
617                            struct mds_body *body, int flags, void **handle,
618                            struct mds_update_record *rec,struct ldlm_reply *rep)
619 {
620         struct mds_obd *mds = mds_req2mds(req);
621         struct obd_device *obd = req->rq_export->exp_obd;
622         struct mds_file_data *mfd = NULL;
623         obd_id *ids = NULL; /* object IDs created */
624         int rc = 0;
625         ENTRY;
626
627         /* atomically create objects if necessary */
628         down(&dchild->d_inode->i_sem);
629         if (S_ISREG(dchild->d_inode->i_mode) &&
630             !(body->valid & OBD_MD_FLEASIZE)) {
631                 rc = mds_pack_md(obd, req->rq_repmsg, 2, body,
632                                  dchild->d_inode, 0);
633                 if (rc) {
634                         up(&dchild->d_inode->i_sem);
635                         RETURN(rc);
636                 }
637         }
638         if (rec != NULL) {
639                 /* no EA: create objects */
640                 rc = mds_create_objects(req, 2, rec, mds, obd,
641                                         dchild, handle, &ids);
642                 if (rc) {
643                         CERROR("mds_create_objects: rc = %d\n", rc);
644                         up(&dchild->d_inode->i_sem);
645                         RETURN(rc);
646                 }
647         }
648         /* If the inode has EA data, then OSTs hold size, mtime */
649         if (S_ISREG(dchild->d_inode->i_mode) &&
650             !(body->valid & OBD_MD_FLEASIZE)) {
651                 body->valid |= (OBD_MD_FLSIZE | OBD_MD_FLBLOCKS |
652                                 OBD_MD_FLATIME | OBD_MD_FLMTIME);
653         }
654         up(&dchild->d_inode->i_sem);
655
656         intent_set_disposition(rep, DISP_OPEN_OPEN);
657         mfd = mds_dentry_open(dchild, mds->mds_vfsmnt, flags, req);
658         if (IS_ERR(mfd))
659                 RETURN(PTR_ERR(mfd));
660
661         CDEBUG(D_INODE, "mfd %p, cookie "LPX64"\n", mfd,
662                mfd->mfd_handle.h_cookie);
663         if (ids != NULL) {
664                 mds_lov_update_objids(obd, ids);
665                 OBD_FREE(ids, sizeof(*ids) * mds->mds_lov_desc.ld_tgt_count);
666         }
667         //if (rc)
668         //        mds_mfd_destroy(mfd);
669         RETURN(rc);
670 }
671
672 static int mds_open_by_fid(struct ptlrpc_request *req, struct ll_fid *fid,
673                            struct mds_body *body, int flags,
674                            struct mds_update_record *rec,struct ldlm_reply *rep)
675 {
676         struct mds_obd *mds = mds_req2mds(req);
677         struct inode *pending_dir = mds->mds_pending_dir->d_inode;
678         struct dentry *dchild;
679         char fidname[LL_FID_NAMELEN];
680         int fidlen = 0, rc;
681         void *handle = NULL;
682         ENTRY;
683
684         down(&pending_dir->i_sem);
685         fidlen = ll_fid2str(fidname, fid->id, fid->generation);
686         dchild = lookup_one_len(fidname, mds->mds_pending_dir, fidlen);
687         if (IS_ERR(dchild)) {
688                 up(&pending_dir->i_sem);
689                 rc = PTR_ERR(dchild);
690                 CERROR("error looking up %s in PENDING: rc = %d\n",fidname, rc);
691                 RETURN(rc);
692         }
693
694         if (dchild->d_inode != NULL) {
695                 up(&pending_dir->i_sem);
696                 mds_inode_set_orphan(dchild->d_inode);
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                 CWARN("Orphan %s found and opened in PENDING directory\n",
702                        fidname);
703                 goto open;
704         }
705         dput(dchild);
706         up(&pending_dir->i_sem);
707
708         /* We didn't find it in PENDING so it isn't an orphan.  See
709          * if it was a regular inode that was previously created. */
710         dchild = mds_fid2dentry(mds, fid, NULL);
711         if (IS_ERR(dchild))
712                 RETURN(PTR_ERR(dchild));
713
714         mds_pack_inode2fid(&body->fid1, dchild->d_inode);
715         mds_pack_inode2body(body, dchild->d_inode);
716         intent_set_disposition(rep, DISP_LOOKUP_EXECD);
717         intent_set_disposition(rep, DISP_LOOKUP_POS);
718
719  open:
720         rc = mds_finish_open(req, dchild, body, flags, &handle, rec, rep);
721         rc = mds_finish_transno(mds, dchild ? dchild->d_inode : NULL, handle,
722                                 req, rc, rep ? rep->lock_policy_res1 : 0);
723         /* XXX what do we do here if mds_finish_transno itself failed? */
724
725         l_dput(dchild);
726         RETURN(rc);
727 }
728
729 int mds_pin(struct ptlrpc_request *req)
730 {
731         struct obd_device *obd = req->rq_export->exp_obd;
732         struct mds_body *request_body, *reply_body;
733         struct obd_run_ctxt saved;
734         int rc, size = sizeof(*reply_body);
735         ENTRY;
736
737         request_body = lustre_msg_buf(req->rq_reqmsg, 0, sizeof(*request_body));
738
739         rc = lustre_pack_reply(req, 1, &size, NULL);
740         if (rc)
741                 RETURN(rc);
742         reply_body = lustre_msg_buf(req->rq_repmsg, 0, sizeof(*reply_body));
743
744         push_ctxt(&saved, &obd->obd_ctxt, NULL);
745         rc = mds_open_by_fid(req, &request_body->fid1, reply_body,
746                              request_body->flags, NULL, NULL);
747         pop_ctxt(&saved, &obd->obd_ctxt, NULL);
748
749         RETURN(rc);
750 }
751
752 /*  Get a lock on the ino to sync with creation WRT inode reuse (bug 2029).
753  *  If child_lockh is NULL we just get the lock as a barrier to wait for
754  *  other holders of this lock, and drop it right away again. */
755 int mds_lock_new_child(struct obd_device *obd, struct inode *inode,
756                        struct lustre_handle *child_lockh)
757 {
758         struct ldlm_res_id child_res_id = { .name = { inode->i_ino, 0, 1, 0 } };
759         struct lustre_handle lockh;
760         int lock_flags = 0;
761         int rc;
762
763         if (child_lockh == NULL)
764                 child_lockh = &lockh;
765
766         rc = ldlm_cli_enqueue(NULL, NULL, obd->obd_namespace, child_res_id,
767                               LDLM_PLAIN, NULL, LCK_EX, &lock_flags,
768                               mds_blocking_ast, ldlm_completion_ast, NULL, NULL,
769                               NULL, 0, NULL, child_lockh);
770         if (rc != ELDLM_OK)
771                 CERROR("ldlm_cli_enqueue: %d\n", rc);
772         else if (child_lockh == &lockh)
773                 ldlm_lock_decref(child_lockh, LCK_EX);
774
775         RETURN(rc);
776 }
777
778 int mds_open(struct mds_update_record *rec, int offset,
779              struct ptlrpc_request *req, struct lustre_handle *child_lockh)
780 {
781         /* XXX ALLOCATE _something_ - 464 bytes on stack here */
782         struct obd_device *obd = req->rq_export->exp_obd;
783         struct mds_obd *mds = mds_req2mds(req);
784         struct ldlm_reply *rep = NULL;
785         struct mds_body *body = NULL;
786         struct dentry *dchild = NULL, *dparent = NULL;
787         struct mds_export_data *med;
788         struct lustre_handle parent_lockh;
789         int rc = 0, cleanup_phase = 0, acc_mode, created = 0;
790         int parent_mode = LCK_PR;
791         void *handle = NULL;
792         struct dentry_params dp;
793         ENTRY;
794
795         if (offset == 2) { /* intent */
796                 rep = lustre_msg_buf(req->rq_repmsg, 0, sizeof (*rep));
797                 body = lustre_msg_buf(req->rq_repmsg, 1, sizeof (*body));
798         } else if (offset == 0) { /* non-intent reint */
799                 body = lustre_msg_buf(req->rq_repmsg, 0, sizeof (*body));
800         } else {
801                 body = NULL;
802                 LBUG();
803         }
804
805         MDS_CHECK_RESENT(req, reconstruct_open(rec, offset, req, child_lockh));
806
807         /* Step 0: If we are passed a fid, then we assume the client already
808          * opened this file and is only replaying the RPC, so we open the
809          * inode by fid (at some large expense in security). */
810         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY) {
811                 DEBUG_REQ(D_HA, req, "open replay, disp: "LPX64"\n",
812                           rep->lock_policy_res1);
813
814                 LASSERT(rec->ur_fid2->id);
815
816                 rc = mds_open_by_fid(req, rec->ur_fid2, body, rec->ur_flags,
817                                      rec, rep);
818                 if (rc != -ENOENT)
819                         RETURN(rc);
820                 /* We didn't find the correct inode on disk either, so we
821                  * need to re-create it via a regular replay. */
822                 LASSERT(rec->ur_flags & MDS_OPEN_CREAT);
823         } else {
824                 LASSERT(!rec->ur_fid2->id);
825         }
826
827         LASSERT(offset == 2); /* If we got here, we must be called via intent */
828
829         med = &req->rq_export->exp_mds_data;
830         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_OPEN_PACK)) {
831                 CERROR("test case OBD_FAIL_MDS_OPEN_PACK\n");
832                 RETURN(-ENOMEM);
833         }
834
835         acc_mode = accmode(rec->ur_flags);
836
837         /* Step 1: Find and lock the parent */
838         if (rec->ur_flags & O_CREAT)
839                 parent_mode = LCK_PW;
840         dparent = mds_fid2locked_dentry(obd, rec->ur_fid1, NULL, parent_mode,
841                                         &parent_lockh, rec->ur_name,
842                                         rec->ur_namelen - 1);
843         if (IS_ERR(dparent)) {
844                 rc = PTR_ERR(dparent);
845                 CERROR("parent lookup error %d\n", rc);
846                 GOTO(cleanup, rc);
847         }
848         LASSERT(dparent->d_inode != NULL);
849
850         cleanup_phase = 1; /* parent dentry and lock */
851
852         /* Step 2: Lookup the child */
853         dchild = ll_lookup_one_len(rec->ur_name, dparent, rec->ur_namelen - 1);
854         if (IS_ERR(dchild)) {
855                 rc = PTR_ERR(dchild);
856                 dchild = NULL; /* don't confuse mds_finish_transno() below */
857                 GOTO(cleanup, rc);
858         }
859
860         cleanup_phase = 2; /* child dentry */
861
862         intent_set_disposition(rep, DISP_LOOKUP_EXECD);
863         if (dchild->d_inode)
864                 intent_set_disposition(rep, DISP_LOOKUP_POS);
865         else
866                 intent_set_disposition(rep, DISP_LOOKUP_NEG);
867
868         /*Step 3: If the child was negative, and we're supposed to, create it.*/
869         if (dchild->d_inode == NULL) {
870                 unsigned long ino = rec->ur_fid2->id;
871                 struct iattr iattr;
872                 struct inode *inode;
873
874                 if (!(rec->ur_flags & MDS_OPEN_CREAT)) {
875                         /* It's negative and we weren't supposed to create it */
876                         GOTO(cleanup, rc = -ENOENT);
877                 }
878
879                 intent_set_disposition(rep, DISP_OPEN_CREATE);
880                 handle = fsfilt_start(obd, dparent->d_inode, FSFILT_OP_CREATE,
881                                       NULL);
882                 if (IS_ERR(handle)) {
883                         rc = PTR_ERR(handle);
884                         handle = NULL;
885                         GOTO(cleanup, rc);
886                 }
887                 dchild->d_fsdata = (void *) &dp;
888                 dp.p_ptr = req;
889                 dp.p_inum = ino;
890
891                 rc = ll_vfs_create(dparent->d_inode, dchild, rec->ur_mode,NULL);
892                 if (dchild->d_fsdata == (void *)(unsigned long)ino)
893                         dchild->d_fsdata = NULL;
894
895                 if (rc) {
896                         CDEBUG(D_INODE, "error during create: %d\n", rc);
897                         GOTO(cleanup, rc);
898                 }
899                 inode = dchild->d_inode;
900                 if (ino) {
901                         LASSERT(ino == inode->i_ino);
902                         /* Written as part of setattr */
903                         inode->i_generation = rec->ur_fid2->generation;
904                         CDEBUG(D_HA, "recreated ino %lu with gen %u\n",
905                                inode->i_ino, inode->i_generation);
906                 }
907
908                 created = 1;
909                 LTIME_S(iattr.ia_atime) = rec->ur_time;
910                 LTIME_S(iattr.ia_ctime) = rec->ur_time;
911                 LTIME_S(iattr.ia_mtime) = rec->ur_time;
912
913                 iattr.ia_uid = rec->ur_fsuid;
914                 if (dparent->d_inode->i_mode & S_ISGID)
915                         iattr.ia_gid = dparent->d_inode->i_gid;
916                 else
917                         iattr.ia_gid = rec->ur_fsgid;
918
919                 iattr.ia_valid = ATTR_UID | ATTR_GID | ATTR_ATIME |
920                         ATTR_MTIME | ATTR_CTIME;
921
922                 rc = fsfilt_setattr(obd, dchild, handle, &iattr, 0);
923                 if (rc)
924                         CERROR("error on child setattr: rc = %d\n", rc);
925
926                 iattr.ia_valid = ATTR_MTIME | ATTR_CTIME;
927
928                 rc = fsfilt_setattr(obd, dparent, handle, &iattr, 0);
929                 if (rc)
930                         CERROR("error on parent setattr: rc = %d\n", rc);
931
932                 acc_mode = 0;                  /* Don't check for permissions */
933         }
934
935         LASSERT(!mds_inode_is_orphan(dchild->d_inode));
936
937         mds_pack_inode2fid(&body->fid1, dchild->d_inode);
938         mds_pack_inode2body(body, dchild->d_inode);
939
940         if (S_ISREG(dchild->d_inode->i_mode)) {
941                 /* Check permissions etc */
942                 rc = ll_permission(dchild->d_inode, acc_mode, NULL);
943                 if (rc != 0)
944                         GOTO(cleanup, rc);
945
946                 /* Can't write to a read-only file */
947                 if (IS_RDONLY(dchild->d_inode) && (acc_mode & MAY_WRITE) != 0)
948                         GOTO(cleanup, rc = -EPERM);
949
950                 /* An append-only file must be opened in append mode for
951                  * writing */
952                 if (IS_APPEND(dchild->d_inode) && (acc_mode & MAY_WRITE) != 0 &&
953                     ((rec->ur_flags & MDS_OPEN_APPEND) == 0 ||
954                      (rec->ur_flags & MDS_OPEN_TRUNC) != 0))
955                         GOTO(cleanup, rc = -EPERM);
956         }
957
958         if (!created && (rec->ur_flags & MDS_OPEN_CREAT) &&
959             (rec->ur_flags & MDS_OPEN_EXCL)) {
960                 /* File already exists, we didn't just create it, and we
961                  * were passed O_EXCL; err-or. */
962                 GOTO(cleanup, rc = -EEXIST); // returns a lock to the client
963         }
964
965         /* if we are following a symlink, don't open */
966         if (S_ISLNK(dchild->d_inode->i_mode))
967                 GOTO(cleanup, rc = 0);
968
969         if ((rec->ur_flags & MDS_OPEN_DIRECTORY) &&
970             !S_ISDIR(dchild->d_inode->i_mode))
971                 GOTO(cleanup, rc = -ENOTDIR);
972  
973         if (S_ISDIR(dchild->d_inode->i_mode)) { 
974                 if (rec->ur_flags & MDS_OPEN_CREAT || rec->ur_flags & FMODE_WRITE) {
975                         /*we are tryying to create or write a exist dir*/
976                         GOTO(cleanup, rc = -EISDIR);
977                 }
978                 if (ll_permission(dchild->d_inode, acc_mode, NULL)) {
979                         GOTO(cleanup, rc = -EACCES);
980                 }
981         }
982
983         /* Step 5: mds_open it */
984         rc = mds_finish_open(req, dchild, body, rec->ur_flags, &handle, rec,
985                              rep);
986         GOTO(cleanup, rc);
987
988  cleanup:
989         rc = mds_finish_transno(mds, dchild ? dchild->d_inode : NULL, handle,
990                                 req, rc, rep ? rep->lock_policy_res1 : 0);
991
992         switch (cleanup_phase) {
993         case 2:
994                 if (rc && created) {
995                         int err = vfs_unlink(dparent->d_inode, dchild);
996                         if (err) {
997                                 CERROR("unlink(%*s) in error path: %d\n",
998                                        dchild->d_name.len, dchild->d_name.name,
999                                        err);
1000                         }
1001                 } else if (created) {
1002                         mds_lock_new_child(obd, dchild->d_inode, NULL);
1003                 }
1004                 l_dput(dchild);
1005         case 1:
1006                 if (dparent == NULL)
1007                         break;
1008
1009                 l_dput(dparent);
1010                 if (rc)
1011                         ldlm_lock_decref(&parent_lockh, parent_mode);
1012                 else
1013                         ptlrpc_save_lock (req, &parent_lockh, parent_mode);
1014         }
1015         if (rc == 0)
1016                 atomic_inc(&mds->mds_open_count);
1017         RETURN(rc);
1018 }
1019
1020 /* Close a "file descriptor" and possibly unlink an orphan from the
1021  * PENDING directory.
1022  *
1023  * If we are being called from mds_disconnect() because the client has
1024  * disappeared, then req == NULL and we do not update last_rcvd because
1025  * there is nothing that could be recovered by the client at this stage
1026  * (it will not even _have_ an entry in last_rcvd anymore).
1027  *
1028  * Returns EAGAIN if the client needs to get more data and re-close. */
1029 int mds_mfd_close(struct ptlrpc_request *req, struct obd_device *obd,
1030                   struct mds_file_data *mfd, int unlink_orphan)
1031 {
1032         struct inode *inode = mfd->mfd_dentry->d_inode;
1033         char fidname[LL_FID_NAMELEN];
1034         int last_orphan, fidlen, rc = 0, cleanup_phase = 0;
1035         struct dentry *pending_child = NULL;
1036         struct mds_obd *mds = &obd->u.mds;
1037         struct inode *pending_dir = mds->mds_pending_dir->d_inode;
1038         void *handle = NULL;
1039         struct mds_body *request_body = NULL, *reply_body = NULL;
1040         struct dentry_params dp;
1041         struct lov_mds_md *lmm;
1042         ENTRY;
1043
1044         if (req != NULL) {
1045                 request_body = lustre_msg_buf(req->rq_reqmsg, 0,
1046                                               sizeof(*request_body));
1047                 reply_body = lustre_msg_buf(req->rq_repmsg, 0,
1048                                             sizeof(*reply_body));
1049         }
1050
1051         fidlen = ll_fid2str(fidname, inode->i_ino, inode->i_generation);
1052
1053         last_orphan = mds_open_orphan_dec_test(inode) &&
1054                 mds_inode_is_orphan(inode);
1055
1056         /* this is half of the actual "close" */
1057         if (mfd->mfd_mode & FMODE_WRITE) {
1058                 rc = mds_put_write_access(mds, inode, request_body,
1059                                           last_orphan && unlink_orphan);
1060         } else if (mfd->mfd_mode & FMODE_EXEC) {
1061                 mds_allow_write_access(inode);
1062         }
1063
1064         if (last_orphan && unlink_orphan) {
1065                 LASSERT(rc == 0); /* mds_put_write_access must have succeeded */
1066
1067                 CDEBUG(D_HA, "destroying orphan object %s\n", fidname);
1068
1069                 /* Sadly, there is no easy way to save pending_child from
1070                  * mds_reint_unlink() into mfd, so we need to re-lookup,
1071                  * but normally it will still be in the dcache. */
1072                 pending_dir = mds->mds_pending_dir->d_inode;
1073                 down(&pending_dir->i_sem);
1074                 cleanup_phase = 1; /* up(i_sem) when finished */
1075                 pending_child = lookup_one_len(fidname, mds->mds_pending_dir,
1076                                                fidlen);
1077                 if (IS_ERR(pending_child))
1078                         GOTO(cleanup, rc = PTR_ERR(pending_child));
1079                 LASSERT(pending_child->d_inode != NULL);
1080
1081                 cleanup_phase = 2; /* dput(pending_child) when finished */
1082                 lmm = lustre_msg_buf(req->rq_repmsg, 1, 0);
1083                 handle = fsfilt_start_log(obd, pending_dir,
1084                                           FSFILT_OP_UNLINK, NULL,
1085                                           le32_to_cpu(lmm->lmm_stripe_count));
1086                 if (IS_ERR(handle)) {
1087                         rc = PTR_ERR(handle);
1088                         handle = NULL;
1089                         GOTO(cleanup, rc);
1090                 }
1091
1092                 if (req != NULL &&
1093                     (reply_body->valid & OBD_MD_FLEASIZE) &&
1094                     mds_log_op_unlink(obd, pending_child->d_inode,
1095                                       lustre_msg_buf(req->rq_repmsg, 1, 0),
1096                                       req->rq_repmsg->buflens[1],
1097                                       lustre_msg_buf(req->rq_repmsg, 2, 0),
1098                                       req->rq_repmsg->buflens[2]) > 0) {
1099                         reply_body->valid |= OBD_MD_FLCOOKIE;
1100                 }
1101
1102                 pending_child->d_fsdata = (void *) &dp;
1103                 dp.p_inum = 0;
1104                 dp.p_ptr = req;
1105                 if (S_ISDIR(pending_child->d_inode->i_mode))
1106                         rc = vfs_rmdir(pending_dir, pending_child);
1107                 else
1108                         rc = vfs_unlink(pending_dir, pending_child);
1109                 if (rc)
1110                         CERROR("error unlinking orphan %s: rc %d\n",fidname,rc);
1111         } else if (mfd->mfd_mode & FMODE_WRITE && rc == 0) {
1112                 /* Update the on-disk attributes if this was the last write
1113                  * close, and all information was provided (i.e., rc == 0)
1114                  *
1115                  * XXX this should probably be abstracted with mds_reint_setattr
1116                  */
1117 #if 0
1118                 struct iattr iattr;
1119
1120                 /* XXX can't set block count with fsfilt_setattr (!) */
1121                 iattr.ia_valid = ATTR_CTIME | ATTR_ATIME |
1122                         ATTR_MTIME | ATTR_SIZE;
1123                 iattr.ia_atime = request_body->atime;
1124                 iattr.ia_ctime = request_body->ctime;
1125                 iattr.ia_mtime = request_body->mtime;
1126                 iattr.ia_size = request_body->size;
1127                 /* iattr.ia_blocks = request_body->blocks */
1128
1129                 handle = fsfilt_start(obd, inode, FSFILT_OP_SETATTR, NULL);
1130                 if (IS_ERR(handle))
1131                         GOTO(cleanup, rc = PTR_ERR(handle));
1132                 rc = fsfilt_setattr(obd, mfd->mfd_dentry, handle, &iattr, 0);
1133                 if (rc)
1134                         CERROR("error in setattr(%s): rc %d\n", fidname, rc);
1135 #endif
1136         }
1137         /* If other clients have this file open for write, rc will be > 0 */
1138         if (rc > 0)
1139                 rc = 0;
1140         l_dput(mfd->mfd_dentry);
1141         mds_mfd_destroy(mfd);
1142
1143  cleanup:
1144         atomic_dec(&mds->mds_open_count);
1145         if (req) {
1146                 rc = mds_finish_transno(mds, pending_dir, handle, req, rc, 0);
1147         } else if (handle) {
1148                 int err = fsfilt_commit(obd, pending_dir, handle, 0);
1149                 if (err) {
1150                         CERROR("error committing close: %d\n", err);
1151                         if (!rc)
1152                                 rc = err;
1153                 }
1154         }
1155
1156         switch (cleanup_phase) {
1157         case 2:
1158                 dput(pending_child);
1159         case 1:
1160                 up(&pending_dir->i_sem);
1161         }
1162         RETURN(rc);
1163 }
1164
1165 int mds_close(struct ptlrpc_request *req)
1166 {
1167         struct mds_export_data *med = &req->rq_export->exp_mds_data;
1168         struct obd_device *obd = req->rq_export->exp_obd;
1169         struct mds_body *body;
1170         struct mds_file_data *mfd;
1171         struct obd_run_ctxt saved;
1172         struct inode *inode;
1173         int rc, repsize[3] = {sizeof(struct mds_body),
1174                               obd->u.mds.mds_max_mdsize,
1175                               obd->u.mds.mds_max_cookiesize};
1176         ENTRY;
1177
1178         rc = lustre_pack_reply(req, 3, repsize, NULL);
1179         if (rc) {
1180                 CERROR("lustre_pack_reply: rc = %d\n", rc);
1181                 req->rq_status = rc;
1182         } else {
1183                 MDS_CHECK_RESENT(req, mds_reconstruct_generic(req));
1184         }
1185
1186         body = lustre_swab_reqbuf(req, 0, sizeof(*body), lustre_swab_mds_body);
1187         if (body == NULL) {
1188                 CERROR("Can't unpack body\n");
1189                 req->rq_status = -EFAULT;
1190                 RETURN(-EFAULT);
1191         }
1192
1193         if (body->flags & MDS_BFLAG_UNCOMMITTED_WRITES)
1194                 /* do some stuff */ ;
1195
1196         mfd = mds_handle2mfd(&body->handle);
1197         if (mfd == NULL) {
1198                 DEBUG_REQ(D_ERROR, req, "no handle for file close ino "LPD64
1199                           ": cookie "LPX64, body->fid1.id, body->handle.cookie);
1200                 req->rq_status = -ESTALE;
1201                 RETURN(-ESTALE);
1202         }
1203
1204         inode = mfd->mfd_dentry->d_inode;
1205         if (mds_inode_is_orphan(inode) && mds_open_orphan_count(inode) == 1) {
1206                 body = lustre_msg_buf(req->rq_repmsg, 0, sizeof (*body));
1207                 LASSERT(body != NULL);
1208
1209                 mds_pack_inode2fid(&body->fid1, inode);
1210                 mds_pack_inode2body(body, inode);
1211                 mds_pack_md(obd, req->rq_repmsg, 1, body, inode, 1);
1212         }
1213         spin_lock(&med->med_open_lock);
1214         list_del(&mfd->mfd_list);
1215         spin_unlock(&med->med_open_lock);
1216
1217         push_ctxt(&saved, &obd->obd_ctxt, NULL);
1218         req->rq_status = mds_mfd_close(rc ? NULL : req, obd, mfd, 1);
1219         pop_ctxt(&saved, &obd->obd_ctxt, NULL);
1220
1221         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_CLOSE_PACK)) {
1222                 CERROR("test case OBD_FAIL_MDS_CLOSE_PACK\n");
1223                 req->rq_status = -ENOMEM;
1224                 mds_mfd_put(mfd);
1225                 RETURN(-ENOMEM);
1226         }
1227
1228         mds_mfd_put(mfd);
1229         RETURN(0);
1230 }
1231
1232 int mds_done_writing(struct ptlrpc_request *req)
1233 {
1234         struct mds_body *body;
1235         int rc, size = sizeof(struct mds_body);
1236         ENTRY;
1237
1238         MDS_CHECK_RESENT(req, mds_reconstruct_generic(req));
1239
1240         body = lustre_swab_reqbuf(req, 0, sizeof(*body), lustre_swab_mds_body);
1241         if (body == NULL) {
1242                 CERROR("Can't unpack body\n");
1243                 req->rq_status = -EFAULT;
1244                 RETURN(-EFAULT);
1245         }
1246
1247         rc = lustre_pack_reply(req, 1, &size, NULL);
1248         if (rc) {
1249                 CERROR("lustre_pack_reply: rc = %d\n", rc);
1250                 req->rq_status = rc;
1251         }
1252
1253         RETURN(0);
1254 }