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