xref: /titanic_53/usr/src/lib/libshare/common/plugin.c (revision c5f58477f1b190d049c5f4fedeed36e5cc22a1c7)
16185db85Sdougm /*
26185db85Sdougm  * CDDL HEADER START
36185db85Sdougm  *
46185db85Sdougm  * The contents of this file are subject to the terms of the
56185db85Sdougm  * Common Development and Distribution License (the "License").
66185db85Sdougm  * You may not use this file except in compliance with the License.
76185db85Sdougm  *
86185db85Sdougm  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
96185db85Sdougm  * or http://www.opensolaris.org/os/licensing.
106185db85Sdougm  * See the License for the specific language governing permissions
116185db85Sdougm  * and limitations under the License.
126185db85Sdougm  *
136185db85Sdougm  * When distributing Covered Code, include this CDDL HEADER in each
146185db85Sdougm  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
156185db85Sdougm  * If applicable, add the following below this CDDL HEADER, with the
166185db85Sdougm  * fields enclosed by brackets "[]" replaced with your own identifying
176185db85Sdougm  * information: Portions Copyright [yyyy] [name of copyright owner]
186185db85Sdougm  *
196185db85Sdougm  * CDDL HEADER END
206185db85Sdougm  */
216185db85Sdougm 
226185db85Sdougm /*
234bff34e3Sthurlow  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
246185db85Sdougm  * Use is subject to license terms.
256185db85Sdougm  */
266185db85Sdougm 
276185db85Sdougm #pragma ident	"%Z%%M%	%I%	%E% SMI"
286185db85Sdougm 
296185db85Sdougm #include <stdio.h>
306185db85Sdougm #include <stdlib.h>
316185db85Sdougm #include <string.h>
326185db85Sdougm #include <libshare.h>
336185db85Sdougm #include "libshare_impl.h"
346185db85Sdougm #include <dlfcn.h>
356185db85Sdougm #include <link.h>
366185db85Sdougm #include <sys/types.h>
376185db85Sdougm #include <sys/param.h>
386185db85Sdougm #include <sys/stat.h>
396185db85Sdougm #include <dirent.h>
406185db85Sdougm #include <libintl.h>
41549ec3ffSdougm #include <sys/systeminfo.h>
42*c5f58477Sdougm #include <thread.h>
43*c5f58477Sdougm #include <synch.h>
44549ec3ffSdougm 
45549ec3ffSdougm #define	MAXISALEN	257	/* based on sysinfo(2) man page */
466185db85Sdougm 
476185db85Sdougm /*
486185db85Sdougm  * protocol plugin interface
496185db85Sdougm  *
506185db85Sdougm  * finds plugins and makes them accessible. This is only "used" by
516185db85Sdougm  * libshare.so.
526185db85Sdougm  */
536185db85Sdougm 
546185db85Sdougm struct sa_proto_plugin *sap_proto_list;
556185db85Sdougm 
566185db85Sdougm static struct sa_proto_handle sa_proto_handle;
576185db85Sdougm 
586185db85Sdougm void proto_plugin_fini();
596185db85Sdougm 
606185db85Sdougm /*
616185db85Sdougm  * proto_plugin_init()
626185db85Sdougm  *
636185db85Sdougm  * Initialize the protocol specific plugin modules.
646185db85Sdougm  *
656185db85Sdougm  * Walk /usr/lib/fs/\* for libshare_*.so modules. That is,
666185db85Sdougm  * /usr/lib/fs/nfs/libshare_nfs.so. The protocol specific directory
676185db85Sdougm  * would have a modules with name libshare_<proto>.so. If one is
686185db85Sdougm  * found, initialize it and add to the internal list of
69da6c28aaSamw  * protocols. These are used for protocol specific operations.
706185db85Sdougm  */
716185db85Sdougm 
726185db85Sdougm int
736185db85Sdougm proto_plugin_init()
746185db85Sdougm {
756185db85Sdougm 	struct sa_proto_plugin *proto;
766185db85Sdougm 	int num_protos = 0;
776185db85Sdougm 	struct sa_plugin_ops *plugin_ops;
786185db85Sdougm 	void *dlhandle;
796185db85Sdougm 	DIR *dir;
806185db85Sdougm 	struct dirent *dent;
816185db85Sdougm 	int ret = SA_OK;
826185db85Sdougm 	struct stat st;
836185db85Sdougm 
846185db85Sdougm 	/*
8525a68471Sdougm 	 * Should walk "/usr/lib/fs/" for files of the form:
866185db85Sdougm 	 * libshare_*.so
876185db85Sdougm 	 */
886185db85Sdougm 	dir = opendir(SA_LIB_DIR);
896185db85Sdougm 	if (dir != NULL) {
906185db85Sdougm 		while (ret == SA_OK && (dent = readdir(dir)) != NULL) {
916185db85Sdougm 			char path[MAXPATHLEN];
92549ec3ffSdougm 			char isa[MAXISALEN];
93549ec3ffSdougm 
94549ec3ffSdougm #if defined(_LP64)
95549ec3ffSdougm 			if (sysinfo(SI_ARCHITECTURE_64, isa, MAXISALEN) == -1)
96549ec3ffSdougm 				isa[0] = '\0';
97549ec3ffSdougm #else
98549ec3ffSdougm 			isa[0] = '\0';
99549ec3ffSdougm #endif
1006185db85Sdougm 			(void) snprintf(path, MAXPATHLEN,
10125a68471Sdougm 			    "%s/%s/%s/libshare_%s.so.1", SA_LIB_DIR,
10225a68471Sdougm 			    dent->d_name, isa, dent->d_name);
10325a68471Sdougm 			/*
10425a68471Sdougm 			 * If file doesn't exist, don't try to map it
10525a68471Sdougm 			 */
10625a68471Sdougm 			if (stat(path, &st) < 0)
1076185db85Sdougm 				continue;
10825a68471Sdougm 
109549ec3ffSdougm 			dlhandle = dlopen(path, RTLD_FIRST|RTLD_LAZY);
1106185db85Sdougm 			if (dlhandle != NULL) {
1116185db85Sdougm 				plugin_ops = (struct sa_plugin_ops *)
1126185db85Sdougm 				    dlsym(dlhandle, "sa_plugin_ops");
1136185db85Sdougm 				proto = (struct sa_proto_plugin *)
1146185db85Sdougm 				    calloc(1, sizeof (struct sa_proto_plugin));
1156185db85Sdougm 				if (proto != NULL) {
1166185db85Sdougm 					proto->plugin_ops = plugin_ops;
1176185db85Sdougm 					proto->plugin_handle = dlhandle;
1186185db85Sdougm 					num_protos++;
1196185db85Sdougm 					proto->plugin_next = sap_proto_list;
1206185db85Sdougm 					sap_proto_list = proto;
1216185db85Sdougm 				} else {
1226185db85Sdougm 					ret = SA_NO_MEMORY;
123*c5f58477Sdougm 					/* Don't leak a dlhandle */
124*c5f58477Sdougm 					(void) dlclose(dlhandle);
125*c5f58477Sdougm 					break;
1266185db85Sdougm 				}
1276185db85Sdougm 			} else {
1286185db85Sdougm 				(void) fprintf(stderr,
12924424a35Sdougm 				    dgettext(TEXT_DOMAIN,
13024424a35Sdougm 				    "Error in plugin for protocol %s: %s\n"),
1316185db85Sdougm 				    dent->d_name, dlerror());
1326185db85Sdougm 			}
1336185db85Sdougm 		}
1346185db85Sdougm 		(void) closedir(dir);
1356185db85Sdougm 	}
1366185db85Sdougm 	if (ret == SA_OK) {
1376185db85Sdougm 		sa_proto_handle.sa_proto =
1386185db85Sdougm 		    (char **)calloc(num_protos, sizeof (char *));
1396185db85Sdougm 		sa_proto_handle.sa_ops =
1406185db85Sdougm 		    (struct sa_plugin_ops **)calloc(num_protos,
1416185db85Sdougm 		    sizeof (struct sa_plugin_ops *));
1426185db85Sdougm 		if (sa_proto_handle.sa_proto != NULL &&
1436185db85Sdougm 		    sa_proto_handle.sa_ops != NULL) {
1446185db85Sdougm 			int i;
1456185db85Sdougm 			struct sa_proto_plugin *tmp;
14625a68471Sdougm 
14725a68471Sdougm 			for (i = 0, tmp = sap_proto_list;
148917c27c8Sdougm 			    i < num_protos && tmp != NULL;
1496185db85Sdougm 			    tmp = tmp->plugin_next) {
150*c5f58477Sdougm 				int err;
151*c5f58477Sdougm 				err = SA_OK;
1526185db85Sdougm 				if (tmp->plugin_ops->sa_init != NULL)
1536185db85Sdougm 					err = tmp->plugin_ops->sa_init();
1546185db85Sdougm 				if (err == SA_OK) {
15525a68471Sdougm 					/*
15625a68471Sdougm 					 * Only include if the init
15725a68471Sdougm 					 * succeeded or was NULL
15825a68471Sdougm 					 */
1596185db85Sdougm 					sa_proto_handle.sa_num_proto++;
16025a68471Sdougm 					sa_proto_handle.sa_ops[i] =
16125a68471Sdougm 					    tmp->plugin_ops;
1626185db85Sdougm 					sa_proto_handle.sa_proto[i] =
1636185db85Sdougm 					    tmp->plugin_ops->sa_protocol;
1646185db85Sdougm 					i++;
1656185db85Sdougm 				}
1666185db85Sdougm 			}
1676185db85Sdougm 		} else {
168*c5f58477Sdougm 			ret = SA_NO_MEMORY;
169*c5f58477Sdougm 		}
170*c5f58477Sdougm 	}
171*c5f58477Sdougm 
17225a68471Sdougm 	/*
17325a68471Sdougm 	 * There was an error, so cleanup prior to return of failure.
17425a68471Sdougm 	 */
175*c5f58477Sdougm 	if (ret != SA_OK)
1766185db85Sdougm 		proto_plugin_fini();
177*c5f58477Sdougm 
1786185db85Sdougm 	return (ret);
1796185db85Sdougm }
1806185db85Sdougm 
1816185db85Sdougm /*
1826185db85Sdougm  * proto_plugin_fini()
1836185db85Sdougm  *
18425a68471Sdougm  * Uninitialize all the plugin modules.
1856185db85Sdougm  */
1866185db85Sdougm 
1876185db85Sdougm void
1886185db85Sdougm proto_plugin_fini()
1896185db85Sdougm {
1906185db85Sdougm 	/*
19125a68471Sdougm 	 * Free up all the protocols, calling their fini, if there is
1926185db85Sdougm 	 * one.
1936185db85Sdougm 	 */
1946185db85Sdougm 	while (sap_proto_list != NULL) {
1956185db85Sdougm 		struct sa_proto_plugin *next;
19625a68471Sdougm 
1976185db85Sdougm 		next = sap_proto_list->plugin_next;
1986185db85Sdougm 		sap_proto_list->plugin_ops->sa_fini();
1996185db85Sdougm 		if (sap_proto_list->plugin_handle != NULL)
2006185db85Sdougm 			(void) dlclose(sap_proto_list->plugin_handle);
2016185db85Sdougm 		free(sap_proto_list);
2026185db85Sdougm 		sap_proto_list = next;
2036185db85Sdougm 	}
2046185db85Sdougm 	if (sa_proto_handle.sa_ops != NULL) {
2056185db85Sdougm 		free(sa_proto_handle.sa_ops);
2066185db85Sdougm 		sa_proto_handle.sa_ops = NULL;
2076185db85Sdougm 	}
2086185db85Sdougm 	if (sa_proto_handle.sa_proto != NULL) {
2096185db85Sdougm 		free(sa_proto_handle.sa_proto);
2106185db85Sdougm 		sa_proto_handle.sa_proto = NULL;
2116185db85Sdougm 	}
2126185db85Sdougm 	sa_proto_handle.sa_num_proto = 0;
2136185db85Sdougm }
2146185db85Sdougm 
2156185db85Sdougm /*
2166185db85Sdougm  * find_protocol(proto)
2176185db85Sdougm  *
2186185db85Sdougm  * Search the plugin list for the specified protocol and return the
2196185db85Sdougm  * ops vector.  NULL if protocol is not defined.
2206185db85Sdougm  */
2216185db85Sdougm 
2226185db85Sdougm static struct sa_plugin_ops *
2236185db85Sdougm find_protocol(char *proto)
2246185db85Sdougm {
2256185db85Sdougm 	int i;
226*c5f58477Sdougm 	struct sa_plugin_ops *ops = NULL;
227*c5f58477Sdougm 	extern mutex_t sa_global_lock;
2286185db85Sdougm 
229*c5f58477Sdougm 	(void) mutex_lock(&sa_global_lock);
2306185db85Sdougm 	if (proto != NULL) {
2316185db85Sdougm 		for (i = 0; i < sa_proto_handle.sa_num_proto; i++) {
232*c5f58477Sdougm 			if (strcmp(proto, sa_proto_handle.sa_proto[i]) == 0) {
233*c5f58477Sdougm 				ops = sa_proto_handle.sa_ops[i];
234*c5f58477Sdougm 				break;
2356185db85Sdougm 			}
2366185db85Sdougm 		}
237*c5f58477Sdougm 	}
238*c5f58477Sdougm 	(void) mutex_unlock(&sa_global_lock);
239*c5f58477Sdougm 	return (ops);
2406185db85Sdougm }
2416185db85Sdougm 
2426185db85Sdougm /*
2436185db85Sdougm  * sa_proto_share(proto, share)
2446185db85Sdougm  *
2456185db85Sdougm  * Activate a share for the specified protocol.
2466185db85Sdougm  */
2476185db85Sdougm 
2486185db85Sdougm int
2496185db85Sdougm sa_proto_share(char *proto, sa_share_t share)
2506185db85Sdougm {
2516185db85Sdougm 	struct sa_plugin_ops *ops = find_protocol(proto);
2526185db85Sdougm 	int ret = SA_INVALID_PROTOCOL;
2536185db85Sdougm 
2546185db85Sdougm 	if (ops != NULL && ops->sa_share != NULL)
2556185db85Sdougm 		ret = ops->sa_share(share);
2566185db85Sdougm 	return (ret);
2576185db85Sdougm }
2586185db85Sdougm 
2596185db85Sdougm /*
260da6c28aaSamw  * sa_proto_unshare(proto, share)
2616185db85Sdougm  *
262da6c28aaSamw  * Deactivate (unshare) the share for this protocol.
2636185db85Sdougm  */
2646185db85Sdougm 
2656185db85Sdougm int
266ecd6cf80Smarks sa_proto_unshare(sa_share_t share, char *proto, char *path)
2676185db85Sdougm {
2686185db85Sdougm 	struct sa_plugin_ops *ops = find_protocol(proto);
2696185db85Sdougm 	int ret = SA_INVALID_PROTOCOL;
2706185db85Sdougm 
2716185db85Sdougm 	if (ops != NULL && ops->sa_unshare != NULL)
272ecd6cf80Smarks 		ret = ops->sa_unshare(share, path);
2736185db85Sdougm 	return (ret);
2746185db85Sdougm }
2756185db85Sdougm 
2766185db85Sdougm /*
277da6c28aaSamw  * sa_proto_share_resource(char *proto, sa_resource_t resource)
278da6c28aaSamw  *
279da6c28aaSamw  * For protocols that actually enable at the resource level, do the
280da6c28aaSamw  * protocol specific resource enable. If it doesn't, return an error.
281da6c28aaSamw  * Note that the resource functions are optional so can return
282da6c28aaSamw  * SA_NOT_SUPPORTED.
283da6c28aaSamw  */
284da6c28aaSamw 
285da6c28aaSamw int
286da6c28aaSamw sa_proto_share_resource(char *proto, sa_resource_t resource)
287da6c28aaSamw {
288da6c28aaSamw 	struct sa_plugin_ops *ops = find_protocol(proto);
289da6c28aaSamw 	int ret = SA_INVALID_PROTOCOL;
290da6c28aaSamw 
291da6c28aaSamw 	if (ops != NULL) {
292da6c28aaSamw 		if (ops->sa_enable_resource != NULL)
293da6c28aaSamw 			ret = ops->sa_enable_resource(resource);
294da6c28aaSamw 		else
295da6c28aaSamw 			ret = SA_NOT_SUPPORTED;
296da6c28aaSamw 	}
297da6c28aaSamw 	return (ret);
298da6c28aaSamw }
299da6c28aaSamw 
300da6c28aaSamw /*
301da6c28aaSamw  * sa_proto_unshare_resource(char *proto, sa_resource_t resource)
302da6c28aaSamw  *
303da6c28aaSamw  * For protocols that actually disable at the resource level, do the
304da6c28aaSamw  * protocol specific resource disable. If it doesn't, return an error.
305da6c28aaSamw  */
306da6c28aaSamw 
307da6c28aaSamw int
308da6c28aaSamw sa_proto_unshare_resource(char *proto, sa_resource_t resource)
309da6c28aaSamw {
310da6c28aaSamw 	struct sa_plugin_ops *ops = find_protocol(proto);
311da6c28aaSamw 	int ret = SA_INVALID_PROTOCOL;
312da6c28aaSamw 
313da6c28aaSamw 	if (ops != NULL) {
314da6c28aaSamw 		if (ops->sa_disable_resource != NULL)
315da6c28aaSamw 			ret = ops->sa_disable_resource(resource);
316da6c28aaSamw 		else
317da6c28aaSamw 			ret = SA_NOT_SUPPORTED;
318da6c28aaSamw 	}
319da6c28aaSamw 	return (ret);
320da6c28aaSamw }
321da6c28aaSamw 
322da6c28aaSamw /*
323687915e9Sdougm  * sa_proto_valid_prop(handle, proto, prop, opt)
3246185db85Sdougm  *
32525a68471Sdougm  * Check to see if the specified prop is valid for this protocol.
3266185db85Sdougm  */
3276185db85Sdougm 
3286185db85Sdougm int
329687915e9Sdougm sa_proto_valid_prop(sa_handle_t handle, char *proto, sa_property_t prop,
330687915e9Sdougm     sa_optionset_t opt)
3316185db85Sdougm {
3326185db85Sdougm 	struct sa_plugin_ops *ops = find_protocol(proto);
3336185db85Sdougm 	int ret = 0;
3346185db85Sdougm 
3356185db85Sdougm 	if (ops != NULL && ops->sa_valid_prop != NULL)
336687915e9Sdougm 		ret = ops->sa_valid_prop(handle, prop, opt);
3376185db85Sdougm 	return (ret);
3386185db85Sdougm }
3396185db85Sdougm 
3406185db85Sdougm /*
3416185db85Sdougm  * sa_proto_valid_space(proto, space)
3426185db85Sdougm  *
34325a68471Sdougm  * Check if space is valid optionspace for proto.
3446185db85Sdougm  * Protocols that don't implement this don't support spaces.
3456185db85Sdougm  */
3466185db85Sdougm int
3476185db85Sdougm sa_proto_valid_space(char *proto, char *token)
3486185db85Sdougm {
3496185db85Sdougm 	struct sa_plugin_ops *ops = find_protocol(proto);
3506185db85Sdougm 	int ret = 0;
3516185db85Sdougm 
3526185db85Sdougm 	if (ops != NULL && ops->sa_valid_space != NULL)
3536185db85Sdougm 		ret = ops->sa_valid_space(token);
3546185db85Sdougm 	return (ret);
3556185db85Sdougm }
3566185db85Sdougm 
3576185db85Sdougm /*
3586185db85Sdougm  * sa_proto_space_alias(proto, space)
3596185db85Sdougm  *
36025a68471Sdougm  * If the name for space is an alias, return its proper name.  This is
3616185db85Sdougm  * used to translate "default" values into proper form.
3626185db85Sdougm  */
3636185db85Sdougm char *
3646185db85Sdougm sa_proto_space_alias(char *proto, char *space)
3656185db85Sdougm {
3666185db85Sdougm 	struct sa_plugin_ops *ops = find_protocol(proto);
3676185db85Sdougm 	char *ret = space;
3686185db85Sdougm 
3696185db85Sdougm 	if (ops != NULL && ops->sa_space_alias != NULL)
3706185db85Sdougm 		ret = ops->sa_space_alias(space);
3716185db85Sdougm 	return (ret);
3726185db85Sdougm }
3736185db85Sdougm 
3746185db85Sdougm /*
3756185db85Sdougm  * sa_proto_security_prop(proto, token)
3766185db85Sdougm  *
3776185db85Sdougm  * Check to see if the property name in token is a valid named
3786185db85Sdougm  * optionset property.
3796185db85Sdougm  */
3806185db85Sdougm 
3816185db85Sdougm int
3826185db85Sdougm sa_proto_security_prop(char *proto, char *token)
3836185db85Sdougm {
3846185db85Sdougm 	struct sa_plugin_ops *ops = find_protocol(proto);
3856185db85Sdougm 	int ret = 0;
3866185db85Sdougm 
3876185db85Sdougm 	if (ops != NULL && ops->sa_security_prop != NULL)
3886185db85Sdougm 		ret = ops->sa_security_prop(token);
3896185db85Sdougm 	return (ret);
3906185db85Sdougm }
3916185db85Sdougm 
3926185db85Sdougm /*
3936185db85Sdougm  * sa_proto_legacy_opts(proto, grouup, options)
3946185db85Sdougm  *
3956185db85Sdougm  * Have the protocol specific parser parse the options string and add
3966185db85Sdougm  * an appropriate optionset to group.
3976185db85Sdougm  */
3986185db85Sdougm 
3996185db85Sdougm int
4006185db85Sdougm sa_proto_legacy_opts(char *proto, sa_group_t group, char *options)
4016185db85Sdougm {
4026185db85Sdougm 	struct sa_plugin_ops *ops = find_protocol(proto);
4036185db85Sdougm 	int ret = SA_INVALID_PROTOCOL;
4046185db85Sdougm 
4056185db85Sdougm 	if (ops != NULL && ops->sa_legacy_opts != NULL)
4066185db85Sdougm 		ret = ops->sa_legacy_opts(group, options);
4076185db85Sdougm 	return (ret);
4086185db85Sdougm }
4096185db85Sdougm 
4106185db85Sdougm /*
4116185db85Sdougm  * sa_proto_legacy_format(proto, group, hier)
4126185db85Sdougm  *
4136185db85Sdougm  * Return a legacy format string representing either the group's
4146185db85Sdougm  * properties or the groups hierarchical properties.
4156185db85Sdougm  */
4166185db85Sdougm 
4176185db85Sdougm char *
4186185db85Sdougm sa_proto_legacy_format(char *proto, sa_group_t group, int hier)
4196185db85Sdougm {
4206185db85Sdougm 	struct sa_plugin_ops *ops = find_protocol(proto);
4216185db85Sdougm 	char *ret = NULL;
4226185db85Sdougm 
4236185db85Sdougm 	if (ops != NULL && ops->sa_legacy_format != NULL)
4246185db85Sdougm 		ret = ops->sa_legacy_format(group, hier);
4256185db85Sdougm 	return (ret);
4266185db85Sdougm }
4276185db85Sdougm 
4286185db85Sdougm void
4296185db85Sdougm sa_format_free(char *str)
4306185db85Sdougm {
4316185db85Sdougm 	free(str);
4326185db85Sdougm }
4336185db85Sdougm 
4346185db85Sdougm /*
4356185db85Sdougm  * sharectl related API functions
4366185db85Sdougm  */
4376185db85Sdougm 
4386185db85Sdougm /*
4396185db85Sdougm  * sa_proto_get_properties(proto)
4406185db85Sdougm  *
4416185db85Sdougm  * Return the set of properties that are specific to the
4426185db85Sdougm  * protocol. These are usually in /etc/dfs/<proto> and related files,
4436185db85Sdougm  * but only the protocol module knows which ones for sure.
4446185db85Sdougm  */
4456185db85Sdougm 
4466185db85Sdougm sa_protocol_properties_t
4476185db85Sdougm sa_proto_get_properties(char *proto)
4486185db85Sdougm {
4496185db85Sdougm 	struct sa_plugin_ops *ops = find_protocol(proto);
4506185db85Sdougm 	sa_protocol_properties_t props = NULL;
4516185db85Sdougm 
4526185db85Sdougm 	if (ops != NULL && ops->sa_get_proto_set != NULL)
4536185db85Sdougm 		props = ops->sa_get_proto_set();
4546185db85Sdougm 	return (props);
4556185db85Sdougm }
4566185db85Sdougm 
4576185db85Sdougm /*
4586185db85Sdougm  * sa_proto_set_property(proto, prop)
4596185db85Sdougm  *
460da6c28aaSamw  * Update the protocol specific property.
4616185db85Sdougm  */
4626185db85Sdougm 
4636185db85Sdougm int
4646185db85Sdougm sa_proto_set_property(char *proto, sa_property_t prop)
4656185db85Sdougm {
4666185db85Sdougm 	struct sa_plugin_ops *ops = find_protocol(proto);
4676185db85Sdougm 	int ret = SA_OK;
46825a68471Sdougm 
4696185db85Sdougm 	if (ops != NULL && ops->sa_set_proto_prop != NULL)
4706185db85Sdougm 		ret = ops->sa_set_proto_prop(prop);
4716185db85Sdougm 	return (ret);
4726185db85Sdougm }
4736185db85Sdougm 
4746185db85Sdougm /*
4756185db85Sdougm  * sa_valid_protocol(proto)
4766185db85Sdougm  *
47725a68471Sdougm  * Check to see if the protocol specified is defined by a
4786185db85Sdougm  * plugin. Returns true (1) or false (0)
4796185db85Sdougm  */
4806185db85Sdougm 
4816185db85Sdougm int
4826185db85Sdougm sa_valid_protocol(char *proto)
4836185db85Sdougm {
4846185db85Sdougm 	struct sa_plugin_ops *ops = find_protocol(proto);
4856185db85Sdougm 	return (ops != NULL);
4866185db85Sdougm }
4876185db85Sdougm 
4886185db85Sdougm /*
4896185db85Sdougm  * Return the current operational status of the protocol
4906185db85Sdougm  */
4916185db85Sdougm 
4926185db85Sdougm char *
4936185db85Sdougm sa_get_protocol_status(char *proto)
4946185db85Sdougm {
4956185db85Sdougm 	struct sa_plugin_ops *ops = find_protocol(proto);
4966185db85Sdougm 	char *ret = NULL;
4976185db85Sdougm 	if (ops != NULL && ops->sa_get_proto_status != NULL)
4986185db85Sdougm 		ret = ops->sa_get_proto_status(proto);
4996185db85Sdougm 	return (ret);
5006185db85Sdougm }
5016185db85Sdougm 
5026185db85Sdougm /*
5036185db85Sdougm  * sa_proto_update_legacy(proto, share)
5046185db85Sdougm  *
5056185db85Sdougm  * Update the protocol specific legacy files if necessary for the
5066185db85Sdougm  * specified share.
5076185db85Sdougm  */
5086185db85Sdougm 
5096185db85Sdougm int
5106185db85Sdougm sa_proto_update_legacy(char *proto, sa_share_t share)
5116185db85Sdougm {
5126185db85Sdougm 	struct sa_plugin_ops *ops = find_protocol(proto);
5136185db85Sdougm 	int ret = SA_NOT_IMPLEMENTED;
5146185db85Sdougm 
5156185db85Sdougm 	if (ops != NULL) {
5166185db85Sdougm 		if (ops->sa_update_legacy != NULL)
5176185db85Sdougm 			ret = ops->sa_update_legacy(share);
5186185db85Sdougm 	}
5196185db85Sdougm 	return (ret);
5206185db85Sdougm }
5216185db85Sdougm 
5226185db85Sdougm /*
5236185db85Sdougm  * sa_delete_legacy(proto, share)
5246185db85Sdougm  *
52525a68471Sdougm  * Remove the specified share from the protocol specific legacy files.
5266185db85Sdougm  */
5276185db85Sdougm 
5286185db85Sdougm int
5296185db85Sdougm sa_proto_delete_legacy(char *proto, sa_share_t share)
5306185db85Sdougm {
5316185db85Sdougm 	struct sa_plugin_ops *ops = find_protocol(proto);
532da6c28aaSamw 	int ret = SA_NOT_IMPLEMENTED;
5336185db85Sdougm 
5346185db85Sdougm 	if (ops != NULL) {
5356185db85Sdougm 		if (ops->sa_delete_legacy != NULL)
5366185db85Sdougm 			ret = ops->sa_delete_legacy(share);
5374bff34e3Sthurlow 	} else {
5384bff34e3Sthurlow 		if (proto != NULL)
5394bff34e3Sthurlow 			ret = SA_NOT_IMPLEMENTED;
5404bff34e3Sthurlow 		else
5414bff34e3Sthurlow 			ret = SA_INVALID_PROTOCOL;
5424bff34e3Sthurlow 	}
5434bff34e3Sthurlow 	return (ret);
5444bff34e3Sthurlow }
5454bff34e3Sthurlow 
5464bff34e3Sthurlow /*
5474bff34e3Sthurlow  * sa_proto_delete_section(proto, section)
5484bff34e3Sthurlow  *
5494bff34e3Sthurlow  * Remove the specified section from the protocol specific legacy files,
5504bff34e3Sthurlow  * if supported.
5514bff34e3Sthurlow  */
5524bff34e3Sthurlow 
5534bff34e3Sthurlow int
5544bff34e3Sthurlow sa_proto_delete_section(char *proto, char *section)
5554bff34e3Sthurlow {
5564bff34e3Sthurlow 	struct sa_plugin_ops *ops = find_protocol(proto);
5574bff34e3Sthurlow 	int ret = SA_OK;
5584bff34e3Sthurlow 
5594bff34e3Sthurlow 	if (ops != NULL) {
5604bff34e3Sthurlow 		if (ops->sa_delete_proto_section != NULL)
5614bff34e3Sthurlow 			ret = ops->sa_delete_proto_section(section);
5624bff34e3Sthurlow 	} else {
5634bff34e3Sthurlow 		if (proto != NULL)
5644bff34e3Sthurlow 			ret = SA_NOT_IMPLEMENTED;
5654bff34e3Sthurlow 		else
5666185db85Sdougm 			ret = SA_INVALID_PROTOCOL;
5676185db85Sdougm 	}
5686185db85Sdougm 	return (ret);
5696185db85Sdougm }
570da6c28aaSamw 
571da6c28aaSamw /*
572da6c28aaSamw  * sa_proto_change_notify(share, char *protocol)
573da6c28aaSamw  *
574da6c28aaSamw  * Notify the protocol that a change has been made to the share
575da6c28aaSamw  */
576da6c28aaSamw 
577da6c28aaSamw int
578da6c28aaSamw sa_proto_change_notify(sa_share_t share, char *proto)
579da6c28aaSamw {
580da6c28aaSamw 	struct sa_plugin_ops *ops = find_protocol(proto);
581da6c28aaSamw 	int ret = SA_NOT_IMPLEMENTED;
582da6c28aaSamw 
583da6c28aaSamw 	if (ops != NULL) {
584da6c28aaSamw 		if (ops->sa_change_notify != NULL)
585da6c28aaSamw 			ret = ops->sa_change_notify(share);
586da6c28aaSamw 	} else	if (proto == NULL) {
5874bff34e3Sthurlow 
588da6c28aaSamw 			ret = SA_INVALID_PROTOCOL;
589da6c28aaSamw 	}
590da6c28aaSamw 	return (ret);
591da6c28aaSamw }
592da6c28aaSamw 
593da6c28aaSamw /*
594da6c28aaSamw  * sa_proto_notify_resource(resource, char *protocol)
595da6c28aaSamw  *
596da6c28aaSamw  * Notify the protocol that a change has been made to the share
597da6c28aaSamw  */
598da6c28aaSamw 
599da6c28aaSamw int
600da6c28aaSamw sa_proto_notify_resource(sa_resource_t resource, char *proto)
601da6c28aaSamw {
602da6c28aaSamw 	struct sa_plugin_ops *ops = find_protocol(proto);
603da6c28aaSamw 	int ret = SA_NOT_IMPLEMENTED;
604da6c28aaSamw 
605da6c28aaSamw 	if (ops != NULL) {
606da6c28aaSamw 		if (ops->sa_notify_resource != NULL)
607da6c28aaSamw 			ret = ops->sa_notify_resource(resource);
608da6c28aaSamw 	} else if (proto == NULL) {
609da6c28aaSamw 			ret = SA_INVALID_PROTOCOL;
610da6c28aaSamw 	}
611da6c28aaSamw 	return (ret);
612da6c28aaSamw }
613da6c28aaSamw 
614da6c28aaSamw /*
615da6c28aaSamw  * sa_proto_get_featureset(protocol)
616da6c28aaSamw  *
617da6c28aaSamw  * Get bitmask of defined features of the protocol. These are
618da6c28aaSamw  * primarily things like SA_FEATURE_RESOURCE (shares are by resource
619da6c28aaSamw  * name rather than path) and other operational features that affect
620da6c28aaSamw  * behavior.
621da6c28aaSamw  */
622da6c28aaSamw 
623da6c28aaSamw uint64_t
624da6c28aaSamw sa_proto_get_featureset(char *proto)
625da6c28aaSamw {
626da6c28aaSamw 	struct sa_plugin_ops *ops = find_protocol(proto);
627da6c28aaSamw 	uint64_t ret = 0;
628da6c28aaSamw 
629da6c28aaSamw 	if (ops != NULL) {
630da6c28aaSamw 		if (ops->sa_features != NULL)
631da6c28aaSamw 			ret = ops->sa_features();
632da6c28aaSamw 	}
633da6c28aaSamw 	/* if not implemented, zero is valid */
634da6c28aaSamw 	return (ret);
635da6c28aaSamw }
636da6c28aaSamw 
637da6c28aaSamw /*
638da6c28aaSamw  * sa_proto_get_transients(sa_handle_t)
639da6c28aaSamw  *
640da6c28aaSamw  * Called to get any protocol specific transient shares.  NFS doesn't
641da6c28aaSamw  * use this since the info is in sharetab which is processed as a
642da6c28aaSamw  * common transient store.
643da6c28aaSamw  *
644da6c28aaSamw  * The protocol plugin should verify that the share isn't in the
645da6c28aaSamw  * repository and then add it as a transient.
646da6c28aaSamw  *
647da6c28aaSamw  * Not having an entry is not a problem. It returns 0 in that case.
648da6c28aaSamw  */
649da6c28aaSamw 
650da6c28aaSamw int
651da6c28aaSamw sa_proto_get_transients(sa_handle_t handle, char *proto)
652da6c28aaSamw {
653da6c28aaSamw 	struct sa_plugin_ops *ops = find_protocol(proto);
654da6c28aaSamw 	int ret = 0;
655da6c28aaSamw 
656da6c28aaSamw 	if (ops != NULL) {
657da6c28aaSamw 		if (ops->sa_get_transient_shares != NULL)
658da6c28aaSamw 			ret = ops->sa_get_transient_shares(handle);
659da6c28aaSamw 	}
660da6c28aaSamw 	return (ret);
661da6c28aaSamw }
662da6c28aaSamw 
663da6c28aaSamw /*
664da6c28aaSamw  * sa_proto_rename_resource(sa_handle_t, proto, sa_resource_t, newname)
665da6c28aaSamw  *
666da6c28aaSamw  * Protocols may need to know when a resource has changed names in
667da6c28aaSamw  * order to notify clients. This must be done "before" the name in the
668da6c28aaSamw  * resource has been changed. Not being implemented is not a problem.
669da6c28aaSamw  */
670da6c28aaSamw 
671da6c28aaSamw int
672da6c28aaSamw sa_proto_rename_resource(sa_handle_t handle, char *proto,
673da6c28aaSamw     sa_resource_t resource, char *newname)
674da6c28aaSamw {
675da6c28aaSamw 	struct sa_plugin_ops *ops = find_protocol(proto);
676da6c28aaSamw 	int ret = SA_OK;
677da6c28aaSamw 
678da6c28aaSamw 	if (ops != NULL) {
679da6c28aaSamw 		if (ops->sa_rename_resource != NULL)
680da6c28aaSamw 			ret = ops->sa_rename_resource(handle, resource,
681da6c28aaSamw 			    newname);
682da6c28aaSamw 	}
683da6c28aaSamw 	return (ret);
684da6c28aaSamw }
685