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