]> ncurses.scripts.mit.edu Git - ncurses.git/blob - progs/tic.c
ncurses 5.9 - patch 20150523
[ncurses.git] / progs / tic.c
1 /****************************************************************************
2  * Copyright (c) 1998-2014,2015 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  *      tic.c --- Main program for terminfo compiler
37  *                      by Eric S. Raymond
38  *                      and Thomas E Dickey
39  *
40  */
41
42 #include <progs.priv.h>
43 #include <sys/stat.h>
44
45 #include <dump_entry.h>
46 #include <tparm_type.h>
47 #include <hashed_db.h>
48 #include <parametrized.h>
49 #include <transform.h>
50
51 MODULE_ID("$Id: tic.c,v 1.209 2015/04/04 14:53:41 tom Exp $")
52
53 #define STDIN_NAME "<stdin>"
54
55 const char *_nc_progname = "tic";
56
57 static FILE *log_fp;
58 static FILE *tmp_fp;
59 static bool capdump = FALSE;    /* running as infotocap? */
60 static bool infodump = FALSE;   /* running as captoinfo? */
61 static bool showsummary = FALSE;
62 static char **namelst = 0;
63 static const char *to_remove;
64
65 static void (*save_check_termtype) (TERMTYPE *, bool);
66 static void check_termtype(TERMTYPE *tt, bool);
67
68 static const char usage_string[] = "\
69 [-e names] \
70 [-o dir] \
71 [-R name] \
72 [-v[n]] \
73 [-V] \
74 [-w[n]] \
75 [-\
76 1\
77 a\
78 C\
79 D\
80 c\
81 f\
82 G\
83 g\
84 I\
85 K\
86 L\
87 N\
88 r\
89 s\
90 T\
91 t\
92 U\
93 x\
94 ] \
95 source-file\n";
96
97 #if NO_LEAKS
98 static void
99 free_namelist(char **src)
100 {
101     if (src != 0) {
102         int n;
103         for (n = 0; src[n] != 0; ++n)
104             free(src[n]);
105         free(src);
106     }
107 }
108 #endif
109
110 static void
111 cleanup(void)
112 {
113     int rc;
114
115 #if NO_LEAKS
116     free_namelist(namelst);
117 #endif
118     if (tmp_fp != 0)
119         fclose(tmp_fp);
120     if (to_remove != 0) {
121 #if HAVE_REMOVE
122         rc = remove(to_remove);
123 #else
124         rc = unlink(to_remove);
125 #endif
126         if (rc != 0)
127             perror(to_remove);
128     }
129 }
130
131 static void
132 failed(const char *msg)
133 {
134     perror(msg);
135     ExitProgram(EXIT_FAILURE);
136 }
137
138 static void
139 usage(void)
140 {
141 #define DATA(s) s "\n"
142     static const char options_string[] =
143     {
144         DATA("Options:")
145         DATA("  -1         format translation output one capability per line")
146 #if NCURSES_XNAMES
147         DATA("  -a         retain commented-out capabilities (sets -x also)")
148 #endif
149         DATA("  -C         translate entries to termcap source form")
150         DATA("  -D         print list of tic's database locations (first must be writable)")
151         DATA("  -c         check only, validate input without compiling or translating")
152         DATA("  -e<names>  translate/compile only entries named by comma-separated list")
153         DATA("  -f         format complex strings for readability")
154         DATA("  -G         format %{number} to %'char'")
155         DATA("  -g         format %'char' to %{number}")
156         DATA("  -I         translate entries to terminfo source form")
157         DATA("  -K         translate entries to termcap source form with BSD syntax")
158         DATA("  -L         translate entries to full terminfo source form")
159         DATA("  -N         disable smart defaults for source translation")
160         DATA("  -o<dir>    set output directory for compiled entry writes")
161         DATA("  -R<name>   restrict translation to given terminfo/termcap version")
162         DATA("  -r         force resolution of all use entries in source translation")
163         DATA("  -s         print summary statistics")
164         DATA("  -T         remove size-restrictions on compiled description")
165 #if NCURSES_XNAMES
166         DATA("  -t         suppress commented-out capabilities")
167 #endif
168         DATA("  -U         suppress post-processing of entries")
169         DATA("  -V         print version")
170         DATA("  -v[n]      set verbosity level")
171         DATA("  -w[n]      set format width for translation output")
172 #if NCURSES_XNAMES
173         DATA("  -x         treat unknown capabilities as user-defined")
174 #endif
175         DATA("")
176         DATA("Parameters:")
177         DATA("  <file>     file to translate or compile")
178     };
179 #undef DATA
180
181     fprintf(stderr, "Usage: %s %s\n", _nc_progname, usage_string);
182     fputs(options_string, stderr);
183     ExitProgram(EXIT_FAILURE);
184 }
185
186 #define L_BRACE '{'
187 #define R_BRACE '}'
188 #define S_QUOTE '\''
189
190 static void
191 write_it(ENTRY * ep)
192 {
193     unsigned n;
194     int ch;
195     char *s, *d, *t;
196     char result[MAX_ENTRY_SIZE];
197
198     /*
199      * Look for strings that contain %{number}, convert them to %'char',
200      * which is shorter and runs a little faster.
201      */
202     for (n = 0; n < STRCOUNT; n++) {
203         s = ep->tterm.Strings[n];
204         if (VALID_STRING(s)
205             && strchr(s, L_BRACE) != 0) {
206             d = result;
207             t = s;
208             while ((ch = *t++) != 0) {
209                 *d++ = (char) ch;
210                 if (ch == '\\') {
211                     *d++ = *t++;
212                 } else if ((ch == '%')
213                            && (*t == L_BRACE)) {
214                     char *v = 0;
215                     long value = strtol(t + 1, &v, 0);
216                     if (v != 0
217                         && *v == R_BRACE
218                         && value > 0
219                         && value != '\\'        /* FIXME */
220                         && value < 127
221                         && isprint((int) value)) {
222                         *d++ = S_QUOTE;
223                         *d++ = (char) value;
224                         *d++ = S_QUOTE;
225                         t = (v + 1);
226                     }
227                 }
228             }
229             *d = 0;
230             if (strlen(result) < strlen(s))
231                 _nc_STRCPY(s, result, strlen(s) + 1);
232         }
233     }
234
235     _nc_set_type(_nc_first_name(ep->tterm.term_names));
236     _nc_curr_line = (int) ep->startline;
237     _nc_write_entry(&ep->tterm);
238 }
239
240 static bool
241 immedhook(ENTRY * ep GCC_UNUSED)
242 /* write out entries with no use capabilities immediately to save storage */
243 {
244 #if !HAVE_BIG_CORE
245     /*
246      * This is strictly a core-economy kluge.  The really clean way to handle
247      * compilation is to slurp the whole file into core and then do all the
248      * name-collision checks and entry writes in one swell foop.  But the
249      * terminfo master file is large enough that some core-poor systems swap
250      * like crazy when you compile it this way...there have been reports of
251      * this process taking *three hours*, rather than the twenty seconds or
252      * less typical on my development box.
253      *
254      * So.  This hook *immediately* writes out the referenced entry if it
255      * has no use capabilities.  The compiler main loop refrains from
256      * adding the entry to the in-core list when this hook fires.  If some
257      * other entry later needs to reference an entry that got written
258      * immediately, that's OK; the resolution code will fetch it off disk
259      * when it can't find it in core.
260      *
261      * Name collisions will still be detected, just not as cleanly.  The
262      * write_entry() code complains before overwriting an entry that
263      * postdates the time of tic's first call to write_entry().  Thus
264      * it will complain about overwriting entries newly made during the
265      * tic run, but not about overwriting ones that predate it.
266      *
267      * The reason this is a hook, and not in line with the rest of the
268      * compiler code, is that the support for termcap fallback cannot assume
269      * it has anywhere to spool out these entries!
270      *
271      * The _nc_set_type() call here requires a compensating one in
272      * _nc_parse_entry().
273      *
274      * If you define HAVE_BIG_CORE, you'll disable this kluge.  This will
275      * make tic a bit faster (because the resolution code won't have to do
276      * disk I/O nearly as often).
277      */
278     if (ep->nuses == 0) {
279         int oldline = _nc_curr_line;
280
281         write_it(ep);
282         _nc_curr_line = oldline;
283         free(ep->tterm.str_table);
284         return (TRUE);
285     }
286 #endif /* HAVE_BIG_CORE */
287     return (FALSE);
288 }
289
290 static void
291 put_translate(int c)
292 /* emit a comment char, translating terminfo names to termcap names */
293 {
294     static bool in_name = FALSE;
295     static size_t have, used;
296     static char *namebuf, *suffix;
297
298     if (in_name) {
299         if (used + 1 >= have) {
300             have += 132;
301             if ((namebuf = typeRealloc(char, have, namebuf)) == 0)
302                   failed("put_translate namebuf");
303             if ((suffix = typeRealloc(char, have, suffix)) == 0)
304                   failed("put_translate suffix");
305         }
306         if (c == '\n' || c == '@') {
307             namebuf[used++] = '\0';
308             (void) putchar('<');
309             (void) fputs(namebuf, stdout);
310             putchar(c);
311             in_name = FALSE;
312         } else if (c != '>') {
313             namebuf[used++] = (char) c;
314         } else {                /* ah! candidate name! */
315             char *up;
316             NCURSES_CONST char *tp;
317
318             namebuf[used++] = '\0';
319             in_name = FALSE;
320
321             suffix[0] = '\0';
322             if ((up = strchr(namebuf, '#')) != 0
323                 || (up = strchr(namebuf, '=')) != 0
324                 || ((up = strchr(namebuf, '@')) != 0 && up[1] == '>')) {
325                 _nc_STRCPY(suffix, up, have);
326                 *up = '\0';
327             }
328
329             if ((tp = nametrans(namebuf)) != 0) {
330                 (void) putchar(':');
331                 (void) fputs(tp, stdout);
332                 (void) fputs(suffix, stdout);
333                 (void) putchar(':');
334             } else {
335                 /* couldn't find a translation, just dump the name */
336                 (void) putchar('<');
337                 (void) fputs(namebuf, stdout);
338                 (void) fputs(suffix, stdout);
339                 (void) putchar('>');
340             }
341         }
342     } else {
343         used = 0;
344         if (c == '<') {
345             in_name = TRUE;
346         } else {
347             putchar(c);
348         }
349     }
350 }
351
352 /* Returns a string, stripped of leading/trailing whitespace */
353 static char *
354 stripped(char *src)
355 {
356     char *dst = 0;
357
358     while (isspace(UChar(*src)))
359         src++;
360
361     if (*src != '\0') {
362         size_t len;
363
364         if ((dst = strdup(src)) == NULL) {
365             failed("strdup");
366         } else {
367             len = strlen(dst);
368             while (--len != 0 && isspace(UChar(dst[len])))
369                 dst[len] = '\0';
370         }
371     }
372     return dst;
373 }
374
375 static FILE *
376 open_tempfile(char *filename)
377 {
378     FILE *result = 0;
379
380     _nc_STRCPY(filename, "/tmp/XXXXXX", PATH_MAX);
381 #if HAVE_MKSTEMP
382     {
383         int oldmask = (int) umask(077);
384         int fd = mkstemp(filename);
385         if (fd >= 0)
386             result = fdopen(fd, "w");
387         umask((mode_t) oldmask);
388     }
389 #else
390     if (tmpnam(filename) != 0)
391         result = fopen(filename, "w");
392 #endif
393     return result;
394 }
395
396 static FILE *
397 copy_input(FILE *source, const char *filename, char *alt_file)
398 {
399     char my_altfile[PATH_MAX];
400     FILE *result = 0;
401     FILE *target = 0;
402     int ch;
403
404     if (alt_file == 0)
405         alt_file = my_altfile;
406
407     if (source == 0) {
408         failed("copy_input (source)");
409     } else if ((target = open_tempfile(alt_file)) == 0) {
410         failed("copy_input (target)");
411     } else {
412         clearerr(source);
413         for (;;) {
414             ch = fgetc(source);
415             if (feof(source)) {
416                 break;
417             } else if (ferror(source)) {
418                 failed(filename);
419             } else if (ch == 0) {
420                 /* don't loop in case someone wants to convert /dev/zero */
421                 fprintf(stderr, "%s: %s is not a text-file\n", _nc_progname, filename);
422                 ExitProgram(EXIT_FAILURE);
423             }
424             fputc(ch, target);
425         }
426         fclose(source);
427         /*
428          * rewind() does not force the target file's data to disk (not does
429          * fflush()...).  So open a second stream on the data and then close
430          * the one that we were writing on before starting to read from the
431          * second stream.
432          */
433         result = fopen(alt_file, "r+");
434         fclose(target);
435         to_remove = strdup(alt_file);
436     }
437     return result;
438 }
439
440 static FILE *
441 open_input(const char *filename, char *alt_file)
442 {
443     FILE *fp;
444     struct stat sb;
445     int mode;
446
447     if (!strcmp(filename, "-")) {
448         fp = copy_input(stdin, STDIN_NAME, alt_file);
449     } else if (stat(filename, &sb) < 0) {
450         fprintf(stderr, "%s: %s %s\n", _nc_progname, filename, strerror(errno));
451         ExitProgram(EXIT_FAILURE);
452     } else if ((mode = (sb.st_mode & S_IFMT)) == S_IFDIR
453                || (mode != S_IFREG && mode != S_IFCHR && mode != S_IFIFO)) {
454         fprintf(stderr, "%s: %s is not a file\n", _nc_progname, filename);
455         ExitProgram(EXIT_FAILURE);
456     } else {
457         fp = fopen(filename, "r");
458
459         if (fp == 0) {
460             fprintf(stderr, "%s: Can't open %s\n", _nc_progname, filename);
461             ExitProgram(EXIT_FAILURE);
462         }
463         if (mode != S_IFREG) {
464             if (alt_file != 0) {
465                 FILE *fp2 = copy_input(fp, filename, alt_file);
466                 fp = fp2;
467             } else {
468                 fprintf(stderr, "%s: %s is not a file\n", _nc_progname, filename);
469                 ExitProgram(EXIT_FAILURE);
470             }
471         }
472     }
473     return fp;
474 }
475
476 /* Parse the "-e" option-value into a list of names */
477 static char **
478 make_namelist(char *src)
479 {
480     char **dst = 0;
481
482     char *s, *base;
483     unsigned pass, n, nn;
484     char buffer[BUFSIZ];
485
486     if (src == 0) {
487         /* EMPTY */ ;
488     } else if (strchr(src, '/') != 0) {         /* a filename */
489         FILE *fp = open_input(src, (char *) 0);
490
491         for (pass = 1; pass <= 2; pass++) {
492             nn = 0;
493             while (fgets(buffer, sizeof(buffer), fp) != 0) {
494                 if ((s = stripped(buffer)) != 0) {
495                     if (dst != 0)
496                         dst[nn] = s;
497                     else
498                         free(s);
499                     nn++;
500                 }
501             }
502             if (pass == 1) {
503                 if ((dst = typeCalloc(char *, nn + 1)) == 0)
504                       failed("make_namelist");
505                 rewind(fp);
506             }
507         }
508         fclose(fp);
509     } else {                    /* literal list of names */
510         for (pass = 1; pass <= 2; pass++) {
511             for (n = nn = 0, base = src;; n++) {
512                 int mark = src[n];
513                 if (mark == ',' || mark == '\0') {
514                     if (pass == 1) {
515                         nn++;
516                     } else {
517                         src[n] = '\0';
518                         if ((s = stripped(base)) != 0)
519                             dst[nn++] = s;
520                         base = &src[n + 1];
521                     }
522                 }
523                 if (mark == '\0')
524                     break;
525             }
526             if (pass == 1) {
527                 if ((dst = typeCalloc(char *, nn + 1)) == 0)
528                       failed("make_namelist");
529             }
530         }
531     }
532     if (showsummary && (dst != 0)) {
533         fprintf(log_fp, "Entries that will be compiled:\n");
534         for (n = 0; dst[n] != 0; n++)
535             fprintf(log_fp, "%u:%s\n", n + 1, dst[n]);
536     }
537     return dst;
538 }
539
540 static bool
541 matches(char **needle, const char *haystack)
542 /* does entry in needle list match |-separated field in haystack? */
543 {
544     bool code = FALSE;
545     size_t n;
546
547     if (needle != 0) {
548         for (n = 0; needle[n] != 0; n++) {
549             if (_nc_name_match(haystack, needle[n], "|")) {
550                 code = TRUE;
551                 break;
552             }
553         }
554     } else
555         code = TRUE;
556     return (code);
557 }
558
559 static char *
560 valid_db_path(const char *nominal)
561 {
562     struct stat sb;
563 #if USE_HASHED_DB
564     char suffix[] = DBM_SUFFIX;
565     size_t need = strlen(nominal) + sizeof(suffix);
566     char *result = malloc(need);
567
568     if (result == 0)
569         failed("valid_db_path");
570     _nc_STRCPY(result, nominal, need);
571     if (strcmp(result + need - sizeof(suffix), suffix)) {
572         _nc_STRCAT(result, suffix, need);
573     }
574 #else
575     char *result = strdup(nominal);
576 #endif
577
578     DEBUG(1, ("** stat(%s)", result));
579     if (stat(result, &sb) >= 0) {
580 #if USE_HASHED_DB
581         if (!S_ISREG(sb.st_mode)
582             || access(result, R_OK | W_OK) != 0) {
583             DEBUG(1, ("...not a writable file"));
584             free(result);
585             result = 0;
586         }
587 #else
588         if (!S_ISDIR(sb.st_mode)
589             || access(result, R_OK | W_OK | X_OK) != 0) {
590             DEBUG(1, ("...not a writable directory"));
591             free(result);
592             result = 0;
593         }
594 #endif
595     } else {
596         /* check if parent is directory and is writable */
597         unsigned leaf = _nc_pathlast(result);
598
599         DEBUG(1, ("...not found"));
600         if (leaf) {
601             char save = result[leaf];
602             result[leaf] = 0;
603             if (stat(result, &sb) >= 0
604                 && S_ISDIR(sb.st_mode)
605                 && access(result, R_OK | W_OK | X_OK) == 0) {
606                 result[leaf] = save;
607             } else {
608                 DEBUG(1, ("...parent directory %s is not writable", result));
609                 free(result);
610                 result = 0;
611             }
612         } else {
613             DEBUG(1, ("... no parent directory"));
614             free(result);
615             result = 0;
616         }
617     }
618     return result;
619 }
620
621 /*
622  * Show the databases to which tic could write.  The location to which it
623  * writes is always the first one.  If none are writable, print an error
624  * message.
625  */
626 static void
627 show_databases(const char *outdir)
628 {
629     bool specific = (outdir != 0) || getenv("TERMINFO") != 0;
630     char *result;
631     const char *tried = 0;
632
633     if (outdir == 0) {
634         outdir = _nc_tic_dir(0);
635     }
636     if ((result = valid_db_path(outdir)) != 0) {
637         printf("%s\n", result);
638         free(result);
639     } else {
640         tried = outdir;
641     }
642
643     if ((outdir = _nc_home_terminfo())) {
644         if ((result = valid_db_path(outdir)) != 0) {
645             printf("%s\n", result);
646             free(result);
647         } else if (!specific) {
648             tried = outdir;
649         }
650     }
651
652     /*
653      * If we can write in neither location, give an error message.
654      */
655     if (tried) {
656         fflush(stdout);
657         fprintf(stderr, "%s: %s (no permission)\n", _nc_progname, tried);
658         ExitProgram(EXIT_FAILURE);
659     }
660 }
661
662 #define VtoTrace(opt) (unsigned) ((opt > 0) ? opt : (opt == 0))
663
664 int
665 main(int argc, char *argv[])
666 {
667     char my_tmpname[PATH_MAX];
668     char my_altfile[PATH_MAX];
669     int v_opt = -1;
670     unsigned debug_level;
671     int smart_defaults = TRUE;
672     char *termcap;
673     ENTRY *qp;
674
675     int this_opt, last_opt = '?';
676
677     int outform = F_TERMINFO;   /* output format */
678     int sortmode = S_TERMINFO;  /* sort_mode */
679
680     int width = 60;
681     int height = 65535;
682     bool formatted = FALSE;     /* reformat complex strings? */
683     bool literal = FALSE;       /* suppress post-processing? */
684     int numbers = 0;            /* format "%'char'" to/from "%{number}" */
685     bool forceresolve = FALSE;  /* force resolution */
686     bool limited = TRUE;
687     char *tversion = (char *) NULL;
688     const char *source_file = "terminfo";
689     char *outdir = (char *) NULL;
690     bool check_only = FALSE;
691     bool suppress_untranslatable = FALSE;
692
693     log_fp = stderr;
694
695     _nc_progname = _nc_rootname(argv[0]);
696     atexit(cleanup);
697
698     if ((infodump = same_program(_nc_progname, PROG_CAPTOINFO)) != FALSE) {
699         outform = F_TERMINFO;
700         sortmode = S_TERMINFO;
701     }
702     if ((capdump = same_program(_nc_progname, PROG_INFOTOCAP)) != FALSE) {
703         outform = F_TERMCAP;
704         sortmode = S_TERMCAP;
705     }
706 #if NCURSES_XNAMES
707     use_extended_names(FALSE);
708 #endif
709     _nc_strict_bsd = 0;
710
711     /*
712      * Processing arguments is a little complicated, since someone made a
713      * design decision to allow the numeric values for -w, -v options to
714      * be optional.
715      */
716     while ((this_opt = getopt(argc, argv,
717                               "0123456789CDIKLNR:TUVace:fGgo:rstvwx")) != -1) {
718         if (isdigit(this_opt)) {
719             switch (last_opt) {
720             case 'v':
721                 v_opt = (v_opt * 10) + (this_opt - '0');
722                 break;
723             case 'w':
724                 width = (width * 10) + (this_opt - '0');
725                 break;
726             default:
727                 switch (this_opt) {
728                 case '0':
729                     last_opt = this_opt;
730                     width = 65535;
731                     height = 1;
732                     break;
733                 case '1':
734                     last_opt = this_opt;
735                     width = 0;
736                     break;
737                 default:
738                     usage();
739                 }
740             }
741             continue;
742         }
743         switch (this_opt) {
744         case 'K':
745             _nc_strict_bsd = 1;
746             /* the initial version of -K in 20110730 fell-thru here, but the
747              * same flag is useful when reading sources -TD
748              */
749             break;
750         case 'C':
751             capdump = TRUE;
752             outform = F_TERMCAP;
753             sortmode = S_TERMCAP;
754             break;
755         case 'D':
756             debug_level = VtoTrace(v_opt);
757             set_trace_level(debug_level);
758             show_databases(outdir);
759             ExitProgram(EXIT_SUCCESS);
760             break;
761         case 'I':
762             infodump = TRUE;
763             outform = F_TERMINFO;
764             sortmode = S_TERMINFO;
765             break;
766         case 'L':
767             infodump = TRUE;
768             outform = F_VARIABLE;
769             sortmode = S_VARIABLE;
770             break;
771         case 'N':
772             smart_defaults = FALSE;
773             literal = TRUE;
774             break;
775         case 'R':
776             tversion = optarg;
777             break;
778         case 'T':
779             limited = FALSE;
780             break;
781         case 'U':
782             literal = TRUE;
783             break;
784         case 'V':
785             puts(curses_version());
786             ExitProgram(EXIT_SUCCESS);
787         case 'c':
788             check_only = TRUE;
789             break;
790         case 'e':
791             namelst = make_namelist(optarg);
792             break;
793         case 'f':
794             formatted = TRUE;
795             break;
796         case 'G':
797             numbers = 1;
798             break;
799         case 'g':
800             numbers = -1;
801             break;
802         case 'o':
803             outdir = optarg;
804             break;
805         case 'r':
806             forceresolve = TRUE;
807             break;
808         case 's':
809             showsummary = TRUE;
810             break;
811         case 'v':
812             v_opt = 0;
813             break;
814         case 'w':
815             width = 0;
816             break;
817 #if NCURSES_XNAMES
818         case 't':
819             _nc_disable_period = FALSE;
820             suppress_untranslatable = TRUE;
821             break;
822         case 'a':
823             _nc_disable_period = TRUE;
824             /* FALLTHRU */
825         case 'x':
826             use_extended_names(TRUE);
827             break;
828 #endif
829         default:
830             usage();
831         }
832         last_opt = this_opt;
833     }
834
835     debug_level = VtoTrace(v_opt);
836     set_trace_level(debug_level);
837
838     if (_nc_tracing) {
839         save_check_termtype = _nc_check_termtype2;
840         _nc_check_termtype2 = check_termtype;
841     }
842 #if !HAVE_BIG_CORE
843     /*
844      * Aaargh! immedhook seriously hoses us!
845      *
846      * One problem with immedhook is it means we can't do -e.  Problem
847      * is that we can't guarantee that for each terminal listed, all the
848      * terminals it depends on will have been kept in core for reference
849      * resolution -- in fact it's certain the primitive types at the end
850      * of reference chains *won't* be in core unless they were explicitly
851      * in the select list themselves.
852      */
853     if (namelst && (!infodump && !capdump)) {
854         (void) fprintf(stderr,
855                        "%s: Sorry, -e can't be used without -I or -C\n",
856                        _nc_progname);
857         ExitProgram(EXIT_FAILURE);
858     }
859 #endif /* HAVE_BIG_CORE */
860
861     if (optind < argc) {
862         source_file = argv[optind++];
863         if (optind < argc) {
864             fprintf(stderr,
865                     "%s: Too many file names.  Usage:\n\t%s %s",
866                     _nc_progname,
867                     _nc_progname,
868                     usage_string);
869             ExitProgram(EXIT_FAILURE);
870         }
871     } else {
872         if (infodump == TRUE) {
873             /* captoinfo's no-argument case */
874             source_file = "/etc/termcap";
875             if ((termcap = getenv("TERMCAP")) != 0
876                 && (namelst = make_namelist(getenv("TERM"))) != 0) {
877                 if (access(termcap, F_OK) == 0) {
878                     /* file exists */
879                     source_file = termcap;
880                 } else {
881                     if ((tmp_fp = open_tempfile(my_tmpname)) != 0) {
882                         source_file = my_tmpname;
883                         fprintf(tmp_fp, "%s\n", termcap);
884                         fclose(tmp_fp);
885                         tmp_fp = open_input(source_file, (char *) 0);
886                         to_remove = source_file;
887                     } else {
888                         failed("tmpnam");
889                     }
890                 }
891             }
892         } else {
893             /* tic */
894             fprintf(stderr,
895                     "%s: File name needed.  Usage:\n\t%s %s",
896                     _nc_progname,
897                     _nc_progname,
898                     usage_string);
899             ExitProgram(EXIT_FAILURE);
900         }
901     }
902
903     if (tmp_fp == 0) {
904         tmp_fp = open_input(source_file, my_altfile);
905         if (!strcmp(source_file, "-")) {
906             source_file = STDIN_NAME;
907         }
908     }
909
910     if (infodump) {
911         dump_init(tversion,
912                   smart_defaults
913                   ? outform
914                   : F_LITERAL,
915                   sortmode, width, height, debug_level, formatted);
916     } else if (capdump) {
917         dump_init(tversion,
918                   outform,
919                   sortmode, width, height, debug_level, FALSE);
920     }
921
922     /* parse entries out of the source file */
923     _nc_set_source(source_file);
924 #if !HAVE_BIG_CORE
925     if (!(check_only || infodump || capdump))
926         _nc_set_writedir(outdir);
927 #endif /* HAVE_BIG_CORE */
928     _nc_read_entry_source(tmp_fp, (char *) NULL,
929                           !smart_defaults || literal, FALSE,
930                           ((check_only || infodump || capdump)
931                            ? NULLHOOK
932                            : immedhook));
933
934     /* do use resolution */
935     if (check_only || (!infodump && !capdump) || forceresolve) {
936         if (!_nc_resolve_uses2(TRUE, literal) && !check_only) {
937             ExitProgram(EXIT_FAILURE);
938         }
939     }
940
941     /* length check */
942     if (check_only && limited && (capdump || infodump)) {
943         for_entry_list(qp) {
944             if (matches(namelst, qp->tterm.term_names)) {
945                 int len = fmt_entry(&qp->tterm, NULL, FALSE, TRUE, infodump, numbers);
946
947                 if (len > (infodump ? MAX_TERMINFO_LENGTH : MAX_TERMCAP_LENGTH))
948                     (void) fprintf(stderr,
949                                    "warning: resolved %s entry is %d bytes long\n",
950                                    _nc_first_name(qp->tterm.term_names),
951                                    len);
952             }
953         }
954     }
955
956     /* write or dump all entries */
957     if (!check_only) {
958         if (!infodump && !capdump) {
959             _nc_set_writedir(outdir);
960             for_entry_list(qp) {
961                 if (matches(namelst, qp->tterm.term_names))
962                     write_it(qp);
963             }
964         } else {
965             /* this is in case infotocap() generates warnings */
966             _nc_curr_col = _nc_curr_line = -1;
967
968             for_entry_list(qp) {
969                 if (matches(namelst, qp->tterm.term_names)) {
970                     long j = qp->cend - qp->cstart;
971                     int len = 0;
972
973                     /* this is in case infotocap() generates warnings */
974                     _nc_set_type(_nc_first_name(qp->tterm.term_names));
975
976                     (void) fseek(tmp_fp, qp->cstart, SEEK_SET);
977                     while (j-- > 0) {
978                         if (infodump)
979                             (void) putchar(fgetc(tmp_fp));
980                         else
981                             put_translate(fgetc(tmp_fp));
982                     }
983
984                     repair_acsc(&qp->tterm);
985                     dump_entry(&qp->tterm, suppress_untranslatable,
986                                limited, numbers, NULL);
987                     for (j = 0; j < (long) qp->nuses; j++)
988                         dump_uses(qp->uses[j].name, !capdump);
989                     len = show_entry();
990                     if (debug_level != 0 && !limited)
991                         printf("# length=%d\n", len);
992                 }
993             }
994             if (!namelst && _nc_tail) {
995                 int c, oldc = '\0';
996                 bool in_comment = FALSE;
997                 bool trailing_comment = FALSE;
998
999                 (void) fseek(tmp_fp, _nc_tail->cend, SEEK_SET);
1000                 while ((c = fgetc(tmp_fp)) != EOF) {
1001                     if (oldc == '\n') {
1002                         if (c == '#') {
1003                             trailing_comment = TRUE;
1004                             in_comment = TRUE;
1005                         } else {
1006                             in_comment = FALSE;
1007                         }
1008                     }
1009                     if (trailing_comment
1010                         && (in_comment || (oldc == '\n' && c == '\n')))
1011                         putchar(c);
1012                     oldc = c;
1013                 }
1014             }
1015         }
1016     }
1017
1018     /* Show the directory into which entries were written, and the total
1019      * number of entries
1020      */
1021     if (showsummary
1022         && (!(check_only || infodump || capdump))) {
1023         int total = _nc_tic_written();
1024         if (total != 0)
1025             fprintf(log_fp, "%d entries written to %s\n",
1026                     total,
1027                     _nc_tic_dir((char *) 0));
1028         else
1029             fprintf(log_fp, "No entries written\n");
1030     }
1031     ExitProgram(EXIT_SUCCESS);
1032 }
1033
1034 /*
1035  * This bit of legerdemain turns all the terminfo variable names into
1036  * references to locations in the arrays Booleans, Numbers, and Strings ---
1037  * precisely what's needed (see comp_parse.c).
1038  */
1039 #undef CUR
1040 #define CUR tp->
1041
1042 /*
1043  * Check if the alternate character-set capabilities are consistent.
1044  */
1045 static void
1046 check_acs(TERMTYPE *tp)
1047 {
1048     if (VALID_STRING(acs_chars)) {
1049         const char *boxes = "lmkjtuvwqxn";
1050         char mapped[256];
1051         char missing[256];
1052         const char *p;
1053         char *q;
1054
1055         memset(mapped, 0, sizeof(mapped));
1056         for (p = acs_chars; *p != '\0'; p += 2) {
1057             if (p[1] == '\0') {
1058                 _nc_warning("acsc has odd number of characters");
1059                 break;
1060             }
1061             mapped[UChar(p[0])] = p[1];
1062         }
1063
1064         if (mapped[UChar('I')] && !mapped[UChar('i')]) {
1065             _nc_warning("acsc refers to 'I', which is probably an error");
1066         }
1067
1068         for (p = boxes, q = missing; *p != '\0'; ++p) {
1069             if (!mapped[UChar(p[0])]) {
1070                 *q++ = p[0];
1071             }
1072         }
1073         *q = '\0';
1074
1075         assert(strlen(missing) <= strlen(boxes));
1076         if (*missing != '\0' && strcmp(missing, boxes)) {
1077             _nc_warning("acsc is missing some line-drawing mapping: %s", missing);
1078         }
1079     }
1080 }
1081
1082 /*
1083  * Check if the color capabilities are consistent
1084  */
1085 static void
1086 check_colors(TERMTYPE *tp)
1087 {
1088     if ((max_colors > 0) != (max_pairs > 0)
1089         || ((max_colors > max_pairs) && (initialize_pair == 0)))
1090         _nc_warning("inconsistent values for max_colors (%d) and max_pairs (%d)",
1091                     max_colors, max_pairs);
1092
1093     PAIRED(set_foreground, set_background);
1094     PAIRED(set_a_foreground, set_a_background);
1095     PAIRED(set_color_pair, initialize_pair);
1096
1097     if (VALID_STRING(set_foreground)
1098         && VALID_STRING(set_a_foreground)
1099         && !_nc_capcmp(set_foreground, set_a_foreground))
1100         _nc_warning("expected setf/setaf to be different");
1101
1102     if (VALID_STRING(set_background)
1103         && VALID_STRING(set_a_background)
1104         && !_nc_capcmp(set_background, set_a_background))
1105         _nc_warning("expected setb/setab to be different");
1106
1107     /* see: has_colors() */
1108     if (VALID_NUMERIC(max_colors) && VALID_NUMERIC(max_pairs)
1109         && (((set_foreground != NULL)
1110              && (set_background != NULL))
1111             || ((set_a_foreground != NULL)
1112                 && (set_a_background != NULL))
1113             || set_color_pair)) {
1114         if (!VALID_STRING(orig_pair) && !VALID_STRING(orig_colors))
1115             _nc_warning("expected either op/oc string for resetting colors");
1116     }
1117     if (can_change) {
1118         if (!VALID_STRING(initialize_pair) &&
1119             !VALID_STRING(initialize_color)) {
1120             _nc_warning("expected initc or initp because ccc is given");
1121         }
1122     } else {
1123         if (VALID_STRING(initialize_pair) ||
1124             VALID_STRING(initialize_color)) {
1125             _nc_warning("expected ccc because initc is given");
1126         }
1127     }
1128 }
1129
1130 static char
1131 keypad_final(const char *string)
1132 {
1133     char result = '\0';
1134
1135     if (VALID_STRING(string)
1136         && *string++ == '\033'
1137         && *string++ == 'O'
1138         && strlen(string) == 1) {
1139         result = *string;
1140     }
1141
1142     return result;
1143 }
1144
1145 static long
1146 keypad_index(const char *string)
1147 {
1148     char *test;
1149     const char *list = "PQRSwxymtuvlqrsPpn";    /* app-keypad except "Enter" */
1150     int ch;
1151     long result = -1;
1152
1153     if ((ch = keypad_final(string)) != '\0') {
1154         test = (strchr) (list, ch);
1155         if (test != 0)
1156             result = (long) (test - list);
1157     }
1158     return result;
1159 }
1160
1161 /*
1162  * list[] is down, up, left, right
1163  * "left" may be ^H rather than \E[D
1164  * "down" may be ^J rather than \E[B
1165  * But up/right are generally consistently escape sequences for ANSI terminals.
1166  */
1167 static void
1168 check_ansi_cursor(char *list[4])
1169 {
1170     int j, k;
1171     int want;
1172     size_t prefix = 0;
1173     size_t suffix;
1174     bool skip[4];
1175     bool repeated = FALSE;
1176
1177     for (j = 0; j < 4; ++j) {
1178         skip[j] = FALSE;
1179         for (k = 0; k < j; ++k) {
1180             if (j != k
1181                 && !strcmp(list[j], list[k])) {
1182                 char *value = _nc_tic_expand(list[k], TRUE, 0);
1183                 _nc_warning("repeated cursor control %s\n", value);
1184                 repeated = TRUE;
1185             }
1186         }
1187     }
1188     if (!repeated) {
1189         char *up = list[1];
1190
1191         if (UChar(up[0]) == '\033') {
1192             if (up[1] == '[') {
1193                 prefix = 2;
1194             } else {
1195                 prefix = 1;
1196             }
1197         } else if (UChar(up[0]) == UChar('\233')) {
1198             prefix = 1;
1199         }
1200         if (prefix) {
1201             suffix = prefix;
1202             while (up[suffix] && isdigit(UChar(up[suffix])))
1203                 ++suffix;
1204         }
1205         if (prefix && up[suffix] == 'A') {
1206             skip[1] = TRUE;
1207             if (!strcmp(list[0], "\n"))
1208                 skip[0] = TRUE;
1209             if (!strcmp(list[2], "\b"))
1210                 skip[2] = TRUE;
1211
1212             for (j = 0; j < 4; ++j) {
1213                 if (skip[j] || strlen(list[j]) == 1)
1214                     continue;
1215                 if (memcmp(list[j], up, prefix)) {
1216                     char *value = _nc_tic_expand(list[j], TRUE, 0);
1217                     _nc_warning("inconsistent prefix for %s\n", value);
1218                     continue;
1219                 }
1220                 if (strlen(list[j]) < suffix) {
1221                     char *value = _nc_tic_expand(list[j], TRUE, 0);
1222                     _nc_warning("inconsistent length for %s, expected %d\n",
1223                                 value, (int) suffix + 1);
1224                     continue;
1225                 }
1226                 want = "BADC"[j];
1227                 if (list[j][suffix] != want) {
1228                     char *value = _nc_tic_expand(list[j], TRUE, 0);
1229                     _nc_warning("inconsistent suffix for %s, expected %c, have %c\n",
1230                                 value, want, list[j][suffix]);
1231                 }
1232             }
1233         }
1234     }
1235 }
1236
1237 #define EXPECTED(name) if (!PRESENT(name)) _nc_warning("expected " #name)
1238 #define UNEXPECTED(name) if (PRESENT(name)) _nc_warning("unexpected " #name ", for %s", why)
1239
1240 static void
1241 check_noaddress(TERMTYPE *tp, const char *why)
1242 {
1243     UNEXPECTED(column_address);
1244     UNEXPECTED(cursor_address);
1245     UNEXPECTED(cursor_home);
1246     UNEXPECTED(cursor_mem_address);
1247     UNEXPECTED(cursor_to_ll);
1248     UNEXPECTED(row_address);
1249     UNEXPECTED(row_address);
1250 }
1251
1252 static void
1253 check_cursor(TERMTYPE *tp)
1254 {
1255     int count;
1256     char *list[4];
1257
1258     if (hard_copy) {
1259         check_noaddress(tp, "hard_copy");
1260     } else if (generic_type) {
1261         check_noaddress(tp, "generic_type");
1262     } else if (strchr(tp->term_names, '+') == 0) {
1263         int y = 0;
1264         int x = 0;
1265         if (PRESENT(column_address))
1266             ++y;
1267         if (PRESENT(cursor_address))
1268             y = x = 10;
1269         if (PRESENT(cursor_home))
1270             ++y, ++x;
1271         if (PRESENT(cursor_mem_address))
1272             y = x = 10;
1273         if (PRESENT(cursor_to_ll))
1274             ++y, ++x;
1275         if (PRESENT(row_address))
1276             ++x;
1277         if (PRESENT(cursor_down))
1278             ++y;
1279         if (PRESENT(cursor_up))
1280             ++y;
1281         if (PRESENT(cursor_left))
1282             ++x;
1283         if (PRESENT(cursor_right))
1284             ++x;
1285         if (x < 2 && y < 2) {
1286             _nc_warning("terminal lacks cursor addressing");
1287         } else {
1288             if (x < 2)
1289                 _nc_warning("terminal lacks cursor column-addressing");
1290             if (y < 2)
1291                 _nc_warning("terminal lacks cursor row-addressing");
1292         }
1293     }
1294
1295     /* it is rare to have an insert-line feature without a matching delete */
1296     ANDMISSING(parm_insert_line, insert_line);
1297     ANDMISSING(parm_delete_line, delete_line);
1298     ANDMISSING(parm_insert_line, parm_delete_line);
1299
1300     /* if we have a parameterized form, then the non-parameterized is easy */
1301     ANDMISSING(parm_down_cursor, cursor_down);
1302     ANDMISSING(parm_up_cursor, cursor_up);
1303     ANDMISSING(parm_left_cursor, cursor_left);
1304     ANDMISSING(parm_right_cursor, cursor_right);
1305
1306     /* Given any of a set of cursor movement, the whole set should be present.
1307      * Technically this is not true (we could use cursor_address to fill in
1308      * unsupported controls), but it is likely.
1309      */
1310     count = 0;
1311     if (PRESENT(parm_down_cursor)) {
1312         list[count++] = parm_down_cursor;
1313     }
1314     if (PRESENT(parm_up_cursor)) {
1315         list[count++] = parm_up_cursor;
1316     }
1317     if (PRESENT(parm_left_cursor)) {
1318         list[count++] = parm_left_cursor;
1319     }
1320     if (PRESENT(parm_right_cursor)) {
1321         list[count++] = parm_right_cursor;
1322     }
1323     if (count == 4) {
1324         check_ansi_cursor(list);
1325     } else if (count != 0) {
1326         EXPECTED(parm_down_cursor);
1327         EXPECTED(parm_up_cursor);
1328         EXPECTED(parm_left_cursor);
1329         EXPECTED(parm_right_cursor);
1330     }
1331
1332     count = 0;
1333     if (PRESENT(cursor_down)) {
1334         list[count++] = cursor_down;
1335     }
1336     if (PRESENT(cursor_up)) {
1337         list[count++] = cursor_up;
1338     }
1339     if (PRESENT(cursor_left)) {
1340         list[count++] = cursor_left;
1341     }
1342     if (PRESENT(cursor_right)) {
1343         list[count++] = cursor_right;
1344     }
1345     if (count == 4) {
1346         check_ansi_cursor(list);
1347     } else if (count != 0) {
1348         count = 0;
1349         if (PRESENT(cursor_down) && strcmp(cursor_down, "\n"))
1350             ++count;
1351         if (PRESENT(cursor_left) && strcmp(cursor_left, "\b"))
1352             ++count;
1353         if (PRESENT(cursor_up) && strlen(cursor_up) > 1)
1354             ++count;
1355         if (PRESENT(cursor_right) && strlen(cursor_right) > 1)
1356             ++count;
1357         if (count) {
1358             EXPECTED(cursor_down);
1359             EXPECTED(cursor_up);
1360             EXPECTED(cursor_left);
1361             EXPECTED(cursor_right);
1362         }
1363     }
1364 }
1365
1366 #define MAX_KP 5
1367 /*
1368  * Do a quick sanity-check for vt100-style keypads to see if the 5-key keypad
1369  * is mapped inconsistently.
1370  */
1371 static void
1372 check_keypad(TERMTYPE *tp)
1373 {
1374     char show[80];
1375
1376     if (VALID_STRING(key_a1) &&
1377         VALID_STRING(key_a3) &&
1378         VALID_STRING(key_b2) &&
1379         VALID_STRING(key_c1) &&
1380         VALID_STRING(key_c3)) {
1381         char final[MAX_KP + 1];
1382         long list[MAX_KP];
1383         int increase = 0;
1384         int j, k, kk;
1385         long last;
1386         long test;
1387
1388         final[0] = keypad_final(key_a1);
1389         final[1] = keypad_final(key_a3);
1390         final[2] = keypad_final(key_b2);
1391         final[3] = keypad_final(key_c1);
1392         final[4] = keypad_final(key_c3);
1393         final[5] = '\0';
1394
1395         /* special case: legacy coding using 1,2,3,0,. on the bottom */
1396         assert(strlen(final) <= MAX_KP);
1397         if (!strcmp(final, "qsrpn"))
1398             return;
1399
1400         list[0] = keypad_index(key_a1);
1401         list[1] = keypad_index(key_a3);
1402         list[2] = keypad_index(key_b2);
1403         list[3] = keypad_index(key_c1);
1404         list[4] = keypad_index(key_c3);
1405
1406         /* check that they're all vt100 keys */
1407         for (j = 0; j < MAX_KP; ++j) {
1408             if (list[j] < 0) {
1409                 return;
1410             }
1411         }
1412
1413         /* check if they're all in increasing order */
1414         for (j = 1; j < MAX_KP; ++j) {
1415             if (list[j] > list[j - 1]) {
1416                 ++increase;
1417             }
1418         }
1419         if (increase != (MAX_KP - 1)) {
1420             show[0] = '\0';
1421
1422             for (j = 0, last = -1; j < MAX_KP; ++j) {
1423                 for (k = 0, kk = -1, test = 100; k < 5; ++k) {
1424                     if (list[k] > last &&
1425                         list[k] < test) {
1426                         test = list[k];
1427                         kk = k;
1428                     }
1429                 }
1430                 last = test;
1431                 assert(strlen(show) < (MAX_KP * 4));
1432                 switch (kk) {
1433                 case 0:
1434                     _nc_STRCAT(show, " ka1", sizeof(show));
1435                     break;
1436                 case 1:
1437                     _nc_STRCAT(show, " ka3", sizeof(show));
1438                     break;
1439                 case 2:
1440                     _nc_STRCAT(show, " kb2", sizeof(show));
1441                     break;
1442                 case 3:
1443                     _nc_STRCAT(show, " kc1", sizeof(show));
1444                     break;
1445                 case 4:
1446                     _nc_STRCAT(show, " kc3", sizeof(show));
1447                     break;
1448                 }
1449             }
1450
1451             _nc_warning("vt100 keypad order inconsistent: %s", show);
1452         }
1453
1454     } else if (VALID_STRING(key_a1) ||
1455                VALID_STRING(key_a3) ||
1456                VALID_STRING(key_b2) ||
1457                VALID_STRING(key_c1) ||
1458                VALID_STRING(key_c3)) {
1459         show[0] = '\0';
1460         if (keypad_index(key_a1) >= 0)
1461             _nc_STRCAT(show, " ka1", sizeof(show));
1462         if (keypad_index(key_a3) >= 0)
1463             _nc_STRCAT(show, " ka3", sizeof(show));
1464         if (keypad_index(key_b2) >= 0)
1465             _nc_STRCAT(show, " kb2", sizeof(show));
1466         if (keypad_index(key_c1) >= 0)
1467             _nc_STRCAT(show, " kc1", sizeof(show));
1468         if (keypad_index(key_c3) >= 0)
1469             _nc_STRCAT(show, " kc3", sizeof(show));
1470         if (*show != '\0')
1471             _nc_warning("vt100 keypad map incomplete:%s", show);
1472     }
1473
1474     /*
1475      * These warnings are useful for consistency checks - it is possible that
1476      * there are real terminals with mismatches in these
1477      */
1478     ANDMISSING(key_ic, key_dc);
1479 }
1480
1481 static void
1482 check_printer(TERMTYPE *tp)
1483 {
1484     PAIRED(enter_doublewide_mode, exit_doublewide_mode);
1485     PAIRED(enter_italics_mode, exit_italics_mode);
1486     PAIRED(enter_leftward_mode, exit_leftward_mode);
1487     PAIRED(enter_micro_mode, exit_micro_mode);
1488     PAIRED(enter_shadow_mode, exit_shadow_mode);
1489     PAIRED(enter_subscript_mode, exit_subscript_mode);
1490     PAIRED(enter_superscript_mode, exit_superscript_mode);
1491     PAIRED(enter_upward_mode, exit_upward_mode);
1492
1493     ANDMISSING(start_char_set_def, stop_char_set_def);
1494
1495     /* if we have a parameterized form, then the non-parameterized is easy */
1496     ANDMISSING(set_bottom_margin_parm, set_bottom_margin);
1497     ANDMISSING(set_left_margin_parm, set_left_margin);
1498     ANDMISSING(set_right_margin_parm, set_right_margin);
1499     ANDMISSING(set_top_margin_parm, set_top_margin);
1500
1501     ANDMISSING(parm_down_micro, micro_down);
1502     ANDMISSING(parm_left_micro, micro_left);
1503     ANDMISSING(parm_right_micro, micro_right);
1504     ANDMISSING(parm_up_micro, micro_up);
1505 }
1506
1507 static bool
1508 uses_SGR_39_49(const char *value)
1509 {
1510     return (strstr(value, "39;49") != 0
1511             || strstr(value, "49;39") != 0);
1512 }
1513
1514 /*
1515  * Check consistency of termcap extensions related to "screen".
1516  */
1517 static void
1518 check_screen(TERMTYPE *tp)
1519 {
1520 #if NCURSES_XNAMES
1521     if (_nc_user_definable) {
1522         int have_XT = tigetflag("XT");
1523         int have_XM = tigetflag("XM");
1524         int have_bce = back_color_erase;
1525         bool have_kmouse = FALSE;
1526         bool use_sgr_39_49 = FALSE;
1527         char *name = _nc_first_name(tp->term_names);
1528
1529         if (!VALID_BOOLEAN(have_bce)) {
1530             have_bce = FALSE;
1531         }
1532         if (!VALID_BOOLEAN(have_XM)) {
1533             have_XM = FALSE;
1534         }
1535         if (!VALID_BOOLEAN(have_XT)) {
1536             have_XT = FALSE;
1537         }
1538         if (VALID_STRING(key_mouse)) {
1539             have_kmouse = !strcmp("\033[M", key_mouse);
1540         }
1541         if (VALID_STRING(orig_colors)) {
1542             use_sgr_39_49 = uses_SGR_39_49(orig_colors);
1543         } else if (VALID_STRING(orig_pair)) {
1544             use_sgr_39_49 = uses_SGR_39_49(orig_pair);
1545         }
1546
1547         if (have_XM && have_XT) {
1548             _nc_warning("Screen's XT capability conflicts with XM");
1549         } else if (have_XT
1550                    && strstr(name, "screen") != 0
1551                    && strchr(name, '.') != 0) {
1552             _nc_warning("Screen's \"screen\" entries should not have XT set");
1553         } else if (have_XT) {
1554             if (!have_kmouse && have_bce) {
1555                 if (VALID_STRING(key_mouse)) {
1556                     _nc_warning("Value of kmous inconsistent with screen's usage");
1557                 } else {
1558                     _nc_warning("Expected kmous capability with XT");
1559                 }
1560             }
1561             if (!have_bce && max_colors > 0)
1562                 _nc_warning("Expected bce capability with XT");
1563             if (!use_sgr_39_49 && have_bce && max_colors > 0)
1564                 _nc_warning("Expected orig_colors capability with XT to have 39/49 parameters");
1565             if (VALID_STRING(to_status_line))
1566                 _nc_warning("\"tsl\" capability is redundant, given XT");
1567         } else {
1568             if (have_kmouse && !have_XM)
1569                 _nc_warning("Expected XT to be set, given kmous");
1570         }
1571     }
1572 #endif
1573 }
1574
1575 /*
1576  * Returns the expected number of parameters for the given capability.
1577  */
1578 static int
1579 expected_params(const char *name)
1580 {
1581 #define DATA(name,count) { { name }, count }
1582     /* *INDENT-OFF* */
1583     static const struct {
1584         const char name[9];
1585         int count;
1586     } table[] = {
1587         DATA( "S0",             1 ),    /* 'screen' extension */
1588         DATA( "birep",          2 ),
1589         DATA( "chr",            1 ),
1590         DATA( "colornm",        1 ),
1591         DATA( "cpi",            1 ),
1592         DATA( "csnm",           1 ),
1593         DATA( "csr",            2 ),
1594         DATA( "cub",            1 ),
1595         DATA( "cud",            1 ),
1596         DATA( "cuf",            1 ),
1597         DATA( "cup",            2 ),
1598         DATA( "cuu",            1 ),
1599         DATA( "cvr",            1 ),
1600         DATA( "cwin",           5 ),
1601         DATA( "dch",            1 ),
1602         DATA( "defc",           3 ),
1603         DATA( "dial",           1 ),
1604         DATA( "dispc",          1 ),
1605         DATA( "dl",             1 ),
1606         DATA( "ech",            1 ),
1607         DATA( "getm",           1 ),
1608         DATA( "hpa",            1 ),
1609         DATA( "ich",            1 ),
1610         DATA( "il",             1 ),
1611         DATA( "indn",           1 ),
1612         DATA( "initc",          4 ),
1613         DATA( "initp",          7 ),
1614         DATA( "lpi",            1 ),
1615         DATA( "mc5p",           1 ),
1616         DATA( "mrcup",          2 ),
1617         DATA( "mvpa",           1 ),
1618         DATA( "pfkey",          2 ),
1619         DATA( "pfloc",          2 ),
1620         DATA( "pfx",            2 ),
1621         DATA( "pfxl",           3 ),
1622         DATA( "pln",            2 ),
1623         DATA( "qdial",          1 ),
1624         DATA( "rcsd",           1 ),
1625         DATA( "rep",            2 ),
1626         DATA( "rin",            1 ),
1627         DATA( "sclk",           3 ),
1628         DATA( "scp",            1 ),
1629         DATA( "scs",            1 ),
1630         DATA( "scsd",           2 ),
1631         DATA( "setab",          1 ),
1632         DATA( "setaf",          1 ),
1633         DATA( "setb",           1 ),
1634         DATA( "setcolor",       1 ),
1635         DATA( "setf",           1 ),
1636         DATA( "sgr",            9 ),
1637         DATA( "sgr1",           6 ),
1638         DATA( "slength",        1 ),
1639         DATA( "slines",         1 ),
1640         DATA( "smgbp",          1 ),    /* 2 if smgtp is not given */
1641         DATA( "smglp",          1 ),
1642         DATA( "smglr",          2 ),
1643         DATA( "smgrp",          1 ),
1644         DATA( "smgtb",          2 ),
1645         DATA( "smgtp",          1 ),
1646         DATA( "tsl",            1 ),
1647         DATA( "u6",             -1 ),
1648         DATA( "vpa",            1 ),
1649         DATA( "wind",           4 ),
1650         DATA( "wingo",          1 ),
1651     };
1652     /* *INDENT-ON* */
1653
1654 #undef DATA
1655
1656     unsigned n;
1657     int result = 0;             /* function-keys, etc., use none */
1658
1659     for (n = 0; n < SIZEOF(table); n++) {
1660         if (!strcmp(name, table[n].name)) {
1661             result = table[n].count;
1662             break;
1663         }
1664     }
1665
1666     return result;
1667 }
1668
1669 /*
1670  * Make a quick sanity check for the parameters which are used in the given
1671  * strings.  If there are no "%p" tokens, then there should be no other "%"
1672  * markers.
1673  */
1674 static void
1675 check_params(TERMTYPE *tp, const char *name, char *value)
1676 {
1677     int expected = expected_params(name);
1678     int actual = 0;
1679     int n;
1680     bool params[NUM_PARM];
1681     char *s = value;
1682
1683 #ifdef set_top_margin_parm
1684     if (!strcmp(name, "smgbp")
1685         && set_top_margin_parm == 0)
1686         expected = 2;
1687 #endif
1688
1689     for (n = 0; n < NUM_PARM; n++)
1690         params[n] = FALSE;
1691
1692     while (*s != 0) {
1693         if (*s == '%') {
1694             if (*++s == '\0') {
1695                 _nc_warning("expected character after %% in %s", name);
1696                 break;
1697             } else if (*s == 'p') {
1698                 if (*++s == '\0' || !isdigit((int) *s)) {
1699                     _nc_warning("expected digit after %%p in %s", name);
1700                     return;
1701                 } else {
1702                     n = (*s - '0');
1703                     if (n > actual)
1704                         actual = n;
1705                     params[n] = TRUE;
1706                 }
1707             }
1708         }
1709         s++;
1710     }
1711
1712     if (params[0]) {
1713         _nc_warning("%s refers to parameter 0 (%%p0), which is not allowed", name);
1714     }
1715     if (value == set_attributes || expected < 0) {
1716         ;
1717     } else if (expected != actual) {
1718         _nc_warning("%s uses %d parameters, expected %d", name,
1719                     actual, expected);
1720         for (n = 1; n < actual; n++) {
1721             if (!params[n])
1722                 _nc_warning("%s omits parameter %d", name, n);
1723         }
1724     }
1725 }
1726
1727 static char *
1728 check_1_infotocap(const char *name, NCURSES_CONST char *value, int count)
1729 {
1730     int k;
1731     int ignored;
1732     long numbers[1 + NUM_PARM];
1733     char *strings[1 + NUM_PARM];
1734     char *p_is_s[NUM_PARM];
1735     char *result;
1736     char blob[NUM_PARM * 10];
1737     char *next = blob;
1738
1739     *next++ = '\0';
1740     for (k = 1; k <= NUM_PARM; k++) {
1741         numbers[k] = count;
1742         sprintf(next, "XYZ%d", count);
1743         strings[k] = next;
1744         next += strlen(next) + 1;
1745     }
1746
1747     switch (tparm_type(name)) {
1748     case Num_Str:
1749         result = TPARM_2(value, numbers[1], strings[2]);
1750         break;
1751     case Num_Str_Str:
1752         result = TPARM_3(value, numbers[1], strings[2], strings[3]);
1753         break;
1754     case Numbers:
1755     default:
1756         (void) _nc_tparm_analyze(value, p_is_s, &ignored);
1757 #define myParam(n) (p_is_s[n - 1] != 0 ? ((TPARM_ARG) strings[n]) : numbers[n])
1758         result = TPARM_9(value,
1759                          myParam(1),
1760                          myParam(2),
1761                          myParam(3),
1762                          myParam(4),
1763                          myParam(5),
1764                          myParam(6),
1765                          myParam(7),
1766                          myParam(8),
1767                          myParam(9));
1768         break;
1769     }
1770     return result;
1771 }
1772
1773 #define IsDelay(ch) ((ch) == '.' || isdigit(UChar(ch)))
1774
1775 static const char *
1776 parse_delay_value(const char *src, double *delays, int *always)
1777 {
1778     int star = 0;
1779
1780     *delays = 0.0;
1781     if (always)
1782         *always = 0;
1783
1784     while (isdigit(UChar(*src))) {
1785         (*delays) = (*delays) * 10 + (*src++ - '0');
1786     }
1787     if (*src == '.') {
1788         int gotdot = 1;
1789
1790         ++src;
1791         while (isdigit(UChar(*src))) {
1792             gotdot *= 10;
1793             (*delays) += (*src++ - '0') / gotdot;
1794         }
1795     }
1796     while (*src == '*' || *src == '/') {
1797         if (always == 0 && *src == '/')
1798             break;
1799         if (*src++ == '*') {
1800             star = 1;
1801         } else {
1802             *always = 1;
1803         }
1804     }
1805     if (star)
1806         *delays = -(*delays);
1807     return src;
1808 }
1809
1810 static const char *
1811 parse_ti_delay(const char *ti, double *delays)
1812 {
1813     *delays = 0.0;
1814     while (*ti != '\0') {
1815         if (*ti == '\\') {
1816             ++ti;
1817         }
1818         if (ti[0] == '$'
1819             && ti[1] == '<'
1820             && IsDelay(UChar(ti[2]))) {
1821             int ignored;
1822             const char *last = parse_delay_value(ti + 2, delays, &ignored);
1823             if (*last == '>') {
1824                 ti = last;
1825             }
1826         } else {
1827             ++ti;
1828         }
1829     }
1830     return ti;
1831 }
1832
1833 static const char *
1834 parse_tc_delay(const char *tc, double *delays)
1835 {
1836     return parse_delay_value(tc, delays, (int *) 0);
1837 }
1838
1839 /*
1840  * Compare terminfo- and termcap-strings, factoring out delays.
1841  */
1842 static bool
1843 same_ti_tc(const char *ti, const char *tc, bool * embedded)
1844 {
1845     bool same = TRUE;
1846     double ti_delay = 0.0;
1847     double tc_delay = 0.0;
1848     const char *ti_last;
1849
1850     *embedded = FALSE;
1851     ti_last = parse_ti_delay(ti, &ti_delay);
1852     tc = parse_tc_delay(tc, &tc_delay);
1853
1854     while ((ti < ti_last) && *tc) {
1855         if (*ti == '\\' && ispunct(UChar(ti[1]))) {
1856             ++ti;
1857             if ((*ti == '^') && !strncmp(tc, "\\136", 4)) {
1858                 ti += 1;
1859                 tc += 4;
1860                 continue;
1861             }
1862         } else if (ti[0] == '$' && ti[1] == '<') {
1863             double no_delay;
1864             const char *ss = parse_ti_delay(ti, &no_delay);
1865             if (ss != ti) {
1866                 *embedded = TRUE;
1867                 ti = ss;
1868                 continue;
1869             }
1870         }
1871         if (*tc == '\\' && ispunct(UChar(tc[1]))) {
1872             ++tc;
1873         }
1874         if (*ti++ != *tc++) {
1875             same = FALSE;
1876             break;
1877         }
1878     }
1879
1880     if (*embedded) {
1881         if (same) {
1882             same = FALSE;
1883         } else {
1884             *embedded = FALSE;  /* report only one problem */
1885         }
1886     }
1887
1888     return same;
1889 }
1890
1891 /*
1892  * Check terminfo to termcap translation.
1893  */
1894 static void
1895 check_infotocap(TERMTYPE *tp, int i, const char *value)
1896 {
1897     const char *name = ExtStrname(tp, i, strnames);
1898     int params = (((i < (int) SIZEOF(parametrized)) &&
1899                    (i < STRCOUNT))
1900                   ? parametrized[i]
1901                   : ((*value == 'k')
1902                      ? 0
1903                      : has_params(value)));
1904     int to_char = 0;
1905     char *ti_value;
1906     char *tc_value;
1907     bool embedded;
1908
1909     if ((ti_value = _nc_tic_expand(value, TRUE, to_char)) == ABSENT_STRING) {
1910         _nc_warning("tic-expansion of %s failed", name);
1911     } else if ((tc_value = _nc_infotocap(name, ti_value, params)) == ABSENT_STRING) {
1912         _nc_warning("tic-conversion of %s failed", name);
1913     } else if (params > 0) {
1914         int limit = 5;
1915         int count;
1916         bool first = TRUE;
1917
1918         if (!strcmp(name, "setf")
1919             || !strcmp(name, "setb")
1920             || !strcmp(name, "setaf")
1921             || !strcmp(name, "setab")) {
1922             limit = max_colors;
1923         }
1924         for (count = 0; count < limit; ++count) {
1925             char *ti_check = check_1_infotocap(name, ti_value, count);
1926             char *tc_check = check_1_infotocap(name, tc_value, count);
1927
1928             if (strcmp(ti_check, tc_check)) {
1929                 if (first) {
1930                     fprintf(stderr, "check_infotocap(%s)\n", name);
1931                     fprintf(stderr, "...ti '%s'\n", ti_value);
1932                     fprintf(stderr, "...tc '%s'\n", tc_value);
1933                     first = FALSE;
1934                 }
1935                 _nc_warning("tparm-conversion of %s(%d) differs between\n\tterminfo %s\n\ttermcap  %s",
1936                             name, count, ti_check, tc_check);
1937             }
1938         }
1939     } else if (params == 0 && !same_ti_tc(ti_value, tc_value, &embedded)) {
1940         if (embedded) {
1941             _nc_warning("termcap equivalent of %s cannot use embedded delay", name);
1942         } else {
1943             _nc_warning("tic-conversion of %s changed value\n\tfrom %s\n\tto   %s",
1944                         name, ti_value, tc_value);
1945         }
1946     }
1947 }
1948
1949 static char *
1950 skip_delay(char *s)
1951 {
1952     while (*s == '/' || isdigit(UChar(*s)))
1953         ++s;
1954     return s;
1955 }
1956
1957 /*
1958  * Skip a delay altogether, e.g., when comparing a simple string to sgr,
1959  * the latter may have a worst-case delay on the end.
1960  */
1961 static char *
1962 ignore_delays(char *s)
1963 {
1964     int delaying = 0;
1965
1966     do {
1967         switch (*s) {
1968         case '$':
1969             if (delaying == 0)
1970                 delaying = 1;
1971             break;
1972         case '<':
1973             if (delaying == 1)
1974                 delaying = 2;
1975             break;
1976         case '\0':
1977             delaying = 0;
1978             break;
1979         default:
1980             if (delaying) {
1981                 s = skip_delay(s);
1982                 if (*s == '>')
1983                     ++s;
1984                 delaying = 0;
1985             }
1986             break;
1987         }
1988         if (delaying)
1989             ++s;
1990     } while (delaying);
1991     return s;
1992 }
1993
1994 /*
1995  * An sgr string may contain several settings other than the one we're
1996  * interested in, essentially sgr0 + rmacs + whatever.  As long as the
1997  * "whatever" is contained in the sgr string, that is close enough for our
1998  * sanity check.
1999  */
2000 static bool
2001 similar_sgr(int num, char *a, char *b)
2002 {
2003 #define DATA(name) { #name }
2004     static const char names[][11] =
2005     {
2006         DATA(none),
2007         DATA(standout),
2008         DATA(underline),
2009         DATA(reverse),
2010         DATA(blink),
2011         DATA(dim),
2012         DATA(bold),
2013         DATA(invis),
2014         DATA(protect),
2015         DATA(altcharset),
2016     };
2017 #undef DATA
2018     char *base_a = a;
2019     char *base_b = b;
2020     int delaying = 0;
2021
2022     while (*b != 0) {
2023         while (*a != *b) {
2024             if (*a == 0) {
2025                 if (b[0] == '$'
2026                     && b[1] == '<') {
2027                     _nc_warning("Did not find delay %s", _nc_visbuf(b));
2028                 } else {
2029                     _nc_warning("checking sgr(%s) %s\n\tcompare to %s\n\tunmatched %s",
2030                                 names[num], _nc_visbuf2(1, base_a),
2031                                 _nc_visbuf2(2, base_b),
2032                                 _nc_visbuf2(3, b));
2033                 }
2034                 return FALSE;
2035             } else if (delaying) {
2036                 a = skip_delay(a);
2037                 b = skip_delay(b);
2038             } else if ((*b == '0' || (*b == ';')) && *a == 'm') {
2039                 b++;
2040             } else {
2041                 a++;
2042             }
2043         }
2044         switch (*a) {
2045         case '$':
2046             if (delaying == 0)
2047                 delaying = 1;
2048             break;
2049         case '<':
2050             if (delaying == 1)
2051                 delaying = 2;
2052             break;
2053         default:
2054             delaying = 0;
2055             break;
2056         }
2057         a++;
2058         b++;
2059     }
2060     /* ignore delays on the end of the string */
2061     a = ignore_delays(a);
2062     return ((num != 0) || (*a == 0));
2063 }
2064
2065 static char *
2066 check_sgr(TERMTYPE *tp, char *zero, int num, char *cap, const char *name)
2067 {
2068     char *test;
2069
2070     _nc_tparm_err = 0;
2071     test = TPARM_9(set_attributes,
2072                    num == 1,
2073                    num == 2,
2074                    num == 3,
2075                    num == 4,
2076                    num == 5,
2077                    num == 6,
2078                    num == 7,
2079                    num == 8,
2080                    num == 9);
2081     if (test != 0) {
2082         if (PRESENT(cap)) {
2083             if (!similar_sgr(num, test, cap)) {
2084                 _nc_warning("%s differs from sgr(%d)\n\t%s=%s\n\tsgr(%d)=%s",
2085                             name, num,
2086                             name, _nc_visbuf2(1, cap),
2087                             num, _nc_visbuf2(2, test));
2088             }
2089         } else if (_nc_capcmp(test, zero)) {
2090             _nc_warning("sgr(%d) present, but not %s", num, name);
2091         }
2092     } else if (PRESENT(cap)) {
2093         _nc_warning("sgr(%d) missing, but %s present", num, name);
2094     }
2095     if (_nc_tparm_err)
2096         _nc_warning("stack error in sgr(%d) string", num);
2097     return test;
2098 }
2099
2100 #define CHECK_SGR(num,name) check_sgr(tp, zero, num, name, #name)
2101
2102 #ifdef TRACE
2103 /*
2104  * If tic is compiled with TRACE, we'll be able to see the output from the
2105  * DEBUG() macro.  But since it doesn't use traceon(), it always goes to
2106  * the standard error.  Use this function to make it simpler to follow the
2107  * resulting debug traces.
2108  */
2109 static void
2110 show_where(unsigned level)
2111 {
2112     if (_nc_tracing >= DEBUG_LEVEL(level)) {
2113         char my_name[MAX_NAME_SIZE];
2114         _nc_get_type(my_name);
2115         _tracef("\"%s\", line %d, '%s'",
2116                 _nc_get_source(),
2117                 _nc_curr_line, my_name);
2118     }
2119 }
2120
2121 #else
2122 #define show_where(level)       /* nothing */
2123 #endif
2124
2125 typedef struct {
2126     int keycode;
2127     const char *name;
2128     const char *value;
2129 } NAME_VALUE;
2130
2131 static NAME_VALUE *
2132 get_fkey_list(TERMTYPE *tp)
2133 {
2134     NAME_VALUE *result = typeMalloc(NAME_VALUE, NUM_STRINGS(tp) + 1);
2135     const struct tinfo_fkeys *all_fkeys = _nc_tinfo_fkeys;
2136     int used = 0;
2137     int j;
2138
2139     if (result == 0)
2140         failed("get_fkey_list");
2141
2142     for (j = 0; all_fkeys[j].code; j++) {
2143         char *a = tp->Strings[all_fkeys[j].offset];
2144         if (VALID_STRING(a)) {
2145             result[used].keycode = (int) all_fkeys[j].code;
2146             result[used].name = strnames[all_fkeys[j].offset];
2147             result[used].value = a;
2148             ++used;
2149         }
2150     }
2151 #if NCURSES_XNAMES
2152     for (j = STRCOUNT; j < NUM_STRINGS(tp); ++j) {
2153         const char *name = ExtStrname(tp, j, strnames);
2154         if (*name == 'k') {
2155             result[used].keycode = -1;
2156             result[used].name = name;
2157             result[used].value = tp->Strings[j];
2158             ++used;
2159         }
2160     }
2161 #endif
2162     result[used].keycode = 0;
2163     return result;
2164 }
2165
2166 static void
2167 show_fkey_name(NAME_VALUE * data)
2168 {
2169     if (data->keycode > 0) {
2170         fprintf(stderr, " %s", keyname(data->keycode));
2171         fprintf(stderr, " (capability \"%s\")", data->name);
2172     } else {
2173         fprintf(stderr, " capability \"%s\"", data->name);
2174     }
2175 }
2176
2177 /*
2178  * A terminal entry may contain more than one keycode assigned to a given
2179  * string (e.g., KEY_END and KEY_LL).  But curses will only return one (the
2180  * last one assigned).
2181  */
2182 static void
2183 check_conflict(TERMTYPE *tp)
2184 {
2185     bool conflict = FALSE;
2186     unsigned j, k;
2187
2188     if (!(_nc_syntax == SYN_TERMCAP && capdump)) {
2189         char *check = calloc((size_t) (NUM_STRINGS(tp) + 1), sizeof(char));
2190         NAME_VALUE *given = get_fkey_list(tp);
2191
2192         if (check == 0)
2193             failed("check_termtype");
2194
2195         for (j = 0; given[j].keycode; ++j) {
2196             const char *a = given[j].value;
2197             bool first = TRUE;
2198
2199             for (k = j + 1; given[k].keycode; k++) {
2200                 const char *b = given[k].value;
2201                 if (check[k])
2202                     continue;
2203                 if (!_nc_capcmp(a, b)) {
2204                     check[j] = 1;
2205                     check[k] = 1;
2206                     if (first) {
2207                         if (!conflict) {
2208                             _nc_warning("Conflicting key definitions (using the last)");
2209                             conflict = TRUE;
2210                         }
2211                         fprintf(stderr, "...");
2212                         show_fkey_name(given + j);
2213                         fprintf(stderr, " is the same as");
2214                         show_fkey_name(given + k);
2215                         first = FALSE;
2216                     } else {
2217                         fprintf(stderr, ", ");
2218                         show_fkey_name(given + k);
2219                     }
2220                 }
2221             }
2222             if (!first)
2223                 fprintf(stderr, "\n");
2224         }
2225         free(given);
2226         free(check);
2227     }
2228 }
2229
2230 /* other sanity-checks (things that we don't want in the normal
2231  * logic that reads a terminfo entry)
2232  */
2233 static void
2234 check_termtype(TERMTYPE *tp, bool literal)
2235 {
2236     unsigned j;
2237
2238     check_conflict(tp);
2239
2240     for_each_string(j, tp) {
2241         char *a = tp->Strings[j];
2242         if (VALID_STRING(a)) {
2243             check_params(tp, ExtStrname(tp, (int) j, strnames), a);
2244             if (capdump) {
2245                 check_infotocap(tp, (int) j, a);
2246             }
2247         }
2248     }
2249
2250     check_acs(tp);
2251     check_colors(tp);
2252     check_cursor(tp);
2253     check_keypad(tp);
2254     check_printer(tp);
2255     check_screen(tp);
2256
2257     /*
2258      * These may be mismatched because the terminal description relies on
2259      * restoring the cursor visibility by resetting it.
2260      */
2261     ANDMISSING(cursor_invisible, cursor_normal);
2262     ANDMISSING(cursor_visible, cursor_normal);
2263
2264     if (PRESENT(cursor_visible) && PRESENT(cursor_normal)
2265         && !_nc_capcmp(cursor_visible, cursor_normal))
2266         _nc_warning("cursor_visible is same as cursor_normal");
2267
2268     /*
2269      * From XSI & O'Reilly, we gather that sc/rc are required if csr is
2270      * given, because the cursor position after the scrolling operation is
2271      * performed is undefined.
2272      */
2273     ANDMISSING(change_scroll_region, save_cursor);
2274     ANDMISSING(change_scroll_region, restore_cursor);
2275
2276     /*
2277      * If we can clear tabs, we should be able to initialize them.
2278      */
2279     ANDMISSING(clear_all_tabs, set_tab);
2280
2281     if (PRESENT(set_attributes)) {
2282         char *zero = 0;
2283
2284         _nc_tparm_err = 0;
2285         if (PRESENT(exit_attribute_mode)) {
2286             zero = strdup(CHECK_SGR(0, exit_attribute_mode));
2287         } else {
2288             zero = strdup(TPARM_9(set_attributes, 0, 0, 0, 0, 0, 0, 0, 0, 0));
2289         }
2290         if (_nc_tparm_err)
2291             _nc_warning("stack error in sgr(0) string");
2292
2293         if (zero != 0) {
2294             CHECK_SGR(1, enter_standout_mode);
2295             CHECK_SGR(2, enter_underline_mode);
2296             CHECK_SGR(3, enter_reverse_mode);
2297             CHECK_SGR(4, enter_blink_mode);
2298             CHECK_SGR(5, enter_dim_mode);
2299             CHECK_SGR(6, enter_bold_mode);
2300             CHECK_SGR(7, enter_secure_mode);
2301             CHECK_SGR(8, enter_protected_mode);
2302             CHECK_SGR(9, enter_alt_charset_mode);
2303             free(zero);
2304         } else {
2305             _nc_warning("sgr(0) did not return a value");
2306         }
2307     } else if (PRESENT(exit_attribute_mode) &&
2308                set_attributes != CANCELLED_STRING) {
2309         if (_nc_syntax == SYN_TERMINFO)
2310             _nc_warning("missing sgr string");
2311     }
2312
2313     if (PRESENT(exit_attribute_mode)) {
2314         char *check_sgr0 = _nc_trim_sgr0(tp);
2315
2316         if (check_sgr0 == 0 || *check_sgr0 == '\0') {
2317             _nc_warning("trimmed sgr0 is empty");
2318         } else {
2319             show_where(2);
2320             if (check_sgr0 != exit_attribute_mode) {
2321                 DEBUG(2,
2322                       ("will trim sgr0\n\toriginal sgr0=%s\n\ttrimmed  sgr0=%s",
2323                        _nc_visbuf2(1, exit_attribute_mode),
2324                        _nc_visbuf2(2, check_sgr0)));
2325                 free(check_sgr0);
2326             } else {
2327                 DEBUG(2,
2328                       ("will not trim sgr0\n\toriginal sgr0=%s",
2329                        _nc_visbuf(exit_attribute_mode)));
2330             }
2331         }
2332     }
2333 #ifdef TRACE
2334     show_where(2);
2335     if (!auto_right_margin) {
2336         DEBUG(2,
2337               ("can write to lower-right directly"));
2338     } else if (PRESENT(enter_am_mode) && PRESENT(exit_am_mode)) {
2339         DEBUG(2,
2340               ("can write to lower-right by suppressing automargin"));
2341     } else if ((PRESENT(enter_insert_mode) && PRESENT(exit_insert_mode))
2342                || PRESENT(insert_character) || PRESENT(parm_ich)) {
2343         DEBUG(2,
2344               ("can write to lower-right by using inserts"));
2345     } else {
2346         DEBUG(2,
2347               ("cannot write to lower-right"));
2348     }
2349 #endif
2350
2351     /*
2352      * Some standard applications (e.g., vi) and some non-curses
2353      * applications (e.g., jove) get confused if we have both ich1 and
2354      * smir/rmir.  Let's be nice and warn about that, too, even though
2355      * ncurses handles it.
2356      */
2357     if ((PRESENT(enter_insert_mode) || PRESENT(exit_insert_mode))
2358         && PRESENT(parm_ich)) {
2359         _nc_warning("non-curses applications may be confused by ich1 with smir/rmir");
2360     }
2361
2362     /*
2363      * Finally, do the non-verbose checks
2364      */
2365     if (save_check_termtype != 0)
2366         save_check_termtype(tp, literal);
2367 }