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