File: arg.c

package info (click to toggle)
lslk 1.29-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 516 kB
  • ctags: 758
  • sloc: ansic: 5,537; sh: 856; makefile: 479
file content (319 lines) | stat: -rw-r--r-- 7,349 bytes parent folder | download | duplicates (4)
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
/*
 * arg.c -- argument processing functions for lslk
 *
 * See the LSLK_VERSION #define in ./lslk.h for the current revision
 * number.  If no lslk.h has yet been generated, see ./version.
 *
 * V. Abell
 * Purdue University Computing Center
 */


/*
 * Copyright 1996 Purdue Research Foundation, West Lafayette, Indiana
 * 47907.  All rights reserved.
 *
 * Written by Victor A. Abell.
 *
 * This software is not subject to any license of the American Telephone
 * and Telegraph Company or the Regents of the University of California.
 *
 * Permission is granted to anyone to use this software for any purpose on
 * any computer system, and to alter it and redistribute it freely, subject
 * to the following restrictions:
 *
 * 1. Neither the authors nor Purdue University are responsible for any
 *    consequences of the use of this software.
 *
 * 2. The origin of this software must not be misrepresented, either by
 *    explicit claim or by omission.  Credit to the authors and Purdue
 *    University must appear in documentation and sources.
 *
 * 3. Altered versions must be plainly marked as such, and must not be
 *    misrepresented as being the original software.
 *
 * 4. This notice may not be removed or altered.
 */
#ifndef lint
static char copyright[] =
"@(#) Copyright 1996 Purdue Research Foundation.\nAll rights reserved.\n";
static char *rcsid = "$Id: arg.c,v 1.6 99/11/10 14:55:21 abe Exp $";
#endif
 

#include "lslk.h"
#include "version.h"


/*
 * Local prototypes
 */

_PROTOTYPE(static char *isnullstr,(char *s));


/*
 * enter_nwad() -- enter network address selections
 */

int
enter_nwad(opt)
	char *opt;			/* option characters */
{
	unsigned long a;
	char *hn;
	size_t len;
	static int na = 0;

	if (opt == NULL) {
	    (void) fprintf(stderr, "%s: no network address specified\n",
		Pn);
	    return(1);
	}
/*
 * Process the Internet addresses (1.2.3.4) or host name.
 */
	if (isdigit(*opt)) {
	    if ((a = inet_addr(opt)) == -1) {
		(void) fprintf(stderr, "%s: invalid network address: %s\n",
		    Pn, opt);
		return(1);
	    }
	    hn = (char *)NULL;
	} else {
	    hn = opt;
	    a = 0l;
	}
/*
 * Allocate network address table space, as required.
 */
	if (NNwad >= na) {
	    na += NWADAU;
	    len = (size_t)(na * sizeof(struct nwad));
	    if (Nwad)
		Nwad = (struct nwad *)realloc(Nwad, len);
	    else
		Nwad = (struct nwad *)malloc(len);
	    if (!Nwad) {
		(void) fprintf(stderr,
		    "%s: no space for %d network addresses: %s\n", Pn, na, opt);
		Exit(1);
	    }
	}
/*
 * Allocate host name space, as required.
 */
	if (hn) {
	    if ((Nwad[NNwad].hn = (char *)malloc(strlen(hn)+1)) == NULL) {
		(void) fprintf(stderr, "%s: no space for host name: %s\n",
		    Pn, hn);
		Exit(1);
	    }
	    (void) strcpy(Nwad[NNwad].hn, hn);
	} else
	    Nwad[NNwad].hn = (char *)NULL;
	Nwad[NNwad].chn = (char *)NULL;
/*
 * Store network address.
 */
	Nwad[NNwad++].na = a;
	return(0);
}


/*
 * enter_pid() -- enter Process ID selection numbers
 */

int
enter_pid(opt)
	char *opt;			/* option characters */
{
	char *cp;
	int i;
	size_t len;
	static int na = 0;
	unsigned long p;

	if (opt == NULL) {
	    (void) fprintf(stderr, "%s: no PIDs specified\n", Pn);
	    return(1);
	}
/*
 * Convert and store the list of PIDs.
 */
	for (cp = opt; *cp;) {

	/*
	 * Convert and store the next PID.
	 */
	    for (p = 0l; *cp && *cp != ','; *cp++) {
		if (!isdigit(*cp)) {
		    (void) fprintf(stderr, "%s: illegal PID: %s\n", Pn, opt);
		    return(1);
		}
		p = (p * 10) + *cp - '0';
	    }
	    if (*cp)
		cp++;
	/*
	 * Don't enter duplicates.
	 */
	    for (i = 0; i < NPid; i++) {
		if (Pid[i] == p)
		    break;
	    }
	    if (i < NPid)
		continue;
	/*
	 * Allocate Pid table space, as required.
	 */
	    if (NPid >= na) {
		na += PIDAU;
		len = (size_t)(na * sizeof(pid_t));
		if (Pid)
		    Pid = (unsigned long *)realloc(Pid, len);
		else
		    Pid = (unsigned long *)malloc(len);
		if (!Pid) {
		    (void) fprintf(stderr,
			"%s: no space for %d PID numbers\n",
			Pn, na);
		}
	    }
	/*
	 * Store PID.
	 */
	    Pid[NPid++] = p;
	}
	return(0);
}


/*
 * isnullstr() -- is it a null string?
 */

static char *
isnullstr(s)
	char *s;			/* string pointer */
{
	if (!s)
		return((char *)NULL);
	while (*s) {
		if (*s != ' ')
			return(s);
		s++;
	}
	return((char *)NULL);
}


/*
 * usage() -- display usage and exit
 */

void
usage(xv)
	int xv;				/* exit value */
{
	char *cp, *cp1, *cp2;

	if (Ohelp || xv) {

	/*
	 * Display basic usage in response to -h or error.
	 */
	  (void) fprintf(stderr,
	    "%s %s usage: [-abhnOvw] [-p pid] [-i netaddr] %s[-S tm] [paths]\n",
	    Pn, LSLK_VERSION,

#if	defined(HASKOPT)
	    "[-k nlist] "
#else	/* !defined(HASKOPT) */
	    ""
#endif	/* defined(HASKOPT) */

	    );
	}
	if (Ohelp) {

	/*
	 * Display extensive usage in response to -h.
	 */
	  (void) fprintf(stderr,
	    "  -a          AND selection options\n");
	  (void) fprintf(stderr,
	    "  -b          avoid kernel blocks\n");
	  (void) fprintf(stderr,
	    "  -h          display help (this output)\n");
	  (void) fprintf(stderr,
	    "  -i netaddr  list locks from specified host name or address\n");
	  (void) fprintf(stderr,
	    "              (specify more netaddr's with more -i options)\n");

#if	defined(HASKOPT)
	  (void) fprintf(stderr,
	    "  -k nlist    set kernel name list path (default = %s)\n",
	    Nmlst ? Nmlst

# if	defined(N_UNIX)
	          : N_UNIX
# else	/* !defined(N_UNIX) */
	          : (Nmlst = get_nlist_path(1)) ? Nmlst
						: "not yet determined"
# endif	/* defined(N_UNIX) */
	    );
#endif	/* defined(HASKOPT) */

	  (void) fprintf(stderr,
	    "  -O          avoid fork overhead *RISKY*\n");
	  (void) fprintf(stderr,
	    "  -S tm       readlink()/stat() timeout (default = %d)\n",
	    TMLIMIT);
	  (void) fprintf(stderr,
	    "  -p pid      list locks for comma-separated PID number list\n");
	  (void) fprintf(stderr,
	    "  -n          don't convert host names to addresses\n");
	  (void) fprintf(stderr,
	    "  -v          display version information\n");
	  (void) fprintf(stderr,
	    "  -w          suppress warning messages\n");
	  (void) fprintf(stderr,
	    "  paths       list locks on specified file path(s)\n");
	}
	if (Overs) {

	/*
	 * Display version information in response to -v.
	 */
	  (void) fprintf(stderr, "%s version information:\n", Pn);
	  (void) fprintf(stderr, "\trevision: %s\n", LSLK_VERSION);
	  if ((cp = isnullstr(LSLK_CCDATE)))
	    (void) fprintf(stderr, "\tconstructed: %s\n", cp);
	  cp = isnullstr(LSLK_HOST);
	  if (!(cp1 = isnullstr(LSLK_LOGNAME)))
	  cp1 = isnullstr(LSLK_USER);
	  if (cp || cp1) {
	    if (cp && cp1)
	      cp2 = "by and on";
	    else if (cp)
	      cp2 = "on";
	    else
	      cp2 = "by";
	    (void) fprintf(stderr, "\tconstructed %s: %s%s%s\n",
	      cp2, cp1 ? cp1 : "", cp1 ? "@" : "", cp  ? cp  : "");
	  }
	  if ((cp = isnullstr(LSLK_CC)))
	    (void) fprintf(stderr, "\tcompiler: %s\n", cp);
	  if ((cp = isnullstr(LSLK_CCV)))
	    (void) fprintf(stderr, "\tcompiler version: %s\n", cp);
	  if ((cp = isnullstr(LSLK_CCFLAGS)))
	    (void) fprintf(stderr, "\tcompiler flags: %s\n", cp);
	  if ((cp = isnullstr(LSLK_LDFLAGS)))
	    (void) fprintf(stderr, "\tloader flags: %s\n", cp);
	  if ((cp = isnullstr(LSLK_SYSINFO)))
	    (void) fprintf(stderr, "\tsystem info: %s\n", cp);
	}
	Exit(xv);
}