Whamcloud - gitweb
b=24437 revoke open lock for executable files if needed
[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  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/mds/mds_open.c
37  *
38  * Author: Peter Braam <braam@clusterfs.com>
39  * Author: Andreas Dilger <adilger@clusterfs.com>
40  * Author: Phil Schwan <phil@clusterfs.com>
41  * Author: Mike Shaver <shaver@clusterfs.com>
42  */
43
44 #ifndef EXPORT_SYMTAB
45 # define EXPORT_SYMTAB
46 #endif
47 #define DEBUG_SUBSYSTEM S_MDS
48
49 #include <linux/version.h>
50 #include <linux/module.h>
51 #include <linux/init.h>
52 #include <linux/version.h>
53 #include <linux/buffer_head.h>
54 #include <linux/workqueue.h>
55
56 #include <obd_class.h>
57 #include <obd_lov.h>
58 #include <lustre_fsfilt.h>
59 #include <lprocfs_status.h>
60
61 #include "mds_internal.h"
62
63 /* Exported function from this file are:
64  *
65  * mds_open - called by the intent handler
66  * mds_close - an rpc handling function
67  * mds_pin - an rpc handling function - which will go away
68  * mds_mfd_close - for force closing files when a client dies
69  */
70
71 /*
72  * MDS file data handling: file data holds a handle for a file opened
73  * by a client.
74  */
75
76 static void mds_mfd_addref(void *mfdp)
77 {
78         struct mds_file_data *mfd = mfdp;
79
80         atomic_inc(&mfd->mfd_refcount);
81         CDEBUG(D_INFO, "GETting mfd %p : new refcount %d\n", mfd,
82                atomic_read(&mfd->mfd_refcount));
83 }
84
85 /* Create a new mds_file_data struct.
86  * One reference for handle+med_open_head list and dropped by mds_mfd_unlink(),
87  * one reference for the caller of this function. */
88 struct mds_file_data *mds_mfd_new(void)
89 {
90         struct mds_file_data *mfd;
91
92         OBD_ALLOC(mfd, sizeof *mfd);
93         if (mfd == NULL) {
94                 CERROR("mds: out of memory\n");
95                 return NULL;
96         }
97
98         atomic_set(&mfd->mfd_refcount, 2);
99
100         INIT_LIST_HEAD(&mfd->mfd_handle.h_link);
101         INIT_LIST_HEAD(&mfd->mfd_list);
102         class_handle_hash(&mfd->mfd_handle, mds_mfd_addref);
103
104         return mfd;
105 }
106
107 /* Get a new reference on the mfd pointed to by handle, if handle is still
108  * valid.  Caller must drop reference with mds_mfd_put(). */
109 static struct mds_file_data *mds_handle2mfd(struct lustre_handle *handle)
110 {
111         ENTRY;
112         LASSERT(handle != NULL);
113         RETURN(class_handle2object(handle->cookie));
114 }
115
116 /* Drop mfd reference, freeing struct if this is the last one. */
117 static void mds_mfd_put(struct mds_file_data *mfd)
118 {
119         CDEBUG(D_INFO, "PUTting mfd %p : new refcount %d\n", mfd,
120                atomic_read(&mfd->mfd_refcount) - 1);
121         LASSERT(atomic_read(&mfd->mfd_refcount) > 0 &&
122                 atomic_read(&mfd->mfd_refcount) < 0x5a5a);
123         if (atomic_dec_and_test(&mfd->mfd_refcount)) {
124                 OBD_FREE_RCU(mfd, sizeof *mfd, &mfd->mfd_handle);
125         }
126 }
127
128 /* Remove the mfd handle so that it cannot be found by open/close again.
129  * Caller must hold med_open_lock for mfd_list manipulation. */
130 void mds_mfd_unlink(struct mds_file_data *mfd, int decref)
131 {
132         class_handle_unhash(&mfd->mfd_handle);
133         list_del_init(&mfd->mfd_list);
134         if (decref)
135                 mds_mfd_put(mfd);
136 }
137
138 /* Caller must hold mds->mds_epoch_sem */
139 static int mds_alloc_filterdata(struct inode *inode)
140 {
141         LASSERT(INODE_PRIVATE_DATA(inode) == NULL);
142         OBD_ALLOC(INODE_PRIVATE_DATA(inode), sizeof(struct mds_filter_data));
143         if (INODE_PRIVATE_DATA(inode) == NULL)
144                 return -ENOMEM;
145         LASSERT(igrab(inode) == inode);
146         return 0;
147 }
148
149 /* Caller must hold mds->mds_epoch_sem */
150 static void mds_free_filterdata(struct inode *inode)
151 {
152         LASSERT(INODE_PRIVATE_DATA(inode) != NULL);
153         OBD_FREE(INODE_PRIVATE_DATA(inode), sizeof(struct mds_filter_data));
154         INODE_PRIVATE_DATA(inode) = NULL;
155         iput(inode);
156 }
157
158 /* Write access to a file: executors cause a negative count,
159  * writers a positive count.  The semaphore is needed to perform
160  * a check for the sign and then increment or decrement atomically.
161  *
162  * This code is closely tied to the allocation of the d_fsdata and the
163  * MDS epoch, so we use the same semaphore for the whole lot.
164  *
165  * We could use a different semaphore for each file, if it ever shows
166  * up in a profile, which it won't.
167  *
168  * epoch argument is nonzero during recovery */
169 static int mds_get_write_access(struct mds_obd *mds, struct inode *inode,
170                                 __u64 epoch)
171 {
172         int rc = 0;
173
174         down(&mds->mds_epoch_sem);
175
176         if (atomic_read(&inode->i_writecount) < 0) {
177                 up(&mds->mds_epoch_sem);
178                 RETURN(-ETXTBSY);
179         }
180
181
182         if (MDS_FILTERDATA(inode) && MDS_FILTERDATA(inode)->io_epoch != 0) {
183                 CDEBUG(D_INODE, "continuing MDS epoch "LPU64" for ino %lu/%u\n",
184                        MDS_FILTERDATA(inode)->io_epoch, inode->i_ino,
185                        inode->i_generation);
186                 goto out;
187         }
188
189         if (MDS_FILTERDATA(inode) == NULL)
190                 mds_alloc_filterdata(inode);
191         if (MDS_FILTERDATA(inode) == NULL) {
192                 rc = -ENOMEM;
193                 goto out;
194         }
195         if (epoch > mds->mds_io_epoch)
196                 mds->mds_io_epoch = epoch;
197         else
198                 mds->mds_io_epoch++;
199         MDS_FILTERDATA(inode)->io_epoch = mds->mds_io_epoch;
200         CDEBUG(D_INODE, "starting MDS epoch "LPU64" for ino %lu/%u\n",
201                mds->mds_io_epoch, inode->i_ino, inode->i_generation);
202  out:
203         if (rc == 0)
204                 atomic_inc(&inode->i_writecount);
205         up(&mds->mds_epoch_sem);
206         return rc;
207 }
208
209 /* Returns EAGAIN if the client needs to get size and/or cookies and close
210  * again -- which is never true if the file is about to be unlinked.  Otherwise
211  * returns the number of remaining writers. */
212 static int mds_put_write_access(struct mds_obd *mds, struct inode *inode,
213                                 struct mds_body *body, int unlinking)
214 {
215         int rc = 0;
216         ENTRY;
217
218         down(&mds->mds_epoch_sem);
219         atomic_dec(&inode->i_writecount);
220         rc = atomic_read(&inode->i_writecount);
221         if (rc > 0)
222                 GOTO(out, rc);
223 #if 0
224         if (!unlinking && !(body->valid & OBD_MD_FLSIZE))
225                 GOTO(out, rc = EAGAIN);
226 #endif
227         mds_free_filterdata(inode);
228  out:
229         up(&mds->mds_epoch_sem);
230         return rc;
231 }
232
233 static int mds_deny_write_access(struct mds_obd *mds, struct inode *inode)
234 {
235         ENTRY;
236         down(&mds->mds_epoch_sem);
237         if (atomic_read(&inode->i_writecount) > 0) {
238                 up(&mds->mds_epoch_sem);
239                 RETURN(-ETXTBSY);
240         }
241         atomic_dec(&inode->i_writecount);
242         up(&mds->mds_epoch_sem);
243         RETURN(0);
244 }
245
246 static void mds_allow_write_access(struct inode *inode)
247 {
248         ENTRY;
249         atomic_inc(&inode->i_writecount);
250 }
251
252 int mds_query_write_access(struct inode *inode)
253 {
254         ENTRY;
255         RETURN(atomic_read(&inode->i_writecount));
256 }
257
258 /* This replaces the VFS dentry_open, it manages mfd and writecount */
259 static struct mds_file_data *mds_dentry_open(struct dentry *dentry,
260                                              struct vfsmount *mnt, int flags,
261                                              struct ptlrpc_request *req)
262 {
263         struct mds_export_data *med = &req->rq_export->exp_mds_data;
264         struct mds_obd *mds = mds_req2mds(req);
265         struct mds_file_data *mfd;
266         struct mds_body *body;
267         int error;
268         ENTRY;
269
270         mfd = mds_mfd_new();
271         if (mfd == NULL) {
272                 CERROR("mds: out of memory\n");
273                 GOTO(cleanup_dentry, error = -ENOMEM);
274         }
275
276         body = lustre_msg_buf(req->rq_repmsg, DLM_REPLY_REC_OFF, sizeof(*body));
277
278         if (flags & FMODE_WRITE) {
279                 /* FIXME: in recovery, need to pass old epoch here */
280                 error = mds_get_write_access(mds, dentry->d_inode, 0);
281                 if (error)
282                         GOTO(cleanup_mfd, error);
283                 body->io_epoch = MDS_FILTERDATA(dentry->d_inode)->io_epoch;
284         } else if (flags & MDS_FMODE_EXEC) {
285                 error = mds_deny_write_access(mds, dentry->d_inode);
286                 if (error)
287                         GOTO(cleanup_mfd, error);
288         }
289
290         dget(dentry);
291
292         /* Mark the file as open to handle open-unlink. */
293         MDS_DOWN_WRITE_ORPHAN_SEM(dentry->d_inode);
294         mds_orphan_open_inc(dentry->d_inode);
295         MDS_UP_WRITE_ORPHAN_SEM(dentry->d_inode);
296
297         mfd->mfd_mode = flags;
298         mfd->mfd_dentry = dentry;
299         mfd->mfd_xid = req->rq_xid;
300         body->handle.cookie = mfd->mfd_handle.h_cookie;
301
302         if (req->rq_export->exp_disconnected) {
303                 mds_mfd_unlink(mfd, 0);
304                 MDS_DOWN_WRITE_ORPHAN_SEM(dentry->d_inode);
305                 mds_mfd_close(NULL, REQ_REC_OFF, req->rq_export->exp_obd,
306                               mfd, 0, NULL, 0, NULL, 0, NULL);
307         } else {
308                 spin_lock(&med->med_open_lock);
309                 list_add(&mfd->mfd_list, &med->med_open_head);
310                 spin_unlock(&med->med_open_lock);
311         }
312
313         RETURN(mfd);
314
315 cleanup_mfd:
316         mds_mfd_put(mfd);
317         mds_mfd_unlink(mfd, 1);
318 cleanup_dentry:
319         return ERR_PTR(error);
320 }
321
322 /* Must be called with i_mutex held */
323 static int mds_create_objects(struct ptlrpc_request *req, int offset,
324                               struct mds_update_record *rec,
325                               struct mds_obd *mds, struct obd_device *obd,
326                               struct dentry *dchild, void **handle,
327                               struct lov_mds_md **objid)
328 {
329         struct inode *inode = dchild->d_inode;
330         struct obd_trans_info oti = { 0 };
331         struct lov_mds_md *lmm = NULL;
332         int rc, lmm_size;
333         struct mds_body *body;
334         struct obd_info oinfo = { { { 0 } } };
335         void *lmm_buf;
336         ENTRY;
337
338         *objid = NULL;
339
340         if (!S_ISREG(inode->i_mode))
341                 RETURN(0);
342         if (rec->ur_flags & MDS_OPEN_DELAY_CREATE ||
343             !(rec->ur_flags & FMODE_WRITE))
344                 RETURN(0);
345
346         body = lustre_msg_buf(req->rq_repmsg, DLM_REPLY_REC_OFF, sizeof(*body));
347
348         if (body->valid & OBD_MD_FLEASIZE)
349                 RETURN(0);
350
351         oti_init(&oti, req);
352
353         /* replay case */
354         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY) {
355                 if (rec->ur_fid2->id == 0) {
356                         DEBUG_REQ(D_ERROR, req, "fid2 not set on open replay");
357                         RETURN(-EFAULT);
358                 }
359
360                 body->valid |= OBD_MD_FLBLKSZ | OBD_MD_FLEASIZE;
361                 lmm_size = rec->ur_eadatalen;
362                 lmm = rec->ur_eadata;
363                 LASSERT(lmm);
364                 if (lov_mds_md_size(lmm->lmm_stripe_count,
365                                     lmm->lmm_magic) != lmm_size)
366                         CWARN("Bad lmm_size during open replay for inode "
367                               "%lu\n", inode->i_ino);
368
369                 if (*handle == NULL) {
370                         int stripe_count = le32_to_cpu(lmm->lmm_stripe_count);
371                         *handle = fsfilt_start_log(obd, inode, FSFILT_OP_CREATE,
372                                                    NULL, stripe_count);
373                 }
374                 if (IS_ERR(*handle)) {
375                         rc = PTR_ERR(*handle);
376                         *handle = NULL;
377                         GOTO(out_ids, rc);
378                 }
379
380                 rc = fsfilt_set_md(obd, inode, *handle, lmm, lmm_size, "lov");
381                 if (rc)
382                         CERROR("open replay failed to set md:%d\n", rc);
383
384                 /* for replay we not need send lmm to client, this not used now */
385                 lustre_shrink_reply(req, offset, 0, 1);
386                 *objid = lmm;
387
388                 RETURN(rc);
389         }
390
391         if (OBD_FAIL_CHECK_ONCE(OBD_FAIL_MDS_ALLOC_OBDO))
392                 GOTO(out_ids, rc = -ENOMEM);
393
394         OBDO_ALLOC(oinfo.oi_oa);
395         if (oinfo.oi_oa == NULL)
396                 GOTO(out_ids, rc = -ENOMEM);
397         oinfo.oi_oa->o_uid = 0; /* must have 0 uid / gid on OST */
398         oinfo.oi_oa->o_gid = 0;
399         oinfo.oi_oa->o_mode = S_IFREG | 0600;
400         oinfo.oi_oa->o_id = inode->i_ino;
401         oinfo.oi_oa->o_gr = 0;
402         oinfo.oi_oa->o_valid = OBD_MD_FLID | OBD_MD_FLTYPE | OBD_MD_FLFLAGS |
403                 OBD_MD_FLMODE | OBD_MD_FLUID | OBD_MD_FLGID| OBD_MD_FLGROUP;
404         oinfo.oi_oa->o_size = 0;
405
406         obdo_from_inode(oinfo.oi_oa, inode, OBD_MD_FLTYPE | OBD_MD_FLATIME |
407                         OBD_MD_FLMTIME | OBD_MD_FLCTIME);
408         if (!(rec->ur_flags & MDS_OPEN_HAS_OBJS)) {
409                 /* check if things like lfs setstripe are sending us the ea */
410                 if (rec->ur_flags & MDS_OPEN_HAS_EA) {
411                         rc = obd_iocontrol(OBD_IOC_LOV_SETSTRIPE,
412                                            mds->mds_lov_exp,
413                                            0, &oinfo.oi_md, rec->ur_eadata);
414                         if (rc)
415                                 GOTO(out_oa, rc);
416                 } else {
417                         __u32 lmm_sz = mds->mds_max_mdsize;
418                         OBD_ALLOC(lmm, lmm_sz);
419                         if (lmm == NULL)
420                                 GOTO(out_oa, rc = -ENOMEM);
421
422                         lmm_size = lmm_sz;
423                         rc = mds_get_md(obd, dchild->d_parent->d_inode,
424                                         lmm, &lmm_size, 1, 0,
425                                         req->rq_export->exp_connect_flags);
426                         if (rc > 0)
427                                 rc = obd_iocontrol(OBD_IOC_LOV_SETSTRIPE,
428                                                    mds->mds_lov_exp,
429                                                    0, &oinfo.oi_md, lmm);
430                         OBD_FREE(lmm, lmm_sz);
431                         if (rc)
432                                 GOTO(out_oa, rc);
433                 }
434                 rc = obd_create(mds->mds_lov_exp, oinfo.oi_oa,
435                                 &oinfo.oi_md, &oti);
436                 if (rc) {
437                         int level = D_ERROR;
438                         if (rc == -ENOSPC)
439                                 level = D_INODE;
440                         CDEBUG_LIMIT(level, "error creating objects for "
441                                      "inode %lu: rc = %d\n", inode->i_ino, rc);
442                         if (rc > 0) {
443                                 CERROR("obd_create returned invalid "
444                                        "rc %d\n", rc);
445                                 rc = -EIO;
446                         }
447                         GOTO(out_oa, rc);
448                 }
449         } else {
450                 rc = obd_iocontrol(OBD_IOC_LOV_SETEA, mds->mds_lov_exp,
451                                    0, &oinfo.oi_md, rec->ur_eadata);
452                 if (rc) {
453                         GOTO(out_oa, rc);
454                 }
455                 oinfo.oi_md->lsm_object_id = oinfo.oi_oa->o_id;
456         }
457         if (i_size_read(inode)) {
458                 oinfo.oi_oa->o_size = i_size_read(inode);
459                 obdo_from_inode(oinfo.oi_oa, inode, OBD_MD_FLTYPE |
460                                 OBD_MD_FLATIME | OBD_MD_FLMTIME |
461                                 OBD_MD_FLCTIME | OBD_MD_FLSIZE);
462
463                 /* pack lustre id to OST */
464                 oinfo.oi_oa->o_fid = body->fid1.id;
465                 oinfo.oi_oa->o_generation = body->fid1.generation;
466                 oinfo.oi_oa->o_valid |= OBD_MD_FLFID | OBD_MD_FLGENER;
467                 oinfo.oi_policy.l_extent.start = i_size_read(inode);
468                 oinfo.oi_policy.l_extent.end = OBD_OBJECT_EOF;
469
470                 rc = obd_punch_rqset(mds->mds_lov_exp, &oinfo, &oti);
471                 if (rc) {
472                         CERROR("error setting attrs for inode %lu: rc %d\n",
473                                inode->i_ino, rc);
474                         if (rc > 0) {
475                                 CERROR("obd_setattr_async returned bad rc %d\n",
476                                        rc);
477                                 rc = -EIO;
478                         }
479                         GOTO(out_oa, rc);
480                 }
481         }
482
483         body->valid |= OBD_MD_FLBLKSZ | OBD_MD_FLEASIZE;
484         obdo_refresh_inode(inode, oinfo.oi_oa, OBD_MD_FLBLKSZ);
485
486         LASSERT(oinfo.oi_md && oinfo.oi_md->lsm_object_id);
487         lmm = NULL;
488         rc = obd_packmd(mds->mds_lov_exp, &lmm, oinfo.oi_md);
489         if (rc < 0) {
490                 CERROR("cannot pack lsm, err = %d\n", rc);
491                 GOTO(out_oa, rc);
492         }
493         lmm_size = rc;
494         body->eadatasize = rc;
495
496         if (*handle == NULL)
497                 *handle = fsfilt_start(obd, inode, FSFILT_OP_CREATE, NULL);
498         if (IS_ERR(*handle)) {
499                 rc = PTR_ERR(*handle);
500                 *handle = NULL;
501                 GOTO(free_diskmd, rc);
502         }
503
504         rc = fsfilt_set_md(obd, inode, *handle, lmm, lmm_size, "lov");
505         lmm_buf = lustre_msg_buf(req->rq_repmsg, offset, lmm_size);
506         LASSERT(lmm_buf);
507         memcpy(lmm_buf, lmm, lmm_size);
508         *objid = lmm_buf; /* save for mds_lov_update_objid */
509
510  free_diskmd:
511         obd_free_diskmd(mds->mds_lov_exp, &lmm);
512  out_oa:
513         oti_free_cookies(&oti);
514         OBDO_FREE(oinfo.oi_oa);
515  out_ids:
516         if (oinfo.oi_md)
517                 obd_free_memmd(mds->mds_lov_exp, &oinfo.oi_md);
518         RETURN(rc);
519 }
520
521 static void reconstruct_open(struct mds_update_record *rec, int offset,
522                              struct ptlrpc_request *req,
523                              struct lustre_handle *child_lockh)
524 {
525         struct mds_export_data *med = &req->rq_export->exp_mds_data;
526         struct lsd_client_data *lcd = med->med_lcd;
527         struct mds_obd *mds = mds_req2mds(req);
528         struct mds_file_data *mfd = NULL;
529         struct obd_export *exp = req->rq_export;
530         struct obd_device *obd = exp->exp_obd;
531         struct dentry *parent, *dchild;
532         struct ldlm_reply *rep;
533         struct mds_body *body;
534         struct list_head *t;
535         int rc;
536         int put_child = 1;
537         ENTRY;
538
539         LASSERT(offset == DLM_INTENT_REC_OFF); /* only called via intent */
540         rep = lustre_msg_buf(req->rq_repmsg, DLM_LOCKREPLY_OFF, sizeof(*rep));
541         body = lustre_msg_buf(req->rq_repmsg, DLM_REPLY_REC_OFF, sizeof(*body));
542
543         /* copy rc, transno and disp; steal locks */
544         mds_req_from_lcd(req, lcd);
545         ldlm_reply_set_disposition(rep, le32_to_cpu(lcd->lcd_last_data));
546
547         /* Only replay if create or open actually happened. */
548         if (!ldlm_reply_disposition(rep, DISP_OPEN_CREATE | DISP_OPEN_OPEN) ) {
549                 EXIT;
550                 return; /* error looking up parent or child */
551         }
552
553         /* If we failed, then we must have failed opening, so don't look for
554          * file descriptor or anything, just give the client the bad news.
555          */
556         if (req->rq_status) {
557                 EXIT;
558                 return;
559         }
560
561         /* Now let's see if we have file descriptor present.
562          * No need to lookup child as it could be already deleted by another
563          * thread (bug 15010) */
564         spin_lock(&med->med_open_lock);
565         list_for_each(t, &med->med_open_head) {
566                 mfd = list_entry(t, struct mds_file_data, mfd_list);
567                 if (mfd->mfd_xid == req->rq_xid) {
568                         mds_mfd_addref(mfd);
569                         break;
570                 }
571                 mfd = NULL;
572         }
573         spin_unlock(&med->med_open_lock);
574
575         if (mfd && mfd->mfd_dentry && mfd->mfd_dentry->d_inode) {
576                 dchild = mfd->mfd_dentry;
577                 put_child = 0;
578         } else {
579                 parent = mds_fid2dentry(mds, rec->ur_fid1, NULL);
580                 if (IS_ERR(parent)) {
581                         rc = PTR_ERR(parent);
582                         LCONSOLE_WARN("Parent "LPU64"/%u lookup error %d."
583                                       " Evicting client %s with export %s.\n",
584                                       rec->ur_fid1->id,rec->ur_fid1->generation,
585                                       rc, obd_uuid2str(&exp->exp_client_uuid),
586                                       obd_export_nid2str(exp));
587                         mds_export_evict(exp);
588                         EXIT;
589                         return;
590                 }
591
592                 dchild = mds_lookup(obd, rec->ur_name, parent, rec->ur_namelen - 1);
593                 l_dput(parent);
594                 if (IS_ERR(dchild)) {
595                         rc = PTR_ERR(dchild);
596                         LCONSOLE_WARN("Child "LPU64"/%u lookup error %d."
597                                       " Evicting client %s with export %s.\n",
598                                       rec->ur_fid1->id,rec->ur_fid1->generation,
599                                       rc, obd_uuid2str(&exp->exp_client_uuid),
600                                       obd_export_nid2str(exp));
601                         mds_export_evict(exp);
602                         EXIT;
603                         return;
604                 }
605         }
606
607         if (!dchild->d_inode)
608                 GOTO(out_dput, 0); /* child not present to open */
609
610         /* At this point, we know we have a child. We'll send
611          * it back _unless_ it not created and open failed.
612          */
613         if (ldlm_reply_disposition(rep, DISP_OPEN_OPEN) &&
614             !ldlm_reply_disposition(rep, DISP_OPEN_CREATE) &&
615             req->rq_status) {
616                 GOTO(out_dput, 0);
617         }
618
619         mds_pack_inode2body(body, dchild->d_inode);
620         if (S_ISREG(dchild->d_inode->i_mode)) {
621                 rc = mds_pack_md(obd, req->rq_repmsg, DLM_REPLY_REC_OFF + 1,
622                                  body, dchild->d_inode, 1, 0,
623                                  req->rq_export->exp_connect_flags);
624
625                 if (rc)
626                         LASSERT(rc == req->rq_status);
627
628                 /* If we have LOV EA data, the OST holds size, mtime */
629                 if (!(body->valid & OBD_MD_FLEASIZE))
630                         body->valid |= (OBD_MD_FLSIZE | OBD_MD_FLBLOCKS |
631                                         OBD_MD_FLATIME | OBD_MD_FLMTIME);
632         }
633
634         if (!(rec->ur_flags & MDS_OPEN_JOIN_FILE))
635                 lustre_shrink_reply(req, DLM_REPLY_REC_OFF + 1,
636                                     body->eadatasize, 0);
637
638         if (req->rq_export->exp_connect_flags & OBD_CONNECT_ACL &&
639             !(rec->ur_flags & MDS_OPEN_JOIN_FILE)) {
640                 int acl_off = DLM_REPLY_REC_OFF + (body->eadatasize ? 2 : 1);
641
642                 rc = mds_pack_acl(med, dchild->d_inode, req->rq_repmsg,
643                                   body, acl_off);
644                 lustre_shrink_reply(req, acl_off, body->aclsize, 0);
645                 if (!req->rq_status && rc)
646                         req->rq_status = rc;
647         }
648
649         /* #warning "XXX fixme" bug 2991 */
650         /* Here it used to LASSERT(mfd) if exp_outstanding_reply != NULL.
651          * Now that exp_outstanding_reply is a list, it's just using mfd != NULL
652          * to detect a re-open */
653         if (mfd == NULL) {
654                 if (rec->ur_flags & MDS_OPEN_JOIN_FILE) {
655 #if LUSTRE_FIX >= 50
656                         /* Allow file join in beta builds to allow debugging */
657                         rc = mds_join_file(rec, req, dchild, NULL);
658                         if (rc)
659                                 GOTO(out_dput, rc);
660 #else
661                         CWARN("file join is not supported in this version of "
662                               "Lustre\n");
663                         GOTO(out_dput, req->rq_status = rc = -EOPNOTSUPP);
664 #endif
665                 }
666                 mntget(mds->mds_vfsmnt);
667                 CERROR("Re-opened file \n");
668                 mfd = mds_dentry_open(dchild, mds->mds_vfsmnt,
669                                       rec->ur_flags & ~MDS_OPEN_TRUNC, req);
670                 mntput(mds->mds_vfsmnt);
671                 if (IS_ERR(mfd)) {
672                         req->rq_status = PTR_ERR(mfd);
673                         mfd = NULL;
674                         CERROR("%s: opening inode "LPU64" failed: rc %d\n",
675                                req->rq_export->exp_obd->obd_name,
676                                (__u64)dchild->d_inode->i_ino, req->rq_status);
677                         GOTO(out_dput, req->rq_status);
678                 }
679         } else {
680                 body->handle.cookie = mfd->mfd_handle.h_cookie;
681                 CDEBUG(D_INODE, "resend mfd %p, cookie "LPX64"\n", mfd,
682                        mfd->mfd_handle.h_cookie);
683         }
684
685         if (!ldlm_reply_disposition(rep, DISP_OPEN_LOCK))
686                 GOTO(out_dput, 0);
687
688         /* child_lockh has been set in fixup_handle_for_resent_req called
689          * in mds_intent_policy for resent request */
690         if (child_lockh == NULL || !lustre_handle_is_used(child_lockh)) {
691                 /* the lock is already canceled! clear DISP_OPEN_LOCK */
692                 ldlm_reply_clear_disposition(rep, DISP_OPEN_LOCK);
693         }
694
695  out_dput:
696         if (mfd)
697                 mds_mfd_put(mfd);
698
699         if (put_child)
700                 l_dput(dchild);
701         EXIT;
702 }
703
704 /* if client disconnects during recovery it may resend opens which were replayed
705  * on server but their transno less then last_transno on server so they will not
706  * be detected as reconstructs */
707 static int open_replay_reconstruct(struct ptlrpc_request *req)
708 {
709         struct mds_export_data *med = &req->rq_export->exp_mds_data;
710         struct mds_file_data *mfd = NULL;
711         struct list_head *t;
712
713         if (!(lustre_msg_get_flags(req->rq_reqmsg) & MSG_RESENT))
714                 return 0;
715
716         if (!(lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY))
717                 return 0;
718
719         /* if mfd exists then replay was done already */
720         spin_lock(&med->med_open_lock);
721         list_for_each(t, &med->med_open_head) {
722                 mfd = list_entry(t, struct mds_file_data, mfd_list);
723                 if (mfd->mfd_xid == req->rq_xid) {
724                         mds_mfd_addref(mfd);
725                         break;
726                 }
727                 mfd = NULL;
728         }
729         spin_unlock(&med->med_open_lock);
730
731         if (mfd) {
732                 struct mds_body *body = lustre_msg_buf(req->rq_repmsg,
733                                                        DLM_REPLY_REC_OFF,
734                                                        sizeof(*body));
735                 __u64 *pre_versions = lustre_msg_get_versions(req->rq_reqmsg);
736
737                 body->handle.cookie = mfd->mfd_handle.h_cookie;
738                 CDEBUG(D_INODE, "resend mfd %p, cookie "LPX64"\n", mfd,
739                        mfd->mfd_handle.h_cookie);
740                 mds_mfd_put(mfd);
741                 lustre_msg_set_versions(req->rq_repmsg, pre_versions);
742                 lustre_msg_set_transno(req->rq_repmsg,
743                                        lustre_msg_get_transno(req->rq_reqmsg));
744                 lustre_msg_set_status(req->rq_repmsg, 0);
745                 return 1;
746         }
747         return 0;
748 }
749
750 /* do NOT or the MAY_*'s, you'll get the weakest */
751 static int accmode(struct inode *inode, int flags)
752 {
753         int res = 0;
754
755         /* Sadly, NFSD reopens a file repeatedly during operation, so the
756          * "acc_mode = 0" allowance for newly-created files isn't honoured.
757          * NFSD uses the MDS_OPEN_OWNEROVERRIDE flag to say that a file
758          * owner can write to a file even if it is marked readonly to hide
759          * its brokenness. (bug 5781) */
760         if (flags & MDS_OPEN_OWNEROVERRIDE && inode->i_uid == current_fsuid())
761                 return 0;
762
763         if (flags & FMODE_READ)
764                 res = MAY_READ;
765         if (flags & (FMODE_WRITE|MDS_OPEN_TRUNC))
766                 res |= MAY_WRITE;
767         if (flags & MDS_FMODE_EXEC)
768                 res = MAY_EXEC;
769         return res;
770 }
771
772 /* Handles object creation, actual opening, and I/O epoch */
773 static int mds_finish_open(struct ptlrpc_request *req, struct dentry *dchild,
774                            struct mds_body *body, int flags, void **handle,
775                            struct mds_update_record *rec,struct ldlm_reply *rep,
776                            struct lustre_handle *lockh)
777 {
778         struct mds_obd *mds = mds_req2mds(req);
779         struct obd_device *obd = req->rq_export->exp_obd;
780         struct mds_file_data *mfd = NULL;
781         struct lov_mds_md *lmm = NULL; /* object IDs created */
782         int rc = 0;
783         ENTRY;
784
785         /* atomically create objects if necessary */
786         LOCK_INODE_MUTEX(dchild->d_inode);
787
788         if (S_ISREG(dchild->d_inode->i_mode) &&
789             !(body->valid & OBD_MD_FLEASIZE)) {
790                 rc = mds_pack_md(obd, req->rq_repmsg, DLM_REPLY_REC_OFF + 1,
791                                  body, dchild->d_inode, 0, 0,
792                                  req->rq_export->exp_connect_flags);
793                 if (rc) {
794                         UNLOCK_INODE_MUTEX(dchild->d_inode);
795                         RETURN(rc);
796                 }
797         }
798         if (rec != NULL) {
799                 if ((body->valid & OBD_MD_FLEASIZE) &&
800                     (rec->ur_flags & MDS_OPEN_HAS_EA)) {
801                         UNLOCK_INODE_MUTEX(dchild->d_inode);
802                         RETURN(-EEXIST);
803                 }
804                 if (rec->ur_flags & MDS_OPEN_JOIN_FILE) {
805 #if LUSTRE_FIX >= 50
806                         /* Allow file join in beta builds to allow debugging */
807                         UNLOCK_INODE_MUTEX(dchild->d_inode);
808                         rc = mds_join_file(rec, req, dchild, lockh);
809                         if (rc)
810                                 RETURN(rc);
811                         LOCK_INODE_MUTEX(dchild->d_inode);
812 #else
813                         CWARN("file join is not supported in this version of "
814                               "Lustre\n");
815                         RETURN(-EOPNOTSUPP);
816 #endif
817                 }
818                 if (!(body->valid & OBD_MD_FLEASIZE) &&
819                     !(body->valid & OBD_MD_FLMODEASIZE)) {
820                         /* split open transactions here */
821                         OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_SPLIT_OPEN, 10);
822                         /* no EA: create objects */
823                         rc = mds_create_objects(req, DLM_REPLY_REC_OFF + 1, rec,
824                                                 mds, obd, dchild, handle, &lmm);
825                         if (rc) {
826                                 CERROR("mds_create_objects: rc = %d\n", rc);
827                                 UNLOCK_INODE_MUTEX(dchild->d_inode);
828                                 RETURN(rc);
829                         }
830                 }
831         }
832         /* If the inode has no EA data, then MDS holds size, mtime */
833         if (S_ISREG(dchild->d_inode->i_mode) &&
834             !(body->valid & OBD_MD_FLEASIZE)) {
835                 body->valid |= (OBD_MD_FLSIZE | OBD_MD_FLBLOCKS |
836                                 OBD_MD_FLATIME | OBD_MD_FLMTIME);
837         }
838         UNLOCK_INODE_MUTEX(dchild->d_inode);
839
840         if (req->rq_export->exp_connect_flags & OBD_CONNECT_ACL &&
841             rec && !(rec->ur_flags & MDS_OPEN_JOIN_FILE)) {
842                 int acl_off = DLM_REPLY_REC_OFF + 2;
843
844                 rc = mds_pack_acl(&req->rq_export->exp_mds_data,
845                                   dchild->d_inode, req->rq_repmsg,
846                                   body, acl_off);
847                 if (rc)
848                         RETURN(rc);
849         }
850
851         if ((rc = mds_lov_prepare_objids(obd,lmm)) != 0)
852                 RETURN(rc);
853
854         mfd = mds_dentry_open(dchild, mds->mds_vfsmnt, flags, req);
855         if (IS_ERR(mfd))
856                 RETURN(PTR_ERR(mfd));
857
858         CDEBUG(D_INODE, "mfd %p, cookie "LPX64"\n", mfd,
859                mfd->mfd_handle.h_cookie);
860
861         mds_lov_update_objids(obd, lmm);
862
863         if (rc)
864                 mds_mfd_unlink(mfd, 1);
865
866         mds_mfd_put(mfd);
867         RETURN(rc);
868 }
869
870 static int mds_open_by_fid(struct ptlrpc_request *req, struct ll_fid *fid,
871                            struct mds_body *body, int flags,
872                            struct mds_update_record *rec,struct ldlm_reply *rep)
873 {
874         struct obd_device *obd = req->rq_export->exp_obd;
875         struct mds_obd *mds = mds_req2mds(req);
876         struct dentry *dchild, *dparent = NULL;
877         char fidname[LL_FID_NAMELEN];
878         int fidlen = 0, rc;
879         void *handle = NULL;
880         struct inode *inodes[PTLRPC_NUM_VERSIONS] = { NULL };
881         ENTRY;
882
883         ldlm_reply_set_disposition(rep, DISP_LOOKUP_EXECD);
884         fidlen = ll_fid2str(fidname, fid->id, fid->generation);
885         dchild = mds_lookup(obd, fidname, mds->mds_pending_dir, fidlen);
886         if (IS_ERR(dchild)) {
887                 rc = PTR_ERR(dchild);
888                 CERROR("error looking up %s in PENDING: rc = %d\n",fidname, rc);
889                 RETURN(rc);
890         }
891
892         if (dchild->d_inode != NULL) {
893                 mds_inode_set_orphan(dchild->d_inode);
894                 CWARN("Orphan %s found and opened in PENDING directory\n",
895                        fidname);
896         } else {
897                 __u64 *pre_versions = lustre_msg_get_versions(req->rq_reqmsg);
898                 l_dput(dchild);
899
900                 /* We didn't find it in PENDING so it isn't an orphan.  See
901                  * if it was a regular inode that was previously created. */
902                 dchild = mds_fid2dentry(mds, fid, NULL);
903                 if (IS_ERR(dchild))
904                         RETURN(PTR_ERR(dchild));
905                 /**
906                  * bug19224
907                  * this can be replay of partially committed open|create,
908                  * the create itself was committed while LOV EA weren't
909                  * We need to set versions again if conditions are:
910                  * - this is replay
911                  * - the transaction is greater than last_committed
912                  * - this was open|create
913                  * - there was real create so parent pre_version was saved
914                  */
915                 if ((lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY) &&
916                     (lustre_msg_get_transno(req->rq_reqmsg) >
917                      req->rq_export->exp_last_committed) &&
918                     (rec->ur_flags & MDS_OPEN_CREAT) &&
919                     (pre_versions && pre_versions[0] != 0)) {
920                         /* need parent to set version */
921                         dparent = mds_fid2dentry(mds, rec->ur_fid1, NULL);
922                         if (IS_ERR(dparent)) {
923                                 CERROR("Can't find parent for open replay\n");
924                                 l_dput(dchild);
925                                 RETURN(PTR_ERR(dparent));
926                         }
927                         /* though file was created, the versions were not
928                          * changed yet, need to replay that too */
929                         inodes[0] = dparent->d_inode;
930                         inodes[1] = dchild->d_inode;
931                 }
932         }
933
934         mds_pack_inode2body(body, dchild->d_inode);
935         ldlm_reply_set_disposition(rep, DISP_LOOKUP_POS);
936         ldlm_reply_set_disposition(rep, DISP_OPEN_OPEN);
937
938         rc = mds_finish_open(req, dchild, body, flags, &handle, rec, rep, NULL);
939         rc = mds_finish_transno(mds, inodes, handle,
940                                 req, rc, rep ? rep->lock_policy_res1 : 0, 0);
941         /* XXX what do we do here if mds_finish_transno itself failed? */
942
943         l_dput(dparent);
944         l_dput(dchild);
945         RETURN(rc);
946 }
947
948 int mds_pin(struct ptlrpc_request *req, int offset)
949 {
950         struct obd_device *obd = req->rq_export->exp_obd;
951         struct mds_body *reqbody, *repbody;
952         struct lvfs_run_ctxt saved;
953         int rc, size[2] = { sizeof(struct ptlrpc_body), sizeof(*repbody) };
954         ENTRY;
955
956         reqbody = lustre_msg_buf(req->rq_reqmsg, offset, sizeof(*reqbody));
957
958         rc = lustre_pack_reply(req, 2, size, NULL);
959         if (rc)
960                 RETURN(rc);
961
962         repbody = lustre_msg_buf(req->rq_repmsg, REPLY_REC_OFF,
963                                  sizeof(*repbody));
964
965         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
966         rc = mds_open_by_fid(req, &reqbody->fid1, repbody, reqbody->flags, NULL,
967                              NULL);
968         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
969
970         RETURN(rc);
971 }
972
973 /*  Get an internal lock on the inode number (but not generation) to sync
974  *  new inode creation with inode unlink (bug 2029).  If child_lockh is NULL
975  *  we just get the lock as a barrier to wait for other holders of this lock,
976  *  and drop it right away again. */
977 int mds_lock_new_child(struct obd_device *obd, struct inode *inode,
978                        struct lustre_handle *child_lockh)
979 {
980         struct ldlm_res_id child_res_id = { .name = { inode->i_ino, 0, 1, 0 } };
981         struct lustre_handle lockh;
982         int lock_flags = LDLM_FL_ATOMIC_CB;
983         int rc;
984
985         if (child_lockh == NULL)
986                 child_lockh = &lockh;
987
988         rc = ldlm_cli_enqueue_local(obd->obd_namespace, &child_res_id,
989                                     LDLM_PLAIN, NULL, LCK_EX, &lock_flags,
990                                     ldlm_blocking_ast, ldlm_completion_ast,
991                                     NULL, NULL, 0, NULL, child_lockh);
992         if (rc != ELDLM_OK)
993                 CERROR("ldlm_cli_enqueue_local: %d\n", rc);
994         else if (child_lockh == &lockh)
995                 ldlm_lock_decref(child_lockh, LCK_EX);
996
997         RETURN(rc);
998 }
999
1000 static int noinline mds_get_open_lock(struct obd_device *obd,
1001                                       struct dentry *dchild,
1002                                       int child_mode,
1003                                       struct lustre_handle *child_lockh)
1004 {
1005         ldlm_policy_data_t policy = {
1006                 .l_inodebits = { MDS_INODELOCK_LOOKUP | MDS_INODELOCK_OPEN }
1007         };
1008         struct ldlm_res_id child_res_id = {
1009                 .name[0] = dchild->d_inode->i_ino,
1010                 .name[1] = dchild->d_inode->i_generation,
1011         };
1012         int lock_flags = 0;
1013
1014         return ldlm_cli_enqueue_local(obd->obd_namespace, &child_res_id,
1015                                       LDLM_IBITS, &policy, child_mode,
1016                                       &lock_flags, ldlm_blocking_ast,
1017                                       ldlm_completion_ast, NULL, NULL,
1018                                       0, NULL, child_lockh);
1019 }
1020
1021 int mds_open(struct mds_update_record *rec, int offset,
1022              struct ptlrpc_request *req, struct lustre_handle *child_lockh)
1023 {
1024         /* XXX ALLOCATE _something_ - 464 bytes on stack here */
1025         struct obd_device *obd = req->rq_export->exp_obd;
1026         struct mds_obd *mds = mds_req2mds(req);
1027         struct ldlm_reply *rep = NULL;
1028         struct mds_body *body = NULL;
1029         struct dentry *dchild = NULL, *dparent = NULL;
1030         struct inode *inodes[PTLRPC_NUM_VERSIONS] = { NULL };
1031         struct mds_export_data *med;
1032         struct lustre_handle parent_lockh;
1033         int rc = 0, cleanup_phase = 0, acc_mode, created = 0;
1034         int parent_mode = LCK_CR;
1035         void *handle = NULL;
1036         struct lvfs_dentry_params dp = LVFS_DENTRY_PARAMS_INIT;
1037         unsigned int qcids[MAXQUOTAS] = { current_fsuid(), current_fsgid() };
1038         unsigned int qpids[MAXQUOTAS] = { 0, 0 };
1039         unsigned int ids[MAXQUOTAS] = { 0, 0 };
1040         int child_mode = LCK_CR;
1041         /* Always returning LOOKUP lock if open succesful to guard
1042            dentry on client. */
1043         int quota_pending[2] = {0, 0};
1044         int use_parent, need_open_lock;
1045         unsigned int gid = current_fsgid();
1046         ENTRY;
1047
1048         mds_counter_incr(req->rq_export, LPROC_MDS_OPEN);
1049
1050         OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_PAUSE_OPEN | OBD_FAIL_ONCE,
1051                          (obd_timeout + 1) / 4);
1052
1053         CLASSERT(MAXQUOTAS < 4);
1054         if (offset == DLM_INTENT_REC_OFF) { /* intent */
1055                 rep = lustre_msg_buf(req->rq_repmsg, DLM_LOCKREPLY_OFF,
1056                                      sizeof(*rep));
1057                 body = lustre_msg_buf(req->rq_repmsg, DLM_REPLY_REC_OFF,
1058                                       sizeof(*body));
1059         } else if (offset == REQ_REC_OFF) { /* non-intent reint */
1060                 body = lustre_msg_buf(req->rq_repmsg, REPLY_REC_OFF,
1061                                       sizeof(*body));
1062                 LBUG(); /* XXX: not supported yet? */
1063         } else {
1064                 body = NULL;
1065                 LBUG();
1066         }
1067
1068         /* check the open resent|replay case */
1069         if (open_replay_reconstruct(req))
1070                 RETURN(0);
1071
1072         MDS_CHECK_RESENT(req, reconstruct_open(rec, offset, req, child_lockh));
1073
1074         /* Step 0: If we are passed a fid, then we assume the client already
1075          * opened this file and is only replaying the RPC, so we open the
1076          * inode by fid (at some large expense in security). */
1077         /*XXX liblustre use mds_open_by_fid to implement LL_IOC_LOV_SETSTRIPE */
1078         if (((lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY) ||
1079              (req->rq_export->exp_libclient && rec->ur_flags&MDS_OPEN_HAS_EA))&&
1080             !(rec->ur_flags & MDS_OPEN_JOIN_FILE)) {
1081                 if (rec->ur_fid2->id == 0) {
1082                         struct ldlm_lock *lock = ldlm_handle2lock(child_lockh);
1083                         if (lock) {
1084                                 LDLM_ERROR(lock, "fid2 not set on open replay");
1085                                 LDLM_LOCK_PUT(lock);
1086                         }
1087                         DEBUG_REQ(D_ERROR, req, "fid2 not set on open replay");
1088                         RETURN(-EFAULT);
1089                 }
1090
1091                 /** check there is no stale orphan with same inode number */
1092                 if (rec->ur_flags & MDS_OPEN_CREAT) {
1093                         rc = mds_check_stale_orphan(obd, rec->ur_fid2);
1094                         if (rc)
1095                                 RETURN(rc);
1096                 }
1097
1098                 rc = mds_open_by_fid(req, rec->ur_fid2, body, rec->ur_flags,
1099                                      rec, rep);
1100                 if (rc != -ENOENT) {
1101                         if (req->rq_export->exp_libclient &&
1102                             rec->ur_flags & MDS_OPEN_HAS_EA)
1103                                 RETURN(0);
1104
1105                         RETURN(rc);
1106                 }
1107
1108                 /* We didn't find the correct inode on disk either, so we
1109                  * need to re-create it via a regular replay. */
1110                 if (!(rec->ur_flags & MDS_OPEN_CREAT)) {
1111                         DEBUG_REQ(D_ERROR, req,"OPEN_CREAT not in open replay");
1112                         RETURN(-EFAULT);
1113                 }
1114         } else if (rec->ur_fid2->id) {
1115                 DEBUG_REQ(D_ERROR, req, "fid2 "LPU64"/%u on open non-replay",
1116                           rec->ur_fid2->id, rec->ur_fid2->generation);
1117                 RETURN(-EFAULT);
1118         }
1119
1120         /* If we got here, we must be called via intent */
1121         LASSERT(offset == DLM_INTENT_REC_OFF);
1122
1123         med = &req->rq_export->exp_mds_data;
1124         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_OPEN_PACK)) {
1125                 CERROR("test case OBD_FAIL_MDS_OPEN_PACK\n");
1126                 RETURN(-ENOMEM);
1127         }
1128
1129         if (rec->ur_flags & (MDS_OPEN_CREAT | MDS_OPEN_JOIN_FILE))
1130                 parent_mode = LCK_EX;
1131
1132         /* We cannot use acc_mode here, because it is zeroed in case of
1133            creating a file, so we get wrong lockmode */
1134         if (rec->ur_flags & FMODE_WRITE)
1135                 child_mode = LCK_CW;
1136         else if (rec->ur_flags & MDS_FMODE_EXEC)
1137                 child_mode = LCK_PR;
1138         else
1139                 child_mode = LCK_CR;
1140
1141         /* join file and nfsd can't need lookup dchild as use parent for it */
1142         use_parent = (!(lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY) &&
1143                      (rec->ur_flags & MDS_OPEN_LOCK) && (rec->ur_namelen == 1)) ||
1144                      (rec->ur_flags & MDS_OPEN_JOIN_FILE);
1145
1146         need_open_lock = !(lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY) &&
1147                            (rec->ur_flags & MDS_OPEN_LOCK);
1148
1149         /* Try to lock both parent and child first. If child is not found,
1150          * return only locked parent.  This is enough to prevent other
1151          * threads from changing this directory until creation is finished. */
1152         rc = mds_get_parent_child_locked(obd, &obd->u.mds,
1153                                          rec->ur_fid1,
1154                                          &parent_lockh,
1155                                          &dparent, parent_mode,
1156                                          MDS_INODELOCK_UPDATE,
1157                                          use_parent ? NULL : rec->ur_name,
1158                                          rec->ur_namelen,
1159                                          (rec->ur_flags & MDS_OPEN_LOCK) ?
1160                                                 child_lockh : NULL,
1161                                          &dchild, child_mode,
1162                                          MDS_INODELOCK_LOOKUP |
1163                                          MDS_INODELOCK_OPEN);
1164
1165         if (rc) {
1166                 if (rc != -ENOENT) {
1167                         CERROR("parent "LPU64"/%u lookup/take lock error %d\n",
1168                                rec->ur_fid1->id, rec->ur_fid1->generation, rc);
1169                 } else {
1170                         /* Just cannot find parent - make it look like
1171                          * usual negative lookup to avoid extra MDS RPC */
1172                         ldlm_reply_set_disposition(rep, DISP_LOOKUP_EXECD);
1173                         ldlm_reply_set_disposition(rep, DISP_LOOKUP_NEG);
1174                 }
1175                 GOTO(cleanup, rc);
1176         }
1177         LASSERT(dparent->d_inode != NULL);
1178
1179         cleanup_phase = 1; /* parent dentry and lock */
1180
1181         if (use_parent)
1182                 dchild = dget(dparent);
1183
1184         if (rec->ur_flags & MDS_OPEN_JOIN_FILE) {
1185                 acc_mode = accmode(dchild->d_inode, rec->ur_flags);
1186                 GOTO(found_child, rc);
1187         }
1188
1189         cleanup_phase = 2; /* child dentry */
1190
1191         ldlm_reply_set_disposition(rep, DISP_LOOKUP_EXECD);
1192         if (dchild->d_inode)
1193                 ldlm_reply_set_disposition(rep, DISP_LOOKUP_POS);
1194         else
1195                 ldlm_reply_set_disposition(rep, DISP_LOOKUP_NEG);
1196
1197         /*Step 3: If the child was negative, and we're supposed to, create it.*/
1198         if (dchild->d_inode == NULL) {
1199                 unsigned long ino = rec->ur_fid2->id;
1200                 struct iattr *iattr;
1201                 struct inode *inode;
1202
1203                 if (!(rec->ur_flags & MDS_OPEN_CREAT)) {
1204                         /* It's negative and we weren't supposed to create it */
1205                         GOTO(cleanup, rc = -ENOENT);
1206                 }
1207
1208                 if (req->rq_export->exp_connect_flags & OBD_CONNECT_RDONLY)
1209                         GOTO(cleanup, rc = -EROFS);
1210
1211                 /** check there is no stale orphan with same inode number */
1212                 rc = mds_check_stale_orphan(obd, rec->ur_fid2);
1213                 if (rc)
1214                         GOTO(cleanup, rc);
1215
1216                 /* version recovery check */
1217                 rc = mds_version_get_check(req, dparent->d_inode, 0);
1218                 if (rc)
1219                         GOTO(cleanup_no_trans, rc);
1220
1221                 if (dparent->d_inode->i_mode & S_ISGID)
1222                         gid = dparent->d_inode->i_gid;
1223                 else
1224                         gid = current_fsgid();
1225
1226                 /* we try to get enough quota to write here, and let ldiskfs
1227                  * decide if it is out of quota or not b=14783
1228                  * FIXME: after CMD is used, pointer to obd_trans_info* couldn't
1229                  * be NULL, b=14840 */
1230                 ids[0] = current_fsuid();
1231                 ids[1] = gid;
1232                 lquota_chkquota(mds_quota_interface_ref, req->rq_export,
1233                                 ids[0], ids[1], 1, quota_pending,
1234                                 NULL, NULL, 0);
1235
1236                 ldlm_reply_set_disposition(rep, DISP_OPEN_CREATE);
1237                 handle = fsfilt_start(obd, dparent->d_inode, FSFILT_OP_CREATE,
1238                                       NULL);
1239                 if (IS_ERR(handle)) {
1240                         rc = PTR_ERR(handle);
1241                         handle = NULL;
1242                         GOTO(cleanup, rc);
1243                 }
1244                 dchild->d_fsdata = (void *) &dp;
1245                 dp.ldp_ptr = req;
1246                 dp.ldp_inum = ino;
1247
1248                 LOCK_INODE_MUTEX(dparent->d_inode);
1249                 rc = ll_vfs_create(dparent->d_inode, dchild, rec->ur_mode,NULL);
1250                 UNLOCK_INODE_MUTEX(dparent->d_inode);
1251                 if (dchild->d_fsdata == (void *)(unsigned long)ino)
1252                         dchild->d_fsdata = NULL;
1253
1254                 if (rc) {
1255                         CDEBUG(D_INODE, "error during create: %d\n", rc);
1256                         GOTO(cleanup, rc);
1257                 }
1258                 inode = dchild->d_inode;
1259                 created = 1;
1260                 if (ino) {
1261                         if (ino != inode->i_ino) {
1262                                 /* FID support is needed to replay this
1263                                  * correctly. Now fail gracefully like there is
1264                                  * version mismatch */
1265                                 if (req->rq_export->exp_delayed)
1266                                         rc = -EOVERFLOW;
1267                                 else
1268                                         rc = -EFAULT;
1269                                 CERROR("file recreated with wrong inode number"
1270                                        " %lu != %lu\n", ino, inode->i_ino);
1271                                 GOTO(cleanup, rc);
1272                         }
1273                         /* Written as part of setattr */
1274                         inode->i_generation = rec->ur_fid2->generation;
1275                         CDEBUG(D_HA, "recreated ino %lu with gen %u\n",
1276                                inode->i_ino, inode->i_generation);
1277                 }
1278
1279                 OBD_ALLOC_PTR(iattr);
1280                 if (iattr == NULL)
1281                         GOTO(cleanup, rc = -ENOMEM);
1282
1283                 LTIME_S(iattr->ia_atime) = rec->ur_time;
1284                 LTIME_S(iattr->ia_ctime) = rec->ur_time;
1285                 LTIME_S(iattr->ia_mtime) = rec->ur_time;
1286
1287                 iattr->ia_uid = current_fsuid();  /* set by push_ctxt already */
1288                 iattr->ia_gid = gid;
1289
1290                 iattr->ia_valid = ATTR_UID | ATTR_GID | ATTR_ATIME |
1291                         ATTR_MTIME | ATTR_CTIME;
1292
1293                 rc = fsfilt_setattr(obd, dchild, handle, iattr, 0);
1294                 if (rc)
1295                         CERROR("error on child setattr: rc = %d\n", rc);
1296
1297                 iattr->ia_valid = ATTR_MTIME | ATTR_CTIME;
1298
1299                 rc = fsfilt_setattr(obd, dparent, handle, iattr, 0);
1300                 if (rc)
1301                         CERROR("error on parent setattr: rc = %d\n", rc);
1302
1303                 OBD_FREE_PTR(iattr);
1304
1305                 rc = fsfilt_commit(obd, dchild->d_inode, handle, 0);
1306                 handle = NULL;
1307                 acc_mode = 0;           /* Don't check for permissions */
1308         } else {
1309                 acc_mode = accmode(dchild->d_inode, rec->ur_flags);
1310                 /* Child previously existed so the lookup and lock is already
1311                  * done, so no further locking is needed. */
1312                 /* for nfs and join - we need two locks for same fid, but
1313                  * with different mode */
1314                 if (need_open_lock && !use_parent)  {
1315                         ldlm_reply_set_disposition(rep, DISP_OPEN_LOCK);
1316                         need_open_lock = 0;
1317                 }
1318         }
1319
1320         LASSERTF(!mds_inode_is_orphan(dchild->d_inode),
1321                  "dchild %.*s (%p) inode %p/%lu/%u\n", dchild->d_name.len,
1322                  dchild->d_name.name, dchild, dchild->d_inode,
1323                  dchild->d_inode->i_ino, dchild->d_inode->i_generation);
1324
1325 found_child:
1326         mds_pack_inode2body(body, dchild->d_inode);
1327         if (!created && (rec->ur_flags & MDS_OPEN_CREAT) &&
1328             (rec->ur_flags & MDS_OPEN_EXCL)) {
1329                 /* File already exists, we didn't just create it, and we
1330                  * were passed O_EXCL; err-or. */
1331                 GOTO(cleanup, rc = -EEXIST); // returns a lock to the client
1332         }
1333
1334         /* if we are following special file, don't open */
1335         if (!S_ISREG(dchild->d_inode->i_mode) &&
1336             !S_ISDIR(dchild->d_inode->i_mode))
1337                 GOTO(cleanup_no_trans, rc = 0);
1338
1339         ldlm_reply_set_disposition(rep, DISP_OPEN_OPEN);
1340         if (S_ISREG(dchild->d_inode->i_mode)) {
1341                 /* Check permissions etc */
1342                 rc = ll_permission(dchild->d_inode, acc_mode, NULL);
1343                 if (rc != 0)
1344                         GOTO(cleanup, rc);
1345
1346                 if ((req->rq_export->exp_connect_flags & OBD_CONNECT_RDONLY) &&
1347                     (acc_mode & MAY_WRITE))
1348                         GOTO(cleanup, rc = -EROFS);
1349
1350                 /* An append-only file must be opened in append mode for
1351                  * writing */
1352                 if (IS_APPEND(dchild->d_inode) && (acc_mode & MAY_WRITE) != 0 &&
1353                     ((rec->ur_flags & MDS_OPEN_APPEND) == 0 ||
1354                      (rec->ur_flags & MDS_OPEN_TRUNC) != 0))
1355                         GOTO(cleanup, rc = -EPERM);
1356         } else {
1357                 if (S_ISDIR(dchild->d_inode->i_mode)) {
1358                         if (rec->ur_flags & MDS_OPEN_CREAT ||
1359                             rec->ur_flags & FMODE_WRITE) {
1360                                 /* we are trying to create or write a exist dir*/
1361                                 GOTO(cleanup, rc = -EISDIR);
1362                         }
1363                         if (rec->ur_flags & MDS_FMODE_EXEC) {
1364                                 /* we are trying to exec a directory */
1365                                 GOTO(cleanup, rc = -EACCES);
1366                         }
1367                         if (ll_permission(dchild->d_inode, acc_mode, NULL))
1368                                 GOTO(cleanup, rc = -EACCES);
1369                 } else if (rec->ur_flags & MDS_OPEN_DIRECTORY) {
1370                         GOTO(cleanup, rc = -ENOTDIR);
1371                 }
1372         }
1373
1374         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_OPEN_CREATE)) {
1375                 obd_fail_loc = OBD_FAIL_LDLM_REPLY | OBD_FAIL_ONCE;
1376                 GOTO(cleanup, rc = -EAGAIN);
1377         }
1378
1379         if (need_open_lock) {
1380                 rc = mds_get_open_lock(obd, dchild, child_mode, child_lockh);
1381                 if (rc != ELDLM_OK)
1382                         GOTO(cleanup, rc);
1383                 /* Let mds_intent_policy know that we have a lock to return */
1384                 ldlm_reply_set_disposition(rep, DISP_OPEN_LOCK);
1385         } else if (!(rec->ur_flags & MDS_OPEN_LOCK)    &&
1386                    S_ISREG(dchild->d_inode->i_mode)    &&
1387                    (dchild->d_inode->i_mode & S_IXUGO) &&
1388                    (rec->ur_flags & (FMODE_WRITE | MDS_FMODE_EXEC))) {
1389                 /* if this is an executable, and a non-nfsd client open write or
1390                  * execute it, revoke open lock in case other client holds a
1391                  * open lock which denies writing/executing in mds_finish_open()
1392                  * below. LU-146
1393                  */
1394                 rc = mds_get_open_lock(obd, dchild, child_mode, child_lockh);
1395                 if (rc != ELDLM_OK)
1396                         GOTO(cleanup, rc);
1397                 ldlm_lock_decref(child_lockh, child_mode);
1398                 memset(child_lockh, 0, sizeof(*child_lockh));
1399         }
1400
1401         if (!S_ISREG(dchild->d_inode->i_mode) &&
1402             !S_ISDIR(dchild->d_inode->i_mode) &&
1403             (req->rq_export->exp_connect_flags & OBD_CONNECT_NODEVOH)) {
1404                 /* If client supports this, do not return open handle for
1405                  * special device nodes */
1406                 GOTO(cleanup_no_trans, rc = 0);
1407         }
1408
1409         /* Step 5: mds_open it */
1410         rc = mds_finish_open(req, dchild, body, rec->ur_flags, &handle, rec,
1411                              rep, &parent_lockh);
1412         GOTO(cleanup, rc);
1413
1414  cleanup:
1415         inodes[0] = (!created || IS_ERR(dparent)) ? NULL : dparent->d_inode;
1416         inodes[1] = (created && dchild) ? dchild->d_inode : NULL;
1417         rc = mds_finish_transno(mds, inodes, handle, req, rc,
1418                                 rep ? rep->lock_policy_res1 : 0, 0);
1419
1420  cleanup_no_trans:
1421         if (quota_pending[0] || quota_pending[1])
1422                 lquota_pending_commit(mds_quota_interface_ref, obd,
1423                                       ids[0], ids[1], quota_pending);
1424         switch (cleanup_phase) {
1425         case 2:
1426                 if (rc && created) {
1427                         int err;
1428                         LOCK_INODE_MUTEX(dparent->d_inode);
1429                         err = ll_vfs_unlink(dparent->d_inode, dchild,
1430                                             mds->mds_vfsmnt);
1431                         UNLOCK_INODE_MUTEX(dparent->d_inode);
1432                         if (err) {
1433                                 CERROR("unlink(%.*s) in error path: %d\n",
1434                                        dchild->d_name.len, dchild->d_name.name,
1435                                        err);
1436                         }
1437                 } else if (created) {
1438                         mds_lock_new_child(obd, dchild->d_inode, NULL);
1439                         /* save uid/gid for quota acquire/release */
1440                         qpids[USRQUOTA] = dparent->d_inode->i_uid;
1441                         qpids[GRPQUOTA] = dparent->d_inode->i_gid;
1442                 }
1443         case 1:
1444                 if (dchild) {
1445                         l_dput(dchild);
1446                         /* It is safe to leave IT_OPEN_LOCK set, if rc is not 0,
1447                          * mds_intent_policy won't try to return any locks */
1448                         if (rc && child_lockh->cookie)
1449                                 ldlm_lock_decref(child_lockh, child_mode);
1450                 }
1451                 if (dparent == NULL)
1452                         break;
1453
1454                 l_dput(dparent);
1455                 if (rc || !created)
1456                         ldlm_lock_decref(&parent_lockh, parent_mode);
1457                 else
1458                         ptlrpc_save_lock(req, &parent_lockh, parent_mode);
1459         }
1460         /* trigger dqacq on the owner of child and parent */
1461         lquota_adjust(mds_quota_interface_ref, obd, qcids, qpids, rc,
1462                       FSFILT_OP_CREATE);
1463
1464         RETURN(rc);
1465 }
1466
1467 /* Close a "file descriptor" and possibly unlink an orphan from the
1468  * PENDING directory.  Caller must hold child->i_mutex, this drops it.
1469  *
1470  * If we are being called from mds_disconnect() because the client has
1471  * disappeared, then req == NULL and we do not update last_rcvd because
1472  * there is nothing that could be recovered by the client at this stage
1473  * (it will not even _have_ an entry in last_rcvd anymore). */
1474 int mds_mfd_close(struct ptlrpc_request *req, int offset,
1475                   struct obd_device *obd, struct mds_file_data *mfd,
1476                   int unlink_orphan, struct lov_mds_md *lmm, int lmm_size,
1477                   struct llog_cookie *logcookies, int cookies_size,
1478                   __u64 *valid)
1479 {
1480         struct inode *inode = mfd->mfd_dentry->d_inode;
1481         char fidname[LL_FID_NAMELEN];
1482         int last_orphan, fidlen, rc = 0, cleanup_phase = 0;
1483         struct dentry *pending_child = NULL;
1484         struct mds_obd *mds = &obd->u.mds;
1485         struct inode *pending_dir = mds->mds_pending_dir->d_inode;
1486         void *handle = NULL;
1487         struct mds_body *request_body = NULL, *reply_body = NULL;
1488         struct lvfs_dentry_params dp = LVFS_DENTRY_PARAMS_INIT;
1489         struct iattr iattr = { 0 };
1490         ENTRY;
1491
1492         if (req && req->rq_reqmsg != NULL)
1493                 request_body = lustre_msg_buf(req->rq_reqmsg, offset,
1494                                               sizeof(*request_body));
1495         if (req && req->rq_repmsg != NULL)
1496                 reply_body = lustre_msg_buf(req->rq_repmsg, REPLY_REC_OFF,
1497                                             sizeof(*reply_body));
1498
1499         fidlen = ll_fid2str(fidname, inode->i_ino, inode->i_generation);
1500
1501         CDEBUG(D_INODE, "inode %p ino %s nlink %d orphan %d\n", inode, fidname,
1502                inode->i_nlink, mds_orphan_open_count(inode));
1503
1504         last_orphan = (mds_orphan_open_dec_test(inode) &&
1505                        mds_inode_is_orphan(inode) &&
1506                        !obd->obd_recovering);
1507
1508         /* this is half of the actual "close" */
1509         if (mfd->mfd_mode & FMODE_WRITE) {
1510                 rc = mds_put_write_access(mds, inode, request_body,
1511                                           last_orphan && unlink_orphan);
1512         } else if (mfd->mfd_mode & MDS_FMODE_EXEC) {
1513                 mds_allow_write_access(inode);
1514         }
1515         /* here writecount change also needs protection from orphan write sem.
1516          * so drop orphan write sem after mds_put_write_access, bz 12888. */
1517         MDS_UP_WRITE_ORPHAN_SEM(inode);
1518
1519         if (last_orphan && unlink_orphan) {
1520                 int stripe_count = 0;
1521                 /* mds_put_write_access must have succeeded */
1522                 LASSERTF(rc == 0, "inode %lu/%u: rc %d",
1523                          inode->i_ino, inode->i_generation, rc);
1524
1525                 CDEBUG(D_INODE, "destroying orphan object %s\n", fidname);
1526
1527                 if ((S_ISREG(inode->i_mode) && inode->i_nlink != 1) ||
1528                     (S_ISDIR(inode->i_mode) && inode->i_nlink > 2))
1529                         CERROR("found \"orphan\" %s %s with link count %d\n",
1530                                S_ISREG(inode->i_mode) ? "file" : "dir",
1531                                fidname, inode->i_nlink);
1532
1533                 /* Sadly, there is no easy way to save pending_child from
1534                  * mds_reint_unlink() into mfd, so we need to re-lookup,
1535                  * but normally it will still be in the dcache. */
1536                 LOCK_INODE_MUTEX(pending_dir);
1537                 cleanup_phase = 1; /* UNLOCK_INODE_MUTEX(pending_dir) when finished */
1538                 pending_child = lookup_one_len(fidname, mds->mds_pending_dir,
1539                                                fidlen);
1540                 if (IS_ERR(pending_child))
1541                         GOTO(cleanup, rc = PTR_ERR(pending_child));
1542                 LASSERT(pending_child->d_inode != NULL);
1543
1544                 cleanup_phase = 2; /* dput(pending_child) when finished */
1545                 if (S_ISDIR(pending_child->d_inode->i_mode)) {
1546                         rc = ll_vfs_rmdir(pending_dir, pending_child,
1547                                           mds->mds_vfsmnt);
1548                         if (rc)
1549                                 CERROR("error unlinking orphan dir %s: rc %d\n",
1550                                        fidname,rc);
1551                         goto out;
1552                 }
1553
1554                 if (lmm != NULL) {
1555                         stripe_count = le32_to_cpu(lmm->lmm_stripe_count);
1556                 }
1557
1558                 handle = fsfilt_start_log(obd, pending_dir, FSFILT_OP_UNLINK,
1559                                           NULL, stripe_count);
1560                 if (IS_ERR(handle)) {
1561                         rc = PTR_ERR(handle);
1562                         handle = NULL;
1563                         GOTO(cleanup, rc);
1564                 }
1565                 if (lmm != NULL && (*valid & OBD_MD_FLEASIZE) &&
1566                     mds_log_op_unlink(obd, lmm, lmm_size,
1567                                       logcookies, cookies_size) > 0) {
1568                         *valid |= OBD_MD_FLCOOKIE;
1569                 }
1570
1571                 dp.ldp_inum = 0;
1572                 dp.ldp_ptr = req;
1573                 pending_child->d_fsdata = (void *) &dp;
1574                 rc = ll_vfs_unlink(pending_dir, pending_child, mds->mds_vfsmnt);
1575                 if (rc)
1576                         CERROR("error unlinking orphan %s: rc %d\n",fidname,rc);
1577
1578                 goto out; /* Don't bother updating attrs on unlinked inode */
1579         }
1580
1581         if (request_body != NULL) {
1582                 /* Only start a transaction to write out only the atime if it
1583                  * is more out-of-date than the specified limit.  If we are
1584                  * already going to write out the atime then do it anyway. */
1585                 if ((request_body->valid & OBD_MD_FLATIME) &&
1586                     ((request_body->atime > LTIME_S(inode->i_atime) +
1587                       mds->mds_atime_diff) )) {
1588                         LTIME_S(iattr.ia_atime) = request_body->atime;
1589                         iattr.ia_valid |= ATTR_ATIME;
1590                 }
1591
1592                 /* Store a rough estimate of the file size on the MDS for
1593                  * tools like e2scan and HSM that are just using this for *
1594                  * rough decision making and will get the proper size later.
1595                  * * This is NOT guaranteed to be correct with multiple *
1596                  * writers, but is only needed until SOM is done. b=11063 */
1597                 if (S_ISREG(inode->i_mode) &&
1598                     (request_body->valid & OBD_MD_FLSIZE) &&
1599                     (iattr.ia_valid != 0)) {
1600                         iattr.ia_size = request_body->size;
1601                         iattr.ia_valid |= ATTR_SIZE;
1602                 }
1603         }
1604
1605         if (iattr.ia_valid != 0) {
1606                 handle = fsfilt_start(obd, inode, FSFILT_OP_SETATTR, NULL);
1607                 if (IS_ERR(handle)) {
1608                         rc = PTR_ERR(handle);
1609                         handle = NULL;
1610                         GOTO(cleanup, rc);
1611                 }
1612                 rc = fsfilt_setattr(obd, mfd->mfd_dentry, handle, &iattr, 0);
1613                 if (rc)
1614                         CERROR("error in setattr(%s): rc %d\n", fidname, rc);
1615         }
1616 out:
1617         /* If other clients have this file open for write, rc will be > 0 */
1618         if (rc > 0)
1619                 rc = 0;
1620
1621  cleanup:
1622         l_dput(mfd->mfd_dentry);
1623         mds_mfd_put(mfd);
1624         if (req != NULL && reply_body != NULL) {
1625                 rc = mds_finish_transno(mds, NULL, handle, req, rc, 0, 0);
1626         } else if (handle) {
1627                 int err = fsfilt_commit(obd, pending_dir, handle, 0);
1628                 if (err) {
1629                         CERROR("error committing close: %d\n", err);
1630                         if (!rc)
1631                                 rc = err;
1632                 }
1633         }
1634
1635         switch (cleanup_phase) {
1636         case 2:
1637                 dput(pending_child);
1638         case 1:
1639                 UNLOCK_INODE_MUTEX(pending_dir);
1640         }
1641         RETURN(rc);
1642 }
1643
1644 int mds_close(struct ptlrpc_request *req, int offset)
1645 {
1646         struct mds_export_data *med = &req->rq_export->exp_mds_data;
1647         struct obd_device *obd = req->rq_export->exp_obd;
1648         struct mds_body *body;
1649         struct mds_file_data *mfd;
1650         struct lvfs_run_ctxt saved;
1651         struct inode *inode;
1652         int rc, repsize[4] = { sizeof(struct ptlrpc_body),
1653                                sizeof(struct mds_body),
1654                                obd->u.mds.mds_max_mdsize,
1655                                obd->u.mds.mds_max_cookiesize };
1656         struct mds_body *reply_body;
1657         struct lov_mds_md *lmm;
1658         int lmm_size;
1659         struct llog_cookie *logcookies;
1660         int cookies_size;
1661         ENTRY;
1662
1663         body = lustre_swab_reqbuf(req, offset, sizeof(*body),
1664                                   lustre_swab_mds_body);
1665         if (body == NULL) {
1666                 CERROR("Can't unpack body\n");
1667                 req->rq_status = -EFAULT;
1668                 GOTO(cleanup, rc = -EFAULT);
1669         }
1670         /*XXX need indicase - close is need to return LOV EA */
1671         body->valid |= OBD_MD_FLEASIZE;
1672
1673         rc = lustre_pack_reply(req, 4, repsize, NULL);
1674         if (rc)
1675                 req->rq_status = rc;
1676                 /* continue on to drop local open even if we can't send reply */
1677         else
1678                 MDS_CHECK_RESENT(req, mds_reconstruct_generic(req));
1679
1680         CDEBUG(D_INODE, "close req->rep_len %d mdsize %d cookiesize %d\n",
1681                req->rq_replen,
1682                obd->u.mds.mds_max_mdsize, obd->u.mds.mds_max_cookiesize);
1683         mds_counter_incr(req->rq_export, LPROC_MDS_CLOSE);
1684
1685         if (body->flags & MDS_BFLAG_UNCOMMITTED_WRITES)
1686                 /* do some stuff */ ;
1687
1688         spin_lock(&med->med_open_lock);
1689         mfd = mds_handle2mfd(&body->handle);
1690         if (mfd == NULL) {
1691                 spin_unlock(&med->med_open_lock);
1692                 DEBUG_REQ(D_ERROR, req, "no handle for file close ino "LPD64
1693                           ": cookie "LPX64, body->fid1.id, body->handle.cookie);
1694                 req->rq_status = -ESTALE;
1695                 GOTO(cleanup, rc = -ESTALE);
1696         }
1697         /* Remove mfd handle so it can't be found again.  We consume mfd_list
1698          * reference here, but still have mds_handle2mfd ref until mfd_close. */
1699         mds_mfd_unlink(mfd, 1);
1700         spin_unlock(&med->med_open_lock);
1701
1702         inode = mfd->mfd_dentry->d_inode;
1703         /* child orphan sem protects orphan_dec_test && is_orphan race */
1704         MDS_DOWN_WRITE_ORPHAN_SEM(inode); /* mds_mfd_close drops this */
1705         if (!obd->obd_recovering &&
1706             mds_inode_is_orphan(inode) && mds_orphan_open_count(inode) == 1) {
1707                 body = lustre_msg_buf(req->rq_repmsg, REPLY_REC_OFF,
1708                                       sizeof(*body));
1709                 LASSERT(body != NULL);
1710
1711                 mds_pack_inode2body(body, inode);
1712                 mds_pack_md(obd, req->rq_repmsg, REPLY_REC_OFF + 1, body, inode,
1713                             MDS_PACK_MD_LOCK, 0,
1714                             req->rq_export->exp_connect_flags);
1715         }
1716
1717         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
1718         reply_body = lustre_msg_buf(req->rq_repmsg, REPLY_REC_OFF, sizeof(*reply_body));
1719         lmm = lustre_msg_buf(req->rq_repmsg, REPLY_REC_OFF + 1, 0);
1720         lmm_size = lustre_msg_buflen(req->rq_repmsg, REPLY_REC_OFF + 1),
1721         logcookies = lustre_msg_buf(req->rq_repmsg, REPLY_REC_OFF + 2, 0);
1722         cookies_size = lustre_msg_buflen(req->rq_repmsg, REPLY_REC_OFF + 2);
1723         req->rq_status = mds_mfd_close(req, offset, obd, mfd, 1,
1724                                        lmm, lmm_size, logcookies, cookies_size,
1725                                        &reply_body->valid);
1726         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
1727
1728 cleanup:
1729         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_CLOSE_PACK)) {
1730                 CERROR("test case OBD_FAIL_MDS_CLOSE_PACK\n");
1731                 req->rq_status = -ENOMEM;
1732                 RETURN(-ENOMEM);
1733         }
1734
1735         RETURN(rc);
1736 }
1737
1738 int mds_done_writing(struct ptlrpc_request *req, int offset)
1739 {
1740         struct mds_body *body;
1741         int rc, size[2] = { sizeof(struct ptlrpc_body),
1742                             sizeof(struct mds_body) };
1743         ENTRY;
1744
1745         MDS_CHECK_RESENT(req, mds_reconstruct_generic(req));
1746
1747         body = lustre_swab_reqbuf(req, offset, sizeof(*body),
1748                                   lustre_swab_mds_body);
1749         if (body == NULL) {
1750                 CERROR("Can't unpack body\n");
1751                 req->rq_status = -EFAULT;
1752                 RETURN(-EFAULT);
1753         }
1754
1755         rc = lustre_pack_reply(req, 2, size, NULL);
1756         if (rc)
1757                 req->rq_status = rc;
1758
1759         RETURN(0);
1760 }