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.
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.
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]
22 * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
23 * Use is subject to license terms.
26 * Copyright (c) 2013 by Delphix. All rights reserved.
30 * Common name validation routines for ZFS. These routines are shared by the
31 * userland code as well as the ioctl() layer to ensure that we don't
32 * inadvertently expose a hole through direct ioctl()s that never gets tested.
33 * In userland, however, we want significantly more information about _why_ the
34 * name is invalid. In the kernel, we only care whether it's valid or not.
35 * Each routine therefore takes a 'namecheck_err_t' which describes exactly why
36 * the name failed to validate.
38 * Each function returns 0 on success, -1 on error.
42 #include <sys/systm.h>
47 #include <sys/param.h>
48 #include <sys/nvpair.h>
49 #include "zfs_namecheck.h"
50 #include "zfs_deleg.h"
55 return ((c
>= 'a' && c
<= 'z') ||
56 (c
>= 'A' && c
<= 'Z') ||
57 (c
>= '0' && c
<= '9') ||
58 c
== '-' || c
== '_' || c
== '.' || c
== ':' || c
== ' ');
62 * Snapshot names must be made up of alphanumeric characters plus the following
68 zfs_component_namecheck(const char *path
, namecheck_err_t
*why
, char *what
)
72 if (strlen(path
) >= ZFS_MAX_DATASET_NAME_LEN
) {
74 *why
= NAME_ERR_TOOLONG
;
78 if (path
[0] == '\0') {
80 *why
= NAME_ERR_EMPTY_COMPONENT
;
84 for (loc
= path
; *loc
; loc
++) {
85 if (!valid_char(*loc
)) {
87 *why
= NAME_ERR_INVALCHAR
;
98 * Permissions set name must start with the letter '@' followed by the
99 * same character restrictions as snapshot names, except that the name
100 * cannot exceed 64 characters.
103 permset_namecheck(const char *path
, namecheck_err_t
*why
, char *what
)
105 if (strlen(path
) >= ZFS_PERMSET_MAXLEN
) {
107 *why
= NAME_ERR_TOOLONG
;
111 if (path
[0] != '@') {
113 *why
= NAME_ERR_NO_AT
;
119 return (zfs_component_namecheck(&path
[1], why
, what
));
123 * Entity names must be of the following form:
125 * [component/]*[component][(@|#)component]?
127 * Where each component is made up of alphanumeric characters plus the following
132 * We allow '%' here as we use that character internally to create unique
133 * names for temporary clones (for online recv).
136 entity_namecheck(const char *path
, namecheck_err_t
*why
, char *what
)
138 const char *start
, *end
;
142 * Make sure the name is not too long.
145 if (strlen(path
) >= ZFS_MAX_DATASET_NAME_LEN
) {
147 *why
= NAME_ERR_TOOLONG
;
151 /* Explicitly check for a leading slash. */
152 if (path
[0] == '/') {
154 *why
= NAME_ERR_LEADING_SLASH
;
158 if (path
[0] == '\0') {
160 *why
= NAME_ERR_EMPTY_COMPONENT
;
167 /* Find the end of this component */
169 while (*end
!= '/' && *end
!= '@' && *end
!= '#' &&
173 if (*end
== '\0' && end
[-1] == '/') {
174 /* trailing slashes are not allowed */
176 *why
= NAME_ERR_TRAILING_SLASH
;
180 /* Validate the contents of this component */
181 for (const char *loc
= start
; loc
!= end
; loc
++) {
182 if (!valid_char(*loc
) && *loc
!= '%') {
184 *why
= NAME_ERR_INVALCHAR
;
191 /* Snapshot or bookmark delimiter found */
192 if (*end
== '@' || *end
== '#') {
193 /* Multiple delimiters are not allowed */
194 if (found_delim
!= 0) {
196 *why
= NAME_ERR_MULTIPLE_DELIMITERS
;
203 /* Zero-length components are not allowed */
206 *why
= NAME_ERR_EMPTY_COMPONENT
;
210 /* If we've reached the end of the string, we're OK */
215 * If there is a '/' in a snapshot or bookmark name
216 * then report an error
218 if (*end
== '/' && found_delim
!= 0) {
220 *why
= NAME_ERR_TRAILING_SLASH
;
224 /* Update to the next component */
230 * Dataset is any entity, except bookmark
233 dataset_namecheck(const char *path
, namecheck_err_t
*why
, char *what
)
235 int ret
= entity_namecheck(path
, why
, what
);
237 if (ret
== 0 && strchr(path
, '#') != NULL
) {
239 *why
= NAME_ERR_INVALCHAR
;
249 * mountpoint names must be of the following form:
251 * /[component][/]*[component][/]
254 mountpoint_namecheck(const char *path
, namecheck_err_t
*why
)
256 const char *start
, *end
;
259 * Make sure none of the mountpoint component names are too long.
260 * If a component name is too long then the mkdir of the mountpoint
261 * will fail but then the mountpoint property will be set to a value
262 * that can never be mounted. Better to fail before setting the prop.
263 * Extra slashes are OK, they will be tossed by the mountpoint mkdir.
266 if (path
== NULL
|| *path
!= '/') {
268 *why
= NAME_ERR_LEADING_SLASH
;
272 /* Skip leading slash */
276 while (*end
!= '/' && *end
!= '\0')
279 if (end
- start
>= ZFS_MAX_DATASET_NAME_LEN
) {
281 *why
= NAME_ERR_TOOLONG
;
286 } while (*end
!= '\0');
292 * For pool names, we have the same set of valid characters as described in
293 * dataset names, with the additional restriction that the pool name must begin
294 * with a letter. The pool names 'raidz' and 'mirror' are also reserved names
295 * that cannot be used.
298 pool_namecheck(const char *pool
, namecheck_err_t
*why
, char *what
)
303 * Make sure the name is not too long.
305 if (strlen(pool
) >= ZFS_MAX_DATASET_NAME_LEN
) {
307 *why
= NAME_ERR_TOOLONG
;
313 if (!valid_char(*c
)) {
315 *why
= NAME_ERR_INVALCHAR
;
323 if (!(*pool
>= 'a' && *pool
<= 'z') &&
324 !(*pool
>= 'A' && *pool
<= 'Z')) {
326 *why
= NAME_ERR_NOLETTER
;
330 if (strcmp(pool
, "mirror") == 0 || strcmp(pool
, "raidz") == 0) {
332 *why
= NAME_ERR_RESERVED
;
336 if (pool
[0] == 'c' && (pool
[1] >= '0' && pool
[1] <= '9')) {
338 *why
= NAME_ERR_DISKLIKE
;