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