devs.c revision 40060
1/*
2 * Copyright (c) 1998 Kenneth D. Merry.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in the
12 *    documentation and/or other materials provided with the distribution.
13 * 3. The name of the author may not be used to endorse or promote products
14 *    derived from this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 *
28 *	$Id: devs.c,v 1.2 1998/09/20 00:11:23 ken Exp $
29 */
30/*
31 * Some code and ideas taken from the old disks.c.
32 * static char sccsid[] = "@(#)disks.c	8.1 (Berkeley) 6/6/93";
33 */
34/*-
35 * Copyright (c) 1980, 1992, 1993
36 *	The Regents of the University of California.  All rights reserved.
37 *
38 * Redistribution and use in source and binary forms, with or without
39 * modification, are permitted provided that the following conditions
40 * are met:
41 * 1. Redistributions of source code must retain the above copyright
42 *    notice, this list of conditions and the following disclaimer.
43 * 2. Redistributions in binary form must reproduce the above copyright
44 *    notice, this list of conditions and the following disclaimer in the
45 *    documentation and/or other materials provided with the distribution.
46 * 3. All advertising materials mentioning features or use of this software
47 *    must display the following acknowledgement:
48 *	This product includes software developed by the University of
49 *	California, Berkeley and its contributors.
50 * 4. Neither the name of the University nor the names of its contributors
51 *    may be used to endorse or promote products derived from this software
52 *    without specific prior written permission.
53 *
54 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
55 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
56 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
57 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
58 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
59 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
60 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
61 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
62 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
63 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
64 * SUCH DAMAGE.
65 */
66
67#include <sys/types.h>
68#include <sys/devicestat.h>
69#include <sys/dkstat.h>
70
71#include <string.h>
72#include <devstat.h>
73#include <stdlib.h>
74#include <ctype.h>
75#include <err.h>
76#include "systat.h"
77#include "extern.h"
78#include "devs.h"
79
80typedef enum {
81	DS_MATCHTYPE_NONE,
82	DS_MATCHTYPE_SPEC,
83	DS_MATCHTYPE_PATTERN
84} last_match_type;
85
86last_match_type last_type;
87struct device_selection *dev_select;
88long generation;
89int num_devices, num_selected;
90int num_selections;
91long select_generation;
92struct devstat_match *matches = NULL;
93int num_matches = 0;
94char **specified_devices;
95int num_devices_specified = 0;
96
97static int dsmatchselect(char *args, devstat_select_mode select_mode,
98			 int maxshowdevs, struct statinfo *s1);
99static int dsselect(char *args, devstat_select_mode select_mode,
100		    int maxshowdevs, struct statinfo *s1);
101
102int
103dsinit(int maxshowdevs, struct statinfo *s1, struct statinfo *s2,
104       struct statinfo *s3)
105{
106
107	/*
108	 * Make sure that the userland devstat version matches the kernel
109	 * devstat version.  If not, exit and print a message informing
110	 * the user of his mistake.
111	 */
112	if (checkversion() < 0)
113		errx(1, "%s", devstat_errbuf);
114
115	generation = 0;
116	num_devices = 0;
117	num_selected = 0;
118	num_selections = 0;
119	select_generation = 0;
120	last_type = DS_MATCHTYPE_NONE;
121
122	if (getdevs(s1) == -1)
123		errx(1, "%s", devstat_errbuf);
124
125	num_devices = s1->dinfo->numdevs;
126	generation = s1->dinfo->generation;
127
128	dev_select = NULL;
129
130	/*
131	 * At this point, selectdevs will almost surely indicate that the
132	 * device list has changed, so we don't look for return values of 0
133	 * or 1.  If we get back -1, though, there is an error.
134	 */
135	if (selectdevs(&dev_select, &num_selected, &num_selections,
136		       &select_generation, generation, s1->dinfo->devices,
137		       num_devices, NULL, 0, NULL, 0, DS_SELECT_ADD,
138		       maxshowdevs, 0) == -1)
139		errx(1, "%s", devstat_errbuf);
140
141	return(1);
142}
143
144int
145dscmd(char *cmd, char *args, int maxshowdevs, struct statinfo *s1)
146{
147	int retval;
148
149	if (prefix(cmd, "display") || prefix(cmd, "add"))
150		return(dsselect(args, DS_SELECT_ADDONLY, maxshowdevs, s1));
151	if (prefix(cmd, "ignore") || prefix(cmd, "delete"))
152		return(dsselect(args, DS_SELECT_REMOVE, maxshowdevs, s1));
153	if (prefix(cmd, "show") || prefix(cmd, "only"))
154		return(dsselect(args, DS_SELECT_ONLY, maxshowdevs, s1));
155	if (prefix(cmd, "type") || prefix(cmd, "match"))
156		return(dsmatchselect(args, DS_SELECT_ONLY, maxshowdevs, s1));
157	if (prefix(cmd, "refresh")) {
158		retval = selectdevs(&dev_select, &num_selected, &num_selections,
159				    &select_generation, generation,
160				    s1->dinfo->devices, num_devices,
161				    (last_type == DS_MATCHTYPE_PATTERN) ?
162					matches : NULL,
163				    (last_type == DS_MATCHTYPE_PATTERN) ?
164					num_matches : 0,
165				    (last_type == DS_MATCHTYPE_SPEC) ?
166					specified_devices : NULL,
167				    (last_type == DS_MATCHTYPE_SPEC) ?
168					num_devices_specified : 0,
169				    (last_type == DS_MATCHTYPE_NONE) ?
170					DS_SELECT_ADD : DS_SELECT_ADDONLY,
171				    maxshowdevs, 0);
172		if (retval == -1) {
173			warnx("%s", devstat_errbuf);
174			return(0);
175		} else if (retval == 1)
176			return(2);
177	}
178	if (prefix(cmd, "drives")) {
179		register int i;
180		move(CMDLINE, 0);
181		clrtoeol();
182		for (i = 0; i < num_devices; i++) {
183			printw("%s%d ", s1->dinfo->devices[i].device_name,
184			       s1->dinfo->devices[i].unit_number);
185		}
186		return(1);
187	}
188	return(0);
189}
190
191static int
192dsmatchselect(char *args, devstat_select_mode select_mode, int maxshowdevs,
193	      struct statinfo *s1)
194{
195	char **tempstr;
196	char *tstr[100];
197	int num_args = 0;
198	register int i;
199	int retval = 0;
200
201	/*
202	 * Break the (pipe delimited) input string out into separate
203	 * strings.
204	 */
205	for (tempstr = tstr, num_args  = 0;
206	     (*tempstr = strsep(&args, "|")) != NULL && (num_args < 100);
207	     num_args++)
208		if (**tempstr != '\0')
209			if (++tempstr >= &tstr[100])
210				break;
211
212	if (num_args > 99) {
213		warnx("dsmatchselect: too many match arguments");
214		return(0);
215	}
216
217	/*
218	 * If we've gone through the matching code before, clean out
219	 * previously used memory.
220	 */
221	if (num_matches > 0) {
222		free(matches);
223		matches = NULL;
224		num_matches = 0;
225	}
226
227	for (i = 0; i < num_args; i++) {
228		if (buildmatch(tstr[i], &matches, &num_matches) != 0) {
229			warnx("%s", devstat_errbuf);
230			return(0);
231		}
232	}
233	if (num_args > 0) {
234
235		last_type = DS_MATCHTYPE_PATTERN;
236
237		retval = selectdevs(&dev_select, &num_selected, &num_selections,
238				    &select_generation, generation,
239				    s1->dinfo->devices, num_devices, matches,
240				    num_matches, NULL, 0, select_mode,
241				    maxshowdevs, 0);
242		if (retval == -1)
243			err(1, "device selection error");
244		else if (retval == 1)
245			return(2);
246	}
247	return(1);
248}
249
250static int
251dsselect(char *args, devstat_select_mode select_mode, int maxshowdevs,
252	 struct statinfo *s1)
253{
254	register char *cp;
255	register int i;
256	int retval = 0;
257	char *index();
258
259	/*
260	 * If we've gone through this code before, free previously
261	 * allocated resources.
262	 */
263	if (num_devices_specified > 0) {
264		for (i = 0; i < num_devices_specified; i++)
265			free(specified_devices[i]);
266		free(specified_devices);
267		specified_devices = NULL;
268		num_devices_specified = 0;
269	}
270
271	/* do an initial malloc */
272	specified_devices = (char **)malloc(sizeof(char *));
273
274	cp = index(args, '\n');
275	if (cp)
276		*cp = '\0';
277	for (;;) {
278		for (cp = args; *cp && isspace(*cp); cp++)
279			;
280		args = cp;
281		for (; *cp && !isspace(*cp); cp++)
282			;
283		if (*cp)
284			*cp++ = '\0';
285		if (cp - args == 0)
286			break;
287		for (i = 0; i < num_devices; i++) {
288			char tmpstr[80];
289
290			sprintf(tmpstr, "%s%d", dev_select[i].device_name,
291				dev_select[i].unit_number);
292			if (strcmp(args, tmpstr) == 0) {
293
294				num_devices_specified++;
295
296				specified_devices =(char **)realloc(
297						specified_devices,
298						sizeof(char *) *
299						num_devices_specified);
300				specified_devices[num_devices_specified -1]=
301					strdup(args);
302
303				break;
304			}
305		}
306		if (i >= num_devices)
307			error("%s: unknown drive", args);
308		args = cp;
309	}
310
311	if (num_devices_specified > 0) {
312		last_type = DS_MATCHTYPE_SPEC;
313
314		retval = selectdevs(&dev_select, &num_selected, &num_selections,
315				    &select_generation, generation,
316				    s1->dinfo->devices, num_devices, NULL, 0,
317				    specified_devices, num_devices_specified,
318				    select_mode, maxshowdevs, 0);
319		if (retval == -1)
320			err(1, "%s", devstat_errbuf);
321		else if (retval == 1)
322			return(2);
323	}
324	return(1);
325}
326