Whamcloud - gitweb
LU-9727 lustre: add uid/gid to Changelogs entries
[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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2016, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lustre/mdd/mdd_object.c
33  *
34  * Lustre Metadata Server (mdd) routines
35  *
36  * Author: Wang Di <wangdi@clusterfs.com>
37  */
38
39 #define DEBUG_SUBSYSTEM S_MDS
40
41 #include <linux/module.h>
42 #include <obd.h>
43 #include <obd_class.h>
44 #include <obd_support.h>
45 #include <lprocfs_status.h>
46 /* fid_be_cpu(), fid_cpu_to_be(). */
47 #include <lustre_fid.h>
48 #include <lustre_idmap.h>
49 #include <uapi/linux/lustre/lustre_param.h>
50 #include <lustre_mds.h>
51
52 #include "mdd_internal.h"
53
54 static const struct lu_object_operations mdd_lu_obj_ops;
55
56 static int mdd_xattr_get(const struct lu_env *env,
57                          struct md_object *obj, struct lu_buf *buf,
58                          const char *name);
59
60 int mdd_la_get(const struct lu_env *env, struct mdd_object *obj,
61                struct lu_attr *la)
62 {
63         int rc;
64
65         if (mdd_object_exists(obj) == 0)
66                 return -ENOENT;
67
68         rc = mdo_attr_get(env, obj, la);
69         if (unlikely(rc != 0)) {
70                 if (rc == -ENOENT)
71                         obj->mod_flags |= DEAD_OBJ;
72                 return rc;
73         }
74
75         if (la->la_valid & LA_FLAGS &&
76             la->la_flags & LUSTRE_ORPHAN_FL)
77                 obj->mod_flags |= ORPHAN_OBJ | DEAD_OBJ;
78
79         return 0;
80 }
81
82 struct mdd_thread_info *mdd_env_info(const struct lu_env *env)
83 {
84         struct mdd_thread_info *info;
85
86         lu_env_refill((struct lu_env *)env);
87         info = lu_context_key_get(&env->le_ctx, &mdd_thread_key);
88         LASSERT(info != NULL);
89         return info;
90 }
91
92 struct lu_buf *mdd_buf_get(const struct lu_env *env, void *area, ssize_t len)
93 {
94         struct lu_buf *buf;
95
96         buf = &mdd_env_info(env)->mti_buf[0];
97         buf->lb_buf = area;
98         buf->lb_len = len;
99         return buf;
100 }
101
102 const struct lu_buf *mdd_buf_get_const(const struct lu_env *env,
103                                        const void *area, ssize_t len)
104 {
105         struct lu_buf *buf;
106
107         buf = &mdd_env_info(env)->mti_buf[0];
108         buf->lb_buf = (void *)area;
109         buf->lb_len = len;
110         return buf;
111 }
112
113 struct lu_object *mdd_object_alloc(const struct lu_env *env,
114                                    const struct lu_object_header *hdr,
115                                    struct lu_device *d)
116 {
117         struct mdd_object *mdd_obj;
118
119         OBD_SLAB_ALLOC_PTR_GFP(mdd_obj, mdd_object_kmem, GFP_NOFS);
120         if (mdd_obj != NULL) {
121                 struct lu_object *o;
122
123                 o = mdd2lu_obj(mdd_obj);
124                 lu_object_init(o, NULL, d);
125                 mdd_obj->mod_obj.mo_ops = &mdd_obj_ops;
126                 mdd_obj->mod_obj.mo_dir_ops = &mdd_dir_ops;
127                 mdd_obj->mod_count = 0;
128                 o->lo_ops = &mdd_lu_obj_ops;
129                 return o;
130         } else {
131                 return NULL;
132         }
133 }
134
135 static int mdd_object_init(const struct lu_env *env, struct lu_object *o,
136                            const struct lu_object_conf *unused)
137 {
138         struct mdd_device *d = lu2mdd_dev(o->lo_dev);
139         struct mdd_object *mdd_obj = lu2mdd_obj(o);
140         struct lu_object  *below;
141         struct lu_device  *under;
142         ENTRY;
143
144         mdd_obj->mod_cltime = ktime_set(0, 0);
145         under = &d->mdd_child->dd_lu_dev;
146         below = under->ld_ops->ldo_object_alloc(env, o->lo_header, under);
147         if (IS_ERR(below))
148                 RETURN(PTR_ERR(below));
149
150         lu_object_add(o, below);
151
152         RETURN(0);
153 }
154
155 static int mdd_object_start(const struct lu_env *env, struct lu_object *o)
156 {
157         int rc = 0;
158
159         if (lu_object_exists(o)) {
160                 struct mdd_object *mdd_obj = lu2mdd_obj(o);
161                 struct lu_attr *attr = MDD_ENV_VAR(env, la_for_start);
162
163                 rc = mdd_la_get(env, mdd_obj, attr);
164         }
165
166         return rc;
167 }
168
169 static void mdd_object_free(const struct lu_env *env, struct lu_object *o)
170 {
171         struct mdd_object *mdd = lu2mdd_obj(o);
172
173         lu_object_fini(o);
174         OBD_SLAB_FREE_PTR(mdd, mdd_object_kmem);
175 }
176
177 static int mdd_object_print(const struct lu_env *env, void *cookie,
178                             lu_printer_t p, const struct lu_object *o)
179 {
180         struct mdd_object *mdd = lu2mdd_obj((struct lu_object *)o);
181
182         return (*p)(env, cookie,
183                     LUSTRE_MDD_NAME"-object@%p(open_count=%d, valid=%x, cltime=%lldns, flags=%lx)",
184                     mdd, mdd->mod_count, mdd->mod_valid,
185                     ktime_to_ns(mdd->mod_cltime), mdd->mod_flags);
186 }
187
188 static const struct lu_object_operations mdd_lu_obj_ops = {
189         .loo_object_init    = mdd_object_init,
190         .loo_object_start   = mdd_object_start,
191         .loo_object_free    = mdd_object_free,
192         .loo_object_print   = mdd_object_print,
193 };
194
195 struct mdd_object *mdd_object_find(const struct lu_env *env,
196                                    struct mdd_device *d,
197                                    const struct lu_fid *f)
198 {
199         return md2mdd_obj(md_object_find_slice(env, &d->mdd_md_dev, f));
200 }
201
202 /*
203  * No permission check is needed.
204  */
205 int mdd_attr_get(const struct lu_env *env, struct md_object *obj,
206                  struct md_attr *ma)
207 {
208         struct mdd_object *mdd_obj = md2mdd_obj(obj);
209         int               rc;
210
211         ENTRY;
212
213         rc = mdd_la_get(env, mdd_obj, &ma->ma_attr);
214         if ((ma->ma_need & MA_INODE) != 0 && mdd_is_dead_obj(mdd_obj))
215                 ma->ma_attr.la_nlink = 0;
216
217         RETURN(rc);
218 }
219
220 /*
221  * No permission check is needed.
222  */
223 static int mdd_xattr_get(const struct lu_env *env,
224                          struct md_object *obj, struct lu_buf *buf,
225                          const char *name)
226 {
227         struct mdd_object *mdd_obj = md2mdd_obj(obj);
228         int rc;
229
230         ENTRY;
231
232         if (mdd_object_exists(mdd_obj) == 0) {
233                 CERROR("%s: object "DFID" not found: rc = -2\n",
234                        mdd_obj_dev_name(mdd_obj),PFID(mdd_object_fid(mdd_obj)));
235                 return -ENOENT;
236         }
237
238         /* If the object has been destroyed, then do not get LMVEA, because
239          * it needs to load stripes from the iteration of the master object,
240          * and it will cause problem if master object has been destroyed, see
241          * LU-6427 */
242         if (unlikely((mdd_obj->mod_flags & DEAD_OBJ) &&
243                      !(mdd_obj->mod_flags & ORPHAN_OBJ) &&
244                       strcmp(name, XATTR_NAME_LMV) == 0))
245                 RETURN(-ENOENT);
246
247         /* If the object has been delete from the namespace, then
248          * get linkEA should return -ENOENT as well */
249         if (unlikely((mdd_obj->mod_flags & (DEAD_OBJ | ORPHAN_OBJ)) &&
250                       strcmp(name, XATTR_NAME_LINK) == 0))
251                 RETURN(-ENOENT);
252
253         mdd_read_lock(env, mdd_obj, MOR_TGT_CHILD);
254         rc = mdo_xattr_get(env, mdd_obj, buf, name);
255         mdd_read_unlock(env, mdd_obj);
256
257         RETURN(rc);
258 }
259
260 /*
261  * Permission check is done when open,
262  * no need check again.
263  */
264 int mdd_readlink(const struct lu_env *env, struct md_object *obj,
265                  struct lu_buf *buf)
266 {
267         struct mdd_object *mdd_obj = md2mdd_obj(obj);
268         struct dt_object  *next;
269         loff_t             pos = 0;
270         int                rc;
271         ENTRY;
272
273         if (mdd_object_exists(mdd_obj) == 0) {
274                 CERROR("%s: object "DFID" not found: rc = -2\n",
275                        mdd_obj_dev_name(mdd_obj),PFID(mdd_object_fid(mdd_obj)));
276                 return -ENOENT;
277         }
278
279         next = mdd_object_child(mdd_obj);
280         LASSERT(next != NULL);
281         LASSERT(next->do_body_ops != NULL);
282         LASSERT(next->do_body_ops->dbo_read != NULL);
283         mdd_read_lock(env, mdd_obj, MOR_TGT_CHILD);
284         rc = dt_read(env, next, buf, &pos);
285         mdd_read_unlock(env, mdd_obj);
286         RETURN(rc);
287 }
288
289 /*
290  * No permission check is needed.
291  */
292 static int mdd_xattr_list(const struct lu_env *env, struct md_object *obj,
293                           struct lu_buf *buf)
294 {
295         struct mdd_object *mdd_obj = md2mdd_obj(obj);
296         int rc;
297
298         ENTRY;
299
300         mdd_read_lock(env, mdd_obj, MOR_TGT_CHILD);
301         rc = mdo_xattr_list(env, mdd_obj, buf);
302         mdd_read_unlock(env, mdd_obj);
303
304         /* If the buffer is NULL then we are only here to get the
305          * length of the xattr name list. */
306         if (rc < 0 || buf->lb_buf == NULL)
307                 RETURN(rc);
308
309         /*
310          * Filter out XATTR_NAME_LINK if this is an orphan object.  See
311          * mdd_xattr_get().
312          */
313         if (unlikely(mdd_obj->mod_flags & (DEAD_OBJ | ORPHAN_OBJ))) {
314                 char   *end = (char *)buf->lb_buf + rc;
315                 char   *p = buf->lb_buf;
316
317                 while (p < end) {
318                         char   *next = p + strlen(p) + 1;
319
320                         if (strcmp(p, XATTR_NAME_LINK) == 0) {
321                                 if (end - next > 0)
322                                         memmove(p, next, end - next);
323                                 rc -= next - p;
324                                 CDEBUG(D_INFO, "Filtered out "XATTR_NAME_LINK
325                                        " of orphan "DFID"\n",
326                                        PFID(mdd_object_fid(mdd_obj)));
327                                 break;
328                         }
329
330                         p = next;
331                 }
332         }
333
334         RETURN(rc);
335 }
336
337 int mdd_invalidate(const struct lu_env *env, struct md_object *obj)
338 {
339         return mdo_invalidate(env, md2mdd_obj(obj));
340 }
341
342 int mdd_declare_create_object_internal(const struct lu_env *env,
343                                        struct mdd_object *p,
344                                        struct mdd_object *c,
345                                        struct lu_attr *attr,
346                                        struct thandle *handle,
347                                        const struct md_op_spec *spec,
348                                        struct dt_allocation_hint *hint)
349 {
350         struct dt_object_format *dof = &mdd_env_info(env)->mti_dof;
351         const struct dt_index_features *feat = spec->sp_feat;
352         int rc;
353         ENTRY;
354
355         if (feat != &dt_directory_features && feat != NULL) {
356                 dof->dof_type = DFT_INDEX;
357                 dof->u.dof_idx.di_feat = feat;
358         } else {
359                 dof->dof_type = dt_mode_to_dft(attr->la_mode);
360                 if (dof->dof_type == DFT_REGULAR) {
361                         dof->u.dof_reg.striped =
362                                 md_should_create(spec->sp_cr_flags);
363                         if (spec->sp_cr_flags & MDS_OPEN_HAS_EA)
364                                 dof->u.dof_reg.striped = 0;
365                         /* is this replay? */
366                         if (spec->no_create)
367                                 dof->u.dof_reg.striped = 0;
368                 }
369         }
370
371         rc = mdo_declare_create_object(env, c, attr, hint, dof, handle);
372
373         RETURN(rc);
374 }
375
376 int mdd_create_object_internal(const struct lu_env *env, struct mdd_object *p,
377                                struct mdd_object *c, struct lu_attr *attr,
378                                struct thandle *handle,
379                                const struct md_op_spec *spec,
380                                struct dt_allocation_hint *hint)
381 {
382         struct dt_object_format *dof = &mdd_env_info(env)->mti_dof;
383         int rc;
384         ENTRY;
385
386         LASSERT(!mdd_object_exists(c));
387
388         rc = mdo_create_object(env, c, attr, hint, dof, handle);
389
390         RETURN(rc);
391 }
392
393 int mdd_attr_set_internal(const struct lu_env *env, struct mdd_object *obj,
394                           const struct lu_attr *attr, struct thandle *handle,
395                           int needacl)
396 {
397         int rc;
398         ENTRY;
399
400         rc = mdo_attr_set(env, obj, attr, handle);
401 #ifdef CONFIG_FS_POSIX_ACL
402         if (!rc && (attr->la_valid & LA_MODE) && needacl)
403                 rc = mdd_acl_chmod(env, obj, attr->la_mode, handle);
404 #endif
405         RETURN(rc);
406 }
407
408 int mdd_update_time(const struct lu_env *env, struct mdd_object *obj,
409                     const struct lu_attr *oattr, struct lu_attr *attr,
410                     struct thandle *handle)
411 {
412         int rc = 0;
413         ENTRY;
414
415         LASSERT(attr->la_valid & LA_CTIME);
416         LASSERT(oattr != NULL);
417
418         /* Make sure the ctime is increased only, however, it's not strictly
419          * reliable at here because there is not guarantee to hold lock on
420          * object, so we just bypass some unnecessary cmtime setting first
421          * and OSD has to check it again. */
422         if (attr->la_ctime < oattr->la_ctime)
423                 attr->la_valid &= ~(LA_MTIME | LA_CTIME);
424         else if (attr->la_valid == LA_CTIME &&
425                  attr->la_ctime == oattr->la_ctime)
426                 attr->la_valid &= ~LA_CTIME;
427
428         if (attr->la_valid != 0)
429                 rc = mdd_attr_set_internal(env, obj, attr, handle, 0);
430         RETURN(rc);
431 }
432
433 /*
434  * This gives the same functionality as the code between
435  * sys_chmod and inode_setattr
436  * chown_common and inode_setattr
437  * utimes and inode_setattr
438  * This API is ported from mds_fix_attr but remove some unnecesssary stuff.
439  */
440 static int mdd_fix_attr(const struct lu_env *env, struct mdd_object *obj,
441                         const struct lu_attr *oattr, struct lu_attr *la,
442                         const unsigned long flags)
443 {
444         struct lu_ucred  *uc;
445         int               rc = 0;
446         ENTRY;
447
448         if (!la->la_valid)
449                 RETURN(0);
450
451         /* Do not permit change file type */
452         if (la->la_valid & LA_TYPE)
453                 RETURN(-EPERM);
454
455         /* They should not be processed by setattr */
456         if (la->la_valid & (LA_NLINK | LA_RDEV | LA_BLKSIZE))
457                 RETURN(-EPERM);
458
459         LASSERT(oattr != NULL);
460
461         uc = lu_ucred_check(env);
462         if (uc == NULL)
463                 RETURN(0);
464
465         if (la->la_valid == LA_CTIME) {
466                 if (!(flags & MDS_PERM_BYPASS))
467                         /* This is only for set ctime when rename's source is
468                          * on remote MDS. */
469                         rc = mdd_may_delete(env, NULL, NULL, obj, oattr, NULL,
470                                             1, 0);
471                 if (rc == 0 && la->la_ctime <= oattr->la_ctime)
472                         la->la_valid &= ~LA_CTIME;
473                 RETURN(rc);
474         }
475
476         if (la->la_valid == LA_ATIME) {
477                 /* This is an atime-only attribute update for close RPCs. */
478                 if (la->la_atime < (oattr->la_atime +
479                                 mdd_obj2mdd_dev(obj)->mdd_atime_diff))
480                         la->la_valid &= ~LA_ATIME;
481                 RETURN(0);
482         }
483
484         /* Check if flags change. */
485         if (la->la_valid & LA_FLAGS) {
486                 unsigned int oldflags = oattr->la_flags &
487                                 (LUSTRE_IMMUTABLE_FL | LUSTRE_APPEND_FL);
488                 unsigned int newflags = la->la_flags &
489                                 (LUSTRE_IMMUTABLE_FL | LUSTRE_APPEND_FL);
490
491                 if ((uc->uc_fsuid != oattr->la_uid) &&
492                     !md_capable(uc, CFS_CAP_FOWNER))
493                         RETURN(-EPERM);
494
495                 /* The IMMUTABLE and APPEND_ONLY flags can
496                  * only be changed by the relevant capability. */
497                 if ((oldflags ^ newflags) &&
498                     !md_capable(uc, CFS_CAP_LINUX_IMMUTABLE))
499                         RETURN(-EPERM);
500
501                 if (!S_ISDIR(oattr->la_mode))
502                         la->la_flags &= ~(LUSTRE_DIRSYNC_FL | LUSTRE_TOPDIR_FL);
503         }
504
505         if (oattr->la_flags & (LUSTRE_IMMUTABLE_FL | LUSTRE_APPEND_FL) &&
506             (la->la_valid & ~LA_FLAGS) &&
507             !(flags & MDS_PERM_BYPASS))
508                 RETURN(-EPERM);
509
510         /* Check for setting the obj time. */
511         if ((la->la_valid & (LA_MTIME | LA_ATIME | LA_CTIME)) &&
512             !(la->la_valid & ~(LA_MTIME | LA_ATIME | LA_CTIME))) {
513                 if ((uc->uc_fsuid != oattr->la_uid) &&
514                     !md_capable(uc, CFS_CAP_FOWNER)) {
515                         rc = mdd_permission_internal(env, obj, oattr,
516                                                      MAY_WRITE);
517                         if (rc)
518                                 RETURN(rc);
519                 }
520         }
521
522         if (la->la_valid & LA_KILL_SUID) {
523                 la->la_valid &= ~LA_KILL_SUID;
524                 if ((oattr->la_mode & S_ISUID) &&
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_ISUID;
530         }
531
532         if (la->la_valid & LA_KILL_SGID) {
533                 la->la_valid &= ~LA_KILL_SGID;
534                 if (((oattr->la_mode & (S_ISGID | S_IXGRP)) ==
535                         (S_ISGID | S_IXGRP)) &&
536                     !(la->la_valid & LA_MODE)) {
537                         la->la_mode = oattr->la_mode;
538                         la->la_valid |= LA_MODE;
539                 }
540                 la->la_mode &= ~S_ISGID;
541         }
542
543         /* Make sure a caller can chmod. */
544         if (la->la_valid & LA_MODE) {
545                 if (!(flags & MDS_PERM_BYPASS) &&
546                     (uc->uc_fsuid != oattr->la_uid) &&
547                     !md_capable(uc, CFS_CAP_FOWNER))
548                         RETURN(-EPERM);
549
550                 if (la->la_mode == (umode_t) -1)
551                         la->la_mode = oattr->la_mode;
552                 else
553                         la->la_mode = (la->la_mode & S_IALLUGO) |
554                                         (oattr->la_mode & ~S_IALLUGO);
555
556                 /* Also check the setgid bit! */
557                 if (!lustre_in_group_p(uc, (la->la_valid & LA_GID) ?
558                                        la->la_gid : oattr->la_gid) &&
559                     !md_capable(uc, CFS_CAP_FSETID))
560                         la->la_mode &= ~S_ISGID;
561         } else {
562                la->la_mode = oattr->la_mode;
563         }
564
565         /* Make sure a caller can chown. */
566         if (la->la_valid & LA_UID) {
567                 if (la->la_uid == (uid_t) -1)
568                         la->la_uid = oattr->la_uid;
569                 if (((uc->uc_fsuid != oattr->la_uid) ||
570                      (la->la_uid != oattr->la_uid)) &&
571                     !md_capable(uc, CFS_CAP_CHOWN))
572                         RETURN(-EPERM);
573
574                 /* If the user or group of a non-directory has been
575                  * changed by a non-root user, remove the setuid bit.
576                  * 19981026 David C Niemi <niemi@tux.org>
577                  *
578                  * Changed this to apply to all users, including root,
579                  * to avoid some races. This is the behavior we had in
580                  * 2.0. The check for non-root was definitely wrong
581                  * for 2.2 anyway, as it should have been using
582                  * CAP_FSETID rather than fsuid -- 19990830 SD. */
583                 if (((oattr->la_mode & S_ISUID) == S_ISUID) &&
584                 !S_ISDIR(oattr->la_mode)) {
585                         la->la_mode &= ~S_ISUID;
586                         la->la_valid |= LA_MODE;
587                 }
588         }
589
590         /* Make sure caller can chgrp. */
591         if (la->la_valid & LA_GID) {
592                 if (la->la_gid == (gid_t) -1)
593                         la->la_gid = oattr->la_gid;
594                 if (((uc->uc_fsuid != oattr->la_uid) ||
595                      ((la->la_gid != oattr->la_gid) &&
596                       !lustre_in_group_p(uc, la->la_gid))) &&
597                     !md_capable(uc, CFS_CAP_CHOWN))
598                         RETURN(-EPERM);
599
600                 /* Likewise, if the user or group of a non-directory
601                  * has been changed by a non-root user, remove the
602                  * setgid bit UNLESS there is no group execute bit
603                  * (this would be a file marked for mandatory
604                  * locking).  19981026 David C Niemi <niemi@tux.org>
605                  *
606                  * Removed the fsuid check (see the comment above) --
607                  * 19990830 SD. */
608                 if (((oattr->la_mode & (S_ISGID | S_IXGRP)) ==
609                     (S_ISGID | S_IXGRP)) && !S_ISDIR(oattr->la_mode)) {
610                         la->la_mode &= ~S_ISGID;
611                         la->la_valid |= LA_MODE;
612                 }
613         }
614
615         if (la->la_valid & (LA_SIZE | LA_BLOCKS)) {
616                 if (!((flags & MDS_OWNEROVERRIDE) &&
617                       (uc->uc_fsuid == oattr->la_uid)) &&
618                     !(flags & MDS_PERM_BYPASS)) {
619                         rc = mdd_permission_internal(env, obj, oattr,
620                                                      MAY_WRITE);
621                         if (rc != 0)
622                                 RETURN(rc);
623                 }
624         }
625
626         if (la->la_valid & LA_CTIME) {
627                 /* The pure setattr, it has the priority over what is
628                  * already set, do not drop it if ctime is equal. */
629                 if (la->la_ctime < oattr->la_ctime)
630                         la->la_valid &= ~(LA_ATIME | LA_MTIME | LA_CTIME);
631         }
632
633         RETURN(0);
634 }
635
636 static int mdd_changelog_data_store_by_fid(const struct lu_env *env,
637                                     struct mdd_device *mdd,
638                                     enum changelog_rec_type type, int flags,
639                                     const struct lu_fid *fid,
640                                     struct thandle *handle)
641 {
642         const struct lu_ucred *uc = lu_ucred(env);
643         struct llog_changelog_rec *rec;
644         struct lu_buf *buf;
645         int reclen;
646         int xflags = CLFE_INVALID;
647         int rc;
648
649         flags = (flags & CLF_FLAGMASK) | CLF_VERSION | CLF_EXTRA_FLAGS;
650         if (uc != NULL && uc->uc_jobid[0] != '\0')
651                 flags |= CLF_JOBID;
652
653         xflags |= CLFE_UIDGID;
654
655         reclen = llog_data_len(LLOG_CHANGELOG_HDR_SZ +
656                                changelog_rec_offset(flags & CLF_SUPPORTED,
657                                                     xflags & CLFE_SUPPORTED));
658         buf = lu_buf_check_and_alloc(&mdd_env_info(env)->mti_big_buf, reclen);
659         if (buf->lb_buf == NULL)
660                 RETURN(-ENOMEM);
661         rec = buf->lb_buf;
662
663         rec->cr_hdr.lrh_len = reclen;
664         rec->cr.cr_flags = flags;
665         rec->cr.cr_type = (__u32)type;
666         rec->cr.cr_tfid = *fid;
667         rec->cr.cr_namelen = 0;
668
669         if (flags & CLF_JOBID)
670                 mdd_changelog_rec_ext_jobid(&rec->cr, uc->uc_jobid);
671
672         if (flags & CLF_EXTRA_FLAGS) {
673                 mdd_changelog_rec_ext_extra_flags(&rec->cr, xflags);
674                 if (xflags & CLFE_UIDGID)
675                         mdd_changelog_rec_extra_uidgid(&rec->cr,
676                                                        uc->uc_uid, uc->uc_gid);
677         }
678
679         rc = mdd_changelog_store(env, mdd, rec, handle);
680
681         RETURN(rc);
682 }
683
684
685 /** Store a data change changelog record
686  * If this fails, we must fail the whole transaction; we don't
687  * want the change to commit without the log entry.
688  * \param mdd_obj - mdd_object of change
689  * \param handle - transaction handle
690  */
691 int mdd_changelog_data_store(const struct lu_env *env, struct mdd_device *mdd,
692                              enum changelog_rec_type type, int flags,
693                              struct mdd_object *mdd_obj, struct thandle *handle)
694 {
695         int                              rc;
696
697         LASSERT(mdd_obj != NULL);
698         LASSERT(handle != NULL);
699
700         /* Not recording */
701         if (!(mdd->mdd_cl.mc_flags & CLM_ON))
702                 RETURN(0);
703         if ((mdd->mdd_cl.mc_mask & (1 << type)) == 0)
704                 RETURN(0);
705
706         if (mdd_is_volatile_obj(mdd_obj))
707                 RETURN(0);
708
709         if ((type >= CL_MTIME) && (type <= CL_ATIME) &&
710             ktime_before(mdd->mdd_cl.mc_starttime, mdd_obj->mod_cltime)) {
711                 /* Don't need multiple updates in this log */
712                 /* Don't check under lock - no big deal if we get an extra
713                    entry */
714                 RETURN(0);
715         }
716
717         rc = mdd_changelog_data_store_by_fid(env, mdd, type, flags,
718                                              mdo2fid(mdd_obj), handle);
719         if (rc == 0)
720                 mdd_obj->mod_cltime = ktime_get();
721
722         RETURN(rc);
723 }
724
725 static int mdd_changelog(const struct lu_env *env, enum changelog_rec_type type,
726                   int flags, struct md_device *m, const struct lu_fid *fid)
727 {
728         struct thandle *handle;
729         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
730         int rc;
731         ENTRY;
732
733         /* Not recording */
734         if (!(mdd->mdd_cl.mc_flags & CLM_ON))
735                 RETURN(0);
736         if (!(mdd->mdd_cl.mc_mask & (1 << type)))
737                 RETURN(0);
738
739         LASSERT(fid != NULL);
740
741         handle = mdd_trans_create(env, mdd);
742         if (IS_ERR(handle))
743                 RETURN(PTR_ERR(handle));
744
745         rc = mdd_declare_changelog_store(env, mdd, NULL, NULL, handle);
746         if (rc)
747                 GOTO(stop, rc);
748
749         rc = mdd_trans_start(env, mdd, handle);
750         if (rc)
751                 GOTO(stop, rc);
752
753         rc = mdd_changelog_data_store_by_fid(env, mdd, type, flags,
754                                                      fid, handle);
755
756 stop:
757         rc = mdd_trans_stop(env, mdd, rc, handle);
758
759         RETURN(rc);
760 }
761
762 /**
763  * Save LMA extended attributes with data from \a ma.
764  *
765  * HSM and Size-On-MDS data will be extracted from \ma if they are valid, if
766  * not, LMA EA will be first read from disk, modified and write back.
767  *
768  */
769 /* Precedence for choosing record type when multiple
770  * attributes change: setattr > mtime > ctime > atime
771  * (ctime changes when mtime does, plus chmod/chown.
772  * atime and ctime are independent.) */
773 static int mdd_attr_set_changelog(const struct lu_env *env,
774                                   struct md_object *obj, struct thandle *handle,
775                                   __u64 valid)
776 {
777         struct mdd_device *mdd = mdo2mdd(obj);
778         int bits, type = 0;
779
780         bits =  (valid & LA_SIZE)  ? 1 << CL_TRUNC : 0;
781         bits |= (valid & ~(LA_CTIME|LA_MTIME|LA_ATIME)) ? 1 << CL_SETATTR : 0;
782         bits |= (valid & LA_MTIME) ? 1 << CL_MTIME : 0;
783         bits |= (valid & LA_CTIME) ? 1 << CL_CTIME : 0;
784         bits |= (valid & LA_ATIME) ? 1 << CL_ATIME : 0;
785         bits = bits & mdd->mdd_cl.mc_mask;
786         /* This is an implementation limit rather than a protocol limit */
787         CLASSERT(CL_LAST <= sizeof(int) * 8);
788         if (bits == 0)
789                 return 0;
790
791         /* The record type is the lowest non-masked set bit */
792         type = __ffs(bits);
793
794         /* FYI we only store the first CLF_FLAGMASK bits of la_valid */
795         return mdd_changelog_data_store(env, mdd, type, (int)valid,
796                                         md2mdd_obj(obj), handle);
797 }
798
799 static int mdd_declare_attr_set(const struct lu_env *env,
800                                 struct mdd_device *mdd,
801                                 struct mdd_object *obj,
802                                 const struct lu_attr *attr,
803                                 struct thandle *handle)
804 {
805         int rc;
806
807         rc = mdo_declare_attr_set(env, obj, attr, handle);
808         if (rc)
809                 return rc;
810
811 #ifdef CONFIG_FS_POSIX_ACL
812         if (attr->la_valid & LA_MODE) {
813                 mdd_read_lock(env, obj, MOR_TGT_CHILD);
814                 rc = mdo_xattr_get(env, obj, &LU_BUF_NULL,
815                                    XATTR_NAME_ACL_ACCESS);
816                 mdd_read_unlock(env, obj);
817                 if (rc == -EOPNOTSUPP || rc == -ENODATA)
818                         rc = 0;
819                 else if (rc < 0)
820                         return rc;
821
822                 if (rc != 0) {
823                         struct lu_buf *buf = mdd_buf_get(env, NULL, rc);
824                         rc = mdo_declare_xattr_set(env, obj, buf,
825                                                    XATTR_NAME_ACL_ACCESS, 0,
826                                                    handle);
827                         if (rc)
828                                 return rc;
829                 }
830         }
831 #endif
832
833         rc = mdd_declare_changelog_store(env, mdd, NULL, NULL, handle);
834         return rc;
835 }
836
837 /*
838  * LU-3671
839  *
840  * permission changes may require sync operation, to mitigate performance
841  * impact, only do this for dir and when permission is reduced.
842  *
843  * For regular files, version is updated with permission change (see VBR), async
844  * permission won't cause any issue, while missing permission change on
845  * directory may affect accessibility of other objects after recovery.
846  */
847 static inline bool permission_needs_sync(const struct lu_attr *old,
848                                          const struct lu_attr *new)
849 {
850         if (!S_ISDIR(old->la_mode))
851                 return false;
852
853         if (new->la_valid & (LA_UID | LA_GID))
854                 return true;
855
856         if (new->la_valid & LA_MODE &&
857             new->la_mode & (S_ISUID | S_ISGID | S_ISVTX))
858                 return true;
859
860         if ((new->la_valid & LA_MODE) &&
861             ((new->la_mode & old->la_mode) & S_IRWXUGO) !=
862              (old->la_mode & S_IRWXUGO))
863                 return true;
864
865         return false;
866 }
867
868 /* set attr and LOV EA at once, return updated attr */
869 int mdd_attr_set(const struct lu_env *env, struct md_object *obj,
870                  const struct md_attr *ma)
871 {
872         struct mdd_object *mdd_obj = md2mdd_obj(obj);
873         struct mdd_device *mdd = mdo2mdd(obj);
874         struct thandle *handle;
875         struct lu_attr *la_copy = &mdd_env_info(env)->mti_la_for_fix;
876         struct lu_attr *attr = MDD_ENV_VAR(env, cattr);
877         const struct lu_attr *la = &ma->ma_attr;
878         int rc;
879         ENTRY;
880
881         /* we do not use ->attr_set() for LOV/HSM EA any more */
882         LASSERT((ma->ma_valid & MA_LOV) == 0);
883         LASSERT((ma->ma_valid & MA_HSM) == 0);
884
885         rc = mdd_la_get(env, mdd_obj, attr);
886         if (rc)
887                 RETURN(rc);
888
889         *la_copy = ma->ma_attr;
890         rc = mdd_fix_attr(env, mdd_obj, attr, la_copy, ma->ma_attr_flags);
891         if (rc)
892                 RETURN(rc);
893
894         /* no need to setattr anymore */
895         if (la_copy->la_valid == 0) {
896                 CDEBUG(D_INODE, "%s: no valid attribute on "DFID", previous"
897                        "valid is %#llx\n", mdd2obd_dev(mdd)->obd_name,
898                        PFID(mdo2fid(mdd_obj)), la->la_valid);
899
900                 RETURN(0);
901         }
902
903         handle = mdd_trans_create(env, mdd);
904         if (IS_ERR(handle))
905                 RETURN(PTR_ERR(handle));
906
907         rc = mdd_declare_attr_set(env, mdd, mdd_obj, la_copy, handle);
908         if (rc)
909                 GOTO(stop, rc);
910
911         rc = mdd_trans_start(env, mdd, handle);
912         if (rc)
913                 GOTO(stop, rc);
914
915         if (mdd->mdd_sync_permission && permission_needs_sync(attr, la))
916                 handle->th_sync = 1;
917
918         if (la->la_valid & (LA_MTIME | LA_CTIME))
919                 CDEBUG(D_INODE, "setting mtime %llu, ctime %llu\n",
920                        la->la_mtime, la->la_ctime);
921
922         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
923         if (la_copy->la_valid & LA_FLAGS)
924                 rc = mdd_attr_set_internal(env, mdd_obj, la_copy, handle, 1);
925         else if (la_copy->la_valid) /* setattr */
926                 rc = mdd_attr_set_internal(env, mdd_obj, la_copy, handle, 1);
927         mdd_write_unlock(env, mdd_obj);
928
929         if (rc == 0)
930                 rc = mdd_attr_set_changelog(env, obj, handle,
931                                             la_copy->la_valid);
932
933         GOTO(stop, rc);
934
935 stop:
936         rc = mdd_trans_stop(env, mdd, rc, handle);
937
938         return rc;
939 }
940
941 static int mdd_xattr_sanity_check(const struct lu_env *env,
942                                   struct mdd_object *obj,
943                                   const struct lu_attr *attr,
944                                   const char *name)
945 {
946         struct lu_ucred *uc     = lu_ucred_assert(env);
947         ENTRY;
948
949         if (attr->la_flags & (LUSTRE_IMMUTABLE_FL | LUSTRE_APPEND_FL))
950                 RETURN(-EPERM);
951
952         if (strncmp(XATTR_USER_PREFIX, name,
953                     sizeof(XATTR_USER_PREFIX) - 1) == 0) {
954                 /* For sticky directories, only the owner and privileged user
955                  * can write attributes. */
956                 if (S_ISDIR(attr->la_mode) && (attr->la_mode & S_ISVTX) &&
957                     (uc->uc_fsuid != attr->la_uid) &&
958                     !md_capable(uc, CFS_CAP_FOWNER))
959                         RETURN(-EPERM);
960         } else {
961                 if ((uc->uc_fsuid != attr->la_uid) &&
962                     !md_capable(uc, CFS_CAP_FOWNER))
963                         RETURN(-EPERM);
964         }
965
966         RETURN(0);
967 }
968
969 /**
970  * Check if a string begins with a given prefix.
971  *
972  * \param str     String to check
973  * \param prefix  Substring to check at the beginning of \a str
974  * \return true/false whether the condition is verified.
975  */
976 static inline bool has_prefix(const char *str, const char *prefix)
977 {
978         return strncmp(prefix, str, strlen(prefix)) == 0;
979 }
980
981 /**
982  * Indicate the kind of changelog to store (if any) for a xattr set/del.
983  *
984  * \param[in]  xattr_name  Full extended attribute name.
985  *
986  * \return The type of changelog to use, or -1 if no changelog is to be emitted.
987  */
988 static enum changelog_rec_type
989 mdd_xattr_changelog_type(const struct lu_env *env, struct mdd_device *mdd,
990                          const char *xattr_name)
991 {
992         /* Layout changes systematically recorded */
993         if (strcmp(XATTR_NAME_LOV, xattr_name) == 0 ||
994             strncmp(XATTR_LUSTRE_LOV, xattr_name,
995                     strlen(XATTR_LUSTRE_LOV)) == 0)
996                 return CL_LAYOUT;
997
998         /* HSM information changes systematically recorded */
999         if (strcmp(XATTR_NAME_HSM, xattr_name) == 0)
1000                 return CL_HSM;
1001
1002         if (has_prefix(xattr_name, XATTR_USER_PREFIX) ||
1003             has_prefix(xattr_name, XATTR_NAME_POSIX_ACL_ACCESS) ||
1004             has_prefix(xattr_name, XATTR_NAME_POSIX_ACL_DEFAULT))
1005                 return CL_XATTR;
1006
1007         return -1;
1008 }
1009
1010 static int mdd_declare_xattr_set(const struct lu_env *env,
1011                                  struct mdd_device *mdd,
1012                                  struct mdd_object *obj,
1013                                  const struct lu_buf *buf,
1014                                  const char *name,
1015                                  int fl, struct thandle *handle)
1016 {
1017         int     rc;
1018
1019         rc = mdo_declare_xattr_set(env, obj, buf, name, fl, handle);
1020         if (rc)
1021                 return rc;
1022
1023         if (mdd_xattr_changelog_type(env, mdd, name) < 0)
1024                 return 0; /* no changelog to store */
1025
1026         return mdd_declare_changelog_store(env, mdd, NULL, NULL, handle);
1027 }
1028
1029 /*
1030  * Compare current and future data of HSM EA and add a changelog if needed.
1031  *
1032  * Caller should have write-locked \param obj.
1033  *
1034  * \param buf - Future HSM EA content.
1035  * \retval 0 if no changelog is needed or changelog was added properly.
1036  * \retval -ve errno if there was a problem
1037  */
1038 static int mdd_hsm_update_locked(const struct lu_env *env,
1039                                  struct md_object *obj,
1040                                  const struct lu_buf *buf,
1041                                  struct thandle *handle, int *cl_flags)
1042 {
1043         struct mdd_thread_info *info = mdd_env_info(env);
1044         struct mdd_object      *mdd_obj = md2mdd_obj(obj);
1045         struct lu_buf          *current_buf;
1046         struct md_hsm          *current_mh;
1047         struct md_hsm          *new_mh;
1048         int                     rc;
1049         ENTRY;
1050
1051         OBD_ALLOC_PTR(current_mh);
1052         if (current_mh == NULL)
1053                 RETURN(-ENOMEM);
1054
1055         /* Read HSM attrs from disk */
1056         current_buf = lu_buf_check_and_alloc(&info->mti_xattr_buf,
1057                                 mdo2mdd(obj)->mdd_dt_conf.ddp_max_ea_size);
1058         rc = mdo_xattr_get(env, mdd_obj, current_buf, XATTR_NAME_HSM);
1059         rc = lustre_buf2hsm(current_buf->lb_buf, rc, current_mh);
1060         if (rc < 0 && rc != -ENODATA)
1061                 GOTO(free, rc);
1062         else if (rc == -ENODATA)
1063                 current_mh->mh_flags = 0;
1064
1065         /* Map future HSM xattr */
1066         OBD_ALLOC_PTR(new_mh);
1067         if (new_mh == NULL)
1068                 GOTO(free, rc = -ENOMEM);
1069         lustre_buf2hsm(buf->lb_buf, buf->lb_len, new_mh);
1070
1071         rc = 0;
1072
1073         /* Flags differ, set flags for the changelog that will be added */
1074         if (current_mh->mh_flags != new_mh->mh_flags) {
1075                 hsm_set_cl_event(cl_flags, HE_STATE);
1076                 if (new_mh->mh_flags & HS_DIRTY)
1077                         hsm_set_cl_flags(cl_flags, CLF_HSM_DIRTY);
1078         }
1079
1080         OBD_FREE_PTR(new_mh);
1081         EXIT;
1082 free:
1083         OBD_FREE_PTR(current_mh);
1084         return rc;
1085 }
1086
1087 static int mdd_declare_xattr_del(const struct lu_env *env,
1088                                  struct mdd_device *mdd,
1089                                  struct mdd_object *obj,
1090                                  const char *name,
1091                                  struct thandle *handle);
1092
1093 static int mdd_xattr_del(const struct lu_env *env, struct md_object *obj,
1094                          const char *name);
1095
1096 static int mdd_xattr_merge(const struct lu_env *env, struct md_object *md_obj,
1097                            struct md_object *md_vic)
1098 {
1099         struct mdd_device *mdd = mdo2mdd(md_obj);
1100         struct mdd_object *obj = md2mdd_obj(md_obj);
1101         struct mdd_object *vic = md2mdd_obj(md_vic);
1102         struct lu_buf *buf = &mdd_env_info(env)->mti_buf[0];
1103         struct lu_buf *buf_vic = &mdd_env_info(env)->mti_buf[1];
1104         struct lov_mds_md *lmm;
1105         struct thandle *handle;
1106         int rc;
1107         ENTRY;
1108
1109         rc = lu_fid_cmp(mdo2fid(obj), mdo2fid(vic));
1110         if (rc == 0) /* same fid */
1111                 RETURN(-EPERM);
1112
1113         handle = mdd_trans_create(env, mdd);
1114         if (IS_ERR(handle))
1115                 RETURN(PTR_ERR(handle));
1116
1117         if (rc > 0) {
1118                 mdd_write_lock(env, obj, MOR_TGT_CHILD);
1119                 mdd_write_lock(env, vic, MOR_TGT_CHILD);
1120         } else {
1121                 mdd_write_lock(env, vic, MOR_TGT_CHILD);
1122                 mdd_write_lock(env, obj, MOR_TGT_CHILD);
1123         }
1124
1125         /* get EA of victim file */
1126         memset(buf_vic, 0, sizeof(*buf_vic));
1127         rc = mdd_get_lov_ea(env, vic, buf_vic);
1128         if (rc < 0) {
1129                 if (rc == -ENODATA)
1130                         rc = 0;
1131                 GOTO(out, rc);
1132         }
1133
1134         /* parse the layout of victim file */
1135         lmm = buf_vic->lb_buf;
1136         if (le32_to_cpu(lmm->lmm_magic) != LOV_MAGIC_COMP_V1)
1137                 GOTO(out, rc = -EINVAL);
1138
1139         /* save EA of target file for restore */
1140         memset(buf, 0, sizeof(*buf));
1141         rc = mdd_get_lov_ea(env, obj, buf);
1142         if (rc < 0)
1143                 GOTO(out, rc);
1144
1145         /* Get rid of the layout from victim object */
1146         rc = mdd_declare_xattr_del(env, mdd, vic, XATTR_NAME_LOV, handle);
1147         if (rc)
1148                 GOTO(out, rc);
1149
1150         rc = mdd_declare_xattr_set(env, mdd, obj, buf_vic, XATTR_LUSTRE_LOV,
1151                                    LU_XATTR_MERGE, handle);
1152         if (rc)
1153                 GOTO(out, rc);
1154
1155         rc = mdd_trans_start(env, mdd, handle);
1156         if (rc != 0)
1157                 GOTO(out, rc);
1158
1159         rc = mdo_xattr_set(env, obj, buf_vic, XATTR_LUSTRE_LOV, LU_XATTR_MERGE,
1160                            handle);
1161         if (rc)
1162                 GOTO(out, rc);
1163
1164         rc = mdo_xattr_del(env, vic, XATTR_NAME_LOV, handle);
1165         if (rc) { /* wtf? */
1166                 int rc2;
1167
1168                 rc2 = mdo_xattr_set(env, obj, buf, XATTR_NAME_LOV,
1169                                     LU_XATTR_REPLACE, handle);
1170                 if (rc2)
1171                         CERROR("%s: failed to rollback of layout of: "DFID
1172                                ": %d, file state unknown\n",
1173                                mdd_obj_dev_name(obj), PFID(mdo2fid(obj)), rc2);
1174                 GOTO(out, rc);
1175         }
1176
1177         (void)mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, obj, handle);
1178         (void)mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, vic, handle);
1179         EXIT;
1180
1181 out:
1182         mdd_trans_stop(env, mdd, rc, handle);
1183         mdd_write_unlock(env, obj);
1184         mdd_write_unlock(env, vic);
1185         lu_buf_free(buf);
1186         lu_buf_free(buf_vic);
1187
1188         return rc;
1189 }
1190
1191 static int mdd_layout_merge_allowed(const struct lu_env *env,
1192                                     struct md_object *target,
1193                                     struct md_object *victim)
1194 {
1195         struct mdd_object *o1 = md2mdd_obj(target);
1196
1197         /* cannot extend directory's LOVEA */
1198         if (S_ISDIR(mdd_object_type(o1))) {
1199                 CERROR("%s: Don't extend directory's LOVEA, just set it.\n",
1200                        mdd_obj_dev_name(o1));
1201                 RETURN(-EISDIR);
1202         }
1203
1204         RETURN(0);
1205 }
1206
1207 /**
1208  * The caller should guarantee to update the object ctime
1209  * after xattr_set if needed.
1210  */
1211 static int mdd_xattr_set(const struct lu_env *env, struct md_object *obj,
1212                          const struct lu_buf *buf, const char *name,
1213                          int fl)
1214 {
1215         struct mdd_object       *mdd_obj = md2mdd_obj(obj);
1216         struct lu_attr          *attr = MDD_ENV_VAR(env, cattr);
1217         struct mdd_device       *mdd = mdo2mdd(obj);
1218         struct thandle          *handle;
1219         enum changelog_rec_type  cl_type;
1220         int                      cl_flags = 0;
1221         int                      rc;
1222         ENTRY;
1223
1224         rc = mdd_la_get(env, mdd_obj, attr);
1225         if (rc)
1226                 RETURN(rc);
1227
1228         rc = mdd_xattr_sanity_check(env, mdd_obj, attr, name);
1229         if (rc)
1230                 RETURN(rc);
1231
1232         if (strcmp(name, XATTR_LUSTRE_LOV) == 0 && fl == LU_XATTR_MERGE) {
1233                 struct md_object *victim = buf->lb_buf;
1234
1235                 if (buf->lb_len != sizeof(victim))
1236                         RETURN(-EINVAL);
1237
1238                 rc = mdd_layout_merge_allowed(env, obj, victim);
1239                 if (rc)
1240                         RETURN(rc);
1241
1242                 /* merge layout of victim as a mirror of obj's. */
1243                 rc = mdd_xattr_merge(env, obj, victim);
1244                 RETURN(rc);
1245         }
1246
1247         if (strcmp(name, XATTR_NAME_ACL_ACCESS) == 0 ||
1248             strcmp(name, XATTR_NAME_ACL_DEFAULT) == 0) {
1249                 struct posix_acl *acl;
1250
1251                 /* user may set empty ACL, which should be treated as removing
1252                  * ACL. */
1253                 acl = posix_acl_from_xattr(&init_user_ns, buf->lb_buf,
1254                                            buf->lb_len);
1255                 if (IS_ERR(acl))
1256                         RETURN(PTR_ERR(acl));
1257                 if (acl == NULL) {
1258                         rc = mdd_xattr_del(env, obj, name);
1259                         RETURN(rc);
1260                 }
1261                 posix_acl_release(acl);
1262         }
1263
1264         if (!strcmp(name, XATTR_NAME_ACL_ACCESS)) {
1265                 rc = mdd_acl_set(env, mdd_obj, attr, buf, fl);
1266                 RETURN(rc);
1267         }
1268
1269         handle = mdd_trans_create(env, mdd);
1270         if (IS_ERR(handle))
1271                 RETURN(PTR_ERR(handle));
1272
1273         rc = mdd_declare_xattr_set(env, mdd, mdd_obj, buf, name, fl, handle);
1274         if (rc)
1275                 GOTO(stop, rc);
1276
1277         rc = mdd_trans_start(env, mdd, handle);
1278         if (rc)
1279                 GOTO(stop, rc);
1280
1281         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
1282
1283         if (strcmp(XATTR_NAME_HSM, name) == 0) {
1284                 rc = mdd_hsm_update_locked(env, obj, buf, handle, &cl_flags);
1285                 if (rc) {
1286                         mdd_write_unlock(env, mdd_obj);
1287                         GOTO(stop, rc);
1288                 }
1289         }
1290
1291         rc = mdo_xattr_set(env, mdd_obj, buf, name, fl, handle);
1292         mdd_write_unlock(env, mdd_obj);
1293         if (rc)
1294                 GOTO(stop, rc);
1295
1296         cl_type = mdd_xattr_changelog_type(env, mdd, name);
1297         if (cl_type < 0)
1298                 GOTO(stop, rc = 0);
1299
1300         rc = mdd_changelog_data_store(env, mdd, cl_type, cl_flags, mdd_obj,
1301                                       handle);
1302
1303         EXIT;
1304 stop:
1305         return mdd_trans_stop(env, mdd, rc, handle);
1306 }
1307
1308 static int mdd_declare_xattr_del(const struct lu_env *env,
1309                                  struct mdd_device *mdd,
1310                                  struct mdd_object *obj,
1311                                  const char *name,
1312                                  struct thandle *handle)
1313 {
1314         int rc;
1315
1316         rc = mdo_declare_xattr_del(env, obj, name, handle);
1317         if (rc)
1318                 return rc;
1319
1320         if (mdd_xattr_changelog_type(env, mdd, name) < 0)
1321                 return 0; /* no changelog to store */
1322
1323         return mdd_declare_changelog_store(env, mdd, NULL, NULL, handle);
1324 }
1325
1326 /**
1327  * The caller should guarantee to update the object ctime
1328  * after xattr_set if needed.
1329  */
1330 static int mdd_xattr_del(const struct lu_env *env, struct md_object *obj,
1331                          const char *name)
1332 {
1333         struct mdd_object *mdd_obj = md2mdd_obj(obj);
1334         struct lu_attr *attr = MDD_ENV_VAR(env, cattr);
1335         struct mdd_device *mdd = mdo2mdd(obj);
1336         struct thandle *handle;
1337         int rc;
1338         ENTRY;
1339
1340         rc = mdd_la_get(env, mdd_obj, attr);
1341         if (rc)
1342                 RETURN(rc);
1343
1344         rc = mdd_xattr_sanity_check(env, mdd_obj, attr, name);
1345         if (rc)
1346                 RETURN(rc);
1347
1348         handle = mdd_trans_create(env, mdd);
1349         if (IS_ERR(handle))
1350                 RETURN(PTR_ERR(handle));
1351
1352         rc = mdd_declare_xattr_del(env, mdd, mdd_obj, name, handle);
1353         if (rc)
1354                 GOTO(stop, rc);
1355
1356         rc = mdd_trans_start(env, mdd, handle);
1357         if (rc)
1358                 GOTO(stop, rc);
1359
1360         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
1361         rc = mdo_xattr_del(env, mdd_obj, name, handle);
1362         mdd_write_unlock(env, mdd_obj);
1363         if (rc)
1364                 GOTO(stop, rc);
1365
1366         if (mdd_xattr_changelog_type(env, mdd, name) < 0)
1367                 GOTO(stop, rc = 0);
1368
1369         rc = mdd_changelog_data_store(env, mdd, CL_XATTR, 0, mdd_obj, handle);
1370
1371         EXIT;
1372 stop:
1373         return mdd_trans_stop(env, mdd, rc, handle);
1374 }
1375
1376 /*
1377  * read lov EA of an object
1378  * return the lov EA in an allocated lu_buf
1379  */
1380 int mdd_get_lov_ea(const struct lu_env *env, struct mdd_object *obj,
1381                    struct lu_buf *lmm_buf)
1382 {
1383         struct lu_buf   *buf = &mdd_env_info(env)->mti_big_buf;
1384         int              rc, bufsize;
1385         ENTRY;
1386
1387 repeat:
1388         rc = mdo_xattr_get(env, obj, buf, XATTR_NAME_LOV);
1389
1390         if (rc == -ERANGE) {
1391                 /* mti_big_buf is allocated but is too small
1392                  * we need to increase it */
1393                 buf = lu_buf_check_and_alloc(&mdd_env_info(env)->mti_big_buf,
1394                                              buf->lb_len * 2);
1395                 if (buf->lb_buf == NULL)
1396                         GOTO(out, rc = -ENOMEM);
1397                 goto repeat;
1398         }
1399
1400         if (rc < 0)
1401                 RETURN(rc);
1402
1403         if (rc == 0)
1404                 RETURN(-ENODATA);
1405
1406         bufsize = rc;
1407         if (memcmp(buf, &LU_BUF_NULL, sizeof(*buf)) == 0) {
1408                 /* mti_big_buf was not allocated, so we have to
1409                  * allocate it based on the ea size */
1410                 buf = lu_buf_check_and_alloc(&mdd_env_info(env)->mti_big_buf,
1411                                              bufsize);
1412                 if (buf->lb_buf == NULL)
1413                         GOTO(out, rc = -ENOMEM);
1414                 goto repeat;
1415         }
1416
1417         lu_buf_alloc(lmm_buf, bufsize);
1418         if (lmm_buf->lb_buf == NULL)
1419                 GOTO(out, rc = -ENOMEM);
1420
1421         memcpy(lmm_buf->lb_buf, buf->lb_buf, bufsize);
1422         rc = 0;
1423         EXIT;
1424
1425 out:
1426         if (rc < 0)
1427                 lu_buf_free(lmm_buf);
1428         return rc;
1429 }
1430
1431 static int mdd_xattr_hsm_replace(const struct lu_env *env,
1432                                  struct mdd_object *o, struct lu_buf *buf,
1433                                  struct thandle *handle)
1434 {
1435         struct hsm_attrs *attrs;
1436         __u32 hsm_flags;
1437         int flags = 0;
1438         int rc;
1439         ENTRY;
1440
1441         rc = mdo_xattr_set(env, o, buf, XATTR_NAME_HSM, LU_XATTR_REPLACE,
1442                            handle);
1443         if (rc != 0)
1444                 RETURN(rc);
1445
1446         attrs = buf->lb_buf;
1447         hsm_flags = le32_to_cpu(attrs->hsm_flags);
1448         if (!(hsm_flags & HS_RELEASED) || mdd_is_dead_obj(o))
1449                 RETURN(0);
1450
1451         /* Add a changelog record for release. */
1452         hsm_set_cl_event(&flags, HE_RELEASE);
1453         rc = mdd_changelog_data_store(env, mdo2mdd(&o->mod_obj), CL_HSM,
1454                                       flags, o, handle);
1455         RETURN(rc);
1456 }
1457
1458 /*
1459  *  check if layout swapping between 2 objects is allowed
1460  *  the rules are:
1461  *  - only normal FIDs or non-system IGIFs
1462  *  - same type of objects
1463  *  - same owner/group (so quotas are still valid) unless this is from HSM
1464  *    release.
1465  */
1466 static int mdd_layout_swap_allowed(const struct lu_env *env,
1467                                    struct mdd_object *o1,
1468                                    const struct lu_attr *attr1,
1469                                    struct mdd_object *o2,
1470                                    const struct lu_attr *attr2,
1471                                    __u64 flags)
1472 {
1473         const struct lu_fid     *fid1, *fid2;
1474         ENTRY;
1475
1476         fid1 = mdo2fid(o1);
1477         fid2 = mdo2fid(o2);
1478
1479         if (!fid_is_norm(fid1) &&
1480             (!fid_is_igif(fid1) || IS_ERR(mdd_links_get(env, o1))))
1481                 RETURN(-EBADF);
1482
1483         if (!fid_is_norm(fid2) &&
1484             (!fid_is_igif(fid2) || IS_ERR(mdd_links_get(env, o2))))
1485                 RETURN(-EBADF);
1486
1487         if (mdd_object_type(o1) != mdd_object_type(o2)) {
1488                 if (S_ISDIR(mdd_object_type(o1)))
1489                         RETURN(-ENOTDIR);
1490                 if (S_ISREG(mdd_object_type(o1)))
1491                         RETURN(-EISDIR);
1492                 RETURN(-EBADF);
1493         }
1494
1495         if (flags & SWAP_LAYOUTS_MDS_HSM)
1496                 RETURN(0);
1497
1498         if ((attr1->la_uid != attr2->la_uid) ||
1499             (attr1->la_gid != attr2->la_gid))
1500                 RETURN(-EPERM);
1501
1502         RETURN(0);
1503 }
1504
1505 /* XXX To set the proper lmm_oi & lmm_layout_gen when swap layouts, we have to
1506  *     look into the layout in MDD layer. */
1507 static int mdd_lmm_oi(struct lov_mds_md *lmm, struct ost_id *oi, bool get)
1508 {
1509         struct lov_comp_md_v1   *comp_v1;
1510         struct lov_mds_md       *v1;
1511         int                      i, ent_count;
1512         __u32                    off;
1513
1514         if (le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_COMP_V1) {
1515                 comp_v1 = (struct lov_comp_md_v1 *)lmm;
1516                 ent_count = le16_to_cpu(comp_v1->lcm_entry_count);
1517
1518                 if (ent_count == 0)
1519                         return -EINVAL;
1520
1521                 if (get) {
1522                         off = le32_to_cpu(comp_v1->lcm_entries[0].lcme_offset);
1523                         v1 = (struct lov_mds_md *)((char *)comp_v1 + off);
1524                         *oi = v1->lmm_oi;
1525                 } else {
1526                         for (i = 0; i < le32_to_cpu(ent_count); i++) {
1527                                 off = le32_to_cpu(comp_v1->lcm_entries[i].
1528                                                 lcme_offset);
1529                                 v1 = (struct lov_mds_md *)((char *)comp_v1 +
1530                                                 off);
1531                                 v1->lmm_oi = *oi;
1532                         }
1533                 }
1534         } else if (le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_V1 ||
1535                    le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_V3) {
1536                 if (get)
1537                         *oi = lmm->lmm_oi;
1538                 else
1539                         lmm->lmm_oi = *oi;
1540         } else {
1541                 return -EINVAL;
1542         }
1543         return 0;
1544 }
1545
1546 static inline int mdd_get_lmm_oi(struct lov_mds_md *lmm, struct ost_id *oi)
1547 {
1548         return mdd_lmm_oi(lmm, oi, true);
1549 }
1550
1551 static inline int mdd_set_lmm_oi(struct lov_mds_md *lmm, struct ost_id *oi)
1552 {
1553         return mdd_lmm_oi(lmm, oi, false);
1554 }
1555
1556 static int mdd_lmm_gen(struct lov_mds_md *lmm, __u32 *gen, bool get)
1557 {
1558         struct lov_comp_md_v1 *comp_v1;
1559
1560         if (le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_COMP_V1) {
1561                 comp_v1 = (struct lov_comp_md_v1 *)lmm;
1562                 if (get)
1563                         *gen = le32_to_cpu(comp_v1->lcm_layout_gen);
1564                 else
1565                         comp_v1->lcm_layout_gen = cpu_to_le32(*gen);
1566         } else if (le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_V1 ||
1567                    le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_V3) {
1568                 __u16 tmp_gen = *gen;
1569                 if (get)
1570                         *gen = le16_to_cpu(lmm->lmm_layout_gen);
1571                 else
1572                         lmm->lmm_layout_gen = cpu_to_le16(tmp_gen);
1573         } else {
1574                 return -EINVAL;
1575         }
1576         return 0;
1577 }
1578
1579 static inline int mdd_get_lmm_gen(struct lov_mds_md *lmm, __u32 *gen)
1580 {
1581         return mdd_lmm_gen(lmm, gen, true);
1582 }
1583
1584 static inline int mdd_set_lmm_gen(struct lov_mds_md *lmm, __u32 *gen)
1585 {
1586         return mdd_lmm_gen(lmm, gen, false);
1587 }
1588
1589 /**
1590  * swap layouts between 2 lustre objects
1591  */
1592 static int mdd_swap_layouts(const struct lu_env *env, struct md_object *obj1,
1593                             struct md_object *obj2, __u64 flags)
1594 {
1595         struct mdd_thread_info  *info = mdd_env_info(env);
1596         struct mdd_object       *fst_o = md2mdd_obj(obj1);
1597         struct mdd_object       *snd_o = md2mdd_obj(obj2);
1598         struct lu_attr          *fst_la = MDD_ENV_VAR(env, cattr);
1599         struct lu_attr          *snd_la = MDD_ENV_VAR(env, tattr);
1600         struct mdd_device       *mdd = mdo2mdd(obj1);
1601         struct lov_mds_md       *fst_lmm, *snd_lmm;
1602         struct lu_buf           *fst_buf = &info->mti_buf[0];
1603         struct lu_buf           *snd_buf = &info->mti_buf[1];
1604         struct lu_buf           *fst_hsm_buf = &info->mti_buf[2];
1605         struct lu_buf           *snd_hsm_buf = &info->mti_buf[3];
1606         struct ost_id           *saved_oi = NULL;
1607         struct thandle          *handle;
1608         __u32                    fst_gen, snd_gen, saved_gen;
1609         int                      fst_fl;
1610         int                      rc;
1611         int                      rc2;
1612         ENTRY;
1613
1614         CLASSERT(ARRAY_SIZE(info->mti_buf) >= 4);
1615         memset(info->mti_buf, 0, sizeof(info->mti_buf));
1616
1617         /* we have to sort the 2 obj, so locking will always
1618          * be in the same order, even in case of 2 concurrent swaps */
1619         rc = lu_fid_cmp(mdo2fid(fst_o), mdo2fid(snd_o));
1620         if (rc == 0) /* same fid ? */
1621                 RETURN(-EPERM);
1622
1623         if (rc < 0)
1624                 swap(fst_o, snd_o);
1625
1626         rc = mdd_la_get(env, fst_o, fst_la);
1627         if (rc != 0)
1628                 RETURN(rc);
1629
1630         rc = mdd_la_get(env, snd_o, snd_la);
1631         if (rc != 0)
1632                 RETURN(rc);
1633
1634         /* check if layout swapping is allowed */
1635         rc = mdd_layout_swap_allowed(env, fst_o, fst_la, snd_o, snd_la, flags);
1636         if (rc != 0)
1637                 RETURN(rc);
1638
1639         handle = mdd_trans_create(env, mdd);
1640         if (IS_ERR(handle))
1641                 RETURN(PTR_ERR(handle));
1642
1643         /* objects are already sorted */
1644         mdd_write_lock(env, fst_o, MOR_TGT_CHILD);
1645         mdd_write_lock(env, snd_o, MOR_TGT_CHILD);
1646
1647         rc = mdd_get_lov_ea(env, fst_o, fst_buf);
1648         if (rc < 0 && rc != -ENODATA)
1649                 GOTO(stop, rc);
1650
1651         rc = mdd_get_lov_ea(env, snd_o, snd_buf);
1652         if (rc < 0 && rc != -ENODATA)
1653                 GOTO(stop, rc);
1654
1655         /* swapping 2 non existant layouts is a success */
1656         if (fst_buf->lb_buf == NULL && snd_buf->lb_buf == NULL)
1657                 GOTO(stop, rc = 0);
1658
1659         /* to help inode migration between MDT, it is better to
1660          * start by the no layout file (if one), so we order the swap */
1661         if (snd_buf->lb_buf == NULL) {
1662                 swap(fst_o, snd_o);
1663                 swap(fst_buf, snd_buf);
1664         }
1665
1666         fst_gen = snd_gen = 0;
1667         /* lmm and generation layout initialization */
1668         if (fst_buf->lb_buf != NULL) {
1669                 fst_lmm = fst_buf->lb_buf;
1670                 mdd_get_lmm_gen(fst_lmm, &fst_gen);
1671                 fst_fl  = LU_XATTR_REPLACE;
1672         } else {
1673                 fst_lmm = NULL;
1674                 fst_gen = 0;
1675                 fst_fl  = LU_XATTR_CREATE;
1676         }
1677
1678         snd_lmm = snd_buf->lb_buf;
1679         mdd_get_lmm_gen(snd_lmm, &snd_gen);
1680
1681         saved_gen = fst_gen;
1682         /* increase the generation layout numbers */
1683         snd_gen++;
1684         fst_gen++;
1685
1686         /*
1687          * XXX The layout generation is used to generate component IDs for
1688          *     the composite file, we have to do some special tweaks to make
1689          *     sure the layout generation is always adequate for that job.
1690          */
1691
1692         /* Skip invalid generation number for composite layout */
1693         if ((snd_gen & LCME_ID_MASK) == 0)
1694                 snd_gen++;
1695         if ((fst_gen & LCME_ID_MASK) == 0)
1696                 fst_gen++;
1697         /* Make sure the generation is greater than all the component IDs */
1698         if (fst_gen < snd_gen)
1699                 fst_gen = snd_gen;
1700         else if (fst_gen > snd_gen)
1701                 snd_gen = fst_gen;
1702
1703         /* set the file specific informations in lmm */
1704         if (fst_lmm != NULL) {
1705                 saved_oi = &info->mti_oa.o_oi;
1706                 mdd_get_lmm_oi(fst_lmm, saved_oi);
1707                 mdd_set_lmm_gen(fst_lmm, &snd_gen);
1708                 mdd_set_lmm_oi(fst_lmm, &snd_lmm->lmm_oi);
1709                 mdd_set_lmm_oi(snd_lmm, saved_oi);
1710         } else {
1711                 if ((snd_lmm->lmm_magic & cpu_to_le32(LOV_MAGIC_MASK)) ==
1712                     cpu_to_le32(LOV_MAGIC_MAGIC))
1713                         snd_lmm->lmm_magic |= cpu_to_le32(LOV_MAGIC_DEFINED);
1714                 else
1715                         GOTO(stop, rc = -EPROTO);
1716         }
1717         mdd_set_lmm_gen(snd_lmm, &fst_gen);
1718
1719         /* Prepare HSM attribute if it's required */
1720         if (flags & SWAP_LAYOUTS_MDS_HSM) {
1721                 const int buflen = sizeof(struct hsm_attrs);
1722
1723                 lu_buf_alloc(fst_hsm_buf, buflen);
1724                 lu_buf_alloc(snd_hsm_buf, buflen);
1725                 if (fst_hsm_buf->lb_buf == NULL || snd_hsm_buf->lb_buf == NULL)
1726                         GOTO(stop, rc = -ENOMEM);
1727
1728                 /* Read HSM attribute */
1729                 rc = mdo_xattr_get(env, fst_o, fst_hsm_buf, XATTR_NAME_HSM);
1730                 if (rc < 0)
1731                         GOTO(stop, rc);
1732
1733                 rc = mdo_xattr_get(env, snd_o, snd_hsm_buf, XATTR_NAME_HSM);
1734                 if (rc < 0)
1735                         GOTO(stop, rc);
1736
1737                 rc = mdd_declare_xattr_set(env, mdd, fst_o, snd_hsm_buf,
1738                                            XATTR_NAME_HSM, LU_XATTR_REPLACE,
1739                                            handle);
1740                 if (rc < 0)
1741                         GOTO(stop, rc);
1742
1743                 rc = mdd_declare_xattr_set(env, mdd, snd_o, fst_hsm_buf,
1744                                            XATTR_NAME_HSM, LU_XATTR_REPLACE,
1745                                            handle);
1746                 if (rc < 0)
1747                         GOTO(stop, rc);
1748         }
1749
1750         /* prepare transaction */
1751         rc = mdd_declare_xattr_set(env, mdd, fst_o, snd_buf, XATTR_NAME_LOV,
1752                                    fst_fl, handle);
1753         if (rc != 0)
1754                 GOTO(stop, rc);
1755
1756         if (fst_buf->lb_buf != NULL)
1757                 rc = mdd_declare_xattr_set(env, mdd, snd_o, fst_buf,
1758                                            XATTR_NAME_LOV, LU_XATTR_REPLACE,
1759                                            handle);
1760         else
1761                 rc = mdd_declare_xattr_del(env, mdd, snd_o, XATTR_NAME_LOV,
1762                                            handle);
1763         if (rc != 0)
1764                 GOTO(stop, rc);
1765
1766         rc = mdd_trans_start(env, mdd, handle);
1767         if (rc != 0)
1768                 GOTO(stop, rc);
1769
1770         if (flags & SWAP_LAYOUTS_MDS_HSM) {
1771                 rc = mdd_xattr_hsm_replace(env, fst_o, snd_hsm_buf, handle);
1772                 if (rc < 0)
1773                         GOTO(stop, rc);
1774
1775                 rc = mdd_xattr_hsm_replace(env, snd_o, fst_hsm_buf, handle);
1776                 if (rc < 0) {
1777                         rc2 = mdd_xattr_hsm_replace(env, fst_o, fst_hsm_buf,
1778                                                     handle);
1779                         if (rc2 < 0)
1780                                 CERROR("%s: restore "DFID" HSM error: %d/%d\n",
1781                                        mdd_obj_dev_name(fst_o),
1782                                        PFID(mdo2fid(fst_o)), rc, rc2);
1783                         GOTO(stop, rc);
1784                 }
1785         }
1786
1787         rc = mdo_xattr_set(env, fst_o, snd_buf, XATTR_NAME_LOV, fst_fl, handle);
1788         if (rc != 0)
1789                 GOTO(stop, rc);
1790
1791         if (unlikely(OBD_FAIL_CHECK(OBD_FAIL_MDS_HSM_SWAP_LAYOUTS))) {
1792                 rc = -EOPNOTSUPP;
1793         } else {
1794                 if (fst_buf->lb_buf != NULL)
1795                         rc = mdo_xattr_set(env, snd_o, fst_buf, XATTR_NAME_LOV,
1796                                            LU_XATTR_REPLACE, handle);
1797                 else
1798                         rc = mdo_xattr_del(env, snd_o, XATTR_NAME_LOV, handle);
1799         }
1800
1801         if (rc != 0) {
1802                 int steps = 0;
1803
1804                 /* failure on second file, but first was done, so we have
1805                  * to roll back first. */
1806                 if (fst_buf->lb_buf != NULL) {
1807                         mdd_set_lmm_oi(fst_lmm, saved_oi);
1808                         mdd_set_lmm_gen(fst_lmm, &saved_gen);
1809                         rc2 = mdo_xattr_set(env, fst_o, fst_buf, XATTR_NAME_LOV,
1810                                             LU_XATTR_REPLACE, handle);
1811                 } else {
1812                         rc2 = mdo_xattr_del(env, fst_o, XATTR_NAME_LOV, handle);
1813                 }
1814                 if (rc2 < 0)
1815                         goto do_lbug;
1816
1817                 ++steps;
1818                 rc2 = mdd_xattr_hsm_replace(env, fst_o, fst_hsm_buf, handle);
1819                 if (rc2 < 0)
1820                         goto do_lbug;
1821
1822                 ++steps;
1823                 rc2 = mdd_xattr_hsm_replace(env, snd_o, snd_hsm_buf, handle);
1824
1825         do_lbug:
1826                 if (rc2 < 0) {
1827                         /* very bad day */
1828                         CERROR("%s: unable to roll back layout swap. FIDs: "
1829                                DFID" and "DFID "error: %d/%d, steps: %d\n",
1830                                mdd_obj_dev_name(fst_o),
1831                                PFID(mdo2fid(snd_o)), PFID(mdo2fid(fst_o)),
1832                                rc, rc2, steps);
1833                         /* a solution to avoid journal commit is to panic,
1834                          * but it has strong consequences so we use LBUG to
1835                          * allow sysdamin to choose to panic or not
1836                          */
1837                         LBUG();
1838                 }
1839                 GOTO(stop, rc);
1840         }
1841
1842         /* Issue one changelog record per file */
1843         rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, fst_o, handle);
1844         if (rc)
1845                 GOTO(stop, rc);
1846
1847         rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, snd_o, handle);
1848         if (rc)
1849                 GOTO(stop, rc);
1850         EXIT;
1851
1852 stop:
1853         rc = mdd_trans_stop(env, mdd, rc, handle);
1854
1855         mdd_write_unlock(env, snd_o);
1856         mdd_write_unlock(env, fst_o);
1857
1858         lu_buf_free(fst_buf);
1859         lu_buf_free(snd_buf);
1860         lu_buf_free(fst_hsm_buf);
1861         lu_buf_free(snd_hsm_buf);
1862         return rc;
1863 }
1864
1865 static int mdd_declare_layout_change(const struct lu_env *env,
1866                                      struct mdd_device *mdd,
1867                                      struct mdd_object *obj,
1868                                      struct md_layout_change *mlc,
1869                                      struct thandle *handle)
1870 {
1871         int rc;
1872
1873         rc = mdo_declare_layout_change(env, obj, mlc, handle);
1874         if (rc)
1875                 return rc;
1876
1877         return mdd_declare_changelog_store(env, mdd, NULL, NULL, handle);
1878 }
1879
1880 /* For PFL, this is used to instantiate necessary component objects. */
1881 static int
1882 mdd_layout_instantiate_component(const struct lu_env *env,
1883                 struct mdd_object *obj, struct md_layout_change *mlc,
1884                 struct thandle *handle)
1885 {
1886         struct mdd_device *mdd = mdd_obj2mdd_dev(obj);
1887         int rc;
1888         ENTRY;
1889
1890         if (mlc->mlc_opc != MD_LAYOUT_WRITE)
1891                 RETURN(-ENOTSUPP);
1892
1893         rc = mdd_declare_layout_change(env, mdd, obj, mlc, handle);
1894         /**
1895          * It's possible that another layout write intent has already
1896          * instantiated our objects, so a -EALREADY returned, and we need to
1897          * do nothing.
1898          */
1899         if (rc)
1900                 RETURN(rc == -EALREADY ? 0 : rc);
1901
1902         rc = mdd_trans_start(env, mdd, handle);
1903         if (rc)
1904                 RETURN(rc);
1905
1906         mdd_write_lock(env, obj, MOR_TGT_CHILD);
1907         rc = mdo_layout_change(env, obj, mlc, handle);
1908         mdd_write_unlock(env, obj);
1909         if (rc)
1910                 RETURN(rc);
1911
1912         rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, obj, handle);
1913         RETURN(rc);
1914 }
1915
1916 /**
1917  * Change the FLR layout from RDONLY to WRITE_PENDING.
1918  *
1919  * It picks the primary mirror, and bumps the layout version, and set
1920  * layout version xattr to OST objects in a sync tx. In order to facilitate
1921  * the handling of phantom writers from evicted clients, the clients carry
1922  * layout version of the file with write RPC, so that the OSTs can verify
1923  * if the write RPCs are legitimate, meaning not from evicted clients.
1924  */
1925 static int
1926 mdd_layout_update_rdonly(const struct lu_env *env, struct mdd_object *obj,
1927                          struct md_layout_change *mlc, struct thandle *handle)
1928 {
1929         struct mdd_device *mdd = mdd_obj2mdd_dev(obj);
1930         int rc;
1931         ENTRY;
1932
1933         /* Verify acceptable operations */
1934         switch (mlc->mlc_opc) {
1935         case MD_LAYOUT_WRITE:
1936                 break;
1937         case MD_LAYOUT_RESYNC:
1938                 /* these are legal operations - this represents the case that
1939                  * a few mirrors were missed in the last resync.
1940                  * XXX: it will be supported later */
1941         case MD_LAYOUT_RESYNC_DONE:
1942         default:
1943                 RETURN(0);
1944         }
1945
1946         rc = mdd_declare_layout_change(env, mdd, obj, mlc, handle);
1947         if (rc)
1948                 GOTO(out, rc);
1949
1950         rc = mdd_declare_xattr_del(env, mdd, obj, XATTR_NAME_SOM, handle);
1951         if (rc)
1952                 GOTO(out, rc);
1953
1954         /* record a changelog for data mover to consume */
1955         rc = mdd_declare_changelog_store(env, mdd, NULL, NULL, handle);
1956         if (rc)
1957                 GOTO(out, rc);
1958
1959         rc = mdd_trans_start(env, mdd, handle);
1960         if (rc)
1961                 GOTO(out, rc);
1962
1963         /* it needs a sync tx to make FLR to work properly */
1964         handle->th_sync = 1;
1965
1966         mdd_write_lock(env, obj, MOR_TGT_CHILD);
1967         rc = mdo_layout_change(env, obj, mlc, handle);
1968         if (!rc) {
1969                 rc = mdo_xattr_del(env, obj, XATTR_NAME_SOM, handle);
1970                 if (rc == -ENODATA)
1971                         rc = 0;
1972         }
1973         mdd_write_unlock(env, obj);
1974         if (rc)
1975                 GOTO(out, rc);
1976
1977         rc = mdd_changelog_data_store(env, mdd, CL_FLRW, 0, obj, handle);
1978         if (rc)
1979                 GOTO(out, rc);
1980
1981         EXIT;
1982
1983 out:
1984         return rc;
1985 }
1986
1987 /**
1988  * Handle mirrored file state transition when it's in WRITE_PENDING.
1989  *
1990  * Only MD_LAYOUT_RESYNC, which represents start of resync, is allowed when
1991  * the file is in WRITE_PENDING state. If everything goes fine, the file's
1992  * layout version will be increased, and the file's state will be changed to
1993  * SYNC_PENDING.
1994  */
1995 static int
1996 mdd_layout_update_write_pending(const struct lu_env *env,
1997                 struct mdd_object *obj, struct md_layout_change *mlc,
1998                 struct thandle *handle)
1999 {
2000         struct mdd_device *mdd = mdd_obj2mdd_dev(obj);
2001         int rc;
2002         ENTRY;
2003
2004         switch (mlc->mlc_opc) {
2005         case MD_LAYOUT_RESYNC:
2006                 /* Upon receiving the resync request, it should
2007                  * instantiate all stale components right away to get ready
2008                  * for mirror copy. In order to avoid layout version change,
2009                  * client should avoid sending LAYOUT_WRITE request at the
2010                  * resync state. */
2011                 break;
2012         case MD_LAYOUT_WRITE:
2013                 /* legal race for concurrent write, the file state has been
2014                  * changed by another client. */
2015                 break;
2016         default:
2017                 RETURN(-EBUSY);
2018         }
2019
2020         rc = mdd_declare_layout_change(env, mdd, obj, mlc, handle);
2021         if (rc)
2022                 GOTO(out, rc);
2023
2024         rc = mdd_trans_start(env, mdd, handle);
2025         if (rc)
2026                 GOTO(out, rc);
2027
2028         /* it needs a sync tx to make FLR to work properly */
2029         handle->th_sync = 1;
2030
2031         mdd_write_lock(env, obj, MOR_TGT_CHILD);
2032         rc = mdo_layout_change(env, obj, mlc, handle);
2033         mdd_write_unlock(env, obj);
2034         if (rc)
2035                 GOTO(out, rc);
2036
2037         EXIT;
2038
2039 out:
2040         return rc;
2041 }
2042
2043 /**
2044  * Handle the requests when a FLR file's state is in SYNC_PENDING.
2045  *
2046  * Only concurrent write and sync complete requests are possible when the
2047  * file is in SYNC_PENDING. For the latter request, it will pass in the
2048  * mirrors that have been synchronized, then the stale bit will be cleared
2049  * to make the file's state turn into RDONLY.
2050  * For concurrent write reqeust, it just needs to change the file's state
2051  * to WRITE_PENDING in a sync tx. It doesn't have to change the layout
2052  * version because the version will be increased in the transition to
2053  * SYNC_PENDING later so that it can deny the write request from potential
2054  * evicted SYNC clients. */
2055 static int
2056 mdd_object_update_sync_pending(const struct lu_env *env, struct mdd_object *obj,
2057                 struct md_layout_change *mlc, struct thandle *handle)
2058 {
2059         struct mdd_device *mdd = mdd_obj2mdd_dev(obj);
2060         struct lu_buf *som_buf = &mdd_env_info(env)->mti_buf[1];
2061         int fl = 0;
2062         int rc;
2063         ENTRY;
2064
2065         /* operation validation */
2066         switch (mlc->mlc_opc) {
2067         case MD_LAYOUT_RESYNC_DONE:
2068                 /* resync complete. */
2069         case MD_LAYOUT_WRITE:
2070                 /* concurrent write. */
2071                 break;
2072         case MD_LAYOUT_RESYNC:
2073                 /* resync again, most likely the previous run failed.
2074                  * no-op if it's already in SYNC_PENDING state */
2075                 RETURN(0);
2076         default:
2077                 RETURN(-EBUSY);
2078         }
2079
2080         if (mlc->mlc_som.lsa_valid & LSOM_FL_VALID) {
2081                 rc = mdo_xattr_get(env, obj, &LU_BUF_NULL, XATTR_NAME_SOM);
2082                 if (rc && rc != -ENODATA)
2083                         RETURN(rc);
2084
2085                 fl = rc == -ENODATA ? LU_XATTR_CREATE : LU_XATTR_REPLACE;
2086                 som_buf->lb_buf = &mlc->mlc_som;
2087                 som_buf->lb_len = sizeof(mlc->mlc_som);
2088         }
2089
2090         rc = mdd_declare_layout_change(env, mdd, obj, mlc, handle);
2091         if (rc)
2092                 GOTO(out, rc);
2093
2094         /* record a changelog for the completion of resync */
2095         rc = mdd_declare_changelog_store(env, mdd, NULL, NULL, handle);
2096         if (rc)
2097                 GOTO(out, rc);
2098
2099         /* RESYNC_DONE has piggybacked size and blocks */
2100         if (fl) {
2101                 rc = mdd_declare_xattr_set(env, mdd, obj, som_buf,
2102                                            XATTR_NAME_SOM, fl, handle);
2103                 if (rc)
2104                         GOTO(out, rc);
2105         }
2106
2107         rc = mdd_trans_start(env, mdd, handle);
2108         if (rc)
2109                 GOTO(out, rc);
2110
2111         /* it needs a sync tx to make FLR to work properly */
2112         handle->th_sync = 1;
2113
2114         rc = mdo_layout_change(env, obj, mlc, handle);
2115         if (rc)
2116                 GOTO(out, rc);
2117
2118         if (fl) {
2119                 rc = mdo_xattr_set(env, obj, som_buf, XATTR_NAME_SOM,
2120                                    fl, handle);
2121                 if (rc)
2122                         GOTO(out, rc);
2123         }
2124
2125         rc = mdd_changelog_data_store(env, mdd, CL_RESYNC, 0, obj, handle);
2126         if (rc)
2127                 GOTO(out, rc);
2128         EXIT;
2129 out:
2130         return rc;
2131 }
2132
2133 /**
2134  * Layout change callback for object.
2135  *
2136  * This is only used by FLR for now. In the future, it can be exteneded to
2137  * handle all layout change.
2138  */
2139 static int
2140 mdd_layout_change(const struct lu_env *env, struct md_object *o,
2141                   struct md_layout_change *mlc)
2142 {
2143         struct mdd_object       *obj = md2mdd_obj(o);
2144         struct mdd_device       *mdd = mdd_obj2mdd_dev(obj);
2145         struct lu_buf           *buf = mdd_buf_get(env, NULL, 0);
2146         struct lov_comp_md_v1   *lcm;
2147         struct thandle          *handle;
2148         int flr_state;
2149         int rc;
2150         ENTRY;
2151
2152         /* Verify acceptable operations */
2153         switch (mlc->mlc_opc) {
2154         case MD_LAYOUT_WRITE:
2155         case MD_LAYOUT_RESYNC:
2156         case MD_LAYOUT_RESYNC_DONE:
2157                 break;
2158         default:
2159                 RETURN(-ENOTSUPP);
2160         }
2161
2162         handle = mdd_trans_create(env, mdd);
2163         if (IS_ERR(handle))
2164                 RETURN(PTR_ERR(handle));
2165
2166         rc = mdd_get_lov_ea(env, obj, buf);
2167         if (rc < 0) {
2168                 if (rc == -ENODATA)
2169                         rc = -EINVAL;
2170                 GOTO(out, rc);
2171         }
2172
2173         /* analyze the layout to make sure it's a FLR file */
2174         lcm = buf->lb_buf;
2175         if (le32_to_cpu(lcm->lcm_magic) != LOV_MAGIC_COMP_V1)
2176                 GOTO(out, rc = -EINVAL);
2177
2178         flr_state = le16_to_cpu(lcm->lcm_flags) & LCM_FL_FLR_MASK;
2179
2180         /* please refer to HLD of FLR for state transition */
2181         switch (flr_state) {
2182         case LCM_FL_NOT_FLR:
2183                 rc = mdd_layout_instantiate_component(env, obj, mlc, handle);
2184                 break;
2185         case LCM_FL_WRITE_PENDING:
2186                 rc = mdd_layout_update_write_pending(env, obj, mlc, handle);
2187                 break;
2188         case LCM_FL_RDONLY:
2189                 rc = mdd_layout_update_rdonly(env, obj, mlc, handle);
2190                 break;
2191         case LCM_FL_SYNC_PENDING:
2192                 rc = mdd_object_update_sync_pending(env, obj, mlc, handle);
2193                 break;
2194         default:
2195                 rc = 0;
2196                 break;
2197         }
2198         EXIT;
2199
2200 out:
2201         mdd_trans_stop(env, mdd, rc, handle);
2202         lu_buf_free(buf);
2203         return rc;
2204 }
2205
2206 void mdd_object_make_hint(const struct lu_env *env, struct mdd_object *parent,
2207                           struct mdd_object *child, const struct lu_attr *attr,
2208                           const struct md_op_spec *spec,
2209                           struct dt_allocation_hint *hint)
2210 {
2211         struct dt_object *np = parent ?  mdd_object_child(parent) : NULL;
2212         struct dt_object *nc = mdd_object_child(child);
2213
2214         memset(hint, 0, sizeof(*hint));
2215
2216         /* For striped directory, give striping EA to lod_ah_init, which will
2217          * decide the stripe_offset and stripe count by it. */
2218         if (S_ISDIR(attr->la_mode) &&
2219             unlikely(spec != NULL && spec->sp_cr_flags & MDS_OPEN_HAS_EA)) {
2220                 hint->dah_eadata = spec->u.sp_ea.eadata;
2221                 hint->dah_eadata_len = spec->u.sp_ea.eadatalen;
2222         } else {
2223                 hint->dah_eadata = NULL;
2224                 hint->dah_eadata_len = 0;
2225         }
2226
2227         CDEBUG(D_INFO, DFID" eadata %p len %d\n", PFID(mdd_object_fid(child)),
2228                hint->dah_eadata, hint->dah_eadata_len);
2229         /* @hint will be initialized by underlying device. */
2230         nc->do_ops->do_ah_init(env, hint, np, nc, attr->la_mode & S_IFMT);
2231 }
2232
2233 /*
2234  * do NOT or the MAY_*'s, you'll get the weakest
2235  */
2236 int accmode(const struct lu_env *env, const struct lu_attr *la, int flags)
2237 {
2238         int res = 0;
2239
2240         /* Sadly, NFSD reopens a file repeatedly during operation, so the
2241          * "acc_mode = 0" allowance for newly-created files isn't honoured.
2242          * NFSD uses the MDS_OPEN_OWNEROVERRIDE flag to say that a file
2243          * owner can write to a file even if it is marked readonly to hide
2244          * its brokenness. (bug 5781) */
2245         if (flags & MDS_OPEN_OWNEROVERRIDE) {
2246                 struct lu_ucred *uc = lu_ucred_check(env);
2247
2248                 if ((uc == NULL) || (la->la_uid == uc->uc_fsuid))
2249                         return 0;
2250         }
2251
2252         if (flags & FMODE_READ)
2253                 res |= MAY_READ;
2254         if (flags & (FMODE_WRITE | MDS_OPEN_TRUNC | MDS_OPEN_APPEND))
2255                 res |= MAY_WRITE;
2256         if (flags & MDS_FMODE_EXEC)
2257                 res = MAY_EXEC;
2258         return res;
2259 }
2260
2261 static int mdd_open_sanity_check(const struct lu_env *env,
2262                                 struct mdd_object *obj,
2263                                 const struct lu_attr *attr, int flag)
2264 {
2265         int mode, rc;
2266         ENTRY;
2267
2268         /* EEXIST check */
2269         if (mdd_is_dead_obj(obj))
2270                 RETURN(-ENOENT);
2271
2272         if (S_ISLNK(attr->la_mode))
2273                 RETURN(-ELOOP);
2274
2275         mode = accmode(env, attr, flag);
2276
2277         if (S_ISDIR(attr->la_mode) && (mode & MAY_WRITE))
2278                 RETURN(-EISDIR);
2279
2280         if (!(flag & MDS_OPEN_CREATED)) {
2281                 rc = mdd_permission_internal(env, obj, attr, mode);
2282                 if (rc)
2283                         RETURN(rc);
2284         }
2285
2286         if (S_ISFIFO(attr->la_mode) || S_ISSOCK(attr->la_mode) ||
2287             S_ISBLK(attr->la_mode) || S_ISCHR(attr->la_mode))
2288                 flag &= ~MDS_OPEN_TRUNC;
2289
2290         /* For writing append-only file must open it with append mode. */
2291         if (attr->la_flags & LUSTRE_APPEND_FL) {
2292                 if ((flag & FMODE_WRITE) && !(flag & MDS_OPEN_APPEND))
2293                         RETURN(-EPERM);
2294                 if (flag & MDS_OPEN_TRUNC)
2295                         RETURN(-EPERM);
2296         }
2297
2298         RETURN(0);
2299 }
2300
2301 static int mdd_open(const struct lu_env *env, struct md_object *obj,
2302                     int flags)
2303 {
2304         struct mdd_object *mdd_obj = md2mdd_obj(obj);
2305         struct lu_attr *attr = MDD_ENV_VAR(env, cattr);
2306         int rc = 0;
2307
2308         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
2309
2310         rc = mdd_la_get(env, mdd_obj, attr);
2311         if (rc != 0)
2312                 GOTO(out, rc);
2313
2314         rc = mdd_open_sanity_check(env, mdd_obj, attr, flags);
2315         if (rc != 0)
2316                 GOTO(out, rc);
2317
2318         mdd_obj->mod_count++;
2319         EXIT;
2320 out:
2321         mdd_write_unlock(env, mdd_obj);
2322         return rc;
2323 }
2324
2325 static int mdd_declare_close(const struct lu_env *env,
2326                              struct mdd_object *obj,
2327                              struct md_attr *ma,
2328                              struct thandle *handle)
2329 {
2330         int rc;
2331
2332         rc = orph_declare_index_delete(env, obj, handle);
2333         if (rc)
2334                 return rc;
2335
2336         return mdo_declare_destroy(env, obj, handle);
2337 }
2338
2339 /*
2340  * No permission check is needed.
2341  */
2342 static int mdd_close(const struct lu_env *env, struct md_object *obj,
2343                      struct md_attr *ma, int mode)
2344 {
2345         struct mdd_object *mdd_obj = md2mdd_obj(obj);
2346         struct mdd_device *mdd = mdo2mdd(obj);
2347         struct thandle *handle = NULL;
2348         int is_orphan = 0;
2349         int rc;
2350         bool blocked = false;
2351         ENTRY;
2352
2353         if (ma->ma_valid & MA_FLAGS && ma->ma_attr_flags & MDS_KEEP_ORPHAN) {
2354                 mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
2355                 mdd_obj->mod_count--;
2356                 mdd_write_unlock(env, mdd_obj);
2357
2358                 if (mdd_obj->mod_flags & ORPHAN_OBJ && !mdd_obj->mod_count)
2359                         CDEBUG(D_HA, "Object "DFID" is retained in orphan "
2360                                 "list\n", PFID(mdd_object_fid(mdd_obj)));
2361                 RETURN(0);
2362         }
2363
2364         /* mdd_finish_unlink() will always set orphan object as DEAD_OBJ, but
2365          * it might fail to add the object to orphan list (w/o ORPHAN_OBJ). */
2366         /* check without any lock */
2367         is_orphan = mdd_obj->mod_count == 1 &&
2368                     (mdd_obj->mod_flags & (ORPHAN_OBJ | DEAD_OBJ)) != 0;
2369
2370 again:
2371         if (is_orphan) {
2372                 /* mdd_trans_create() maybe failed because of barrier_entry(),
2373                  * under such case, the orphan MDT-object will be left in the
2374                  * orphan list, and when the MDT remount next time, the unused
2375                  * orphans will be destroyed automatically.
2376                  *
2377                  * One exception: the former mdd_finish_unlink may failed to
2378                  * add the orphan MDT-object to the orphan list, then if the
2379                  * mdd_trans_create() failed because of barrier_entry(), the
2380                  * MDT-object will become real orphan that is neither in the
2381                  * namespace nor in the orphan list. Such bad case should be
2382                  * very rare and will be handled by e2fsck/lfsck. */
2383                 handle = mdd_trans_create(env, mdo2mdd(obj));
2384                 if (IS_ERR(handle)) {
2385                         rc = PTR_ERR(handle);
2386                         if (rc != -EINPROGRESS)
2387                                 GOTO(stop, rc);
2388
2389                         handle = NULL;
2390                         blocked = true;
2391                         goto cont;
2392                 }
2393
2394                 rc = mdd_declare_close(env, mdd_obj, ma, handle);
2395                 if (rc)
2396                         GOTO(stop, rc);
2397
2398                 rc = mdd_declare_changelog_store(env, mdd, NULL, NULL, handle);
2399                 if (rc)
2400                         GOTO(stop, rc);
2401
2402                 rc = mdd_trans_start(env, mdo2mdd(obj), handle);
2403                 if (rc)
2404                         GOTO(stop, rc);
2405         }
2406
2407 cont:
2408         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
2409         rc = mdd_la_get(env, mdd_obj, &ma->ma_attr);
2410         if (rc != 0) {
2411                 CERROR("Failed to get lu_attr of "DFID": %d\n",
2412                        PFID(mdd_object_fid(mdd_obj)), rc);
2413                 GOTO(out, rc);
2414         }
2415
2416         /* check again with lock */
2417         is_orphan = (mdd_obj->mod_count == 1) &&
2418                     ((mdd_obj->mod_flags & (ORPHAN_OBJ | DEAD_OBJ)) != 0 ||
2419                      ma->ma_attr.la_nlink == 0);
2420
2421         if (is_orphan && !handle && !blocked) {
2422                 mdd_write_unlock(env, mdd_obj);
2423                 goto again;
2424         }
2425
2426         mdd_obj->mod_count--; /*release open count */
2427
2428         if (!is_orphan || blocked)
2429                 GOTO(out, rc = 0);
2430
2431         /* Orphan object */
2432         /* NB: Object maybe not in orphan list originally, it is rare case for
2433          * mdd_finish_unlink() failure, in that case, the object doesn't have
2434          * ORPHAN_OBJ flag */
2435         if ((mdd_obj->mod_flags & ORPHAN_OBJ) != 0) {
2436                 /* remove link to object from orphan index */
2437                 LASSERT(handle != NULL);
2438                 rc = __mdd_orphan_del(env, mdd_obj, handle);
2439                 if (rc != 0) {
2440                         CERROR("%s: unable to delete "DFID" from orphan list: "
2441                                "rc = %d\n", lu_dev_name(mdd2lu_dev(mdd)),
2442                                PFID(mdd_object_fid(mdd_obj)), rc);
2443                         /* If object was not deleted from orphan list, do not
2444                          * destroy OSS objects, which will be done when next
2445                          * recovery. */
2446                         GOTO(out, rc);
2447                 }
2448
2449                 CDEBUG(D_HA, "Object "DFID" is deleted from orphan "
2450                        "list, OSS objects to be destroyed.\n",
2451                        PFID(mdd_object_fid(mdd_obj)));
2452         }
2453
2454         rc = mdo_destroy(env, mdd_obj, handle);
2455
2456         if (rc != 0) {
2457                 CERROR("%s: unable to delete "DFID" from orphan list: "
2458                        "rc = %d\n", lu_dev_name(mdd2lu_dev(mdd)),
2459                        PFID(mdd_object_fid(mdd_obj)), rc);
2460         }
2461         EXIT;
2462
2463 out:
2464         mdd_write_unlock(env, mdd_obj);
2465
2466         if (!rc && !blocked &&
2467             (mode & (FMODE_WRITE | MDS_OPEN_APPEND | MDS_OPEN_TRUNC)) &&
2468             !(ma->ma_valid & MA_FLAGS && ma->ma_attr_flags & MDS_RECOV_OPEN)) {
2469                 if (handle == NULL) {
2470                         handle = mdd_trans_create(env, mdo2mdd(obj));
2471                         if (IS_ERR(handle))
2472                                 GOTO(stop, rc = PTR_ERR(handle));
2473
2474                         rc = mdd_declare_changelog_store(env, mdd, NULL, NULL,
2475                                                          handle);
2476                         if (rc)
2477                                 GOTO(stop, rc);
2478
2479                         rc = mdd_trans_start(env, mdo2mdd(obj), handle);
2480                         if (rc)
2481                                 GOTO(stop, rc);
2482                 }
2483
2484                 mdd_changelog_data_store(env, mdd, CL_CLOSE, mode,
2485                                          mdd_obj, handle);
2486         }
2487
2488 stop:
2489         if (handle != NULL && !IS_ERR(handle))
2490                 rc = mdd_trans_stop(env, mdd, rc, handle);
2491
2492         return rc;
2493 }
2494
2495 /*
2496  * Permission check is done when open,
2497  * no need check again.
2498  */
2499 static int mdd_readpage_sanity_check(const struct lu_env *env,
2500                                      struct mdd_object *obj)
2501 {
2502         struct dt_object *next = mdd_object_child(obj);
2503         int rc;
2504         ENTRY;
2505
2506         if (S_ISDIR(mdd_object_type(obj)) && dt_try_as_dir(env, next))
2507                 rc = 0;
2508         else
2509                 rc = -ENOTDIR;
2510
2511         RETURN(rc);
2512 }
2513
2514 static int mdd_dir_page_build(const struct lu_env *env, union lu_page *lp,
2515                               size_t nob, const struct dt_it_ops *iops,
2516                               struct dt_it *it, __u32 attr, void *arg)
2517 {
2518         struct lu_dirpage       *dp = &lp->lp_dir;
2519         void                    *area = dp;
2520         int                      result;
2521         __u64                    hash = 0;
2522         struct lu_dirent        *ent;
2523         struct lu_dirent        *last = NULL;
2524         struct lu_fid            fid;
2525         int                      first = 1;
2526
2527         if (nob < sizeof(*dp))
2528                 return -EINVAL;
2529
2530         memset(area, 0, sizeof (*dp));
2531         area += sizeof (*dp);
2532         nob  -= sizeof (*dp);
2533
2534         ent  = area;
2535         do {
2536                 int    len;
2537                 size_t recsize;
2538
2539                 len = iops->key_size(env, it);
2540
2541                 /* IAM iterator can return record with zero len. */
2542                 if (len == 0)
2543                         goto next;
2544
2545                 hash = iops->store(env, it);
2546                 if (unlikely(first)) {
2547                         first = 0;
2548                         dp->ldp_hash_start = cpu_to_le64(hash);
2549                 }
2550
2551                 /* calculate max space required for lu_dirent */
2552                 recsize = lu_dirent_calc_size(len, attr);
2553
2554                 if (nob >= recsize) {
2555                         result = iops->rec(env, it, (struct dt_rec *)ent, attr);
2556                         if (result == -ESTALE)
2557                                 goto next;
2558                         if (result != 0)
2559                                 goto out;
2560
2561                         /* osd might not able to pack all attributes,
2562                          * so recheck rec length */
2563                         recsize = le16_to_cpu(ent->lde_reclen);
2564
2565                         if (le32_to_cpu(ent->lde_attrs) & LUDA_FID) {
2566                                 fid_le_to_cpu(&fid, &ent->lde_fid);
2567                                 if (fid_is_dot_lustre(&fid))
2568                                         goto next;
2569                         }
2570                 } else {
2571                         result = (last != NULL) ? 0 :-EINVAL;
2572                         goto out;
2573                 }
2574                 last = ent;
2575                 ent = (void *)ent + recsize;
2576                 nob -= recsize;
2577
2578 next:
2579                 result = iops->next(env, it);
2580                 if (result == -ESTALE)
2581                         goto next;
2582         } while (result == 0);
2583
2584 out:
2585         dp->ldp_hash_end = cpu_to_le64(hash);
2586         if (last != NULL) {
2587                 if (last->lde_hash == dp->ldp_hash_end)
2588                         dp->ldp_flags |= cpu_to_le32(LDF_COLLIDE);
2589                 last->lde_reclen = 0; /* end mark */
2590         }
2591         if (result > 0)
2592                 /* end of directory */
2593                 dp->ldp_hash_end = cpu_to_le64(MDS_DIR_END_OFF);
2594         else if (result < 0)
2595                 CWARN("build page failed: %d!\n", result);
2596         return result;
2597 }
2598
2599 int mdd_readpage(const struct lu_env *env, struct md_object *obj,
2600                  const struct lu_rdpg *rdpg)
2601 {
2602         struct mdd_object *mdd_obj = md2mdd_obj(obj);
2603         int rc;
2604         ENTRY;
2605
2606         if (mdd_object_exists(mdd_obj) == 0) {
2607                 CERROR("%s: object "DFID" not found: rc = -2\n",
2608                        mdd_obj_dev_name(mdd_obj),PFID(mdd_object_fid(mdd_obj)));
2609                 return -ENOENT;
2610         }
2611
2612         mdd_read_lock(env, mdd_obj, MOR_TGT_CHILD);
2613         rc = mdd_readpage_sanity_check(env, mdd_obj);
2614         if (rc)
2615                 GOTO(out_unlock, rc);
2616
2617         if (mdd_is_dead_obj(mdd_obj)) {
2618                 struct page *pg;
2619                 struct lu_dirpage *dp;
2620
2621                 /*
2622                  * According to POSIX, please do not return any entry to client:
2623                  * even dot and dotdot should not be returned.
2624                  */
2625                 CDEBUG(D_INODE, "readdir from dead object: "DFID"\n",
2626                        PFID(mdd_object_fid(mdd_obj)));
2627
2628                 if (rdpg->rp_count <= 0)
2629                         GOTO(out_unlock, rc = -EFAULT);
2630                 LASSERT(rdpg->rp_pages != NULL);
2631
2632                 pg = rdpg->rp_pages[0];
2633                 dp = (struct lu_dirpage *)kmap(pg);
2634                 memset(dp, 0 , sizeof(struct lu_dirpage));
2635                 dp->ldp_hash_start = cpu_to_le64(rdpg->rp_hash);
2636                 dp->ldp_hash_end   = cpu_to_le64(MDS_DIR_END_OFF);
2637                 dp->ldp_flags = cpu_to_le32(LDF_EMPTY);
2638                 kunmap(pg);
2639                 GOTO(out_unlock, rc = LU_PAGE_SIZE);
2640         }
2641
2642         rc = dt_index_walk(env, mdd_object_child(mdd_obj), rdpg,
2643                            mdd_dir_page_build, NULL);
2644         if (rc >= 0) {
2645                 struct lu_dirpage       *dp;
2646
2647                 dp = kmap(rdpg->rp_pages[0]);
2648                 dp->ldp_hash_start = cpu_to_le64(rdpg->rp_hash);
2649                 if (rc == 0) {
2650                         /*
2651                          * No pages were processed, mark this for first page
2652                          * and send back.
2653                          */
2654                         dp->ldp_hash_end = cpu_to_le64(MDS_DIR_END_OFF);
2655                         dp->ldp_flags = cpu_to_le32(LDF_EMPTY);
2656                         rc = min_t(unsigned int, LU_PAGE_SIZE, rdpg->rp_count);
2657                 }
2658                 kunmap(rdpg->rp_pages[0]);
2659         }
2660
2661         GOTO(out_unlock, rc);
2662 out_unlock:
2663         mdd_read_unlock(env, mdd_obj);
2664         return rc;
2665 }
2666
2667 static int mdd_object_sync(const struct lu_env *env, struct md_object *obj)
2668 {
2669         struct mdd_object *mdd_obj = md2mdd_obj(obj);
2670
2671         if (mdd_object_exists(mdd_obj) == 0) {
2672                 int rc = -ENOENT;
2673
2674                 CERROR("%s: object "DFID" not found: rc = %d\n",
2675                        mdd_obj_dev_name(mdd_obj),
2676                        PFID(mdd_object_fid(mdd_obj)), rc);
2677                 return rc;
2678         }
2679         return dt_object_sync(env, mdd_object_child(mdd_obj),
2680                               0, OBD_OBJECT_EOF);
2681 }
2682
2683 static int mdd_object_lock(const struct lu_env *env,
2684                            struct md_object *obj,
2685                            struct lustre_handle *lh,
2686                            struct ldlm_enqueue_info *einfo,
2687                            union ldlm_policy_data *policy)
2688 {
2689         struct mdd_object *mdd_obj = md2mdd_obj(obj);
2690         return dt_object_lock(env, mdd_object_child(mdd_obj), lh,
2691                               einfo, policy);
2692 }
2693
2694 static int mdd_object_unlock(const struct lu_env *env,
2695                              struct md_object *obj,
2696                              struct ldlm_enqueue_info *einfo,
2697                              union ldlm_policy_data *policy)
2698 {
2699         struct mdd_object *mdd_obj = md2mdd_obj(obj);
2700         return dt_object_unlock(env, mdd_object_child(mdd_obj), einfo, policy);
2701 }
2702
2703 const struct md_object_operations mdd_obj_ops = {
2704         .moo_permission         = mdd_permission,
2705         .moo_attr_get           = mdd_attr_get,
2706         .moo_attr_set           = mdd_attr_set,
2707         .moo_xattr_get          = mdd_xattr_get,
2708         .moo_xattr_set          = mdd_xattr_set,
2709         .moo_xattr_list         = mdd_xattr_list,
2710         .moo_invalidate         = mdd_invalidate,
2711         .moo_xattr_del          = mdd_xattr_del,
2712         .moo_swap_layouts       = mdd_swap_layouts,
2713         .moo_open               = mdd_open,
2714         .moo_close              = mdd_close,
2715         .moo_readpage           = mdd_readpage,
2716         .moo_readlink           = mdd_readlink,
2717         .moo_changelog          = mdd_changelog,
2718         .moo_object_sync        = mdd_object_sync,
2719         .moo_object_lock        = mdd_object_lock,
2720         .moo_object_unlock      = mdd_object_unlock,
2721         .moo_layout_change      = mdd_layout_change,
2722 };