xref: /freebsd/usr.sbin/cron/lib/entry.c (revision 2f513db7)
1 /* Copyright 1988,1990,1993,1994 by Paul Vixie
2  * All rights reserved
3  *
4  * Distribute freely, except: don't remove my name from the source or
5  * documentation (don't take credit for my work), mark your changes (don't
6  * get me blamed for your possible bugs), don't alter or remove this
7  * notice.  May be sold if buildable source is provided to buyer.  No
8  * warrantee of any kind, express or implied, is included with this
9  * software; use at your own risk, responsibility for damages (if any) to
10  * anyone resulting from the use of this software rests entirely with the
11  * user.
12  *
13  * Send bug reports, bug fixes, enhancements, requests, flames, etc., and
14  * I'll try to keep a version up to date.  I can be reached as follows:
15  * Paul Vixie          <paul@vix.com>          uunet!decwrl!vixie!paul
16  */
17 
18 #if !defined(lint) && !defined(LINT)
19 static const char rcsid[] =
20   "$FreeBSD$";
21 #endif
22 
23 /* vix 26jan87 [RCS'd; rest of log is in RCS file]
24  * vix 01jan87 [added line-level error recovery]
25  * vix 31dec86 [added /step to the from-to range, per bob@acornrc]
26  * vix 30dec86 [written]
27  */
28 
29 
30 #include "cron.h"
31 #include <grp.h>
32 #ifdef LOGIN_CAP
33 #include <login_cap.h>
34 #endif
35 
36 typedef	enum ecode {
37 	e_none, e_minute, e_hour, e_dom, e_month, e_dow,
38 	e_cmd, e_timespec, e_username, e_group, e_option,
39 	e_mem
40 #ifdef LOGIN_CAP
41 	, e_class
42 #endif
43 } ecode_e;
44 
45 static char	get_list(bitstr_t *, int, int, char *[], int, FILE *),
46 		get_range(bitstr_t *, int, int, char *[], int, FILE *),
47 		get_number(int *, int, char *[], int, FILE *);
48 static int	set_element(bitstr_t *, int, int, int);
49 
50 static char *ecodes[] =
51 	{
52 		"no error",
53 		"bad minute",
54 		"bad hour",
55 		"bad day-of-month",
56 		"bad month",
57 		"bad day-of-week",
58 		"bad command",
59 		"bad time specifier",
60 		"bad username",
61 		"bad group name",
62 		"bad option",
63 		"out of memory",
64 #ifdef LOGIN_CAP
65 		"bad class name",
66 #endif
67 	};
68 
69 
70 void
71 free_entry(e)
72 	entry	*e;
73 {
74 #ifdef LOGIN_CAP
75 	if (e->class != NULL)
76 		free(e->class);
77 #endif
78 	if (e->cmd != NULL)
79 		free(e->cmd);
80 	if (e->envp != NULL)
81 		env_free(e->envp);
82 	free(e);
83 }
84 
85 
86 /* return NULL if eof or syntax error occurs;
87  * otherwise return a pointer to a new entry.
88  */
89 entry *
90 load_entry(file, error_func, pw, envp)
91 	FILE		*file;
92 	void		(*error_func)(char *);
93 	struct passwd	*pw;
94 	char		**envp;
95 {
96 	/* this function reads one crontab entry -- the next -- from a file.
97 	 * it skips any leading blank lines, ignores comments, and returns
98 	 * EOF if for any reason the entry can't be read and parsed.
99 	 *
100 	 * the entry is also parsed here.
101 	 *
102 	 * syntax:
103 	 *   user crontab:
104 	 *	minutes hours doms months dows cmd\n
105 	 *   system crontab (/etc/crontab):
106 	 *	minutes hours doms months dows USERNAME cmd\n
107 	 */
108 
109 	ecode_e	ecode = e_none;
110 	entry	*e;
111 	int	ch;
112 	char	cmd[MAX_COMMAND];
113 	char	envstr[MAX_ENVSTR];
114 	char	**prev_env;
115 
116 	Debug(DPARS, ("load_entry()...about to eat comments\n"))
117 
118 	skip_comments(file);
119 
120 	ch = get_char(file);
121 	if (ch == EOF)
122 		return NULL;
123 
124 	/* ch is now the first useful character of a useful line.
125 	 * it may be an @special or it may be the first character
126 	 * of a list of minutes.
127 	 */
128 
129 	e = (entry *) calloc(sizeof(entry), sizeof(char));
130 
131 	if (e == NULL) {
132 		warn("load_entry: calloc failed");
133 		return NULL;
134 	}
135 
136 	if (ch == '@') {
137 		long interval;
138 		char *endptr;
139 
140 		/* all of these should be flagged and load-limited; i.e.,
141 		 * instead of @hourly meaning "0 * * * *" it should mean
142 		 * "close to the front of every hour but not 'til the
143 		 * system load is low".  Problems are: how do you know
144 		 * what "low" means? (save me from /etc/cron.conf!) and:
145 		 * how to guarantee low variance (how low is low?), which
146 		 * means how to we run roughly every hour -- seems like
147 		 * we need to keep a history or let the first hour set
148 		 * the schedule, which means we aren't load-limited
149 		 * anymore.  too much for my overloaded brain. (vix, jan90)
150 		 * HINT
151 		 */
152 		Debug(DPARS, ("load_entry()...about to test shortcuts\n"))
153 		ch = get_string(cmd, MAX_COMMAND, file, " \t\n");
154 		if (!strcmp("reboot", cmd)) {
155 			Debug(DPARS, ("load_entry()...reboot shortcut\n"))
156 			e->flags |= WHEN_REBOOT;
157 		} else if (!strcmp("yearly", cmd) || !strcmp("annually", cmd)){
158 			Debug(DPARS, ("load_entry()...yearly shortcut\n"))
159 			bit_set(e->second, 0);
160 			bit_set(e->minute, 0);
161 			bit_set(e->hour, 0);
162 			bit_set(e->dom, 0);
163 			bit_set(e->month, 0);
164 			bit_nset(e->dow, 0, (LAST_DOW-FIRST_DOW+1));
165 			e->flags |= DOW_STAR;
166 		} else if (!strcmp("monthly", cmd)) {
167 			Debug(DPARS, ("load_entry()...monthly shortcut\n"))
168 			bit_set(e->second, 0);
169 			bit_set(e->minute, 0);
170 			bit_set(e->hour, 0);
171 			bit_set(e->dom, 0);
172 			bit_nset(e->month, 0, (LAST_MONTH-FIRST_MONTH+1));
173 			bit_nset(e->dow, 0, (LAST_DOW-FIRST_DOW+1));
174 			e->flags |= DOW_STAR;
175 		} else if (!strcmp("weekly", cmd)) {
176 			Debug(DPARS, ("load_entry()...weekly shortcut\n"))
177 			bit_set(e->second, 0);
178 			bit_set(e->minute, 0);
179 			bit_set(e->hour, 0);
180 			bit_nset(e->dom, 0, (LAST_DOM-FIRST_DOM+1));
181 			e->flags |= DOM_STAR;
182 			bit_nset(e->month, 0, (LAST_MONTH-FIRST_MONTH+1));
183 			bit_set(e->dow, 0);
184 		} else if (!strcmp("daily", cmd) || !strcmp("midnight", cmd)) {
185 			Debug(DPARS, ("load_entry()...daily shortcut\n"))
186 			bit_set(e->second, 0);
187 			bit_set(e->minute, 0);
188 			bit_set(e->hour, 0);
189 			bit_nset(e->dom, 0, (LAST_DOM-FIRST_DOM+1));
190 			bit_nset(e->month, 0, (LAST_MONTH-FIRST_MONTH+1));
191 			bit_nset(e->dow, 0, (LAST_DOW-FIRST_DOW+1));
192 		} else if (!strcmp("hourly", cmd)) {
193 			Debug(DPARS, ("load_entry()...hourly shortcut\n"))
194 			bit_set(e->second, 0);
195 			bit_set(e->minute, 0);
196 			bit_nset(e->hour, 0, (LAST_HOUR-FIRST_HOUR+1));
197 			bit_nset(e->dom, 0, (LAST_DOM-FIRST_DOM+1));
198 			bit_nset(e->month, 0, (LAST_MONTH-FIRST_MONTH+1));
199 			bit_nset(e->dow, 0, (LAST_DOW-FIRST_DOW+1));
200 		} else if (!strcmp("every_minute", cmd)) {
201 			Debug(DPARS, ("load_entry()...every_minute shortcut\n"))
202 			bit_set(e->second, 0);
203 			bit_nset(e->minute, 0, (LAST_MINUTE-FIRST_MINUTE+1));
204 			bit_nset(e->hour, 0, (LAST_HOUR-FIRST_HOUR+1));
205 			bit_nset(e->dom, 0, (LAST_DOM-FIRST_DOM+1));
206 			bit_nset(e->month, 0, (LAST_MONTH-FIRST_MONTH+1));
207 			bit_nset(e->dow, 0, (LAST_DOW-FIRST_DOW+1));
208 		} else if (!strcmp("every_second", cmd)) {
209 			Debug(DPARS, ("load_entry()...every_second shortcut\n"))
210 			e->flags |= SEC_RES;
211 			bit_nset(e->second, 0, (LAST_SECOND-FIRST_SECOND+1));
212 			bit_nset(e->minute, 0, (LAST_MINUTE-FIRST_MINUTE+1));
213 			bit_nset(e->hour, 0, (LAST_HOUR-FIRST_HOUR+1));
214 			bit_nset(e->dom, 0, (LAST_DOM-FIRST_DOM+1));
215 			bit_nset(e->month, 0, (LAST_MONTH-FIRST_MONTH+1));
216 			bit_nset(e->dow, 0, (LAST_DOW-FIRST_DOW+1));
217 		} else if (*cmd != '\0' &&
218 		    (interval = strtol(cmd, &endptr, 10)) > 0 &&
219 		    *endptr == '\0') {
220 			Debug(DPARS, ("load_entry()... %ld seconds "
221 			    "since last run\n", interval))
222 			e->interval = interval;
223 			e->flags = INTERVAL;
224 		} else {
225 			ecode = e_timespec;
226 			goto eof;
227 		}
228 		/* Advance past whitespace between shortcut and
229 		 * username/command.
230 		 */
231 		Skip_Blanks(ch, file);
232 		if (ch == EOF) {
233 			ecode = e_cmd;
234 			goto eof;
235 		}
236 	} else {
237 		Debug(DPARS, ("load_entry()...about to parse numerics\n"))
238 		bit_set(e->second, 0);
239 
240 		ch = get_list(e->minute, FIRST_MINUTE, LAST_MINUTE,
241 			      PPC_NULL, ch, file);
242 		if (ch == EOF) {
243 			ecode = e_minute;
244 			goto eof;
245 		}
246 
247 		/* hours
248 		 */
249 
250 		ch = get_list(e->hour, FIRST_HOUR, LAST_HOUR,
251 			      PPC_NULL, ch, file);
252 		if (ch == EOF) {
253 			ecode = e_hour;
254 			goto eof;
255 		}
256 
257 		/* DOM (days of month)
258 		 */
259 
260 		if (ch == '*')
261 			e->flags |= DOM_STAR;
262 		ch = get_list(e->dom, FIRST_DOM, LAST_DOM,
263 			      PPC_NULL, ch, file);
264 		if (ch == EOF) {
265 			ecode = e_dom;
266 			goto eof;
267 		}
268 
269 		/* month
270 		 */
271 
272 		ch = get_list(e->month, FIRST_MONTH, LAST_MONTH,
273 			      MonthNames, ch, file);
274 		if (ch == EOF) {
275 			ecode = e_month;
276 			goto eof;
277 		}
278 
279 		/* DOW (days of week)
280 		 */
281 
282 		if (ch == '*')
283 			e->flags |= DOW_STAR;
284 		ch = get_list(e->dow, FIRST_DOW, LAST_DOW,
285 			      DowNames, ch, file);
286 		if (ch == EOF) {
287 			ecode = e_dow;
288 			goto eof;
289 		}
290 	}
291 
292 	/* make sundays equivalent */
293 	if (bit_test(e->dow, 0) || bit_test(e->dow, 7)) {
294 		bit_set(e->dow, 0);
295 		bit_set(e->dow, 7);
296 	}
297 
298 	/* ch is the first character of a command, or a username */
299 	unget_char(ch, file);
300 
301 	if (!pw) {
302 		char		*username = cmd;	/* temp buffer */
303 		char            *s;
304 		struct group    *grp;
305 #ifdef LOGIN_CAP
306 		login_cap_t *lc;
307 #endif
308 
309 		Debug(DPARS, ("load_entry()...about to parse username\n"))
310 		ch = get_string(username, MAX_COMMAND, file, " \t");
311 
312 		Debug(DPARS, ("load_entry()...got %s\n",username))
313 		if (ch == EOF) {
314 			ecode = e_cmd;
315 			goto eof;
316 		}
317 
318 #ifdef LOGIN_CAP
319 		if ((s = strrchr(username, '/')) != NULL) {
320 			*s = '\0';
321 			e->class = strdup(s + 1);
322 			if (e->class == NULL)
323 				warn("strdup(\"%s\")", s + 1);
324 		} else {
325 			e->class = strdup(RESOURCE_RC);
326 			if (e->class == NULL)
327 				warn("strdup(\"%s\")", RESOURCE_RC);
328 		}
329 		if (e->class == NULL) {
330 			ecode = e_mem;
331 			goto eof;
332 		}
333 		if ((lc = login_getclass(e->class)) == NULL) {
334 			ecode = e_class;
335 			goto eof;
336 		}
337 		login_close(lc);
338 #endif
339 		grp = NULL;
340 		if ((s = strrchr(username, ':')) != NULL) {
341 			*s = '\0';
342 			if ((grp = getgrnam(s + 1)) == NULL) {
343 				ecode = e_group;
344 				goto eof;
345 			}
346 		}
347 
348 		pw = getpwnam(username);
349 		if (pw == NULL) {
350 			ecode = e_username;
351 			goto eof;
352 		}
353 		if (grp != NULL)
354 			pw->pw_gid = grp->gr_gid;
355 		Debug(DPARS, ("load_entry()...uid %d, gid %d\n",pw->pw_uid,pw->pw_gid))
356 #ifdef LOGIN_CAP
357 		Debug(DPARS, ("load_entry()...class %s\n",e->class))
358 #endif
359 	}
360 
361 #ifndef PAM	/* PAM takes care of account expiration by itself */
362 	if (pw->pw_expire && time(NULL) >= pw->pw_expire) {
363 		ecode = e_username;
364 		goto eof;
365 	}
366 #endif /* !PAM */
367 
368 	e->uid = pw->pw_uid;
369 	e->gid = pw->pw_gid;
370 
371 	/* copy and fix up environment.  some variables are just defaults and
372 	 * others are overrides.
373 	 */
374 	e->envp = env_copy(envp);
375 	if (e->envp == NULL) {
376 		warn("env_copy");
377 		ecode = e_mem;
378 		goto eof;
379 	}
380 	if (!env_get("SHELL", e->envp)) {
381 		prev_env = e->envp;
382 		sprintf(envstr, "SHELL=%s", _PATH_BSHELL);
383 		e->envp = env_set(e->envp, envstr);
384 		if (e->envp == NULL) {
385 			warn("env_set(%s)", envstr);
386 			env_free(prev_env);
387 			ecode = e_mem;
388 			goto eof;
389 		}
390 	}
391 	if (!env_get("HOME", e->envp)) {
392 		prev_env = e->envp;
393 		sprintf(envstr, "HOME=%s", pw->pw_dir);
394 		e->envp = env_set(e->envp, envstr);
395 		if (e->envp == NULL) {
396 			warn("env_set(%s)", envstr);
397 			env_free(prev_env);
398 			ecode = e_mem;
399 			goto eof;
400 		}
401 	}
402 	if (!env_get("PATH", e->envp)) {
403 		prev_env = e->envp;
404 		sprintf(envstr, "PATH=%s", _PATH_DEFPATH);
405 		e->envp = env_set(e->envp, envstr);
406 		if (e->envp == NULL) {
407 			warn("env_set(%s)", envstr);
408 			env_free(prev_env);
409 			ecode = e_mem;
410 			goto eof;
411 		}
412 	}
413 	prev_env = e->envp;
414 	sprintf(envstr, "%s=%s", "LOGNAME", pw->pw_name);
415 	e->envp = env_set(e->envp, envstr);
416 	if (e->envp == NULL) {
417 		warn("env_set(%s)", envstr);
418 		env_free(prev_env);
419 		ecode = e_mem;
420 		goto eof;
421 	}
422 #if defined(BSD)
423 	prev_env = e->envp;
424 	sprintf(envstr, "%s=%s", "USER", pw->pw_name);
425 	e->envp = env_set(e->envp, envstr);
426 	if (e->envp == NULL) {
427 		warn("env_set(%s)", envstr);
428 		env_free(prev_env);
429 		ecode = e_mem;
430 		goto eof;
431 	}
432 #endif
433 
434 	Debug(DPARS, ("load_entry()...checking for command options\n"))
435 
436 	ch = get_char(file);
437 
438 	while (ch == '-') {
439 		Debug(DPARS|DEXT, ("load_entry()...expecting option\n"))
440 		switch (ch = get_char(file)) {
441 		case 'n':
442 			Debug(DPARS|DEXT, ("load_entry()...got MAIL_WHEN_ERR ('n') option\n"))
443 			/* only allow the user to set the option once */
444 			if ((e->flags & MAIL_WHEN_ERR) == MAIL_WHEN_ERR) {
445 				Debug(DPARS|DEXT, ("load_entry()...duplicate MAIL_WHEN_ERR ('n') option\n"))
446 				ecode = e_option;
447 				goto eof;
448 			}
449 			e->flags |= MAIL_WHEN_ERR;
450 			break;
451 		case 'q':
452 			Debug(DPARS|DEXT, ("load_entry()...got DONT_LOG ('q') option\n"))
453 			/* only allow the user to set the option once */
454 			if ((e->flags & DONT_LOG) == DONT_LOG) {
455 				Debug(DPARS|DEXT, ("load_entry()...duplicate DONT_LOG ('q') option\n"))
456 				ecode = e_option;
457 				goto eof;
458 			}
459 			e->flags |= DONT_LOG;
460 			break;
461 		default:
462 			Debug(DPARS|DEXT, ("load_entry()...invalid option '%c'\n", ch))
463 			ecode = e_option;
464 			goto eof;
465 		}
466 		ch = get_char(file);
467 		if (ch!='\t' && ch!=' ') {
468 			ecode = e_option;
469 			goto eof;
470 		}
471 
472 		Skip_Blanks(ch, file)
473 		if (ch == EOF || ch == '\n') {
474 			ecode = e_cmd;
475 			goto eof;
476 		}
477 	}
478 
479 	unget_char(ch, file);
480 
481 	Debug(DPARS, ("load_entry()...about to parse command\n"))
482 
483 	/* Everything up to the next \n or EOF is part of the command...
484 	 * too bad we don't know in advance how long it will be, since we
485 	 * need to malloc a string for it... so, we limit it to MAX_COMMAND.
486 	 * XXX - should use realloc().
487 	 */
488 	ch = get_string(cmd, MAX_COMMAND, file, "\n");
489 
490 	/* a file without a \n before the EOF is rude, so we'll complain...
491 	 */
492 	if (ch == EOF) {
493 		ecode = e_cmd;
494 		goto eof;
495 	}
496 
497 	/* got the command in the 'cmd' string; save it in *e.
498 	 */
499 	e->cmd = strdup(cmd);
500 	if (e->cmd == NULL) {
501 		warn("strdup(\"%s\")", cmd);
502 		ecode = e_mem;
503 		goto eof;
504 	}
505 	Debug(DPARS, ("load_entry()...returning successfully\n"))
506 
507 	/* success, fini, return pointer to the entry we just created...
508 	 */
509 	return e;
510 
511  eof:
512 	free_entry(e);
513 	if (ecode != e_none && error_func)
514 		(*error_func)(ecodes[(int)ecode]);
515 	while (ch != EOF && ch != '\n')
516 		ch = get_char(file);
517 	return NULL;
518 }
519 
520 
521 static char
522 get_list(bits, low, high, names, ch, file)
523 	bitstr_t	*bits;		/* one bit per flag, default=FALSE */
524 	int		low, high;	/* bounds, impl. offset for bitstr */
525 	char		*names[];	/* NULL or *[] of names for these elements */
526 	int		ch;		/* current character being processed */
527 	FILE		*file;		/* file being read */
528 {
529 	register int	done;
530 
531 	/* we know that we point to a non-blank character here;
532 	 * must do a Skip_Blanks before we exit, so that the
533 	 * next call (or the code that picks up the cmd) can
534 	 * assume the same thing.
535 	 */
536 
537 	Debug(DPARS|DEXT, ("get_list()...entered\n"))
538 
539 	/* list = range {"," range}
540 	 */
541 
542 	/* clear the bit string, since the default is 'off'.
543 	 */
544 	bit_nclear(bits, 0, (high-low+1));
545 
546 	/* process all ranges
547 	 */
548 	done = FALSE;
549 	while (!done) {
550 		ch = get_range(bits, low, high, names, ch, file);
551 		if (ch == ',')
552 			ch = get_char(file);
553 		else
554 			done = TRUE;
555 	}
556 
557 	/* exiting.  skip to some blanks, then skip over the blanks.
558 	 */
559 	Skip_Nonblanks(ch, file)
560 	Skip_Blanks(ch, file)
561 
562 	Debug(DPARS|DEXT, ("get_list()...exiting w/ %02x\n", ch))
563 
564 	return ch;
565 }
566 
567 
568 static char
569 get_range(bits, low, high, names, ch, file)
570 	bitstr_t	*bits;		/* one bit per flag, default=FALSE */
571 	int		low, high;	/* bounds, impl. offset for bitstr */
572 	char		*names[];	/* NULL or names of elements */
573 	int		ch;		/* current character being processed */
574 	FILE		*file;		/* file being read */
575 {
576 	/* range = number | number "-" number [ "/" number ]
577 	 */
578 
579 	register int	i;
580 	auto int	num1, num2, num3;
581 
582 	Debug(DPARS|DEXT, ("get_range()...entering, exit won't show\n"))
583 
584 	if (ch == '*') {
585 		/* '*' means "first-last" but can still be modified by /step
586 		 */
587 		num1 = low;
588 		num2 = high;
589 		ch = get_char(file);
590 		if (ch == EOF)
591 			return EOF;
592 	} else {
593 		if (EOF == (ch = get_number(&num1, low, names, ch, file)))
594 			return EOF;
595 
596 		if (ch == '/')
597 			num2 = high;
598 		else if (ch != '-') {
599 			/* not a range, it's a single number.
600 			 */
601 			if (EOF == set_element(bits, low, high, num1))
602 				return EOF;
603 			return ch;
604 		} else {
605 			/* eat the dash
606 			 */
607 			ch = get_char(file);
608 			if (ch == EOF)
609 				return EOF;
610 
611 			/* get the number following the dash
612 			 */
613 			ch = get_number(&num2, low, names, ch, file);
614 			if (ch == EOF)
615 				return EOF;
616 		}
617 	}
618 
619 	/* check for step size
620 	 */
621 	if (ch == '/') {
622 		/* eat the slash
623 		 */
624 		ch = get_char(file);
625 		if (ch == EOF)
626 			return EOF;
627 
628 		/* get the step size -- note: we don't pass the
629 		 * names here, because the number is not an
630 		 * element id, it's a step size.  'low' is
631 		 * sent as a 0 since there is no offset either.
632 		 */
633 		ch = get_number(&num3, 0, PPC_NULL, ch, file);
634 		if (ch == EOF || num3 == 0)
635 			return EOF;
636 	} else {
637 		/* no step.  default==1.
638 		 */
639 		num3 = 1;
640 	}
641 
642 	/* range. set all elements from num1 to num2, stepping
643 	 * by num3.  (the step is a downward-compatible extension
644 	 * proposed conceptually by bob@acornrc, syntactically
645 	 * designed then implmented by paul vixie).
646 	 */
647 	for (i = num1;  i <= num2;  i += num3)
648 		if (EOF == set_element(bits, low, high, i))
649 			return EOF;
650 
651 	return ch;
652 }
653 
654 
655 static char
656 get_number(numptr, low, names, ch, file)
657 	int	*numptr;	/* where does the result go? */
658 	int	low;		/* offset applied to result if symbolic enum used */
659 	char	*names[];	/* symbolic names, if any, for enums */
660 	int	ch;		/* current character */
661 	FILE	*file;		/* source */
662 {
663 	char	temp[MAX_TEMPSTR], *pc;
664 	int	len, i, all_digits;
665 
666 	/* collect alphanumerics into our fixed-size temp array
667 	 */
668 	pc = temp;
669 	len = 0;
670 	all_digits = TRUE;
671 	while (isalnum(ch)) {
672 		if (++len >= MAX_TEMPSTR)
673 			return EOF;
674 
675 		*pc++ = ch;
676 
677 		if (!isdigit(ch))
678 			all_digits = FALSE;
679 
680 		ch = get_char(file);
681 	}
682 	*pc = '\0';
683 	if (len == 0)
684 	    return (EOF);
685 
686 	/* try to find the name in the name list
687 	 */
688 	if (names) {
689 		for (i = 0;  names[i] != NULL;  i++) {
690 			Debug(DPARS|DEXT,
691 				("get_num, compare(%s,%s)\n", names[i], temp))
692 			if (!strcasecmp(names[i], temp)) {
693 				*numptr = i+low;
694 				return ch;
695 			}
696 		}
697 	}
698 
699 	/* no name list specified, or there is one and our string isn't
700 	 * in it.  either way: if it's all digits, use its magnitude.
701 	 * otherwise, it's an error.
702 	 */
703 	if (all_digits) {
704 		*numptr = atoi(temp);
705 		return ch;
706 	}
707 
708 	return EOF;
709 }
710 
711 
712 static int
713 set_element(bits, low, high, number)
714 	bitstr_t	*bits; 		/* one bit per flag, default=FALSE */
715 	int		low;
716 	int		high;
717 	int		number;
718 {
719 	Debug(DPARS|DEXT, ("set_element(?,%d,%d,%d)\n", low, high, number))
720 
721 	if (number < low || number > high)
722 		return EOF;
723 
724 	bit_set(bits, (number-low));
725 	return OK;
726 }
727