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