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