1 /*
2  * CDDL HEADER START
3  *
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.
7  *
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.
12  *
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]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  */
25 
26 /*
27  * Implements auxiliary routines declared in pcp_utils.h to facilitate
28  * finding the appropriate communication transport & device path for a
29  * given service.  This supports the transition from the legacy service channel
30  * transport (glvc) to the logical domain channel (vldc) transport native
31  * to platforms running Logical Domains (LDoms).
32  */
33 
34 #pragma ident	"%Z%%M%	%I%	%E% SMI"
35 
36 #include <fcntl.h>
37 #include <sys/types.h>
38 #include <sys/stat.h>
39 #include <strings.h>
40 #include <stdlib.h>
41 #include <libgen.h>
42 #include <unistd.h>
43 #include <stdio.h>
44 #include <libdevinfo.h>
45 
46 #include "pcp_utils.h"
47 
48 typedef enum { false = 0, true = 1 } bool_t;
49 
50 #define	SERVICE_PREFIX	"SUNW,sun4v-"
51 #define	DEVICES_DIR "/devices"
52 #define	GLVC	":glvc"
53 #define	VCHAN	"virtual-channel@"
54 #define	VCHAN_C	"virtual-channel-client@"
55 
56 /*
57  * The mechanism to relate a service to a device path is different for
58  * vldc and glvc, due to the way the device pathnames are encoded:
59  * Sample service: sunvts
60  * Service Name: SUNW,sun4v-sunvts
61  * GLVC device path:
62  * "/devices/virtual-devices@100/sunvts@a:glvc"
63  * VLDC device path:
64  * "/devices/virtual-devices@100/channel-devices@200/virtual-channel@3:sunvts"
65  *
66  * As VLDC is the communication mechanism used in an LDoms environment, it is
67  * the preferred channel, and its existence is checked for first.
68  */
69 
70 /*
71  * Extract from dev_path the "service name" portion.
72  * For vldc, the service corresponds to the minor name of the device path
73  * (e.g. virtual-channel@3:sunvts for sunvts).  If service is non-NULL, it must
74  * match the extracted service name for the function to succeed.
75  * The service name is returned in match (if non-NULL), and the function
76  * itself returns true on success; false on failure.
77  */
78 static bool_t
79 get_vldc_svc_name(char *dev_path, char *service, char **match)
80 {
81 	bool_t ret = false;
82 	char *pathname = strdup(dev_path);
83 	char *devname, *s;
84 
85 	if (NULL == pathname)
86 		return (false);
87 
88 	devname = basename(pathname);
89 	s = strrchr(devname, ':');
90 
91 	if (s++ == NULL) {
92 		goto end;
93 	}
94 
95 	if ((strncmp(devname, VCHAN, strlen(VCHAN)) == 0) ||
96 	    (strncmp(devname, VCHAN_C, strlen(VCHAN_C)) == 0)) {
97 		/*
98 		 * If in addition, a service string is specified to
99 		 * be matched, do a comparison
100 		 */
101 		if (service != NULL) {
102 			if (strcmp(s, service) == 0) {
103 				if (match)
104 					*match = strdup(s);
105 				ret = true;
106 				goto end;
107 			} else {
108 				ret = false;
109 				goto end;
110 			}
111 		} else if (match) {
112 			*match = strdup(s);
113 		}
114 
115 		ret = true;
116 		goto end;
117 	}
118 end:
119 
120 	free(pathname);
121 	return (ret);
122 }
123 
124 /*
125  * Extract from dev_path the "service name" portion.
126  * For glvc, the service corresponds to the node name of the device path
127  * (e.g. sunvts@a:glvc for sunvts).  If service is non-NULL, it must
128  * match the extracted service name for the function to succeed.
129  * The service name is returned in match (if non-NULL), and the function
130  * itself returns true on success; false on failure.
131  */
132 static bool_t
133 get_glvc_svc_name(char *dev_path, char *service, char **match)
134 {
135 	bool_t ret = true;
136 	char *pathname = strdup(dev_path);
137 	char *devname, *substr, *t;
138 	int len;
139 
140 	if (NULL == pathname)
141 		return (false);
142 
143 	devname = basename(pathname);
144 	substr = strstr(devname, GLVC);
145 
146 	if (!((substr != NULL) && (strcmp(substr, GLVC) == 0))) {
147 		ret = false;
148 		goto end;
149 	}
150 
151 	if ((t = strrchr(devname, '@')) == NULL) {
152 		ret = false;
153 		goto end;
154 	}
155 
156 	len = t - devname;
157 
158 	/*
159 	 * If a service string is specified, check if there
160 	 * is a match
161 	 */
162 	if ((service != NULL) && (strncmp(devname, service, len) != 0))
163 		ret = false;
164 
165 	if ((ret == true) && (match != NULL)) {
166 		*match = calloc(len + 1, 1);
167 		if (*match)
168 			(void) strncpy(*match, devname, len);
169 	}
170 
171 end:
172 	free(pathname);
173 	return (ret);
174 }
175 
176 /*
177  * This routine accepts either a prefixed service name or a legacy full
178  * pathname (which might not even exist in the filesystem), and in either case
179  * returns a canonical service name.  If the parameter is neither a service
180  * name (i.e. with a "SUNW,sun4v-" prefix), nor a path to a legacy glvc or
181  * vldc device, NULL is returned.
182  */
183 char *
184 platsvc_extract_svc_name(char *devname)
185 {
186 	char *sname = NULL;
187 	char *vldc_path, *glvc_path;
188 
189 	/*
190 	 * First check whether a service name
191 	 */
192 	if (strncmp(devname, SERVICE_PREFIX, strlen(SERVICE_PREFIX)) == 0) {
193 		sname = strdup(devname + strlen(SERVICE_PREFIX));
194 		return (sname);
195 	}
196 
197 	/*
198 	 * Not a service name, check if it's a valid pathname
199 	 */
200 	if (!(devname[0] == '/' || devname[0] == '.')) {
201 		return (NULL);
202 	}
203 
204 	/*
205 	 * Ideally, we should only check for a valid glvc pathname,
206 	 * requiring all vldc access to be only via service names.  But
207 	 * to prevent a flag day with code that's already passing in
208 	 * vldc full pathnames (e.g. sunMC), we allow them here.
209 	 */
210 	if (get_vldc_svc_name(devname, NULL, &vldc_path) == true) {
211 		return (vldc_path);
212 	} else if (get_glvc_svc_name(devname, NULL, &glvc_path) == true) {
213 		return (glvc_path);
214 	}
215 
216 	return (NULL);
217 }
218 
219 /*
220  * Walk all "service" device nodes to find the one with the
221  * matching glvc minor name
222  */
223 static char *
224 svc_name_to_glvc_dev_path(char *service)
225 {
226 	di_node_t root_node, service_node;
227 	char *glvc_path;
228 	char *minor_name;
229 	di_minor_t minor;
230 	char *dev_path = NULL;
231 
232 	if (service == NULL)
233 		return (NULL);
234 
235 	/* Get device node */
236 	root_node = di_init("/", DINFOCPYALL);
237 	if (root_node == DI_NODE_NIL) {
238 		return (dev_path);
239 	}
240 
241 	service_node = di_drv_first_node("glvc", root_node);
242 
243 	while (service_node != DI_NODE_NIL) {
244 		/* Make sure node name matches service name */
245 		if (strcmp(service, di_node_name(service_node)) == 0) {
246 			/* Walk minor nodes */
247 			minor = di_minor_next(service_node, DI_NODE_NIL);
248 
249 			while (minor != DI_NODE_NIL) {
250 				glvc_path = di_devfs_minor_path(minor);
251 				minor_name = di_minor_name(minor);
252 
253 				if (strcmp(minor_name, "glvc") == 0) {
254 					dev_path = malloc(strlen(glvc_path) +
255 					    strlen(DEVICES_DIR) + 1);
256 					(void) strcpy(dev_path, DEVICES_DIR);
257 					(void) strcat(dev_path, glvc_path);
258 					di_devfs_path_free(glvc_path);
259 					break;
260 				}
261 
262 				di_devfs_path_free(glvc_path);
263 				minor = di_minor_next(service_node, minor);
264 			}
265 		}
266 		if (dev_path != NULL)
267 			break;
268 
269 		service_node = di_drv_next_node(service_node);
270 	}
271 
272 	di_fini(root_node);
273 	return (dev_path);
274 }
275 
276 /*
277  * Walk all vldc device nodes to find the one with the
278  * matching minor name
279  */
280 static char *
281 svc_name_to_vldc_dev_path(char *service)
282 {
283 	di_node_t root_node, vldc_node;
284 	char *vldc_path;
285 	char *minor_name;
286 	di_minor_t minor;
287 	char *dev_path = NULL;
288 
289 	/* Get device node */
290 	root_node = di_init("/", DINFOCPYALL);
291 	if (root_node == DI_NODE_NIL) {
292 		return (dev_path);
293 	}
294 
295 	vldc_node = di_drv_first_node("vldc", root_node);
296 
297 	while (vldc_node != DI_NODE_NIL) {
298 		/* Walk minor nodes */
299 		minor = di_minor_next(vldc_node, DI_NODE_NIL);
300 
301 		while (minor != DI_NODE_NIL) {
302 			vldc_path = di_devfs_minor_path(minor);
303 			minor_name = di_minor_name(minor);
304 
305 			if (strcmp(minor_name, service) == 0) {
306 				dev_path = malloc(strlen(vldc_path) +
307 				    strlen(DEVICES_DIR) + 1);
308 				(void) strcpy(dev_path, DEVICES_DIR);
309 				(void) strcat(dev_path, vldc_path);
310 				di_devfs_path_free(vldc_path);
311 				break;
312 			}
313 
314 			di_devfs_path_free(vldc_path);
315 			minor = di_minor_next(vldc_node, minor);
316 		}
317 		if (dev_path != NULL)
318 			break;
319 
320 		vldc_node = di_drv_next_node(vldc_node);
321 	}
322 
323 	di_fini(root_node);
324 	return (dev_path);
325 }
326 
327 /*
328  * Given a service name or a full legacy pathname, return
329  * the full pathname to the appropriate vldc or glvc device.
330  */
331 char *
332 platsvc_name_to_path(char *svc_or_path, pcp_xport_t *type)
333 {
334 	char		*pathn_p;
335 	char		*service;
336 
337 	if ((service = platsvc_extract_svc_name(svc_or_path)) == NULL)
338 		return (NULL);
339 
340 	/*
341 	 * First lookup vldc nodes
342 	 */
343 	pathn_p = svc_name_to_vldc_dev_path(service);
344 	if (pathn_p != NULL) {
345 		*type = VLDC_STREAMING;
346 	} else {
347 		/*
348 		 * If no vldc, try to find a glvc node
349 		 */
350 		pathn_p = svc_name_to_glvc_dev_path(service);
351 		if (pathn_p != NULL) {
352 			*type = GLVC_NON_STREAM;
353 		}
354 	}
355 
356 	free(service);
357 	return (pathn_p);
358 }
359