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