Whamcloud - gitweb
LU-9088 osd: use od_is_ost check OST FID
[fs/lustre-release.git] / lustre / osd-zfs / osd_oi.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, 2016, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lustre/osd-zfs/osd_oi.c
33  * OI functions to map fid to dnode
34  *
35  * Author: Alex Zhuravlev <bzzz@whamcloud.com>
36  * Author: Mike Pershin <tappro@whamcloud.com>
37  * Author: Di Wang <di.wang@intel.com>
38  */
39
40 #define DEBUG_SUBSYSTEM S_OSD
41
42 #include <lustre_ver.h>
43 #include <libcfs/libcfs.h>
44 #include <obd_support.h>
45 #include <lustre_net.h>
46 #include <obd.h>
47 #include <obd_class.h>
48 #include <lustre_disk.h>
49 #include <lustre_fid.h>
50
51 #include "osd_internal.h"
52
53 #include <sys/dnode.h>
54 #include <sys/dbuf.h>
55 #include <sys/spa.h>
56 #include <sys/stat.h>
57 #include <sys/zap.h>
58 #include <sys/spa_impl.h>
59 #include <sys/zfs_znode.h>
60 #include <sys/dmu_tx.h>
61 #include <sys/dmu_objset.h>
62 #include <sys/dsl_prop.h>
63 #include <sys/sa_impl.h>
64 #include <sys/txg.h>
65
66 #define OSD_OI_FID_NR         (1UL << 7)
67 #define OSD_OI_FID_NR_MAX     (1UL << OSD_OI_FID_OID_BITS_MAX)
68 unsigned int osd_oi_count = OSD_OI_FID_NR;
69
70
71 /*
72  * zfs osd maintains names for known fids in the name hierarchy
73  * so that one can mount filesystem with regular ZFS stack and
74  * access files
75  */
76 struct named_oid {
77         unsigned long    oid;
78         char            *name;
79 };
80
81 static const struct named_oid oids[] = {
82         { .oid = LAST_RECV_OID,        .name = LAST_RCVD },
83         { .oid = OFD_LAST_GROUP_OID,   .name = "LAST_GROUP" },
84         { .oid = LLOG_CATALOGS_OID,    .name = "CATALOGS" },
85         { .oid = MGS_CONFIGS_OID,      /*MOUNT_CONFIGS_DIR*/ },
86         { .oid = FID_SEQ_SRV_OID,      .name = "seq_srv" },
87         { .oid = FID_SEQ_CTL_OID,      .name = "seq_ctl" },
88         { .oid = FLD_INDEX_OID,        .name = "fld" },
89         { .oid = MDD_LOV_OBJ_OID,      .name = LOV_OBJID },
90         { .oid = OFD_HEALTH_CHECK_OID, .name = HEALTH_CHECK },
91         { .oid = ACCT_USER_OID,        .name = "acct_usr_inode" },
92         { .oid = ACCT_GROUP_OID,       .name = "acct_grp_inode" },
93         { .oid = REPLY_DATA_OID,       .name = REPLY_DATA },
94         { .oid = 0 }
95 };
96
97 static char *oid2name(const unsigned long oid)
98 {
99         int i = 0;
100
101         while (oids[i].oid) {
102                 if (oids[i].oid == oid)
103                         return oids[i].name;
104                 i++;
105         }
106         return NULL;
107 }
108
109 /**
110  * Lookup an existing OI by the given name.
111  */
112 static int
113 osd_oi_lookup(const struct lu_env *env, struct osd_device *o,
114               uint64_t parent, const char *name, struct osd_oi *oi)
115 {
116         struct zpl_direntry     *zde = &osd_oti_get(env)->oti_zde.lzd_reg;
117         int                      rc;
118
119         rc = -zap_lookup(o->od_os, parent, name, 8, 1, (void *)zde);
120         if (rc)
121                 return rc;
122
123         rc = strlcpy(oi->oi_name, name, sizeof(oi->oi_name));
124         if (rc >= sizeof(oi->oi_name))
125                 return -E2BIG;
126
127         oi->oi_zapid = zde->zde_dnode;
128
129         return 0;
130 }
131
132 /**
133  * Create a new OI with the given name.
134  */
135 static int
136 osd_oi_create(const struct lu_env *env, struct osd_device *o,
137               uint64_t parent, const char *name, uint64_t *child)
138 {
139         struct zpl_direntry     *zde = &osd_oti_get(env)->oti_zde.lzd_reg;
140         struct lu_attr          *la = &osd_oti_get(env)->oti_la;
141         sa_handle_t             *sa_hdl = NULL;
142         dmu_tx_t                *tx;
143         uint64_t                 oid;
144         int                      rc;
145
146         /* verify it doesn't already exist */
147         rc = -zap_lookup(o->od_os, parent, name, 8, 1, (void *)zde);
148         if (rc == 0)
149                 return -EEXIST;
150
151         if (o->od_dt_dev.dd_rdonly)
152                 return -EROFS;
153
154         /* create fid-to-dnode index */
155         tx = dmu_tx_create(o->od_os);
156         if (tx == NULL)
157                 return -ENOMEM;
158
159         dmu_tx_hold_zap(tx, DMU_NEW_OBJECT, 1, NULL);
160         dmu_tx_hold_bonus(tx, parent);
161         dmu_tx_hold_zap(tx, parent, TRUE, name);
162         dmu_tx_hold_sa_create(tx, ZFS_SA_BASE_ATTR_SIZE);
163
164         rc = -dmu_tx_assign(tx, TXG_WAIT);
165         if (rc) {
166                 dmu_tx_abort(tx);
167                 return rc;
168         }
169
170         oid = zap_create_flags(o->od_os, 0, ZAP_FLAG_HASH64,
171                                DMU_OT_DIRECTORY_CONTENTS,
172                                14, /* == ZFS fzap_default_block_shift */
173                                DN_MAX_INDBLKSHIFT, /* indirect block shift */
174                                DMU_OT_SA, DN_MAX_BONUSLEN, tx);
175
176         rc = -sa_handle_get(o->od_os, oid, NULL, SA_HDL_PRIVATE, &sa_hdl);
177         if (rc)
178                 goto commit;
179         la->la_valid = LA_MODE | LA_UID | LA_GID;
180         la->la_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
181         la->la_uid = la->la_gid = 0;
182         rc = __osd_attr_init(env, o, sa_hdl, tx, la, parent);
183         sa_handle_destroy(sa_hdl);
184         if (rc)
185                 goto commit;
186
187         zde->zde_dnode = oid;
188         zde->zde_pad = 0;
189         zde->zde_type = IFTODT(S_IFDIR);
190
191         rc = -zap_add(o->od_os, parent, name, 8, 1, (void *)zde, tx);
192
193 commit:
194         if (rc)
195                 dmu_object_free(o->od_os, oid, tx);
196         dmu_tx_commit(tx);
197
198         if (rc == 0)
199                 *child = oid;
200
201         return rc;
202 }
203
204 static int
205 osd_oi_find_or_create(const struct lu_env *env, struct osd_device *o,
206                       uint64_t parent, const char *name, uint64_t *child)
207 {
208         struct osd_oi   oi;
209         int             rc;
210
211         rc = osd_oi_lookup(env, o, parent, name, &oi);
212         if (rc == 0)
213                 *child = oi.oi_zapid;
214         else if (rc == -ENOENT)
215                 rc = osd_oi_create(env, o, parent, name, child);
216
217         return rc;
218 }
219
220 /**
221  * Lookup the target index/flags of the fid, so it will know where
222  * the object is located (tgt index) and it is MDT or OST object.
223  */
224 int osd_fld_lookup(const struct lu_env *env, struct osd_device *osd,
225                    u64 seq, struct lu_seq_range *range)
226 {
227         struct seq_server_site  *ss = osd_seq_site(osd);
228
229         if (fid_seq_is_idif(seq)) {
230                 fld_range_set_ost(range);
231                 range->lsr_index = idif_ost_idx(seq);
232                 return 0;
233         }
234
235         if (!fid_seq_in_fldb(seq)) {
236                 fld_range_set_mdt(range);
237                 if (ss != NULL)
238                         /* FIXME: If ss is NULL, it suppose not get lsr_index
239                          * at all */
240                         range->lsr_index = ss->ss_node_id;
241                 return 0;
242         }
243
244         LASSERT(ss != NULL);
245         fld_range_set_any(range);
246         /* OSD will only do local fld lookup */
247         return fld_local_lookup(env, ss->ss_server_fld, seq, range);
248 }
249
250 int fid_is_on_ost(const struct lu_env *env, struct osd_device *osd,
251                   const struct lu_fid *fid)
252 {
253         struct lu_seq_range     *range = &osd_oti_get(env)->oti_seq_range;
254         int                     rc;
255         ENTRY;
256
257         if (fid_is_idif(fid))
258                 RETURN(1);
259
260         if (unlikely(fid_is_local_file(fid) || fid_is_llog(fid)) ||
261                      fid_is_name_llog(fid) || fid_is_quota(fid))
262                 RETURN(0);
263
264         rc = osd_fld_lookup(env, osd, fid_seq(fid), range);
265         if (rc != 0) {
266                 /* During upgrade, OST FLDB might not be loaded because
267                  * OST FLDB is not created until 2.6, so if some DNE
268                  * filesystem upgrade from 2.5 to 2.7/2.8, they will
269                  * not be able to find the sequence from local FLDB
270                  * cache see fld_index_init(). */
271                 if (rc == -ENOENT && osd->od_is_ost)
272                         RETURN(1);
273
274                 if (rc != -ENOENT)
275                         CERROR("%s: "DFID" lookup failed: rc = %d\n",
276                                osd_name(osd), PFID(fid), rc);
277                 RETURN(0);
278         }
279
280         if (fld_range_is_ost(range))
281                 RETURN(1);
282
283         RETURN(0);
284 }
285
286 static struct osd_seq *osd_seq_find_locked(struct osd_seq_list *seq_list,
287                                            u64 seq)
288 {
289         struct osd_seq *osd_seq;
290
291         list_for_each_entry(osd_seq, &seq_list->osl_seq_list, os_seq_list) {
292                 if (osd_seq->os_seq == seq)
293                         return osd_seq;
294         }
295         return NULL;
296 }
297
298 static struct osd_seq *osd_seq_find(struct osd_seq_list *seq_list, u64 seq)
299 {
300         struct osd_seq *osd_seq;
301
302         read_lock(&seq_list->osl_seq_list_lock);
303         osd_seq = osd_seq_find_locked(seq_list, seq);
304         read_unlock(&seq_list->osl_seq_list_lock);
305
306         return osd_seq;
307 }
308
309 static struct osd_seq *osd_find_or_add_seq(const struct lu_env *env,
310                                            struct osd_device *osd, u64 seq)
311 {
312         struct osd_seq_list     *seq_list = &osd->od_seq_list;
313         struct osd_seq          *osd_seq;
314         char                    *key = osd_oti_get(env)->oti_buf;
315         char                    *seq_name = osd_oti_get(env)->oti_str;
316         struct osd_oi           oi;
317         uint64_t                sdb, odb;
318         int                     i;
319         int                     rc = 0;
320         ENTRY;
321
322         osd_seq = osd_seq_find(seq_list, seq);
323         if (osd_seq != NULL)
324                 RETURN(osd_seq);
325
326         down(&seq_list->osl_seq_init_sem);
327         /* Check again, in case some one else already add it
328          * to the list */
329         osd_seq = osd_seq_find(seq_list, seq);
330         if (osd_seq != NULL)
331                 GOTO(out, rc = 0);
332
333         OBD_ALLOC_PTR(osd_seq);
334         if (osd_seq == NULL)
335                 GOTO(out, rc = -ENOMEM);
336
337         INIT_LIST_HEAD(&osd_seq->os_seq_list);
338         osd_seq->os_seq = seq;
339
340         /* Init subdir count to be 32, but each seq can have
341          * different subdir count */
342         osd_seq->os_subdir_count = OSD_OST_MAP_SIZE;
343         OBD_ALLOC(osd_seq->os_compat_dirs,
344                   sizeof(uint64_t) * osd_seq->os_subdir_count);
345         if (osd_seq->os_compat_dirs == NULL)
346                 GOTO(out, rc = -ENOMEM);
347
348         oi.oi_zapid = osd->od_O_id;
349         sprintf(seq_name, (fid_seq_is_rsvd(seq) ||
350                 fid_seq_is_mdt0(seq)) ?  "%llu" : "%llx",
351                 fid_seq_is_idif(seq) ? 0 : seq);
352
353         rc = osd_oi_find_or_create(env, osd, oi.oi_zapid, seq_name, &odb);
354         if (rc != 0) {
355                 CERROR("%s: Can not create %s : rc = %d\n",
356                        osd_name(osd), seq_name, rc);
357                 GOTO(out, rc);
358         }
359
360         for (i = 0; i < OSD_OST_MAP_SIZE; i++) {
361                 sprintf(key, "d%d", i);
362                 rc = osd_oi_find_or_create(env, osd, odb, key, &sdb);
363                 if (rc)
364                         GOTO(out, rc);
365                 osd_seq->os_compat_dirs[i] = sdb;
366         }
367
368         write_lock(&seq_list->osl_seq_list_lock);
369         list_add(&osd_seq->os_seq_list, &seq_list->osl_seq_list);
370         write_unlock(&seq_list->osl_seq_list_lock);
371 out:
372         up(&seq_list->osl_seq_init_sem);
373         if (rc != 0) {
374                 if (osd_seq != NULL && osd_seq->os_compat_dirs != NULL)
375                         OBD_FREE(osd_seq->os_compat_dirs,
376                                  sizeof(uint64_t) * osd_seq->os_subdir_count);
377                 if (osd_seq != NULL)
378                         OBD_FREE_PTR(osd_seq);
379                 osd_seq = ERR_PTR(rc);
380         }
381         RETURN(osd_seq);
382 }
383
384 /*
385  * objects w/o a natural reference (unlike a file on a MDS)
386  * are put under a special hierarchy /O/<seq>/d0..dXX
387  * this function returns a directory specific fid belongs to
388  */
389 static uint64_t
390 osd_get_idx_for_ost_obj(const struct lu_env *env, struct osd_device *osd,
391                         const struct lu_fid *fid, char *buf, int bufsize)
392 {
393         struct osd_seq  *osd_seq;
394         unsigned long   b;
395         u64             id;
396         int             rc;
397
398         osd_seq = osd_find_or_add_seq(env, osd, fid_seq(fid));
399         if (IS_ERR(osd_seq)) {
400                 CERROR("%s: Can not find seq group "DFID"\n", osd_name(osd),
401                        PFID(fid));
402                 return PTR_ERR(osd_seq);
403         }
404
405         if (fid_is_last_id(fid)) {
406                 id = 0;
407         } else {
408                 rc = fid_to_ostid(fid, &osd_oti_get(env)->oti_ostid);
409                 LASSERT(rc == 0); /* we should not get here with IGIF */
410                 id = ostid_id(&osd_oti_get(env)->oti_ostid);
411         }
412
413         b = id % OSD_OST_MAP_SIZE;
414         LASSERT(osd_seq->os_compat_dirs[b]);
415
416         if (buf)
417                 snprintf(buf, bufsize, "%llu", id);
418
419         return osd_seq->os_compat_dirs[b];
420 }
421
422 /* XXX: f_ver is not counted, but may differ too */
423 static void osd_fid2str(char *buf, const struct lu_fid *fid)
424 {
425         sprintf(buf, DFID_NOBRACE, PFID(fid));
426 }
427
428 /*
429  * Determine the zap object id which is being used as the OI for the
430  * given fid.  The lowest N bits in the sequence ID are used as the
431  * index key.  On failure 0 is returned which zfs treats internally
432  * as an invalid object id.
433  */
434 static uint64_t
435 osd_get_idx_for_fid(struct osd_device *osd, const struct lu_fid *fid,
436                     char *buf)
437 {
438         struct osd_oi *oi;
439
440         LASSERT(osd->od_oi_table != NULL);
441         oi = osd->od_oi_table[fid_seq(fid) & (osd->od_oi_count - 1)];
442         if (buf)
443                 osd_fid2str(buf, fid);
444
445         return oi->oi_zapid;
446 }
447
448 uint64_t osd_get_name_n_idx(const struct lu_env *env, struct osd_device *osd,
449                             const struct lu_fid *fid, char *buf, int bufsize)
450 {
451         uint64_t zapid;
452
453         LASSERT(fid);
454
455         if (fid_is_on_ost(env, osd, fid) == 1 || fid_seq(fid) == FID_SEQ_ECHO) {
456                 zapid = osd_get_idx_for_ost_obj(env, osd, fid, buf, bufsize);
457         } else if (unlikely(fid_seq(fid) == FID_SEQ_LOCAL_FILE)) {
458                 /* special objects with fixed known fids get their name */
459                 char *name = oid2name(fid_oid(fid));
460
461                 if (name) {
462                         zapid = osd->od_root;
463                         if (buf)
464                                 strncpy(buf, name, bufsize);
465                         if (fid_is_acct(fid))
466                                 zapid = MASTER_NODE_OBJ;
467                 } else {
468                         zapid = osd_get_idx_for_fid(osd, fid, buf);
469                 }
470         } else {
471                 zapid = osd_get_idx_for_fid(osd, fid, buf);
472         }
473
474         return zapid;
475 }
476
477 static inline int fid_is_fs_root(const struct lu_fid *fid)
478 {
479         /* Map root inode to special local object FID */
480         return fid_seq(fid) == FID_SEQ_LOCAL_FILE &&
481                 fid_oid(fid) == OSD_FS_ROOT_OID;
482 }
483
484 int osd_fid_lookup(const struct lu_env *env, struct osd_device *dev,
485                    const struct lu_fid *fid, uint64_t *oid)
486 {
487         struct osd_thread_info  *info = osd_oti_get(env);
488         char                    *buf = info->oti_buf;
489         uint64_t                zapid;
490         int                     rc = 0;
491         ENTRY;
492
493         if (OBD_FAIL_CHECK(OBD_FAIL_SRV_ENOENT))
494                 RETURN(-ENOENT);
495
496         if (unlikely(fid_is_acct(fid))) {
497                 if (fid_oid(fid) == ACCT_USER_OID)
498                         *oid = dev->od_iusr_oid;
499                 else
500                         *oid = dev->od_igrp_oid;
501         } else if (unlikely(fid_is_fs_root(fid))) {
502                 *oid = dev->od_root;
503         } else {
504                 zapid = osd_get_name_n_idx(env, dev, fid, buf,
505                                            sizeof(info->oti_buf));
506                 rc = -zap_lookup(dev->od_os, zapid, buf,
507                                 8, 1, &info->oti_zde);
508                 if (rc)
509                         RETURN(rc);
510                 *oid = info->oti_zde.lzd_reg.zde_dnode;
511         }
512
513         if (rc == 0)
514                 osd_dmu_prefetch(dev->od_os, *oid, 0, 0, 0,
515                                  ZIO_PRIORITY_ASYNC_READ);
516
517         RETURN(rc);
518 }
519
520 /**
521  * Close an entry in a specific slot.
522  */
523 static void
524 osd_oi_remove_table(const struct lu_env *env, struct osd_device *o, int key)
525 {
526         struct osd_oi *oi;
527
528         LASSERT(key < o->od_oi_count);
529
530         oi = o->od_oi_table[key];
531         if (oi) {
532                 if (oi->oi_dn)
533                         osd_dnode_rele(oi->oi_dn);
534                 OBD_FREE_PTR(oi);
535                 o->od_oi_table[key] = NULL;
536         }
537 }
538
539 /**
540  * Allocate and open a new entry in the specified unused slot.
541  */
542 static int
543 osd_oi_add_table(const struct lu_env *env, struct osd_device *o,
544                  char *name, int key)
545 {
546         struct osd_oi *oi;
547         int rc;
548
549         LASSERT(key < o->od_oi_count);
550         LASSERT(o->od_oi_table[key] == NULL);
551
552         OBD_ALLOC_PTR(oi);
553         if (oi == NULL)
554                 return -ENOMEM;
555
556         rc = osd_oi_lookup(env, o, o->od_root, name, oi);
557         if (rc) {
558                 OBD_FREE_PTR(oi);
559                 return rc;
560         }
561
562         o->od_oi_table[key] = oi;
563         __osd_obj2dnode(env, o->od_os, oi->oi_zapid, &oi->oi_dn);
564
565         return 0;
566 }
567
568 /**
569  * Depopulate the OI table.
570  */
571 static void
572 osd_oi_close_table(const struct lu_env *env, struct osd_device *o)
573 {
574         int i;
575
576         for (i = 0; i < o->od_oi_count; i++)
577                 osd_oi_remove_table(env, o, i);
578 }
579
580 /**
581  * Populate the OI table based.
582  */
583 static int
584 osd_oi_open_table(const struct lu_env *env, struct osd_device *o, int count)
585 {
586         char name[16];
587         int  i, rc = 0;
588         ENTRY;
589
590         for (i = 0; i < count; i++) {
591                 sprintf(name, "%s.%d", DMU_OSD_OI_NAME_BASE, i);
592                 rc = osd_oi_add_table(env, o, name, i);
593                 if (rc) {
594                         osd_oi_close_table(env, o);
595                         break;
596                 }
597         }
598
599         RETURN(rc);
600 }
601
602 /**
603  * Determine if the type and number of OIs used by this file system.
604  */
605 static int
606 osd_oi_probe(const struct lu_env *env, struct osd_device *o, int *count)
607 {
608         uint64_t        root_oid = o->od_root;
609         struct osd_oi   oi;
610         char            name[16];
611         int             rc;
612         ENTRY;
613
614         /*
615          * Check for multiple OIs and determine the count.  There is no
616          * gap handling, if an OI is missing the wrong size can be returned.
617          * The only safeguard is that we know the number of OIs must be a
618          * power of two and this is checked for basic sanity.
619          */
620         for (*count = 0; *count < OSD_OI_FID_NR_MAX; (*count)++) {
621                 sprintf(name, "%s.%d", DMU_OSD_OI_NAME_BASE, *count);
622                 rc = osd_oi_lookup(env, o, root_oid, name, &oi);
623                 if (rc == 0)
624                         continue;
625
626                 if (rc == -ENOENT) {
627                         if (*count == 0)
628                                 break;
629
630                         if ((*count & (*count - 1)) != 0)
631                                 RETURN(-EDOM);
632
633                         RETURN(0);
634                 }
635
636                 RETURN(rc);
637         }
638
639         /*
640          * No OIs exist, this must be a new filesystem.
641          */
642         *count = 0;
643
644         RETURN(0);
645 }
646
647 static void osd_ost_seq_fini(const struct lu_env *env, struct osd_device *osd)
648 {
649         struct osd_seq_list     *osl = &osd->od_seq_list;
650         struct osd_seq          *osd_seq, *tmp;
651
652         write_lock(&osl->osl_seq_list_lock);
653         list_for_each_entry_safe(osd_seq, tmp, &osl->osl_seq_list,
654                                  os_seq_list) {
655                 list_del(&osd_seq->os_seq_list);
656                 OBD_FREE(osd_seq->os_compat_dirs,
657                          sizeof(uint64_t) * osd_seq->os_subdir_count);
658                 OBD_FREE(osd_seq, sizeof(*osd_seq));
659         }
660         write_unlock(&osl->osl_seq_list_lock);
661
662         return;
663 }
664
665 /**
666  * Create /O subdirectory to map legacy OST objects for compatibility.
667  */
668 static int
669 osd_oi_init_compat(const struct lu_env *env, struct osd_device *o)
670 {
671         uint64_t         odb, sdb;
672         int              rc;
673         ENTRY;
674
675         rc = osd_oi_find_or_create(env, o, o->od_root, "O", &sdb);
676         if (rc)
677                 RETURN(rc);
678
679         o->od_O_id = sdb;
680
681         /* Create on-disk indexes to maintain per-UID/GID inode usage.
682          * Those new indexes are created in the top-level ZAP outside the
683          * namespace in order not to confuse ZPL which might interpret those
684          * indexes as directories and assume the values are object IDs */
685         rc = osd_oi_find_or_create(env, o, MASTER_NODE_OBJ,
686                         oid2name(ACCT_USER_OID), &odb);
687         if (rc)
688                 RETURN(rc);
689         o->od_iusr_oid = odb;
690
691         rc = osd_oi_find_or_create(env, o, MASTER_NODE_OBJ,
692                         oid2name(ACCT_GROUP_OID), &odb);
693         if (rc)
694                 RETURN(rc);
695         o->od_igrp_oid = odb;
696
697         RETURN(rc);
698 }
699
700 /**
701  * Initialize the OIs by either opening or creating them as needed.
702  */
703 int osd_oi_init(const struct lu_env *env, struct osd_device *o)
704 {
705         char    *key = osd_oti_get(env)->oti_buf;
706         int      i, rc, count = 0;
707         ENTRY;
708
709         rc = osd_oi_probe(env, o, &count);
710         if (rc)
711                 RETURN(rc);
712
713         if (count == 0) {
714                 uint64_t odb, sdb;
715
716                 count = osd_oi_count;
717                 odb = o->od_root;
718
719                 for (i = 0; i < count; i++) {
720                         sprintf(key, "%s.%d", DMU_OSD_OI_NAME_BASE, i);
721                         rc = osd_oi_find_or_create(env, o, odb, key, &sdb);
722                         if (rc)
723                                 RETURN(rc);
724                 }
725         }
726
727         rc = osd_oi_init_compat(env, o);
728         if (rc)
729                 RETURN(rc);
730
731         LASSERT((count & (count - 1)) == 0);
732         o->od_oi_count = count;
733         OBD_ALLOC(o->od_oi_table, sizeof(struct osd_oi *) * count);
734         if (o->od_oi_table == NULL)
735                 RETURN(-ENOMEM);
736
737         rc = osd_oi_open_table(env, o, count);
738         if (rc) {
739                 OBD_FREE(o->od_oi_table, sizeof(struct osd_oi *) * count);
740                 o->od_oi_table = NULL;
741         }
742
743         RETURN(rc);
744 }
745
746 void osd_oi_fini(const struct lu_env *env, struct osd_device *o)
747 {
748         ENTRY;
749
750         osd_ost_seq_fini(env, o);
751
752         if (o->od_oi_table != NULL) {
753                 (void) osd_oi_close_table(env, o);
754                 OBD_FREE(o->od_oi_table,
755                          sizeof(struct osd_oi *) * o->od_oi_count);
756                 o->od_oi_table = NULL;
757                 o->od_oi_count = 0;
758         }
759
760         EXIT;
761 }
762
763 int osd_options_init(void)
764 {
765         /* osd_oi_count - Default number of OIs, 128 works well for ZFS */
766         if (osd_oi_count == 0 || osd_oi_count > OSD_OI_FID_NR_MAX)
767                 osd_oi_count = OSD_OI_FID_NR;
768
769         if ((osd_oi_count & (osd_oi_count - 1)) != 0) {
770                 LCONSOLE_WARN("Round up osd_oi_count %d to power2 %d\n",
771                         osd_oi_count, size_roundup_power2(osd_oi_count));
772                 osd_oi_count = size_roundup_power2(osd_oi_count);
773         }
774
775         return 0;
776 }
777
778 /*
779  * the following set of functions are used to maintain per-thread
780  * cache of FID->ino mapping. this mechanism is used to avoid
781  * expensive LU/OI lookups.
782  */
783 struct osd_idmap_cache *osd_idc_find(const struct lu_env *env,
784                                      struct osd_device *osd,
785                                      const struct lu_fid *fid)
786 {
787         struct osd_thread_info *oti = osd_oti_get(env);
788         struct osd_idmap_cache *idc = oti->oti_ins_cache;
789         int i;
790
791         for (i = 0; i < oti->oti_ins_cache_used; i++) {
792                 if (!lu_fid_eq(&idc[i].oic_fid, fid))
793                         continue;
794                 if (idc[i].oic_dev != osd)
795                         continue;
796
797                 return idc + i;
798         }
799
800         return NULL;
801 }
802
803 struct osd_idmap_cache *osd_idc_add(const struct lu_env *env,
804                                     struct osd_device *osd,
805                                     const struct lu_fid *fid)
806 {
807         struct osd_thread_info *oti = osd_oti_get(env);
808         struct osd_idmap_cache *idc;
809         int i;
810
811         if (unlikely(oti->oti_ins_cache_used >= oti->oti_ins_cache_size)) {
812                 i = oti->oti_ins_cache_size * 2;
813                 LASSERT(i < 1000);
814                 if (i == 0)
815                         i = OSD_INS_CACHE_SIZE;
816                 OBD_ALLOC(idc, sizeof(*idc) * i);
817                 if (idc == NULL)
818                         return ERR_PTR(-ENOMEM);
819                 if (oti->oti_ins_cache != NULL) {
820                         memcpy(idc, oti->oti_ins_cache,
821                                oti->oti_ins_cache_used * sizeof(*idc));
822                         OBD_FREE(oti->oti_ins_cache,
823                                  oti->oti_ins_cache_used * sizeof(*idc));
824                 }
825                 oti->oti_ins_cache = idc;
826                 oti->oti_ins_cache_size = i;
827         }
828
829         idc = &oti->oti_ins_cache[oti->oti_ins_cache_used++];
830         idc->oic_fid = *fid;
831         idc->oic_dev = osd;
832         idc->oic_dnode = 0;
833         idc->oic_remote = 0;
834
835         return idc;
836 }
837
838 /**
839  * Lookup mapping for the given fid in the cache
840  *
841  * Initialize a new one if not found. the initialization checks whether
842  * the object is local or remote. for the local objects, OI is used to
843  * learn dnode#. the function is used when the caller has no information
844  * about the object, e.g. at dt_insert().
845  */
846 struct osd_idmap_cache *osd_idc_find_or_init(const struct lu_env *env,
847                                              struct osd_device *osd,
848                                              const struct lu_fid *fid)
849 {
850         struct osd_idmap_cache *idc;
851         int rc;
852
853         idc = osd_idc_find(env, osd, fid);
854         if (idc != NULL)
855                 return idc;
856
857         /* new mapping is needed */
858         idc = osd_idc_add(env, osd, fid);
859         if (IS_ERR(idc))
860                 return idc;
861
862         /* initialize it */
863         rc = osd_remote_fid(env, osd, fid);
864         if (unlikely(rc < 0))
865                 return ERR_PTR(rc);
866
867         if (rc == 0) {
868                 /* the object is local, lookup in OI */
869                 uint64_t dnode;
870
871                 rc = osd_fid_lookup(env, osd, fid, &dnode);
872                 if (unlikely(rc < 0)) {
873                         CERROR("%s: can't lookup: rc = %d\n",
874                                osd->od_svname, rc);
875                         return ERR_PTR(rc);
876                 }
877                 LASSERT(dnode < (1ULL << DN_MAX_OBJECT_SHIFT));
878                 idc->oic_dnode = dnode;
879         } else {
880                 /* the object is remote */
881                 idc->oic_remote = 1;
882         }
883
884         return idc;
885 }
886
887 /*
888  * lookup mapping for given FID and fill it from the given object.
889  * the object is local by definition.
890  */
891 int osd_idc_find_and_init(const struct lu_env *env, struct osd_device *osd,
892                           struct osd_object *obj)
893 {
894         const struct lu_fid *fid = lu_object_fid(&obj->oo_dt.do_lu);
895         struct osd_idmap_cache *idc;
896
897         idc = osd_idc_find(env, osd, fid);
898         if (idc != NULL) {
899                 if (obj->oo_dn == NULL)
900                         return 0;
901                 idc->oic_dnode = obj->oo_dn->dn_object;
902                 return 0;
903         }
904
905         /* new mapping is needed */
906         idc = osd_idc_add(env, osd, fid);
907         if (IS_ERR(idc))
908                 return PTR_ERR(idc);
909
910         if (obj->oo_dn)
911                 idc->oic_dnode = obj->oo_dn->dn_object;
912
913         return 0;
914 }