Whamcloud - gitweb
e2bea57701fcbd796ddd3be64072dc7b4fc62c16
[fs/lustre-release.git] / lustre / mdt / mdt_open.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/mdt/mdt_open.c
37  *
38  * Lustre Metadata Target (mdt) open/close file handling
39  *
40  * Author: Huang Hua <huanghua@clusterfs.com>
41  */
42
43 #ifndef EXPORT_SYMTAB
44 # define EXPORT_SYMTAB
45 #endif
46 #define DEBUG_SUBSYSTEM S_MDS
47
48 #include <lustre_acl.h>
49 #include <lustre_mds.h>
50 #include "mdt_internal.h"
51
52 /* we do nothing because we do not have refcount now */
53 static void mdt_mfd_get(void *mfdp)
54 {
55 }
56
57 /* Create a new mdt_file_data struct, initialize it,
58  * and insert it to global hash table */
59 struct mdt_file_data *mdt_mfd_new(void)
60 {
61         struct mdt_file_data *mfd;
62         ENTRY;
63
64         OBD_ALLOC_PTR(mfd);
65         if (mfd != NULL) {
66                 CFS_INIT_LIST_HEAD(&mfd->mfd_handle.h_link);
67                 CFS_INIT_LIST_HEAD(&mfd->mfd_list);
68                 class_handle_hash(&mfd->mfd_handle, mdt_mfd_get);
69         }
70         RETURN(mfd);
71 }
72
73 /*
74  * Find the mfd pointed to by handle in global hash table.
75  * In case of replay the handle is obsoleted
76  * but mfd can be found in mfd list by that handle
77  */
78 struct mdt_file_data *mdt_handle2mfd(struct mdt_thread_info *info,
79                                      const struct lustre_handle *handle)
80 {
81         struct ptlrpc_request *req = mdt_info_req(info);
82         struct mdt_file_data  *mfd;
83         ENTRY;
84
85         LASSERT(handle != NULL);
86         mfd = class_handle2object(handle->cookie);
87         /* during dw/setattr replay the mfd can be found by old handle */
88         if (mfd == NULL &&
89             lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY) {
90                 struct mdt_export_data *med = &req->rq_export->exp_mdt_data;
91                 list_for_each_entry(mfd, &med->med_open_head, mfd_list) {
92                         if (mfd->mfd_old_handle.cookie == handle->cookie)
93                                 RETURN (mfd);
94                 }
95                 mfd = NULL;
96         }
97         RETURN (mfd);
98 }
99
100 /* free mfd */
101 void mdt_mfd_free(struct mdt_file_data *mfd)
102 {
103         LASSERT(list_empty(&mfd->mfd_list));
104         OBD_FREE_RCU(mfd, sizeof *mfd, &mfd->mfd_handle);
105 }
106
107 static int mdt_create_data(struct mdt_thread_info *info,
108                            struct mdt_object *p, struct mdt_object *o)
109 {
110         struct md_op_spec     *spec = &info->mti_spec;
111         struct md_attr        *ma = &info->mti_attr;
112         int rc;
113         ENTRY;
114
115         if (!md_should_create(spec->sp_cr_flags))
116                 RETURN(0);
117
118         ma->ma_need = MA_INODE | MA_LOV;
119         ma->ma_valid = 0;
120         rc = mdo_create_data(info->mti_env,
121                              p ? mdt_object_child(p) : NULL,
122                              mdt_object_child(o), spec, ma);
123         RETURN(rc);
124 }
125
126 static int mdt_epoch_opened(struct mdt_object *mo)
127 {
128         return mo->mot_epochcount;
129 }
130
131 int mdt_sizeonmds_enabled(struct mdt_object *mo)
132 {
133         return !mo->mot_ioepoch;
134 }
135
136 /* Re-enable Size-on-MDS. */
137 void mdt_sizeonmds_enable(struct mdt_thread_info *info,
138                           struct mdt_object *mo)
139 {
140        spin_lock(&info->mti_mdt->mdt_ioepoch_lock);
141        if (info->mti_epoch->ioepoch == mo->mot_ioepoch) {
142                 LASSERT(!mdt_epoch_opened(mo));
143                 mo->mot_ioepoch = 0;
144                 mo->mot_flags = 0;
145        }
146        spin_unlock(&info->mti_mdt->mdt_ioepoch_lock);
147 }
148
149 /* Open the epoch. Epoch open is allowed if @writecount is not negative.
150  * The epoch and writecount handling is performed under the mdt_ioepoch_lock. */
151 int mdt_epoch_open(struct mdt_thread_info *info, struct mdt_object *o)
152 {
153         struct mdt_device *mdt = info->mti_mdt;
154         int cancel = 0;
155         int rc = 0;
156         ENTRY;
157
158         if (!(mdt_conn_flags(info) & OBD_CONNECT_SOM) ||
159             !S_ISREG(lu_object_attr(&o->mot_obj.mo_lu)))
160                 RETURN(0);
161
162         spin_lock(&mdt->mdt_ioepoch_lock);
163         if (mdt_epoch_opened(o)) {
164                 /* Epoch continues even if there is no writers yet. */
165                 CDEBUG(D_INODE, "continue epoch "LPU64" for "DFID"\n",
166                        o->mot_ioepoch, PFID(mdt_object_fid(o)));
167         } else {
168                 if (info->mti_replayepoch > mdt->mdt_ioepoch)
169                         mdt->mdt_ioepoch = info->mti_replayepoch;
170                 else
171                         mdt->mdt_ioepoch++;
172                 o->mot_ioepoch = info->mti_replayepoch ?
173                         info->mti_replayepoch : mdt->mdt_ioepoch;
174                 CDEBUG(D_INODE, "starting epoch "LPU64" for "DFID"\n",
175                        mdt->mdt_ioepoch, PFID(mdt_object_fid(o)));
176                 cancel = 1;
177         }
178         o->mot_epochcount++;
179         spin_unlock(&mdt->mdt_ioepoch_lock);
180
181         /* Cancel Size-on-MDS attributes on clients if not truncate.
182          * In the later case, mdt_reint_setattr will do it. */
183         if (cancel && (info->mti_rr.rr_fid1 != NULL)) {
184                 struct mdt_lock_handle  *lh = &info->mti_lh[MDT_LH_CHILD];
185                 mdt_lock_reg_init(lh, LCK_EX);
186                 rc = mdt_object_lock(info, o, lh, MDS_INODELOCK_UPDATE,
187                                      MDT_LOCAL_LOCK);
188                 if (rc == 0)
189                         mdt_object_unlock(info, o, lh, 1);
190         }
191         RETURN(rc);
192 }
193
194 /* Update the on-disk attributes if needed and re-enable Size-on-MDS caching. */
195 static int mdt_sizeonmds_update(struct mdt_thread_info *info,
196                                 struct mdt_object *o)
197 {
198         ENTRY;
199
200         CDEBUG(D_INODE, "Closing epoch "LPU64" on "DFID". Count %d\n",
201                o->mot_ioepoch, PFID(mdt_object_fid(o)), o->mot_epochcount);
202
203         if (info->mti_attr.ma_attr.la_valid & LA_SIZE) {
204                 /* Do Size-on-MDS attribute update.
205                  * Size-on-MDS is re-enabled inside. */
206                 /* XXX: since we have opened the file, it is unnecessary
207                  * to check permission when close it. Between the "open"
208                  * and "close", maybe someone has changed the file mode
209                  * or flags, or the file created mode do not permit wirte,
210                  * and so on. Just set MDS_PERM_BYPASS for all the cases. */
211                 info->mti_attr.ma_attr_flags |= MDS_PERM_BYPASS | MDS_SOM;
212                 info->mti_attr.ma_attr.la_valid &= LA_SIZE | LA_BLOCKS |
213                                                 LA_ATIME | LA_MTIME | LA_CTIME;
214                 RETURN(mdt_attr_set(info, o, 0));
215         } else
216                 mdt_sizeonmds_enable(info, o);
217         RETURN(0);
218 }
219
220 /* Epoch closes.
221  * Returns 1 if epoch does not close.
222  * Returns 0 if epoch closes.
223  * Returns -EAGAIN if epoch closes but an Size-on-MDS Update is still needed
224  * from the client. */
225 static int mdt_epoch_close(struct mdt_thread_info *info, struct mdt_object *o)
226 {
227         int eviction = (mdt_info_req(info) == NULL ? 1 : 0);
228         struct lu_attr *la = &info->mti_attr.ma_attr;
229         int achange = 0;
230         int opened;
231         int rc = 1;
232         ENTRY;
233
234         if (!(mdt_conn_flags(info) & OBD_CONNECT_SOM) ||
235             !S_ISREG(lu_object_attr(&o->mot_obj.mo_lu)))
236                 RETURN(0);
237
238         spin_lock(&info->mti_mdt->mdt_ioepoch_lock);
239
240         /* Epoch closes only if client tells about it or eviction occures. */
241         if (eviction || (info->mti_epoch->flags & MF_EPOCH_CLOSE)) {
242                 LASSERT(o->mot_epochcount);
243                 o->mot_epochcount--;
244
245                 CDEBUG(D_INODE, "Closing epoch "LPU64" on "DFID". Count %d\n",
246                        o->mot_ioepoch, PFID(mdt_object_fid(o)),
247                        o->mot_epochcount);
248
249                 if (!eviction)
250                         achange = (info->mti_epoch->flags & MF_SOM_CHANGE);
251
252                 rc = 0;
253                 if (!eviction && !mdt_epoch_opened(o)) {
254                         /* Epoch ends. Is an Size-on-MDS update needed? */
255                         if (o->mot_flags & MF_SOM_CHANGE) {
256                                 /* Some previous writer changed the attribute.
257                                  * Do not believe to the current Size-on-MDS
258                                  * update, re-ask client. */
259                                 rc = -EAGAIN;
260                         } else if (!(la->la_valid & LA_SIZE) && achange) {
261                                 /* Attributes were changed by the last writer
262                                  * only but no Size-on-MDS update is received.*/
263                                 rc = -EAGAIN;
264                         }
265                 }
266
267                 if (achange || eviction)
268                         o->mot_flags |= MF_SOM_CHANGE;
269         }
270
271         opened = mdt_epoch_opened(o);
272         spin_unlock(&info->mti_mdt->mdt_ioepoch_lock);
273
274         /* If eviction occurred, do nothing. */
275         if ((rc == 0) && !opened && !eviction) {
276                 /* Epoch ends and wanted Size-on-MDS update is obtained. */
277                 rc = mdt_sizeonmds_update(info, o);
278                 /* Avoid the following setattrs of these attributes, e.g.
279                  * for atime update. */
280                 info->mti_attr.ma_valid = 0;
281         }
282         RETURN(rc);
283 }
284
285 int mdt_write_read(struct mdt_device *mdt, struct mdt_object *o)
286 {
287         int rc = 0;
288         ENTRY;
289         spin_lock(&mdt->mdt_ioepoch_lock);
290         rc = o->mot_writecount;
291         spin_unlock(&mdt->mdt_ioepoch_lock);
292         RETURN(rc);
293 }
294
295 int mdt_write_get(struct mdt_device *mdt, struct mdt_object *o)
296 {
297         int rc = 0;
298         ENTRY;
299         spin_lock(&mdt->mdt_ioepoch_lock);
300         if (o->mot_writecount < 0)
301                 rc = -ETXTBSY;
302         else
303                 o->mot_writecount++;
304         spin_unlock(&mdt->mdt_ioepoch_lock);
305         RETURN(rc);
306 }
307
308 static void mdt_write_put(struct mdt_device *mdt, struct mdt_object *o)
309 {
310         ENTRY;
311         spin_lock(&mdt->mdt_ioepoch_lock);
312         o->mot_writecount--;
313         spin_unlock(&mdt->mdt_ioepoch_lock);
314         EXIT;
315 }
316
317 static int mdt_write_deny(struct mdt_device *mdt, struct mdt_object *o)
318 {
319         int rc = 0;
320         ENTRY;
321         spin_lock(&mdt->mdt_ioepoch_lock);
322         if (o->mot_writecount > 0)
323                 rc = -ETXTBSY;
324         else
325                 o->mot_writecount--;
326         spin_unlock(&mdt->mdt_ioepoch_lock);
327         RETURN(rc);
328 }
329
330 static void mdt_write_allow(struct mdt_device *mdt, struct mdt_object *o)
331 {
332         ENTRY;
333         spin_lock(&mdt->mdt_ioepoch_lock);
334         o->mot_writecount++;
335         spin_unlock(&mdt->mdt_ioepoch_lock);
336         EXIT;
337 }
338
339 /* there can be no real transaction so prepare the fake one */
340 static void mdt_empty_transno(struct mdt_thread_info* info)
341 {
342         struct mdt_device *mdt = info->mti_mdt;
343         struct ptlrpc_request *req = mdt_info_req(info);
344
345         ENTRY;
346         /* transaction is occured already */
347         if (lustre_msg_get_transno(req->rq_repmsg) != 0) {
348                 EXIT;
349                 return;
350         }
351
352         spin_lock(&mdt->mdt_transno_lock);
353         if (info->mti_transno == 0) {
354                 info->mti_transno = ++ mdt->mdt_last_transno;
355         } else {
356                 /* should be replay */
357                 if (info->mti_transno > mdt->mdt_last_transno)
358                         mdt->mdt_last_transno = info->mti_transno;
359         }
360         spin_unlock(&mdt->mdt_transno_lock);
361
362         CDEBUG(D_INODE, "transno = %llu, last_committed = %llu\n",
363                         info->mti_transno,
364                         req->rq_export->exp_obd->obd_last_committed);
365
366         req->rq_transno = info->mti_transno;
367         lustre_msg_set_transno(req->rq_repmsg, info->mti_transno);
368         lustre_msg_set_last_xid(req->rq_repmsg, req->rq_xid);
369         EXIT;
370 }
371
372 void mdt_mfd_set_mode(struct mdt_file_data *mfd, int mode)
373 {
374         LASSERT(mfd != NULL);
375
376         CDEBUG(D_HA, "Change mfd %p mode 0x%x->0x%x\n",
377                mfd, (unsigned int)mfd->mfd_mode, (unsigned int)mode);
378
379         mfd->mfd_mode = mode;
380 }
381
382 static int mdt_mfd_open(struct mdt_thread_info *info, struct mdt_object *p,
383                         struct mdt_object *o, int flags, int created)
384 {
385         struct ptlrpc_request   *req = mdt_info_req(info);
386         struct mdt_export_data  *med = &req->rq_export->exp_mdt_data;
387         struct mdt_file_data    *mfd;
388         struct md_attr          *ma  = &info->mti_attr;
389         struct lu_attr          *la  = &ma->ma_attr;
390         struct mdt_body         *repbody;
391         int                      rc = 0, isdir, isreg;
392         ENTRY;
393
394         repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
395
396         isreg = S_ISREG(la->la_mode);
397         isdir = S_ISDIR(la->la_mode);
398         if (isreg && !(ma->ma_valid & MA_LOV)) {
399                 /*
400                  * No EA, check whether it is will set regEA and dirEA since in
401                  * above attr get, these size might be zero, so reset it, to
402                  * retrieve the MD after create obj.
403                  */
404                 ma->ma_lmm_size = req_capsule_get_size(info->mti_pill,
405                                                        &RMF_MDT_MD,
406                                                        RCL_SERVER);
407                 /* in replay case, p == NULL */
408                 rc = mdt_create_data(info, p, o);
409                 if (rc)
410                         RETURN(rc);
411         }
412
413         CDEBUG(D_INODE, "after open, ma_valid bit = "LPX64" lmm_size = %d\n",
414                ma->ma_valid, ma->ma_lmm_size);
415
416         if (ma->ma_valid & MA_LOV) {
417                 LASSERT(ma->ma_lmm_size != 0);
418                 repbody->eadatasize = ma->ma_lmm_size;
419                 if (isdir)
420                         repbody->valid |= OBD_MD_FLDIREA;
421                 else
422                         repbody->valid |= OBD_MD_FLEASIZE;
423         }
424
425         if (flags & FMODE_WRITE) {
426                 rc = mdt_write_get(info->mti_mdt, o);
427                 if (rc == 0) {
428                         mdt_epoch_open(info, o);
429                         repbody->ioepoch = o->mot_ioepoch;
430                 }
431         } else if (flags & MDS_FMODE_EXEC) {
432                 rc = mdt_write_deny(info->mti_mdt, o);
433         }
434         if (rc)
435                 RETURN(rc);
436
437         rc = mo_open(info->mti_env, mdt_object_child(o),
438                      created ? flags | MDS_OPEN_CREATED : flags);
439         if (rc)
440                 RETURN(rc);
441
442         mfd = mdt_mfd_new();
443         if (mfd != NULL) {
444                 /*
445                  * Keep a reference on this object for this open, and is
446                  * released by mdt_mfd_close().
447                  */
448                 mdt_object_get(info->mti_env, o);
449
450                 /*
451                  * @flags is always not zero. At least it should be FMODE_READ,
452                  * FMODE_WRITE or FMODE_EXEC.
453                  */
454                 LASSERT(flags != 0);
455
456                 /* Open handling. */
457                 mdt_mfd_set_mode(mfd, flags);
458
459                 mfd->mfd_object = o;
460                 mfd->mfd_xid = req->rq_xid;
461
462                 /* replay handle */
463                 if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY) {
464                         struct mdt_file_data *old_mfd;
465                         /* Check wheather old cookie already exist in
466                          * the list, becasue when do recovery, client
467                          * might be disconnected from server, and
468                          * restart replay, so there maybe some orphan
469                          * mfd here, we should remove them */
470                         LASSERT(info->mti_rr.rr_handle != NULL);
471                         old_mfd = mdt_handle2mfd(info, info->mti_rr.rr_handle);
472                         if (old_mfd) {
473                                 CDEBUG(D_HA, "del orph mfd %p fid=("DFID") "
474                                        "cookie=" LPX64"\n",
475                                        mfd, 
476                                        PFID(mdt_object_fid(mfd->mfd_object)),
477                                        info->mti_rr.rr_handle->cookie);
478                                 spin_lock(&med->med_open_lock);
479                                 class_handle_unhash(&old_mfd->mfd_handle);
480                                 list_del_init(&old_mfd->mfd_list);
481                                 spin_unlock(&med->med_open_lock);
482                                 mdt_mfd_close(info, old_mfd);
483                         }
484                         CDEBUG(D_HA, "Store old cookie "LPX64" in new mfd\n",
485                                info->mti_rr.rr_handle->cookie);
486                         mfd->mfd_old_handle.cookie =
487                                                 info->mti_rr.rr_handle->cookie;
488                 }
489                 spin_lock(&med->med_open_lock);
490                 list_add(&mfd->mfd_list, &med->med_open_head);
491                 spin_unlock(&med->med_open_lock);
492
493                 repbody->handle.cookie = mfd->mfd_handle.h_cookie;
494                 mdt_empty_transno(info);
495         } else
496                 rc = -ENOMEM;
497
498         RETURN(rc);
499 }
500
501
502 static int mdt_finish_open(struct mdt_thread_info *info,
503                            struct mdt_object *p, struct mdt_object *o,
504                            int flags, int created, struct ldlm_reply *rep)
505 {
506         struct ptlrpc_request   *req = mdt_info_req(info);
507         struct obd_export       *exp = req->rq_export;
508         struct mdt_export_data  *med = &req->rq_export->exp_mdt_data;
509         struct md_attr          *ma  = &info->mti_attr;
510         struct lu_attr          *la  = &ma->ma_attr;
511         struct mdt_file_data    *mfd;
512         struct mdt_body         *repbody;
513         int                      rc = 0;
514         int                      isreg, isdir, islnk;
515         struct list_head        *t;
516         ENTRY;
517
518         LASSERT(ma->ma_valid & MA_INODE);
519
520         repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
521
522         isreg = S_ISREG(la->la_mode);
523         isdir = S_ISDIR(la->la_mode);
524         islnk = S_ISLNK(la->la_mode);
525         mdt_pack_attr2body(info, repbody, la, mdt_object_fid(o));
526
527         if (exp_connect_rmtclient(exp)) {
528                 void *buf = req_capsule_server_get(info->mti_pill, &RMF_ACL);
529
530                 rc = mdt_pack_remote_perm(info, o, buf);
531                 if (rc) {
532                         repbody->valid &= ~OBD_MD_FLRMTPERM;
533                         repbody->aclsize = 0;
534                 } else {
535                         repbody->valid |= OBD_MD_FLRMTPERM;
536                         repbody->aclsize = sizeof(struct mdt_remote_perm);
537                 }
538         }
539 #ifdef CONFIG_FS_POSIX_ACL
540         else if (exp->exp_connect_flags & OBD_CONNECT_ACL) {
541                 const struct lu_env *env = info->mti_env;
542                 struct md_object *next = mdt_object_child(o);
543                 struct lu_buf *buf = &info->mti_buf;
544
545                 buf->lb_buf = req_capsule_server_get(info->mti_pill, &RMF_ACL);
546                 buf->lb_len = req_capsule_get_size(info->mti_pill, &RMF_ACL,
547                                                    RCL_SERVER);
548                 if (buf->lb_len > 0) {
549                         rc = mo_xattr_get(env, next, buf,
550                                           XATTR_NAME_ACL_ACCESS);
551                         if (rc < 0) {
552                                 if (rc == -ENODATA) {
553                                         repbody->aclsize = 0;
554                                         repbody->valid |= OBD_MD_FLACL;
555                                         rc = 0;
556                                 } else if (rc == -EOPNOTSUPP) {
557                                         rc = 0;
558                                 } else {
559                                         CERROR("got acl size: %d\n", rc);
560                                 }
561                         } else {
562                                 repbody->aclsize = rc;
563                                 repbody->valid |= OBD_MD_FLACL;
564                                 rc = 0;
565                         }
566                 }
567         }
568 #endif
569
570         if (info->mti_mdt->mdt_opts.mo_mds_capa &&
571             exp->exp_connect_flags & OBD_CONNECT_MDS_CAPA) {
572                 struct lustre_capa *capa;
573
574                 capa = req_capsule_server_get(info->mti_pill, &RMF_CAPA1);
575                 LASSERT(capa);
576                 capa->lc_opc = CAPA_OPC_MDS_DEFAULT;
577                 rc = mo_capa_get(info->mti_env, mdt_object_child(o), capa, 0);
578                 if (rc)
579                         RETURN(rc);
580                 repbody->valid |= OBD_MD_FLMDSCAPA;
581         }
582         if (info->mti_mdt->mdt_opts.mo_oss_capa &&
583             exp->exp_connect_flags & OBD_CONNECT_OSS_CAPA &&
584             S_ISREG(lu_object_attr(&o->mot_obj.mo_lu))) {
585                 struct lustre_capa *capa;
586
587                 capa = req_capsule_server_get(info->mti_pill, &RMF_CAPA2);
588                 LASSERT(capa);
589                 capa->lc_opc = CAPA_OPC_OSS_DEFAULT | capa_open_opc(flags);
590                 rc = mo_capa_get(info->mti_env, mdt_object_child(o), capa, 0);
591                 if (rc)
592                         RETURN(rc);
593                 repbody->valid |= OBD_MD_FLOSSCAPA;
594         }
595
596         /*
597          * If we are following a symlink, don't open; and do not return open
598          * handle for special nodes as client required.
599          */
600         if (islnk || (!isreg && !isdir &&
601             (req->rq_export->exp_connect_flags & OBD_CONNECT_NODEVOH))) {
602                 lustre_msg_set_transno(req->rq_repmsg, 0);
603                 RETURN(0);
604         }
605
606         mdt_set_disposition(info, rep, DISP_OPEN_OPEN);
607
608         /*
609          * We need to return the existing object's fid back, so it is done here,
610          * after preparing the reply.
611          */
612         if (!created && (flags & MDS_OPEN_EXCL) && (flags & MDS_OPEN_CREAT))
613                 RETURN(-EEXIST);
614
615         /* This can't be done earlier, we need to return reply body */
616         if (isdir) {
617                 if (flags & (MDS_OPEN_CREAT | FMODE_WRITE)) {
618                         /* We are trying to create or write an existing dir. */
619                         RETURN(-EISDIR);
620                 }
621         } else if (flags & MDS_OPEN_DIRECTORY)
622                 RETURN(-ENOTDIR);
623
624         if (OBD_FAIL_CHECK_RESET(OBD_FAIL_MDS_OPEN_CREATE,
625                                  OBD_FAIL_LDLM_REPLY | OBD_FAIL_ONCE)) {
626                 RETURN(-EAGAIN);
627         }
628
629         mfd = NULL;
630         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_RESENT) {
631                 spin_lock(&med->med_open_lock);
632                 list_for_each(t, &med->med_open_head) {
633                         mfd = list_entry(t, struct mdt_file_data, mfd_list);
634                         if (mfd->mfd_xid == req->rq_xid) {
635                                 break;
636                         }
637                         mfd = NULL;
638                 }
639                 spin_unlock(&med->med_open_lock);
640
641                 if (mfd != NULL) {
642                         repbody->handle.cookie = mfd->mfd_handle.h_cookie;
643                         /*set repbody->ea_size for resent case*/
644                         if (ma->ma_valid & MA_LOV) {
645                                 LASSERT(ma->ma_lmm_size != 0);
646                                 repbody->eadatasize = ma->ma_lmm_size;
647                                 if (isdir)
648                                         repbody->valid |= OBD_MD_FLDIREA;
649                                 else
650                                         repbody->valid |= OBD_MD_FLEASIZE;
651                         }
652                         RETURN(0);
653                 }
654         }
655
656         rc = mdt_mfd_open(info, p, o, flags, created);
657         RETURN(rc);
658 }
659
660 extern void mdt_req_from_lcd(struct ptlrpc_request *req,
661                              struct lsd_client_data *lcd);
662
663 void mdt_reconstruct_open(struct mdt_thread_info *info,
664                           struct mdt_lock_handle *lhc)
665 {
666         const struct lu_env *env = info->mti_env;
667         struct mdt_device       *mdt  = info->mti_mdt;
668         struct req_capsule      *pill = info->mti_pill;
669         struct ptlrpc_request   *req  = mdt_info_req(info);
670         struct mdt_export_data  *med  = &req->rq_export->exp_mdt_data;
671         struct lsd_client_data  *lcd  = med->med_lcd;
672         struct md_attr          *ma   = &info->mti_attr;
673         struct mdt_reint_record *rr   = &info->mti_rr;
674         __u32                   flags = info->mti_spec.sp_cr_flags;
675         struct ldlm_reply       *ldlm_rep;
676         struct mdt_object       *parent;
677         struct mdt_object       *child;
678         struct mdt_body         *repbody;
679         int                      rc;
680         ENTRY;
681
682         LASSERT(pill->rc_fmt == &RQF_LDLM_INTENT_OPEN);
683         ldlm_rep = req_capsule_server_get(pill, &RMF_DLM_REP);
684         repbody = req_capsule_server_get(pill, &RMF_MDT_BODY);
685
686         ma->ma_lmm = req_capsule_server_get(pill, &RMF_MDT_MD);
687         ma->ma_lmm_size = req_capsule_get_size(pill, &RMF_MDT_MD,
688                                                RCL_SERVER);
689         ma->ma_need = MA_INODE;
690         if (ma->ma_lmm_size > 0)
691                 ma->ma_need |= MA_LOV;
692
693         ma->ma_valid = 0;
694
695         mdt_req_from_lcd(req, med->med_lcd);
696         mdt_set_disposition(info, ldlm_rep, lcd->lcd_last_data);
697
698         CERROR("This is reconstruct open: disp="LPX64", result=%d\n",
699                 ldlm_rep->lock_policy_res1, req->rq_status);
700
701         if (mdt_get_disposition(ldlm_rep, DISP_OPEN_CREATE) &&
702             req->rq_status != 0)
703                 /* We did not create successfully, return error to client. */
704                 GOTO(out, rc = req->rq_status);
705
706         if (mdt_get_disposition(ldlm_rep, DISP_OPEN_CREATE)) {
707                 struct obd_export *exp = req->rq_export;
708                 /*
709                  * We failed after creation, but we do not know in which step
710                  * we failed. So try to check the child object.
711                  */
712                 parent = mdt_object_find(env, mdt, rr->rr_fid1);
713                 if (IS_ERR(parent)) {
714                         rc = PTR_ERR(parent);
715                         LCONSOLE_WARN("Parent "DFID" lookup error %d."
716                                       " Evicting client %s with export %s.\n",
717                                       PFID(mdt_object_fid(parent)), rc,
718                                       obd_uuid2str(&exp->exp_client_uuid),
719                                       obd_export_nid2str(exp));
720                         mdt_export_evict(exp);
721                         EXIT;
722                         return;
723                 }
724                 child = mdt_object_find(env, mdt, rr->rr_fid2);
725                 if (IS_ERR(child)) {
726                         rc = PTR_ERR(child);
727                         LCONSOLE_WARN("Child "DFID" lookup error %d."
728                                       " Evicting client %s with export %s.\n",
729                                       PFID(mdt_object_fid(child)), rc,
730                                       obd_uuid2str(&exp->exp_client_uuid),
731                                       obd_export_nid2str(exp));
732                         mdt_export_evict(exp);
733                         EXIT;
734                         return;
735                 }
736                 rc = mdt_object_exists(child);
737                 if (rc > 0) {
738                         struct md_object *next;
739
740                         mdt_set_capainfo(info, 1, rr->rr_fid2, BYPASS_CAPA);
741                         next = mdt_object_child(child);
742                         rc = mo_attr_get(env, next, ma);
743                         if (rc == 0)
744                               rc = mdt_finish_open(info, parent, child,
745                                                    flags, 1, ldlm_rep);
746                 } else if (rc < 0) {
747                         /* the child object was created on remote server */
748                         repbody->fid1 = *rr->rr_fid2;
749                         repbody->valid |= (OBD_MD_FLID | OBD_MD_MDS);
750                         rc = 0;
751                 } else if (rc == 0) {
752                         /* the child does not exist, we should do regular open */
753                         mdt_object_put(env, parent);
754                         mdt_object_put(env, child);
755                         GOTO(regular_open, 0);
756                 }
757                 mdt_object_put(env, parent);
758                 mdt_object_put(env, child);
759                 GOTO(out, rc);
760         } else {
761 regular_open:
762                 /* We did not try to create, so we are a pure open */
763                 rc = mdt_reint_open(info, lhc);
764         }
765
766         EXIT;
767 out:
768         req->rq_status = rc;
769         lustre_msg_set_status(req->rq_repmsg, req->rq_status);
770         LASSERT(ergo(rc < 0, lustre_msg_get_transno(req->rq_repmsg) == 0));
771 }
772
773 static int mdt_open_by_fid(struct mdt_thread_info* info,
774                            struct ldlm_reply *rep)
775 {
776         const struct lu_env     *env = info->mti_env;
777         __u32                    flags = info->mti_spec.sp_cr_flags;
778         struct mdt_reint_record *rr = &info->mti_rr;
779         struct md_attr          *ma = &info->mti_attr;
780         struct mdt_object       *o;
781         int                      rc;
782         ENTRY;
783
784         o = mdt_object_find(info->mti_env, info->mti_mdt, rr->rr_fid2);
785         if (IS_ERR(o))
786                 RETURN(rc = PTR_ERR(o));
787
788         rc = mdt_object_exists(o);
789         if (rc > 0) {
790                 mdt_set_disposition(info, rep, (DISP_IT_EXECD |
791                                                 DISP_LOOKUP_EXECD |
792                                                 DISP_LOOKUP_POS));
793
794                 rc = mo_attr_get(env, mdt_object_child(o), ma);
795                 if (rc == 0)
796                         rc = mdt_finish_open(info, NULL, o, flags, 0, rep);
797         } else if (rc == 0) {
798                 rc = -ENOENT;
799         } else  {
800                 /* the child object was created on remote server */
801                 struct mdt_body *repbody;
802                 repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
803                 repbody->fid1 = *rr->rr_fid2;
804                 repbody->valid |= (OBD_MD_FLID | OBD_MD_MDS);
805                 rc = 0;
806         }
807
808         mdt_object_put(info->mti_env, o);
809         RETURN(rc);
810 }
811
812 static int mdt_open_anon_by_fid(struct mdt_thread_info* info,
813                                 struct ldlm_reply *rep, 
814                                 struct mdt_lock_handle *lhc)
815 {
816         __u32                    flags = info->mti_spec.sp_cr_flags;
817         struct mdt_reint_record *rr = &info->mti_rr;
818         struct md_attr          *ma = &info->mti_attr;
819         struct mdt_object       *o;
820         int                      rc;
821         ldlm_mode_t              lm;
822         ENTRY;
823
824         o = mdt_object_find(info->mti_env, info->mti_mdt, rr->rr_fid2);
825         if (IS_ERR(o))
826                 RETURN(rc = PTR_ERR(o));
827
828         rc = mdt_object_exists(o);
829         if (rc == 0) {
830                 mdt_set_disposition(info, rep, (DISP_LOOKUP_EXECD |
831                                     DISP_LOOKUP_NEG));
832                 GOTO(out, rc = -ENOENT);
833         } else if (rc < 0) {
834                 CERROR("NFS remote open shouldn't happen.\n");
835                 GOTO(out, rc);
836         }
837
838         mdt_set_disposition(info, rep, (DISP_IT_EXECD |
839                                         DISP_LOOKUP_EXECD |
840                                         DISP_LOOKUP_POS));
841
842         if (flags & FMODE_WRITE)
843                 lm = LCK_CW;
844         else if (flags & MDS_FMODE_EXEC)
845                 lm = LCK_PR;
846         else
847                 lm = LCK_CR;
848
849         mdt_lock_handle_init(lhc);
850         mdt_lock_reg_init(lhc, lm);
851         rc = mdt_object_lock(info, o, lhc,
852                              MDS_INODELOCK_LOOKUP | MDS_INODELOCK_OPEN,
853                              MDT_CROSS_LOCK);
854         if (rc)
855                 GOTO(out, rc);
856
857         rc = mo_attr_get(info->mti_env, mdt_object_child(o), ma);
858         if (rc)
859                 GOTO(out, rc);
860
861         if (flags & MDS_OPEN_LOCK)
862                 mdt_set_disposition(info, rep, DISP_OPEN_LOCK);
863         rc = mdt_finish_open(info, NULL, o, flags, 0, rep);
864
865         if (!(flags & MDS_OPEN_LOCK))
866                 mdt_object_unlock(info, o, lhc, 1);
867
868         GOTO(out, rc);
869 out:
870         mdt_object_put(info->mti_env, o);
871         return rc;
872 }
873
874 int mdt_pin(struct mdt_thread_info* info)
875 {
876         ENTRY;
877         RETURN(err_serious(-EOPNOTSUPP));
878 }
879
880 /* Cross-ref request. Currently it can only be a pure open (w/o create) */
881 static int mdt_cross_open(struct mdt_thread_info* info,
882                           const struct lu_fid *fid,
883                           struct ldlm_reply *rep, __u32 flags)
884 {
885         struct md_attr    *ma = &info->mti_attr;
886         struct mdt_object *o;
887         int                rc;
888         ENTRY;
889
890         o = mdt_object_find(info->mti_env, info->mti_mdt, fid);
891         if (IS_ERR(o))
892                 RETURN(rc = PTR_ERR(o));
893
894         rc = mdt_object_exists(o);
895         if (rc > 0) {
896                 /* Do permission check for cross-open. */
897                 rc = mo_permission(info->mti_env, NULL, mdt_object_child(o),
898                                    NULL, flags | MDS_OPEN_CROSS);
899                 if (rc)
900                         goto out;
901
902                 mdt_set_capainfo(info, 0, fid, BYPASS_CAPA);
903                 rc = mo_attr_get(info->mti_env, mdt_object_child(o), ma);
904                 if (rc == 0)
905                         rc = mdt_finish_open(info, NULL, o, flags, 0, rep);
906         } else if (rc == 0) {
907                 /*
908                  * Something is wrong here. lookup was positive but there is
909                  * no object!
910                  */
911                 CERROR("Cross-ref object doesn't exist!\n");
912                 rc = -EFAULT;
913         } else  {
914                 /* Something is wrong here, the object is on another MDS! */
915                 CERROR("The object isn't on this server! FLD error?\n");
916                 LU_OBJECT_DEBUG(D_WARNING, info->mti_env,
917                                 &o->mot_obj.mo_lu,
918                                 "Object isn't on this server! FLD error?\n");
919
920                 rc = -EFAULT;
921         }
922
923 out:
924         mdt_object_put(info->mti_env, o);
925         RETURN(rc);
926 }
927
928 int mdt_reint_open(struct mdt_thread_info *info, struct mdt_lock_handle *lhc)
929 {
930         struct mdt_device       *mdt = info->mti_mdt;
931         struct ptlrpc_request   *req = mdt_info_req(info);
932         struct mdt_object       *parent;
933         struct mdt_object       *child;
934         struct mdt_lock_handle  *lh;
935         struct ldlm_reply       *ldlm_rep;
936         struct mdt_body         *repbody;
937         struct lu_fid           *child_fid = &info->mti_tmp_fid1;
938         struct md_attr          *ma = &info->mti_attr;
939         __u32                    create_flags = info->mti_spec.sp_cr_flags;
940         struct mdt_reint_record *rr = &info->mti_rr;
941         struct lu_name          *lname;
942         int                      result, rc;
943         int                      created = 0;
944         __u32                    msg_flags;
945         ENTRY;
946
947         OBD_FAIL_TIMEOUT_ORSET(OBD_FAIL_MDS_PAUSE_OPEN, OBD_FAIL_ONCE,
948                                (obd_timeout + 1) / 4);
949
950         repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
951
952         ma->ma_lmm = req_capsule_server_get(info->mti_pill, &RMF_MDT_MD);
953         ma->ma_lmm_size = req_capsule_get_size(info->mti_pill, &RMF_MDT_MD,
954                                                RCL_SERVER);
955         ma->ma_need = MA_INODE;
956         if (ma->ma_lmm_size > 0)
957                 ma->ma_need |= MA_LOV;
958
959         ma->ma_valid = 0;
960
961         LASSERT(info->mti_pill->rc_fmt == &RQF_LDLM_INTENT_OPEN);
962         ldlm_rep = req_capsule_server_get(info->mti_pill, &RMF_DLM_REP);
963
964         /* JOIN file was deprecated since 1.6.5, but may be revived one day */
965         if (create_flags & MDS_OPEN_JOIN_FILE) {
966                 CERROR("file join is unsupported in this version of Lustre\n");
967                 GOTO(out, result = err_serious(-EOPNOTSUPP));
968         }
969         msg_flags = lustre_msg_get_flags(req->rq_reqmsg);
970
971         if ((create_flags & (MDS_OPEN_HAS_EA | MDS_OPEN_HAS_OBJS)) &&
972             info->mti_spec.u.sp_ea.eadata == NULL)
973                 GOTO(out, result = err_serious(-EINVAL));
974
975         CDEBUG(D_INODE, "I am going to open "DFID"/(%s->"DFID") "
976                "cr_flag=0%o mode=0%06o msg_flag=0x%x\n",
977                PFID(rr->rr_fid1), rr->rr_name,
978                PFID(rr->rr_fid2), create_flags,
979                ma->ma_attr.la_mode, msg_flags);
980
981         if (msg_flags & MSG_REPLAY ||
982             (req->rq_export->exp_libclient && create_flags&MDS_OPEN_HAS_EA)) {
983                 /* This is a replay request or from liblustre with ea. */
984                 result = mdt_open_by_fid(info, ldlm_rep);
985
986                 if (result != -ENOENT) {
987                         if (req->rq_export->exp_libclient &&
988                             create_flags&MDS_OPEN_HAS_EA)
989                                 GOTO(out, result = 0);
990                         GOTO(out, result);
991                 }
992                 /*
993                  * We didn't find the correct object, so we need to re-create it
994                  * via a regular replay.
995                  */
996                 if (!(create_flags & MDS_OPEN_CREAT)) {
997                         DEBUG_REQ(D_ERROR, req,"OPEN & CREAT not in open replay.");
998                         GOTO(out, result = -EFAULT);
999                 }
1000                 CDEBUG(D_INFO, "Open replay did find object, continue as "
1001                        "regular open\n");
1002         } else if (rr->rr_namelen == 0 && !info->mti_cross_ref) {
1003                 result = mdt_open_anon_by_fid(info, ldlm_rep, lhc);
1004                 if (result != -ENOENT)
1005                         GOTO(out, result);
1006         }
1007
1008         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_OPEN_PACK))
1009                 GOTO(out, result = err_serious(-ENOMEM));
1010
1011         mdt_set_disposition(info, ldlm_rep,
1012                             (DISP_IT_EXECD | DISP_LOOKUP_EXECD));
1013
1014         if (info->mti_cross_ref) {
1015                 /* This is cross-ref open */
1016                 mdt_set_disposition(info, ldlm_rep, DISP_LOOKUP_POS);
1017                 result = mdt_cross_open(info, rr->rr_fid1, ldlm_rep,
1018                                         create_flags);
1019                 GOTO(out, result);
1020         }
1021
1022         lh = &info->mti_lh[MDT_LH_PARENT];
1023         mdt_lock_pdo_init(lh, (create_flags & MDS_OPEN_CREAT) ?
1024                           LCK_PW : LCK_PR, rr->rr_name, rr->rr_namelen);
1025
1026         parent = mdt_object_find_lock(info, rr->rr_fid1, lh,
1027                                       MDS_INODELOCK_UPDATE);
1028         if (IS_ERR(parent))
1029                 GOTO(out, result = PTR_ERR(parent));
1030
1031         fid_zero(child_fid);
1032
1033         lname = mdt_name(info->mti_env, (char *)rr->rr_name, rr->rr_namelen);
1034
1035         result = mdo_lookup(info->mti_env, mdt_object_child(parent),
1036                             lname, child_fid, &info->mti_spec);
1037         LASSERTF(ergo(result == 0, fid_is_sane(child_fid)),
1038                  "looking for "DFID"/%s, result fid="DFID"\n",
1039                  PFID(mdt_object_fid(parent)), rr->rr_name, PFID(child_fid));
1040
1041         if (result != 0 && result != -ENOENT && result != -ESTALE)
1042                 GOTO(out_parent, result);
1043
1044         if (result == -ENOENT || result == -ESTALE) {
1045                 mdt_set_disposition(info, ldlm_rep, DISP_LOOKUP_NEG);
1046                 if (result == -ESTALE) {
1047                         /*
1048                          * -ESTALE means the parent is a dead(unlinked) dir, so
1049                          * it should return -ENOENT to in accordance with the
1050                          * original mds implementaion.
1051                          */
1052                         GOTO(out_parent, result = -ENOENT);
1053                 }
1054                 if (!(create_flags & MDS_OPEN_CREAT))
1055                         GOTO(out_parent, result);
1056                 *child_fid = *info->mti_rr.rr_fid2;
1057                 LASSERTF(fid_is_sane(child_fid), "fid="DFID"\n",
1058                          PFID(child_fid));
1059         } else {
1060                 /*
1061                  * Check for O_EXCL is moved to the mdt_finish_open(), we need to
1062                  * return FID back in that case.
1063                  */
1064                 mdt_set_disposition(info, ldlm_rep, DISP_LOOKUP_POS);
1065         }
1066
1067         child = mdt_object_find(info->mti_env, mdt, child_fid);
1068         if (IS_ERR(child))
1069                 GOTO(out_parent, result = PTR_ERR(child));
1070
1071         mdt_set_capainfo(info, 1, child_fid, BYPASS_CAPA);
1072         if (result == -ENOENT) {
1073                 /* Not found and with MDS_OPEN_CREAT: let's create it. */
1074                 mdt_set_disposition(info, ldlm_rep, DISP_OPEN_CREATE);
1075
1076                 info->mti_mos[0] = parent;
1077                 info->mti_mos[1] = child;
1078                 result = mdt_version_get_check(info, 0);
1079                 if (result)
1080                         GOTO(out_child, result);
1081
1082                 /* Let lower layers know what is lock mode on directory. */
1083                 info->mti_spec.sp_cr_mode =
1084                         mdt_dlm_mode2mdl_mode(lh->mlh_pdo_mode);
1085
1086                 /*
1087                  * Do not perform lookup sanity check. We know that name does
1088                  * not exist.
1089                  */
1090                 info->mti_spec.sp_cr_lookup = 0;
1091                 info->mti_spec.sp_feat = &dt_directory_features;
1092
1093                 result = mdo_create(info->mti_env,
1094                                     mdt_object_child(parent),
1095                                     lname,
1096                                     mdt_object_child(child),
1097                                     &info->mti_spec,
1098                                     &info->mti_attr);
1099                 if (result == -ERESTART) {
1100                         mdt_clear_disposition(info, ldlm_rep, DISP_OPEN_CREATE);
1101                         GOTO(out_child, result);
1102                 } else {
1103                         if (result != 0)
1104                                 GOTO(out_child, result);
1105                 }
1106                 created = 1;
1107         } else {
1108                 /* We have to get attr & lov ea for this object */
1109                 result = mo_attr_get(info->mti_env, mdt_object_child(child),
1110                                      ma);
1111                 /*
1112                  * The object is on remote node, return its FID for remote open.
1113                  */
1114                 if (result == -EREMOTE) {
1115                         /*
1116                          * Check if this lock already was sent to client and
1117                          * this is resent case. For resent case do not take lock
1118                          * again, use what is already granted.
1119                          */
1120                         LASSERT(lhc != NULL);
1121
1122                         if (lustre_handle_is_used(&lhc->mlh_reg_lh)) {
1123                                 struct ldlm_lock *lock;
1124
1125                                 LASSERT(msg_flags & MSG_RESENT);
1126
1127                                 lock = ldlm_handle2lock(&lhc->mlh_reg_lh);
1128                                 if (!lock) {
1129                                         CERROR("Invalid lock handle "LPX64"\n",
1130                                                lhc->mlh_reg_lh.cookie);
1131                                         LBUG();
1132                                 }
1133                                 LASSERT(fid_res_name_eq(mdt_object_fid(child),
1134                                                         &lock->l_resource->lr_name));
1135                                 LDLM_LOCK_PUT(lock);
1136                                 rc = 0;
1137                         } else {
1138                                 mdt_lock_handle_init(lhc);
1139                                 mdt_lock_reg_init(lhc, LCK_PR);
1140
1141                                 rc = mdt_object_lock(info, child, lhc,
1142                                                      MDS_INODELOCK_LOOKUP,
1143                                                      MDT_CROSS_LOCK);
1144                         }
1145                         repbody->fid1 = *mdt_object_fid(child);
1146                         repbody->valid |= (OBD_MD_FLID | OBD_MD_MDS);
1147                         if (rc != 0)
1148                                 result = rc;
1149                         GOTO(out_child, result);
1150                 }
1151         }
1152
1153         LASSERT(!lustre_handle_is_used(&lhc->mlh_reg_lh));
1154
1155         /* get openlock if this is not replay and if a client requested it */
1156         if (!(msg_flags & MSG_REPLAY) && create_flags & MDS_OPEN_LOCK) {
1157                 ldlm_mode_t lm;
1158
1159                 LASSERT(!created);
1160                 if (create_flags & FMODE_WRITE)
1161                         lm = LCK_CW;
1162                 else if (create_flags & MDS_FMODE_EXEC)
1163                         lm = LCK_PR;
1164                 else
1165                         lm = LCK_CR;
1166                 mdt_lock_handle_init(lhc);
1167                 mdt_lock_reg_init(lhc, lm);
1168                 rc = mdt_object_lock(info, child, lhc,
1169                                      MDS_INODELOCK_LOOKUP | MDS_INODELOCK_OPEN,
1170                                      MDT_CROSS_LOCK);
1171                 if (rc) {
1172                         result = rc;
1173                         GOTO(out_child, result);
1174                 } else {
1175                         result = -EREMOTE;
1176                         mdt_set_disposition(info, ldlm_rep, DISP_OPEN_LOCK);
1177                 }
1178         }
1179
1180         /* Try to open it now. */
1181         rc = mdt_finish_open(info, parent, child, create_flags,
1182                              created, ldlm_rep);
1183         if (rc) {
1184                 result = rc;
1185                 if (lustre_handle_is_used(&lhc->mlh_reg_lh))
1186                         /* openlock was acquired and mdt_finish_open failed -
1187                            drop the openlock */
1188                         mdt_object_unlock(info, child, lhc, 1);
1189                 if (created) {
1190                         ma->ma_need = 0;
1191                         ma->ma_valid = 0;
1192                         ma->ma_cookie_size = 0;
1193                         info->mti_no_need_trans = 1;
1194                         rc = mdo_unlink(info->mti_env,
1195                                         mdt_object_child(parent),
1196                                         mdt_object_child(child),
1197                                         lname,
1198                                         &info->mti_attr);
1199                         if (rc != 0)
1200                                 CERROR("Error in cleanup of open\n");
1201                 }
1202         }
1203         EXIT;
1204 out_child:
1205         mdt_object_put(info->mti_env, child);
1206 out_parent:
1207         mdt_object_unlock_put(info, parent, lh, result);
1208 out:
1209         if (result && result != -EREMOTE)
1210                 lustre_msg_set_transno(req->rq_repmsg, 0);
1211         return result;
1212 }
1213
1214 #define MFD_CLOSED(mode) (((mode) & ~(FMODE_EPOCH | FMODE_SOM | \
1215                                       FMODE_EPOCHLCK)) == FMODE_CLOSED)
1216
1217 static int mdt_mfd_closed(struct mdt_file_data *mfd)
1218 {
1219         return ((mfd == NULL) || MFD_CLOSED(mfd->mfd_mode));
1220 }
1221
1222 int mdt_mfd_close(struct mdt_thread_info *info, struct mdt_file_data *mfd)
1223 {
1224         struct mdt_object *o = mfd->mfd_object;
1225         struct md_object *next = mdt_object_child(o);
1226         struct md_attr *ma = &info->mti_attr;
1227         int rc = 0, ret = 0;
1228         int mode;
1229         ENTRY;
1230
1231         mode = mfd->mfd_mode;
1232
1233         if ((mode & FMODE_WRITE) || (mode & FMODE_EPOCHLCK)) {
1234                 mdt_write_put(info->mti_mdt, o);
1235                 ret = mdt_epoch_close(info, o);
1236         } else if (mode & MDS_FMODE_EXEC) {
1237                 mdt_write_allow(info->mti_mdt, o);
1238         } else if (mode & FMODE_EPOCH) {
1239                 ret = mdt_epoch_close(info, o);
1240         }
1241
1242         /* Update atime on close only. */
1243         if ((mode & MDS_FMODE_EXEC || mode & FMODE_READ || mode & FMODE_WRITE)
1244             && (ma->ma_valid & MA_INODE) && (ma->ma_attr.la_valid & LA_ATIME)) {
1245                 /* Set the atime only. */
1246                 ma->ma_attr.la_valid = LA_ATIME;
1247                 rc = mo_attr_set(info->mti_env, next, ma);
1248         }
1249
1250         ma->ma_need |= MA_INODE;
1251         ma->ma_valid = 0;
1252
1253         if (!MFD_CLOSED(mode))
1254                 rc = mo_close(info->mti_env, next, ma);
1255         else if (ret == -EAGAIN)
1256                 rc = mo_attr_get(info->mti_env, next, ma);
1257
1258         /* If the object is unlinked, do not try to re-enable SIZEONMDS */
1259         if ((ret == -EAGAIN) && (ma->ma_valid & MA_INODE) &&
1260             (ma->ma_attr.la_nlink == 0)) {
1261                 ret = 0;
1262         }
1263
1264         if ((ret == -EAGAIN) || (ret == 1)) {
1265                 struct mdt_export_data *med;
1266
1267                 /* The epoch has not closed or Size-on-MDS update is needed.
1268                  * Put mfd back into the list. */
1269                 LASSERT(mdt_conn_flags(info) & OBD_CONNECT_SOM);
1270                 mdt_mfd_set_mode(mfd, (ret == 1 ? FMODE_EPOCH : FMODE_SOM));
1271
1272                 LASSERT(mdt_info_req(info));
1273                 med = &mdt_info_req(info)->rq_export->exp_mdt_data;
1274                 spin_lock(&med->med_open_lock);
1275                 list_add(&mfd->mfd_list, &med->med_open_head);
1276                 class_handle_hash_back(&mfd->mfd_handle);
1277                 spin_unlock(&med->med_open_lock);
1278
1279                 if (ret == 1) {
1280                         ret = 0;
1281                 } else {
1282                         CDEBUG(D_INODE, "Size-on-MDS attribute update is "
1283                                "needed on "DFID"\n", PFID(mdt_object_fid(o)));
1284                 }
1285         } else {
1286                 mdt_mfd_free(mfd);
1287                 mdt_object_put(info->mti_env, o);
1288         }
1289
1290         RETURN(rc ? rc : ret);
1291 }
1292
1293 int mdt_close(struct mdt_thread_info *info)
1294 {
1295         struct mdt_export_data *med;
1296         struct mdt_file_data   *mfd;
1297         struct mdt_object      *o;
1298         struct md_attr         *ma = &info->mti_attr;
1299         struct mdt_body        *repbody = NULL;
1300         struct ptlrpc_request  *req = mdt_info_req(info);
1301         int rc, ret = 0;
1302         ENTRY;
1303
1304         /* Close may come with the Size-on-MDS update. Unpack it. */
1305         rc = mdt_close_unpack(info);
1306         if (rc)
1307                 RETURN(err_serious(rc));
1308
1309         LASSERT(info->mti_epoch);
1310
1311         req_capsule_set_size(info->mti_pill, &RMF_MDT_MD, RCL_SERVER,
1312                              info->mti_mdt->mdt_max_mdsize);
1313         req_capsule_set_size(info->mti_pill, &RMF_LOGCOOKIES, RCL_SERVER,
1314                              info->mti_mdt->mdt_max_cookiesize);
1315         rc = req_capsule_server_pack(info->mti_pill);
1316         if (mdt_check_resent(info, mdt_reconstruct_generic, NULL)) {
1317                 if (rc == 0)
1318                         mdt_shrink_reply(info);
1319                 RETURN(lustre_msg_get_status(req->rq_repmsg));
1320         }
1321
1322         /* Continue to close handle even if we can not pack reply */
1323         if (rc == 0) {
1324                 repbody = req_capsule_server_get(info->mti_pill,
1325                                                  &RMF_MDT_BODY);
1326                 ma->ma_lmm = req_capsule_server_get(info->mti_pill,
1327                                                     &RMF_MDT_MD);
1328                 ma->ma_lmm_size = req_capsule_get_size(info->mti_pill,
1329                                                        &RMF_MDT_MD,
1330                                                        RCL_SERVER);
1331                 ma->ma_cookie = req_capsule_server_get(info->mti_pill,
1332                                                        &RMF_LOGCOOKIES);
1333                 ma->ma_cookie_size = req_capsule_get_size(info->mti_pill,
1334                                                           &RMF_LOGCOOKIES,
1335                                                           RCL_SERVER);
1336                 ma->ma_need = MA_INODE | MA_LOV | MA_COOKIE;
1337                 repbody->eadatasize = 0;
1338                 repbody->aclsize = 0;
1339         } else {
1340                 rc = err_serious(rc);
1341         }
1342
1343         med = &req->rq_export->exp_mdt_data;
1344         spin_lock(&med->med_open_lock);
1345         mfd = mdt_handle2mfd(info, &info->mti_epoch->handle);
1346         if (mdt_mfd_closed(mfd)) {
1347                 spin_unlock(&med->med_open_lock);
1348                 CDEBUG(D_INODE, "no handle for file close: fid = "DFID
1349                        ": cookie = "LPX64"\n", PFID(info->mti_rr.rr_fid1),
1350                        info->mti_epoch->handle.cookie);
1351                 rc = err_serious(-ESTALE);
1352         } else {
1353                 class_handle_unhash(&mfd->mfd_handle);
1354                 list_del_init(&mfd->mfd_list);
1355                 spin_unlock(&med->med_open_lock);
1356
1357                 /* Do not lose object before last unlink. */
1358                 o = mfd->mfd_object;
1359                 mdt_object_get(info->mti_env, o);
1360                 ret = mdt_mfd_close(info, mfd);
1361                 if (repbody != NULL)
1362                         rc = mdt_handle_last_unlink(info, o, ma);
1363                 mdt_empty_transno(info);
1364                 mdt_object_put(info->mti_env, o);
1365         }
1366         if (repbody != NULL)
1367                 mdt_shrink_reply(info);
1368
1369         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_CLOSE_PACK))
1370                 RETURN(err_serious(-ENOMEM));
1371
1372         if (OBD_FAIL_CHECK_RESET(OBD_FAIL_MDS_CLOSE_NET_REP,
1373                                  OBD_FAIL_MDS_CLOSE_NET_REP))
1374                 info->mti_fail_id = OBD_FAIL_MDS_CLOSE_NET_REP;
1375         RETURN(rc ? rc : ret);
1376 }
1377
1378 int mdt_done_writing(struct mdt_thread_info *info)
1379 {
1380         struct mdt_body         *repbody = NULL;
1381         struct mdt_export_data  *med;
1382         struct mdt_file_data    *mfd;
1383         int rc;
1384         ENTRY;
1385
1386         rc = req_capsule_server_pack(info->mti_pill);
1387         if (rc)
1388                 RETURN(err_serious(rc));
1389
1390         repbody = req_capsule_server_get(info->mti_pill,
1391                                          &RMF_MDT_BODY);
1392         repbody->eadatasize = 0;
1393         repbody->aclsize = 0;
1394
1395         /* Done Writing may come with the Size-on-MDS update. Unpack it. */
1396         rc = mdt_close_unpack(info);
1397         if (rc)
1398                 RETURN(err_serious(rc));
1399
1400         if (mdt_check_resent(info, mdt_reconstruct_generic, NULL))
1401                 RETURN(lustre_msg_get_status(mdt_info_req(info)->rq_repmsg));
1402
1403         med = &info->mti_exp->exp_mdt_data;
1404         spin_lock(&med->med_open_lock);
1405         mfd = mdt_handle2mfd(info, &info->mti_epoch->handle);
1406         if (mfd == NULL) {
1407                 spin_unlock(&med->med_open_lock);
1408                 CDEBUG(D_INODE, "no handle for done write: fid = "DFID
1409                        ": cookie = "LPX64" ioepoch = "LPU64"\n",
1410                        PFID(info->mti_rr.rr_fid1),
1411                        info->mti_epoch->handle.cookie,
1412                        info->mti_epoch->ioepoch);
1413                 RETURN(-ESTALE);
1414         }
1415
1416         LASSERT(mfd->mfd_mode == FMODE_EPOCH ||
1417                 mfd->mfd_mode == FMODE_EPOCHLCK);
1418         class_handle_unhash(&mfd->mfd_handle);
1419         list_del_init(&mfd->mfd_list);
1420         spin_unlock(&med->med_open_lock);
1421
1422         /* Set EPOCH CLOSE flag if not set by client. */
1423         info->mti_epoch->flags |= MF_EPOCH_CLOSE;
1424         info->mti_attr.ma_valid = 0;
1425         rc = mdt_mfd_close(info, mfd);
1426         mdt_empty_transno(info);
1427         RETURN(rc);
1428 }