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