xref: /freebsd/sys/contrib/openzfs/lib/libshare/libshare_impl.h (revision 61145dc2b94f12f6a47344fb9aac702321880e43)
1 // SPDX-License-Identifier: CDDL-1.0
2 /*
3  * CDDL HEADER START
4  *
5  * The contents of this file are subject to the terms of the
6  * Common Development and Distribution License (the "License").
7  * You may not use this file except in compliance with the License.
8  *
9  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10  * or https://opensource.org/licenses/CDDL-1.0.
11  * See the License for the specific language governing permissions
12  * and limitations under the License.
13  *
14  * When distributing Covered Code, include this CDDL HEADER in each
15  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16  * If applicable, add the following below this CDDL HEADER, with the
17  * fields enclosed by brackets "[]" replaced with your own identifying
18  * information: Portions Copyright [yyyy] [name of copyright owner]
19  *
20  * CDDL HEADER END
21  */
22 
23 /*
24  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
25  * Copyright (c) 2011 Gunnar Beutner
26  * Copyright (c) 2019, 2022 by Delphix. All rights reserved.
27  */
28 #ifndef _LIBSPL_LIBSHARE_IMPL_H
29 #define	_LIBSPL_LIBSHARE_IMPL_H
30 
31 typedef const struct sa_share_impl {
32 	const char *sa_zfsname;
33 	const char *sa_mountpoint;
34 	const char *sa_shareopts;
35 } *sa_share_impl_t;
36 
37 typedef struct {
38 	int (*const enable_share)(sa_share_impl_t share);
39 	int (*const disable_share)(sa_share_impl_t share);
40 	boolean_t (*const is_shared)(sa_share_impl_t share);
41 	int (*const validate_shareopts)(const char *shareopts);
42 	int (*const commit_shares)(void);
43 	void (*const truncate_shares)(void);
44 } sa_fstype_t;
45 
46 extern const sa_fstype_t libshare_nfs_type, libshare_smb_type;
47 
48 #endif /* _LIBSPL_LIBSHARE_IMPL_H */
49