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