Whamcloud - gitweb
f00cac4f2d314bf32b04783e28912330c7122d01
[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                 DEBUG_REQ(D_ERROR, req, "no capa for "DLID4, OLID4(&body->id1));
636         }
637         
638         /* If we have -EEXIST as the status, and we were asked to create
639          * exclusively, we can tell we failed because the file already existed.
640          */
641         if (req->rq_status == -EEXIST &&
642             ((rec->ur_flags & (MDS_OPEN_CREAT | MDS_OPEN_EXCL)) ==
643              (MDS_OPEN_CREAT | MDS_OPEN_EXCL))) {
644                 GOTO(out_dput, 0);
645         }
646
647         /* If we didn't get as far as trying to open, then some locking thing
648          * probably went wrong, and we'll just bail here.
649          */
650         if (!intent_disposition(rep, DISP_OPEN_OPEN))
651                 GOTO(out_dput, 0);
652
653         /* If we failed, then we must have failed opening, so don't look for
654          * file descriptor or anything, just give the client the bad news.
655          */
656         if (req->rq_status)
657                 GOTO(out_dput, 0);
658
659         mfd = NULL;
660         list_for_each(t, &med->med_open_head) {
661                 mfd = list_entry(t, struct mds_file_data, mfd_list);
662                 if (mfd->mfd_xid == req->rq_xid)
663                         break;
664                 mfd = NULL;
665         }
666
667         /* #warning "XXX fixme" bug 2991 */
668         /* Here it used to LASSERT(mfd) if exp_outstanding_reply != NULL.
669          * Now that exp_outstanding_reply is a list, it's just using mfd != NULL
670          * to detect a re-open */
671         if (mfd == NULL) {
672                 mntget(mds->mds_vfsmnt);
673                 CERROR("Re-opened file \n");
674                 mfd = mds_dentry_open(dchild, mds->mds_vfsmnt,
675                                       rec->ur_flags & ~MDS_OPEN_TRUNC, req, rec);
676                 if (!mfd) {
677                         CERROR("mds: out of memory\n");
678                         GOTO(out_dput, req->rq_status = -ENOMEM);
679                 }
680                 put_child = 0;
681         } else {
682                 body->handle.cookie = mfd->mfd_handle.h_cookie;
683                 CDEBUG(D_INODE, "resend mfd %p, cookie "LPX64"\n", mfd,
684                        mfd->mfd_handle.h_cookie);
685         }
686
687  out_dput:
688         if (put_child)
689                 l_dput(dchild);
690         if (parent)
691                 l_dput(parent);
692         EXIT;
693 }
694
695 /* do NOT or the MAY_*'s, you'll get the weakest */
696 int accmode(int flags)
697 {
698         int res = 0;
699
700         if (flags & FMODE_READ)
701                 res = MAY_READ;
702         if (flags & (FMODE_WRITE|MDS_OPEN_TRUNC))
703                 res |= MAY_WRITE;
704         if (flags & FMODE_EXEC)
705                 res = MAY_EXEC;
706         return res;
707 }
708
709 /* Handles object creation, actual opening, and I/O epoch */
710 static int mds_finish_open(struct ptlrpc_request *req, struct dentry *dchild,
711                            struct mds_body *body, int flags, void **handle,
712                            struct mds_update_record *rec, struct ldlm_reply *rep)
713 {
714         struct obd_device *obd = req->rq_export->exp_obd;
715         struct mds_obd *mds = mds_req2mds(req);
716         struct mds_export_data *med = &req->rq_export->u.eu_mds_data;
717         struct mds_file_data *mfd = NULL;
718         obd_id *ids = NULL;
719         unsigned mode;
720         int rc = 0, reply_off;
721         ENTRY;
722
723         /* atomically create objects if necessary */
724         down(&dchild->d_inode->i_sem);
725         mode = dchild->d_inode->i_mode;
726
727         if ((S_ISREG(mode) && !(body->valid & OBD_MD_FLEASIZE)) || 
728             (S_ISDIR(mode) && !(body->valid & OBD_MD_FLDIREA))) {
729                 rc = mds_pack_md(obd, req->rq_repmsg, 2, body,
730                                  dchild->d_inode, 0, 0);
731                 if (rc) {
732                         up(&dchild->d_inode->i_sem);
733                         RETURN(rc);
734                 }
735         }
736
737         if (rec != NULL) {
738                 if ((body->valid & OBD_MD_FLEASIZE) &&
739                     (rec->ur_flags & MDS_OPEN_HAS_EA)) {
740                         up(&dchild->d_inode->i_sem);
741                         RETURN(-EEXIST);
742                 }
743                 
744                 if (!(body->valid & OBD_MD_FLEASIZE)) {
745                         /* no EA: create objects */
746                         rc = mds_create_objects(obd, req, 2, rec,
747                                                 dchild, handle, &ids);
748                         if (rc) {
749                                 CERROR("mds_create_object: rc = %d\n", rc);
750                                 up(&dchild->d_inode->i_sem);
751                                 RETURN(rc);
752                         }
753                 }
754                 
755                 if (S_ISREG(dchild->d_inode->i_mode) &&
756                     (body->valid & OBD_MD_FLEASIZE)) {
757                         rc = mds_revalidate_lov_ea(obd, dchild->d_inode,
758                                                    req->rq_repmsg, 2);
759                         if (!rc)
760                                 rc = mds_pack_md(obd, req->rq_repmsg, 2, body,
761                                                  dchild->d_inode, 0, 0);
762                         if (rc) {
763                                 up(&dchild->d_inode->i_sem);
764                                 RETURN(rc);
765                         }
766                 }
767         }
768
769         reply_off = 3;
770         rc = mds_pack_acl(req, reply_off, body, dchild->d_inode);
771         reply_off += 2;
772
773         if (rc < 0) {
774                 CERROR("pack posix acl: rc = %d\n", rc);
775                 up(&dchild->d_inode->i_sem);
776                 RETURN(rc);
777         }
778
779         rc = mds_pack_gskey(obd, req->rq_repmsg, &reply_off, body, 
780                             dchild->d_inode); 
781         if (rc < 0) {
782                 CERROR("mds_pack_gskey: rc = %d\n", rc);
783                 up(&dchild->d_inode->i_sem);
784                 RETURN(rc);
785         }
786
787         if (S_ISREG(mode)) {
788                 struct lustre_capa capa = {
789                         .lc_uid   = rec->ur_uc.luc_uid,
790                         .lc_op    = capa_op(rec->ur_flags),
791                         .lc_ino   = dchild->d_inode->i_ino,
792                         .lc_igen  = dchild->d_inode->i_generation,
793                         .lc_mdsid = mds->mds_num,
794                 };
795
796                 rc = mds_pack_capa(obd, med, NULL, &capa, req,
797                                    &reply_off, body);
798                 if (rc < 0) {
799                         CERROR("mds_pack_capa: rc = %d\n", rc);
800                         up(&dchild->d_inode->i_sem);
801                         RETURN(rc);
802                 }
803         } else {
804                 reply_off++;
805         }
806
807         /* If the inode has no EA data, then MDSs hold size, mtime */
808         if (S_ISREG(mode) && !(body->valid & OBD_MD_FLEASIZE)) {
809                 body->valid |= (OBD_MD_FLSIZE | OBD_MD_FLBLOCKS |
810                                 OBD_MD_FLATIME | OBD_MD_FLMTIME);
811         }
812
813         up(&dchild->d_inode->i_sem);
814
815         intent_set_disposition(rep, DISP_OPEN_OPEN);
816         mfd = mds_dentry_open(dchild, mds->mds_vfsmnt, flags, req, rec);
817         if (IS_ERR(mfd))
818                 RETURN(PTR_ERR(mfd));
819
820         CDEBUG(D_INODE, "mfd %p, cookie "LPX64"\n", mfd,
821                mfd->mfd_handle.h_cookie);
822
823         if (ids != NULL) {
824                 mds_dt_update_objids(obd, ids);
825                 OBD_FREE(ids, sizeof(*ids) * mds->mds_dt_desc.ld_tgt_count);
826         }
827
828         RETURN(rc);
829 }
830
831 static int mds_open_by_id(struct ptlrpc_request *req,
832                           struct lustre_id *id,
833                           struct mds_body *body, int flags,
834                           struct mds_update_record *rec,
835                           struct ldlm_reply *rep)
836 {
837         struct mds_obd *mds = mds_req2mds(req);
838         struct inode *pending_dir = mds->mds_pending_dir->d_inode;
839         struct dentry *dchild;
840         char idname[LL_ID_NAMELEN];
841         int idlen = 0, rc;
842         void *handle = NULL;
843         ENTRY;
844
845         down(&pending_dir->i_sem);
846         idlen = ll_id2str(idname, id_ino(id), id_gen(id));
847         dchild = lookup_one_len(idname, mds->mds_pending_dir,
848                                 idlen);
849         if (IS_ERR(dchild)) {
850                 up(&pending_dir->i_sem);
851                 rc = PTR_ERR(dchild);
852                 CERROR("error looking up %s in PENDING: rc = %d\n", 
853                        idname, rc);
854                 RETURN(rc);
855         }
856
857         up(&pending_dir->i_sem);
858         if (dchild->d_inode != NULL) {
859                 mds_inode_set_orphan(dchild->d_inode);
860                 mds_pack_inode2body(req2obd(req), body,
861                                     dchild->d_inode, 1);
862                 
863                 intent_set_disposition(rep, DISP_LOOKUP_EXECD);
864                 intent_set_disposition(rep, DISP_LOOKUP_POS);
865                 CWARN("Orphan %s found and opened in PENDING directory\n",
866                        idname);
867                 goto open;
868         }
869         l_dput(dchild);
870
871         /* we didn't find it in PENDING so it isn't an orphan.  See if it was a
872          * regular inode that was previously created. */
873         dchild = mds_id2dentry(req2obd(req), id, NULL);
874         if (IS_ERR(dchild))
875                 RETURN(PTR_ERR(dchild));
876
877         mds_pack_inode2body(req2obd(req), body,
878                             dchild->d_inode, 1);
879         
880         intent_set_disposition(rep, DISP_LOOKUP_EXECD);
881         intent_set_disposition(rep, DISP_LOOKUP_POS);
882
883  open:
884         rc = mds_finish_open(req, dchild, body, flags, &handle, rec, rep);
885         rc = mds_finish_transno(mds, dchild ? dchild->d_inode : NULL, handle,
886                                 req, rc, rep ? rep->lock_policy_res1 : 0);
887         /* XXX what do we do here if mds_finish_transno itself failed? */
888         l_dput(dchild);
889         RETURN(rc);
890 }
891
892 int mds_pin(struct ptlrpc_request *req, int offset)
893 {
894         struct obd_device *obd = req->rq_export->exp_obd;
895         struct mds_body *request_body, *reply_body;
896         struct lvfs_run_ctxt saved;
897         int rc, size = sizeof(*reply_body);
898         ENTRY;
899
900         request_body = lustre_msg_buf(req->rq_reqmsg, offset,
901                                       sizeof(*request_body));
902
903         rc = lustre_pack_reply(req, 1, &size, NULL);
904         if (rc)
905                 RETURN(rc);
906         reply_body = lustre_msg_buf(req->rq_repmsg, 0, sizeof(*reply_body));
907
908         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
909         rc = mds_open_by_id(req, &request_body->id1, reply_body,
910                             request_body->flags, NULL, NULL);
911         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
912
913         RETURN(rc);
914 }
915
916 /*
917  * get a lock on the ino to sync with creation WRT inode reuse (bug 2029). If
918  * child_lockh is NULL we just get the lock as a barrier to wait for other
919  * holders of this lock, and drop it right away again.
920  */
921 int mds_lock_new_child(struct obd_device *obd, struct inode *inode,
922                        struct lustre_handle *child_lockh)
923 {
924         struct ldlm_res_id child_res_id = { .name = { inode->i_ino, 0, 1, 0 } };
925         struct lustre_handle lockh;
926         int lock_flags = LDLM_FL_ATOMIC_CB;
927         int rc;
928         ENTRY;
929
930         if (child_lockh == NULL)
931                 child_lockh = &lockh;
932
933         rc = ldlm_cli_enqueue(NULL, NULL, obd->obd_namespace, child_res_id,
934                               LDLM_PLAIN, NULL, LCK_EX, &lock_flags,
935                               mds_blocking_ast, ldlm_completion_ast, NULL,
936                               NULL, NULL, 0, NULL, child_lockh);
937         if (rc != ELDLM_OK)
938                 CERROR("ldlm_cli_enqueue: %d\n", rc);
939         else if (child_lockh == &lockh)
940                 ldlm_lock_decref(child_lockh, LCK_EX);
941
942         RETURN(rc);
943 }
944
945 int mds_open(struct mds_update_record *rec, int offset,
946              struct ptlrpc_request *req, struct lustre_handle *child_lockh)
947 {
948         /* XXX ALLOCATE _something_ - 464 bytes on stack here */
949         struct obd_device *obd = req->rq_export->exp_obd;
950         struct mds_export_data *med = &req->rq_export->u.eu_mds_data;
951         struct mds_obd *mds = mds_req2mds(req);
952         struct ldlm_reply *rep = NULL;
953         struct mds_body *body = NULL;
954         struct dentry *dchild = NULL, *dparent = NULL;
955         struct lustre_handle parent_lockh[2] = {{0}, {0}};
956         int rc = 0, cleanup_phase = 0, acc_mode, created = 0;
957         int parent_mode = LCK_PR;
958         void *handle = NULL;
959         struct dentry_params dp;
960         struct mea *mea = NULL;
961         int mea_size, update_mode;
962         int child_mode = LCK_PR;
963         struct lustre_id sid;
964         __u64 fid = 0;
965         ENTRY;
966
967         DEBUG_REQ(D_INODE, req, "parent "DLID4" name %*s mode %o",
968                   OLID4(rec->ur_id1), rec->ur_namelen - 1, rec->ur_name,
969                   rec->ur_mode);
970
971         OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_PAUSE_OPEN | OBD_FAIL_ONCE,
972                          (obd_timeout + 1) / 4);
973
974         if (offset == 3) { /* intent */
975                 rep = lustre_msg_buf(req->rq_repmsg, 0, sizeof (*rep));
976                 body = lustre_msg_buf(req->rq_repmsg, 1, sizeof (*body));
977         } else if (offset == 1) { /* non-intent reint */
978                 body = lustre_msg_buf(req->rq_repmsg, 0, sizeof (*body));
979         } else {
980                 body = NULL;
981                 LBUG();
982         }
983
984         MDS_CHECK_RESENT(req, reconstruct_open(rec, offset, req, child_lockh));
985
986         /*
987          * Step 0: If we are passed a id, then we assume the client already
988          * opened this file and is only replaying the RPC, so we open the inode
989          * by fid (at some large expense in security).
990          */
991         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY) {
992                 CDEBUG(D_HA, "open obj "DLID4" name %*s mode %o\n",
993                        OLID4(rec->ur_id2), rec->ur_namelen - 1, 
994                        rec->ur_name, rec->ur_mode);
995
996                 LASSERT(id_ino(rec->ur_id2));
997
998                 rc = mds_open_by_id(req, rec->ur_id2, body,
999                                     rec->ur_flags, rec, rep);
1000                 if (rc != -ENOENT) {
1001                         mds_body_do_reverse_map(med, body);
1002                         RETURN(rc);
1003                 }
1004
1005                 /* We didn't find the correct inode on disk either, so we
1006                  * need to re-create it via a regular replay. */
1007                 LASSERT(rec->ur_flags & MDS_OPEN_CREAT);
1008         } else {
1009                 LASSERT(!id_ino(rec->ur_id2));
1010         }
1011
1012         LASSERT(offset == 3); /* If we got here, we must be called via intent */
1013
1014         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_OPEN_PACK)) {
1015                 CERROR("test case OBD_FAIL_MDS_OPEN_PACK\n");
1016                 RETURN(-ENOMEM);
1017         }
1018
1019         acc_mode = accmode(rec->ur_flags);
1020
1021         /* Step 1: Find and lock the parent */
1022         if (rec->ur_flags & MDS_OPEN_CREAT) {
1023                 /* XXX Well, in fact we only need this lock mode change if
1024                    in addition to O_CREAT, the file does not exist.
1025                    But we do not know if it exists or not yet */
1026                 parent_mode = LCK_PW;
1027         }
1028         
1029         if (rec->ur_namelen == 1) {
1030                 /* client (LMV) wants to open the file by id */
1031                 CDEBUG(D_OTHER, "OPEN by id "DLID4"\n", OLID4(rec->ur_id1));
1032                 dchild = mds_id2dentry(obd, rec->ur_id1, NULL);
1033                 if (IS_ERR(dchild)) {
1034                         rc = PTR_ERR(dparent);
1035                         CERROR("child lookup by an id error %d\n", rc);
1036                         GOTO(cleanup, rc);
1037                 }
1038                 goto got_child;
1039         }
1040        
1041 restart:
1042         dparent = mds_id2locked_dentry(obd, rec->ur_id1, NULL, parent_mode,
1043                                        parent_lockh, &update_mode, rec->ur_name,
1044                                        rec->ur_namelen - 1, MDS_INODELOCK_UPDATE);
1045         if (IS_ERR(dparent)) {
1046                 rc = PTR_ERR(dparent);
1047                 if (rc != -ENOENT) {
1048                         CERROR("parent lookup for "DLID4" failed, error %d\n",
1049                                OLID4(rec->ur_id1), rc);
1050                 } else {
1051                         /* Just cannot find parent - make it look like
1052                            usual negative lookup to avoid extra MDS RPC */
1053                         intent_set_disposition(rep, DISP_LOOKUP_EXECD);
1054                         intent_set_disposition(rep, DISP_LOOKUP_NEG);
1055                 }
1056                 GOTO(cleanup, rc);
1057         }
1058         LASSERT(dparent->d_inode != NULL);
1059
1060         cleanup_phase = 1; /* parent dentry and lock */
1061
1062         /* try to retrieve MEA data for this dir */
1063         rc = mds_md_get_attr(obd, dparent->d_inode, &mea, &mea_size);
1064         if (rc)
1065                 GOTO(cleanup, rc);
1066        
1067         if (mea != NULL && mea->mea_count) {
1068                 /*
1069                  * dir is already splitted, check is requested filename should *
1070                  * live at this MDS or at another one.
1071                  */
1072                 int i;
1073                 i = mea_name2idx(mea, rec->ur_name, rec->ur_namelen - 1);
1074                 if (mea->mea_master != id_group(&mea->mea_ids[i])) {
1075                         CDEBUG(D_OTHER,
1076                                "%s: inapropriate MDS(%d) for %lu/%u:%s."
1077                                " should be %lu(%d)\n", obd->obd_name,
1078                                mea->mea_master, dparent->d_inode->i_ino,
1079                                dparent->d_inode->i_generation, rec->ur_name,
1080                                (unsigned long)id_group(&mea->mea_ids[i]), i);
1081                         GOTO(cleanup, rc = -ERESTART);
1082                 }
1083         }
1084
1085         /* Step 2: Lookup the child */
1086         dchild = ll_lookup_one_len(rec->ur_name, dparent, rec->ur_namelen - 1);
1087         if (IS_ERR(dchild)) {
1088                 rc = PTR_ERR(dchild);
1089                 dchild = NULL; /* don't confuse mds_finish_transno() below */
1090                 GOTO(cleanup, rc);
1091         }
1092
1093 got_child:
1094         cleanup_phase = 2; /* child dentry */
1095
1096         if (dchild->d_flags & DCACHE_CROSS_REF) {
1097                 CDEBUG(D_OTHER, "cross reference: "DLID4"\n", OLID4(rec->ur_id1));
1098                 LASSERT(rec->ur_namelen > 1);
1099                 
1100                 /* we're gonna acquire LOOKUP lock on the child,
1101                  * but we have already locked parent and our order
1102                  * may conflict with enqueue_order_locks(). so,
1103                  * drop parent lock and acquire both the locks in
1104                  * common order. bug 6190 */
1105 #ifdef S_PDIROPS
1106                 if (parent_lockh[1].cookie != 0)
1107                         ldlm_lock_decref(parent_lockh + 1, update_mode);
1108 #endif
1109                 ldlm_lock_decref(parent_lockh, parent_mode);
1110                 l_dput(dchild);
1111                 l_dput(dparent);
1112                 cleanup_phase = 0;
1113
1114                 rc = mds_get_parent_child_locked(obd, mds, rec->ur_id1,
1115                                                  parent_lockh, &dparent,
1116                                                  LCK_PR, MDS_INODELOCK_UPDATE,
1117                                                  &update_mode, rec->ur_name,
1118                                                  rec->ur_namelen, child_lockh,
1119                                                  &dchild, LCK_PR,
1120                                                  MDS_INODELOCK_LOOKUP);
1121
1122                 if (rc)
1123                         GOTO(cleanup, rc);
1124
1125 #ifdef S_PDIROPS
1126                 if (parent_lockh[1].cookie != 0)
1127                         ldlm_lock_decref(parent_lockh + 1, update_mode);
1128 #endif
1129                 ldlm_lock_decref(parent_lockh, LCK_PR);
1130
1131                 if (dchild->d_inode || !(dchild->d_flags & DCACHE_CROSS_REF)) {
1132                         CDEBUG(D_OTHER, "race: name changed (%p)\n",
1133                                dchild->d_inode);
1134                         if (dchild->d_inode)
1135                                 ldlm_lock_decref(child_lockh, LCK_PR);
1136                         l_dput(dchild);
1137                         l_dput(dparent);
1138                         GOTO(restart, rc);
1139                 }
1140
1141                 mds_pack_dentry2body(obd, body, dchild, 1);
1142                 intent_set_disposition(rep, DISP_LOOKUP_POS);
1143                 intent_set_disposition(rep, DISP_LOOKUP_EXECD);
1144
1145                 if (mea)
1146                         OBD_FREE(mea, mea_size);
1147                 l_dput(dchild);
1148                 l_dput(dparent);
1149                 RETURN(rc);
1150         }
1151         
1152         intent_set_disposition(rep, DISP_LOOKUP_EXECD);
1153
1154         if (dchild->d_inode)
1155                 intent_set_disposition(rep, DISP_LOOKUP_POS);
1156         else
1157                 intent_set_disposition(rep, DISP_LOOKUP_NEG);
1158
1159         /* Step 3: If the child was negative, and we're supposed to, create it.*/
1160         if (dchild->d_inode == NULL) {
1161                 unsigned long ino;
1162                 struct iattr iattr;
1163                 struct inode *inode;
1164                 
1165                 /* get parent id: ldlm lock on the parent protects ea */
1166                 rc = mds_read_inode_sid(obd, dparent->d_inode, &sid);
1167                 if (rc) {
1168                         CERROR("can't read parent inode id. ino(%lu) rc(%d)\n",
1169                                 dparent->d_inode->i_ino, rc);
1170                         GOTO(cleanup, rc);
1171                 }
1172
1173                 ino = (unsigned long)id_ino(rec->ur_id2);
1174                 
1175                 rc = mds_try_to_split_dir(obd, dparent, &mea, 0,
1176                                           update_mode);
1177                 
1178                 CDEBUG(D_OTHER, "%s: splitted %lu/%u - %d\n",
1179                        obd->obd_name, dparent->d_inode->i_ino,
1180                        dparent->d_inode->i_generation, rc);
1181
1182                 if (rc > 0) {
1183                         /* dir got splitted */
1184                         GOTO(cleanup, rc = -ERESTART);
1185                 } else if (rc < 0) {
1186                         /* error happened during spitting */
1187                         GOTO(cleanup, rc);
1188                 }
1189
1190                 if (!(rec->ur_flags & MDS_OPEN_CREAT)) {
1191                         /*
1192                          * dentry is negative and we weren't supposed to create
1193                          * object, get out of here.
1194                          */
1195                         GOTO(cleanup, rc = -ENOENT);
1196                 }
1197
1198                 intent_set_disposition(rep, DISP_OPEN_CREATE);
1199                 handle = fsfilt_start(obd, dparent->d_inode, FSFILT_OP_CREATE,
1200                                       NULL);
1201                 if (IS_ERR(handle)) {
1202                         rc = PTR_ERR(handle);
1203                         handle = NULL;
1204                         GOTO(cleanup, rc);
1205                 }
1206                 if (id_fid(rec->ur_id2))
1207                         fid = id_fid(rec->ur_id2); 
1208                 else 
1209                         fid = mds_alloc_fid(obd);
1210                 
1211                 dchild->d_fsdata = (void *) &dp;
1212                 dp.p_ptr = req;
1213                 dp.p_inum = ino;
1214                 
1215                 dp.p_fid = fid;
1216                 dp.p_group = mds->mds_num;
1217
1218                 rc = ll_vfs_create(dparent->d_inode, dchild, rec->ur_mode, NULL);
1219                 if (dchild->d_fsdata == (void *)(unsigned long)ino)
1220                         dchild->d_fsdata = NULL;
1221
1222                 if (rc) {
1223                         CDEBUG(D_INODE, "error during create: %d\n", rc);
1224                         GOTO(cleanup, rc);
1225                 }
1226
1227                 inode = dchild->d_inode;
1228
1229                 if (ino) {
1230                         LASSERT(ino == inode->i_ino);
1231                         
1232                         /* written as part of setattr */
1233                         inode->i_generation = id_gen(rec->ur_id2);
1234                         CDEBUG(D_HA, "recreated ino %lu with gen %u\n",
1235                                inode->i_ino, inode->i_generation);
1236                 }
1237
1238                 created = 1;
1239                 LTIME_S(iattr.ia_atime) = rec->ur_time;
1240                 LTIME_S(iattr.ia_ctime) = rec->ur_time;
1241                 LTIME_S(iattr.ia_mtime) = rec->ur_time;
1242
1243                 iattr.ia_uid = rec->ur_fsuid;
1244                 if (dparent->d_inode->i_mode & S_ISGID)
1245                         iattr.ia_gid = dparent->d_inode->i_gid;
1246                 else
1247                         iattr.ia_gid = rec->ur_fsgid;
1248
1249                 iattr.ia_valid = ATTR_UID | ATTR_GID | ATTR_ATIME |
1250                         ATTR_MTIME | ATTR_CTIME;
1251
1252                 rc = fsfilt_setattr(obd, dchild, handle, &iattr, 0);
1253                 if (rc)
1254                         CERROR("error on child setattr: rc = %d\n", rc);
1255
1256                 iattr.ia_valid = ATTR_MTIME | ATTR_CTIME;
1257
1258                 rc = fsfilt_setattr(obd, dparent, handle, &iattr, 0);
1259                 if (rc)
1260                         CERROR("error on parent setattr: rc = %d\n", rc);
1261                 else {
1262                         MD_COUNTER_INCREMENT(obd, create);
1263                 }
1264
1265                 mds_inode2id(obd, &body->id1, inode, fid);
1266                 mds_update_inode_ids(obd, dchild->d_inode, handle, &body->id1, &sid);
1267
1268                 if ((rec->ur_flags & MDS_OPEN_HAS_KEY)) { 
1269                         rc = mds_set_gskey(obd, handle, dchild->d_inode, 
1270                                            rec->ur_ea2data, rec->ur_ea2datalen, 
1271                                            ATTR_KEY | ATTR_MAC);
1272                         if (rc) {
1273                                 CERROR("error in set gs key rc %d\n", rc); 
1274                         }
1275                 }
1276
1277                 rc = fsfilt_commit(obd, dchild->d_inode->i_sb, dchild->d_inode, handle, 0);
1278                 handle = NULL;
1279                 acc_mode = 0;           /* Don't check for permissions */
1280         }
1281         mds_pack_inode2body(obd, body, dchild->d_inode, 1);
1282         
1283         LASSERTF(!mds_inode_is_orphan(dchild->d_inode),
1284                  "dchild %.*s (%p) inode %p\n", dchild->d_name.len,
1285                  dchild->d_name.name, dchild, dchild->d_inode);
1286
1287         if (S_ISREG(dchild->d_inode->i_mode)) {
1288                 /* Check permissions etc */
1289                 rc = ll_permission(dchild->d_inode, acc_mode, NULL);
1290                 if (rc != 0)
1291                         GOTO(cleanup, rc);
1292
1293                 /* Can't write to a read-only file */
1294                 if (IS_RDONLY(dchild->d_inode) && (acc_mode & MAY_WRITE) != 0)
1295                         GOTO(cleanup, rc = -EPERM);
1296
1297                 /* An append-only file must be opened in append mode for
1298                  * writing */
1299                 if (IS_APPEND(dchild->d_inode) && (acc_mode & MAY_WRITE) != 0 &&
1300                     ((rec->ur_flags & MDS_OPEN_APPEND) == 0 ||
1301                      (rec->ur_flags & MDS_OPEN_TRUNC) != 0))
1302                         GOTO(cleanup, rc = -EPERM);
1303         }
1304
1305         if (!created && (rec->ur_flags & MDS_OPEN_CREAT) &&
1306             (rec->ur_flags & MDS_OPEN_EXCL)) {
1307                 /* File already exists, we didn't just create it, and we
1308                  * were passed O_EXCL; err-or. */
1309                 GOTO(cleanup, rc = -EEXIST); // returns a lock to the client
1310         }
1311
1312         if (S_ISDIR(dchild->d_inode->i_mode)) {
1313                 if (rec->ur_flags & MDS_OPEN_CREAT ||
1314                     rec->ur_flags & FMODE_WRITE) {
1315                         /* we are trying to create or write a exist dir */
1316                         GOTO(cleanup, rc = -EISDIR);
1317                 }
1318                 if (ll_permission(dchild->d_inode, acc_mode, NULL))
1319                         GOTO(cleanup, rc = -EACCES);
1320
1321                 /* 
1322                  * here was checking for possible GNS mount points to skip their
1323                  * open. I removed it as its detection based only on SUID bit is
1324                  * not reliable. Opening such a dirs should not cause any
1325                  * problems, at least tests show that. --umka
1326                  */
1327         }
1328
1329         /* if we are following a symlink, don't open */
1330         if (S_ISLNK(dchild->d_inode->i_mode))
1331                 GOTO(cleanup_no_trans, rc = 0);
1332
1333         if ((rec->ur_flags & MDS_OPEN_DIRECTORY) &&
1334             !S_ISDIR(dchild->d_inode->i_mode))
1335                 GOTO(cleanup, rc = -ENOTDIR);
1336
1337         /* check permission even it's special files */
1338         if (S_ISCHR(dchild->d_inode->i_mode) ||
1339             S_ISBLK(dchild->d_inode->i_mode) ||
1340             S_ISFIFO(dchild->d_inode->i_mode) ||
1341             S_ISSOCK(dchild->d_inode->i_mode)) {
1342                 rc = ll_permission(dchild->d_inode, acc_mode, NULL);
1343                 if (rc != 0)
1344                         GOTO(cleanup, rc);
1345         }
1346
1347         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_OPEN_CREATE)) {
1348                 obd_fail_loc = OBD_FAIL_LDLM_REPLY | OBD_FAIL_ONCE;
1349                 GOTO(cleanup, rc = -EAGAIN);
1350         }
1351
1352 #if 0
1353         /* We cannot use acc_mode here, because it is zeroed in case of
1354            creating a file, so we get wrong lockmode */
1355         if (accmode(rec->ur_flags) & MAY_WRITE)
1356                 child_mode = LCK_CW;
1357         else if (accmode(rec->ur_flags) & MAY_EXEC)
1358                 child_mode = LCK_PR;
1359         else
1360                 child_mode = LCK_CR;
1361
1362         /* Always returning LOOKUP lock if open succesful to guard
1363          * dentry on client. In case of replay we do not get a lock
1364          * assuming that the caller has it already */
1365         if (!(lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY)) {
1366                 struct ldlm_res_id child_res_id = { .name = {0}};
1367                 ldlm_policy_data_t policy;
1368                 int lock_flags = LDLM_FL_ATOMIC_CB;
1369                 
1370                 /* LOOKUP lock will protect dentry on client -bzzz */
1371                 policy.l_inodebits.bits = MDS_INODELOCK_LOOKUP |
1372                                                 MDS_INODELOCK_OPEN;
1373
1374                 child_res_id.name[0] = id_fid(&body->id1);
1375                 child_res_id.name[1] = id_group(&body->id1);
1376
1377                 rc = ldlm_cli_enqueue(NULL, NULL, obd->obd_namespace,
1378                                       child_res_id, LDLM_IBITS, &policy,
1379                                       child_mode, &lock_flags,
1380                                       mds_blocking_ast, ldlm_completion_ast,
1381                                       NULL, NULL, NULL, 0, NULL, child_lockh);
1382                 if (rc != ELDLM_OK)
1383                         GOTO(cleanup, rc);
1384
1385                 cleanup_phase = 3;
1386         }
1387 #else
1388 /* re-enable test 24n in sanity.sh: it needs LOOKUP lock on open */
1389 #endif
1390
1391         /* Step 5: mds_open it */
1392         rc = mds_finish_open(req, dchild, body, rec->ur_flags, &handle,
1393                              rec, rep);
1394         if (rc)
1395                 GOTO(cleanup, rc);
1396
1397         /* reintegration case */
1398         if ((rec->ur_flags & MDS_REINT_REQ)) {
1399                 rc = mds_fidmap_add(obd, &body->id1);
1400                 if (rc < 0) {
1401                         CERROR("can't create fid->ino mapping, err %d\n",
1402                                rc);
1403                 } else {
1404                         rc = 0;
1405                 }
1406         }
1407         
1408         /* if this is a writer, we have to invalidate client's
1409          * update locks in order to make sure they don't use
1410          * isize/iblocks from mds anymore.
1411          * FIXME: can cause a deadlock, use mds_get_parent_child_locked()
1412          * XXX: optimization is to do this for first writer only */
1413         if (accmode(rec->ur_flags) & MAY_WRITE) {
1414                 struct ldlm_res_id child_res_id = { .name = {0}};
1415                 ldlm_policy_data_t sz_policy;
1416                 struct lustre_handle sz_lockh;
1417                 int lock_flags = LDLM_FL_ATOMIC_CB;
1418
1419                 child_res_id.name[0] = id_fid(&body->id1);
1420                 child_res_id.name[1] = id_group(&body->id1);
1421                 sz_policy.l_inodebits.bits = MDS_INODELOCK_UPDATE;
1422
1423                 rc = ldlm_cli_enqueue(NULL, NULL, obd->obd_namespace,
1424                                       child_res_id, LDLM_IBITS, &sz_policy,
1425                                       LCK_PW, &lock_flags, mds_blocking_ast,
1426                                       ldlm_completion_ast, NULL, NULL, NULL,
1427                                       0, NULL, &sz_lockh);
1428                 if (rc == ELDLM_OK)
1429                         ldlm_lock_decref(&sz_lockh, LCK_PW);
1430                 else
1431                         CERROR("can't invalidate client's update locks\n");
1432         }
1433
1434         EXIT;
1435 cleanup:
1436         rc = mds_finish_transno(mds, dchild ? dchild->d_inode : NULL, handle,
1437                                 req, rc, rep ? rep->lock_policy_res1 : 0);
1438
1439 cleanup_no_trans:
1440         switch (cleanup_phase) {
1441         case 3:
1442                 if (rc) {
1443                         ldlm_lock_decref(child_lockh, child_mode);
1444                         child_lockh->cookie = 0;
1445                 }
1446         case 2:
1447                 if (rc && created) {
1448                         int err = vfs_unlink(dparent->d_inode, dchild);
1449                         if (err) {
1450                                 CERROR("unlink(%.*s) in error path: %d\n",
1451                                        dchild->d_name.len, dchild->d_name.name,
1452                                        err);
1453                         }
1454                 } else if (created) {
1455                         mds_lock_new_child(obd, dchild->d_inode, NULL);
1456                 }
1457                 /* audit stuff for OPEN */
1458                 if (offset == 3) {
1459                         mds_audit(req, dchild, rec->ur_name,
1460                                   rec->ur_namelen - 1, AUDIT_OPEN, rc);
1461                 }
1462
1463                 l_dput(dchild);
1464         case 1:
1465                 if (dparent == NULL)
1466                         break;
1467
1468                 l_dput(dparent);
1469 #ifdef S_PDIROPS
1470                 if (parent_lockh[1].cookie != 0)
1471                         ldlm_lock_decref(parent_lockh + 1, update_mode);
1472 #endif
1473                 if (rc)
1474                         ldlm_lock_decref(parent_lockh, parent_mode);
1475                 else
1476                         ptlrpc_save_lock (req, parent_lockh, parent_mode);
1477         }
1478         if (mea)
1479                 OBD_FREE(mea, mea_size);
1480         if (rc == 0)
1481                 atomic_inc(&mds->mds_open_count);
1482
1483         mds_body_do_reverse_map(med, body);
1484
1485         /*
1486          * If we have not taken the "open" lock, we may not return 0 here,
1487          * because caller expects 0 to mean "lock is taken", and it needs
1488          * nonzero return here for caller to return EDLM_LOCK_ABORTED to
1489          * client. Later caller should rewrite the return value back to zero
1490          * if it to be used any further.
1491          */
1492         if ((cleanup_phase != 3) && !rc)
1493                 rc = ENOLCK;
1494
1495         RETURN(rc);
1496 }
1497
1498 /* Close a "file descriptor" and possibly unlink an orphan from the
1499  * PENDING directory.  Caller must hold child->i_sem, this drops it. 
1500  *
1501  * If we are being called from mds_disconnect() because the client has
1502  * disappeared, then req == NULL and we do not update last_rcvd because
1503  * there is nothing that could be recovered by the client at this stage
1504  * (it will not even _have_ an entry in last_rcvd anymore).
1505  *
1506  * Returns EAGAIN if the client needs to get more data and re-close. */
1507 int mds_mfd_close(struct ptlrpc_request *req, int offset,
1508                   struct obd_device *obd, struct mds_file_data *mfd,
1509                   int unlink_orphan)
1510 {
1511         struct inode *inode = mfd->mfd_dentry->d_inode;
1512         char idname[LL_ID_NAMELEN];
1513         int last_orphan, idlen, rc = 0, cleanup_phase = 0;
1514         struct dentry *pending_child = NULL;
1515         struct mds_obd *mds = &obd->u.mds;
1516         struct inode *pending_dir = mds->mds_pending_dir->d_inode;
1517         void *handle = NULL;
1518         struct mds_body *request_body = NULL, *reply_body = NULL;
1519         struct dentry_params dp;
1520         struct iattr iattr = { 0 };
1521         struct llog_create_locks *lcl = NULL;
1522         ENTRY;
1523
1524         if (req && req->rq_reqmsg != NULL)
1525                 request_body = lustre_msg_buf(req->rq_reqmsg, offset,
1526                                               sizeof(*request_body));
1527         if (req && req->rq_repmsg != NULL)
1528                 reply_body = lustre_msg_buf(req->rq_repmsg, 0,
1529                                             sizeof(*reply_body));
1530
1531         if (request_body && (request_body->valid & OBD_MD_FLSIZE)) {
1532                 /* we set i_size/i_blocks here, nobody will see
1533                  * them until all write references are dropped.
1534                  * btw, we hold one reference */
1535                 LASSERT(mfd->mfd_mode & FMODE_WRITE);
1536                 LASSERT(request_body->valid & OBD_MD_FLEPOCH);
1537                 LASSERT(MDS_FILTERDATA(inode));
1538                 if (MDS_FILTERDATA(inode)->io_epoch != request_body->io_epoch)
1539                         CDEBUG(D_ERROR, "try to update attr. for old epoch "
1540                                LPD64" while current "LPD64"\n",
1541                                MDS_FILTERDATA(inode)->io_epoch,
1542                                request_body->io_epoch);
1543                 i_size_write(inode, request_body->size);
1544                 inode->i_blocks = request_body->blocks;
1545                 LTIME_S(inode->i_mtime) = (request_body->mtime);
1546
1547                 LTIME_S(iattr.ia_mtime) = request_body->mtime;
1548                 iattr.ia_size = inode->i_size;
1549                 iattr.ia_valid |= ATTR_SIZE|ATTR_MTIME;
1550                 mds_inode_unset_attrs_old(inode);
1551         }
1552
1553         idlen = ll_id2str(idname, inode->i_ino, inode->i_generation);
1554         CDEBUG(D_INODE, "inode %p ino %s nlink %d orphan %d\n", inode, 
1555                idname, inode->i_nlink, mds_orphan_open_count(inode));
1556
1557         last_orphan = mds_orphan_open_dec_test(inode) &&
1558                 mds_inode_is_orphan(inode);
1559         UP_WRITE_I_ALLOC_SEM(inode);
1560
1561         /* this is half of the actual "close" */
1562         if (mfd->mfd_mode & FMODE_WRITE) {
1563                 rc = mds_put_write_access(mds, inode, request_body,
1564                                           last_orphan && unlink_orphan);
1565         } else if (mfd->mfd_mode & FMODE_EXEC) {
1566                 mds_allow_write_access(inode);
1567         }
1568
1569         if (last_orphan && unlink_orphan) {
1570                 struct lov_mds_md *lmm = NULL;
1571                 int stripe_count = 0;
1572                 LASSERT(rc == 0); /* mds_put_write_access must have succeeded */
1573
1574                 CDEBUG(D_HA, "destroying orphan object %s\n", idname);
1575                 
1576                 if ((S_ISREG(inode->i_mode) && inode->i_nlink != 1) ||
1577                     (S_ISDIR(inode->i_mode) && inode->i_nlink != 2))
1578                         CERROR("found \"orphan\" %s %s with link count %d\n",
1579                                S_ISREG(inode->i_mode) ? "file" : "dir",
1580                                idname, inode->i_nlink);
1581                 /*
1582                  * sadly, there is no easy way to save pending_child from
1583                  * mds_reint_unlink() into mfd, so we need to re-lookup, but
1584                  * normally it will still be in the dcache.
1585                  */
1586                 down(&pending_dir->i_sem);
1587                 cleanup_phase = 1; /* up(i_sem) when finished */
1588                 pending_child = lookup_one_len(idname, mds->mds_pending_dir,
1589                                                idlen);
1590                 if (IS_ERR(pending_child))
1591                         GOTO(cleanup, rc = PTR_ERR(pending_child));
1592                 if (pending_child->d_inode == NULL) {
1593                         CERROR("orphan %s has been removed\n", idname);
1594                         GOTO(cleanup, rc = 0);
1595                 }
1596
1597                 cleanup_phase = 2; /* dput(pending_child) when finished */
1598                 if (S_ISDIR(pending_child->d_inode->i_mode)) {
1599                         rc = vfs_rmdir(pending_dir, pending_child);
1600                         if (rc)
1601                                 CERROR("error unlinking orphan dir %s: rc %d\n",
1602                                        idname, rc);
1603                         goto out;
1604                 }
1605
1606                 if (req != NULL && req->rq_repmsg != NULL) {
1607                         lmm = lustre_msg_buf(req->rq_repmsg, 1, 0);
1608                         stripe_count = le32_to_cpu(lmm->lmm_stripe_count);
1609                 }
1610
1611                 handle = fsfilt_start_log(obd, pending_dir, FSFILT_OP_UNLINK,
1612                                           NULL, stripe_count);
1613                 if (IS_ERR(handle)) {
1614                         rc = PTR_ERR(handle);
1615                         handle = NULL;
1616                         GOTO(cleanup, rc);
1617                 }
1618
1619                 pending_child->d_fsdata = (void *) &dp;
1620                 dp.p_inum = 0;
1621                 dp.p_ptr = req;
1622                 rc = vfs_unlink(pending_dir, pending_child);
1623                 if (rc)
1624                         CERROR("error unlinking orphan %s: rc %d\n",
1625                                idname, rc);
1626
1627                 if (req != NULL && req->rq_repmsg != NULL &&
1628                     (reply_body->valid & OBD_MD_FLEASIZE) &&
1629                     mds_log_op_unlink(obd, pending_child->d_inode,
1630                                       lmm, req->rq_repmsg->buflens[1],
1631                                       lustre_msg_buf(req->rq_repmsg, 2, 0),
1632                                       req->rq_repmsg->buflens[2], &lcl) > 0) {
1633                         reply_body->valid |= OBD_MD_FLCOOKIE;
1634                 }
1635                 
1636                 rc = mds_destroy_object(obd, inode, 1);
1637                 if (rc) {
1638                         CERROR("cannot destroy OSS object on close, err %d\n",
1639                                rc);
1640                         rc = 0;
1641                 }
1642
1643                 goto out; /* Don't bother updating attrs on unlinked inode */
1644         } else if ((mfd->mfd_mode & FMODE_WRITE) && rc == 0) {
1645                 /* last writer closed file - let's update i_size/i_blocks */
1646                 mds_validate_size(obd, inode, request_body, &iattr);
1647         }
1648
1649 #if 0
1650         if (request_body != NULL && mfd->mfd_mode & FMODE_WRITE && rc == 0) {
1651                 /* Update the on-disk attributes if this was the last write
1652                  * close, and all information was provided (i.e., rc == 0)
1653                  *
1654                  * XXX this should probably be abstracted with mds_reint_setattr
1655                  */
1656
1657                 if (request_body->valid & OBD_MD_FLMTIME &&
1658                     LTIME_S(request_body->mtime) > LTIME_S(inode->i_mtime)) {
1659                         LTIME_S(iattr.ia_mtime) = LTIME_S(request_body->mtime);
1660                         iattr.ia_valid |= ATTR_MTIME;
1661                 }
1662                 if (request_body->valid & OBD_MD_FLCTIME &&
1663                     LTIME_S(request_body->ctime) > LTIME_S(inode->i_ctime)) {
1664                         LTIME_S(iattr.ia_ctime) = LTIME_S(request_body->ctime);
1665                         iattr.ia_valid |= ATTR_CTIME;
1666                 }
1667
1668                 /* XXX can't set block count with fsfilt_setattr (!) */
1669                 if (request_body->valid & OBD_MD_FLSIZE) {
1670                         iattr.ia_valid |= ATTR_SIZE;
1671                         iattr.ia_size = request_body->size;
1672                 }
1673                 /* if (request_body->valid & OBD_MD_FLBLOCKS) {
1674                         iattr.ia_valid |= ATTR_BLOCKS;
1675                         iattr.ia_blocks = request_body->blocks
1676                 } */
1677
1678         }
1679 #endif
1680         if (request_body != NULL && request_body->valid & OBD_MD_FLATIME) {
1681                 /* Only start a transaction to write out only the atime if
1682                  * it is more out-of-date than the specified limit.  If we
1683                  * are already going to write out the atime then do it anyway.
1684                  * */
1685                 if ((request_body->atime >
1686                      LTIME_S(inode->i_atime) + MAX_ATIME_DIFF) ||
1687                     (iattr.ia_valid != 0 &&
1688                      request_body->atime > LTIME_S(inode->i_atime))) {
1689                         LTIME_S(iattr.ia_atime) = request_body->atime;
1690                         iattr.ia_valid |= ATTR_ATIME;
1691                 }
1692         }
1693
1694         if (iattr.ia_valid != 0) {
1695                 if (handle == NULL)
1696                         handle = fsfilt_start(obd,inode,FSFILT_OP_SETATTR,NULL);
1697                 if (IS_ERR(handle))
1698                         GOTO(cleanup, rc = PTR_ERR(handle));
1699                 rc = fsfilt_setattr(obd, mfd->mfd_dentry, handle, &iattr, 0);
1700                 if (rc)
1701                         CERROR("error in setattr(%s): rc %d\n", idname, rc);
1702         }
1703 out:
1704         /* If other clients have this file open for write, rc will be > 0 */
1705         if (rc > 0)
1706                 rc = 0;
1707         if (!obd->obd_recovering && mds_inode_has_old_attrs(inode)
1708                         && !mds_inode_is_orphan(inode)
1709                         && atomic_read(&inode->i_writecount) == 0
1710                         && inode->i_nlink != 0) {
1711                 CERROR("leave inode %lu/%u with old attributes (nlink = %d)\n",
1712                        inode->i_ino, inode->i_generation, inode->i_nlink);
1713         }
1714         l_dput(mfd->mfd_dentry);
1715         mds_mfd_destroy(mfd);
1716
1717  cleanup:
1718         atomic_dec(&mds->mds_open_count);
1719         if (req != NULL && reply_body != NULL) {
1720                 rc = mds_finish_transno(mds, pending_dir, handle, req, rc, 0);
1721         } else if (handle) {
1722                 int err, force_sync = 0;
1723
1724                 if (req && req->rq_export)
1725                         force_sync = req->rq_export->exp_sync;
1726
1727                 err = fsfilt_commit(obd, mds->mds_sb, pending_dir, handle, 
1728                                     force_sync);
1729                 if (err) {
1730                         CERROR("error committing close: %d\n", err);
1731                         if (!rc)
1732                                 rc = err;
1733                 }
1734         }
1735
1736         switch (cleanup_phase) {
1737         case 2:
1738                 if (lcl != NULL)
1739                         ptlrpc_save_llog_lock(req, lcl);
1740                 dput(pending_child);
1741         case 1:
1742                 up(&pending_dir->i_sem);
1743         }
1744         RETURN(rc);
1745 }
1746
1747 static int mds_extent_lock_callback(struct ldlm_lock *lock,
1748                                     struct ldlm_lock_desc *new, void *data,
1749                                     int flag)
1750 {
1751         struct lustre_handle lockh = { 0 };
1752         int rc;
1753         ENTRY;
1754
1755         switch (flag) {
1756         case LDLM_CB_BLOCKING:
1757                 ldlm_lock2handle(lock, &lockh);
1758                 rc = ldlm_cli_cancel(&lockh);
1759                 if (rc != ELDLM_OK)
1760                         CERROR("ldlm_cli_cancel failed: %d\n", rc);
1761                 break;
1762         case LDLM_CB_CANCELING: {
1763                 break;
1764         }
1765         default:
1766                 LBUG();
1767         }
1768
1769         RETURN(0);
1770 }
1771 __u64 lov_merge_size(struct lov_stripe_md *lsm, int kms);
1772 __u64 lov_merge_blocks(struct lov_stripe_md *lsm);
1773 __u64 lov_merge_mtime(struct lov_stripe_md *lsm, __u64 current_time);
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         LTIME_S(inode->i_mtime) = lov_merge_mtime(lsm, LTIME_S(inode->i_mtime));
1863         iattr->ia_size = inode->i_size;
1864         LTIME_S(iattr->ia_mtime) = LTIME_S(inode->i_mtime);
1865         iattr->ia_valid |= ATTR_SIZE | ATTR_MTIME;
1866         
1867         DOWN_WRITE_I_ALLOC_SEM(inode);
1868         mds_inode_unset_attrs_old(inode);
1869         UP_WRITE_I_ALLOC_SEM(inode);
1870
1871         obd_cancel(obd->u.mds.mds_dt_exp, lsm, LCK_PR, &lockh);
1872         
1873 cleanup:
1874         if (lsm != NULL)
1875                 obd_free_memmd(obd->u.mds.mds_dt_exp, &lsm);
1876         if (lmm != NULL)
1877                 OBD_FREE(lmm, len);
1878         RETURN(rc);
1879 }
1880
1881 int mds_close(struct ptlrpc_request *req, int offset)
1882 {
1883         struct mds_export_data *med = &req->rq_export->exp_mds_data;
1884         struct obd_device *obd = req->rq_export->exp_obd;
1885         struct mds_body *body;
1886         struct mds_file_data *mfd;
1887         struct lvfs_run_ctxt saved;
1888         struct inode *inode;
1889         int rc, repsize[3] = {sizeof(struct mds_body),
1890                               obd->u.mds.mds_max_mdsize,
1891                               obd->u.mds.mds_max_cookiesize};
1892         ENTRY;
1893         MD_COUNTER_INCREMENT(obd, close);
1894
1895         rc = lustre_pack_reply(req, 3, repsize, NULL);
1896         if (rc) {
1897                 CERROR("lustre_pack_reply: rc = %d\n", rc);
1898                 req->rq_status = rc;
1899         } else {
1900                 MDS_CHECK_RESENT(req, mds_reconstruct_generic(req));
1901         }
1902
1903         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY) {
1904                 DEBUG_REQ(D_HA, req, "close replay");
1905                 memcpy(lustre_msg_buf(req->rq_repmsg, 2, 0),
1906                        lustre_msg_buf(req->rq_reqmsg, offset + 1, 0),
1907                        req->rq_repmsg->buflens[2]);
1908         }
1909
1910         body = lustre_swab_reqbuf(req, offset, sizeof(*body),
1911                                   lustre_swab_mds_body);
1912         if (body == NULL) {
1913                 CERROR("Can't unpack body\n");
1914                 req->rq_status = -EFAULT;
1915                 RETURN(-EFAULT);
1916         }
1917
1918         if (body->flags & MDS_BFLAG_UNCOMMITTED_WRITES)
1919                 /* do some stuff */ ;
1920
1921         mfd = mds_handle2mfd(&body->handle);
1922         if (mfd == NULL) {
1923                 DEBUG_REQ(D_ERROR, req, "no handle for file close ino "LPD64
1924                           ": cookie "LPX64, id_ino(&body->id1), body->handle.cookie);
1925                 req->rq_status = -ESTALE;
1926                 RETURN(-ESTALE);
1927         }
1928
1929         inode = mfd->mfd_dentry->d_inode;
1930
1931         /* child i_alloc_sem protects orphan_dec_test && is_orphan race */
1932         DOWN_WRITE_I_ALLOC_SEM(inode); /* mds_mfd_close drops this */
1933
1934         if (body->flags & MDS_BFLAG_DIRTY_EPOCH) {
1935                 /* the client modified data through the handle
1936                  * we need to care about attrs. -bzzz */
1937                 mds_inode_set_attrs_old(inode);
1938         }
1939
1940         if (mds_inode_is_orphan(inode) && mds_orphan_open_count(inode) == 1) {
1941                 struct mds_body *rep_body;
1942
1943                 rep_body = lustre_msg_buf(req->rq_repmsg, 0,
1944                                           sizeof (*rep_body));
1945                 LASSERT(rep_body != NULL);
1946
1947                 mds_pack_inode2body(obd, rep_body, inode,
1948                                     (body->valid & OBD_MD_FID) ? 1 : 0);
1949                 
1950                 mds_pack_md(obd, req->rq_repmsg, 1, rep_body, 
1951                             inode, MDS_PACK_MD_LOCK, 0);
1952         }
1953         spin_lock(&med->med_open_lock);
1954         list_del(&mfd->mfd_list);
1955         spin_unlock(&med->med_open_lock);
1956
1957         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
1958         req->rq_status = mds_mfd_close(req, offset, obd, mfd, 1);
1959         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
1960
1961         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_CLOSE_PACK)) {
1962                 CERROR("test case OBD_FAIL_MDS_CLOSE_PACK\n");
1963                 req->rq_status = -ENOMEM;
1964                 mds_mfd_put(mfd);
1965                 RETURN(-ENOMEM);
1966         }
1967
1968         mds_mfd_put(mfd);
1969         RETURN(0);
1970 }
1971
1972
1973 int mds_done_writing(struct ptlrpc_request *req, int offset)
1974 {
1975         struct mds_body *body;
1976         int rc, size = sizeof(struct mds_body);
1977         ENTRY;
1978
1979         MDS_CHECK_RESENT(req, mds_reconstruct_generic(req));
1980
1981         body = lustre_swab_reqbuf(req, offset, sizeof(*body),
1982                                   lustre_swab_mds_body);
1983         if (body == NULL) {
1984                 CERROR("Can't unpack body\n");
1985                 req->rq_status = -EFAULT;
1986                 RETURN(-EFAULT);
1987         }
1988
1989         rc = lustre_pack_reply(req, 1, &size, NULL);
1990         if (rc) {
1991                 CERROR("lustre_pack_reply: rc = %d\n", rc);
1992                 req->rq_status = rc;
1993         }
1994
1995         RETURN(0);
1996 }