]> ncurses.scripts.mit.edu Git - ncurses.git/blob - progs/tset.c
ncurses 5.9 - patch 20131116
[ncurses.git] / progs / tset.c
1 /****************************************************************************
2  * Copyright (c) 1998-2012,2013 Free Software Foundation, Inc.              *
3  *                                                                          *
4  * Permission is hereby granted, free of charge, to any person obtaining a  *
5  * copy of this software and associated documentation files (the            *
6  * "Software"), to deal in the Software without restriction, including      *
7  * without limitation the rights to use, copy, modify, merge, publish,      *
8  * distribute, distribute with modifications, sublicense, and/or sell       *
9  * copies of the Software, and to permit persons to whom the Software is    *
10  * furnished to do so, subject to the following conditions:                 *
11  *                                                                          *
12  * The above copyright notice and this permission notice shall be included  *
13  * in all copies or substantial portions of the Software.                   *
14  *                                                                          *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
16  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
17  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
18  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
19  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
20  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
21  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
22  *                                                                          *
23  * Except as contained in this notice, the name(s) of the above copyright   *
24  * holders shall not be used in advertising or otherwise to promote the     *
25  * sale, use or other dealings in this Software without prior written       *
26  * authorization.                                                           *
27  ****************************************************************************/
28
29 /****************************************************************************
30  *  Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995               *
31  *     and: Eric S. Raymond <esr@snark.thyrsus.com>                         *
32  *     and: Thomas E. Dickey                        1996-on                 *
33  ****************************************************************************/
34
35 /*
36  * Notes:
37  * The initial adaptation from 4.4BSD Lite sources in September 1995 used 686
38  * lines from that version, and made changes/additions for 150 lines.  There
39  * was no reformatting, so with/without ignoring whitespace, the amount of
40  * change is the same.
41  *
42  * Comparing with current (2009) source, excluding this comment:
43  * a) 209 lines match identically to the 4.4BSD Lite sources, with 771 lines
44  *    changed/added.
45  * a) Ignoring whitespace, the current version still uses 516 lines from the
46  *    4.4BSD Lite sources, with 402 lines changed/added.
47  *
48  * Raymond's original comment on this follows...
49  */
50
51 /*
52  * tset.c - terminal initialization utility
53  *
54  * This code was mostly swiped from 4.4BSD tset, with some obsolescent
55  * cruft removed and substantial portions rewritten.  A Regents of the
56  * University of California copyright applies to some portions of the
57  * code, and is reproduced below:
58  */
59 /*-
60  * Copyright (c) 1980, 1991, 1993
61  *      The Regents of the University of California.  All rights reserved.
62  *
63  * Redistribution and use in source and binary forms, with or without
64  * modification, are permitted provided that the following conditions
65  * are met:
66  * 1. Redistributions of source code must retain the above copyright
67  *    notice, this list of conditions and the following disclaimer.
68  * 2. Redistributions in binary form must reproduce the above copyright
69  *    notice, this list of conditions and the following disclaimer in the
70  *    documentation and/or other materials provided with the distribution.
71  * 3. Neither the name of the University nor the names of its contributors
72  *    may be used to endorse or promote products derived from this software
73  *    without specific prior written permission.
74  *
75  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
76  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
77  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
78  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
79  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
80  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
81  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
82  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
83  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
84  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
85  * SUCH DAMAGE.
86  */
87
88 #define USE_LIBTINFO
89 #define __INTERNAL_CAPS_VISIBLE /* we need to see has_hardware_tabs */
90 #include <progs.priv.h>
91
92 #include <errno.h>
93 #include <stdio.h>
94 #include <termcap.h>
95 #include <fcntl.h>
96
97 #if HAVE_GETTTYNAM && HAVE_TTYENT_H
98 #include <ttyent.h>
99 #endif
100 #ifdef NeXT
101 char *ttyname(int fd);
102 #endif
103
104 #if HAVE_SIZECHANGE
105 # if !defined(sun) || !TERMIOS
106 #  if HAVE_SYS_IOCTL_H
107 #   include <sys/ioctl.h>
108 #  endif
109 # endif
110 #endif
111
112 #if NEED_PTEM_H
113 /* they neglected to define struct winsize in termios.h -- it's only
114    in termio.h  */
115 #include <sys/stream.h>
116 #include <sys/ptem.h>
117 #endif
118
119 #include <dump_entry.h>
120 #include <transform.h>
121
122 MODULE_ID("$Id: tset.c,v 1.92 2013/10/12 22:17:20 tom Exp $")
123
124 /*
125  * SCO defines TIOCGSIZE and the corresponding struct.  Other systems (SunOS,
126  * Solaris, IRIX) define TIOCGWINSZ and struct winsize.
127  */
128 #ifdef TIOCGSIZE
129 # define IOCTL_GET_WINSIZE TIOCGSIZE
130 # define IOCTL_SET_WINSIZE TIOCSSIZE
131 # define STRUCT_WINSIZE struct ttysize
132 # define WINSIZE_ROWS(n) n.ts_lines
133 # define WINSIZE_COLS(n) n.ts_cols
134 #else
135 # ifdef TIOCGWINSZ
136 #  define IOCTL_GET_WINSIZE TIOCGWINSZ
137 #  define IOCTL_SET_WINSIZE TIOCSWINSZ
138 #  define STRUCT_WINSIZE struct winsize
139 #  define WINSIZE_ROWS(n) n.ws_row
140 #  define WINSIZE_COLS(n) n.ws_col
141 # endif
142 #endif
143
144 #ifndef environ
145 extern char **environ;
146 #endif
147
148 #undef CTRL
149 #define CTRL(x) ((x) & 0x1f)
150
151 static void failed(const char *) GCC_NORETURN;
152 static void exit_error(void) GCC_NORETURN;
153 static void err(const char *,...) GCC_NORETURN;
154
155 const char *_nc_progname = "tset";
156
157 static TTY mode, oldmode, original;
158
159 static bool opt_c;              /* set control-chars */
160 static bool opt_w;              /* set window-size */
161
162 static bool can_restore = FALSE;
163 static bool isreset = FALSE;    /* invoked as reset */
164 static int terasechar = -1;     /* new erase character */
165 static int intrchar = -1;       /* new interrupt character */
166 static int tkillchar = -1;      /* new kill character */
167
168 #if HAVE_SIZECHANGE
169 static int tlines, tcolumns;    /* window size */
170 #endif
171
172 #define LOWERCASE(c) ((isalpha(UChar(c)) && isupper(UChar(c))) ? tolower(UChar(c)) : (c))
173
174 static int
175 CaselessCmp(const char *a, const char *b)
176 {                               /* strcasecmp isn't portable */
177     while (*a && *b) {
178         int cmp = LOWERCASE(*a) - LOWERCASE(*b);
179         if (cmp != 0)
180             break;
181         a++, b++;
182     }
183     return LOWERCASE(*a) - LOWERCASE(*b);
184 }
185
186 static void
187 exit_error(void)
188 {
189     if (can_restore)
190         SET_TTY(STDERR_FILENO, &original);
191     (void) fprintf(stderr, "\n");
192     fflush(stderr);
193     ExitProgram(EXIT_FAILURE);
194     /* NOTREACHED */
195 }
196
197 static void
198 err(const char *fmt,...)
199 {
200     va_list ap;
201     va_start(ap, fmt);
202     (void) fprintf(stderr, "%s: ", _nc_progname);
203     (void) vfprintf(stderr, fmt, ap);
204     va_end(ap);
205     exit_error();
206     /* NOTREACHED */
207 }
208
209 static void
210 failed(const char *msg)
211 {
212     char temp[BUFSIZ];
213     size_t len = strlen(_nc_progname) + 2;
214
215     if ((int) len < (int) sizeof(temp) - 12) {
216         _nc_STRCPY(temp, _nc_progname, sizeof(temp));
217         _nc_STRCAT(temp, ": ", sizeof(temp));
218     } else {
219         _nc_STRCPY(temp, "tset: ", sizeof(temp));
220     }
221     perror(strncat(temp, msg, sizeof(temp) - strlen(temp) - 2));
222     exit_error();
223     /* NOTREACHED */
224 }
225
226 static void
227 cat(char *file)
228 {
229     FILE *fp;
230     size_t nr;
231     char buf[BUFSIZ];
232
233     if ((fp = fopen(file, "r")) == 0)
234         failed(file);
235
236     while ((nr = fread(buf, sizeof(char), sizeof(buf), fp)) != 0)
237         if (fwrite(buf, sizeof(char), nr, stderr) != nr)
238               failed("write to stderr");
239     fclose(fp);
240 }
241
242 static int
243 outc(int c)
244 {
245     return putc(c, stderr);
246 }
247
248 /* Prompt the user for a terminal type. */
249 static const char *
250 askuser(const char *dflt)
251 {
252     static char answer[256];
253     char *p;
254
255     /* We can get recalled; if so, don't continue uselessly. */
256     clearerr(stdin);
257     if (feof(stdin) || ferror(stdin)) {
258         (void) fprintf(stderr, "\n");
259         exit_error();
260         /* NOTREACHED */
261     }
262     for (;;) {
263         if (dflt)
264             (void) fprintf(stderr, "Terminal type? [%s] ", dflt);
265         else
266             (void) fprintf(stderr, "Terminal type? ");
267         (void) fflush(stderr);
268
269         if (fgets(answer, sizeof(answer), stdin) == 0) {
270             if (dflt == 0) {
271                 exit_error();
272                 /* NOTREACHED */
273             }
274             return (dflt);
275         }
276
277         if ((p = strchr(answer, '\n')) != 0)
278             *p = '\0';
279         if (answer[0])
280             return (answer);
281         if (dflt != 0)
282             return (dflt);
283     }
284 }
285
286 /**************************************************************************
287  *
288  * Mapping logic begins here
289  *
290  **************************************************************************/
291
292 /* Baud rate conditionals for mapping. */
293 #define GT              0x01
294 #define EQ              0x02
295 #define LT              0x04
296 #define NOT             0x08
297 #define GE              (GT | EQ)
298 #define LE              (LT | EQ)
299
300 typedef struct map {
301     struct map *next;           /* Linked list of maps. */
302     const char *porttype;       /* Port type, or "" for any. */
303     const char *type;           /* Terminal type to select. */
304     int conditional;            /* Baud rate conditionals bitmask. */
305     int speed;                  /* Baud rate to compare against. */
306 } MAP;
307
308 static MAP *cur, *maplist;
309
310 typedef struct speeds {
311     const char *string;
312     int speed;
313 } SPEEDS;
314
315 static const SPEEDS speeds[] =
316 {
317     {"0", B0},
318     {"50", B50},
319     {"75", B75},
320     {"110", B110},
321     {"134", B134},
322     {"134.5", B134},
323     {"150", B150},
324     {"200", B200},
325     {"300", B300},
326     {"600", B600},
327     {"1200", B1200},
328     {"1800", B1800},
329     {"2400", B2400},
330     {"4800", B4800},
331     {"9600", B9600},
332     /* sgttyb may define up to this point */
333 #ifdef B19200
334     {"19200", B19200},
335 #endif
336 #ifdef B38400
337     {"38400", B38400},
338 #endif
339 #ifdef B19200
340     {"19200", B19200},
341 #endif
342 #ifdef B38400
343     {"38400", B38400},
344 #endif
345 #ifdef B19200
346     {"19200", B19200},
347 #else
348 #ifdef EXTA
349     {"19200", EXTA},
350 #endif
351 #endif
352 #ifdef B38400
353     {"38400", B38400},
354 #else
355 #ifdef EXTB
356     {"38400", EXTB},
357 #endif
358 #endif
359 #ifdef B57600
360     {"57600", B57600},
361 #endif
362 #ifdef B115200
363     {"115200", B115200},
364 #endif
365 #ifdef B230400
366     {"230400", B230400},
367 #endif
368 #ifdef B460800
369     {"460800", B460800},
370 #endif
371     {(char *) 0, 0}
372 };
373
374 static int
375 tbaudrate(char *rate)
376 {
377     const SPEEDS *sp;
378     int found = FALSE;
379
380     /* The baudrate number can be preceded by a 'B', which is ignored. */
381     if (*rate == 'B')
382         ++rate;
383
384     for (sp = speeds; sp->string; ++sp) {
385         if (!CaselessCmp(rate, sp->string)) {
386             found = TRUE;
387             break;
388         }
389     }
390     if (!found)
391         err("unknown baud rate %s", rate);
392     return (sp->speed);
393 }
394
395 /*
396  * Syntax for -m:
397  * [port-type][test baudrate]:terminal-type
398  * The baud rate tests are: >, <, @, =, !
399  */
400 static void
401 add_mapping(const char *port, char *arg)
402 {
403     MAP *mapp;
404     char *copy, *p;
405     const char *termp;
406     char *base = 0;
407
408     copy = strdup(arg);
409     mapp = typeMalloc(MAP, 1);
410     if (copy == 0 || mapp == 0)
411         failed("malloc");
412
413     assert(copy != 0);
414     assert(mapp != 0);
415
416     mapp->next = 0;
417     if (maplist == 0)
418         cur = maplist = mapp;
419     else {
420         cur->next = mapp;
421         cur = mapp;
422     }
423
424     mapp->porttype = arg;
425     mapp->conditional = 0;
426
427     arg = strpbrk(arg, "><@=!:");
428
429     if (arg == 0) {             /* [?]term */
430         mapp->type = mapp->porttype;
431         mapp->porttype = 0;
432         goto done;
433     }
434
435     if (arg == mapp->porttype)  /* [><@=! baud]:term */
436         termp = mapp->porttype = 0;
437     else
438         termp = base = arg;
439
440     for (;; ++arg) {            /* Optional conditionals. */
441         switch (*arg) {
442         case '<':
443             if (mapp->conditional & GT)
444                 goto badmopt;
445             mapp->conditional |= LT;
446             break;
447         case '>':
448             if (mapp->conditional & LT)
449                 goto badmopt;
450             mapp->conditional |= GT;
451             break;
452         case '@':
453         case '=':               /* Not documented. */
454             mapp->conditional |= EQ;
455             break;
456         case '!':
457             mapp->conditional |= NOT;
458             break;
459         default:
460             goto next;
461         }
462     }
463
464   next:
465     if (*arg == ':') {
466         if (mapp->conditional)
467             goto badmopt;
468         ++arg;
469     } else {                    /* Optional baudrate. */
470         arg = strchr(p = arg, ':');
471         if (arg == 0)
472             goto badmopt;
473         *arg++ = '\0';
474         mapp->speed = tbaudrate(p);
475     }
476
477     mapp->type = arg;
478
479     /* Terminate porttype, if specified. */
480     if (termp != 0)
481         *base = '\0';
482
483     /* If a NOT conditional, reverse the test. */
484     if (mapp->conditional & NOT)
485         mapp->conditional = ~mapp->conditional & (EQ | GT | LT);
486
487     /* If user specified a port with an option flag, set it. */
488   done:
489     if (port) {
490         if (mapp->porttype) {
491           badmopt:
492             err("illegal -m option format: %s", copy);
493         }
494         mapp->porttype = port;
495     }
496     free(copy);
497 #ifdef MAPDEBUG
498     (void) printf("port: %s\n", mapp->porttype ? mapp->porttype : "ANY");
499     (void) printf("type: %s\n", mapp->type);
500     (void) printf("conditional: ");
501     p = "";
502     if (mapp->conditional & GT) {
503         (void) printf("GT");
504         p = "/";
505     }
506     if (mapp->conditional & EQ) {
507         (void) printf("%sEQ", p);
508         p = "/";
509     }
510     if (mapp->conditional & LT)
511         (void) printf("%sLT", p);
512     (void) printf("\nspeed: %d\n", mapp->speed);
513 #endif
514 }
515
516 /*
517  * Return the type of terminal to use for a port of type 'type', as specified
518  * by the first applicable mapping in 'map'.  If no mappings apply, return
519  * 'type'.
520  */
521 static const char *
522 mapped(const char *type)
523 {
524     MAP *mapp;
525     int match;
526
527     for (mapp = maplist; mapp; mapp = mapp->next)
528         if (mapp->porttype == 0 || !strcmp(mapp->porttype, type)) {
529             switch (mapp->conditional) {
530             case 0:             /* No test specified. */
531                 match = TRUE;
532                 break;
533             case EQ:
534                 match = ((int) ospeed == mapp->speed);
535                 break;
536             case GE:
537                 match = ((int) ospeed >= mapp->speed);
538                 break;
539             case GT:
540                 match = ((int) ospeed > mapp->speed);
541                 break;
542             case LE:
543                 match = ((int) ospeed <= mapp->speed);
544                 break;
545             case LT:
546                 match = ((int) ospeed < mapp->speed);
547                 break;
548             default:
549                 match = FALSE;
550             }
551             if (match)
552                 return (mapp->type);
553         }
554     /* No match found; return given type. */
555     return (type);
556 }
557
558 /**************************************************************************
559  *
560  * Entry fetching
561  *
562  **************************************************************************/
563
564 /*
565  * Figure out what kind of terminal we're dealing with, and then read in
566  * its termcap entry.
567  */
568 static const char *
569 get_termcap_entry(char *userarg)
570 {
571     int errret;
572     char *p;
573     const char *ttype;
574 #if HAVE_GETTTYNAM
575     struct ttyent *t;
576 #else
577     FILE *fp;
578 #endif
579     char *ttypath;
580
581     if (userarg) {
582         ttype = userarg;
583         goto found;
584     }
585
586     /* Try the environment. */
587     if ((ttype = getenv("TERM")) != 0)
588         goto map;
589
590     if ((ttypath = ttyname(STDERR_FILENO)) != 0) {
591         p = _nc_basename(ttypath);
592 #if HAVE_GETTTYNAM
593         /*
594          * We have the 4.3BSD library call getttynam(3); that means
595          * there's an /etc/ttys to look up device-to-type mappings in.
596          * Try ttyname(3); check for dialup or other mapping.
597          */
598         if ((t = getttynam(p))) {
599             ttype = t->ty_type;
600             goto map;
601         }
602 #else
603         if ((fp = fopen("/etc/ttytype", "r")) != 0
604             || (fp = fopen("/etc/ttys", "r")) != 0) {
605             char buffer[BUFSIZ];
606             char *s, *t, *d;
607
608             while (fgets(buffer, sizeof(buffer) - 1, fp) != 0) {
609                 for (s = buffer, t = d = 0; *s; s++) {
610                     if (isspace(UChar(*s)))
611                         *s = '\0';
612                     else if (t == 0)
613                         t = s;
614                     else if (d == 0 && s != buffer && s[-1] == '\0')
615                         d = s;
616                 }
617                 if (t != 0 && d != 0 && !strcmp(d, p)) {
618                     ttype = strdup(t);
619                     fclose(fp);
620                     goto map;
621                 }
622             }
623             fclose(fp);
624         }
625 #endif /* HAVE_GETTTYNAM */
626     }
627
628     /* If still undefined, use "unknown". */
629     ttype = "unknown";
630
631   map:ttype = mapped(ttype);
632
633     /*
634      * If not a path, remove TERMCAP from the environment so we get a
635      * real entry from /etc/termcap.  This prevents us from being fooled
636      * by out of date stuff in the environment.
637      */
638   found:if ((p = getenv("TERMCAP")) != 0 && !_nc_is_abs_path(p)) {
639         /* 'unsetenv("TERMCAP")' is not portable.
640          * The 'environ' array is better.
641          */
642         int n;
643         for (n = 0; environ[n] != 0; n++) {
644             if (!strncmp("TERMCAP=", environ[n], 8)) {
645                 while ((environ[n] = environ[n + 1]) != 0) {
646                     n++;
647                 }
648                 break;
649             }
650         }
651     }
652
653     /*
654      * ttype now contains a pointer to the type of the terminal.
655      * If the first character is '?', ask the user.
656      */
657     if (ttype[0] == '?') {
658         if (ttype[1] != '\0')
659             ttype = askuser(ttype + 1);
660         else
661             ttype = askuser(0);
662     }
663     /* Find the terminfo entry.  If it doesn't exist, ask the user. */
664     while (setupterm((NCURSES_CONST char *) ttype, STDOUT_FILENO, &errret)
665            != OK) {
666         if (errret == 0) {
667             (void) fprintf(stderr, "%s: unknown terminal type %s\n",
668                            _nc_progname, ttype);
669             ttype = 0;
670         } else {
671             (void) fprintf(stderr,
672                            "%s: can't initialize terminal type %s (error %d)\n",
673                            _nc_progname, ttype, errret);
674             ttype = 0;
675         }
676         ttype = askuser(ttype);
677     }
678 #if BROKEN_LINKER
679     tgetflag("am");             /* force lib_termcap.o to be linked for 'ospeed' */
680 #endif
681     return (ttype);
682 }
683
684 /**************************************************************************
685  *
686  * Mode-setting logic
687  *
688  **************************************************************************/
689
690 /* some BSD systems have these built in, some systems are missing
691  * one or more definitions. The safest solution is to override unless the
692  * commonly-altered ones are defined.
693  */
694 #if !(defined(CERASE) && defined(CINTR) && defined(CKILL) && defined(CQUIT))
695 #undef CEOF
696 #undef CERASE
697 #undef CINTR
698 #undef CKILL
699 #undef CLNEXT
700 #undef CRPRNT
701 #undef CQUIT
702 #undef CSTART
703 #undef CSTOP
704 #undef CSUSP
705 #endif
706
707 /* control-character defaults */
708 #ifndef CEOF
709 #define CEOF    CTRL('D')
710 #endif
711 #ifndef CERASE
712 #define CERASE  CTRL('H')
713 #endif
714 #ifndef CINTR
715 #define CINTR   127             /* ^? */
716 #endif
717 #ifndef CKILL
718 #define CKILL   CTRL('U')
719 #endif
720 #ifndef CLNEXT
721 #define CLNEXT  CTRL('v')
722 #endif
723 #ifndef CRPRNT
724 #define CRPRNT  CTRL('r')
725 #endif
726 #ifndef CQUIT
727 #define CQUIT   CTRL('\\')
728 #endif
729 #ifndef CSTART
730 #define CSTART  CTRL('Q')
731 #endif
732 #ifndef CSTOP
733 #define CSTOP   CTRL('S')
734 #endif
735 #ifndef CSUSP
736 #define CSUSP   CTRL('Z')
737 #endif
738
739 #if defined(_POSIX_VDISABLE)
740 #define DISABLED(val)   (((_POSIX_VDISABLE != -1) \
741                        && ((val) == _POSIX_VDISABLE)) \
742                       || ((val) <= 0))
743 #else
744 #define DISABLED(val)   ((int)(val) <= 0)
745 #endif
746
747 #define CHK(val, dft)   (DISABLED(val) ? dft : val)
748
749 static bool set_tabs(void);
750
751 /*
752  * Reset the terminal mode bits to a sensible state.  Very useful after
753  * a child program dies in raw mode.
754  */
755 static void
756 reset_mode(void)
757 {
758 #ifdef TERMIOS
759     tcgetattr(STDERR_FILENO, &mode);
760 #else
761     stty(STDERR_FILENO, &mode);
762 #endif
763
764 #ifdef TERMIOS
765 #if defined(VDISCARD) && defined(CDISCARD)
766     mode.c_cc[VDISCARD] = CHK(mode.c_cc[VDISCARD], CDISCARD);
767 #endif
768     mode.c_cc[VEOF] = CHK(mode.c_cc[VEOF], CEOF);
769     mode.c_cc[VERASE] = CHK(mode.c_cc[VERASE], CERASE);
770 #if defined(VFLUSH) && defined(CFLUSH)
771     mode.c_cc[VFLUSH] = CHK(mode.c_cc[VFLUSH], CFLUSH);
772 #endif
773     mode.c_cc[VINTR] = CHK(mode.c_cc[VINTR], CINTR);
774     mode.c_cc[VKILL] = CHK(mode.c_cc[VKILL], CKILL);
775 #if defined(VLNEXT) && defined(CLNEXT)
776     mode.c_cc[VLNEXT] = CHK(mode.c_cc[VLNEXT], CLNEXT);
777 #endif
778     mode.c_cc[VQUIT] = CHK(mode.c_cc[VQUIT], CQUIT);
779 #if defined(VREPRINT) && defined(CRPRNT)
780     mode.c_cc[VREPRINT] = CHK(mode.c_cc[VREPRINT], CRPRNT);
781 #endif
782 #if defined(VSTART) && defined(CSTART)
783     mode.c_cc[VSTART] = CHK(mode.c_cc[VSTART], CSTART);
784 #endif
785 #if defined(VSTOP) && defined(CSTOP)
786     mode.c_cc[VSTOP] = CHK(mode.c_cc[VSTOP], CSTOP);
787 #endif
788 #if defined(VSUSP) && defined(CSUSP)
789     mode.c_cc[VSUSP] = CHK(mode.c_cc[VSUSP], CSUSP);
790 #endif
791 #if defined(VWERASE) && defined(CWERASE)
792     mode.c_cc[VWERASE] = CHK(mode.c_cc[VWERASE], CWERASE);
793 #endif
794
795     mode.c_iflag &= ~((unsigned) (IGNBRK | PARMRK | INPCK | ISTRIP | INLCR | IGNCR
796 #ifdef IUCLC
797                                   | IUCLC
798 #endif
799 #ifdef IXANY
800                                   | IXANY
801 #endif
802                                   | IXOFF));
803
804     mode.c_iflag |= (BRKINT | IGNPAR | ICRNL | IXON
805 #ifdef IMAXBEL
806                      | IMAXBEL
807 #endif
808         );
809
810     mode.c_oflag &= ~((unsigned) (0
811 #ifdef OLCUC
812                                   | OLCUC
813 #endif
814 #ifdef OCRNL
815                                   | OCRNL
816 #endif
817 #ifdef ONOCR
818                                   | ONOCR
819 #endif
820 #ifdef ONLRET
821                                   | ONLRET
822 #endif
823 #ifdef OFILL
824                                   | OFILL
825 #endif
826 #ifdef OFDEL
827                                   | OFDEL
828 #endif
829 #ifdef NLDLY
830                                   | NLDLY
831 #endif
832 #ifdef CRDLY
833                                   | CRDLY
834 #endif
835 #ifdef TABDLY
836                                   | TABDLY
837 #endif
838 #ifdef BSDLY
839                                   | BSDLY
840 #endif
841 #ifdef VTDLY
842                                   | VTDLY
843 #endif
844 #ifdef FFDLY
845                                   | FFDLY
846 #endif
847                       ));
848
849     mode.c_oflag |= (OPOST
850 #ifdef ONLCR
851                      | ONLCR
852 #endif
853         );
854
855     mode.c_cflag &= ~((unsigned) (CSIZE | CSTOPB | PARENB | PARODD | CLOCAL));
856     mode.c_cflag |= (CS8 | CREAD);
857     mode.c_lflag &= ~((unsigned) (ECHONL | NOFLSH
858 #ifdef TOSTOP
859                                   | TOSTOP
860 #endif
861 #ifdef ECHOPTR
862                                   | ECHOPRT
863 #endif
864 #ifdef XCASE
865                                   | XCASE
866 #endif
867                       ));
868
869     mode.c_lflag |= (ISIG | ICANON | ECHO | ECHOE | ECHOK
870 #ifdef ECHOCTL
871                      | ECHOCTL
872 #endif
873 #ifdef ECHOKE
874                      | ECHOKE
875 #endif
876         );
877 #endif
878
879     SET_TTY(STDERR_FILENO, &mode);
880 }
881
882 /*
883  * Returns a "good" value for the erase character.  This is loosely based on
884  * the BSD4.4 logic.
885  */
886 #ifdef TERMIOS
887 static int
888 default_erase(void)
889 {
890     int result;
891
892     if (over_strike
893         && key_backspace != 0
894         && strlen(key_backspace) == 1)
895         result = key_backspace[0];
896     else
897         result = CERASE;
898
899     return result;
900 }
901 #endif
902
903 /*
904  * Update the values of the erase, interrupt, and kill characters in 'mode'.
905  *
906  * SVr4 tset (e.g., Solaris 2.5) only modifies the intr, quit or erase
907  * characters if they're unset, or if we specify them as options.  This differs
908  * from BSD 4.4 tset, which always sets erase.
909  */
910 static void
911 set_control_chars(void)
912 {
913 #ifdef TERMIOS
914     if (DISABLED(mode.c_cc[VERASE]) || terasechar >= 0) {
915         mode.c_cc[VERASE] = UChar((terasechar >= 0)
916                                   ? terasechar
917                                   : default_erase());
918     }
919
920     if (DISABLED(mode.c_cc[VINTR]) || intrchar >= 0) {
921         mode.c_cc[VINTR] = UChar((intrchar >= 0)
922                                  ? intrchar
923                                  : CINTR);
924     }
925
926     if (DISABLED(mode.c_cc[VKILL]) || tkillchar >= 0) {
927         mode.c_cc[VKILL] = UChar((tkillchar >= 0)
928                                  ? tkillchar
929                                  : CKILL);
930     }
931 #endif
932 }
933
934 /*
935  * Set up various conversions in 'mode', including parity, tabs, returns,
936  * echo, and case, according to the termcap entry.  If the program we're
937  * running was named with a leading upper-case character, map external
938  * uppercase to internal lowercase.
939  */
940 static void
941 set_conversions(void)
942 {
943 #ifdef __OBSOLETE__
944     /*
945      * Conversion logic for some *really* ancient terminal glitches,
946      * not supported in terminfo.  Left here for succeeding generations
947      * to marvel at.
948      */
949     if (tgetflag("UC")) {
950 #ifdef IUCLC
951         mode.c_iflag |= IUCLC;
952         mode.c_oflag |= OLCUC;
953 #endif
954     } else if (tgetflag("LC")) {
955 #ifdef IUCLC
956         mode.c_iflag &= ~IUCLC;
957         mode.c_oflag &= ~OLCUC;
958 #endif
959     }
960     mode.c_iflag &= ~(PARMRK | INPCK);
961     mode.c_lflag |= ICANON;
962     if (tgetflag("EP")) {
963         mode.c_cflag |= PARENB;
964         mode.c_cflag &= ~PARODD;
965     }
966     if (tgetflag("OP")) {
967         mode.c_cflag |= PARENB;
968         mode.c_cflag |= PARODD;
969     }
970 #endif /* __OBSOLETE__ */
971
972 #ifdef TERMIOS
973 #ifdef ONLCR
974     mode.c_oflag |= ONLCR;
975 #endif
976     mode.c_iflag |= ICRNL;
977     mode.c_lflag |= ECHO;
978 #ifdef OXTABS
979     mode.c_oflag |= OXTABS;
980 #endif /* OXTABS */
981
982     /* test used to be tgetflag("NL") */
983     if (newline != (char *) 0 && newline[0] == '\n' && !newline[1]) {
984         /* Newline, not linefeed. */
985 #ifdef ONLCR
986         mode.c_oflag &= ~((unsigned) ONLCR);
987 #endif
988         mode.c_iflag &= ~((unsigned) ICRNL);
989     }
990 #ifdef __OBSOLETE__
991     if (tgetflag("HD"))         /* Half duplex. */
992         mode.c_lflag &= ~ECHO;
993 #endif /* __OBSOLETE__ */
994 #ifdef OXTABS
995     /* test used to be tgetflag("pt") */
996     if (has_hardware_tabs)      /* Print tabs. */
997         mode.c_oflag &= ~OXTABS;
998 #endif /* OXTABS */
999     mode.c_lflag |= (ECHOE | ECHOK);
1000 #endif
1001 }
1002
1003 /* Output startup string. */
1004 static void
1005 set_init(void)
1006 {
1007     char *p;
1008     bool settle;
1009
1010 #ifdef __OBSOLETE__
1011     if (pad_char != (char *) 0) /* Get/set pad character. */
1012         PC = pad_char[0];
1013 #endif /* OBSOLETE */
1014
1015 #ifdef TAB3
1016     if (oldmode.c_oflag & (TAB3 | ONLCR | OCRNL | ONLRET)) {
1017         oldmode.c_oflag &= (TAB3 | ONLCR | OCRNL | ONLRET);
1018         SET_TTY(STDERR_FILENO, &oldmode);
1019     }
1020 #endif
1021     settle = set_tabs();
1022
1023     if (isreset) {
1024         if ((p = reset_1string) != 0) {
1025             tputs(p, 0, outc);
1026             settle = TRUE;
1027         }
1028         if ((p = reset_2string) != 0) {
1029             tputs(p, 0, outc);
1030             settle = TRUE;
1031         }
1032         /* What about rf, rs3, as per terminfo man page? */
1033         /* also might be nice to send rmacs, rmul, rmm */
1034         if ((p = reset_file) != 0
1035             || (p = init_file) != 0) {
1036             cat(p);
1037             settle = TRUE;
1038         }
1039     }
1040
1041     if (settle) {
1042         (void) putc('\r', stderr);
1043         (void) fflush(stderr);
1044         (void) napms(1000);     /* Settle the terminal. */
1045     }
1046 }
1047
1048 /*
1049  * Set the hardware tabs on the terminal, using the ct (clear all tabs),
1050  * st (set one tab) and ch (horizontal cursor addressing) capabilities.
1051  * This is done before if and is, so they can patch in case we blow this.
1052  * Return TRUE if we set any tab stops, FALSE if not.
1053  */
1054 static bool
1055 set_tabs(void)
1056 {
1057     if (set_tab && clear_all_tabs) {
1058         int c;
1059         int lim =
1060 #if HAVE_SIZECHANGE
1061         tcolumns
1062 #else
1063         columns
1064 #endif
1065          ;
1066
1067         (void) putc('\r', stderr);      /* Force to left margin. */
1068         tputs(clear_all_tabs, 0, outc);
1069
1070         for (c = 8; c < lim; c += 8) {
1071             /* Get to the right column.  In BSD tset, this
1072              * used to try a bunch of half-clever things
1073              * with cup and hpa, for an average saving of
1074              * somewhat less than two character times per
1075              * tab stop, less than .01 sec at 2400cps. We
1076              * lost all this cruft because it seemed to be
1077              * introducing some odd bugs.
1078              * -----------12345678----------- */
1079             (void) fputs("        ", stderr);
1080             tputs(set_tab, 0, outc);
1081         }
1082         putc('\r', stderr);
1083         return (TRUE);
1084     }
1085     return (FALSE);
1086 }
1087
1088 /**************************************************************************
1089  *
1090  * Main sequence
1091  *
1092  **************************************************************************/
1093
1094 /*
1095  * Tell the user if a control key has been changed from the default value.
1096  */
1097 #ifdef TERMIOS
1098 static void
1099 report(const char *name, int which, unsigned def)
1100 {
1101     unsigned older, newer;
1102     char *p;
1103
1104     newer = mode.c_cc[which];
1105     older = oldmode.c_cc[which];
1106
1107     if (older == newer && older == def)
1108         return;
1109
1110     (void) fprintf(stderr, "%s %s ", name, older == newer ? "is" : "set to");
1111
1112     if (DISABLED(newer))
1113         (void) fprintf(stderr, "undef.\n");
1114     /*
1115      * Check 'delete' before 'backspace', since the key_backspace value
1116      * is ambiguous.
1117      */
1118     else if (newer == 0177)
1119         (void) fprintf(stderr, "delete.\n");
1120     else if ((p = key_backspace) != 0
1121              && newer == (unsigned char) p[0]
1122              && p[1] == '\0')
1123         (void) fprintf(stderr, "backspace.\n");
1124     else if (newer < 040) {
1125         newer ^= 0100;
1126         (void) fprintf(stderr, "control-%c (^%c).\n", UChar(newer), UChar(newer));
1127     } else
1128         (void) fprintf(stderr, "%c.\n", UChar(newer));
1129 }
1130 #endif
1131
1132 /*
1133  * Convert the obsolete argument forms into something that getopt can handle.
1134  * This means that -e, -i and -k get default arguments supplied for them.
1135  */
1136 static void
1137 obsolete(char **argv)
1138 {
1139     for (; *argv; ++argv) {
1140         char *parm = argv[0];
1141
1142         if (parm[0] == '-' && parm[1] == '\0') {
1143             argv[0] = strdup("-q");
1144             continue;
1145         }
1146
1147         if ((parm[0] != '-')
1148             || (argv[1] && argv[1][0] != '-')
1149             || (parm[1] != 'e' && parm[1] != 'i' && parm[1] != 'k')
1150             || (parm[2] != '\0'))
1151             continue;
1152         switch (argv[0][1]) {
1153         case 'e':
1154             argv[0] = strdup("-e^H");
1155             break;
1156         case 'i':
1157             argv[0] = strdup("-i^C");
1158             break;
1159         case 'k':
1160             argv[0] = strdup("-k^U");
1161             break;
1162         }
1163     }
1164 }
1165
1166 static void
1167 usage(void)
1168 {
1169     static const char *tbl[] =
1170     {
1171         ""
1172         ,"Options:"
1173         ,"  -c          set control characters"
1174         ,"  -e ch       erase character"
1175         ,"  -I          no initialization strings"
1176         ,"  -i ch       interrupt character"
1177         ,"  -k ch       kill character"
1178         ,"  -m mapping  map identifier to type"
1179         ,"  -Q          do not output control key settings"
1180         ,"  -r          display term on stderr"
1181         ,"  -s          output TERM set command"
1182         ,"  -V          print curses-version"
1183         ,"  -w          set window-size"
1184     };
1185     unsigned n;
1186     (void) fprintf(stderr, "Usage: %s [options] [terminal]\n", _nc_progname);
1187     for (n = 0; n < sizeof(tbl) / sizeof(tbl[0]); ++n)
1188         fprintf(stderr, "%s\n", tbl[n]);
1189     exit_error();
1190     /* NOTREACHED */
1191 }
1192
1193 static char
1194 arg_to_char(void)
1195 {
1196     return (char) ((optarg[0] == '^' && optarg[1] != '\0')
1197                    ? ((optarg[1] == '?') ? '\177' : CTRL(optarg[1]))
1198                    : optarg[0]);
1199 }
1200
1201 int
1202 main(int argc, char **argv)
1203 {
1204     int ch, noinit, noset, quiet, Sflag, sflag, showterm;
1205     const char *p;
1206     const char *ttype;
1207
1208     obsolete(argv);
1209     noinit = noset = quiet = Sflag = sflag = showterm = 0;
1210     while ((ch = getopt(argc, argv, "a:cd:e:Ii:k:m:np:qQSrsVw")) != -1) {
1211         switch (ch) {
1212         case 'c':               /* set control-chars */
1213             opt_c = TRUE;
1214             break;
1215         case 'a':               /* OBSOLETE: map identifier to type */
1216             add_mapping("arpanet", optarg);
1217             break;
1218         case 'd':               /* OBSOLETE: map identifier to type */
1219             add_mapping("dialup", optarg);
1220             break;
1221         case 'e':               /* erase character */
1222             terasechar = arg_to_char();
1223             break;
1224         case 'I':               /* no initialization strings */
1225             noinit = 1;
1226             break;
1227         case 'i':               /* interrupt character */
1228             intrchar = arg_to_char();
1229             break;
1230         case 'k':               /* kill character */
1231             tkillchar = arg_to_char();
1232             break;
1233         case 'm':               /* map identifier to type */
1234             add_mapping(0, optarg);
1235             break;
1236         case 'n':               /* OBSOLETE: set new tty driver */
1237             break;
1238         case 'p':               /* OBSOLETE: map identifier to type */
1239             add_mapping("plugboard", optarg);
1240             break;
1241         case 'Q':               /* don't output control key settings */
1242             quiet = 1;
1243             break;
1244         case 'q':               /* display term only */
1245             noset = 1;
1246             break;
1247         case 'r':               /* display term on stderr */
1248             showterm = 1;
1249             break;
1250         case 'S':               /* OBSOLETE: output TERM & TERMCAP */
1251             Sflag = 1;
1252             break;
1253         case 's':               /* output TERM set command */
1254             sflag = 1;
1255             break;
1256         case 'V':               /* print curses-version */
1257             puts(curses_version());
1258             ExitProgram(EXIT_SUCCESS);
1259         case 'w':               /* set window-size */
1260             opt_w = TRUE;
1261             break;
1262         case '?':
1263         default:
1264             usage();
1265         }
1266     }
1267
1268     _nc_progname = _nc_rootname(*argv);
1269     argc -= optind;
1270     argv += optind;
1271
1272     if (argc > 1)
1273         usage();
1274
1275     if (!opt_c && !opt_w)
1276         opt_c = opt_w = TRUE;
1277
1278     if (GET_TTY(STDERR_FILENO, &mode) < 0)
1279         failed("standard error");
1280     can_restore = TRUE;
1281     original = oldmode = mode;
1282 #ifdef TERMIOS
1283     ospeed = (NCURSES_OSPEED) cfgetospeed(&mode);
1284 #else
1285     ospeed = (NCURSES_OSPEED) mode.sg_ospeed;
1286 #endif
1287
1288     if (same_program(_nc_progname, PROG_RESET)) {
1289         isreset = TRUE;
1290         reset_mode();
1291     }
1292
1293     (void) get_termcap_entry(*argv);
1294
1295     if (!noset) {
1296 #if HAVE_SIZECHANGE
1297         tcolumns = columns;
1298         tlines = lines;
1299
1300         if (opt_w) {
1301             STRUCT_WINSIZE win;
1302             /* Set window size if not set already */
1303             (void) ioctl(STDERR_FILENO, IOCTL_GET_WINSIZE, &win);
1304             if (WINSIZE_ROWS(win) == 0 &&
1305                 WINSIZE_COLS(win) == 0 &&
1306                 tlines > 0 && tcolumns > 0) {
1307                 WINSIZE_ROWS(win) = tlines;
1308                 WINSIZE_COLS(win) = tcolumns;
1309                 (void) ioctl(STDERR_FILENO, IOCTL_SET_WINSIZE, &win);
1310             }
1311         }
1312 #endif
1313         if (opt_c) {
1314             set_control_chars();
1315             set_conversions();
1316
1317             if (!noinit)
1318                 set_init();
1319
1320             /* Set the modes if they've changed. */
1321             if (memcmp(&mode, &oldmode, sizeof(mode))) {
1322                 SET_TTY(STDERR_FILENO, &mode);
1323             }
1324         }
1325     }
1326
1327     /* Get the terminal name from the entry. */
1328     ttype = _nc_first_name(cur_term->type.term_names);
1329
1330     if (noset)
1331         (void) printf("%s\n", ttype);
1332     else {
1333         if (showterm)
1334             (void) fprintf(stderr, "Terminal type is %s.\n", ttype);
1335         /*
1336          * If erase, kill and interrupt characters could have been
1337          * modified and not -Q, display the changes.
1338          */
1339 #ifdef TERMIOS
1340         if (!quiet) {
1341             report("Erase", VERASE, CERASE);
1342             report("Kill", VKILL, CKILL);
1343             report("Interrupt", VINTR, CINTR);
1344         }
1345 #endif
1346     }
1347
1348     if (Sflag)
1349         err("The -S option is not supported under terminfo.");
1350
1351     if (sflag) {
1352         int len;
1353         char *var;
1354         char *leaf;
1355         /*
1356          * Figure out what shell we're using.  A hack, we look for an
1357          * environmental variable SHELL ending in "csh".
1358          */
1359         if ((var = getenv("SHELL")) != 0
1360             && ((len = (int) strlen(leaf = _nc_basename(var))) >= 3)
1361             && !strcmp(leaf + len - 3, "csh"))
1362             p = "set noglob;\nsetenv TERM %s;\nunset noglob;\n";
1363         else
1364             p = "TERM=%s;\n";
1365         (void) printf(p, ttype);
1366     }
1367
1368     ExitProgram(EXIT_SUCCESS);
1369 }