4.4BSD snapshot (revision 8.1); add 1993 to copyright
[unix-history] / usr / src / libexec / getty / main.c
CommitLineData
63530824
KB
1/*-
2 * Copyright (c) 1980 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * %sccs.include.redist.c%
810b1430
DF
6 */
7
8#ifndef lint
9char copyright[] =
63530824 10"@(#) Copyright (c) 1980 The Regents of the University of California.\n\
810b1430 11 All rights reserved.\n";
63530824 12#endif /* not lint */
810b1430 13
21017259 14#ifndef lint
7e93bfe3 15static char sccsid[] = "@(#)main.c 8.1 (Berkeley) %G%";
63530824 16#endif /* not lint */
21017259 17
a4f3e1c7 18#define USE_OLD_TTY
63530824 19
a4f3e1c7 20#include <sys/param.h>
87b3dbaf 21#include <sys/stat.h>
34129485 22
21017259 23#include <ctype.h>
a4f3e1c7 24#include <ctype.h>
34129485
KB
25#include <fcntl.h>
26#include <setjmp.h>
27#include <sgtty.h>
28#include <signal.h>
87b3dbaf 29#include <stdlib.h>
63530824 30#include <string.h>
34129485
KB
31#include <syslog.h>
32#include <time.h>
33#include <unistd.h>
34
21017259 35#include "gettytab.h"
a4f3e1c7 36#include "pathnames.h"
34129485 37#include "extern.h"
21017259
SL
38
39struct sgttyb tmode = {
40 0, 0, CERASE, CKILL, 0
41};
42struct tchars tc = {
43 CINTR, CQUIT, CSTART,
44 CSTOP, CEOF, CBRK,
45};
46struct ltchars ltc = {
47 CSUSP, CDSUSP, CRPRNT,
48 CFLUSH, CWERASE, CLNEXT
49};
50
63530824 51int crmod, digit, lower, upper;
21017259 52
a4f3e1c7 53char hostname[MAXHOSTNAMELEN];
21017259 54char name[16];
a4f3e1c7 55char dev[] = _PATH_DEV;
a7b4ee2b 56char ttyn[32];
21017259 57char *portselector();
a7b4ee2b 58char *ttyname();
21017259 59
14f797c6 60#define OBUFSIZ 128
21017259
SL
61#define TABBUFSIZ 512
62
63char defent[TABBUFSIZ];
21017259 64char tabent[TABBUFSIZ];
21017259
SL
65
66char *env[128];
67
68char partab[] = {
69 0001,0201,0201,0001,0201,0001,0001,0201,
70 0202,0004,0003,0205,0005,0206,0201,0001,
71 0201,0001,0001,0201,0001,0201,0201,0001,
72 0001,0201,0201,0001,0201,0001,0001,0201,
73 0200,0000,0000,0200,0000,0200,0200,0000,
74 0000,0200,0200,0000,0200,0000,0000,0200,
75 0000,0200,0200,0000,0200,0000,0000,0200,
76 0200,0000,0000,0200,0000,0200,0200,0000,
77 0200,0000,0000,0200,0000,0200,0200,0000,
78 0000,0200,0200,0000,0200,0000,0000,0200,
79 0000,0200,0200,0000,0200,0000,0000,0200,
80 0200,0000,0000,0200,0000,0200,0200,0000,
81 0000,0200,0200,0000,0200,0000,0000,0200,
82 0200,0000,0000,0200,0000,0200,0200,0000,
83 0200,0000,0000,0200,0000,0200,0200,0000,
84 0000,0200,0200,0000,0200,0000,0000,0201
85};
86
87#define ERASE tmode.sg_erase
88#define KILL tmode.sg_kill
89#define EOT tc.t_eofc
90
91jmp_buf timeout;
92
87b3dbaf 93static void
21017259
SL
94dingdong()
95{
96
97 alarm(0);
98 signal(SIGALRM, SIG_DFL);
99 longjmp(timeout, 1);
100}
101
14f797c6
RE
102jmp_buf intrupt;
103
87b3dbaf 104static void
14f797c6
RE
105interrupt()
106{
107
108 signal(SIGINT, interrupt);
109 longjmp(intrupt, 1);
110}
111
34129485
KB
112static int getname __P((void));
113static void oflush __P((void));
114static void prompt __P((void));
115static void putchr __P((int));
116static void putf __P((char *));
117static void putpad __P((char *));
118static void puts __P((char *));
119
120int
21017259 121main(argc, argv)
63530824 122 int argc;
34129485 123 char *argv[];
21017259 124{
34129485 125 extern char **environ;
21017259
SL
126 char *tname;
127 long allflags;
a7b4ee2b 128 int repcnt = 0;
21017259 129
21017259 130 signal(SIGINT, SIG_IGN);
14f797c6 131/*
21017259
SL
132 signal(SIGQUIT, SIG_DFL);
133*/
46f66db5 134 openlog("getty", LOG_ODELAY|LOG_CONS, LOG_AUTH);
21017259
SL
135 gethostname(hostname, sizeof(hostname));
136 if (hostname[0] == '\0')
137 strcpy(hostname, "Amnesiac");
a7b4ee2b
RC
138 /*
139 * The following is a work around for vhangup interactions
140 * which cause great problems getting window systems started.
141 * If the tty line is "-", we do the old style getty presuming
142 * that the file descriptors are already set up for us.
143 * J. Gettys - MIT Project Athena.
144 */
145 if (argc <= 2 || strcmp(argv[2], "-") == 0)
fc683e47 146 strcpy(ttyn, ttyname(0));
a7b4ee2b 147 else {
5b6b7d1c
MT
148 int i;
149
fc683e47
JB
150 strcpy(ttyn, dev);
151 strncat(ttyn, argv[2], sizeof(ttyn)-sizeof(dev));
152 if (strcmp(argv[0], "+") != 0) {
a7b4ee2b 153 chown(ttyn, 0, 0);
5b6b7d1c
MT
154 chmod(ttyn, 0600);
155 revoke(ttyn);
1b5c9172
KM
156 /*
157 * Delay the open so DTR stays down long enough to be detected.
158 */
159 sleep(2);
5b6b7d1c 160 while ((i = open(ttyn, O_RDWR)) == -1) {
a7b4ee2b 161 if (repcnt % 10 == 0) {
da31c6da 162 syslog(LOG_ERR, "%s: %m", ttyn);
a7b4ee2b
RC
163 closelog();
164 }
165 repcnt++;
166 sleep(60);
167 }
5b6b7d1c 168 login_tty(i);
fc683e47 169 }
a7b4ee2b
RC
170 }
171
69494ff4 172 gettable("default", defent);
21017259
SL
173 gendefaults();
174 tname = "default";
175 if (argc > 1)
176 tname = argv[1];
177 for (;;) {
c74d200a 178 int off;
21017259 179
69494ff4 180 gettable(tname, tabent);
14f797c6
RE
181 if (OPset || EPset || APset)
182 APset++, OPset++, EPset++;
21017259 183 setdefaults();
c74d200a
KB
184 off = 0;
185 ioctl(0, TIOCFLUSH, &off); /* clear out the crap */
e40c2ab7 186 ioctl(0, FIONBIO, &off); /* turn off non-blocking mode */
63530824 187 ioctl(0, FIOASYNC, &off); /* ditto for async mode */
21017259
SL
188 if (IS)
189 tmode.sg_ispeed = speed(IS);
190 else if (SP)
191 tmode.sg_ispeed = speed(SP);
192 if (OS)
193 tmode.sg_ospeed = speed(OS);
194 else if (SP)
195 tmode.sg_ospeed = speed(SP);
196 tmode.sg_flags = setflags(0);
197 ioctl(0, TIOCSETP, &tmode);
198 setchars();
199 ioctl(0, TIOCSETC, &tc);
21017259
SL
200 if (HC)
201 ioctl(0, TIOCHPCL, 0);
a7b4ee2b
RC
202 if (AB) {
203 extern char *autobaud();
204
205 tname = autobaud();
206 continue;
207 }
21017259
SL
208 if (PS) {
209 tname = portselector();
210 continue;
211 }
212 if (CL && *CL)
213 putpad(CL);
214 edithost(HE);
215 if (IM && *IM)
216 putf(IM);
217 if (setjmp(timeout)) {
218 tmode.sg_ispeed = tmode.sg_ospeed = 0;
219 ioctl(0, TIOCSETP, &tmode);
220 exit(1);
221 }
222 if (TO) {
223 signal(SIGALRM, dingdong);
224 alarm(TO);
225 }
226 if (getname()) {
a7b4ee2b
RC
227 register int i;
228
229 oflush();
21017259
SL
230 alarm(0);
231 signal(SIGALRM, SIG_DFL);
dee9e7bf 232 if (name[0] == '-') {
a4f3e1c7 233 puts("user names may not start with '-'.");
dee9e7bf
KB
234 continue;
235 }
76ba6586 236 if (!(upper || lower || digit))
21017259
SL
237 continue;
238 allflags = setflags(2);
239 tmode.sg_flags = allflags & 0xffff;
240 allflags >>= 16;
241 if (crmod || NL)
242 tmode.sg_flags |= CRMOD;
243 if (upper || UC)
244 tmode.sg_flags |= LCASE;
245 if (lower || LC)
246 tmode.sg_flags &= ~LCASE;
247 ioctl(0, TIOCSETP, &tmode);
248 ioctl(0, TIOCSLTC, &ltc);
249 ioctl(0, TIOCLSET, &allflags);
14f797c6 250 signal(SIGINT, SIG_DFL);
a7b4ee2b
RC
251 for (i = 0; environ[i] != (char *)0; i++)
252 env[i] = environ[i];
253 makeenv(&env[i]);
14ddcd6b
MT
254
255 /*
256 * this is what login was doing anyway.
257 * soon we rewrite getty completely.
258 */
259 set_ttydefaults(0);
a7b4ee2b 260 execle(LO, "login", "-p", name, (char *) 0, env);
e40c2ab7 261 syslog(LOG_ERR, "%s: %m", LO);
21017259
SL
262 exit(1);
263 }
264 alarm(0);
265 signal(SIGALRM, SIG_DFL);
14f797c6 266 signal(SIGINT, SIG_IGN);
21017259
SL
267 if (NX && *NX)
268 tname = NX;
269 }
270}
271
34129485 272static int
21017259
SL
273getname()
274{
63530824 275 register int c;
21017259 276 register char *np;
21017259
SL
277 char cs;
278
14f797c6 279 /*
76ba6586 280 * Interrupt may happen if we use CBREAK mode
14f797c6
RE
281 */
282 if (setjmp(intrupt)) {
283 signal(SIGINT, SIG_IGN);
284 return (0);
285 }
286 signal(SIGINT, interrupt);
21017259
SL
287 tmode.sg_flags = setflags(0);
288 ioctl(0, TIOCSETP, &tmode);
289 tmode.sg_flags = setflags(1);
290 prompt();
b3afc78c 291 if (PF > 0) {
f0628629 292 oflush();
b3afc78c
SL
293 sleep(PF);
294 PF = 0;
295 }
21017259 296 ioctl(0, TIOCSETP, &tmode);
63530824 297 crmod = digit = lower = upper = 0;
21017259
SL
298 np = name;
299 for (;;) {
14f797c6 300 oflush();
63530824 301 if (read(STDIN_FILENO, &cs, 1) <= 0)
21017259
SL
302 exit(0);
303 if ((c = cs&0177) == 0)
304 return (0);
76ba6586 305 if (c == EOT)
21017259 306 exit(1);
a7b4ee2b
RC
307 if (c == '\r' || c == '\n' || np >= &name[sizeof name]) {
308 putf("\r\n");
21017259 309 break;
a7b4ee2b 310 }
a4f3e1c7 311 if (islower(c))
63530824 312 lower = 1;
a4f3e1c7 313 else if (isupper(c))
63530824 314 upper = 1;
a7b4ee2b 315 else if (c == ERASE || c == '#' || c == '\b') {
21017259
SL
316 if (np > name) {
317 np--;
318 if (tmode.sg_ospeed >= B1200)
319 puts("\b \b");
320 else
321 putchr(cs);
322 }
323 continue;
76ba6586 324 } else if (c == KILL || c == '@') {
21017259
SL
325 putchr(cs);
326 putchr('\r');
327 if (tmode.sg_ospeed < B1200)
328 putchr('\n');
329 /* this is the way they do it down under ... */
330 else if (np > name)
331 puts(" \r");
332 prompt();
333 np = name;
334 continue;
a4f3e1c7 335 } else if (isdigit(c))
21017259 336 digit++;
a7b4ee2b 337 if (IG && (c <= ' ' || c > 0176))
21017259
SL
338 continue;
339 *np++ = c;
340 putchr(cs);
341 }
14f797c6 342 signal(SIGINT, SIG_IGN);
21017259
SL
343 *np = 0;
344 if (c == '\r')
63530824 345 crmod = 1;
21017259
SL
346 if (upper && !lower && !LC || UC)
347 for (np = name; *np; np++)
348 if (isupper(*np))
349 *np = tolower(*np);
350 return (1);
351}
352
353static
354short tmspc10[] = {
355 0, 2000, 1333, 909, 743, 666, 500, 333, 166, 83, 55, 41, 20, 10, 5, 15
356};
357
34129485 358static void
21017259
SL
359putpad(s)
360 register char *s;
361{
362 register pad = 0;
363 register mspc10;
364
365 if (isdigit(*s)) {
366 while (isdigit(*s)) {
367 pad *= 10;
368 pad += *s++ - '0';
369 }
370 pad *= 10;
371 if (*s == '.' && isdigit(s[1])) {
372 pad += s[1] - '0';
373 s += 2;
374 }
375 }
376
377 puts(s);
378 /*
379 * If no delay needed, or output speed is
380 * not comprehensible, then don't try to delay.
381 */
382 if (pad == 0)
383 return;
384 if (tmode.sg_ospeed <= 0 ||
385 tmode.sg_ospeed >= (sizeof tmspc10 / sizeof tmspc10[0]))
386 return;
387
388 /*
63530824 389 * Round up by a half a character frame, and then do the delay.
21017259 390 * Too bad there are no user program accessible programmed delays.
63530824
KB
391 * Transmitting pad characters slows many terminals down and also
392 * loads the system.
21017259
SL
393 */
394 mspc10 = tmspc10[tmode.sg_ospeed];
395 pad += mspc10 / 2;
396 for (pad /= mspc10; pad > 0; pad--)
397 putchr(*PC);
398}
399
34129485 400static void
21017259
SL
401puts(s)
402 register char *s;
403{
21017259
SL
404 while (*s)
405 putchr(*s++);
406}
407
14f797c6
RE
408char outbuf[OBUFSIZ];
409int obufcnt = 0;
410
34129485 411static void
21017259 412putchr(cc)
34129485 413 int cc;
21017259
SL
414{
415 char c;
416
417 c = cc;
0fb2e124
WN
418 if (!NP) {
419 c |= partab[c&0177] & 0200;
420 if (OP)
421 c ^= 0200;
422 }
14f797c6
RE
423 if (!UB) {
424 outbuf[obufcnt++] = c;
425 if (obufcnt >= OBUFSIZ)
426 oflush();
427 } else
63530824 428 write(STDOUT_FILENO, &c, 1);
14f797c6
RE
429}
430
34129485 431static void
14f797c6
RE
432oflush()
433{
434 if (obufcnt)
63530824 435 write(STDOUT_FILENO, outbuf, obufcnt);
14f797c6 436 obufcnt = 0;
21017259
SL
437}
438
34129485 439static void
21017259
SL
440prompt()
441{
442
443 putf(LM);
444 if (CO)
445 putchr('\n');
446}
447
34129485 448static void
21017259
SL
449putf(cp)
450 register char *cp;
451{
452 extern char editedhost[];
63530824 453 time_t t;
87b3dbaf 454 char *slash, db[100];
21017259
SL
455
456 while (*cp) {
457 if (*cp != '%') {
458 putchr(*cp++);
459 continue;
460 }
461 switch (*++cp) {
462
a7b4ee2b 463 case 't':
34129485 464 slash = strrchr(ttyn, '/');
a7b4ee2b
RC
465 if (slash == (char *) 0)
466 puts(ttyn);
467 else
468 puts(&slash[1]);
469 break;
470
21017259
SL
471 case 'h':
472 puts(editedhost);
473 break;
474
87b3dbaf 475 case 'd': {
dfb7eb81 476 static char fmt[] = "%l:% %P on %A, %d %B %Y";
87b3dbaf
KB
477
478 fmt[4] = 'M'; /* I *hate* SCCS... */
63530824 479 (void)time(&t);
87b3dbaf 480 (void)strftime(db, sizeof(db), fmt, localtime(&t));
63530824 481 puts(db);
1dec3e0e 482 break;
87b3dbaf 483 }
1dec3e0e 484
21017259
SL
485 case '%':
486 putchr('%');
487 break;
488 }
489 cp++;
490 }
491}