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