Whamcloud - gitweb
03043f2af4d86a5249f27b2979be0f54f48a82c4
[fs/lustre-release.git] / lustre / mdd / mdd_object.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2014, Intel Corporation.
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/mdd/mdd_object.c
37  *
38  * Lustre Metadata Server (mdd) routines
39  *
40  * Author: Wang Di <wangdi@clusterfs.com>
41  */
42
43 #define DEBUG_SUBSYSTEM S_MDS
44
45 #include <linux/module.h>
46 #include <obd.h>
47 #include <obd_class.h>
48 #include <obd_support.h>
49 #include <lprocfs_status.h>
50 /* fid_be_cpu(), fid_cpu_to_be(). */
51 #include <lustre_fid.h>
52 #include <lustre_idmap.h>
53 #include <lustre_param.h>
54 #include <lustre_mds.h>
55 #include <lustre/lustre_idl.h>
56
57 #include "mdd_internal.h"
58
59 static const struct lu_object_operations mdd_lu_obj_ops;
60
61 static int mdd_xattr_get(const struct lu_env *env,
62                          struct md_object *obj, struct lu_buf *buf,
63                          const char *name);
64
65 int mdd_la_get(const struct lu_env *env, struct mdd_object *obj,
66                struct lu_attr *la)
67 {
68         if (mdd_object_exists(obj) == 0) {
69                 CERROR("%s: object "DFID" not found: rc = -2\n",
70                        mdd_obj_dev_name(obj), PFID(mdd_object_fid(obj)));
71                 return -ENOENT;
72         }
73
74         return mdo_attr_get(env, obj, la);
75 }
76
77 struct mdd_thread_info *mdd_env_info(const struct lu_env *env)
78 {
79         struct mdd_thread_info *info;
80
81         lu_env_refill((struct lu_env *)env);
82         info = lu_context_key_get(&env->le_ctx, &mdd_thread_key);
83         LASSERT(info != NULL);
84         return info;
85 }
86
87 struct lu_buf *mdd_buf_get(const struct lu_env *env, void *area, ssize_t len)
88 {
89         struct lu_buf *buf;
90
91         buf = &mdd_env_info(env)->mti_buf[0];
92         buf->lb_buf = area;
93         buf->lb_len = len;
94         return buf;
95 }
96
97 const struct lu_buf *mdd_buf_get_const(const struct lu_env *env,
98                                        const void *area, ssize_t len)
99 {
100         struct lu_buf *buf;
101
102         buf = &mdd_env_info(env)->mti_buf[0];
103         buf->lb_buf = (void *)area;
104         buf->lb_len = len;
105         return buf;
106 }
107
108 struct lu_object *mdd_object_alloc(const struct lu_env *env,
109                                    const struct lu_object_header *hdr,
110                                    struct lu_device *d)
111 {
112         struct mdd_object *mdd_obj;
113
114         OBD_SLAB_ALLOC_PTR_GFP(mdd_obj, mdd_object_kmem, GFP_NOFS);
115         if (mdd_obj != NULL) {
116                 struct lu_object *o;
117
118                 o = mdd2lu_obj(mdd_obj);
119                 lu_object_init(o, NULL, d);
120                 mdd_obj->mod_obj.mo_ops = &mdd_obj_ops;
121                 mdd_obj->mod_obj.mo_dir_ops = &mdd_dir_ops;
122                 mdd_obj->mod_count = 0;
123                 o->lo_ops = &mdd_lu_obj_ops;
124                 return o;
125         } else {
126                 return NULL;
127         }
128 }
129
130 static int mdd_object_init(const struct lu_env *env, struct lu_object *o,
131                            const struct lu_object_conf *unused)
132 {
133         struct mdd_device *d = lu2mdd_dev(o->lo_dev);
134         struct mdd_object *mdd_obj = lu2mdd_obj(o);
135         struct lu_object  *below;
136         struct lu_device  *under;
137         ENTRY;
138
139         mdd_obj->mod_cltime = 0;
140         under = &d->mdd_child->dd_lu_dev;
141         below = under->ld_ops->ldo_object_alloc(env, o->lo_header, under);
142         if (IS_ERR(below))
143                 RETURN(PTR_ERR(below));
144
145         lu_object_add(o, below);
146
147         RETURN(0);
148 }
149
150 static int mdd_object_start(const struct lu_env *env, struct lu_object *o)
151 {
152         int rc = 0;
153
154         if (lu_object_exists(o)) {
155                 struct mdd_object *mdd_obj = lu2mdd_obj(o);
156                 struct lu_attr *attr = MDD_ENV_VAR(env, la_for_start);
157
158                 rc = mdd_la_get(env, mdd_obj, attr);
159         }
160
161         return rc;
162 }
163
164 static void mdd_object_free(const struct lu_env *env, struct lu_object *o)
165 {
166         struct mdd_object *mdd = lu2mdd_obj(o);
167
168         lu_object_fini(o);
169         OBD_SLAB_FREE_PTR(mdd, mdd_object_kmem);
170 }
171
172 static int mdd_object_print(const struct lu_env *env, void *cookie,
173                             lu_printer_t p, const struct lu_object *o)
174 {
175         struct mdd_object *mdd = lu2mdd_obj((struct lu_object *)o);
176         return (*p)(env, cookie, LUSTRE_MDD_NAME"-object@%p(open_count=%d, "
177                     "valid=%x, cltime="LPU64", flags=%lx)",
178                     mdd, mdd->mod_count, mdd->mod_valid,
179                     mdd->mod_cltime, mdd->mod_flags);
180 }
181
182 static const struct lu_object_operations mdd_lu_obj_ops = {
183         .loo_object_init    = mdd_object_init,
184         .loo_object_start   = mdd_object_start,
185         .loo_object_free    = mdd_object_free,
186         .loo_object_print   = mdd_object_print,
187 };
188
189 struct mdd_object *mdd_object_find(const struct lu_env *env,
190                                    struct mdd_device *d,
191                                    const struct lu_fid *f)
192 {
193         return md2mdd_obj(md_object_find_slice(env, &d->mdd_md_dev, f));
194 }
195
196 /*
197  * No permission check is needed.
198  */
199 int mdd_attr_get(const struct lu_env *env, struct md_object *obj,
200                  struct md_attr *ma)
201 {
202         struct mdd_object *mdd_obj = md2mdd_obj(obj);
203         int               rc;
204
205         ENTRY;
206
207         rc = mdd_la_get(env, mdd_obj, &ma->ma_attr);
208         if ((ma->ma_need & MA_INODE) != 0 && mdd_is_dead_obj(mdd_obj))
209                 ma->ma_attr.la_nlink = 0;
210
211         RETURN(rc);
212 }
213
214 /*
215  * No permission check is needed.
216  */
217 static int mdd_xattr_get(const struct lu_env *env,
218                          struct md_object *obj, struct lu_buf *buf,
219                          const char *name)
220 {
221         struct mdd_object *mdd_obj = md2mdd_obj(obj);
222         int rc;
223
224         ENTRY;
225
226         if (mdd_object_exists(mdd_obj) == 0) {
227                 CERROR("%s: object "DFID" not found: rc = -2\n",
228                        mdd_obj_dev_name(mdd_obj),PFID(mdd_object_fid(mdd_obj)));
229                 return -ENOENT;
230         }
231
232         /* If the object has been destroyed, then do not get LMVEA, because
233          * it needs to load stripes from the iteration of the master object,
234          * and it will cause problem if master object has been destroyed, see
235          * LU-6427 */
236         if (unlikely((mdd_obj->mod_flags & DEAD_OBJ) &&
237                      !(mdd_obj->mod_flags & ORPHAN_OBJ) &&
238                       strcmp(name, XATTR_NAME_LMV) == 0))
239                 RETURN(-ENOENT);
240
241         /* If the object has been delete from the namespace, then
242          * get linkEA should return -ENOENT as well */
243         if (unlikely((mdd_obj->mod_flags & (DEAD_OBJ | ORPHAN_OBJ)) &&
244                       strcmp(name, XATTR_NAME_LINK) == 0))
245                 RETURN(-ENOENT);
246
247         mdd_read_lock(env, mdd_obj, MOR_TGT_CHILD);
248         rc = mdo_xattr_get(env, mdd_obj, buf, name);
249         mdd_read_unlock(env, mdd_obj);
250
251         RETURN(rc);
252 }
253
254 /*
255  * Permission check is done when open,
256  * no need check again.
257  */
258 int mdd_readlink(const struct lu_env *env, struct md_object *obj,
259                  struct lu_buf *buf)
260 {
261         struct mdd_object *mdd_obj = md2mdd_obj(obj);
262         struct dt_object  *next;
263         loff_t             pos = 0;
264         int                rc;
265         ENTRY;
266
267         if (mdd_object_exists(mdd_obj) == 0) {
268                 CERROR("%s: object "DFID" not found: rc = -2\n",
269                        mdd_obj_dev_name(mdd_obj),PFID(mdd_object_fid(mdd_obj)));
270                 return -ENOENT;
271         }
272
273         next = mdd_object_child(mdd_obj);
274         LASSERT(next != NULL);
275         LASSERT(next->do_body_ops != NULL);
276         LASSERT(next->do_body_ops->dbo_read != NULL);
277         mdd_read_lock(env, mdd_obj, MOR_TGT_CHILD);
278         rc = dt_read(env, next, buf, &pos);
279         mdd_read_unlock(env, mdd_obj);
280         RETURN(rc);
281 }
282
283 /*
284  * No permission check is needed.
285  */
286 static int mdd_xattr_list(const struct lu_env *env, struct md_object *obj,
287                           struct lu_buf *buf)
288 {
289         struct mdd_object *mdd_obj = md2mdd_obj(obj);
290         int rc;
291
292         ENTRY;
293
294         mdd_read_lock(env, mdd_obj, MOR_TGT_CHILD);
295         rc = mdo_xattr_list(env, mdd_obj, buf);
296         mdd_read_unlock(env, mdd_obj);
297
298         if (rc < 0)
299                 RETURN(rc);
300
301         /*
302          * Filter out XATTR_NAME_LINK if this is an orphan object.  See
303          * mdd_xattr_get().
304          */
305         if (unlikely(mdd_obj->mod_flags & (DEAD_OBJ | ORPHAN_OBJ))) {
306                 char   *end = (char *)buf->lb_buf + rc;
307                 char   *p = buf->lb_buf;
308
309                 while (p < end) {
310                         char   *next = p + strlen(p) + 1;
311
312                         if (strcmp(p, XATTR_NAME_LINK) == 0) {
313                                 if (end - next > 0)
314                                         memmove(p, next, end - next);
315                                 rc -= next - p;
316                                 CDEBUG(D_INFO, "Filtered out "XATTR_NAME_LINK
317                                        " of orphan "DFID"\n",
318                                        PFID(mdd_object_fid(mdd_obj)));
319                                 break;
320                         }
321
322                         p = next;
323                 }
324         }
325
326         RETURN(rc);
327 }
328
329 int mdd_declare_object_create_internal(const struct lu_env *env,
330                                        struct mdd_object *p,
331                                        struct mdd_object *c,
332                                        struct lu_attr *attr,
333                                        struct thandle *handle,
334                                        const struct md_op_spec *spec,
335                                        struct dt_allocation_hint *hint)
336 {
337         struct dt_object_format *dof = &mdd_env_info(env)->mti_dof;
338         const struct dt_index_features *feat = spec->sp_feat;
339         int rc;
340         ENTRY;
341
342         if (feat != &dt_directory_features && feat != NULL) {
343                 dof->dof_type = DFT_INDEX;
344                 dof->u.dof_idx.di_feat = feat;
345
346         } else {
347                 dof->dof_type = dt_mode_to_dft(attr->la_mode);
348                 if (dof->dof_type == DFT_REGULAR) {
349                         dof->u.dof_reg.striped =
350                                 md_should_create(spec->sp_cr_flags);
351                         if (spec->sp_cr_flags & MDS_OPEN_HAS_EA)
352                                 dof->u.dof_reg.striped = 0;
353                         /* is this replay? */
354                         if (spec->no_create)
355                                 dof->u.dof_reg.striped = 0;
356                 }
357         }
358
359         rc = mdo_declare_create_obj(env, c, attr, hint, dof, handle);
360
361         RETURN(rc);
362 }
363
364 int mdd_object_create_internal(const struct lu_env *env, struct mdd_object *p,
365                                struct mdd_object *c, struct lu_attr *attr,
366                                struct thandle *handle,
367                                const struct md_op_spec *spec,
368                                struct dt_allocation_hint *hint)
369 {
370         struct dt_object_format *dof = &mdd_env_info(env)->mti_dof;
371         int rc;
372         ENTRY;
373
374         LASSERT(!mdd_object_exists(c));
375
376         rc = mdo_create_obj(env, c, attr, hint, dof, handle);
377
378         RETURN(rc);
379 }
380
381 int mdd_attr_set_internal(const struct lu_env *env, struct mdd_object *obj,
382                           const struct lu_attr *attr, struct thandle *handle,
383                           int needacl)
384 {
385         int rc;
386         ENTRY;
387
388         rc = mdo_attr_set(env, obj, attr, handle);
389 #ifdef CONFIG_FS_POSIX_ACL
390         if (!rc && (attr->la_valid & LA_MODE) && needacl)
391                 rc = mdd_acl_chmod(env, obj, attr->la_mode, handle);
392 #endif
393         RETURN(rc);
394 }
395
396 int mdd_update_time(const struct lu_env *env, struct mdd_object *obj,
397                     const struct lu_attr *oattr, struct lu_attr *attr,
398                     struct thandle *handle)
399 {
400         int rc = 0;
401         ENTRY;
402
403         LASSERT(attr->la_valid & LA_CTIME);
404         LASSERT(oattr != NULL);
405
406         /* Make sure the ctime is increased only, however, it's not strictly
407          * reliable at here because there is not guarantee to hold lock on
408          * object, so we just bypass some unnecessary cmtime setting first
409          * and OSD has to check it again. */
410         if (attr->la_ctime < oattr->la_ctime)
411                 attr->la_valid &= ~(LA_MTIME | LA_CTIME);
412         else if (attr->la_valid == LA_CTIME &&
413                  attr->la_ctime == oattr->la_ctime)
414                 attr->la_valid &= ~LA_CTIME;
415
416         if (attr->la_valid != 0)
417                 rc = mdd_attr_set_internal(env, obj, attr, handle, 0);
418         RETURN(rc);
419 }
420
421 /*
422  * This gives the same functionality as the code between
423  * sys_chmod and inode_setattr
424  * chown_common and inode_setattr
425  * utimes and inode_setattr
426  * This API is ported from mds_fix_attr but remove some unnecesssary stuff.
427  */
428 static int mdd_fix_attr(const struct lu_env *env, struct mdd_object *obj,
429                         const struct lu_attr *oattr, struct lu_attr *la,
430                         const unsigned long flags)
431 {
432         struct lu_ucred  *uc;
433         int               rc = 0;
434         ENTRY;
435
436         if (!la->la_valid)
437                 RETURN(0);
438
439         /* Do not permit change file type */
440         if (la->la_valid & LA_TYPE)
441                 RETURN(-EPERM);
442
443         /* They should not be processed by setattr */
444         if (la->la_valid & (LA_NLINK | LA_RDEV | LA_BLKSIZE))
445                 RETURN(-EPERM);
446
447         LASSERT(oattr != NULL);
448
449         uc = lu_ucred_check(env);
450         if (uc == NULL)
451                 RETURN(0);
452
453         if (la->la_valid == LA_CTIME) {
454                 if (!(flags & MDS_PERM_BYPASS))
455                         /* This is only for set ctime when rename's source is
456                          * on remote MDS. */
457                         rc = mdd_may_delete(env, NULL, NULL, obj, oattr, NULL,
458                                             1, 0);
459                 if (rc == 0 && la->la_ctime <= oattr->la_ctime)
460                         la->la_valid &= ~LA_CTIME;
461                 RETURN(rc);
462         }
463
464         if (la->la_valid == LA_ATIME) {
465                 /* This is atime only set for read atime update on close. */
466                 if (la->la_atime >= oattr->la_atime &&
467                     la->la_atime < (oattr->la_atime +
468                                 mdd_obj2mdd_dev(obj)->mdd_atime_diff))
469                         la->la_valid &= ~LA_ATIME;
470                 RETURN(0);
471         }
472
473         /* Check if flags change. */
474         if (la->la_valid & LA_FLAGS) {
475                 unsigned int oldflags = oattr->la_flags &
476                                 (LUSTRE_IMMUTABLE_FL | LUSTRE_APPEND_FL);
477                 unsigned int newflags = la->la_flags &
478                                 (LUSTRE_IMMUTABLE_FL | LUSTRE_APPEND_FL);
479
480                 if ((uc->uc_fsuid != oattr->la_uid) &&
481                     !md_capable(uc, CFS_CAP_FOWNER))
482                         RETURN(-EPERM);
483
484                 /* The IMMUTABLE and APPEND_ONLY flags can
485                  * only be changed by the relevant capability. */
486                 if ((oldflags ^ newflags) &&
487                     !md_capable(uc, CFS_CAP_LINUX_IMMUTABLE))
488                         RETURN(-EPERM);
489
490                 if (!S_ISDIR(oattr->la_mode))
491                         la->la_flags &= ~LUSTRE_DIRSYNC_FL;
492         }
493
494         if (oattr->la_flags & (LUSTRE_IMMUTABLE_FL | LUSTRE_APPEND_FL) &&
495             (la->la_valid & ~LA_FLAGS) &&
496             !(flags & MDS_PERM_BYPASS))
497                 RETURN(-EPERM);
498
499         /* Check for setting the obj time. */
500         if ((la->la_valid & (LA_MTIME | LA_ATIME | LA_CTIME)) &&
501             !(la->la_valid & ~(LA_MTIME | LA_ATIME | LA_CTIME))) {
502                 if ((uc->uc_fsuid != oattr->la_uid) &&
503                     !md_capable(uc, CFS_CAP_FOWNER)) {
504                         rc = mdd_permission_internal(env, obj, oattr,
505                                                      MAY_WRITE);
506                         if (rc)
507                                 RETURN(rc);
508                 }
509         }
510
511         if (la->la_valid & LA_KILL_SUID) {
512                 la->la_valid &= ~LA_KILL_SUID;
513                 if ((oattr->la_mode & S_ISUID) &&
514                     !(la->la_valid & LA_MODE)) {
515                         la->la_mode = oattr->la_mode;
516                         la->la_valid |= LA_MODE;
517                 }
518                 la->la_mode &= ~S_ISUID;
519         }
520
521         if (la->la_valid & LA_KILL_SGID) {
522                 la->la_valid &= ~LA_KILL_SGID;
523                 if (((oattr->la_mode & (S_ISGID | S_IXGRP)) ==
524                         (S_ISGID | S_IXGRP)) &&
525                     !(la->la_valid & LA_MODE)) {
526                         la->la_mode = oattr->la_mode;
527                         la->la_valid |= LA_MODE;
528                 }
529                 la->la_mode &= ~S_ISGID;
530         }
531
532         /* Make sure a caller can chmod. */
533         if (la->la_valid & LA_MODE) {
534                 if (!(flags & MDS_PERM_BYPASS) &&
535                     (uc->uc_fsuid != oattr->la_uid) &&
536                     !md_capable(uc, CFS_CAP_FOWNER))
537                         RETURN(-EPERM);
538
539                 if (la->la_mode == (umode_t) -1)
540                         la->la_mode = oattr->la_mode;
541                 else
542                         la->la_mode = (la->la_mode & S_IALLUGO) |
543                                         (oattr->la_mode & ~S_IALLUGO);
544
545                 /* Also check the setgid bit! */
546                 if (!lustre_in_group_p(uc, (la->la_valid & LA_GID) ?
547                                        la->la_gid : oattr->la_gid) &&
548                     !md_capable(uc, CFS_CAP_FSETID))
549                         la->la_mode &= ~S_ISGID;
550         } else {
551                la->la_mode = oattr->la_mode;
552         }
553
554         /* Make sure a caller can chown. */
555         if (la->la_valid & LA_UID) {
556                 if (la->la_uid == (uid_t) -1)
557                         la->la_uid = oattr->la_uid;
558                 if (((uc->uc_fsuid != oattr->la_uid) ||
559                      (la->la_uid != oattr->la_uid)) &&
560                     !md_capable(uc, CFS_CAP_CHOWN))
561                         RETURN(-EPERM);
562
563                 /* If the user or group of a non-directory has been
564                  * changed by a non-root user, remove the setuid bit.
565                  * 19981026 David C Niemi <niemi@tux.org>
566                  *
567                  * Changed this to apply to all users, including root,
568                  * to avoid some races. This is the behavior we had in
569                  * 2.0. The check for non-root was definitely wrong
570                  * for 2.2 anyway, as it should have been using
571                  * CAP_FSETID rather than fsuid -- 19990830 SD. */
572                 if (((oattr->la_mode & S_ISUID) == S_ISUID) &&
573                 !S_ISDIR(oattr->la_mode)) {
574                         la->la_mode &= ~S_ISUID;
575                         la->la_valid |= LA_MODE;
576                 }
577         }
578
579         /* Make sure caller can chgrp. */
580         if (la->la_valid & LA_GID) {
581                 if (la->la_gid == (gid_t) -1)
582                         la->la_gid = oattr->la_gid;
583                 if (((uc->uc_fsuid != oattr->la_uid) ||
584                      ((la->la_gid != oattr->la_gid) &&
585                       !lustre_in_group_p(uc, la->la_gid))) &&
586                     !md_capable(uc, CFS_CAP_CHOWN))
587                         RETURN(-EPERM);
588
589                 /* Likewise, if the user or group of a non-directory
590                  * has been changed by a non-root user, remove the
591                  * setgid bit UNLESS there is no group execute bit
592                  * (this would be a file marked for mandatory
593                  * locking).  19981026 David C Niemi <niemi@tux.org>
594                  *
595                  * Removed the fsuid check (see the comment above) --
596                  * 19990830 SD. */
597                 if (((oattr->la_mode & (S_ISGID | S_IXGRP)) ==
598                     (S_ISGID | S_IXGRP)) && !S_ISDIR(oattr->la_mode)) {
599                         la->la_mode &= ~S_ISGID;
600                         la->la_valid |= LA_MODE;
601                 }
602         }
603
604         if (la->la_valid & (LA_SIZE | LA_BLOCKS)) {
605                 if (!((flags & MDS_OWNEROVERRIDE) &&
606                       (uc->uc_fsuid == oattr->la_uid)) &&
607                     !(flags & MDS_PERM_BYPASS)) {
608                         rc = mdd_permission_internal(env, obj, oattr,
609                                                      MAY_WRITE);
610                         if (rc != 0)
611                                 RETURN(rc);
612                 }
613         }
614
615         if (la->la_valid & LA_CTIME) {
616                 /* The pure setattr, it has the priority over what is
617                  * already set, do not drop it if ctime is equal. */
618                 if (la->la_ctime < oattr->la_ctime)
619                         la->la_valid &= ~(LA_ATIME | LA_MTIME | LA_CTIME);
620         }
621
622         RETURN(0);
623 }
624
625 /** Store a data change changelog record
626  * If this fails, we must fail the whole transaction; we don't
627  * want the change to commit without the log entry.
628  * \param mdd_obj - mdd_object of change
629  * \param handle - transaction handle
630  */
631 int mdd_changelog_data_store(const struct lu_env *env, struct mdd_device *mdd,
632                              enum changelog_rec_type type, int flags,
633                              struct mdd_object *mdd_obj, struct thandle *handle)
634 {
635         const struct lu_ucred           *uc = lu_ucred(env);
636         const struct lu_fid             *tfid;
637         struct llog_changelog_rec       *rec;
638         struct lu_buf                   *buf;
639         int                              reclen;
640         int                              rc;
641
642         /* Not recording */
643         if (!(mdd->mdd_cl.mc_flags & CLM_ON))
644                 RETURN(0);
645         if ((mdd->mdd_cl.mc_mask & (1 << type)) == 0)
646                 RETURN(0);
647
648         LASSERT(mdd_obj != NULL);
649         LASSERT(handle != NULL);
650
651         tfid = mdo2fid(mdd_obj);
652
653         if ((type >= CL_MTIME) && (type <= CL_ATIME) &&
654             cfs_time_before_64(mdd->mdd_cl.mc_starttime, mdd_obj->mod_cltime)) {
655                 /* Don't need multiple updates in this log */
656                 /* Don't check under lock - no big deal if we get an extra
657                    entry */
658                 RETURN(0);
659         }
660
661         flags = (flags & CLF_FLAGMASK) | CLF_VERSION;
662         if (uc != NULL && uc->uc_jobid[0] != '\0')
663                 flags |= CLF_JOBID;
664
665         reclen = llog_data_len(changelog_rec_offset(flags & CLF_SUPPORTED));
666         buf = lu_buf_check_and_alloc(&mdd_env_info(env)->mti_big_buf, reclen);
667         if (buf->lb_buf == NULL)
668                 RETURN(-ENOMEM);
669         rec = buf->lb_buf;
670
671         rec->cr.cr_flags = flags;
672         rec->cr.cr_type = (__u32)type;
673         rec->cr.cr_tfid = *tfid;
674         rec->cr.cr_namelen = 0;
675         mdd_obj->mod_cltime = cfs_time_current_64();
676
677         if (flags & CLF_JOBID)
678                 mdd_changelog_rec_ext_jobid(&rec->cr, uc->uc_jobid);
679
680         rc = mdd_changelog_store(env, mdd, rec, handle);
681
682         RETURN(rc);
683 }
684
685 static int mdd_changelog(const struct lu_env *env, enum changelog_rec_type type,
686                          int flags, struct md_object *obj)
687 {
688         struct thandle *handle;
689         struct mdd_object *mdd_obj = md2mdd_obj(obj);
690         struct mdd_device *mdd = mdo2mdd(obj);
691         int rc;
692         ENTRY;
693
694         handle = mdd_trans_create(env, mdd);
695         if (IS_ERR(handle))
696                 RETURN(PTR_ERR(handle));
697
698         rc = mdd_declare_changelog_store(env, mdd, NULL, NULL, handle);
699         if (rc)
700                 GOTO(stop, rc);
701
702         rc = mdd_trans_start(env, mdd, handle);
703         if (rc)
704                 GOTO(stop, rc);
705
706         rc = mdd_changelog_data_store(env, mdd, type, flags, mdd_obj,
707                                       handle);
708
709 stop:
710         mdd_trans_stop(env, mdd, rc, handle);
711
712         RETURN(rc);
713 }
714
715 /**
716  * Save LMA extended attributes with data from \a ma.
717  *
718  * HSM and Size-On-MDS data will be extracted from \ma if they are valid, if
719  * not, LMA EA will be first read from disk, modified and write back.
720  *
721  */
722 /* Precedence for choosing record type when multiple
723  * attributes change: setattr > mtime > ctime > atime
724  * (ctime changes when mtime does, plus chmod/chown.
725  * atime and ctime are independent.) */
726 static int mdd_attr_set_changelog(const struct lu_env *env,
727                                   struct md_object *obj, struct thandle *handle,
728                                   __u64 valid)
729 {
730         struct mdd_device *mdd = mdo2mdd(obj);
731         int bits, type = 0;
732
733         bits =  (valid & LA_SIZE)  ? 1 << CL_TRUNC : 0;
734         bits |= (valid & ~(LA_CTIME|LA_MTIME|LA_ATIME)) ? 1 << CL_SETATTR : 0;
735         bits |= (valid & LA_MTIME) ? 1 << CL_MTIME : 0;
736         bits |= (valid & LA_CTIME) ? 1 << CL_CTIME : 0;
737         bits |= (valid & LA_ATIME) ? 1 << CL_ATIME : 0;
738         bits = bits & mdd->mdd_cl.mc_mask;
739         /* This is an implementation limit rather than a protocol limit */
740         CLASSERT(CL_LAST <= sizeof(int) * 8);
741         if (bits == 0)
742                 return 0;
743
744         /* The record type is the lowest non-masked set bit */
745         type = __ffs(bits);
746
747         /* FYI we only store the first CLF_FLAGMASK bits of la_valid */
748         return mdd_changelog_data_store(env, mdd, type, (int)valid,
749                                         md2mdd_obj(obj), handle);
750 }
751
752 static int mdd_declare_attr_set(const struct lu_env *env,
753                                 struct mdd_device *mdd,
754                                 struct mdd_object *obj,
755                                 const struct lu_attr *attr,
756                                 struct thandle *handle)
757 {
758         int rc;
759
760         rc = mdo_declare_attr_set(env, obj, attr, handle);
761         if (rc)
762                 return rc;
763
764 #ifdef CONFIG_FS_POSIX_ACL
765         if (attr->la_valid & LA_MODE) {
766                 mdd_read_lock(env, obj, MOR_TGT_CHILD);
767                 rc = mdo_xattr_get(env, obj, &LU_BUF_NULL,
768                                    XATTR_NAME_ACL_ACCESS);
769                 mdd_read_unlock(env, obj);
770                 if (rc == -EOPNOTSUPP || rc == -ENODATA)
771                         rc = 0;
772                 else if (rc < 0)
773                         return rc;
774
775                 if (rc != 0) {
776                         struct lu_buf *buf = mdd_buf_get(env, NULL, rc);
777                         rc = mdo_declare_xattr_set(env, obj, buf,
778                                                    XATTR_NAME_ACL_ACCESS, 0,
779                                                    handle);
780                         if (rc)
781                                 return rc;
782                 }
783         }
784 #endif
785
786         rc = mdd_declare_changelog_store(env, mdd, NULL, NULL, handle);
787         return rc;
788 }
789
790 /*
791  * LU-3671
792  *
793  * permission changes may require sync operation, to mitigate performance
794  * impact, only do this for dir and when permission is reduced.
795  *
796  * For regular files, version is updated with permission change (see VBR), async
797  * permission won't cause any issue, while missing permission change on
798  * directory may affect accessibility of other objects after recovery.
799  */
800 static inline bool permission_needs_sync(const struct lu_attr *old,
801                                          const struct lu_attr *new)
802 {
803         if (!S_ISDIR(old->la_mode))
804                 return false;
805
806         if (new->la_valid & (LA_UID | LA_GID))
807                 return true;
808
809         if (new->la_valid & LA_MODE &&
810             new->la_mode & (S_ISUID | S_ISGID | S_ISVTX))
811                 return true;
812
813         if ((new->la_valid & LA_MODE) &&
814             ((new->la_mode & old->la_mode) & S_IRWXUGO) !=
815              (old->la_mode & S_IRWXUGO))
816                 return true;
817
818         return false;
819 }
820
821 /* set attr and LOV EA at once, return updated attr */
822 int mdd_attr_set(const struct lu_env *env, struct md_object *obj,
823                  const struct md_attr *ma)
824 {
825         struct mdd_object *mdd_obj = md2mdd_obj(obj);
826         struct mdd_device *mdd = mdo2mdd(obj);
827         struct thandle *handle;
828         struct lu_attr *la_copy = &mdd_env_info(env)->mti_la_for_fix;
829         struct lu_attr *attr = MDD_ENV_VAR(env, cattr);
830         const struct lu_attr *la = &ma->ma_attr;
831         int rc;
832         ENTRY;
833
834         /* we do not use ->attr_set() for LOV/HSM EA any more */
835         LASSERT((ma->ma_valid & MA_LOV) == 0);
836         LASSERT((ma->ma_valid & MA_HSM) == 0);
837
838         rc = mdd_la_get(env, mdd_obj, attr);
839         if (rc)
840                 RETURN(rc);
841
842         *la_copy = ma->ma_attr;
843         rc = mdd_fix_attr(env, mdd_obj, attr, la_copy, ma->ma_attr_flags);
844         if (rc)
845                 RETURN(rc);
846
847         /* no need to setattr anymore */
848         if (la_copy->la_valid == 0) {
849                 CDEBUG(D_INODE, "%s: no valid attribute on "DFID", previous"
850                        "valid is "LPX64"\n", mdd2obd_dev(mdd)->obd_name,
851                        PFID(mdo2fid(mdd_obj)), la->la_valid);
852
853                 RETURN(0);
854         }
855
856         handle = mdd_trans_create(env, mdd);
857         if (IS_ERR(handle))
858                 RETURN(PTR_ERR(handle));
859
860         rc = mdd_declare_attr_set(env, mdd, mdd_obj, la_copy, handle);
861         if (rc)
862                 GOTO(stop, rc);
863
864         rc = mdd_trans_start(env, mdd, handle);
865         if (rc)
866                 GOTO(stop, rc);
867
868         if (mdd->mdd_sync_permission && permission_needs_sync(attr, la))
869                 handle->th_sync = 1;
870
871         if (la->la_valid & (LA_MTIME | LA_CTIME))
872                 CDEBUG(D_INODE, "setting mtime "LPU64", ctime "LPU64"\n",
873                        la->la_mtime, la->la_ctime);
874
875         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
876         if (la_copy->la_valid & LA_FLAGS)
877                 rc = mdd_attr_set_internal(env, mdd_obj, la_copy, handle, 1);
878         else if (la_copy->la_valid) /* setattr */
879                 rc = mdd_attr_set_internal(env, mdd_obj, la_copy, handle, 1);
880         mdd_write_unlock(env, mdd_obj);
881
882         if (rc == 0)
883                 rc = mdd_attr_set_changelog(env, obj, handle,
884                                             la_copy->la_valid);
885
886         GOTO(stop, rc);
887
888 stop:
889         mdd_trans_stop(env, mdd, rc, handle);
890         return rc;
891 }
892
893 static int mdd_xattr_sanity_check(const struct lu_env *env,
894                                   struct mdd_object *obj,
895                                   const struct lu_attr *attr)
896 {
897         struct lu_ucred *uc     = lu_ucred_assert(env);
898         ENTRY;
899
900         if (attr->la_flags & (LUSTRE_IMMUTABLE_FL | LUSTRE_APPEND_FL))
901                 RETURN(-EPERM);
902
903         if ((uc->uc_fsuid != attr->la_uid) && !md_capable(uc, CFS_CAP_FOWNER))
904                 RETURN(-EPERM);
905
906         RETURN(0);
907 }
908
909 static int mdd_declare_xattr_set(const struct lu_env *env,
910                                  struct mdd_device *mdd,
911                                  struct mdd_object *obj,
912                                  const struct lu_buf *buf,
913                                  const char *name,
914                                  int fl, struct thandle *handle)
915 {
916         int     rc;
917
918         rc = mdo_declare_xattr_set(env, obj, buf, name, fl, handle);
919         if (rc)
920                 return rc;
921
922         /* Only record user and layout xattr changes */
923         if (strncmp(XATTR_USER_PREFIX, name,
924                     sizeof(XATTR_USER_PREFIX) - 1) == 0 ||
925             strcmp(XATTR_NAME_LOV, name) == 0) {
926                 rc = mdd_declare_changelog_store(env, mdd, NULL, NULL, handle);
927                 if (rc)
928                         return rc;
929         }
930
931         /* If HSM data is modified, this could add a changelog */
932         if (strcmp(XATTR_NAME_HSM, name) == 0) {
933                 rc = mdd_declare_changelog_store(env, mdd, NULL, NULL, handle);
934                 if (rc)
935                         return rc;
936         }
937
938         rc = mdd_declare_changelog_store(env, mdd, NULL, NULL, handle);
939         return rc;
940 }
941
942 /*
943  * Compare current and future data of HSM EA and add a changelog if needed.
944  *
945  * Caller should have write-locked \param obj.
946  *
947  * \param buf - Future HSM EA content.
948  * \retval 0 if no changelog is needed or changelog was added properly.
949  * \retval -ve errno if there was a problem
950  */
951 static int mdd_hsm_update_locked(const struct lu_env *env,
952                                  struct md_object *obj,
953                                  const struct lu_buf *buf,
954                                  struct thandle *handle)
955 {
956         struct mdd_thread_info *info = mdd_env_info(env);
957         struct mdd_device      *mdd = mdo2mdd(obj);
958         struct mdd_object      *mdd_obj = md2mdd_obj(obj);
959         struct lu_buf          *current_buf;
960         struct md_hsm          *current_mh;
961         struct md_hsm          *new_mh;
962         int                     rc;
963         ENTRY;
964
965         OBD_ALLOC_PTR(current_mh);
966         if (current_mh == NULL)
967                 RETURN(-ENOMEM);
968
969         /* Read HSM attrs from disk */
970         CLASSERT(sizeof(struct hsm_attrs) <= sizeof(info->mti_xattr_buf));
971         current_buf = mdd_buf_get(env, info->mti_xattr_buf,
972                                   sizeof(info->mti_xattr_buf));
973         rc = mdo_xattr_get(env, mdd_obj, current_buf, XATTR_NAME_HSM);
974         rc = lustre_buf2hsm(current_buf->lb_buf, rc, current_mh);
975         if (rc < 0 && rc != -ENODATA)
976                 GOTO(free, rc);
977         else if (rc == -ENODATA)
978                 current_mh->mh_flags = 0;
979
980         /* Map future HSM xattr */
981         OBD_ALLOC_PTR(new_mh);
982         if (new_mh == NULL)
983                 GOTO(free, rc = -ENOMEM);
984         lustre_buf2hsm(buf->lb_buf, buf->lb_len, new_mh);
985
986         /* If HSM flags are different, add a changelog */
987         rc = 0;
988         if (current_mh->mh_flags != new_mh->mh_flags) {
989                 int flags = 0;
990                 hsm_set_cl_event(&flags, HE_STATE);
991                 if (new_mh->mh_flags & HS_DIRTY)
992                         hsm_set_cl_flags(&flags, CLF_HSM_DIRTY);
993
994                 rc = mdd_changelog_data_store(env, mdd, CL_HSM, flags, mdd_obj,
995                                               handle);
996         }
997
998         OBD_FREE_PTR(new_mh);
999 free:
1000         OBD_FREE_PTR(current_mh);
1001         return(rc);
1002 }
1003
1004 static int mdd_xattr_del(const struct lu_env *env, struct md_object *obj,
1005                          const char *name);
1006
1007 /**
1008  * The caller should guarantee to update the object ctime
1009  * after xattr_set if needed.
1010  */
1011 static int mdd_xattr_set(const struct lu_env *env, struct md_object *obj,
1012                          const struct lu_buf *buf, const char *name,
1013                          int fl)
1014 {
1015         struct mdd_object       *mdd_obj = md2mdd_obj(obj);
1016         struct lu_attr          *attr = MDD_ENV_VAR(env, cattr);
1017         struct mdd_device       *mdd = mdo2mdd(obj);
1018         struct thandle          *handle;
1019         int                      rc;
1020         ENTRY;
1021
1022         rc = mdd_la_get(env, mdd_obj, attr);
1023         if (rc)
1024                 RETURN(rc);
1025
1026         rc = mdd_xattr_sanity_check(env, mdd_obj, attr);
1027         if (rc)
1028                 RETURN(rc);
1029
1030         if (strcmp(name, XATTR_NAME_ACL_ACCESS) == 0 ||
1031             strcmp(name, XATTR_NAME_ACL_DEFAULT) == 0) {
1032                 struct posix_acl *acl;
1033
1034                 /* user may set empty ACL, which should be treated as removing
1035                  * ACL. */
1036                 acl = posix_acl_from_xattr(&init_user_ns, buf->lb_buf,
1037                                            buf->lb_len);
1038                 if (IS_ERR(acl))
1039                         RETURN(PTR_ERR(acl));
1040                 if (acl == NULL) {
1041                         rc = mdd_xattr_del(env, obj, name);
1042                         RETURN(rc);
1043                 }
1044                 posix_acl_release(acl);
1045         }
1046
1047         if (!strcmp(name, XATTR_NAME_ACL_ACCESS)) {
1048                 rc = mdd_acl_set(env, mdd_obj, attr, buf, fl);
1049                 RETURN(rc);
1050         }
1051
1052         handle = mdd_trans_create(env, mdd);
1053         if (IS_ERR(handle))
1054                 RETURN(PTR_ERR(handle));
1055
1056         rc = mdd_declare_xattr_set(env, mdd, mdd_obj, buf, name, fl, handle);
1057         if (rc)
1058                 GOTO(stop, rc);
1059
1060         rc = mdd_trans_start(env, mdd, handle);
1061         if (rc)
1062                 GOTO(stop, rc);
1063
1064         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
1065
1066         if (strcmp(XATTR_NAME_HSM, name) == 0) {
1067                 rc = mdd_hsm_update_locked(env, obj, buf, handle);
1068                 if (rc) {
1069                         mdd_write_unlock(env, mdd_obj);
1070                         GOTO(stop, rc);
1071                 }
1072         }
1073
1074         rc = mdo_xattr_set(env, mdd_obj, buf, name, fl, handle);
1075         mdd_write_unlock(env, mdd_obj);
1076         if (rc)
1077                 GOTO(stop, rc);
1078
1079         if (strcmp(XATTR_NAME_LOV, name) == 0)
1080                 rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, mdd_obj,
1081                                               handle);
1082         else if (strncmp(XATTR_USER_PREFIX, name,
1083                         sizeof(XATTR_USER_PREFIX) - 1) == 0 ||
1084             strncmp(POSIX_ACL_XATTR_ACCESS, name,
1085                         sizeof(POSIX_ACL_XATTR_ACCESS) - 1) == 0 ||
1086             strncmp(POSIX_ACL_XATTR_DEFAULT, name,
1087                         sizeof(POSIX_ACL_XATTR_DEFAULT) - 1) == 0)
1088                 rc = mdd_changelog_data_store(env, mdd, CL_XATTR, 0, mdd_obj,
1089                                               handle);
1090
1091 stop:
1092         mdd_trans_stop(env, mdd, rc, handle);
1093
1094         RETURN(rc);
1095 }
1096
1097 static int mdd_declare_xattr_del(const struct lu_env *env,
1098                                  struct mdd_device *mdd,
1099                                  struct mdd_object *obj,
1100                                  const char *name,
1101                                  struct thandle *handle)
1102 {
1103         int rc;
1104
1105         rc = mdo_declare_xattr_del(env, obj, name, handle);
1106         if (rc)
1107                 return rc;
1108
1109         /* Only record system & user xattr changes */
1110         if (strncmp(XATTR_USER_PREFIX, name,
1111                         sizeof(XATTR_USER_PREFIX) - 1) == 0 ||
1112                 strncmp(POSIX_ACL_XATTR_ACCESS, name,
1113                         sizeof(POSIX_ACL_XATTR_ACCESS) - 1) == 0 ||
1114                 strncmp(POSIX_ACL_XATTR_DEFAULT, name,
1115                         sizeof(POSIX_ACL_XATTR_DEFAULT) - 1) == 0)
1116                 rc = mdd_declare_changelog_store(env, mdd, NULL, NULL, handle);
1117
1118         return rc;
1119 }
1120
1121 /**
1122  * The caller should guarantee to update the object ctime
1123  * after xattr_set if needed.
1124  */
1125 static int mdd_xattr_del(const struct lu_env *env, struct md_object *obj,
1126                          const char *name)
1127 {
1128         struct mdd_object *mdd_obj = md2mdd_obj(obj);
1129         struct lu_attr *attr = MDD_ENV_VAR(env, cattr);
1130         struct mdd_device *mdd = mdo2mdd(obj);
1131         struct thandle *handle;
1132         int  rc;
1133         ENTRY;
1134
1135         rc = mdd_la_get(env, mdd_obj, attr);
1136         if (rc)
1137                 RETURN(rc);
1138
1139         rc = mdd_xattr_sanity_check(env, mdd_obj, attr);
1140         if (rc)
1141                 RETURN(rc);
1142
1143         handle = mdd_trans_create(env, mdd);
1144         if (IS_ERR(handle))
1145                 RETURN(PTR_ERR(handle));
1146
1147         rc = mdd_declare_xattr_del(env, mdd, mdd_obj, name, handle);
1148         if (rc)
1149                 GOTO(stop, rc);
1150
1151         rc = mdd_trans_start(env, mdd, handle);
1152         if (rc)
1153                 GOTO(stop, rc);
1154
1155         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
1156         rc = mdo_xattr_del(env, mdd_obj, name, handle);
1157         mdd_write_unlock(env, mdd_obj);
1158         if (rc)
1159                 GOTO(stop, rc);
1160
1161         /* Only record system & user xattr changes */
1162         if (strncmp(XATTR_USER_PREFIX, name,
1163                                   sizeof(XATTR_USER_PREFIX) - 1) == 0 ||
1164                           strncmp(POSIX_ACL_XATTR_ACCESS, name,
1165                                   sizeof(POSIX_ACL_XATTR_ACCESS) - 1) == 0 ||
1166                           strncmp(POSIX_ACL_XATTR_DEFAULT, name,
1167                                   sizeof(POSIX_ACL_XATTR_DEFAULT) - 1) == 0)
1168                 rc = mdd_changelog_data_store(env, mdd, CL_XATTR, 0, mdd_obj,
1169                                               handle);
1170
1171 stop:
1172         mdd_trans_stop(env, mdd, rc, handle);
1173
1174         RETURN(rc);
1175 }
1176
1177 /*
1178  * read lov EA of an object
1179  * return the lov EA in an allocated lu_buf
1180  */
1181 int mdd_get_lov_ea(const struct lu_env *env, struct mdd_object *obj,
1182                    struct lu_buf *lmm_buf)
1183 {
1184         struct lu_buf   *buf = &mdd_env_info(env)->mti_big_buf;
1185         int              rc, bufsize;
1186         ENTRY;
1187
1188 repeat:
1189         rc = mdo_xattr_get(env, obj, buf, XATTR_NAME_LOV);
1190
1191         if (rc == -ERANGE) {
1192                 /* mti_big_buf is allocated but is too small
1193                  * we need to increase it */
1194                 buf = lu_buf_check_and_alloc(&mdd_env_info(env)->mti_big_buf,
1195                                              buf->lb_len * 2);
1196                 if (buf->lb_buf == NULL)
1197                         GOTO(out, rc = -ENOMEM);
1198                 goto repeat;
1199         }
1200
1201         if (rc < 0)
1202                 RETURN(rc);
1203
1204         if (rc == 0)
1205                 RETURN(-ENODATA);
1206
1207         bufsize = rc;
1208         if (memcmp(buf, &LU_BUF_NULL, sizeof(*buf)) == 0) {
1209                 /* mti_big_buf was not allocated, so we have to
1210                  * allocate it based on the ea size */
1211                 buf = lu_buf_check_and_alloc(&mdd_env_info(env)->mti_big_buf,
1212                                              bufsize);
1213                 if (buf->lb_buf == NULL)
1214                         GOTO(out, rc = -ENOMEM);
1215                 goto repeat;
1216         }
1217
1218         lu_buf_alloc(lmm_buf, bufsize);
1219         if (lmm_buf->lb_buf == NULL)
1220                 GOTO(out, rc = -ENOMEM);
1221
1222         memcpy(lmm_buf->lb_buf, buf->lb_buf, bufsize);
1223         rc = 0;
1224         EXIT;
1225
1226 out:
1227         if (rc < 0)
1228                 lu_buf_free(lmm_buf);
1229         return rc;
1230 }
1231
1232 static int mdd_xattr_hsm_replace(const struct lu_env *env,
1233                                  struct mdd_object *o, struct lu_buf *buf,
1234                                  struct thandle *handle)
1235 {
1236         struct hsm_attrs *attrs;
1237         __u32 hsm_flags;
1238         int flags = 0;
1239         int rc;
1240         ENTRY;
1241
1242         rc = mdo_xattr_set(env, o, buf, XATTR_NAME_HSM, LU_XATTR_REPLACE,
1243                            handle);
1244         if (rc != 0)
1245                 RETURN(rc);
1246
1247         attrs = buf->lb_buf;
1248         hsm_flags = le32_to_cpu(attrs->hsm_flags);
1249         if (!(hsm_flags & HS_RELEASED) || mdd_is_dead_obj(o))
1250                 RETURN(0);
1251
1252         /* Add a changelog record for release. */
1253         hsm_set_cl_event(&flags, HE_RELEASE);
1254         rc = mdd_changelog_data_store(env, mdo2mdd(&o->mod_obj), CL_HSM,
1255                                       flags, o, handle);
1256         RETURN(rc);
1257 }
1258
1259 /*
1260  *  check if layout swapping between 2 objects is allowed
1261  *  the rules are:
1262  *  - only normal FIDs or non-system IGIFs
1263  *  - same type of objects
1264  *  - same owner/group (so quotas are still valid)
1265  */
1266 static int mdd_layout_swap_allowed(const struct lu_env *env,
1267                                    struct mdd_object *o1,
1268                                    const struct lu_attr *attr1,
1269                                    struct mdd_object *o2,
1270                                    const struct lu_attr *attr2)
1271 {
1272         const struct lu_fid     *fid1, *fid2;
1273         ENTRY;
1274
1275         fid1 = mdo2fid(o1);
1276         fid2 = mdo2fid(o2);
1277
1278         if (!fid_is_norm(fid1) &&
1279             (!fid_is_igif(fid1) || IS_ERR(mdd_links_get(env, o1))))
1280                 RETURN(-EBADF);
1281
1282         if (!fid_is_norm(fid2) &&
1283             (!fid_is_igif(fid2) || IS_ERR(mdd_links_get(env, o2))))
1284                 RETURN(-EBADF);
1285
1286         if (mdd_object_type(o1) != mdd_object_type(o2)) {
1287                 if (S_ISDIR(mdd_object_type(o1)))
1288                         RETURN(-ENOTDIR);
1289                 if (S_ISREG(mdd_object_type(o1)))
1290                         RETURN(-EISDIR);
1291                 RETURN(-EBADF);
1292         }
1293
1294         if ((attr1->la_uid != attr2->la_uid) ||
1295             (attr1->la_gid != attr2->la_gid))
1296                 RETURN(-EPERM);
1297
1298         RETURN(0);
1299 }
1300
1301 /**
1302  * swap layouts between 2 lustre objects
1303  */
1304 static int mdd_swap_layouts(const struct lu_env *env, struct md_object *obj1,
1305                             struct md_object *obj2, __u64 flags)
1306 {
1307         struct mdd_thread_info  *info = mdd_env_info(env);
1308         struct mdd_object       *fst_o = md2mdd_obj(obj1);
1309         struct mdd_object       *snd_o = md2mdd_obj(obj2);
1310         struct lu_attr          *fst_la = MDD_ENV_VAR(env, cattr);
1311         struct lu_attr          *snd_la = MDD_ENV_VAR(env, tattr);
1312         struct mdd_device       *mdd = mdo2mdd(obj1);
1313         struct lov_mds_md       *fst_lmm, *snd_lmm;
1314         struct lu_buf           *fst_buf = &info->mti_buf[0];
1315         struct lu_buf           *snd_buf = &info->mti_buf[1];
1316         struct lu_buf           *fst_hsm_buf = &info->mti_buf[2];
1317         struct lu_buf           *snd_hsm_buf = &info->mti_buf[3];
1318         struct ost_id           *saved_oi = NULL;
1319         struct thandle          *handle;
1320         __u16                    fst_gen, snd_gen;
1321         int                      fst_fl;
1322         int                      rc;
1323         int                      rc2;
1324         ENTRY;
1325
1326         CLASSERT(ARRAY_SIZE(info->mti_buf) >= 4);
1327         memset(info->mti_buf, 0, sizeof(info->mti_buf));
1328
1329         /* we have to sort the 2 obj, so locking will always
1330          * be in the same order, even in case of 2 concurrent swaps */
1331         rc = lu_fid_cmp(mdo2fid(fst_o), mdo2fid(snd_o));
1332         if (rc == 0) /* same fid ? */
1333                 RETURN(-EPERM);
1334
1335         if (rc < 0)
1336                 swap(fst_o, snd_o);
1337
1338         rc = mdd_la_get(env, fst_o, fst_la);
1339         if (rc != 0)
1340                 RETURN(rc);
1341
1342         rc = mdd_la_get(env, snd_o, snd_la);
1343         if (rc != 0)
1344                 RETURN(rc);
1345
1346         /* check if layout swapping is allowed */
1347         rc = mdd_layout_swap_allowed(env, fst_o, fst_la, snd_o, snd_la);
1348         if (rc != 0)
1349                 RETURN(rc);
1350
1351         handle = mdd_trans_create(env, mdd);
1352         if (IS_ERR(handle))
1353                 RETURN(PTR_ERR(handle));
1354
1355         /* objects are already sorted */
1356         mdd_write_lock(env, fst_o, MOR_TGT_CHILD);
1357         mdd_write_lock(env, snd_o, MOR_TGT_CHILD);
1358
1359         rc = mdd_get_lov_ea(env, fst_o, fst_buf);
1360         if (rc < 0 && rc != -ENODATA)
1361                 GOTO(stop, rc);
1362
1363         rc = mdd_get_lov_ea(env, snd_o, snd_buf);
1364         if (rc < 0 && rc != -ENODATA)
1365                 GOTO(stop, rc);
1366
1367         /* swapping 2 non existant layouts is a success */
1368         if (fst_buf->lb_buf == NULL && snd_buf->lb_buf == NULL)
1369                 GOTO(stop, rc = 0);
1370
1371         /* to help inode migration between MDT, it is better to
1372          * start by the no layout file (if one), so we order the swap */
1373         if (snd_buf->lb_buf == NULL) {
1374                 swap(fst_o, snd_o);
1375                 swap(fst_buf, snd_buf);
1376         }
1377
1378         /* lmm and generation layout initialization */
1379         if (fst_buf->lb_buf != NULL) {
1380                 fst_lmm = fst_buf->lb_buf;
1381                 fst_gen = le16_to_cpu(fst_lmm->lmm_layout_gen);
1382                 fst_fl  = LU_XATTR_REPLACE;
1383         } else {
1384                 fst_lmm = NULL;
1385                 fst_gen = 0;
1386                 fst_fl  = LU_XATTR_CREATE;
1387         }
1388
1389         snd_lmm = snd_buf->lb_buf;
1390         snd_gen = le16_to_cpu(snd_lmm->lmm_layout_gen);
1391
1392         /* increase the generation layout numbers */
1393         snd_gen++;
1394         fst_gen++;
1395
1396         /* set the file specific informations in lmm */
1397         if (fst_lmm != NULL) {
1398                 saved_oi = &info->mti_oa.o_oi;
1399
1400                 *saved_oi = fst_lmm->lmm_oi;
1401                 fst_lmm->lmm_layout_gen = cpu_to_le16(snd_gen);
1402                 fst_lmm->lmm_oi = snd_lmm->lmm_oi;
1403                 snd_lmm->lmm_oi = *saved_oi;
1404         } else {
1405                 if (snd_lmm->lmm_magic == cpu_to_le32(LOV_MAGIC_V1))
1406                         snd_lmm->lmm_magic = cpu_to_le32(LOV_MAGIC_V1_DEF);
1407                 else if (snd_lmm->lmm_magic == cpu_to_le32(LOV_MAGIC_V3))
1408                         snd_lmm->lmm_magic = cpu_to_le32(LOV_MAGIC_V3_DEF);
1409                 else
1410                         GOTO(stop, rc = -EPROTO);
1411         }
1412         snd_lmm->lmm_layout_gen = cpu_to_le16(fst_gen);
1413
1414         /* Prepare HSM attribute if it's required */
1415         if (flags & SWAP_LAYOUTS_MDS_HSM) {
1416                 const int buflen = sizeof(struct hsm_attrs);
1417
1418                 lu_buf_alloc(fst_hsm_buf, buflen);
1419                 lu_buf_alloc(snd_hsm_buf, buflen);
1420                 if (fst_hsm_buf->lb_buf == NULL || snd_hsm_buf->lb_buf == NULL)
1421                         GOTO(stop, rc = -ENOMEM);
1422
1423                 /* Read HSM attribute */
1424                 rc = mdo_xattr_get(env, fst_o, fst_hsm_buf, XATTR_NAME_HSM);
1425                 if (rc < 0)
1426                         GOTO(stop, rc);
1427
1428                 rc = mdo_xattr_get(env, snd_o, snd_hsm_buf, XATTR_NAME_HSM);
1429                 if (rc < 0)
1430                         GOTO(stop, rc);
1431
1432                 rc = mdd_declare_xattr_set(env, mdd, fst_o, snd_hsm_buf,
1433                                            XATTR_NAME_HSM, LU_XATTR_REPLACE,
1434                                            handle);
1435                 if (rc < 0)
1436                         GOTO(stop, rc);
1437
1438                 rc = mdd_declare_xattr_set(env, mdd, snd_o, fst_hsm_buf,
1439                                            XATTR_NAME_HSM, LU_XATTR_REPLACE,
1440                                            handle);
1441                 if (rc < 0)
1442                         GOTO(stop, rc);
1443         }
1444
1445         /* prepare transaction */
1446         rc = mdd_declare_xattr_set(env, mdd, fst_o, snd_buf, XATTR_NAME_LOV,
1447                                    fst_fl, handle);
1448         if (rc != 0)
1449                 GOTO(stop, rc);
1450
1451         if (fst_buf->lb_buf != NULL)
1452                 rc = mdd_declare_xattr_set(env, mdd, snd_o, fst_buf,
1453                                            XATTR_NAME_LOV, LU_XATTR_REPLACE,
1454                                            handle);
1455         else
1456                 rc = mdd_declare_xattr_del(env, mdd, snd_o, XATTR_NAME_LOV,
1457                                            handle);
1458         if (rc != 0)
1459                 GOTO(stop, rc);
1460
1461         rc = mdd_trans_start(env, mdd, handle);
1462         if (rc != 0)
1463                 GOTO(stop, rc);
1464
1465         if (flags & SWAP_LAYOUTS_MDS_HSM) {
1466                 rc = mdd_xattr_hsm_replace(env, fst_o, snd_hsm_buf, handle);
1467                 if (rc < 0)
1468                         GOTO(stop, rc);
1469
1470                 rc = mdd_xattr_hsm_replace(env, snd_o, fst_hsm_buf, handle);
1471                 if (rc < 0) {
1472                         rc2 = mdd_xattr_hsm_replace(env, fst_o, fst_hsm_buf,
1473                                                     handle);
1474                         if (rc2 < 0)
1475                                 CERROR("%s: restore "DFID" HSM error: %d/%d\n",
1476                                        mdd_obj_dev_name(fst_o),
1477                                        PFID(mdo2fid(fst_o)), rc, rc2);
1478                         GOTO(stop, rc);
1479                 }
1480         }
1481
1482         rc = mdo_xattr_set(env, fst_o, snd_buf, XATTR_NAME_LOV, fst_fl, handle);
1483         if (rc != 0)
1484                 GOTO(stop, rc);
1485
1486         if (unlikely(OBD_FAIL_CHECK(OBD_FAIL_MDS_HSM_SWAP_LAYOUTS))) {
1487                 rc = -EOPNOTSUPP;
1488         } else {
1489                 if (fst_buf->lb_buf != NULL)
1490                         rc = mdo_xattr_set(env, snd_o, fst_buf, XATTR_NAME_LOV,
1491                                            LU_XATTR_REPLACE, handle);
1492                 else
1493                         rc = mdo_xattr_del(env, snd_o, XATTR_NAME_LOV, handle);
1494         }
1495
1496         if (rc != 0) {
1497                 int steps = 0;
1498
1499                 /* failure on second file, but first was done, so we have
1500                  * to roll back first. */
1501                 if (fst_buf->lb_buf != NULL) {
1502                         fst_lmm->lmm_oi = *saved_oi;
1503                         fst_lmm->lmm_layout_gen = cpu_to_le16(fst_gen - 1);
1504                         rc2 = mdo_xattr_set(env, fst_o, fst_buf, XATTR_NAME_LOV,
1505                                             LU_XATTR_REPLACE, handle);
1506                 } else {
1507                         rc2 = mdo_xattr_del(env, fst_o, XATTR_NAME_LOV, handle);
1508                 }
1509                 if (rc2 < 0)
1510                         goto do_lbug;
1511
1512                 ++steps;
1513                 rc2 = mdd_xattr_hsm_replace(env, fst_o, fst_hsm_buf, handle);
1514                 if (rc2 < 0)
1515                         goto do_lbug;
1516
1517                 ++steps;
1518                 rc2 = mdd_xattr_hsm_replace(env, snd_o, snd_hsm_buf, handle);
1519
1520         do_lbug:
1521                 if (rc2 < 0) {
1522                         /* very bad day */
1523                         CERROR("%s: unable to roll back layout swap. FIDs: "
1524                                DFID" and "DFID "error: %d/%d, steps: %d\n",
1525                                mdd_obj_dev_name(fst_o),
1526                                PFID(mdo2fid(snd_o)), PFID(mdo2fid(fst_o)),
1527                                rc, rc2, steps);
1528                         /* a solution to avoid journal commit is to panic,
1529                          * but it has strong consequences so we use LBUG to
1530                          * allow sysdamin to choose to panic or not
1531                          */
1532                         LBUG();
1533                 }
1534                 GOTO(stop, rc);
1535         }
1536
1537         /* Issue one changelog record per file */
1538         rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, fst_o, handle);
1539         if (rc)
1540                 GOTO(stop, rc);
1541
1542         rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, snd_o, handle);
1543         if (rc)
1544                 GOTO(stop, rc);
1545         EXIT;
1546
1547 stop:
1548         mdd_trans_stop(env, mdd, rc, handle);
1549         mdd_write_unlock(env, snd_o);
1550         mdd_write_unlock(env, fst_o);
1551
1552         lu_buf_free(fst_buf);
1553         lu_buf_free(snd_buf);
1554         lu_buf_free(fst_hsm_buf);
1555         lu_buf_free(snd_hsm_buf);
1556         return rc;
1557 }
1558
1559 void mdd_object_make_hint(const struct lu_env *env, struct mdd_object *parent,
1560                           struct mdd_object *child, const struct lu_attr *attr,
1561                           const struct md_op_spec *spec,
1562                           struct dt_allocation_hint *hint)
1563 {
1564         struct dt_object *np = parent ?  mdd_object_child(parent) : NULL;
1565         struct dt_object *nc = mdd_object_child(child);
1566
1567         memset(hint, 0, sizeof(*hint));
1568
1569         /* For striped directory, give striping EA to lod_ah_init, which will
1570          * decide the stripe_offset and stripe count by it. */
1571         if (S_ISDIR(attr->la_mode) &&
1572             unlikely(spec != NULL && spec->sp_cr_flags & MDS_OPEN_HAS_EA)) {
1573                 hint->dah_eadata = spec->u.sp_ea.eadata;
1574                 hint->dah_eadata_len = spec->u.sp_ea.eadatalen;
1575         } else {
1576                 hint->dah_eadata = NULL;
1577                 hint->dah_eadata_len = 0;
1578         }
1579
1580         CDEBUG(D_INFO, DFID" eadata %p len %d\n", PFID(mdd_object_fid(child)),
1581                hint->dah_eadata, hint->dah_eadata_len);
1582         /* @hint will be initialized by underlying device. */
1583         nc->do_ops->do_ah_init(env, hint, np, nc, attr->la_mode & S_IFMT);
1584 }
1585
1586 /*
1587  * do NOT or the MAY_*'s, you'll get the weakest
1588  */
1589 int accmode(const struct lu_env *env, const struct lu_attr *la, int flags)
1590 {
1591         int res = 0;
1592
1593         /* Sadly, NFSD reopens a file repeatedly during operation, so the
1594          * "acc_mode = 0" allowance for newly-created files isn't honoured.
1595          * NFSD uses the MDS_OPEN_OWNEROVERRIDE flag to say that a file
1596          * owner can write to a file even if it is marked readonly to hide
1597          * its brokenness. (bug 5781) */
1598         if (flags & MDS_OPEN_OWNEROVERRIDE) {
1599                 struct lu_ucred *uc = lu_ucred_check(env);
1600
1601                 if ((uc == NULL) || (la->la_uid == uc->uc_fsuid))
1602                         return 0;
1603         }
1604
1605         if (flags & FMODE_READ)
1606                 res |= MAY_READ;
1607         if (flags & (FMODE_WRITE | MDS_OPEN_TRUNC | MDS_OPEN_APPEND))
1608                 res |= MAY_WRITE;
1609         if (flags & MDS_FMODE_EXEC)
1610                 res = MAY_EXEC;
1611         return res;
1612 }
1613
1614 static int mdd_open_sanity_check(const struct lu_env *env,
1615                                 struct mdd_object *obj,
1616                                 const struct lu_attr *attr, int flag)
1617 {
1618         int mode, rc;
1619         ENTRY;
1620
1621         /* EEXIST check */
1622         if (mdd_is_dead_obj(obj))
1623                 RETURN(-ENOENT);
1624
1625         if (S_ISLNK(attr->la_mode))
1626                 RETURN(-ELOOP);
1627
1628         mode = accmode(env, attr, flag);
1629
1630         if (S_ISDIR(attr->la_mode) && (mode & MAY_WRITE))
1631                 RETURN(-EISDIR);
1632
1633         if (!(flag & MDS_OPEN_CREATED)) {
1634                 rc = mdd_permission_internal(env, obj, attr, mode);
1635                 if (rc)
1636                         RETURN(rc);
1637         }
1638
1639         if (S_ISFIFO(attr->la_mode) || S_ISSOCK(attr->la_mode) ||
1640             S_ISBLK(attr->la_mode) || S_ISCHR(attr->la_mode))
1641                 flag &= ~MDS_OPEN_TRUNC;
1642
1643         /* For writing append-only file must open it with append mode. */
1644         if (attr->la_flags & LUSTRE_APPEND_FL) {
1645                 if ((flag & FMODE_WRITE) && !(flag & MDS_OPEN_APPEND))
1646                         RETURN(-EPERM);
1647                 if (flag & MDS_OPEN_TRUNC)
1648                         RETURN(-EPERM);
1649         }
1650
1651 #if 0
1652         /*
1653          * Now, flag -- O_NOATIME does not be packed by client.
1654          */
1655         if (flag & O_NOATIME) {
1656                 struct lu_ucred *uc = lu_ucred(env);
1657
1658                 if (uc && ((uc->uc_valid == UCRED_OLD) ||
1659                            (uc->uc_valid == UCRED_NEW)) &&
1660                     (uc->uc_fsuid != attr->la_uid) &&
1661                     !md_capable(uc, CFS_CAP_FOWNER))
1662                         RETURN(-EPERM);
1663         }
1664 #endif
1665
1666         RETURN(0);
1667 }
1668
1669 static int mdd_open(const struct lu_env *env, struct md_object *obj,
1670                     int flags)
1671 {
1672         struct mdd_object *mdd_obj = md2mdd_obj(obj);
1673         struct lu_attr *attr = MDD_ENV_VAR(env, cattr);
1674         int rc = 0;
1675
1676         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
1677
1678         rc = mdd_la_get(env, mdd_obj, attr);
1679         if (rc != 0)
1680                 GOTO(out, rc);
1681
1682         rc = mdd_open_sanity_check(env, mdd_obj, attr, flags);
1683         if (rc != 0)
1684                 GOTO(out, rc);
1685
1686         mdd_obj->mod_count++;
1687         EXIT;
1688 out:
1689         mdd_write_unlock(env, mdd_obj);
1690         return rc;
1691 }
1692
1693 static int mdd_declare_close(const struct lu_env *env,
1694                              struct mdd_object *obj,
1695                              struct md_attr *ma,
1696                              struct thandle *handle)
1697 {
1698         int rc;
1699
1700         rc = orph_declare_index_delete(env, obj, handle);
1701         if (rc)
1702                 return rc;
1703
1704         return mdo_declare_destroy(env, obj, handle);
1705 }
1706
1707 /*
1708  * No permission check is needed.
1709  */
1710 static int mdd_close(const struct lu_env *env, struct md_object *obj,
1711                      struct md_attr *ma, int mode)
1712 {
1713         struct mdd_object *mdd_obj = md2mdd_obj(obj);
1714         struct mdd_device *mdd = mdo2mdd(obj);
1715         struct thandle    *handle = NULL;
1716         int rc, is_orphan = 0;
1717         ENTRY;
1718
1719         if (ma->ma_valid & MA_FLAGS && ma->ma_attr_flags & MDS_KEEP_ORPHAN) {
1720                 mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
1721                 mdd_obj->mod_count--;
1722                 mdd_write_unlock(env, mdd_obj);
1723
1724                 if (mdd_obj->mod_flags & ORPHAN_OBJ && !mdd_obj->mod_count)
1725                         CDEBUG(D_HA, "Object "DFID" is retained in orphan "
1726                                "list\n", PFID(mdd_object_fid(mdd_obj)));
1727                 RETURN(0);
1728         }
1729
1730         /* mdd_finish_unlink() will always set orphan object as DEAD_OBJ, but
1731          * it might fail to add the object to orphan list (w/o ORPHAN_OBJ). */
1732         /* check without any lock */
1733         is_orphan = mdd_obj->mod_count == 1 &&
1734                     (mdd_obj->mod_flags & (ORPHAN_OBJ | DEAD_OBJ)) != 0;
1735
1736 again:
1737         if (is_orphan) {
1738                 handle = mdd_trans_create(env, mdo2mdd(obj));
1739                 if (IS_ERR(handle))
1740                         RETURN(PTR_ERR(handle));
1741
1742                 rc = mdd_declare_close(env, mdd_obj, ma, handle);
1743                 if (rc)
1744                         GOTO(stop, rc);
1745
1746                 rc = mdd_declare_changelog_store(env, mdd, NULL, NULL, handle);
1747                 if (rc)
1748                         GOTO(stop, rc);
1749
1750                 rc = mdd_trans_start(env, mdo2mdd(obj), handle);
1751                 if (rc)
1752                         GOTO(stop, rc);
1753         }
1754
1755         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
1756         rc = mdd_la_get(env, mdd_obj, &ma->ma_attr);
1757         if (rc != 0) {
1758                 CERROR("Failed to get lu_attr of "DFID": %d\n",
1759                        PFID(mdd_object_fid(mdd_obj)), rc);
1760                 GOTO(out, rc);
1761         }
1762
1763         /* check again with lock */
1764         is_orphan = (mdd_obj->mod_count == 1) &&
1765                     ((mdd_obj->mod_flags & (ORPHAN_OBJ | DEAD_OBJ)) != 0 ||
1766                      ma->ma_attr.la_nlink == 0);
1767
1768         if (is_orphan && handle == NULL) {
1769                 mdd_write_unlock(env, mdd_obj);
1770                 goto again;
1771         }
1772
1773         mdd_obj->mod_count--; /*release open count */
1774
1775         if (!is_orphan)
1776                 GOTO(out, rc = 0);
1777
1778         /* Orphan object */
1779         /* NB: Object maybe not in orphan list originally, it is rare case for
1780          * mdd_finish_unlink() failure, in that case, the object doesn't have
1781          * ORPHAN_OBJ flag */
1782         if ((mdd_obj->mod_flags & ORPHAN_OBJ) != 0) {
1783                 /* remove link to object from orphan index */
1784                 LASSERT(handle != NULL);
1785                 rc = __mdd_orphan_del(env, mdd_obj, handle);
1786                 if (rc != 0) {
1787                         CERROR("%s: unable to delete "DFID" from orphan list: "
1788                                "rc = %d\n", lu_dev_name(mdd2lu_dev(mdd)),
1789                                PFID(mdd_object_fid(mdd_obj)), rc);
1790                         /* If object was not deleted from orphan list, do not
1791                          * destroy OSS objects, which will be done when next
1792                          * recovery. */
1793                         GOTO(out, rc);
1794                 }
1795
1796                 CDEBUG(D_HA, "Object "DFID" is deleted from orphan "
1797                        "list, OSS objects to be destroyed.\n",
1798                        PFID(mdd_object_fid(mdd_obj)));
1799         }
1800
1801         rc = mdo_destroy(env, mdd_obj, handle);
1802
1803         if (rc != 0) {
1804                 CERROR("%s: unable to delete "DFID" from orphan list: "
1805                        "rc = %d\n", lu_dev_name(mdd2lu_dev(mdd)),
1806                        PFID(mdd_object_fid(mdd_obj)), rc);
1807         }
1808         EXIT;
1809
1810 out:
1811         mdd_write_unlock(env, mdd_obj);
1812
1813         if (rc == 0 &&
1814             (mode & (FMODE_WRITE | MDS_OPEN_APPEND | MDS_OPEN_TRUNC)) &&
1815             !(ma->ma_valid & MA_FLAGS && ma->ma_attr_flags & MDS_RECOV_OPEN)) {
1816                 if (handle == NULL) {
1817                         handle = mdd_trans_create(env, mdo2mdd(obj));
1818                         if (IS_ERR(handle))
1819                                 GOTO(stop, rc = PTR_ERR(handle));
1820
1821                         rc = mdd_declare_changelog_store(env, mdd, NULL, NULL,
1822                                                          handle);
1823                         if (rc)
1824                                 GOTO(stop, rc);
1825
1826                         rc = mdd_trans_start(env, mdo2mdd(obj), handle);
1827                         if (rc)
1828                                 GOTO(stop, rc);
1829                 }
1830
1831                 mdd_changelog_data_store(env, mdd, CL_CLOSE, mode,
1832                                          mdd_obj, handle);
1833         }
1834
1835 stop:
1836         if (handle != NULL && !IS_ERR(handle))
1837                 mdd_trans_stop(env, mdd, rc, handle);
1838
1839         return rc;
1840 }
1841
1842 /*
1843  * Permission check is done when open,
1844  * no need check again.
1845  */
1846 static int mdd_readpage_sanity_check(const struct lu_env *env,
1847                                      struct mdd_object *obj)
1848 {
1849         struct dt_object *next = mdd_object_child(obj);
1850         int rc;
1851         ENTRY;
1852
1853         if (S_ISDIR(mdd_object_type(obj)) && dt_try_as_dir(env, next))
1854                 rc = 0;
1855         else
1856                 rc = -ENOTDIR;
1857
1858         RETURN(rc);
1859 }
1860
1861 static int mdd_dir_page_build(const struct lu_env *env, union lu_page *lp,
1862                               size_t nob, const struct dt_it_ops *iops,
1863                               struct dt_it *it, __u32 attr, void *arg)
1864 {
1865         struct lu_dirpage       *dp = &lp->lp_dir;
1866         void                    *area = dp;
1867         int                      result;
1868         __u64                    hash = 0;
1869         struct lu_dirent        *ent;
1870         struct lu_dirent        *last = NULL;
1871         struct lu_fid            fid;
1872         int                      first = 1;
1873
1874         if (nob < sizeof(*dp))
1875                 return -EINVAL;
1876
1877         memset(area, 0, sizeof (*dp));
1878         area += sizeof (*dp);
1879         nob  -= sizeof (*dp);
1880
1881         ent  = area;
1882         do {
1883                 int    len;
1884                 size_t recsize;
1885
1886                 len = iops->key_size(env, it);
1887
1888                 /* IAM iterator can return record with zero len. */
1889                 if (len == 0)
1890                         goto next;
1891
1892                 hash = iops->store(env, it);
1893                 if (unlikely(first)) {
1894                         first = 0;
1895                         dp->ldp_hash_start = cpu_to_le64(hash);
1896                 }
1897
1898                 /* calculate max space required for lu_dirent */
1899                 recsize = lu_dirent_calc_size(len, attr);
1900
1901                 if (nob >= recsize) {
1902                         result = iops->rec(env, it, (struct dt_rec *)ent, attr);
1903                         if (result == -ESTALE)
1904                                 goto next;
1905                         if (result != 0)
1906                                 goto out;
1907
1908                         /* osd might not able to pack all attributes,
1909                          * so recheck rec length */
1910                         recsize = le16_to_cpu(ent->lde_reclen);
1911
1912                         if (le32_to_cpu(ent->lde_attrs) & LUDA_FID) {
1913                                 fid_le_to_cpu(&fid, &ent->lde_fid);
1914                                 if (fid_is_dot_lustre(&fid))
1915                                         goto next;
1916                         }
1917                 } else {
1918                         result = (last != NULL) ? 0 :-EINVAL;
1919                         goto out;
1920                 }
1921                 last = ent;
1922                 ent = (void *)ent + recsize;
1923                 nob -= recsize;
1924
1925 next:
1926                 result = iops->next(env, it);
1927                 if (result == -ESTALE)
1928                         goto next;
1929         } while (result == 0);
1930
1931 out:
1932         dp->ldp_hash_end = cpu_to_le64(hash);
1933         if (last != NULL) {
1934                 if (last->lde_hash == dp->ldp_hash_end)
1935                         dp->ldp_flags |= cpu_to_le32(LDF_COLLIDE);
1936                 last->lde_reclen = 0; /* end mark */
1937         }
1938         if (result > 0)
1939                 /* end of directory */
1940                 dp->ldp_hash_end = cpu_to_le64(MDS_DIR_END_OFF);
1941         else if (result < 0)
1942                 CWARN("build page failed: %d!\n", result);
1943         return result;
1944 }
1945
1946 int mdd_readpage(const struct lu_env *env, struct md_object *obj,
1947                  const struct lu_rdpg *rdpg)
1948 {
1949         struct mdd_object *mdd_obj = md2mdd_obj(obj);
1950         int rc;
1951         ENTRY;
1952
1953         if (mdd_object_exists(mdd_obj) == 0) {
1954                 CERROR("%s: object "DFID" not found: rc = -2\n",
1955                        mdd_obj_dev_name(mdd_obj),PFID(mdd_object_fid(mdd_obj)));
1956                 return -ENOENT;
1957         }
1958
1959         mdd_read_lock(env, mdd_obj, MOR_TGT_CHILD);
1960         rc = mdd_readpage_sanity_check(env, mdd_obj);
1961         if (rc)
1962                 GOTO(out_unlock, rc);
1963
1964         if (mdd_is_dead_obj(mdd_obj)) {
1965                 struct page *pg;
1966                 struct lu_dirpage *dp;
1967
1968                 /*
1969                  * According to POSIX, please do not return any entry to client:
1970                  * even dot and dotdot should not be returned.
1971                  */
1972                 CDEBUG(D_INODE, "readdir from dead object: "DFID"\n",
1973                        PFID(mdd_object_fid(mdd_obj)));
1974
1975                 if (rdpg->rp_count <= 0)
1976                         GOTO(out_unlock, rc = -EFAULT);
1977                 LASSERT(rdpg->rp_pages != NULL);
1978
1979                 pg = rdpg->rp_pages[0];
1980                 dp = (struct lu_dirpage *)kmap(pg);
1981                 memset(dp, 0 , sizeof(struct lu_dirpage));
1982                 dp->ldp_hash_start = cpu_to_le64(rdpg->rp_hash);
1983                 dp->ldp_hash_end   = cpu_to_le64(MDS_DIR_END_OFF);
1984                 dp->ldp_flags = cpu_to_le32(LDF_EMPTY);
1985                 kunmap(pg);
1986                 GOTO(out_unlock, rc = LU_PAGE_SIZE);
1987         }
1988
1989         rc = dt_index_walk(env, mdd_object_child(mdd_obj), rdpg,
1990                            mdd_dir_page_build, NULL);
1991         if (rc >= 0) {
1992                 struct lu_dirpage       *dp;
1993
1994                 dp = kmap(rdpg->rp_pages[0]);
1995                 dp->ldp_hash_start = cpu_to_le64(rdpg->rp_hash);
1996                 if (rc == 0) {
1997                         /*
1998                          * No pages were processed, mark this for first page
1999                          * and send back.
2000                          */
2001                         dp->ldp_hash_end = cpu_to_le64(MDS_DIR_END_OFF);
2002                         dp->ldp_flags = cpu_to_le32(LDF_EMPTY);
2003                         rc = min_t(unsigned int, LU_PAGE_SIZE, rdpg->rp_count);
2004                 }
2005                 kunmap(rdpg->rp_pages[0]);
2006         }
2007
2008         GOTO(out_unlock, rc);
2009 out_unlock:
2010         mdd_read_unlock(env, mdd_obj);
2011         return rc;
2012 }
2013
2014 static int mdd_object_sync(const struct lu_env *env, struct md_object *obj)
2015 {
2016         struct mdd_object *mdd_obj = md2mdd_obj(obj);
2017
2018         if (mdd_object_exists(mdd_obj) == 0) {
2019                 int rc = -ENOENT;
2020
2021                 CERROR("%s: object "DFID" not found: rc = %d\n",
2022                        mdd_obj_dev_name(mdd_obj),
2023                        PFID(mdd_object_fid(mdd_obj)), rc);
2024                 return rc;
2025         }
2026         return dt_object_sync(env, mdd_object_child(mdd_obj),
2027                               0, OBD_OBJECT_EOF);
2028 }
2029
2030 static int mdd_object_lock(const struct lu_env *env,
2031                            struct md_object *obj,
2032                            struct lustre_handle *lh,
2033                            struct ldlm_enqueue_info *einfo,
2034                            union ldlm_policy_data *policy)
2035 {
2036         struct mdd_object *mdd_obj = md2mdd_obj(obj);
2037         return dt_object_lock(env, mdd_object_child(mdd_obj), lh,
2038                               einfo, policy);
2039 }
2040
2041 static int mdd_object_unlock(const struct lu_env *env,
2042                              struct md_object *obj,
2043                              struct ldlm_enqueue_info *einfo,
2044                              union ldlm_policy_data *policy)
2045 {
2046         struct mdd_object *mdd_obj = md2mdd_obj(obj);
2047         return dt_object_unlock(env, mdd_object_child(mdd_obj), einfo, policy);
2048 }
2049
2050 const struct md_object_operations mdd_obj_ops = {
2051         .moo_permission         = mdd_permission,
2052         .moo_attr_get           = mdd_attr_get,
2053         .moo_attr_set           = mdd_attr_set,
2054         .moo_xattr_get          = mdd_xattr_get,
2055         .moo_xattr_set          = mdd_xattr_set,
2056         .moo_xattr_list         = mdd_xattr_list,
2057         .moo_xattr_del          = mdd_xattr_del,
2058         .moo_swap_layouts       = mdd_swap_layouts,
2059         .moo_open               = mdd_open,
2060         .moo_close              = mdd_close,
2061         .moo_readpage           = mdd_readpage,
2062         .moo_readlink           = mdd_readlink,
2063         .moo_changelog          = mdd_changelog,
2064         .moo_object_sync        = mdd_object_sync,
2065         .moo_object_lock        = mdd_object_lock,
2066         .moo_object_unlock      = mdd_object_unlock,
2067 };