Whamcloud - gitweb
LU-5912 libcfs: use vfs api for fsync calls
[fs/lustre-release.git] / lustre / osd-ldiskfs / osd_handler.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2013, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/osd/osd_handler.c
37  *
38  * Top-level entry points into osd module
39  *
40  * Author: Nikita Danilov <nikita@clusterfs.com>
41  *         Pravin Shelar <pravin.shelar@sun.com> : Added fid in dirent
42  */
43
44 #define DEBUG_SUBSYSTEM S_OSD
45
46 #include <linux/module.h>
47
48 /* LUSTRE_VERSION_CODE */
49 #include <lustre_ver.h>
50 /* prerequisite for linux/xattr.h */
51 #include <linux/types.h>
52 /* prerequisite for linux/xattr.h */
53 #include <linux/fs.h>
54 /* XATTR_{REPLACE,CREATE} */
55 #include <linux/xattr.h>
56
57 /*
58  * struct OBD_{ALLOC,FREE}*()
59  * OBD_FAIL_CHECK
60  */
61 #include <obd_support.h>
62 /* struct ptlrpc_thread */
63 #include <lustre_net.h>
64 #include <lustre_fid.h>
65 /* process_config */
66 #include <lustre_param.h>
67
68 #include "osd_internal.h"
69 #include "osd_dynlocks.h"
70
71 /* llo_* api support */
72 #include <md_object.h>
73 #include <lustre_quota.h>
74
75 #include <ldiskfs/xattr.h>
76 #include <lustre_linkea.h>
77
78 int ldiskfs_pdo = 1;
79 CFS_MODULE_PARM(ldiskfs_pdo, "i", int, 0644,
80                 "ldiskfs with parallel directory operations");
81
82 int ldiskfs_track_declares_assert;
83 CFS_MODULE_PARM(ldiskfs_track_declares_assert, "i", int, 0644,
84                 "LBUG during tracking of declares");
85
86 /* Slab to allocate dynlocks */
87 struct kmem_cache *dynlock_cachep;
88
89 static struct lu_kmem_descr ldiskfs_caches[] = {
90         {
91                 .ckd_cache = &dynlock_cachep,
92                 .ckd_name  = "dynlock_cache",
93                 .ckd_size  = sizeof(struct dynlock_handle)
94         },
95         {
96                 .ckd_cache = NULL
97         }
98 };
99
100 static const char dot[] = ".";
101 static const char dotdot[] = "..";
102 static const char remote_obj_dir[] = "REM_OBJ_DIR";
103
104 static const struct lu_object_operations      osd_lu_obj_ops;
105 static const struct dt_object_operations      osd_obj_ops;
106 static const struct dt_object_operations      osd_obj_ea_ops;
107 static const struct dt_object_operations      osd_obj_otable_it_ops;
108 static const struct dt_index_operations       osd_index_iam_ops;
109 static const struct dt_index_operations       osd_index_ea_ops;
110
111 int osd_trans_declare_op2rb[] = {
112         [OSD_OT_ATTR_SET]       = OSD_OT_ATTR_SET,
113         [OSD_OT_PUNCH]          = OSD_OT_MAX,
114         [OSD_OT_XATTR_SET]      = OSD_OT_XATTR_SET,
115         [OSD_OT_CREATE]         = OSD_OT_DESTROY,
116         [OSD_OT_DESTROY]        = OSD_OT_CREATE,
117         [OSD_OT_REF_ADD]        = OSD_OT_REF_DEL,
118         [OSD_OT_REF_DEL]        = OSD_OT_REF_ADD,
119         [OSD_OT_WRITE]          = OSD_OT_WRITE,
120         [OSD_OT_INSERT]         = OSD_OT_DELETE,
121         [OSD_OT_DELETE]         = OSD_OT_INSERT,
122         [OSD_OT_UPDATE]         = OSD_OT_MAX,
123         [OSD_OT_QUOTA]          = OSD_OT_MAX,
124 };
125
126 static int osd_has_index(const struct osd_object *obj)
127 {
128         return obj->oo_dt.do_index_ops != NULL;
129 }
130
131 static int osd_object_invariant(const struct lu_object *l)
132 {
133         return osd_invariant(osd_obj(l));
134 }
135
136 /*
137  * Concurrency: doesn't matter
138  */
139
140 /*
141  * Concurrency: doesn't matter
142  */
143 static int osd_write_locked(const struct lu_env *env, struct osd_object *o)
144 {
145         struct osd_thread_info *oti = osd_oti_get(env);
146         return oti->oti_w_locks > 0 && o->oo_owner == env;
147 }
148
149 /*
150  * Concurrency: doesn't access mutable data
151  */
152 static int osd_root_get(const struct lu_env *env,
153                         struct dt_device *dev, struct lu_fid *f)
154 {
155         lu_local_obj_fid(f, OSD_FS_ROOT_OID);
156         return 0;
157 }
158
159 /*
160  * OSD object methods.
161  */
162
163 /*
164  * Concurrency: no concurrent access is possible that early in object
165  * life-cycle.
166  */
167 static struct lu_object *osd_object_alloc(const struct lu_env *env,
168                                           const struct lu_object_header *hdr,
169                                           struct lu_device *d)
170 {
171         struct osd_object *mo;
172
173         OBD_ALLOC_PTR(mo);
174         if (mo != NULL) {
175                 struct lu_object *l;
176
177                 l = &mo->oo_dt.do_lu;
178                 dt_object_init(&mo->oo_dt, NULL, d);
179                 mo->oo_dt.do_ops = &osd_obj_ea_ops;
180                 l->lo_ops = &osd_lu_obj_ops;
181                 init_rwsem(&mo->oo_sem);
182                 init_rwsem(&mo->oo_ext_idx_sem);
183                 spin_lock_init(&mo->oo_guard);
184                 return l;
185         } else {
186                 return NULL;
187         }
188 }
189
190 int osd_get_lma(struct osd_thread_info *info, struct inode *inode,
191                 struct dentry *dentry, struct lustre_mdt_attrs *lma)
192 {
193         int rc;
194
195         CLASSERT(LMA_OLD_SIZE >= sizeof(*lma));
196         rc = __osd_xattr_get(inode, dentry, XATTR_NAME_LMA,
197                              info->oti_mdt_attrs_old, LMA_OLD_SIZE);
198         if (rc > 0) {
199                 if ((void *)lma != (void *)info->oti_mdt_attrs_old)
200                         memcpy(lma, info->oti_mdt_attrs_old, sizeof(*lma));
201                 rc = 0;
202                 lustre_lma_swab(lma);
203                 /* Check LMA compatibility */
204                 if (lma->lma_incompat & ~LMA_INCOMPAT_SUPP) {
205                         CWARN("%.16s: unsupported incompat LMA feature(s) %#x "
206                               "for fid = "DFID", ino = %lu\n",
207                               LDISKFS_SB(inode->i_sb)->s_es->s_volume_name,
208                               lma->lma_incompat & ~LMA_INCOMPAT_SUPP,
209                               PFID(&lma->lma_self_fid), inode->i_ino);
210                         rc = -EOPNOTSUPP;
211                 }
212         } else if (rc == 0) {
213                 rc = -ENODATA;
214         }
215
216         return rc;
217 }
218
219 /*
220  * retrieve object from backend ext fs.
221  **/
222 struct inode *osd_iget(struct osd_thread_info *info, struct osd_device *dev,
223                        struct osd_inode_id *id)
224 {
225         struct inode *inode = NULL;
226
227         inode = ldiskfs_iget(osd_sb(dev), id->oii_ino);
228         if (IS_ERR(inode)) {
229                 CDEBUG(D_INODE, "no inode: ino = %u, rc = %ld\n",
230                        id->oii_ino, PTR_ERR(inode));
231         } else if (id->oii_gen != OSD_OII_NOGEN &&
232                    inode->i_generation != id->oii_gen) {
233                 CDEBUG(D_INODE, "unmatched inode: ino = %u, oii_gen = %u, "
234                        "i_generation = %u\n",
235                        id->oii_ino, id->oii_gen, inode->i_generation);
236                 iput(inode);
237                 inode = ERR_PTR(-ESTALE);
238         } else if (inode->i_nlink == 0) {
239                 /* due to parallel readdir and unlink,
240                 * we can have dead inode here. */
241                 CDEBUG(D_INODE, "stale inode: ino = %u\n", id->oii_ino);
242                 iput(inode);
243                 inode = ERR_PTR(-ESTALE);
244         } else if (is_bad_inode(inode)) {
245                 CWARN("%.16s: bad inode: ino = %u\n",
246                 LDISKFS_SB(osd_sb(dev))->s_es->s_volume_name, id->oii_ino);
247                 iput(inode);
248                 inode = ERR_PTR(-ENOENT);
249         } else {
250                 if (id->oii_gen == OSD_OII_NOGEN)
251                         osd_id_gen(id, inode->i_ino, inode->i_generation);
252
253                 /* Do not update file c/mtime in ldiskfs.
254                  * NB: we don't have any lock to protect this because we don't
255                  * have reference on osd_object now, but contention with
256                  * another lookup + attr_set can't happen in the tiny window
257                  * between if (...) and set S_NOCMTIME. */
258                 if (!(inode->i_flags & S_NOCMTIME))
259                         inode->i_flags |= S_NOCMTIME;
260         }
261         return inode;
262 }
263
264 static struct inode *
265 osd_iget_fid(struct osd_thread_info *info, struct osd_device *dev,
266              struct osd_inode_id *id, struct lu_fid *fid)
267 {
268         struct lustre_mdt_attrs *lma   = &info->oti_mdt_attrs;
269         struct inode            *inode;
270         int                      rc;
271
272         inode = osd_iget(info, dev, id);
273         if (IS_ERR(inode))
274                 return inode;
275
276         rc = osd_get_lma(info, inode, &info->oti_obj_dentry, lma);
277         if (rc == 0) {
278                 *fid = lma->lma_self_fid;
279         } else if (rc == -ENODATA) {
280                 if (unlikely(inode == osd_sb(dev)->s_root->d_inode))
281                         lu_local_obj_fid(fid, OSD_FS_ROOT_OID);
282                 else
283                         lu_igif_build(fid, inode->i_ino, inode->i_generation);
284         } else {
285                 iput(inode);
286                 inode = ERR_PTR(rc);
287         }
288         return inode;
289 }
290
291 static struct inode *osd_iget_check(struct osd_thread_info *info,
292                                     struct osd_device *dev,
293                                     const struct lu_fid *fid,
294                                     struct osd_inode_id *id,
295                                     bool in_oi)
296 {
297         struct inode    *inode;
298         int              rc     = 0;
299         ENTRY;
300
301         inode = ldiskfs_iget(osd_sb(dev), id->oii_ino);
302         if (IS_ERR(inode)) {
303                 rc = PTR_ERR(inode);
304                 if (!in_oi || (rc != -ENOENT && rc != -ESTALE)) {
305                         CDEBUG(D_INODE, "no inode: ino = %u, rc = %d\n",
306                                id->oii_ino, rc);
307
308                         GOTO(put, rc);
309                 }
310
311                 goto check_oi;
312         }
313
314         if (is_bad_inode(inode)) {
315                 rc = -ENOENT;
316                 if (!in_oi) {
317                         CDEBUG(D_INODE, "bad inode: ino = %u\n", id->oii_ino);
318
319                         GOTO(put, rc);
320                 }
321
322                 goto check_oi;
323         }
324
325         if (id->oii_gen != OSD_OII_NOGEN &&
326             inode->i_generation != id->oii_gen) {
327                 rc = -ESTALE;
328                 if (!in_oi) {
329                         CDEBUG(D_INODE, "unmatched inode: ino = %u, "
330                                "oii_gen = %u, i_generation = %u\n",
331                                id->oii_ino, id->oii_gen, inode->i_generation);
332
333                         GOTO(put, rc);
334                 }
335
336                 goto check_oi;
337         }
338
339         if (inode->i_nlink == 0) {
340                 rc = -ENOENT;
341                 if (!in_oi) {
342                         CDEBUG(D_INODE, "stale inode: ino = %u\n", id->oii_ino);
343
344                         GOTO(put, rc);
345                 }
346
347                 goto check_oi;
348         }
349
350 check_oi:
351         if (rc != 0) {
352                 LASSERTF(rc == -ESTALE || rc == -ENOENT, "rc = %d\n", rc);
353
354                 rc = osd_oi_lookup(info, dev, fid, id, OI_CHECK_FLD);
355                 /* XXX: There are some possible cases:
356                  *      1. rc = 0.
357                  *         Backup/restore caused the OI invalid.
358                  *      2. rc = 0.
359                  *         Someone unlinked the object but NOT removed
360                  *         the OI mapping, such as mount target device
361                  *         as ldiskfs, and modify something directly.
362                  *      3. rc = -ENOENT.
363                  *         Someone just removed the object between the
364                  *         former oi_lookup and the iget. It is normal.
365                  *      4. Other failure cases.
366                  *
367                  *      Generally, when the device is mounted, it will
368                  *      auto check whether the system is restored from
369                  *      file-level backup or not. We trust such detect
370                  *      to distinguish the 1st case from the 2nd case. */
371                 if (rc == 0) {
372                         if (!IS_ERR(inode) && inode->i_generation != 0 &&
373                             inode->i_generation == id->oii_gen)
374                                 rc = -ENOENT;
375                         else
376                                 rc = -EREMCHG;
377                 }
378         } else {
379                 if (id->oii_gen == OSD_OII_NOGEN)
380                         osd_id_gen(id, inode->i_ino, inode->i_generation);
381
382                 /* Do not update file c/mtime in ldiskfs.
383                  * NB: we don't have any lock to protect this because we don't
384                  * have reference on osd_object now, but contention with
385                  * another lookup + attr_set can't happen in the tiny window
386                  * between if (...) and set S_NOCMTIME. */
387                 if (!(inode->i_flags & S_NOCMTIME))
388                         inode->i_flags |= S_NOCMTIME;
389         }
390
391         GOTO(put, rc);
392
393 put:
394         if (rc != 0) {
395                 if (!IS_ERR(inode))
396                         iput(inode);
397
398                 inode = ERR_PTR(rc);
399         }
400
401         return inode;
402 }
403
404 /**
405  * \retval +v: new filter_fid, does not contain self-fid
406  * \retval 0:  filter_fid_old, contains self-fid
407  * \retval -v: other failure cases
408  */
409 int osd_get_idif(struct osd_thread_info *info, struct inode *inode,
410                  struct dentry *dentry, struct lu_fid *fid)
411 {
412         struct filter_fid_old   *ff     = &info->oti_ff;
413         struct ost_id           *ostid  = &info->oti_ostid;
414         int                      rc;
415
416         rc = __osd_xattr_get(inode, dentry, XATTR_NAME_FID, ff, sizeof(*ff));
417         if (rc == sizeof(*ff)) {
418                 rc = 0;
419                 ostid_set_seq(ostid, le64_to_cpu(ff->ff_seq));
420                 ostid_set_id(ostid, le64_to_cpu(ff->ff_objid));
421                 /* XXX: should use real OST index in the future. LU-3569 */
422                 ostid_to_fid(fid, ostid, 0);
423         } else if (rc == sizeof(struct filter_fid)) {
424                 rc = 1;
425         } else if (rc >= 0) {
426                 rc = -EINVAL;
427         }
428
429         return rc;
430 }
431
432 static int osd_lma_self_repair(struct osd_thread_info *info,
433                                struct osd_device *osd, struct inode *inode,
434                                const struct lu_fid *fid, __u32 compat)
435 {
436         handle_t *jh;
437         int       rc;
438
439         LASSERT(current->journal_info == NULL);
440
441         jh = osd_journal_start_sb(osd_sb(osd), LDISKFS_HT_MISC,
442                                   osd_dto_credits_noquota[DTO_XATTR_SET]);
443         if (IS_ERR(jh)) {
444                 rc = PTR_ERR(jh);
445                 CWARN("%s: cannot start journal for lma_self_repair: rc = %d\n",
446                       osd_name(osd), rc);
447                 return rc;
448         }
449
450         rc = osd_ea_fid_set(info, inode, fid, compat, 0);
451         if (rc != 0)
452                 CWARN("%s: cannot self repair the LMA: rc = %d\n",
453                       osd_name(osd), rc);
454         ldiskfs_journal_stop(jh);
455         return rc;
456 }
457
458 static int osd_check_lma(const struct lu_env *env, struct osd_object *obj)
459 {
460         struct osd_thread_info  *info   = osd_oti_get(env);
461         struct osd_device       *osd    = osd_obj2dev(obj);
462         struct lustre_mdt_attrs *lma    = &info->oti_mdt_attrs;
463         struct inode            *inode  = obj->oo_inode;
464         struct dentry           *dentry = &info->oti_obj_dentry;
465         struct lu_fid           *fid    = NULL;
466         const struct lu_fid     *rfid   = lu_object_fid(&obj->oo_dt.do_lu);
467         int                      rc;
468         ENTRY;
469
470         CLASSERT(LMA_OLD_SIZE >= sizeof(*lma));
471         rc = __osd_xattr_get(inode, dentry, XATTR_NAME_LMA,
472                              info->oti_mdt_attrs_old, LMA_OLD_SIZE);
473         if (rc == -ENODATA && !fid_is_igif(rfid) && osd->od_check_ff) {
474                 fid = &lma->lma_self_fid;
475                 rc = osd_get_idif(info, inode, dentry, fid);
476                 if ((rc > 0) || (rc == -ENODATA && osd->od_lma_self_repair)) {
477                         /* For the given OST-object, if it has neither LMA nor
478                          * FID in XATTR_NAME_FID, then the given FID (which is
479                          * contained in the @obj, from client RPC for locating
480                          * the OST-object) is trusted. We use it to generate
481                          * the LMA. */
482                         osd_lma_self_repair(info, osd, inode, rfid,
483                                 fid_is_on_ost(info, osd, fid, OI_CHECK_FLD) ?
484                                 LMAC_FID_ON_OST : 0);
485                         RETURN(0);
486                 }
487         }
488
489         if (unlikely(rc == -ENODATA))
490                 RETURN(0);
491
492         if (rc < 0)
493                 RETURN(rc);
494
495         if (rc > 0) {
496                 rc = 0;
497                 lustre_lma_swab(lma);
498                 if (unlikely((lma->lma_incompat & ~LMA_INCOMPAT_SUPP) ||
499                              CFS_FAIL_CHECK(OBD_FAIL_OSD_LMA_INCOMPAT))) {
500                         CWARN("%s: unsupported incompat LMA feature(s) %#x for "
501                               "fid = "DFID", ino = %lu\n", osd_name(osd),
502                               lma->lma_incompat & ~LMA_INCOMPAT_SUPP,
503                               PFID(rfid), inode->i_ino);
504                         rc = -EOPNOTSUPP;
505                 } else if (!(lma->lma_compat & LMAC_NOT_IN_OI)) {
506                         fid = &lma->lma_self_fid;
507                 }
508         }
509
510         if (fid != NULL && unlikely(!lu_fid_eq(rfid, fid))) {
511                 if (fid_is_idif(rfid) && fid_is_idif(fid)) {
512                         struct ost_id   *oi   = &info->oti_ostid;
513                         struct lu_fid   *fid1 = &info->oti_fid3;
514                         __u32            idx  = fid_idif_ost_idx(rfid);
515
516                         /* For old IDIF, the OST index is not part of the IDIF,
517                          * Means that different OSTs may have the same IDIFs.
518                          * Under such case, we need to make some compatible
519                          * check to make sure to trigger OI scrub properly. */
520                         if (idx != 0 && fid_idif_ost_idx(fid) == 0) {
521                                 /* Given @rfid is new, LMA is old. */
522                                 fid_to_ostid(fid, oi);
523                                 ostid_to_fid(fid1, oi, idx);
524                                 if (lu_fid_eq(fid1, rfid)) {
525                                         if (osd->od_lma_self_repair)
526                                                 osd_lma_self_repair(info, osd,
527                                                         inode, rfid,
528                                                         LMAC_FID_ON_OST);
529                                         RETURN(0);
530                                 }
531                         }
532                 }
533
534                 CDEBUG(D_INODE, "%s: FID "DFID" != self_fid "DFID"\n",
535                        osd_name(osd), PFID(rfid), PFID(fid));
536                 rc = -EREMCHG;
537         }
538
539         RETURN(rc);
540 }
541
542 static int osd_fid_lookup(const struct lu_env *env, struct osd_object *obj,
543                           const struct lu_fid *fid,
544                           const struct lu_object_conf *conf)
545 {
546         struct osd_thread_info *info;
547         struct lu_device       *ldev   = obj->oo_dt.do_lu.lo_dev;
548         struct osd_device      *dev;
549         struct osd_idmap_cache *oic;
550         struct osd_inode_id    *id;
551         struct inode           *inode;
552         struct osd_scrub       *scrub;
553         struct scrub_file      *sf;
554         int                     result;
555         int                     saved  = 0;
556         bool                    in_oi  = false;
557         bool                    triggered = false;
558         ENTRY;
559
560         LINVRNT(osd_invariant(obj));
561         LASSERT(obj->oo_inode == NULL);
562         LASSERTF(fid_is_sane(fid) || fid_is_idif(fid), DFID"\n", PFID(fid));
563
564         dev = osd_dev(ldev);
565         scrub = &dev->od_scrub;
566         sf = &scrub->os_file;
567         info = osd_oti_get(env);
568         LASSERT(info);
569         oic = &info->oti_cache;
570
571         if (OBD_FAIL_CHECK(OBD_FAIL_OST_ENOENT))
572                 RETURN(-ENOENT);
573
574         /* For the object is created as locking anchor, or for the object to
575          * be created on disk. No need to osd_oi_lookup() at here because FID
576          * shouldn't never be re-used, if it's really a duplicate FID from
577          * unexpected reason, we should be able to detect it later by calling
578          * do_create->osd_oi_insert(). */
579         if (conf != NULL && conf->loc_flags & LOC_F_NEW)
580                 GOTO(out, result = 0);
581
582         /* Search order: 1. per-thread cache. */
583         if (lu_fid_eq(fid, &oic->oic_fid) &&
584             likely(oic->oic_dev == dev)) {
585                 id = &oic->oic_lid;
586                 goto iget;
587         }
588
589         id = &info->oti_id;
590         if (!list_empty(&scrub->os_inconsistent_items)) {
591                 /* Search order: 2. OI scrub pending list. */
592                 result = osd_oii_lookup(dev, fid, id);
593                 if (result == 0)
594                         goto iget;
595         }
596
597         /* Search order: 3. OI files. */
598         result = osd_oi_lookup(info, dev, fid, id, OI_CHECK_FLD);
599         if (result == -ENOENT) {
600                 if (!fid_is_norm(fid) ||
601                     fid_is_on_ost(info, dev, fid, OI_CHECK_FLD) ||
602                     !ldiskfs_test_bit(osd_oi_fid2idx(dev,fid),
603                                       sf->sf_oi_bitmap))
604                         GOTO(out, result = 0);
605
606                 goto trigger;
607         }
608
609         if (result != 0)
610                 GOTO(out, result);
611
612         in_oi = true;
613
614 iget:
615         inode = osd_iget_check(info, dev, fid, id, in_oi);
616         if (IS_ERR(inode)) {
617                 result = PTR_ERR(inode);
618                 if (result == -ENOENT || result == -ESTALE) {
619                         if (!in_oi)
620                                 fid_zero(&oic->oic_fid);
621
622                         GOTO(out, result = -ENOENT);
623                 } else if (result == -EREMCHG) {
624
625 trigger:
626                         if (!in_oi)
627                                 fid_zero(&oic->oic_fid);
628
629                         if (unlikely(triggered))
630                                 GOTO(out, result = saved);
631
632                         triggered = true;
633                         if (thread_is_running(&scrub->os_thread)) {
634                                 result = -EINPROGRESS;
635                         } else if (!dev->od_noscrub) {
636                                 /* Since we do not know the right OI mapping,
637                                  * we have to trigger OI scrub to scan the
638                                  * whole device. */
639                                 result = osd_scrub_start(dev, SS_AUTO_FULL |
640                                         SS_CLEAR_DRYRUN | SS_CLEAR_FAILOUT);
641                                 LCONSOLE_WARN("%.16s: trigger OI scrub by RPC "
642                                               "for "DFID", rc = %d [1]\n",
643                                               osd_name(dev), PFID(fid),result);
644                                 if (result == 0 || result == -EALREADY)
645                                         result = -EINPROGRESS;
646                                 else
647                                         result = -EREMCHG;
648                         }
649
650                         /* We still have chance to get the valid inode: for the
651                          * object which is referenced by remote name entry, the
652                          * object on the local MDT will be linked under the dir
653                          * of "/REMOTE_PARENT_DIR" with its FID string as name.
654                          *
655                          * We do not know whether the object for the given FID
656                          * is referenced by some remote name entry or not, and
657                          * especially for DNE II, a multiple-linked object may
658                          * have many name entries reside on many MDTs.
659                          *
660                          * To simplify the operation, OSD will not distinguish
661                          * more, just lookup "/REMOTE_PARENT_DIR". Usually, it
662                          * only happened for the RPC from other MDT during the
663                          * OI scrub, or for the client side RPC with FID only,
664                          * such as FID to path, or from old connected client. */
665                         saved = result;
666                         result = osd_lookup_in_remote_parent(info, dev,
667                                                              fid, id);
668                         if (result == 0) {
669                                 in_oi = false;
670                                 goto iget;
671                         }
672
673                         result = saved;
674                 }
675
676                 GOTO(out, result);
677         }
678
679         obj->oo_inode = inode;
680         LASSERT(obj->oo_inode->i_sb == osd_sb(dev));
681
682         result = osd_check_lma(env, obj);
683         if (result != 0) {
684                 iput(inode);
685                 obj->oo_inode = NULL;
686                 if (result == -EREMCHG) {
687                         if (!in_oi) {
688                                 result = osd_oi_lookup(info, dev, fid, id,
689                                                        OI_CHECK_FLD);
690                                 if (result != 0) {
691                                         fid_zero(&oic->oic_fid);
692                                         GOTO(out, result);
693                                 }
694                         }
695
696                         goto trigger;
697                 }
698
699                 GOTO(out, result);
700         }
701
702         obj->oo_compat_dot_created = 1;
703         obj->oo_compat_dotdot_created = 1;
704
705         if (!S_ISDIR(inode->i_mode) || !ldiskfs_pdo) /* done */
706                 GOTO(out, result = 0);
707
708         LASSERT(obj->oo_hl_head == NULL);
709         obj->oo_hl_head = ldiskfs_htree_lock_head_alloc(HTREE_HBITS_DEF);
710         if (obj->oo_hl_head == NULL) {
711                 obj->oo_inode = NULL;
712                 iput(inode);
713                 GOTO(out, result = -ENOMEM);
714         }
715         GOTO(out, result = 0);
716
717 out:
718         LINVRNT(osd_invariant(obj));
719         return result;
720 }
721
722 /*
723  * Concurrency: shouldn't matter.
724  */
725 static void osd_object_init0(struct osd_object *obj)
726 {
727         LASSERT(obj->oo_inode != NULL);
728         obj->oo_dt.do_body_ops = &osd_body_ops;
729         obj->oo_dt.do_lu.lo_header->loh_attr |=
730                 (LOHA_EXISTS | (obj->oo_inode->i_mode & S_IFMT));
731 }
732
733 /*
734  * Concurrency: no concurrent access is possible that early in object
735  * life-cycle.
736  */
737 static int osd_object_init(const struct lu_env *env, struct lu_object *l,
738                            const struct lu_object_conf *conf)
739 {
740         struct osd_object *obj = osd_obj(l);
741         int result;
742
743         LINVRNT(osd_invariant(obj));
744
745         if (fid_is_otable_it(&l->lo_header->loh_fid)) {
746                 obj->oo_dt.do_ops = &osd_obj_otable_it_ops;
747                 l->lo_header->loh_attr |= LOHA_EXISTS;
748                 return 0;
749         }
750
751         result = osd_fid_lookup(env, obj, lu_object_fid(l), conf);
752         obj->oo_dt.do_body_ops = &osd_body_ops_new;
753         if (result == 0 && obj->oo_inode != NULL)
754                 osd_object_init0(obj);
755
756         LINVRNT(osd_invariant(obj));
757         return result;
758 }
759
760 /*
761  * Concurrency: no concurrent access is possible that late in object
762  * life-cycle.
763  */
764 static void osd_object_free(const struct lu_env *env, struct lu_object *l)
765 {
766         struct osd_object *obj = osd_obj(l);
767
768         LINVRNT(osd_invariant(obj));
769
770         dt_object_fini(&obj->oo_dt);
771         if (obj->oo_hl_head != NULL)
772                 ldiskfs_htree_lock_head_free(obj->oo_hl_head);
773         OBD_FREE_PTR(obj);
774 }
775
776 /*
777  * Concurrency: no concurrent access is possible that late in object
778  * life-cycle.
779  */
780 static void osd_index_fini(struct osd_object *o)
781 {
782         struct iam_container *bag;
783
784         if (o->oo_dir != NULL) {
785                 bag = &o->oo_dir->od_container;
786                 if (o->oo_inode != NULL) {
787                         if (bag->ic_object == o->oo_inode)
788                                 iam_container_fini(bag);
789                 }
790                 OBD_FREE_PTR(o->oo_dir);
791                 o->oo_dir = NULL;
792         }
793 }
794
795 /*
796  * Concurrency: no concurrent access is possible that late in object
797  * life-cycle (for all existing callers, that is. New callers have to provide
798  * their own locking.)
799  */
800 static int osd_inode_unlinked(const struct inode *inode)
801 {
802         return inode->i_nlink == 0;
803 }
804
805 enum {
806         OSD_TXN_OI_DELETE_CREDITS    = 20,
807         OSD_TXN_INODE_DELETE_CREDITS = 20
808 };
809
810 /*
811  * Journal
812  */
813
814 #if OSD_THANDLE_STATS
815 /**
816  * Set time when the handle is allocated
817  */
818 static void osd_th_alloced(struct osd_thandle *oth)
819 {
820         oth->oth_alloced = cfs_time_current();
821 }
822
823 /**
824  * Set time when the handle started
825  */
826 static void osd_th_started(struct osd_thandle *oth)
827 {
828         oth->oth_started = cfs_time_current();
829 }
830
831 /**
832  * Helper function to convert time interval to microseconds packed in
833  * long int.
834  */
835 static long interval_to_usec(cfs_time_t start, cfs_time_t end)
836 {
837         struct timeval val;
838
839         cfs_duration_usec(cfs_time_sub(end, start), &val);
840         return val.tv_sec * 1000000 + val.tv_usec;
841 }
842
843 /**
844  * Check whether the we deal with this handle for too long.
845  */
846 static void __osd_th_check_slow(void *oth, struct osd_device *dev,
847                                 cfs_time_t alloced, cfs_time_t started,
848                                 cfs_time_t closed)
849 {
850         cfs_time_t now = cfs_time_current();
851
852         LASSERT(dev != NULL);
853
854         lprocfs_counter_add(dev->od_stats, LPROC_OSD_THANDLE_STARTING,
855                             interval_to_usec(alloced, started));
856         lprocfs_counter_add(dev->od_stats, LPROC_OSD_THANDLE_OPEN,
857                             interval_to_usec(started, closed));
858         lprocfs_counter_add(dev->od_stats, LPROC_OSD_THANDLE_CLOSING,
859                             interval_to_usec(closed, now));
860
861         if (cfs_time_before(cfs_time_add(alloced, cfs_time_seconds(30)), now)) {
862                 CWARN("transaction handle %p was open for too long: "
863                       "now "CFS_TIME_T" ,"
864                       "alloced "CFS_TIME_T" ,"
865                       "started "CFS_TIME_T" ,"
866                       "closed "CFS_TIME_T"\n",
867                       oth, now, alloced, started, closed);
868                 libcfs_debug_dumpstack(NULL);
869         }
870 }
871
872 #define OSD_CHECK_SLOW_TH(oth, dev, expr)                               \
873 {                                                                       \
874         cfs_time_t __closed = cfs_time_current();                       \
875         cfs_time_t __alloced = oth->oth_alloced;                        \
876         cfs_time_t __started = oth->oth_started;                        \
877                                                                         \
878         expr;                                                           \
879         __osd_th_check_slow(oth, dev, __alloced, __started, __closed);  \
880 }
881
882 #else /* OSD_THANDLE_STATS */
883
884 #define osd_th_alloced(h)                  do {} while(0)
885 #define osd_th_started(h)                  do {} while(0)
886 #define OSD_CHECK_SLOW_TH(oth, dev, expr)  expr
887
888 #endif /* OSD_THANDLE_STATS */
889
890 /*
891  * Concurrency: doesn't access mutable data.
892  */
893 static int osd_param_is_not_sane(const struct osd_device *dev,
894                                  const struct thandle *th)
895 {
896         struct osd_thandle *oh = container_of(th, typeof(*oh), ot_super);
897
898         return oh->ot_credits > osd_transaction_size(dev);
899 }
900
901 /*
902  * Concurrency: shouldn't matter.
903  */
904 static void osd_trans_commit_cb(struct super_block *sb,
905                                 struct ldiskfs_journal_cb_entry *jcb, int error)
906 {
907         struct osd_thandle *oh = container_of0(jcb, struct osd_thandle, ot_jcb);
908         struct thandle     *th  = &oh->ot_super;
909         struct lu_device   *lud = &th->th_dev->dd_lu_dev;
910         struct dt_txn_commit_cb *dcb, *tmp;
911
912         LASSERT(oh->ot_handle == NULL);
913
914         if (error)
915                 CERROR("transaction @0x%p commit error: %d\n", th, error);
916
917         dt_txn_hook_commit(th);
918
919         /* call per-transaction callbacks if any */
920         list_for_each_entry_safe(dcb, tmp, &oh->ot_dcb_list, dcb_linkage) {
921                 LASSERTF(dcb->dcb_magic == TRANS_COMMIT_CB_MAGIC,
922                          "commit callback entry: magic=%x name='%s'\n",
923                          dcb->dcb_magic, dcb->dcb_name);
924                 list_del_init(&dcb->dcb_linkage);
925                 dcb->dcb_func(NULL, th, dcb, error);
926         }
927
928         lu_ref_del_at(&lud->ld_reference, &oh->ot_dev_link, "osd-tx", th);
929         lu_device_put(lud);
930         th->th_dev = NULL;
931
932         lu_context_exit(&th->th_ctx);
933         lu_context_fini(&th->th_ctx);
934         thandle_put(th);
935 }
936
937 static struct thandle *osd_trans_create(const struct lu_env *env,
938                                         struct dt_device *d)
939 {
940         struct osd_thread_info  *oti = osd_oti_get(env);
941         struct osd_iobuf        *iobuf = &oti->oti_iobuf;
942         struct osd_thandle      *oh;
943         struct thandle          *th;
944         ENTRY;
945
946         /* on pending IO in this thread should left from prev. request */
947         LASSERT(atomic_read(&iobuf->dr_numreqs) == 0);
948
949         th = ERR_PTR(-ENOMEM);
950         OBD_ALLOC_GFP(oh, sizeof *oh, GFP_NOFS);
951         if (oh != NULL) {
952                 oh->ot_quota_trans = &oti->oti_quota_trans;
953                 memset(oh->ot_quota_trans, 0, sizeof(*oh->ot_quota_trans));
954                 th = &oh->ot_super;
955                 th->th_dev = d;
956                 th->th_result = 0;
957                 th->th_tags = LCT_TX_HANDLE;
958                 oh->ot_credits = 0;
959                 atomic_set(&th->th_refc, 1);
960                 th->th_alloc_size = sizeof(*oh);
961                 oti->oti_dev = osd_dt_dev(d);
962                 INIT_LIST_HEAD(&oh->ot_dcb_list);
963                 osd_th_alloced(oh);
964
965                 memset(oti->oti_declare_ops, 0,
966                                         sizeof(oti->oti_declare_ops));
967                 memset(oti->oti_declare_ops_rb, 0,
968                                         sizeof(oti->oti_declare_ops_rb));
969                 memset(oti->oti_declare_ops_cred, 0,
970                                         sizeof(oti->oti_declare_ops_cred));
971                 oti->oti_rollback = false;
972         }
973         RETURN(th);
974 }
975
976 /*
977  * Concurrency: shouldn't matter.
978  */
979 int osd_trans_start(const struct lu_env *env, struct dt_device *d,
980                     struct thandle *th)
981 {
982         struct osd_thread_info *oti = osd_oti_get(env);
983         struct osd_device  *dev = osd_dt_dev(d);
984         handle_t           *jh;
985         struct osd_thandle *oh;
986         int rc;
987
988         ENTRY;
989
990         LASSERT(current->journal_info == NULL);
991
992         oh = container_of0(th, struct osd_thandle, ot_super);
993         LASSERT(oh != NULL);
994         LASSERT(oh->ot_handle == NULL);
995
996         rc = dt_txn_hook_start(env, d, th);
997         if (rc != 0)
998                 GOTO(out, rc);
999
1000         if (unlikely(osd_param_is_not_sane(dev, th))) {
1001                 static unsigned long last_printed;
1002                 static int last_credits;
1003
1004                 CWARN("%.16s: too many transaction credits (%d > %d)\n",
1005                       LDISKFS_SB(osd_sb(dev))->s_es->s_volume_name,
1006                       oh->ot_credits,
1007                       osd_journal(dev)->j_max_transaction_buffers);
1008                 CWARN("  create: %u/%u, destroy: %u/%u\n",
1009                       oti->oti_declare_ops[OSD_OT_CREATE],
1010                       oti->oti_declare_ops_cred[OSD_OT_CREATE],
1011                       oti->oti_declare_ops[OSD_OT_DESTROY],
1012                       oti->oti_declare_ops_cred[OSD_OT_DESTROY]);
1013                 CWARN("  attr_set: %u/%u, xattr_set: %u/%u\n",
1014                       oti->oti_declare_ops[OSD_OT_ATTR_SET],
1015                       oti->oti_declare_ops_cred[OSD_OT_ATTR_SET],
1016                       oti->oti_declare_ops[OSD_OT_XATTR_SET],
1017                       oti->oti_declare_ops_cred[OSD_OT_XATTR_SET]);
1018                 CWARN("  write: %u/%u, punch: %u/%u, quota %u/%u\n",
1019                       oti->oti_declare_ops[OSD_OT_WRITE],
1020                       oti->oti_declare_ops_cred[OSD_OT_WRITE],
1021                       oti->oti_declare_ops[OSD_OT_PUNCH],
1022                       oti->oti_declare_ops_cred[OSD_OT_PUNCH],
1023                       oti->oti_declare_ops[OSD_OT_QUOTA],
1024                       oti->oti_declare_ops_cred[OSD_OT_QUOTA]);
1025                 CWARN("  insert: %u/%u, delete: %u/%u\n",
1026                       oti->oti_declare_ops[OSD_OT_INSERT],
1027                       oti->oti_declare_ops_cred[OSD_OT_INSERT],
1028                       oti->oti_declare_ops[OSD_OT_DELETE],
1029                       oti->oti_declare_ops_cred[OSD_OT_DELETE]);
1030                 CWARN("  ref_add: %u/%u, ref_del: %u/%u\n",
1031                       oti->oti_declare_ops[OSD_OT_REF_ADD],
1032                       oti->oti_declare_ops_cred[OSD_OT_REF_ADD],
1033                       oti->oti_declare_ops[OSD_OT_REF_DEL],
1034                       oti->oti_declare_ops_cred[OSD_OT_REF_DEL]);
1035
1036                 if (last_credits != oh->ot_credits &&
1037                     time_after(jiffies, last_printed +
1038                                msecs_to_jiffies(60 * MSEC_PER_SEC))) {
1039                         libcfs_debug_dumpstack(NULL);
1040                         last_credits = oh->ot_credits;
1041                         last_printed = jiffies;
1042                 }
1043                 /* XXX Limit the credits to 'max_transaction_buffers', and
1044                  *     let the underlying filesystem to catch the error if
1045                  *     we really need so many credits.
1046                  *
1047                  *     This should be removed when we can calculate the
1048                  *     credits precisely. */
1049                 oh->ot_credits = osd_transaction_size(dev);
1050         }
1051
1052         /*
1053          * XXX temporary stuff. Some abstraction layer should
1054          * be used.
1055          */
1056         jh = osd_journal_start_sb(osd_sb(dev), LDISKFS_HT_MISC, oh->ot_credits);
1057         osd_th_started(oh);
1058         if (!IS_ERR(jh)) {
1059                 oh->ot_handle = jh;
1060                 LASSERT(oti->oti_txns == 0);
1061                 lu_context_init(&th->th_ctx, th->th_tags);
1062                 lu_context_enter(&th->th_ctx);
1063
1064                 lu_device_get(&d->dd_lu_dev);
1065                 lu_ref_add_at(&d->dd_lu_dev.ld_reference, &oh->ot_dev_link,
1066                               "osd-tx", th);
1067                 oti->oti_txns++;
1068                 rc = 0;
1069         } else {
1070                 rc = PTR_ERR(jh);
1071         }
1072 out:
1073         RETURN(rc);
1074 }
1075
1076 static int osd_seq_exists(const struct lu_env *env,
1077                               struct osd_device *osd, obd_seq seq)
1078 {
1079         struct lu_seq_range     *range = &osd_oti_get(env)->oti_seq_range;
1080         struct seq_server_site  *ss = osd_seq_site(osd);
1081         int                     rc;
1082         ENTRY;
1083
1084         LASSERT(ss != NULL);
1085         LASSERT(ss->ss_server_fld != NULL);
1086
1087         rc = osd_fld_lookup(env, osd, seq, range);
1088         if (rc != 0) {
1089                 if (rc != -ENOENT)
1090                         CERROR("%s: can't lookup FLD sequence "LPX64
1091                                ": rc = %d\n", osd_name(osd), seq, rc);
1092                 RETURN(0);
1093         }
1094
1095         RETURN(ss->ss_node_id == range->lsr_index);
1096 }
1097
1098 /*
1099  * Concurrency: shouldn't matter.
1100  */
1101 static int osd_trans_stop(const struct lu_env *env, struct dt_device *dt,
1102                           struct thandle *th)
1103 {
1104         int                     rc = 0;
1105         struct osd_thandle     *oh;
1106         struct osd_thread_info *oti = osd_oti_get(env);
1107         struct osd_iobuf       *iobuf = &oti->oti_iobuf;
1108         struct qsd_instance    *qsd = oti->oti_dev->od_quota_slave;
1109         struct lquota_trans    *qtrans;
1110         ENTRY;
1111
1112         oh = container_of0(th, struct osd_thandle, ot_super);
1113
1114         qtrans = oh->ot_quota_trans;
1115         oh->ot_quota_trans = NULL;
1116
1117         if (oh->ot_handle != NULL) {
1118                 handle_t *hdl = oh->ot_handle;
1119
1120                 /*
1121                  * add commit callback
1122                  * notice we don't do this in osd_trans_start()
1123                  * as underlying transaction can change during truncate
1124                  */
1125                 ldiskfs_journal_callback_add(hdl, osd_trans_commit_cb,
1126                                          &oh->ot_jcb);
1127
1128                 LASSERT(oti->oti_txns == 1);
1129                 oti->oti_txns--;
1130                 rc = dt_txn_hook_stop(env, th);
1131                 if (rc != 0)
1132                         CERROR("Failure in transaction hook: %d\n", rc);
1133
1134                 /* hook functions might modify th_sync */
1135                 hdl->h_sync = th->th_sync;
1136
1137                 oh->ot_handle = NULL;
1138                 OSD_CHECK_SLOW_TH(oh, oti->oti_dev,
1139                                   rc = ldiskfs_journal_stop(hdl));
1140                 if (rc != 0)
1141                         CERROR("Failure to stop transaction: %d\n", rc);
1142         } else {
1143                 thandle_put(&oh->ot_super);
1144         }
1145
1146         /* inform the quota slave device that the transaction is stopping */
1147         qsd_op_end(env, qsd, qtrans);
1148
1149         /* as we want IO to journal and data IO be concurrent, we don't block
1150          * awaiting data IO completion in osd_do_bio(), instead we wait here
1151          * once transaction is submitted to the journal. all reqular requests
1152          * don't do direct IO (except read/write), thus this wait_event becomes
1153          * no-op for them.
1154          *
1155          * IMPORTANT: we have to wait till any IO submited by the thread is
1156          * completed otherwise iobuf may be corrupted by different request
1157          */
1158         wait_event(iobuf->dr_wait,
1159                        atomic_read(&iobuf->dr_numreqs) == 0);
1160         osd_fini_iobuf(oti->oti_dev, iobuf);
1161         if (!rc)
1162                 rc = iobuf->dr_error;
1163
1164         RETURN(rc);
1165 }
1166
1167 static int osd_trans_cb_add(struct thandle *th, struct dt_txn_commit_cb *dcb)
1168 {
1169         struct osd_thandle *oh = container_of0(th, struct osd_thandle,
1170                                                ot_super);
1171
1172         LASSERT(dcb->dcb_magic == TRANS_COMMIT_CB_MAGIC);
1173         LASSERT(&dcb->dcb_func != NULL);
1174         list_add(&dcb->dcb_linkage, &oh->ot_dcb_list);
1175
1176         return 0;
1177 }
1178
1179 /*
1180  * Called just before object is freed. Releases all resources except for
1181  * object itself (that is released by osd_object_free()).
1182  *
1183  * Concurrency: no concurrent access is possible that late in object
1184  * life-cycle.
1185  */
1186 static void osd_object_delete(const struct lu_env *env, struct lu_object *l)
1187 {
1188         struct osd_object *obj   = osd_obj(l);
1189         struct inode      *inode = obj->oo_inode;
1190
1191         LINVRNT(osd_invariant(obj));
1192
1193         /*
1194          * If object is unlinked remove fid->ino mapping from object index.
1195          */
1196
1197         osd_index_fini(obj);
1198         if (inode != NULL) {
1199                 struct qsd_instance     *qsd = osd_obj2dev(obj)->od_quota_slave;
1200                 qid_t                    uid = i_uid_read(inode);
1201                 qid_t                    gid = i_gid_read(inode);
1202
1203                 iput(inode);
1204                 obj->oo_inode = NULL;
1205
1206                 if (qsd != NULL) {
1207                         struct osd_thread_info  *info = osd_oti_get(env);
1208                         struct lquota_id_info   *qi = &info->oti_qi;
1209
1210                         /* Release granted quota to master if necessary */
1211                         qi->lqi_id.qid_uid = uid;
1212                         qsd_op_adjust(env, qsd, &qi->lqi_id, USRQUOTA);
1213
1214                         qi->lqi_id.qid_uid = gid;
1215                         qsd_op_adjust(env, qsd, &qi->lqi_id, GRPQUOTA);
1216                 }
1217         }
1218 }
1219
1220 /*
1221  * Concurrency: ->loo_object_release() is called under site spin-lock.
1222  */
1223 static void osd_object_release(const struct lu_env *env,
1224                                struct lu_object *l)
1225 {
1226 }
1227
1228 /*
1229  * Concurrency: shouldn't matter.
1230  */
1231 static int osd_object_print(const struct lu_env *env, void *cookie,
1232                             lu_printer_t p, const struct lu_object *l)
1233 {
1234         struct osd_object *o = osd_obj(l);
1235         struct iam_descr  *d;
1236
1237         if (o->oo_dir != NULL)
1238                 d = o->oo_dir->od_container.ic_descr;
1239         else
1240                 d = NULL;
1241         return (*p)(env, cookie,
1242                     LUSTRE_OSD_LDISKFS_NAME"-object@%p(i:%p:%lu/%u)[%s]",
1243                     o, o->oo_inode,
1244                     o->oo_inode ? o->oo_inode->i_ino : 0UL,
1245                     o->oo_inode ? o->oo_inode->i_generation : 0,
1246                     d ? d->id_ops->id_name : "plain");
1247 }
1248
1249 #define GRANT_FOR_LOCAL_OIDS 32 /* 128kB for last_rcvd, quota files, ... */
1250
1251 /*
1252  * Concurrency: shouldn't matter.
1253  */
1254 int osd_statfs(const struct lu_env *env, struct dt_device *d,
1255                struct obd_statfs *sfs)
1256 {
1257         struct osd_device  *osd = osd_dt_dev(d);
1258         struct super_block *sb = osd_sb(osd);
1259         struct kstatfs     *ksfs;
1260         int result = 0;
1261
1262         if (unlikely(osd->od_mnt == NULL))
1263                 return -EINPROGRESS;
1264
1265         /* osd_lproc.c call this without env, allocate ksfs for that case */
1266         if (unlikely(env == NULL)) {
1267                 OBD_ALLOC_PTR(ksfs);
1268                 if (ksfs == NULL)
1269                         return -ENOMEM;
1270         } else {
1271                 ksfs = &osd_oti_get(env)->oti_ksfs;
1272         }
1273
1274         spin_lock(&osd->od_osfs_lock);
1275         result = sb->s_op->statfs(sb->s_root, ksfs);
1276         if (likely(result == 0)) { /* N.B. statfs can't really fail */
1277                 statfs_pack(sfs, ksfs);
1278                 if (sb->s_flags & MS_RDONLY)
1279                         sfs->os_state = OS_STATE_READONLY;
1280         }
1281
1282         spin_unlock(&osd->od_osfs_lock);
1283
1284         if (unlikely(env == NULL))
1285                 OBD_FREE_PTR(ksfs);
1286
1287         /* Reserve a small amount of space for local objects like last_rcvd,
1288          * llog, quota files, ... */
1289         if (sfs->os_bavail <= GRANT_FOR_LOCAL_OIDS) {
1290                 sfs->os_bavail = 0;
1291         } else {
1292                 sfs->os_bavail -= GRANT_FOR_LOCAL_OIDS;
1293                 /** Take out metadata overhead for indirect blocks */
1294                 sfs->os_bavail -= sfs->os_bavail >> (sb->s_blocksize_bits - 3);
1295         }
1296
1297         return result;
1298 }
1299
1300 /**
1301  * Estimate space needed for file creations. We assume the largest filename
1302  * which is 2^64 - 1, hence a filename of 20 chars.
1303  * This is 28 bytes per object which is 28MB for 1M objects ... no so bad.
1304  */
1305 #ifdef __LDISKFS_DIR_REC_LEN
1306 #define PER_OBJ_USAGE __LDISKFS_DIR_REC_LEN(20)
1307 #else
1308 #define PER_OBJ_USAGE LDISKFS_DIR_REC_LEN(20)
1309 #endif
1310
1311 /*
1312  * Concurrency: doesn't access mutable data.
1313  */
1314 static void osd_conf_get(const struct lu_env *env,
1315                          const struct dt_device *dev,
1316                          struct dt_device_param *param)
1317 {
1318         struct super_block *sb = osd_sb(osd_dt_dev(dev));
1319         int                ea_overhead;
1320
1321         /*
1322          * XXX should be taken from not-yet-existing fs abstraction layer.
1323          */
1324         param->ddp_max_name_len = LDISKFS_NAME_LEN;
1325         param->ddp_max_nlink    = LDISKFS_LINK_MAX;
1326         param->ddp_block_shift  = sb->s_blocksize_bits;
1327         param->ddp_mount_type     = LDD_MT_LDISKFS;
1328         param->ddp_maxbytes       = sb->s_maxbytes;
1329         /* Overhead estimate should be fairly accurate, so we really take a tiny
1330          * error margin which also avoids fragmenting the filesystem too much */
1331         param->ddp_grant_reserved = 2; /* end up to be 1.9% after conversion */
1332         /* inode are statically allocated, so per-inode space consumption
1333          * is the space consumed by the directory entry */
1334         param->ddp_inodespace     = PER_OBJ_USAGE;
1335         /* per-fragment overhead to be used by the client code */
1336         param->ddp_grant_frag     = 6 * LDISKFS_BLOCK_SIZE(sb);
1337         param->ddp_mntopts      = 0;
1338         if (test_opt(sb, XATTR_USER))
1339                 param->ddp_mntopts |= MNTOPT_USERXATTR;
1340         if (test_opt(sb, POSIX_ACL))
1341                 param->ddp_mntopts |= MNTOPT_ACL;
1342
1343         /* LOD might calculate the max stripe count based on max_ea_size,
1344          * so we need take account in the overhead as well,
1345          * xattr_header + magic + xattr_entry_head */
1346         ea_overhead = sizeof(struct ldiskfs_xattr_header) + sizeof(__u32) +
1347                       LDISKFS_XATTR_LEN(XATTR_NAME_MAX_LEN);
1348
1349 #if defined(LDISKFS_FEATURE_INCOMPAT_EA_INODE)
1350         if (LDISKFS_HAS_INCOMPAT_FEATURE(sb, LDISKFS_FEATURE_INCOMPAT_EA_INODE))
1351                 param->ddp_max_ea_size = LDISKFS_XATTR_MAX_LARGE_EA_SIZE -
1352                                                                 ea_overhead;
1353         else
1354 #endif
1355                 param->ddp_max_ea_size = sb->s_blocksize - ea_overhead;
1356 }
1357
1358 /*
1359  * Concurrency: shouldn't matter.
1360  */
1361 static int osd_sync(const struct lu_env *env, struct dt_device *d)
1362 {
1363         int rc;
1364
1365         CDEBUG(D_CACHE, "syncing OSD %s\n", LUSTRE_OSD_LDISKFS_NAME);
1366
1367         rc = ldiskfs_force_commit(osd_sb(osd_dt_dev(d)));
1368
1369         CDEBUG(D_CACHE, "synced OSD %s: rc = %d\n",
1370                LUSTRE_OSD_LDISKFS_NAME, rc);
1371
1372         return rc;
1373 }
1374
1375 /**
1376  * Start commit for OSD device.
1377  *
1378  * An implementation of dt_commit_async method for OSD device.
1379  * Asychronously starts underlayng fs sync and thereby a transaction
1380  * commit.
1381  *
1382  * \param env environment
1383  * \param d dt device
1384  *
1385  * \see dt_device_operations
1386  */
1387 static int osd_commit_async(const struct lu_env *env,
1388                             struct dt_device *d)
1389 {
1390         struct super_block *s = osd_sb(osd_dt_dev(d));
1391         ENTRY;
1392
1393         CDEBUG(D_HA, "async commit OSD %s\n", LUSTRE_OSD_LDISKFS_NAME);
1394         RETURN(s->s_op->sync_fs(s, 0));
1395 }
1396
1397 /*
1398  * Concurrency: shouldn't matter.
1399  */
1400
1401 static int osd_ro(const struct lu_env *env, struct dt_device *d)
1402 {
1403         struct super_block *sb = osd_sb(osd_dt_dev(d));
1404         struct block_device *dev = sb->s_bdev;
1405 #ifdef HAVE_DEV_SET_RDONLY
1406         struct block_device *jdev = LDISKFS_SB(sb)->journal_bdev;
1407         int rc = 0;
1408 #else
1409         int rc = -EOPNOTSUPP;
1410 #endif
1411         ENTRY;
1412
1413 #ifdef HAVE_DEV_SET_RDONLY
1414         CERROR("*** setting %s read-only ***\n", osd_dt_dev(d)->od_svname);
1415
1416         if (jdev && (jdev != dev)) {
1417                 CDEBUG(D_IOCTL | D_HA, "set journal dev %lx rdonly\n",
1418                        (long)jdev);
1419                 dev_set_rdonly(jdev);
1420         }
1421         CDEBUG(D_IOCTL | D_HA, "set dev %lx rdonly\n", (long)dev);
1422         dev_set_rdonly(dev);
1423 #else
1424         CERROR("%s: %lx CANNOT BE SET READONLY: rc = %d\n",
1425                osd_dt_dev(d)->od_svname, (long)dev, rc);
1426 #endif
1427         RETURN(rc);
1428 }
1429
1430 /*
1431  * Concurrency: serialization provided by callers.
1432  */
1433 static int osd_init_capa_ctxt(const struct lu_env *env, struct dt_device *d,
1434                               int mode, unsigned long timeout, __u32 alg,
1435                               struct lustre_capa_key *keys)
1436 {
1437         struct osd_device *dev = osd_dt_dev(d);
1438         ENTRY;
1439
1440         dev->od_fl_capa = mode;
1441         dev->od_capa_timeout = timeout;
1442         dev->od_capa_alg = alg;
1443         dev->od_capa_keys = keys;
1444         RETURN(0);
1445 }
1446
1447 /**
1448  * Note: we do not count into QUOTA here.
1449  * If we mount with --data_journal we may need more.
1450  */
1451 const int osd_dto_credits_noquota[DTO_NR] = {
1452         /**
1453          * Insert.
1454          * INDEX_EXTRA_TRANS_BLOCKS(8) +
1455          * SINGLEDATA_TRANS_BLOCKS(8)
1456          * XXX Note: maybe iam need more, since iam have more level than
1457          *           EXT3 htree.
1458          */
1459         [DTO_INDEX_INSERT]  = 16,
1460         /**
1461          * Delete
1462          * just modify a single entry, probably merge few within a block
1463          */
1464         [DTO_INDEX_DELETE]  = 1,
1465         /**
1466          * Used for OI scrub
1467          */
1468         [DTO_INDEX_UPDATE]  = 16,
1469         /**
1470          * 4(inode, inode bits, groups, GDT)
1471          *   notice: OI updates are counted separately with DTO_INDEX_INSERT
1472          */
1473         [DTO_OBJECT_CREATE] = 4,
1474         /**
1475          * 4(inode, inode bits, groups, GDT)
1476          *   notice: OI updates are counted separately with DTO_INDEX_DELETE
1477          */
1478         [DTO_OBJECT_DELETE] = 4,
1479         /**
1480          * Attr set credits (inode)
1481          */
1482         [DTO_ATTR_SET_BASE] = 1,
1483         /**
1484          * Xattr set. The same as xattr of EXT3.
1485          * DATA_TRANS_BLOCKS(14)
1486          * XXX Note: in original MDS implmentation INDEX_EXTRA_TRANS_BLOCKS
1487          * are also counted in. Do not know why?
1488          */
1489         [DTO_XATTR_SET]     = 14,
1490         /**
1491          * credits for inode change during write.
1492          */
1493         [DTO_WRITE_BASE]    = 3,
1494         /**
1495          * credits for single block write.
1496          */
1497         [DTO_WRITE_BLOCK]   = 14,
1498         /**
1499          * Attr set credits for chown.
1500          * This is extra credits for setattr, and it is null without quota
1501          */
1502         [DTO_ATTR_SET_CHOWN] = 0
1503 };
1504
1505 static const struct dt_device_operations osd_dt_ops = {
1506         .dt_root_get       = osd_root_get,
1507         .dt_statfs         = osd_statfs,
1508         .dt_trans_create   = osd_trans_create,
1509         .dt_trans_start    = osd_trans_start,
1510         .dt_trans_stop     = osd_trans_stop,
1511         .dt_trans_cb_add   = osd_trans_cb_add,
1512         .dt_conf_get       = osd_conf_get,
1513         .dt_sync           = osd_sync,
1514         .dt_ro             = osd_ro,
1515         .dt_commit_async   = osd_commit_async,
1516         .dt_init_capa_ctxt = osd_init_capa_ctxt,
1517 };
1518
1519 static void osd_object_read_lock(const struct lu_env *env,
1520                                  struct dt_object *dt, unsigned role)
1521 {
1522         struct osd_object *obj = osd_dt_obj(dt);
1523         struct osd_thread_info *oti = osd_oti_get(env);
1524
1525         LINVRNT(osd_invariant(obj));
1526
1527         LASSERT(obj->oo_owner != env);
1528         down_read_nested(&obj->oo_sem, role);
1529
1530         LASSERT(obj->oo_owner == NULL);
1531         oti->oti_r_locks++;
1532 }
1533
1534 static void osd_object_write_lock(const struct lu_env *env,
1535                                   struct dt_object *dt, unsigned role)
1536 {
1537         struct osd_object *obj = osd_dt_obj(dt);
1538         struct osd_thread_info *oti = osd_oti_get(env);
1539
1540         LINVRNT(osd_invariant(obj));
1541
1542         LASSERT(obj->oo_owner != env);
1543         down_write_nested(&obj->oo_sem, role);
1544
1545         LASSERT(obj->oo_owner == NULL);
1546         obj->oo_owner = env;
1547         oti->oti_w_locks++;
1548 }
1549
1550 static void osd_object_read_unlock(const struct lu_env *env,
1551                                    struct dt_object *dt)
1552 {
1553         struct osd_object *obj = osd_dt_obj(dt);
1554         struct osd_thread_info *oti = osd_oti_get(env);
1555
1556         LINVRNT(osd_invariant(obj));
1557
1558         LASSERT(oti->oti_r_locks > 0);
1559         oti->oti_r_locks--;
1560         up_read(&obj->oo_sem);
1561 }
1562
1563 static void osd_object_write_unlock(const struct lu_env *env,
1564                                     struct dt_object *dt)
1565 {
1566         struct osd_object *obj = osd_dt_obj(dt);
1567         struct osd_thread_info *oti = osd_oti_get(env);
1568
1569         LINVRNT(osd_invariant(obj));
1570
1571         LASSERT(obj->oo_owner == env);
1572         LASSERT(oti->oti_w_locks > 0);
1573         oti->oti_w_locks--;
1574         obj->oo_owner = NULL;
1575         up_write(&obj->oo_sem);
1576 }
1577
1578 static int osd_object_write_locked(const struct lu_env *env,
1579                                    struct dt_object *dt)
1580 {
1581         struct osd_object *obj = osd_dt_obj(dt);
1582
1583         LINVRNT(osd_invariant(obj));
1584
1585         return obj->oo_owner == env;
1586 }
1587
1588 static int capa_is_sane(const struct lu_env *env,
1589                         struct osd_device *dev,
1590                         struct lustre_capa *capa,
1591                         struct lustre_capa_key *keys)
1592 {
1593         struct osd_thread_info *oti = osd_oti_get(env);
1594         struct lustre_capa *tcapa = &oti->oti_capa;
1595         struct obd_capa *oc;
1596         int i, rc = 0;
1597         ENTRY;
1598
1599         oc = capa_lookup(dev->od_capa_hash, capa, 0);
1600         if (oc) {
1601                 if (capa_is_expired(oc)) {
1602                         DEBUG_CAPA(D_ERROR, capa, "expired");
1603                         rc = -ESTALE;
1604                 }
1605                 capa_put(oc);
1606                 RETURN(rc);
1607         }
1608
1609         if (capa_is_expired_sec(capa)) {
1610                 DEBUG_CAPA(D_ERROR, capa, "expired");
1611                 RETURN(-ESTALE);
1612         }
1613
1614         spin_lock(&capa_lock);
1615         for (i = 0; i < 2; i++) {
1616                 if (keys[i].lk_keyid == capa->lc_keyid) {
1617                         oti->oti_capa_key = keys[i];
1618                         break;
1619                 }
1620         }
1621         spin_unlock(&capa_lock);
1622
1623         if (i == 2) {
1624                 DEBUG_CAPA(D_ERROR, capa, "no matched capa key");
1625                 RETURN(-ESTALE);
1626         }
1627
1628         rc = capa_hmac(tcapa->lc_hmac, capa, oti->oti_capa_key.lk_key);
1629         if (rc)
1630                 RETURN(rc);
1631
1632         if (memcmp(tcapa->lc_hmac, capa->lc_hmac, sizeof(capa->lc_hmac))) {
1633                 DEBUG_CAPA(D_ERROR, capa, "HMAC mismatch");
1634                 RETURN(-EACCES);
1635         }
1636
1637         oc = capa_add(dev->od_capa_hash, capa);
1638         capa_put(oc);
1639
1640         RETURN(0);
1641 }
1642
1643 int osd_object_auth(const struct lu_env *env, struct dt_object *dt,
1644                     struct lustre_capa *capa, __u64 opc)
1645 {
1646         const struct lu_fid *fid = lu_object_fid(&dt->do_lu);
1647         struct osd_device *osd = osd_dev(dt->do_lu.lo_dev);
1648         struct lu_capainfo *lci;
1649         int rc;
1650
1651         if (!osd->od_fl_capa)
1652                 return 0;
1653
1654         if (capa == BYPASS_CAPA)
1655                 return 0;
1656
1657         lci = lu_capainfo_get(env);
1658         if (unlikely(lci == NULL))
1659                 return 0;
1660
1661         if (lci->lci_auth == LC_ID_NONE)
1662                 return 0;
1663
1664         if (capa == NULL) {
1665                 CERROR("%s: no capability provided for FID "DFID": rc = %d\n",
1666                        osd_name(osd), PFID(fid), -EACCES);
1667                 return -EACCES;
1668         }
1669
1670         if (!lu_fid_eq(fid, &capa->lc_fid)) {
1671                 DEBUG_CAPA(D_ERROR, capa, "fid "DFID" mismatch with",
1672                            PFID(fid));
1673                 return -EACCES;
1674         }
1675
1676         if (!capa_opc_supported(capa, opc)) {
1677                 DEBUG_CAPA(D_ERROR, capa, "opc "LPX64" not supported by", opc);
1678                 return -EACCES;
1679         }
1680
1681         rc = capa_is_sane(env, osd, capa, osd->od_capa_keys);
1682         if (rc != 0) {
1683                 DEBUG_CAPA(D_ERROR, capa, "insane: rc = %d", rc);
1684                 return -EACCES;
1685         }
1686
1687         return 0;
1688 }
1689
1690 static struct timespec *osd_inode_time(const struct lu_env *env,
1691                                        struct inode *inode, __u64 seconds)
1692 {
1693         struct osd_thread_info  *oti = osd_oti_get(env);
1694         struct timespec         *t   = &oti->oti_time;
1695
1696         t->tv_sec = seconds;
1697         t->tv_nsec = 0;
1698         *t = timespec_trunc(*t, inode->i_sb->s_time_gran);
1699         return t;
1700 }
1701
1702
1703 static void osd_inode_getattr(const struct lu_env *env,
1704                               struct inode *inode, struct lu_attr *attr)
1705 {
1706         attr->la_valid  |= LA_ATIME | LA_MTIME | LA_CTIME | LA_MODE |
1707                            LA_SIZE | LA_BLOCKS | LA_UID | LA_GID |
1708                            LA_FLAGS | LA_NLINK | LA_RDEV | LA_BLKSIZE |
1709                            LA_TYPE;
1710
1711         attr->la_atime   = LTIME_S(inode->i_atime);
1712         attr->la_mtime   = LTIME_S(inode->i_mtime);
1713         attr->la_ctime   = LTIME_S(inode->i_ctime);
1714         attr->la_mode    = inode->i_mode;
1715         attr->la_size    = i_size_read(inode);
1716         attr->la_blocks  = inode->i_blocks;
1717         attr->la_uid     = i_uid_read(inode);
1718         attr->la_gid     = i_gid_read(inode);
1719         attr->la_flags   = LDISKFS_I(inode)->i_flags;
1720         attr->la_nlink   = inode->i_nlink;
1721         attr->la_rdev    = inode->i_rdev;
1722         attr->la_blksize = 1 << inode->i_blkbits;
1723         attr->la_blkbits = inode->i_blkbits;
1724 }
1725
1726 static int osd_attr_get(const struct lu_env *env,
1727                         struct dt_object *dt,
1728                         struct lu_attr *attr,
1729                         struct lustre_capa *capa)
1730 {
1731         struct osd_object *obj = osd_dt_obj(dt);
1732
1733         LASSERT(dt_object_exists(dt));
1734         LASSERT(!dt_object_remote(dt));
1735         LINVRNT(osd_invariant(obj));
1736
1737         if (osd_object_auth(env, dt, capa, CAPA_OPC_META_READ))
1738                 return -EACCES;
1739
1740         spin_lock(&obj->oo_guard);
1741         osd_inode_getattr(env, obj->oo_inode, attr);
1742         spin_unlock(&obj->oo_guard);
1743         return 0;
1744 }
1745
1746 static int osd_declare_attr_set(const struct lu_env *env,
1747                                 struct dt_object *dt,
1748                                 const struct lu_attr *attr,
1749                                 struct thandle *handle)
1750 {
1751         struct osd_thandle     *oh;
1752         struct osd_object      *obj;
1753         struct osd_thread_info *info = osd_oti_get(env);
1754         struct lquota_id_info  *qi = &info->oti_qi;
1755         qid_t                   uid;
1756         qid_t                   gid;
1757         long long               bspace;
1758         int                     rc = 0;
1759         bool                    enforce;
1760         ENTRY;
1761
1762         LASSERT(dt != NULL);
1763         LASSERT(handle != NULL);
1764
1765         obj = osd_dt_obj(dt);
1766         LASSERT(osd_invariant(obj));
1767
1768         oh = container_of0(handle, struct osd_thandle, ot_super);
1769         LASSERT(oh->ot_handle == NULL);
1770
1771         osd_trans_declare_op(env, oh, OSD_OT_ATTR_SET,
1772                              osd_dto_credits_noquota[DTO_ATTR_SET_BASE]);
1773
1774         if (attr == NULL || obj->oo_inode == NULL)
1775                 RETURN(rc);
1776
1777         bspace   = obj->oo_inode->i_blocks;
1778         bspace <<= obj->oo_inode->i_sb->s_blocksize_bits;
1779         bspace   = toqb(bspace);
1780
1781         /* Changing ownership is always preformed by super user, it should not
1782          * fail with EDQUOT.
1783          *
1784          * We still need to call the osd_declare_qid() to calculate the journal
1785          * credits for updating quota accounting files and to trigger quota
1786          * space adjustment once the operation is completed.*/
1787         if (attr->la_valid & LA_UID || attr->la_valid & LA_GID) {
1788                 /* USERQUOTA */
1789                 uid = i_uid_read(obj->oo_inode);
1790                 qi->lqi_type = USRQUOTA;
1791                 enforce = (attr->la_valid & LA_UID) && (attr->la_uid != uid);
1792                 /* inode accounting */
1793                 qi->lqi_is_blk = false;
1794
1795                 /* one more inode for the new uid ... */
1796                 qi->lqi_id.qid_uid = attr->la_uid;
1797                 qi->lqi_space      = 1;
1798                 /* Reserve credits for the new uid */
1799                 rc = osd_declare_qid(env, oh, qi, NULL, enforce, NULL);
1800                 if (rc == -EDQUOT || rc == -EINPROGRESS)
1801                         rc = 0;
1802                 if (rc)
1803                         RETURN(rc);
1804
1805                 /* and one less inode for the current uid */
1806                 qi->lqi_id.qid_uid = uid;
1807                 qi->lqi_space      = -1;
1808                 rc = osd_declare_qid(env, oh, qi, obj, enforce, NULL);
1809                 if (rc == -EDQUOT || rc == -EINPROGRESS)
1810                         rc = 0;
1811                 if (rc)
1812                         RETURN(rc);
1813
1814                 /* block accounting */
1815                 qi->lqi_is_blk = true;
1816
1817                 /* more blocks for the new uid ... */
1818                 qi->lqi_id.qid_uid = attr->la_uid;
1819                 qi->lqi_space      = bspace;
1820                 /*
1821                  * Credits for the new uid has been reserved, re-use "obj"
1822                  * to save credit reservation.
1823                  */
1824                 rc = osd_declare_qid(env, oh, qi, obj, enforce, NULL);
1825                 if (rc == -EDQUOT || rc == -EINPROGRESS)
1826                         rc = 0;
1827                 if (rc)
1828                         RETURN(rc);
1829
1830                 /* and finally less blocks for the current uid */
1831                 qi->lqi_id.qid_uid = uid;
1832                 qi->lqi_space      = -bspace;
1833                 rc = osd_declare_qid(env, oh, qi, obj, enforce, NULL);
1834                 if (rc == -EDQUOT || rc == -EINPROGRESS)
1835                         rc = 0;
1836                 if (rc)
1837                         RETURN(rc);
1838
1839                 /* GROUP QUOTA */
1840                 gid = i_gid_read(obj->oo_inode);
1841                 qi->lqi_type = GRPQUOTA;
1842                 enforce = (attr->la_valid & LA_GID) && (attr->la_gid != gid);
1843
1844                 /* inode accounting */
1845                 qi->lqi_is_blk = false;
1846
1847                 /* one more inode for the new gid ... */
1848                 qi->lqi_id.qid_gid = attr->la_gid;
1849                 qi->lqi_space      = 1;
1850                 rc = osd_declare_qid(env, oh, qi, NULL, enforce, NULL);
1851                 if (rc == -EDQUOT || rc == -EINPROGRESS)
1852                         rc = 0;
1853                 if (rc)
1854                         RETURN(rc);
1855
1856                 /* and one less inode for the current gid */
1857                 qi->lqi_id.qid_gid = gid;
1858                 qi->lqi_space      = -1;
1859                 rc = osd_declare_qid(env, oh, qi, obj, enforce, NULL);
1860                 if (rc == -EDQUOT || rc == -EINPROGRESS)
1861                         rc = 0;
1862                 if (rc)
1863                         RETURN(rc);
1864
1865                 /* block accounting */
1866                 qi->lqi_is_blk = true;
1867
1868                 /* more blocks for the new gid ... */
1869                 qi->lqi_id.qid_gid = attr->la_gid;
1870                 qi->lqi_space      = bspace;
1871                 rc = osd_declare_qid(env, oh, qi, obj, enforce, NULL);
1872                 if (rc == -EDQUOT || rc == -EINPROGRESS)
1873                         rc = 0;
1874                 if (rc)
1875                         RETURN(rc);
1876
1877                 /* and finally less blocks for the current gid */
1878                 qi->lqi_id.qid_gid = gid;
1879                 qi->lqi_space      = -bspace;
1880                 rc = osd_declare_qid(env, oh, qi, obj, enforce, NULL);
1881                 if (rc == -EDQUOT || rc == -EINPROGRESS)
1882                         rc = 0;
1883                 if (rc)
1884                         RETURN(rc);
1885         }
1886
1887         RETURN(rc);
1888 }
1889
1890 static int osd_inode_setattr(const struct lu_env *env,
1891                              struct inode *inode, const struct lu_attr *attr)
1892 {
1893         __u64 bits = attr->la_valid;
1894
1895         /* Only allow set size for regular file */
1896         if (!S_ISREG(inode->i_mode))
1897                 bits &= ~(LA_SIZE | LA_BLOCKS);
1898
1899         if (bits == 0)
1900                 return 0;
1901
1902         if (bits & LA_ATIME)
1903                 inode->i_atime  = *osd_inode_time(env, inode, attr->la_atime);
1904         if (bits & LA_CTIME)
1905                 inode->i_ctime  = *osd_inode_time(env, inode, attr->la_ctime);
1906         if (bits & LA_MTIME)
1907                 inode->i_mtime  = *osd_inode_time(env, inode, attr->la_mtime);
1908         if (bits & LA_SIZE) {
1909                 LDISKFS_I(inode)->i_disksize = attr->la_size;
1910                 i_size_write(inode, attr->la_size);
1911         }
1912
1913 #if 0
1914         /* OSD should not change "i_blocks" which is used by quota.
1915          * "i_blocks" should be changed by ldiskfs only. */
1916         if (bits & LA_BLOCKS)
1917                 inode->i_blocks = attr->la_blocks;
1918 #endif
1919         if (bits & LA_MODE)
1920                 inode->i_mode = (inode->i_mode & S_IFMT) |
1921                                 (attr->la_mode & ~S_IFMT);
1922         if (bits & LA_UID)
1923                 i_uid_write(inode, attr->la_uid);
1924         if (bits & LA_GID)
1925                 i_gid_write(inode, attr->la_gid);
1926         if (bits & LA_NLINK)
1927                 set_nlink(inode, attr->la_nlink);
1928         if (bits & LA_RDEV)
1929                 inode->i_rdev = attr->la_rdev;
1930
1931         if (bits & LA_FLAGS) {
1932                 /* always keep S_NOCMTIME */
1933                 inode->i_flags = ll_ext_to_inode_flags(attr->la_flags) |
1934                                  S_NOCMTIME;
1935         }
1936         return 0;
1937 }
1938
1939 static int osd_quota_transfer(struct inode *inode, const struct lu_attr *attr)
1940 {
1941         if ((attr->la_valid & LA_UID && attr->la_uid != i_uid_read(inode)) ||
1942             (attr->la_valid & LA_GID && attr->la_gid != i_gid_read(inode))) {
1943                 struct iattr    iattr;
1944                 int             rc;
1945
1946                 ll_vfs_dq_init(inode);
1947                 iattr.ia_valid = 0;
1948                 if (attr->la_valid & LA_UID)
1949                         iattr.ia_valid |= ATTR_UID;
1950                 if (attr->la_valid & LA_GID)
1951                         iattr.ia_valid |= ATTR_GID;
1952                 iattr.ia_uid = make_kuid(&init_user_ns, attr->la_uid);
1953                 iattr.ia_gid = make_kgid(&init_user_ns, attr->la_gid);
1954
1955                 rc = ll_vfs_dq_transfer(inode, &iattr);
1956                 if (rc) {
1957                         CERROR("%s: quota transfer failed: rc = %d. Is quota "
1958                                "enforcement enabled on the ldiskfs "
1959                                "filesystem?\n", inode->i_sb->s_id, rc);
1960                         return rc;
1961                 }
1962         }
1963         return 0;
1964 }
1965
1966 static int osd_attr_set(const struct lu_env *env,
1967                         struct dt_object *dt,
1968                         const struct lu_attr *attr,
1969                         struct thandle *handle,
1970                         struct lustre_capa *capa)
1971 {
1972         struct osd_object *obj = osd_dt_obj(dt);
1973         struct inode      *inode;
1974         int rc;
1975
1976         LASSERT(handle != NULL);
1977         LASSERT(dt_object_exists(dt));
1978         LASSERT(!dt_object_remote(dt));
1979         LASSERT(osd_invariant(obj));
1980
1981         if (osd_object_auth(env, dt, capa, CAPA_OPC_META_WRITE))
1982                 return -EACCES;
1983
1984         osd_trans_exec_op(env, handle, OSD_OT_ATTR_SET);
1985
1986         if (OBD_FAIL_CHECK(OBD_FAIL_OSD_FID_MAPPING)) {
1987                 struct osd_thread_info  *oti  = osd_oti_get(env);
1988                 const struct lu_fid     *fid0 = lu_object_fid(&dt->do_lu);
1989                 struct lu_fid           *fid1 = &oti->oti_fid;
1990                 struct osd_inode_id     *id   = &oti->oti_id;
1991                 struct iam_path_descr   *ipd;
1992                 struct iam_container    *bag;
1993                 struct osd_thandle      *oh;
1994                 int                      rc;
1995
1996                 fid_cpu_to_be(fid1, fid0);
1997                 memset(id, 1, sizeof(*id));
1998                 bag = &osd_fid2oi(osd_dev(dt->do_lu.lo_dev),
1999                                   fid0)->oi_dir.od_container;
2000                 ipd = osd_idx_ipd_get(env, bag);
2001                 if (unlikely(ipd == NULL))
2002                         RETURN(-ENOMEM);
2003
2004                 oh = container_of0(handle, struct osd_thandle, ot_super);
2005                 rc = iam_update(oh->ot_handle, bag, (const struct iam_key *)fid1,
2006                                 (const struct iam_rec *)id, ipd);
2007                 osd_ipd_put(env, bag, ipd);
2008                 return(rc > 0 ? 0 : rc);
2009         }
2010
2011         inode = obj->oo_inode;
2012
2013         rc = osd_quota_transfer(inode, attr);
2014         if (rc)
2015                 return rc;
2016
2017         spin_lock(&obj->oo_guard);
2018         rc = osd_inode_setattr(env, inode, attr);
2019         spin_unlock(&obj->oo_guard);
2020
2021         if (!rc)
2022                 ll_dirty_inode(inode, I_DIRTY_DATASYNC);
2023         return rc;
2024 }
2025
2026 struct dentry *osd_child_dentry_get(const struct lu_env *env,
2027                                     struct osd_object *obj,
2028                                     const char *name, const int namelen)
2029 {
2030         return osd_child_dentry_by_inode(env, obj->oo_inode, name, namelen);
2031 }
2032
2033 static int osd_mkfile(struct osd_thread_info *info, struct osd_object *obj,
2034                       umode_t mode, struct dt_allocation_hint *hint,
2035                       struct thandle *th)
2036 {
2037         int result;
2038         struct osd_device  *osd = osd_obj2dev(obj);
2039         struct osd_thandle *oth;
2040         struct dt_object   *parent = NULL;
2041         struct inode       *inode;
2042
2043         LINVRNT(osd_invariant(obj));
2044         LASSERT(obj->oo_inode == NULL);
2045         LASSERT(obj->oo_hl_head == NULL);
2046
2047         if (S_ISDIR(mode) && ldiskfs_pdo) {
2048                 obj->oo_hl_head =ldiskfs_htree_lock_head_alloc(HTREE_HBITS_DEF);
2049                 if (obj->oo_hl_head == NULL)
2050                         return -ENOMEM;
2051         }
2052
2053         oth = container_of(th, struct osd_thandle, ot_super);
2054         LASSERT(oth->ot_handle->h_transaction != NULL);
2055
2056         if (hint && hint->dah_parent)
2057                 parent = hint->dah_parent;
2058
2059         inode = ldiskfs_create_inode(oth->ot_handle,
2060                                      parent ? osd_dt_obj(parent)->oo_inode :
2061                                               osd_sb(osd)->s_root->d_inode,
2062                                      mode);
2063         if (!IS_ERR(inode)) {
2064                 /* Do not update file c/mtime in ldiskfs.
2065                  * NB: don't need any lock because no contention at this
2066                  * early stage */
2067                 inode->i_flags |= S_NOCMTIME;
2068
2069                 /* For new created object, it must be consistent,
2070                  * and it is unnecessary to scrub against it. */
2071                 ldiskfs_set_inode_state(inode, LDISKFS_STATE_LUSTRE_NOSCRUB);
2072                 obj->oo_inode = inode;
2073                 result = 0;
2074         } else {
2075                 if (obj->oo_hl_head != NULL) {
2076                         ldiskfs_htree_lock_head_free(obj->oo_hl_head);
2077                         obj->oo_hl_head = NULL;
2078                 }
2079                 result = PTR_ERR(inode);
2080         }
2081         LINVRNT(osd_invariant(obj));
2082         return result;
2083 }
2084
2085 enum {
2086         OSD_NAME_LEN = 255
2087 };
2088
2089 static int osd_mkdir(struct osd_thread_info *info, struct osd_object *obj,
2090                      struct lu_attr *attr,
2091                      struct dt_allocation_hint *hint,
2092                      struct dt_object_format *dof,
2093                      struct thandle *th)
2094 {
2095         int result;
2096         struct osd_thandle *oth;
2097         __u32 mode = (attr->la_mode & (S_IFMT | S_IRWXUGO | S_ISVTX));
2098
2099         LASSERT(S_ISDIR(attr->la_mode));
2100
2101         oth = container_of(th, struct osd_thandle, ot_super);
2102         LASSERT(oth->ot_handle->h_transaction != NULL);
2103         result = osd_mkfile(info, obj, mode, hint, th);
2104
2105         return result;
2106 }
2107
2108 static int osd_mk_index(struct osd_thread_info *info, struct osd_object *obj,
2109                         struct lu_attr *attr,
2110                         struct dt_allocation_hint *hint,
2111                         struct dt_object_format *dof,
2112                         struct thandle *th)
2113 {
2114         int result;
2115         struct osd_thandle *oth;
2116         const struct dt_index_features *feat = dof->u.dof_idx.di_feat;
2117
2118         __u32 mode = (attr->la_mode & (S_IFMT | S_IALLUGO | S_ISVTX));
2119
2120         LASSERT(S_ISREG(attr->la_mode));
2121
2122         oth = container_of(th, struct osd_thandle, ot_super);
2123         LASSERT(oth->ot_handle->h_transaction != NULL);
2124
2125         result = osd_mkfile(info, obj, mode, hint, th);
2126         if (result == 0) {
2127                 LASSERT(obj->oo_inode != NULL);
2128                 if (feat->dif_flags & DT_IND_VARKEY)
2129                         result = iam_lvar_create(obj->oo_inode,
2130                                                  feat->dif_keysize_max,
2131                                                  feat->dif_ptrsize,
2132                                                  feat->dif_recsize_max,
2133                                                  oth->ot_handle);
2134                 else
2135                         result = iam_lfix_create(obj->oo_inode,
2136                                                  feat->dif_keysize_max,
2137                                                  feat->dif_ptrsize,
2138                                                  feat->dif_recsize_max,
2139                                                  oth->ot_handle);
2140
2141         }
2142         return result;
2143 }
2144
2145 static int osd_mkreg(struct osd_thread_info *info, struct osd_object *obj,
2146                      struct lu_attr *attr,
2147                      struct dt_allocation_hint *hint,
2148                      struct dt_object_format *dof,
2149                      struct thandle *th)
2150 {
2151         LASSERT(S_ISREG(attr->la_mode));
2152         return osd_mkfile(info, obj, (attr->la_mode &
2153                                (S_IFMT | S_IALLUGO | S_ISVTX)), hint, th);
2154 }
2155
2156 static int osd_mksym(struct osd_thread_info *info, struct osd_object *obj,
2157                      struct lu_attr *attr,
2158                      struct dt_allocation_hint *hint,
2159                      struct dt_object_format *dof,
2160                      struct thandle *th)
2161 {
2162         LASSERT(S_ISLNK(attr->la_mode));
2163         return osd_mkfile(info, obj, (attr->la_mode &
2164                               (S_IFMT | S_IALLUGO | S_ISVTX)), hint, th);
2165 }
2166
2167 static int osd_mknod(struct osd_thread_info *info, struct osd_object *obj,
2168                      struct lu_attr *attr,
2169                      struct dt_allocation_hint *hint,
2170                      struct dt_object_format *dof,
2171                      struct thandle *th)
2172 {
2173         umode_t mode = attr->la_mode & (S_IFMT | S_IALLUGO | S_ISVTX);
2174         int result;
2175
2176         LINVRNT(osd_invariant(obj));
2177         LASSERT(obj->oo_inode == NULL);
2178         LASSERT(S_ISCHR(mode) || S_ISBLK(mode) ||
2179                 S_ISFIFO(mode) || S_ISSOCK(mode));
2180
2181         result = osd_mkfile(info, obj, mode, hint, th);
2182         if (result == 0) {
2183                 LASSERT(obj->oo_inode != NULL);
2184                 /*
2185                  * This inode should be marked dirty for i_rdev.  Currently
2186                  * that is done in the osd_attr_init().
2187                  */
2188                 init_special_inode(obj->oo_inode, obj->oo_inode->i_mode,
2189                                    attr->la_rdev);
2190         }
2191         LINVRNT(osd_invariant(obj));
2192         return result;
2193 }
2194
2195 typedef int (*osd_obj_type_f)(struct osd_thread_info *, struct osd_object *,
2196                               struct lu_attr *,
2197                               struct dt_allocation_hint *hint,
2198                               struct dt_object_format *dof,
2199                               struct thandle *);
2200
2201 static osd_obj_type_f osd_create_type_f(enum dt_format_type type)
2202 {
2203         osd_obj_type_f result;
2204
2205         switch (type) {
2206         case DFT_DIR:
2207                 result = osd_mkdir;
2208                 break;
2209         case DFT_REGULAR:
2210                 result = osd_mkreg;
2211                 break;
2212         case DFT_SYM:
2213                 result = osd_mksym;
2214                 break;
2215         case DFT_NODE:
2216                 result = osd_mknod;
2217                 break;
2218         case DFT_INDEX:
2219                 result = osd_mk_index;
2220                 break;
2221
2222         default:
2223                 LBUG();
2224                 break;
2225         }
2226         return result;
2227 }
2228
2229
2230 static void osd_ah_init(const struct lu_env *env, struct dt_allocation_hint *ah,
2231                         struct dt_object *parent, struct dt_object *child,
2232                         umode_t child_mode)
2233 {
2234         LASSERT(ah);
2235
2236         ah->dah_parent = parent;
2237         ah->dah_mode = child_mode;
2238 }
2239
2240 static void osd_attr_init(struct osd_thread_info *info, struct osd_object *obj,
2241                           struct lu_attr *attr, struct dt_object_format *dof)
2242 {
2243         struct inode   *inode = obj->oo_inode;
2244         __u64           valid = attr->la_valid;
2245         int             result;
2246
2247         attr->la_valid &= ~(LA_TYPE | LA_MODE);
2248
2249         if (dof->dof_type != DFT_NODE)
2250                 attr->la_valid &= ~LA_RDEV;
2251         if ((valid & LA_ATIME) && (attr->la_atime == LTIME_S(inode->i_atime)))
2252                 attr->la_valid &= ~LA_ATIME;
2253         if ((valid & LA_CTIME) && (attr->la_ctime == LTIME_S(inode->i_ctime)))
2254                 attr->la_valid &= ~LA_CTIME;
2255         if ((valid & LA_MTIME) && (attr->la_mtime == LTIME_S(inode->i_mtime)))
2256                 attr->la_valid &= ~LA_MTIME;
2257
2258         result = osd_quota_transfer(inode, attr);
2259         if (result)
2260                 return;
2261
2262         if (attr->la_valid != 0) {
2263                 result = osd_inode_setattr(info->oti_env, inode, attr);
2264                 /*
2265                  * The osd_inode_setattr() should always succeed here.  The
2266                  * only error that could be returned is EDQUOT when we are
2267                  * trying to change the UID or GID of the inode. However, this
2268                  * should not happen since quota enforcement is no longer
2269                  * enabled on ldiskfs (lquota takes care of it).
2270                  */
2271                 LASSERTF(result == 0, "%d\n", result);
2272                 ll_dirty_inode(inode, I_DIRTY_DATASYNC);
2273         }
2274
2275         attr->la_valid = valid;
2276 }
2277
2278 /**
2279  * Helper function for osd_object_create()
2280  *
2281  * \retval 0, on success
2282  */
2283 static int __osd_object_create(struct osd_thread_info *info,
2284                                struct osd_object *obj, struct lu_attr *attr,
2285                                struct dt_allocation_hint *hint,
2286                                struct dt_object_format *dof,
2287                                struct thandle *th)
2288 {
2289         int     result;
2290         __u32   umask;
2291
2292         /* we drop umask so that permissions we pass are not affected */
2293         umask = current->fs->umask;
2294         current->fs->umask = 0;
2295
2296         result = osd_create_type_f(dof->dof_type)(info, obj, attr, hint, dof,
2297                                                   th);
2298         if (result == 0) {
2299                 osd_attr_init(info, obj, attr, dof);
2300                 osd_object_init0(obj);
2301                 /* bz 24037 */
2302                 if (obj->oo_inode && (obj->oo_inode->i_state & I_NEW))
2303                         unlock_new_inode(obj->oo_inode);
2304         }
2305
2306         /* restore previous umask value */
2307         current->fs->umask = umask;
2308
2309         return result;
2310 }
2311
2312 /**
2313  * Helper function for osd_object_create()
2314  *
2315  * \retval 0, on success
2316  */
2317 static int __osd_oi_insert(const struct lu_env *env, struct osd_object *obj,
2318                            const struct lu_fid *fid, struct thandle *th)
2319 {
2320         struct osd_thread_info *info = osd_oti_get(env);
2321         struct osd_inode_id    *id   = &info->oti_id;
2322         struct osd_device      *osd  = osd_obj2dev(obj);
2323         struct osd_thandle     *oh;
2324
2325         LASSERT(obj->oo_inode != NULL);
2326
2327         oh = container_of0(th, struct osd_thandle, ot_super);
2328         LASSERT(oh->ot_handle);
2329
2330         osd_id_gen(id, obj->oo_inode->i_ino, obj->oo_inode->i_generation);
2331         return osd_oi_insert(info, osd, fid, id, oh->ot_handle, OI_CHECK_FLD);
2332 }
2333
2334 int osd_fld_lookup(const struct lu_env *env, struct osd_device *osd,
2335                    obd_seq seq, struct lu_seq_range *range)
2336 {
2337         struct seq_server_site  *ss = osd_seq_site(osd);
2338
2339         if (fid_seq_is_idif(seq)) {
2340                 fld_range_set_ost(range);
2341                 range->lsr_index = idif_ost_idx(seq);
2342                 return 0;
2343         }
2344
2345         if (!fid_seq_in_fldb(seq)) {
2346                 fld_range_set_mdt(range);
2347                 if (ss != NULL)
2348                         /* FIXME: If ss is NULL, it suppose not get lsr_index
2349                          * at all */
2350                         range->lsr_index = ss->ss_node_id;
2351                 return 0;
2352         }
2353
2354         LASSERT(ss != NULL);
2355         fld_range_set_any(range);
2356         /* OSD will only do local fld lookup */
2357         return fld_local_lookup(env, ss->ss_server_fld, seq, range);
2358 }
2359
2360 /*
2361  * Concurrency: no external locking is necessary.
2362  */
2363 static int osd_declare_object_create(const struct lu_env *env,
2364                                      struct dt_object *dt,
2365                                      struct lu_attr *attr,
2366                                      struct dt_allocation_hint *hint,
2367                                      struct dt_object_format *dof,
2368                                      struct thandle *handle)
2369 {
2370         struct osd_thandle      *oh;
2371         int                      rc;
2372         ENTRY;
2373
2374         LASSERT(handle != NULL);
2375
2376         oh = container_of0(handle, struct osd_thandle, ot_super);
2377         LASSERT(oh->ot_handle == NULL);
2378
2379         osd_trans_declare_op(env, oh, OSD_OT_CREATE,
2380                              osd_dto_credits_noquota[DTO_OBJECT_CREATE]);
2381         /* Reuse idle OI block may cause additional one OI block
2382          * to be changed. */
2383         osd_trans_declare_op(env, oh, OSD_OT_INSERT,
2384                              osd_dto_credits_noquota[DTO_INDEX_INSERT] + 1);
2385
2386         /* If this is directory, then we expect . and .. to be inserted as
2387          * well. The one directory block always needs to be created for the
2388          * directory, so we could use DTO_WRITE_BASE here (GDT, block bitmap,
2389          * block), there is no danger of needing a tree for the first block.
2390          */
2391         if (attr && S_ISDIR(attr->la_mode)) {
2392                 osd_trans_declare_op(env, oh, OSD_OT_INSERT,
2393                                      osd_dto_credits_noquota[DTO_WRITE_BASE]);
2394                 osd_trans_declare_op(env, oh, OSD_OT_INSERT, 0);
2395         }
2396
2397         if (!attr)
2398                 RETURN(0);
2399
2400         rc = osd_declare_inode_qid(env, attr->la_uid, attr->la_gid, 1, oh,
2401                                    osd_dt_obj(dt), false, NULL, false);
2402         if (rc != 0)
2403                 RETURN(rc);
2404
2405         RETURN(rc);
2406 }
2407
2408 static int osd_object_create(const struct lu_env *env, struct dt_object *dt,
2409                              struct lu_attr *attr,
2410                              struct dt_allocation_hint *hint,
2411                              struct dt_object_format *dof, struct thandle *th)
2412 {
2413         const struct lu_fid     *fid    = lu_object_fid(&dt->do_lu);
2414         struct osd_object       *obj    = osd_dt_obj(dt);
2415         struct osd_thread_info  *info   = osd_oti_get(env);
2416         int result;
2417         ENTRY;
2418
2419         LINVRNT(osd_invariant(obj));
2420         LASSERT(!dt_object_exists(dt));
2421         LASSERT(!dt_object_remote(dt));
2422         LASSERT(osd_write_locked(env, obj));
2423         LASSERT(th != NULL);
2424
2425         if (unlikely(fid_is_acct(fid)))
2426                 /* Quota files can't be created from the kernel any more,
2427                  * 'tune2fs -O quota' will take care of creating them */
2428                 RETURN(-EPERM);
2429
2430         osd_trans_exec_op(env, th, OSD_OT_CREATE);
2431         osd_trans_declare_rb(env, th, OSD_OT_REF_ADD);
2432
2433         result = __osd_object_create(info, obj, attr, hint, dof, th);
2434         if (result == 0)
2435                 result = __osd_oi_insert(env, obj, fid, th);
2436
2437         LASSERT(ergo(result == 0,
2438                      dt_object_exists(dt) && !dt_object_remote(dt)));
2439
2440         LASSERT(osd_invariant(obj));
2441         RETURN(result);
2442 }
2443
2444 /**
2445  * Called to destroy on-disk representation of the object
2446  *
2447  * Concurrency: must be locked
2448  */
2449 static int osd_declare_object_destroy(const struct lu_env *env,
2450                                       struct dt_object *dt,
2451                                       struct thandle *th)
2452 {
2453         struct osd_object  *obj = osd_dt_obj(dt);
2454         struct inode       *inode = obj->oo_inode;
2455         struct osd_thandle *oh;
2456         int                 rc;
2457         ENTRY;
2458
2459         oh = container_of0(th, struct osd_thandle, ot_super);
2460         LASSERT(oh->ot_handle == NULL);
2461         LASSERT(inode);
2462
2463         osd_trans_declare_op(env, oh, OSD_OT_DESTROY,
2464                              osd_dto_credits_noquota[DTO_OBJECT_DELETE]);
2465         /* Recycle idle OI leaf may cause additional three OI blocks
2466          * to be changed. */
2467         osd_trans_declare_op(env, oh, OSD_OT_DELETE,
2468                              osd_dto_credits_noquota[DTO_INDEX_DELETE] + 3);
2469         /* one less inode */
2470         rc = osd_declare_inode_qid(env, i_uid_read(inode), i_gid_read(inode),
2471                                    -1, oh, obj, false, NULL, false);
2472         if (rc)
2473                 RETURN(rc);
2474         /* data to be truncated */
2475         rc = osd_declare_inode_qid(env, i_uid_read(inode), i_gid_read(inode),
2476                                    0, oh, obj, true, NULL, false);
2477         RETURN(rc);
2478 }
2479
2480 static int osd_object_destroy(const struct lu_env *env,
2481                               struct dt_object *dt,
2482                               struct thandle *th)
2483 {
2484         const struct lu_fid    *fid = lu_object_fid(&dt->do_lu);
2485         struct osd_object      *obj = osd_dt_obj(dt);
2486         struct inode           *inode = obj->oo_inode;
2487         struct osd_device      *osd = osd_obj2dev(obj);
2488         struct osd_thandle     *oh;
2489         int                     result;
2490         ENTRY;
2491
2492         oh = container_of0(th, struct osd_thandle, ot_super);
2493         LASSERT(oh->ot_handle);
2494         LASSERT(inode);
2495         LASSERT(!lu_object_is_dying(dt->do_lu.lo_header));
2496
2497         if (unlikely(fid_is_acct(fid)))
2498                 RETURN(-EPERM);
2499
2500         if (S_ISDIR(inode->i_mode)) {
2501                 LASSERT(osd_inode_unlinked(inode) || inode->i_nlink == 1 ||
2502                         inode->i_nlink == 2);
2503                 /* it will check/delete the inode from remote parent,
2504                  * how to optimize it? unlink performance impaction XXX */
2505                 result = osd_delete_from_remote_parent(env, osd, obj, oh);
2506                 if (result != 0 && result != -ENOENT) {
2507                         CERROR("%s: delete inode "DFID": rc = %d\n",
2508                                osd_name(osd), PFID(fid), result);
2509                 }
2510                 spin_lock(&obj->oo_guard);
2511                 clear_nlink(inode);
2512                 spin_unlock(&obj->oo_guard);
2513                 ll_dirty_inode(inode, I_DIRTY_DATASYNC);
2514         }
2515
2516         osd_trans_exec_op(env, th, OSD_OT_DESTROY);
2517
2518         result = osd_oi_delete(osd_oti_get(env), osd, fid, oh->ot_handle,
2519                                OI_CHECK_FLD);
2520
2521         /* XXX: add to ext3 orphan list */
2522         /* rc = ext3_orphan_add(handle_t *handle, struct inode *inode) */
2523
2524         /* not needed in the cache anymore */
2525         set_bit(LU_OBJECT_HEARD_BANSHEE, &dt->do_lu.lo_header->loh_flags);
2526
2527         RETURN(0);
2528 }
2529
2530 /**
2531  * Put the fid into lustre_mdt_attrs, and then place the structure
2532  * inode's ea. This fid should not be altered during the life time
2533  * of the inode.
2534  *
2535  * \retval +ve, on success
2536  * \retval -ve, on error
2537  *
2538  * FIXME: It is good to have/use ldiskfs_xattr_set_handle() here
2539  */
2540 int osd_ea_fid_set(struct osd_thread_info *info, struct inode *inode,
2541                    const struct lu_fid *fid, __u32 compat, __u32 incompat)
2542 {
2543         struct lustre_mdt_attrs *lma = &info->oti_mdt_attrs;
2544         int                      rc;
2545         ENTRY;
2546
2547         if (OBD_FAIL_CHECK(OBD_FAIL_FID_INLMA))
2548                 RETURN(0);
2549
2550         lustre_lma_init(lma, fid, compat, incompat);
2551         lustre_lma_swab(lma);
2552
2553         rc = __osd_xattr_set(info, inode, XATTR_NAME_LMA, lma, sizeof(*lma),
2554                              XATTR_CREATE);
2555         /* LMA may already exist, but we need to check that all the
2556          * desired compat/incompat flags have been added. */
2557         if (unlikely(rc == -EEXIST)) {
2558                 if (compat == 0 && incompat == 0)
2559                         RETURN(0);
2560
2561                 rc = __osd_xattr_get(inode, &info->oti_obj_dentry,
2562                                      XATTR_NAME_LMA, info->oti_mdt_attrs_old,
2563                                      LMA_OLD_SIZE);
2564                 if (rc <= 0)
2565                         RETURN(-EINVAL);
2566
2567                 lustre_lma_swab(lma);
2568                 if (!(~lma->lma_compat & compat) &&
2569                     !(~lma->lma_incompat & incompat))
2570                         RETURN(0);
2571
2572                 lma->lma_compat |= compat;
2573                 lma->lma_incompat |= incompat;
2574                 lustre_lma_swab(lma);
2575                 rc = __osd_xattr_set(info, inode, XATTR_NAME_LMA, lma,
2576                                      sizeof(*lma), XATTR_REPLACE);
2577         }
2578
2579         RETURN(rc);
2580 }
2581
2582 /**
2583  * ldiskfs supports fid in dirent, it is passed in dentry->d_fsdata.
2584  * lustre 1.8 also uses d_fsdata for passing other info to ldiskfs.
2585  * To have compatilibility with 1.8 ldiskfs driver we need to have
2586  * magic number at start of fid data.
2587  * \ldiskfs_dentry_param is used only to pass fid from osd to ldiskfs.
2588  * its inmemory API.
2589  */
2590 void osd_get_ldiskfs_dirent_param(struct ldiskfs_dentry_param *param,
2591                                   const struct lu_fid *fid)
2592 {
2593         if (!fid_is_namespace_visible(fid) ||
2594             OBD_FAIL_CHECK(OBD_FAIL_FID_IGIF)) {
2595                 param->edp_magic = 0;
2596                 return;
2597         }
2598
2599         param->edp_magic = LDISKFS_LUFID_MAGIC;
2600         param->edp_len =  sizeof(struct lu_fid) + 1;
2601         fid_cpu_to_be((struct lu_fid *)param->edp_data, (struct lu_fid *)fid);
2602 }
2603
2604 /**
2605  * Try to read the fid from inode ea into dt_rec.
2606  *
2607  * \param fid object fid.
2608  *
2609  * \retval 0 on success
2610  */
2611 static int osd_ea_fid_get(const struct lu_env *env, struct osd_object *obj,
2612                           __u32 ino, struct lu_fid *fid,
2613                           struct osd_inode_id *id)
2614 {
2615         struct osd_thread_info *info  = osd_oti_get(env);
2616         struct inode           *inode;
2617         ENTRY;
2618
2619         osd_id_gen(id, ino, OSD_OII_NOGEN);
2620         inode = osd_iget_fid(info, osd_obj2dev(obj), id, fid);
2621         if (IS_ERR(inode))
2622                 RETURN(PTR_ERR(inode));
2623
2624         iput(inode);
2625         RETURN(0);
2626 }
2627
2628 static int osd_add_dot_dotdot_internal(struct osd_thread_info *info,
2629                                         struct inode *dir,
2630                                         struct inode *parent_dir,
2631                                         const struct lu_fid *dot_fid,
2632                                         const struct lu_fid *dot_dot_fid,
2633                                         struct osd_thandle *oth)
2634 {
2635         struct ldiskfs_dentry_param *dot_ldp;
2636         struct ldiskfs_dentry_param *dot_dot_ldp;
2637
2638         dot_dot_ldp = (struct ldiskfs_dentry_param *)info->oti_ldp2;
2639         osd_get_ldiskfs_dirent_param(dot_dot_ldp, dot_dot_fid);
2640
2641         dot_ldp = (struct ldiskfs_dentry_param *)info->oti_ldp;
2642         dot_ldp->edp_magic = 0;
2643         return ldiskfs_add_dot_dotdot(oth->ot_handle, parent_dir,
2644                                         dir, dot_ldp, dot_dot_ldp);
2645 }
2646
2647 /**
2648  * Create an local agent inode for remote entry
2649  */
2650 static struct inode *osd_create_local_agent_inode(const struct lu_env *env,
2651                                                   struct osd_device *osd,
2652                                                   struct osd_object *pobj,
2653                                                   const struct lu_fid *fid,
2654                                                   __u32 type,
2655                                                   struct thandle *th)
2656 {
2657         struct osd_thread_info  *info = osd_oti_get(env);
2658         struct inode            *local;
2659         struct osd_thandle      *oh;
2660         int                     rc;
2661         ENTRY;
2662
2663         LASSERT(th);
2664         oh = container_of(th, struct osd_thandle, ot_super);
2665         LASSERT(oh->ot_handle->h_transaction != NULL);
2666
2667         local = ldiskfs_create_inode(oh->ot_handle, pobj->oo_inode, type);
2668         if (IS_ERR(local)) {
2669                 CERROR("%s: create local error %d\n", osd_name(osd),
2670                        (int)PTR_ERR(local));
2671                 RETURN(local);
2672         }
2673
2674         /* Set special LMA flag for local agent inode */
2675         rc = osd_ea_fid_set(info, local, fid, 0, LMAI_AGENT);
2676         if (rc != 0) {
2677                 CERROR("%s: set LMA for "DFID" remote inode failed: rc = %d\n",
2678                        osd_name(osd), PFID(fid), rc);
2679                 RETURN(ERR_PTR(rc));
2680         }
2681
2682         if (!S_ISDIR(type))
2683                 RETURN(local);
2684
2685         rc = osd_add_dot_dotdot_internal(info, local, pobj->oo_inode,
2686                                          lu_object_fid(&pobj->oo_dt.do_lu),
2687                                          fid, oh);
2688         if (rc != 0) {
2689                 CERROR("%s: "DFID" add dot dotdot error: rc = %d\n",
2690                         osd_name(osd), PFID(fid), rc);
2691                 RETURN(ERR_PTR(rc));
2692         }
2693
2694         RETURN(local);
2695 }
2696
2697 /**
2698  * Delete local agent inode for remote entry
2699  */
2700 static int osd_delete_local_agent_inode(const struct lu_env *env,
2701                                         struct osd_device *osd,
2702                                         const struct lu_fid *fid,
2703                                         __u32 ino, struct osd_thandle *oh)
2704 {
2705         struct osd_thread_info  *oti = osd_oti_get(env);
2706         struct osd_inode_id     *id = &oti->oti_id;
2707         struct inode            *inode;
2708         ENTRY;
2709
2710         id->oii_ino = le32_to_cpu(ino);
2711         id->oii_gen = OSD_OII_NOGEN;
2712         inode = osd_iget(oti, osd, id);
2713         if (IS_ERR(inode)) {
2714                 CERROR("%s: iget error "DFID" id %u:%u\n", osd_name(osd),
2715                        PFID(fid), id->oii_ino, id->oii_gen);
2716                 RETURN(PTR_ERR(inode));
2717         }
2718
2719         clear_nlink(inode);
2720         mark_inode_dirty(inode);
2721         CDEBUG(D_INODE, "%s: delete remote inode "DFID" %lu\n",
2722                 osd_name(osd), PFID(fid), inode->i_ino);
2723         iput(inode);
2724         RETURN(0);
2725 }
2726
2727 /**
2728  * OSD layer object create function for interoperability mode (b11826).
2729  * This is mostly similar to osd_object_create(). Only difference being, fid is
2730  * inserted into inode ea here.
2731  *
2732  * \retval   0, on success
2733  * \retval -ve, on error
2734  */
2735 static int osd_object_ea_create(const struct lu_env *env, struct dt_object *dt,
2736                                 struct lu_attr *attr,
2737                                 struct dt_allocation_hint *hint,
2738                                 struct dt_object_format *dof,
2739                                 struct thandle *th)
2740 {
2741         const struct lu_fid     *fid    = lu_object_fid(&dt->do_lu);
2742         struct osd_object       *obj    = osd_dt_obj(dt);
2743         struct osd_thread_info  *info   = osd_oti_get(env);
2744         int                      result;
2745
2746         ENTRY;
2747
2748         LASSERT(osd_invariant(obj));
2749         LASSERT(!dt_object_exists(dt));
2750         LASSERT(!dt_object_remote(dt));
2751         LASSERT(osd_write_locked(env, obj));
2752         LASSERT(th != NULL);
2753
2754         if (unlikely(fid_is_acct(fid)))
2755                 /* Quota files can't be created from the kernel any more,
2756                  * 'tune2fs -O quota' will take care of creating them */
2757                 RETURN(-EPERM);
2758
2759         osd_trans_exec_op(env, th, OSD_OT_CREATE);
2760         osd_trans_declare_rb(env, th, OSD_OT_REF_ADD);
2761
2762         result = __osd_object_create(info, obj, attr, hint, dof, th);
2763         if (result == 0)
2764                 result = osd_ea_fid_set(info, obj->oo_inode, fid,
2765                                 fid_is_on_ost(info, osd_obj2dev(obj),
2766                                               fid, OI_CHECK_FLD) ?
2767                                 LMAC_FID_ON_OST : 0, 0);
2768
2769         if (result == 0)
2770                 result = __osd_oi_insert(env, obj, fid, th);
2771
2772         LASSERT(ergo(result == 0,
2773                      dt_object_exists(dt) && !dt_object_remote(dt)));
2774         LINVRNT(osd_invariant(obj));
2775         RETURN(result);
2776 }
2777
2778 static int osd_declare_object_ref_add(const struct lu_env *env,
2779                                       struct dt_object *dt,
2780                                       struct thandle *handle)
2781 {
2782         struct osd_thandle       *oh;
2783
2784         /* it's possible that object doesn't exist yet */
2785         LASSERT(handle != NULL);
2786
2787         oh = container_of0(handle, struct osd_thandle, ot_super);
2788         LASSERT(oh->ot_handle == NULL);
2789
2790         osd_trans_declare_op(env, oh, OSD_OT_REF_ADD,
2791                              osd_dto_credits_noquota[DTO_ATTR_SET_BASE]);
2792
2793         return 0;
2794 }
2795
2796 /*
2797  * Concurrency: @dt is write locked.
2798  */
2799 static int osd_object_ref_add(const struct lu_env *env,
2800                               struct dt_object *dt, struct thandle *th)
2801 {
2802         struct osd_object  *obj = osd_dt_obj(dt);
2803         struct inode       *inode = obj->oo_inode;
2804         struct osd_thandle *oh;
2805         int                 rc = 0;
2806
2807         LINVRNT(osd_invariant(obj));
2808         LASSERT(dt_object_exists(dt));
2809         LASSERT(!dt_object_remote(dt));
2810         LASSERT(osd_write_locked(env, obj));
2811         LASSERT(th != NULL);
2812
2813         oh = container_of0(th, struct osd_thandle, ot_super);
2814         LASSERT(oh->ot_handle != NULL);
2815
2816         osd_trans_exec_op(env, th, OSD_OT_REF_ADD);
2817
2818         CDEBUG(D_INODE, DFID" increase nlink %d\n",
2819                PFID(lu_object_fid(&dt->do_lu)), inode->i_nlink);
2820         /*
2821          * The DIR_NLINK feature allows directories to exceed LDISKFS_LINK_MAX
2822          * (65000) subdirectories by storing "1" in i_nlink if the link count
2823          * would otherwise overflow. Directory tranversal tools understand
2824          * that (st_nlink == 1) indicates that the filesystem dose not track
2825          * hard links count on the directory, and will not abort subdirectory
2826          * scanning early once (st_nlink - 2) subdirs have been found.
2827          *
2828          * This also has to properly handle the case of inodes with nlink == 0
2829          * in case they are being linked into the PENDING directory
2830          */
2831         spin_lock(&obj->oo_guard);
2832         if (unlikely(inode->i_nlink == 0))
2833                 /* inc_nlink from 0 may cause WARN_ON */
2834                 set_nlink(inode, 1);
2835         else {
2836                 ldiskfs_inc_count(oh->ot_handle, inode);
2837                 if (!S_ISDIR(inode->i_mode))
2838                         LASSERT(inode->i_nlink <= LDISKFS_LINK_MAX);
2839         }
2840         spin_unlock(&obj->oo_guard);
2841
2842         ll_dirty_inode(inode, I_DIRTY_DATASYNC);
2843         LINVRNT(osd_invariant(obj));
2844
2845         return rc;
2846 }
2847
2848 static int osd_declare_object_ref_del(const struct lu_env *env,
2849                                       struct dt_object *dt,
2850                                       struct thandle *handle)
2851 {
2852         struct osd_thandle *oh;
2853
2854         LASSERT(dt_object_exists(dt));
2855         LASSERT(!dt_object_remote(dt));
2856         LASSERT(handle != NULL);
2857
2858         oh = container_of0(handle, struct osd_thandle, ot_super);
2859         LASSERT(oh->ot_handle == NULL);
2860
2861         osd_trans_declare_op(env, oh, OSD_OT_REF_DEL,
2862                              osd_dto_credits_noquota[DTO_ATTR_SET_BASE]);
2863
2864         return 0;
2865 }
2866
2867 /*
2868  * Concurrency: @dt is write locked.
2869  */
2870 static int osd_object_ref_del(const struct lu_env *env, struct dt_object *dt,
2871                               struct thandle *th)
2872 {
2873         struct osd_object       *obj = osd_dt_obj(dt);
2874         struct inode            *inode = obj->oo_inode;
2875         struct osd_device       *osd = osd_dev(dt->do_lu.lo_dev);
2876         struct osd_thandle      *oh;
2877
2878         LINVRNT(osd_invariant(obj));
2879         LASSERT(dt_object_exists(dt));
2880         LASSERT(!dt_object_remote(dt));
2881         LASSERT(osd_write_locked(env, obj));
2882         LASSERT(th != NULL);
2883
2884         oh = container_of0(th, struct osd_thandle, ot_super);
2885         LASSERT(oh->ot_handle != NULL);
2886
2887         osd_trans_exec_op(env, th, OSD_OT_REF_DEL);
2888
2889         spin_lock(&obj->oo_guard);
2890         /* That can be result of upgrade from old Lustre version and
2891          * applied only to local files.  Just skip this ref_del call.
2892          * ext4_unlink() only treats this as a warning, don't LASSERT here.*/
2893         if (inode->i_nlink == 0) {
2894                 CDEBUG_LIMIT(fid_is_norm(lu_object_fid(&dt->do_lu)) ?
2895                              D_ERROR : D_INODE, "%s: nlink == 0 on "DFID
2896                              ", maybe an upgraded file? (LU-3915)\n",
2897                              osd_name(osd), PFID(lu_object_fid(&dt->do_lu)));
2898                 spin_unlock(&obj->oo_guard);
2899                 return 0;
2900         }
2901
2902         CDEBUG(D_INODE, DFID" decrease nlink %d\n",
2903                PFID(lu_object_fid(&dt->do_lu)), inode->i_nlink);
2904
2905         ldiskfs_dec_count(oh->ot_handle, inode);
2906         spin_unlock(&obj->oo_guard);
2907
2908         ll_dirty_inode(inode, I_DIRTY_DATASYNC);
2909         LINVRNT(osd_invariant(obj));
2910
2911         return 0;
2912 }
2913
2914 /*
2915  * Get the 64-bit version for an inode.
2916  */
2917 static int osd_object_version_get(const struct lu_env *env,
2918                                   struct dt_object *dt, dt_obj_version_t *ver)
2919 {
2920         struct inode *inode = osd_dt_obj(dt)->oo_inode;
2921
2922         CDEBUG(D_INODE, "Get version "LPX64" for inode %lu\n",
2923                LDISKFS_I(inode)->i_fs_version, inode->i_ino);
2924         *ver = LDISKFS_I(inode)->i_fs_version;
2925         return 0;
2926 }
2927
2928 /*
2929  * Concurrency: @dt is read locked.
2930  */
2931 static int osd_xattr_get(const struct lu_env *env, struct dt_object *dt,
2932                          struct lu_buf *buf, const char *name,
2933                          struct lustre_capa *capa)
2934 {
2935         struct osd_object      *obj    = osd_dt_obj(dt);
2936         struct inode           *inode  = obj->oo_inode;
2937         struct osd_thread_info *info   = osd_oti_get(env);
2938         struct dentry          *dentry = &info->oti_obj_dentry;
2939
2940         /* version get is not real XATTR but uses xattr API */
2941         if (strcmp(name, XATTR_NAME_VERSION) == 0) {
2942                 /* for version we are just using xattr API but change inode
2943                  * field instead */
2944                 if (buf->lb_len == 0)
2945                         return sizeof(dt_obj_version_t);
2946
2947                 if (buf->lb_len < sizeof(dt_obj_version_t))
2948                         return -ERANGE;
2949
2950                 osd_object_version_get(env, dt, buf->lb_buf);
2951
2952                 return sizeof(dt_obj_version_t);
2953         }
2954
2955         LASSERT(dt_object_exists(dt));
2956         LASSERT(!dt_object_remote(dt));
2957         LASSERT(inode->i_op != NULL);
2958         LASSERT(inode->i_op->getxattr != NULL);
2959
2960         if (osd_object_auth(env, dt, capa, CAPA_OPC_META_READ))
2961                 return -EACCES;
2962
2963         return __osd_xattr_get(inode, dentry, name, buf->lb_buf, buf->lb_len);
2964 }
2965
2966
2967 static int osd_declare_xattr_set(const struct lu_env *env,
2968                                  struct dt_object *dt,
2969                                  const struct lu_buf *buf, const char *name,
2970                                  int fl, struct thandle *handle)
2971 {
2972         struct osd_thandle *oh;
2973         int credits;
2974         struct super_block *sb = osd_sb(osd_dev(dt->do_lu.lo_dev));
2975
2976         LASSERT(handle != NULL);
2977
2978         oh = container_of0(handle, struct osd_thandle, ot_super);
2979         LASSERT(oh->ot_handle == NULL);
2980
2981         /* optimistic optimization: LMA is set first and usually fit inode */
2982         if (strcmp(name, XATTR_NAME_LMA) == 0) {
2983                 if (dt_object_exists(dt))
2984                         credits = 0;
2985                 else
2986                         credits = 1;
2987         } else if (strcmp(name, XATTR_NAME_VERSION) == 0) {
2988                 credits = 1;
2989         } else {
2990                 credits = osd_dto_credits_noquota[DTO_XATTR_SET];
2991                 if (buf && buf->lb_len > sb->s_blocksize) {
2992                         credits *= (buf->lb_len + sb->s_blocksize - 1) >>
2993                                         sb->s_blocksize_bits;
2994                 }
2995                 /*
2996                  * xattr set may involve inode quota change, reserve credits for
2997                  * dquot_initialize()
2998                  */
2999                 oh->ot_credits += LDISKFS_MAXQUOTAS_INIT_BLOCKS(sb);
3000         }
3001
3002         osd_trans_declare_op(env, oh, OSD_OT_XATTR_SET, credits);
3003
3004         return 0;
3005 }
3006
3007 /*
3008  * Set the 64-bit version for object
3009  */
3010 static void osd_object_version_set(const struct lu_env *env,
3011                                    struct dt_object *dt,
3012                                    dt_obj_version_t *new_version)
3013 {
3014         struct inode *inode = osd_dt_obj(dt)->oo_inode;
3015
3016         CDEBUG(D_INODE, "Set version "LPX64" (old "LPX64") for inode %lu\n",
3017                *new_version, LDISKFS_I(inode)->i_fs_version, inode->i_ino);
3018
3019         LDISKFS_I(inode)->i_fs_version = *new_version;
3020         /** Version is set after all inode operations are finished,
3021          *  so we should mark it dirty here */
3022         ll_dirty_inode(inode, I_DIRTY_DATASYNC);
3023 }
3024
3025 /*
3026  * Concurrency: @dt is write locked.
3027  */
3028 static int osd_xattr_set(const struct lu_env *env, struct dt_object *dt,
3029                          const struct lu_buf *buf, const char *name, int fl,
3030                          struct thandle *handle, struct lustre_capa *capa)
3031 {
3032         struct osd_object      *obj      = osd_dt_obj(dt);
3033         struct inode           *inode    = obj->oo_inode;
3034         struct osd_thread_info *info     = osd_oti_get(env);
3035         int                     fs_flags = 0;
3036         ENTRY;
3037
3038         LASSERT(handle != NULL);
3039
3040         /* version set is not real XATTR */
3041         if (strcmp(name, XATTR_NAME_VERSION) == 0) {
3042                 /* for version we are just using xattr API but change inode
3043                  * field instead */
3044                 LASSERT(buf->lb_len == sizeof(dt_obj_version_t));
3045                 osd_object_version_set(env, dt, buf->lb_buf);
3046                 return sizeof(dt_obj_version_t);
3047         }
3048
3049         if (osd_object_auth(env, dt, capa, CAPA_OPC_META_WRITE))
3050                 return -EACCES;
3051
3052         CDEBUG(D_INODE, DFID" set xattr '%s' with size %zu\n",
3053                PFID(lu_object_fid(&dt->do_lu)), name, buf->lb_len);
3054
3055         osd_trans_exec_op(env, handle, OSD_OT_XATTR_SET);
3056         if (fl & LU_XATTR_REPLACE)
3057                 fs_flags |= XATTR_REPLACE;
3058
3059         if (fl & LU_XATTR_CREATE)
3060                 fs_flags |= XATTR_CREATE;
3061
3062         if (strcmp(name, XATTR_NAME_LMV) == 0) {
3063                 struct lustre_mdt_attrs *lma = &info->oti_mdt_attrs;
3064                 int                      rc;
3065
3066                 rc = osd_get_lma(info, inode, &info->oti_obj_dentry, lma);
3067                 if (rc != 0)
3068                         RETURN(rc);
3069
3070                 lma->lma_incompat |= LMAI_STRIPED;
3071                 lustre_lma_swab(lma);
3072                 rc = __osd_xattr_set(info, inode, XATTR_NAME_LMA, lma,
3073                                      sizeof(*lma), XATTR_REPLACE);
3074                 if (rc != 0)
3075                         RETURN(rc);
3076         }
3077
3078         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LINKEA_OVERFLOW) &&
3079             strcmp(name, XATTR_NAME_LINK) == 0)
3080                 return -ENOSPC;
3081
3082         return __osd_xattr_set(info, inode, name, buf->lb_buf, buf->lb_len,
3083                                fs_flags);
3084 }
3085
3086 /*
3087  * Concurrency: @dt is read locked.
3088  */
3089 static int osd_xattr_list(const struct lu_env *env, struct dt_object *dt,
3090                           struct lu_buf *buf, struct lustre_capa *capa)
3091 {
3092         struct osd_object      *obj    = osd_dt_obj(dt);
3093         struct inode           *inode  = obj->oo_inode;
3094         struct osd_thread_info *info   = osd_oti_get(env);
3095         struct dentry          *dentry = &info->oti_obj_dentry;
3096
3097         LASSERT(dt_object_exists(dt));
3098         LASSERT(!dt_object_remote(dt));
3099         LASSERT(inode->i_op != NULL);
3100         LASSERT(inode->i_op->listxattr != NULL);
3101
3102         if (osd_object_auth(env, dt, capa, CAPA_OPC_META_READ))
3103                 return -EACCES;
3104
3105         dentry->d_inode = inode;
3106         dentry->d_sb = inode->i_sb;
3107         return inode->i_op->listxattr(dentry, buf->lb_buf, buf->lb_len);
3108 }
3109
3110 static int osd_declare_xattr_del(const struct lu_env *env,
3111                                  struct dt_object *dt, const char *name,
3112                                  struct thandle *handle)
3113 {
3114         struct osd_thandle *oh;
3115         struct super_block *sb = osd_sb(osd_dev(dt->do_lu.lo_dev));
3116
3117         LASSERT(dt_object_exists(dt));
3118         LASSERT(!dt_object_remote(dt));
3119         LASSERT(handle != NULL);
3120
3121         oh = container_of0(handle, struct osd_thandle, ot_super);
3122         LASSERT(oh->ot_handle == NULL);
3123
3124         osd_trans_declare_op(env, oh, OSD_OT_XATTR_SET,
3125                              osd_dto_credits_noquota[DTO_XATTR_SET]);
3126         /*
3127          * xattr del may involve inode quota change, reserve credits for
3128          * dquot_initialize()
3129          */
3130         oh->ot_credits += LDISKFS_MAXQUOTAS_INIT_BLOCKS(sb);
3131
3132         return 0;
3133 }
3134
3135 /*
3136  * Concurrency: @dt is write locked.
3137  */
3138 static int osd_xattr_del(const struct lu_env *env, struct dt_object *dt,
3139                          const char *name, struct thandle *handle,
3140                          struct lustre_capa *capa)
3141 {
3142         struct osd_object      *obj    = osd_dt_obj(dt);
3143         struct inode           *inode  = obj->oo_inode;
3144         struct osd_thread_info *info   = osd_oti_get(env);
3145         struct dentry          *dentry = &info->oti_obj_dentry;
3146         int                     rc;
3147
3148         LASSERT(dt_object_exists(dt));
3149         LASSERT(!dt_object_remote(dt));
3150         LASSERT(inode->i_op != NULL);
3151         LASSERT(inode->i_op->removexattr != NULL);
3152         LASSERT(handle != NULL);
3153
3154         if (osd_object_auth(env, dt, capa, CAPA_OPC_META_WRITE))
3155                 return -EACCES;
3156
3157         osd_trans_exec_op(env, handle, OSD_OT_XATTR_SET);
3158
3159         ll_vfs_dq_init(inode);
3160         dentry->d_inode = inode;
3161         dentry->d_sb = inode->i_sb;
3162         rc = inode->i_op->removexattr(dentry, name);
3163         return rc;
3164 }
3165
3166 static struct obd_capa *osd_capa_get(const struct lu_env *env,
3167                                      struct dt_object *dt,
3168                                      struct lustre_capa *old, __u64 opc)
3169 {
3170         struct osd_thread_info *info = osd_oti_get(env);
3171         const struct lu_fid *fid = lu_object_fid(&dt->do_lu);
3172         struct osd_object *obj = osd_dt_obj(dt);
3173         struct osd_device *osd = osd_obj2dev(obj);
3174         struct lustre_capa_key *key = &info->oti_capa_key;
3175         struct lustre_capa *capa = &info->oti_capa;
3176         struct obd_capa *oc;
3177         struct lu_capainfo *lci;
3178         int rc;
3179         ENTRY;
3180
3181         if (!osd->od_fl_capa)
3182                 RETURN(ERR_PTR(-ENOENT));
3183
3184         LASSERT(dt_object_exists(dt));
3185         LASSERT(!dt_object_remote(dt));
3186         LINVRNT(osd_invariant(obj));
3187
3188         /* renewal sanity check */
3189         if (old && osd_object_auth(env, dt, old, opc))
3190                 RETURN(ERR_PTR(-EACCES));
3191
3192         lci = lu_capainfo_get(env);
3193         if (unlikely(lci == NULL))
3194                 RETURN(ERR_PTR(-ENOENT));
3195
3196         switch (lci->lci_auth) {
3197         case LC_ID_NONE:
3198                 RETURN(NULL);
3199         case LC_ID_PLAIN:
3200                 capa->lc_uid = i_uid_read(obj->oo_inode);
3201                 capa->lc_gid = i_gid_read(obj->oo_inode);
3202                 capa->lc_flags = LC_ID_PLAIN;
3203                 break;
3204         case LC_ID_CONVERT: {
3205                 __u32 d[4], s[4];
3206
3207                 s[0] = i_uid_read(obj->oo_inode);
3208                 cfs_get_random_bytes(&(s[1]), sizeof(__u32));
3209                 s[2] = i_uid_read(obj->oo_inode);
3210                 cfs_get_random_bytes(&(s[3]), sizeof(__u32));
3211                 rc = capa_encrypt_id(d, s, key->lk_key, CAPA_HMAC_KEY_MAX_LEN);
3212                 if (unlikely(rc))
3213                         RETURN(ERR_PTR(rc));
3214
3215                 capa->lc_uid   = ((__u64)d[1] << 32) | d[0];
3216                 capa->lc_gid   = ((__u64)d[3] << 32) | d[2];
3217                 capa->lc_flags = LC_ID_CONVERT;
3218                 break;
3219         }
3220         default:
3221                 RETURN(ERR_PTR(-EINVAL));
3222         }
3223
3224         capa->lc_fid = *fid;
3225         capa->lc_opc = opc;
3226         capa->lc_flags |= osd->od_capa_alg << 24;
3227         capa->lc_timeout = osd->od_capa_timeout;
3228         capa->lc_expiry = 0;
3229
3230         oc = capa_lookup(osd->od_capa_hash, capa, 1);
3231         if (oc) {
3232                 LASSERT(!capa_is_expired(oc));
3233                 RETURN(oc);
3234         }
3235
3236         spin_lock(&capa_lock);
3237         *key = osd->od_capa_keys[1];
3238         spin_unlock(&capa_lock);
3239
3240         capa->lc_keyid = key->lk_keyid;
3241         capa->lc_expiry = cfs_time_current_sec() + osd->od_capa_timeout;
3242
3243         rc = capa_hmac(capa->lc_hmac, capa, key->lk_key);
3244         if (rc) {
3245                 DEBUG_CAPA(D_ERROR, capa, "HMAC failed: %d for", rc);
3246                 RETURN(ERR_PTR(rc));
3247         }
3248
3249         oc = capa_add(osd->od_capa_hash, capa);
3250         RETURN(oc);
3251 }
3252
3253 static int osd_object_sync(const struct lu_env *env, struct dt_object *dt,
3254                            __u64 start, __u64 end)
3255 {
3256         struct osd_object       *obj    = osd_dt_obj(dt);
3257         struct inode            *inode  = obj->oo_inode;
3258         struct osd_thread_info  *info   = osd_oti_get(env);
3259         struct dentry           *dentry = &info->oti_obj_dentry;
3260         struct file             *file   = &info->oti_file;
3261         int                     rc;
3262
3263         ENTRY;
3264
3265         dentry->d_inode = inode;
3266         dentry->d_sb = inode->i_sb;
3267         file->f_dentry = dentry;
3268         file->f_mapping = inode->i_mapping;
3269         file->f_op = inode->i_fop;
3270         set_file_inode(file, inode);
3271
3272         rc = ll_vfs_fsync_range(file, start, end, 0);
3273
3274         RETURN(rc);
3275 }
3276
3277 static int osd_data_get(const struct lu_env *env, struct dt_object *dt,
3278                         void **data)
3279 {
3280         struct osd_object *obj = osd_dt_obj(dt);
3281         ENTRY;
3282
3283         *data = (void *)obj->oo_inode;
3284         RETURN(0);
3285 }
3286
3287 /*
3288  * Index operations.
3289  */
3290
3291 static int osd_iam_index_probe(const struct lu_env *env, struct osd_object *o,
3292                            const struct dt_index_features *feat)
3293 {
3294         struct iam_descr *descr;
3295
3296         if (osd_object_is_root(o))
3297                 return feat == &dt_directory_features;
3298
3299         LASSERT(o->oo_dir != NULL);
3300
3301         descr = o->oo_dir->od_container.ic_descr;
3302         if (feat == &dt_directory_features) {
3303                 if (descr->id_rec_size == sizeof(struct osd_fid_pack))
3304                         return 1;
3305                 else
3306                         return 0;
3307         } else {
3308                 return
3309                         feat->dif_keysize_min <= descr->id_key_size &&
3310                         descr->id_key_size <= feat->dif_keysize_max &&
3311                         feat->dif_recsize_min <= descr->id_rec_size &&
3312                         descr->id_rec_size <= feat->dif_recsize_max &&
3313                         !(feat->dif_flags & (DT_IND_VARKEY |
3314                                              DT_IND_VARREC | DT_IND_NONUNQ)) &&
3315                         ergo(feat->dif_flags & DT_IND_UPDATE,
3316                              1 /* XXX check that object (and file system) is
3317                                 * writable */);
3318         }
3319 }
3320
3321 static int osd_iam_container_init(const struct lu_env *env,
3322                                   struct osd_object *obj,
3323                                   struct osd_directory *dir)
3324 {
3325         struct iam_container *bag = &dir->od_container;
3326         int result;
3327
3328         result = iam_container_init(bag, &dir->od_descr, obj->oo_inode);
3329         if (result != 0)
3330                 return result;
3331
3332         result = iam_container_setup(bag);
3333         if (result == 0)
3334                 obj->oo_dt.do_index_ops = &osd_index_iam_ops;
3335         else
3336                 iam_container_fini(bag);
3337
3338         return result;
3339 }
3340
3341
3342 /*
3343  * Concurrency: no external locking is necessary.
3344  */
3345 static int osd_index_try(const struct lu_env *env, struct dt_object *dt,
3346                          const struct dt_index_features *feat)
3347 {
3348         int                      result;
3349         int                      skip_iam = 0;
3350         struct osd_object       *obj = osd_dt_obj(dt);
3351
3352         LINVRNT(osd_invariant(obj));
3353
3354         if (osd_object_is_root(obj)) {
3355                 dt->do_index_ops = &osd_index_ea_ops;
3356                 result = 0;
3357         } else if (feat == &dt_directory_features) {
3358                 dt->do_index_ops = &osd_index_ea_ops;
3359                 if (obj->oo_inode != NULL && S_ISDIR(obj->oo_inode->i_mode))
3360                         result = 0;
3361                 else
3362                         result = -ENOTDIR;
3363                 skip_iam = 1;
3364         } else if (unlikely(feat == &dt_otable_features)) {
3365                 dt->do_index_ops = &osd_otable_ops;
3366                 return 0;
3367         } else if (unlikely(feat == &dt_acct_features)) {
3368                 dt->do_index_ops = &osd_acct_index_ops;
3369                 result = 0;
3370                 skip_iam = 1;
3371         } else if (!osd_has_index(obj)) {
3372                 struct osd_directory *dir;
3373
3374                 OBD_ALLOC_PTR(dir);
3375                 if (dir != NULL) {
3376
3377                         spin_lock(&obj->oo_guard);
3378                         if (obj->oo_dir == NULL)
3379                                 obj->oo_dir = dir;
3380                         else
3381                                 /*
3382                                  * Concurrent thread allocated container data.
3383                                  */
3384                                 OBD_FREE_PTR(dir);
3385                         spin_unlock(&obj->oo_guard);
3386                         /*
3387                          * Now, that we have container data, serialize its
3388                          * initialization.
3389                          */
3390                         down_write(&obj->oo_ext_idx_sem);
3391                         /*
3392                          * recheck under lock.
3393                          */
3394                         if (!osd_has_index(obj))
3395                                 result = osd_iam_container_init(env, obj,
3396                                                                 obj->oo_dir);
3397                         else
3398                                 result = 0;
3399                         up_write(&obj->oo_ext_idx_sem);
3400                 } else {
3401                         result = -ENOMEM;
3402                 }
3403         } else {
3404                 result = 0;
3405         }
3406
3407         if (result == 0 && skip_iam == 0) {
3408                 if (!osd_iam_index_probe(env, obj, feat))
3409                         result = -ENOTDIR;
3410         }
3411         LINVRNT(osd_invariant(obj));
3412
3413         if (result == 0 && is_quota_glb_feat(feat) &&
3414             fid_seq(lu_object_fid(&dt->do_lu)) == FID_SEQ_QUOTA_GLB)
3415                 result = osd_quota_migration(env, dt, feat);
3416
3417         return result;
3418 }
3419
3420 static int osd_otable_it_attr_get(const struct lu_env *env,
3421                                  struct dt_object *dt,
3422                                  struct lu_attr *attr,
3423                                  struct lustre_capa *capa)
3424 {
3425         attr->la_valid = 0;
3426         return 0;
3427 }
3428
3429 static const struct dt_object_operations osd_obj_ops = {
3430         .do_read_lock         = osd_object_read_lock,
3431         .do_write_lock        = osd_object_write_lock,
3432         .do_read_unlock       = osd_object_read_unlock,
3433         .do_write_unlock      = osd_object_write_unlock,
3434         .do_write_locked      = osd_object_write_locked,
3435         .do_attr_get          = osd_attr_get,
3436         .do_declare_attr_set  = osd_declare_attr_set,
3437         .do_attr_set          = osd_attr_set,
3438         .do_ah_init           = osd_ah_init,
3439         .do_declare_create    = osd_declare_object_create,
3440         .do_create            = osd_object_create,
3441         .do_declare_destroy   = osd_declare_object_destroy,
3442         .do_destroy           = osd_object_destroy,
3443         .do_index_try         = osd_index_try,
3444         .do_declare_ref_add   = osd_declare_object_ref_add,
3445         .do_ref_add           = osd_object_ref_add,
3446         .do_declare_ref_del   = osd_declare_object_ref_del,
3447         .do_ref_del           = osd_object_ref_del,
3448         .do_xattr_get         = osd_xattr_get,
3449         .do_declare_xattr_set = osd_declare_xattr_set,
3450         .do_xattr_set         = osd_xattr_set,
3451         .do_declare_xattr_del = osd_declare_xattr_del,
3452         .do_xattr_del         = osd_xattr_del,
3453         .do_xattr_list        = osd_xattr_list,
3454         .do_capa_get          = osd_capa_get,
3455         .do_object_sync       = osd_object_sync,
3456         .do_data_get          = osd_data_get,
3457 };
3458
3459 /**
3460  * dt_object_operations for interoperability mode
3461  * (i.e. to run 2.0 mds on 1.8 disk) (b11826)
3462  */
3463 static const struct dt_object_operations osd_obj_ea_ops = {
3464         .do_read_lock         = osd_object_read_lock,
3465         .do_write_lock        = osd_object_write_lock,
3466         .do_read_unlock       = osd_object_read_unlock,
3467         .do_write_unlock      = osd_object_write_unlock,
3468         .do_write_locked      = osd_object_write_locked,
3469         .do_attr_get          = osd_attr_get,
3470         .do_declare_attr_set  = osd_declare_attr_set,
3471         .do_attr_set          = osd_attr_set,
3472         .do_ah_init           = osd_ah_init,
3473         .do_declare_create    = osd_declare_object_create,
3474         .do_create            = osd_object_ea_create,
3475         .do_declare_destroy   = osd_declare_object_destroy,
3476         .do_destroy           = osd_object_destroy,
3477         .do_index_try         = osd_index_try,
3478         .do_declare_ref_add   = osd_declare_object_ref_add,
3479         .do_ref_add           = osd_object_ref_add,
3480         .do_declare_ref_del   = osd_declare_object_ref_del,
3481         .do_ref_del           = osd_object_ref_del,
3482         .do_xattr_get         = osd_xattr_get,
3483         .do_declare_xattr_set = osd_declare_xattr_set,
3484         .do_xattr_set         = osd_xattr_set,
3485         .do_declare_xattr_del = osd_declare_xattr_del,
3486         .do_xattr_del         = osd_xattr_del,
3487         .do_xattr_list        = osd_xattr_list,
3488         .do_capa_get          = osd_capa_get,
3489         .do_object_sync       = osd_object_sync,
3490         .do_data_get          = osd_data_get,
3491 };
3492
3493 static const struct dt_object_operations osd_obj_otable_it_ops = {
3494         .do_attr_get    = osd_otable_it_attr_get,
3495         .do_index_try   = osd_index_try,
3496 };
3497
3498 static int osd_index_declare_iam_delete(const struct lu_env *env,
3499                                         struct dt_object *dt,
3500                                         const struct dt_key *key,
3501                                         struct thandle *handle)
3502 {
3503         struct osd_thandle    *oh;
3504
3505         oh = container_of0(handle, struct osd_thandle, ot_super);
3506         LASSERT(oh->ot_handle == NULL);
3507
3508         osd_trans_declare_op(env, oh, OSD_OT_DELETE,
3509                              osd_dto_credits_noquota[DTO_INDEX_DELETE]);
3510
3511         return 0;
3512 }
3513
3514 /**
3515  *      delete a (key, value) pair from index \a dt specified by \a key
3516  *
3517  *      \param  dt      osd index object
3518  *      \param  key     key for index
3519  *      \param  rec     record reference
3520  *      \param  handle  transaction handler
3521  *
3522  *      \retval  0  success
3523  *      \retval -ve   failure
3524  */
3525 static int osd_index_iam_delete(const struct lu_env *env, struct dt_object *dt,
3526                                 const struct dt_key *key,
3527                                 struct thandle *handle,
3528                                 struct lustre_capa *capa)
3529 {
3530         struct osd_thread_info *oti = osd_oti_get(env);
3531         struct osd_object      *obj = osd_dt_obj(dt);
3532         struct osd_thandle     *oh;
3533         struct iam_path_descr  *ipd;
3534         struct iam_container   *bag = &obj->oo_dir->od_container;
3535         int                     rc;
3536         ENTRY;
3537
3538         LINVRNT(osd_invariant(obj));
3539         LASSERT(dt_object_exists(dt));
3540         LASSERT(!dt_object_remote(dt));
3541         LASSERT(bag->ic_object == obj->oo_inode);
3542         LASSERT(handle != NULL);
3543
3544         if (osd_object_auth(env, dt, capa, CAPA_OPC_INDEX_DELETE))
3545                 RETURN(-EACCES);
3546
3547         osd_trans_exec_op(env, handle, OSD_OT_DELETE);
3548
3549         ipd = osd_idx_ipd_get(env, bag);
3550         if (unlikely(ipd == NULL))
3551                 RETURN(-ENOMEM);
3552
3553         oh = container_of0(handle, struct osd_thandle, ot_super);
3554         LASSERT(oh->ot_handle != NULL);
3555         LASSERT(oh->ot_handle->h_transaction != NULL);
3556
3557         if (fid_is_quota(lu_object_fid(&dt->do_lu))) {
3558                 /* swab quota uid/gid provided by caller */
3559                 oti->oti_quota_id = cpu_to_le64(*((__u64 *)key));
3560                 key = (const struct dt_key *)&oti->oti_quota_id;
3561         }
3562
3563         rc = iam_delete(oh->ot_handle, bag, (const struct iam_key *)key, ipd);
3564         osd_ipd_put(env, bag, ipd);
3565         LINVRNT(osd_invariant(obj));
3566         RETURN(rc);
3567 }
3568
3569 static int osd_index_declare_ea_delete(const struct lu_env *env,
3570                                        struct dt_object *dt,
3571                                        const struct dt_key *key,
3572                                        struct thandle *handle)
3573 {
3574         struct osd_thandle *oh;
3575         struct inode       *inode;
3576         int                 rc;
3577         ENTRY;
3578
3579         LASSERT(dt_object_exists(dt));
3580         LASSERT(!dt_object_remote(dt));
3581         LASSERT(handle != NULL);
3582
3583         oh = container_of0(handle, struct osd_thandle, ot_super);
3584         LASSERT(oh->ot_handle == NULL);
3585
3586         osd_trans_declare_op(env, oh, OSD_OT_DELETE,
3587                              osd_dto_credits_noquota[DTO_INDEX_DELETE]);
3588
3589         inode = osd_dt_obj(dt)->oo_inode;
3590         LASSERT(inode);
3591
3592         rc = osd_declare_inode_qid(env, i_uid_read(inode), i_gid_read(inode),
3593                                    0, oh, osd_dt_obj(dt), true, NULL, false);
3594         RETURN(rc);
3595 }
3596
3597 static inline int osd_get_fid_from_dentry(struct ldiskfs_dir_entry_2 *de,
3598                                           struct dt_rec *fid)
3599 {
3600         struct osd_fid_pack *rec;
3601         int                  rc = -ENODATA;
3602
3603         if (de->file_type & LDISKFS_DIRENT_LUFID) {
3604                 rec = (struct osd_fid_pack *) (de->name + de->name_len + 1);
3605                 rc = osd_fid_unpack((struct lu_fid *)fid, rec);
3606         }
3607         return rc;
3608 }
3609
3610 static int osd_remote_fid(const struct lu_env *env, struct osd_device *osd,
3611                           const struct lu_fid *fid)
3612 {
3613         struct seq_server_site  *ss = osd_seq_site(osd);
3614         ENTRY;
3615
3616         /* FID seqs not in FLDB, must be local seq */
3617         if (unlikely(!fid_seq_in_fldb(fid_seq(fid))))
3618                 RETURN(0);
3619
3620         /* If FLD is not being initialized yet, it only happens during the
3621          * initialization, likely during mgs initialization, and we assume
3622          * this is local FID. */
3623         if (ss == NULL || ss->ss_server_fld == NULL)
3624                 RETURN(0);
3625
3626         /* Only check the local FLDB here */
3627         if (osd_seq_exists(env, osd, fid_seq(fid)))
3628                 RETURN(0);
3629
3630         RETURN(1);
3631 }
3632
3633 /**
3634  * Index delete function for interoperability mode (b11826).
3635  * It will remove the directory entry added by osd_index_ea_insert().
3636  * This entry is needed to maintain name->fid mapping.
3637  *
3638  * \param key,  key i.e. file entry to be deleted
3639  *
3640  * \retval   0, on success
3641  * \retval -ve, on error
3642  */
3643 static int osd_index_ea_delete(const struct lu_env *env, struct dt_object *dt,
3644                                const struct dt_key *key, struct thandle *handle,
3645                                struct lustre_capa *capa)
3646 {
3647         struct osd_object          *obj = osd_dt_obj(dt);
3648         struct inode               *dir = obj->oo_inode;
3649         struct dentry              *dentry;
3650         struct osd_thandle         *oh;
3651         struct ldiskfs_dir_entry_2 *de = NULL;
3652         struct buffer_head         *bh;
3653         struct htree_lock          *hlock = NULL;
3654         struct lu_fid              *fid = &osd_oti_get(env)->oti_fid;
3655         struct osd_device          *osd = osd_dev(dt->do_lu.lo_dev);
3656         int                        rc;
3657         ENTRY;
3658
3659         LINVRNT(osd_invariant(obj));
3660         LASSERT(dt_object_exists(dt));
3661         LASSERT(!dt_object_remote(dt));
3662         LASSERT(handle != NULL);
3663
3664         osd_trans_exec_op(env, handle, OSD_OT_DELETE);
3665
3666         oh = container_of(handle, struct osd_thandle, ot_super);
3667         LASSERT(oh->ot_handle != NULL);
3668         LASSERT(oh->ot_handle->h_transaction != NULL);
3669
3670         if (osd_object_auth(env, dt, capa, CAPA_OPC_INDEX_DELETE))
3671                 RETURN(-EACCES);
3672
3673         ll_vfs_dq_init(dir);
3674         dentry = osd_child_dentry_get(env, obj,
3675                                       (char *)key, strlen((char *)key));
3676
3677         if (obj->oo_hl_head != NULL) {
3678                 hlock = osd_oti_get(env)->oti_hlock;
3679                 ldiskfs_htree_lock(hlock, obj->oo_hl_head,
3680                                    dir, LDISKFS_HLOCK_DEL);
3681         } else {
3682                 down_write(&obj->oo_ext_idx_sem);
3683         }
3684
3685         bh = osd_ldiskfs_find_entry(dir, &dentry->d_name, &de, NULL, hlock);
3686         if (bh) {
3687                 __u32 ino = 0;
3688
3689                 /* If this is not the ".." entry, it might be a remote DNE
3690                  * entry and  we need to check if the FID is for a remote
3691                  * MDT.  If the FID is  not in the directory entry (e.g.
3692                  * upgraded 1.8 filesystem without dirdata enabled) then
3693                  * we need to get the FID from the LMA. For a remote directory
3694                  * there HAS to be an LMA, it cannot be an IGIF inode in this
3695                  * case.
3696                  *
3697                  * Delete the entry before the agent inode in order to
3698                  * simplify error handling.  At worst an error after deleting
3699                  * the entry first might leak the agent inode afterward. The
3700                  * reverse would need filesystem abort in case of error deleting
3701                  * the entry after the agent had been removed, or leave a
3702                  * dangling entry pointing at a random inode. */
3703                 if (strcmp((char *)key, dotdot) != 0) {
3704                         LASSERT(de != NULL);
3705                         rc = osd_get_fid_from_dentry(de, (struct dt_rec *)fid);
3706                         /* If Fid is not in dentry, try to get it from LMA */
3707                         if (rc == -ENODATA) {
3708                                 struct osd_inode_id *id;
3709                                 struct inode *inode;
3710
3711                                 /* Before trying to get fid from the inode,
3712                                  * check whether the inode is valid.
3713                                  *
3714                                  * If the inode has been deleted, do not go
3715                                  * ahead to do osd_ea_fid_get, which will set
3716                                  * the inode to bad inode, which might cause
3717                                  * the inode to be deleted uncorrectly */
3718                                 inode = ldiskfs_iget(osd_sb(osd),
3719                                                      le32_to_cpu(de->inode));
3720                                 if (IS_ERR(inode)) {
3721                                         CDEBUG(D_INODE, "%s: "DFID"get inode"
3722                                                "error.\n", osd_name(osd),
3723                                                PFID(fid));
3724                                         rc = PTR_ERR(inode);
3725                                 } else {
3726                                         if (likely(inode->i_nlink != 0)) {
3727                                                 id = &osd_oti_get(env)->oti_id;
3728                                                 rc = osd_ea_fid_get(env, obj,
3729                                                         le32_to_cpu(de->inode),
3730                                                                     fid, id);
3731                                         } else {
3732                                                 CDEBUG(D_INFO, "%s: %u "DFID
3733                                                        "deleted.\n",
3734                                                        osd_name(osd),
3735                                                        le32_to_cpu(de->inode),
3736                                                        PFID(fid));
3737                                                 rc = -ESTALE;
3738                                         }
3739                                         iput(inode);
3740                                 }
3741                         }
3742                         if (rc == 0 &&
3743                             unlikely(osd_remote_fid(env, osd, fid)))
3744                                 /* Need to delete agent inode */
3745                                 ino = le32_to_cpu(de->inode);
3746                 }
3747                 rc = ldiskfs_delete_entry(oh->ot_handle, dir, de, bh);
3748                 brelse(bh);
3749                 if (rc == 0 && unlikely(ino != 0)) {
3750                         rc = osd_delete_local_agent_inode(env, osd, fid, ino,
3751                                                           oh);
3752                         if (rc != 0)
3753                                 CERROR("%s: del local inode "DFID": rc = %d\n",
3754                                        osd_name(osd), PFID(fid), rc);
3755                 }
3756         } else {
3757                 rc = -ENOENT;
3758         }
3759         if (hlock != NULL)
3760                 ldiskfs_htree_unlock(hlock);
3761         else
3762                 up_write(&obj->oo_ext_idx_sem);
3763
3764         if (rc != 0)
3765                 GOTO(out, rc);
3766
3767         /* For inode on the remote MDT, .. will point to
3768          * /Agent directory, Check whether it needs to delete
3769          * from agent directory */
3770         if (unlikely(strcmp((char *)key, dotdot) == 0)) {
3771                 rc = osd_delete_from_remote_parent(env, osd_obj2dev(obj), obj,
3772                                                    oh);
3773                 if (rc != 0 && rc != -ENOENT) {
3774                         CERROR("%s: delete agent inode "DFID": rc = %d\n",
3775                                osd_name(osd), PFID(fid), rc);
3776                 }
3777
3778                 if (rc == -ENOENT)
3779                         rc = 0;
3780
3781                 GOTO(out, rc);
3782         }
3783 out:
3784
3785         LASSERT(osd_invariant(obj));
3786         RETURN(rc);
3787 }
3788
3789 /**
3790  *      Lookup index for \a key and copy record to \a rec.
3791  *
3792  *      \param  dt      osd index object
3793  *      \param  key     key for index
3794  *      \param  rec     record reference
3795  *
3796  *      \retval  +ve  success : exact mach
3797  *      \retval  0    return record with key not greater than \a key
3798  *      \retval -ve   failure
3799  */
3800 static int osd_index_iam_lookup(const struct lu_env *env, struct dt_object *dt,
3801                                 struct dt_rec *rec, const struct dt_key *key,
3802                                 struct lustre_capa *capa)
3803 {
3804         struct osd_object      *obj = osd_dt_obj(dt);
3805         struct iam_path_descr  *ipd;
3806         struct iam_container   *bag = &obj->oo_dir->od_container;
3807         struct osd_thread_info *oti = osd_oti_get(env);
3808         struct iam_iterator    *it = &oti->oti_idx_it;
3809         struct iam_rec         *iam_rec;
3810         int                     rc;
3811         ENTRY;
3812
3813         LASSERT(osd_invariant(obj));
3814         LASSERT(dt_object_exists(dt));
3815         LASSERT(!dt_object_remote(dt));
3816         LASSERT(bag->ic_object == obj->oo_inode);
3817
3818         if (osd_object_auth(env, dt, capa, CAPA_OPC_INDEX_LOOKUP))
3819                 RETURN(-EACCES);
3820
3821         ipd = osd_idx_ipd_get(env, bag);
3822         if (IS_ERR(ipd))
3823                 RETURN(-ENOMEM);
3824
3825         /* got ipd now we can start iterator. */
3826         iam_it_init(it, bag, 0, ipd);
3827
3828         if (fid_is_quota(lu_object_fid(&dt->do_lu))) {
3829                 /* swab quota uid/gid provided by caller */
3830                 oti->oti_quota_id = cpu_to_le64(*((__u64 *)key));
3831                 key = (const struct dt_key *)&oti->oti_quota_id;
3832         }
3833
3834         rc = iam_it_get(it, (struct iam_key *)key);
3835         if (rc >= 0) {
3836                 if (S_ISDIR(obj->oo_inode->i_mode))
3837                         iam_rec = (struct iam_rec *)oti->oti_ldp;
3838                 else
3839                         iam_rec = (struct iam_rec *) rec;
3840
3841                 iam_reccpy(&it->ii_path.ip_leaf, (struct iam_rec *)iam_rec);
3842
3843                 if (S_ISDIR(obj->oo_inode->i_mode))
3844                         osd_fid_unpack((struct lu_fid *) rec,
3845                                        (struct osd_fid_pack *)iam_rec);
3846                 else if (fid_is_quota(lu_object_fid(&dt->do_lu)))
3847                         osd_quota_unpack(obj, rec);
3848         }
3849
3850         iam_it_put(it);
3851         iam_it_fini(it);
3852         osd_ipd_put(env, bag, ipd);
3853
3854         LINVRNT(osd_invariant(obj));
3855
3856         RETURN(rc);
3857 }
3858
3859 static int osd_index_declare_iam_insert(const struct lu_env *env,
3860                                         struct dt_object *dt,
3861                                         const struct dt_rec *rec,
3862                                         const struct dt_key *key,
3863                                         struct thandle *handle)
3864 {
3865         struct osd_thandle *oh;
3866
3867         LASSERT(handle != NULL);
3868
3869         oh = container_of0(handle, struct osd_thandle, ot_super);
3870         LASSERT(oh->ot_handle == NULL);
3871
3872         osd_trans_declare_op(env, oh, OSD_OT_INSERT,
3873                              osd_dto_credits_noquota[DTO_INDEX_INSERT]);
3874
3875         return 0;
3876 }
3877
3878 /**
3879  *      Inserts (key, value) pair in \a dt index object.
3880  *
3881  *      \param  dt      osd index object
3882  *      \param  key     key for index
3883  *      \param  rec     record reference
3884  *      \param  th      transaction handler
3885  *
3886  *      \retval  0  success
3887  *      \retval -ve failure
3888  */
3889 static int osd_index_iam_insert(const struct lu_env *env, struct dt_object *dt,
3890                                 const struct dt_rec *rec,
3891                                 const struct dt_key *key, struct thandle *th,
3892                                 struct lustre_capa *capa, int ignore_quota)
3893 {
3894         struct osd_object     *obj = osd_dt_obj(dt);
3895         struct iam_path_descr *ipd;
3896         struct osd_thandle    *oh;
3897         struct iam_container  *bag = &obj->oo_dir->od_container;
3898         struct osd_thread_info *oti = osd_oti_get(env);
3899         struct iam_rec         *iam_rec;
3900         int                     rc;
3901         ENTRY;
3902
3903         LINVRNT(osd_invariant(obj));
3904         LASSERT(dt_object_exists(dt));
3905         LASSERT(!dt_object_remote(dt));
3906         LASSERT(bag->ic_object == obj->oo_inode);
3907         LASSERT(th != NULL);
3908
3909         if (osd_object_auth(env, dt, capa, CAPA_OPC_INDEX_INSERT))
3910                 RETURN(-EACCES);
3911
3912         osd_trans_exec_op(env, th, OSD_OT_INSERT);
3913
3914         ipd = osd_idx_ipd_get(env, bag);
3915         if (unlikely(ipd == NULL))
3916                 RETURN(-ENOMEM);
3917
3918         oh = container_of0(th, struct osd_thandle, ot_super);
3919         LASSERT(oh->ot_handle != NULL);
3920         LASSERT(oh->ot_handle->h_transaction != NULL);
3921         if (S_ISDIR(obj->oo_inode->i_mode)) {
3922                 iam_rec = (struct iam_rec *)oti->oti_ldp;
3923                 osd_fid_pack((struct osd_fid_pack *)iam_rec, rec, &oti->oti_fid);
3924         } else if (fid_is_quota(lu_object_fid(&dt->do_lu))) {
3925                 /* pack quota uid/gid */
3926                 oti->oti_quota_id = cpu_to_le64(*((__u64 *)key));
3927                 key = (const struct dt_key *)&oti->oti_quota_id;
3928                 /* pack quota record */
3929                 rec = osd_quota_pack(obj, rec, &oti->oti_quota_rec);
3930                 iam_rec = (struct iam_rec *)rec;
3931         } else {
3932                 iam_rec = (struct iam_rec *)rec;
3933         }
3934
3935         rc = iam_insert(oh->ot_handle, bag, (const struct iam_key *)key,
3936                         iam_rec, ipd);
3937         osd_ipd_put(env, bag, ipd);
3938         LINVRNT(osd_invariant(obj));
3939         RETURN(rc);
3940 }
3941
3942 /**
3943  * Calls ldiskfs_add_entry() to add directory entry
3944  * into the directory. This is required for
3945  * interoperability mode (b11826)
3946  *
3947  * \retval   0, on success
3948  * \retval -ve, on error
3949  */
3950 static int __osd_ea_add_rec(struct osd_thread_info *info,
3951                             struct osd_object *pobj, struct inode  *cinode,
3952                             const char *name, const struct lu_fid *fid,
3953                             struct htree_lock *hlock, struct thandle *th)
3954 {
3955         struct ldiskfs_dentry_param *ldp;
3956         struct dentry               *child;
3957         struct osd_thandle          *oth;
3958         int                          rc;
3959
3960         oth = container_of(th, struct osd_thandle, ot_super);
3961         LASSERT(oth->ot_handle != NULL);
3962         LASSERT(oth->ot_handle->h_transaction != NULL);
3963         LASSERT(pobj->oo_inode);
3964
3965         ldp = (struct ldiskfs_dentry_param *)info->oti_ldp;
3966         if (unlikely(pobj->oo_inode ==
3967                      osd_sb(osd_obj2dev(pobj))->s_root->d_inode))
3968                 ldp->edp_magic = 0;
3969         else
3970                 osd_get_ldiskfs_dirent_param(ldp, fid);
3971         child = osd_child_dentry_get(info->oti_env, pobj, name, strlen(name));
3972         child->d_fsdata = (void *)ldp;
3973         ll_vfs_dq_init(pobj->oo_inode);
3974         rc = osd_ldiskfs_add_entry(oth->ot_handle, child, cinode, hlock);
3975         if (rc == 0 && OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_TYPE)) {
3976                 struct ldiskfs_dir_entry_2      *de;
3977                 struct buffer_head              *bh;
3978                 int                              rc1;
3979
3980                 bh = osd_ldiskfs_find_entry(pobj->oo_inode, &child->d_name, &de,
3981                                             NULL, hlock);
3982                 if (bh != NULL) {
3983                         rc1 = ldiskfs_journal_get_write_access(oth->ot_handle,
3984                                                                bh);
3985                         if (rc1 == 0) {
3986                                 if (S_ISDIR(cinode->i_mode))
3987                                         de->file_type = LDISKFS_DIRENT_LUFID |
3988                                                         LDISKFS_FT_REG_FILE;
3989                                 else
3990                                         de->file_type = LDISKFS_DIRENT_LUFID |
3991                                                         LDISKFS_FT_DIR;
3992                                 ldiskfs_journal_dirty_metadata(oth->ot_handle,
3993                                                                bh);
3994                                 brelse(bh);
3995                         }
3996                 }
3997         }
3998
3999         RETURN(rc);
4000 }
4001
4002 /**
4003  * Calls ldiskfs_add_dot_dotdot() to add dot and dotdot entries
4004  * into the directory.Also sets flags into osd object to
4005  * indicate dot and dotdot are created. This is required for
4006  * interoperability mode (b11826)
4007  *
4008  * \param dir   directory for dot and dotdot fixup.
4009  * \param obj   child object for linking
4010  *
4011  * \retval   0, on success
4012  * \retval -ve, on error
4013  */
4014 static int osd_add_dot_dotdot(struct osd_thread_info *info,
4015                               struct osd_object *dir,
4016                               struct inode *parent_dir, const char *name,
4017                               const struct lu_fid *dot_fid,
4018                               const struct lu_fid *dot_dot_fid,
4019                               struct thandle *th)
4020 {
4021         struct inode                *inode = dir->oo_inode;
4022         struct osd_thandle          *oth;
4023         int result = 0;
4024
4025         oth = container_of(th, struct osd_thandle, ot_super);
4026         LASSERT(oth->ot_handle->h_transaction != NULL);
4027         LASSERT(S_ISDIR(dir->oo_inode->i_mode));
4028
4029         if (strcmp(name, dot) == 0) {
4030                 if (dir->oo_compat_dot_created) {
4031                         result = -EEXIST;
4032                 } else {
4033                         LASSERT(inode == parent_dir);
4034                         dir->oo_compat_dot_created = 1;
4035                         result = 0;
4036                 }
4037         } else if (strcmp(name, dotdot) == 0) {
4038                 if (!dir->oo_compat_dot_created)
4039                         return -EINVAL;
4040                 /* in case of rename, dotdot is already created */
4041                 if (dir->oo_compat_dotdot_created) {
4042                         return __osd_ea_add_rec(info, dir, parent_dir, name,
4043                                                 dot_dot_fid, NULL, th);
4044                 }
4045
4046                 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_PARENT)) {
4047                         struct lu_fid tfid = *dot_dot_fid;
4048
4049                         tfid.f_oid--;
4050                         result = osd_add_dot_dotdot_internal(info,
4051                                         dir->oo_inode, parent_dir, dot_fid,
4052                                         &tfid, oth);
4053                 } else {
4054                         result = osd_add_dot_dotdot_internal(info,
4055                                         dir->oo_inode, parent_dir, dot_fid,
4056                                         dot_dot_fid, oth);
4057                 }
4058
4059                 if (result == 0)
4060                         dir->oo_compat_dotdot_created = 1;
4061         }
4062
4063         return result;
4064 }
4065
4066
4067 /**
4068  * It will call the appropriate osd_add* function and return the
4069  * value, return by respective functions.
4070  */
4071 static int osd_ea_add_rec(const struct lu_env *env, struct osd_object *pobj,
4072                           struct inode *cinode, const char *name,
4073                           const struct lu_fid *fid, struct thandle *th)
4074 {
4075         struct osd_thread_info *info   = osd_oti_get(env);
4076         struct htree_lock      *hlock;
4077         int                     rc;
4078
4079         hlock = pobj->oo_hl_head != NULL ? info->oti_hlock : NULL;
4080
4081         if (name[0] == '.' && (name[1] == '\0' || (name[1] == '.' &&
4082                                                    name[2] =='\0'))) {
4083                 if (hlock != NULL) {
4084                         ldiskfs_htree_lock(hlock, pobj->oo_hl_head,
4085                                            pobj->oo_inode, 0);
4086                 } else {
4087                         down_write(&pobj->oo_ext_idx_sem);
4088                 }
4089
4090                 rc = osd_add_dot_dotdot(info, pobj, cinode, name,
4091                                         lu_object_fid(&pobj->oo_dt.do_lu),
4092                                         fid, th);
4093         } else {
4094                 if (hlock != NULL) {
4095                         ldiskfs_htree_lock(hlock, pobj->oo_hl_head,
4096                                            pobj->oo_inode, LDISKFS_HLOCK_ADD);
4097                 } else {
4098                         down_write(&pobj->oo_ext_idx_sem);
4099                 }
4100
4101                 if (OBD_FAIL_CHECK(OBD_FAIL_FID_INDIR)) {
4102                         struct lu_fid *tfid = &info->oti_fid;
4103
4104                         *tfid = *fid;
4105                         tfid->f_ver = ~0;
4106                         rc = __osd_ea_add_rec(info, pobj, cinode, name,
4107                                               tfid, hlock, th);
4108                 } else {
4109                         rc = __osd_ea_add_rec(info, pobj, cinode, name, fid,
4110                                               hlock, th);
4111                 }
4112         }
4113         if (hlock != NULL)
4114                 ldiskfs_htree_unlock(hlock);
4115         else
4116                 up_write(&pobj->oo_ext_idx_sem);
4117
4118         return rc;
4119 }
4120
4121 static void
4122 osd_consistency_check(struct osd_thread_info *oti, struct osd_device *dev,
4123                       struct osd_idmap_cache *oic)
4124 {
4125         struct osd_scrub    *scrub = &dev->od_scrub;
4126         struct lu_fid       *fid   = &oic->oic_fid;
4127         struct osd_inode_id *id    = &oti->oti_id;
4128         int                  once  = 0;
4129         int                  rc;
4130         ENTRY;
4131
4132         if (!fid_is_norm(fid) && !fid_is_igif(fid))
4133                 RETURN_EXIT;
4134
4135 again:
4136         rc = osd_oi_lookup(oti, dev, fid, id, OI_CHECK_FLD);
4137         if (rc != 0 && rc != -ENOENT)
4138                 RETURN_EXIT;
4139
4140         if (rc == 0 && osd_id_eq(id, &oic->oic_lid))
4141                 RETURN_EXIT;
4142
4143         if (thread_is_running(&scrub->os_thread)) {
4144                 rc = osd_oii_insert(dev, oic, rc == -ENOENT);
4145                 /* There is race condition between osd_oi_lookup and OI scrub.
4146                  * The OI scrub finished just after osd_oi_lookup() failure.
4147                  * Under such case, it is unnecessary to trigger OI scrub again,
4148                  * but try to call osd_oi_lookup() again. */
4149                 if (unlikely(rc == -EAGAIN))
4150                         goto again;
4151
4152                 RETURN_EXIT;
4153         }
4154
4155         if (!dev->od_noscrub && ++once == 1) {
4156                 rc = osd_scrub_start(dev, SS_AUTO_PARTIAL | SS_CLEAR_DRYRUN |
4157                                      SS_CLEAR_FAILOUT);
4158                 LCONSOLE_WARN("%.16s: trigger OI scrub by RPC for "DFID
4159                               ", rc = %d [2]\n",
4160                               LDISKFS_SB(osd_sb(dev))->s_es->s_volume_name,
4161                               PFID(fid), rc);
4162                 if (rc == 0 || rc == -EALREADY)
4163                         goto again;
4164         }
4165
4166         EXIT;
4167 }
4168
4169 static int osd_fail_fid_lookup(struct osd_thread_info *oti,
4170                                struct osd_device *dev,
4171                                struct osd_idmap_cache *oic,
4172                                struct lu_fid *fid, __u32 ino)
4173 {
4174         struct lustre_mdt_attrs *lma   = &oti->oti_mdt_attrs;
4175         struct inode            *inode;
4176         int                      rc;
4177
4178         osd_id_gen(&oic->oic_lid, ino, OSD_OII_NOGEN);
4179         inode = osd_iget(oti, dev, &oic->oic_lid);
4180         if (IS_ERR(inode)) {
4181                 fid_zero(&oic->oic_fid);
4182                 return PTR_ERR(inode);
4183         }
4184
4185         rc = osd_get_lma(oti, inode, &oti->oti_obj_dentry, lma);
4186         iput(inode);
4187         if (rc != 0)
4188                 fid_zero(&oic->oic_fid);
4189         else
4190                 *fid = oic->oic_fid = lma->lma_self_fid;
4191         return rc;
4192 }
4193
4194 int osd_add_oi_cache(struct osd_thread_info *info, struct osd_device *osd,
4195                      struct osd_inode_id *id, const struct lu_fid *fid)
4196 {
4197         CDEBUG(D_INODE, "add "DFID" %u:%u to info %p\n", PFID(fid),
4198                id->oii_ino, id->oii_gen, info);
4199         info->oti_cache.oic_lid = *id;
4200         info->oti_cache.oic_fid = *fid;
4201         info->oti_cache.oic_dev = osd;
4202
4203         return 0;
4204 }
4205
4206 /**
4207  * Get parent FID from the linkEA.
4208  *
4209  * For a directory which parent resides on remote MDT, to satisfy the
4210  * local e2fsck, we insert it into the /REMOTE_PARENT_DIR locally. On
4211  * the other hand, to make the lookup(..) on the directory can return
4212  * the real parent FID, we append the real parent FID after its ".."
4213  * name entry in the /REMOTE_PARENT_DIR.
4214  *
4215  * Unfortunately, such PFID-in-dirent cannot be preserved via file-level
4216  * backup. So after the restore, we cannot get the right parent FID from
4217  * its ".." name entry in the /REMOTE_PARENT_DIR. Under such case, since
4218  * we have stored the real parent FID in the directory object's linkEA,
4219  * we can parse the linkEA for the real parent FID.
4220  *
4221  * \param[in] env       pointer to the thread context
4222  * \param[in] obj       pointer to the object to be handled
4223  * \param[out]fid       pointer to the buffer to hold the parent FID
4224  *
4225  * \retval              0 for getting the real parent FID successfully
4226  * \retval              negative error number on failure
4227  */
4228 static int osd_get_pfid_from_linkea(const struct lu_env *env,
4229                                     struct osd_object *obj,
4230                                     struct lu_fid *fid)
4231 {
4232         struct osd_thread_info  *oti    = osd_oti_get(env);
4233         struct lu_buf           *buf    = &oti->oti_big_buf;
4234         struct dentry           *dentry = &oti->oti_obj_dentry;
4235         struct inode            *inode  = obj->oo_inode;
4236         struct linkea_data       ldata  = { 0 };
4237         int                      rc;
4238         ENTRY;
4239
4240         fid_zero(fid);
4241         if (!S_ISDIR(inode->i_mode))
4242                 RETURN(-EIO);
4243
4244 again:
4245         rc = __osd_xattr_get(inode, dentry, XATTR_NAME_LINK,
4246                              buf->lb_buf, buf->lb_len);
4247         if (rc == -ERANGE) {
4248                 rc = __osd_xattr_get(inode, dentry, XATTR_NAME_LINK,
4249                                      NULL, 0);
4250                 if (rc > 0) {
4251                         lu_buf_realloc(buf, rc);
4252                         if (buf->lb_buf == NULL)
4253                                 RETURN(-ENOMEM);
4254
4255                         goto again;
4256                 }
4257         }
4258
4259         if (unlikely(rc == 0))
4260                 RETURN(-ENODATA);
4261
4262         if (rc < 0)
4263                 RETURN(rc);
4264
4265         if (unlikely(buf->lb_buf == NULL)) {
4266                 lu_buf_realloc(buf, rc);
4267                 if (buf->lb_buf == NULL)
4268                         RETURN(-ENOMEM);
4269
4270                 goto again;
4271         }
4272
4273         ldata.ld_buf = buf;
4274         rc = linkea_init(&ldata);
4275         if (rc == 0) {
4276                 linkea_first_entry(&ldata);
4277                 linkea_entry_unpack(ldata.ld_lee, &ldata.ld_reclen, NULL, fid);
4278         }
4279
4280         RETURN(rc);
4281 }
4282
4283 /**
4284  * Calls ->lookup() to find dentry. From dentry get inode and
4285  * read inode's ea to get fid. This is required for  interoperability
4286  * mode (b11826)
4287  *
4288  * \retval   0, on success
4289  * \retval -ve, on error
4290  */
4291 static int osd_ea_lookup_rec(const struct lu_env *env, struct osd_object *obj,
4292                              struct dt_rec *rec, const struct dt_key *key)
4293 {
4294         struct inode                    *dir    = obj->oo_inode;
4295         struct dentry                   *dentry;
4296         struct ldiskfs_dir_entry_2      *de;
4297         struct buffer_head              *bh;
4298         struct lu_fid                   *fid = (struct lu_fid *) rec;
4299         struct htree_lock               *hlock = NULL;
4300         int                             ino;
4301         int                             rc;
4302         ENTRY;
4303
4304         LASSERT(dir->i_op != NULL);
4305         LASSERT(dir->i_op->lookup != NULL);
4306
4307         dentry = osd_child_dentry_get(env, obj,
4308                                       (char *)key, strlen((char *)key));
4309
4310         if (obj->oo_hl_head != NULL) {
4311                 hlock = osd_oti_get(env)->oti_hlock;
4312                 ldiskfs_htree_lock(hlock, obj->oo_hl_head,
4313                                    dir, LDISKFS_HLOCK_LOOKUP);
4314         } else {
4315                 down_read(&obj->oo_ext_idx_sem);
4316         }
4317
4318         bh = osd_ldiskfs_find_entry(dir, &dentry->d_name, &de, NULL, hlock);
4319         if (bh) {
4320                 struct osd_thread_info *oti = osd_oti_get(env);
4321                 struct osd_inode_id *id = &oti->oti_id;
4322                 struct osd_idmap_cache *oic = &oti->oti_cache;
4323                 struct osd_device *dev = osd_obj2dev(obj);
4324                 struct osd_scrub *scrub = &dev->od_scrub;
4325                 struct scrub_file *sf = &scrub->os_file;
4326
4327                 ino = le32_to_cpu(de->inode);
4328                 if (OBD_FAIL_CHECK(OBD_FAIL_FID_LOOKUP)) {
4329                         brelse(bh);
4330                         rc = osd_fail_fid_lookup(oti, dev, oic, fid, ino);
4331                         GOTO(out, rc);
4332                 }
4333
4334                 rc = osd_get_fid_from_dentry(de, rec);
4335
4336                 /* done with de, release bh */
4337                 brelse(bh);
4338                 if (rc != 0) {
4339                         if (unlikely(ino == osd_remote_parent_ino(dev)))
4340                                 /* If the parent is on remote MDT, and there
4341                                  * is no FID-in-dirent, then we have to get
4342                                  * the parent FID from the linkEA.  */
4343                                 rc = osd_get_pfid_from_linkea(env, obj, fid);
4344                         else
4345                                 rc = osd_ea_fid_get(env, obj, ino, fid, id);
4346                 } else {
4347                         osd_id_gen(id, ino, OSD_OII_NOGEN);
4348                 }
4349
4350                 if (rc != 0) {
4351                         fid_zero(&oic->oic_fid);
4352                         GOTO(out, rc);
4353                 }
4354
4355                 if (osd_remote_fid(env, dev, fid))
4356                         GOTO(out, rc = 0);
4357
4358                 rc = osd_add_oi_cache(osd_oti_get(env), osd_obj2dev(obj), id,
4359                                       fid);
4360                 if (rc != 0)
4361                         GOTO(out, rc);
4362                 if ((scrub->os_pos_current <= ino) &&
4363                     ((sf->sf_flags & SF_INCONSISTENT) ||
4364                      (sf->sf_flags & SF_UPGRADE && fid_is_igif(fid)) ||
4365                      ldiskfs_test_bit(osd_oi_fid2idx(dev, fid),
4366                                       sf->sf_oi_bitmap)))
4367                         osd_consistency_check(oti, dev, oic);
4368         } else {
4369                 rc = -ENOENT;
4370         }
4371
4372         GOTO(out, rc);
4373
4374 out:
4375         if (hlock != NULL)
4376                 ldiskfs_htree_unlock(hlock);
4377         else
4378                 up_read(&obj->oo_ext_idx_sem);
4379         return rc;
4380 }
4381
4382 /**
4383  * Find the osd object for given fid.
4384  *
4385  * \param fid need to find the osd object having this fid
4386  *
4387  * \retval osd_object on success
4388  * \retval        -ve on error
4389  */
4390 struct osd_object *osd_object_find(const struct lu_env *env,
4391                                    struct dt_object *dt,
4392                                    const struct lu_fid *fid)
4393 {
4394         struct lu_device  *ludev = dt->do_lu.lo_dev;
4395         struct osd_object *child = NULL;
4396         struct lu_object  *luch;
4397         struct lu_object  *lo;
4398
4399         /*
4400          * at this point topdev might not exist yet
4401          * (i.e. MGS is preparing profiles). so we can
4402          * not rely on topdev and instead lookup with
4403          * our device passed as topdev. this can't work
4404          * if the object isn't cached yet (as osd doesn't
4405          * allocate lu_header). IOW, the object must be
4406          * in the cache, otherwise lu_object_alloc() crashes
4407          * -bzzz
4408          */
4409         luch = lu_object_find_at(env, ludev->ld_site->ls_top_dev == NULL ?
4410                                  ludev : ludev->ld_site->ls_top_dev,
4411                                  fid, NULL);
4412         if (!IS_ERR(luch)) {
4413                 if (lu_object_exists(luch)) {
4414                         lo = lu_object_locate(luch->lo_header, ludev->ld_type);
4415                         if (lo != NULL)
4416                                 child = osd_obj(lo);
4417                         else
4418                                 LU_OBJECT_DEBUG(D_ERROR, env, luch,
4419                                                 "lu_object can't be located"
4420                                                 DFID"\n", PFID(fid));
4421
4422                         if (child == NULL) {
4423                                 lu_object_put(env, luch);
4424                                 CERROR("Unable to get osd_object\n");
4425                                 child = ERR_PTR(-ENOENT);
4426                         }
4427                 } else {
4428                         LU_OBJECT_DEBUG(D_ERROR, env, luch,
4429                                         "lu_object does not exists "DFID"\n",
4430                                         PFID(fid));
4431                         lu_object_put(env, luch);
4432                         child = ERR_PTR(-ENOENT);
4433                 }
4434         } else {
4435                 child = ERR_CAST(luch);
4436         }
4437
4438         return child;
4439 }
4440
4441 /**
4442  * Put the osd object once done with it.
4443  *
4444  * \param obj osd object that needs to be put
4445  */
4446 static inline void osd_object_put(const struct lu_env *env,
4447                                   struct osd_object *obj)
4448 {
4449         lu_object_put(env, &obj->oo_dt.do_lu);
4450 }
4451
4452 static int osd_index_declare_ea_insert(const struct lu_env *env,
4453                                        struct dt_object *dt,
4454                                        const struct dt_rec *rec,
4455                                        const struct dt_key *key,
4456                                        struct thandle *handle)
4457 {
4458         struct osd_thandle      *oh;
4459         struct osd_device       *osd   = osd_dev(dt->do_lu.lo_dev);
4460         struct lu_fid           *fid = (struct lu_fid *)rec;
4461         int                     rc;
4462         ENTRY;
4463
4464         LASSERT(!dt_object_remote(dt));
4465         LASSERT(handle != NULL);
4466
4467         oh = container_of0(handle, struct osd_thandle, ot_super);
4468         LASSERT(oh->ot_handle == NULL);
4469
4470         osd_trans_declare_op(env, oh, OSD_OT_INSERT,
4471                              osd_dto_credits_noquota[DTO_INDEX_INSERT]);
4472
4473         if (osd_dt_obj(dt)->oo_inode != NULL) {
4474                 struct inode *inode = osd_dt_obj(dt)->oo_inode;
4475
4476                 /* We ignore block quota on meta pool (MDTs), so needn't
4477                  * calculate how many blocks will be consumed by this index
4478                  * insert */
4479                 rc = osd_declare_inode_qid(env, i_uid_read(inode),
4480                                            i_gid_read(inode), 0, oh,
4481                                            osd_dt_obj(dt), true, NULL, false);
4482         }
4483
4484         if (fid == NULL)
4485                 RETURN(0);
4486
4487         rc = osd_remote_fid(env, osd, fid);
4488         if (rc <= 0)
4489                 RETURN(rc);
4490
4491         rc = 0;
4492
4493         osd_trans_declare_op(env, oh, OSD_OT_CREATE,
4494                              osd_dto_credits_noquota[DTO_OBJECT_CREATE]);
4495         osd_trans_declare_op(env, oh, OSD_OT_INSERT,
4496                              osd_dto_credits_noquota[DTO_INDEX_INSERT] + 1);
4497         osd_trans_declare_op(env, oh, OSD_OT_INSERT,
4498                              osd_dto_credits_noquota[DTO_INDEX_INSERT] + 1);
4499
4500         RETURN(rc);
4501 }
4502
4503 /**
4504  * Index add function for interoperability mode (b11826).
4505  * It will add the directory entry.This entry is needed to
4506  * maintain name->fid mapping.
4507  *
4508  * \param key it is key i.e. file entry to be inserted
4509  * \param rec it is value of given key i.e. fid
4510  *
4511  * \retval   0, on success
4512  * \retval -ve, on error
4513  */
4514 static int osd_index_ea_insert(const struct lu_env *env, struct dt_object *dt,
4515                                const struct dt_rec *rec,
4516                                const struct dt_key *key, struct thandle *th,
4517                                struct lustre_capa *capa, int ignore_quota)
4518 {
4519         struct osd_object       *obj = osd_dt_obj(dt);
4520         struct osd_device       *osd = osd_dev(dt->do_lu.lo_dev);
4521         struct dt_insert_rec    *rec1   = (struct dt_insert_rec *)rec;
4522         const struct lu_fid     *fid    = rec1->rec_fid;
4523         const char              *name = (const char *)key;
4524         struct osd_thread_info  *oti   = osd_oti_get(env);
4525         struct osd_inode_id     *id    = &oti->oti_id;
4526         struct inode            *child_inode = NULL;
4527         struct osd_object       *child = NULL;
4528         int                     rc;
4529         ENTRY;
4530
4531         LASSERT(osd_invariant(obj));
4532         LASSERT(dt_object_exists(dt));
4533         LASSERT(!dt_object_remote(dt));
4534         LASSERT(th != NULL);
4535
4536         osd_trans_exec_op(env, th, OSD_OT_INSERT);
4537
4538         if (osd_object_auth(env, dt, capa, CAPA_OPC_INDEX_INSERT))
4539                 RETURN(-EACCES);
4540
4541         LASSERTF(fid_is_sane(fid), "fid"DFID" is insane!\n", PFID(fid));
4542
4543         rc = osd_remote_fid(env, osd, fid);
4544         if (rc < 0) {
4545                 CERROR("%s: Can not find object "DFID" rc %d\n",
4546                        osd_name(osd), PFID(fid), rc);
4547                 RETURN(rc);
4548         }
4549
4550         if (rc == 1) {
4551                 /* Insert remote entry */
4552                 if (strcmp(name, dotdot) == 0 && strlen(name) == 2) {
4553                         struct osd_mdobj_map    *omm = osd->od_mdt_map;
4554                         struct osd_thandle      *oh;
4555
4556                         /* If parent on remote MDT, we need put this object
4557                          * under AGENT */
4558                         oh = container_of(th, typeof(*oh), ot_super);
4559                         rc = osd_add_to_remote_parent(env, osd, obj, oh);
4560                         if (rc != 0) {
4561                                 CERROR("%s: add "DFID" error: rc = %d\n",
4562                                        osd_name(osd),
4563                                        PFID(lu_object_fid(&dt->do_lu)), rc);
4564                                 RETURN(rc);
4565                         }
4566
4567                         child_inode = igrab(omm->omm_remote_parent->d_inode);
4568                 } else {
4569                         child_inode = osd_create_local_agent_inode(env, osd,
4570                                         obj, fid, rec1->rec_type & S_IFMT, th);
4571                         if (IS_ERR(child_inode))
4572                                 RETURN(PTR_ERR(child_inode));
4573                 }
4574         } else {
4575                 /* Insert local entry */
4576                 child = osd_object_find(env, dt, fid);
4577                 if (IS_ERR(child)) {
4578                         CERROR("%s: Can not find object "DFID"%u:%u: rc = %d\n",
4579                                osd_name(osd), PFID(fid),
4580                                id->oii_ino, id->oii_gen,
4581                                (int)PTR_ERR(child));
4582                         RETURN(PTR_ERR(child));
4583                 }
4584                 child_inode = igrab(child->oo_inode);
4585         }
4586
4587         rc = osd_ea_add_rec(env, obj, child_inode, name, fid, th);
4588
4589         CDEBUG(D_INODE, "parent %lu insert %s:%lu rc = %d\n",
4590                obj->oo_inode->i_ino, name, child_inode->i_ino, rc);
4591
4592         iput(child_inode);
4593         if (child != NULL)
4594                 osd_object_put(env, child);
4595         LASSERT(osd_invariant(obj));
4596         RETURN(rc);
4597 }
4598
4599 /**
4600  *  Initialize osd Iterator for given osd index object.
4601  *
4602  *  \param  dt      osd index object
4603  */
4604
4605 static struct dt_it *osd_it_iam_init(const struct lu_env *env,
4606                                      struct dt_object *dt,
4607                                      __u32 unused,
4608                                      struct lustre_capa *capa)
4609 {
4610         struct osd_it_iam      *it;
4611         struct osd_thread_info *oti = osd_oti_get(env);
4612         struct osd_object      *obj = osd_dt_obj(dt);
4613         struct lu_object       *lo  = &dt->do_lu;
4614         struct iam_path_descr  *ipd;
4615         struct iam_container   *bag = &obj->oo_dir->od_container;
4616
4617         LASSERT(lu_object_exists(lo));
4618
4619         if (osd_object_auth(env, dt, capa, CAPA_OPC_BODY_READ))
4620                 return ERR_PTR(-EACCES);
4621
4622         if (oti->oti_it_inline) {
4623                 OBD_ALLOC_PTR(it);
4624                 if (it == NULL)
4625                         return ERR_PTR(-ENOMEM);
4626         } else {
4627                 it = &oti->oti_it;
4628                 oti->oti_it_inline = 1;
4629         }
4630
4631         ipd = osd_it_ipd_get(env, bag);
4632         if (likely(ipd != NULL)) {
4633                 it->oi_obj = obj;
4634                 it->oi_ipd = ipd;
4635                 lu_object_get(lo);
4636                 iam_it_init(&it->oi_it, bag, IAM_IT_MOVE, ipd);
4637                 return (struct dt_it *)it;
4638         } else {
4639                 if (it != &oti->oti_it)
4640                         OBD_FREE_PTR(it);
4641                 else
4642                         oti->oti_it_inline = 0;
4643
4644                 return ERR_PTR(-ENOMEM);
4645         }
4646 }
4647
4648 /**
4649  * free given Iterator.
4650  */
4651
4652 static void osd_it_iam_fini(const struct lu_env *env, struct dt_it *di)
4653 {
4654         struct osd_thread_info  *oti = osd_oti_get(env);
4655         struct osd_it_iam       *it  = (struct osd_it_iam *)di;
4656         struct osd_object       *obj = it->oi_obj;
4657
4658         iam_it_fini(&it->oi_it);
4659         osd_ipd_put(env, &obj->oo_dir->od_container, it->oi_ipd);
4660         lu_object_put(env, &obj->oo_dt.do_lu);
4661         if (it != &oti->oti_it)
4662                 OBD_FREE_PTR(it);
4663         else
4664                 oti->oti_it_inline = 0;
4665 }
4666
4667 /**
4668  *  Move Iterator to record specified by \a key
4669  *
4670  *  \param  di      osd iterator
4671  *  \param  key     key for index
4672  *
4673  *  \retval +ve  di points to record with least key not larger than key
4674  *  \retval  0   di points to exact matched key
4675  *  \retval -ve  failure
4676  */
4677
4678 static int osd_it_iam_get(const struct lu_env *env,
4679                           struct dt_it *di, const struct dt_key *key)
4680 {
4681         struct osd_thread_info  *oti = osd_oti_get(env);
4682         struct osd_it_iam       *it = (struct osd_it_iam *)di;
4683
4684         if (fid_is_quota(lu_object_fid(&it->oi_obj->oo_dt.do_lu))) {
4685                 /* swab quota uid/gid */
4686                 oti->oti_quota_id = cpu_to_le64(*((__u64 *)key));
4687                 key = (struct dt_key *)&oti->oti_quota_id;
4688         }
4689
4690         return iam_it_get(&it->oi_it, (const struct iam_key *)key);
4691 }
4692
4693 /**
4694  *  Release Iterator
4695  *
4696  *  \param  di      osd iterator
4697  */
4698 static void osd_it_iam_put(const struct lu_env *env, struct dt_it *di)
4699 {
4700         struct osd_it_iam *it = (struct osd_it_iam *)di;
4701
4702         iam_it_put(&it->oi_it);
4703 }
4704
4705 /**
4706  *  Move iterator by one record
4707  *
4708  *  \param  di      osd iterator
4709  *
4710  *  \retval +1   end of container reached
4711  *  \retval  0   success
4712  *  \retval -ve  failure
4713  */
4714
4715 static int osd_it_iam_next(const struct lu_env *env, struct dt_it *di)
4716 {
4717         struct osd_it_iam *it = (struct osd_it_iam *)di;
4718
4719         return iam_it_next(&it->oi_it);
4720 }
4721
4722 /**
4723  * Return pointer to the key under iterator.
4724  */
4725
4726 static struct dt_key *osd_it_iam_key(const struct lu_env *env,
4727                                  const struct dt_it *di)
4728 {
4729         struct osd_thread_info *oti = osd_oti_get(env);
4730         struct osd_it_iam      *it = (struct osd_it_iam *)di;
4731         struct osd_object      *obj = it->oi_obj;
4732         struct dt_key          *key;
4733
4734         key = (struct dt_key *)iam_it_key_get(&it->oi_it);
4735
4736         if (!IS_ERR(key) && fid_is_quota(lu_object_fid(&obj->oo_dt.do_lu))) {
4737                 /* swab quota uid/gid */
4738                 oti->oti_quota_id = le64_to_cpu(*((__u64 *)key));
4739                 key = (struct dt_key *)&oti->oti_quota_id;
4740         }
4741
4742         return key;
4743 }
4744
4745 /**
4746  * Return size of key under iterator (in bytes)
4747  */
4748
4749 static int osd_it_iam_key_size(const struct lu_env *env, const struct dt_it *di)
4750 {
4751         struct osd_it_iam *it = (struct osd_it_iam *)di;
4752
4753         return iam_it_key_size(&it->oi_it);
4754 }
4755
4756 static inline void
4757 osd_it_append_attrs(struct lu_dirent *ent, int len, __u16 type)
4758 {
4759         /* check if file type is required */
4760         if (ent->lde_attrs & LUDA_TYPE) {
4761                 struct luda_type *lt;
4762                 int align = sizeof(*lt) - 1;
4763
4764                 len = (len + align) & ~align;
4765                 lt = (struct luda_type *)(ent->lde_name + len);
4766                 lt->lt_type = cpu_to_le16(DTTOIF(type));
4767         }
4768
4769         ent->lde_attrs = cpu_to_le32(ent->lde_attrs);
4770 }
4771
4772 /**
4773  * build lu direct from backend fs dirent.
4774  */
4775
4776 static inline void
4777 osd_it_pack_dirent(struct lu_dirent *ent, struct lu_fid *fid, __u64 offset,
4778                    char *name, __u16 namelen, __u16 type, __u32 attr)
4779 {
4780         ent->lde_attrs = attr | LUDA_FID;
4781         fid_cpu_to_le(&ent->lde_fid, fid);
4782
4783         ent->lde_hash = cpu_to_le64(offset);
4784         ent->lde_reclen = cpu_to_le16(lu_dirent_calc_size(namelen, attr));
4785
4786         strncpy(ent->lde_name, name, namelen);
4787         ent->lde_name[namelen] = '\0';
4788         ent->lde_namelen = cpu_to_le16(namelen);
4789
4790         /* append lustre attributes */
4791         osd_it_append_attrs(ent, namelen, type);
4792 }
4793
4794 /**
4795  * Return pointer to the record under iterator.
4796  */
4797 static int osd_it_iam_rec(const struct lu_env *env,
4798                           const struct dt_it *di,
4799                           struct dt_rec *dtrec, __u32 attr)
4800 {
4801         struct osd_it_iam      *it   = (struct osd_it_iam *)di;
4802         struct osd_thread_info *info = osd_oti_get(env);
4803         ENTRY;
4804
4805         if (S_ISDIR(it->oi_obj->oo_inode->i_mode)) {
4806                 const struct osd_fid_pack *rec;
4807                 struct lu_fid             *fid = &info->oti_fid;
4808                 struct lu_dirent          *lde = (struct lu_dirent *)dtrec;
4809                 char                      *name;
4810                 int                        namelen;
4811                 __u64                      hash;
4812                 int                        rc;
4813
4814                 name = (char *)iam_it_key_get(&it->oi_it);
4815                 if (IS_ERR(name))
4816                         RETURN(PTR_ERR(name));
4817
4818                 namelen = iam_it_key_size(&it->oi_it);
4819
4820                 rec = (const struct osd_fid_pack *)iam_it_rec_get(&it->oi_it);
4821                 if (IS_ERR(rec))
4822                         RETURN(PTR_ERR(rec));
4823
4824                 rc = osd_fid_unpack(fid, rec);
4825                 if (rc)
4826                         RETURN(rc);
4827
4828                 hash = iam_it_store(&it->oi_it);
4829
4830                 /* IAM does not store object type in IAM index (dir) */
4831                 osd_it_pack_dirent(lde, fid, hash, name, namelen,
4832                                    0, LUDA_FID);
4833         } else if (fid_is_quota(lu_object_fid(&it->oi_obj->oo_dt.do_lu))) {
4834                 iam_reccpy(&it->oi_it.ii_path.ip_leaf,
4835                            (struct iam_rec *)dtrec);
4836                 osd_quota_unpack(it->oi_obj, dtrec);
4837         } else {
4838                 iam_reccpy(&it->oi_it.ii_path.ip_leaf,
4839                            (struct iam_rec *)dtrec);
4840         }
4841
4842         RETURN(0);
4843 }
4844
4845 /**
4846  * Returns cookie for current Iterator position.
4847  */
4848 static __u64 osd_it_iam_store(const struct lu_env *env, const struct dt_it *di)
4849 {
4850         struct osd_it_iam *it = (struct osd_it_iam *)di;
4851
4852         return iam_it_store(&it->oi_it);
4853 }
4854
4855 /**
4856  * Restore iterator from cookie.
4857  *
4858  * \param  di      osd iterator
4859  * \param  hash    Iterator location cookie
4860  *
4861  * \retval +ve  di points to record with least key not larger than key.
4862  * \retval  0   di points to exact matched key
4863  * \retval -ve  failure
4864  */
4865
4866 static int osd_it_iam_load(const struct lu_env *env,
4867                            const struct dt_it *di, __u64 hash)
4868 {
4869         struct osd_it_iam *it = (struct osd_it_iam *)di;
4870
4871         return iam_it_load(&it->oi_it, hash);
4872 }
4873
4874 static const struct dt_index_operations osd_index_iam_ops = {
4875         .dio_lookup         = osd_index_iam_lookup,
4876         .dio_declare_insert = osd_index_declare_iam_insert,
4877         .dio_insert         = osd_index_iam_insert,
4878         .dio_declare_delete = osd_index_declare_iam_delete,
4879         .dio_delete         = osd_index_iam_delete,
4880         .dio_it     = {
4881                 .init     = osd_it_iam_init,
4882                 .fini     = osd_it_iam_fini,
4883                 .get      = osd_it_iam_get,
4884                 .put      = osd_it_iam_put,
4885                 .next     = osd_it_iam_next,
4886                 .key      = osd_it_iam_key,
4887                 .key_size = osd_it_iam_key_size,
4888                 .rec      = osd_it_iam_rec,
4889                 .store    = osd_it_iam_store,
4890                 .load     = osd_it_iam_load
4891         }
4892 };
4893
4894
4895 /**
4896  * Creates or initializes iterator context.
4897  *
4898  * \retval struct osd_it_ea, iterator structure on success
4899  *
4900  */
4901 static struct dt_it *osd_it_ea_init(const struct lu_env *env,
4902                                     struct dt_object *dt,
4903                                     __u32 attr,
4904                                     struct lustre_capa *capa)
4905 {
4906         struct osd_object       *obj  = osd_dt_obj(dt);
4907         struct osd_thread_info  *info = osd_oti_get(env);
4908         struct osd_it_ea        *it;
4909         struct file             *file;
4910         struct lu_object        *lo   = &dt->do_lu;
4911         struct dentry           *obj_dentry = &info->oti_it_dentry;
4912         ENTRY;
4913
4914         LASSERT(lu_object_exists(lo));
4915
4916         if (info->oti_it_inline) {
4917                 OBD_ALLOC_PTR(it);
4918                 if (it == NULL)
4919                         RETURN(ERR_PTR(-ENOMEM));
4920         } else {
4921                 it = &info->oti_it_ea;
4922                 info->oti_it_inline = 1;
4923         }
4924
4925         obj_dentry->d_inode = obj->oo_inode;
4926         obj_dentry->d_sb = osd_sb(osd_obj2dev(obj));
4927         obj_dentry->d_name.hash = 0;
4928
4929         it->oie_rd_dirent       = 0;
4930         it->oie_it_dirent       = 0;
4931         it->oie_dirent          = NULL;
4932         it->oie_buf             = info->oti_it_ea_buf;
4933         it->oie_obj             = obj;
4934
4935         file = &it->oie_file;
4936         /* Reset the "file" totally to avoid to reuse any old value from
4937          * former readdir handling, the "file->f_pos" should be zero. */
4938         memset(file, 0, sizeof(*file));
4939         /* Only FMODE_64BITHASH or FMODE_32BITHASH should be set, NOT both. */
4940         if (attr & LUDA_64BITHASH)
4941                 file->f_mode    = FMODE_64BITHASH;
4942         else
4943                 file->f_mode    = FMODE_32BITHASH;
4944         file->f_dentry          = obj_dentry;
4945         file->f_mapping         = obj->oo_inode->i_mapping;
4946         file->f_op              = obj->oo_inode->i_fop;
4947         set_file_inode(file, obj->oo_inode);
4948
4949         lu_object_get(lo);
4950         RETURN((struct dt_it *) it);
4951 }
4952
4953 /**
4954  * Destroy or finishes iterator context.
4955  *
4956  * \param di iterator structure to be destroyed
4957  */
4958 static void osd_it_ea_fini(const struct lu_env *env, struct dt_it *di)
4959 {
4960         struct osd_thread_info  *info   = osd_oti_get(env);
4961         struct osd_it_ea        *it     = (struct osd_it_ea *)di;
4962         struct osd_object       *obj    = it->oie_obj;
4963         struct inode            *inode  = obj->oo_inode;
4964
4965         ENTRY;
4966         it->oie_file.f_op->release(inode, &it->oie_file);
4967         lu_object_put(env, &obj->oo_dt.do_lu);
4968         if (it != &info->oti_it_ea)
4969                 OBD_FREE_PTR(it);
4970         else
4971                 info->oti_it_inline = 0;
4972         EXIT;
4973 }
4974
4975 /**
4976  * It position the iterator at given key, so that next lookup continues from
4977  * that key Or it is similar to dio_it->load() but based on a key,
4978  * rather than file position.
4979  *
4980  * As a special convention, osd_it_ea_get(env, di, "") has to rewind iterator
4981  * to the beginning.
4982  *
4983  * TODO: Presently return +1 considering it is only used by mdd_dir_is_empty().
4984  */
4985 static int osd_it_ea_get(const struct lu_env *env,
4986                          struct dt_it *di, const struct dt_key *key)
4987 {
4988         struct osd_it_ea     *it   = (struct osd_it_ea *)di;
4989
4990         ENTRY;
4991         LASSERT(((const char *)key)[0] == '\0');
4992         it->oie_file.f_pos      = 0;
4993         it->oie_rd_dirent       = 0;
4994         it->oie_it_dirent       = 0;
4995         it->oie_dirent          = NULL;
4996
4997         RETURN(+1);
4998 }
4999
5000 /**
5001  * Does nothing
5002  */
5003 static void osd_it_ea_put(const struct lu_env *env, struct dt_it *di)
5004 {
5005 }
5006
5007 struct osd_filldir_cbs {
5008 #ifdef HAVE_DIR_CONTEXT
5009         struct dir_context ctx;
5010 #endif
5011         struct osd_it_ea  *it;
5012 };
5013 /**
5014  * It is called internally by ->readdir(). It fills the
5015  * iterator's in-memory data structure with required
5016  * information i.e. name, namelen, rec_size etc.
5017  *
5018  * \param buf in which information to be filled in.
5019  * \param name name of the file in given dir
5020  *
5021  * \retval 0 on success
5022  * \retval 1 on buffer full
5023  */
5024 static int osd_ldiskfs_filldir(void *buf, const char *name, int namelen,
5025                                loff_t offset, __u64 ino,
5026                                unsigned d_type)
5027 {
5028         struct osd_it_ea        *it   = ((struct osd_filldir_cbs *)buf)->it;
5029         struct osd_object       *obj  = it->oie_obj;
5030         struct osd_it_ea_dirent *ent  = it->oie_dirent;
5031         struct lu_fid           *fid  = &ent->oied_fid;
5032         struct osd_fid_pack     *rec;
5033         ENTRY;
5034
5035         /* this should never happen */
5036         if (unlikely(namelen == 0 || namelen > LDISKFS_NAME_LEN)) {
5037                 CERROR("ldiskfs return invalid namelen %d\n", namelen);
5038                 RETURN(-EIO);
5039         }
5040
5041         if ((void *) ent - it->oie_buf + sizeof(*ent) + namelen >
5042             OSD_IT_EA_BUFSIZE)
5043                 RETURN(1);
5044
5045         /* "." is just the object itself. */
5046         if (namelen == 1 && name[0] == '.') {
5047                 *fid = obj->oo_dt.do_lu.lo_header->loh_fid;
5048         } else if (d_type & LDISKFS_DIRENT_LUFID) {
5049                 rec = (struct osd_fid_pack*) (name + namelen + 1);
5050                 if (osd_fid_unpack(fid, rec) != 0)
5051                         fid_zero(fid);
5052         } else {
5053                 fid_zero(fid);
5054         }
5055         d_type &= ~LDISKFS_DIRENT_LUFID;
5056
5057         /* NOT export local root. */
5058         if (unlikely(osd_sb(osd_obj2dev(obj))->s_root->d_inode->i_ino == ino)) {
5059                 ino = obj->oo_inode->i_ino;
5060                 *fid = obj->oo_dt.do_lu.lo_header->loh_fid;
5061         }
5062
5063         ent->oied_ino     = ino;
5064         ent->oied_off     = offset;
5065         ent->oied_namelen = namelen;
5066         ent->oied_type    = d_type;
5067
5068         memcpy(ent->oied_name, name, namelen);
5069
5070         it->oie_rd_dirent++;
5071         it->oie_dirent = (void *) ent + cfs_size_round(sizeof(*ent) + namelen);
5072         RETURN(0);
5073 }
5074
5075 /**
5076  * Calls ->readdir() to load a directory entry at a time
5077  * and stored it in iterator's in-memory data structure.
5078  *
5079  * \param di iterator's in memory structure
5080  *
5081  * \retval   0 on success
5082  * \retval -ve on error
5083  * \retval +1 reach the end of entry
5084  */
5085 static int osd_ldiskfs_it_fill(const struct lu_env *env,
5086                                const struct dt_it *di)
5087 {
5088         struct osd_it_ea   *it    = (struct osd_it_ea *)di;
5089         struct osd_object  *obj   = it->oie_obj;
5090         struct inode       *inode = obj->oo_inode;
5091         struct htree_lock  *hlock = NULL;
5092         struct file        *filp  = &it->oie_file;
5093         int                 rc = 0;
5094         struct osd_filldir_cbs buf = {
5095 #ifdef HAVE_DIR_CONTEXT
5096                 .ctx.actor = osd_ldiskfs_filldir,
5097 #endif
5098                 .it = it
5099         };
5100
5101         ENTRY;
5102         it->oie_dirent = it->oie_buf;
5103         it->oie_rd_dirent = 0;
5104
5105         if (obj->oo_hl_head != NULL) {
5106                 hlock = osd_oti_get(env)->oti_hlock;
5107                 ldiskfs_htree_lock(hlock, obj->oo_hl_head,
5108                                    inode, LDISKFS_HLOCK_READDIR);
5109         } else {
5110                 down_read(&obj->oo_ext_idx_sem);
5111         }
5112
5113 #ifdef HAVE_DIR_CONTEXT
5114         buf.ctx.pos = filp->f_pos;
5115         rc = inode->i_fop->iterate(filp, &buf.ctx);
5116         filp->f_pos = buf.ctx.pos;
5117 #else
5118         rc = inode->i_fop->readdir(filp, &buf, osd_ldiskfs_filldir);
5119 #endif
5120
5121         if (hlock != NULL)
5122                 ldiskfs_htree_unlock(hlock);
5123         else
5124                 up_read(&obj->oo_ext_idx_sem);
5125
5126         if (it->oie_rd_dirent == 0) {
5127                 /*If it does not get any dirent, it means it has been reached
5128                  *to the end of the dir */
5129                 it->oie_file.f_pos = ldiskfs_get_htree_eof(&it->oie_file);
5130                 if (rc == 0)
5131                         rc = 1;
5132         } else {
5133                 it->oie_dirent = it->oie_buf;
5134                 it->oie_it_dirent = 1;
5135         }
5136
5137         RETURN(rc);
5138 }
5139
5140 /**
5141  * It calls osd_ldiskfs_it_fill() which will use ->readdir()
5142  * to load a directory entry at a time and stored it in
5143  * iterator's in-memory data structure.
5144  *
5145  * \param di iterator's in memory structure
5146  *
5147  * \retval +ve iterator reached to end
5148  * \retval   0 iterator not reached to end
5149  * \retval -ve on error
5150  */
5151 static int osd_it_ea_next(const struct lu_env *env, struct dt_it *di)
5152 {
5153         struct osd_it_ea *it = (struct osd_it_ea *)di;
5154         int rc;
5155
5156         ENTRY;
5157
5158         if (it->oie_it_dirent < it->oie_rd_dirent) {
5159                 it->oie_dirent =
5160                         (void *) it->oie_dirent +
5161                         cfs_size_round(sizeof(struct osd_it_ea_dirent) +
5162                                        it->oie_dirent->oied_namelen);
5163                 it->oie_it_dirent++;
5164                 RETURN(0);
5165         } else {
5166                 if (it->oie_file.f_pos == ldiskfs_get_htree_eof(&it->oie_file))
5167                         rc = +1;
5168                 else
5169                         rc = osd_ldiskfs_it_fill(env, di);
5170         }
5171
5172         RETURN(rc);
5173 }
5174
5175 /**
5176  * Returns the key at current position from iterator's in memory structure.
5177  *
5178  * \param di iterator's in memory structure
5179  *
5180  * \retval key i.e. struct dt_key on success
5181  */
5182 static struct dt_key *osd_it_ea_key(const struct lu_env *env,
5183                                     const struct dt_it *di)
5184 {
5185         struct osd_it_ea *it = (struct osd_it_ea *)di;
5186
5187         return (struct dt_key *)it->oie_dirent->oied_name;
5188 }
5189
5190 /**
5191  * Returns the key's size at current position from iterator's in memory structure.
5192  *
5193  * \param di iterator's in memory structure
5194  *
5195  * \retval key_size i.e. struct dt_key on success
5196  */
5197 static int osd_it_ea_key_size(const struct lu_env *env, const struct dt_it *di)
5198 {
5199         struct osd_it_ea *it = (struct osd_it_ea *)di;
5200
5201         return it->oie_dirent->oied_namelen;
5202 }
5203
5204 static int
5205 osd_dirent_update(handle_t *jh, struct super_block *sb,
5206                   struct osd_it_ea_dirent *ent, struct lu_fid *fid,
5207                   struct buffer_head *bh, struct ldiskfs_dir_entry_2 *de)
5208 {
5209         struct osd_fid_pack *rec;
5210         int                  rc;
5211         ENTRY;
5212
5213         LASSERT(de->file_type & LDISKFS_DIRENT_LUFID);
5214         LASSERT(de->rec_len >= de->name_len + sizeof(struct osd_fid_pack));
5215
5216         rc = ldiskfs_journal_get_write_access(jh, bh);
5217         if (rc != 0)
5218                 RETURN(rc);
5219
5220         rec = (struct osd_fid_pack *)(de->name + de->name_len + 1);
5221         fid_cpu_to_be((struct lu_fid *)rec->fp_area, fid);
5222         rc = ldiskfs_journal_dirty_metadata(jh, bh);
5223
5224         RETURN(rc);
5225 }
5226
5227 static inline int
5228 osd_dirent_has_space(__u16 reclen, __u16 namelen, unsigned blocksize)
5229 {
5230         if (ldiskfs_rec_len_from_disk(reclen, blocksize) >=
5231             __LDISKFS_DIR_REC_LEN(namelen + 1 + sizeof(struct osd_fid_pack)))
5232                 return 1;
5233         else
5234                 return 0;
5235 }
5236
5237 static inline int
5238 osd_dot_dotdot_has_space(struct ldiskfs_dir_entry_2 *de, int dot_dotdot)
5239 {
5240         LASSERTF(dot_dotdot == 1 || dot_dotdot == 2,
5241                  "dot_dotdot = %d\n", dot_dotdot);
5242
5243         if (LDISKFS_DIR_REC_LEN(de) >=
5244             __LDISKFS_DIR_REC_LEN(dot_dotdot + 1 + sizeof(struct osd_fid_pack)))
5245                 return 1;
5246         else
5247                 return 0;
5248 }
5249
5250 static int
5251 osd_dirent_reinsert(const struct lu_env *env, handle_t *jh,
5252                     struct inode *dir, struct inode *inode,
5253                     struct osd_it_ea_dirent *ent, struct lu_fid *fid,
5254                     struct buffer_head *bh, struct ldiskfs_dir_entry_2 *de,
5255                     struct htree_lock *hlock)
5256 {
5257         struct dentry               *dentry;
5258         struct osd_fid_pack         *rec;
5259         struct ldiskfs_dentry_param *ldp;
5260         int                          rc;
5261         ENTRY;
5262
5263         if (!LDISKFS_HAS_INCOMPAT_FEATURE(inode->i_sb,
5264                                           LDISKFS_FEATURE_INCOMPAT_DIRDATA))
5265                 RETURN(0);
5266
5267         /* There is enough space to hold the FID-in-dirent. */
5268         if (osd_dirent_has_space(de->rec_len, ent->oied_namelen,
5269                                  dir->i_sb->s_blocksize)) {
5270                 rc = ldiskfs_journal_get_write_access(jh, bh);
5271                 if (rc != 0)
5272                         RETURN(rc);
5273
5274                 de->name[de->name_len] = 0;
5275                 rec = (struct osd_fid_pack *)(de->name + de->name_len + 1);
5276                 rec->fp_len = sizeof(struct lu_fid) + 1;
5277                 fid_cpu_to_be((struct lu_fid *)rec->fp_area, fid);
5278                 de->file_type |= LDISKFS_DIRENT_LUFID;
5279
5280                 rc = ldiskfs_journal_dirty_metadata(jh, bh);
5281
5282                 RETURN(rc);
5283         }
5284
5285         rc = ldiskfs_delete_entry(jh, dir, de, bh);
5286         if (rc != 0)
5287                 RETURN(rc);
5288
5289         dentry = osd_child_dentry_by_inode(env, dir, ent->oied_name,
5290                                            ent->oied_namelen);
5291         ldp = (struct ldiskfs_dentry_param *)osd_oti_get(env)->oti_ldp;
5292         osd_get_ldiskfs_dirent_param(ldp, fid);
5293         dentry->d_fsdata = (void *)ldp;
5294         ll_vfs_dq_init(dir);
5295         rc = osd_ldiskfs_add_entry(jh, dentry, inode, hlock);
5296         /* It is too bad, we cannot reinsert the name entry back.
5297          * That means we lose it! */
5298         if (rc != 0)
5299                 CDEBUG(D_LFSCK, "%.16s: fail to reinsert the dirent, "
5300                        "dir = %lu/%u, name = %.*s, "DFID": rc = %d\n",
5301                        LDISKFS_SB(inode->i_sb)->s_es->s_volume_name,
5302                        dir->i_ino, dir->i_generation,
5303                        ent->oied_namelen, ent->oied_name, PFID(fid), rc);
5304
5305         RETURN(rc);
5306 }
5307
5308 static int
5309 osd_dirent_check_repair(const struct lu_env *env, struct osd_object *obj,
5310                         struct osd_it_ea *it, struct lu_fid *fid,
5311                         struct osd_inode_id *id, __u32 *attr)
5312 {
5313         struct osd_thread_info     *info        = osd_oti_get(env);
5314         struct lustre_mdt_attrs    *lma         = &info->oti_mdt_attrs;
5315         struct osd_device          *dev         = osd_obj2dev(obj);
5316         struct super_block         *sb          = osd_sb(dev);
5317         const char                 *devname     =
5318                                         LDISKFS_SB(sb)->s_es->s_volume_name;
5319         struct osd_it_ea_dirent    *ent         = it->oie_dirent;
5320         struct inode               *dir         = obj->oo_inode;
5321         struct htree_lock          *hlock       = NULL;
5322         struct buffer_head         *bh          = NULL;
5323         handle_t                   *jh          = NULL;
5324         struct ldiskfs_dir_entry_2 *de;
5325         struct dentry              *dentry;
5326         struct inode               *inode;
5327         int                         credits;
5328         int                         rc;
5329         int                         dot_dotdot  = 0;
5330         bool                        dirty       = false;
5331         ENTRY;
5332
5333         if (ent->oied_name[0] == '.') {
5334                 if (ent->oied_namelen == 1)
5335                         dot_dotdot = 1;
5336                 else if (ent->oied_namelen == 2 && ent->oied_name[1] == '.')
5337                         dot_dotdot = 2;
5338         }
5339
5340         dentry = osd_child_dentry_get(env, obj, ent->oied_name,
5341                                       ent->oied_namelen);
5342
5343         /* We need to ensure that the name entry is still valid.
5344          * Because it may be removed or renamed by other already.
5345          *
5346          * The unlink or rename operation will start journal before PDO lock,
5347          * so to avoid deadlock, here we need to start journal handle before
5348          * related PDO lock also. But because we do not know whether there
5349          * will be something to be repaired before PDO lock, we just start
5350          * journal without conditions.
5351          *
5352          * We may need to remove the name entry firstly, then insert back.
5353          * One credit is for user quota file update.
5354          * One credit is for group quota file update.
5355          * Two credits are for dirty inode. */
5356         credits = osd_dto_credits_noquota[DTO_INDEX_DELETE] +
5357                   osd_dto_credits_noquota[DTO_INDEX_INSERT] + 1 + 1 + 2;
5358
5359 again:
5360         if (dev->od_dirent_journal) {
5361                 jh = osd_journal_start_sb(sb, LDISKFS_HT_MISC, credits);
5362                 if (IS_ERR(jh)) {
5363                         rc = PTR_ERR(jh);
5364                         CDEBUG(D_LFSCK, "%.16s: fail to start trans for dirent "
5365                                "check_repair, dir = %lu/%u, credits = %d, "
5366                                "name = %.*s: rc = %d\n",
5367                                devname, dir->i_ino, dir->i_generation, credits,
5368                                ent->oied_namelen, ent->oied_name, rc);
5369                         RETURN(rc);
5370                 }
5371
5372                 if (obj->oo_hl_head != NULL) {
5373                         hlock = osd_oti_get(env)->oti_hlock;
5374                         /* "0" means exclusive lock for the whole directory.
5375                          * We need to prevent others access such name entry
5376                          * during the delete + insert. Neither HLOCK_ADD nor
5377                          * HLOCK_DEL cannot guarantee the atomicity. */
5378                         ldiskfs_htree_lock(hlock, obj->oo_hl_head, dir, 0);
5379                 } else {
5380                         down_write(&obj->oo_ext_idx_sem);
5381                 }
5382         } else {
5383                 if (obj->oo_hl_head != NULL) {
5384                         hlock = osd_oti_get(env)->oti_hlock;
5385                         ldiskfs_htree_lock(hlock, obj->oo_hl_head, dir,
5386                                            LDISKFS_HLOCK_LOOKUP);
5387                 } else {
5388                         down_read(&obj->oo_ext_idx_sem);
5389                 }
5390         }
5391
5392         bh = osd_ldiskfs_find_entry(dir, &dentry->d_name, &de, NULL, hlock);
5393         /* For dot/dotdot entry, if there is not enough space to hold the
5394          * FID-in-dirent, just keep them there. It only happens when the
5395          * device upgraded from 1.8 or restored from MDT file-level backup.
5396          * For the whole directory, only dot/dotdot entry have no FID-in-dirent
5397          * and needs to get FID from LMA when readdir, it will not affect the
5398          * performance much. */
5399         if ((bh == NULL) || (le32_to_cpu(de->inode) != ent->oied_ino) ||
5400             (dot_dotdot != 0 && !osd_dot_dotdot_has_space(de, dot_dotdot))) {
5401                 *attr |= LUDA_IGNORE;
5402                 GOTO(out_journal, rc = 0);
5403         }
5404
5405         osd_id_gen(id, ent->oied_ino, OSD_OII_NOGEN);
5406         inode = osd_iget(info, dev, id);
5407         if (IS_ERR(inode)) {
5408                 rc = PTR_ERR(inode);
5409                 if (rc == -ENOENT || rc == -ESTALE)
5410                         rc = 1;
5411                 else
5412                         CDEBUG(D_LFSCK, "%.16s: fail to iget for dirent "
5413                                "check_repair, dir = %lu/%u, name = %.*s: "
5414                                "rc = %d\n",
5415                                devname, dir->i_ino, dir->i_generation,
5416                                ent->oied_namelen, ent->oied_name, rc);
5417
5418                 GOTO(out_journal, rc);
5419         }
5420
5421         rc = osd_get_lma(info, inode, &info->oti_obj_dentry, lma);
5422         if (rc == 0) {
5423                 LASSERT(!(lma->lma_compat & LMAC_NOT_IN_OI));
5424
5425                 if (fid_is_sane(fid)) {
5426                         /* FID-in-dirent is valid. */
5427                         if (lu_fid_eq(fid, &lma->lma_self_fid))
5428                                 GOTO(out_inode, rc = 0);
5429
5430                         /* Do not repair under dryrun mode. */
5431                         if (*attr & LUDA_VERIFY_DRYRUN) {
5432                                 *attr |= LUDA_REPAIR;
5433                                 GOTO(out_inode, rc = 0);
5434                         }
5435
5436                         if (!dev->od_dirent_journal) {
5437                                 iput(inode);
5438                                 brelse(bh);
5439                                 if (hlock != NULL)
5440                                         ldiskfs_htree_unlock(hlock);
5441                                 else
5442                                         up_read(&obj->oo_ext_idx_sem);
5443                                 dev->od_dirent_journal = 1;
5444                                 goto again;
5445                         }
5446
5447                         *fid = lma->lma_self_fid;
5448                         dirty = true;
5449                         /* Update the FID-in-dirent. */
5450                         rc = osd_dirent_update(jh, sb, ent, fid, bh, de);
5451                         if (rc == 0)
5452                                 *attr |= LUDA_REPAIR;
5453                         else
5454                                 CDEBUG(D_LFSCK, "%.16s: fail to update FID "
5455                                        "in the dirent, dir = %lu/%u, "
5456                                        "name = %.*s, "DFID": rc = %d\n",
5457                                        devname, dir->i_ino, dir->i_generation,
5458                                        ent->oied_namelen, ent->oied_name,
5459                                        PFID(fid), rc);
5460                 } else {
5461                         /* Do not repair under dryrun mode. */
5462                         if (*attr & LUDA_VERIFY_DRYRUN) {
5463                                 *fid = lma->lma_self_fid;
5464                                 *attr |= LUDA_REPAIR;
5465                                 GOTO(out_inode, rc = 0);
5466                         }
5467
5468                         if (!dev->od_dirent_journal) {
5469                                 iput(inode);
5470                                 brelse(bh);
5471                                 if (hlock != NULL)
5472                                         ldiskfs_htree_unlock(hlock);
5473                                 else
5474                                         up_read(&obj->oo_ext_idx_sem);
5475                                 dev->od_dirent_journal = 1;
5476                                 goto again;
5477                         }
5478
5479                         *fid = lma->lma_self_fid;
5480                         dirty = true;
5481                         /* Append the FID-in-dirent. */
5482                         rc = osd_dirent_reinsert(env, jh, dir, inode, ent,
5483                                                  fid, bh, de, hlock);
5484                         if (rc == 0)
5485                                 *attr |= LUDA_REPAIR;
5486                         else
5487                                 CDEBUG(D_LFSCK, "%.16s: fail to append FID "
5488                                        "after the dirent, dir = %lu/%u, "
5489                                        "name = %.*s, "DFID": rc = %d\n",
5490                                        devname, dir->i_ino, dir->i_generation,
5491                                        ent->oied_namelen, ent->oied_name,
5492                                        PFID(fid), rc);
5493                 }
5494         } else if (rc == -ENODATA) {
5495                 /* Do not repair under dryrun mode. */
5496                 if (*attr & LUDA_VERIFY_DRYRUN) {
5497                         if (fid_is_sane(fid)) {
5498                                 *attr |= LUDA_REPAIR;
5499                         } else {
5500                                 lu_igif_build(fid, inode->i_ino,
5501                                               inode->i_generation);
5502                                 *attr |= LUDA_UPGRADE;
5503                         }
5504                         GOTO(out_inode, rc = 0);
5505                 }
5506
5507                 if (!dev->od_dirent_journal) {
5508                         iput(inode);
5509                         brelse(bh);
5510                         if (hlock != NULL)
5511                                 ldiskfs_htree_unlock(hlock);
5512                         else
5513                                 up_read(&obj->oo_ext_idx_sem);
5514                         dev->od_dirent_journal = 1;
5515                         goto again;
5516                 }
5517
5518                 dirty = true;
5519                 if (unlikely(fid_is_sane(fid))) {
5520                         /* FID-in-dirent exists, but FID-in-LMA is lost.
5521                          * Trust the FID-in-dirent, and add FID-in-LMA. */
5522                         rc = osd_ea_fid_set(info, inode, fid, 0, 0);
5523                         if (rc == 0)
5524                                 *attr |= LUDA_REPAIR;
5525                         else
5526                                 CDEBUG(D_LFSCK, "%.16s: fail to set LMA for "
5527                                        "update dirent, dir = %lu/%u, "
5528                                        "name = %.*s, "DFID": rc = %d\n",
5529                                        devname, dir->i_ino, dir->i_generation,
5530                                        ent->oied_namelen, ent->oied_name,
5531                                        PFID(fid), rc);
5532                 } else {
5533                         lu_igif_build(fid, inode->i_ino, inode->i_generation);
5534                         /* It is probably IGIF object. Only aappend the
5535                          * FID-in-dirent. OI scrub will process FID-in-LMA. */
5536                         rc = osd_dirent_reinsert(env, jh, dir, inode, ent,
5537                                                  fid, bh, de, hlock);
5538                         if (rc == 0)
5539                                 *attr |= LUDA_UPGRADE;
5540                         else
5541                                 CDEBUG(D_LFSCK, "%.16s: fail to append IGIF "
5542                                        "after the dirent, dir = %lu/%u, "
5543                                        "name = %.*s, "DFID": rc = %d\n",
5544                                        devname, dir->i_ino, dir->i_generation,
5545                                        ent->oied_namelen, ent->oied_name,
5546                                        PFID(fid), rc);
5547                 }
5548         }
5549
5550         GOTO(out_inode, rc);
5551
5552 out_inode:
5553         iput(inode);
5554
5555 out_journal:
5556         brelse(bh);
5557         if (hlock != NULL) {
5558                 ldiskfs_htree_unlock(hlock);
5559         } else {
5560                 if (dev->od_dirent_journal)
5561                         up_write(&obj->oo_ext_idx_sem);
5562                 else
5563                         up_read(&obj->oo_ext_idx_sem);
5564         }
5565         if (jh != NULL)
5566                 ldiskfs_journal_stop(jh);
5567         if (rc >= 0 && !dirty)
5568                 dev->od_dirent_journal = 0;
5569         return rc;
5570 }
5571
5572 /**
5573  * Returns the value at current position from iterator's in memory structure.
5574  *
5575  * \param di struct osd_it_ea, iterator's in memory structure
5576  * \param attr attr requested for dirent.
5577  * \param lde lustre dirent
5578  *
5579  * \retval   0 no error and \param lde has correct lustre dirent.
5580  * \retval -ve on error
5581  */
5582 static inline int osd_it_ea_rec(const struct lu_env *env,
5583                                 const struct dt_it *di,
5584                                 struct dt_rec *dtrec, __u32 attr)
5585 {
5586         struct osd_it_ea       *it    = (struct osd_it_ea *)di;
5587         struct osd_object      *obj   = it->oie_obj;
5588         struct osd_device      *dev   = osd_obj2dev(obj);
5589         struct osd_scrub       *scrub = &dev->od_scrub;
5590         struct scrub_file      *sf    = &scrub->os_file;
5591         struct osd_thread_info *oti   = osd_oti_get(env);
5592         struct osd_inode_id    *id    = &oti->oti_id;
5593         struct osd_idmap_cache *oic   = &oti->oti_cache;
5594         struct lu_fid          *fid   = &it->oie_dirent->oied_fid;
5595         struct lu_dirent       *lde   = (struct lu_dirent *)dtrec;
5596         __u32                   ino   = it->oie_dirent->oied_ino;
5597         int                     rc    = 0;
5598         ENTRY;
5599
5600         LASSERT(obj->oo_inode != dev->od_mdt_map->omm_remote_parent->d_inode);
5601
5602         if (attr & LUDA_VERIFY) {
5603                 if (unlikely(ino == osd_remote_parent_ino(dev))) {
5604                         attr |= LUDA_IGNORE;
5605                         /* If the parent is on remote MDT, and there
5606                          * is no FID-in-dirent, then we have to get
5607                          * the parent FID from the linkEA.  */
5608                         osd_get_pfid_from_linkea(env, obj, fid);
5609                 } else {
5610                         rc = osd_dirent_check_repair(env, obj, it, fid, id,
5611                                                      &attr);
5612                 }
5613         } else {
5614                 attr &= ~LU_DIRENT_ATTRS_MASK;
5615                 if (!fid_is_sane(fid)) {
5616                         if (OBD_FAIL_CHECK(OBD_FAIL_FID_LOOKUP) &&
5617                             likely(it->oie_dirent->oied_namelen != 2 ||
5618                                    it->oie_dirent->oied_name[0] != '.' ||
5619                                    it->oie_dirent->oied_name[1] != '.'))
5620                                 RETURN(-ENOENT);
5621
5622                         if (unlikely(ino == osd_remote_parent_ino(dev)))
5623                                 /* If the parent is on remote MDT, and there
5624                                  * is no FID-in-dirent, then we have to get
5625                                  * the parent FID from the linkEA.  */
5626                                 rc = osd_get_pfid_from_linkea(env, obj, fid);
5627                         else
5628                                 rc = osd_ea_fid_get(env, obj, ino, fid, id);
5629                 } else {
5630                         osd_id_gen(id, ino, OSD_OII_NOGEN);
5631                 }
5632         }
5633
5634         /* Pack the entry anyway, at least the offset is right. */
5635         osd_it_pack_dirent(lde, fid, it->oie_dirent->oied_off,
5636                            it->oie_dirent->oied_name,
5637                            it->oie_dirent->oied_namelen,
5638                            it->oie_dirent->oied_type, attr);
5639
5640         if (rc < 0)
5641                 RETURN(rc);
5642
5643         if (osd_remote_fid(env, dev, fid))
5644                 RETURN(0);
5645
5646         if (likely(!(attr & LUDA_IGNORE) && rc == 0))
5647                 rc = osd_add_oi_cache(oti, dev, id, fid);
5648
5649         if (!(attr & LUDA_VERIFY) &&
5650             (scrub->os_pos_current <= ino) &&
5651             ((sf->sf_flags & SF_INCONSISTENT) ||
5652              (sf->sf_flags & SF_UPGRADE && fid_is_igif(fid)) ||
5653              ldiskfs_test_bit(osd_oi_fid2idx(dev, fid), sf->sf_oi_bitmap)))
5654                 osd_consistency_check(oti, dev, oic);
5655
5656         RETURN(rc > 0 ? 0 : rc);
5657 }
5658
5659 /**
5660  * Returns the record size size at current position.
5661  *
5662  * This function will return record(lu_dirent) size in bytes.
5663  *
5664  * \param[in] env       execution environment
5665  * \param[in] di        iterator's in memory structure
5666  * \param[in] attr      attribute of the entry, only requires LUDA_TYPE to
5667  *                      calculate the lu_dirent size.
5668  *
5669  * \retval      record size(in bytes & in memory) of the current lu_dirent
5670  *              entry.
5671  */
5672 static int osd_it_ea_rec_size(const struct lu_env *env, const struct dt_it *di,
5673                               __u32 attr)
5674 {
5675         struct osd_it_ea *it = (struct osd_it_ea *)di;
5676
5677         return lu_dirent_calc_size(it->oie_dirent->oied_namelen, attr);
5678 }
5679
5680 /**
5681  * Returns a cookie for current position of the iterator head, so that
5682  * user can use this cookie to load/start the iterator next time.
5683  *
5684  * \param di iterator's in memory structure
5685  *
5686  * \retval cookie for current position, on success
5687  */
5688 static __u64 osd_it_ea_store(const struct lu_env *env, const struct dt_it *di)
5689 {
5690         struct osd_it_ea *it = (struct osd_it_ea *)di;
5691
5692         return it->oie_dirent->oied_off;
5693 }
5694
5695 /**
5696  * It calls osd_ldiskfs_it_fill() which will use ->readdir()
5697  * to load a directory entry at a time and stored it i inn,
5698  * in iterator's in-memory data structure.
5699  *
5700  * \param di struct osd_it_ea, iterator's in memory structure
5701  *
5702  * \retval +ve on success
5703  * \retval -ve on error
5704  */
5705 static int osd_it_ea_load(const struct lu_env *env,
5706                           const struct dt_it *di, __u64 hash)
5707 {
5708         struct osd_it_ea *it = (struct osd_it_ea *)di;
5709         int rc;
5710
5711         ENTRY;
5712         it->oie_file.f_pos = hash;
5713
5714         rc =  osd_ldiskfs_it_fill(env, di);
5715         if (rc > 0)
5716                 rc = -ENODATA;
5717
5718         if (rc == 0)
5719                 rc = +1;
5720
5721         RETURN(rc);
5722 }
5723
5724 /**
5725  * Index lookup function for interoperability mode (b11826).
5726  *
5727  * \param key,  key i.e. file name to be searched
5728  *
5729  * \retval +ve, on success
5730  * \retval -ve, on error
5731  */
5732 static int osd_index_ea_lookup(const struct lu_env *env, struct dt_object *dt,
5733                                struct dt_rec *rec, const struct dt_key *key,
5734                                struct lustre_capa *capa)
5735 {
5736         struct osd_object *obj = osd_dt_obj(dt);
5737         int rc = 0;
5738
5739         ENTRY;
5740
5741         LASSERT(S_ISDIR(obj->oo_inode->i_mode));
5742         LINVRNT(osd_invariant(obj));
5743
5744         if (osd_object_auth(env, dt, capa, CAPA_OPC_INDEX_LOOKUP))
5745                 return -EACCES;
5746
5747         rc = osd_ea_lookup_rec(env, obj, rec, key);
5748         if (rc == 0)
5749                 rc = +1;
5750         RETURN(rc);
5751 }
5752
5753 /**
5754  * Index and Iterator operations for interoperability
5755  * mode (i.e. to run 2.0 mds on 1.8 disk) (b11826)
5756  */
5757 static const struct dt_index_operations osd_index_ea_ops = {
5758         .dio_lookup         = osd_index_ea_lookup,
5759         .dio_declare_insert = osd_index_declare_ea_insert,
5760         .dio_insert         = osd_index_ea_insert,
5761         .dio_declare_delete = osd_index_declare_ea_delete,
5762         .dio_delete         = osd_index_ea_delete,
5763         .dio_it     = {
5764                 .init     = osd_it_ea_init,
5765                 .fini     = osd_it_ea_fini,
5766                 .get      = osd_it_ea_get,
5767                 .put      = osd_it_ea_put,
5768                 .next     = osd_it_ea_next,
5769                 .key      = osd_it_ea_key,
5770                 .key_size = osd_it_ea_key_size,
5771                 .rec      = osd_it_ea_rec,
5772                 .rec_size = osd_it_ea_rec_size,
5773                 .store    = osd_it_ea_store,
5774                 .load     = osd_it_ea_load
5775         }
5776 };
5777
5778 static void *osd_key_init(const struct lu_context *ctx,
5779                           struct lu_context_key *key)
5780 {
5781         struct osd_thread_info *info;
5782
5783         OBD_ALLOC_PTR(info);
5784         if (info == NULL)
5785                 return ERR_PTR(-ENOMEM);
5786
5787         OBD_ALLOC(info->oti_it_ea_buf, OSD_IT_EA_BUFSIZE);
5788         if (info->oti_it_ea_buf == NULL)
5789                 goto out_free_info;
5790
5791         info->oti_env = container_of(ctx, struct lu_env, le_ctx);
5792
5793         info->oti_hlock = ldiskfs_htree_lock_alloc();
5794         if (info->oti_hlock == NULL)
5795                 goto out_free_ea;
5796
5797         return info;
5798
5799  out_free_ea:
5800         OBD_FREE(info->oti_it_ea_buf, OSD_IT_EA_BUFSIZE);
5801  out_free_info:
5802         OBD_FREE_PTR(info);
5803         return ERR_PTR(-ENOMEM);
5804 }
5805
5806 static void osd_key_fini(const struct lu_context *ctx,
5807                          struct lu_context_key *key, void* data)
5808 {
5809         struct osd_thread_info *info = data;
5810
5811         if (info->oti_hlock != NULL)
5812                 ldiskfs_htree_lock_free(info->oti_hlock);
5813         OBD_FREE(info->oti_it_ea_buf, OSD_IT_EA_BUFSIZE);
5814         lu_buf_free(&info->oti_iobuf.dr_pg_buf);
5815         lu_buf_free(&info->oti_iobuf.dr_bl_buf);
5816         lu_buf_free(&info->oti_big_buf);
5817         OBD_FREE_PTR(info);
5818 }
5819
5820 static void osd_key_exit(const struct lu_context *ctx,
5821                          struct lu_context_key *key, void *data)
5822 {
5823         struct osd_thread_info *info = data;
5824
5825         LASSERT(info->oti_r_locks == 0);
5826         LASSERT(info->oti_w_locks == 0);
5827         LASSERT(info->oti_txns    == 0);
5828 }
5829
5830 /* type constructor/destructor: osd_type_init, osd_type_fini */
5831 LU_TYPE_INIT_FINI(osd, &osd_key);
5832
5833 struct lu_context_key osd_key = {
5834         .lct_tags = LCT_DT_THREAD | LCT_MD_THREAD | LCT_MG_THREAD | LCT_LOCAL,
5835         .lct_init = osd_key_init,
5836         .lct_fini = osd_key_fini,
5837         .lct_exit = osd_key_exit
5838 };
5839
5840
5841 static int osd_device_init(const struct lu_env *env, struct lu_device *d,
5842                            const char *name, struct lu_device *next)
5843 {
5844         struct osd_device *osd = osd_dev(d);
5845
5846         if (strlcpy(osd->od_svname, name, sizeof(osd->od_svname))
5847             >= sizeof(osd->od_svname))
5848                 return -E2BIG;
5849         return osd_procfs_init(osd, name);
5850 }
5851
5852 static int osd_fid_init(const struct lu_env *env, struct osd_device *osd)
5853 {
5854         struct seq_server_site  *ss = osd_seq_site(osd);
5855         int                     rc;
5856         ENTRY;
5857
5858         if (osd->od_is_ost || osd->od_cl_seq != NULL)
5859                 RETURN(0);
5860
5861         if (unlikely(ss == NULL))
5862                 RETURN(-ENODEV);
5863
5864         OBD_ALLOC_PTR(osd->od_cl_seq);
5865         if (osd->od_cl_seq == NULL)
5866                 RETURN(-ENOMEM);
5867
5868         rc = seq_client_init(osd->od_cl_seq, NULL, LUSTRE_SEQ_METADATA,
5869                              osd->od_svname, ss->ss_server_seq);
5870
5871         if (rc != 0) {
5872                 OBD_FREE_PTR(osd->od_cl_seq);
5873                 osd->od_cl_seq = NULL;
5874         }
5875
5876         RETURN(rc);
5877 }
5878
5879 static void osd_fid_fini(const struct lu_env *env, struct osd_device *osd)
5880 {
5881         if (osd->od_cl_seq == NULL)
5882                 return;
5883
5884         seq_client_fini(osd->od_cl_seq);
5885         OBD_FREE_PTR(osd->od_cl_seq);
5886         osd->od_cl_seq = NULL;
5887 }
5888
5889 static int osd_shutdown(const struct lu_env *env, struct osd_device *o)
5890 {
5891         ENTRY;
5892
5893         /* shutdown quota slave instance associated with the device */
5894         if (o->od_quota_slave != NULL) {
5895                 qsd_fini(env, o->od_quota_slave);
5896                 o->od_quota_slave = NULL;
5897         }
5898
5899         osd_fid_fini(env, o);
5900
5901         RETURN(0);
5902 }
5903
5904 static void osd_umount(const struct lu_env *env, struct osd_device *o)
5905 {
5906         ENTRY;
5907
5908         if (o->od_mnt != NULL) {
5909                 shrink_dcache_sb(osd_sb(o));
5910                 osd_sync(env, &o->od_dt_dev);
5911
5912                 mntput(o->od_mnt);
5913                 o->od_mnt = NULL;
5914         }
5915
5916         EXIT;
5917 }
5918
5919 static int osd_mount(const struct lu_env *env,
5920                      struct osd_device *o, struct lustre_cfg *cfg)
5921 {
5922         const char              *name  = lustre_cfg_string(cfg, 0);
5923         const char              *dev  = lustre_cfg_string(cfg, 1);
5924         const char              *opts;
5925         unsigned long            page, s_flags, lmd_flags = 0;
5926         struct page             *__page;
5927         struct file_system_type *type;
5928         char                    *options = NULL;
5929         char                    *str;
5930         struct osd_thread_info  *info = osd_oti_get(env);
5931         struct lu_fid           *fid = &info->oti_fid;
5932         struct inode            *inode;
5933         int                      rc = 0;
5934         ENTRY;
5935
5936         if (o->od_mnt != NULL)
5937                 RETURN(0);
5938
5939         if (strlen(dev) >= sizeof(o->od_mntdev))
5940                 RETURN(-E2BIG);
5941         strcpy(o->od_mntdev, dev);
5942
5943         OBD_PAGE_ALLOC(__page, GFP_IOFS);
5944         if (__page == NULL)
5945                 GOTO(out, rc = -ENOMEM);
5946
5947         str = lustre_cfg_string(cfg, 2);
5948         s_flags = simple_strtoul(str, NULL, 0);
5949         str = strstr(str, ":");
5950         if (str)
5951                 lmd_flags = simple_strtoul(str + 1, NULL, 0);
5952         opts = lustre_cfg_string(cfg, 3);
5953         page = (unsigned long)page_address(__page);
5954         options = (char *)page;
5955         *options = '\0';
5956         if (opts == NULL)
5957                 strcat(options, "user_xattr,acl");
5958         else
5959                 strcat(options, opts);
5960
5961         /* Glom up mount options */
5962         if (*options != '\0')
5963                 strcat(options, ",");
5964         strlcat(options, "no_mbcache", PAGE_CACHE_SIZE);
5965
5966         type = get_fs_type("ldiskfs");
5967         if (!type) {
5968                 CERROR("%s: cannot find ldiskfs module\n", name);
5969                 GOTO(out, rc = -ENODEV);
5970         }
5971
5972         o->od_mnt = vfs_kern_mount(type, s_flags, dev, options);
5973         module_put(type->owner);
5974
5975         if (IS_ERR(o->od_mnt)) {
5976                 rc = PTR_ERR(o->od_mnt);
5977                 o->od_mnt = NULL;
5978                 CERROR("%s: can't mount %s: %d\n", name, dev, rc);
5979                 GOTO(out, rc);
5980         }
5981
5982 #ifdef HAVE_DEV_SET_RDONLY
5983         if (dev_check_rdonly(o->od_mnt->mnt_sb->s_bdev)) {
5984                 CERROR("%s: underlying device %s is marked as read-only. "
5985                        "Setup failed\n", name, dev);
5986                 GOTO(out_mnt, rc = -EROFS);
5987         }
5988 #endif
5989
5990         if (!LDISKFS_HAS_COMPAT_FEATURE(o->od_mnt->mnt_sb,
5991                                         LDISKFS_FEATURE_COMPAT_HAS_JOURNAL)) {
5992                 CERROR("%s: device %s is mounted w/o journal\n", name, dev);
5993                 GOTO(out_mnt, rc = -EINVAL);
5994         }
5995
5996 #ifdef LDISKFS_MOUNT_DIRDATA
5997         if (LDISKFS_HAS_INCOMPAT_FEATURE(o->od_mnt->mnt_sb,
5998                                          LDISKFS_FEATURE_INCOMPAT_DIRDATA))
5999                 LDISKFS_SB(osd_sb(o))->s_mount_opt |= LDISKFS_MOUNT_DIRDATA;
6000         else if (!o->od_is_ost)
6001                 CWARN("%s: device %s was upgraded from Lustre-1.x without "
6002                       "enabling the dirdata feature. If you do not want to "
6003                       "downgrade to Lustre-1.x again, you can enable it via "
6004                       "'tune2fs -O dirdata device'\n", name, dev);
6005 #endif
6006         inode = osd_sb(o)->s_root->d_inode;
6007         lu_local_obj_fid(fid, OSD_FS_ROOT_OID);
6008         rc = osd_ea_fid_set(info, inode, fid, LMAC_NOT_IN_OI, 0);
6009         if (rc != 0) {
6010                 CERROR("%s: failed to set lma on %s root inode\n", name, dev);
6011                 GOTO(out_mnt, rc);
6012         }
6013
6014         if (lmd_flags & LMD_FLG_NOSCRUB)
6015                 o->od_noscrub = 1;
6016
6017         GOTO(out, rc = 0);
6018
6019 out_mnt:
6020         mntput(o->od_mnt);
6021         o->od_mnt = NULL;
6022
6023 out:
6024         if (__page)
6025                 OBD_PAGE_FREE(__page);
6026
6027         return rc;
6028 }
6029
6030 static struct lu_device *osd_device_fini(const struct lu_env *env,
6031                                          struct lu_device *d)
6032 {
6033         struct osd_device *o = osd_dev(d);
6034         ENTRY;
6035
6036         osd_shutdown(env, o);
6037         osd_procfs_fini(o);
6038         osd_scrub_cleanup(env, o);
6039         osd_obj_map_fini(o);
6040         osd_umount(env, o);
6041
6042         RETURN(NULL);
6043 }
6044
6045 static int osd_device_init0(const struct lu_env *env,
6046                             struct osd_device *o,
6047                             struct lustre_cfg *cfg)
6048 {
6049         struct lu_device        *l = osd2lu_dev(o);
6050         struct osd_thread_info *info;
6051         int                     rc;
6052         int                     cplen = 0;
6053
6054         /* if the module was re-loaded, env can loose its keys */
6055         rc = lu_env_refill((struct lu_env *) env);
6056         if (rc)
6057                 GOTO(out, rc);
6058         info = osd_oti_get(env);
6059         LASSERT(info);
6060
6061         l->ld_ops = &osd_lu_ops;
6062         o->od_dt_dev.dd_ops = &osd_dt_ops;
6063
6064         spin_lock_init(&o->od_osfs_lock);
6065         mutex_init(&o->od_otable_mutex);
6066
6067         o->od_capa_hash = init_capa_hash();
6068         if (o->od_capa_hash == NULL)
6069                 GOTO(out, rc = -ENOMEM);
6070
6071         o->od_read_cache = 1;
6072         o->od_writethrough_cache = 1;
6073         o->od_readcache_max_filesize = OSD_MAX_CACHE_SIZE;
6074
6075         cplen = strlcpy(o->od_svname, lustre_cfg_string(cfg, 4),
6076                         sizeof(o->od_svname));
6077         if (cplen >= sizeof(o->od_svname)) {
6078                 rc = -E2BIG;
6079                 GOTO(out_capa, rc);
6080         }
6081
6082         if (server_name_is_ost(o->od_svname))
6083                 o->od_is_ost = 1;
6084
6085         o->od_full_scrub_ratio = OFSR_DEFAULT;
6086         o->od_full_scrub_speed = FULL_SCRUB_SPEED_DEFULT;
6087         rc = osd_mount(env, o, cfg);
6088         if (rc != 0)
6089                 GOTO(out_capa, rc);
6090
6091         rc = osd_obj_map_init(env, o);
6092         if (rc != 0)
6093                 GOTO(out_mnt, rc);
6094
6095         rc = lu_site_init(&o->od_site, l);
6096         if (rc != 0)
6097                 GOTO(out_compat, rc);
6098         o->od_site.ls_bottom_dev = l;
6099
6100         rc = lu_site_init_finish(&o->od_site);
6101         if (rc != 0)
6102                 GOTO(out_site, rc);
6103
6104         /* self-repair LMA by default */
6105         o->od_lma_self_repair = 1;
6106
6107         INIT_LIST_HEAD(&o->od_ios_list);
6108         /* setup scrub, including OI files initialization */
6109         rc = osd_scrub_setup(env, o);
6110         if (rc < 0)
6111                 GOTO(out_site, rc);
6112
6113         rc = osd_procfs_init(o, o->od_svname);
6114         if (rc != 0) {
6115                 CERROR("%s: can't initialize procfs: rc = %d\n",
6116                        o->od_svname, rc);
6117                 GOTO(out_scrub, rc);
6118         }
6119
6120         LASSERT(l->ld_site->ls_linkage.next != NULL);
6121         LASSERT(l->ld_site->ls_linkage.prev != NULL);
6122
6123         /* initialize quota slave instance */
6124         o->od_quota_slave = qsd_init(env, o->od_svname, &o->od_dt_dev,
6125                                      o->od_proc_entry);
6126         if (IS_ERR(o->od_quota_slave)) {
6127                 rc = PTR_ERR(o->od_quota_slave);
6128                 o->od_quota_slave = NULL;
6129                 GOTO(out_procfs, rc);
6130         }
6131
6132         RETURN(0);
6133
6134 out_procfs:
6135         osd_procfs_fini(o);
6136 out_scrub:
6137         osd_scrub_cleanup(env, o);
6138 out_site:
6139         lu_site_fini(&o->od_site);
6140 out_compat:
6141         osd_obj_map_fini(o);
6142 out_mnt:
6143         osd_umount(env, o);
6144 out_capa:
6145         cleanup_capa_hash(o->od_capa_hash);
6146 out:
6147         return rc;
6148 }
6149
6150 static struct lu_device *osd_device_alloc(const struct lu_env *env,
6151                                           struct lu_device_type *t,
6152                                           struct lustre_cfg *cfg)
6153 {
6154         struct osd_device *o;
6155         int                rc;
6156
6157         OBD_ALLOC_PTR(o);
6158         if (o == NULL)
6159                 return ERR_PTR(-ENOMEM);
6160
6161         rc = dt_device_init(&o->od_dt_dev, t);
6162         if (rc == 0) {
6163                 /* Because the ctx might be revived in dt_device_init,
6164                  * refill the env here */
6165                 lu_env_refill((struct lu_env *)env);
6166                 rc = osd_device_init0(env, o, cfg);
6167                 if (rc)
6168                         dt_device_fini(&o->od_dt_dev);
6169         }
6170
6171         if (unlikely(rc != 0))
6172                 OBD_FREE_PTR(o);
6173
6174         return rc == 0 ? osd2lu_dev(o) : ERR_PTR(rc);
6175 }
6176
6177 static struct lu_device *osd_device_free(const struct lu_env *env,
6178                                          struct lu_device *d)
6179 {
6180         struct osd_device *o = osd_dev(d);
6181         ENTRY;
6182
6183         cleanup_capa_hash(o->od_capa_hash);
6184         /* XXX: make osd top device in order to release reference */
6185         d->ld_site->ls_top_dev = d;
6186         lu_site_purge(env, d->ld_site, -1);
6187         if (!cfs_hash_is_empty(d->ld_site->ls_obj_hash)) {
6188                 LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, D_ERROR, NULL);
6189                 lu_site_print(env, d->ld_site, &msgdata, lu_cdebug_printer);
6190         }
6191         lu_site_fini(&o->od_site);
6192         dt_device_fini(&o->od_dt_dev);
6193         OBD_FREE_PTR(o);
6194         RETURN(NULL);
6195 }
6196
6197 static int osd_process_config(const struct lu_env *env,
6198                               struct lu_device *d, struct lustre_cfg *cfg)
6199 {
6200         struct osd_device               *o = osd_dev(d);
6201         int                             rc;
6202         ENTRY;
6203
6204         switch (cfg->lcfg_command) {
6205         case LCFG_SETUP:
6206                 rc = osd_mount(env, o, cfg);
6207                 break;
6208         case LCFG_CLEANUP:
6209                 lu_dev_del_linkage(d->ld_site, d);
6210                 rc = osd_shutdown(env, o);
6211                 break;
6212         case LCFG_PARAM:
6213                 LASSERT(&o->od_dt_dev);
6214                 rc = class_process_proc_param(PARAM_OSD, lprocfs_osd_obd_vars,
6215                                               cfg, &o->od_dt_dev);
6216                 if (rc > 0 || rc == -ENOSYS)
6217                         rc = class_process_proc_param(PARAM_OST,
6218                                                       lprocfs_osd_obd_vars,
6219                                                       cfg, &o->od_dt_dev);
6220                 break;
6221         default:
6222                 rc = -ENOSYS;
6223         }
6224
6225         RETURN(rc);
6226 }
6227
6228 static int osd_recovery_complete(const struct lu_env *env,
6229                                  struct lu_device *d)
6230 {
6231         struct osd_device       *osd = osd_dev(d);
6232         int                      rc = 0;
6233         ENTRY;
6234
6235         if (osd->od_quota_slave == NULL)
6236                 RETURN(0);
6237
6238         /* start qsd instance on recovery completion, this notifies the quota
6239          * slave code that we are about to process new requests now */
6240         rc = qsd_start(env, osd->od_quota_slave);
6241         RETURN(rc);
6242 }
6243
6244 /*
6245  * we use exports to track all osd users
6246  */
6247 static int osd_obd_connect(const struct lu_env *env, struct obd_export **exp,
6248                            struct obd_device *obd, struct obd_uuid *cluuid,
6249                            struct obd_connect_data *data, void *localdata)
6250 {
6251         struct osd_device    *osd = osd_dev(obd->obd_lu_dev);
6252         struct lustre_handle  conn;
6253         int                   rc;
6254         ENTRY;
6255
6256         CDEBUG(D_CONFIG, "connect #%d\n", osd->od_connects);
6257
6258         rc = class_connect(&conn, obd, cluuid);
6259         if (rc)
6260                 RETURN(rc);
6261
6262         *exp = class_conn2export(&conn);
6263
6264         spin_lock(&osd->od_osfs_lock);
6265         osd->od_connects++;
6266         spin_unlock(&osd->od_osfs_lock);
6267
6268         RETURN(0);
6269 }
6270
6271 /*
6272  * once last export (we don't count self-export) disappeared
6273  * osd can be released
6274  */
6275 static int osd_obd_disconnect(struct obd_export *exp)
6276 {
6277         struct obd_device *obd = exp->exp_obd;
6278         struct osd_device *osd = osd_dev(obd->obd_lu_dev);
6279         int                rc, release = 0;
6280         ENTRY;
6281
6282         /* Only disconnect the underlying layers on the final disconnect. */
6283         spin_lock(&osd->od_osfs_lock);
6284         osd->od_connects--;
6285         if (osd->od_connects == 0)
6286                 release = 1;
6287         spin_unlock(&osd->od_osfs_lock);
6288
6289         rc = class_disconnect(exp); /* bz 9811 */
6290
6291         if (rc == 0 && release)
6292                 class_manual_cleanup(obd);
6293         RETURN(rc);
6294 }
6295
6296 static int osd_prepare(const struct lu_env *env, struct lu_device *pdev,
6297                        struct lu_device *dev)
6298 {
6299         struct osd_device *osd = osd_dev(dev);
6300         int                result = 0;
6301         ENTRY;
6302
6303         if (osd->od_quota_slave != NULL) {
6304                 /* set up quota slave objects */
6305                 result = qsd_prepare(env, osd->od_quota_slave);
6306                 if (result != 0)
6307                         RETURN(result);
6308         }
6309
6310         result = osd_fid_init(env, osd);
6311
6312         RETURN(result);
6313 }
6314
6315 int osd_fid_alloc(const struct lu_env *env, struct obd_export *exp,
6316                   struct lu_fid *fid, struct md_op_data *op_data)
6317 {
6318         struct osd_device *osd = osd_dev(exp->exp_obd->obd_lu_dev);
6319
6320         return seq_client_alloc_fid(env, osd->od_cl_seq, fid);
6321 }
6322
6323 static const struct lu_object_operations osd_lu_obj_ops = {
6324         .loo_object_init      = osd_object_init,
6325         .loo_object_delete    = osd_object_delete,
6326         .loo_object_release   = osd_object_release,
6327         .loo_object_free      = osd_object_free,
6328         .loo_object_print     = osd_object_print,
6329         .loo_object_invariant = osd_object_invariant
6330 };
6331
6332 const struct lu_device_operations osd_lu_ops = {
6333         .ldo_object_alloc      = osd_object_alloc,
6334         .ldo_process_config    = osd_process_config,
6335         .ldo_recovery_complete = osd_recovery_complete,
6336         .ldo_prepare           = osd_prepare,
6337 };
6338
6339 static const struct lu_device_type_operations osd_device_type_ops = {
6340         .ldto_init = osd_type_init,
6341         .ldto_fini = osd_type_fini,
6342
6343         .ldto_start = osd_type_start,
6344         .ldto_stop  = osd_type_stop,
6345
6346         .ldto_device_alloc = osd_device_alloc,
6347         .ldto_device_free  = osd_device_free,
6348
6349         .ldto_device_init    = osd_device_init,
6350         .ldto_device_fini    = osd_device_fini
6351 };
6352
6353 struct lu_device_type osd_device_type = {
6354         .ldt_tags     = LU_DEVICE_DT,
6355         .ldt_name     = LUSTRE_OSD_LDISKFS_NAME,
6356         .ldt_ops      = &osd_device_type_ops,
6357         .ldt_ctx_tags = LCT_LOCAL,
6358 };
6359
6360 /*
6361  * lprocfs legacy support.
6362  */
6363 static struct obd_ops osd_obd_device_ops = {
6364         .o_owner = THIS_MODULE,
6365         .o_connect      = osd_obd_connect,
6366         .o_disconnect   = osd_obd_disconnect,
6367         .o_fid_alloc    = osd_fid_alloc,
6368 };
6369
6370 static int __init osd_mod_init(void)
6371 {
6372         int rc;
6373
6374         osd_oi_mod_init();
6375
6376         rc = lu_kmem_init(ldiskfs_caches);
6377         if (rc)
6378                 return rc;
6379
6380         rc = class_register_type(&osd_obd_device_ops, NULL, true,
6381                                  lprocfs_osd_module_vars,
6382                                  LUSTRE_OSD_LDISKFS_NAME, &osd_device_type);
6383         if (rc)
6384                 lu_kmem_fini(ldiskfs_caches);
6385         return rc;
6386 }
6387
6388 static void __exit osd_mod_exit(void)
6389 {
6390         class_unregister_type(LUSTRE_OSD_LDISKFS_NAME);
6391         lu_kmem_fini(ldiskfs_caches);
6392 }
6393
6394 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
6395 MODULE_DESCRIPTION("Lustre Object Storage Device ("LUSTRE_OSD_LDISKFS_NAME")");
6396 MODULE_LICENSE("GPL");
6397
6398 cfs_module(osd, "0.1.0", osd_mod_init, osd_mod_exit);