Whamcloud - gitweb
LU-3489 osd-zfs: varsize index support
[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.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  */
30 /*
31  * Copyright (c) 2012, 2013, Intel Corporation.
32  * Use is subject to license terms.
33  */
34 /*
35  * This file is part of Lustre, http://www.lustre.org/
36  * Lustre is a trademark of Sun Microsystems, Inc.
37  *
38  * lustre/osd-zfs/osd_index.c
39  *
40  * Author: Alex Zhuravlev <bzzz@whamcloud.com>
41  * Author: Mike Pershin <tappro@whamcloud.com>
42  */
43
44 #define DEBUG_SUBSYSTEM S_OSD
45
46 #include <lustre_ver.h>
47 #include <libcfs/libcfs.h>
48 #include <obd_support.h>
49 #include <lustre_net.h>
50 #include <obd.h>
51 #include <obd_class.h>
52 #include <lustre_disk.h>
53 #include <lustre_fid.h>
54
55 #include "osd_internal.h"
56
57 #include <sys/dnode.h>
58 #include <sys/dbuf.h>
59 #include <sys/spa.h>
60 #include <sys/stat.h>
61 #include <sys/zap.h>
62 #include <sys/spa_impl.h>
63 #include <sys/zfs_znode.h>
64 #include <sys/dmu_tx.h>
65 #include <sys/dmu_objset.h>
66 #include <sys/dsl_prop.h>
67 #include <sys/sa_impl.h>
68 #include <sys/txg.h>
69
70 static struct dt_it *osd_index_it_init(const struct lu_env *env,
71                                        struct dt_object *dt,
72                                        __u32 unused,
73                                        struct lustre_capa *capa)
74 {
75         struct osd_thread_info  *info = osd_oti_get(env);
76         struct osd_zap_it       *it;
77         struct osd_object       *obj = osd_dt_obj(dt);
78         struct osd_device       *osd = osd_obj2dev(obj);
79         struct lu_object        *lo  = &dt->do_lu;
80         ENTRY;
81
82         /* XXX: check capa ? */
83
84         LASSERT(lu_object_exists(lo));
85         LASSERT(obj->oo_db);
86         LASSERT(udmu_object_is_zap(obj->oo_db));
87         LASSERT(info);
88
89         it = &info->oti_it_zap;
90
91         if (udmu_zap_cursor_init(&it->ozi_zc, &osd->od_objset,
92                                  obj->oo_db->db_object, 0))
93                 RETURN(ERR_PTR(-ENOMEM));
94
95         it->ozi_obj   = obj;
96         it->ozi_capa  = capa;
97         it->ozi_reset = 1;
98         lu_object_get(lo);
99
100         RETURN((struct dt_it *)it);
101 }
102
103 static void osd_index_it_fini(const struct lu_env *env, struct dt_it *di)
104 {
105         struct osd_zap_it *it = (struct osd_zap_it *)di;
106         struct osd_object *obj;
107         ENTRY;
108
109         LASSERT(it);
110         LASSERT(it->ozi_obj);
111
112         obj = it->ozi_obj;
113
114         udmu_zap_cursor_fini(it->ozi_zc);
115         lu_object_put(env, &obj->oo_dt.do_lu);
116
117         EXIT;
118 }
119
120
121 static void osd_index_it_put(const struct lu_env *env, struct dt_it *di)
122 {
123         /* PBS: do nothing : ref are incremented at retrive and decreamented
124          *      next/finish. */
125 }
126
127 int udmu_zap_cursor_retrieve_key(const struct lu_env *env,
128                                  zap_cursor_t *zc, char *key, int max)
129 {
130         zap_attribute_t *za = &osd_oti_get(env)->oti_za;
131         int              err;
132
133         if ((err = zap_cursor_retrieve(zc, za)))
134                 return err;
135
136         if (key)
137                 strcpy(key, za->za_name);
138
139         return 0;
140 }
141
142 /*
143  * zap_cursor_retrieve read from current record.
144  * to read bytes we need to call zap_lookup explicitly.
145  */
146 int udmu_zap_cursor_retrieve_value(const struct lu_env *env,
147                 zap_cursor_t *zc,  char *buf,
148                 int buf_size, int *bytes_read)
149 {
150         zap_attribute_t *za = &osd_oti_get(env)->oti_za;
151         int err, actual_size;
152
153         if ((err = zap_cursor_retrieve(zc, za)))
154                 return err;
155
156         if (za->za_integer_length <= 0)
157                 return (ERANGE);
158
159         actual_size = za->za_integer_length * za->za_num_integers;
160
161         if (actual_size > buf_size) {
162                 actual_size = buf_size;
163                 buf_size = actual_size / za->za_integer_length;
164         } else {
165                 buf_size = za->za_num_integers;
166         }
167
168         err = -zap_lookup(zc->zc_objset, zc->zc_zapobj,
169                         za->za_name, za->za_integer_length,
170                         buf_size, buf);
171
172         if (!err)
173                 *bytes_read = actual_size;
174
175         return err;
176 }
177
178 static inline void osd_it_append_attrs(struct lu_dirent *ent, __u32 attr,
179                                        int len, __u16 type)
180 {
181         const unsigned    align = sizeof(struct luda_type) - 1;
182         struct luda_type *lt;
183
184         /* check if file type is required */
185         if (attr & LUDA_TYPE) {
186                 len = (len + align) & ~align;
187
188                 lt = (void *)ent->lde_name + len;
189                 lt->lt_type = cpu_to_le16(DTTOIF(type));
190                 ent->lde_attrs |= LUDA_TYPE;
191         }
192
193         ent->lde_attrs = cpu_to_le32(ent->lde_attrs);
194 }
195
196 /*
197  * as we don't know FID, we can't use LU object, so this function
198  * partially duplicate __osd_xattr_get() which is built around
199  * LU-object and uses it to cache data like regular EA dnode, etc
200  */
201 static int osd_find_parent_by_dnode(const struct lu_env *env,
202                                     struct dt_object *o,
203                                     struct lu_fid *fid)
204 {
205         struct lustre_mdt_attrs *lma;
206         udmu_objset_t           *uos = &osd_obj2dev(osd_dt_obj(o))->od_objset;
207         struct lu_buf            buf;
208         sa_handle_t             *sa_hdl;
209         nvlist_t                *nvbuf = NULL;
210         uchar_t                 *value;
211         uint64_t                 dnode;
212         int                      rc, size;
213         ENTRY;
214
215         /* first of all, get parent dnode from own attributes */
216         LASSERT(osd_dt_obj(o)->oo_db);
217         rc = -sa_handle_get(uos->os, osd_dt_obj(o)->oo_db->db_object,
218                             NULL, SA_HDL_PRIVATE, &sa_hdl);
219         if (rc)
220                 RETURN(rc);
221
222         dnode = ZFS_NO_OBJECT;
223         rc = -sa_lookup(sa_hdl, SA_ZPL_PARENT(uos), &dnode, 8);
224         sa_handle_destroy(sa_hdl);
225         if (rc)
226                 RETURN(rc);
227
228         /* now get EA buffer */
229         rc = __osd_xattr_load(uos, dnode, &nvbuf);
230         if (rc)
231                 GOTO(regular, rc);
232
233         /* XXX: if we get that far.. should we cache the result? */
234
235         /* try to find LMA attribute */
236         LASSERT(nvbuf != NULL);
237         rc = -nvlist_lookup_byte_array(nvbuf, XATTR_NAME_LMA, &value, &size);
238         if (rc == 0 && size >= sizeof(*lma)) {
239                 lma = (struct lustre_mdt_attrs *)value;
240                 lustre_lma_swab(lma);
241                 *fid = lma->lma_self_fid;
242                 GOTO(out, rc = 0);
243         }
244
245 regular:
246         /* no LMA attribute in SA, let's try regular EA */
247
248         /* first of all, get parent dnode storing regular EA */
249         rc = -sa_handle_get(uos->os, dnode, NULL, SA_HDL_PRIVATE, &sa_hdl);
250         if (rc)
251                 GOTO(out, rc);
252
253         dnode = ZFS_NO_OBJECT;
254         rc = -sa_lookup(sa_hdl, SA_ZPL_XATTR(uos), &dnode, 8);
255         sa_handle_destroy(sa_hdl);
256         if (rc)
257                 GOTO(out, rc);
258
259         CLASSERT(sizeof(*lma) <= sizeof(osd_oti_get(env)->oti_buf));
260         buf.lb_buf = osd_oti_get(env)->oti_buf;
261         buf.lb_len = sizeof(osd_oti_get(env)->oti_buf);
262
263         /* now try to find LMA */
264         rc = __osd_xattr_get_large(env, uos, dnode, &buf,
265                                    XATTR_NAME_LMA, &size);
266         if (rc == 0 && size >= sizeof(*lma)) {
267                 lma = buf.lb_buf;
268                 lustre_lma_swab(lma);
269                 *fid = lma->lma_self_fid;
270                 GOTO(out, rc = 0);
271         } else if (rc < 0) {
272                 GOTO(out, rc);
273         } else {
274                 GOTO(out, rc = -EIO);
275         }
276
277 out:
278         if (nvbuf != NULL)
279                 nvlist_free(nvbuf);
280         RETURN(rc);
281 }
282
283 static int osd_find_parent_fid(const struct lu_env *env, struct dt_object *o,
284                                struct lu_fid *fid)
285 {
286         struct link_ea_header  *leh;
287         struct link_ea_entry   *lee;
288         struct lu_buf           buf;
289         int                     rc;
290         ENTRY;
291
292         buf.lb_buf = osd_oti_get(env)->oti_buf;
293         buf.lb_len = sizeof(osd_oti_get(env)->oti_buf);
294
295         rc = osd_xattr_get(env, o, &buf, XATTR_NAME_LINK, BYPASS_CAPA);
296         if (rc == -ERANGE) {
297                 rc = osd_xattr_get(env, o, &LU_BUF_NULL,
298                                    XATTR_NAME_LINK, BYPASS_CAPA);
299                 if (rc < 0)
300                         RETURN(rc);
301                 LASSERT(rc > 0);
302                 OBD_ALLOC(buf.lb_buf, rc);
303                 if (buf.lb_buf == NULL)
304                         RETURN(-ENOMEM);
305                 buf.lb_len = rc;
306                 rc = osd_xattr_get(env, o, &buf, XATTR_NAME_LINK, BYPASS_CAPA);
307         }
308         if (rc < 0)
309                 GOTO(out, rc);
310         if (rc < sizeof(*leh) + sizeof(*lee))
311                 GOTO(out, rc = -EINVAL);
312
313         leh = buf.lb_buf;
314         if (leh->leh_magic == __swab32(LINK_EA_MAGIC)) {
315                 leh->leh_magic = LINK_EA_MAGIC;
316                 leh->leh_reccount = __swab32(leh->leh_reccount);
317                 leh->leh_len = __swab64(leh->leh_len);
318         }
319         if (leh->leh_magic != LINK_EA_MAGIC)
320                 GOTO(out, rc = -EINVAL);
321         if (leh->leh_reccount == 0)
322                 GOTO(out, rc = -ENODATA);
323
324         lee = (struct link_ea_entry *)(leh + 1);
325         fid_be_to_cpu(fid, (const struct lu_fid *)&lee->lee_parent_fid);
326         rc = 0;
327
328 out:
329         if (buf.lb_buf != osd_oti_get(env)->oti_buf)
330                 OBD_FREE(buf.lb_buf, buf.lb_len);
331
332 #if 0
333         /* this block can be enabled for additional verification
334          * it's trying to match FID from LinkEA vs. FID from LMA */
335         if (rc == 0) {
336                 struct lu_fid fid2;
337                 int rc2;
338                 rc2 = osd_find_parent_by_dnode(env, o, &fid2);
339                 if (rc2 == 0)
340                         if (lu_fid_eq(fid, &fid2) == 0)
341                                 CERROR("wrong parent: "DFID" != "DFID"\n",
342                                        PFID(fid), PFID(&fid2));
343         }
344 #endif
345
346         /* no LinkEA is found, let's try to find the fid in parent's LMA */
347         if (unlikely(rc != 0))
348                 rc = osd_find_parent_by_dnode(env, o, fid);
349
350         RETURN(rc);
351 }
352
353 static int osd_dir_lookup(const struct lu_env *env, struct dt_object *dt,
354                           struct dt_rec *rec, const struct dt_key *key,
355                           struct lustre_capa *capa)
356 {
357         struct osd_thread_info *oti = osd_oti_get(env);
358         struct osd_object  *obj = osd_dt_obj(dt);
359         struct osd_device  *osd = osd_obj2dev(obj);
360         char               *name = (char *)key;
361         int                 rc;
362         ENTRY;
363
364         LASSERT(udmu_object_is_zap(obj->oo_db));
365
366         if (name[0] == '.') {
367                 if (name[1] == 0) {
368                         const struct lu_fid *f = lu_object_fid(&dt->do_lu);
369                         memcpy(rec, f, sizeof(*f));
370                         RETURN(1);
371                 } else if (name[1] == '.' && name[2] == 0) {
372                         rc = osd_find_parent_fid(env, dt, (struct lu_fid *)rec);
373                         RETURN(rc == 0 ? 1 : rc);
374                 }
375         }
376
377         rc = -zap_lookup(osd->od_objset.os, obj->oo_db->db_object,
378                          (char *)key, 8, sizeof(oti->oti_zde) / 8,
379                          (void *)&oti->oti_zde);
380         memcpy(rec, &oti->oti_zde.lzd_fid, sizeof(struct lu_fid));
381
382         RETURN(rc == 0 ? 1 : rc);
383 }
384
385 static int osd_declare_dir_insert(const struct lu_env *env,
386                                   struct dt_object *dt,
387                                   const struct dt_rec *rec,
388                                   const struct dt_key *key,
389                                   struct thandle *th)
390 {
391         struct osd_object  *obj = osd_dt_obj(dt);
392         struct osd_thandle *oh;
393         ENTRY;
394
395         LASSERT(th != NULL);
396         oh = container_of0(th, struct osd_thandle, ot_super);
397
398         LASSERT(obj->oo_db);
399         LASSERT(udmu_object_is_zap(obj->oo_db));
400
401         dmu_tx_hold_bonus(oh->ot_tx, obj->oo_db->db_object);
402         dmu_tx_hold_zap(oh->ot_tx, obj->oo_db->db_object, TRUE, (char *)key);
403
404         RETURN(0);
405 }
406
407 /**
408  * Find the osd object for given fid.
409  *
410  * \param fid need to find the osd object having this fid
411  *
412  * \retval osd_object on success
413  * \retval        -ve on error
414  */
415 struct osd_object *osd_object_find(const struct lu_env *env,
416                                    struct dt_object *dt,
417                                    const struct lu_fid *fid)
418 {
419         struct lu_device         *ludev = dt->do_lu.lo_dev;
420         struct osd_object        *child = NULL;
421         struct lu_object         *luch;
422         struct lu_object         *lo;
423
424         /*
425          * at this point topdev might not exist yet
426          * (i.e. MGS is preparing profiles). so we can
427          * not rely on topdev and instead lookup with
428          * our device passed as topdev. this can't work
429          * if the object isn't cached yet (as osd doesn't
430          * allocate lu_header). IOW, the object must be
431          * in the cache, otherwise lu_object_alloc() crashes
432          * -bzzz
433          */
434         luch = lu_object_find_at(env, ludev, fid, NULL);
435         if (IS_ERR(luch))
436                 return (void *)luch;
437
438         if (lu_object_exists(luch)) {
439                 lo = lu_object_locate(luch->lo_header, ludev->ld_type);
440                 if (lo != NULL)
441                         child = osd_obj(lo);
442                 else
443                         LU_OBJECT_DEBUG(D_ERROR, env, luch,
444                                         "%s: object can't be located "DFID"\n",
445                                         osd_dev(ludev)->od_svname, PFID(fid));
446
447                 if (child == NULL) {
448                         lu_object_put(env, luch);
449                         CERROR("%s: Unable to get osd_object "DFID"\n",
450                                osd_dev(ludev)->od_svname, PFID(fid));
451                         child = ERR_PTR(-ENOENT);
452                 }
453         } else {
454                 LU_OBJECT_DEBUG(D_ERROR, env, luch,
455                                 "%s: lu_object does not exists "DFID"\n",
456                                 osd_dev(ludev)->od_svname, PFID(fid));
457                 lu_object_put(env, luch);
458                 child = ERR_PTR(-ENOENT);
459         }
460
461         return child;
462 }
463
464 /**
465  * Put the osd object once done with it.
466  *
467  * \param obj osd object that needs to be put
468  */
469 static inline void osd_object_put(const struct lu_env *env,
470                                   struct osd_object *obj)
471 {
472         lu_object_put(env, &obj->oo_dt.do_lu);
473 }
474
475 static int osd_mdt_seq_exists(const struct lu_env *env, struct osd_device *osd,
476                               obd_seq seq)
477 {
478         struct lu_seq_range     *range = &osd_oti_get(env)->oti_seq_range;
479         struct seq_server_site  *ss = osd_seq_site(osd);
480         int                     rc;
481         ENTRY;
482
483         if (ss == NULL)
484                 RETURN(1);
485
486         /* XXX: currently, each MDT only store avaible sequence on disk,
487          * and no allocated sequences information on disk, so it has to
488          * lookup FLDB. It probably makes more sense also store allocated
489          * sequence locally, so we do not need do remote FLDB lookup in OSD */
490         rc = osd_fld_lookup(env, osd, seq, range);
491         if (rc != 0) {
492                 CERROR("%s: Can not lookup fld for "LPX64"\n",
493                        osd_name(osd), seq);
494                 RETURN(0);
495         }
496
497         RETURN(ss->ss_node_id == range->lsr_index);
498 }
499
500 static int osd_remote_fid(const struct lu_env *env, struct osd_device *osd,
501                           struct lu_fid *fid)
502 {
503         ENTRY;
504
505         if (!fid_is_norm(fid) && !fid_is_root(fid))
506                 RETURN(0);
507
508         /* Currently, it only used to check FID on MDT */
509         if (osd_mdt_seq_exists(env, osd, fid_seq(fid)))
510                 RETURN(0);
511
512         RETURN(1);
513 }
514
515 /**
516  *      Inserts (key, value) pair in \a directory object.
517  *
518  *      \param  dt      osd index object
519  *      \param  key     key for index
520  *      \param  rec     record reference
521  *      \param  th      transaction handler
522  *      \param  capa    capability descriptor
523  *      \param  ignore_quota update should not affect quota
524  *
525  *      \retval  0  success
526  *      \retval -ve failure
527  */
528 static int osd_dir_insert(const struct lu_env *env, struct dt_object *dt,
529                           const struct dt_rec *rec, const struct dt_key *key,
530                           struct thandle *th, struct lustre_capa *capa,
531                           int ignore_quota)
532 {
533         struct osd_thread_info *oti = osd_oti_get(env);
534         struct osd_object   *parent = osd_dt_obj(dt);
535         struct osd_device   *osd = osd_obj2dev(parent);
536         struct lu_fid       *fid = (struct lu_fid *)rec;
537         struct osd_thandle  *oh;
538         struct osd_object   *child = NULL;
539         __u32                attr;
540         char                *name = (char *)key;
541         int                  rc;
542         ENTRY;
543
544         LASSERT(parent->oo_db);
545         LASSERT(udmu_object_is_zap(parent->oo_db));
546
547         LASSERT(dt_object_exists(dt));
548         LASSERT(osd_invariant(parent));
549
550         LASSERT(th != NULL);
551         oh = container_of0(th, struct osd_thandle, ot_super);
552
553         rc = osd_remote_fid(env, osd, fid);
554         if (rc < 0) {
555                 CERROR("%s: Can not find object "DFID": rc = %d\n",
556                        osd->od_svname, PFID(fid), rc);
557                 RETURN(rc);
558         }
559
560         if (unlikely(rc == 1)) {
561                 /* Insert remote entry */
562                 memset(&oti->oti_zde.lzd_reg, 0, sizeof(oti->oti_zde.lzd_reg));
563                 oti->oti_zde.lzd_reg.zde_type = IFTODT(S_IFDIR & S_IFMT);
564         } else {
565                 /*
566                  * To simulate old Orion setups with ./..  stored in the
567                  * directories
568                  */
569                 /* Insert local entry */
570                 child = osd_object_find(env, dt, fid);
571                 if (IS_ERR(child))
572                         RETURN(PTR_ERR(child));
573
574                 LASSERT(child->oo_db);
575                 if (name[0] == '.') {
576                         if (name[1] == 0) {
577                                 /* do not store ".", instead generate it
578                                  * during iteration */
579                                 GOTO(out, rc = 0);
580                         } else if (name[1] == '.' && name[2] == 0) {
581                                 /* update parent dnode in the child.
582                                  * later it will be used to generate ".." */
583                                 udmu_objset_t *uos = &osd->od_objset;
584                                 rc = osd_object_sa_update(parent,
585                                                  SA_ZPL_PARENT(uos),
586                                                  &child->oo_db->db_object,
587                                                  8, oh);
588                                 GOTO(out, rc);
589                         }
590                 }
591                 CLASSERT(sizeof(oti->oti_zde.lzd_reg) == 8);
592                 CLASSERT(sizeof(oti->oti_zde) % 8 == 0);
593                 attr = child->oo_dt.do_lu.lo_header ->loh_attr;
594                 oti->oti_zde.lzd_reg.zde_type = IFTODT(attr & S_IFMT);
595                 oti->oti_zde.lzd_reg.zde_dnode = child->oo_db->db_object;
596         }
597
598         oti->oti_zde.lzd_fid = *fid;
599         /* Insert (key,oid) into ZAP */
600         rc = -zap_add(osd->od_objset.os, parent->oo_db->db_object,
601                       (char *)key, 8, sizeof(oti->oti_zde) / 8,
602                       (void *)&oti->oti_zde, oh->ot_tx);
603
604 out:
605         if (child != NULL)
606                 osd_object_put(env, child);
607
608         RETURN(rc);
609 }
610
611 static int osd_declare_dir_delete(const struct lu_env *env,
612                                   struct dt_object *dt,
613                                   const struct dt_key *key,
614                                   struct thandle *th)
615 {
616         struct osd_object *obj = osd_dt_obj(dt);
617         struct osd_thandle *oh;
618         ENTRY;
619
620         LASSERT(dt_object_exists(dt));
621         LASSERT(osd_invariant(obj));
622
623         LASSERT(th != NULL);
624         oh = container_of0(th, struct osd_thandle, ot_super);
625
626         LASSERT(obj->oo_db);
627         LASSERT(udmu_object_is_zap(obj->oo_db));
628
629         dmu_tx_hold_zap(oh->ot_tx, obj->oo_db->db_object, TRUE, (char *)key);
630
631         RETURN(0);
632 }
633
634 static int osd_dir_delete(const struct lu_env *env, struct dt_object *dt,
635                           const struct dt_key *key, struct thandle *th,
636                           struct lustre_capa *capa)
637 {
638         struct osd_object *obj = osd_dt_obj(dt);
639         struct osd_device *osd = osd_obj2dev(obj);
640         struct osd_thandle *oh;
641         dmu_buf_t *zap_db = obj->oo_db;
642         char      *name = (char *)key;
643         int rc;
644         ENTRY;
645
646         LASSERT(obj->oo_db);
647         LASSERT(udmu_object_is_zap(obj->oo_db));
648
649         LASSERT(th != NULL);
650         oh = container_of0(th, struct osd_thandle, ot_super);
651
652         /*
653          * In Orion . and .. were stored in the directory (not generated upon
654          * request as now). we preserve them for backward compatibility
655          */
656         if (name[0] == '.') {
657                 if (name[1] == 0) {
658                         RETURN(0);
659                 } else if (name[1] == '.' && name[2] == 0) {
660                         RETURN(0);
661                 }
662         }
663
664         /* Remove key from the ZAP */
665         rc = -zap_remove(osd->od_objset.os, zap_db->db_object,
666                          (char *) key, oh->ot_tx);
667
668 #if LUSTRE_VERSION_CODE <= OBD_OCD_VERSION(2, 4, 53, 0)
669         if (unlikely(rc == -ENOENT && name[0] == '.' &&
670             (name[1] == 0 || (name[1] == '.' && name[2] == 0))))
671                 rc = 0;
672 #endif
673         if (unlikely(rc && rc != -ENOENT))
674                 CERROR("%s: zap_remove failed: rc = %d\n", osd->od_svname, rc);
675
676         RETURN(rc);
677 }
678
679 static struct dt_it *osd_dir_it_init(const struct lu_env *env,
680                                      struct dt_object *dt,
681                                      __u32 unused,
682                                      struct lustre_capa *capa)
683 {
684         struct osd_zap_it *it;
685
686         it = (struct osd_zap_it *)osd_index_it_init(env, dt, unused, capa);
687         if (!IS_ERR(it))
688                 it->ozi_pos = 0;
689
690         RETURN((struct dt_it *)it);
691 }
692
693 /**
694  *  Move Iterator to record specified by \a key
695  *
696  *  \param  di      osd iterator
697  *  \param  key     key for index
698  *
699  *  \retval +ve  di points to record with least key not larger than key
700  *  \retval  0   di points to exact matched key
701  *  \retval -ve  failure
702  */
703 static int osd_dir_it_get(const struct lu_env *env,
704                           struct dt_it *di, const struct dt_key *key)
705 {
706         struct osd_zap_it *it = (struct osd_zap_it *)di;
707         struct osd_object *obj = it->ozi_obj;
708         struct osd_device *osd = osd_obj2dev(obj);
709         char              *name = (char *)key;
710         int                rc;
711         ENTRY;
712
713         LASSERT(it);
714         LASSERT(it->ozi_zc);
715
716         udmu_zap_cursor_fini(it->ozi_zc);
717
718         if (udmu_zap_cursor_init(&it->ozi_zc, &osd->od_objset,
719                                  obj->oo_db->db_object, 0))
720                 RETURN(-ENOMEM);
721
722         /* XXX: implementation of the API is broken at the moment */
723         LASSERT(((const char *)key)[0] == 0);
724
725         if (name[0] == 0) {
726                 it->ozi_pos = 0;
727                 RETURN(1);
728         }
729
730         if (name[0] == '.') {
731                 if (name[1] == 0) {
732                         it->ozi_pos = 1;
733                         GOTO(out, rc = 1);
734                 } else if (name[1] == '.' && name[2] == 0) {
735                         it->ozi_pos = 2;
736                         GOTO(out, rc = 1);
737                 }
738         }
739
740         /* neither . nor .. - some real record */
741         it->ozi_pos = 3;
742         rc = +1;
743
744 out:
745         RETURN(rc);
746 }
747
748 static void osd_dir_it_put(const struct lu_env *env, struct dt_it *di)
749 {
750         /* PBS: do nothing : ref are incremented at retrive and decreamented
751          *      next/finish. */
752 }
753
754 /*
755  * in Orion . and .. were stored in the directory, while ZPL
756  * and current osd-zfs generate them up on request. so, we
757  * need to ignore previously stored . and ..
758  */
759 static int osd_index_retrieve_skip_dots(struct osd_zap_it *it,
760                                         zap_attribute_t *za)
761 {
762         int rc, isdot;
763
764         do {
765                 rc = -zap_cursor_retrieve(it->ozi_zc, za);
766
767                 isdot = 0;
768                 if (unlikely(rc == 0 && za->za_name[0] == '.')) {
769                         if (za->za_name[1] == 0) {
770                                 isdot = 1;
771                         } else if (za->za_name[1] == '.' &&
772                                    za->za_name[2] == 0) {
773                                 isdot = 1;
774                         }
775                         if (unlikely(isdot))
776                                 zap_cursor_advance(it->ozi_zc);
777                 }
778         } while (unlikely(rc == 0 && isdot));
779
780         return rc;
781 }
782
783 /**
784  * to load a directory entry at a time and stored it in
785  * iterator's in-memory data structure.
786  *
787  * \param di, struct osd_it_ea, iterator's in memory structure
788  *
789  * \retval +ve, iterator reached to end
790  * \retval   0, iterator not reached to end
791  * \retval -ve, on error
792  */
793 static int osd_dir_it_next(const struct lu_env *env, struct dt_it *di)
794 {
795         struct osd_zap_it *it = (struct osd_zap_it *)di;
796         zap_attribute_t   *za = &osd_oti_get(env)->oti_za;
797         int                rc;
798
799         /* temp. storage should be enough for any key supported by ZFS */
800         CLASSERT(sizeof(za->za_name) <= sizeof(it->ozi_name));
801
802         /*
803          * the first ->next() moves the cursor to .
804          * the second ->next() moves the cursor to ..
805          * then we get to the real records and have to verify any exist
806          */
807         if (it->ozi_pos <= 2) {
808                 it->ozi_pos++;
809                 if (it->ozi_pos <=2)
810                         RETURN(0);
811         }
812
813         zap_cursor_advance(it->ozi_zc);
814
815         /*
816          * According to current API we need to return error if its last entry.
817          * zap_cursor_advance() does not return any value. So we need to call
818          * retrieve to check if there is any record.  We should make
819          * changes to Iterator API to not return status for this API
820          */
821         rc = osd_index_retrieve_skip_dots(it, za);
822
823         if (rc == -ENOENT) /* end of dir */
824                 RETURN(+1);
825
826         RETURN(rc);
827 }
828
829 static struct dt_key *osd_dir_it_key(const struct lu_env *env,
830                                      const struct dt_it *di)
831 {
832         struct osd_zap_it *it = (struct osd_zap_it *)di;
833         zap_attribute_t   *za = &osd_oti_get(env)->oti_za;
834         int                rc = 0;
835         ENTRY;
836
837         if (it->ozi_pos <= 1) {
838                 it->ozi_pos = 1;
839                 RETURN((struct dt_key *)".");
840         } else if (it->ozi_pos == 2) {
841                 RETURN((struct dt_key *)"..");
842         }
843
844         if ((rc = -zap_cursor_retrieve(it->ozi_zc, za)))
845                 RETURN(ERR_PTR(rc));
846
847         strcpy(it->ozi_name, za->za_name);
848
849 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 3, 90, 0)
850         if (za->za_name[0] == '.') {
851                 if (za->za_name[1] == 0 || (za->za_name[1] == '.' &&
852                     za->za_name[2] == 0)) {
853                         /* we should not get onto . and ..
854                          * stored in the directory. ->next() and
855                          * other methods should prevent this
856                          */
857                         LBUG();
858                 }
859         }
860 #endif
861
862         RETURN((struct dt_key *)it->ozi_name);
863 }
864
865 static int osd_dir_it_key_size(const struct lu_env *env, const struct dt_it *di)
866 {
867         struct osd_zap_it *it = (struct osd_zap_it *)di;
868         zap_attribute_t   *za = &osd_oti_get(env)->oti_za;
869         int                rc;
870         ENTRY;
871
872         if (it->ozi_pos <= 1) {
873                 it->ozi_pos = 1;
874                 RETURN(2);
875         } else if (it->ozi_pos == 2) {
876                 RETURN(3);
877         }
878
879         if ((rc = -zap_cursor_retrieve(it->ozi_zc, za)) == 0)
880                 rc = strlen(za->za_name);
881
882 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 3, 90, 0)
883         if (rc == 0 && za->za_name[0] == '.') {
884                 if (za->za_name[1] == 0 || (za->za_name[1] == '.' &&
885                     za->za_name[2] == 0)) {
886                         /* we should not get onto . and ..
887                          * stored in the directory. ->next() and
888                          * other methods should prevent this
889                          */
890                         LBUG();
891                 }
892         }
893 #endif
894         RETURN(rc);
895 }
896
897 static int osd_dir_it_rec(const struct lu_env *env, const struct dt_it *di,
898                           struct dt_rec *dtrec, __u32 attr)
899 {
900         struct osd_zap_it   *it = (struct osd_zap_it *)di;
901         struct lu_dirent    *lde = (struct lu_dirent *)dtrec;
902         struct luz_direntry *zde = &osd_oti_get(env)->oti_zde;
903         zap_attribute_t     *za = &osd_oti_get(env)->oti_za;
904         int                  rc, namelen;
905         ENTRY;
906
907         if (it->ozi_pos <= 1) {
908                 lde->lde_hash = cpu_to_le64(1);
909                 strcpy(lde->lde_name, ".");
910                 lde->lde_namelen = cpu_to_le16(1);
911                 lde->lde_fid = *lu_object_fid(&it->ozi_obj->oo_dt.do_lu);
912                 lde->lde_attrs = LUDA_FID;
913                 /* append lustre attributes */
914                 osd_it_append_attrs(lde, attr, 1, IFTODT(S_IFDIR));
915                 lde->lde_reclen = cpu_to_le16(lu_dirent_calc_size(1, attr));
916                 it->ozi_pos = 1;
917                 GOTO(out, rc = 0);
918
919         } else if (it->ozi_pos == 2) {
920                 lde->lde_hash = cpu_to_le64(2);
921                 strcpy(lde->lde_name, "..");
922                 lde->lde_namelen = cpu_to_le16(2);
923                 lde->lde_attrs = LUDA_FID;
924                 /* append lustre attributes */
925                 osd_it_append_attrs(lde, attr, 2, IFTODT(S_IFDIR));
926                 lde->lde_reclen = cpu_to_le16(lu_dirent_calc_size(2, attr));
927                 rc = osd_find_parent_fid(env, &it->ozi_obj->oo_dt, &lde->lde_fid);
928                 /*
929                  * early Orion code was not setting LinkEA, so it's possible
930                  * some setups still have objects with no LinkEA set.
931                  * but at that time .. was a real record in the directory
932                  * so we should try to lookup .. in ZAP
933                  */
934                 if (rc != -ENOENT)
935                         GOTO(out, rc);
936         }
937
938         LASSERT(lde);
939
940         lde->lde_hash = cpu_to_le64(udmu_zap_cursor_serialize(it->ozi_zc));
941
942         if ((rc = -zap_cursor_retrieve(it->ozi_zc, za)))
943                 GOTO(out, rc);
944
945         namelen = strlen(za->za_name);
946         if (namelen > NAME_MAX)
947                 GOTO(out, rc = -EOVERFLOW);
948         strcpy(lde->lde_name, za->za_name);
949         lde->lde_namelen = cpu_to_le16(namelen);
950
951         if (za->za_integer_length != 8 || za->za_num_integers < 3) {
952                 CERROR("%s: unsupported direntry format: %d %d\n",
953                        osd_obj2dev(it->ozi_obj)->od_svname,
954                        za->za_integer_length, (int)za->za_num_integers);
955
956                 GOTO(out, rc = -EIO);
957         }
958
959         rc = -zap_lookup(it->ozi_zc->zc_objset, it->ozi_zc->zc_zapobj,
960                          za->za_name, za->za_integer_length, 3, zde);
961         if (rc)
962                 GOTO(out, rc);
963
964         lde->lde_fid = zde->lzd_fid;
965         lde->lde_attrs = LUDA_FID;
966
967         /* append lustre attributes */
968         osd_it_append_attrs(lde, attr, namelen, zde->lzd_reg.zde_type);
969
970         lde->lde_reclen = cpu_to_le16(lu_dirent_calc_size(namelen, attr));
971
972 out:
973         RETURN(rc);
974 }
975
976 static __u64 osd_dir_it_store(const struct lu_env *env, const struct dt_it *di)
977 {
978         struct osd_zap_it *it = (struct osd_zap_it *)di;
979         __u64              pos;
980         ENTRY;
981
982         if (it->ozi_pos <= 2)
983                 pos = it->ozi_pos;
984         else
985                 pos = udmu_zap_cursor_serialize(it->ozi_zc);
986
987         RETURN(pos);
988 }
989
990 /*
991  * return status :
992  *  rc == 0 -> end of directory.
993  *  rc >  0 -> ok, proceed.
994  *  rc <  0 -> error.  ( EOVERFLOW  can be masked.)
995  */
996 static int osd_dir_it_load(const struct lu_env *env,
997                         const struct dt_it *di, __u64 hash)
998 {
999         struct osd_zap_it *it = (struct osd_zap_it *)di;
1000         struct osd_object *obj = it->ozi_obj;
1001         struct osd_device *osd = osd_obj2dev(obj);
1002         zap_attribute_t   *za = &osd_oti_get(env)->oti_za;
1003         int                rc;
1004         ENTRY;
1005
1006         udmu_zap_cursor_fini(it->ozi_zc);
1007         if (udmu_zap_cursor_init(&it->ozi_zc, &osd->od_objset,
1008                                  obj->oo_db->db_object, hash))
1009                 RETURN(-ENOMEM);
1010
1011         if (hash <= 2) {
1012                 it->ozi_pos = hash;
1013                 rc = +1;
1014         } else {
1015                 it->ozi_pos = 3;
1016                 /* to return whether the end has been reached */
1017                 rc = osd_index_retrieve_skip_dots(it, za);
1018                 if (rc == 0)
1019                         rc = +1;
1020                 else if (rc == -ENOENT)
1021                         rc = 0;
1022         }
1023
1024         RETURN(rc);
1025 }
1026
1027 static struct dt_index_operations osd_dir_ops = {
1028         .dio_lookup         = osd_dir_lookup,
1029         .dio_declare_insert = osd_declare_dir_insert,
1030         .dio_insert         = osd_dir_insert,
1031         .dio_declare_delete = osd_declare_dir_delete,
1032         .dio_delete         = osd_dir_delete,
1033         .dio_it     = {
1034                 .init     = osd_dir_it_init,
1035                 .fini     = osd_index_it_fini,
1036                 .get      = osd_dir_it_get,
1037                 .put      = osd_dir_it_put,
1038                 .next     = osd_dir_it_next,
1039                 .key      = osd_dir_it_key,
1040                 .key_size = osd_dir_it_key_size,
1041                 .rec      = osd_dir_it_rec,
1042                 .store    = osd_dir_it_store,
1043                 .load     = osd_dir_it_load
1044         }
1045 };
1046
1047 /*
1048  * Primitives for index files using binary keys.
1049  */
1050
1051 static int osd_prepare_key(struct osd_object *o, __u64 *dst,
1052                            const struct dt_key *src)
1053 {
1054         int size;
1055
1056         LASSERT(dst);
1057         LASSERT(src);
1058
1059         /* align keysize to 64bit */
1060         size = (o->oo_keysize + sizeof(__u64) - 1) / sizeof(__u64);
1061         size *= sizeof(__u64);
1062
1063         LASSERT(size <= MAXNAMELEN);
1064
1065         if (unlikely(size > o->oo_keysize))
1066                 memset(dst + o->oo_keysize, 0, size - o->oo_keysize);
1067         memcpy(dst, (const char *)src, o->oo_keysize);
1068
1069         return size;
1070 }
1071
1072 static int osd_index_lookup(const struct lu_env *env, struct dt_object *dt,
1073                         struct dt_rec *rec, const struct dt_key *key,
1074                         struct lustre_capa *capa)
1075 {
1076         struct osd_object *obj = osd_dt_obj(dt);
1077         struct osd_device *osd = osd_obj2dev(obj);
1078         __u64             *k = osd_oti_get(env)->oti_key64;
1079         int                rc;
1080         ENTRY;
1081
1082         rc = osd_prepare_key(obj, k, key);
1083
1084         rc = -zap_lookup_uint64(osd->od_objset.os, obj->oo_db->db_object,
1085                                 k, rc, obj->oo_recusize, obj->oo_recsize,
1086                                 (void *)rec);
1087         RETURN(rc == 0 ? 1 : rc);
1088 }
1089
1090 static int osd_declare_index_insert(const struct lu_env *env,
1091                                     struct dt_object *dt,
1092                                     const struct dt_rec *rec,
1093                                     const struct dt_key *key,
1094                                     struct thandle *th)
1095 {
1096         struct osd_object  *obj = osd_dt_obj(dt);
1097         struct osd_thandle *oh;
1098         ENTRY;
1099
1100         LASSERT(th != NULL);
1101         oh = container_of0(th, struct osd_thandle, ot_super);
1102
1103         LASSERT(obj->oo_db);
1104
1105         dmu_tx_hold_bonus(oh->ot_tx, obj->oo_db->db_object);
1106
1107         /* It is not clear what API should be used for binary keys, so we pass
1108          * a null name which has the side effect of over-reserving space,
1109          * accounting for the worst case. See zap_count_write() */
1110         dmu_tx_hold_zap(oh->ot_tx, obj->oo_db->db_object, TRUE, NULL);
1111
1112         RETURN(0);
1113 }
1114
1115 static int osd_index_insert(const struct lu_env *env, struct dt_object *dt,
1116                             const struct dt_rec *rec, const struct dt_key *key,
1117                             struct thandle *th, struct lustre_capa *capa,
1118                             int ignore_quota)
1119 {
1120         struct osd_object  *obj = osd_dt_obj(dt);
1121         struct osd_device  *osd = osd_obj2dev(obj);
1122         struct osd_thandle *oh;
1123         __u64              *k = osd_oti_get(env)->oti_key64;
1124         int                 rc;
1125         ENTRY;
1126
1127         LASSERT(obj->oo_db);
1128         LASSERT(dt_object_exists(dt));
1129         LASSERT(osd_invariant(obj));
1130         LASSERT(th != NULL);
1131
1132         oh = container_of0(th, struct osd_thandle, ot_super);
1133
1134         rc = osd_prepare_key(obj, k, key);
1135
1136         /* Insert (key,oid) into ZAP */
1137         rc = -zap_add_uint64(osd->od_objset.os, obj->oo_db->db_object,
1138                              k, rc, obj->oo_recusize, obj->oo_recsize,
1139                              (void *)rec, oh->ot_tx);
1140         RETURN(rc);
1141 }
1142
1143 static int osd_declare_index_delete(const struct lu_env *env,
1144                                     struct dt_object *dt,
1145                                     const struct dt_key *key,
1146                                     struct thandle *th)
1147 {
1148         struct osd_object  *obj = osd_dt_obj(dt);
1149         struct osd_thandle *oh;
1150         ENTRY;
1151
1152         LASSERT(dt_object_exists(dt));
1153         LASSERT(osd_invariant(obj));
1154         LASSERT(th != NULL);
1155         LASSERT(obj->oo_db);
1156
1157         oh = container_of0(th, struct osd_thandle, ot_super);
1158         dmu_tx_hold_zap(oh->ot_tx, obj->oo_db->db_object, TRUE, NULL);
1159
1160         RETURN(0);
1161 }
1162
1163 static int osd_index_delete(const struct lu_env *env, struct dt_object *dt,
1164                             const struct dt_key *key, struct thandle *th,
1165                             struct lustre_capa *capa)
1166 {
1167         struct osd_object  *obj = osd_dt_obj(dt);
1168         struct osd_device  *osd = osd_obj2dev(obj);
1169         struct osd_thandle *oh;
1170         __u64              *k = osd_oti_get(env)->oti_key64;
1171         int                 rc;
1172         ENTRY;
1173
1174         LASSERT(obj->oo_db);
1175         LASSERT(th != NULL);
1176         oh = container_of0(th, struct osd_thandle, ot_super);
1177
1178         rc = osd_prepare_key(obj, k, key);
1179
1180         /* Remove binary key from the ZAP */
1181         rc = -zap_remove_uint64(osd->od_objset.os, obj->oo_db->db_object,
1182                                 k, rc, oh->ot_tx);
1183         RETURN(rc);
1184 }
1185
1186 static int osd_index_it_get(const struct lu_env *env, struct dt_it *di,
1187                             const struct dt_key *key)
1188 {
1189         struct osd_zap_it *it = (struct osd_zap_it *)di;
1190         struct osd_object *obj = it->ozi_obj;
1191         struct osd_device *osd = osd_obj2dev(obj);
1192         ENTRY;
1193
1194         LASSERT(it);
1195         LASSERT(it->ozi_zc);
1196
1197         /*
1198          * XXX: we need a binary version of zap_cursor_move_to_key()
1199          *      to implement this API */
1200         if (*((const __u64 *)key) != 0)
1201                 CERROR("NOT IMPLEMETED YET (move to %Lx)\n", *((__u64 *)key));
1202
1203         zap_cursor_fini(it->ozi_zc);
1204         memset(it->ozi_zc, 0, sizeof(*it->ozi_zc));
1205         zap_cursor_init(it->ozi_zc, osd->od_objset.os, obj->oo_db->db_object);
1206         it->ozi_reset = 1;
1207
1208         RETURN(+1);
1209 }
1210
1211 static int osd_index_it_next(const struct lu_env *env, struct dt_it *di)
1212 {
1213         struct osd_zap_it *it = (struct osd_zap_it *)di;
1214         zap_attribute_t   *za = &osd_oti_get(env)->oti_za;
1215         int                rc;
1216         ENTRY;
1217
1218         if (it->ozi_reset == 0)
1219                 zap_cursor_advance(it->ozi_zc);
1220         it->ozi_reset = 0;
1221
1222         /*
1223          * According to current API we need to return error if it's last entry.
1224          * zap_cursor_advance() does not return any value. So we need to call
1225          * retrieve to check if there is any record.  We should make
1226          * changes to Iterator API to not return status for this API
1227          */
1228         rc = -zap_cursor_retrieve(it->ozi_zc, za);
1229         if (rc == -ENOENT)
1230                 RETURN(+1);
1231
1232         RETURN((rc));
1233 }
1234
1235 static struct dt_key *osd_index_it_key(const struct lu_env *env,
1236                                        const struct dt_it *di)
1237 {
1238         struct osd_zap_it *it = (struct osd_zap_it *)di;
1239         struct osd_object *obj = it->ozi_obj;
1240         zap_attribute_t   *za = &osd_oti_get(env)->oti_za;
1241         int                rc = 0;
1242         ENTRY;
1243
1244         it->ozi_reset = 0;
1245         rc = -zap_cursor_retrieve(it->ozi_zc, za);
1246         if (rc)
1247                 RETURN(ERR_PTR(rc));
1248
1249         /* the binary key is stored in the name */
1250         memcpy(&it->ozi_key, za->za_name, obj->oo_keysize);
1251
1252         RETURN((struct dt_key *)&it->ozi_key);
1253 }
1254
1255 static int osd_index_it_key_size(const struct lu_env *env,
1256                                 const struct dt_it *di)
1257 {
1258         struct osd_zap_it *it = (struct osd_zap_it *)di;
1259         struct osd_object *obj = it->ozi_obj;
1260         RETURN(obj->oo_keysize);
1261 }
1262
1263 static int osd_index_it_rec(const struct lu_env *env, const struct dt_it *di,
1264                             struct dt_rec *rec, __u32 attr)
1265 {
1266         zap_attribute_t   *za = &osd_oti_get(env)->oti_za;
1267         struct osd_zap_it *it = (struct osd_zap_it *)di;
1268         struct osd_object *obj = it->ozi_obj;
1269         struct osd_device *osd = osd_obj2dev(obj);
1270         __u64             *k = osd_oti_get(env)->oti_key64;
1271         int                rc;
1272         ENTRY;
1273
1274         it->ozi_reset = 0;
1275         rc = -zap_cursor_retrieve(it->ozi_zc, za);
1276         if (rc)
1277                 RETURN(rc);
1278
1279         rc = osd_prepare_key(obj, k, (const struct dt_key *)za->za_name);
1280
1281         rc = -zap_lookup_uint64(osd->od_objset.os, obj->oo_db->db_object,
1282                                 k, rc, obj->oo_recusize, obj->oo_recsize,
1283                                 (void *)rec);
1284         RETURN(rc);
1285 }
1286
1287 static __u64 osd_index_it_store(const struct lu_env *env,
1288                                 const struct dt_it *di)
1289 {
1290         struct osd_zap_it *it = (struct osd_zap_it *)di;
1291
1292         it->ozi_reset = 0;
1293         RETURN((__u64)zap_cursor_serialize(it->ozi_zc));
1294 }
1295
1296 static int osd_index_it_load(const struct lu_env *env, const struct dt_it *di,
1297                              __u64 hash)
1298 {
1299         struct osd_zap_it *it = (struct osd_zap_it *)di;
1300         struct osd_object *obj = it->ozi_obj;
1301         struct osd_device *osd = osd_obj2dev(obj);
1302         zap_attribute_t   *za = &osd_oti_get(env)->oti_za;
1303         int                rc;
1304         ENTRY;
1305
1306         /* close the current cursor */
1307         zap_cursor_fini(it->ozi_zc);
1308
1309         /* create a new one starting at hash */
1310         memset(it->ozi_zc, 0, sizeof(*it->ozi_zc));
1311         zap_cursor_init_serialized(it->ozi_zc, osd->od_objset.os,
1312                                    obj->oo_db->db_object, hash);
1313         it->ozi_reset = 0;
1314
1315         rc = -zap_cursor_retrieve(it->ozi_zc, za);
1316         if (rc == 0)
1317                 RETURN(+1);
1318         else if (rc == -ENOENT)
1319                 RETURN(0);
1320
1321         RETURN(rc);
1322 }
1323
1324 static struct dt_index_operations osd_index_ops = {
1325         .dio_lookup             = osd_index_lookup,
1326         .dio_declare_insert     = osd_declare_index_insert,
1327         .dio_insert             = osd_index_insert,
1328         .dio_declare_delete     = osd_declare_index_delete,
1329         .dio_delete             = osd_index_delete,
1330         .dio_it = {
1331                 .init           = osd_index_it_init,
1332                 .fini           = osd_index_it_fini,
1333                 .get            = osd_index_it_get,
1334                 .put            = osd_index_it_put,
1335                 .next           = osd_index_it_next,
1336                 .key            = osd_index_it_key,
1337                 .key_size       = osd_index_it_key_size,
1338                 .rec            = osd_index_it_rec,
1339                 .store          = osd_index_it_store,
1340                 .load           = osd_index_it_load
1341         }
1342 };
1343
1344 int osd_index_try(const struct lu_env *env, struct dt_object *dt,
1345                 const struct dt_index_features *feat)
1346 {
1347         struct osd_object *obj = osd_dt_obj(dt);
1348         ENTRY;
1349
1350         LASSERT(dt_object_exists(dt));
1351
1352         /*
1353          * XXX: implement support for fixed-size keys sorted with natural
1354          *      numerical way (not using internal hash value)
1355          */
1356         if (feat->dif_flags & DT_IND_RANGE)
1357                 RETURN(-ERANGE);
1358
1359         if (unlikely(feat == &dt_otable_features))
1360                 /* do not support oi scrub yet. */
1361                 RETURN(-ENOTSUPP);
1362
1363         LASSERT(obj->oo_db != NULL);
1364         if (likely(feat == &dt_directory_features)) {
1365                 if (udmu_object_is_zap(obj->oo_db))
1366                         dt->do_index_ops = &osd_dir_ops;
1367                 else
1368                         RETURN(-ENOTDIR);
1369         } else if (unlikely(feat == &dt_acct_features)) {
1370                 LASSERT(fid_is_acct(lu_object_fid(&dt->do_lu)));
1371                 dt->do_index_ops = &osd_acct_index_ops;
1372         } else if (udmu_object_is_zap(obj->oo_db) &&
1373                    dt->do_index_ops == NULL) {
1374                 /* For index file, we don't support variable key & record sizes
1375                  * and the key has to be unique */
1376                 if ((feat->dif_flags & ~DT_IND_UPDATE) != 0)
1377                         RETURN(-EINVAL);
1378
1379                 if (feat->dif_keysize_max > ZAP_MAXNAMELEN)
1380                         RETURN(-E2BIG);
1381                 if (feat->dif_keysize_max != feat->dif_keysize_min)
1382                         RETURN(-EINVAL);
1383
1384                 /* As for the record size, it should be a multiple of 8 bytes
1385                  * and smaller than the maximum value length supported by ZAP.
1386                  */
1387                 if (feat->dif_recsize_max > ZAP_MAXVALUELEN)
1388                         RETURN(-E2BIG);
1389                 if (feat->dif_recsize_max != feat->dif_recsize_min)
1390                         RETURN(-EINVAL);
1391
1392                 obj->oo_keysize = feat->dif_keysize_max;
1393                 obj->oo_recsize = feat->dif_recsize_max;
1394                 obj->oo_recusize = 1;
1395
1396                 /* ZFS prefers to work with array of 64bits */
1397                 if ((obj->oo_recsize & 7) == 0) {
1398                         obj->oo_recsize >>= 3;
1399                         obj->oo_recusize = 8;
1400                 }
1401                 dt->do_index_ops = &osd_index_ops;
1402         }
1403
1404         RETURN(0);
1405 }
1406