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