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