Whamcloud - gitweb
LU-17744 ldiskfs: mballoc stats fixes
[fs/lustre-release.git] / lustre / osd-zfs / osd_index.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) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  *
31  * lustre/osd-zfs/osd_index.c
32  *
33  * Author: Alex Zhuravlev <bzzz@whamcloud.com>
34  * Author: Mike Pershin <tappro@whamcloud.com>
35  */
36
37 #define DEBUG_SUBSYSTEM S_OSD
38
39 #include <libcfs/libcfs.h>
40 #include <obd_support.h>
41 #include <lustre_net.h>
42 #include <obd.h>
43 #include <obd_class.h>
44 #include <lustre_disk.h>
45 #include <lustre_fid.h>
46
47 #include "osd_internal.h"
48
49 #include <sys/dnode.h>
50 #include <sys/spa.h>
51 #include <sys/stat.h>
52 #include <sys/zap.h>
53 #include <sys/spa_impl.h>
54 #include <sys/zfs_znode.h>
55 #include <sys/dmu_tx.h>
56 #include <sys/dmu_objset.h>
57 #include <sys/dsl_prop.h>
58 #include <sys/sa_impl.h>
59 #include <sys/txg.h>
60 #include <lustre_scrub.h>
61
62 /* We don't actually have direct access to the zap_hashbits() function
63  * so just pretend like we do for now.  If this ever breaks we can look at
64  * it at that time. */
65 #define zap_hashbits(zc) 48
66 /*
67  * ZFS hash format:
68  * | cd (16 bits) | hash (48 bits) |
69  * we need it in other form:
70  * |0| hash (48 bit) | cd (15 bit) |
71  * to be a full 64-bit ordered hash so that Lustre readdir can use it to merge
72  * the readdir hashes from multiple directory stripes uniformly on the client.
73  * Another point is sign bit, the hash range should be in [0, 2^63-1] because
74  * loff_t (for llseek) needs to be a positive value.  This means the "cd" field
75  * should only be the low 15 bits.
76  */
77 uint64_t osd_zap_cursor_serialize(zap_cursor_t *zc)
78 {
79         uint64_t zfs_hash = zap_cursor_serialize(zc) & (~0ULL >> 1);
80
81         return (zfs_hash >> zap_hashbits(zc)) |
82                 (zfs_hash << (63 - zap_hashbits(zc)));
83 }
84
85 void osd_zap_cursor_init_serialized(zap_cursor_t *zc, struct objset *os,
86                                     uint64_t id, uint64_t dirhash)
87 {
88         uint64_t zfs_hash = ((dirhash << zap_hashbits(zc)) & (~0ULL >> 1)) |
89                 (dirhash >> (63 - zap_hashbits(zc)));
90
91         zap_cursor_init_serialized(zc, os, id, zfs_hash);
92 }
93
94 int osd_zap_cursor_init(zap_cursor_t **zc, struct objset *os,
95                         uint64_t id, uint64_t dirhash)
96 {
97         zap_cursor_t *t;
98
99         OBD_ALLOC_PTR(t);
100         if (unlikely(t == NULL))
101                 return -ENOMEM;
102
103         osd_zap_cursor_init_serialized(t, os, id, dirhash);
104         *zc = t;
105
106         return 0;
107 }
108
109 void osd_zap_cursor_fini(zap_cursor_t *zc)
110 {
111         zap_cursor_fini(zc);
112         OBD_FREE_PTR(zc);
113 }
114
115 static inline void osd_obj_cursor_init_serialized(zap_cursor_t *zc,
116                                                  struct osd_object *o,
117                                                  uint64_t dirhash)
118 {
119         struct osd_device *d = osd_obj2dev(o);
120         osd_zap_cursor_init_serialized(zc, d->od_os,
121                                        o->oo_dn->dn_object, dirhash);
122 }
123
124 static inline int osd_obj_cursor_init(zap_cursor_t **zc, struct osd_object *o,
125                         uint64_t dirhash)
126 {
127         struct osd_device *d = osd_obj2dev(o);
128         return osd_zap_cursor_init(zc, d->od_os, o->oo_dn->dn_object, dirhash);
129 }
130
131 static struct dt_it *osd_index_it_init(const struct lu_env *env,
132                                        struct dt_object *dt,
133                                        __u32 unused)
134 {
135         struct osd_thread_info  *info = osd_oti_get(env);
136         struct osd_zap_it       *it;
137         struct osd_object       *obj = osd_dt_obj(dt);
138         struct lu_object        *lo  = &dt->do_lu;
139         int                      rc;
140         ENTRY;
141
142         if (obj->oo_destroyed)
143                 RETURN(ERR_PTR(-ENOENT));
144
145         LASSERT(lu_object_exists(lo));
146         LASSERT(obj->oo_dn);
147         LASSERT(info);
148
149         OBD_SLAB_ALLOC_PTR_GFP(it, osd_zapit_cachep, GFP_NOFS);
150         if (it == NULL)
151                 RETURN(ERR_PTR(-ENOMEM));
152
153         rc = osd_obj_cursor_init(&it->ozi_zc, obj, 0);
154         if (rc != 0) {
155                 OBD_SLAB_FREE_PTR(it, osd_zapit_cachep);
156                 RETURN(ERR_PTR(rc));
157         }
158
159         it->ozi_obj   = obj;
160         it->ozi_reset = 1;
161         lu_object_get(lo);
162
163         RETURN((struct dt_it *)it);
164 }
165
166 static void osd_index_it_fini(const struct lu_env *env, struct dt_it *di)
167 {
168         struct osd_zap_it       *it     = (struct osd_zap_it *)di;
169         struct osd_object       *obj;
170         ENTRY;
171
172         LASSERT(it);
173         LASSERT(it->ozi_obj);
174
175         obj = it->ozi_obj;
176
177         osd_zap_cursor_fini(it->ozi_zc);
178         osd_object_put(env, obj);
179         OBD_SLAB_FREE_PTR(it, osd_zapit_cachep);
180
181         EXIT;
182 }
183
184
185 static void osd_index_it_put(const struct lu_env *env, struct dt_it *di)
186 {
187         /* PBS: do nothing : ref are incremented at retrive and decreamented
188          *      next/finish. */
189 }
190
191 static inline void osd_it_append_attrs(struct lu_dirent *ent, __u32 attr,
192                                        int len, __u16 type)
193 {
194         const unsigned    align = sizeof(struct luda_type) - 1;
195         struct luda_type *lt;
196
197         /* check if file type is required */
198         if (attr & LUDA_TYPE) {
199                 len = (len + align) & ~align;
200
201                 lt = (void *)ent->lde_name + len;
202                 lt->lt_type = cpu_to_le16(DTTOIF(type));
203                 ent->lde_attrs |= LUDA_TYPE;
204         }
205
206         ent->lde_attrs = cpu_to_le32(ent->lde_attrs);
207 }
208
209 int __osd_xattr_load_by_oid(struct osd_device *osd, uint64_t oid, nvlist_t **sa)
210 {
211         sa_handle_t *hdl;
212         dmu_buf_t *db;
213         int rc;
214
215         rc = -dmu_bonus_hold(osd->od_os, oid, osd_obj_tag, &db);
216         if (rc < 0) {
217                 CERROR("%s: can't get bonus, rc = %d\n", osd->od_svname, rc);
218                 return rc;
219         }
220
221         rc = -sa_handle_get_from_db(osd->od_os, db, NULL, SA_HDL_PRIVATE, &hdl);
222         if (rc) {
223                 dmu_buf_rele(db, osd_obj_tag);
224                 return rc;
225         }
226
227         rc = __osd_xattr_load(osd, hdl, sa);
228
229         sa_handle_destroy(hdl);
230
231         return rc;
232 }
233 /**
234  * Get the object's FID from its LMA EA.
235  *
236  * \param[in] env       pointer to the thread context
237  * \param[in] osd       pointer to the OSD device
238  * \param[in] oid       the object's local identifier
239  * \param[out] fid      the buffer to hold the object's FID
240  *
241  * \retval              0 for success
242  * \retval              negative error number on failure
243  */
244 int osd_get_fid_by_oid(const struct lu_env *env, struct osd_device *osd,
245                        uint64_t oid, struct lu_fid *fid)
246 {
247         struct objset           *os       = osd->od_os;
248         struct osd_thread_info  *oti      = osd_oti_get(env);
249         struct lustre_mdt_attrs *lma      =
250                         (struct lustre_mdt_attrs *)oti->oti_buf;
251         struct lu_buf            buf;
252         nvlist_t                *sa_xattr = NULL;
253         sa_handle_t             *sa_hdl   = NULL;
254         uchar_t                 *nv_value = NULL;
255         uint64_t                 xattr    = ZFS_NO_OBJECT;
256         int                      size     = 0;
257         int                      rc;
258         ENTRY;
259
260         rc = __osd_xattr_load_by_oid(osd, oid, &sa_xattr);
261         if (rc == -ENOENT)
262                 goto regular;
263
264         if (rc != 0)
265                 GOTO(out, rc);
266
267         rc = -nvlist_lookup_byte_array(sa_xattr, XATTR_NAME_LMA, &nv_value,
268                                        &size);
269         if (rc == -ENOENT)
270                 goto regular;
271
272         if (rc != 0)
273                 GOTO(out, rc);
274
275         if (unlikely(size > sizeof(oti->oti_buf)))
276                 GOTO(out, rc = -ERANGE);
277
278         memcpy(lma, nv_value, size);
279
280         goto found;
281
282 regular:
283         rc = -sa_handle_get(os, oid, NULL, SA_HDL_PRIVATE, &sa_hdl);
284         if (rc != 0)
285                 GOTO(out, rc);
286
287         rc = -sa_lookup(sa_hdl, SA_ZPL_XATTR(osd), &xattr, 8);
288         sa_handle_destroy(sa_hdl);
289         if (rc != 0)
290                 GOTO(out, rc);
291
292         buf.lb_buf = lma;
293         buf.lb_len = sizeof(oti->oti_buf);
294         rc = __osd_xattr_get_large(env, osd, xattr, &buf,
295                                    XATTR_NAME_LMA, &size);
296         if (rc != 0)
297                 GOTO(out, rc);
298
299 found:
300         if (size < sizeof(*lma))
301                 GOTO(out, rc = -EIO);
302
303         lustre_lma_swab(lma);
304         if (unlikely((lma->lma_incompat & ~LMA_INCOMPAT_SUPP) ||
305                      CFS_FAIL_CHECK(OBD_FAIL_OSD_LMA_INCOMPAT))) {
306                 CWARN("%s: unsupported incompat LMA feature(s) %#x for "
307                       "oid = %#llx\n", osd->od_svname,
308                       lma->lma_incompat & ~LMA_INCOMPAT_SUPP, oid);
309                 GOTO(out, rc = -EOPNOTSUPP);
310         } else {
311                 *fid = lma->lma_self_fid;
312                 GOTO(out, rc = 0);
313         }
314
315 out:
316         if (sa_xattr != NULL)
317                 nvlist_free(sa_xattr);
318         return rc;
319 }
320
321 /*
322  * As we don't know FID, we can't use LU object, so this function
323  * partially duplicate osd_xattr_get_internal() which is built around
324  * LU-object and uses it to cache data like regular EA dnode, etc
325  */
326 static int osd_find_parent_by_dnode(const struct lu_env *env,
327                                     struct dt_object *o,
328                                     struct lu_fid *fid, uint64_t *oid)
329 {
330         struct osd_object       *obj = osd_dt_obj(o);
331         struct osd_device       *osd = osd_obj2dev(obj);
332         uint64_t                 dnode = ZFS_NO_OBJECT;
333         int                      rc;
334         ENTRY;
335
336         /* first of all, get parent dnode from own attributes */
337         rc = osd_sa_handle_get(obj);
338         if (rc != 0)
339                 RETURN(rc);
340         rc = -sa_lookup(obj->oo_sa_hdl, SA_ZPL_PARENT(osd), &dnode, 8);
341         if (!rc) {
342                 if (oid)
343                         *oid = dnode;
344                 rc = osd_get_fid_by_oid(env, osd, dnode, fid);
345         }
346
347         RETURN(rc);
348 }
349
350 static int osd_find_parent_fid(const struct lu_env *env, struct dt_object *o,
351                                struct lu_fid *fid, uint64_t *oid)
352 {
353         struct link_ea_header  *leh;
354         struct link_ea_entry   *lee;
355         struct lu_buf           buf;
356         int                     rc;
357         ENTRY;
358
359         buf.lb_buf = osd_oti_get(env)->oti_buf;
360         buf.lb_len = sizeof(osd_oti_get(env)->oti_buf);
361
362         rc = osd_xattr_get(env, o, &buf, XATTR_NAME_LINK);
363         if (rc == -ERANGE) {
364                 rc = osd_xattr_get(env, o, &LU_BUF_NULL, XATTR_NAME_LINK);
365                 if (rc < 0)
366                         RETURN(rc);
367                 LASSERT(rc > 0);
368                 OBD_ALLOC(buf.lb_buf, rc);
369                 if (buf.lb_buf == NULL)
370                         RETURN(-ENOMEM);
371                 buf.lb_len = rc;
372                 rc = osd_xattr_get(env, o, &buf, XATTR_NAME_LINK);
373         }
374         if (rc < 0)
375                 GOTO(out, rc);
376         if (rc < sizeof(*leh) + sizeof(*lee))
377                 GOTO(out, rc = -EINVAL);
378
379         leh = buf.lb_buf;
380         if (leh->leh_magic == __swab32(LINK_EA_MAGIC)) {
381                 leh->leh_magic = LINK_EA_MAGIC;
382                 leh->leh_reccount = __swab32(leh->leh_reccount);
383                 leh->leh_len = __swab64(leh->leh_len);
384         }
385         if (leh->leh_magic != LINK_EA_MAGIC)
386                 GOTO(out, rc = -EINVAL);
387         if (leh->leh_reccount == 0)
388                 GOTO(out, rc = -ENODATA);
389
390         lee = (struct link_ea_entry *)(leh + 1);
391         fid_be_to_cpu(fid, (const struct lu_fid *)&lee->lee_parent_fid);
392         rc = 0;
393
394 out:
395         if (buf.lb_buf != osd_oti_get(env)->oti_buf)
396                 OBD_FREE(buf.lb_buf, buf.lb_len);
397
398 #if 0
399         /* this block can be enabled for additional verification
400          * it's trying to match FID from LinkEA vs. FID from LMA */
401         if (rc == 0) {
402                 struct lu_fid fid2;
403                 int rc2;
404                 rc2 = osd_find_parent_by_dnode(env, o, &fid2, oid);
405                 if (rc2 == 0)
406                         if (lu_fid_eq(fid, &fid2) == 0)
407                                 CERROR("wrong parent: "DFID" != "DFID"\n",
408                                        PFID(fid), PFID(&fid2));
409         }
410 #endif
411
412         /* no LinkEA is found, let's try to find the fid in parent's LMA */
413         if (unlikely(rc != 0))
414                 rc = osd_find_parent_by_dnode(env, o, fid, oid);
415
416         RETURN(rc);
417 }
418
419 /*
420  * When lookup item under striped directory, we need to locate the master
421  * MDT-object of the striped directory firstly, then the client will send
422  * lookup (getattr_by_name) RPC to the MDT with some slave MDT-object's FID
423  * and the item's name. If the system is restored from MDT file level backup,
424  * then before the OI scrub completely built the OI files, the OI mappings of
425  * the master MDT-object and slave MDT-object may be invalid. Usually, it is
426  * not a problem for the master MDT-object. Because when locate the master
427  * MDT-object, we will do name based lookup (for the striped directory itself)
428  * firstly, during such process we can setup the correct OI mapping for the
429  * master MDT-object. But it will be trouble for the slave MDT-object. Because
430  * the client will not trigger name based lookup on the MDT to locate the slave
431  * MDT-object before locating item under the striped directory, then when
432  * osd_fid_lookup(), it will find that the OI mapping for the slave MDT-object
433  * is invalid and does not know what the right OI mapping is, then the MDT has
434  * to return -EINPROGRESS to the client to notify that the OI scrub is rebuiding
435  * the OI file, related OI mapping is unknown yet, please try again later. And
436  * then client will re-try the RPC again and again until related OI mapping has
437  * been updated. That is quite inefficient.
438  *
439  * To resolve above trouble, we will handle it as the following two cases:
440  *
441  * 1) The slave MDT-object and the master MDT-object are on different MDTs.
442  *    It is relative easy. Be as one of remote MDT-objects, the slave MDT-object
443  *    is linked under /REMOTE_PARENT_DIR with the name of its FID string.
444  *    We can locate the slave MDT-object via lookup the /REMOTE_PARENT_DIR
445  *    directly. Please check osd_fid_lookup().
446  *
447  * 2) The slave MDT-object and the master MDT-object reside on the same MDT.
448  *    Under such case, during lookup the master MDT-object, we will lookup the
449  *    slave MDT-object via readdir against the master MDT-object, because the
450  *    slave MDT-objects information are stored as sub-directories with the name
451  *    "${FID}:${index}". Then when find the local slave MDT-object, its OI
452  *    mapping will be recorded. Then subsequent osd_fid_lookup() will know
453  *    the correct OI mapping for the slave MDT-object.
454  */
455 static int osd_check_lmv(const struct lu_env *env, struct osd_device *osd,
456                          uint64_t oid, const struct lu_fid *fid)
457 {
458         struct osd_thread_info *info = osd_oti_get(env);
459         struct luz_direntry *zde = &info->oti_zde;
460         zap_attribute_t *za = &info->oti_za;
461         zap_cursor_t *zc = &info->oti_zc;
462         struct lu_fid *tfid = &info->oti_fid;
463         nvlist_t *nvbuf = NULL;
464         struct lmv_mds_md_v1 *lmv = NULL;
465         int size;
466         int rc;
467         ENTRY;
468
469         rc = __osd_xattr_load_by_oid(osd, oid, &nvbuf);
470         if (rc == -ENOENT || rc == -EEXIST || rc == -ENODATA)
471                 RETURN(0);
472
473         if (rc)
474                 RETURN(rc);
475
476         rc = -nvlist_lookup_byte_array(nvbuf, XATTR_NAME_LMV,
477                                        (uchar_t **)&lmv, &size);
478         if (rc == -ENOENT || rc == -EEXIST || rc == -ENODATA)
479                 GOTO(out_nvbuf, rc = 0);
480
481         if (rc)
482                 GOTO(out_nvbuf, rc);
483
484         if (le32_to_cpu(lmv->lmv_magic) != LMV_MAGIC_V1)
485                 GOTO(out_nvbuf, rc = -EINVAL);
486
487         zap_cursor_init_serialized(zc, osd->od_os, oid, 0);
488         rc = -zap_cursor_retrieve(zc, za);
489         if (rc == -ENOENT) {
490                 zap_cursor_advance(zc);
491         } else if (rc) {
492                 CERROR("%s: fail to init for check LMV "DFID"(%llu): rc = %d\n",
493                        osd_name(osd), PFID(fid), oid, rc);
494                 GOTO(out_zc, rc);
495         }
496
497         while (1) {
498                 rc = -zap_cursor_retrieve(zc, za);
499                 if (rc == -ENOENT)
500                         GOTO(out_zc, rc = 0);
501
502                 if (rc) {
503                         CERROR("%s: fail to locate next for check LMV "
504                                DFID"(%llu): rc = %d\n",
505                                osd_name(osd), PFID(fid), oid, rc);
506                         GOTO(out_zc, rc);
507                 }
508
509                 fid_zero(tfid);
510                 sscanf(za->za_name + 1, SFID, RFID(tfid));
511                 if (fid_is_sane(tfid) && !osd_remote_fid(env, osd, tfid)) {
512                         rc = osd_zap_lookup(osd, oid, NULL, za->za_name,
513                                         za->za_integer_length,
514                                         sizeof(*zde) / za->za_integer_length,
515                                         (void *)zde);
516                         if (rc) {
517                                 CERROR("%s: fail to lookup for check LMV "
518                                        DFID"(%llu): rc = %d\n",
519                                        osd_name(osd), PFID(fid), oid, rc);
520                                 GOTO(out_zc, rc);
521                         }
522
523                         rc = osd_oii_insert(env, osd, tfid,
524                                             zde->lzd_reg.zde_dnode, false);
525                         GOTO(out_zc, rc);
526                 }
527
528                 zap_cursor_advance(zc);
529         }
530
531 out_zc:
532         zap_cursor_fini(zc);
533 out_nvbuf:
534         nvlist_free(nvbuf);
535
536         return rc;
537 }
538
539 static void
540 osd_zfs_consistency_check(const struct lu_env *env, struct osd_device *osd,
541                           struct osd_object *obj, const struct lu_fid *fid,
542                           u64 oid, bool is_dir)
543 {
544         struct lustre_scrub *scrub = &osd->od_scrub;
545         dnode_t *dn = NULL;
546         uint64_t oid2;
547         int once = 0;
548         bool insert;
549         int rc;
550
551         ENTRY;
552         /* oid == ZFS_NO_OBJECT must be for lookup ".." case */
553         if (oid == ZFS_NO_OBJECT) {
554                 rc = osd_sa_handle_get(obj);
555                 if (rc)
556                         return;
557
558                 rc = -sa_lookup(obj->oo_sa_hdl, SA_ZPL_PARENT(osd), &oid, 8);
559                 if (rc)
560                         return;
561         }
562
563         if (!scrub_needs_check(&osd->od_scrub, fid, oid))
564                 return;
565 again:
566         rc = osd_fid_lookup(env, osd, fid, &oid2);
567         if (rc == -ENOENT) {
568                 insert = true;
569                 if (dn)
570                         goto trigger;
571
572                 rc = __osd_obj2dnode(osd->od_os, oid, &dn);
573                 /* The object has been removed (by race maybe). */
574                 if (rc)
575                         return;
576
577                 goto trigger;
578         } else if (rc || oid == oid2) {
579                 GOTO(out, rc);
580         }
581
582         insert = false;
583
584 trigger:
585         if (scrub->os_running) {
586                 if (!dn) {
587                         rc = __osd_obj2dnode(osd->od_os, oid, &dn);
588                         /* The object has been removed (by race maybe). */
589                         if (rc)
590                                 return;
591                 }
592
593                 rc = osd_oii_insert(env, osd, fid, oid, insert);
594                 /* There is race condition between osd_oi_lookup and OI scrub.
595                  * The OI scrub finished just after osd_oi_lookup() failure.
596                  * Under such case, it is unnecessary to trigger OI scrub again,
597                  * but try to call osd_oi_lookup() again. */
598                 if (unlikely(rc == -EAGAIN))
599                         goto again;
600
601                 if (is_dir)
602                         rc = osd_check_lmv(env, osd, oid, fid);
603                 else
604                         rc = 0;
605
606                 GOTO(out, rc);
607         }
608
609         if (osd->od_scrub.os_auto_scrub_interval != AS_NEVER && ++once == 1) {
610                 rc = osd_scrub_start(env, osd, SS_AUTO_FULL |
611                                      SS_CLEAR_DRYRUN | SS_CLEAR_FAILOUT);
612                 CDEBUG_LIMIT(D_LFSCK | D_CONSOLE | D_WARNING,
613                              "%s: trigger partial OI scrub for RPC inconsistency, checking FID "DFID"/%#llx): rc = %d\n",
614                              osd_name(osd), PFID(fid), oid, rc);
615                 if (!rc)
616                         goto again;
617         }
618
619         GOTO(out, rc);
620
621 out:
622         if (dn)
623                 osd_dnode_rele(dn);
624 }
625
626 static int osd_dir_lookup(const struct lu_env *env, struct dt_object *dt,
627                           struct dt_rec *rec, const struct dt_key *key)
628 {
629         struct osd_thread_info *oti = osd_oti_get(env);
630         struct osd_object *obj = osd_dt_obj(dt);
631         struct osd_device *osd = osd_obj2dev(obj);
632         struct lu_fid *fid = (struct lu_fid *)rec;
633         char *name = (char *)key;
634         uint64_t oid = ZFS_NO_OBJECT;
635         int rc;
636         ENTRY;
637
638         if (name[0] == '.') {
639                 if (name[1] == 0) {
640                         const struct lu_fid *f = lu_object_fid(&dt->do_lu);
641                         memcpy(rec, f, sizeof(*f));
642                         RETURN(1);
643                 } else if (name[1] == '.' && name[2] == 0) {
644                         rc = osd_find_parent_fid(env, dt, fid, &oid);
645                         GOTO(out, rc);
646                 }
647         }
648
649         memset(&oti->oti_zde.lzd_fid, 0, sizeof(struct lu_fid));
650
651         down_read(&obj->oo_guard);
652         if (obj->oo_destroyed)
653                 GOTO(out_unlock, rc = -ENOENT);
654
655         rc = osd_zap_lookup(osd, obj->oo_dn->dn_object, obj->oo_dn,
656                             (char *)key, 8, sizeof(oti->oti_zde) / 8,
657                             (void *)&oti->oti_zde);
658         if (rc != 0) {
659                 up_read(&obj->oo_guard);
660                 RETURN(rc);
661         }
662
663         oid = oti->oti_zde.lzd_reg.zde_dnode;
664         if (likely(fid_is_sane(&oti->oti_zde.lzd_fid))) {
665                 memcpy(rec, &oti->oti_zde.lzd_fid, sizeof(struct lu_fid));
666                 GOTO(out_unlock, rc = 0);
667         }
668
669         rc = osd_get_fid_by_oid(env, osd, oti->oti_zde.lzd_reg.zde_dnode, fid);
670
671 out_unlock:
672         up_read(&obj->oo_guard);
673 out:
674         if (!rc && !osd_remote_fid(env, osd, fid)) {
675                 bool is_dir = S_ISDIR(DTTOIF(oti->oti_zde.lzd_reg.zde_type));
676
677                 /*
678                  * this should ask the scrubber to check OI given
679                  * the mapping we just found in the dir entry.
680                  * but result of that check should not affect
681                  * result of the lookup in the directory.
682                  * otherwise such a direntry becomes hidden
683                  * from the layers above, including LFSCK which
684                  * is supposed to fix dangling entries.
685                  */
686                 osd_zfs_consistency_check(env, osd, obj, fid, oid, is_dir);
687         }
688
689         return rc == 0 ? 1 : (rc == -ENOENT ? -ENODATA : rc);
690 }
691
692 /*
693  * In DNE environment, the object and its name entry may reside on different
694  * MDTs. Under such case, we will create an agent object on the MDT where the
695  * name entry resides. The agent object is empty, and indicates that the real
696  * object for the name entry resides on another MDT. If without agent object,
697  * related name entry will be skipped when perform MDT side file level backup
698  * and restore via ZPL by userspace tool, such as 'tar'.
699  */
700 static int osd_create_agent_object(const struct lu_env *env,
701                                    struct osd_device *osd,
702                                    struct luz_direntry *zde,
703                                    uint64_t parent, dmu_tx_t *tx)
704 {
705         struct osd_thread_info *info = osd_oti_get(env);
706         struct lustre_mdt_attrs *lma = &info->oti_mdt_attrs;
707         struct lu_attr *la = &info->oti_la;
708         nvlist_t *nvbuf = NULL;
709         dnode_t *dn = NULL;
710         sa_handle_t *hdl;
711         int rc = 0;
712         ENTRY;
713
714         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_NO_AGENTOBJ))
715                 RETURN(0);
716
717         rc = -nvlist_alloc(&nvbuf, NV_UNIQUE_NAME, KM_SLEEP);
718         if (rc)
719                 RETURN(rc);
720
721         lustre_lma_init(lma, &zde->lzd_fid, 0, LMAI_AGENT);
722         lustre_lma_swab(lma);
723         rc = -nvlist_add_byte_array(nvbuf, XATTR_NAME_LMA, (uchar_t *)lma,
724                                     sizeof(*lma));
725         if (rc)
726                 GOTO(out, rc);
727
728         la->la_valid = LA_TYPE | LA_MODE;
729         la->la_mode = (DTTOIF(zde->lzd_reg.zde_type) & S_IFMT) |
730                         S_IRUGO | S_IWUSR | S_IXUGO;
731
732         if (S_ISDIR(la->la_mode))
733                 rc = __osd_zap_create(env, osd, &dn, tx, la,
734                                 osd_find_dnsize(osd, OSD_BASE_EA_IN_BONUS), 0);
735         else
736                 rc = __osd_object_create(env, osd, NULL, &zde->lzd_fid,
737                                          &dn, tx, la);
738         if (rc)
739                 GOTO(out, rc);
740
741         zde->lzd_reg.zde_dnode = dn->dn_object;
742         rc = -sa_handle_get(osd->od_os, dn->dn_object, NULL,
743                             SA_HDL_PRIVATE, &hdl);
744         if (!rc) {
745                 rc = __osd_attr_init(env, osd, NULL, hdl, tx,
746                                      la, parent, nvbuf);
747                 sa_handle_destroy(hdl);
748         }
749
750         GOTO(out, rc);
751
752 out:
753         if (dn) {
754                 if (rc)
755                         dmu_object_free(osd->od_os, dn->dn_object, tx);
756                 osd_dnode_rele(dn);
757         }
758
759         if (nvbuf)
760                 nvlist_free(nvbuf);
761
762         return rc;
763 }
764
765 int osd_add_to_remote_parent(const struct lu_env *env,
766                              struct osd_device *osd,
767                              struct osd_object *obj,
768                              struct osd_thandle *oh)
769 {
770         struct osd_thread_info *info = osd_oti_get(env);
771         struct luz_direntry *zde = &info->oti_zde;
772         char *name = info->oti_str;
773         const struct lu_fid *fid = lu_object_fid(&obj->oo_dt.do_lu);
774         struct lustre_mdt_attrs *lma = (struct lustre_mdt_attrs *)info->oti_buf;
775         struct lu_buf buf = {
776                 .lb_buf = lma,
777                 .lb_len = sizeof(info->oti_buf),
778         };
779         int size = 0;
780         int rc;
781         ENTRY;
782
783         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_NO_AGENTENT))
784                 RETURN(0);
785
786         rc = osd_xattr_get_internal(env, obj, &buf, XATTR_NAME_LMA, &size);
787         if (rc) {
788                 CWARN("%s: fail to load LMA for adding "
789                       DFID" to remote parent: rc = %d\n",
790                       osd_name(osd), PFID(fid), rc);
791                 RETURN(rc);
792         }
793
794         lustre_lma_swab(lma);
795         lma->lma_incompat |= LMAI_REMOTE_PARENT;
796         lustre_lma_swab(lma);
797         buf.lb_len = size;
798         rc = osd_xattr_set_internal(env, obj, &buf, XATTR_NAME_LMA,
799                                     LU_XATTR_REPLACE, oh);
800         if (rc) {
801                 CWARN("%s: fail to update LMA for adding "
802                       DFID" to remote parent: rc = %d\n",
803                       osd_name(osd), PFID(fid), rc);
804                 RETURN(rc);
805         }
806
807         osd_fid2str(name, fid, sizeof(info->oti_str));
808         zde->lzd_reg.zde_dnode = obj->oo_dn->dn_object;
809         zde->lzd_reg.zde_type = S_DT(S_IFDIR);
810         zde->lzd_fid = *fid;
811
812         rc = osd_zap_add(osd, osd->od_remote_parent_dir, NULL,
813                          name, 8, sizeof(*zde) / 8, zde, oh->ot_tx);
814         if (unlikely(rc == -EEXIST))
815                 rc = 0;
816         if (rc)
817                 CWARN("%s: fail to add name entry for "
818                       DFID" to remote parent: rc = %d\n",
819                       osd_name(osd), PFID(fid), rc);
820         else
821                 lu_object_set_agent_entry(&obj->oo_dt.do_lu);
822
823         RETURN(rc);
824 }
825
826 int osd_delete_from_remote_parent(const struct lu_env *env,
827                                   struct osd_device *osd,
828                                   struct osd_object *obj,
829                                   struct osd_thandle *oh, bool destroy)
830 {
831         struct osd_thread_info *info = osd_oti_get(env);
832         char *name = info->oti_str;
833         const struct lu_fid *fid = lu_object_fid(&obj->oo_dt.do_lu);
834         struct lustre_mdt_attrs *lma = (struct lustre_mdt_attrs *)info->oti_buf;
835         struct lu_buf buf = {
836                 .lb_buf = lma,
837                 .lb_len = sizeof(info->oti_buf),
838         };
839         int size = 0;
840         int rc;
841         ENTRY;
842
843         osd_fid2str(name, fid, sizeof(info->oti_str));
844         rc = osd_zap_remove(osd, osd->od_remote_parent_dir, NULL,
845                             name, oh->ot_tx);
846         if (unlikely(rc == -ENOENT))
847                 rc = 0;
848         if (rc)
849                 CERROR("%s: fail to remove entry under remote "
850                        "parent for "DFID": rc = %d\n",
851                        osd_name(osd), PFID(fid), rc);
852
853         if (destroy || rc)
854                 RETURN(rc);
855
856         rc = osd_xattr_get_internal(env, obj, &buf, XATTR_NAME_LMA, &size);
857         if (rc) {
858                 CERROR("%s: fail to load LMA for removing "
859                        DFID" from remote parent: rc = %d\n",
860                        osd_name(osd), PFID(fid), rc);
861                 RETURN(rc);
862         }
863
864         lustre_lma_swab(lma);
865         lma->lma_incompat &= ~LMAI_REMOTE_PARENT;
866         lustre_lma_swab(lma);
867         buf.lb_len = size;
868         rc = osd_xattr_set_internal(env, obj, &buf, XATTR_NAME_LMA,
869                                     LU_XATTR_REPLACE, oh);
870         if (rc)
871                 CERROR("%s: fail to update LMA for removing "
872                        DFID" from remote parent: rc = %d\n",
873                        osd_name(osd), PFID(fid), rc);
874         else
875                 lu_object_clear_agent_entry(&obj->oo_dt.do_lu);
876
877         RETURN(rc);
878 }
879
880 static int osd_declare_dir_insert(const struct lu_env *env,
881                                   struct dt_object *dt,
882                                   const struct dt_rec *rec,
883                                   const struct dt_key *key,
884                                   struct thandle *th)
885 {
886         struct osd_object       *obj = osd_dt_obj(dt);
887         struct osd_device       *osd = osd_obj2dev(obj);
888         const struct dt_insert_rec *rec1;
889         const struct lu_fid     *fid;
890         struct osd_thandle      *oh;
891         uint64_t                 object;
892         struct osd_idmap_cache *idc;
893         ENTRY;
894
895         rec1 = (struct dt_insert_rec *)rec;
896         fid = rec1->rec_fid;
897         LASSERT(fid != NULL);
898         LASSERT(rec1->rec_type != 0);
899
900         LASSERT(th != NULL);
901         oh = container_of(th, struct osd_thandle, ot_super);
902
903         idc = osd_idc_find_or_init(env, osd, fid);
904         if (IS_ERR(idc))
905                 RETURN(PTR_ERR(idc));
906
907         if (idc->oic_remote) {
908                 const char *name = (const char *)key;
909
910                 if (name[0] != '.' || name[1] != '.' || name[2] != 0) {
911                         /* Prepare agent object for remote entry that will
912                          * be used for operations via ZPL, such as MDT side
913                          * file-level backup and restore. */
914                         dmu_tx_hold_sa_create(oh->ot_tx,
915                                 osd_find_dnsize(osd, OSD_BASE_EA_IN_BONUS));
916                         if (S_ISDIR(rec1->rec_type))
917                                 dmu_tx_hold_zap(oh->ot_tx, DMU_NEW_OBJECT,
918                                                 FALSE, NULL);
919                 }
920         }
921
922         /* This is for inserting dot/dotdot for new created dir. */
923         if (obj->oo_dn == NULL)
924                 object = DMU_NEW_OBJECT;
925         else
926                 object = obj->oo_dn->dn_object;
927
928         /* do not specify the key as then DMU is trying to look it up
929          * which is very expensive. usually the layers above lookup
930          * before insertion */
931         osd_tx_hold_zap(oh->ot_tx, object, obj->oo_dn, TRUE, NULL);
932
933         RETURN(0);
934 }
935
936 static int osd_seq_exists(const struct lu_env *env, struct osd_device *osd,
937                           u64 seq)
938 {
939         struct lu_seq_range     *range = &osd_oti_get(env)->oti_seq_range;
940         struct seq_server_site  *ss = osd_seq_site(osd);
941         int                     rc;
942         ENTRY;
943
944         LASSERT(ss != NULL);
945         LASSERT(ss->ss_server_fld != NULL);
946
947         rc = osd_fld_lookup(env, osd, seq, range);
948         if (rc != 0) {
949                 if (rc != -ENOENT)
950                         CERROR("%s: Can not lookup fld for %#llx\n",
951                                osd_name(osd), seq);
952                 RETURN(0);
953         }
954
955         RETURN(ss->ss_node_id == range->lsr_index);
956 }
957
958 int osd_remote_fid(const struct lu_env *env, struct osd_device *osd,
959                    const struct lu_fid *fid)
960 {
961         struct seq_server_site  *ss = osd_seq_site(osd);
962         ENTRY;
963
964         /* FID seqs not in FLDB, must be local seq */
965         if (unlikely(!fid_seq_in_fldb(fid_seq(fid))))
966                 RETURN(0);
967
968         /* If FLD is not being initialized yet, it only happens during the
969          * initialization, likely during mgs initialization, and we assume
970          * this is local FID. */
971         if (ss == NULL || ss->ss_server_fld == NULL)
972                 RETURN(0);
973
974         /* Only check the local FLDB here */
975         if (osd_seq_exists(env, osd, fid_seq(fid)))
976                 RETURN(0);
977
978         RETURN(1);
979 }
980
981 /**
982  *      Inserts (key, value) pair in \a directory object.
983  *
984  *      \param  dt      osd index object
985  *      \param  key     key for index
986  *      \param  rec     record reference
987  *      \param  th      transaction handler
988  *
989  *      \retval  0  success
990  *      \retval -ve failure
991  */
992 static int osd_dir_insert(const struct lu_env *env, struct dt_object *dt,
993                           const struct dt_rec *rec, const struct dt_key *key,
994                           struct thandle *th)
995 {
996         struct osd_thread_info *oti = osd_oti_get(env);
997         struct osd_object   *parent = osd_dt_obj(dt);
998         struct osd_device   *osd = osd_obj2dev(parent);
999         struct dt_insert_rec *rec1 = (struct dt_insert_rec *)rec;
1000         const struct lu_fid *fid = rec1->rec_fid;
1001         struct osd_thandle *oh;
1002         struct osd_idmap_cache *idc;
1003         const char *name = (const char *)key;
1004         struct luz_direntry *zde = &oti->oti_zde;
1005         int num = sizeof(*zde) / 8;
1006         int rc;
1007         ENTRY;
1008
1009         LASSERT(parent->oo_dn);
1010
1011         LASSERT(dt_object_exists(dt));
1012         LASSERT(osd_invariant(parent));
1013
1014         LASSERT(th != NULL);
1015         oh = container_of(th, struct osd_thandle, ot_super);
1016
1017         idc = osd_idc_find(env, osd, fid);
1018         if (unlikely(idc == NULL)) {
1019                 /* this dt_insert() wasn't declared properly, so
1020                  * FID is missing in OI cache. we better do not
1021                  * lookup FID in FLDB/OI and don't risk to deadlock,
1022                  * but in some special cases (lfsck testing, etc)
1023                  * it's much simpler than fixing a caller */
1024                 idc = osd_idc_find_or_init(env, osd, fid);
1025                 if (IS_ERR(idc)) {
1026                         CERROR("%s: "DFID" wasn't declared for insert\n",
1027                                osd_name(osd), PFID(fid));
1028                         RETURN(PTR_ERR(idc));
1029                 }
1030         }
1031
1032         BUILD_BUG_ON(sizeof(zde->lzd_reg) != 8);
1033         BUILD_BUG_ON(sizeof(*zde) % 8 != 0);
1034
1035         memset(&zde->lzd_reg, 0, sizeof(zde->lzd_reg));
1036         zde->lzd_reg.zde_type = S_DT(rec1->rec_type & S_IFMT);
1037         zde->lzd_fid = *fid;
1038
1039         if (idc->oic_remote) {
1040                 if (name[0] != '.' || name[1] != '.' || name[2] != 0) {
1041                         /* Create agent inode for remote object that will
1042                          * be used for MDT file-level backup and restore. */
1043                         rc = osd_create_agent_object(env, osd, zde,
1044                                         parent->oo_dn->dn_object, oh->ot_tx);
1045                         if (rc) {
1046                                 CWARN("%s: Fail to create agent object for "
1047                                       DFID": rc = %d\n",
1048                                       osd_name(osd), PFID(fid), rc);
1049                                 /* Ignore the failure since the system can go
1050                                  * ahead if we do not care about the MDT side
1051                                  * file-level backup and restore. */
1052                                 rc = 0;
1053                         }
1054                 }
1055         } else {
1056                 if (unlikely(idc->oic_dnode == 0)) {
1057                         /* for a reason OI cache wasn't filled properly */
1058                         CERROR("%s: OIC for "DFID" isn't filled\n",
1059                                osd_name(osd), PFID(fid));
1060                         RETURN(-EINVAL);
1061                 }
1062                 if (name[0] == '.') {
1063                         if (name[1] == 0) {
1064                                 /* do not store ".", instead generate it
1065                                  * during iteration */
1066                                 GOTO(out, rc = 0);
1067                         } else if (name[1] == '.' && name[2] == 0) {
1068                                 uint64_t dnode = idc->oic_dnode;
1069                                 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_PARENT))
1070                                         dnode--;
1071
1072                                 /* update parent dnode in the child.
1073                                  * later it will be used to generate ".." */
1074                                 rc = osd_object_sa_update(parent,
1075                                                  SA_ZPL_PARENT(osd),
1076                                                  &dnode, 8, oh);
1077
1078                                 GOTO(out, rc);
1079                         }
1080                 }
1081                 zde->lzd_reg.zde_dnode = idc->oic_dnode;
1082         }
1083
1084         if (OBD_FAIL_CHECK(OBD_FAIL_FID_INDIR))
1085                 zde->lzd_fid.f_ver = ~0;
1086
1087         /* The logic is not related with IGIF, just re-use the fail_loc value
1088          * to be consistent with ldiskfs case, then share the same test logic */
1089         if (OBD_FAIL_CHECK(OBD_FAIL_FID_IGIF))
1090                 num = 1;
1091
1092         /* Insert (key,oid) into ZAP */
1093         rc = osd_zap_add(osd, parent->oo_dn->dn_object, parent->oo_dn,
1094                          name, 8, num, (void *)zde, oh->ot_tx);
1095         if (unlikely(rc == -EEXIST &&
1096                      name[0] == '.' && name[1] == '.' && name[2] == 0))
1097                 /* Update (key,oid) in ZAP */
1098                 rc = -zap_update(osd->od_os, parent->oo_dn->dn_object, name, 8,
1099                                  sizeof(*zde) / 8, (void *)zde, oh->ot_tx);
1100
1101 out:
1102
1103         RETURN(rc);
1104 }
1105
1106 static int osd_declare_dir_delete(const struct lu_env *env,
1107                                   struct dt_object *dt,
1108                                   const struct dt_key *key,
1109                                   struct thandle *th)
1110 {
1111         struct osd_object *obj = osd_dt_obj(dt);
1112         dnode_t *zap_dn = obj->oo_dn;
1113         struct osd_thandle *oh;
1114         const char *name = (const char *)key;
1115         ENTRY;
1116
1117         LASSERT(dt_object_exists(dt));
1118         LASSERT(osd_invariant(obj));
1119         LASSERT(zap_dn != NULL);
1120
1121         LASSERT(th != NULL);
1122         oh = container_of(th, struct osd_thandle, ot_super);
1123
1124         /*
1125          * In Orion . and .. were stored in the directory (not generated upon
1126          * request as now). We preserve them for backward compatibility.
1127          */
1128         if (name[0] == '.') {
1129                 if (name[1] == 0)
1130                         RETURN(0);
1131                 else if (name[1] == '.' && name[2] == 0)
1132                         RETURN(0);
1133         }
1134
1135         /* do not specify the key as then DMU is trying to look it up
1136          * which is very expensive. usually the layers above lookup
1137          * before deletion */
1138         osd_tx_hold_zap(oh->ot_tx, zap_dn->dn_object, zap_dn, FALSE, NULL);
1139
1140         /* For destroying agent object if have. */
1141         dmu_tx_hold_bonus(oh->ot_tx, DMU_NEW_OBJECT);
1142
1143         RETURN(0);
1144 }
1145
1146 static int osd_dir_delete(const struct lu_env *env, struct dt_object *dt,
1147                           const struct dt_key *key, struct thandle *th)
1148 {
1149         struct luz_direntry *zde = &osd_oti_get(env)->oti_zde;
1150         struct osd_object *obj = osd_dt_obj(dt);
1151         struct osd_device *osd = osd_obj2dev(obj);
1152         struct osd_thandle *oh;
1153         dnode_t *zap_dn = obj->oo_dn;
1154         char      *name = (char *)key;
1155         int rc;
1156         ENTRY;
1157
1158         LASSERT(zap_dn);
1159
1160         LASSERT(th != NULL);
1161         oh = container_of(th, struct osd_thandle, ot_super);
1162
1163         /*
1164          * In Orion . and .. were stored in the directory (not generated upon
1165          * request as now). we preserve them for backward compatibility
1166          */
1167         if (name[0] == '.') {
1168                 if (name[1] == 0) {
1169                         RETURN(0);
1170                 } else if (name[1] == '.' && name[2] == 0) {
1171                         RETURN(0);
1172                 }
1173         }
1174
1175         /* XXX: We have to say that lookup during delete_declare will affect
1176          *      performance, but we have to check whether the name entry (to
1177          *      be deleted) has agent object or not to avoid orphans.
1178          *
1179          *      We will improve that in the future, some possible solutions,
1180          *      for example:
1181          *      1) Some hint from the caller via transaction handle to make
1182          *         the lookup conditionally.
1183          *      2) Enhance the ZFS logic to recognize the OSD lookup result
1184          *         and delete the given entry directly without lookup again
1185          *         internally. LU-10190 */
1186         memset(&zde->lzd_fid, 0, sizeof(zde->lzd_fid));
1187         rc = osd_zap_lookup(osd, zap_dn->dn_object, zap_dn, name, 8, 3, zde);
1188         if (unlikely(rc)) {
1189                 if (rc != -ENOENT)
1190                         CERROR("%s: failed to locate entry  %s: rc = %d\n",
1191                                osd->od_svname, name, rc);
1192                 RETURN(rc);
1193         }
1194
1195         if (unlikely(osd_remote_fid(env, osd, &zde->lzd_fid) > 0)) {
1196                 rc = -dmu_object_free(osd->od_os, zde->lzd_reg.zde_dnode,
1197                                       oh->ot_tx);
1198                 if (rc)
1199                         CERROR("%s: failed to destroy agent object (%llu) "
1200                                "for the entry %s: rc = %d\n", osd->od_svname,
1201                                (__u64)zde->lzd_reg.zde_dnode, name, rc);
1202         }
1203
1204         /* Remove key from the ZAP */
1205         rc = osd_zap_remove(osd, zap_dn->dn_object, zap_dn,
1206                             (char *)key, oh->ot_tx);
1207         if (unlikely(rc))
1208                 CERROR("%s: zap_remove %s failed: rc = %d\n",
1209                        osd->od_svname, name, rc);
1210
1211         RETURN(rc);
1212 }
1213
1214 static struct dt_it *osd_dir_it_init(const struct lu_env *env,
1215                                      struct dt_object *dt,
1216                                      __u32 unused)
1217 {
1218         struct osd_zap_it *it;
1219
1220         it = (struct osd_zap_it *)osd_index_it_init(env, dt, unused);
1221         if (!IS_ERR(it))
1222                 it->ozi_pos = OZI_POS_INIT;
1223
1224         RETURN((struct dt_it *)it);
1225 }
1226
1227 /**
1228  *  Move Iterator to record specified by \a key
1229  *
1230  *  \param  di      osd iterator
1231  *  \param  key     key for index
1232  *
1233  *  \retval +ve  di points to record with least key not larger than key
1234  *  \retval  0   di points to exact matched key
1235  *  \retval -ve  failure
1236  */
1237 static int osd_dir_it_get(const struct lu_env *env,
1238                           struct dt_it *di, const struct dt_key *key)
1239 {
1240         struct osd_zap_it *it = (struct osd_zap_it *)di;
1241         struct osd_object *obj = it->ozi_obj;
1242         char              *name = (char *)key;
1243         int                rc;
1244         ENTRY;
1245
1246         LASSERT(it);
1247         LASSERT(it->ozi_zc);
1248
1249         /* reset the cursor */
1250         zap_cursor_fini(it->ozi_zc);
1251         osd_obj_cursor_init_serialized(it->ozi_zc, obj, 0);
1252
1253         /* XXX: implementation of the API is broken at the moment */
1254         LASSERT(((const char *)key)[0] == 0);
1255
1256         if (name[0] == 0) {
1257                 it->ozi_pos = OZI_POS_INIT;
1258                 RETURN(1);
1259         }
1260
1261         if (name[0] == '.') {
1262                 if (name[1] == 0) {
1263                         it->ozi_pos = OZI_POS_DOT;
1264                         GOTO(out, rc = 1);
1265                 } else if (name[1] == '.' && name[2] == 0) {
1266                         it->ozi_pos = OZI_POS_DOTDOT;
1267                         GOTO(out, rc = 1);
1268                 }
1269         }
1270
1271         /* neither . nor .. - some real record */
1272         it->ozi_pos = OZI_POS_REAL;
1273         rc = +1;
1274
1275 out:
1276         RETURN(rc);
1277 }
1278
1279 static void osd_dir_it_put(const struct lu_env *env, struct dt_it *di)
1280 {
1281         /* PBS: do nothing : ref are incremented at retrive and decreamented
1282          *      next/finish. */
1283 }
1284
1285 /*
1286  * in Orion . and .. were stored in the directory, while ZPL
1287  * and current osd-zfs generate them up on request. so, we
1288  * need to ignore previously stored . and ..
1289  */
1290 static int osd_index_retrieve_skip_dots(struct osd_zap_it *it,
1291                                         zap_attribute_t *za)
1292 {
1293         int rc, isdot;
1294
1295         do {
1296                 rc = -zap_cursor_retrieve(it->ozi_zc, za);
1297
1298                 isdot = 0;
1299                 if (unlikely(rc == 0 && za->za_name[0] == '.')) {
1300                         if (za->za_name[1] == 0) {
1301                                 isdot = 1;
1302                         } else if (za->za_name[1] == '.' &&
1303                                    za->za_name[2] == 0) {
1304                                 isdot = 1;
1305                         }
1306                         if (unlikely(isdot))
1307                                 zap_cursor_advance(it->ozi_zc);
1308                 }
1309         } while (unlikely(rc == 0 && isdot));
1310
1311         return rc;
1312 }
1313
1314 /**
1315  * to load a directory entry at a time and stored it in
1316  * iterator's in-memory data structure.
1317  *
1318  * \param di, struct osd_it_ea, iterator's in memory structure
1319  *
1320  * \retval +ve, iterator reached to end
1321  * \retval   0, iterator not reached to end
1322  * \retval -ve, on error
1323  */
1324 static int osd_dir_it_next(const struct lu_env *env, struct dt_it *di)
1325 {
1326         struct osd_zap_it *it = (struct osd_zap_it *)di;
1327         zap_attribute_t   *za = &osd_oti_get(env)->oti_za;
1328         int                rc;
1329
1330         ENTRY;
1331
1332         /* temp. storage should be enough for any key supported by ZFS */
1333         BUILD_BUG_ON(sizeof(za->za_name) > sizeof(it->ozi_name));
1334
1335         /*
1336          * the first ->next() moves the cursor to .
1337          * the second ->next() moves the cursor to ..
1338          * then we get to the real records and have to verify any exist
1339          */
1340         if (it->ozi_pos <= OZI_POS_DOTDOT) {
1341                 it->ozi_pos++;
1342                 if (it->ozi_pos <= OZI_POS_DOTDOT)
1343                         RETURN(0);
1344
1345         } else {
1346                 zap_cursor_advance(it->ozi_zc);
1347         }
1348
1349         /*
1350          * According to current API we need to return error if its last entry.
1351          * zap_cursor_advance() does not return any value. So we need to call
1352          * retrieve to check if there is any record.  We should make
1353          * changes to Iterator API to not return status for this API
1354          */
1355         rc = osd_index_retrieve_skip_dots(it, za);
1356
1357         if (rc == -ENOENT) /* end of dir */
1358                 RETURN(+1);
1359
1360         RETURN(rc);
1361 }
1362
1363 static struct dt_key *osd_dir_it_key(const struct lu_env *env,
1364                                      const struct dt_it *di)
1365 {
1366         struct osd_zap_it *it = (struct osd_zap_it *)di;
1367         zap_attribute_t   *za = &osd_oti_get(env)->oti_za;
1368         int                rc = 0;
1369         ENTRY;
1370
1371         if (it->ozi_pos <= OZI_POS_DOT) {
1372                 it->ozi_pos = OZI_POS_DOT;
1373                 RETURN((struct dt_key *)".");
1374         } else if (it->ozi_pos == OZI_POS_DOTDOT) {
1375                 RETURN((struct dt_key *)"..");
1376         }
1377
1378         if ((rc = -zap_cursor_retrieve(it->ozi_zc, za)))
1379                 RETURN(ERR_PTR(rc));
1380
1381         strcpy(it->ozi_name, za->za_name);
1382
1383         RETURN((struct dt_key *)it->ozi_name);
1384 }
1385
1386 static int osd_dir_it_key_size(const struct lu_env *env, const struct dt_it *di)
1387 {
1388         struct osd_zap_it *it = (struct osd_zap_it *)di;
1389         zap_attribute_t   *za = &osd_oti_get(env)->oti_za;
1390         int                rc;
1391         ENTRY;
1392
1393         if (it->ozi_pos <= OZI_POS_DOT) {
1394                 it->ozi_pos = OZI_POS_DOT;
1395                 RETURN(2);
1396         } else if (it->ozi_pos == OZI_POS_DOTDOT) {
1397                 RETURN(3);
1398         }
1399
1400         if ((rc = -zap_cursor_retrieve(it->ozi_zc, za)) == 0)
1401                 rc = strlen(za->za_name);
1402
1403         RETURN(rc);
1404 }
1405
1406 static int
1407 osd_dirent_update(const struct lu_env *env, struct osd_device *dev,
1408                   uint64_t zap, const char *key, struct luz_direntry *zde)
1409 {
1410         dmu_tx_t *tx;
1411         int rc;
1412         ENTRY;
1413
1414         tx = dmu_tx_create(dev->od_os);
1415         if (!tx)
1416                 RETURN(-ENOMEM);
1417
1418         dmu_tx_hold_zap(tx, zap, TRUE, NULL);
1419         rc = -dmu_tx_assign(tx, TXG_WAIT);
1420         if (!rc)
1421                 rc = -zap_update(dev->od_os, zap, key, 8, sizeof(*zde) / 8,
1422                                  (const void *)zde, tx);
1423         if (rc)
1424                 dmu_tx_abort(tx);
1425         else
1426                 dmu_tx_commit(tx);
1427
1428         RETURN(rc);
1429 }
1430
1431 static int osd_update_entry_for_agent(const struct lu_env *env,
1432                                       struct osd_device *osd,
1433                                       uint64_t zap, const char *name,
1434                                       struct luz_direntry *zde, __u32 attr)
1435 {
1436         dmu_tx_t *tx = NULL;
1437         int rc = 0;
1438         ENTRY;
1439
1440         if (attr & LUDA_VERIFY_DRYRUN)
1441                 GOTO(out, rc = 0);
1442
1443         tx = dmu_tx_create(osd->od_os);
1444         if (!tx)
1445                 GOTO(out, rc = -ENOMEM);
1446
1447         dmu_tx_hold_sa_create(tx, osd_find_dnsize(osd, OSD_BASE_EA_IN_BONUS));
1448         dmu_tx_hold_zap(tx, zap, FALSE, NULL);
1449         rc = -dmu_tx_assign(tx, TXG_WAIT);
1450         if (rc) {
1451                 dmu_tx_abort(tx);
1452                 GOTO(out, rc);
1453         }
1454
1455         rc = osd_create_agent_object(env, osd, zde, zap, tx);
1456         if (!rc)
1457                 rc = -zap_update(osd->od_os, zap, name, 8, sizeof(*zde) / 8,
1458                                  (const void *)zde, tx);
1459         dmu_tx_commit(tx);
1460
1461         GOTO(out, rc);
1462
1463 out:
1464         CDEBUG(D_LFSCK, "%s: Updated (%s) remote entry for "DFID": rc = %d\n",
1465                osd_name(osd), (attr & LUDA_VERIFY_DRYRUN) ? "(ro)" : "(rw)",
1466                PFID(&zde->lzd_fid), rc);
1467         return rc;
1468 }
1469
1470 static int osd_dir_it_rec(const struct lu_env *env, const struct dt_it *di,
1471                           struct dt_rec *dtrec, __u32 attr)
1472 {
1473         struct osd_zap_it *it = (struct osd_zap_it *)di;
1474         struct lu_dirent *lde = (struct lu_dirent *)dtrec;
1475         struct osd_thread_info *info = osd_oti_get(env);
1476         struct luz_direntry *zde = &info->oti_zde;
1477         zap_attribute_t *za = &info->oti_za;
1478         struct lu_fid *fid = &info->oti_fid;
1479         struct osd_device *osd = osd_obj2dev(it->ozi_obj);
1480         int rc, namelen;
1481         ENTRY;
1482
1483         lde->lde_attrs = 0;
1484         if (it->ozi_pos <= OZI_POS_DOT) {
1485                 /* notice hash=0 here, this is needed to avoid
1486                  * case when some real entry (after ./..) may
1487                  * have hash=0. in this case the client would
1488                  * be confused having records out of hash order. */
1489                 lde->lde_hash = cpu_to_le64(0);
1490                 strcpy(lde->lde_name, ".");
1491                 lde->lde_namelen = cpu_to_le16(1);
1492                 fid_cpu_to_le(&lde->lde_fid,
1493                               lu_object_fid(&it->ozi_obj->oo_dt.do_lu));
1494                 lde->lde_attrs = LUDA_FID;
1495                 /* append lustre attributes */
1496                 osd_it_append_attrs(lde, attr, 1, S_DT(S_IFDIR));
1497                 lde->lde_reclen = cpu_to_le16(lu_dirent_calc_size(1, attr));
1498                 it->ozi_pos = OZI_POS_DOT;
1499                 RETURN(0);
1500         } else if (it->ozi_pos == OZI_POS_DOTDOT) {
1501                 /* same as for . above */
1502                 lde->lde_hash = cpu_to_le64(0);
1503                 strcpy(lde->lde_name, "..");
1504                 lde->lde_namelen = cpu_to_le16(2);
1505                 rc = osd_find_parent_fid(env, &it->ozi_obj->oo_dt, fid, NULL);
1506                 if (!rc) {
1507                         fid_cpu_to_le(&lde->lde_fid, fid);
1508                         lde->lde_attrs = LUDA_FID;
1509                 } else if (rc != -ENOENT) {
1510                         /* ENOENT happens at the root of filesystem, ignore */
1511                         RETURN(rc);
1512                 }
1513
1514                 /* append lustre attributes */
1515                 osd_it_append_attrs(lde, attr, 2, S_DT(S_IFDIR));
1516                 lde->lde_reclen = cpu_to_le16(lu_dirent_calc_size(2, attr));
1517                 RETURN(0);
1518         }
1519
1520         LASSERT(lde);
1521
1522         rc = -zap_cursor_retrieve(it->ozi_zc, za);
1523         if (unlikely(rc))
1524                 RETURN(rc);
1525
1526         lde->lde_hash = cpu_to_le64(osd_zap_cursor_serialize(it->ozi_zc));
1527         namelen = strlen(za->za_name);
1528         if (namelen > NAME_MAX)
1529                 RETURN(-EOVERFLOW);
1530         strcpy(lde->lde_name, za->za_name);
1531         lde->lde_namelen = cpu_to_le16(namelen);
1532
1533         if (za->za_integer_length != 8) {
1534                 CERROR("%s: unsupported direntry format: %d %d\n",
1535                        osd->od_svname,
1536                        za->za_integer_length, (int)za->za_num_integers);
1537                 RETURN(-EIO);
1538         }
1539
1540         rc = osd_zap_lookup(osd, it->ozi_zc->zc_zapobj, it->ozi_obj->oo_dn,
1541                             za->za_name, za->za_integer_length, 3, zde);
1542         if (rc)
1543                 RETURN(rc);
1544
1545         if (za->za_num_integers >= 3 && fid_is_sane(&zde->lzd_fid)) {
1546                 lde->lde_attrs = LUDA_FID;
1547                 fid_cpu_to_le(&lde->lde_fid, &zde->lzd_fid);
1548                 if (unlikely(zde->lzd_reg.zde_dnode == ZFS_NO_OBJECT &&
1549                              osd_remote_fid(env, osd, &zde->lzd_fid) > 0 &&
1550                              attr & LUDA_VERIFY)) {
1551                         /* It is mainly used for handling the MDT
1552                          * upgraded from old ZFS based backend. */
1553                         rc = osd_update_entry_for_agent(env, osd,
1554                                         it->ozi_obj->oo_dn->dn_object,
1555                                         za->za_name, zde, attr);
1556                         if (!rc)
1557                                 lde->lde_attrs |= LUDA_REPAIR;
1558                         else
1559                                 lde->lde_attrs |= LUDA_UNKNOWN;
1560                 }
1561
1562                 if (!(attr & (LUDA_VERIFY | LUDA_VERIFY_DRYRUN)))
1563                         GOTO(pack_attr, rc = 0);
1564         }
1565
1566         if (OBD_FAIL_CHECK(OBD_FAIL_FID_LOOKUP))
1567                 RETURN(-ENOENT);
1568
1569         rc = osd_get_fid_by_oid(env, osd, zde->lzd_reg.zde_dnode, fid);
1570         if (rc) {
1571                 lde->lde_attrs = LUDA_UNKNOWN;
1572                 GOTO(pack_attr, rc = 0);
1573         }
1574
1575         if (za->za_num_integers >= 3 && fid_is_sane(&zde->lzd_fid) &&
1576             lu_fid_eq(&zde->lzd_fid, fid))
1577                 GOTO(pack_attr, rc = 0);
1578
1579         if (!(attr & LUDA_VERIFY)) {
1580                 fid_cpu_to_le(&lde->lde_fid, fid);
1581                 lde->lde_attrs = LUDA_FID;
1582                 GOTO(pack_attr, rc = 0);
1583         }
1584
1585         if (attr & LUDA_VERIFY_DRYRUN) {
1586                 fid_cpu_to_le(&lde->lde_fid, fid);
1587                 lde->lde_attrs = LUDA_FID | LUDA_REPAIR;
1588                 GOTO(pack_attr, rc = 0);
1589         }
1590
1591         fid_cpu_to_le(&lde->lde_fid, fid);
1592         lde->lde_attrs = LUDA_FID;
1593         zde->lzd_fid = *fid;
1594         rc = osd_dirent_update(env, osd, it->ozi_zc->zc_zapobj,
1595                                za->za_name, zde);
1596         if (rc) {
1597                 lde->lde_attrs |= LUDA_UNKNOWN;
1598                 GOTO(pack_attr, rc = 0);
1599         }
1600
1601         lde->lde_attrs |= LUDA_REPAIR;
1602
1603         GOTO(pack_attr, rc = 0);
1604
1605 pack_attr:
1606         osd_it_append_attrs(lde, attr, namelen, zde->lzd_reg.zde_type);
1607         lde->lde_reclen = cpu_to_le16(lu_dirent_calc_size(namelen, attr));
1608         return rc;
1609 }
1610
1611 static int osd_dir_it_rec_size(const struct lu_env *env, const struct dt_it *di,
1612                                __u32 attr)
1613 {
1614         struct osd_zap_it   *it = (struct osd_zap_it *)di;
1615         zap_attribute_t     *za = &osd_oti_get(env)->oti_za;
1616         size_t               namelen = 0;
1617         int                  rc;
1618         ENTRY;
1619
1620         if (it->ozi_pos <= OZI_POS_DOT)
1621                 namelen = 1;
1622         else if (it->ozi_pos == OZI_POS_DOTDOT)
1623                 namelen = 2;
1624
1625         if (namelen > 0) {
1626                 rc = lu_dirent_calc_size(namelen, attr);
1627                 RETURN(rc);
1628         }
1629
1630         rc = -zap_cursor_retrieve(it->ozi_zc, za);
1631         if (unlikely(rc != 0))
1632                 RETURN(rc);
1633
1634         if (za->za_integer_length != 8 || za->za_num_integers < 3) {
1635                 CERROR("%s: unsupported direntry format: %d %d\n",
1636                        osd_obj2dev(it->ozi_obj)->od_svname,
1637                        za->za_integer_length, (int)za->za_num_integers);
1638                 RETURN(-EIO);
1639         }
1640
1641         namelen = strlen(za->za_name);
1642         if (namelen > NAME_MAX)
1643                 RETURN(-EOVERFLOW);
1644
1645         rc = lu_dirent_calc_size(namelen, attr);
1646
1647         RETURN(rc);
1648 }
1649
1650 static __u64 osd_dir_it_store(const struct lu_env *env, const struct dt_it *di)
1651 {
1652         struct osd_zap_it *it = (struct osd_zap_it *)di;
1653         __u64              pos;
1654         ENTRY;
1655
1656         if (it->ozi_pos <= OZI_POS_DOTDOT)
1657                 pos = 0;
1658         else
1659                 pos = osd_zap_cursor_serialize(it->ozi_zc);
1660
1661         RETURN(pos);
1662 }
1663
1664 /*
1665  * return status :
1666  *  rc == 0 -> end of directory.
1667  *  rc >  0 -> ok, proceed.
1668  *  rc <  0 -> error.  ( EOVERFLOW  can be masked.)
1669  */
1670 static int osd_dir_it_load(const struct lu_env *env,
1671                         const struct dt_it *di, __u64 hash)
1672 {
1673         struct osd_zap_it *it = (struct osd_zap_it *)di;
1674         struct osd_object *obj = it->ozi_obj;
1675         zap_attribute_t   *za = &osd_oti_get(env)->oti_za;
1676         int                rc;
1677         ENTRY;
1678
1679         /* reset the cursor */
1680         zap_cursor_fini(it->ozi_zc);
1681         osd_obj_cursor_init_serialized(it->ozi_zc, obj, hash);
1682
1683         if (hash == 0) {
1684                 it->ozi_pos = OZI_POS_INIT;
1685                 rc = +1; /* there will be ./.. at least */
1686         } else {
1687                 it->ozi_pos = OZI_POS_REAL;
1688                 /* to return whether the end has been reached */
1689                 rc = osd_index_retrieve_skip_dots(it, za);
1690                 if (rc == 0)
1691                         rc = +1;
1692                 else if (rc == -ENOENT)
1693                         rc = 0;
1694         }
1695
1696         RETURN(rc);
1697 }
1698
1699 const struct dt_index_operations osd_dir_ops = {
1700         .dio_lookup         = osd_dir_lookup,
1701         .dio_declare_insert = osd_declare_dir_insert,
1702         .dio_insert         = osd_dir_insert,
1703         .dio_declare_delete = osd_declare_dir_delete,
1704         .dio_delete         = osd_dir_delete,
1705         .dio_it     = {
1706                 .init     = osd_dir_it_init,
1707                 .fini     = osd_index_it_fini,
1708                 .get      = osd_dir_it_get,
1709                 .put      = osd_dir_it_put,
1710                 .next     = osd_dir_it_next,
1711                 .key      = osd_dir_it_key,
1712                 .key_size = osd_dir_it_key_size,
1713                 .rec      = osd_dir_it_rec,
1714                 .rec_size = osd_dir_it_rec_size,
1715                 .store    = osd_dir_it_store,
1716                 .load     = osd_dir_it_load
1717         }
1718 };
1719
1720 /*
1721  * Primitives for index files using binary keys.
1722  */
1723
1724 /* key integer_size is 8 */
1725 static int osd_prepare_key_uint64(struct osd_object *o, __u64 *dst,
1726                                   const struct dt_key *src)
1727 {
1728         int size;
1729
1730         LASSERT(dst);
1731         LASSERT(src);
1732
1733         /* align keysize to 64bit */
1734         size = (o->oo_keysize + sizeof(__u64) - 1) / sizeof(__u64);
1735         size *= sizeof(__u64);
1736
1737         LASSERT(size <= MAXNAMELEN);
1738
1739         if (unlikely(size > o->oo_keysize))
1740                 memset(dst + o->oo_keysize, 0, size - o->oo_keysize);
1741         memcpy(dst, (const char *)src, o->oo_keysize);
1742
1743         return (size/sizeof(__u64));
1744 }
1745
1746 static int osd_index_lookup(const struct lu_env *env, struct dt_object *dt,
1747                         struct dt_rec *rec, const struct dt_key *key)
1748 {
1749         struct osd_object *obj = osd_dt_obj(dt);
1750         struct osd_device *osd = osd_obj2dev(obj);
1751         __u64             *k = osd_oti_get(env)->oti_key64;
1752         int                rc;
1753         ENTRY;
1754
1755         rc = osd_prepare_key_uint64(obj, k, key);
1756
1757         rc = -zap_lookup_uint64(osd->od_os, obj->oo_dn->dn_object,
1758                                 k, rc, obj->oo_recusize, obj->oo_recsize,
1759                                 (void *)rec);
1760         RETURN(rc == 0 ? 1 : rc);
1761 }
1762
1763 static int osd_declare_index_insert(const struct lu_env *env,
1764                                     struct dt_object *dt,
1765                                     const struct dt_rec *rec,
1766                                     const struct dt_key *key,
1767                                     struct thandle *th)
1768 {
1769         struct osd_object  *obj = osd_dt_obj(dt);
1770         struct osd_thandle *oh;
1771         ENTRY;
1772
1773         LASSERT(th != NULL);
1774         oh = container_of(th, struct osd_thandle, ot_super);
1775
1776         LASSERT(obj->oo_dn);
1777
1778         /* do not specify the key as then DMU is trying to look it up
1779          * which is very expensive. usually the layers above lookup
1780          * before insertion */
1781         osd_tx_hold_zap(oh->ot_tx, obj->oo_dn->dn_object, obj->oo_dn,
1782                         TRUE, NULL);
1783
1784         RETURN(0);
1785 }
1786
1787 static int osd_index_insert(const struct lu_env *env, struct dt_object *dt,
1788                             const struct dt_rec *rec, const struct dt_key *key,
1789                             struct thandle *th)
1790 {
1791         struct osd_object  *obj = osd_dt_obj(dt);
1792         struct osd_device  *osd = osd_obj2dev(obj);
1793         struct osd_thandle *oh;
1794         __u64              *k = osd_oti_get(env)->oti_key64;
1795         int                 rc;
1796         ENTRY;
1797
1798         LASSERT(obj->oo_dn);
1799         LASSERT(dt_object_exists(dt));
1800         LASSERT(osd_invariant(obj));
1801         LASSERT(th != NULL);
1802
1803         oh = container_of(th, struct osd_thandle, ot_super);
1804
1805         rc = osd_prepare_key_uint64(obj, k, key);
1806
1807         /* Insert (key,oid) into ZAP */
1808         rc = -zap_add_uint64(osd->od_os, obj->oo_dn->dn_object,
1809                              k, rc, obj->oo_recusize, obj->oo_recsize,
1810                              (void *)rec, oh->ot_tx);
1811         RETURN(rc);
1812 }
1813
1814 static int osd_declare_index_delete(const struct lu_env *env,
1815                                     struct dt_object *dt,
1816                                     const struct dt_key *key,
1817                                     struct thandle *th)
1818 {
1819         struct osd_object  *obj = osd_dt_obj(dt);
1820         struct osd_thandle *oh;
1821         ENTRY;
1822
1823         LASSERT(dt_object_exists(dt));
1824         LASSERT(osd_invariant(obj));
1825         LASSERT(th != NULL);
1826         LASSERT(obj->oo_dn);
1827
1828         oh = container_of(th, struct osd_thandle, ot_super);
1829
1830         /* do not specify the key as then DMU is trying to look it up
1831          * which is very expensive. usually the layers above lookup
1832          * before deletion */
1833         osd_tx_hold_zap(oh->ot_tx, obj->oo_dn->dn_object, obj->oo_dn,
1834                         FALSE, NULL);
1835
1836         RETURN(0);
1837 }
1838
1839 static int osd_index_delete(const struct lu_env *env, struct dt_object *dt,
1840                             const struct dt_key *key, struct thandle *th)
1841 {
1842         struct osd_object  *obj = osd_dt_obj(dt);
1843         struct osd_device  *osd = osd_obj2dev(obj);
1844         struct osd_thandle *oh;
1845         __u64              *k = osd_oti_get(env)->oti_key64;
1846         int                 rc;
1847         ENTRY;
1848
1849         LASSERT(obj->oo_dn);
1850         LASSERT(th != NULL);
1851         oh = container_of(th, struct osd_thandle, ot_super);
1852
1853         rc = osd_prepare_key_uint64(obj, k, key);
1854
1855         /* Remove binary key from the ZAP */
1856         rc = -zap_remove_uint64(osd->od_os, obj->oo_dn->dn_object,
1857                                 k, rc, oh->ot_tx);
1858         RETURN(rc);
1859 }
1860
1861 static int osd_index_it_get(const struct lu_env *env, struct dt_it *di,
1862                             const struct dt_key *key)
1863 {
1864         struct osd_zap_it *it = (struct osd_zap_it *)di;
1865         struct osd_object *obj = it->ozi_obj;
1866         struct osd_device *osd = osd_obj2dev(obj);
1867         ENTRY;
1868
1869         LASSERT(it);
1870         LASSERT(it->ozi_zc);
1871
1872         /*
1873          * XXX: we need a binary version of zap_cursor_move_to_key()
1874          *      to implement this API */
1875         if (*((const __u64 *)key) != 0)
1876                 CERROR("NOT IMPLEMETED YET (move to %#llx)\n",
1877                        *((__u64 *)key));
1878
1879         zap_cursor_fini(it->ozi_zc);
1880         zap_cursor_init(it->ozi_zc, osd->od_os, obj->oo_dn->dn_object);
1881         it->ozi_reset = 1;
1882
1883         RETURN(+1);
1884 }
1885
1886 static int osd_index_it_next(const struct lu_env *env, struct dt_it *di)
1887 {
1888         struct osd_zap_it *it = (struct osd_zap_it *)di;
1889         zap_attribute_t   *za = &osd_oti_get(env)->oti_za;
1890         int                rc;
1891         ENTRY;
1892
1893         if (it->ozi_reset == 0)
1894                 zap_cursor_advance(it->ozi_zc);
1895         it->ozi_reset = 0;
1896
1897         /*
1898          * According to current API we need to return error if it's last entry.
1899          * zap_cursor_advance() does not return any value. So we need to call
1900          * retrieve to check if there is any record.  We should make
1901          * changes to Iterator API to not return status for this API
1902          */
1903         rc = -zap_cursor_retrieve(it->ozi_zc, za);
1904         if (rc == -ENOENT)
1905                 RETURN(+1);
1906
1907         RETURN((rc));
1908 }
1909
1910 static struct dt_key *osd_index_it_key(const struct lu_env *env,
1911                                        const struct dt_it *di)
1912 {
1913         struct osd_zap_it *it = (struct osd_zap_it *)di;
1914         struct osd_object *obj = it->ozi_obj;
1915         zap_attribute_t   *za = &osd_oti_get(env)->oti_za;
1916         int                rc = 0;
1917         ENTRY;
1918
1919         it->ozi_reset = 0;
1920         rc = -zap_cursor_retrieve(it->ozi_zc, za);
1921         if (rc)
1922                 RETURN(ERR_PTR(rc));
1923
1924         /* the binary key is stored in the name */
1925         memcpy(&it->ozi_key, za->za_name, obj->oo_keysize);
1926
1927         RETURN((struct dt_key *)&it->ozi_key);
1928 }
1929
1930 static int osd_index_it_key_size(const struct lu_env *env,
1931                                 const struct dt_it *di)
1932 {
1933         struct osd_zap_it *it = (struct osd_zap_it *)di;
1934         struct osd_object *obj = it->ozi_obj;
1935         RETURN(obj->oo_keysize);
1936 }
1937
1938 static int osd_index_it_rec(const struct lu_env *env, const struct dt_it *di,
1939                             struct dt_rec *rec, __u32 attr)
1940 {
1941         zap_attribute_t   *za = &osd_oti_get(env)->oti_za;
1942         struct osd_zap_it *it = (struct osd_zap_it *)di;
1943         struct osd_object *obj = it->ozi_obj;
1944         struct osd_device *osd = osd_obj2dev(obj);
1945         __u64             *k = osd_oti_get(env)->oti_key64;
1946         int                rc;
1947         ENTRY;
1948
1949         it->ozi_reset = 0;
1950         rc = -zap_cursor_retrieve(it->ozi_zc, za);
1951         if (rc)
1952                 RETURN(rc);
1953
1954         rc = osd_prepare_key_uint64(obj, k, (const struct dt_key *)za->za_name);
1955
1956         rc = -zap_lookup_uint64(osd->od_os, obj->oo_dn->dn_object,
1957                                 k, rc, obj->oo_recusize, obj->oo_recsize,
1958                                 (void *)rec);
1959         RETURN(rc);
1960 }
1961
1962 static __u64 osd_index_it_store(const struct lu_env *env,
1963                                 const struct dt_it *di)
1964 {
1965         struct osd_zap_it *it = (struct osd_zap_it *)di;
1966
1967         it->ozi_reset = 0;
1968         RETURN((__u64)zap_cursor_serialize(it->ozi_zc));
1969 }
1970
1971 static int osd_index_it_load(const struct lu_env *env, const struct dt_it *di,
1972                              __u64 hash)
1973 {
1974         struct osd_zap_it *it = (struct osd_zap_it *)di;
1975         struct osd_object *obj = it->ozi_obj;
1976         struct osd_device *osd = osd_obj2dev(obj);
1977         zap_attribute_t   *za = &osd_oti_get(env)->oti_za;
1978         int                rc;
1979         ENTRY;
1980
1981         /* reset the cursor */
1982         zap_cursor_fini(it->ozi_zc);
1983         zap_cursor_init_serialized(it->ozi_zc, osd->od_os,
1984                                    obj->oo_dn->dn_object, hash);
1985         it->ozi_reset = 0;
1986
1987         rc = -zap_cursor_retrieve(it->ozi_zc, za);
1988         if (rc == 0)
1989                 RETURN(+1);
1990         else if (rc == -ENOENT)
1991                 RETURN(0);
1992
1993         RETURN(rc);
1994 }
1995
1996 static const struct dt_index_operations osd_index_ops = {
1997         .dio_lookup             = osd_index_lookup,
1998         .dio_declare_insert     = osd_declare_index_insert,
1999         .dio_insert             = osd_index_insert,
2000         .dio_declare_delete     = osd_declare_index_delete,
2001         .dio_delete             = osd_index_delete,
2002         .dio_it = {
2003                 .init           = osd_index_it_init,
2004                 .fini           = osd_index_it_fini,
2005                 .get            = osd_index_it_get,
2006                 .put            = osd_index_it_put,
2007                 .next           = osd_index_it_next,
2008                 .key            = osd_index_it_key,
2009                 .key_size       = osd_index_it_key_size,
2010                 .rec            = osd_index_it_rec,
2011                 .store          = osd_index_it_store,
2012                 .load           = osd_index_it_load
2013         }
2014 };
2015
2016 int osd_index_try(const struct lu_env *env, struct dt_object *dt,
2017                 const struct dt_index_features *feat)
2018 {
2019         struct osd_object *obj = osd_dt_obj(dt);
2020         struct osd_device *osd = osd_obj2dev(obj);
2021         const struct lu_fid *fid = lu_object_fid(&dt->do_lu);
2022         int rc = 0;
2023         ENTRY;
2024
2025         down_read(&obj->oo_guard);
2026
2027         /*
2028          * XXX: implement support for fixed-size keys sorted with natural
2029          *      numerical way (not using internal hash value)
2030          */
2031         if (feat->dif_flags & DT_IND_RANGE)
2032                 GOTO(out, rc = -ERANGE);
2033
2034         if (unlikely(feat == &dt_otable_features)) {
2035                 dt->do_index_ops = &osd_otable_ops;
2036                 GOTO(out, rc = 0);
2037         }
2038
2039         LASSERT(!dt_object_exists(dt) || obj->oo_dn != NULL);
2040         if (likely(feat == &dt_directory_features)) {
2041                 if (!dt_object_exists(dt) || osd_object_is_zap(obj->oo_dn))
2042                         dt->do_index_ops = &osd_dir_ops;
2043                 else
2044                         GOTO(out, rc = -ENOTDIR);
2045         } else if (unlikely(feat == &dt_acct_features)) {
2046                 LASSERT(fid_is_acct(fid));
2047                 dt->do_index_ops = &osd_acct_index_ops;
2048         } else if (dt->do_index_ops == NULL) {
2049                 /* For index file, we don't support variable key & record sizes
2050                  * and the key has to be unique */
2051                 if ((feat->dif_flags & ~DT_IND_UPDATE) != 0)
2052                         GOTO(out, rc = -EINVAL);
2053
2054                 if (feat->dif_keysize_max > ZAP_MAXNAMELEN)
2055                         GOTO(out, rc = -E2BIG);
2056                 if (feat->dif_keysize_max != feat->dif_keysize_min)
2057                         GOTO(out, rc = -EINVAL);
2058
2059                 /* As for the record size, it should be a multiple of 8 bytes
2060                  * and smaller than the maximum value length supported by ZAP.
2061                  */
2062                 if (feat->dif_recsize_max > ZAP_MAXVALUELEN)
2063                         GOTO(out, rc = -E2BIG);
2064                 if (feat->dif_recsize_max != feat->dif_recsize_min)
2065                         GOTO(out, rc = -EINVAL);
2066
2067                 obj->oo_keysize = feat->dif_keysize_max;
2068                 obj->oo_recsize = feat->dif_recsize_max;
2069                 obj->oo_recusize = 1;
2070
2071                 /* ZFS prefers to work with array of 64bits */
2072                 if ((obj->oo_recsize & 7) == 0) {
2073                         obj->oo_recsize >>= 3;
2074                         obj->oo_recusize = 8;
2075                 }
2076                 dt->do_index_ops = &osd_index_ops;
2077
2078                 if (feat == &dt_lfsck_layout_orphan_features ||
2079                     feat == &dt_lfsck_layout_dangling_features ||
2080                     feat == &dt_lfsck_namespace_features)
2081                         GOTO(out, rc = 0);
2082
2083                 rc = osd_index_register(osd, fid, obj->oo_keysize,
2084                                         obj->oo_recusize * obj->oo_recsize);
2085                 if (rc < 0)
2086                         CWARN("%s: failed to register index "DFID": rc = %d\n",
2087                               osd_name(osd), PFID(fid), rc);
2088                 else if (rc > 0)
2089                         rc = 0;
2090                 else
2091                         CDEBUG(D_LFSCK, "%s: index object "DFID
2092                                " (%u/%u/%u) registered\n",
2093                                osd_name(osd), PFID(fid), obj->oo_keysize,
2094                                obj->oo_recusize, obj->oo_recsize);
2095         }
2096
2097 out:
2098         up_read(&obj->oo_guard);
2099
2100         RETURN(rc);
2101 }