Whamcloud - gitweb
branch: HEAD
[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 int mdt_pin(struct mdt_thread_info* info)
813 {
814         ENTRY;
815         RETURN(err_serious(-EOPNOTSUPP));
816 }
817
818 /* Cross-ref request. Currently it can only be a pure open (w/o create) */
819 static int mdt_cross_open(struct mdt_thread_info* info,
820                           const struct lu_fid *fid,
821                           struct ldlm_reply *rep, __u32 flags)
822 {
823         struct md_attr    *ma = &info->mti_attr;
824         struct mdt_object *o;
825         int                rc;
826         ENTRY;
827
828         o = mdt_object_find(info->mti_env, info->mti_mdt, fid);
829         if (IS_ERR(o))
830                 RETURN(rc = PTR_ERR(o));
831
832         rc = mdt_object_exists(o);
833         if (rc > 0) {
834                 /* Do permission check for cross-open. */
835                 rc = mo_permission(info->mti_env, NULL, mdt_object_child(o),
836                                    NULL, flags | MDS_OPEN_CROSS);
837                 if (rc)
838                         goto out;
839
840                 mdt_set_capainfo(info, 0, fid, BYPASS_CAPA);
841                 rc = mo_attr_get(info->mti_env, mdt_object_child(o), ma);
842                 if (rc == 0)
843                         rc = mdt_finish_open(info, NULL, o, flags, 0, rep);
844         } else if (rc == 0) {
845                 /*
846                  * Something is wrong here. lookup was positive but there is
847                  * no object!
848                  */
849                 CERROR("Cross-ref object doesn't exist!\n");
850                 rc = -EFAULT;
851         } else  {
852                 /* Something is wrong here, the object is on another MDS! */
853                 CERROR("The object isn't on this server! FLD error?\n");
854                 LU_OBJECT_DEBUG(D_WARNING, info->mti_env,
855                                 &o->mot_obj.mo_lu,
856                                 "Object isn't on this server! FLD error?\n");
857
858                 rc = -EFAULT;
859         }
860
861 out:
862         mdt_object_put(info->mti_env, o);
863         RETURN(rc);
864 }
865
866 int mdt_reint_open(struct mdt_thread_info *info, struct mdt_lock_handle *lhc)
867 {
868         struct mdt_device       *mdt = info->mti_mdt;
869         struct ptlrpc_request   *req = mdt_info_req(info);
870         struct mdt_object       *parent;
871         struct mdt_object       *child;
872         struct mdt_lock_handle  *lh;
873         struct ldlm_reply       *ldlm_rep;
874         struct mdt_body         *repbody;
875         struct lu_fid           *child_fid = &info->mti_tmp_fid1;
876         struct md_attr          *ma = &info->mti_attr;
877         __u32                    create_flags = info->mti_spec.sp_cr_flags;
878         struct mdt_reint_record *rr = &info->mti_rr;
879         struct lu_name          *lname;
880         int                      result, rc;
881         int                      created = 0;
882         __u32                    msg_flags;
883         ENTRY;
884
885         OBD_FAIL_TIMEOUT_ORSET(OBD_FAIL_MDS_PAUSE_OPEN, OBD_FAIL_ONCE,
886                                (obd_timeout + 1) / 4);
887
888         repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
889
890         ma->ma_lmm = req_capsule_server_get(info->mti_pill, &RMF_MDT_MD);
891         ma->ma_lmm_size = req_capsule_get_size(info->mti_pill, &RMF_MDT_MD,
892                                                RCL_SERVER);
893         ma->ma_need = MA_INODE;
894         if (ma->ma_lmm_size > 0)
895                 ma->ma_need |= MA_LOV;
896
897         ma->ma_valid = 0;
898
899         LASSERT(info->mti_pill->rc_fmt == &RQF_LDLM_INTENT_OPEN);
900         ldlm_rep = req_capsule_server_get(info->mti_pill, &RMF_DLM_REP);
901
902         /* JOIN file was deprecated since 1.6.5, but may be revived one day */
903         if (create_flags & MDS_OPEN_JOIN_FILE) {
904                 CERROR("file join is unsupported in this version of Lustre\n");
905                 GOTO(out, result = err_serious(-EOPNOTSUPP));
906         }
907         msg_flags = lustre_msg_get_flags(req->rq_reqmsg);
908
909         if ((create_flags & (MDS_OPEN_HAS_EA | MDS_OPEN_HAS_OBJS)) &&
910             info->mti_spec.u.sp_ea.eadata == NULL)
911                 GOTO(out, result = err_serious(-EINVAL));
912
913         CDEBUG(D_INODE, "I am going to open "DFID"/(%s->"DFID") "
914                "cr_flag=0%o mode=0%06o msg_flag=0x%x\n",
915                PFID(rr->rr_fid1), rr->rr_name,
916                PFID(rr->rr_fid2), create_flags,
917                ma->ma_attr.la_mode, msg_flags);
918
919         if (msg_flags & MSG_REPLAY ||
920             (req->rq_export->exp_libclient && create_flags&MDS_OPEN_HAS_EA)) {
921                 /* This is a replay request or from liblustre with ea. */
922                 result = mdt_open_by_fid(info, ldlm_rep);
923
924                 if (result != -ENOENT) {
925                         if (req->rq_export->exp_libclient &&
926                             create_flags&MDS_OPEN_HAS_EA)
927                                 GOTO(out, result = 0);
928                         GOTO(out, result);
929                 }
930                 /*
931                  * We didn't find the correct object, so we need to re-create it
932                  * via a regular replay.
933                  */
934                 if (!(create_flags & MDS_OPEN_CREAT)) {
935                         DEBUG_REQ(D_ERROR, req,"OPEN & CREAT not in open replay.");
936                         GOTO(out, result = -EFAULT);
937                 }
938                 CDEBUG(D_INFO, "Open replay did find object, continue as "
939                        "regular open\n");
940         }
941
942         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_OPEN_PACK))
943                 GOTO(out, result = err_serious(-ENOMEM));
944
945         mdt_set_disposition(info, ldlm_rep,
946                             (DISP_IT_EXECD | DISP_LOOKUP_EXECD));
947
948         if (info->mti_cross_ref) {
949                 /* This is cross-ref open */
950                 mdt_set_disposition(info, ldlm_rep, DISP_LOOKUP_POS);
951                 result = mdt_cross_open(info, rr->rr_fid1, ldlm_rep,
952                                         create_flags);
953                 GOTO(out, result);
954         }
955
956         lh = &info->mti_lh[MDT_LH_PARENT];
957         mdt_lock_pdo_init(lh, (create_flags & MDS_OPEN_CREAT) ?
958                           LCK_PW : LCK_PR, rr->rr_name, rr->rr_namelen);
959
960         parent = mdt_object_find_lock(info, rr->rr_fid1, lh,
961                                       MDS_INODELOCK_UPDATE);
962         if (IS_ERR(parent))
963                 GOTO(out, result = PTR_ERR(parent));
964
965         fid_zero(child_fid);
966
967         lname = mdt_name(info->mti_env, (char *)rr->rr_name, rr->rr_namelen);
968
969         result = mdo_lookup(info->mti_env, mdt_object_child(parent),
970                             lname, child_fid, &info->mti_spec);
971         LASSERTF(ergo(result == 0, fid_is_sane(child_fid)),
972                  "looking for "DFID"/%s, result fid="DFID"\n",
973                  PFID(mdt_object_fid(parent)), rr->rr_name, PFID(child_fid));
974
975         if (result != 0 && result != -ENOENT && result != -ESTALE)
976                 GOTO(out_parent, result);
977
978         if (result == -ENOENT || result == -ESTALE) {
979                 mdt_set_disposition(info, ldlm_rep, DISP_LOOKUP_NEG);
980                 if (result == -ESTALE) {
981                         /*
982                          * -ESTALE means the parent is a dead(unlinked) dir, so
983                          * it should return -ENOENT to in accordance with the
984                          * original mds implementaion.
985                          */
986                         GOTO(out_parent, result = -ENOENT);
987                 }
988                 if (!(create_flags & MDS_OPEN_CREAT))
989                         GOTO(out_parent, result);
990                 *child_fid = *info->mti_rr.rr_fid2;
991                 LASSERTF(fid_is_sane(child_fid), "fid="DFID"\n",
992                          PFID(child_fid));
993         } else {
994                 /*
995                  * Check for O_EXCL is moved to the mdt_finish_open(), we need to
996                  * return FID back in that case.
997                  */
998                 mdt_set_disposition(info, ldlm_rep, DISP_LOOKUP_POS);
999         }
1000
1001         child = mdt_object_find(info->mti_env, mdt, child_fid);
1002         if (IS_ERR(child))
1003                 GOTO(out_parent, result = PTR_ERR(child));
1004
1005         mdt_set_capainfo(info, 1, child_fid, BYPASS_CAPA);
1006         if (result == -ENOENT) {
1007                 /* Not found and with MDS_OPEN_CREAT: let's create it. */
1008                 mdt_set_disposition(info, ldlm_rep, DISP_OPEN_CREATE);
1009
1010                 info->mti_mos[0] = parent;
1011                 info->mti_mos[1] = child;
1012                 result = mdt_version_get_check(info, 0);
1013                 if (result)
1014                         GOTO(out_child, result);
1015
1016                 /* Let lower layers know what is lock mode on directory. */
1017                 info->mti_spec.sp_cr_mode =
1018                         mdt_dlm_mode2mdl_mode(lh->mlh_pdo_mode);
1019
1020                 /*
1021                  * Do not perform lookup sanity check. We know that name does
1022                  * not exist.
1023                  */
1024                 info->mti_spec.sp_cr_lookup = 0;
1025                 info->mti_spec.sp_feat = &dt_directory_features;
1026
1027                 result = mdo_create(info->mti_env,
1028                                     mdt_object_child(parent),
1029                                     lname,
1030                                     mdt_object_child(child),
1031                                     &info->mti_spec,
1032                                     &info->mti_attr);
1033                 if (result == -ERESTART) {
1034                         mdt_clear_disposition(info, ldlm_rep, DISP_OPEN_CREATE);
1035                         GOTO(out_child, result);
1036                 } else {
1037                         if (result != 0)
1038                                 GOTO(out_child, result);
1039                 }
1040                 created = 1;
1041         } else {
1042                 /* We have to get attr & lov ea for this object */
1043                 result = mo_attr_get(info->mti_env, mdt_object_child(child),
1044                                      ma);
1045                 /*
1046                  * The object is on remote node, return its FID for remote open.
1047                  */
1048                 if (result == -EREMOTE) {
1049                         /*
1050                          * Check if this lock already was sent to client and
1051                          * this is resent case. For resent case do not take lock
1052                          * again, use what is already granted.
1053                          */
1054                         LASSERT(lhc != NULL);
1055
1056                         if (lustre_handle_is_used(&lhc->mlh_reg_lh)) {
1057                                 struct ldlm_lock *lock;
1058
1059                                 LASSERT(msg_flags & MSG_RESENT);
1060
1061                                 lock = ldlm_handle2lock(&lhc->mlh_reg_lh);
1062                                 if (!lock) {
1063                                         CERROR("Invalid lock handle "LPX64"\n",
1064                                                lhc->mlh_reg_lh.cookie);
1065                                         LBUG();
1066                                 }
1067                                 LASSERT(fid_res_name_eq(mdt_object_fid(child),
1068                                                         &lock->l_resource->lr_name));
1069                                 LDLM_LOCK_PUT(lock);
1070                                 rc = 0;
1071                         } else {
1072                                 mdt_lock_handle_init(lhc);
1073                                 mdt_lock_reg_init(lhc, LCK_PR);
1074
1075                                 rc = mdt_object_lock(info, child, lhc,
1076                                                      MDS_INODELOCK_LOOKUP,
1077                                                      MDT_CROSS_LOCK);
1078                         }
1079                         repbody->fid1 = *mdt_object_fid(child);
1080                         repbody->valid |= (OBD_MD_FLID | OBD_MD_MDS);
1081                         if (rc != 0)
1082                                 result = rc;
1083                         GOTO(out_child, result);
1084                 }
1085         }
1086
1087         LASSERT(!lustre_handle_is_used(&lhc->mlh_reg_lh));
1088
1089         /* get openlock if this is not replay and if a client requested it */
1090         if (!(msg_flags & MSG_REPLAY) && create_flags & MDS_OPEN_LOCK) {
1091                 ldlm_mode_t lm;
1092
1093                 LASSERT(!created);
1094                 if (create_flags & FMODE_WRITE)
1095                         lm = LCK_CW;
1096                 else if (create_flags & MDS_FMODE_EXEC)
1097                         lm = LCK_PR;
1098                 else
1099                         lm = LCK_CR;
1100                 mdt_lock_handle_init(lhc);
1101                 mdt_lock_reg_init(lhc, lm);
1102                 rc = mdt_object_lock(info, child, lhc,
1103                                      MDS_INODELOCK_LOOKUP | MDS_INODELOCK_OPEN,
1104                                      MDT_CROSS_LOCK);
1105                 if (rc) {
1106                         result = rc;
1107                         GOTO(out_child, result);
1108                 } else {
1109                         result = -EREMOTE;
1110                         mdt_set_disposition(info, ldlm_rep, DISP_OPEN_LOCK);
1111                 }
1112         }
1113
1114         /* Try to open it now. */
1115         rc = mdt_finish_open(info, parent, child, create_flags,
1116                              created, ldlm_rep);
1117         if (rc) {
1118                 result = rc;
1119                 if (lustre_handle_is_used(&lhc->mlh_reg_lh))
1120                         /* openlock was acquired and mdt_finish_open failed -
1121                            drop the openlock */
1122                         mdt_object_unlock(info, child, lhc, 1);
1123                 if (created) {
1124                         ma->ma_need = 0;
1125                         ma->ma_valid = 0;
1126                         ma->ma_cookie_size = 0;
1127                         info->mti_no_need_trans = 1;
1128                         rc = mdo_unlink(info->mti_env,
1129                                         mdt_object_child(parent),
1130                                         mdt_object_child(child),
1131                                         lname,
1132                                         &info->mti_attr);
1133                         if (rc != 0)
1134                                 CERROR("Error in cleanup of open\n");
1135                 }
1136         }
1137         EXIT;
1138 out_child:
1139         mdt_object_put(info->mti_env, child);
1140 out_parent:
1141         mdt_object_unlock_put(info, parent, lh, result);
1142 out:
1143         if (result && result != -EREMOTE)
1144                 lustre_msg_set_transno(req->rq_repmsg, 0);
1145         return result;
1146 }
1147
1148 #define MFD_CLOSED(mode) (((mode) & ~(FMODE_EPOCH | FMODE_SOM | \
1149                                       FMODE_EPOCHLCK)) == FMODE_CLOSED)
1150
1151 static int mdt_mfd_closed(struct mdt_file_data *mfd)
1152 {
1153         return ((mfd == NULL) || MFD_CLOSED(mfd->mfd_mode));
1154 }
1155
1156 int mdt_mfd_close(struct mdt_thread_info *info, struct mdt_file_data *mfd)
1157 {
1158         struct mdt_object *o = mfd->mfd_object;
1159         struct md_object *next = mdt_object_child(o);
1160         struct md_attr *ma = &info->mti_attr;
1161         int rc = 0, ret = 0;
1162         int mode;
1163         ENTRY;
1164
1165         mode = mfd->mfd_mode;
1166
1167         if ((mode & FMODE_WRITE) || (mode & FMODE_EPOCHLCK)) {
1168                 mdt_write_put(info->mti_mdt, o);
1169                 ret = mdt_epoch_close(info, o);
1170         } else if (mode & MDS_FMODE_EXEC) {
1171                 mdt_write_allow(info->mti_mdt, o);
1172         } else if (mode & FMODE_EPOCH) {
1173                 ret = mdt_epoch_close(info, o);
1174         }
1175
1176         /* Update atime on close only. */
1177         if ((mode & MDS_FMODE_EXEC || mode & FMODE_READ || mode & FMODE_WRITE)
1178             && (ma->ma_valid & MA_INODE) && (ma->ma_attr.la_valid & LA_ATIME)) {
1179                 /* Set the atime only. */
1180                 ma->ma_attr.la_valid = LA_ATIME;
1181                 rc = mo_attr_set(info->mti_env, next, ma);
1182         }
1183
1184         ma->ma_need |= MA_INODE;
1185         ma->ma_valid = 0;
1186
1187         if (!MFD_CLOSED(mode))
1188                 rc = mo_close(info->mti_env, next, ma);
1189         else if (ret == -EAGAIN)
1190                 rc = mo_attr_get(info->mti_env, next, ma);
1191
1192         /* If the object is unlinked, do not try to re-enable SIZEONMDS */
1193         if ((ret == -EAGAIN) && (ma->ma_valid & MA_INODE) &&
1194             (ma->ma_attr.la_nlink == 0)) {
1195                 ret = 0;
1196         }
1197
1198         if ((ret == -EAGAIN) || (ret == 1)) {
1199                 struct mdt_export_data *med;
1200
1201                 /* The epoch has not closed or Size-on-MDS update is needed.
1202                  * Put mfd back into the list. */
1203                 LASSERT(mdt_conn_flags(info) & OBD_CONNECT_SOM);
1204                 mdt_mfd_set_mode(mfd, (ret == 1 ? FMODE_EPOCH : FMODE_SOM));
1205
1206                 LASSERT(mdt_info_req(info));
1207                 med = &mdt_info_req(info)->rq_export->exp_mdt_data;
1208                 spin_lock(&med->med_open_lock);
1209                 list_add(&mfd->mfd_list, &med->med_open_head);
1210                 class_handle_hash_back(&mfd->mfd_handle);
1211                 spin_unlock(&med->med_open_lock);
1212
1213                 if (ret == 1) {
1214                         ret = 0;
1215                 } else {
1216                         CDEBUG(D_INODE, "Size-on-MDS attribute update is "
1217                                "needed on "DFID"\n", PFID(mdt_object_fid(o)));
1218                 }
1219         } else {
1220                 mdt_mfd_free(mfd);
1221                 mdt_object_put(info->mti_env, o);
1222         }
1223
1224         RETURN(rc ? rc : ret);
1225 }
1226
1227 int mdt_close(struct mdt_thread_info *info)
1228 {
1229         struct mdt_export_data *med;
1230         struct mdt_file_data   *mfd;
1231         struct mdt_object      *o;
1232         struct md_attr         *ma = &info->mti_attr;
1233         struct mdt_body        *repbody = NULL;
1234         struct ptlrpc_request  *req = mdt_info_req(info);
1235         int rc, ret = 0;
1236         ENTRY;
1237
1238         /* Close may come with the Size-on-MDS update. Unpack it. */
1239         rc = mdt_close_unpack(info);
1240         if (rc)
1241                 RETURN(err_serious(rc));
1242
1243         LASSERT(info->mti_epoch);
1244
1245         req_capsule_set_size(info->mti_pill, &RMF_MDT_MD, RCL_SERVER,
1246                              info->mti_mdt->mdt_max_mdsize);
1247         req_capsule_set_size(info->mti_pill, &RMF_LOGCOOKIES, RCL_SERVER,
1248                              info->mti_mdt->mdt_max_cookiesize);
1249         rc = req_capsule_server_pack(info->mti_pill);
1250         if (mdt_check_resent(info, mdt_reconstruct_generic, NULL)) {
1251                 if (rc == 0)
1252                         mdt_shrink_reply(info);
1253                 RETURN(lustre_msg_get_status(req->rq_repmsg));
1254         }
1255
1256         /* Continue to close handle even if we can not pack reply */
1257         if (rc == 0) {
1258                 repbody = req_capsule_server_get(info->mti_pill,
1259                                                  &RMF_MDT_BODY);
1260                 ma->ma_lmm = req_capsule_server_get(info->mti_pill,
1261                                                     &RMF_MDT_MD);
1262                 ma->ma_lmm_size = req_capsule_get_size(info->mti_pill,
1263                                                        &RMF_MDT_MD,
1264                                                        RCL_SERVER);
1265                 ma->ma_cookie = req_capsule_server_get(info->mti_pill,
1266                                                        &RMF_LOGCOOKIES);
1267                 ma->ma_cookie_size = req_capsule_get_size(info->mti_pill,
1268                                                           &RMF_LOGCOOKIES,
1269                                                           RCL_SERVER);
1270                 ma->ma_need = MA_INODE | MA_LOV | MA_COOKIE;
1271                 repbody->eadatasize = 0;
1272                 repbody->aclsize = 0;
1273         } else {
1274                 rc = err_serious(rc);
1275         }
1276
1277         med = &req->rq_export->exp_mdt_data;
1278         spin_lock(&med->med_open_lock);
1279         mfd = mdt_handle2mfd(info, &info->mti_epoch->handle);
1280         if (mdt_mfd_closed(mfd)) {
1281                 spin_unlock(&med->med_open_lock);
1282                 CDEBUG(D_INODE, "no handle for file close: fid = "DFID
1283                        ": cookie = "LPX64"\n", PFID(info->mti_rr.rr_fid1),
1284                        info->mti_epoch->handle.cookie);
1285                 rc = err_serious(-ESTALE);
1286         } else {
1287                 class_handle_unhash(&mfd->mfd_handle);
1288                 list_del_init(&mfd->mfd_list);
1289                 spin_unlock(&med->med_open_lock);
1290
1291                 /* Do not lose object before last unlink. */
1292                 o = mfd->mfd_object;
1293                 mdt_object_get(info->mti_env, o);
1294                 ret = mdt_mfd_close(info, mfd);
1295                 if (repbody != NULL)
1296                         rc = mdt_handle_last_unlink(info, o, ma);
1297                 mdt_empty_transno(info);
1298                 mdt_object_put(info->mti_env, o);
1299         }
1300         if (repbody != NULL)
1301                 mdt_shrink_reply(info);
1302
1303         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_CLOSE_PACK))
1304                 RETURN(err_serious(-ENOMEM));
1305
1306         if (OBD_FAIL_CHECK_RESET(OBD_FAIL_MDS_CLOSE_NET_REP,
1307                                  OBD_FAIL_MDS_CLOSE_NET_REP))
1308                 info->mti_fail_id = OBD_FAIL_MDS_CLOSE_NET_REP;
1309         RETURN(rc ? rc : ret);
1310 }
1311
1312 int mdt_done_writing(struct mdt_thread_info *info)
1313 {
1314         struct mdt_body         *repbody = NULL;
1315         struct mdt_export_data  *med;
1316         struct mdt_file_data    *mfd;
1317         int rc;
1318         ENTRY;
1319
1320         rc = req_capsule_server_pack(info->mti_pill);
1321         if (rc)
1322                 RETURN(err_serious(rc));
1323
1324         repbody = req_capsule_server_get(info->mti_pill,
1325                                          &RMF_MDT_BODY);
1326         repbody->eadatasize = 0;
1327         repbody->aclsize = 0;
1328
1329         /* Done Writing may come with the Size-on-MDS update. Unpack it. */
1330         rc = mdt_close_unpack(info);
1331         if (rc)
1332                 RETURN(err_serious(rc));
1333
1334         if (mdt_check_resent(info, mdt_reconstruct_generic, NULL))
1335                 RETURN(lustre_msg_get_status(mdt_info_req(info)->rq_repmsg));
1336
1337         med = &info->mti_exp->exp_mdt_data;
1338         spin_lock(&med->med_open_lock);
1339         mfd = mdt_handle2mfd(info, &info->mti_epoch->handle);
1340         if (mfd == NULL) {
1341                 spin_unlock(&med->med_open_lock);
1342                 CDEBUG(D_INODE, "no handle for done write: fid = "DFID
1343                        ": cookie = "LPX64" ioepoch = "LPU64"\n",
1344                        PFID(info->mti_rr.rr_fid1),
1345                        info->mti_epoch->handle.cookie,
1346                        info->mti_epoch->ioepoch);
1347                 RETURN(-ESTALE);
1348         }
1349
1350         LASSERT(mfd->mfd_mode == FMODE_EPOCH ||
1351                 mfd->mfd_mode == FMODE_EPOCHLCK);
1352         class_handle_unhash(&mfd->mfd_handle);
1353         list_del_init(&mfd->mfd_list);
1354         spin_unlock(&med->med_open_lock);
1355
1356         /* Set EPOCH CLOSE flag if not set by client. */
1357         info->mti_epoch->flags |= MF_EPOCH_CLOSE;
1358         info->mti_attr.ma_valid = 0;
1359         rc = mdt_mfd_close(info, mfd);
1360         mdt_empty_transno(info);
1361         RETURN(rc);
1362 }