xref: /titanic_50/usr/src/common/zfs/zfs_namecheck.h (revision fa9e4066f08beec538e775443c5be79dd423fcab)
1*fa9e4066Sahrens /*
2*fa9e4066Sahrens  * CDDL HEADER START
3*fa9e4066Sahrens  *
4*fa9e4066Sahrens  * The contents of this file are subject to the terms of the
5*fa9e4066Sahrens  * Common Development and Distribution License, Version 1.0 only
6*fa9e4066Sahrens  * (the "License").  You may not use this file except in compliance
7*fa9e4066Sahrens  * with the License.
8*fa9e4066Sahrens  *
9*fa9e4066Sahrens  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10*fa9e4066Sahrens  * or http://www.opensolaris.org/os/licensing.
11*fa9e4066Sahrens  * See the License for the specific language governing permissions
12*fa9e4066Sahrens  * and limitations under the License.
13*fa9e4066Sahrens  *
14*fa9e4066Sahrens  * When distributing Covered Code, include this CDDL HEADER in each
15*fa9e4066Sahrens  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16*fa9e4066Sahrens  * If applicable, add the following below this CDDL HEADER, with the
17*fa9e4066Sahrens  * fields enclosed by brackets "[]" replaced with your own identifying
18*fa9e4066Sahrens  * information: Portions Copyright [yyyy] [name of copyright owner]
19*fa9e4066Sahrens  *
20*fa9e4066Sahrens  * CDDL HEADER END
21*fa9e4066Sahrens  */
22*fa9e4066Sahrens /*
23*fa9e4066Sahrens  * Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
24*fa9e4066Sahrens  * Use is subject to license terms.
25*fa9e4066Sahrens  */
26*fa9e4066Sahrens 
27*fa9e4066Sahrens #ifndef	_ZFS_NAMECHECK_H
28*fa9e4066Sahrens #define	_ZFS_NAMECHECK_H
29*fa9e4066Sahrens 
30*fa9e4066Sahrens #pragma ident	"%Z%%M%	%I%	%E% SMI"
31*fa9e4066Sahrens 
32*fa9e4066Sahrens #ifdef	__cplusplus
33*fa9e4066Sahrens extern "C" {
34*fa9e4066Sahrens #endif
35*fa9e4066Sahrens 
36*fa9e4066Sahrens typedef enum {
37*fa9e4066Sahrens 	NAME_ERR_LEADING_SLASH,		/* name begins with leading slash */
38*fa9e4066Sahrens 	NAME_ERR_EMPTY_COMPONENT,	/* name contains an empty component */
39*fa9e4066Sahrens 	NAME_ERR_TRAILING_SLASH,	/* name ends with a slash */
40*fa9e4066Sahrens 	NAME_ERR_INVALCHAR,		/* invalid character found */
41*fa9e4066Sahrens 	NAME_ERR_MULTIPLE_AT,		/* multiple '@' characters found */
42*fa9e4066Sahrens 	NAME_ERR_NOLETTER,		/* pool doesn't begin with a letter */
43*fa9e4066Sahrens 	NAME_ERR_RESERVED,		/* entire name is reserved */
44*fa9e4066Sahrens 	NAME_ERR_DISKLIKE,		/* reserved disk name (c[0-9].*) */
45*fa9e4066Sahrens } namecheck_err_t;
46*fa9e4066Sahrens 
47*fa9e4066Sahrens int pool_namecheck(const char *, namecheck_err_t *, char *);
48*fa9e4066Sahrens int dataset_namecheck(const char *, namecheck_err_t *, char *);
49*fa9e4066Sahrens int dataset_name_hidden(const char *);
50*fa9e4066Sahrens 
51*fa9e4066Sahrens #ifdef	__cplusplus
52*fa9e4066Sahrens }
53*fa9e4066Sahrens #endif
54*fa9e4066Sahrens 
55*fa9e4066Sahrens #endif	/* _ZFS_NAMECHECK_H */
56