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