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