Whamcloud - gitweb
LU-11871 doc: man page for lctl nodemap_set_fileset
[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, 2017, 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 struct mdd_object_user {
57         struct list_head        mou_list;       /**< linked off mod_users */
58         u64                     mou_open_flags; /**< open mode by client */
59         __u64                   mou_uidgid;     /**< uid_gid on client */
60         int                     mou_opencount;  /**< # opened */
61         ktime_t                 mou_deniednext; /**< time of next access denied
62                                                  * notfication
63                                                  */
64 };
65
66 static int mdd_xattr_get(const struct lu_env *env,
67                          struct md_object *obj, struct lu_buf *buf,
68                          const char *name);
69
70 static int mdd_changelog_data_store_by_fid(const struct lu_env *env,
71                                            struct mdd_device *mdd,
72                                            enum changelog_rec_type type,
73                                            enum changelog_rec_flags clf_flags,
74                                            const struct lu_fid *fid,
75                                            const char *xattr_name,
76                                            struct thandle *handle);
77
78 static inline bool has_prefix(const char *str, const char *prefix);
79
80
81 static u32 flags_helper(u64 open_flags)
82 {
83         u32 open_mode = 0;
84
85         if (open_flags & MDS_FMODE_EXEC) {
86                 open_mode = MDS_FMODE_EXEC;
87         } else {
88                 if (open_flags & MDS_FMODE_READ)
89                         open_mode = MDS_FMODE_READ;
90                 if (open_flags &
91                     (MDS_FMODE_WRITE | MDS_OPEN_TRUNC | MDS_OPEN_APPEND))
92                         open_mode |= MDS_FMODE_WRITE;
93         }
94
95         return open_mode;
96 }
97
98 /** Allocate/init a user and its sub-structures.
99  *
100  * \param flags [IN]
101  * \param uid [IN]
102  * \param gid [IN]
103  * \retval mou [OUT] success valid structure
104  * \retval mou [OUT]
105  */
106 static struct mdd_object_user *mdd_obj_user_alloc(u64 open_flags,
107                                                   uid_t uid, gid_t gid)
108 {
109         struct mdd_object_user *mou;
110
111         ENTRY;
112
113         OBD_SLAB_ALLOC_PTR(mou, mdd_object_kmem);
114         if (mou == NULL)
115                 RETURN(ERR_PTR(-ENOMEM));
116
117         mou->mou_open_flags = open_flags;
118         mou->mou_uidgid = ((__u64)uid << 32) | gid;
119         mou->mou_opencount = 0;
120         mou->mou_deniednext = ktime_set(0, 0);
121
122         RETURN(mou);
123 }
124
125 /**
126  * Free a user and its sub-structures.
127  *
128  * \param mou [IN]  user to be freed.
129  */
130 static void mdd_obj_user_free(struct mdd_object_user *mou)
131 {
132         OBD_SLAB_FREE_PTR(mou, mdd_object_kmem);
133 }
134
135 /**
136  * Find if UID/GID already has this file open
137  *
138  * Caller should have write-locked \param mdd_obj.
139  * \param mdd_obj [IN] mdd_obj
140  * \param uid [IN] client uid
141  * \param gid [IN] client gid
142  * \retval user pointer or NULL if not found
143  */
144 static
145 struct mdd_object_user *mdd_obj_user_find(struct mdd_object *mdd_obj,
146                                           uid_t uid, gid_t gid,
147                                           u64 open_flags)
148 {
149         struct mdd_object_user *mou;
150         __u64 uidgid;
151
152         ENTRY;
153
154         uidgid = ((__u64)uid << 32) | gid;
155         list_for_each_entry(mou, &mdd_obj->mod_users, mou_list) {
156                 if (mou->mou_uidgid == uidgid &&
157                     flags_helper(mou->mou_open_flags) ==
158                     flags_helper(open_flags))
159                         RETURN(mou);
160         }
161         RETURN(NULL);
162 }
163
164 /**
165  * Add a user to the list of openers for this file
166  *
167  * Caller should have write-locked \param mdd_obj.
168  * \param mdd_obj [IN] mdd_obj
169  * \param mou [IN] user
170  * \retval 0 success
171  * \retval -ve failure
172  */
173 static int mdd_obj_user_add(struct mdd_object *mdd_obj,
174                             struct mdd_object_user *mou,
175                             bool denied)
176 {
177         struct mdd_device *mdd = mdd_obj2mdd_dev(mdd_obj);
178         struct mdd_object_user *tmp;
179         __u32 uid = mou->mou_uidgid >> 32;
180         __u32 gid = mou->mou_uidgid & ((1UL << 32) - 1);
181
182         ENTRY;
183         tmp = mdd_obj_user_find(mdd_obj, uid, gid, mou->mou_open_flags);
184         if (tmp != NULL)
185                 RETURN(-EEXIST);
186
187         list_add_tail(&mou->mou_list, &mdd_obj->mod_users);
188
189         if (denied)
190                 /* next 'access denied' notification cannot happen before
191                  * mou_deniednext
192                  */
193                 mou->mou_deniednext =
194                         ktime_add(ktime_get(),
195                                   ktime_set(mdd->mdd_cl.mc_deniednext, 0));
196         else
197                 mou->mou_opencount++;
198
199         RETURN(0);
200 }
201 /**
202  * Remove UID from the list
203  *
204  * Caller should have write-locked \param mdd_obj.
205  * \param mdd_obj [IN] mdd_obj
206  * \param uid [IN] user
207  * \retval -ve failure
208  */
209 static int mdd_obj_user_remove(struct mdd_object *mdd_obj,
210                                struct mdd_object_user *mou)
211 {
212         ENTRY;
213
214         if (mou == NULL)
215                 RETURN(-ENOENT);
216
217         list_del_init(&mou->mou_list);
218
219         mdd_obj_user_free(mou);
220
221         RETURN(0);
222 }
223 int mdd_la_get(const struct lu_env *env, struct mdd_object *obj,
224                struct lu_attr *la)
225 {
226         int rc;
227
228         if (mdd_object_exists(obj) == 0)
229                 return -ENOENT;
230
231         rc = mdo_attr_get(env, obj, la);
232         if (unlikely(rc != 0)) {
233                 if (rc == -ENOENT)
234                         obj->mod_flags |= DEAD_OBJ;
235                 return rc;
236         }
237
238         if (la->la_valid & LA_FLAGS &&
239             la->la_flags & LUSTRE_ORPHAN_FL)
240                 obj->mod_flags |= ORPHAN_OBJ | DEAD_OBJ;
241
242         return 0;
243 }
244
245 struct mdd_thread_info *mdd_env_info(const struct lu_env *env)
246 {
247         struct mdd_thread_info *info;
248
249         lu_env_refill((struct lu_env *)env);
250         info = lu_context_key_get(&env->le_ctx, &mdd_thread_key);
251         LASSERT(info != NULL);
252         return info;
253 }
254
255 struct lu_buf *mdd_buf_get(const struct lu_env *env, void *area, ssize_t len)
256 {
257         struct lu_buf *buf;
258
259         buf = &mdd_env_info(env)->mti_buf[0];
260         buf->lb_buf = area;
261         buf->lb_len = len;
262         return buf;
263 }
264
265 const struct lu_buf *mdd_buf_get_const(const struct lu_env *env,
266                                        const void *area, ssize_t len)
267 {
268         struct lu_buf *buf;
269
270         buf = &mdd_env_info(env)->mti_buf[0];
271         buf->lb_buf = (void *)area;
272         buf->lb_len = len;
273         return buf;
274 }
275
276 struct lu_object *mdd_object_alloc(const struct lu_env *env,
277                                    const struct lu_object_header *hdr,
278                                    struct lu_device *d)
279 {
280         struct mdd_object *mdd_obj;
281         struct lu_object *o;
282
283         OBD_SLAB_ALLOC_PTR_GFP(mdd_obj, mdd_object_kmem, GFP_NOFS);
284         if (!mdd_obj)
285                 return NULL;
286
287         o = mdd2lu_obj(mdd_obj);
288         lu_object_init(o, NULL, d);
289         mdd_obj->mod_obj.mo_ops = &mdd_obj_ops;
290         mdd_obj->mod_obj.mo_dir_ops = &mdd_dir_ops;
291         mdd_obj->mod_count = 0;
292         o->lo_ops = &mdd_lu_obj_ops;
293         INIT_LIST_HEAD(&mdd_obj->mod_users);
294
295         return o;
296 }
297
298 static int mdd_object_init(const struct lu_env *env, struct lu_object *o,
299                            const struct lu_object_conf *unused)
300 {
301         struct mdd_device *d = lu2mdd_dev(o->lo_dev);
302         struct mdd_object *mdd_obj = lu2mdd_obj(o);
303         struct lu_object  *below;
304         struct lu_device  *under;
305         ENTRY;
306
307         mdd_obj->mod_cltime = ktime_set(0, 0);
308         under = &d->mdd_child->dd_lu_dev;
309         below = under->ld_ops->ldo_object_alloc(env, o->lo_header, under);
310         if (IS_ERR(below))
311                 RETURN(PTR_ERR(below));
312
313         lu_object_add(o, below);
314
315         RETURN(0);
316 }
317
318 static int mdd_object_start(const struct lu_env *env, struct lu_object *o)
319 {
320         int rc = 0;
321
322         if (lu_object_exists(o)) {
323                 struct mdd_object *mdd_obj = lu2mdd_obj(o);
324                 struct lu_attr *attr = MDD_ENV_VAR(env, la_for_start);
325
326                 rc = mdd_la_get(env, mdd_obj, attr);
327         }
328
329         return rc;
330 }
331
332 static void mdd_object_free(const struct lu_env *env, struct lu_object *o)
333 {
334         struct mdd_object *mdd = lu2mdd_obj(o);
335         struct mdd_object_user *mou, *tmp2;
336
337         /* free user list */
338         list_for_each_entry_safe(mou, tmp2, &mdd->mod_users, mou_list) {
339                 list_del(&mou->mou_list);
340                 mdd_obj_user_free(mou);
341         }
342
343         lu_object_fini(o);
344         OBD_SLAB_FREE_PTR(mdd, mdd_object_kmem);
345 }
346
347 static int mdd_object_print(const struct lu_env *env, void *cookie,
348                             lu_printer_t p, const struct lu_object *o)
349 {
350         struct mdd_object *mdd = lu2mdd_obj((struct lu_object *)o);
351
352         return (*p)(env, cookie,
353                     LUSTRE_MDD_NAME"-object@%p(open_count=%d, valid=%x, cltime=%lldns, flags=%lx)",
354                     mdd, mdd->mod_count, mdd->mod_valid,
355                     ktime_to_ns(mdd->mod_cltime), mdd->mod_flags);
356 }
357
358 static const struct lu_object_operations mdd_lu_obj_ops = {
359         .loo_object_init    = mdd_object_init,
360         .loo_object_start   = mdd_object_start,
361         .loo_object_free    = mdd_object_free,
362         .loo_object_print   = mdd_object_print,
363 };
364
365 struct mdd_object *mdd_object_find(const struct lu_env *env,
366                                    struct mdd_device *d,
367                                    const struct lu_fid *f)
368 {
369         return md2mdd_obj(md_object_find_slice(env, &d->mdd_md_dev, f));
370 }
371
372 /*
373  * No permission check is needed.
374  */
375 int mdd_attr_get(const struct lu_env *env, struct md_object *obj,
376                  struct md_attr *ma)
377 {
378         struct mdd_object *mdd_obj = md2mdd_obj(obj);
379         int               rc;
380
381         ENTRY;
382
383         rc = mdd_la_get(env, mdd_obj, &ma->ma_attr);
384         if ((ma->ma_need & MA_INODE) != 0 && mdd_is_dead_obj(mdd_obj))
385                 ma->ma_attr.la_nlink = 0;
386
387         RETURN(rc);
388 }
389
390 /*
391  * No permission check is needed.
392  */
393 static int mdd_xattr_get(const struct lu_env *env,
394                          struct md_object *obj, struct lu_buf *buf,
395                          const char *name)
396 {
397         struct mdd_object *mdd_obj = md2mdd_obj(obj);
398         struct mdd_device *mdd;
399         int rc;
400
401         ENTRY;
402
403         if (mdd_object_exists(mdd_obj) == 0) {
404                 CERROR("%s: object "DFID" not found: rc = -2\n",
405                        mdd_obj_dev_name(mdd_obj),
406                        PFID(mdd_object_fid(mdd_obj)));
407                 return -ENOENT;
408         }
409
410         /* If the object has been destroyed, then do not get LMVEA, because
411          * it needs to load stripes from the iteration of the master object,
412          * and it will cause problem if master object has been destroyed, see
413          * LU-6427 */
414         if (unlikely((mdd_obj->mod_flags & DEAD_OBJ) &&
415                      !(mdd_obj->mod_flags & ORPHAN_OBJ) &&
416                       strcmp(name, XATTR_NAME_LMV) == 0))
417                 RETURN(-ENOENT);
418
419         /* If the object has been delete from the namespace, then
420          * get linkEA should return -ENOENT as well */
421         if (unlikely((mdd_obj->mod_flags & (DEAD_OBJ | ORPHAN_OBJ)) &&
422                       strcmp(name, XATTR_NAME_LINK) == 0))
423                 RETURN(-ENOENT);
424
425         mdd_read_lock(env, mdd_obj, MOR_TGT_CHILD);
426         rc = mdo_xattr_get(env, mdd_obj, buf, name);
427         mdd_read_unlock(env, mdd_obj);
428
429         mdd = mdo2mdd(obj);
430
431         /* record only getting user xattrs and acls */
432         if (rc >= 0 &&
433             mdd_changelog_enabled(env, mdd, CL_GETXATTR) &&
434             (has_prefix(name, XATTR_USER_PREFIX) ||
435              has_prefix(name, XATTR_NAME_POSIX_ACL_ACCESS) ||
436              has_prefix(name, XATTR_NAME_POSIX_ACL_DEFAULT))) {
437                 struct thandle *handle;
438                 int rc2;
439
440                 LASSERT(mdo2fid(mdd_obj) != NULL);
441
442                 handle = mdd_trans_create(env, mdd);
443                 if (IS_ERR(handle))
444                         RETURN(PTR_ERR(handle));
445
446                 rc2 = mdd_declare_changelog_store(env, mdd, CL_GETXATTR, NULL,
447                                                   NULL, handle);
448                 if (rc2)
449                         GOTO(stop, rc2);
450
451                 rc2 = mdd_trans_start(env, mdd, handle);
452                 if (rc2)
453                         GOTO(stop, rc2);
454
455                 rc2 = mdd_changelog_data_store_by_fid(env, mdd, CL_GETXATTR, 0,
456                                                       mdo2fid(mdd_obj), name,
457                                                       handle);
458
459 stop:
460                 rc2 = mdd_trans_stop(env, mdd, rc2, handle);
461                 if (rc2)
462                         rc = rc2;
463         }
464
465         RETURN(rc);
466 }
467
468 /*
469  * Permission check is done when open,
470  * no need check again.
471  */
472 int mdd_readlink(const struct lu_env *env, struct md_object *obj,
473                  struct lu_buf *buf)
474 {
475         struct mdd_object *mdd_obj = md2mdd_obj(obj);
476         struct dt_object  *next;
477         loff_t             pos = 0;
478         int                rc;
479         ENTRY;
480
481         if (mdd_object_exists(mdd_obj) == 0) {
482                 CERROR("%s: object "DFID" not found: rc = -2\n",
483                        mdd_obj_dev_name(mdd_obj),PFID(mdd_object_fid(mdd_obj)));
484                 return -ENOENT;
485         }
486
487         next = mdd_object_child(mdd_obj);
488         LASSERT(next != NULL);
489         LASSERT(next->do_body_ops != NULL);
490         LASSERT(next->do_body_ops->dbo_read != NULL);
491         mdd_read_lock(env, mdd_obj, MOR_TGT_CHILD);
492         rc = dt_read(env, next, buf, &pos);
493         mdd_read_unlock(env, mdd_obj);
494         RETURN(rc);
495 }
496
497 /*
498  * No permission check is needed.
499  */
500 static int mdd_xattr_list(const struct lu_env *env, struct md_object *obj,
501                           struct lu_buf *buf)
502 {
503         struct mdd_object *mdd_obj = md2mdd_obj(obj);
504         int rc;
505
506         ENTRY;
507
508         mdd_read_lock(env, mdd_obj, MOR_TGT_CHILD);
509         rc = mdo_xattr_list(env, mdd_obj, buf);
510         mdd_read_unlock(env, mdd_obj);
511
512         /* If the buffer is NULL then we are only here to get the
513          * length of the xattr name list. */
514         if (rc < 0 || buf->lb_buf == NULL)
515                 RETURN(rc);
516
517         /*
518          * Filter out XATTR_NAME_LINK if this is an orphan object.  See
519          * mdd_xattr_get().
520          */
521         if (unlikely(mdd_obj->mod_flags & (DEAD_OBJ | ORPHAN_OBJ))) {
522                 char   *end = (char *)buf->lb_buf + rc;
523                 char   *p = buf->lb_buf;
524
525                 while (p < end) {
526                         char   *next = p + strlen(p) + 1;
527
528                         if (strcmp(p, XATTR_NAME_LINK) == 0) {
529                                 if (end - next > 0)
530                                         memmove(p, next, end - next);
531                                 rc -= next - p;
532                                 CDEBUG(D_INFO, "Filtered out "XATTR_NAME_LINK
533                                        " of orphan "DFID"\n",
534                                        PFID(mdd_object_fid(mdd_obj)));
535                                 break;
536                         }
537
538                         p = next;
539                 }
540         }
541
542         RETURN(rc);
543 }
544
545 int mdd_invalidate(const struct lu_env *env, struct md_object *obj)
546 {
547         return mdo_invalidate(env, md2mdd_obj(obj));
548 }
549
550 int mdd_declare_create_object_internal(const struct lu_env *env,
551                                        struct mdd_object *p,
552                                        struct mdd_object *c,
553                                        struct lu_attr *attr,
554                                        struct thandle *handle,
555                                        const struct md_op_spec *spec,
556                                        struct dt_allocation_hint *hint)
557 {
558         struct dt_object_format *dof = &mdd_env_info(env)->mti_dof;
559         const struct dt_index_features *feat = spec->sp_feat;
560         int rc;
561         ENTRY;
562
563         if (feat != &dt_directory_features && feat != NULL) {
564                 dof->dof_type = DFT_INDEX;
565                 dof->u.dof_idx.di_feat = feat;
566         } else {
567                 dof->dof_type = dt_mode_to_dft(attr->la_mode);
568                 if (dof->dof_type == DFT_REGULAR) {
569                         dof->u.dof_reg.striped =
570                                 md_should_create(spec->sp_cr_flags);
571                         if (spec->sp_cr_flags & MDS_OPEN_HAS_EA)
572                                 dof->u.dof_reg.striped = 0;
573                         /* is this replay? */
574                         if (spec->no_create)
575                                 dof->u.dof_reg.striped = 0;
576                 }
577         }
578
579         rc = mdo_declare_create_object(env, c, attr, hint, dof, handle);
580
581         RETURN(rc);
582 }
583
584 int mdd_create_object_internal(const struct lu_env *env, struct mdd_object *p,
585                                struct mdd_object *c, struct lu_attr *attr,
586                                struct thandle *handle,
587                                const struct md_op_spec *spec,
588                                struct dt_allocation_hint *hint)
589 {
590         struct dt_object_format *dof = &mdd_env_info(env)->mti_dof;
591         int rc;
592         ENTRY;
593
594         LASSERT(!mdd_object_exists(c));
595
596         rc = mdo_create_object(env, c, attr, hint, dof, handle);
597
598         RETURN(rc);
599 }
600
601 int mdd_attr_set_internal(const struct lu_env *env, struct mdd_object *obj,
602                           const struct lu_attr *attr, struct thandle *handle,
603                           int needacl)
604 {
605         int rc;
606         ENTRY;
607
608         rc = mdo_attr_set(env, obj, attr, handle);
609 #ifdef CONFIG_FS_POSIX_ACL
610         if (!rc && (attr->la_valid & LA_MODE) && needacl)
611                 rc = mdd_acl_chmod(env, obj, attr->la_mode, handle);
612 #endif
613         RETURN(rc);
614 }
615
616 int mdd_update_time(const struct lu_env *env, struct mdd_object *obj,
617                     const struct lu_attr *oattr, struct lu_attr *attr,
618                     struct thandle *handle)
619 {
620         int rc = 0;
621         ENTRY;
622
623         LASSERT(attr->la_valid & LA_CTIME);
624         LASSERT(oattr != NULL);
625
626         /* Make sure the ctime is increased only, however, it's not strictly
627          * reliable at here because there is not guarantee to hold lock on
628          * object, so we just bypass some unnecessary cmtime setting first
629          * and OSD has to check it again. */
630         if (attr->la_ctime < oattr->la_ctime)
631                 attr->la_valid &= ~(LA_MTIME | LA_CTIME);
632         else if (attr->la_valid == LA_CTIME &&
633                  attr->la_ctime == oattr->la_ctime)
634                 attr->la_valid &= ~LA_CTIME;
635
636         if (attr->la_valid != 0)
637                 rc = mdd_attr_set_internal(env, obj, attr, handle, 0);
638         RETURN(rc);
639 }
640
641 /*
642  * This gives the same functionality as the code between
643  * sys_chmod and inode_setattr
644  * chown_common and inode_setattr
645  * utimes and inode_setattr
646  * This API is ported from mds_fix_attr but remove some unnecesssary stuff.
647  */
648 static int mdd_fix_attr(const struct lu_env *env, struct mdd_object *obj,
649                         const struct lu_attr *oattr, struct lu_attr *la,
650                         const unsigned long flags)
651 {
652         struct lu_ucred  *uc;
653         int               rc = 0;
654         ENTRY;
655
656         if (!la->la_valid)
657                 RETURN(0);
658
659         /* Do not permit change file type */
660         if (la->la_valid & LA_TYPE)
661                 RETURN(-EPERM);
662
663         /* They should not be processed by setattr */
664         if (la->la_valid & (LA_NLINK | LA_RDEV | LA_BLKSIZE))
665                 RETURN(-EPERM);
666
667         LASSERT(oattr != NULL);
668
669         uc = lu_ucred_check(env);
670         if (uc == NULL)
671                 RETURN(0);
672
673         if (la->la_valid == LA_CTIME) {
674                 if (!(flags & MDS_PERM_BYPASS))
675                         /* This is only for set ctime when rename's source is
676                          * on remote MDS. */
677                         rc = mdd_may_delete(env, NULL, NULL, obj, oattr, NULL,
678                                             1, 0);
679                 if (rc == 0 && la->la_ctime <= oattr->la_ctime)
680                         la->la_valid &= ~LA_CTIME;
681                 RETURN(rc);
682         }
683
684         if (la->la_valid == LA_ATIME) {
685                 /* This is an atime-only attribute update for close RPCs. */
686                 if (la->la_atime < (oattr->la_atime +
687                                 mdd_obj2mdd_dev(obj)->mdd_atime_diff))
688                         la->la_valid &= ~LA_ATIME;
689                 RETURN(0);
690         }
691
692         /* Check if flags change. */
693         if (la->la_valid & LA_FLAGS) {
694                 unsigned int oldflags = oattr->la_flags &
695                                 (LUSTRE_IMMUTABLE_FL | LUSTRE_APPEND_FL);
696                 unsigned int newflags = la->la_flags &
697                                 (LUSTRE_IMMUTABLE_FL | LUSTRE_APPEND_FL);
698
699                 if ((uc->uc_fsuid != oattr->la_uid) &&
700                     !md_capable(uc, CFS_CAP_FOWNER))
701                         RETURN(-EPERM);
702
703                 /* The IMMUTABLE and APPEND_ONLY flags can
704                  * only be changed by the relevant capability. */
705                 if ((oldflags ^ newflags) &&
706                     !md_capable(uc, CFS_CAP_LINUX_IMMUTABLE))
707                         RETURN(-EPERM);
708
709                 if (!S_ISDIR(oattr->la_mode))
710                         la->la_flags &= ~(LUSTRE_DIRSYNC_FL | LUSTRE_TOPDIR_FL);
711         }
712
713         if (oattr->la_flags & (LUSTRE_IMMUTABLE_FL | LUSTRE_APPEND_FL) &&
714             (la->la_valid & ~LA_FLAGS) &&
715             !(flags & MDS_PERM_BYPASS))
716                 RETURN(-EPERM);
717
718         /* Check for setting the obj time. */
719         if ((la->la_valid & (LA_MTIME | LA_ATIME | LA_CTIME)) &&
720             !(la->la_valid & ~(LA_MTIME | LA_ATIME | LA_CTIME))) {
721                 if ((uc->uc_fsuid != oattr->la_uid) &&
722                     !md_capable(uc, CFS_CAP_FOWNER)) {
723                         rc = mdd_permission_internal(env, obj, oattr,
724                                                      MAY_WRITE);
725                         if (rc)
726                                 RETURN(rc);
727                 }
728         }
729
730         if (la->la_valid & LA_KILL_SUID) {
731                 la->la_valid &= ~LA_KILL_SUID;
732                 if ((oattr->la_mode & S_ISUID) &&
733                     !(la->la_valid & LA_MODE)) {
734                         la->la_mode = oattr->la_mode;
735                         la->la_valid |= LA_MODE;
736                 }
737                 la->la_mode &= ~S_ISUID;
738         }
739
740         if (la->la_valid & LA_KILL_SGID) {
741                 la->la_valid &= ~LA_KILL_SGID;
742                 if (((oattr->la_mode & (S_ISGID | S_IXGRP)) ==
743                         (S_ISGID | S_IXGRP)) &&
744                     !(la->la_valid & LA_MODE)) {
745                         la->la_mode = oattr->la_mode;
746                         la->la_valid |= LA_MODE;
747                 }
748                 la->la_mode &= ~S_ISGID;
749         }
750
751         /* Make sure a caller can chmod. */
752         if (la->la_valid & LA_MODE) {
753                 if (!(flags & MDS_PERM_BYPASS) &&
754                     (uc->uc_fsuid != oattr->la_uid) &&
755                     !md_capable(uc, CFS_CAP_FOWNER))
756                         RETURN(-EPERM);
757
758                 if (la->la_mode == (umode_t) -1)
759                         la->la_mode = oattr->la_mode;
760                 else
761                         la->la_mode = (la->la_mode & S_IALLUGO) |
762                                         (oattr->la_mode & ~S_IALLUGO);
763
764                 /* Also check the setgid bit! */
765                 if (!lustre_in_group_p(uc, (la->la_valid & LA_GID) ?
766                                        la->la_gid : oattr->la_gid) &&
767                     !md_capable(uc, CFS_CAP_FSETID))
768                         la->la_mode &= ~S_ISGID;
769         } else {
770                la->la_mode = oattr->la_mode;
771         }
772
773         /* Make sure a caller can chown. */
774         if (la->la_valid & LA_UID) {
775                 if (la->la_uid == (uid_t) -1)
776                         la->la_uid = oattr->la_uid;
777                 if (((uc->uc_fsuid != oattr->la_uid) ||
778                      (la->la_uid != oattr->la_uid)) &&
779                     !md_capable(uc, CFS_CAP_CHOWN))
780                         RETURN(-EPERM);
781
782                 /* If the user or group of a non-directory has been
783                  * changed by a non-root user, remove the setuid bit.
784                  * 19981026 David C Niemi <niemi@tux.org>
785                  *
786                  * Changed this to apply to all users, including root,
787                  * to avoid some races. This is the behavior we had in
788                  * 2.0. The check for non-root was definitely wrong
789                  * for 2.2 anyway, as it should have been using
790                  * CAP_FSETID rather than fsuid -- 19990830 SD. */
791                 if (((oattr->la_mode & S_ISUID) == S_ISUID) &&
792                 !S_ISDIR(oattr->la_mode)) {
793                         la->la_mode &= ~S_ISUID;
794                         la->la_valid |= LA_MODE;
795                 }
796         }
797
798         /* Make sure caller can chgrp. */
799         if (la->la_valid & LA_GID) {
800                 if (la->la_gid == (gid_t) -1)
801                         la->la_gid = oattr->la_gid;
802                 if (((uc->uc_fsuid != oattr->la_uid) ||
803                      ((la->la_gid != oattr->la_gid) &&
804                       !lustre_in_group_p(uc, la->la_gid))) &&
805                     !md_capable(uc, CFS_CAP_CHOWN))
806                         RETURN(-EPERM);
807
808                 /* Likewise, if the user or group of a non-directory
809                  * has been changed by a non-root user, remove the
810                  * setgid bit UNLESS there is no group execute bit
811                  * (this would be a file marked for mandatory
812                  * locking).  19981026 David C Niemi <niemi@tux.org>
813                  *
814                  * Removed the fsuid check (see the comment above) --
815                  * 19990830 SD. */
816                 if (((oattr->la_mode & (S_ISGID | S_IXGRP)) ==
817                     (S_ISGID | S_IXGRP)) && !S_ISDIR(oattr->la_mode)) {
818                         la->la_mode &= ~S_ISGID;
819                         la->la_valid |= LA_MODE;
820                 }
821         }
822
823         if (la->la_valid & (LA_SIZE | LA_BLOCKS)) {
824                 if (!((flags & MDS_OWNEROVERRIDE) &&
825                       (uc->uc_fsuid == oattr->la_uid)) &&
826                     !(flags & MDS_PERM_BYPASS)) {
827                         rc = mdd_permission_internal(env, obj, oattr,
828                                                      MAY_WRITE);
829                         if (rc != 0)
830                                 RETURN(rc);
831                 }
832         }
833
834         if (la->la_valid & LA_CTIME) {
835                 /* The pure setattr, it has the priority over what is
836                  * already set, do not drop it if ctime is equal. */
837                 if (la->la_ctime < oattr->la_ctime)
838                         la->la_valid &= ~(LA_ATIME | LA_MTIME | LA_CTIME);
839         }
840
841         RETURN(0);
842 }
843
844 static int mdd_changelog_data_store_by_fid(const struct lu_env *env,
845                                            struct mdd_device *mdd,
846                                            enum changelog_rec_type type,
847                                            enum changelog_rec_flags clf_flags,
848                                            const struct lu_fid *fid,
849                                            const char *xattr_name,
850                                            struct thandle *handle)
851 {
852         const struct lu_ucred *uc = lu_ucred(env);
853         enum changelog_rec_extra_flags xflags = CLFE_INVALID;
854         struct llog_changelog_rec *rec;
855         struct lu_buf *buf;
856         int reclen;
857         int rc;
858
859         clf_flags = (clf_flags & CLF_FLAGMASK) | CLF_VERSION | CLF_EXTRA_FLAGS;
860
861         if (uc) {
862                 if (uc->uc_jobid[0] != '\0')
863                         clf_flags |= CLF_JOBID;
864                 xflags |= CLFE_UIDGID;
865                 xflags |= CLFE_NID;
866         }
867         if (type == CL_OPEN || type == CL_DN_OPEN)
868                 xflags |= CLFE_OPEN;
869         if (type == CL_SETXATTR || type == CL_GETXATTR)
870                 xflags |= CLFE_XATTR;
871
872         reclen = llog_data_len(LLOG_CHANGELOG_HDR_SZ +
873                                changelog_rec_offset(clf_flags & CLF_SUPPORTED,
874                                                     xflags & CLFE_SUPPORTED));
875         buf = lu_buf_check_and_alloc(&mdd_env_info(env)->mti_big_buf, reclen);
876         if (buf->lb_buf == NULL)
877                 RETURN(-ENOMEM);
878         rec = buf->lb_buf;
879
880         rec->cr_hdr.lrh_len = reclen;
881         rec->cr.cr_flags = clf_flags;
882         rec->cr.cr_type = (__u32)type;
883         rec->cr.cr_tfid = *fid;
884         rec->cr.cr_namelen = 0;
885
886         if (clf_flags & CLF_JOBID)
887                 mdd_changelog_rec_ext_jobid(&rec->cr, uc->uc_jobid);
888
889         if (clf_flags & CLF_EXTRA_FLAGS) {
890                 mdd_changelog_rec_ext_extra_flags(&rec->cr, xflags);
891                 if (xflags & CLFE_UIDGID)
892                         mdd_changelog_rec_extra_uidgid(&rec->cr,
893                                                        uc->uc_uid, uc->uc_gid);
894                 if (xflags & CLFE_NID)
895                         mdd_changelog_rec_extra_nid(&rec->cr, uc->uc_nid);
896                 if (xflags & CLFE_OPEN)
897                         mdd_changelog_rec_extra_omode(&rec->cr, clf_flags);
898                 if (xflags & CLFE_XATTR) {
899                         if (xattr_name == NULL)
900                                 RETURN(-EINVAL);
901                         mdd_changelog_rec_extra_xattr(&rec->cr, xattr_name);
902                 }
903         }
904
905         rc = mdd_changelog_store(env, mdd, rec, handle);
906         RETURN(rc);
907 }
908
909
910 /** Store a data change changelog record
911  * If this fails, we must fail the whole transaction; we don't
912  * want the change to commit without the log entry.
913  * \param mdd_obj - mdd_object of change
914  * \param handle - transaction handle
915  */
916 int mdd_changelog_data_store(const struct lu_env *env, struct mdd_device *mdd,
917                              enum changelog_rec_type type,
918                              enum changelog_rec_flags clf_flags,
919                              struct mdd_object *mdd_obj, struct thandle *handle)
920 {
921         int                              rc;
922
923         LASSERT(mdd_obj != NULL);
924         LASSERT(handle != NULL);
925
926         if (!mdd_changelog_enabled(env, mdd, type))
927                 RETURN(0);
928
929         if (mdd_is_volatile_obj(mdd_obj))
930                 RETURN(0);
931
932         if ((type >= CL_MTIME) && (type <= CL_ATIME) &&
933             ktime_before(mdd->mdd_cl.mc_starttime, mdd_obj->mod_cltime)) {
934                 /* Don't need multiple updates in this log */
935                 /* Don't check under lock - no big deal if we get an extra
936                    entry */
937                 RETURN(0);
938         }
939
940         rc = mdd_changelog_data_store_by_fid(env, mdd, type, clf_flags,
941                                              mdo2fid(mdd_obj), NULL, handle);
942         if (rc == 0)
943                 mdd_obj->mod_cltime = ktime_get();
944
945         RETURN(rc);
946 }
947
948 int mdd_changelog_data_store_xattr(const struct lu_env *env,
949                                    struct mdd_device *mdd,
950                                    enum changelog_rec_type type,
951                                    enum changelog_rec_flags clf_flags,
952                                    struct mdd_object *mdd_obj,
953                                    const char *xattr_name,
954                                    struct thandle *handle)
955 {
956         int rc;
957
958         LASSERT(mdd_obj != NULL);
959         LASSERT(handle != NULL);
960
961         if (!mdd_changelog_enabled(env, mdd, type))
962                 RETURN(0);
963
964         if (mdd_is_volatile_obj(mdd_obj))
965                 RETURN(0);
966
967         if ((type >= CL_MTIME) && (type <= CL_ATIME) &&
968             ktime_before(mdd->mdd_cl.mc_starttime, mdd_obj->mod_cltime)) {
969                 /* Don't need multiple updates in this log */
970                 /* Don't check under lock - no big deal if we get an extra
971                  * entry
972                  */
973                 RETURN(0);
974         }
975
976         rc = mdd_changelog_data_store_by_fid(env, mdd, type, clf_flags,
977                                              mdo2fid(mdd_obj), xattr_name,
978                                              handle);
979         if (rc == 0)
980                 mdd_obj->mod_cltime = ktime_get();
981
982         RETURN(rc);
983 }
984
985 /* only the bottom CLF_FLAGSHIFT bits of @flags are stored in the record,
986  * except for open flags have a dedicated record to store 32 bits of flags */
987 static int mdd_changelog(const struct lu_env *env, enum changelog_rec_type type,
988                          enum changelog_rec_flags clf_flags,
989                          struct md_device *m, const struct lu_fid *fid)
990 {
991         struct thandle *handle;
992         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
993         int rc;
994         ENTRY;
995
996         LASSERT(fid != NULL);
997
998         /* We'll check this again below, but we check now before we
999          * start a transaction. */
1000         if (!mdd_changelog_enabled(env, mdd, type))
1001                 RETURN(0);
1002
1003         handle = mdd_trans_create(env, mdd);
1004         if (IS_ERR(handle))
1005                 RETURN(PTR_ERR(handle));
1006
1007         rc = mdd_declare_changelog_store(env, mdd, type, NULL, NULL, handle);
1008         if (rc)
1009                 GOTO(stop, rc);
1010
1011         rc = mdd_trans_start(env, mdd, handle);
1012         if (rc)
1013                 GOTO(stop, rc);
1014
1015         rc = mdd_changelog_data_store_by_fid(env, mdd, type, clf_flags,
1016                                              fid, NULL, handle);
1017
1018 stop:
1019         rc = mdd_trans_stop(env, mdd, rc, handle);
1020
1021         RETURN(rc);
1022 }
1023
1024 /**
1025  * Save LMA extended attributes with data from \a ma.
1026  *
1027  * HSM and Size-On-MDS data will be extracted from \ma if they are valid, if
1028  * not, LMA EA will be first read from disk, modified and write back.
1029  *
1030  */
1031 /* Precedence for choosing record type when multiple
1032  * attributes change: setattr > mtime > ctime > atime
1033  * (ctime changes when mtime does, plus chmod/chown.
1034  * atime and ctime are independent.) */
1035 static int mdd_attr_set_changelog(const struct lu_env *env,
1036                                   struct md_object *obj, struct thandle *handle,
1037                                   __u64 valid)
1038 {
1039         struct mdd_device *mdd = mdo2mdd(obj);
1040         int bits, type = 0;
1041
1042         bits =  (valid & LA_SIZE)  ? 1 << CL_TRUNC : 0;
1043         bits |= (valid & ~(LA_CTIME|LA_MTIME|LA_ATIME)) ? 1 << CL_SETATTR : 0;
1044         bits |= (valid & LA_MTIME) ? 1 << CL_MTIME : 0;
1045         bits |= (valid & LA_CTIME) ? 1 << CL_CTIME : 0;
1046         bits |= (valid & LA_ATIME) ? 1 << CL_ATIME : 0;
1047         bits = bits & mdd->mdd_cl.mc_mask;
1048         /* This is an implementation limit rather than a protocol limit */
1049         CLASSERT(CL_LAST <= sizeof(int) * 8);
1050         if (bits == 0)
1051                 return 0;
1052
1053         /* The record type is the lowest non-masked set bit */
1054         type = __ffs(bits);
1055
1056         /* XXX: we only store the low CLF_FLAGMASK bits of la_valid */
1057         return mdd_changelog_data_store(env, mdd, type, valid,
1058                                         md2mdd_obj(obj), handle);
1059 }
1060
1061 static int mdd_declare_attr_set(const struct lu_env *env,
1062                                 struct mdd_device *mdd,
1063                                 struct mdd_object *obj,
1064                                 const struct lu_attr *attr,
1065                                 struct thandle *handle)
1066 {
1067         int rc;
1068
1069         rc = mdo_declare_attr_set(env, obj, attr, handle);
1070         if (rc)
1071                 return rc;
1072
1073 #ifdef CONFIG_FS_POSIX_ACL
1074         if (attr->la_valid & LA_MODE) {
1075                 mdd_read_lock(env, obj, MOR_TGT_CHILD);
1076                 rc = mdo_xattr_get(env, obj, &LU_BUF_NULL,
1077                                    XATTR_NAME_ACL_ACCESS);
1078                 mdd_read_unlock(env, obj);
1079                 if (rc == -EOPNOTSUPP || rc == -ENODATA)
1080                         rc = 0;
1081                 else if (rc < 0)
1082                         return rc;
1083
1084                 if (rc != 0) {
1085                         struct lu_buf *buf = mdd_buf_get(env, NULL, rc);
1086                         rc = mdo_declare_xattr_set(env, obj, buf,
1087                                                    XATTR_NAME_ACL_ACCESS, 0,
1088                                                    handle);
1089                         if (rc)
1090                                 return rc;
1091                 }
1092         }
1093 #endif
1094
1095         rc = mdd_declare_changelog_store(env, mdd, CL_SETXATTR, NULL, NULL,
1096                                          handle);
1097         return rc;
1098 }
1099
1100 /*
1101  * LU-3671
1102  * LU-7239
1103  *
1104  * permission changes may require sync operation, to mitigate performance
1105  * impact, only do this for dir and when permission is reduced.
1106  *
1107  * For regular files, version is updated with permission change (see VBR), async
1108  * permission won't cause any issue, while missing permission change on
1109  * directory may affect accessibility of other objects after recovery.
1110  */
1111 static inline bool permission_needs_sync(const struct lu_attr *old,
1112                                          const struct lu_attr *new)
1113 {
1114         if (!S_ISDIR(old->la_mode))
1115                 return false;
1116
1117         if (new->la_valid & LA_UID && old->la_uid != new->la_uid)
1118                 return true;
1119
1120         if (new->la_valid & LA_GID && old->la_gid != new->la_gid)
1121                 return true;
1122
1123         if (new->la_valid & LA_MODE) {
1124                 /* turned on sticky bit */
1125                 if (!(old->la_mode & S_ISVTX) && (new->la_mode & S_ISVTX))
1126                         return true;
1127
1128                 /* set-GID has no impact on what is allowed, not checked */
1129
1130                 /* turned off setuid bit, or one of rwx for someone */
1131                 if (((new->la_mode & old->la_mode) & (0777 | S_ISUID)) !=
1132                      (old->la_mode & (0777 | S_ISUID)))
1133                         return true;
1134         }
1135
1136         return false;
1137 }
1138
1139 static inline __u64 mdd_lmm_dom_size(void *buf)
1140 {
1141         struct lov_mds_md *lmm = buf;
1142         struct lov_comp_md_v1 *comp_v1;
1143         struct lov_mds_md *v1;
1144         __u32 off;
1145
1146         if (lmm == NULL)
1147                 return 0;
1148
1149         if (le32_to_cpu(lmm->lmm_magic) != LOV_MAGIC_COMP_V1)
1150                 return 0;
1151
1152         comp_v1 = (struct lov_comp_md_v1 *)lmm;
1153         off = le32_to_cpu(comp_v1->lcm_entries[0].lcme_offset);
1154         v1 = (struct lov_mds_md *)((char *)comp_v1 + off);
1155
1156         /* DoM entry is the first entry always */
1157         if (lov_pattern(le32_to_cpu(v1->lmm_pattern)) == LOV_PATTERN_MDT)
1158                 return le64_to_cpu(comp_v1->lcm_entries[0].lcme_extent.e_end);
1159
1160         return 0;
1161 }
1162
1163 /* set attr and LOV EA at once, return updated attr */
1164 int mdd_attr_set(const struct lu_env *env, struct md_object *obj,
1165                  const struct md_attr *ma)
1166 {
1167         struct mdd_object *mdd_obj = md2mdd_obj(obj);
1168         struct mdd_device *mdd = mdo2mdd(obj);
1169         struct thandle *handle = NULL;
1170         struct lu_attr *la_copy = &mdd_env_info(env)->mti_la_for_fix;
1171         struct lu_attr *attr = MDD_ENV_VAR(env, cattr);
1172         const struct lu_attr *la = &ma->ma_attr;
1173         struct lu_ucred  *uc;
1174         bool chrgrp_by_unprivileged_user = false;
1175         int rc;
1176         ENTRY;
1177
1178         /* we do not use ->attr_set() for LOV/HSM EA any more */
1179         LASSERT((ma->ma_valid & MA_LOV) == 0);
1180         LASSERT((ma->ma_valid & MA_HSM) == 0);
1181
1182         rc = mdd_la_get(env, mdd_obj, attr);
1183         if (rc)
1184                 RETURN(rc);
1185
1186         *la_copy = ma->ma_attr;
1187         rc = mdd_fix_attr(env, mdd_obj, attr, la_copy, ma->ma_attr_flags);
1188         if (rc)
1189                 RETURN(rc);
1190
1191         /* no need to setattr anymore */
1192         if (la_copy->la_valid == 0) {
1193                 CDEBUG(D_INODE, "%s: no valid attribute on "DFID", previous"
1194                        "valid is %#llx\n", mdd2obd_dev(mdd)->obd_name,
1195                        PFID(mdo2fid(mdd_obj)), la->la_valid);
1196
1197                 RETURN(0);
1198         }
1199
1200         /* If an unprivileged user changes group of some file,
1201          * the setattr operation will be processed synchronously to
1202          * honor the quota limit of the corresponding group. see LU-5152 */
1203         uc = lu_ucred_check(env);
1204         if (S_ISREG(attr->la_mode) && la->la_valid & LA_GID &&
1205             la->la_gid != attr->la_gid && uc != NULL && uc->uc_fsuid != 0) {
1206                 /* LU-10048: disable synchronous chgrp operation for it will
1207                  * cause deadlock between MDT and OST.
1208                 la_copy->la_valid |= LA_FLAGS;
1209                 la_copy->la_flags |= LUSTRE_SET_SYNC_FL;
1210                  */
1211                 chrgrp_by_unprivileged_user = true;
1212
1213                 /* Flush the possible existing client setattr requests to OSTs
1214                  * to keep the order with the current setattr operation that
1215                  * will be sent directly to OSTs. see LU-5152 */
1216                 /* LU-11303 disable sync as this is too heavyweight.
1217                  * This should be replaced with a sync only for the object
1218                  * being modified here, not the whole filesystem.
1219                 rc = dt_sync(env, mdd->mdd_child);
1220                 if (rc)
1221                         GOTO(out, rc);
1222                  */
1223         }
1224
1225         handle = mdd_trans_create(env, mdd);
1226         if (IS_ERR(handle)) {
1227                 rc = PTR_ERR(handle);
1228                 handle = NULL;
1229
1230                 GOTO(out, rc);
1231         }
1232
1233         rc = mdd_declare_attr_set(env, mdd, mdd_obj, la_copy, handle);
1234         if (rc)
1235                 GOTO(out, rc);
1236
1237         rc = mdd_trans_start(env, mdd, handle);
1238         if (rc)
1239                 GOTO(out, rc);
1240
1241         if (!chrgrp_by_unprivileged_user && mdd->mdd_sync_permission &&
1242             permission_needs_sync(attr, la))
1243                 handle->th_sync = 1;
1244
1245         if (la->la_valid & (LA_MTIME | LA_CTIME))
1246                 CDEBUG(D_INODE, "setting mtime %llu, ctime %llu\n",
1247                        la->la_mtime, la->la_ctime);
1248
1249         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
1250
1251         /* LU-10509: setattr of LA_SIZE should be skipped case of DOM,
1252          * otherwise following truncate will do nothing and truncated
1253          * data may be read again. This is a quick fix until LU-11033
1254          * will be resolved.
1255          */
1256         if (la_copy->la_valid & LA_SIZE) {
1257                 struct lu_buf *lov_buf = mdd_buf_get(env, NULL, 0);
1258
1259                 rc = mdd_stripe_get(env, mdd_obj, lov_buf, XATTR_NAME_LOV);
1260                 if (rc) {
1261                         rc = 0;
1262                 } else {
1263                         if (mdd_lmm_dom_size(lov_buf->lb_buf) > 0)
1264                                 la_copy->la_valid &= ~LA_SIZE;
1265                         lu_buf_free(lov_buf);
1266                 }
1267         }
1268
1269         if (la_copy->la_valid) {
1270                 rc = mdd_attr_set_internal(env, mdd_obj, la_copy, handle, 1);
1271
1272                 if (rc == -EDQUOT && la_copy->la_flags & LUSTRE_SET_SYNC_FL) {
1273                         /* rollback to the original gid */
1274                         la_copy->la_flags &= ~LUSTRE_SET_SYNC_FL;
1275                         la_copy->la_gid = attr->la_gid;
1276                         mdd_attr_set_internal(env, mdd_obj, la_copy, handle, 1);
1277                 }
1278         }
1279         mdd_write_unlock(env, mdd_obj);
1280
1281 out:
1282         if (rc == 0)
1283                 rc = mdd_attr_set_changelog(env, obj, handle,
1284                                             la_copy->la_valid);
1285
1286         if (handle != NULL)
1287                 rc = mdd_trans_stop(env, mdd, rc, handle);
1288
1289         return rc;
1290 }
1291
1292 static int mdd_xattr_sanity_check(const struct lu_env *env,
1293                                   struct mdd_object *obj,
1294                                   const struct lu_attr *attr,
1295                                   const char *name)
1296 {
1297         struct lu_ucred *uc     = lu_ucred_assert(env);
1298         ENTRY;
1299
1300         if (attr->la_flags & (LUSTRE_IMMUTABLE_FL | LUSTRE_APPEND_FL))
1301                 RETURN(-EPERM);
1302
1303         if (strncmp(XATTR_USER_PREFIX, name,
1304                     sizeof(XATTR_USER_PREFIX) - 1) == 0) {
1305                 /* For sticky directories, only the owner and privileged user
1306                  * can write attributes. */
1307                 if (S_ISDIR(attr->la_mode) && (attr->la_mode & S_ISVTX) &&
1308                     (uc->uc_fsuid != attr->la_uid) &&
1309                     !md_capable(uc, CFS_CAP_FOWNER))
1310                         RETURN(-EPERM);
1311         } else if (strcmp(name, XATTR_NAME_SOM) != 0 &&
1312                    (uc->uc_fsuid != attr->la_uid) &&
1313                    !md_capable(uc, CFS_CAP_FOWNER)) {
1314                 RETURN(-EPERM);
1315         }
1316
1317         RETURN(0);
1318 }
1319
1320 /**
1321  * Check if a string begins with a given prefix.
1322  *
1323  * \param str     String to check
1324  * \param prefix  Substring to check at the beginning of \a str
1325  * \return true/false whether the condition is verified.
1326  */
1327 static inline bool has_prefix(const char *str, const char *prefix)
1328 {
1329         return strncmp(prefix, str, strlen(prefix)) == 0;
1330 }
1331
1332 /**
1333  * Indicate the kind of changelog to store (if any) for a xattr set/del.
1334  *
1335  * \param[in]  xattr_name  Full extended attribute name.
1336  *
1337  * \return The type of changelog to use, or -1 if no changelog is to be emitted.
1338  */
1339 static enum changelog_rec_type
1340 mdd_xattr_changelog_type(const struct lu_env *env, struct mdd_device *mdd,
1341                          const char *xattr_name)
1342 {
1343         /* Layout changes systematically recorded */
1344         if (strcmp(XATTR_NAME_LOV, xattr_name) == 0 ||
1345             strncmp(XATTR_LUSTRE_LOV, xattr_name,
1346                     strlen(XATTR_LUSTRE_LOV)) == 0)
1347                 return CL_LAYOUT;
1348
1349         /* HSM information changes systematically recorded */
1350         if (strcmp(XATTR_NAME_HSM, xattr_name) == 0)
1351                 return CL_HSM;
1352
1353         /* Avoid logging SOM xattr for every file */
1354         if (strcmp(XATTR_NAME_SOM, xattr_name) == 0)
1355                 return CL_NONE;
1356
1357         if (has_prefix(xattr_name, XATTR_USER_PREFIX) ||
1358             has_prefix(xattr_name, XATTR_NAME_POSIX_ACL_ACCESS) ||
1359             has_prefix(xattr_name, XATTR_NAME_POSIX_ACL_DEFAULT) ||
1360             has_prefix(xattr_name, XATTR_TRUSTED_PREFIX) ||
1361             has_prefix(xattr_name, XATTR_SECURITY_PREFIX))
1362                 return CL_SETXATTR;
1363
1364         return CL_NONE;
1365 }
1366
1367 static int mdd_declare_xattr_set(const struct lu_env *env,
1368                                  struct mdd_device *mdd,
1369                                  struct mdd_object *obj,
1370                                  const struct lu_buf *buf,
1371                                  const char *name,
1372                                  int fl, struct thandle *handle)
1373 {
1374         enum changelog_rec_type type;
1375         int rc;
1376
1377         rc = mdo_declare_xattr_set(env, obj, buf, name, fl, handle);
1378         if (rc)
1379                 return rc;
1380
1381         type = mdd_xattr_changelog_type(env, mdd, name);
1382         if (type < 0)
1383                 return 0; /* no changelog to store */
1384
1385         return mdd_declare_changelog_store(env, mdd, type, NULL, NULL, handle);
1386 }
1387
1388 /*
1389  * Compare current and future data of HSM EA and add a changelog if needed.
1390  *
1391  * Caller should have write-locked \param obj.
1392  *
1393  * \param buf - Future HSM EA content.
1394  * \retval 0 if no changelog is needed or changelog was added properly.
1395  * \retval -ve errno if there was a problem
1396  */
1397 static int mdd_hsm_update_locked(const struct lu_env *env,
1398                                  struct md_object *obj,
1399                                  const struct lu_buf *buf,
1400                                  struct thandle *handle,
1401                                  enum changelog_rec_flags *clf_flags)
1402 {
1403         struct mdd_thread_info *info = mdd_env_info(env);
1404         struct mdd_object *mdd_obj = md2mdd_obj(obj);
1405         struct lu_buf *current_buf;
1406         struct md_hsm *current_mh;
1407         struct md_hsm *new_mh;
1408         int rc;
1409
1410         ENTRY;
1411         OBD_ALLOC_PTR(current_mh);
1412         if (current_mh == NULL)
1413                 RETURN(-ENOMEM);
1414
1415         /* Read HSM attrs from disk */
1416         current_buf = lu_buf_check_and_alloc(&info->mti_xattr_buf,
1417                                 mdo2mdd(obj)->mdd_dt_conf.ddp_max_ea_size);
1418         rc = mdo_xattr_get(env, mdd_obj, current_buf, XATTR_NAME_HSM);
1419         rc = lustre_buf2hsm(current_buf->lb_buf, rc, current_mh);
1420         if (rc < 0 && rc != -ENODATA)
1421                 GOTO(free, rc);
1422         else if (rc == -ENODATA)
1423                 current_mh->mh_flags = 0;
1424
1425         /* Map future HSM xattr */
1426         OBD_ALLOC_PTR(new_mh);
1427         if (new_mh == NULL)
1428                 GOTO(free, rc = -ENOMEM);
1429         lustre_buf2hsm(buf->lb_buf, buf->lb_len, new_mh);
1430
1431         rc = 0;
1432
1433         /* Flags differ, set flags for the changelog that will be added */
1434         if (current_mh->mh_flags != new_mh->mh_flags) {
1435                 hsm_set_cl_event(clf_flags, HE_STATE);
1436                 if (new_mh->mh_flags & HS_DIRTY)
1437                         hsm_set_cl_flags(clf_flags, CLF_HSM_DIRTY);
1438         }
1439
1440         OBD_FREE_PTR(new_mh);
1441         EXIT;
1442 free:
1443         OBD_FREE_PTR(current_mh);
1444         return rc;
1445 }
1446
1447 static int mdd_object_pfid_replace(const struct lu_env *env,
1448                                    struct mdd_object *o)
1449 {
1450         struct mdd_device *mdd = mdo2mdd(&o->mod_obj);
1451         struct thandle *handle;
1452         int rc;
1453
1454         handle = mdd_trans_create(env, mdd);
1455         if (IS_ERR(handle))
1456                 RETURN(PTR_ERR(handle));
1457
1458         handle->th_complex = 1;
1459
1460         /* it doesn't need to track the PFID update via llog, because LFSCK
1461          * will repair it even it goes wrong */
1462         rc = mdd_declare_xattr_set(env, mdd, o, NULL, XATTR_NAME_FID,
1463                                    0, handle);
1464         if (rc)
1465                 GOTO(out, rc);
1466
1467         rc = mdd_trans_start(env, mdd, handle);
1468         if (rc != 0)
1469                 GOTO(out, rc);
1470
1471         rc = mdo_xattr_set(env, o, NULL, XATTR_NAME_FID, 0, handle);
1472         if (rc)
1473                 GOTO(out, rc);
1474
1475 out:
1476         mdd_trans_stop(env, mdd, rc, handle);
1477         return rc;
1478 }
1479
1480
1481 static int mdd_declare_xattr_del(const struct lu_env *env,
1482                                  struct mdd_device *mdd,
1483                                  struct mdd_object *obj,
1484                                  const char *name,
1485                                  struct thandle *handle);
1486
1487 static int mdd_xattr_del(const struct lu_env *env, struct md_object *obj,
1488                          const char *name);
1489
1490 static int mdd_xattr_merge(const struct lu_env *env, struct md_object *md_obj,
1491                            struct md_object *md_vic)
1492 {
1493         struct mdd_device *mdd = mdo2mdd(md_obj);
1494         struct mdd_object *obj = md2mdd_obj(md_obj);
1495         struct mdd_object *vic = md2mdd_obj(md_vic);
1496         struct lu_buf *buf = &mdd_env_info(env)->mti_buf[0];
1497         struct lu_buf *buf_vic = &mdd_env_info(env)->mti_buf[1];
1498         struct lov_mds_md *lmm;
1499         struct thandle *handle;
1500         int rc;
1501         ENTRY;
1502
1503         rc = lu_fid_cmp(mdo2fid(obj), mdo2fid(vic));
1504         if (rc == 0) /* same fid */
1505                 RETURN(-EPERM);
1506
1507         handle = mdd_trans_create(env, mdd);
1508         if (IS_ERR(handle))
1509                 RETURN(PTR_ERR(handle));
1510
1511         if (rc > 0) {
1512                 mdd_write_lock(env, obj, MOR_TGT_CHILD);
1513                 mdd_write_lock(env, vic, MOR_TGT_CHILD);
1514         } else {
1515                 mdd_write_lock(env, vic, MOR_TGT_CHILD);
1516                 mdd_write_lock(env, obj, MOR_TGT_CHILD);
1517         }
1518
1519         /* get EA of victim file */
1520         memset(buf_vic, 0, sizeof(*buf_vic));
1521         rc = mdd_stripe_get(env, vic, buf_vic, XATTR_NAME_LOV);
1522         if (rc < 0) {
1523                 if (rc == -ENODATA)
1524                         rc = 0;
1525                 GOTO(out, rc);
1526         }
1527
1528         /* parse the layout of victim file */
1529         lmm = buf_vic->lb_buf;
1530         if (le32_to_cpu(lmm->lmm_magic) != LOV_MAGIC_COMP_V1)
1531                 GOTO(out, rc = -EINVAL);
1532
1533         /* save EA of target file for restore */
1534         memset(buf, 0, sizeof(*buf));
1535         rc = mdd_stripe_get(env, obj, buf, XATTR_NAME_LOV);
1536         if (rc < 0)
1537                 GOTO(out, rc);
1538
1539         /* Get rid of the layout from victim object */
1540         rc = mdd_declare_xattr_del(env, mdd, vic, XATTR_NAME_LOV, handle);
1541         if (rc)
1542                 GOTO(out, rc);
1543
1544         rc = mdd_declare_xattr_set(env, mdd, obj, buf_vic, XATTR_LUSTRE_LOV,
1545                                    LU_XATTR_MERGE, handle);
1546         if (rc)
1547                 GOTO(out, rc);
1548
1549         rc = mdd_trans_start(env, mdd, handle);
1550         if (rc != 0)
1551                 GOTO(out, rc);
1552
1553         rc = mdo_xattr_set(env, obj, buf_vic, XATTR_LUSTRE_LOV, LU_XATTR_MERGE,
1554                            handle);
1555         if (rc)
1556                 GOTO(out, rc);
1557
1558         rc = mdo_xattr_del(env, vic, XATTR_NAME_LOV, handle);
1559         if (rc) /* wtf? */
1560                 GOTO(out_restore, rc);
1561
1562         (void)mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, obj, handle);
1563         (void)mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, vic, handle);
1564         EXIT;
1565
1566 out_restore:
1567         if (rc) {
1568                 int rc2 = mdo_xattr_set(env, obj, buf, XATTR_NAME_LOV,
1569                                         LU_XATTR_REPLACE, handle);
1570                 if (rc2)
1571                         CERROR("%s: failed to rollback of layout of: "DFID
1572                                ": %d, file state unknown\n",
1573                                mdd_obj_dev_name(obj), PFID(mdo2fid(obj)), rc2);
1574         }
1575
1576 out:
1577         mdd_trans_stop(env, mdd, rc, handle);
1578         mdd_write_unlock(env, obj);
1579         mdd_write_unlock(env, vic);
1580         lu_buf_free(buf);
1581         lu_buf_free(buf_vic);
1582
1583         if (!rc)
1584                 (void) mdd_object_pfid_replace(env, obj);
1585
1586         return rc;
1587 }
1588
1589 /**
1590  * Extract the mirror with specified mirror id, and store the splitted
1591  * mirror layout to @buf.
1592  *
1593  * \param[in] comp_v1   mirrored layout
1594  * \param[in] mirror_id the mirror with mirror_id to be extracted
1595  * \param[out] buf      store the layout excluding the extracted mirror,
1596  *                      caller free the buffer we allocated in this function
1597  * \param[out] buf_vic  store the extracted layout, caller free the buffer
1598  *                      we allocated in this function
1599  *
1600  * \retval      0 on success; < 0 if error happens
1601  */
1602 static int mdd_split_ea(struct lov_comp_md_v1 *comp_v1, __u16 mirror_id,
1603                         struct lu_buf *buf, struct lu_buf *buf_vic)
1604 {
1605         struct lov_comp_md_v1 *comp_rem;
1606         struct lov_comp_md_v1 *comp_vic;
1607         struct lov_comp_md_entry_v1 *entry;
1608         struct lov_comp_md_entry_v1 *entry_rem;
1609         struct lov_comp_md_entry_v1 *entry_vic;
1610         __u16 mirror_cnt;
1611         __u16 comp_cnt, count = 0;
1612         int lmm_size, lmm_size_vic = 0;
1613         int i, j, k;
1614         int offset, offset_rem, offset_vic;
1615
1616         mirror_cnt = le16_to_cpu(comp_v1->lcm_mirror_count) + 1;
1617         /* comp_v1 should contains more than 1 mirror */
1618         if (mirror_cnt <= 1)
1619                 return -EINVAL;
1620         comp_cnt = le16_to_cpu(comp_v1->lcm_entry_count);
1621         lmm_size = le32_to_cpu(comp_v1->lcm_size);
1622
1623         for (i = 0; i < comp_cnt; i++) {
1624                 entry = &comp_v1->lcm_entries[i];
1625                 if (mirror_id_of(le32_to_cpu(entry->lcme_id)) == mirror_id) {
1626                         count++;
1627                         lmm_size_vic += sizeof(*entry);
1628                         lmm_size_vic += le32_to_cpu(entry->lcme_size);
1629                 } else if (count > 0) {
1630                         /* find the specified mirror */
1631                         break;
1632                 }
1633         }
1634
1635         if (count == 0)
1636                 return -EINVAL;
1637
1638         lu_buf_alloc(buf, lmm_size - lmm_size_vic);
1639         if (!buf->lb_buf)
1640                 return -ENOMEM;
1641
1642         lu_buf_alloc(buf_vic, sizeof(*comp_vic) + lmm_size_vic);
1643         if (!buf_vic->lb_buf) {
1644                 lu_buf_free(buf);
1645                 return -ENOMEM;
1646         }
1647
1648         comp_rem = (struct lov_comp_md_v1 *)buf->lb_buf;
1649         comp_vic = (struct lov_comp_md_v1 *)buf_vic->lb_buf;
1650
1651         memcpy(comp_rem, comp_v1, sizeof(*comp_v1));
1652         comp_rem->lcm_mirror_count = cpu_to_le16(mirror_cnt - 2);
1653         comp_rem->lcm_entry_count = cpu_to_le32(comp_cnt - count);
1654         comp_rem->lcm_size = cpu_to_le32(lmm_size - lmm_size_vic);
1655         if (!comp_rem->lcm_mirror_count)
1656                 comp_rem->lcm_flags = cpu_to_le16(LCM_FL_NONE);
1657
1658         memset(comp_vic, 0, sizeof(*comp_v1));
1659         comp_vic->lcm_magic = cpu_to_le32(LOV_MAGIC_COMP_V1);
1660         comp_vic->lcm_mirror_count = 0;
1661         comp_vic->lcm_entry_count = cpu_to_le32(count);
1662         comp_vic->lcm_size = cpu_to_le32(lmm_size_vic + sizeof(*comp_vic));
1663         comp_vic->lcm_flags = cpu_to_le16(LCM_FL_NONE);
1664         comp_vic->lcm_layout_gen = 0;
1665
1666         offset = sizeof(*comp_v1) + sizeof(*entry) * comp_cnt;
1667         offset_rem = sizeof(*comp_rem) +
1668                      sizeof(*entry_rem) * (comp_cnt - count);
1669         offset_vic = sizeof(*comp_vic) + sizeof(*entry_vic) * count;
1670         for (i = j = k = 0; i < comp_cnt; i++) {
1671                 struct lov_mds_md *lmm, *lmm_dst;
1672                 bool vic = false;
1673
1674                 entry = &comp_v1->lcm_entries[i];
1675                 entry_vic = &comp_vic->lcm_entries[j];
1676                 entry_rem = &comp_rem->lcm_entries[k];
1677
1678                 if (mirror_id_of(le32_to_cpu(entry->lcme_id)) == mirror_id)
1679                         vic = true;
1680
1681                 /* copy component entry */
1682                 if (vic) {
1683                         memcpy(entry_vic, entry, sizeof(*entry));
1684                         entry_vic->lcme_flags &= cpu_to_le32(LCME_FL_INIT);
1685                         entry_vic->lcme_offset = cpu_to_le32(offset_vic);
1686                         j++;
1687                 } else {
1688                         memcpy(entry_rem, entry, sizeof(*entry));
1689                         entry_rem->lcme_offset = cpu_to_le32(offset_rem);
1690                         k++;
1691                 }
1692
1693                 lmm = (struct lov_mds_md *)((char *)comp_v1 + offset);
1694                 if (vic)
1695                         lmm_dst = (struct lov_mds_md *)
1696                                         ((char *)comp_vic + offset_vic);
1697                 else
1698                         lmm_dst = (struct lov_mds_md *)
1699                                         ((char *)comp_rem + offset_rem);
1700
1701                 /* copy component entry blob */
1702                 memcpy(lmm_dst, lmm, le32_to_cpu(entry->lcme_size));
1703
1704                 /* blob offset advance */
1705                 offset += le32_to_cpu(entry->lcme_size);
1706                 if (vic)
1707                         offset_vic += le32_to_cpu(entry->lcme_size);
1708                 else
1709                         offset_rem += le32_to_cpu(entry->lcme_size);
1710         }
1711
1712         return 0;
1713 }
1714
1715 static int mdd_xattr_split(const struct lu_env *env, struct md_object *md_obj,
1716                            struct md_rejig_data *mrd)
1717 {
1718         struct mdd_device *mdd = mdo2mdd(md_obj);
1719         struct mdd_object *obj = md2mdd_obj(md_obj);
1720         struct mdd_object *vic = md2mdd_obj(mrd->mrd_obj);
1721         struct lu_buf *buf = &mdd_env_info(env)->mti_buf[0];
1722         struct lu_buf *buf_save = &mdd_env_info(env)->mti_buf[1];
1723         struct lu_buf *buf_vic = &mdd_env_info(env)->mti_buf[2];
1724         struct lov_comp_md_v1 *lcm;
1725         struct thandle *handle;
1726         int rc;
1727         ENTRY;
1728
1729         rc = lu_fid_cmp(mdo2fid(obj), mdo2fid(vic));
1730         if (rc == 0) /* same fid */
1731                 RETURN(-EPERM);
1732
1733         handle = mdd_trans_create(env, mdd);
1734         if (IS_ERR(handle))
1735                 RETURN(PTR_ERR(handle));
1736
1737         if (rc > 0) {
1738                 mdd_write_lock(env, obj, MOR_TGT_CHILD);
1739                 mdd_write_lock(env, vic, MOR_TGT_CHILD);
1740         } else {
1741                 mdd_write_lock(env, vic, MOR_TGT_CHILD);
1742                 mdd_write_lock(env, obj, MOR_TGT_CHILD);
1743         }
1744
1745         /* get EA of mirrored file */
1746         memset(buf_save, 0, sizeof(*buf));
1747         rc = mdd_stripe_get(env, obj, buf_save, XATTR_NAME_LOV);
1748         if (rc < 0)
1749                 GOTO(out, rc);
1750
1751         lcm = buf_save->lb_buf;
1752         if (le32_to_cpu(lcm->lcm_magic) != LOV_MAGIC_COMP_V1)
1753                 GOTO(out, rc = -EINVAL);
1754
1755         /**
1756          * Extract the mirror with specified mirror id, and store the splitted
1757          * mirror layout to the victim file.
1758          */
1759         memset(buf, 0, sizeof(*buf));
1760         memset(buf_vic, 0, sizeof(*buf_vic));
1761         rc = mdd_split_ea(lcm, mrd->mrd_mirror_id, buf, buf_vic);
1762         if (rc < 0)
1763                 GOTO(out, rc);
1764
1765         rc = mdd_declare_xattr_set(env, mdd, obj, buf, XATTR_NAME_LOV,
1766                                    LU_XATTR_SPLIT, handle);
1767         if (rc)
1768                 GOTO(out, rc);
1769         rc = mdd_declare_xattr_set(env, mdd, vic, buf_vic, XATTR_NAME_LOV,
1770                                    LU_XATTR_SPLIT, handle);
1771         if (rc)
1772                 GOTO(out, rc);
1773
1774         rc = mdd_trans_start(env, mdd, handle);
1775         if (rc)
1776                 GOTO(out, rc);
1777
1778         rc = mdo_xattr_set(env, obj, buf, XATTR_NAME_LOV, LU_XATTR_REPLACE,
1779                            handle);
1780         if (rc)
1781                 GOTO(out, rc);
1782
1783         rc = mdo_xattr_set(env, vic, buf_vic, XATTR_NAME_LOV, LU_XATTR_CREATE,
1784                            handle);
1785         if (rc)
1786                 GOTO(out_restore, rc);
1787
1788         rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, obj, handle);
1789         if (rc)
1790                 GOTO(out, rc);
1791
1792         rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, vic, handle);
1793         if (rc)
1794                 GOTO(out, rc);
1795         EXIT;
1796
1797 out_restore:
1798         if (rc) {
1799                 /* restore obj's layout */
1800                 int rc2 = mdo_xattr_set(env, obj, buf_save, XATTR_NAME_LOV,
1801                                         LU_XATTR_REPLACE, handle);
1802                 if (rc2)
1803                         CERROR("%s: failed to rollback of layout of: "DFID
1804                                ": %d, file state unkonwn.\n",
1805                                mdd_obj_dev_name(obj), PFID(mdo2fid(obj)), rc2);
1806         }
1807 out:
1808         mdd_trans_stop(env, mdd, rc, handle);
1809         mdd_write_unlock(env, obj);
1810         mdd_write_unlock(env, vic);
1811         lu_buf_free(buf_save);
1812         lu_buf_free(buf);
1813         lu_buf_free(buf_vic);
1814
1815         if (!rc)
1816                 (void) mdd_object_pfid_replace(env, obj);
1817
1818         return rc;
1819 }
1820
1821 static int mdd_layout_merge_allowed(const struct lu_env *env,
1822                                     struct md_object *target,
1823                                     struct md_object *victim)
1824 {
1825         struct mdd_object *o1 = md2mdd_obj(target);
1826
1827         /* cannot extend directory's LOVEA */
1828         if (S_ISDIR(mdd_object_type(o1))) {
1829                 CERROR("%s: Don't extend directory's LOVEA, just set it.\n",
1830                        mdd_obj_dev_name(o1));
1831                 RETURN(-EISDIR);
1832         }
1833
1834         RETURN(0);
1835 }
1836
1837 /**
1838  * The caller should guarantee to update the object ctime
1839  * after xattr_set if needed.
1840  */
1841 static int mdd_xattr_set(const struct lu_env *env, struct md_object *obj,
1842                          const struct lu_buf *buf, const char *name,
1843                          int fl)
1844 {
1845         struct mdd_object *mdd_obj = md2mdd_obj(obj);
1846         struct lu_attr *attr = MDD_ENV_VAR(env, cattr);
1847         struct mdd_device *mdd = mdo2mdd(obj);
1848         struct thandle *handle;
1849         enum changelog_rec_type  cl_type;
1850         enum changelog_rec_flags clf_flags = 0;
1851         int rc;
1852         ENTRY;
1853
1854         rc = mdd_la_get(env, mdd_obj, attr);
1855         if (rc)
1856                 RETURN(rc);
1857
1858         rc = mdd_xattr_sanity_check(env, mdd_obj, attr, name);
1859         if (rc)
1860                 RETURN(rc);
1861
1862         if (strcmp(name, XATTR_LUSTRE_LOV) == 0 &&
1863             (fl == LU_XATTR_MERGE || fl == LU_XATTR_SPLIT)) {
1864                 struct md_rejig_data *mrd = buf->lb_buf;
1865                 struct md_object *victim = mrd->mrd_obj;
1866
1867                 if (buf->lb_len != sizeof(*mrd))
1868                         RETURN(-EINVAL);
1869
1870                 rc = mdd_layout_merge_allowed(env, obj, victim);
1871                 if (rc)
1872                         RETURN(rc);
1873
1874                 if (fl == LU_XATTR_MERGE)
1875                         /* merge layout of victim as a mirror of obj's. */
1876                         rc = mdd_xattr_merge(env, obj, victim);
1877                 else
1878                         rc = mdd_xattr_split(env, obj, mrd);
1879                 RETURN(rc);
1880         }
1881
1882         if (strcmp(name, XATTR_NAME_LMV) == 0) {
1883                 rc = mdd_dir_layout_shrink(env, obj, buf);
1884                 RETURN(rc);
1885         }
1886
1887         if (strcmp(name, XATTR_NAME_ACL_ACCESS) == 0 ||
1888             strcmp(name, XATTR_NAME_ACL_DEFAULT) == 0) {
1889                 struct posix_acl *acl;
1890
1891                 /* user may set empty ACL, which should be treated as removing
1892                  * ACL. */
1893                 acl = posix_acl_from_xattr(&init_user_ns, buf->lb_buf,
1894                                            buf->lb_len);
1895                 if (IS_ERR(acl))
1896                         RETURN(PTR_ERR(acl));
1897                 if (acl == NULL) {
1898                         rc = mdd_xattr_del(env, obj, name);
1899                         RETURN(rc);
1900                 }
1901                 posix_acl_release(acl);
1902         }
1903
1904         if (!strcmp(name, XATTR_NAME_ACL_ACCESS)) {
1905                 rc = mdd_acl_set(env, mdd_obj, attr, buf, fl);
1906                 RETURN(rc);
1907         }
1908
1909         handle = mdd_trans_create(env, mdd);
1910         if (IS_ERR(handle))
1911                 RETURN(PTR_ERR(handle));
1912
1913         rc = mdd_declare_xattr_set(env, mdd, mdd_obj, buf, name, fl, handle);
1914         if (rc)
1915                 GOTO(stop, rc);
1916
1917         rc = mdd_trans_start(env, mdd, handle);
1918         if (rc)
1919                 GOTO(stop, rc);
1920
1921         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
1922
1923         if (strcmp(XATTR_NAME_HSM, name) == 0) {
1924                 rc = mdd_hsm_update_locked(env, obj, buf, handle, &clf_flags);
1925                 if (rc) {
1926                         mdd_write_unlock(env, mdd_obj);
1927                         GOTO(stop, rc);
1928                 }
1929         }
1930
1931         rc = mdo_xattr_set(env, mdd_obj, buf, name, fl, handle);
1932         mdd_write_unlock(env, mdd_obj);
1933         if (rc)
1934                 GOTO(stop, rc);
1935
1936         cl_type = mdd_xattr_changelog_type(env, mdd, name);
1937         if (cl_type < 0)
1938                 GOTO(stop, rc = 0);
1939
1940         rc = mdd_changelog_data_store_xattr(env, mdd, cl_type, clf_flags,
1941                                             mdd_obj, name, handle);
1942
1943         EXIT;
1944 stop:
1945         return mdd_trans_stop(env, mdd, rc, handle);
1946 }
1947
1948 static int mdd_declare_xattr_del(const struct lu_env *env,
1949                                  struct mdd_device *mdd,
1950                                  struct mdd_object *obj,
1951                                  const char *name,
1952                                  struct thandle *handle)
1953 {
1954         enum changelog_rec_type type;
1955         int rc;
1956
1957         rc = mdo_declare_xattr_del(env, obj, name, handle);
1958         if (rc)
1959                 return rc;
1960
1961         type = mdd_xattr_changelog_type(env, mdd, name);
1962         if (type < 0)
1963                 return 0; /* no changelog to store */
1964
1965         return mdd_declare_changelog_store(env, mdd, type, NULL, NULL, handle);
1966 }
1967
1968 /**
1969  * The caller should guarantee to update the object ctime
1970  * after xattr_set if needed.
1971  */
1972 static int mdd_xattr_del(const struct lu_env *env, struct md_object *obj,
1973                          const char *name)
1974 {
1975         struct mdd_object *mdd_obj = md2mdd_obj(obj);
1976         struct lu_attr *attr = MDD_ENV_VAR(env, cattr);
1977         struct mdd_device *mdd = mdo2mdd(obj);
1978         struct thandle *handle;
1979         int rc;
1980         ENTRY;
1981
1982         rc = mdd_la_get(env, mdd_obj, attr);
1983         if (rc)
1984                 RETURN(rc);
1985
1986         rc = mdd_xattr_sanity_check(env, mdd_obj, attr, name);
1987         if (rc)
1988                 RETURN(rc);
1989
1990         handle = mdd_trans_create(env, mdd);
1991         if (IS_ERR(handle))
1992                 RETURN(PTR_ERR(handle));
1993
1994         rc = mdd_declare_xattr_del(env, mdd, mdd_obj, name, handle);
1995         if (rc)
1996                 GOTO(stop, rc);
1997
1998         rc = mdd_trans_start(env, mdd, handle);
1999         if (rc)
2000                 GOTO(stop, rc);
2001
2002         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
2003         rc = mdo_xattr_del(env, mdd_obj, name, handle);
2004         mdd_write_unlock(env, mdd_obj);
2005         if (rc)
2006                 GOTO(stop, rc);
2007
2008         if (mdd_xattr_changelog_type(env, mdd, name) < 0)
2009                 GOTO(stop, rc = 0);
2010
2011         rc = mdd_changelog_data_store_xattr(env, mdd, CL_SETXATTR, 0, mdd_obj,
2012                                             name, handle);
2013
2014         EXIT;
2015 stop:
2016         return mdd_trans_stop(env, mdd, rc, handle);
2017 }
2018
2019 /*
2020  * read lov/lmv EA of an object
2021  * return the lov/lmv EA in an allocated lu_buf
2022  */
2023 int mdd_stripe_get(const struct lu_env *env, struct mdd_object *obj,
2024                    struct lu_buf *lmm_buf, const char *name)
2025 {
2026         struct lu_buf *buf = &mdd_env_info(env)->mti_big_buf;
2027         int rc;
2028
2029         ENTRY;
2030
2031         if (buf->lb_buf == NULL) {
2032                 buf = lu_buf_check_and_alloc(buf, 4096);
2033                 if (buf->lb_buf == NULL)
2034                         RETURN(-ENOMEM);
2035         }
2036
2037 repeat:
2038         rc = mdo_xattr_get(env, obj, buf, name);
2039         if (rc == -ERANGE) {
2040                 /* mti_big_buf is allocated but is too small
2041                  * we need to increase it */
2042                 buf = lu_buf_check_and_alloc(&mdd_env_info(env)->mti_big_buf,
2043                                              buf->lb_len * 2);
2044                 if (buf->lb_buf == NULL)
2045                         RETURN(-ENOMEM);
2046                 goto repeat;
2047         } else if (rc < 0) {
2048                 RETURN(rc);
2049         } else if (rc == 0) {
2050                 RETURN(-ENODATA);
2051         }
2052
2053         lu_buf_alloc(lmm_buf, rc);
2054         if (lmm_buf->lb_buf == NULL)
2055                 RETURN(-ENOMEM);
2056
2057         /*
2058          * we don't use lmm_buf directly, because we don't know xattr size, so
2059          * by using mti_big_buf we can avoid calling mdo_xattr_get() twice.
2060          */
2061         memcpy(lmm_buf->lb_buf, buf->lb_buf, rc);
2062
2063         RETURN(0);
2064 }
2065
2066 static int mdd_xattr_hsm_replace(const struct lu_env *env,
2067                                  struct mdd_object *o, struct lu_buf *buf,
2068                                  struct thandle *handle)
2069 {
2070         struct hsm_attrs *attrs;
2071         enum hsm_states hsm_flags;
2072         enum changelog_rec_flags clf_flags = 0;
2073         int rc;
2074         ENTRY;
2075
2076         rc = mdo_xattr_set(env, o, buf, XATTR_NAME_HSM, LU_XATTR_REPLACE,
2077                            handle);
2078         if (rc != 0)
2079                 RETURN(rc);
2080
2081         attrs = buf->lb_buf;
2082         hsm_flags = le32_to_cpu(attrs->hsm_flags);
2083         if (!(hsm_flags & HS_RELEASED) || mdd_is_dead_obj(o))
2084                 RETURN(0);
2085
2086         /* Add a changelog record for release. */
2087         hsm_set_cl_event(&clf_flags, HE_RELEASE);
2088         rc = mdd_changelog_data_store(env, mdo2mdd(&o->mod_obj), CL_HSM,
2089                                       clf_flags, o, handle);
2090         RETURN(rc);
2091 }
2092
2093 /*
2094  *  check if layout swapping between 2 objects is allowed
2095  *  the rules are:
2096  *  - only normal FIDs or non-system IGIFs
2097  *  - same type of objects
2098  *  - same owner/group (so quotas are still valid) unless this is from HSM
2099  *    release.
2100  */
2101 static int mdd_layout_swap_allowed(const struct lu_env *env,
2102                                    struct mdd_object *o1,
2103                                    const struct lu_attr *attr1,
2104                                    struct mdd_object *o2,
2105                                    const struct lu_attr *attr2,
2106                                    __u64 flags)
2107 {
2108         const struct lu_fid     *fid1, *fid2;
2109         ENTRY;
2110
2111         fid1 = mdo2fid(o1);
2112         fid2 = mdo2fid(o2);
2113
2114         if (!fid_is_norm(fid1) &&
2115             (!fid_is_igif(fid1) || IS_ERR(mdd_links_get(env, o1))))
2116                 RETURN(-EBADF);
2117
2118         if (!fid_is_norm(fid2) &&
2119             (!fid_is_igif(fid2) || IS_ERR(mdd_links_get(env, o2))))
2120                 RETURN(-EBADF);
2121
2122         if (mdd_object_type(o1) != mdd_object_type(o2)) {
2123                 if (S_ISDIR(mdd_object_type(o1)))
2124                         RETURN(-ENOTDIR);
2125                 if (S_ISREG(mdd_object_type(o1)))
2126                         RETURN(-EISDIR);
2127                 RETURN(-EBADF);
2128         }
2129
2130         if (flags & SWAP_LAYOUTS_MDS_HSM)
2131                 RETURN(0);
2132
2133         if ((attr1->la_uid != attr2->la_uid) ||
2134             (attr1->la_gid != attr2->la_gid))
2135                 RETURN(-EPERM);
2136
2137         RETURN(0);
2138 }
2139
2140 /* XXX To set the proper lmm_oi & lmm_layout_gen when swap layouts, we have to
2141  *     look into the layout in MDD layer. */
2142 static int mdd_lmm_oi(struct lov_mds_md *lmm, struct ost_id *oi, bool get)
2143 {
2144         struct lov_comp_md_v1   *comp_v1;
2145         struct lov_mds_md       *v1;
2146         int                      i, ent_count;
2147         __u32                    off;
2148
2149         if (le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_COMP_V1) {
2150                 comp_v1 = (struct lov_comp_md_v1 *)lmm;
2151                 ent_count = le16_to_cpu(comp_v1->lcm_entry_count);
2152
2153                 if (ent_count == 0)
2154                         return -EINVAL;
2155
2156                 if (get) {
2157                         off = le32_to_cpu(comp_v1->lcm_entries[0].lcme_offset);
2158                         v1 = (struct lov_mds_md *)((char *)comp_v1 + off);
2159                         *oi = v1->lmm_oi;
2160                 } else {
2161                         for (i = 0; i < le32_to_cpu(ent_count); i++) {
2162                                 off = le32_to_cpu(comp_v1->lcm_entries[i].
2163                                                 lcme_offset);
2164                                 v1 = (struct lov_mds_md *)((char *)comp_v1 +
2165                                                 off);
2166                                 v1->lmm_oi = *oi;
2167                         }
2168                 }
2169         } else if (le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_V1 ||
2170                    le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_V3) {
2171                 if (get)
2172                         *oi = lmm->lmm_oi;
2173                 else
2174                         lmm->lmm_oi = *oi;
2175         } else {
2176                 return -EINVAL;
2177         }
2178         return 0;
2179 }
2180
2181 static inline int mdd_get_lmm_oi(struct lov_mds_md *lmm, struct ost_id *oi)
2182 {
2183         return mdd_lmm_oi(lmm, oi, true);
2184 }
2185
2186 static inline int mdd_set_lmm_oi(struct lov_mds_md *lmm, struct ost_id *oi)
2187 {
2188         return mdd_lmm_oi(lmm, oi, false);
2189 }
2190
2191 static int mdd_lmm_gen(struct lov_mds_md *lmm, __u32 *gen, bool get)
2192 {
2193         struct lov_comp_md_v1 *comp_v1;
2194
2195         if (le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_COMP_V1) {
2196                 comp_v1 = (struct lov_comp_md_v1 *)lmm;
2197                 if (get)
2198                         *gen = le32_to_cpu(comp_v1->lcm_layout_gen);
2199                 else
2200                         comp_v1->lcm_layout_gen = cpu_to_le32(*gen);
2201         } else if (le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_V1 ||
2202                    le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_V3) {
2203                 __u16 tmp_gen = *gen;
2204                 if (get)
2205                         *gen = le16_to_cpu(lmm->lmm_layout_gen);
2206                 else
2207                         lmm->lmm_layout_gen = cpu_to_le16(tmp_gen);
2208         } else {
2209                 return -EINVAL;
2210         }
2211         return 0;
2212 }
2213
2214 static inline int mdd_get_lmm_gen(struct lov_mds_md *lmm, __u32 *gen)
2215 {
2216         return mdd_lmm_gen(lmm, gen, true);
2217 }
2218
2219 static inline int mdd_set_lmm_gen(struct lov_mds_md *lmm, __u32 *gen)
2220 {
2221         return mdd_lmm_gen(lmm, gen, false);
2222 }
2223
2224 static int mdd_dom_data_truncate(const struct lu_env *env,
2225                                  struct mdd_device *mdd, struct mdd_object *mo)
2226 {
2227         struct thandle *th;
2228         struct dt_object *dom;
2229         int rc;
2230
2231         dom = dt_object_locate(mdd_object_child(mo), mdd->mdd_bottom);
2232         if (!dom)
2233                 GOTO(out, rc = -ENODATA);
2234
2235         th = dt_trans_create(env, mdd->mdd_bottom);
2236         if (IS_ERR(th))
2237                 GOTO(out, rc = PTR_ERR(th));
2238
2239         rc = dt_declare_punch(env, dom, 0, OBD_OBJECT_EOF, th);
2240         if (rc)
2241                 GOTO(stop, rc);
2242
2243         rc = dt_trans_start_local(env, mdd->mdd_bottom, th);
2244         if (rc != 0)
2245                 GOTO(stop, rc);
2246
2247         rc = dt_punch(env, dom, 0, OBD_OBJECT_EOF, th);
2248 stop:
2249         dt_trans_stop(env, mdd->mdd_bottom, th);
2250 out:
2251         /* Ignore failure but report the error */
2252         if (rc)
2253                 CERROR("%s: "DFID" can't truncate DOM inode data, rc = %d\n",
2254                        mdd_obj_dev_name(mo), PFID(mdo2fid(mo)), rc);
2255         return rc;
2256 }
2257
2258 /**
2259  * swap layouts between 2 lustre objects
2260  */
2261 static int mdd_swap_layouts(const struct lu_env *env, struct md_object *obj1,
2262                             struct md_object *obj2, __u64 flags)
2263 {
2264         struct mdd_thread_info *info = mdd_env_info(env);
2265         struct mdd_object *fst_o = md2mdd_obj(obj1);
2266         struct mdd_object *snd_o = md2mdd_obj(obj2);
2267         struct lu_attr *fst_la = MDD_ENV_VAR(env, cattr);
2268         struct lu_attr *snd_la = MDD_ENV_VAR(env, tattr);
2269         struct mdd_device *mdd = mdo2mdd(obj1);
2270         struct lov_mds_md *fst_lmm, *snd_lmm;
2271         struct lu_buf *fst_buf = &info->mti_buf[0];
2272         struct lu_buf *snd_buf = &info->mti_buf[1];
2273         struct lu_buf *fst_hsm_buf = &info->mti_buf[2];
2274         struct lu_buf *snd_hsm_buf = &info->mti_buf[3];
2275         struct ost_id *saved_oi = NULL;
2276         struct thandle *handle;
2277         struct mdd_object *dom_o = NULL;
2278         __u64 domsize_dom, domsize_vlt;
2279         __u32 fst_gen, snd_gen, saved_gen;
2280         int fst_fl;
2281         int rc, rc2;
2282
2283         ENTRY;
2284
2285         CLASSERT(ARRAY_SIZE(info->mti_buf) >= 4);
2286         memset(info->mti_buf, 0, sizeof(info->mti_buf));
2287
2288         /* we have to sort the 2 obj, so locking will always
2289          * be in the same order, even in case of 2 concurrent swaps */
2290         rc = lu_fid_cmp(mdo2fid(fst_o), mdo2fid(snd_o));
2291         if (rc == 0) /* same fid ? */
2292                 RETURN(-EPERM);
2293
2294         if (rc < 0)
2295                 swap(fst_o, snd_o);
2296
2297         rc = mdd_la_get(env, fst_o, fst_la);
2298         if (rc != 0)
2299                 RETURN(rc);
2300
2301         rc = mdd_la_get(env, snd_o, snd_la);
2302         if (rc != 0)
2303                 RETURN(rc);
2304
2305         /* check if layout swapping is allowed */
2306         rc = mdd_layout_swap_allowed(env, fst_o, fst_la, snd_o, snd_la, flags);
2307         if (rc != 0)
2308                 RETURN(rc);
2309
2310         handle = mdd_trans_create(env, mdd);
2311         if (IS_ERR(handle))
2312                 RETURN(PTR_ERR(handle));
2313
2314         /* objects are already sorted */
2315         mdd_write_lock(env, fst_o, MOR_TGT_CHILD);
2316         mdd_write_lock(env, snd_o, MOR_TGT_CHILD);
2317
2318         rc = mdd_stripe_get(env, fst_o, fst_buf, XATTR_NAME_LOV);
2319         if (rc < 0 && rc != -ENODATA)
2320                 GOTO(stop, rc);
2321
2322         rc = mdd_stripe_get(env, snd_o, snd_buf, XATTR_NAME_LOV);
2323         if (rc < 0 && rc != -ENODATA)
2324                 GOTO(stop, rc);
2325
2326         /* check if file has DoM. DoM file can be migrated only to another
2327          * DoM layout with the same DoM component size or to an non-DOM
2328          * layout. After migration to OSTs layout, local MDT inode data
2329          * should be truncated.
2330          * Objects are sorted by FIDs, considering that original file's FID
2331          * is always smaller the snd_o is always original file we are migrating
2332          * from.
2333          */
2334         domsize_dom = mdd_lmm_dom_size(snd_buf->lb_buf);
2335         domsize_vlt = mdd_lmm_dom_size(fst_buf->lb_buf);
2336
2337         /* Only migration is supported for DoM files, not 'swap_layouts' so
2338          * target file must be volatile and orphan.
2339          */
2340         if (fst_o->mod_flags & (ORPHAN_OBJ | VOLATILE_OBJ)) {
2341                 dom_o = domsize_dom ? snd_o : NULL;
2342         } else if (snd_o->mod_flags & (ORPHAN_OBJ | VOLATILE_OBJ)) {
2343                 swap(domsize_dom, domsize_vlt);
2344                 dom_o = domsize_dom ? fst_o : NULL;
2345         } else if (domsize_dom > 0 || domsize_vlt > 0) {
2346                 /* 'lfs swap_layouts' case, neither file should have DoM */
2347                 rc = -EOPNOTSUPP;
2348                 CDEBUG(D_LAYOUT, "cannot swap layouts with DOM component, "
2349                        "use migration instead: rc = %d\n", rc);
2350                 GOTO(stop, rc);
2351         }
2352
2353         if (domsize_vlt > 0 && domsize_dom == 0) {
2354                 rc = -EOPNOTSUPP;
2355                 CDEBUG(D_LAYOUT, "cannot swap layout for "DFID": OST to DOM "
2356                        "migration is not supported: rc = %d\n",
2357                        PFID(mdo2fid(snd_o)), rc);
2358                 GOTO(stop, rc);
2359         } else if (domsize_vlt > 0 && domsize_dom != domsize_vlt) {
2360                 rc = -EOPNOTSUPP;
2361                 CDEBUG(D_LAYOUT, "cannot swap layout for "DFID": new layout "
2362                        "must have the same DoM component size: rc = %d\n",
2363                        PFID(mdo2fid(fst_o)), rc);
2364                 GOTO(stop, rc);
2365         } else if (domsize_vlt > 0) {
2366                 /* Migration with the same DOM component size, no need to
2367                  * truncate local data, it is still being used */
2368                 dom_o = NULL;
2369         }
2370
2371         /* swapping 2 non existant layouts is a success */
2372         if (fst_buf->lb_buf == NULL && snd_buf->lb_buf == NULL)
2373                 GOTO(stop, rc = 0);
2374
2375         /* to help inode migration between MDT, it is better to
2376          * start by the no layout file (if one), so we order the swap */
2377         if (snd_buf->lb_buf == NULL) {
2378                 swap(fst_o, snd_o);
2379                 swap(fst_buf, snd_buf);
2380         }
2381
2382         fst_gen = snd_gen = 0;
2383         /* lmm and generation layout initialization */
2384         if (fst_buf->lb_buf != NULL) {
2385                 fst_lmm = fst_buf->lb_buf;
2386                 mdd_get_lmm_gen(fst_lmm, &fst_gen);
2387                 fst_fl  = LU_XATTR_REPLACE;
2388         } else {
2389                 fst_lmm = NULL;
2390                 fst_gen = 0;
2391                 fst_fl  = LU_XATTR_CREATE;
2392         }
2393
2394         snd_lmm = snd_buf->lb_buf;
2395         mdd_get_lmm_gen(snd_lmm, &snd_gen);
2396
2397         saved_gen = fst_gen;
2398         /* increase the generation layout numbers */
2399         snd_gen++;
2400         fst_gen++;
2401
2402         /*
2403          * XXX The layout generation is used to generate component IDs for
2404          *     the composite file, we have to do some special tweaks to make
2405          *     sure the layout generation is always adequate for that job.
2406          */
2407
2408         /* Skip invalid generation number for composite layout */
2409         if ((snd_gen & LCME_ID_MASK) == 0)
2410                 snd_gen++;
2411         if ((fst_gen & LCME_ID_MASK) == 0)
2412                 fst_gen++;
2413         /* Make sure the generation is greater than all the component IDs */
2414         if (fst_gen < snd_gen)
2415                 fst_gen = snd_gen;
2416         else if (fst_gen > snd_gen)
2417                 snd_gen = fst_gen;
2418
2419         /* set the file specific informations in lmm */
2420         if (fst_lmm != NULL) {
2421                 saved_oi = &info->mti_oa.o_oi;
2422                 mdd_get_lmm_oi(fst_lmm, saved_oi);
2423                 mdd_set_lmm_gen(fst_lmm, &snd_gen);
2424                 mdd_set_lmm_oi(fst_lmm, &snd_lmm->lmm_oi);
2425                 mdd_set_lmm_oi(snd_lmm, saved_oi);
2426         } else {
2427                 if ((snd_lmm->lmm_magic & cpu_to_le32(LOV_MAGIC_MASK)) ==
2428                     cpu_to_le32(LOV_MAGIC_MAGIC))
2429                         snd_lmm->lmm_magic |= cpu_to_le32(LOV_MAGIC_DEFINED);
2430                 else
2431                         GOTO(stop, rc = -EPROTO);
2432         }
2433         mdd_set_lmm_gen(snd_lmm, &fst_gen);
2434
2435         /* Prepare HSM attribute if it's required */
2436         if (flags & SWAP_LAYOUTS_MDS_HSM) {
2437                 const int buflen = sizeof(struct hsm_attrs);
2438
2439                 lu_buf_alloc(fst_hsm_buf, buflen);
2440                 lu_buf_alloc(snd_hsm_buf, buflen);
2441                 if (fst_hsm_buf->lb_buf == NULL || snd_hsm_buf->lb_buf == NULL)
2442                         GOTO(stop, rc = -ENOMEM);
2443
2444                 /* Read HSM attribute */
2445                 rc = mdo_xattr_get(env, fst_o, fst_hsm_buf, XATTR_NAME_HSM);
2446                 if (rc < 0)
2447                         GOTO(stop, rc);
2448
2449                 rc = mdo_xattr_get(env, snd_o, snd_hsm_buf, XATTR_NAME_HSM);
2450                 if (rc < 0)
2451                         GOTO(stop, rc);
2452
2453                 rc = mdd_declare_xattr_set(env, mdd, fst_o, snd_hsm_buf,
2454                                            XATTR_NAME_HSM, LU_XATTR_REPLACE,
2455                                            handle);
2456                 if (rc < 0)
2457                         GOTO(stop, rc);
2458
2459                 rc = mdd_declare_xattr_set(env, mdd, snd_o, fst_hsm_buf,
2460                                            XATTR_NAME_HSM, LU_XATTR_REPLACE,
2461                                            handle);
2462                 if (rc < 0)
2463                         GOTO(stop, rc);
2464         }
2465
2466         /* prepare transaction */
2467         rc = mdd_declare_xattr_set(env, mdd, fst_o, snd_buf, XATTR_NAME_LOV,
2468                                    fst_fl, handle);
2469         if (rc != 0)
2470                 GOTO(stop, rc);
2471
2472         if (fst_buf->lb_buf != NULL)
2473                 rc = mdd_declare_xattr_set(env, mdd, snd_o, fst_buf,
2474                                            XATTR_NAME_LOV, LU_XATTR_REPLACE,
2475                                            handle);
2476         else
2477                 rc = mdd_declare_xattr_del(env, mdd, snd_o, XATTR_NAME_LOV,
2478                                            handle);
2479         if (rc != 0)
2480                 GOTO(stop, rc);
2481
2482         rc = mdd_trans_start(env, mdd, handle);
2483         if (rc != 0)
2484                 GOTO(stop, rc);
2485
2486         if (flags & SWAP_LAYOUTS_MDS_HSM) {
2487                 rc = mdd_xattr_hsm_replace(env, fst_o, snd_hsm_buf, handle);
2488                 if (rc < 0)
2489                         GOTO(stop, rc);
2490
2491                 rc = mdd_xattr_hsm_replace(env, snd_o, fst_hsm_buf, handle);
2492                 if (rc < 0) {
2493                         rc2 = mdd_xattr_hsm_replace(env, fst_o, fst_hsm_buf,
2494                                                     handle);
2495                         if (rc2 < 0)
2496                                 CERROR("%s: restore "DFID" HSM error: %d/%d\n",
2497                                        mdd_obj_dev_name(fst_o),
2498                                        PFID(mdo2fid(fst_o)), rc, rc2);
2499                         GOTO(stop, rc);
2500                 }
2501         }
2502
2503         rc = mdo_xattr_set(env, fst_o, snd_buf, XATTR_NAME_LOV, fst_fl, handle);
2504         if (rc != 0)
2505                 GOTO(stop, rc);
2506
2507         if (unlikely(OBD_FAIL_CHECK(OBD_FAIL_MDS_HSM_SWAP_LAYOUTS))) {
2508                 rc = -EOPNOTSUPP;
2509         } else {
2510                 if (fst_buf->lb_buf != NULL)
2511                         rc = mdo_xattr_set(env, snd_o, fst_buf, XATTR_NAME_LOV,
2512                                            LU_XATTR_REPLACE, handle);
2513                 else
2514                         rc = mdo_xattr_del(env, snd_o, XATTR_NAME_LOV, handle);
2515         }
2516         if (rc != 0)
2517                 GOTO(out_restore, rc);
2518
2519         /* Issue one changelog record per file */
2520         rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, fst_o, handle);
2521         if (rc)
2522                 GOTO(stop, rc);
2523
2524         rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, snd_o, handle);
2525         if (rc)
2526                 GOTO(stop, rc);
2527         EXIT;
2528
2529 out_restore:
2530         if (rc != 0) {
2531                 int steps = 0;
2532
2533                 /* failure on second file, but first was done, so we have
2534                  * to roll back first. */
2535                 if (fst_buf->lb_buf != NULL) {
2536                         mdd_set_lmm_oi(fst_lmm, saved_oi);
2537                         mdd_set_lmm_gen(fst_lmm, &saved_gen);
2538                         rc2 = mdo_xattr_set(env, fst_o, fst_buf, XATTR_NAME_LOV,
2539                                             LU_XATTR_REPLACE, handle);
2540                 } else {
2541                         rc2 = mdo_xattr_del(env, fst_o, XATTR_NAME_LOV, handle);
2542                 }
2543                 if (rc2 < 0)
2544                         goto do_lbug;
2545
2546                 ++steps;
2547                 rc2 = mdd_xattr_hsm_replace(env, fst_o, fst_hsm_buf, handle);
2548                 if (rc2 < 0)
2549                         goto do_lbug;
2550
2551                 ++steps;
2552                 rc2 = mdd_xattr_hsm_replace(env, snd_o, snd_hsm_buf, handle);
2553
2554         do_lbug:
2555                 if (rc2 < 0) {
2556                         /* very bad day */
2557                         CERROR("%s: unable to roll back layout swap. FIDs: "
2558                                DFID" and "DFID "error: %d/%d, steps: %d\n",
2559                                mdd_obj_dev_name(fst_o),
2560                                PFID(mdo2fid(snd_o)), PFID(mdo2fid(fst_o)),
2561                                rc, rc2, steps);
2562                         /* a solution to avoid journal commit is to panic,
2563                          * but it has strong consequences so we use LBUG to
2564                          * allow sysdamin to choose to panic or not
2565                          */
2566                         LBUG();
2567                 }
2568         }
2569
2570 stop:
2571         rc = mdd_trans_stop(env, mdd, rc, handle);
2572
2573         /* Truncate local DOM data if all went well */
2574         if (!rc && dom_o)
2575                 mdd_dom_data_truncate(env, mdd, dom_o);
2576
2577         mdd_write_unlock(env, snd_o);
2578         mdd_write_unlock(env, fst_o);
2579
2580         lu_buf_free(fst_buf);
2581         lu_buf_free(snd_buf);
2582         lu_buf_free(fst_hsm_buf);
2583         lu_buf_free(snd_hsm_buf);
2584
2585         if (!rc) {
2586                 (void) mdd_object_pfid_replace(env, fst_o);
2587                 (void) mdd_object_pfid_replace(env, snd_o);
2588         }
2589         return rc;
2590 }
2591
2592 static int mdd_declare_layout_change(const struct lu_env *env,
2593                                      struct mdd_device *mdd,
2594                                      struct mdd_object *obj,
2595                                      struct md_layout_change *mlc,
2596                                      struct thandle *handle)
2597 {
2598         int rc;
2599
2600         rc = mdo_declare_layout_change(env, obj, mlc, handle);
2601         if (rc)
2602                 return rc;
2603
2604         return mdd_declare_changelog_store(env, mdd, CL_LAYOUT, NULL, NULL,
2605                                            handle);
2606 }
2607
2608 /* For PFL, this is used to instantiate necessary component objects. */
2609 static int
2610 mdd_layout_instantiate_component(const struct lu_env *env,
2611                 struct mdd_object *obj, struct md_layout_change *mlc,
2612                 struct thandle *handle)
2613 {
2614         struct mdd_device *mdd = mdd_obj2mdd_dev(obj);
2615         int rc;
2616         ENTRY;
2617
2618         if (mlc->mlc_opc != MD_LAYOUT_WRITE)
2619                 RETURN(-ENOTSUPP);
2620
2621         rc = mdd_declare_layout_change(env, mdd, obj, mlc, handle);
2622         /**
2623          * It's possible that another layout write intent has already
2624          * instantiated our objects, so a -EALREADY returned, and we need to
2625          * do nothing.
2626          */
2627         if (rc)
2628                 RETURN(rc == -EALREADY ? 0 : rc);
2629
2630         rc = mdd_trans_start(env, mdd, handle);
2631         if (rc)
2632                 RETURN(rc);
2633
2634         mdd_write_lock(env, obj, MOR_TGT_CHILD);
2635         rc = mdo_layout_change(env, obj, mlc, handle);
2636         mdd_write_unlock(env, obj);
2637         if (rc)
2638                 RETURN(rc);
2639
2640         rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, obj, handle);
2641         RETURN(rc);
2642 }
2643
2644 /**
2645  * Change the FLR layout from RDONLY to WRITE_PENDING.
2646  *
2647  * It picks the primary mirror, and bumps the layout version, and set
2648  * layout version xattr to OST objects in a sync tx. In order to facilitate
2649  * the handling of phantom writers from evicted clients, the clients carry
2650  * layout version of the file with write RPC, so that the OSTs can verify
2651  * if the write RPCs are legitimate, meaning not from evicted clients.
2652  */
2653 static int
2654 mdd_layout_update_rdonly(const struct lu_env *env, struct mdd_object *obj,
2655                          struct md_layout_change *mlc, struct thandle *handle)
2656 {
2657         struct mdd_device *mdd = mdd_obj2mdd_dev(obj);
2658         struct lu_buf *som_buf = &mdd_env_info(env)->mti_buf[1];
2659         struct lustre_som_attrs *som = &mlc->mlc_som;
2660         int fl = 0;
2661         int rc;
2662         ENTRY;
2663
2664         /* Verify acceptable operations */
2665         switch (mlc->mlc_opc) {
2666         case MD_LAYOUT_WRITE:
2667         case MD_LAYOUT_RESYNC:
2668                 /* these are legal operations - this represents the case that
2669                  * a few mirrors were missed in the last resync. */
2670                 break;
2671         case MD_LAYOUT_RESYNC_DONE:
2672         default:
2673                 RETURN(0);
2674         }
2675
2676         som_buf->lb_buf = som;
2677         som_buf->lb_len = sizeof(*som);
2678         rc = mdo_xattr_get(env, obj, som_buf, XATTR_NAME_SOM);
2679         if (rc < 0 && rc != -ENODATA)
2680                 RETURN(rc);
2681
2682         if (rc > 0) {
2683                 lustre_som_swab(som);
2684                 if (som->lsa_valid & SOM_FL_STRICT)
2685                         fl = LU_XATTR_REPLACE;
2686         }
2687
2688         rc = mdd_declare_layout_change(env, mdd, obj, mlc, handle);
2689         if (rc)
2690                 GOTO(out, rc);
2691
2692         if (fl) {
2693                 rc = mdd_declare_xattr_set(env, mdd, obj, som_buf,
2694                                            XATTR_NAME_SOM, fl, handle);
2695                 if (rc)
2696                         GOTO(out, rc);
2697         }
2698
2699         /* record a changelog for data mover to consume */
2700         rc = mdd_declare_changelog_store(env, mdd, CL_FLRW, NULL, NULL, handle);
2701         if (rc)
2702                 GOTO(out, rc);
2703
2704         rc = mdd_trans_start(env, mdd, handle);
2705         if (rc)
2706                 GOTO(out, rc);
2707
2708         /* it needs a sync tx to make FLR to work properly */
2709         handle->th_sync = 1;
2710
2711         mdd_write_lock(env, obj, MOR_TGT_CHILD);
2712         rc = mdo_layout_change(env, obj, mlc, handle);
2713         if (!rc && fl) {
2714                 /* SOM state transition from STRICT to STALE */
2715                 som->lsa_valid = SOM_FL_STALE;
2716                 lustre_som_swab(som);
2717                 rc = mdo_xattr_set(env, obj, som_buf, XATTR_NAME_SOM,
2718                                    fl, handle);
2719         }
2720         mdd_write_unlock(env, obj);
2721         if (rc)
2722                 GOTO(out, rc);
2723
2724         rc = mdd_changelog_data_store(env, mdd, CL_FLRW, 0, obj, handle);
2725         if (rc)
2726                 GOTO(out, rc);
2727
2728         EXIT;
2729
2730 out:
2731         return rc;
2732 }
2733
2734 /**
2735  * Handle mirrored file state transition when it's in WRITE_PENDING.
2736  *
2737  * Only MD_LAYOUT_RESYNC, which represents start of resync, is allowed when
2738  * the file is in WRITE_PENDING state. If everything goes fine, the file's
2739  * layout version will be increased, and the file's state will be changed to
2740  * SYNC_PENDING.
2741  */
2742 static int
2743 mdd_layout_update_write_pending(const struct lu_env *env,
2744                 struct mdd_object *obj, struct md_layout_change *mlc,
2745                 struct thandle *handle)
2746 {
2747         struct mdd_device *mdd = mdd_obj2mdd_dev(obj);
2748         int rc;
2749         ENTRY;
2750
2751         switch (mlc->mlc_opc) {
2752         case MD_LAYOUT_RESYNC:
2753                 /* Upon receiving the resync request, it should
2754                  * instantiate all stale components right away to get ready
2755                  * for mirror copy. In order to avoid layout version change,
2756                  * client should avoid sending LAYOUT_WRITE request at the
2757                  * resync state. */
2758                 break;
2759         case MD_LAYOUT_WRITE:
2760                 /* legal race for concurrent write, the file state has been
2761                  * changed by another client. */
2762                 break;
2763         default:
2764                 RETURN(-EBUSY);
2765         }
2766
2767         rc = mdd_declare_layout_change(env, mdd, obj, mlc, handle);
2768         if (rc)
2769                 GOTO(out, rc);
2770
2771         rc = mdd_trans_start(env, mdd, handle);
2772         if (rc)
2773                 GOTO(out, rc);
2774
2775         /* it needs a sync tx to make FLR to work properly */
2776         handle->th_sync = 1;
2777
2778         mdd_write_lock(env, obj, MOR_TGT_CHILD);
2779         rc = mdo_layout_change(env, obj, mlc, handle);
2780         mdd_write_unlock(env, obj);
2781         if (rc)
2782                 GOTO(out, rc);
2783
2784         EXIT;
2785
2786 out:
2787         return rc;
2788 }
2789
2790 /**
2791  * Handle the requests when a FLR file's state is in SYNC_PENDING.
2792  *
2793  * Only concurrent write and sync complete requests are possible when the
2794  * file is in SYNC_PENDING. For the latter request, it will pass in the
2795  * mirrors that have been synchronized, then the stale bit will be cleared
2796  * to make the file's state turn into RDONLY.
2797  * For concurrent write reqeust, it just needs to change the file's state
2798  * to WRITE_PENDING in a sync tx. It doesn't have to change the layout
2799  * version because the version will be increased in the transition to
2800  * SYNC_PENDING later so that it can deny the write request from potential
2801  * evicted SYNC clients. */
2802 static int
2803 mdd_object_update_sync_pending(const struct lu_env *env, struct mdd_object *obj,
2804                 struct md_layout_change *mlc, struct thandle *handle)
2805 {
2806         struct mdd_device *mdd = mdd_obj2mdd_dev(obj);
2807         struct lu_buf *som_buf = &mdd_env_info(env)->mti_buf[1];
2808         int fl = 0;
2809         int rc;
2810         ENTRY;
2811
2812         /* operation validation */
2813         switch (mlc->mlc_opc) {
2814         case MD_LAYOUT_RESYNC_DONE:
2815                 /* resync complete. */
2816         case MD_LAYOUT_WRITE:
2817                 /* concurrent write. */
2818                 break;
2819         case MD_LAYOUT_RESYNC:
2820                 /* resync again, most likely the previous run failed.
2821                  * no-op if it's already in SYNC_PENDING state */
2822                 RETURN(0);
2823         default:
2824                 RETURN(-EBUSY);
2825         }
2826
2827         if (mlc->mlc_som.lsa_valid & SOM_FL_STRICT) {
2828                 rc = mdo_xattr_get(env, obj, &LU_BUF_NULL, XATTR_NAME_SOM);
2829                 if (rc < 0 && rc != -ENODATA)
2830                         RETURN(rc);
2831
2832                 fl = rc == -ENODATA ? LU_XATTR_CREATE : LU_XATTR_REPLACE;
2833                 lustre_som_swab(&mlc->mlc_som);
2834                 som_buf->lb_buf = &mlc->mlc_som;
2835                 som_buf->lb_len = sizeof(mlc->mlc_som);
2836         }
2837
2838         rc = mdd_declare_layout_change(env, mdd, obj, mlc, handle);
2839         if (rc)
2840                 GOTO(out, rc);
2841
2842         /* record a changelog for the completion of resync */
2843         rc = mdd_declare_changelog_store(env, mdd, CL_RESYNC, NULL, NULL,
2844                                          handle);
2845         if (rc)
2846                 GOTO(out, rc);
2847
2848         /* RESYNC_DONE has piggybacked size and blocks */
2849         if (fl) {
2850                 rc = mdd_declare_xattr_set(env, mdd, obj, som_buf,
2851                                            XATTR_NAME_SOM, fl, handle);
2852                 if (rc)
2853                         GOTO(out, rc);
2854         }
2855
2856         rc = mdd_trans_start(env, mdd, handle);
2857         if (rc)
2858                 GOTO(out, rc);
2859
2860         /* it needs a sync tx to make FLR to work properly */
2861         handle->th_sync = 1;
2862
2863         rc = mdo_layout_change(env, obj, mlc, handle);
2864         if (rc)
2865                 GOTO(out, rc);
2866
2867         if (fl) {
2868                 rc = mdo_xattr_set(env, obj, som_buf, XATTR_NAME_SOM,
2869                                    fl, handle);
2870                 if (rc)
2871                         GOTO(out, rc);
2872         }
2873
2874         rc = mdd_changelog_data_store(env, mdd, CL_RESYNC, 0, obj, handle);
2875         if (rc)
2876                 GOTO(out, rc);
2877         EXIT;
2878 out:
2879         return rc;
2880 }
2881
2882 /**
2883  * Layout change callback for object.
2884  *
2885  * This is only used by FLR for now. In the future, it can be exteneded to
2886  * handle all layout change.
2887  */
2888 static int
2889 mdd_layout_change(const struct lu_env *env, struct md_object *o,
2890                   struct md_layout_change *mlc)
2891 {
2892         struct mdd_object       *obj = md2mdd_obj(o);
2893         struct mdd_device       *mdd = mdd_obj2mdd_dev(obj);
2894         struct lu_buf           *buf = mdd_buf_get(env, NULL, 0);
2895         struct lov_comp_md_v1   *lcm;
2896         struct thandle          *handle;
2897         int flr_state;
2898         int rc;
2899         ENTRY;
2900
2901         /* Verify acceptable operations */
2902         switch (mlc->mlc_opc) {
2903         case MD_LAYOUT_WRITE:
2904         case MD_LAYOUT_RESYNC:
2905         case MD_LAYOUT_RESYNC_DONE:
2906                 break;
2907         default:
2908                 RETURN(-ENOTSUPP);
2909         }
2910
2911         handle = mdd_trans_create(env, mdd);
2912         if (IS_ERR(handle))
2913                 RETURN(PTR_ERR(handle));
2914
2915         rc = mdd_stripe_get(env, obj, buf, XATTR_NAME_LOV);
2916         if (rc < 0) {
2917                 if (rc == -ENODATA)
2918                         rc = -EINVAL;
2919                 GOTO(out, rc);
2920         }
2921
2922         /* analyze the layout to make sure it's a FLR file */
2923         lcm = buf->lb_buf;
2924         if (le32_to_cpu(lcm->lcm_magic) != LOV_MAGIC_COMP_V1)
2925                 GOTO(out, rc = -EINVAL);
2926
2927         flr_state = le16_to_cpu(lcm->lcm_flags) & LCM_FL_FLR_MASK;
2928
2929         /* please refer to HLD of FLR for state transition */
2930         switch (flr_state) {
2931         case LCM_FL_NONE:
2932                 rc = mdd_layout_instantiate_component(env, obj, mlc, handle);
2933                 break;
2934         case LCM_FL_WRITE_PENDING:
2935                 rc = mdd_layout_update_write_pending(env, obj, mlc, handle);
2936                 break;
2937         case LCM_FL_RDONLY:
2938                 rc = mdd_layout_update_rdonly(env, obj, mlc, handle);
2939                 break;
2940         case LCM_FL_SYNC_PENDING:
2941                 rc = mdd_object_update_sync_pending(env, obj, mlc, handle);
2942                 break;
2943         default:
2944                 rc = 0;
2945                 break;
2946         }
2947         EXIT;
2948
2949 out:
2950         mdd_trans_stop(env, mdd, rc, handle);
2951         lu_buf_free(buf);
2952         return rc;
2953 }
2954
2955 void mdd_object_make_hint(const struct lu_env *env, struct mdd_object *parent,
2956                           struct mdd_object *child, const struct lu_attr *attr,
2957                           const struct md_op_spec *spec,
2958                           struct dt_allocation_hint *hint)
2959 {
2960         struct dt_object *np = parent ?  mdd_object_child(parent) : NULL;
2961         struct dt_object *nc = mdd_object_child(child);
2962
2963         memset(hint, 0, sizeof(*hint));
2964
2965         /* For striped directory, give striping EA to lod_ah_init, which will
2966          * decide the stripe_offset and stripe count by it. */
2967         if (S_ISDIR(attr->la_mode) &&
2968             unlikely(spec != NULL && spec->sp_cr_flags & MDS_OPEN_HAS_EA)) {
2969                 hint->dah_eadata = spec->u.sp_ea.eadata;
2970                 hint->dah_eadata_len = spec->u.sp_ea.eadatalen;
2971         } else {
2972                 hint->dah_eadata = NULL;
2973                 hint->dah_eadata_len = 0;
2974         }
2975
2976         CDEBUG(D_INFO, DFID" eadata %p len %d\n", PFID(mdd_object_fid(child)),
2977                hint->dah_eadata, hint->dah_eadata_len);
2978         /* @hint will be initialized by underlying device. */
2979         nc->do_ops->do_ah_init(env, hint, np, nc, attr->la_mode & S_IFMT);
2980 }
2981
2982 static int accmode(const struct lu_env *env, const struct lu_attr *la,
2983                    u64 open_flags)
2984 {
2985         /* Sadly, NFSD reopens a file repeatedly during operation, so the
2986          * "acc_mode = 0" allowance for newly-created files isn't honoured.
2987          * NFSD uses the MDS_OPEN_OWNEROVERRIDE flag to say that a file
2988          * owner can write to a file even if it is marked readonly to hide
2989          * its brokenness. (bug 5781) */
2990         if (open_flags & MDS_OPEN_OWNEROVERRIDE) {
2991                 struct lu_ucred *uc = lu_ucred_check(env);
2992
2993                 if ((uc == NULL) || (la->la_uid == uc->uc_fsuid))
2994                         return 0;
2995         }
2996
2997         return mds_accmode(open_flags);
2998 }
2999
3000 static int mdd_open_sanity_check(const struct lu_env *env,
3001                                  struct mdd_object *obj,
3002                                  const struct lu_attr *attr, u64 open_flags)
3003 {
3004         int mode, rc;
3005         ENTRY;
3006
3007         /* EEXIST check, also opening of *open* orphans is allowed so we can
3008          * open-by-handle unlinked files
3009          */
3010         if (mdd_is_dead_obj(obj) &&
3011             likely(!(mdd_is_orphan_obj(obj) && obj->mod_count > 0)))
3012                 RETURN(-ENOENT);
3013
3014         if (S_ISLNK(attr->la_mode))
3015                 RETURN(-ELOOP);
3016
3017         mode = accmode(env, attr, open_flags);
3018
3019         if (S_ISDIR(attr->la_mode) && (mode & MAY_WRITE))
3020                 RETURN(-EISDIR);
3021
3022         if (!(open_flags & MDS_OPEN_CREATED)) {
3023                 rc = mdd_permission_internal(env, obj, attr, mode);
3024                 if (rc)
3025                         RETURN(rc);
3026         }
3027
3028         if (S_ISFIFO(attr->la_mode) || S_ISSOCK(attr->la_mode) ||
3029             S_ISBLK(attr->la_mode) || S_ISCHR(attr->la_mode))
3030                 open_flags &= ~MDS_OPEN_TRUNC;
3031
3032         /* For writing append-only file must open it with append mode. */
3033         if (attr->la_flags & LUSTRE_APPEND_FL) {
3034                 if ((open_flags & MDS_FMODE_WRITE) &&
3035                     !(open_flags & MDS_OPEN_APPEND))
3036                         RETURN(-EPERM);
3037                 if (open_flags & MDS_OPEN_TRUNC)
3038                         RETURN(-EPERM);
3039         }
3040
3041         RETURN(0);
3042 }
3043
3044 static int mdd_open(const struct lu_env *env, struct md_object *obj,
3045                     u64 open_flags)
3046 {
3047         struct mdd_object *mdd_obj = md2mdd_obj(obj);
3048         struct md_device *md_dev = lu2md_dev(mdd2lu_dev(mdo2mdd(obj)));
3049         struct lu_attr *attr = MDD_ENV_VAR(env, cattr);
3050         struct mdd_object_user *mou = NULL;
3051         const struct lu_ucred *uc = lu_ucred(env);
3052         struct mdd_device *mdd = mdo2mdd(obj);
3053         enum changelog_rec_type type = CL_OPEN;
3054         int rc = 0;
3055
3056         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
3057
3058         rc = mdd_la_get(env, mdd_obj, attr);
3059         if (rc != 0)
3060                 GOTO(out, rc);
3061
3062         rc = mdd_open_sanity_check(env, mdd_obj, attr, open_flags);
3063         if ((rc == -EACCES) && (mdd->mdd_cl.mc_mask & (1 << CL_DN_OPEN)))
3064                 type = CL_DN_OPEN;
3065         else if (rc != 0)
3066                 GOTO(out, rc);
3067         else
3068                 mdd_obj->mod_count++;
3069
3070         if (!mdd_changelog_enabled(env, mdd, type))
3071                 GOTO(out, rc);
3072
3073 find:
3074         /* look for existing opener in list under mdd_write_lock */
3075         mou = mdd_obj_user_find(mdd_obj, uc->uc_uid, uc->uc_gid, open_flags);
3076
3077         if (!mou) {
3078                 int rc2;
3079
3080                 /* add user to list */
3081                 mou = mdd_obj_user_alloc(open_flags, uc->uc_uid, uc->uc_gid);
3082                 if (IS_ERR(mou)) {
3083                         if (rc == 0)
3084                                 rc = PTR_ERR(mou);
3085                         GOTO(out, rc);
3086                 }
3087                 rc2 = mdd_obj_user_add(mdd_obj, mou, type == CL_DN_OPEN);
3088                 if (rc2 != 0) {
3089                         mdd_obj_user_free(mou);
3090                         if (rc2 == -EEXIST)
3091                                 GOTO(find, rc2);
3092                 }
3093         } else {
3094                 if (type == CL_DN_OPEN) {
3095                         if (ktime_before(ktime_get(), mou->mou_deniednext))
3096                                 /* same user denied again same access within
3097                                  * time interval: do not record
3098                                  */
3099                                 GOTO(out, rc);
3100
3101                         /* this user already denied, but some time ago:
3102                          * update denied time
3103                          */
3104                         mou->mou_deniednext =
3105                                 ktime_add(ktime_get(),
3106                                           ktime_set(mdd->mdd_cl.mc_deniednext,
3107                                                     0));
3108                 } else {
3109                         mou->mou_opencount++;
3110                         /* same user opening file again with same flags:
3111                          * don't record
3112                          */
3113                         GOTO(out, rc);
3114                 }
3115         }
3116
3117         /* FYI, only the bottom 32 bits of open_flags are recorded */
3118         mdd_changelog(env, type, open_flags, md_dev, mdo2fid(mdd_obj));
3119
3120         EXIT;
3121 out:
3122         mdd_write_unlock(env, mdd_obj);
3123         return rc;
3124 }
3125
3126 static int mdd_declare_close(const struct lu_env *env, struct mdd_object *obj,
3127                              struct md_attr *ma, struct thandle *handle)
3128 {
3129         int rc;
3130
3131         rc = mdd_orphan_declare_delete(env, obj, handle);
3132         if (rc)
3133                 return rc;
3134
3135         return mdo_declare_destroy(env, obj, handle);
3136 }
3137
3138 /*
3139  * No permission check is needed.
3140  */
3141 static int mdd_close(const struct lu_env *env, struct md_object *obj,
3142                      struct md_attr *ma, u64 open_flags)
3143 {
3144         struct mdd_object *mdd_obj = md2mdd_obj(obj);
3145         struct mdd_device *mdd = mdo2mdd(obj);
3146         struct thandle *handle = NULL;
3147         int is_orphan = 0;
3148         int rc;
3149         bool blocked = false;
3150         bool last_close_by_uid = false;
3151         const struct lu_ucred *uc = lu_ucred(env);
3152         ENTRY;
3153
3154         if (ma->ma_valid & MA_FLAGS && ma->ma_attr_flags & MDS_KEEP_ORPHAN) {
3155                 mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
3156                 mdd_obj->mod_count--;
3157                 mdd_write_unlock(env, mdd_obj);
3158
3159                 if (mdd_obj->mod_flags & ORPHAN_OBJ && !mdd_obj->mod_count)
3160                         CDEBUG(D_HA, "Object "DFID" is retained in orphan "
3161                                 "list\n", PFID(mdd_object_fid(mdd_obj)));
3162                 RETURN(0);
3163         }
3164
3165         /* mdd_finish_unlink() will always set orphan object as DEAD_OBJ, but
3166          * it might fail to add the object to orphan list (w/o ORPHAN_OBJ). */
3167         /* check without any lock */
3168         is_orphan = mdd_obj->mod_count == 1 &&
3169                     (mdd_obj->mod_flags & (ORPHAN_OBJ | DEAD_OBJ)) != 0;
3170
3171 again:
3172         if (is_orphan) {
3173                 /* mdd_trans_create() maybe failed because of barrier_entry(),
3174                  * under such case, the orphan MDT-object will be left in the
3175                  * orphan list, and when the MDT remount next time, the unused
3176                  * orphans will be destroyed automatically.
3177                  *
3178                  * One exception: the former mdd_finish_unlink may failed to
3179                  * add the orphan MDT-object to the orphan list, then if the
3180                  * mdd_trans_create() failed because of barrier_entry(), the
3181                  * MDT-object will become real orphan that is neither in the
3182                  * namespace nor in the orphan list. Such bad case should be
3183                  * very rare and will be handled by e2fsck/lfsck. */
3184                 handle = mdd_trans_create(env, mdo2mdd(obj));
3185                 if (IS_ERR(handle)) {
3186                         rc = PTR_ERR(handle);
3187                         if (rc != -EINPROGRESS)
3188                                 GOTO(stop, rc);
3189
3190                         handle = NULL;
3191                         blocked = true;
3192                         goto cont;
3193                 }
3194
3195                 rc = mdd_declare_close(env, mdd_obj, ma, handle);
3196                 if (rc)
3197                         GOTO(stop, rc);
3198
3199                 rc = mdd_declare_changelog_store(env, mdd, CL_CLOSE, NULL, NULL,
3200                                                  handle);
3201                 if (rc)
3202                         GOTO(stop, rc);
3203
3204                 rc = mdd_trans_start(env, mdo2mdd(obj), handle);
3205                 if (rc)
3206                         GOTO(stop, rc);
3207         }
3208
3209 cont:
3210         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
3211         rc = mdd_la_get(env, mdd_obj, &ma->ma_attr);
3212         if (rc != 0) {
3213                 CERROR("%s: failed to get lu_attr of "DFID": rc = %d\n",
3214                        lu_dev_name(mdd2lu_dev(mdd)),
3215                        PFID(mdd_object_fid(mdd_obj)), rc);
3216                 GOTO(out, rc);
3217         }
3218
3219         /* check again with lock */
3220         is_orphan = (mdd_obj->mod_count == 1) &&
3221                     ((mdd_obj->mod_flags & (ORPHAN_OBJ | DEAD_OBJ)) != 0 ||
3222                      ma->ma_attr.la_nlink == 0);
3223
3224         if (is_orphan && !handle && !blocked) {
3225                 mdd_write_unlock(env, mdd_obj);
3226                 goto again;
3227         }
3228
3229         mdd_obj->mod_count--; /*release open count */
3230
3231         /* under mdd write lock */
3232         /* If recording, see if we need to remove UID from list. uc is not
3233          * initialized if the client has been evicted. */
3234         if (mdd_changelog_enabled(env, mdd, CL_OPEN) && uc) {
3235                 struct mdd_object_user *mou;
3236
3237                 /* look for UID in list */
3238                 /* If mou is NULL, it probably means logging was enabled after
3239                  * the user had the file open. So the corresponding close
3240                  * will not be logged.
3241                  */
3242                 mou = mdd_obj_user_find(mdd_obj, uc->uc_uid, uc->uc_gid,
3243                                         open_flags);
3244                 if (mou) {
3245                         mou->mou_opencount--;
3246                         if (mou->mou_opencount == 0) {
3247                                 mdd_obj_user_remove(mdd_obj, mou);
3248                                 last_close_by_uid = true;
3249                         }
3250                 }
3251         }
3252
3253         if (!is_orphan || blocked)
3254                 GOTO(out, rc = 0);
3255
3256         /* Orphan object */
3257         /* NB: Object maybe not in orphan list originally, it is rare case for
3258          * mdd_finish_unlink() failure, in that case, the object doesn't have
3259          * ORPHAN_OBJ flag */
3260         if ((mdd_obj->mod_flags & ORPHAN_OBJ) != 0) {
3261                 /* remove link to object from orphan index */
3262                 LASSERT(handle != NULL);
3263                 rc = mdd_orphan_delete(env, mdd_obj, handle);
3264                 if (rc != 0) {
3265                         CERROR("%s: unable to delete "DFID" from orphan list: "
3266                                "rc = %d\n", lu_dev_name(mdd2lu_dev(mdd)),
3267                                PFID(mdd_object_fid(mdd_obj)), rc);
3268                         /* If object was not deleted from orphan list, do not
3269                          * destroy OSS objects, which will be done when next
3270                          * recovery. */
3271                         GOTO(out, rc);
3272                 }
3273
3274                 CDEBUG(D_HA, "Object "DFID" is deleted from orphan "
3275                        "list, OSS objects to be destroyed.\n",
3276                        PFID(mdd_object_fid(mdd_obj)));
3277         }
3278
3279         rc = mdo_destroy(env, mdd_obj, handle);
3280
3281         if (rc != 0) {
3282                 CERROR("%s: unable to delete "DFID" from orphan list: "
3283                        "rc = %d\n", lu_dev_name(mdd2lu_dev(mdd)),
3284                        PFID(mdd_object_fid(mdd_obj)), rc);
3285         }
3286         EXIT;
3287
3288 out:
3289         mdd_write_unlock(env, mdd_obj);
3290
3291         if (rc != 0 || blocked ||
3292             !mdd_changelog_enabled(env, mdd, CL_CLOSE))
3293                 GOTO(stop, rc);
3294
3295         /* Record CL_CLOSE in changelog only if file was opened in write mode,
3296          * or if CL_OPEN was recorded and it's last close by user.
3297          * Changelogs mask may change between open and close operations, but
3298          * this is not a big deal if we have a CL_CLOSE entry with no matching
3299          * CL_OPEN. Plus Changelogs mask may not change often.
3300          */
3301         if (((!(mdd->mdd_cl.mc_mask & (1 << CL_OPEN)) &&
3302               (open_flags & (MDS_FMODE_WRITE | MDS_OPEN_APPEND |
3303                              MDS_OPEN_TRUNC))) ||
3304              ((mdd->mdd_cl.mc_mask & (1 << CL_OPEN)) && last_close_by_uid)) &&
3305             !(ma->ma_valid & MA_FLAGS && ma->ma_attr_flags & MDS_RECOV_OPEN)) {
3306                 if (handle == NULL) {
3307                         handle = mdd_trans_create(env, mdo2mdd(obj));
3308                         if (IS_ERR(handle))
3309                                 GOTO(stop, rc = PTR_ERR(handle));
3310
3311                         rc = mdd_declare_changelog_store(env, mdd, CL_CLOSE,
3312                                                          NULL, NULL, handle);
3313                         if (rc)
3314                                 GOTO(stop, rc);
3315
3316                         rc = mdd_trans_start(env, mdo2mdd(obj), handle);
3317                         if (rc)
3318                                 GOTO(stop, rc);
3319                 }
3320
3321                 /* FYI, only the bottom 32 bits of open_flags are recorded */
3322                 mdd_changelog_data_store(env, mdd, CL_CLOSE, open_flags,
3323                                          mdd_obj, handle);
3324         }
3325
3326 stop:
3327         if (handle != NULL && !IS_ERR(handle))
3328                 rc = mdd_trans_stop(env, mdd, rc, handle);
3329
3330         return rc;
3331 }
3332
3333 /*
3334  * Permission check is done when open,
3335  * no need check again.
3336  */
3337 static int mdd_readpage_sanity_check(const struct lu_env *env,
3338                                      struct mdd_object *obj)
3339 {
3340         struct dt_object *next = mdd_object_child(obj);
3341         int rc;
3342         ENTRY;
3343
3344         if (S_ISDIR(mdd_object_type(obj)) && dt_try_as_dir(env, next))
3345                 rc = 0;
3346         else
3347                 rc = -ENOTDIR;
3348
3349         RETURN(rc);
3350 }
3351
3352 static int mdd_dir_page_build(const struct lu_env *env, union lu_page *lp,
3353                               size_t nob, const struct dt_it_ops *iops,
3354                               struct dt_it *it, __u32 attr, void *arg)
3355 {
3356         struct lu_dirpage       *dp = &lp->lp_dir;
3357         void                    *area = dp;
3358         int                      result;
3359         __u64                    hash = 0;
3360         struct lu_dirent        *ent;
3361         struct lu_dirent        *last = NULL;
3362         struct lu_fid            fid;
3363         int                      first = 1;
3364
3365         if (nob < sizeof(*dp))
3366                 return -EINVAL;
3367
3368         memset(area, 0, sizeof (*dp));
3369         area += sizeof (*dp);
3370         nob  -= sizeof (*dp);
3371
3372         ent  = area;
3373         do {
3374                 int    len;
3375                 size_t recsize;
3376
3377                 len = iops->key_size(env, it);
3378
3379                 /* IAM iterator can return record with zero len. */
3380                 if (len == 0)
3381                         goto next;
3382
3383                 hash = iops->store(env, it);
3384                 if (unlikely(first)) {
3385                         first = 0;
3386                         dp->ldp_hash_start = cpu_to_le64(hash);
3387                 }
3388
3389                 /* calculate max space required for lu_dirent */
3390                 recsize = lu_dirent_calc_size(len, attr);
3391
3392                 if (nob >= recsize) {
3393                         result = iops->rec(env, it, (struct dt_rec *)ent, attr);
3394                         if (result == -ESTALE)
3395                                 goto next;
3396                         if (result != 0)
3397                                 goto out;
3398
3399                         /* osd might not able to pack all attributes,
3400                          * so recheck rec length */
3401                         recsize = le16_to_cpu(ent->lde_reclen);
3402
3403                         if (le32_to_cpu(ent->lde_attrs) & LUDA_FID) {
3404                                 fid_le_to_cpu(&fid, &ent->lde_fid);
3405                                 if (fid_is_dot_lustre(&fid))
3406                                         goto next;
3407                         }
3408                 } else {
3409                         result = (last != NULL) ? 0 :-EINVAL;
3410                         goto out;
3411                 }
3412                 last = ent;
3413                 ent = (void *)ent + recsize;
3414                 nob -= recsize;
3415
3416 next:
3417                 result = iops->next(env, it);
3418                 if (result == -ESTALE)
3419                         goto next;
3420         } while (result == 0);
3421
3422 out:
3423         dp->ldp_hash_end = cpu_to_le64(hash);
3424         if (last != NULL) {
3425                 if (last->lde_hash == dp->ldp_hash_end)
3426                         dp->ldp_flags |= cpu_to_le32(LDF_COLLIDE);
3427                 last->lde_reclen = 0; /* end mark */
3428         }
3429         if (result > 0)
3430                 /* end of directory */
3431                 dp->ldp_hash_end = cpu_to_le64(MDS_DIR_END_OFF);
3432         else if (result < 0)
3433                 CWARN("build page failed: %d!\n", result);
3434         return result;
3435 }
3436
3437 int mdd_readpage(const struct lu_env *env, struct md_object *obj,
3438                  const struct lu_rdpg *rdpg)
3439 {
3440         struct mdd_object *mdd_obj = md2mdd_obj(obj);
3441         int rc;
3442         ENTRY;
3443
3444         if (mdd_object_exists(mdd_obj) == 0) {
3445                 CERROR("%s: object "DFID" not found: rc = -2\n",
3446                        mdd_obj_dev_name(mdd_obj),PFID(mdd_object_fid(mdd_obj)));
3447                 return -ENOENT;
3448         }
3449
3450         mdd_read_lock(env, mdd_obj, MOR_TGT_CHILD);
3451         rc = mdd_readpage_sanity_check(env, mdd_obj);
3452         if (rc)
3453                 GOTO(out_unlock, rc);
3454
3455         if (mdd_is_dead_obj(mdd_obj)) {
3456                 struct page *pg;
3457                 struct lu_dirpage *dp;
3458
3459                 /*
3460                  * According to POSIX, please do not return any entry to client:
3461                  * even dot and dotdot should not be returned.
3462                  */
3463                 CDEBUG(D_INODE, "readdir from dead object: "DFID"\n",
3464                        PFID(mdd_object_fid(mdd_obj)));
3465
3466                 if (rdpg->rp_count <= 0)
3467                         GOTO(out_unlock, rc = -EFAULT);
3468                 LASSERT(rdpg->rp_pages != NULL);
3469
3470                 pg = rdpg->rp_pages[0];
3471                 dp = (struct lu_dirpage *)kmap(pg);
3472                 memset(dp, 0 , sizeof(struct lu_dirpage));
3473                 dp->ldp_hash_start = cpu_to_le64(rdpg->rp_hash);
3474                 dp->ldp_hash_end   = cpu_to_le64(MDS_DIR_END_OFF);
3475                 dp->ldp_flags = cpu_to_le32(LDF_EMPTY);
3476                 kunmap(pg);
3477                 GOTO(out_unlock, rc = LU_PAGE_SIZE);
3478         }
3479
3480         rc = dt_index_walk(env, mdd_object_child(mdd_obj), rdpg,
3481                            mdd_dir_page_build, NULL);
3482         if (rc >= 0) {
3483                 struct lu_dirpage       *dp;
3484
3485                 dp = kmap(rdpg->rp_pages[0]);
3486                 dp->ldp_hash_start = cpu_to_le64(rdpg->rp_hash);
3487                 if (rc == 0) {
3488                         /*
3489                          * No pages were processed, mark this for first page
3490                          * and send back.
3491                          */
3492                         dp->ldp_hash_end = cpu_to_le64(MDS_DIR_END_OFF);
3493                         dp->ldp_flags = cpu_to_le32(LDF_EMPTY);
3494                         rc = min_t(unsigned int, LU_PAGE_SIZE, rdpg->rp_count);
3495                 }
3496                 kunmap(rdpg->rp_pages[0]);
3497         }
3498
3499         GOTO(out_unlock, rc);
3500 out_unlock:
3501         mdd_read_unlock(env, mdd_obj);
3502         return rc;
3503 }
3504
3505 static int mdd_object_sync(const struct lu_env *env, struct md_object *obj)
3506 {
3507         struct mdd_object *mdd_obj = md2mdd_obj(obj);
3508
3509         if (mdd_object_exists(mdd_obj) == 0) {
3510                 int rc = -ENOENT;
3511
3512                 CERROR("%s: object "DFID" not found: rc = %d\n",
3513                        mdd_obj_dev_name(mdd_obj),
3514                        PFID(mdd_object_fid(mdd_obj)), rc);
3515                 return rc;
3516         }
3517         return dt_object_sync(env, mdd_object_child(mdd_obj),
3518                               0, OBD_OBJECT_EOF);
3519 }
3520
3521 static int mdd_object_lock(const struct lu_env *env,
3522                            struct md_object *obj,
3523                            struct lustre_handle *lh,
3524                            struct ldlm_enqueue_info *einfo,
3525                            union ldlm_policy_data *policy)
3526 {
3527         struct mdd_object *mdd_obj = md2mdd_obj(obj);
3528         return dt_object_lock(env, mdd_object_child(mdd_obj), lh,
3529                               einfo, policy);
3530 }
3531
3532 static int mdd_object_unlock(const struct lu_env *env,
3533                              struct md_object *obj,
3534                              struct ldlm_enqueue_info *einfo,
3535                              union ldlm_policy_data *policy)
3536 {
3537         struct mdd_object *mdd_obj = md2mdd_obj(obj);
3538         return dt_object_unlock(env, mdd_object_child(mdd_obj), einfo, policy);
3539 }
3540
3541 const struct md_object_operations mdd_obj_ops = {
3542         .moo_permission         = mdd_permission,
3543         .moo_attr_get           = mdd_attr_get,
3544         .moo_attr_set           = mdd_attr_set,
3545         .moo_xattr_get          = mdd_xattr_get,
3546         .moo_xattr_set          = mdd_xattr_set,
3547         .moo_xattr_list         = mdd_xattr_list,
3548         .moo_invalidate         = mdd_invalidate,
3549         .moo_xattr_del          = mdd_xattr_del,
3550         .moo_swap_layouts       = mdd_swap_layouts,
3551         .moo_open               = mdd_open,
3552         .moo_close              = mdd_close,
3553         .moo_readpage           = mdd_readpage,
3554         .moo_readlink           = mdd_readlink,
3555         .moo_changelog          = mdd_changelog,
3556         .moo_object_sync        = mdd_object_sync,
3557         .moo_object_lock        = mdd_object_lock,
3558         .moo_object_unlock      = mdd_object_unlock,
3559         .moo_layout_change      = mdd_layout_change,
3560 };