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