1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2005 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
/* All Rights Reserved */
#pragma ident "%Z%%M% %I% %E% SMI"
/*
* Implements the main body of the "getdgrp" command.
*/
#include <sys/types.h>
#include <stdio.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <devmgmt.h>
#include <devtab.h>
#include <fmtmsg.h>
/*
* Local Definitions
* TRUE Boolean TRUE value
* FALSE Boolean FALSE value
* NULL Null address
*/
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
/*
* Exit codes:
* EX_OK All's well that ends well
* EX_ERROR Some other error occurred
* EX_DTAB Device table couldn't be opened
* EX_DGRP Device-group table couldn't be open.
*/
#define EX_OK 0
#define EX_ERROR 1
#define EX_DTAB 2
#define EX_DGRP 2
/*
* Messages:
* M_USAGE Command usage error
* M_ERROR Some unexpected error
* M_DEVTAB Device table couldn't be opened
* M_DGROUP Device-group table couldn't be opened
*/
#define M_USAGE "usage: getdgrp [-ael] [criterion [...]] [dgroup [...]]"
#define M_ERROR "Internal error, errno=%d"
#define M_DEVTAB "Cannot open the device table: %s"
#define M_DGROUP "Cannot open the device-group table: %s"
/*
* Internal References
* buildcriterialist() Builds a list of the criteria on the
* command line
* buildgrouplist() Builds a list of the device-groups mentioned
* on the command line
*/
static char **buildcriterialist(); /* Builds criteria list from command line */
static char **builddgrouplist(); /* Builds dgroup list from command line */
/*
* Macros
* stdmsg(r,l,s,t) Generate a standard message
* r Recoverability flag
* l Standard label
* s Severity
* t Text
* isacriterion(p) Returns TRUE if *p is a criterion, FALSE otherwise
*/
#define stdmsg(r,l,s,t) (void) fmtmsg(MM_PRINT|MM_UTIL|r,l,s,t,MM_NULLACT,MM_NULLTAG)
#define isacriterion(p) (strchr(*arglist,'=')||strchr(*arglist,':'))
/*
* Static Variables
* lbl Buffer for standard message label
* txt Buffer for standard message text
*/
static char lbl[MM_MXLABELLN+1];
static char txt[MM_MXTXTLN+1];
/*
* getdgrp [-ael] [criterion [...]] [dgroup [...]]
*
* This function gets the device groups that contain as members devices
* that match the given criteria.
*
* Options:
* -a A device must meet all criteria before the device-group in
* which it is a member can be selected for inclusion in the
* generated list. If this option is missing, a device must
* meet at least one criterion before it's group can be
* selected. This option has no affect if there are no criterion
* on the command-line.
* -e The list of device groups specifies groups to exclude from
* the generated list. If this option is omitted, the list
* of groups is the set of groups that can be selected. This
* option has no effect if there are no device-groups on the
* command-line.
* -l List all device groups, even those that have no valid
* members (this option has no effect if criterion are specified
*
* Arguments:
* criterion A device criterion of the form <attr><op><val> where
* <attr> is the name of an attribute, <op> is "=", "!=",
* ":", or "!:" for "is equal to", "is not equal to",
* "is defined," or "is not defined." <val> is the value
* that the attribute must be equal to or not equal to.
* (<val> must be "*" if <op> is ":" or "!:").
* dgroup A device group that is to be exclude selected for the
* generated list or excluded from the the generated
* list.
*
* Exit values:
* 0 Success
* 1 Usage or an internal error
* 2 The device table or the device-group table could not be
* opened for reading
*/
int
main(int argc, char **argv)
{
/*
* Automatic data
*/
char **arglist; /* List of arguments (subset of argv) */
char **criterialist; /* List of criteria */
char **dgrouplist; /* List of device groups to search or ignore */
char **fitgrouplist; /* List of device groups that fit criteria */
char *cmdname; /* Simple command name */
char *dgroup; /* Pointer to device group name in list */
char *filename; /* Pointer to filename in "error" */
int exitcode; /* Value to return to the caller */
int sev; /* Message severity */
int optchar; /* Option character (returned by getopt()) */
int andflag; /* TRUE if anding criteria, FALSE if or'ed */
int excludeflag; /* TRUE if the dgroups list those to exclude */
int allflag; /* TRUE if all device grps are to be displayed */
int options; /* Options to pass to getdgrp() */
int usageerr; /* TRUE if syntax error */
/* Build the message label from the (simple) command name */
if (cmdname = strrchr(argv[0], '/')) cmdname++;
else cmdname = argv[0];
(void) strlcat(strcpy(lbl, "UX:"), cmdname, sizeof(lbl));
/* Only write the text-component of messages (this goes away in SVR4.1) */
(void) putenv("MSGVERB=text");
/*
* Parse the command line:
* - Options
* - Selection criteria
* - Device groups to include or exclude
*/
/*
* Extract options from the command line
*/
/* Initializations */
andflag = FALSE; /* No -a */
excludeflag = FALSE; /* No -e */
allflag = FALSE; /* No -l */
usageerr = FALSE; /* No errors yet */
/*
* Loop until all of the command line options have been parced
*/
opterr = FALSE; /* Don't let getopt() write messages */
while ((optchar = getopt(argc, argv, "ael")) != EOF) switch (optchar) {
/* -a List device groups that fit all of the criteria listed */
case 'a':
if (andflag) usageerr = TRUE;
else andflag = TRUE;
break;
/* -e Exclude those device groups mentioned on the command line */
case 'e':
if (excludeflag) usageerr = TRUE;
else excludeflag = TRUE;
break;
/* -l List all device groups (if no criteria is specified) */
case 'l':
if (allflag) usageerr = TRUE;
else allflag = TRUE;
break;
/* Default case -- command usage error */
case '?':
default:
usageerr = TRUE;
break;
}
/* If there is a usage error, write an appropriate message and exit */
if (usageerr) {
stdmsg(MM_NRECOV, lbl, MM_ERROR, M_USAGE);
exit(EX_ERROR);
}
/* Open the device file (if there's one to be opened) */
if (!_opendevtab("r")) {
if (filename = _devtabpath()) {
(void) snprintf(txt, sizeof(txt), M_DEVTAB, filename);
exitcode = EX_DTAB;
sev = MM_ERROR;
} else {
(void) sprintf(txt, M_ERROR, errno);
exitcode = EX_ERROR;
sev = MM_HALT;
}
stdmsg(MM_NRECOV, lbl, sev, txt);
exit(exitcode);
}
/* Open the device file (if there's one to be opened) */
if (!_opendgrptab("r")) {
if (filename = _dgrptabpath()) {
(void) snprintf(txt, sizeof(txt), M_DGROUP, filename);
exitcode = EX_DGRP;
sev = MM_ERROR;
} else {
(void) sprintf(txt, M_ERROR, errno);
exitcode = EX_ERROR;
sev = MM_HALT;
}
stdmsg(MM_NRECOV, lbl, sev, txt);
exit(exitcode);
}
/* Build the list of criteria and device groups */
arglist = argv + optind;
criterialist = buildcriterialist(arglist);
dgrouplist = builddgrouplist(arglist);
options = (excludeflag ? DTAB_EXCLUDEFLAG : 0) |
(andflag ? DTAB_ANDCRITERIA : 0) |
(allflag ? DTAB_LISTALL : 0) ;
/*
* Get the list of device groups that meets the criteria requested.
* If we got a list (that might be empty), write that list to the
* standard output file (stdout).
*/
exitcode = EX_OK;
if (!(fitgrouplist = getdgrp(dgrouplist, criterialist, options))) {
exitcode = EX_ERROR;
}
else for (dgroup = *fitgrouplist++ ; dgroup ; dgroup = *fitgrouplist++)
(void) puts(dgroup);
/* Finished */
return(exitcode);
}
/*
* char **buildcriterialist(arglist)
* char **arglist
*
* This function builds a list of criteria descriptions from the
* list of arguments given. The list returned is in malloc()ed
* space.
*
* Arguments:
* arglist The address of the first element in the list
* of arguments (possibly) containing criterion
*
* Returns: char **
* A pointer to the first element in the list of criterion.
* If there was a problem, the function returns (char **) NULL.
* If there are no criteria in the list, the function returns
* an empty list.
*/
static char **
buildcriterialist(arglist)
char **arglist; /* Pointer to the list of argument pointers */
{
/*
* Automatic data
*/
char **pp; /* Pointer to a criteria */
void *allocbuf; /* Pointer to the allocated data */
int ncriteria; /* Number of criteria found */
/*
* Search the argument list, looking for the end of the list or
* the first thing that's not a criteria. (A criteria is a
* character-string that contains a colon (':') or an equal-sign ('=')
*/
pp = arglist;
ncriteria = 1;
while (*pp && (strchr(*pp, '=') || strchr(*pp, ':'))) {
ncriteria++;
pp++;
}
/* Allocate space for the list of criteria pointers */
if (allocbuf = malloc(ncriteria*sizeof(char **))) {
/* Build the list of criteria arguments */
pp = (char **) allocbuf;
while ((*arglist != (char *) NULL) && isacriterion(*arglist)) *pp++ = *arglist++;
*pp = (char *) NULL;
}
return ((char **) allocbuf);
}
/*
* char **builddgrouplist(arglist)
* char **arglist
*
* This function returns a pointer to the first element in a list of
* device-groups (i.e. not criteria) specified in the list of arguments
* whose first element is pointed to by <arglist>.
*
* Arguments:
* arglist The address of the first element in the list of
* arguments to be searched for non-criteria
*
* Returns: char **
* The address of the first item in the list of arguments that are
* not criteria. If none, the function returns a pointer to a
* null list.
*
* Note:
* - The current implementation returns a pointer to an element in
* <arglist>.
*/
static char **
builddgrouplist(arglist)
char **arglist; /* First item in the list of arguments */
{
/*
* Automatic data
*/
/*
* Search the argument list, looking for the end of the list or
* the first thing that's not a criteria. It is the first device
* group in the list of device groups (if any).
*/
while (*arglist && isacriterion(*arglist)) arglist++;
/* Return a pointer to the argument list. */
return(arglist);
}
|