Remove __P macros from src/usr.bin and src/usr.sbin.
[dragonfly.git] / usr.sbin / timed / timedc / timedc.c
1 /*-
2  * Copyright (c) 1985, 1993
3  *      The Regents of the University of California.  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. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  * @(#) Copyright (c) 1985, 1993 The Regents of the University of California.  All rights reserved.
34  * @(#)timedc.c 8.1 (Berkeley) 6/6/93
35  * $FreeBSD: src/usr.sbin/timed/timedc/timedc.c,v 1.3 1999/08/28 01:20:21 peter Exp $
36  * $DragonFly: src/usr.sbin/timed/timedc/timedc.c,v 1.4 2003/11/03 19:31:43 eirikn Exp $
37  */
38
39 #include "timedc.h"
40 #include <ctype.h>
41 #include <err.h>
42 #include <setjmp.h>
43 #include <signal.h>
44 #include <stdlib.h>
45 #include <strings.h>
46 #include <syslog.h>
47 #include <unistd.h>
48
49 int trace = 0;
50 FILE *fd = 0;
51 int     margc;
52 int     fromatty;
53 #define MAX_MARGV       20
54 char    *margv[MAX_MARGV];
55 char    cmdline[200];
56 jmp_buf toplevel;
57 static struct cmd *getcmd(char *);
58
59 int
60 main(argc, argv)
61         int argc;
62         char *argv[];
63 {
64         register struct cmd *c;
65
66         openlog("timedc", LOG_ODELAY, LOG_AUTH);
67
68         /*
69          * security dictates!
70          */
71         if (priv_resources() < 0)
72                 errx(1, "could not get privileged resources");
73         (void) setuid(getuid());
74
75         if (--argc > 0) {
76                 c = getcmd(*++argv);
77                 if (c == (struct cmd *)-1) {
78                         printf("?Ambiguous command\n");
79                         exit(1);
80                 }
81                 if (c == 0) {
82                         printf("?Invalid command\n");
83                         exit(1);
84                 }
85                 if (c->c_priv && getuid()) {
86                         printf("?Privileged command\n");
87                         exit(1);
88                 }
89                 (*c->c_handler)(argc, argv);
90                 exit(0);
91         }
92
93         fromatty = isatty(fileno(stdin));
94         if (setjmp(toplevel))
95                 putchar('\n');
96         (void) signal(SIGINT, intr);
97         for (;;) {
98                 if (fromatty) {
99                         printf("timedc> ");
100                         (void) fflush(stdout);
101                 }
102                 if (fgets(cmdline, sizeof(cmdline), stdin) == 0)
103                         quit();
104                 if (cmdline[0] == 0)
105                         break;
106                 makeargv();
107                 if (margv[0] == 0)
108                         continue;
109                 c = getcmd(margv[0]);
110                 if (c == (struct cmd *)-1) {
111                         printf("?Ambiguous command\n");
112                         continue;
113                 }
114                 if (c == 0) {
115                         printf("?Invalid command\n");
116                         continue;
117                 }
118                 if (c->c_priv && getuid()) {
119                         printf("?Privileged command\n");
120                         continue;
121                 }
122                 (*c->c_handler)(margc, margv);
123         }
124         return 0;
125 }
126
127 void
128 intr(signo)
129         int signo;
130 {
131         if (!fromatty)
132                 exit(0);
133         longjmp(toplevel, 1);
134 }
135
136
137 static struct cmd *
138 getcmd(name)
139         char *name;
140 {
141         register char *p, *q;
142         register struct cmd *c, *found;
143         register int nmatches, longest;
144         extern int NCMDS;
145
146         longest = 0;
147         nmatches = 0;
148         found = 0;
149         for (c = cmdtab; c < &cmdtab[NCMDS]; c++) {
150                 p = c->c_name;
151                 for (q = name; *q == *p++; q++)
152                         if (*q == 0)            /* exact match? */
153                                 return(c);
154                 if (!*q) {                      /* the name was a prefix */
155                         if (q - name > longest) {
156                                 longest = q - name;
157                                 nmatches = 1;
158                                 found = c;
159                         } else if (q - name == longest)
160                                 nmatches++;
161                 }
162         }
163         if (nmatches > 1)
164                 return((struct cmd *)-1);
165         return(found);
166 }
167
168 /*
169  * Slice a string up into argc/argv.
170  */
171 void
172 makeargv()
173 {
174         register char *cp;
175         register char **argp = margv;
176
177         margc = 0;
178         for (cp = cmdline; margv < MAX_MARGV -1 && *cp;) {
179                 while (isspace(*cp))
180                         cp++;
181                 if (*cp == '\0')
182                         break;
183                 *argp++ = cp;
184                 margc += 1;
185                 while (*cp != '\0' && !isspace(*cp))
186                         cp++;
187                 if (*cp == '\0')
188                         break;
189                 *cp++ = '\0';
190         }
191         *argp++ = 0;
192 }
193
194 #define HELPINDENT (sizeof ("directory"))
195
196 /*
197  * Help command.
198  */
199 void
200 help(argc, argv)
201         int argc;
202         char *argv[];
203 {
204         register struct cmd *c;
205
206         if (argc == 1) {
207                 register int i, j, w;
208                 int columns, width = 0, lines;
209                 extern int NCMDS;
210
211                 printf("Commands may be abbreviated.  Commands are:\n\n");
212                 for (c = cmdtab; c < &cmdtab[NCMDS]; c++) {
213                         int len = strlen(c->c_name);
214
215                         if (len > width)
216                                 width = len;
217                 }
218                 width = (width + 8) &~ 7;
219                 columns = 80 / width;
220                 if (columns == 0)
221                         columns = 1;
222                 lines = (NCMDS + columns - 1) / columns;
223                 for (i = 0; i < lines; i++) {
224                         for (j = 0; j < columns; j++) {
225                                 c = cmdtab + j * lines + i;
226                                 printf("%s", c->c_name);
227                                 if (c + lines >= &cmdtab[NCMDS]) {
228                                         printf("\n");
229                                         break;
230                                 }
231                                 w = strlen(c->c_name);
232                                 while (w < width) {
233                                         w = (w + 8) &~ 7;
234                                         putchar('\t');
235                                 }
236                         }
237                 }
238                 return;
239         }
240         while (--argc > 0) {
241                 register char *arg;
242                 arg = *++argv;
243                 c = getcmd(arg);
244                 if (c == (struct cmd *)-1)
245                         printf("?Ambiguous help command %s\n", arg);
246                 else if (c == (struct cmd *)0)
247                         printf("?Invalid help command %s\n", arg);
248                 else
249                         printf("%-*s\t%s\n", (int)HELPINDENT,
250                                 c->c_name, c->c_help);
251         }
252 }