main.c revision 1.8 1 1.1 cgd /*-
2 1.8 pk * Copyright (c) 1980, 1993
3 1.8 pk * The Regents of the University of California. All rights reserved.
4 1.1 cgd *
5 1.1 cgd * Redistribution and use in source and binary forms, with or without
6 1.1 cgd * modification, are permitted provided that the following conditions
7 1.1 cgd * are met:
8 1.1 cgd * 1. Redistributions of source code must retain the above copyright
9 1.1 cgd * notice, this list of conditions and the following disclaimer.
10 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer in the
12 1.1 cgd * documentation and/or other materials provided with the distribution.
13 1.1 cgd * 3. All advertising materials mentioning features or use of this software
14 1.1 cgd * must display the following acknowledgement:
15 1.1 cgd * This product includes software developed by the University of
16 1.1 cgd * California, Berkeley and its contributors.
17 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
18 1.1 cgd * may be used to endorse or promote products derived from this software
19 1.1 cgd * without specific prior written permission.
20 1.1 cgd *
21 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 1.1 cgd * SUCH DAMAGE.
32 1.1 cgd */
33 1.1 cgd
34 1.1 cgd #ifndef lint
35 1.8 pk static char copyright[] =
36 1.8 pk "@(#) Copyright (c) 1980, 1993\n\
37 1.8 pk The Regents of the University of California. All rights reserved.\n";
38 1.1 cgd #endif /* not lint */
39 1.1 cgd
40 1.1 cgd #ifndef lint
41 1.8 pk /*static char sccsid[] = "from: @(#)main.c 8.1 (Berkeley) 6/20/93";*/
42 1.8 pk static char rcsid[] = "$Id: main.c,v 1.8 1994/08/17 20:10:37 pk Exp $";
43 1.1 cgd #endif /* not lint */
44 1.1 cgd
45 1.1 cgd #include <sys/param.h>
46 1.1 cgd #include <sys/stat.h>
47 1.7 pk #include <sys/termios.h>
48 1.7 pk #include <sys/ioctl.h>
49 1.8 pk #include <sys/resource.h>
50 1.3 mycroft #include <sys/utsname.h>
51 1.1 cgd #include <signal.h>
52 1.1 cgd #include <fcntl.h>
53 1.1 cgd #include <time.h>
54 1.1 cgd #include <ctype.h>
55 1.8 pk #include <fcntl.h>
56 1.1 cgd #include <setjmp.h>
57 1.8 pk #include <signal.h>
58 1.8 pk #include <stdlib.h>
59 1.8 pk #include <string.h>
60 1.1 cgd #include <syslog.h>
61 1.8 pk #include <time.h>
62 1.1 cgd #include <unistd.h>
63 1.8 pk
64 1.1 cgd #include "gettytab.h"
65 1.1 cgd #include "pathnames.h"
66 1.8 pk #include "extern.h"
67 1.8 pk
68 1.8 pk /*
69 1.8 pk * Set the amount of running time that getty should accumulate
70 1.8 pk * before deciding that something is wrong and exit.
71 1.8 pk */
72 1.8 pk #define GETTY_TIMEOUT 60 /* seconds */
73 1.1 cgd
74 1.8 pk struct termios tmode, omode;
75 1.1 cgd
76 1.1 cgd int crmod, digit, lower, upper;
77 1.1 cgd
78 1.1 cgd char hostname[MAXHOSTNAMELEN];
79 1.3 mycroft struct utsname kerninfo;
80 1.1 cgd char name[16];
81 1.1 cgd char dev[] = _PATH_DEV;
82 1.1 cgd char ttyn[32];
83 1.1 cgd char *portselector();
84 1.1 cgd char *ttyname();
85 1.1 cgd
86 1.1 cgd #define OBUFSIZ 128
87 1.1 cgd #define TABBUFSIZ 512
88 1.1 cgd
89 1.1 cgd char defent[TABBUFSIZ];
90 1.1 cgd char tabent[TABBUFSIZ];
91 1.1 cgd
92 1.1 cgd char *env[128];
93 1.1 cgd
94 1.1 cgd char partab[] = {
95 1.1 cgd 0001,0201,0201,0001,0201,0001,0001,0201,
96 1.1 cgd 0202,0004,0003,0205,0005,0206,0201,0001,
97 1.1 cgd 0201,0001,0001,0201,0001,0201,0201,0001,
98 1.1 cgd 0001,0201,0201,0001,0201,0001,0001,0201,
99 1.1 cgd 0200,0000,0000,0200,0000,0200,0200,0000,
100 1.1 cgd 0000,0200,0200,0000,0200,0000,0000,0200,
101 1.1 cgd 0000,0200,0200,0000,0200,0000,0000,0200,
102 1.1 cgd 0200,0000,0000,0200,0000,0200,0200,0000,
103 1.1 cgd 0200,0000,0000,0200,0000,0200,0200,0000,
104 1.1 cgd 0000,0200,0200,0000,0200,0000,0000,0200,
105 1.1 cgd 0000,0200,0200,0000,0200,0000,0000,0200,
106 1.1 cgd 0200,0000,0000,0200,0000,0200,0200,0000,
107 1.1 cgd 0000,0200,0200,0000,0200,0000,0000,0200,
108 1.1 cgd 0200,0000,0000,0200,0000,0200,0200,0000,
109 1.1 cgd 0200,0000,0000,0200,0000,0200,0200,0000,
110 1.1 cgd 0000,0200,0200,0000,0200,0000,0000,0201
111 1.1 cgd };
112 1.1 cgd
113 1.7 pk #define ERASE tmode.c_cc[VERASE]
114 1.7 pk #define KILL tmode.c_cc[VKILL]
115 1.7 pk #define EOT tmode.c_cc[VEOF]
116 1.1 cgd
117 1.1 cgd jmp_buf timeout;
118 1.1 cgd
119 1.1 cgd static void
120 1.1 cgd dingdong()
121 1.1 cgd {
122 1.1 cgd
123 1.1 cgd alarm(0);
124 1.1 cgd signal(SIGALRM, SIG_DFL);
125 1.1 cgd longjmp(timeout, 1);
126 1.1 cgd }
127 1.1 cgd
128 1.1 cgd jmp_buf intrupt;
129 1.1 cgd
130 1.1 cgd static void
131 1.1 cgd interrupt()
132 1.1 cgd {
133 1.1 cgd
134 1.1 cgd signal(SIGINT, interrupt);
135 1.1 cgd longjmp(intrupt, 1);
136 1.1 cgd }
137 1.1 cgd
138 1.8 pk /*
139 1.8 pk * Action to take when getty is running too long.
140 1.8 pk */
141 1.8 pk void
142 1.8 pk timeoverrun(signo)
143 1.8 pk int signo;
144 1.8 pk {
145 1.8 pk
146 1.8 pk syslog(LOG_ERR, "getty exiting due to excessive running time\n");
147 1.8 pk exit(1);
148 1.8 pk }
149 1.8 pk
150 1.8 pk static int getname __P((void));
151 1.8 pk static void oflush __P((void));
152 1.8 pk static void prompt __P((void));
153 1.8 pk static void putchr __P((int));
154 1.8 pk static void putf __P((char *));
155 1.8 pk static void putpad __P((char *));
156 1.8 pk static void puts __P((char *));
157 1.8 pk
158 1.8 pk int
159 1.1 cgd main(argc, argv)
160 1.1 cgd int argc;
161 1.8 pk char *argv[];
162 1.1 cgd {
163 1.8 pk extern char **environ;
164 1.1 cgd char *tname;
165 1.1 cgd long allflags;
166 1.1 cgd int repcnt = 0;
167 1.8 pk struct rlimit limit;
168 1.1 cgd
169 1.1 cgd signal(SIGINT, SIG_IGN);
170 1.1 cgd /*
171 1.1 cgd signal(SIGQUIT, SIG_DFL);
172 1.1 cgd */
173 1.1 cgd openlog("getty", LOG_ODELAY|LOG_CONS, LOG_AUTH);
174 1.1 cgd gethostname(hostname, sizeof(hostname));
175 1.1 cgd if (hostname[0] == '\0')
176 1.1 cgd strcpy(hostname, "Amnesiac");
177 1.3 mycroft uname(&kerninfo);
178 1.8 pk
179 1.8 pk /*
180 1.8 pk * Limit running time to deal with broken or dead lines.
181 1.8 pk */
182 1.8 pk (void)signal(SIGXCPU, timeoverrun);
183 1.8 pk limit.rlim_max = RLIM_INFINITY;
184 1.8 pk limit.rlim_cur = GETTY_TIMEOUT;
185 1.8 pk (void)setrlimit(RLIMIT_CPU, &limit);
186 1.8 pk
187 1.1 cgd /*
188 1.1 cgd * The following is a work around for vhangup interactions
189 1.1 cgd * which cause great problems getting window systems started.
190 1.1 cgd * If the tty line is "-", we do the old style getty presuming
191 1.1 cgd * that the file descriptors are already set up for us.
192 1.1 cgd * J. Gettys - MIT Project Athena.
193 1.1 cgd */
194 1.1 cgd if (argc <= 2 || strcmp(argv[2], "-") == 0)
195 1.1 cgd strcpy(ttyn, ttyname(0));
196 1.1 cgd else {
197 1.1 cgd int i;
198 1.1 cgd
199 1.1 cgd strcpy(ttyn, dev);
200 1.1 cgd strncat(ttyn, argv[2], sizeof(ttyn)-sizeof(dev));
201 1.1 cgd if (strcmp(argv[0], "+") != 0) {
202 1.1 cgd chown(ttyn, 0, 0);
203 1.1 cgd chmod(ttyn, 0600);
204 1.1 cgd revoke(ttyn);
205 1.1 cgd /*
206 1.1 cgd * Delay the open so DTR stays down long enough to be detected.
207 1.1 cgd */
208 1.1 cgd sleep(2);
209 1.1 cgd while ((i = open(ttyn, O_RDWR)) == -1) {
210 1.1 cgd if (repcnt % 10 == 0) {
211 1.1 cgd syslog(LOG_ERR, "%s: %m", ttyn);
212 1.1 cgd closelog();
213 1.1 cgd }
214 1.1 cgd repcnt++;
215 1.1 cgd sleep(60);
216 1.1 cgd }
217 1.1 cgd login_tty(i);
218 1.1 cgd }
219 1.1 cgd }
220 1.1 cgd
221 1.7 pk /* Start with default tty settings */
222 1.7 pk if (tcgetattr(0, &tmode) < 0) {
223 1.7 pk syslog(LOG_ERR, "%s: %m", ttyn);
224 1.7 pk exit(1);
225 1.7 pk }
226 1.8 pk omode = tmode;
227 1.7 pk
228 1.5 cgd gettable("default", defent);
229 1.1 cgd gendefaults();
230 1.1 cgd tname = "default";
231 1.1 cgd if (argc > 1)
232 1.1 cgd tname = argv[1];
233 1.1 cgd for (;;) {
234 1.8 pk int off;
235 1.1 cgd
236 1.5 cgd gettable(tname, tabent);
237 1.1 cgd if (OPset || EPset || APset)
238 1.1 cgd APset++, OPset++, EPset++;
239 1.1 cgd setdefaults();
240 1.8 pk off = 0;
241 1.6 pk ioctl(0, TIOCFLUSH, &off); /* clear out the crap */
242 1.1 cgd ioctl(0, FIONBIO, &off); /* turn off non-blocking mode */
243 1.1 cgd ioctl(0, FIOASYNC, &off); /* ditto for async mode */
244 1.7 pk
245 1.1 cgd if (IS)
246 1.7 pk tmode.c_ispeed = speed(IS);
247 1.1 cgd else if (SP)
248 1.7 pk tmode.c_ispeed = speed(SP);
249 1.1 cgd if (OS)
250 1.7 pk tmode.c_ospeed = speed(OS);
251 1.1 cgd else if (SP)
252 1.7 pk tmode.c_ospeed = speed(SP);
253 1.7 pk setflags(0);
254 1.1 cgd setchars();
255 1.7 pk if (tcsetattr(0, TCSANOW, &tmode) < 0) {
256 1.7 pk syslog(LOG_ERR, "%s: %m", ttyn);
257 1.7 pk exit(1);
258 1.7 pk }
259 1.1 cgd if (AB) {
260 1.1 cgd extern char *autobaud();
261 1.1 cgd
262 1.1 cgd tname = autobaud();
263 1.1 cgd continue;
264 1.1 cgd }
265 1.1 cgd if (PS) {
266 1.1 cgd tname = portselector();
267 1.1 cgd continue;
268 1.1 cgd }
269 1.1 cgd if (CL && *CL)
270 1.1 cgd putpad(CL);
271 1.1 cgd edithost(HE);
272 1.1 cgd if (IM && *IM)
273 1.1 cgd putf(IM);
274 1.1 cgd if (setjmp(timeout)) {
275 1.7 pk tmode.c_ispeed = tmode.c_ospeed = 0;
276 1.7 pk (void)tcsetattr(0, TCSANOW, &tmode);
277 1.1 cgd exit(1);
278 1.1 cgd }
279 1.1 cgd if (TO) {
280 1.1 cgd signal(SIGALRM, dingdong);
281 1.1 cgd alarm(TO);
282 1.1 cgd }
283 1.1 cgd if (getname()) {
284 1.1 cgd register int i;
285 1.1 cgd
286 1.1 cgd oflush();
287 1.1 cgd alarm(0);
288 1.1 cgd signal(SIGALRM, SIG_DFL);
289 1.1 cgd if (name[0] == '-') {
290 1.1 cgd puts("user names may not start with '-'.");
291 1.1 cgd continue;
292 1.1 cgd }
293 1.1 cgd if (!(upper || lower || digit))
294 1.1 cgd continue;
295 1.7 pk setflags(2);
296 1.7 pk if (crmod) {
297 1.7 pk tmode.c_iflag |= ICRNL;
298 1.7 pk tmode.c_oflag |= ONLCR;
299 1.7 pk }
300 1.7 pk #if XXX
301 1.1 cgd if (upper || UC)
302 1.1 cgd tmode.sg_flags |= LCASE;
303 1.1 cgd if (lower || LC)
304 1.1 cgd tmode.sg_flags &= ~LCASE;
305 1.7 pk #endif
306 1.7 pk if (tcsetattr(0, TCSANOW, &tmode) < 0) {
307 1.7 pk syslog(LOG_ERR, "%s: %m", ttyn);
308 1.7 pk exit(1);
309 1.7 pk }
310 1.1 cgd signal(SIGINT, SIG_DFL);
311 1.1 cgd for (i = 0; environ[i] != (char *)0; i++)
312 1.1 cgd env[i] = environ[i];
313 1.1 cgd makeenv(&env[i]);
314 1.8 pk
315 1.8 pk limit.rlim_max = RLIM_INFINITY;
316 1.8 pk limit.rlim_cur = RLIM_INFINITY;
317 1.8 pk (void)setrlimit(RLIMIT_CPU, &limit);
318 1.1 cgd execle(LO, "login", "-p", name, (char *) 0, env);
319 1.1 cgd syslog(LOG_ERR, "%s: %m", LO);
320 1.1 cgd exit(1);
321 1.1 cgd }
322 1.1 cgd alarm(0);
323 1.1 cgd signal(SIGALRM, SIG_DFL);
324 1.1 cgd signal(SIGINT, SIG_IGN);
325 1.1 cgd if (NX && *NX)
326 1.1 cgd tname = NX;
327 1.1 cgd }
328 1.1 cgd }
329 1.1 cgd
330 1.8 pk static int
331 1.1 cgd getname()
332 1.1 cgd {
333 1.1 cgd register int c;
334 1.1 cgd register char *np;
335 1.1 cgd char cs;
336 1.1 cgd
337 1.1 cgd /*
338 1.1 cgd * Interrupt may happen if we use CBREAK mode
339 1.1 cgd */
340 1.1 cgd if (setjmp(intrupt)) {
341 1.1 cgd signal(SIGINT, SIG_IGN);
342 1.1 cgd return (0);
343 1.1 cgd }
344 1.1 cgd signal(SIGINT, interrupt);
345 1.7 pk setflags(1);
346 1.1 cgd prompt();
347 1.1 cgd if (PF > 0) {
348 1.1 cgd oflush();
349 1.1 cgd sleep(PF);
350 1.1 cgd PF = 0;
351 1.1 cgd }
352 1.7 pk if (tcsetattr(0, TCSANOW, &tmode) < 0) {
353 1.7 pk syslog(LOG_ERR, "%s: %m", ttyn);
354 1.7 pk exit(1);
355 1.7 pk }
356 1.1 cgd crmod = digit = lower = upper = 0;
357 1.1 cgd np = name;
358 1.1 cgd for (;;) {
359 1.1 cgd oflush();
360 1.1 cgd if (read(STDIN_FILENO, &cs, 1) <= 0)
361 1.1 cgd exit(0);
362 1.1 cgd if ((c = cs&0177) == 0)
363 1.1 cgd return (0);
364 1.1 cgd if (c == EOT)
365 1.1 cgd exit(1);
366 1.1 cgd if (c == '\r' || c == '\n' || np >= &name[sizeof name]) {
367 1.1 cgd putf("\r\n");
368 1.1 cgd break;
369 1.1 cgd }
370 1.1 cgd if (islower(c))
371 1.1 cgd lower = 1;
372 1.1 cgd else if (isupper(c))
373 1.1 cgd upper = 1;
374 1.1 cgd else if (c == ERASE || c == '#' || c == '\b') {
375 1.1 cgd if (np > name) {
376 1.1 cgd np--;
377 1.7 pk if (tmode.c_ospeed >= B1200)
378 1.1 cgd puts("\b \b");
379 1.1 cgd else
380 1.1 cgd putchr(cs);
381 1.1 cgd }
382 1.1 cgd continue;
383 1.1 cgd } else if (c == KILL || c == '@') {
384 1.1 cgd putchr(cs);
385 1.1 cgd putchr('\r');
386 1.7 pk if (tmode.c_ospeed < B1200)
387 1.1 cgd putchr('\n');
388 1.1 cgd /* this is the way they do it down under ... */
389 1.1 cgd else if (np > name)
390 1.1 cgd puts(" \r");
391 1.1 cgd prompt();
392 1.1 cgd np = name;
393 1.1 cgd continue;
394 1.1 cgd } else if (isdigit(c))
395 1.1 cgd digit++;
396 1.1 cgd if (IG && (c <= ' ' || c > 0176))
397 1.1 cgd continue;
398 1.1 cgd *np++ = c;
399 1.1 cgd putchr(cs);
400 1.1 cgd }
401 1.1 cgd signal(SIGINT, SIG_IGN);
402 1.1 cgd *np = 0;
403 1.1 cgd if (c == '\r')
404 1.1 cgd crmod = 1;
405 1.1 cgd if (upper && !lower && !LC || UC)
406 1.1 cgd for (np = name; *np; np++)
407 1.1 cgd if (isupper(*np))
408 1.1 cgd *np = tolower(*np);
409 1.1 cgd return (1);
410 1.1 cgd }
411 1.1 cgd
412 1.1 cgd static
413 1.1 cgd short tmspc10[] = {
414 1.1 cgd 0, 2000, 1333, 909, 743, 666, 500, 333, 166, 83, 55, 41, 20, 10, 5, 15
415 1.1 cgd };
416 1.1 cgd
417 1.8 pk static void
418 1.1 cgd putpad(s)
419 1.1 cgd register char *s;
420 1.1 cgd {
421 1.1 cgd register pad = 0;
422 1.1 cgd register mspc10;
423 1.1 cgd
424 1.1 cgd if (isdigit(*s)) {
425 1.1 cgd while (isdigit(*s)) {
426 1.1 cgd pad *= 10;
427 1.1 cgd pad += *s++ - '0';
428 1.1 cgd }
429 1.1 cgd pad *= 10;
430 1.1 cgd if (*s == '.' && isdigit(s[1])) {
431 1.1 cgd pad += s[1] - '0';
432 1.1 cgd s += 2;
433 1.1 cgd }
434 1.1 cgd }
435 1.1 cgd
436 1.1 cgd puts(s);
437 1.1 cgd /*
438 1.1 cgd * If no delay needed, or output speed is
439 1.1 cgd * not comprehensible, then don't try to delay.
440 1.1 cgd */
441 1.1 cgd if (pad == 0)
442 1.1 cgd return;
443 1.7 pk if (tmode.c_ospeed <= 0 ||
444 1.7 pk tmode.c_ospeed >= (sizeof tmspc10 / sizeof tmspc10[0]))
445 1.1 cgd return;
446 1.1 cgd
447 1.1 cgd /*
448 1.1 cgd * Round up by a half a character frame, and then do the delay.
449 1.1 cgd * Too bad there are no user program accessible programmed delays.
450 1.1 cgd * Transmitting pad characters slows many terminals down and also
451 1.1 cgd * loads the system.
452 1.1 cgd */
453 1.7 pk mspc10 = tmspc10[tmode.c_ospeed];
454 1.1 cgd pad += mspc10 / 2;
455 1.1 cgd for (pad /= mspc10; pad > 0; pad--)
456 1.1 cgd putchr(*PC);
457 1.1 cgd }
458 1.1 cgd
459 1.8 pk static void
460 1.1 cgd puts(s)
461 1.1 cgd register char *s;
462 1.1 cgd {
463 1.1 cgd while (*s)
464 1.1 cgd putchr(*s++);
465 1.1 cgd }
466 1.1 cgd
467 1.1 cgd char outbuf[OBUFSIZ];
468 1.1 cgd int obufcnt = 0;
469 1.1 cgd
470 1.8 pk static void
471 1.1 cgd putchr(cc)
472 1.8 pk int cc;
473 1.1 cgd {
474 1.1 cgd char c;
475 1.1 cgd
476 1.1 cgd c = cc;
477 1.1 cgd if (!NP) {
478 1.1 cgd c |= partab[c&0177] & 0200;
479 1.1 cgd if (OP)
480 1.1 cgd c ^= 0200;
481 1.1 cgd }
482 1.1 cgd if (!UB) {
483 1.1 cgd outbuf[obufcnt++] = c;
484 1.1 cgd if (obufcnt >= OBUFSIZ)
485 1.1 cgd oflush();
486 1.1 cgd } else
487 1.1 cgd write(STDOUT_FILENO, &c, 1);
488 1.1 cgd }
489 1.1 cgd
490 1.8 pk static void
491 1.1 cgd oflush()
492 1.1 cgd {
493 1.1 cgd if (obufcnt)
494 1.1 cgd write(STDOUT_FILENO, outbuf, obufcnt);
495 1.1 cgd obufcnt = 0;
496 1.1 cgd }
497 1.1 cgd
498 1.8 pk static void
499 1.1 cgd prompt()
500 1.1 cgd {
501 1.1 cgd
502 1.1 cgd putf(LM);
503 1.1 cgd if (CO)
504 1.1 cgd putchr('\n');
505 1.1 cgd }
506 1.1 cgd
507 1.8 pk static void
508 1.1 cgd putf(cp)
509 1.1 cgd register char *cp;
510 1.1 cgd {
511 1.1 cgd extern char editedhost[];
512 1.1 cgd time_t t;
513 1.1 cgd char *slash, db[100];
514 1.1 cgd
515 1.1 cgd while (*cp) {
516 1.1 cgd if (*cp != '%') {
517 1.1 cgd putchr(*cp++);
518 1.1 cgd continue;
519 1.1 cgd }
520 1.1 cgd switch (*++cp) {
521 1.1 cgd
522 1.1 cgd case 't':
523 1.8 pk slash = strrchr(ttyn, '/');
524 1.1 cgd if (slash == (char *) 0)
525 1.1 cgd puts(ttyn);
526 1.1 cgd else
527 1.1 cgd puts(&slash[1]);
528 1.1 cgd break;
529 1.1 cgd
530 1.1 cgd case 'h':
531 1.1 cgd puts(editedhost);
532 1.1 cgd break;
533 1.1 cgd
534 1.1 cgd case 'd': {
535 1.1 cgd static char fmt[] = "%l:% %P on %A, %d %B %Y";
536 1.1 cgd
537 1.1 cgd fmt[4] = 'M'; /* I *hate* SCCS... */
538 1.1 cgd (void)time(&t);
539 1.1 cgd (void)strftime(db, sizeof(db), fmt, localtime(&t));
540 1.1 cgd puts(db);
541 1.3 mycroft break;
542 1.3 mycroft
543 1.3 mycroft case 's':
544 1.3 mycroft puts(kerninfo.sysname);
545 1.3 mycroft break;
546 1.3 mycroft
547 1.3 mycroft case 'm':
548 1.3 mycroft puts(kerninfo.machine);
549 1.3 mycroft break;
550 1.3 mycroft
551 1.3 mycroft case 'r':
552 1.3 mycroft puts(kerninfo.release);
553 1.3 mycroft break;
554 1.3 mycroft
555 1.3 mycroft case 'v':
556 1.3 mycroft puts(kerninfo.version);
557 1.1 cgd break;
558 1.1 cgd }
559 1.1 cgd
560 1.1 cgd case '%':
561 1.1 cgd putchr('%');
562 1.1 cgd break;
563 1.1 cgd }
564 1.1 cgd cp++;
565 1.1 cgd }
566 1.1 cgd }
567