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