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