Whamcloud - gitweb
ea8f1b713d4c822270476141fc70303157bd3a33
[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                         MIN(mdd_obj2mdd_dev(mdd_obj)->mdd_dt_conf.ddp_max_ea_size,
1418                             XATTR_SIZE_MAX));
1419         rc = mdo_xattr_get(env, mdd_obj, current_buf, XATTR_NAME_HSM);
1420         rc = lustre_buf2hsm(current_buf->lb_buf, rc, current_mh);
1421         if (rc < 0 && rc != -ENODATA)
1422                 GOTO(free, rc);
1423         else if (rc == -ENODATA)
1424                 current_mh->mh_flags = 0;
1425
1426         /* Map future HSM xattr */
1427         OBD_ALLOC_PTR(new_mh);
1428         if (new_mh == NULL)
1429                 GOTO(free, rc = -ENOMEM);
1430         lustre_buf2hsm(buf->lb_buf, buf->lb_len, new_mh);
1431
1432         rc = 0;
1433
1434         /* Flags differ, set flags for the changelog that will be added */
1435         if (current_mh->mh_flags != new_mh->mh_flags) {
1436                 hsm_set_cl_event(clf_flags, HE_STATE);
1437                 if (new_mh->mh_flags & HS_DIRTY)
1438                         hsm_set_cl_flags(clf_flags, CLF_HSM_DIRTY);
1439         }
1440
1441         OBD_FREE_PTR(new_mh);
1442         EXIT;
1443 free:
1444         OBD_FREE_PTR(current_mh);
1445         return rc;
1446 }
1447
1448 static int mdd_object_pfid_replace(const struct lu_env *env,
1449                                    struct mdd_object *o)
1450 {
1451         struct mdd_device *mdd = mdo2mdd(&o->mod_obj);
1452         struct thandle *handle;
1453         int rc;
1454
1455         handle = mdd_trans_create(env, mdd);
1456         if (IS_ERR(handle))
1457                 RETURN(PTR_ERR(handle));
1458
1459         handle->th_complex = 1;
1460
1461         /* it doesn't need to track the PFID update via llog, because LFSCK
1462          * will repair it even it goes wrong */
1463         rc = mdd_declare_xattr_set(env, mdd, o, NULL, XATTR_NAME_FID,
1464                                    0, handle);
1465         if (rc)
1466                 GOTO(out, rc);
1467
1468         rc = mdd_trans_start(env, mdd, handle);
1469         if (rc != 0)
1470                 GOTO(out, rc);
1471
1472         rc = mdo_xattr_set(env, o, NULL, XATTR_NAME_FID, 0, handle);
1473         if (rc)
1474                 GOTO(out, rc);
1475
1476 out:
1477         mdd_trans_stop(env, mdd, rc, handle);
1478         return rc;
1479 }
1480
1481
1482 static int mdd_declare_xattr_del(const struct lu_env *env,
1483                                  struct mdd_device *mdd,
1484                                  struct mdd_object *obj,
1485                                  const char *name,
1486                                  struct thandle *handle);
1487
1488 static int mdd_xattr_del(const struct lu_env *env, struct md_object *obj,
1489                          const char *name);
1490
1491 static int mdd_xattr_merge(const struct lu_env *env, struct md_object *md_obj,
1492                            struct md_object *md_vic)
1493 {
1494         struct mdd_device *mdd = mdo2mdd(md_obj);
1495         struct mdd_object *obj = md2mdd_obj(md_obj);
1496         struct mdd_object *vic = md2mdd_obj(md_vic);
1497         struct lu_buf *buf = &mdd_env_info(env)->mti_buf[0];
1498         struct lu_buf *buf_vic = &mdd_env_info(env)->mti_buf[1];
1499         struct lov_mds_md *lmm;
1500         struct thandle *handle;
1501         int rc;
1502         ENTRY;
1503
1504         rc = lu_fid_cmp(mdo2fid(obj), mdo2fid(vic));
1505         if (rc == 0) /* same fid */
1506                 RETURN(-EPERM);
1507
1508         handle = mdd_trans_create(env, mdd);
1509         if (IS_ERR(handle))
1510                 RETURN(PTR_ERR(handle));
1511
1512         if (rc > 0) {
1513                 mdd_write_lock(env, obj, MOR_TGT_CHILD);
1514                 mdd_write_lock(env, vic, MOR_TGT_CHILD);
1515         } else {
1516                 mdd_write_lock(env, vic, MOR_TGT_CHILD);
1517                 mdd_write_lock(env, obj, MOR_TGT_CHILD);
1518         }
1519
1520         /* get EA of victim file */
1521         memset(buf_vic, 0, sizeof(*buf_vic));
1522         rc = mdd_stripe_get(env, vic, buf_vic, XATTR_NAME_LOV);
1523         if (rc < 0) {
1524                 if (rc == -ENODATA)
1525                         rc = 0;
1526                 GOTO(out, rc);
1527         }
1528
1529         /* parse the layout of victim file */
1530         lmm = buf_vic->lb_buf;
1531         if (le32_to_cpu(lmm->lmm_magic) != LOV_MAGIC_COMP_V1)
1532                 GOTO(out, rc = -EINVAL);
1533
1534         /* save EA of target file for restore */
1535         memset(buf, 0, sizeof(*buf));
1536         rc = mdd_stripe_get(env, obj, buf, XATTR_NAME_LOV);
1537         if (rc < 0)
1538                 GOTO(out, rc);
1539
1540         /* Get rid of the layout from victim object */
1541         rc = mdd_declare_xattr_del(env, mdd, vic, XATTR_NAME_LOV, handle);
1542         if (rc)
1543                 GOTO(out, rc);
1544
1545         rc = mdd_declare_xattr_set(env, mdd, obj, buf_vic, XATTR_LUSTRE_LOV,
1546                                    LU_XATTR_MERGE, handle);
1547         if (rc)
1548                 GOTO(out, rc);
1549
1550         rc = mdd_trans_start(env, mdd, handle);
1551         if (rc != 0)
1552                 GOTO(out, rc);
1553
1554         rc = mdo_xattr_set(env, obj, buf_vic, XATTR_LUSTRE_LOV, LU_XATTR_MERGE,
1555                            handle);
1556         if (rc)
1557                 GOTO(out, rc);
1558
1559         rc = mdo_xattr_del(env, vic, XATTR_NAME_LOV, handle);
1560         if (rc) /* wtf? */
1561                 GOTO(out_restore, rc);
1562
1563         (void)mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, obj, handle);
1564         (void)mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, vic, handle);
1565         EXIT;
1566
1567 out_restore:
1568         if (rc) {
1569                 int rc2 = mdo_xattr_set(env, obj, buf, XATTR_NAME_LOV,
1570                                         LU_XATTR_REPLACE, handle);
1571                 if (rc2)
1572                         CERROR("%s: failed to rollback of layout of: "DFID
1573                                ": %d, file state unknown\n",
1574                                mdd_obj_dev_name(obj), PFID(mdo2fid(obj)), rc2);
1575         }
1576
1577 out:
1578         mdd_trans_stop(env, mdd, rc, handle);
1579         mdd_write_unlock(env, obj);
1580         mdd_write_unlock(env, vic);
1581         lu_buf_free(buf);
1582         lu_buf_free(buf_vic);
1583
1584         if (!rc)
1585                 (void) mdd_object_pfid_replace(env, obj);
1586
1587         return rc;
1588 }
1589
1590 /**
1591  * Extract the mirror with specified mirror id, and store the splitted
1592  * mirror layout to @buf.
1593  *
1594  * \param[in] comp_v1   mirrored layout
1595  * \param[in] mirror_id the mirror with mirror_id to be extracted
1596  * \param[out] buf      store the layout excluding the extracted mirror,
1597  *                      caller free the buffer we allocated in this function
1598  * \param[out] buf_vic  store the extracted layout, caller free the buffer
1599  *                      we allocated in this function
1600  *
1601  * \retval      0 on success; < 0 if error happens
1602  */
1603 static int mdd_split_ea(struct lov_comp_md_v1 *comp_v1, __u16 mirror_id,
1604                         struct lu_buf *buf, struct lu_buf *buf_vic)
1605 {
1606         struct lov_comp_md_v1 *comp_rem;
1607         struct lov_comp_md_v1 *comp_vic;
1608         struct lov_comp_md_entry_v1 *entry;
1609         struct lov_comp_md_entry_v1 *entry_rem;
1610         struct lov_comp_md_entry_v1 *entry_vic;
1611         __u16 mirror_cnt;
1612         __u16 comp_cnt, count = 0;
1613         int lmm_size, lmm_size_vic = 0;
1614         int i, j, k;
1615         int offset, offset_rem, offset_vic;
1616
1617         mirror_cnt = le16_to_cpu(comp_v1->lcm_mirror_count) + 1;
1618         /* comp_v1 should contains more than 1 mirror */
1619         if (mirror_cnt <= 1)
1620                 return -EINVAL;
1621         comp_cnt = le16_to_cpu(comp_v1->lcm_entry_count);
1622         lmm_size = le32_to_cpu(comp_v1->lcm_size);
1623
1624         for (i = 0; i < comp_cnt; i++) {
1625                 entry = &comp_v1->lcm_entries[i];
1626                 if (mirror_id_of(le32_to_cpu(entry->lcme_id)) == mirror_id) {
1627                         count++;
1628                         lmm_size_vic += sizeof(*entry);
1629                         lmm_size_vic += le32_to_cpu(entry->lcme_size);
1630                 } else if (count > 0) {
1631                         /* find the specified mirror */
1632                         break;
1633                 }
1634         }
1635
1636         if (count == 0)
1637                 return -EINVAL;
1638
1639         lu_buf_alloc(buf, lmm_size - lmm_size_vic);
1640         if (!buf->lb_buf)
1641                 return -ENOMEM;
1642
1643         lu_buf_alloc(buf_vic, sizeof(*comp_vic) + lmm_size_vic);
1644         if (!buf_vic->lb_buf) {
1645                 lu_buf_free(buf);
1646                 return -ENOMEM;
1647         }
1648
1649         comp_rem = (struct lov_comp_md_v1 *)buf->lb_buf;
1650         comp_vic = (struct lov_comp_md_v1 *)buf_vic->lb_buf;
1651
1652         memcpy(comp_rem, comp_v1, sizeof(*comp_v1));
1653         comp_rem->lcm_mirror_count = cpu_to_le16(mirror_cnt - 2);
1654         comp_rem->lcm_entry_count = cpu_to_le32(comp_cnt - count);
1655         comp_rem->lcm_size = cpu_to_le32(lmm_size - lmm_size_vic);
1656         if (!comp_rem->lcm_mirror_count)
1657                 comp_rem->lcm_flags = cpu_to_le16(LCM_FL_NONE);
1658
1659         memset(comp_vic, 0, sizeof(*comp_v1));
1660         comp_vic->lcm_magic = cpu_to_le32(LOV_MAGIC_COMP_V1);
1661         comp_vic->lcm_mirror_count = 0;
1662         comp_vic->lcm_entry_count = cpu_to_le32(count);
1663         comp_vic->lcm_size = cpu_to_le32(lmm_size_vic + sizeof(*comp_vic));
1664         comp_vic->lcm_flags = cpu_to_le16(LCM_FL_NONE);
1665         comp_vic->lcm_layout_gen = 0;
1666
1667         offset = sizeof(*comp_v1) + sizeof(*entry) * comp_cnt;
1668         offset_rem = sizeof(*comp_rem) +
1669                      sizeof(*entry_rem) * (comp_cnt - count);
1670         offset_vic = sizeof(*comp_vic) + sizeof(*entry_vic) * count;
1671         for (i = j = k = 0; i < comp_cnt; i++) {
1672                 struct lov_mds_md *lmm, *lmm_dst;
1673                 bool vic = false;
1674
1675                 entry = &comp_v1->lcm_entries[i];
1676                 entry_vic = &comp_vic->lcm_entries[j];
1677                 entry_rem = &comp_rem->lcm_entries[k];
1678
1679                 if (mirror_id_of(le32_to_cpu(entry->lcme_id)) == mirror_id)
1680                         vic = true;
1681
1682                 /* copy component entry */
1683                 if (vic) {
1684                         memcpy(entry_vic, entry, sizeof(*entry));
1685                         entry_vic->lcme_flags &= cpu_to_le32(LCME_FL_INIT);
1686                         entry_vic->lcme_offset = cpu_to_le32(offset_vic);
1687                         j++;
1688                 } else {
1689                         memcpy(entry_rem, entry, sizeof(*entry));
1690                         entry_rem->lcme_offset = cpu_to_le32(offset_rem);
1691                         k++;
1692                 }
1693
1694                 lmm = (struct lov_mds_md *)((char *)comp_v1 + offset);
1695                 if (vic)
1696                         lmm_dst = (struct lov_mds_md *)
1697                                         ((char *)comp_vic + offset_vic);
1698                 else
1699                         lmm_dst = (struct lov_mds_md *)
1700                                         ((char *)comp_rem + offset_rem);
1701
1702                 /* copy component entry blob */
1703                 memcpy(lmm_dst, lmm, le32_to_cpu(entry->lcme_size));
1704
1705                 /* blob offset advance */
1706                 offset += le32_to_cpu(entry->lcme_size);
1707                 if (vic)
1708                         offset_vic += le32_to_cpu(entry->lcme_size);
1709                 else
1710                         offset_rem += le32_to_cpu(entry->lcme_size);
1711         }
1712
1713         return 0;
1714 }
1715
1716 static int mdd_xattr_split(const struct lu_env *env, struct md_object *md_obj,
1717                            struct md_rejig_data *mrd)
1718 {
1719         struct mdd_device *mdd = mdo2mdd(md_obj);
1720         struct mdd_object *obj = md2mdd_obj(md_obj);
1721         struct mdd_object *vic = md2mdd_obj(mrd->mrd_obj);
1722         struct lu_buf *buf = &mdd_env_info(env)->mti_buf[0];
1723         struct lu_buf *buf_save = &mdd_env_info(env)->mti_buf[1];
1724         struct lu_buf *buf_vic = &mdd_env_info(env)->mti_buf[2];
1725         struct lov_comp_md_v1 *lcm;
1726         struct thandle *handle;
1727         int rc;
1728         ENTRY;
1729
1730         rc = lu_fid_cmp(mdo2fid(obj), mdo2fid(vic));
1731         if (rc == 0) /* same fid */
1732                 RETURN(-EPERM);
1733
1734         handle = mdd_trans_create(env, mdd);
1735         if (IS_ERR(handle))
1736                 RETURN(PTR_ERR(handle));
1737
1738         if (rc > 0) {
1739                 mdd_write_lock(env, obj, MOR_TGT_CHILD);
1740                 mdd_write_lock(env, vic, MOR_TGT_CHILD);
1741         } else {
1742                 mdd_write_lock(env, vic, MOR_TGT_CHILD);
1743                 mdd_write_lock(env, obj, MOR_TGT_CHILD);
1744         }
1745
1746         /* get EA of mirrored file */
1747         memset(buf_save, 0, sizeof(*buf));
1748         rc = mdd_stripe_get(env, obj, buf_save, XATTR_NAME_LOV);
1749         if (rc < 0)
1750                 GOTO(out, rc);
1751
1752         lcm = buf_save->lb_buf;
1753         if (le32_to_cpu(lcm->lcm_magic) != LOV_MAGIC_COMP_V1)
1754                 GOTO(out, rc = -EINVAL);
1755
1756         /**
1757          * Extract the mirror with specified mirror id, and store the splitted
1758          * mirror layout to the victim file.
1759          */
1760         memset(buf, 0, sizeof(*buf));
1761         memset(buf_vic, 0, sizeof(*buf_vic));
1762         rc = mdd_split_ea(lcm, mrd->mrd_mirror_id, buf, buf_vic);
1763         if (rc < 0)
1764                 GOTO(out, rc);
1765
1766         rc = mdd_declare_xattr_set(env, mdd, obj, buf, XATTR_NAME_LOV,
1767                                    LU_XATTR_SPLIT, handle);
1768         if (rc)
1769                 GOTO(out, rc);
1770         rc = mdd_declare_xattr_set(env, mdd, vic, buf_vic, XATTR_NAME_LOV,
1771                                    LU_XATTR_SPLIT, handle);
1772         if (rc)
1773                 GOTO(out, rc);
1774
1775         rc = mdd_trans_start(env, mdd, handle);
1776         if (rc)
1777                 GOTO(out, rc);
1778
1779         rc = mdo_xattr_set(env, obj, buf, XATTR_NAME_LOV, LU_XATTR_REPLACE,
1780                            handle);
1781         if (rc)
1782                 GOTO(out, rc);
1783
1784         rc = mdo_xattr_set(env, vic, buf_vic, XATTR_NAME_LOV, LU_XATTR_CREATE,
1785                            handle);
1786         if (rc)
1787                 GOTO(out_restore, rc);
1788
1789         rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, obj, handle);
1790         if (rc)
1791                 GOTO(out, rc);
1792
1793         rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, vic, handle);
1794         if (rc)
1795                 GOTO(out, rc);
1796         EXIT;
1797
1798 out_restore:
1799         if (rc) {
1800                 /* restore obj's layout */
1801                 int rc2 = mdo_xattr_set(env, obj, buf_save, XATTR_NAME_LOV,
1802                                         LU_XATTR_REPLACE, handle);
1803                 if (rc2)
1804                         CERROR("%s: failed to rollback of layout of: "DFID
1805                                ": %d, file state unkonwn.\n",
1806                                mdd_obj_dev_name(obj), PFID(mdo2fid(obj)), rc2);
1807         }
1808 out:
1809         mdd_trans_stop(env, mdd, rc, handle);
1810         mdd_write_unlock(env, obj);
1811         mdd_write_unlock(env, vic);
1812         lu_buf_free(buf_save);
1813         lu_buf_free(buf);
1814         lu_buf_free(buf_vic);
1815
1816         if (!rc)
1817                 (void) mdd_object_pfid_replace(env, obj);
1818
1819         return rc;
1820 }
1821
1822 static int mdd_layout_merge_allowed(const struct lu_env *env,
1823                                     struct md_object *target,
1824                                     struct md_object *victim)
1825 {
1826         struct mdd_object *o1 = md2mdd_obj(target);
1827
1828         /* cannot extend directory's LOVEA */
1829         if (S_ISDIR(mdd_object_type(o1))) {
1830                 CERROR("%s: Don't extend directory's LOVEA, just set it.\n",
1831                        mdd_obj_dev_name(o1));
1832                 RETURN(-EISDIR);
1833         }
1834
1835         RETURN(0);
1836 }
1837
1838 /**
1839  * The caller should guarantee to update the object ctime
1840  * after xattr_set if needed.
1841  */
1842 static int mdd_xattr_set(const struct lu_env *env, struct md_object *obj,
1843                          const struct lu_buf *buf, const char *name,
1844                          int fl)
1845 {
1846         struct mdd_object *mdd_obj = md2mdd_obj(obj);
1847         struct lu_attr *attr = MDD_ENV_VAR(env, cattr);
1848         struct mdd_device *mdd = mdo2mdd(obj);
1849         struct thandle *handle;
1850         enum changelog_rec_type  cl_type;
1851         enum changelog_rec_flags clf_flags = 0;
1852         int rc;
1853         ENTRY;
1854
1855         rc = mdd_la_get(env, mdd_obj, attr);
1856         if (rc)
1857                 RETURN(rc);
1858
1859         rc = mdd_xattr_sanity_check(env, mdd_obj, attr, name);
1860         if (rc)
1861                 RETURN(rc);
1862
1863         if (strcmp(name, XATTR_LUSTRE_LOV) == 0 &&
1864             (fl == LU_XATTR_MERGE || fl == LU_XATTR_SPLIT)) {
1865                 struct md_rejig_data *mrd = buf->lb_buf;
1866                 struct md_object *victim = mrd->mrd_obj;
1867
1868                 if (buf->lb_len != sizeof(*mrd))
1869                         RETURN(-EINVAL);
1870
1871                 rc = mdd_layout_merge_allowed(env, obj, victim);
1872                 if (rc)
1873                         RETURN(rc);
1874
1875                 if (fl == LU_XATTR_MERGE)
1876                         /* merge layout of victim as a mirror of obj's. */
1877                         rc = mdd_xattr_merge(env, obj, victim);
1878                 else
1879                         rc = mdd_xattr_split(env, obj, mrd);
1880                 RETURN(rc);
1881         }
1882
1883         if (strcmp(name, XATTR_NAME_LMV) == 0) {
1884                 rc = mdd_dir_layout_shrink(env, obj, buf);
1885                 RETURN(rc);
1886         }
1887
1888         if (strcmp(name, XATTR_NAME_ACL_ACCESS) == 0 ||
1889             strcmp(name, XATTR_NAME_ACL_DEFAULT) == 0) {
1890                 struct posix_acl *acl;
1891
1892                 /* user may set empty ACL, which should be treated as removing
1893                  * ACL. */
1894                 acl = posix_acl_from_xattr(&init_user_ns, buf->lb_buf,
1895                                            buf->lb_len);
1896                 if (IS_ERR(acl))
1897                         RETURN(PTR_ERR(acl));
1898                 if (acl == NULL) {
1899                         rc = mdd_xattr_del(env, obj, name);
1900                         RETURN(rc);
1901                 }
1902                 posix_acl_release(acl);
1903         }
1904
1905         if (!strcmp(name, XATTR_NAME_ACL_ACCESS)) {
1906                 rc = mdd_acl_set(env, mdd_obj, attr, buf, fl);
1907                 RETURN(rc);
1908         }
1909
1910         handle = mdd_trans_create(env, mdd);
1911         if (IS_ERR(handle))
1912                 RETURN(PTR_ERR(handle));
1913
1914         rc = mdd_declare_xattr_set(env, mdd, mdd_obj, buf, name, fl, handle);
1915         if (rc)
1916                 GOTO(stop, rc);
1917
1918         rc = mdd_trans_start(env, mdd, handle);
1919         if (rc)
1920                 GOTO(stop, rc);
1921
1922         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
1923
1924         if (strcmp(XATTR_NAME_HSM, name) == 0) {
1925                 rc = mdd_hsm_update_locked(env, obj, buf, handle, &clf_flags);
1926                 if (rc) {
1927                         mdd_write_unlock(env, mdd_obj);
1928                         GOTO(stop, rc);
1929                 }
1930         }
1931
1932         rc = mdo_xattr_set(env, mdd_obj, buf, name, fl, handle);
1933         mdd_write_unlock(env, mdd_obj);
1934         if (rc)
1935                 GOTO(stop, rc);
1936
1937         cl_type = mdd_xattr_changelog_type(env, mdd, name);
1938         if (cl_type < 0)
1939                 GOTO(stop, rc = 0);
1940
1941         rc = mdd_changelog_data_store_xattr(env, mdd, cl_type, clf_flags,
1942                                             mdd_obj, name, handle);
1943
1944         EXIT;
1945 stop:
1946         return mdd_trans_stop(env, mdd, rc, handle);
1947 }
1948
1949 static int mdd_declare_xattr_del(const struct lu_env *env,
1950                                  struct mdd_device *mdd,
1951                                  struct mdd_object *obj,
1952                                  const char *name,
1953                                  struct thandle *handle)
1954 {
1955         enum changelog_rec_type type;
1956         int rc;
1957
1958         rc = mdo_declare_xattr_del(env, obj, name, handle);
1959         if (rc)
1960                 return rc;
1961
1962         type = mdd_xattr_changelog_type(env, mdd, name);
1963         if (type < 0)
1964                 return 0; /* no changelog to store */
1965
1966         return mdd_declare_changelog_store(env, mdd, type, NULL, NULL, handle);
1967 }
1968
1969 /**
1970  * The caller should guarantee to update the object ctime
1971  * after xattr_set if needed.
1972  */
1973 static int mdd_xattr_del(const struct lu_env *env, struct md_object *obj,
1974                          const char *name)
1975 {
1976         struct mdd_object *mdd_obj = md2mdd_obj(obj);
1977         struct lu_attr *attr = MDD_ENV_VAR(env, cattr);
1978         struct mdd_device *mdd = mdo2mdd(obj);
1979         struct thandle *handle;
1980         int rc;
1981         ENTRY;
1982
1983         rc = mdd_la_get(env, mdd_obj, attr);
1984         if (rc)
1985                 RETURN(rc);
1986
1987         rc = mdd_xattr_sanity_check(env, mdd_obj, attr, name);
1988         if (rc)
1989                 RETURN(rc);
1990
1991         handle = mdd_trans_create(env, mdd);
1992         if (IS_ERR(handle))
1993                 RETURN(PTR_ERR(handle));
1994
1995         rc = mdd_declare_xattr_del(env, mdd, mdd_obj, name, handle);
1996         if (rc)
1997                 GOTO(stop, rc);
1998
1999         rc = mdd_trans_start(env, mdd, handle);
2000         if (rc)
2001                 GOTO(stop, rc);
2002
2003         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
2004         rc = mdo_xattr_del(env, mdd_obj, name, handle);
2005         mdd_write_unlock(env, mdd_obj);
2006         if (rc)
2007                 GOTO(stop, rc);
2008
2009         if (mdd_xattr_changelog_type(env, mdd, name) < 0)
2010                 GOTO(stop, rc = 0);
2011
2012         rc = mdd_changelog_data_store_xattr(env, mdd, CL_SETXATTR, 0, mdd_obj,
2013                                             name, handle);
2014
2015         EXIT;
2016 stop:
2017         return mdd_trans_stop(env, mdd, rc, handle);
2018 }
2019
2020 /*
2021  * read lov/lmv EA of an object
2022  * return the lov/lmv EA in an allocated lu_buf
2023  */
2024 int mdd_stripe_get(const struct lu_env *env, struct mdd_object *obj,
2025                    struct lu_buf *lmm_buf, const char *name)
2026 {
2027         struct lu_buf *buf = &mdd_env_info(env)->mti_big_buf;
2028         int rc;
2029
2030         ENTRY;
2031
2032         if (buf->lb_buf == NULL) {
2033                 buf = lu_buf_check_and_alloc(buf, 4096);
2034                 if (buf->lb_buf == NULL)
2035                         RETURN(-ENOMEM);
2036         }
2037
2038 repeat:
2039         rc = mdo_xattr_get(env, obj, buf, name);
2040         if (rc == -ERANGE) {
2041                 /* mti_big_buf is allocated but is too small
2042                  * we need to increase it */
2043                 buf = lu_buf_check_and_alloc(&mdd_env_info(env)->mti_big_buf,
2044                                              buf->lb_len * 2);
2045                 if (buf->lb_buf == NULL)
2046                         RETURN(-ENOMEM);
2047                 goto repeat;
2048         } else if (rc < 0) {
2049                 RETURN(rc);
2050         } else if (rc == 0) {
2051                 RETURN(-ENODATA);
2052         }
2053
2054         lu_buf_alloc(lmm_buf, rc);
2055         if (lmm_buf->lb_buf == NULL)
2056                 RETURN(-ENOMEM);
2057
2058         /*
2059          * we don't use lmm_buf directly, because we don't know xattr size, so
2060          * by using mti_big_buf we can avoid calling mdo_xattr_get() twice.
2061          */
2062         memcpy(lmm_buf->lb_buf, buf->lb_buf, rc);
2063
2064         RETURN(0);
2065 }
2066
2067 static int mdd_xattr_hsm_replace(const struct lu_env *env,
2068                                  struct mdd_object *o, struct lu_buf *buf,
2069                                  struct thandle *handle)
2070 {
2071         struct hsm_attrs *attrs;
2072         enum hsm_states hsm_flags;
2073         enum changelog_rec_flags clf_flags = 0;
2074         int rc;
2075         ENTRY;
2076
2077         rc = mdo_xattr_set(env, o, buf, XATTR_NAME_HSM, LU_XATTR_REPLACE,
2078                            handle);
2079         if (rc != 0)
2080                 RETURN(rc);
2081
2082         attrs = buf->lb_buf;
2083         hsm_flags = le32_to_cpu(attrs->hsm_flags);
2084         if (!(hsm_flags & HS_RELEASED) || mdd_is_dead_obj(o))
2085                 RETURN(0);
2086
2087         /* Add a changelog record for release. */
2088         hsm_set_cl_event(&clf_flags, HE_RELEASE);
2089         rc = mdd_changelog_data_store(env, mdo2mdd(&o->mod_obj), CL_HSM,
2090                                       clf_flags, o, handle);
2091         RETURN(rc);
2092 }
2093
2094 /*
2095  *  check if layout swapping between 2 objects is allowed
2096  *  the rules are:
2097  *  - only normal FIDs or non-system IGIFs
2098  *  - same type of objects
2099  *  - same owner/group (so quotas are still valid) unless this is from HSM
2100  *    release.
2101  */
2102 static int mdd_layout_swap_allowed(const struct lu_env *env,
2103                                    struct mdd_object *o1,
2104                                    const struct lu_attr *attr1,
2105                                    struct mdd_object *o2,
2106                                    const struct lu_attr *attr2,
2107                                    __u64 flags)
2108 {
2109         const struct lu_fid     *fid1, *fid2;
2110         ENTRY;
2111
2112         fid1 = mdo2fid(o1);
2113         fid2 = mdo2fid(o2);
2114
2115         if (!fid_is_norm(fid1) &&
2116             (!fid_is_igif(fid1) || IS_ERR(mdd_links_get(env, o1))))
2117                 RETURN(-EBADF);
2118
2119         if (!fid_is_norm(fid2) &&
2120             (!fid_is_igif(fid2) || IS_ERR(mdd_links_get(env, o2))))
2121                 RETURN(-EBADF);
2122
2123         if (mdd_object_type(o1) != mdd_object_type(o2)) {
2124                 if (S_ISDIR(mdd_object_type(o1)))
2125                         RETURN(-ENOTDIR);
2126                 if (S_ISREG(mdd_object_type(o1)))
2127                         RETURN(-EISDIR);
2128                 RETURN(-EBADF);
2129         }
2130
2131         if (flags & SWAP_LAYOUTS_MDS_HSM)
2132                 RETURN(0);
2133
2134         if ((attr1->la_uid != attr2->la_uid) ||
2135             (attr1->la_gid != attr2->la_gid))
2136                 RETURN(-EPERM);
2137
2138         RETURN(0);
2139 }
2140
2141 /* XXX To set the proper lmm_oi & lmm_layout_gen when swap layouts, we have to
2142  *     look into the layout in MDD layer. */
2143 static int mdd_lmm_oi(struct lov_mds_md *lmm, struct ost_id *oi, bool get)
2144 {
2145         struct lov_comp_md_v1   *comp_v1;
2146         struct lov_mds_md       *v1;
2147         int                      i, ent_count;
2148         __u32                    off;
2149
2150         if (le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_COMP_V1) {
2151                 comp_v1 = (struct lov_comp_md_v1 *)lmm;
2152                 ent_count = le16_to_cpu(comp_v1->lcm_entry_count);
2153
2154                 if (ent_count == 0)
2155                         return -EINVAL;
2156
2157                 if (get) {
2158                         off = le32_to_cpu(comp_v1->lcm_entries[0].lcme_offset);
2159                         v1 = (struct lov_mds_md *)((char *)comp_v1 + off);
2160                         *oi = v1->lmm_oi;
2161                 } else {
2162                         for (i = 0; i < le32_to_cpu(ent_count); i++) {
2163                                 off = le32_to_cpu(comp_v1->lcm_entries[i].
2164                                                 lcme_offset);
2165                                 v1 = (struct lov_mds_md *)((char *)comp_v1 +
2166                                                 off);
2167                                 v1->lmm_oi = *oi;
2168                         }
2169                 }
2170         } else if (le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_V1 ||
2171                    le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_V3) {
2172                 if (get)
2173                         *oi = lmm->lmm_oi;
2174                 else
2175                         lmm->lmm_oi = *oi;
2176         } else {
2177                 return -EINVAL;
2178         }
2179         return 0;
2180 }
2181
2182 static inline int mdd_get_lmm_oi(struct lov_mds_md *lmm, struct ost_id *oi)
2183 {
2184         return mdd_lmm_oi(lmm, oi, true);
2185 }
2186
2187 static inline int mdd_set_lmm_oi(struct lov_mds_md *lmm, struct ost_id *oi)
2188 {
2189         return mdd_lmm_oi(lmm, oi, false);
2190 }
2191
2192 static int mdd_lmm_gen(struct lov_mds_md *lmm, __u32 *gen, bool get)
2193 {
2194         struct lov_comp_md_v1 *comp_v1;
2195
2196         if (le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_COMP_V1) {
2197                 comp_v1 = (struct lov_comp_md_v1 *)lmm;
2198                 if (get)
2199                         *gen = le32_to_cpu(comp_v1->lcm_layout_gen);
2200                 else
2201                         comp_v1->lcm_layout_gen = cpu_to_le32(*gen);
2202         } else if (le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_V1 ||
2203                    le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_V3) {
2204                 __u16 tmp_gen = *gen;
2205                 if (get)
2206                         *gen = le16_to_cpu(lmm->lmm_layout_gen);
2207                 else
2208                         lmm->lmm_layout_gen = cpu_to_le16(tmp_gen);
2209         } else {
2210                 return -EINVAL;
2211         }
2212         return 0;
2213 }
2214
2215 static inline int mdd_get_lmm_gen(struct lov_mds_md *lmm, __u32 *gen)
2216 {
2217         return mdd_lmm_gen(lmm, gen, true);
2218 }
2219
2220 static inline int mdd_set_lmm_gen(struct lov_mds_md *lmm, __u32 *gen)
2221 {
2222         return mdd_lmm_gen(lmm, gen, false);
2223 }
2224
2225 static int mdd_dom_data_truncate(const struct lu_env *env,
2226                                  struct mdd_device *mdd, struct mdd_object *mo)
2227 {
2228         struct thandle *th;
2229         struct dt_object *dom;
2230         int rc;
2231
2232         dom = dt_object_locate(mdd_object_child(mo), mdd->mdd_bottom);
2233         if (!dom)
2234                 GOTO(out, rc = -ENODATA);
2235
2236         th = dt_trans_create(env, mdd->mdd_bottom);
2237         if (IS_ERR(th))
2238                 GOTO(out, rc = PTR_ERR(th));
2239
2240         rc = dt_declare_punch(env, dom, 0, OBD_OBJECT_EOF, th);
2241         if (rc)
2242                 GOTO(stop, rc);
2243
2244         rc = dt_trans_start_local(env, mdd->mdd_bottom, th);
2245         if (rc != 0)
2246                 GOTO(stop, rc);
2247
2248         rc = dt_punch(env, dom, 0, OBD_OBJECT_EOF, th);
2249 stop:
2250         dt_trans_stop(env, mdd->mdd_bottom, th);
2251 out:
2252         /* Ignore failure but report the error */
2253         if (rc)
2254                 CERROR("%s: "DFID" can't truncate DOM inode data, rc = %d\n",
2255                        mdd_obj_dev_name(mo), PFID(mdo2fid(mo)), rc);
2256         return rc;
2257 }
2258
2259 /**
2260  * swap layouts between 2 lustre objects
2261  */
2262 static int mdd_swap_layouts(const struct lu_env *env, struct md_object *obj1,
2263                             struct md_object *obj2, __u64 flags)
2264 {
2265         struct mdd_thread_info *info = mdd_env_info(env);
2266         struct mdd_object *fst_o = md2mdd_obj(obj1);
2267         struct mdd_object *snd_o = md2mdd_obj(obj2);
2268         struct lu_attr *fst_la = MDD_ENV_VAR(env, cattr);
2269         struct lu_attr *snd_la = MDD_ENV_VAR(env, tattr);
2270         struct mdd_device *mdd = mdo2mdd(obj1);
2271         struct lov_mds_md *fst_lmm, *snd_lmm;
2272         struct lu_buf *fst_buf = &info->mti_buf[0];
2273         struct lu_buf *snd_buf = &info->mti_buf[1];
2274         struct lu_buf *fst_hsm_buf = &info->mti_buf[2];
2275         struct lu_buf *snd_hsm_buf = &info->mti_buf[3];
2276         struct ost_id *saved_oi = NULL;
2277         struct thandle *handle;
2278         struct mdd_object *dom_o = NULL;
2279         __u64 domsize_dom, domsize_vlt;
2280         __u32 fst_gen, snd_gen, saved_gen;
2281         int fst_fl;
2282         int rc, rc2;
2283
2284         ENTRY;
2285
2286         CLASSERT(ARRAY_SIZE(info->mti_buf) >= 4);
2287         memset(info->mti_buf, 0, sizeof(info->mti_buf));
2288
2289         /* we have to sort the 2 obj, so locking will always
2290          * be in the same order, even in case of 2 concurrent swaps */
2291         rc = lu_fid_cmp(mdo2fid(fst_o), mdo2fid(snd_o));
2292         if (rc == 0) /* same fid ? */
2293                 RETURN(-EPERM);
2294
2295         if (rc < 0)
2296                 swap(fst_o, snd_o);
2297
2298         rc = mdd_la_get(env, fst_o, fst_la);
2299         if (rc != 0)
2300                 RETURN(rc);
2301
2302         rc = mdd_la_get(env, snd_o, snd_la);
2303         if (rc != 0)
2304                 RETURN(rc);
2305
2306         /* check if layout swapping is allowed */
2307         rc = mdd_layout_swap_allowed(env, fst_o, fst_la, snd_o, snd_la, flags);
2308         if (rc != 0)
2309                 RETURN(rc);
2310
2311         handle = mdd_trans_create(env, mdd);
2312         if (IS_ERR(handle))
2313                 RETURN(PTR_ERR(handle));
2314
2315         /* objects are already sorted */
2316         mdd_write_lock(env, fst_o, MOR_TGT_CHILD);
2317         mdd_write_lock(env, snd_o, MOR_TGT_CHILD);
2318
2319         rc = mdd_stripe_get(env, fst_o, fst_buf, XATTR_NAME_LOV);
2320         if (rc < 0 && rc != -ENODATA)
2321                 GOTO(stop, rc);
2322
2323         rc = mdd_stripe_get(env, snd_o, snd_buf, XATTR_NAME_LOV);
2324         if (rc < 0 && rc != -ENODATA)
2325                 GOTO(stop, rc);
2326
2327         /* check if file has DoM. DoM file can be migrated only to another
2328          * DoM layout with the same DoM component size or to an non-DOM
2329          * layout. After migration to OSTs layout, local MDT inode data
2330          * should be truncated.
2331          * Objects are sorted by FIDs, considering that original file's FID
2332          * is always smaller the snd_o is always original file we are migrating
2333          * from.
2334          */
2335         domsize_dom = mdd_lmm_dom_size(snd_buf->lb_buf);
2336         domsize_vlt = mdd_lmm_dom_size(fst_buf->lb_buf);
2337
2338         /* Only migration is supported for DoM files, not 'swap_layouts' so
2339          * target file must be volatile and orphan.
2340          */
2341         if (fst_o->mod_flags & (ORPHAN_OBJ | VOLATILE_OBJ)) {
2342                 dom_o = domsize_dom ? snd_o : NULL;
2343         } else if (snd_o->mod_flags & (ORPHAN_OBJ | VOLATILE_OBJ)) {
2344                 swap(domsize_dom, domsize_vlt);
2345                 dom_o = domsize_dom ? fst_o : NULL;
2346         } else if (domsize_dom > 0 || domsize_vlt > 0) {
2347                 /* 'lfs swap_layouts' case, neither file should have DoM */
2348                 rc = -EOPNOTSUPP;
2349                 CDEBUG(D_LAYOUT, "cannot swap layouts with DOM component, "
2350                        "use migration instead: rc = %d\n", rc);
2351                 GOTO(stop, rc);
2352         }
2353
2354         if (domsize_vlt > 0 && domsize_dom == 0) {
2355                 rc = -EOPNOTSUPP;
2356                 CDEBUG(D_LAYOUT, "cannot swap layout for "DFID": OST to DOM "
2357                        "migration is not supported: rc = %d\n",
2358                        PFID(mdo2fid(snd_o)), rc);
2359                 GOTO(stop, rc);
2360         } else if (domsize_vlt > 0 && domsize_dom != domsize_vlt) {
2361                 rc = -EOPNOTSUPP;
2362                 CDEBUG(D_LAYOUT, "cannot swap layout for "DFID": new layout "
2363                        "must have the same DoM component size: rc = %d\n",
2364                        PFID(mdo2fid(fst_o)), rc);
2365                 GOTO(stop, rc);
2366         } else if (domsize_vlt > 0) {
2367                 /* Migration with the same DOM component size, no need to
2368                  * truncate local data, it is still being used */
2369                 dom_o = NULL;
2370         }
2371
2372         /* swapping 2 non existant layouts is a success */
2373         if (fst_buf->lb_buf == NULL && snd_buf->lb_buf == NULL)
2374                 GOTO(stop, rc = 0);
2375
2376         /* to help inode migration between MDT, it is better to
2377          * start by the no layout file (if one), so we order the swap */
2378         if (snd_buf->lb_buf == NULL) {
2379                 swap(fst_o, snd_o);
2380                 swap(fst_buf, snd_buf);
2381         }
2382
2383         fst_gen = snd_gen = 0;
2384         /* lmm and generation layout initialization */
2385         if (fst_buf->lb_buf != NULL) {
2386                 fst_lmm = fst_buf->lb_buf;
2387                 mdd_get_lmm_gen(fst_lmm, &fst_gen);
2388                 fst_fl  = LU_XATTR_REPLACE;
2389         } else {
2390                 fst_lmm = NULL;
2391                 fst_gen = 0;
2392                 fst_fl  = LU_XATTR_CREATE;
2393         }
2394
2395         snd_lmm = snd_buf->lb_buf;
2396         mdd_get_lmm_gen(snd_lmm, &snd_gen);
2397
2398         saved_gen = fst_gen;
2399         /* increase the generation layout numbers */
2400         snd_gen++;
2401         fst_gen++;
2402
2403         /*
2404          * XXX The layout generation is used to generate component IDs for
2405          *     the composite file, we have to do some special tweaks to make
2406          *     sure the layout generation is always adequate for that job.
2407          */
2408
2409         /* Skip invalid generation number for composite layout */
2410         if ((snd_gen & LCME_ID_MASK) == 0)
2411                 snd_gen++;
2412         if ((fst_gen & LCME_ID_MASK) == 0)
2413                 fst_gen++;
2414         /* Make sure the generation is greater than all the component IDs */
2415         if (fst_gen < snd_gen)
2416                 fst_gen = snd_gen;
2417         else if (fst_gen > snd_gen)
2418                 snd_gen = fst_gen;
2419
2420         /* set the file specific informations in lmm */
2421         if (fst_lmm != NULL) {
2422                 saved_oi = &info->mti_oa.o_oi;
2423                 mdd_get_lmm_oi(fst_lmm, saved_oi);
2424                 mdd_set_lmm_gen(fst_lmm, &snd_gen);
2425                 mdd_set_lmm_oi(fst_lmm, &snd_lmm->lmm_oi);
2426                 mdd_set_lmm_oi(snd_lmm, saved_oi);
2427         } else {
2428                 if ((snd_lmm->lmm_magic & cpu_to_le32(LOV_MAGIC_MASK)) ==
2429                     cpu_to_le32(LOV_MAGIC_MAGIC))
2430                         snd_lmm->lmm_magic |= cpu_to_le32(LOV_MAGIC_DEFINED);
2431                 else
2432                         GOTO(stop, rc = -EPROTO);
2433         }
2434         mdd_set_lmm_gen(snd_lmm, &fst_gen);
2435
2436         /* Prepare HSM attribute if it's required */
2437         if (flags & SWAP_LAYOUTS_MDS_HSM) {
2438                 const int buflen = sizeof(struct hsm_attrs);
2439
2440                 lu_buf_alloc(fst_hsm_buf, buflen);
2441                 lu_buf_alloc(snd_hsm_buf, buflen);
2442                 if (fst_hsm_buf->lb_buf == NULL || snd_hsm_buf->lb_buf == NULL)
2443                         GOTO(stop, rc = -ENOMEM);
2444
2445                 /* Read HSM attribute */
2446                 rc = mdo_xattr_get(env, fst_o, fst_hsm_buf, XATTR_NAME_HSM);
2447                 if (rc < 0)
2448                         GOTO(stop, rc);
2449
2450                 rc = mdo_xattr_get(env, snd_o, snd_hsm_buf, XATTR_NAME_HSM);
2451                 if (rc < 0)
2452                         GOTO(stop, rc);
2453
2454                 rc = mdd_declare_xattr_set(env, mdd, fst_o, snd_hsm_buf,
2455                                            XATTR_NAME_HSM, LU_XATTR_REPLACE,
2456                                            handle);
2457                 if (rc < 0)
2458                         GOTO(stop, rc);
2459
2460                 rc = mdd_declare_xattr_set(env, mdd, snd_o, fst_hsm_buf,
2461                                            XATTR_NAME_HSM, LU_XATTR_REPLACE,
2462                                            handle);
2463                 if (rc < 0)
2464                         GOTO(stop, rc);
2465         }
2466
2467         /* prepare transaction */
2468         rc = mdd_declare_xattr_set(env, mdd, fst_o, snd_buf, XATTR_NAME_LOV,
2469                                    fst_fl, handle);
2470         if (rc != 0)
2471                 GOTO(stop, rc);
2472
2473         if (fst_buf->lb_buf != NULL)
2474                 rc = mdd_declare_xattr_set(env, mdd, snd_o, fst_buf,
2475                                            XATTR_NAME_LOV, LU_XATTR_REPLACE,
2476                                            handle);
2477         else
2478                 rc = mdd_declare_xattr_del(env, mdd, snd_o, XATTR_NAME_LOV,
2479                                            handle);
2480         if (rc != 0)
2481                 GOTO(stop, rc);
2482
2483         rc = mdd_trans_start(env, mdd, handle);
2484         if (rc != 0)
2485                 GOTO(stop, rc);
2486
2487         if (flags & SWAP_LAYOUTS_MDS_HSM) {
2488                 rc = mdd_xattr_hsm_replace(env, fst_o, snd_hsm_buf, handle);
2489                 if (rc < 0)
2490                         GOTO(stop, rc);
2491
2492                 rc = mdd_xattr_hsm_replace(env, snd_o, fst_hsm_buf, handle);
2493                 if (rc < 0) {
2494                         rc2 = mdd_xattr_hsm_replace(env, fst_o, fst_hsm_buf,
2495                                                     handle);
2496                         if (rc2 < 0)
2497                                 CERROR("%s: restore "DFID" HSM error: %d/%d\n",
2498                                        mdd_obj_dev_name(fst_o),
2499                                        PFID(mdo2fid(fst_o)), rc, rc2);
2500                         GOTO(stop, rc);
2501                 }
2502         }
2503
2504         rc = mdo_xattr_set(env, fst_o, snd_buf, XATTR_NAME_LOV, fst_fl, handle);
2505         if (rc != 0)
2506                 GOTO(stop, rc);
2507
2508         if (unlikely(OBD_FAIL_CHECK(OBD_FAIL_MDS_HSM_SWAP_LAYOUTS))) {
2509                 rc = -EOPNOTSUPP;
2510         } else {
2511                 if (fst_buf->lb_buf != NULL)
2512                         rc = mdo_xattr_set(env, snd_o, fst_buf, XATTR_NAME_LOV,
2513                                            LU_XATTR_REPLACE, handle);
2514                 else
2515                         rc = mdo_xattr_del(env, snd_o, XATTR_NAME_LOV, handle);
2516         }
2517         if (rc != 0)
2518                 GOTO(out_restore, rc);
2519
2520         /* Issue one changelog record per file */
2521         rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, fst_o, handle);
2522         if (rc)
2523                 GOTO(stop, rc);
2524
2525         rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, snd_o, handle);
2526         if (rc)
2527                 GOTO(stop, rc);
2528         EXIT;
2529
2530 out_restore:
2531         if (rc != 0) {
2532                 int steps = 0;
2533
2534                 /* failure on second file, but first was done, so we have
2535                  * to roll back first. */
2536                 if (fst_buf->lb_buf != NULL) {
2537                         mdd_set_lmm_oi(fst_lmm, saved_oi);
2538                         mdd_set_lmm_gen(fst_lmm, &saved_gen);
2539                         rc2 = mdo_xattr_set(env, fst_o, fst_buf, XATTR_NAME_LOV,
2540                                             LU_XATTR_REPLACE, handle);
2541                 } else {
2542                         rc2 = mdo_xattr_del(env, fst_o, XATTR_NAME_LOV, handle);
2543                 }
2544                 if (rc2 < 0)
2545                         goto do_lbug;
2546
2547                 ++steps;
2548                 rc2 = mdd_xattr_hsm_replace(env, fst_o, fst_hsm_buf, handle);
2549                 if (rc2 < 0)
2550                         goto do_lbug;
2551
2552                 ++steps;
2553                 rc2 = mdd_xattr_hsm_replace(env, snd_o, snd_hsm_buf, handle);
2554
2555         do_lbug:
2556                 if (rc2 < 0) {
2557                         /* very bad day */
2558                         CERROR("%s: unable to roll back layout swap. FIDs: "
2559                                DFID" and "DFID "error: %d/%d, steps: %d\n",
2560                                mdd_obj_dev_name(fst_o),
2561                                PFID(mdo2fid(snd_o)), PFID(mdo2fid(fst_o)),
2562                                rc, rc2, steps);
2563                         /* a solution to avoid journal commit is to panic,
2564                          * but it has strong consequences so we use LBUG to
2565                          * allow sysdamin to choose to panic or not
2566                          */
2567                         LBUG();
2568                 }
2569         }
2570
2571 stop:
2572         rc = mdd_trans_stop(env, mdd, rc, handle);
2573
2574         /* Truncate local DOM data if all went well */
2575         if (!rc && dom_o)
2576                 mdd_dom_data_truncate(env, mdd, dom_o);
2577
2578         mdd_write_unlock(env, snd_o);
2579         mdd_write_unlock(env, fst_o);
2580
2581         lu_buf_free(fst_buf);
2582         lu_buf_free(snd_buf);
2583         lu_buf_free(fst_hsm_buf);
2584         lu_buf_free(snd_hsm_buf);
2585
2586         if (!rc) {
2587                 (void) mdd_object_pfid_replace(env, fst_o);
2588                 (void) mdd_object_pfid_replace(env, snd_o);
2589         }
2590         return rc;
2591 }
2592
2593 static int mdd_declare_layout_change(const struct lu_env *env,
2594                                      struct mdd_device *mdd,
2595                                      struct mdd_object *obj,
2596                                      struct md_layout_change *mlc,
2597                                      struct thandle *handle)
2598 {
2599         int rc;
2600
2601         rc = mdo_declare_layout_change(env, obj, mlc, handle);
2602         if (rc)
2603                 return rc;
2604
2605         return mdd_declare_changelog_store(env, mdd, CL_LAYOUT, NULL, NULL,
2606                                            handle);
2607 }
2608
2609 /* For PFL, this is used to instantiate necessary component objects. */
2610 static int
2611 mdd_layout_instantiate_component(const struct lu_env *env,
2612                 struct mdd_object *obj, struct md_layout_change *mlc,
2613                 struct thandle *handle)
2614 {
2615         struct mdd_device *mdd = mdd_obj2mdd_dev(obj);
2616         int rc;
2617         ENTRY;
2618
2619         if (mlc->mlc_opc != MD_LAYOUT_WRITE)
2620                 RETURN(-ENOTSUPP);
2621
2622         rc = mdd_declare_layout_change(env, mdd, obj, mlc, handle);
2623         /**
2624          * It's possible that another layout write intent has already
2625          * instantiated our objects, so a -EALREADY returned, and we need to
2626          * do nothing.
2627          */
2628         if (rc)
2629                 RETURN(rc == -EALREADY ? 0 : rc);
2630
2631         rc = mdd_trans_start(env, mdd, handle);
2632         if (rc)
2633                 RETURN(rc);
2634
2635         mdd_write_lock(env, obj, MOR_TGT_CHILD);
2636         rc = mdo_layout_change(env, obj, mlc, handle);
2637         mdd_write_unlock(env, obj);
2638         if (rc)
2639                 RETURN(rc);
2640
2641         rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, obj, handle);
2642         RETURN(rc);
2643 }
2644
2645 /**
2646  * Change the FLR layout from RDONLY to WRITE_PENDING.
2647  *
2648  * It picks the primary mirror, and bumps the layout version, and set
2649  * layout version xattr to OST objects in a sync tx. In order to facilitate
2650  * the handling of phantom writers from evicted clients, the clients carry
2651  * layout version of the file with write RPC, so that the OSTs can verify
2652  * if the write RPCs are legitimate, meaning not from evicted clients.
2653  */
2654 static int
2655 mdd_layout_update_rdonly(const struct lu_env *env, struct mdd_object *obj,
2656                          struct md_layout_change *mlc, struct thandle *handle)
2657 {
2658         struct mdd_device *mdd = mdd_obj2mdd_dev(obj);
2659         struct lu_buf *som_buf = &mdd_env_info(env)->mti_buf[1];
2660         struct lustre_som_attrs *som = &mlc->mlc_som;
2661         int fl = 0;
2662         int rc;
2663         ENTRY;
2664
2665         /* Verify acceptable operations */
2666         switch (mlc->mlc_opc) {
2667         case MD_LAYOUT_WRITE:
2668         case MD_LAYOUT_RESYNC:
2669                 /* these are legal operations - this represents the case that
2670                  * a few mirrors were missed in the last resync. */
2671                 break;
2672         case MD_LAYOUT_RESYNC_DONE:
2673         default:
2674                 RETURN(0);
2675         }
2676
2677         som_buf->lb_buf = som;
2678         som_buf->lb_len = sizeof(*som);
2679         rc = mdo_xattr_get(env, obj, som_buf, XATTR_NAME_SOM);
2680         if (rc < 0 && rc != -ENODATA)
2681                 RETURN(rc);
2682
2683         if (rc > 0) {
2684                 lustre_som_swab(som);
2685                 if (som->lsa_valid & SOM_FL_STRICT)
2686                         fl = LU_XATTR_REPLACE;
2687         }
2688
2689         rc = mdd_declare_layout_change(env, mdd, obj, mlc, handle);
2690         if (rc)
2691                 GOTO(out, rc);
2692
2693         if (fl) {
2694                 rc = mdd_declare_xattr_set(env, mdd, obj, som_buf,
2695                                            XATTR_NAME_SOM, fl, handle);
2696                 if (rc)
2697                         GOTO(out, rc);
2698         }
2699
2700         /* record a changelog for data mover to consume */
2701         rc = mdd_declare_changelog_store(env, mdd, CL_FLRW, NULL, NULL, handle);
2702         if (rc)
2703                 GOTO(out, rc);
2704
2705         rc = mdd_trans_start(env, mdd, handle);
2706         if (rc)
2707                 GOTO(out, rc);
2708
2709         /* it needs a sync tx to make FLR to work properly */
2710         handle->th_sync = 1;
2711
2712         mdd_write_lock(env, obj, MOR_TGT_CHILD);
2713         rc = mdo_layout_change(env, obj, mlc, handle);
2714         if (!rc && fl) {
2715                 /* SOM state transition from STRICT to STALE */
2716                 som->lsa_valid = SOM_FL_STALE;
2717                 lustre_som_swab(som);
2718                 rc = mdo_xattr_set(env, obj, som_buf, XATTR_NAME_SOM,
2719                                    fl, handle);
2720         }
2721         mdd_write_unlock(env, obj);
2722         if (rc)
2723                 GOTO(out, rc);
2724
2725         rc = mdd_changelog_data_store(env, mdd, CL_FLRW, 0, obj, handle);
2726         if (rc)
2727                 GOTO(out, rc);
2728
2729         EXIT;
2730
2731 out:
2732         return rc;
2733 }
2734
2735 /**
2736  * Handle mirrored file state transition when it's in WRITE_PENDING.
2737  *
2738  * Only MD_LAYOUT_RESYNC, which represents start of resync, is allowed when
2739  * the file is in WRITE_PENDING state. If everything goes fine, the file's
2740  * layout version will be increased, and the file's state will be changed to
2741  * SYNC_PENDING.
2742  */
2743 static int
2744 mdd_layout_update_write_pending(const struct lu_env *env,
2745                 struct mdd_object *obj, struct md_layout_change *mlc,
2746                 struct thandle *handle)
2747 {
2748         struct mdd_device *mdd = mdd_obj2mdd_dev(obj);
2749         int rc;
2750         ENTRY;
2751
2752         switch (mlc->mlc_opc) {
2753         case MD_LAYOUT_RESYNC:
2754                 /* Upon receiving the resync request, it should
2755                  * instantiate all stale components right away to get ready
2756                  * for mirror copy. In order to avoid layout version change,
2757                  * client should avoid sending LAYOUT_WRITE request at the
2758                  * resync state. */
2759                 break;
2760         case MD_LAYOUT_WRITE:
2761                 /* legal race for concurrent write, the file state has been
2762                  * changed by another client. */
2763                 break;
2764         default:
2765                 RETURN(-EBUSY);
2766         }
2767
2768         rc = mdd_declare_layout_change(env, mdd, obj, mlc, handle);
2769         if (rc)
2770                 GOTO(out, rc);
2771
2772         rc = mdd_trans_start(env, mdd, handle);
2773         if (rc)
2774                 GOTO(out, rc);
2775
2776         /* it needs a sync tx to make FLR to work properly */
2777         handle->th_sync = 1;
2778
2779         mdd_write_lock(env, obj, MOR_TGT_CHILD);
2780         rc = mdo_layout_change(env, obj, mlc, handle);
2781         mdd_write_unlock(env, obj);
2782         if (rc)
2783                 GOTO(out, rc);
2784
2785         EXIT;
2786
2787 out:
2788         return rc;
2789 }
2790
2791 /**
2792  * Handle the requests when a FLR file's state is in SYNC_PENDING.
2793  *
2794  * Only concurrent write and sync complete requests are possible when the
2795  * file is in SYNC_PENDING. For the latter request, it will pass in the
2796  * mirrors that have been synchronized, then the stale bit will be cleared
2797  * to make the file's state turn into RDONLY.
2798  * For concurrent write reqeust, it just needs to change the file's state
2799  * to WRITE_PENDING in a sync tx. It doesn't have to change the layout
2800  * version because the version will be increased in the transition to
2801  * SYNC_PENDING later so that it can deny the write request from potential
2802  * evicted SYNC clients. */
2803 static int
2804 mdd_object_update_sync_pending(const struct lu_env *env, struct mdd_object *obj,
2805                 struct md_layout_change *mlc, struct thandle *handle)
2806 {
2807         struct mdd_device *mdd = mdd_obj2mdd_dev(obj);
2808         struct lu_buf *som_buf = &mdd_env_info(env)->mti_buf[1];
2809         int fl = 0;
2810         int rc;
2811         ENTRY;
2812
2813         /* operation validation */
2814         switch (mlc->mlc_opc) {
2815         case MD_LAYOUT_RESYNC_DONE:
2816                 /* resync complete. */
2817         case MD_LAYOUT_WRITE:
2818                 /* concurrent write. */
2819                 break;
2820         case MD_LAYOUT_RESYNC:
2821                 /* resync again, most likely the previous run failed.
2822                  * no-op if it's already in SYNC_PENDING state */
2823                 RETURN(0);
2824         default:
2825                 RETURN(-EBUSY);
2826         }
2827
2828         if (mlc->mlc_som.lsa_valid & SOM_FL_STRICT) {
2829                 rc = mdo_xattr_get(env, obj, &LU_BUF_NULL, XATTR_NAME_SOM);
2830                 if (rc < 0 && rc != -ENODATA)
2831                         RETURN(rc);
2832
2833                 fl = rc == -ENODATA ? LU_XATTR_CREATE : LU_XATTR_REPLACE;
2834                 lustre_som_swab(&mlc->mlc_som);
2835                 som_buf->lb_buf = &mlc->mlc_som;
2836                 som_buf->lb_len = sizeof(mlc->mlc_som);
2837         }
2838
2839         rc = mdd_declare_layout_change(env, mdd, obj, mlc, handle);
2840         if (rc)
2841                 GOTO(out, rc);
2842
2843         /* record a changelog for the completion of resync */
2844         rc = mdd_declare_changelog_store(env, mdd, CL_RESYNC, NULL, NULL,
2845                                          handle);
2846         if (rc)
2847                 GOTO(out, rc);
2848
2849         /* RESYNC_DONE has piggybacked size and blocks */
2850         if (fl) {
2851                 rc = mdd_declare_xattr_set(env, mdd, obj, som_buf,
2852                                            XATTR_NAME_SOM, fl, handle);
2853                 if (rc)
2854                         GOTO(out, rc);
2855         }
2856
2857         rc = mdd_trans_start(env, mdd, handle);
2858         if (rc)
2859                 GOTO(out, rc);
2860
2861         /* it needs a sync tx to make FLR to work properly */
2862         handle->th_sync = 1;
2863
2864         rc = mdo_layout_change(env, obj, mlc, handle);
2865         if (rc)
2866                 GOTO(out, rc);
2867
2868         if (fl) {
2869                 rc = mdo_xattr_set(env, obj, som_buf, XATTR_NAME_SOM,
2870                                    fl, handle);
2871                 if (rc)
2872                         GOTO(out, rc);
2873         }
2874
2875         rc = mdd_changelog_data_store(env, mdd, CL_RESYNC, 0, obj, handle);
2876         if (rc)
2877                 GOTO(out, rc);
2878         EXIT;
2879 out:
2880         return rc;
2881 }
2882
2883 /**
2884  * Layout change callback for object.
2885  *
2886  * This is only used by FLR for now. In the future, it can be exteneded to
2887  * handle all layout change.
2888  */
2889 static int
2890 mdd_layout_change(const struct lu_env *env, struct md_object *o,
2891                   struct md_layout_change *mlc)
2892 {
2893         struct mdd_object       *obj = md2mdd_obj(o);
2894         struct mdd_device       *mdd = mdd_obj2mdd_dev(obj);
2895         struct lu_buf           *buf = mdd_buf_get(env, NULL, 0);
2896         struct lov_comp_md_v1   *lcm;
2897         struct thandle          *handle;
2898         int flr_state;
2899         int rc;
2900         ENTRY;
2901
2902         /* Verify acceptable operations */
2903         switch (mlc->mlc_opc) {
2904         case MD_LAYOUT_WRITE:
2905         case MD_LAYOUT_RESYNC:
2906         case MD_LAYOUT_RESYNC_DONE:
2907                 break;
2908         default:
2909                 RETURN(-ENOTSUPP);
2910         }
2911
2912         handle = mdd_trans_create(env, mdd);
2913         if (IS_ERR(handle))
2914                 RETURN(PTR_ERR(handle));
2915
2916         rc = mdd_stripe_get(env, obj, buf, XATTR_NAME_LOV);
2917         if (rc < 0) {
2918                 if (rc == -ENODATA)
2919                         rc = -EINVAL;
2920                 GOTO(out, rc);
2921         }
2922
2923         /* analyze the layout to make sure it's a FLR file */
2924         lcm = buf->lb_buf;
2925         if (le32_to_cpu(lcm->lcm_magic) != LOV_MAGIC_COMP_V1)
2926                 GOTO(out, rc = -EINVAL);
2927
2928         flr_state = le16_to_cpu(lcm->lcm_flags) & LCM_FL_FLR_MASK;
2929
2930         /* please refer to HLD of FLR for state transition */
2931         switch (flr_state) {
2932         case LCM_FL_NONE:
2933                 rc = mdd_layout_instantiate_component(env, obj, mlc, handle);
2934                 break;
2935         case LCM_FL_WRITE_PENDING:
2936                 rc = mdd_layout_update_write_pending(env, obj, mlc, handle);
2937                 break;
2938         case LCM_FL_RDONLY:
2939                 rc = mdd_layout_update_rdonly(env, obj, mlc, handle);
2940                 break;
2941         case LCM_FL_SYNC_PENDING:
2942                 rc = mdd_object_update_sync_pending(env, obj, mlc, handle);
2943                 break;
2944         default:
2945                 rc = 0;
2946                 break;
2947         }
2948         EXIT;
2949
2950 out:
2951         mdd_trans_stop(env, mdd, rc, handle);
2952         lu_buf_free(buf);
2953         return rc;
2954 }
2955
2956 void mdd_object_make_hint(const struct lu_env *env, struct mdd_object *parent,
2957                           struct mdd_object *child, const struct lu_attr *attr,
2958                           const struct md_op_spec *spec,
2959                           struct dt_allocation_hint *hint)
2960 {
2961         struct dt_object *np = parent ?  mdd_object_child(parent) : NULL;
2962         struct dt_object *nc = mdd_object_child(child);
2963
2964         memset(hint, 0, sizeof(*hint));
2965
2966         /* For striped directory, give striping EA to lod_ah_init, which will
2967          * decide the stripe_offset and stripe count by it. */
2968         if (S_ISDIR(attr->la_mode) &&
2969             unlikely(spec != NULL && spec->sp_cr_flags & MDS_OPEN_HAS_EA)) {
2970                 hint->dah_eadata = spec->u.sp_ea.eadata;
2971                 hint->dah_eadata_len = spec->u.sp_ea.eadatalen;
2972         } else {
2973                 hint->dah_eadata = NULL;
2974                 hint->dah_eadata_len = 0;
2975         }
2976
2977         CDEBUG(D_INFO, DFID" eadata %p len %d\n", PFID(mdd_object_fid(child)),
2978                hint->dah_eadata, hint->dah_eadata_len);
2979         /* @hint will be initialized by underlying device. */
2980         nc->do_ops->do_ah_init(env, hint, np, nc, attr->la_mode & S_IFMT);
2981 }
2982
2983 static int accmode(const struct lu_env *env, const struct lu_attr *la,
2984                    u64 open_flags)
2985 {
2986         /* Sadly, NFSD reopens a file repeatedly during operation, so the
2987          * "acc_mode = 0" allowance for newly-created files isn't honoured.
2988          * NFSD uses the MDS_OPEN_OWNEROVERRIDE flag to say that a file
2989          * owner can write to a file even if it is marked readonly to hide
2990          * its brokenness. (bug 5781) */
2991         if (open_flags & MDS_OPEN_OWNEROVERRIDE) {
2992                 struct lu_ucred *uc = lu_ucred_check(env);
2993
2994                 if ((uc == NULL) || (la->la_uid == uc->uc_fsuid))
2995                         return 0;
2996         }
2997
2998         return mds_accmode(open_flags);
2999 }
3000
3001 static int mdd_open_sanity_check(const struct lu_env *env,
3002                                  struct mdd_object *obj,
3003                                  const struct lu_attr *attr, u64 open_flags)
3004 {
3005         int mode, rc;
3006         ENTRY;
3007
3008         /* EEXIST check, also opening of *open* orphans is allowed so we can
3009          * open-by-handle unlinked files
3010          */
3011         if (mdd_is_dead_obj(obj) &&
3012             likely(!(mdd_is_orphan_obj(obj) && obj->mod_count > 0)))
3013                 RETURN(-ENOENT);
3014
3015         if (S_ISLNK(attr->la_mode))
3016                 RETURN(-ELOOP);
3017
3018         mode = accmode(env, attr, open_flags);
3019
3020         if (S_ISDIR(attr->la_mode) && (mode & MAY_WRITE))
3021                 RETURN(-EISDIR);
3022
3023         if (!(open_flags & MDS_OPEN_CREATED)) {
3024                 rc = mdd_permission_internal(env, obj, attr, mode);
3025                 if (rc)
3026                         RETURN(rc);
3027         }
3028
3029         if (S_ISFIFO(attr->la_mode) || S_ISSOCK(attr->la_mode) ||
3030             S_ISBLK(attr->la_mode) || S_ISCHR(attr->la_mode))
3031                 open_flags &= ~MDS_OPEN_TRUNC;
3032
3033         /* For writing append-only file must open it with append mode. */
3034         if (attr->la_flags & LUSTRE_APPEND_FL) {
3035                 if ((open_flags & MDS_FMODE_WRITE) &&
3036                     !(open_flags & MDS_OPEN_APPEND))
3037                         RETURN(-EPERM);
3038                 if (open_flags & MDS_OPEN_TRUNC)
3039                         RETURN(-EPERM);
3040         }
3041
3042         RETURN(0);
3043 }
3044
3045 static int mdd_open(const struct lu_env *env, struct md_object *obj,
3046                     u64 open_flags)
3047 {
3048         struct mdd_object *mdd_obj = md2mdd_obj(obj);
3049         struct md_device *md_dev = lu2md_dev(mdd2lu_dev(mdo2mdd(obj)));
3050         struct lu_attr *attr = MDD_ENV_VAR(env, cattr);
3051         struct mdd_object_user *mou = NULL;
3052         const struct lu_ucred *uc = lu_ucred(env);
3053         struct mdd_device *mdd = mdo2mdd(obj);
3054         enum changelog_rec_type type = CL_OPEN;
3055         int rc = 0;
3056
3057         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
3058
3059         rc = mdd_la_get(env, mdd_obj, attr);
3060         if (rc != 0)
3061                 GOTO(out, rc);
3062
3063         rc = mdd_open_sanity_check(env, mdd_obj, attr, open_flags);
3064         if ((rc == -EACCES) && (mdd->mdd_cl.mc_mask & (1 << CL_DN_OPEN)))
3065                 type = CL_DN_OPEN;
3066         else if (rc != 0)
3067                 GOTO(out, rc);
3068         else
3069                 mdd_obj->mod_count++;
3070
3071         if (!mdd_changelog_enabled(env, mdd, type))
3072                 GOTO(out, rc);
3073
3074 find:
3075         /* look for existing opener in list under mdd_write_lock */
3076         mou = mdd_obj_user_find(mdd_obj, uc->uc_uid, uc->uc_gid, open_flags);
3077
3078         if (!mou) {
3079                 int rc2;
3080
3081                 /* add user to list */
3082                 mou = mdd_obj_user_alloc(open_flags, uc->uc_uid, uc->uc_gid);
3083                 if (IS_ERR(mou)) {
3084                         if (rc == 0)
3085                                 rc = PTR_ERR(mou);
3086                         GOTO(out, rc);
3087                 }
3088                 rc2 = mdd_obj_user_add(mdd_obj, mou, type == CL_DN_OPEN);
3089                 if (rc2 != 0) {
3090                         mdd_obj_user_free(mou);
3091                         if (rc2 == -EEXIST)
3092                                 GOTO(find, rc2);
3093                 }
3094         } else {
3095                 if (type == CL_DN_OPEN) {
3096                         if (ktime_before(ktime_get(), mou->mou_deniednext))
3097                                 /* same user denied again same access within
3098                                  * time interval: do not record
3099                                  */
3100                                 GOTO(out, rc);
3101
3102                         /* this user already denied, but some time ago:
3103                          * update denied time
3104                          */
3105                         mou->mou_deniednext =
3106                                 ktime_add(ktime_get(),
3107                                           ktime_set(mdd->mdd_cl.mc_deniednext,
3108                                                     0));
3109                 } else {
3110                         mou->mou_opencount++;
3111                         /* same user opening file again with same flags:
3112                          * don't record
3113                          */
3114                         GOTO(out, rc);
3115                 }
3116         }
3117
3118         /* FYI, only the bottom 32 bits of open_flags are recorded */
3119         mdd_changelog(env, type, open_flags, md_dev, mdo2fid(mdd_obj));
3120
3121         EXIT;
3122 out:
3123         mdd_write_unlock(env, mdd_obj);
3124         return rc;
3125 }
3126
3127 static int mdd_declare_close(const struct lu_env *env, struct mdd_object *obj,
3128                              struct md_attr *ma, struct thandle *handle)
3129 {
3130         int rc;
3131
3132         rc = mdd_orphan_declare_delete(env, obj, handle);
3133         if (rc)
3134                 return rc;
3135
3136         return mdo_declare_destroy(env, obj, handle);
3137 }
3138
3139 /*
3140  * No permission check is needed.
3141  */
3142 static int mdd_close(const struct lu_env *env, struct md_object *obj,
3143                      struct md_attr *ma, u64 open_flags)
3144 {
3145         struct mdd_object *mdd_obj = md2mdd_obj(obj);
3146         struct mdd_device *mdd = mdo2mdd(obj);
3147         struct thandle *handle = NULL;
3148         int is_orphan = 0;
3149         int rc;
3150         bool blocked = false;
3151         bool last_close_by_uid = false;
3152         const struct lu_ucred *uc = lu_ucred(env);
3153         ENTRY;
3154
3155         if (ma->ma_valid & MA_FLAGS && ma->ma_attr_flags & MDS_KEEP_ORPHAN) {
3156                 mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
3157                 mdd_obj->mod_count--;
3158                 mdd_write_unlock(env, mdd_obj);
3159
3160                 if (mdd_obj->mod_flags & ORPHAN_OBJ && !mdd_obj->mod_count)
3161                         CDEBUG(D_HA, "Object "DFID" is retained in orphan "
3162                                 "list\n", PFID(mdd_object_fid(mdd_obj)));
3163                 RETURN(0);
3164         }
3165
3166         /* mdd_finish_unlink() will always set orphan object as DEAD_OBJ, but
3167          * it might fail to add the object to orphan list (w/o ORPHAN_OBJ). */
3168         /* check without any lock */
3169         is_orphan = mdd_obj->mod_count == 1 &&
3170                     (mdd_obj->mod_flags & (ORPHAN_OBJ | DEAD_OBJ)) != 0;
3171
3172 again:
3173         if (is_orphan) {
3174                 /* mdd_trans_create() maybe failed because of barrier_entry(),
3175                  * under such case, the orphan MDT-object will be left in the
3176                  * orphan list, and when the MDT remount next time, the unused
3177                  * orphans will be destroyed automatically.
3178                  *
3179                  * One exception: the former mdd_finish_unlink may failed to
3180                  * add the orphan MDT-object to the orphan list, then if the
3181                  * mdd_trans_create() failed because of barrier_entry(), the
3182                  * MDT-object will become real orphan that is neither in the
3183                  * namespace nor in the orphan list. Such bad case should be
3184                  * very rare and will be handled by e2fsck/lfsck. */
3185                 handle = mdd_trans_create(env, mdo2mdd(obj));
3186                 if (IS_ERR(handle)) {
3187                         rc = PTR_ERR(handle);
3188                         if (rc != -EINPROGRESS)
3189                                 GOTO(stop, rc);
3190
3191                         handle = NULL;
3192                         blocked = true;
3193                         goto cont;
3194                 }
3195
3196                 rc = mdd_declare_close(env, mdd_obj, ma, handle);
3197                 if (rc)
3198                         GOTO(stop, rc);
3199
3200                 rc = mdd_declare_changelog_store(env, mdd, CL_CLOSE, NULL, NULL,
3201                                                  handle);
3202                 if (rc)
3203                         GOTO(stop, rc);
3204
3205                 rc = mdd_trans_start(env, mdo2mdd(obj), handle);
3206                 if (rc)
3207                         GOTO(stop, rc);
3208         }
3209
3210 cont:
3211         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
3212         rc = mdd_la_get(env, mdd_obj, &ma->ma_attr);
3213         if (rc != 0) {
3214                 CERROR("%s: failed to get lu_attr of "DFID": rc = %d\n",
3215                        lu_dev_name(mdd2lu_dev(mdd)),
3216                        PFID(mdd_object_fid(mdd_obj)), rc);
3217                 GOTO(out, rc);
3218         }
3219
3220         /* check again with lock */
3221         is_orphan = (mdd_obj->mod_count == 1) &&
3222                     ((mdd_obj->mod_flags & (ORPHAN_OBJ | DEAD_OBJ)) != 0 ||
3223                      ma->ma_attr.la_nlink == 0);
3224
3225         if (is_orphan && !handle && !blocked) {
3226                 mdd_write_unlock(env, mdd_obj);
3227                 goto again;
3228         }
3229
3230         mdd_obj->mod_count--; /*release open count */
3231
3232         /* under mdd write lock */
3233         /* If recording, see if we need to remove UID from list. uc is not
3234          * initialized if the client has been evicted. */
3235         if (mdd_changelog_enabled(env, mdd, CL_OPEN) && uc) {
3236                 struct mdd_object_user *mou;
3237
3238                 /* look for UID in list */
3239                 /* If mou is NULL, it probably means logging was enabled after
3240                  * the user had the file open. So the corresponding close
3241                  * will not be logged.
3242                  */
3243                 mou = mdd_obj_user_find(mdd_obj, uc->uc_uid, uc->uc_gid,
3244                                         open_flags);
3245                 if (mou) {
3246                         mou->mou_opencount--;
3247                         if (mou->mou_opencount == 0) {
3248                                 mdd_obj_user_remove(mdd_obj, mou);
3249                                 last_close_by_uid = true;
3250                         }
3251                 }
3252         }
3253
3254         if (!is_orphan || blocked)
3255                 GOTO(out, rc = 0);
3256
3257         /* Orphan object */
3258         /* NB: Object maybe not in orphan list originally, it is rare case for
3259          * mdd_finish_unlink() failure, in that case, the object doesn't have
3260          * ORPHAN_OBJ flag */
3261         if ((mdd_obj->mod_flags & ORPHAN_OBJ) != 0) {
3262                 /* remove link to object from orphan index */
3263                 LASSERT(handle != NULL);
3264                 rc = mdd_orphan_delete(env, mdd_obj, handle);
3265                 if (rc != 0) {
3266                         CERROR("%s: unable to delete "DFID" from orphan list: "
3267                                "rc = %d\n", lu_dev_name(mdd2lu_dev(mdd)),
3268                                PFID(mdd_object_fid(mdd_obj)), rc);
3269                         /* If object was not deleted from orphan list, do not
3270                          * destroy OSS objects, which will be done when next
3271                          * recovery. */
3272                         GOTO(out, rc);
3273                 }
3274
3275                 CDEBUG(D_HA, "Object "DFID" is deleted from orphan "
3276                        "list, OSS objects to be destroyed.\n",
3277                        PFID(mdd_object_fid(mdd_obj)));
3278         }
3279
3280         rc = mdo_destroy(env, mdd_obj, handle);
3281
3282         if (rc != 0) {
3283                 CERROR("%s: unable to delete "DFID" from orphan list: "
3284                        "rc = %d\n", lu_dev_name(mdd2lu_dev(mdd)),
3285                        PFID(mdd_object_fid(mdd_obj)), rc);
3286         }
3287         EXIT;
3288
3289 out:
3290         mdd_write_unlock(env, mdd_obj);
3291
3292         if (rc != 0 || blocked ||
3293             !mdd_changelog_enabled(env, mdd, CL_CLOSE))
3294                 GOTO(stop, rc);
3295
3296         /* Record CL_CLOSE in changelog only if file was opened in write mode,
3297          * or if CL_OPEN was recorded and it's last close by user.
3298          * Changelogs mask may change between open and close operations, but
3299          * this is not a big deal if we have a CL_CLOSE entry with no matching
3300          * CL_OPEN. Plus Changelogs mask may not change often.
3301          */
3302         if (((!(mdd->mdd_cl.mc_mask & (1 << CL_OPEN)) &&
3303               (open_flags & (MDS_FMODE_WRITE | MDS_OPEN_APPEND |
3304                              MDS_OPEN_TRUNC))) ||
3305              ((mdd->mdd_cl.mc_mask & (1 << CL_OPEN)) && last_close_by_uid)) &&
3306             !(ma->ma_valid & MA_FLAGS && ma->ma_attr_flags & MDS_RECOV_OPEN)) {
3307                 if (handle == NULL) {
3308                         handle = mdd_trans_create(env, mdo2mdd(obj));
3309                         if (IS_ERR(handle))
3310                                 GOTO(stop, rc = PTR_ERR(handle));
3311
3312                         rc = mdd_declare_changelog_store(env, mdd, CL_CLOSE,
3313                                                          NULL, NULL, handle);
3314                         if (rc)
3315                                 GOTO(stop, rc);
3316
3317                         rc = mdd_trans_start(env, mdo2mdd(obj), handle);
3318                         if (rc)
3319                                 GOTO(stop, rc);
3320                 }
3321
3322                 /* FYI, only the bottom 32 bits of open_flags are recorded */
3323                 mdd_changelog_data_store(env, mdd, CL_CLOSE, open_flags,
3324                                          mdd_obj, handle);
3325         }
3326
3327 stop:
3328         if (handle != NULL && !IS_ERR(handle))
3329                 rc = mdd_trans_stop(env, mdd, rc, handle);
3330
3331         return rc;
3332 }
3333
3334 /*
3335  * Permission check is done when open,
3336  * no need check again.
3337  */
3338 static int mdd_readpage_sanity_check(const struct lu_env *env,
3339                                      struct mdd_object *obj)
3340 {
3341         struct dt_object *next = mdd_object_child(obj);
3342         int rc;
3343         ENTRY;
3344
3345         if (S_ISDIR(mdd_object_type(obj)) && dt_try_as_dir(env, next))
3346                 rc = 0;
3347         else
3348                 rc = -ENOTDIR;
3349
3350         RETURN(rc);
3351 }
3352
3353 static int mdd_dir_page_build(const struct lu_env *env, union lu_page *lp,
3354                               size_t nob, const struct dt_it_ops *iops,
3355                               struct dt_it *it, __u32 attr, void *arg)
3356 {
3357         struct lu_dirpage       *dp = &lp->lp_dir;
3358         void                    *area = dp;
3359         int                      result;
3360         __u64                    hash = 0;
3361         struct lu_dirent        *ent;
3362         struct lu_dirent        *last = NULL;
3363         struct lu_fid            fid;
3364         int                      first = 1;
3365
3366         if (nob < sizeof(*dp))
3367                 return -EINVAL;
3368
3369         memset(area, 0, sizeof (*dp));
3370         area += sizeof (*dp);
3371         nob  -= sizeof (*dp);
3372
3373         ent  = area;
3374         do {
3375                 int    len;
3376                 size_t recsize;
3377
3378                 len = iops->key_size(env, it);
3379
3380                 /* IAM iterator can return record with zero len. */
3381                 if (len == 0)
3382                         goto next;
3383
3384                 hash = iops->store(env, it);
3385                 if (unlikely(first)) {
3386                         first = 0;
3387                         dp->ldp_hash_start = cpu_to_le64(hash);
3388                 }
3389
3390                 /* calculate max space required for lu_dirent */
3391                 recsize = lu_dirent_calc_size(len, attr);
3392
3393                 if (nob >= recsize) {
3394                         result = iops->rec(env, it, (struct dt_rec *)ent, attr);
3395                         if (result == -ESTALE)
3396                                 goto next;
3397                         if (result != 0)
3398                                 goto out;
3399
3400                         /* osd might not able to pack all attributes,
3401                          * so recheck rec length */
3402                         recsize = le16_to_cpu(ent->lde_reclen);
3403
3404                         if (le32_to_cpu(ent->lde_attrs) & LUDA_FID) {
3405                                 fid_le_to_cpu(&fid, &ent->lde_fid);
3406                                 if (fid_is_dot_lustre(&fid))
3407                                         goto next;
3408                         }
3409                 } else {
3410                         result = (last != NULL) ? 0 :-EINVAL;
3411                         goto out;
3412                 }
3413                 last = ent;
3414                 ent = (void *)ent + recsize;
3415                 nob -= recsize;
3416
3417 next:
3418                 result = iops->next(env, it);
3419                 if (result == -ESTALE)
3420                         goto next;
3421         } while (result == 0);
3422
3423 out:
3424         dp->ldp_hash_end = cpu_to_le64(hash);
3425         if (last != NULL) {
3426                 if (last->lde_hash == dp->ldp_hash_end)
3427                         dp->ldp_flags |= cpu_to_le32(LDF_COLLIDE);
3428                 last->lde_reclen = 0; /* end mark */
3429         }
3430         if (result > 0)
3431                 /* end of directory */
3432                 dp->ldp_hash_end = cpu_to_le64(MDS_DIR_END_OFF);
3433         else if (result < 0)
3434                 CWARN("build page failed: %d!\n", result);
3435         return result;
3436 }
3437
3438 int mdd_readpage(const struct lu_env *env, struct md_object *obj,
3439                  const struct lu_rdpg *rdpg)
3440 {
3441         struct mdd_object *mdd_obj = md2mdd_obj(obj);
3442         int rc;
3443         ENTRY;
3444
3445         if (mdd_object_exists(mdd_obj) == 0) {
3446                 CERROR("%s: object "DFID" not found: rc = -2\n",
3447                        mdd_obj_dev_name(mdd_obj),PFID(mdd_object_fid(mdd_obj)));
3448                 return -ENOENT;
3449         }
3450
3451         mdd_read_lock(env, mdd_obj, MOR_TGT_CHILD);
3452         rc = mdd_readpage_sanity_check(env, mdd_obj);
3453         if (rc)
3454                 GOTO(out_unlock, rc);
3455
3456         if (mdd_is_dead_obj(mdd_obj)) {
3457                 struct page *pg;
3458                 struct lu_dirpage *dp;
3459
3460                 /*
3461                  * According to POSIX, please do not return any entry to client:
3462                  * even dot and dotdot should not be returned.
3463                  */
3464                 CDEBUG(D_INODE, "readdir from dead object: "DFID"\n",
3465                        PFID(mdd_object_fid(mdd_obj)));
3466
3467                 if (rdpg->rp_count <= 0)
3468                         GOTO(out_unlock, rc = -EFAULT);
3469                 LASSERT(rdpg->rp_pages != NULL);
3470
3471                 pg = rdpg->rp_pages[0];
3472                 dp = (struct lu_dirpage *)kmap(pg);
3473                 memset(dp, 0 , sizeof(struct lu_dirpage));
3474                 dp->ldp_hash_start = cpu_to_le64(rdpg->rp_hash);
3475                 dp->ldp_hash_end   = cpu_to_le64(MDS_DIR_END_OFF);
3476                 dp->ldp_flags = cpu_to_le32(LDF_EMPTY);
3477                 kunmap(pg);
3478                 GOTO(out_unlock, rc = LU_PAGE_SIZE);
3479         }
3480
3481         rc = dt_index_walk(env, mdd_object_child(mdd_obj), rdpg,
3482                            mdd_dir_page_build, NULL);
3483         if (rc >= 0) {
3484                 struct lu_dirpage       *dp;
3485
3486                 dp = kmap(rdpg->rp_pages[0]);
3487                 dp->ldp_hash_start = cpu_to_le64(rdpg->rp_hash);
3488                 if (rc == 0) {
3489                         /*
3490                          * No pages were processed, mark this for first page
3491                          * and send back.
3492                          */
3493                         dp->ldp_hash_end = cpu_to_le64(MDS_DIR_END_OFF);
3494                         dp->ldp_flags = cpu_to_le32(LDF_EMPTY);
3495                         rc = min_t(unsigned int, LU_PAGE_SIZE, rdpg->rp_count);
3496                 }
3497                 kunmap(rdpg->rp_pages[0]);
3498         }
3499
3500         GOTO(out_unlock, rc);
3501 out_unlock:
3502         mdd_read_unlock(env, mdd_obj);
3503         return rc;
3504 }
3505
3506 static int mdd_object_sync(const struct lu_env *env, struct md_object *obj)
3507 {
3508         struct mdd_object *mdd_obj = md2mdd_obj(obj);
3509
3510         if (mdd_object_exists(mdd_obj) == 0) {
3511                 int rc = -ENOENT;
3512
3513                 CERROR("%s: object "DFID" not found: rc = %d\n",
3514                        mdd_obj_dev_name(mdd_obj),
3515                        PFID(mdd_object_fid(mdd_obj)), rc);
3516                 return rc;
3517         }
3518         return dt_object_sync(env, mdd_object_child(mdd_obj),
3519                               0, OBD_OBJECT_EOF);
3520 }
3521
3522 static int mdd_object_lock(const struct lu_env *env,
3523                            struct md_object *obj,
3524                            struct lustre_handle *lh,
3525                            struct ldlm_enqueue_info *einfo,
3526                            union ldlm_policy_data *policy)
3527 {
3528         struct mdd_object *mdd_obj = md2mdd_obj(obj);
3529         return dt_object_lock(env, mdd_object_child(mdd_obj), lh,
3530                               einfo, policy);
3531 }
3532
3533 static int mdd_object_unlock(const struct lu_env *env,
3534                              struct md_object *obj,
3535                              struct ldlm_enqueue_info *einfo,
3536                              union ldlm_policy_data *policy)
3537 {
3538         struct mdd_object *mdd_obj = md2mdd_obj(obj);
3539         return dt_object_unlock(env, mdd_object_child(mdd_obj), einfo, policy);
3540 }
3541
3542 const struct md_object_operations mdd_obj_ops = {
3543         .moo_permission         = mdd_permission,
3544         .moo_attr_get           = mdd_attr_get,
3545         .moo_attr_set           = mdd_attr_set,
3546         .moo_xattr_get          = mdd_xattr_get,
3547         .moo_xattr_set          = mdd_xattr_set,
3548         .moo_xattr_list         = mdd_xattr_list,
3549         .moo_invalidate         = mdd_invalidate,
3550         .moo_xattr_del          = mdd_xattr_del,
3551         .moo_swap_layouts       = mdd_swap_layouts,
3552         .moo_open               = mdd_open,
3553         .moo_close              = mdd_close,
3554         .moo_readpage           = mdd_readpage,
3555         .moo_readlink           = mdd_readlink,
3556         .moo_changelog          = mdd_changelog,
3557         .moo_object_sync        = mdd_object_sync,
3558         .moo_object_lock        = mdd_object_lock,
3559         .moo_object_unlock      = mdd_object_unlock,
3560         .moo_layout_change      = mdd_layout_change,
3561 };