]> CyberLeo.Net >> Repos - FreeBSD/releng/9.0.git/blob - sys/cddl/contrib/opensolaris/common/zfs/zfs_comutil.c
Copy stable/9 to releng/9.0 as part of the FreeBSD 9.0-RELEASE release
[FreeBSD/releng/9.0.git] / sys / cddl / contrib / opensolaris / common / zfs / zfs_comutil.c
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
23  */
24
25 /*
26  * This file is intended for functions that ought to be common between user
27  * land (libzfs) and the kernel. When many common routines need to be shared
28  * then a separate file should to be created.
29  */
30
31 #if defined(_KERNEL)
32 #include <sys/systm.h>
33 #else
34 #include <string.h>
35 #endif
36
37 #include <sys/types.h>
38 #include <sys/fs/zfs.h>
39 #include <sys/nvpair.h>
40 #include "zfs_comutil.h"
41
42 /*
43  * Are there allocatable vdevs?
44  */
45 boolean_t
46 zfs_allocatable_devs(nvlist_t *nv)
47 {
48         uint64_t is_log;
49         uint_t c;
50         nvlist_t **child;
51         uint_t children;
52
53         if (nvlist_lookup_nvlist_array(nv, ZPOOL_CONFIG_CHILDREN,
54             &child, &children) != 0) {
55                 return (B_FALSE);
56         }
57         for (c = 0; c < children; c++) {
58                 is_log = 0;
59                 (void) nvlist_lookup_uint64(child[c], ZPOOL_CONFIG_IS_LOG,
60                     &is_log);
61                 if (!is_log)
62                         return (B_TRUE);
63         }
64         return (B_FALSE);
65 }
66
67 void
68 zpool_get_rewind_policy(nvlist_t *nvl, zpool_rewind_policy_t *zrpp)
69 {
70         nvlist_t *policy;
71         nvpair_t *elem;
72         char *nm;
73
74         /* Defaults */
75         zrpp->zrp_request = ZPOOL_NO_REWIND;
76         zrpp->zrp_maxmeta = 0;
77         zrpp->zrp_maxdata = UINT64_MAX;
78         zrpp->zrp_txg = UINT64_MAX;
79
80         if (nvl == NULL)
81                 return;
82
83         elem = NULL;
84         while ((elem = nvlist_next_nvpair(nvl, elem)) != NULL) {
85                 nm = nvpair_name(elem);
86                 if (strcmp(nm, ZPOOL_REWIND_POLICY) == 0) {
87                         if (nvpair_value_nvlist(elem, &policy) == 0)
88                                 zpool_get_rewind_policy(policy, zrpp);
89                         return;
90                 } else if (strcmp(nm, ZPOOL_REWIND_REQUEST) == 0) {
91                         if (nvpair_value_uint32(elem, &zrpp->zrp_request) == 0)
92                                 if (zrpp->zrp_request & ~ZPOOL_REWIND_POLICIES)
93                                         zrpp->zrp_request = ZPOOL_NO_REWIND;
94                 } else if (strcmp(nm, ZPOOL_REWIND_REQUEST_TXG) == 0) {
95                         (void) nvpair_value_uint64(elem, &zrpp->zrp_txg);
96                 } else if (strcmp(nm, ZPOOL_REWIND_META_THRESH) == 0) {
97                         (void) nvpair_value_uint64(elem, &zrpp->zrp_maxmeta);
98                 } else if (strcmp(nm, ZPOOL_REWIND_DATA_THRESH) == 0) {
99                         (void) nvpair_value_uint64(elem, &zrpp->zrp_maxdata);
100                 }
101         }
102         if (zrpp->zrp_request == 0)
103                 zrpp->zrp_request = ZPOOL_NO_REWIND;
104 }
105
106 typedef struct zfs_version_spa_map {
107         int     version_zpl;
108         int     version_spa;
109 } zfs_version_spa_map_t;
110
111 /*
112  * Keep this table in monotonically increasing version number order.
113  */
114 static zfs_version_spa_map_t zfs_version_table[] = {
115         {ZPL_VERSION_INITIAL, SPA_VERSION_INITIAL},
116         {ZPL_VERSION_DIRENT_TYPE, SPA_VERSION_INITIAL},
117         {ZPL_VERSION_FUID, SPA_VERSION_FUID},
118         {ZPL_VERSION_USERSPACE, SPA_VERSION_USERSPACE},
119         {ZPL_VERSION_SA, SPA_VERSION_SA},
120         {0, 0}
121 };
122
123 /*
124  * Return the max zpl version for a corresponding spa version
125  * -1 is returned if no mapping exists.
126  */
127 int
128 zfs_zpl_version_map(int spa_version)
129 {
130         int i;
131         int version = -1;
132
133         for (i = 0; zfs_version_table[i].version_spa; i++) {
134                 if (spa_version >= zfs_version_table[i].version_spa)
135                         version = zfs_version_table[i].version_zpl;
136         }
137
138         return (version);
139 }
140
141 /*
142  * Return the min spa version for a corresponding spa version
143  * -1 is returned if no mapping exists.
144  */
145 int
146 zfs_spa_version_map(int zpl_version)
147 {
148         int i;
149         int version = -1;
150
151         for (i = 0; zfs_version_table[i].version_zpl; i++) {
152                 if (zfs_version_table[i].version_zpl >= zpl_version)
153                         return (zfs_version_table[i].version_spa);
154         }
155
156         return (version);
157 }
158
159 const char *zfs_history_event_names[LOG_END] = {
160         "invalid event",
161         "pool create",
162         "vdev add",
163         "pool remove",
164         "pool destroy",
165         "pool export",
166         "pool import",
167         "vdev attach",
168         "vdev replace",
169         "vdev detach",
170         "vdev online",
171         "vdev offline",
172         "vdev upgrade",
173         "pool clear",
174         "pool scrub",
175         "pool property set",
176         "create",
177         "clone",
178         "destroy",
179         "destroy_begin_sync",
180         "inherit",
181         "property set",
182         "quota set",
183         "permission update",
184         "permission remove",
185         "permission who remove",
186         "promote",
187         "receive",
188         "rename",
189         "reservation set",
190         "replay_inc_sync",
191         "replay_full_sync",
192         "rollback",
193         "snapshot",
194         "filesystem version upgrade",
195         "refquota set",
196         "refreservation set",
197         "pool scrub done",
198         "user hold",
199         "user release",
200         "pool split",
201 };