]>
git.saurik.com Git - apple/network_cmds.git/blob - timed.tproj/timedc.tproj/timedc.c
f80160fb2b3e91461a803cd3a8bd72cea81e1601
2 * Copyright (c) 1999 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
8 * This file contains Original Code and/or Modifications of Original Code
9 * as defined in and that are subject to the Apple Public Source License
10 * Version 2.0 (the 'License'). You may not use this file except in
11 * compliance with the License. Please obtain a copy of the License at
12 * http://www.opensource.apple.com/apsl/ and read it before using this
15 * The Original Code and all software distributed under the License are
16 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
17 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
18 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
20 * Please see the License for the specific language governing rights and
21 * limitations under the License.
23 * @APPLE_LICENSE_HEADER_END@
26 * Copyright (c) 1985, 1993
27 * The Regents of the University of California. All rights reserved.
29 * Redistribution and use in source and binary forms, with or without
30 * modification, are permitted provided that the following conditions
32 * 1. Redistributions of source code must retain the above copyright
33 * notice, this list of conditions and the following disclaimer.
34 * 2. Redistributions in binary form must reproduce the above copyright
35 * notice, this list of conditions and the following disclaimer in the
36 * documentation and/or other materials provided with the distribution.
37 * 3. All advertising materials mentioning features or use of this software
38 * must display the following acknowledgement:
39 * This product includes software developed by the University of
40 * California, Berkeley and its contributors.
41 * 4. Neither the name of the University nor the names of its contributors
42 * may be used to endorse or promote products derived from this software
43 * without specific prior written permission.
45 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
46 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
47 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
48 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
49 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
50 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
51 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
52 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
53 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
54 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
59 static char copyright
[] =
60 "@(#) Copyright (c) 1985, 1993\n\
61 The Regents of the University of California. All rights reserved.\n";
65 static char sccsid
[] = "@(#)timedc.c 8.1 (Berkeley) 6/6/93";
69 #ident "$Revision: 1.1.1.1 $"
88 static struct cmd
*getcmd
__P((char *));
95 register struct cmd
*c
;
97 openlog("timedc", LOG_ODELAY
, LOG_AUTH
);
102 if (priv_resources() < 0) {
103 fprintf(stderr
, "Could not get privileged resources\n");
106 (void) setuid(getuid());
110 if (c
== (struct cmd
*)-1) {
111 printf("?Ambiguous command\n");
115 printf("?Invalid command\n");
118 if (c
->c_priv
&& getuid()) {
119 printf("?Privileged command\n");
122 (*c
->c_handler
)(argc
, argv
);
126 fromatty
= isatty(fileno(stdin
));
127 if (setjmp(toplevel
))
129 (void) signal(SIGINT
, intr
);
133 (void) fflush(stdout
);
135 if (fgets(cmdline
, sizeof(cmdline
), stdin
) == 0)
142 c
= getcmd(margv
[0]);
143 if (c
== (struct cmd
*)-1) {
144 printf("?Ambiguous command\n");
148 printf("?Invalid command\n");
151 if (c
->c_priv
&& getuid()) {
152 printf("?Privileged command\n");
155 (*c
->c_handler
)(margc
, margv
);
166 longjmp(toplevel
, 1);
174 register char *p
, *q
;
175 register struct cmd
*c
, *found
;
176 register int nmatches
, longest
;
182 for (c
= cmdtab
; c
< &cmdtab
[NCMDS
]; c
++) {
184 for (q
= name
; *q
== *p
++; q
++)
185 if (*q
== 0) /* exact match? */
187 if (!*q
) { /* the name was a prefix */
188 if (q
- name
> longest
) {
192 } else if (q
- name
== longest
)
197 return((struct cmd
*)-1);
202 * Slice a string up into argc/argv.
208 register char **argp
= margv
;
211 for (cp
= cmdline
; *cp
;) {
218 while (*cp
!= '\0' && !isspace(*cp
))
227 #define HELPINDENT (sizeof ("directory"))
237 register struct cmd
*c
;
240 register int i
, j
, w
;
241 int columns
, width
= 0, lines
;
244 printf("Commands may be abbreviated. Commands are:\n\n");
245 for (c
= cmdtab
; c
< &cmdtab
[NCMDS
]; c
++) {
246 int len
= strlen(c
->c_name
);
251 width
= (width
+ 8) &~ 7;
252 columns
= 80 / width
;
255 lines
= (NCMDS
+ columns
- 1) / columns
;
256 for (i
= 0; i
< lines
; i
++) {
257 for (j
= 0; j
< columns
; j
++) {
258 c
= cmdtab
+ j
* lines
+ i
;
259 printf("%s", c
->c_name
);
260 if (c
+ lines
>= &cmdtab
[NCMDS
]) {
264 w
= strlen(c
->c_name
);
277 if (c
== (struct cmd
*)-1)
278 printf("?Ambiguous help command %s\n", arg
);
279 else if (c
== (struct cmd
*)0)
280 printf("?Invalid help command %s\n", arg
);
282 printf("%-*s\t%s\n", (int)HELPINDENT
,
283 c
->c_name
, c
->c_help
);