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