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