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