Whamcloud - gitweb
fixes:
[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/obd_lov.h>
44 #include <linux/lustre_fsfilt.h>
45 #include <linux/lprocfs_status.h>
46 #include <linux/lustre_gs.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 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 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 /* Caller must hold mds->mds_epoch_sem */
116 static int mds_alloc_filterdata(struct inode *inode)
117 {
118         LASSERT(LUSTRE_FILTERDATA(inode) == NULL);
119         OBD_ALLOC(LUSTRE_FILTERDATA(inode), sizeof(struct mds_filter_data));
120         if (LUSTRE_FILTERDATA(inode) == NULL)
121                 return -ENOMEM;
122         LASSERT(igrab(inode) == inode);
123         return 0;
124 }
125
126 /* Caller must hold mds->mds_epoch_sem */
127 static void mds_free_filterdata(struct inode *inode)
128 {
129         LASSERT(LUSTRE_FILTERDATA(inode) != NULL);
130         OBD_FREE(LUSTRE_FILTERDATA(inode), sizeof(struct mds_filter_data));
131         LUSTRE_FILTERDATA(inode) = NULL;
132         iput(inode);
133 }
134
135 /* Write access to a file: executors cause a negative count,
136  * writers a positive count.  The semaphore is needed to perform
137  * a check for the sign and then increment or decrement atomically.
138  *
139  * This code is closely tied to the allocation of the d_fsdata and the
140  * MDS epoch, so we use the same semaphore for the whole lot.
141  *
142  * We could use a different semaphore for each file, if it ever shows
143  * up in a profile, which it won't.
144  *
145  * epoch argument is nonzero during recovery */
146 static int mds_get_write_access(struct mds_obd *mds, struct inode *inode,
147                                 __u64 epoch)
148 {
149         int rc = 0;
150
151         down(&mds->mds_epoch_sem);
152
153         if (atomic_read(&inode->i_writecount) < 0) {
154                 up(&mds->mds_epoch_sem);
155                 RETURN(-ETXTBSY);
156         }
157
158         if (MDS_FILTERDATA(inode) && MDS_FILTERDATA(inode)->io_epoch != 0) {
159                 CDEBUG(D_INODE, "continuing MDS epoch "LPU64" for ino %lu/%u\n",
160                        MDS_FILTERDATA(inode)->io_epoch, inode->i_ino,
161                        inode->i_generation);
162                 goto out;
163         }
164
165         if (MDS_FILTERDATA(inode) == NULL)
166                 mds_alloc_filterdata(inode);
167         if (MDS_FILTERDATA(inode) == NULL) {
168                 rc = -ENOMEM;
169                 goto out;
170         }
171         if (epoch > mds->mds_io_epoch) {
172                 mds->mds_io_epoch = epoch;
173                 CDEBUG(D_INODE, "repair MDS epoch "LPU64" for ino %lu/%u\n",
174                        mds->mds_io_epoch, inode->i_ino, inode->i_generation);
175         } else {
176                 mds->mds_io_epoch++;
177                 CDEBUG(D_INODE, "starting MDS epoch "LPU64" for ino %lu/%u\n",
178                        mds->mds_io_epoch, inode->i_ino, inode->i_generation);
179         }
180         MDS_FILTERDATA(inode)->io_epoch = mds->mds_io_epoch;
181  out:
182         if (rc == 0)
183                 atomic_inc(&inode->i_writecount);
184         up(&mds->mds_epoch_sem);
185         return rc;
186 }
187
188 /* Returns EAGAIN if the client needs to get size and/or cookies and close
189  * again -- which is never true if the file is about to be unlinked.  Otherwise
190  * returns the number of remaining writers. */
191 static int mds_put_write_access(struct mds_obd *mds, struct inode *inode,
192                                 struct mds_body *body, int unlinking)
193 {
194         int rc = 0;
195         ENTRY;
196
197         down(&mds->mds_epoch_sem);
198         atomic_dec(&inode->i_writecount);
199         rc = atomic_read(&inode->i_writecount);
200         if (rc > 0)
201                 GOTO(out, rc);
202 #if 0
203         if (!unlinking && !(body->valid & OBD_MD_FLSIZE))
204                 GOTO(out, rc = EAGAIN);
205 #endif
206         mds_free_filterdata(inode);
207  out:
208         up(&mds->mds_epoch_sem);
209         return rc;
210 }
211
212 static int mds_deny_write_access(struct mds_obd *mds, struct inode *inode)
213 {
214         ENTRY;
215         down(&mds->mds_epoch_sem);
216         if (atomic_read(&inode->i_writecount) > 0) {
217                 up(&mds->mds_epoch_sem);
218                 RETURN(-ETXTBSY);
219         }
220         atomic_dec(&inode->i_writecount);
221         up(&mds->mds_epoch_sem);
222         RETURN(0);
223 }
224
225 static void mds_allow_write_access(struct inode *inode)
226 {
227         ENTRY;
228         atomic_inc(&inode->i_writecount);
229 }
230
231 int mds_query_write_access(struct inode *inode)
232 {
233         ENTRY;
234         RETURN(atomic_read(&inode->i_writecount));
235 }
236
237 /* This replaces the VFS dentry_open, it manages mfd and writecount */
238 static struct mds_file_data *mds_dentry_open(struct dentry *dentry,
239                                              struct vfsmount *mnt, int flags,
240                                              struct ptlrpc_request *req,
241                                              struct mds_update_record *rec)
242 {
243         struct mds_export_data *med = &req->rq_export->exp_mds_data;
244         struct mds_obd *mds = mds_req2mds(req);
245         struct mds_file_data *mfd;
246         struct mds_body *body;
247         int rc = 0;
248         ENTRY;
249
250         mfd = mds_mfd_new();
251         if (mfd == NULL) {
252                 CERROR("mds: out of memory\n");
253                 GOTO(cleanup_dentry, rc = -ENOMEM);
254         }
255
256         body = lustre_msg_buf(req->rq_repmsg, 1, sizeof (*body));
257
258         if (flags & FMODE_WRITE) {
259                 /* FIXME: in recovery, need to pass old epoch here */
260                 rc = mds_get_write_access(mds, dentry->d_inode, rec->ur_ioepoch);
261                 if (rc)
262                         GOTO(cleanup_mfd, rc);
263                 body->io_epoch = MDS_FILTERDATA(dentry->d_inode)->io_epoch;
264         } else if (flags & FMODE_EXEC) {
265                 rc = mds_deny_write_access(mds, dentry->d_inode);
266                 if (rc)
267                         GOTO(cleanup_mfd, rc);
268         }
269
270         dget(dentry);
271
272         /* FIXME: invalidate update locks when first open for write comes in */
273
274         /* mark the file as open to handle open-unlink. */
275         DOWN_WRITE_I_ALLOC_SEM(dentry->d_inode);
276         mds_orphan_open_inc(dentry->d_inode);
277         UP_WRITE_I_ALLOC_SEM(dentry->d_inode);
278
279         mfd->mfd_mode = flags;
280         mfd->mfd_dentry = dentry;
281         mfd->mfd_xid = req->rq_xid;
282
283         spin_lock(&med->med_open_lock);
284         list_add(&mfd->mfd_list, &med->med_open_head);
285         spin_unlock(&med->med_open_lock);
286         mds_mfd_put(mfd);
287
288         body->handle.cookie = mfd->mfd_handle.h_cookie;
289         RETURN(mfd);
290 cleanup_mfd:
291         mds_mfd_put(mfd);
292         mds_mfd_destroy(mfd);
293 cleanup_dentry:
294         return ERR_PTR(rc);
295 }
296
297 static inline void
298 mds_objids_from_lmm(obd_id *ids, struct lov_mds_md *lmm,
299                     struct lov_desc *desc)
300 {
301         int i;
302         
303         for (i = 0; i < le32_to_cpu(lmm->lmm_stripe_count); i++) {
304                 ids[le32_to_cpu(lmm->lmm_objects[i].l_ost_idx)] =
305                         le64_to_cpu(lmm->lmm_objects[i].l_object_id);
306         }
307 }
308
309 /* must be called with i_sem held */
310 int
311 mds_create_objects(struct obd_device *obd, struct ptlrpc_request *req,
312                    int offset, struct mds_update_record *rec,
313                    struct dentry *dchild, void **handle,
314                    obd_id **ids)
315 {
316         struct inode *inode = dchild->d_inode;
317         struct mds_obd *mds = &obd->u.mds;
318         struct obd_trans_info oti = { 0 };
319         struct lov_stripe_md *lsm = NULL;
320         struct lov_mds_md *lmm = NULL;
321         int rc, lmm_bufsize, lmm_size;
322         struct obdo *oa = NULL;
323         struct mds_body *body;
324         void *lmm_buf;
325         ENTRY;
326
327         if (rec->ur_flags & MDS_OPEN_DELAY_CREATE ||
328             !(rec->ur_flags & FMODE_WRITE))
329                 RETURN(0);
330
331         body = lustre_msg_buf(req->rq_repmsg, 1, sizeof(*body));
332
333         if (!S_ISREG(inode->i_mode))
334                 RETURN(0);
335         if (body->valid & OBD_MD_FLEASIZE)
336                 RETURN(0);
337
338         OBD_ALLOC(*ids, mds->mds_dt_desc.ld_tgt_count * sizeof(**ids));
339         if (*ids == NULL)
340                 RETURN(-ENOMEM);
341         oti.oti_objid = *ids;
342                 
343         /* replay case */
344         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY) {
345                 LASSERT(id_ino(rec->ur_id2));
346                 body->valid |= OBD_MD_FLBLKSZ | OBD_MD_FLEASIZE;
347                 lmm_size = rec->ur_eadatalen;
348                 lmm = rec->ur_eadata;
349                 LASSERT(lmm);
350
351                 if (*handle == NULL)
352                         *handle = fsfilt_start(obd, inode, FSFILT_OP_CREATE, NULL);
353                 if (IS_ERR(*handle)) {
354                         rc = PTR_ERR(*handle);
355                         *handle = NULL;
356                         RETURN(rc);
357                 }
358
359                 mds_objids_from_lmm(*ids, lmm, &mds->mds_dt_desc);
360
361                 lmm_buf = lustre_msg_buf(req->rq_repmsg, offset, 0);
362                 lmm_bufsize = req->rq_repmsg->buflens[offset];
363                 LASSERT(lmm_buf != NULL);
364                 LASSERT(lmm_bufsize >= lmm_size);
365
366                 memcpy(lmm_buf, lmm, lmm_size);
367                 rc = fsfilt_set_md(obd, inode, *handle, lmm,
368                                    lmm_size, EA_LOV);
369                 if (rc)
370                         CERROR("open replay failed to set md:%d\n", rc);
371                 RETURN(0);
372         }
373
374         if (OBD_FAIL_CHECK_ONCE(OBD_FAIL_MDS_ALLOC_OBDO))
375                 GOTO(out_ids, rc = -ENOMEM);
376
377         oa = obdo_alloc();
378         if (oa == NULL)
379                 RETURN(-ENOMEM);
380         oa->o_mode = S_IFREG | 0600;
381         oa->o_id = inode->i_ino;
382         oa->o_gr = FILTER_GROUP_FIRST_MDS + mds->mds_num;
383         oa->o_generation = inode->i_generation;
384         oa->o_uid = 0; /* must have 0 uid / gid on OST */
385         oa->o_gid = 0;
386         oa->o_valid = OBD_MD_FLID | OBD_MD_FLTYPE | OBD_MD_FLMODE |
387                         OBD_MD_FLUID | OBD_MD_FLGID | OBD_MD_FLGROUP;
388         oa->o_size = 0;
389
390         obdo_from_inode(oa, inode, OBD_MD_FLTYPE | OBD_MD_FLATIME |
391                         OBD_MD_FLMTIME | OBD_MD_FLCTIME);
392
393         if (!(rec->ur_flags & MDS_OPEN_HAS_OBJS)) {
394                 /* check if things like lfs setstripe are sending us the ea */
395                 if (rec->ur_flags & MDS_OPEN_HAS_EA) {
396                         rc = obd_iocontrol(OBD_IOC_LOV_SETSTRIPE,
397                                            mds->mds_dt_exp,
398                                            0, &lsm, rec->ur_eadata);
399                         if (rc)
400                                 GOTO(out_oa, rc);
401                 } else {
402                         OBD_ALLOC(lmm, mds->mds_max_mdsize);
403                         if (lmm == NULL)
404                                 GOTO(out_oa, rc = -ENOMEM);
405
406                         lmm_size = mds->mds_max_mdsize;
407                         rc = mds_get_md(obd, dchild->d_parent->d_inode,
408                                         lmm, &lmm_size, 1, 0);
409                         if (rc > 0)
410                                 rc = obd_iocontrol(OBD_IOC_LOV_SETSTRIPE,
411                                                    mds->mds_dt_exp,
412                                                    0, &lsm, lmm);
413                         OBD_FREE(lmm, mds->mds_max_mdsize);
414                         if (rc)
415                                 GOTO(out_oa, rc);
416                 }
417
418                 LASSERT(oa->o_gr >= FILTER_GROUP_FIRST_MDS);
419                 oti.oti_flags |= OBD_MODE_CROW;
420                 rc = obd_create(mds->mds_dt_exp, oa, NULL, 0, &lsm, &oti);
421
422                 if (rc) {
423                         CDEBUG((rc == -ENOSPC ? D_INODE : D_ERROR),
424                                "error creating objects for "
425                                "inode %lu: rc = %d\n",
426                                inode->i_ino, rc);
427                         if (rc > 0) {
428                                 CERROR("obd_create returned invalid "
429                                        "rc %d\n", rc);
430                                 rc = -EIO;
431                         }
432                         GOTO(out_oa, rc);
433                 }
434         } else {
435                 rc = obd_iocontrol(OBD_IOC_LOV_SETEA, mds->mds_dt_exp,
436                                    0, &lsm, rec->ur_eadata);
437                 if (rc)
438                         GOTO(out_oa, rc);
439
440                 lsm->lsm_object_id = oa->o_id;
441                 lsm->lsm_object_gr = oa->o_gr;
442         }
443         if (inode->i_size) {
444                 oa->o_size = inode->i_size;
445                 obdo_from_inode(oa, inode, OBD_MD_FLTYPE | OBD_MD_FLATIME |
446                                 OBD_MD_FLMTIME | OBD_MD_FLCTIME | OBD_MD_FLSIZE);
447                 
448                 /* pack lustre id to oss */
449                 *(obdo_id(oa)) = body->id1;
450                 oa->o_valid |= OBD_MD_FLIFID;
451
452                 rc = obd_setattr(mds->mds_dt_exp, oa, lsm, &oti, NULL);
453                 if (rc) {
454                         CERROR("error setting attrs for inode %lu: rc %d\n",
455                                inode->i_ino, rc);
456                         if (rc > 0) {
457                                 CERROR("obd_setattr returned bad rc %d\n", rc);
458                                 rc = -EIO;
459                         }
460                         GOTO(out_oa, rc);
461                 }
462         }
463
464         body->valid |= OBD_MD_FLBLKSZ | OBD_MD_FLEASIZE;
465         obdo_refresh_inode(inode, oa, OBD_MD_FLBLKSZ);
466
467         LASSERT(lsm && lsm->lsm_object_id);
468         lmm = NULL;
469         rc = obd_packmd(mds->mds_dt_exp, &lmm, lsm);
470         if (!id_ino(rec->ur_id2))
471                 obd_free_memmd(mds->mds_dt_exp, &lsm);
472         if (rc < 0) {
473                 CERROR("cannot pack lsm, err = %d\n", rc);
474                 GOTO(out_oa, rc);
475         }
476
477         lmm_size = rc;
478         body->eadatasize = rc;
479
480         if (*handle == NULL)
481                 *handle = fsfilt_start(obd, inode, FSFILT_OP_CREATE, NULL);
482         if (IS_ERR(*handle)) {
483                 rc = PTR_ERR(*handle);
484                 *handle = NULL;
485                 GOTO(out_oa, rc);
486         }
487
488         rc = fsfilt_set_md(obd, inode, *handle, lmm,
489                            lmm_size, EA_LOV);
490         
491         lmm_buf = lustre_msg_buf(req->rq_repmsg, offset, 0);
492         lmm_bufsize = req->rq_repmsg->buflens[offset];
493         LASSERT(lmm_buf);
494         LASSERT(lmm_bufsize >= lmm_size);
495
496         memcpy(lmm_buf, lmm, lmm_size);
497         obd_free_diskmd(mds->mds_dt_exp, &lmm);
498 out_oa:
499         oti_free_cookies(&oti);
500         obdo_free(oa);
501 out_ids:
502         if (rc) {
503                 OBD_FREE(*ids, mds->mds_dt_desc.ld_tgt_count * sizeof(**ids));
504                 *ids = NULL;
505         }
506         if (lsm)
507                 obd_free_memmd(mds->mds_dt_exp, &lsm);
508         RETURN(rc);
509 }
510
511 int
512 mds_destroy_object(struct obd_device *obd,
513                    struct inode *inode, int async)
514 {
515         struct mds_obd *mds = &obd->u.mds;
516         struct lov_mds_md *lmm = NULL;
517         int rc, lmm_size;
518         ENTRY;
519
520         LASSERT(inode != NULL);
521
522         if (inode->i_nlink != 0) {
523                 CDEBUG(D_INODE, "attempt to destroy OSS object when "
524                        "i_nlink == %d\n", (int)inode->i_nlink);
525                 RETURN(0);
526         }
527         
528         OBD_ALLOC(lmm, mds->mds_max_mdsize);
529         if (lmm == NULL)
530                 RETURN(-ENOMEM);
531
532         lmm_size = mds->mds_max_mdsize;
533         rc = mds_get_md(obd, inode, lmm, &lmm_size, 1, 0);
534         if (rc < 0) {
535                 CERROR("no stripe info for %lu/%lu inode\n",
536                        (unsigned long)inode->i_ino,
537                        (unsigned long)inode->i_generation);
538                 GOTO(out_free_lmm, rc);
539         }
540
541         if (rc > 0) {
542                 /* asynchronously unlink objecect on OSS */
543                 rc = mds_unlink_object(mds, inode, lmm, lmm_size,
544                                        NULL, 0, async);
545                 if (rc) {
546                         CERROR("error unlinking object on OSS, "
547                                "err %d\n", rc);
548                         GOTO(out_free_lmm, rc);
549                 }
550         } else {
551                 CDEBUG(D_INODE, "no stripping info found for inode "
552                       "%lu/%lu\n", (unsigned long)inode->i_ino, 
553                       (unsigned long)inode->i_generation);
554         }
555         EXIT;
556 out_free_lmm:
557         OBD_FREE(lmm, mds->mds_max_mdsize);
558         return rc;
559 }
560
561 static void reconstruct_open(struct mds_update_record *rec, int offset,
562                              struct ptlrpc_request *req,
563                              struct lustre_handle *child_lockh)
564 {
565         struct mds_export_data *med = &req->rq_export->exp_mds_data;
566         struct mds_client_data *mcd = med->med_mcd;
567         struct mds_obd *mds = mds_req2mds(req);
568         struct mds_file_data *mfd;
569         struct obd_device *obd = req->rq_export->exp_obd;
570         struct dentry *parent = NULL, *dchild;
571         struct ldlm_reply *rep;
572         struct mds_body *body;
573         struct list_head *t;
574         int put_child = 1;
575         int rc;
576         ENTRY;
577
578         LASSERT(offset == 3); /* only called via intent */
579         rep = lustre_msg_buf(req->rq_repmsg, 0, sizeof (*rep));
580         body = lustre_msg_buf(req->rq_repmsg, 1, sizeof (*body));
581
582         /* copy rc, transno and disp; steal locks */
583         mds_req_from_mcd(req, mcd);
584         intent_set_disposition(rep, mcd->mcd_last_data);
585
586         /* Only replay if create or open actually happened. */
587         if (!intent_disposition(rep, DISP_OPEN_CREATE | DISP_OPEN_OPEN) ) {
588                 EXIT;
589                 return; /* error looking up parent or child */
590         }
591
592         /* first, we try to open the file by fid. by the time of this
593          * request, inode can be an orphan and parent can disappear */
594         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY) {
595                 CDEBUG(D_HA, "OPEN by fid "DLID4" (RESENT|REPLAY)\n",
596                        OLID4(rec->ur_id2));
597                 dchild = mds_id2dentry(obd, rec->ur_id2, NULL);
598         } else if (rec->ur_namelen == 1) {
599                 CDEBUG(D_HA, "OPEN by fid "DLID4" (RESENT)\n",
600                        OLID4(rec->ur_id1));
601                 dchild = mds_id2dentry(obd, rec->ur_id1, NULL);
602         } else {
603                 parent = mds_id2dentry(obd, rec->ur_id1, NULL);
604                 LASSERTF(!IS_ERR(parent), "lid "DLID4" rc %ld\n", 
605                                 OLID4(rec->ur_id1), PTR_ERR(parent));
606                 dchild = ll_lookup_one_len(rec->ur_name, parent, 
607                                 rec->ur_namelen - 1);
608                 LASSERTF(!IS_ERR(dchild), "parent "DLID4" child %s rc %ld\n",
609                                 OLID4(rec->ur_id1), rec->ur_name, PTR_ERR(dchild));
610         }
611
612         if (!dchild->d_inode)
613                 GOTO(out_dput, 0); /* child not present to open */
614
615         /* At this point, we know we have a child. We'll send
616          * it back _unless_ it not created and open failed.  */
617         if (intent_disposition(rep, DISP_OPEN_OPEN) &&
618             !intent_disposition(rep, DISP_OPEN_CREATE) &&
619             req->rq_status)
620                 GOTO(out_dput, 0);
621
622         /* get lock (write for O_CREAT, read otherwise) */
623         mds_pack_inode2body(obd, body, dchild->d_inode, 1);
624         if (S_ISREG(dchild->d_inode->i_mode)) {
625                 rc = mds_pack_md(obd, req->rq_repmsg, 2, body,
626                                  dchild->d_inode, 1, 0);
627
628                 if (rc)
629                         LASSERT(rc == req->rq_status);
630
631                 /* If we have LOV EA data, the OST holds size, mtime */
632                 if (!(body->valid & OBD_MD_FLEASIZE))
633                         body->valid |= (OBD_MD_FLSIZE | OBD_MD_FLBLOCKS |
634                                         OBD_MD_FLATIME | OBD_MD_FLMTIME);
635         }
636         
637         /* If we have -EEXIST as the status, and we were asked to create
638          * exclusively, we can tell we failed because the file already existed.
639          */
640         if (req->rq_status == -EEXIST &&
641             ((rec->ur_flags & (MDS_OPEN_CREAT | MDS_OPEN_EXCL)) ==
642              (MDS_OPEN_CREAT | MDS_OPEN_EXCL))) {
643                 GOTO(out_dput, 0);
644         }
645
646         /* If we didn't get as far as trying to open, then some locking thing
647          * probably went wrong, and we'll just bail here.
648          */
649         if (!intent_disposition(rep, DISP_OPEN_OPEN))
650                 GOTO(out_dput, 0);
651
652         /* If we failed, then we must have failed opening, so don't look for
653          * file descriptor or anything, just give the client the bad news.
654          */
655         if (req->rq_status)
656                 GOTO(out_dput, 0);
657
658         mfd = NULL;
659         list_for_each(t, &med->med_open_head) {
660                 mfd = list_entry(t, struct mds_file_data, mfd_list);
661                 if (mfd->mfd_xid == req->rq_xid)
662                         break;
663                 mfd = NULL;
664         }
665
666         /* #warning "XXX fixme" bug 2991 */
667         /* Here it used to LASSERT(mfd) if exp_outstanding_reply != NULL.
668          * Now that exp_outstanding_reply is a list, it's just using mfd != NULL
669          * to detect a re-open */
670         if (mfd == NULL) {
671                 mntget(mds->mds_vfsmnt);
672                 CERROR("Re-opened file \n");
673                 mfd = mds_dentry_open(dchild, mds->mds_vfsmnt,
674                                       rec->ur_flags & ~MDS_OPEN_TRUNC, req, rec);
675                 if (!mfd) {
676                         CERROR("mds: out of memory\n");
677                         GOTO(out_dput, req->rq_status = -ENOMEM);
678                 }
679                 put_child = 0;
680         } else {
681                 body->handle.cookie = mfd->mfd_handle.h_cookie;
682                 CDEBUG(D_INODE, "resend mfd %p, cookie "LPX64"\n", mfd,
683                        mfd->mfd_handle.h_cookie);
684         }
685
686  out_dput:
687         if (put_child)
688                 l_dput(dchild);
689         if (parent)
690                 l_dput(parent);
691         EXIT;
692 }
693
694 /* do NOT or the MAY_*'s, you'll get the weakest */
695 int accmode(int flags)
696 {
697         int res = 0;
698
699         if (flags & FMODE_READ)
700                 res = MAY_READ;
701         if (flags & (FMODE_WRITE|MDS_OPEN_TRUNC))
702                 res |= MAY_WRITE;
703         if (flags & FMODE_EXEC)
704                 res = MAY_EXEC;
705         return res;
706 }
707
708 /* Handles object creation, actual opening, and I/O epoch */
709 static int mds_finish_open(struct ptlrpc_request *req, struct dentry *dchild,
710                            struct mds_body *body, int flags, void **handle,
711                            struct mds_update_record *rec, struct ldlm_reply *rep)
712 {
713         struct obd_device *obd = req->rq_export->exp_obd;
714         struct mds_obd *mds = mds_req2mds(req);
715         struct mds_export_data *med = &req->rq_export->u.eu_mds_data;
716         struct mds_file_data *mfd = NULL;
717         obd_id *ids = NULL;
718         unsigned mode;
719         int rc = 0, reply_off;
720         ENTRY;
721
722         /* atomically create objects if necessary */
723         down(&dchild->d_inode->i_sem);
724         mode = dchild->d_inode->i_mode;
725
726         if ((S_ISREG(mode) && !(body->valid & OBD_MD_FLEASIZE)) || 
727             (S_ISDIR(mode) && !(body->valid & OBD_MD_FLDIREA))) {
728                 rc = mds_pack_md(obd, req->rq_repmsg, 2, body,
729                                  dchild->d_inode, 0, 0);
730                 if (rc) {
731                         up(&dchild->d_inode->i_sem);
732                         RETURN(rc);
733                 }
734         }
735
736         if (rec != NULL) {
737                 if ((body->valid & OBD_MD_FLEASIZE) &&
738                     (rec->ur_flags & MDS_OPEN_HAS_EA)) {
739                         up(&dchild->d_inode->i_sem);
740                         RETURN(-EEXIST);
741                 }
742                 
743                 if (!(body->valid & OBD_MD_FLEASIZE)) {
744                         /* no EA: create objects */
745                         rc = mds_create_objects(obd, req, 2, rec,
746                                                 dchild, handle, &ids);
747                         if (rc) {
748                                 CERROR("mds_create_object: rc = %d\n", rc);
749                                 up(&dchild->d_inode->i_sem);
750                                 RETURN(rc);
751                         }
752                 }
753                 
754                 if (S_ISREG(dchild->d_inode->i_mode) &&
755                     (body->valid & OBD_MD_FLEASIZE)) {
756                         rc = mds_revalidate_lov_ea(obd, dchild->d_inode,
757                                                    req->rq_repmsg, 2);
758                         if (!rc)
759                                 rc = mds_pack_md(obd, req->rq_repmsg, 2, body,
760                                                  dchild->d_inode, 0, 0);
761                         if (rc) {
762                                 up(&dchild->d_inode->i_sem);
763                                 RETURN(rc);
764                         }
765                 }
766         }
767
768         reply_off = 3;
769         rc = mds_pack_acl(req, reply_off, body, dchild->d_inode);
770         reply_off += 2;
771
772         if (rc < 0) {
773                 CERROR("pack posix acl: rc = %d\n", rc);
774                 up(&dchild->d_inode->i_sem);
775                 RETURN(rc);
776         }
777
778         rc = mds_pack_gskey(obd, req->rq_repmsg, &reply_off, body, 
779                             dchild->d_inode); 
780         if (rc < 0) {
781                 CERROR("mds_pack_gskey: rc = %d\n", rc);
782                 up(&dchild->d_inode->i_sem);
783                 RETURN(rc);
784         }
785
786         if (S_ISREG(mode)) {
787                 struct lustre_capa capa = {
788                         .lc_uid   = rec->ur_uc.luc_uid,
789                         .lc_op    = capa_op(rec->ur_flags),
790                         .lc_ino   = dchild->d_inode->i_ino,
791                         .lc_mdsid = mds->mds_num,
792                 };
793
794                 rc = mds_pack_capa(obd, med, NULL, &capa, req,
795                                    &reply_off, body);
796                 if (rc < 0) {
797                         CERROR("mds_pack_capa: rc = %d\n", rc);
798                         up(&dchild->d_inode->i_sem);
799                         RETURN(rc);
800                 }
801         } else {
802                 reply_off++;
803         }
804
805         /* If the inode has no EA data, then MDSs hold size, mtime */
806         if (S_ISREG(mode) && !(body->valid & OBD_MD_FLEASIZE)) {
807                 body->valid |= (OBD_MD_FLSIZE | OBD_MD_FLBLOCKS |
808                                 OBD_MD_FLATIME | OBD_MD_FLMTIME);
809         }
810
811         up(&dchild->d_inode->i_sem);
812
813         intent_set_disposition(rep, DISP_OPEN_OPEN);
814         mfd = mds_dentry_open(dchild, mds->mds_vfsmnt, flags, req, rec);
815         if (IS_ERR(mfd))
816                 RETURN(PTR_ERR(mfd));
817
818         CDEBUG(D_INODE, "mfd %p, cookie "LPX64"\n", mfd,
819                mfd->mfd_handle.h_cookie);
820
821         if (ids != NULL) {
822                 mds_dt_update_objids(obd, ids);
823                 OBD_FREE(ids, sizeof(*ids) * mds->mds_dt_desc.ld_tgt_count);
824         }
825
826         RETURN(rc);
827 }
828
829 static int mds_open_by_id(struct ptlrpc_request *req,
830                           struct lustre_id *id,
831                           struct mds_body *body, int flags,
832                           struct mds_update_record *rec,
833                           struct ldlm_reply *rep)
834 {
835         struct mds_obd *mds = mds_req2mds(req);
836         struct inode *pending_dir = mds->mds_pending_dir->d_inode;
837         struct dentry *dchild;
838         char idname[LL_ID_NAMELEN];
839         int idlen = 0, rc;
840         void *handle = NULL;
841         ENTRY;
842
843         down(&pending_dir->i_sem);
844         idlen = ll_id2str(idname, id_ino(id), id_gen(id));
845         dchild = lookup_one_len(idname, mds->mds_pending_dir,
846                                 idlen);
847         if (IS_ERR(dchild)) {
848                 up(&pending_dir->i_sem);
849                 rc = PTR_ERR(dchild);
850                 CERROR("error looking up %s in PENDING: rc = %d\n", 
851                        idname, rc);
852                 RETURN(rc);
853         }
854
855         up(&pending_dir->i_sem);
856         if (dchild->d_inode != NULL) {
857                 mds_inode_set_orphan(dchild->d_inode);
858                 mds_pack_inode2body(req2obd(req), body,
859                                     dchild->d_inode, 1);
860                 
861                 intent_set_disposition(rep, DISP_LOOKUP_EXECD);
862                 intent_set_disposition(rep, DISP_LOOKUP_POS);
863                 CWARN("Orphan %s found and opened in PENDING directory\n",
864                        idname);
865                 goto open;
866         }
867         l_dput(dchild);
868
869         /* we didn't find it in PENDING so it isn't an orphan.  See if it was a
870          * regular inode that was previously created. */
871         dchild = mds_id2dentry(req2obd(req), id, NULL);
872         if (IS_ERR(dchild))
873                 RETURN(PTR_ERR(dchild));
874
875         mds_pack_inode2body(req2obd(req), body,
876                             dchild->d_inode, 1);
877         
878         intent_set_disposition(rep, DISP_LOOKUP_EXECD);
879         intent_set_disposition(rep, DISP_LOOKUP_POS);
880
881  open:
882         rc = mds_finish_open(req, dchild, body, flags, &handle, rec, rep);
883         rc = mds_finish_transno(mds, dchild ? dchild->d_inode : NULL, handle,
884                                 req, rc, rep ? rep->lock_policy_res1 : 0);
885         /* XXX what do we do here if mds_finish_transno itself failed? */
886         l_dput(dchild);
887         RETURN(rc);
888 }
889
890 int mds_pin(struct ptlrpc_request *req, int offset)
891 {
892         struct obd_device *obd = req->rq_export->exp_obd;
893         struct mds_body *request_body, *reply_body;
894         struct lvfs_run_ctxt saved;
895         int rc, size = sizeof(*reply_body);
896         ENTRY;
897
898         request_body = lustre_msg_buf(req->rq_reqmsg, offset,
899                                       sizeof(*request_body));
900
901         rc = lustre_pack_reply(req, 1, &size, NULL);
902         if (rc)
903                 RETURN(rc);
904         reply_body = lustre_msg_buf(req->rq_repmsg, 0, sizeof(*reply_body));
905
906         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
907         rc = mds_open_by_id(req, &request_body->id1, reply_body,
908                             request_body->flags, NULL, NULL);
909         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
910
911         RETURN(rc);
912 }
913
914 /*
915  * get a lock on the ino to sync with creation WRT inode reuse (bug 2029). If
916  * child_lockh is NULL we just get the lock as a barrier to wait for other
917  * holders of this lock, and drop it right away again.
918  */
919 int mds_lock_new_child(struct obd_device *obd, struct inode *inode,
920                        struct lustre_handle *child_lockh)
921 {
922         struct ldlm_res_id child_res_id = { .name = { inode->i_ino, 0, 1, 0 } };
923         struct lustre_handle lockh;
924         int lock_flags = LDLM_FL_ATOMIC_CB;
925         int rc;
926         ENTRY;
927
928         if (child_lockh == NULL)
929                 child_lockh = &lockh;
930
931         rc = ldlm_cli_enqueue(NULL, NULL, obd->obd_namespace, child_res_id,
932                               LDLM_PLAIN, NULL, LCK_EX, &lock_flags,
933                               mds_blocking_ast, ldlm_completion_ast, NULL,
934                               NULL, NULL, 0, NULL, child_lockh);
935         if (rc != ELDLM_OK)
936                 CERROR("ldlm_cli_enqueue: %d\n", rc);
937         else if (child_lockh == &lockh)
938                 ldlm_lock_decref(child_lockh, LCK_EX);
939
940         RETURN(rc);
941 }
942
943 int mds_open(struct mds_update_record *rec, int offset,
944              struct ptlrpc_request *req, struct lustre_handle *child_lockh)
945 {
946         /* XXX ALLOCATE _something_ - 464 bytes on stack here */
947         struct obd_device *obd = req->rq_export->exp_obd;
948         struct mds_export_data *med = &req->rq_export->u.eu_mds_data;
949         struct mds_obd *mds = mds_req2mds(req);
950         struct ldlm_reply *rep = NULL;
951         struct mds_body *body = NULL;
952         struct dentry *dchild = NULL, *dparent = NULL;
953         struct lustre_handle parent_lockh[2] = {{0}, {0}};
954         int rc = 0, cleanup_phase = 0, acc_mode, created = 0;
955         int parent_mode = LCK_PR;
956         void *handle = NULL;
957         struct dentry_params dp;
958         struct mea *mea = NULL;
959         int mea_size, update_mode;
960         int child_mode = LCK_PR;
961         struct lustre_id sid;
962         __u64 fid = 0;
963         ENTRY;
964
965         DEBUG_REQ(D_INODE, req, "parent "DLID4" name %*s mode %o",
966                   OLID4(rec->ur_id1), rec->ur_namelen - 1, rec->ur_name,
967                   rec->ur_mode);
968
969         OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_PAUSE_OPEN | OBD_FAIL_ONCE,
970                          (obd_timeout + 1) / 4);
971
972         if (offset == 3) { /* intent */
973                 rep = lustre_msg_buf(req->rq_repmsg, 0, sizeof (*rep));
974                 body = lustre_msg_buf(req->rq_repmsg, 1, sizeof (*body));
975         } else if (offset == 1) { /* non-intent reint */
976                 body = lustre_msg_buf(req->rq_repmsg, 0, sizeof (*body));
977         } else {
978                 body = NULL;
979                 LBUG();
980         }
981
982         MDS_CHECK_RESENT(req, reconstruct_open(rec, offset, req, child_lockh));
983
984         /*
985          * Step 0: If we are passed a id, then we assume the client already
986          * opened this file and is only replaying the RPC, so we open the inode
987          * by fid (at some large expense in security).
988          */
989         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY) {
990                 CDEBUG(D_HA, "open obj "DLID4" name %*s mode %o\n",
991                        OLID4(rec->ur_id2), rec->ur_namelen - 1, 
992                        rec->ur_name, rec->ur_mode);
993
994                 LASSERT(id_ino(rec->ur_id2));
995
996                 rc = mds_open_by_id(req, rec->ur_id2, body,
997                                     rec->ur_flags, rec, rep);
998                 if (rc != -ENOENT) {
999                         mds_body_do_reverse_map(med, body);
1000                         RETURN(rc);
1001                 }
1002
1003                 /* We didn't find the correct inode on disk either, so we
1004                  * need to re-create it via a regular replay. */
1005                 LASSERT(rec->ur_flags & MDS_OPEN_CREAT);
1006         } else {
1007                 LASSERT(!id_ino(rec->ur_id2));
1008         }
1009
1010         LASSERT(offset == 3); /* If we got here, we must be called via intent */
1011
1012         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_OPEN_PACK)) {
1013                 CERROR("test case OBD_FAIL_MDS_OPEN_PACK\n");
1014                 RETURN(-ENOMEM);
1015         }
1016
1017         acc_mode = accmode(rec->ur_flags);
1018
1019         /* Step 1: Find and lock the parent */
1020         if (rec->ur_flags & MDS_OPEN_CREAT) {
1021                 /* XXX Well, in fact we only need this lock mode change if
1022                    in addition to O_CREAT, the file does not exist.
1023                    But we do not know if it exists or not yet */
1024                 parent_mode = LCK_PW;
1025         }
1026         
1027         if (rec->ur_namelen == 1) {
1028                 /* client (LMV) wants to open the file by id */
1029                 CDEBUG(D_OTHER, "OPEN by id "DLID4"\n", OLID4(rec->ur_id1));
1030                 dchild = mds_id2dentry(obd, rec->ur_id1, NULL);
1031                 if (IS_ERR(dchild)) {
1032                         rc = PTR_ERR(dparent);
1033                         CERROR("child lookup by an id error %d\n", rc);
1034                         GOTO(cleanup, rc);
1035                 }
1036                 goto got_child;
1037         }
1038        
1039 restart:
1040         dparent = mds_id2locked_dentry(obd, rec->ur_id1, NULL, parent_mode,
1041                                        parent_lockh, &update_mode, rec->ur_name,
1042                                        rec->ur_namelen - 1, MDS_INODELOCK_UPDATE);
1043         if (IS_ERR(dparent)) {
1044                 rc = PTR_ERR(dparent);
1045                 if (rc != -ENOENT) {
1046                         CERROR("parent lookup for "DLID4" failed, error %d\n",
1047                                OLID4(rec->ur_id1), rc);
1048                 } else {
1049                         /* Just cannot find parent - make it look like
1050                            usual negative lookup to avoid extra MDS RPC */
1051                         intent_set_disposition(rep, DISP_LOOKUP_EXECD);
1052                         intent_set_disposition(rep, DISP_LOOKUP_NEG);
1053                 }
1054                 GOTO(cleanup, rc);
1055         }
1056         LASSERT(dparent->d_inode != NULL);
1057
1058         cleanup_phase = 1; /* parent dentry and lock */
1059
1060         /* try to retrieve MEA data for this dir */
1061         rc = mds_md_get_attr(obd, dparent->d_inode, &mea, &mea_size);
1062         if (rc)
1063                 GOTO(cleanup, rc);
1064        
1065         if (mea != NULL && mea->mea_count) {
1066                 /*
1067                  * dir is already splitted, check is requested filename should *
1068                  * live at this MDS or at another one.
1069                  */
1070                 int i;
1071                 i = mea_name2idx(mea, rec->ur_name, rec->ur_namelen - 1);
1072                 if (mea->mea_master != id_group(&mea->mea_ids[i])) {
1073                         CDEBUG(D_OTHER,
1074                                "%s: inapropriate MDS(%d) for %lu/%u:%s."
1075                                " should be %lu(%d)\n", obd->obd_name,
1076                                mea->mea_master, dparent->d_inode->i_ino,
1077                                dparent->d_inode->i_generation, rec->ur_name,
1078                                (unsigned long)id_group(&mea->mea_ids[i]), i);
1079                         GOTO(cleanup, rc = -ERESTART);
1080                 }
1081         }
1082
1083         /* Step 2: Lookup the child */
1084         dchild = ll_lookup_one_len(rec->ur_name, dparent, rec->ur_namelen - 1);
1085         if (IS_ERR(dchild)) {
1086                 rc = PTR_ERR(dchild);
1087                 dchild = NULL; /* don't confuse mds_finish_transno() below */
1088                 GOTO(cleanup, rc);
1089         }
1090
1091 got_child:
1092         cleanup_phase = 2; /* child dentry */
1093
1094         if (dchild->d_flags & DCACHE_CROSS_REF) {
1095                 CDEBUG(D_OTHER, "cross reference: "DLID4"\n", OLID4(rec->ur_id1));
1096                 LASSERT(rec->ur_namelen > 1);
1097                 
1098                 /* we're gonna acquire LOOKUP lock on the child,
1099                  * but we have already locked parent and our order
1100                  * may conflict with enqueue_order_locks(). so,
1101                  * drop parent lock and acquire both the locks in
1102                  * common order. bug 6190 */
1103 #ifdef S_PDIROPS
1104                 if (parent_lockh[1].cookie != 0)
1105                         ldlm_lock_decref(parent_lockh + 1, update_mode);
1106 #endif
1107                 ldlm_lock_decref(parent_lockh, parent_mode);
1108                 l_dput(dchild);
1109                 l_dput(dparent);
1110                 cleanup_phase = 0;
1111
1112                 rc = mds_get_parent_child_locked(obd, mds, rec->ur_id1,
1113                                                  parent_lockh, &dparent,
1114                                                  LCK_PR, MDS_INODELOCK_UPDATE,
1115                                                  &update_mode, rec->ur_name,
1116                                                  rec->ur_namelen, child_lockh,
1117                                                  &dchild, LCK_PR,
1118                                                  MDS_INODELOCK_LOOKUP);
1119
1120                 if (rc)
1121                         GOTO(cleanup, rc);
1122
1123 #ifdef S_PDIROPS
1124                 if (parent_lockh[1].cookie != 0)
1125                         ldlm_lock_decref(parent_lockh + 1, update_mode);
1126 #endif
1127                 ldlm_lock_decref(parent_lockh, LCK_PR);
1128
1129                 if (dchild->d_inode || !(dchild->d_flags & DCACHE_CROSS_REF)) {
1130                         CDEBUG(D_OTHER, "race: name changed (%p)\n",
1131                                dchild->d_inode);
1132                         if (dchild->d_inode)
1133                                 ldlm_lock_decref(child_lockh, LCK_PR);
1134                         l_dput(dchild);
1135                         l_dput(dparent);
1136                         GOTO(restart, rc);
1137                 }
1138
1139                 mds_pack_dentry2body(obd, body, dchild, 1);
1140                 intent_set_disposition(rep, DISP_LOOKUP_POS);
1141                 intent_set_disposition(rep, DISP_LOOKUP_EXECD);
1142
1143                 if (mea)
1144                         OBD_FREE(mea, mea_size);
1145                 l_dput(dchild);
1146                 l_dput(dparent);
1147                 RETURN(rc);
1148         }
1149         
1150         intent_set_disposition(rep, DISP_LOOKUP_EXECD);
1151
1152         if (dchild->d_inode)
1153                 intent_set_disposition(rep, DISP_LOOKUP_POS);
1154         else
1155                 intent_set_disposition(rep, DISP_LOOKUP_NEG);
1156
1157         /* Step 3: If the child was negative, and we're supposed to, create it.*/
1158         if (dchild->d_inode == NULL) {
1159                 unsigned long ino;
1160                 struct iattr iattr;
1161                 struct inode *inode;
1162                 
1163                 /* get parent id: ldlm lock on the parent protects ea */
1164                 rc = mds_read_inode_sid(obd, dparent->d_inode, &sid);
1165                 if (rc) {
1166                         CERROR("can't read parent inode id. ino(%lu) rc(%d)\n",
1167                                 dparent->d_inode->i_ino, rc);
1168                         GOTO(cleanup, rc);
1169                 }
1170
1171                 ino = (unsigned long)id_ino(rec->ur_id2);
1172                 
1173                 rc = mds_try_to_split_dir(obd, dparent, &mea, 0,
1174                                           update_mode);
1175                 
1176                 CDEBUG(D_OTHER, "%s: splitted %lu/%u - %d\n",
1177                        obd->obd_name, dparent->d_inode->i_ino,
1178                        dparent->d_inode->i_generation, rc);
1179
1180                 if (rc > 0) {
1181                         /* dir got splitted */
1182                         GOTO(cleanup, rc = -ERESTART);
1183                 } else if (rc < 0) {
1184                         /* error happened during spitting */
1185                         GOTO(cleanup, rc);
1186                 }
1187
1188                 if (!(rec->ur_flags & MDS_OPEN_CREAT)) {
1189                         /*
1190                          * dentry is negative and we weren't supposed to create
1191                          * object, get out of here.
1192                          */
1193                         GOTO(cleanup, rc = -ENOENT);
1194                 }
1195
1196                 intent_set_disposition(rep, DISP_OPEN_CREATE);
1197                 handle = fsfilt_start(obd, dparent->d_inode, FSFILT_OP_CREATE,
1198                                       NULL);
1199                 if (IS_ERR(handle)) {
1200                         rc = PTR_ERR(handle);
1201                         handle = NULL;
1202                         GOTO(cleanup, rc);
1203                 }
1204                 if (id_fid(rec->ur_id2))
1205                         fid = id_fid(rec->ur_id2); 
1206                 else 
1207                         fid = mds_alloc_fid(obd);
1208                 
1209                 dchild->d_fsdata = (void *) &dp;
1210                 dp.p_ptr = req;
1211                 dp.p_inum = ino;
1212                 
1213                 dp.p_fid = fid;
1214                 dp.p_group = mds->mds_num;
1215
1216                 rc = ll_vfs_create(dparent->d_inode, dchild, rec->ur_mode, NULL);
1217                 if (dchild->d_fsdata == (void *)(unsigned long)ino)
1218                         dchild->d_fsdata = NULL;
1219
1220                 if (rc) {
1221                         CDEBUG(D_INODE, "error during create: %d\n", rc);
1222                         GOTO(cleanup, rc);
1223                 }
1224
1225                 inode = dchild->d_inode;
1226
1227                 if (ino) {
1228                         LASSERT(ino == inode->i_ino);
1229                         
1230                         /* written as part of setattr */
1231                         inode->i_generation = id_gen(rec->ur_id2);
1232                         CDEBUG(D_HA, "recreated ino %lu with gen %u\n",
1233                                inode->i_ino, inode->i_generation);
1234                 }
1235
1236                 created = 1;
1237                 LTIME_S(iattr.ia_atime) = rec->ur_time;
1238                 LTIME_S(iattr.ia_ctime) = rec->ur_time;
1239                 LTIME_S(iattr.ia_mtime) = rec->ur_time;
1240
1241                 iattr.ia_uid = rec->ur_fsuid;
1242                 if (dparent->d_inode->i_mode & S_ISGID)
1243                         iattr.ia_gid = dparent->d_inode->i_gid;
1244                 else
1245                         iattr.ia_gid = rec->ur_fsgid;
1246
1247                 iattr.ia_valid = ATTR_UID | ATTR_GID | ATTR_ATIME |
1248                         ATTR_MTIME | ATTR_CTIME;
1249
1250                 rc = fsfilt_setattr(obd, dchild, handle, &iattr, 0);
1251                 if (rc)
1252                         CERROR("error on child setattr: rc = %d\n", rc);
1253
1254                 iattr.ia_valid = ATTR_MTIME | ATTR_CTIME;
1255
1256                 rc = fsfilt_setattr(obd, dparent, handle, &iattr, 0);
1257                 if (rc)
1258                         CERROR("error on parent setattr: rc = %d\n", rc);
1259                 else {
1260                         MD_COUNTER_INCREMENT(obd, create);
1261                 }
1262
1263                 mds_inode2id(obd, &body->id1, inode, fid);
1264                 mds_update_inode_ids(obd, dchild->d_inode, handle, &body->id1, &sid);
1265
1266                 if ((rec->ur_flags & MDS_OPEN_HAS_KEY)) { 
1267                         rc = mds_set_gskey(obd, handle, dchild->d_inode, 
1268                                            rec->ur_ea2data, rec->ur_ea2datalen, 
1269                                            ATTR_KEY | ATTR_MAC);
1270                         if (rc) {
1271                                 CERROR("error in set gs key rc %d\n", rc); 
1272                         }
1273                 }
1274
1275                 if (!(rec->ur_flags & O_EXCL)) { /* bug 3313 */
1276                         rc = fsfilt_commit(obd, dchild->d_inode->i_sb,
1277                                            dchild->d_inode, handle, 
1278                                            req->rq_export->exp_sync);
1279                         handle = NULL;
1280                 }
1281
1282                 acc_mode = 0;           /* Don't check for permissions */
1283         }
1284         mds_pack_inode2body(obd, body, dchild->d_inode, 1);
1285         
1286         LASSERTF(!mds_inode_is_orphan(dchild->d_inode),
1287                  "dchild %.*s (%p) inode %p\n", dchild->d_name.len,
1288                  dchild->d_name.name, dchild, dchild->d_inode);
1289
1290         if (S_ISREG(dchild->d_inode->i_mode)) {
1291                 /* Check permissions etc */
1292                 rc = ll_permission(dchild->d_inode, acc_mode, NULL);
1293                 if (rc != 0)
1294                         GOTO(cleanup, rc);
1295
1296                 /* Can't write to a read-only file */
1297                 if (IS_RDONLY(dchild->d_inode) && (acc_mode & MAY_WRITE) != 0)
1298                         GOTO(cleanup, rc = -EPERM);
1299
1300                 /* An append-only file must be opened in append mode for
1301                  * writing */
1302                 if (IS_APPEND(dchild->d_inode) && (acc_mode & MAY_WRITE) != 0 &&
1303                     ((rec->ur_flags & MDS_OPEN_APPEND) == 0 ||
1304                      (rec->ur_flags & MDS_OPEN_TRUNC) != 0))
1305                         GOTO(cleanup, rc = -EPERM);
1306         }
1307
1308         if (!created && (rec->ur_flags & MDS_OPEN_CREAT) &&
1309             (rec->ur_flags & MDS_OPEN_EXCL)) {
1310                 /* File already exists, we didn't just create it, and we
1311                  * were passed O_EXCL; err-or. */
1312                 GOTO(cleanup, rc = -EEXIST); // returns a lock to the client
1313         }
1314
1315         if (S_ISDIR(dchild->d_inode->i_mode)) {
1316                 if (rec->ur_flags & MDS_OPEN_CREAT ||
1317                     rec->ur_flags & FMODE_WRITE) {
1318                         /* we are trying to create or write a exist dir */
1319                         GOTO(cleanup, rc = -EISDIR);
1320                 }
1321                 if (ll_permission(dchild->d_inode, acc_mode, NULL))
1322                         GOTO(cleanup, rc = -EACCES);
1323
1324                 /* 
1325                  * here was checking for possible GNS mount points to skip their
1326                  * open. I removed it as its detection based only on SUID bit is
1327                  * not reliable. Opening such a dirs should not cause any
1328                  * problems, at least tests show that. --umka
1329                  */
1330         }
1331
1332         /* if we are following a symlink, don't open */
1333         if (S_ISLNK(dchild->d_inode->i_mode))
1334                 GOTO(cleanup_no_trans, rc = 0);
1335
1336         if ((rec->ur_flags & MDS_OPEN_DIRECTORY) &&
1337             !S_ISDIR(dchild->d_inode->i_mode))
1338                 GOTO(cleanup, rc = -ENOTDIR);
1339
1340         /* check permission even it's special files */
1341         if (S_ISCHR(dchild->d_inode->i_mode) ||
1342             S_ISBLK(dchild->d_inode->i_mode) ||
1343             S_ISFIFO(dchild->d_inode->i_mode) ||
1344             S_ISSOCK(dchild->d_inode->i_mode)) {
1345                 rc = ll_permission(dchild->d_inode, acc_mode, NULL);
1346                 if (rc != 0)
1347                         GOTO(cleanup, rc);
1348         }
1349
1350         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_OPEN_CREATE)) {
1351                 obd_fail_loc = OBD_FAIL_LDLM_REPLY | OBD_FAIL_ONCE;
1352                 GOTO(cleanup, rc = -EAGAIN);
1353         }
1354
1355 #if 0
1356         /* We cannot use acc_mode here, because it is zeroed in case of
1357            creating a file, so we get wrong lockmode */
1358         if (accmode(rec->ur_flags) & MAY_WRITE)
1359                 child_mode = LCK_CW;
1360         else if (accmode(rec->ur_flags) & MAY_EXEC)
1361                 child_mode = LCK_PR;
1362         else
1363                 child_mode = LCK_CR;
1364
1365         /* Always returning LOOKUP lock if open succesful to guard
1366          * dentry on client. In case of replay we do not get a lock
1367          * assuming that the caller has it already */
1368         if (!(lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY)) {
1369                 struct ldlm_res_id child_res_id = { .name = {0}};
1370                 ldlm_policy_data_t policy;
1371                 int lock_flags = LDLM_FL_ATOMIC_CB;
1372                 
1373                 /* LOOKUP lock will protect dentry on client -bzzz */
1374                 policy.l_inodebits.bits = MDS_INODELOCK_LOOKUP |
1375                                                 MDS_INODELOCK_OPEN;
1376
1377                 child_res_id.name[0] = id_fid(&body->id1);
1378                 child_res_id.name[1] = id_group(&body->id1);
1379
1380                 rc = ldlm_cli_enqueue(NULL, NULL, obd->obd_namespace,
1381                                       child_res_id, LDLM_IBITS, &policy,
1382                                       child_mode, &lock_flags,
1383                                       mds_blocking_ast, ldlm_completion_ast,
1384                                       NULL, NULL, NULL, 0, NULL, child_lockh);
1385                 if (rc != ELDLM_OK)
1386                         GOTO(cleanup, rc);
1387
1388                 cleanup_phase = 3;
1389         }
1390 #else
1391 /* re-enable test 24n in sanity.sh: it needs LOOKUP lock on open */
1392 #warning "disable opencache lock for CMD2"
1393 #endif
1394
1395         /* Step 5: mds_open it */
1396         rc = mds_finish_open(req, dchild, body, rec->ur_flags, &handle,
1397                              rec, rep);
1398         if (rc)
1399                 GOTO(cleanup, rc);
1400
1401         /* reintegration case */
1402         if ((rec->ur_flags & MDS_REINT_REQ)) {
1403                 rc = mds_fidmap_add(obd, &body->id1);
1404                 if (rc < 0) {
1405                         CERROR("can't create fid->ino mapping, err %d\n",
1406                                rc);
1407                 } else {
1408                         rc = 0;
1409                 }
1410         }
1411         
1412         /* if this is a writer, we have to invalidate client's
1413          * update locks in order to make sure they don't use
1414          * isize/iblocks from mds anymore.
1415          * FIXME: can cause a deadlock, use mds_get_parent_child_locked()
1416          * XXX: optimization is to do this for first writer only */
1417         if (accmode(rec->ur_flags) & MAY_WRITE) {
1418                 struct ldlm_res_id child_res_id = { .name = {0}};
1419                 ldlm_policy_data_t sz_policy;
1420                 struct lustre_handle sz_lockh;
1421                 int lock_flags = LDLM_FL_ATOMIC_CB;
1422
1423                 child_res_id.name[0] = id_fid(&body->id1);
1424                 child_res_id.name[1] = id_group(&body->id1);
1425                 sz_policy.l_inodebits.bits = MDS_INODELOCK_UPDATE;
1426
1427                 rc = ldlm_cli_enqueue(NULL, NULL, obd->obd_namespace,
1428                                       child_res_id, LDLM_IBITS, &sz_policy,
1429                                       LCK_PW, &lock_flags, mds_blocking_ast,
1430                                       ldlm_completion_ast, NULL, NULL, NULL,
1431                                       0, NULL, &sz_lockh);
1432                 if (rc == ELDLM_OK)
1433                         ldlm_lock_decref(&sz_lockh, LCK_PW);
1434                 else
1435                         CERROR("can't invalidate client's update locks\n");
1436         }
1437
1438         EXIT;
1439 cleanup:
1440         rc = mds_finish_transno(mds, dchild ? dchild->d_inode : NULL, handle,
1441                                 req, rc, rep ? rep->lock_policy_res1 : 0);
1442
1443 cleanup_no_trans:
1444         switch (cleanup_phase) {
1445         case 3:
1446                 if (rc) {
1447                         ldlm_lock_decref(child_lockh, child_mode);
1448                         child_lockh->cookie = 0;
1449                 }
1450         case 2:
1451                 if (rc && created) {
1452                         int err = vfs_unlink(dparent->d_inode, dchild);
1453                         if (err) {
1454                                 CERROR("unlink(%.*s) in error path: %d\n",
1455                                        dchild->d_name.len, dchild->d_name.name,
1456                                        err);
1457                         }
1458                 } else if (created) {
1459                         mds_lock_new_child(obd, dchild->d_inode, NULL);
1460                 }
1461                 /* audit stuff for OPEN */
1462                 if (offset == 3) {
1463                         mds_audit(req, dchild, rec->ur_name,
1464                                   rec->ur_namelen - 1, AUDIT_OPEN, rc);
1465                 }
1466
1467                 l_dput(dchild);
1468         case 1:
1469                 if (dparent == NULL)
1470                         break;
1471
1472                 l_dput(dparent);
1473 #ifdef S_PDIROPS
1474                 if (parent_lockh[1].cookie != 0)
1475                         ldlm_lock_decref(parent_lockh + 1, update_mode);
1476 #endif
1477                 if (rc)
1478                         ldlm_lock_decref(parent_lockh, parent_mode);
1479                 else
1480                         ptlrpc_save_lock (req, parent_lockh, parent_mode);
1481         }
1482         if (mea)
1483                 OBD_FREE(mea, mea_size);
1484         if (rc == 0)
1485                 atomic_inc(&mds->mds_open_count);
1486
1487         mds_body_do_reverse_map(med, body);
1488
1489         /*
1490          * If we have not taken the "open" lock, we may not return 0 here,
1491          * because caller expects 0 to mean "lock is taken", and it needs
1492          * nonzero return here for caller to return EDLM_LOCK_ABORTED to
1493          * client. Later caller should rewrite the return value back to zero
1494          * if it to be used any further.
1495          */
1496         if ((cleanup_phase != 3) && !rc)
1497                 rc = ENOLCK;
1498
1499         RETURN(rc);
1500 }
1501
1502 /* Close a "file descriptor" and possibly unlink an orphan from the
1503  * PENDING directory.  Caller must hold child->i_sem, this drops it. 
1504  *
1505  * If we are being called from mds_disconnect() because the client has
1506  * disappeared, then req == NULL and we do not update last_rcvd because
1507  * there is nothing that could be recovered by the client at this stage
1508  * (it will not even _have_ an entry in last_rcvd anymore).
1509  *
1510  * Returns EAGAIN if the client needs to get more data and re-close. */
1511 int mds_mfd_close(struct ptlrpc_request *req, int offset,
1512                   struct obd_device *obd, struct mds_file_data *mfd,
1513                   int unlink_orphan)
1514 {
1515         struct inode *inode = mfd->mfd_dentry->d_inode;
1516         char idname[LL_ID_NAMELEN];
1517         int last_orphan, idlen, rc = 0, cleanup_phase = 0;
1518         struct dentry *pending_child = NULL;
1519         struct mds_obd *mds = &obd->u.mds;
1520         struct inode *pending_dir = mds->mds_pending_dir->d_inode;
1521         void *handle = NULL;
1522         struct mds_body *request_body = NULL, *reply_body = NULL;
1523         struct dentry_params dp;
1524         struct iattr iattr = { 0 };
1525         struct llog_create_locks *lcl = NULL;
1526         ENTRY;
1527
1528         if (req && req->rq_reqmsg != NULL)
1529                 request_body = lustre_msg_buf(req->rq_reqmsg, offset,
1530                                               sizeof(*request_body));
1531         if (req && req->rq_repmsg != NULL)
1532                 reply_body = lustre_msg_buf(req->rq_repmsg, 0,
1533                                             sizeof(*reply_body));
1534
1535         if (request_body && (request_body->valid & OBD_MD_FLSIZE)) {
1536                 /* we set i_size/i_blocks here, nobody will see
1537                  * them until all write references are dropped.
1538                  * btw, we hold one reference */
1539                 LASSERT(mfd->mfd_mode & FMODE_WRITE);
1540                 LASSERT(request_body->valid & OBD_MD_FLEPOCH);
1541                 LASSERT(MDS_FILTERDATA(inode));
1542                 if (MDS_FILTERDATA(inode)->io_epoch != request_body->io_epoch)
1543                         CDEBUG(D_ERROR, "try to update attr. for old epoch "
1544                                LPD64" while current "LPD64"\n",
1545                                MDS_FILTERDATA(inode)->io_epoch,
1546                                request_body->io_epoch);
1547                 i_size_write(inode, request_body->size);
1548                 inode->i_blocks = request_body->blocks;
1549                 iattr.ia_size = inode->i_size;
1550                 iattr.ia_valid |= ATTR_SIZE;
1551                 mds_inode_unset_attrs_old(inode);
1552         }
1553
1554         idlen = ll_id2str(idname, inode->i_ino, inode->i_generation);
1555         CDEBUG(D_INODE, "inode %p ino %s nlink %d orphan %d\n", inode, 
1556                idname, inode->i_nlink, mds_orphan_open_count(inode));
1557
1558         last_orphan = mds_orphan_open_dec_test(inode) &&
1559                 mds_inode_is_orphan(inode);
1560         UP_WRITE_I_ALLOC_SEM(inode);
1561
1562         /* this is half of the actual "close" */
1563         if (mfd->mfd_mode & FMODE_WRITE) {
1564                 rc = mds_put_write_access(mds, inode, request_body,
1565                                           last_orphan && unlink_orphan);
1566         } else if (mfd->mfd_mode & FMODE_EXEC) {
1567                 mds_allow_write_access(inode);
1568         }
1569
1570         if (last_orphan && unlink_orphan) {
1571                 struct lov_mds_md *lmm = NULL;
1572                 int stripe_count = 0;
1573                 LASSERT(rc == 0); /* mds_put_write_access must have succeeded */
1574
1575                 CDEBUG(D_HA, "destroying orphan object %s\n", idname);
1576                 
1577                 if ((S_ISREG(inode->i_mode) && inode->i_nlink != 1) ||
1578                     (S_ISDIR(inode->i_mode) && inode->i_nlink != 2))
1579                         CERROR("found \"orphan\" %s %s with link count %d\n",
1580                                S_ISREG(inode->i_mode) ? "file" : "dir",
1581                                idname, inode->i_nlink);
1582                 /*
1583                  * sadly, there is no easy way to save pending_child from
1584                  * mds_reint_unlink() into mfd, so we need to re-lookup, but
1585                  * normally it will still be in the dcache.
1586                  */
1587                 down(&pending_dir->i_sem);
1588                 cleanup_phase = 1; /* up(i_sem) when finished */
1589                 pending_child = lookup_one_len(idname, mds->mds_pending_dir,
1590                                                idlen);
1591                 if (IS_ERR(pending_child))
1592                         GOTO(cleanup, rc = PTR_ERR(pending_child));
1593                 if (pending_child->d_inode == NULL) {
1594                         CERROR("orphan %s has been removed\n", idname);
1595                         GOTO(cleanup, rc = 0);
1596                 }
1597
1598                 cleanup_phase = 2; /* dput(pending_child) when finished */
1599                 if (S_ISDIR(pending_child->d_inode->i_mode)) {
1600                         rc = vfs_rmdir(pending_dir, pending_child);
1601                         if (rc)
1602                                 CERROR("error unlinking orphan dir %s: rc %d\n",
1603                                        idname, rc);
1604                         goto out;
1605                 }
1606
1607                 if (req != NULL && req->rq_repmsg != NULL) {
1608                         lmm = lustre_msg_buf(req->rq_repmsg, 1, 0);
1609                         stripe_count = le32_to_cpu(lmm->lmm_stripe_count);
1610                 }
1611
1612                 handle = fsfilt_start_log(obd, pending_dir, FSFILT_OP_UNLINK,
1613                                           NULL, stripe_count);
1614                 if (IS_ERR(handle)) {
1615                         rc = PTR_ERR(handle);
1616                         handle = NULL;
1617                         GOTO(cleanup, rc);
1618                 }
1619
1620                 pending_child->d_fsdata = (void *) &dp;
1621                 dp.p_inum = 0;
1622                 dp.p_ptr = req;
1623                 rc = vfs_unlink(pending_dir, pending_child);
1624                 if (rc)
1625                         CERROR("error unlinking orphan %s: rc %d\n",
1626                                idname, rc);
1627
1628                 if (req != NULL && req->rq_repmsg != NULL &&
1629                     (reply_body->valid & OBD_MD_FLEASIZE) &&
1630                     mds_log_op_unlink(obd, pending_child->d_inode,
1631                                       lmm, req->rq_repmsg->buflens[1],
1632                                       lustre_msg_buf(req->rq_repmsg, 2, 0),
1633                                       req->rq_repmsg->buflens[2], &lcl) > 0) {
1634                         reply_body->valid |= OBD_MD_FLCOOKIE;
1635                 }
1636                 
1637                 rc = mds_destroy_object(obd, inode, 1);
1638                 if (rc) {
1639                         CERROR("cannot destroy OSS object on close, err %d\n",
1640                                rc);
1641                         rc = 0;
1642                 }
1643
1644                 goto out; /* Don't bother updating attrs on unlinked inode */
1645         } else if ((mfd->mfd_mode & FMODE_WRITE) && rc == 0) {
1646                 /* last writer closed file - let's update i_size/i_blocks */
1647                 mds_validate_size(obd, inode, request_body, &iattr);
1648         }
1649
1650 #if 0
1651         if (request_body != NULL && mfd->mfd_mode & FMODE_WRITE && rc == 0) {
1652                 /* Update the on-disk attributes if this was the last write
1653                  * close, and all information was provided (i.e., rc == 0)
1654                  *
1655                  * XXX this should probably be abstracted with mds_reint_setattr
1656                  */
1657
1658                 if (request_body->valid & OBD_MD_FLMTIME &&
1659                     LTIME_S(request_body->mtime) > LTIME_S(inode->i_mtime)) {
1660                         LTIME_S(iattr.ia_mtime) = LTIME_S(request_body->mtime);
1661                         iattr.ia_valid |= ATTR_MTIME;
1662                 }
1663                 if (request_body->valid & OBD_MD_FLCTIME &&
1664                     LTIME_S(request_body->ctime) > LTIME_S(inode->i_ctime)) {
1665                         LTIME_S(iattr.ia_ctime) = LTIME_S(request_body->ctime);
1666                         iattr.ia_valid |= ATTR_CTIME;
1667                 }
1668
1669                 /* XXX can't set block count with fsfilt_setattr (!) */
1670                 if (request_body->valid & OBD_MD_FLSIZE) {
1671                         iattr.ia_valid |= ATTR_SIZE;
1672                         iattr.ia_size = request_body->size;
1673                 }
1674                 /* if (request_body->valid & OBD_MD_FLBLOCKS) {
1675                         iattr.ia_valid |= ATTR_BLOCKS;
1676                         iattr.ia_blocks = request_body->blocks
1677                 } */
1678
1679         }
1680 #endif
1681         if (request_body != NULL && request_body->valid & OBD_MD_FLATIME) {
1682                 /* Only start a transaction to write out only the atime if
1683                  * it is more out-of-date than the specified limit.  If we
1684                  * are already going to write out the atime then do it anyway.
1685                  * */
1686                 if ((request_body->atime >
1687                      LTIME_S(inode->i_atime) + MAX_ATIME_DIFF) ||
1688                     (iattr.ia_valid != 0 &&
1689                      request_body->atime > LTIME_S(inode->i_atime))) {
1690                         LTIME_S(iattr.ia_atime) = request_body->atime;
1691                         iattr.ia_valid |= ATTR_ATIME;
1692                 }
1693         }
1694
1695         if (iattr.ia_valid != 0) {
1696                 if (handle == NULL)
1697                         handle = fsfilt_start(obd,inode,FSFILT_OP_SETATTR,NULL);
1698                 if (IS_ERR(handle))
1699                         GOTO(cleanup, rc = PTR_ERR(handle));
1700                 rc = fsfilt_setattr(obd, mfd->mfd_dentry, handle, &iattr, 0);
1701                 if (rc)
1702                         CERROR("error in setattr(%s): rc %d\n", idname, rc);
1703         }
1704 out:
1705         /* If other clients have this file open for write, rc will be > 0 */
1706         if (rc > 0)
1707                 rc = 0;
1708         if (!obd->obd_recovering && mds_inode_has_old_attrs(inode)
1709                         && !mds_inode_is_orphan(inode)
1710                         && atomic_read(&inode->i_writecount) == 0
1711                         && inode->i_nlink != 0) {
1712                 CERROR("leave inode %lu/%u with old attributes (nlink = %d)\n",
1713                        inode->i_ino, inode->i_generation, inode->i_nlink);
1714         }
1715         l_dput(mfd->mfd_dentry);
1716         mds_mfd_destroy(mfd);
1717
1718  cleanup:
1719         atomic_dec(&mds->mds_open_count);
1720         if (req != NULL && reply_body != NULL) {
1721                 rc = mds_finish_transno(mds, pending_dir, handle, req, rc, 0);
1722         } else if (handle) {
1723                 int err, force_sync = 0;
1724
1725                 if (req && req->rq_export)
1726                         force_sync = req->rq_export->exp_sync;
1727
1728                 err = fsfilt_commit(obd, mds->mds_sb, pending_dir, handle, 
1729                                     force_sync);
1730                 if (err) {
1731                         CERROR("error committing close: %d\n", err);
1732                         if (!rc)
1733                                 rc = err;
1734                 }
1735         }
1736
1737         switch (cleanup_phase) {
1738         case 2:
1739                 if (lcl != NULL)
1740                         ptlrpc_save_llog_lock(req, lcl);
1741                 dput(pending_child);
1742         case 1:
1743                 up(&pending_dir->i_sem);
1744         }
1745         RETURN(rc);
1746 }
1747
1748 static int mds_extent_lock_callback(struct ldlm_lock *lock,
1749                                     struct ldlm_lock_desc *new, void *data,
1750                                     int flag)
1751 {
1752         struct lustre_handle lockh = { 0 };
1753         int rc;
1754         ENTRY;
1755
1756         switch (flag) {
1757         case LDLM_CB_BLOCKING:
1758                 ldlm_lock2handle(lock, &lockh);
1759                 rc = ldlm_cli_cancel(&lockh);
1760                 if (rc != ELDLM_OK)
1761                         CERROR("ldlm_cli_cancel failed: %d\n", rc);
1762                 break;
1763         case LDLM_CB_CANCELING: {
1764                 break;
1765         }
1766         default:
1767                 LBUG();
1768         }
1769
1770         RETURN(0);
1771 }
1772 __u64 lov_merge_size(struct lov_stripe_md *lsm, int kms);
1773 __u64 lov_merge_blocks(struct lov_stripe_md *lsm);
1774
1775 int mds_validate_size(struct obd_device *obd, struct inode *inode,
1776                       struct mds_body *body, struct iattr *iattr)
1777 {
1778         ldlm_policy_data_t policy = { .l_extent = { 0, OBD_OBJECT_EOF } };
1779         struct lustre_handle lockh = { 0 };
1780         struct lov_stripe_md *lsm = NULL;
1781         int rc, len, flags;
1782         void *lmm = NULL;
1783         ENTRY;
1784
1785         /* we update i_size/i_blocks only for regular files */
1786         if (!S_ISREG(inode->i_mode))
1787                 RETURN(0);
1788
1789         /* we shouldn't fetch size from OSTes during recovery - deadlock */
1790         if (obd->obd_recovering) {
1791                 CERROR("size-on-mds has no support on OST yet\n");
1792                 RETURN(0);
1793         }
1794
1795         /* if nobody modified attrs. we're lucky */
1796         if (!mds_inode_has_old_attrs(inode))
1797                 RETURN(0);
1798
1799         /* 1: client didn't send actual i_size/i_blocks
1800          * 2: we seem to be last writer
1801          * 3: the file doesn't look like to be disappeared
1802          * conclusion: we're gonna fetch them from OSSes */
1803
1804         down(&inode->i_sem);
1805         len = fsfilt_get_md(obd, inode, NULL, 0, EA_LOV);
1806         up(&inode->i_sem);
1807         
1808         if (len < 0) {
1809                 CERROR("error getting inode %lu MD: %d\n", inode->i_ino, len);
1810                 GOTO(cleanup, rc = len);
1811         } else if (len == 0) {
1812                 CDEBUG(D_INODE, "no LOV in inode %lu\n", inode->i_ino);
1813                 GOTO(cleanup, rc = 0);
1814         }
1815
1816         OBD_ALLOC(lmm, len);
1817         if (lmm == NULL) {
1818                 CERROR("can't allocate memory\n");
1819                 GOTO(cleanup, rc = -ENOMEM);
1820         }
1821
1822         down(&inode->i_sem);
1823         rc = fsfilt_get_md(obd, inode, lmm, len, EA_LOV);
1824         up(&inode->i_sem);
1825         
1826         if (rc < 0) {
1827                 CERROR("error getting inode %lu MD: %d\n", inode->i_ino, rc);
1828                 GOTO(cleanup, rc);
1829         }
1830
1831         rc = obd_unpackmd(obd->u.mds.mds_dt_exp, &lsm, lmm, len);
1832         if (rc < 0) {
1833                 CERROR("error getting inode %lu MD: %d\n", inode->i_ino, rc);
1834                 GOTO(cleanup, rc);
1835         }
1836         
1837         CDEBUG(D_DLMTRACE, "Glimpsing inode %lu\n", inode->i_ino);
1838         
1839         flags = LDLM_FL_HAS_INTENT;
1840         rc = obd_enqueue(obd->u.mds.mds_dt_exp, lsm, LDLM_EXTENT, &policy,
1841                          LCK_PR, &flags, mds_extent_lock_callback,
1842                          ldlm_completion_ast, NULL, NULL,
1843                          sizeof(struct ost_lvb), lustre_swab_ost_lvb, &lockh);
1844         if (rc == -ENOENT) {
1845                 /* while we were enqueueing lock on OST, another thread
1846                  * unlinked the file and started OST object destoying.
1847                  * it's safe to return 0 here */
1848                 GOTO(cleanup, rc = 0);
1849         } else if (rc != 0) {
1850                 CERROR("obd_enqueue returned rc %d, returning -EIO\n", rc);
1851                 GOTO(cleanup, rc);
1852         }
1853
1854         CDEBUG(D_INODE, "LOV reports "LPD64"/%lu for "DLID4" [%s%s%s]\n",
1855                inode->i_size, inode->i_blocks, OLID4(&body->id1),
1856                atomic_read(&inode->i_writecount) > 1 ? "U" : "",
1857                mds_inode_has_old_attrs(inode) ? "D" : "",
1858                mds_inode_is_orphan(inode) ? "O" : "");
1859
1860         i_size_write(inode, lov_merge_size(lsm, 0));
1861         inode->i_blocks = lov_merge_blocks(lsm);
1862         iattr->ia_size = inode->i_size;
1863         iattr->ia_valid |= ATTR_SIZE;
1864         DOWN_WRITE_I_ALLOC_SEM(inode);
1865         mds_inode_unset_attrs_old(inode);
1866         UP_WRITE_I_ALLOC_SEM(inode);
1867
1868         obd_cancel(obd->u.mds.mds_dt_exp, lsm, LCK_PR, &lockh);
1869         
1870 cleanup:
1871         if (lsm != NULL)
1872                 obd_free_memmd(obd->u.mds.mds_dt_exp, &lsm);
1873         if (lmm != NULL)
1874                 OBD_FREE(lmm, len);
1875         RETURN(rc);
1876 }
1877
1878 int mds_close(struct ptlrpc_request *req, int offset)
1879 {
1880         struct mds_export_data *med = &req->rq_export->exp_mds_data;
1881         struct obd_device *obd = req->rq_export->exp_obd;
1882         struct mds_body *body;
1883         struct mds_file_data *mfd;
1884         struct lvfs_run_ctxt saved;
1885         struct inode *inode;
1886         int rc, repsize[3] = {sizeof(struct mds_body),
1887                               obd->u.mds.mds_max_mdsize,
1888                               obd->u.mds.mds_max_cookiesize};
1889         ENTRY;
1890         MD_COUNTER_INCREMENT(obd, close);
1891
1892         rc = lustre_pack_reply(req, 3, repsize, NULL);
1893         if (rc) {
1894                 CERROR("lustre_pack_reply: rc = %d\n", rc);
1895                 req->rq_status = rc;
1896         } else {
1897                 MDS_CHECK_RESENT(req, mds_reconstruct_generic(req));
1898         }
1899
1900         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY) {
1901                 DEBUG_REQ(D_HA, req, "close replay");
1902                 memcpy(lustre_msg_buf(req->rq_repmsg, 2, 0),
1903                        lustre_msg_buf(req->rq_reqmsg, offset + 1, 0),
1904                        req->rq_repmsg->buflens[2]);
1905         }
1906
1907         body = lustre_swab_reqbuf(req, offset, sizeof(*body),
1908                                   lustre_swab_mds_body);
1909         if (body == NULL) {
1910                 CERROR("Can't unpack body\n");
1911                 req->rq_status = -EFAULT;
1912                 RETURN(-EFAULT);
1913         }
1914
1915         if (body->flags & MDS_BFLAG_UNCOMMITTED_WRITES)
1916                 /* do some stuff */ ;
1917
1918         mfd = mds_handle2mfd(&body->handle);
1919         if (mfd == NULL) {
1920                 DEBUG_REQ(D_ERROR, req, "no handle for file close ino "LPD64
1921                           ": cookie "LPX64, id_ino(&body->id1), body->handle.cookie);
1922                 req->rq_status = -ESTALE;
1923                 RETURN(-ESTALE);
1924         }
1925
1926         inode = mfd->mfd_dentry->d_inode;
1927
1928         /* child i_alloc_sem protects orphan_dec_test && is_orphan race */
1929         DOWN_WRITE_I_ALLOC_SEM(inode); /* mds_mfd_close drops this */
1930
1931         if (body->flags & MDS_BFLAG_DIRTY_EPOCH) {
1932                 /* the client modified data through the handle
1933                  * we need to care about attrs. -bzzz */
1934                 mds_inode_set_attrs_old(inode);
1935         }
1936
1937         if (mds_inode_is_orphan(inode) && mds_orphan_open_count(inode) == 1) {
1938                 struct mds_body *rep_body;
1939
1940                 rep_body = lustre_msg_buf(req->rq_repmsg, 0,
1941                                           sizeof (*rep_body));
1942                 LASSERT(rep_body != NULL);
1943
1944                 mds_pack_inode2body(obd, rep_body, inode,
1945                                     (body->valid & OBD_MD_FID) ? 1 : 0);
1946                 
1947                 mds_pack_md(obd, req->rq_repmsg, 1, rep_body, 
1948                             inode, MDS_PACK_MD_LOCK, 0);
1949         }
1950         spin_lock(&med->med_open_lock);
1951         list_del(&mfd->mfd_list);
1952         spin_unlock(&med->med_open_lock);
1953
1954         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
1955         req->rq_status = mds_mfd_close(req, offset, obd, mfd, 1);
1956         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
1957
1958         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_CLOSE_PACK)) {
1959                 CERROR("test case OBD_FAIL_MDS_CLOSE_PACK\n");
1960                 req->rq_status = -ENOMEM;
1961                 mds_mfd_put(mfd);
1962                 RETURN(-ENOMEM);
1963         }
1964
1965         mds_mfd_put(mfd);
1966         RETURN(0);
1967 }
1968
1969
1970 int mds_done_writing(struct ptlrpc_request *req, int offset)
1971 {
1972         struct mds_body *body;
1973         int rc, size = sizeof(struct mds_body);
1974         ENTRY;
1975
1976         MDS_CHECK_RESENT(req, mds_reconstruct_generic(req));
1977
1978         body = lustre_swab_reqbuf(req, offset, sizeof(*body),
1979                                   lustre_swab_mds_body);
1980         if (body == NULL) {
1981                 CERROR("Can't unpack body\n");
1982                 req->rq_status = -EFAULT;
1983                 RETURN(-EFAULT);
1984         }
1985
1986         rc = lustre_pack_reply(req, 1, &size, NULL);
1987         if (rc) {
1988                 CERROR("lustre_pack_reply: rc = %d\n", rc);
1989                 req->rq_status = rc;
1990         }
1991
1992         RETURN(0);
1993 }