]> ncurses.scripts.mit.edu Git - ncurses.git/blob - progs/tic.c
dd9d4e027454097dcf24887905000ee46124d8d1
[ncurses.git] / progs / tic.c
1 /****************************************************************************
2  * Copyright 2018-2019,2020 Thomas E. Dickey                                *
3  * Copyright 1998-2017,2018 Free Software Foundation, Inc.                  *
4  *                                                                          *
5  * Permission is hereby granted, free of charge, to any person obtaining a  *
6  * copy of this software and associated documentation files (the            *
7  * "Software"), to deal in the Software without restriction, including      *
8  * without limitation the rights to use, copy, modify, merge, publish,      *
9  * distribute, distribute with modifications, sublicense, and/or sell       *
10  * copies of the Software, and to permit persons to whom the Software is    *
11  * furnished to do so, subject to the following conditions:                 *
12  *                                                                          *
13  * The above copyright notice and this permission notice shall be included  *
14  * in all copies or substantial portions of the Software.                   *
15  *                                                                          *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
17  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
19  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
20  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
21  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
22  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
23  *                                                                          *
24  * Except as contained in this notice, the name(s) of the above copyright   *
25  * holders shall not be used in advertising or otherwise to promote the     *
26  * sale, use or other dealings in this Software without prior written       *
27  * authorization.                                                           *
28  ****************************************************************************/
29
30 /****************************************************************************
31  *  Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995               *
32  *     and: Eric S. Raymond <esr@snark.thyrsus.com>                         *
33  *     and: Thomas E. Dickey                        1996 on                 *
34  ****************************************************************************/
35
36 /*
37  *      tic.c --- Main program for terminfo compiler
38  *                      by Eric S. Raymond
39  *                      and Thomas E Dickey
40  *
41  */
42
43 #include <progs.priv.h>
44 #include <sys/stat.h>
45
46 #include <dump_entry.h>
47 #include <tparm_type.h>
48 #include <hashed_db.h>
49 #include <parametrized.h>
50 #include <transform.h>
51
52 MODULE_ID("$Id: tic.c,v 1.287 2020/10/10 21:25:24 tom Exp $")
53
54 #define STDIN_NAME "<stdin>"
55
56 const char *_nc_progname = "tic";
57
58 static FILE *log_fp;
59 static FILE *tmp_fp;
60 static bool capdump = FALSE;    /* running as infotocap? */
61 static bool infodump = FALSE;   /* running as captoinfo? */
62 static bool showsummary = FALSE;
63 static unsigned debug_level;
64 static char **namelst = 0;
65 static const char *to_remove;
66
67 #if NCURSES_XNAMES
68 static bool using_extensions = FALSE;
69 #endif
70
71 static void (*save_check_termtype) (TERMTYPE2 *, bool);
72 static void check_termtype(TERMTYPE2 *tt, bool);
73
74 static const char usage_string[] = "\
75 [-e names] \
76 [-o dir] \
77 [-R name] \
78 [-v[n]] \
79 [-V] \
80 [-w[n]] \
81 [-\
82 1\
83 a\
84 C\
85 D\
86 c\
87 f\
88 G\
89 g\
90 I\
91 K\
92 L\
93 N\
94 r\
95 s\
96 T\
97 t\
98 U\
99 x\
100 ] \
101 source-file\n";
102
103 #if NO_LEAKS
104 static void
105 free_namelist(char **src)
106 {
107     if (src != 0) {
108         int n;
109         for (n = 0; src[n] != 0; ++n)
110             free(src[n]);
111         free(src);
112     }
113 }
114 #endif
115
116 static void
117 cleanup(void)
118 {
119     int rc;
120
121 #if NO_LEAKS
122     free_namelist(namelst);
123     _nc_leaks_dump_entry();
124 #endif
125     if (tmp_fp != 0)
126         fclose(tmp_fp);
127     if (to_remove != 0) {
128 #if HAVE_REMOVE
129         rc = remove(to_remove);
130 #else
131         rc = unlink(to_remove);
132 #endif
133         if (rc != 0)
134             perror(to_remove);
135     }
136 }
137
138 static void
139 failed(const char *msg)
140 {
141     perror(msg);
142     ExitProgram(EXIT_FAILURE);
143 }
144
145 static void
146 usage(void)
147 {
148 #define DATA(s) s "\n"
149     static const char options_string[] =
150     {
151         DATA("Options:")
152         DATA("  -0         format translation output all capabilities on one line")
153         DATA("  -1         format translation output one capability per line")
154 #if NCURSES_XNAMES
155         DATA("  -a         retain commented-out capabilities (sets -x also)")
156 #endif
157         DATA("  -C         translate entries to termcap source form")
158         DATA("  -D         print list of tic's database locations (first must be writable)")
159         DATA("  -c         check only, validate input without compiling or translating")
160         DATA("  -e<names>  translate/compile only entries named by comma-separated list")
161         DATA("  -f         format complex strings for readability")
162         DATA("  -G         format %{number} to %'char'")
163         DATA("  -g         format %'char' to %{number}")
164         DATA("  -I         translate entries to terminfo source form")
165         DATA("  -K         translate entries to termcap source form with BSD syntax")
166         DATA("  -L         translate entries to full terminfo source form")
167         DATA("  -N         disable smart defaults for source translation")
168         DATA("  -o<dir>    set output directory for compiled entry writes")
169         DATA("  -Q[n]      dump compiled description")
170         DATA("  -q    brief listing, removes headers")
171         DATA("  -R<name>   restrict translation to given terminfo/termcap version")
172         DATA("  -r         force resolution of all use entries in source translation")
173         DATA("  -s         print summary statistics")
174         DATA("  -T         remove size-restrictions on compiled description")
175 #if NCURSES_XNAMES
176         DATA("  -t         suppress commented-out capabilities")
177 #endif
178         DATA("  -U         suppress post-processing of entries")
179         DATA("  -V         print version")
180         DATA("  -W         wrap long strings according to -w[n] option")
181         DATA("  -v[n]      set verbosity level")
182         DATA("  -w[n]      set format width for translation output")
183 #if NCURSES_XNAMES
184         DATA("  -x         treat unknown capabilities as user-defined")
185 #endif
186         DATA("")
187         DATA("Parameters:")
188         DATA("  <file>     file to translate or compile")
189     };
190 #undef DATA
191
192     fprintf(stderr, "Usage: %s %s\n", _nc_progname, usage_string);
193     fputs(options_string, stderr);
194     ExitProgram(EXIT_FAILURE);
195 }
196
197 #define L_BRACE '{'
198 #define R_BRACE '}'
199 #define S_QUOTE '\''
200
201 static void
202 write_it(ENTRY * ep)
203 {
204     unsigned n;
205     int ch;
206     char *s, *d, *t;
207     char result[MAX_ENTRY_SIZE];
208
209     /*
210      * Look for strings that contain %{number}, convert them to %'char',
211      * which is shorter and runs a little faster.
212      */
213     for (n = 0; n < STRCOUNT; n++) {
214         s = ep->tterm.Strings[n];
215         if (VALID_STRING(s)
216             && strchr(s, L_BRACE) != 0) {
217             d = result;
218             t = s;
219             while ((ch = *t++) != 0) {
220                 *d++ = (char) ch;
221                 if (ch == '\\') {
222                     if ((*d++ = *t++) == '\0')
223                         break;
224                 } else if ((ch == '%')
225                            && (*t == L_BRACE)) {
226                     char *v = 0;
227                     long value = strtol(t + 1, &v, 0);
228                     if (v != 0
229                         && *v == R_BRACE
230                         && value > 0
231                         && value != '\\'        /* FIXME */
232                         && value < 127
233                         && isprint((int) value)) {
234                         *d++ = S_QUOTE;
235                         *d++ = (char) value;
236                         *d++ = S_QUOTE;
237                         t = (v + 1);
238                     }
239                 }
240             }
241             *d = 0;
242             if (strlen(result) < strlen(s))
243                 _nc_STRCPY(s, result, strlen(s) + 1);
244         }
245     }
246
247     _nc_set_type(_nc_first_name(ep->tterm.term_names));
248     _nc_curr_line = (int) ep->startline;
249     _nc_write_entry(&ep->tterm);
250 }
251
252 static bool
253 immedhook(ENTRY * ep GCC_UNUSED)
254 /* write out entries with no use capabilities immediately to save storage */
255 {
256 #if !HAVE_BIG_CORE
257     /*
258      * This is strictly a core-economy kluge.  The really clean way to handle
259      * compilation is to slurp the whole file into core and then do all the
260      * name-collision checks and entry writes in one swell foop.  But the
261      * terminfo master file is large enough that some core-poor systems swap
262      * like crazy when you compile it this way...there have been reports of
263      * this process taking *three hours*, rather than the twenty seconds or
264      * less typical on my development box.
265      *
266      * So.  This hook *immediately* writes out the referenced entry if it
267      * has no use capabilities.  The compiler main loop refrains from
268      * adding the entry to the in-core list when this hook fires.  If some
269      * other entry later needs to reference an entry that got written
270      * immediately, that's OK; the resolution code will fetch it off disk
271      * when it can't find it in core.
272      *
273      * Name collisions will still be detected, just not as cleanly.  The
274      * write_entry() code complains before overwriting an entry that
275      * postdates the time of tic's first call to write_entry().  Thus
276      * it will complain about overwriting entries newly made during the
277      * tic run, but not about overwriting ones that predate it.
278      *
279      * The reason this is a hook, and not in line with the rest of the
280      * compiler code, is that the support for termcap fallback cannot assume
281      * it has anywhere to spool out these entries!
282      *
283      * The _nc_set_type() call here requires a compensating one in
284      * _nc_parse_entry().
285      *
286      * If you define HAVE_BIG_CORE, you'll disable this kluge.  This will
287      * make tic a bit faster (because the resolution code won't have to do
288      * disk I/O nearly as often).
289      */
290     if (ep->nuses == 0) {
291         int oldline = _nc_curr_line;
292
293         write_it(ep);
294         _nc_curr_line = oldline;
295         free(ep->tterm.str_table);
296         return (TRUE);
297     }
298 #endif /* HAVE_BIG_CORE */
299     return (FALSE);
300 }
301
302 static void
303 put_translate(int c)
304 /* emit a comment char, translating terminfo names to termcap names */
305 {
306     static bool in_name = FALSE;
307     static size_t have, used;
308     static char *namebuf, *suffix;
309
310     if (in_name) {
311         if (used + 1 >= have) {
312             have += 132;
313             if ((namebuf = typeRealloc(char, have, namebuf)) == 0)
314                   failed("put_translate namebuf");
315             if ((suffix = typeRealloc(char, have, suffix)) == 0)
316                   failed("put_translate suffix");
317         }
318         if (c == '\n' || c == '@') {
319             namebuf[used++] = '\0';
320             (void) putchar('<');
321             (void) fputs(namebuf, stdout);
322             putchar(c);
323             in_name = FALSE;
324         } else if (c != '>') {
325             namebuf[used++] = (char) c;
326         } else {                /* ah! candidate name! */
327             char *up;
328             NCURSES_CONST char *tp;
329
330             namebuf[used++] = '\0';
331             in_name = FALSE;
332
333             suffix[0] = '\0';
334             if ((up = strchr(namebuf, '#')) != 0
335                 || (up = strchr(namebuf, '=')) != 0
336                 || ((up = strchr(namebuf, '@')) != 0 && up[1] == '>')) {
337                 _nc_STRCPY(suffix, up, have);
338                 *up = '\0';
339             }
340
341             if ((tp = nametrans(namebuf)) != 0) {
342                 (void) putchar(':');
343                 (void) fputs(tp, stdout);
344                 (void) fputs(suffix, stdout);
345                 (void) putchar(':');
346             } else {
347                 /* couldn't find a translation, just dump the name */
348                 (void) putchar('<');
349                 (void) fputs(namebuf, stdout);
350                 (void) fputs(suffix, stdout);
351                 (void) putchar('>');
352             }
353         }
354     } else {
355         used = 0;
356         if (c == '<') {
357             in_name = TRUE;
358         } else {
359             putchar(c);
360         }
361     }
362 }
363
364 /* Returns a string, stripped of leading/trailing whitespace */
365 static char *
366 stripped(char *src)
367 {
368     char *dst = 0;
369
370     while (isspace(UChar(*src)))
371         src++;
372
373     if (*src != '\0') {
374         size_t len;
375
376         if ((dst = strdup(src)) == NULL) {
377             failed("strdup");
378         } else {
379             len = strlen(dst);
380             while (--len != 0 && isspace(UChar(dst[len])))
381                 dst[len] = '\0';
382         }
383     }
384     return dst;
385 }
386
387 static FILE *
388 open_tempfile(char *filename)
389 {
390     FILE *result = 0;
391
392     _nc_STRCPY(filename, "/tmp/XXXXXX", PATH_MAX);
393 #if HAVE_MKSTEMP
394     {
395         int oldmask = (int) umask(077);
396         int fd = mkstemp(filename);
397         if (fd >= 0)
398             result = fdopen(fd, "w");
399         umask((mode_t) oldmask);
400     }
401 #else
402     if (tmpnam(filename) != 0)
403         result = fopen(filename, "w");
404 #endif
405     return result;
406 }
407
408 static FILE *
409 copy_input(FILE *source, const char *filename, char *alt_file)
410 {
411     char my_altfile[PATH_MAX];
412     FILE *result = 0;
413     FILE *target = 0;
414     int ch;
415
416     if (alt_file == 0)
417         alt_file = my_altfile;
418
419     if (source == 0) {
420         failed("copy_input (source)");
421     } else if ((target = open_tempfile(alt_file)) == 0) {
422         failed("copy_input (target)");
423     } else {
424         clearerr(source);
425         for (;;) {
426             ch = fgetc(source);
427             if (feof(source)) {
428                 break;
429             } else if (ferror(source)) {
430                 failed(filename);
431             } else if (ch == 0) {
432                 /* don't loop in case someone wants to convert /dev/zero */
433                 fprintf(stderr, "%s: %s is not a text-file\n", _nc_progname, filename);
434                 ExitProgram(EXIT_FAILURE);
435             }
436             fputc(ch, target);
437         }
438         fclose(source);
439         /*
440          * rewind() does not force the target file's data to disk (not does
441          * fflush()...).  So open a second stream on the data and then close
442          * the one that we were writing on before starting to read from the
443          * second stream.
444          */
445         result = fopen(alt_file, "r+");
446         fclose(target);
447         to_remove = strdup(alt_file);
448     }
449     return result;
450 }
451
452 static FILE *
453 open_input(const char *filename, char *alt_file)
454 {
455     FILE *fp;
456     struct stat sb;
457     int mode;
458
459     if (!strcmp(filename, "-")) {
460         fp = copy_input(stdin, STDIN_NAME, alt_file);
461     } else if (stat(filename, &sb) < 0) {
462         fprintf(stderr, "%s: %s %s\n", _nc_progname, filename, strerror(errno));
463         ExitProgram(EXIT_FAILURE);
464     } else if ((mode = (sb.st_mode & S_IFMT)) == S_IFDIR
465                || (mode != S_IFREG && mode != S_IFCHR && mode != S_IFIFO)) {
466         fprintf(stderr, "%s: %s is not a file\n", _nc_progname, filename);
467         ExitProgram(EXIT_FAILURE);
468     } else {
469         fp = fopen(filename, "r");
470
471         if (fp == 0) {
472             fprintf(stderr, "%s: Can't open %s\n", _nc_progname, filename);
473             ExitProgram(EXIT_FAILURE);
474         }
475         if (mode != S_IFREG) {
476             if (alt_file != 0) {
477                 FILE *fp2 = copy_input(fp, filename, alt_file);
478                 fp = fp2;
479             } else {
480                 fprintf(stderr, "%s: %s is not a file\n", _nc_progname, filename);
481                 ExitProgram(EXIT_FAILURE);
482             }
483         }
484     }
485     return fp;
486 }
487
488 /* Parse the "-e" option-value into a list of names */
489 static char **
490 make_namelist(char *src)
491 {
492     char **dst = 0;
493
494     char *s, *base;
495     unsigned pass, n, nn;
496     char buffer[BUFSIZ];
497
498     if (src == 0) {
499         /* EMPTY */ ;
500     } else if (strchr(src, '/') != 0) {         /* a filename */
501         FILE *fp = open_input(src, (char *) 0);
502
503         for (pass = 1; pass <= 2; pass++) {
504             nn = 0;
505             while (fgets(buffer, sizeof(buffer), fp) != 0) {
506                 if ((s = stripped(buffer)) != 0) {
507                     if (dst != 0)
508                         dst[nn] = s;
509                     else
510                         free(s);
511                     nn++;
512                 }
513             }
514             if (pass == 1) {
515                 if ((dst = typeCalloc(char *, nn + 1)) == 0)
516                       failed("make_namelist");
517                 rewind(fp);
518             }
519         }
520         fclose(fp);
521     } else {                    /* literal list of names */
522         for (pass = 1; pass <= 2; pass++) {
523             for (n = nn = 0, base = src;; n++) {
524                 int mark = src[n];
525                 if (mark == ',' || mark == '\0') {
526                     if (pass == 1) {
527                         nn++;
528                     } else {
529                         src[n] = '\0';
530                         if ((s = stripped(base)) != 0)
531                             dst[nn++] = s;
532                         base = &src[n + 1];
533                     }
534                 }
535                 if (mark == '\0')
536                     break;
537             }
538             if (pass == 1) {
539                 if ((dst = typeCalloc(char *, nn + 1)) == 0)
540                       failed("make_namelist");
541             }
542         }
543     }
544     if (showsummary && (dst != 0)) {
545         fprintf(log_fp, "Entries that will be compiled:\n");
546         for (n = 0; dst[n] != 0; n++)
547             fprintf(log_fp, "%u:%s\n", n + 1, dst[n]);
548     }
549     return dst;
550 }
551
552 static bool
553 matches(char **needle, const char *haystack)
554 /* does entry in needle list match |-separated field in haystack? */
555 {
556     bool code = FALSE;
557     size_t n;
558
559     if (needle != 0) {
560         for (n = 0; needle[n] != 0; n++) {
561             if (_nc_name_match(haystack, needle[n], "|")) {
562                 code = TRUE;
563                 break;
564             }
565         }
566     } else
567         code = TRUE;
568     return (code);
569 }
570
571 static char *
572 valid_db_path(const char *nominal)
573 {
574     struct stat sb;
575 #if USE_HASHED_DB
576     char suffix[] = DBM_SUFFIX;
577     size_t need = strlen(nominal) + sizeof(suffix);
578     char *result = malloc(need);
579
580     if (result == 0)
581         failed("valid_db_path");
582     _nc_STRCPY(result, nominal, need);
583     if (strcmp(result + need - sizeof(suffix), suffix)) {
584         _nc_STRCAT(result, suffix, need);
585     }
586 #else
587     char *result = strdup(nominal);
588 #endif
589
590     DEBUG(1, ("** stat(%s)", result));
591     if (stat(result, &sb) >= 0) {
592 #if USE_HASHED_DB
593         if (!S_ISREG(sb.st_mode)
594             || access(result, R_OK | W_OK) != 0) {
595             DEBUG(1, ("...not a writable file"));
596             free(result);
597             result = 0;
598         }
599 #else
600         if (!S_ISDIR(sb.st_mode)
601             || access(result, R_OK | W_OK | X_OK) != 0) {
602             DEBUG(1, ("...not a writable directory"));
603             free(result);
604             result = 0;
605         }
606 #endif
607     } else {
608         /* check if parent is directory and is writable */
609         unsigned leaf = _nc_pathlast(result);
610
611         DEBUG(1, ("...not found"));
612         if (leaf) {
613             char save = result[leaf];
614             result[leaf] = 0;
615             if (stat(result, &sb) >= 0
616                 && S_ISDIR(sb.st_mode)
617                 && access(result, R_OK | W_OK | X_OK) == 0) {
618                 result[leaf] = save;
619             } else {
620                 DEBUG(1, ("...parent directory %s is not writable", result));
621                 free(result);
622                 result = 0;
623             }
624         } else {
625             DEBUG(1, ("... no parent directory"));
626             free(result);
627             result = 0;
628         }
629     }
630     return result;
631 }
632
633 /*
634  * Show the databases to which tic could write.  The location to which it
635  * writes is always the first one.  If none are writable, print an error
636  * message.
637  */
638 static void
639 show_databases(const char *outdir)
640 {
641     bool specific = (outdir != 0) || getenv("TERMINFO") != 0;
642     char *result;
643     const char *tried = 0;
644
645     if (outdir == 0) {
646         outdir = _nc_tic_dir(0);
647     }
648     if ((result = valid_db_path(outdir)) != 0) {
649         printf("%s\n", result);
650         free(result);
651     } else {
652         tried = outdir;
653     }
654
655     if ((outdir = _nc_home_terminfo())) {
656         if ((result = valid_db_path(outdir)) != 0) {
657             printf("%s\n", result);
658             free(result);
659         } else if (!specific) {
660             tried = outdir;
661         }
662     }
663
664     /*
665      * If we can write in neither location, give an error message.
666      */
667     if (tried) {
668         fflush(stdout);
669         fprintf(stderr, "%s: %s (no permission)\n", _nc_progname, tried);
670         ExitProgram(EXIT_FAILURE);
671     }
672 }
673
674 static void
675 add_digit(int *target, int source)
676 {
677     *target = (*target * 10) + (source - '0');
678 }
679
680 int
681 main(int argc, char *argv[])
682 {
683     char my_tmpname[PATH_MAX];
684     char my_altfile[PATH_MAX];
685     int v_opt = -1;
686     int smart_defaults = TRUE;
687     char *termcap;
688     ENTRY *qp;
689
690     int this_opt, last_opt = '?';
691
692     int outform = F_TERMINFO;   /* output format */
693     int sortmode = S_TERMINFO;  /* sort_mode */
694
695     int width = 60;
696     int height = 65535;
697     bool formatted = FALSE;     /* reformat complex strings? */
698     bool literal = FALSE;       /* suppress post-processing? */
699     int numbers = 0;            /* format "%'char'" to/from "%{number}" */
700     bool forceresolve = FALSE;  /* force resolution */
701     bool limited = TRUE;
702     char *tversion = (char *) NULL;
703     const char *source_file = "terminfo";
704     char *outdir = (char *) NULL;
705     bool check_only = FALSE;
706     bool suppress_untranslatable = FALSE;
707     int quickdump = 0;
708     bool quiet = FALSE;
709     bool wrap_strings = FALSE;
710
711     log_fp = stderr;
712
713     _nc_progname = _nc_rootname(argv[0]);
714     atexit(cleanup);
715
716     if ((infodump = same_program(_nc_progname, PROG_CAPTOINFO)) != FALSE) {
717         outform = F_TERMINFO;
718         sortmode = S_TERMINFO;
719     }
720     if ((capdump = same_program(_nc_progname, PROG_INFOTOCAP)) != FALSE) {
721         outform = F_TERMCAP;
722         sortmode = S_TERMCAP;
723     }
724 #if NCURSES_XNAMES
725     use_extended_names(FALSE);
726 #endif
727     _nc_strict_bsd = 0;
728
729     /*
730      * Processing arguments is a little complicated, since someone made a
731      * design decision to allow the numeric values for -w, -v options to
732      * be optional.
733      */
734     while ((this_opt = getopt(argc, argv,
735                               "0123456789CDIKLNQR:TUVWace:fGgo:qrstvwx")) != -1) {
736         if (isdigit(this_opt)) {
737             switch (last_opt) {
738             case 'Q':
739                 add_digit(&quickdump, this_opt);
740                 break;
741             case 'v':
742                 add_digit(&v_opt, this_opt);
743                 break;
744             case 'w':
745                 add_digit(&width, this_opt);
746                 break;
747             default:
748                 switch (this_opt) {
749                 case '0':
750                     last_opt = this_opt;
751                     width = 65535;
752                     height = 1;
753                     break;
754                 case '1':
755                     last_opt = this_opt;
756                     width = 0;
757                     break;
758                 default:
759                     usage();
760                 }
761             }
762             continue;
763         }
764         switch (this_opt) {
765         case 'K':
766             _nc_strict_bsd = 1;
767             /* the initial version of -K in 20110730 fell-thru here, but the
768              * same flag is useful when reading sources -TD
769              */
770             break;
771         case 'C':
772             capdump = TRUE;
773             outform = F_TERMCAP;
774             sortmode = S_TERMCAP;
775             break;
776         case 'D':
777             debug_level = VtoTrace(v_opt);
778             set_trace_level(debug_level);
779             show_databases(outdir);
780             ExitProgram(EXIT_SUCCESS);
781             break;
782         case 'I':
783             infodump = TRUE;
784             outform = F_TERMINFO;
785             sortmode = S_TERMINFO;
786             break;
787         case 'L':
788             infodump = TRUE;
789             outform = F_VARIABLE;
790             sortmode = S_VARIABLE;
791             break;
792         case 'N':
793             smart_defaults = FALSE;
794             literal = TRUE;
795             break;
796         case 'Q':
797             quickdump = 0;
798             break;
799         case 'R':
800             tversion = optarg;
801             break;
802         case 'T':
803             limited = FALSE;
804             break;
805         case 'U':
806             literal = TRUE;
807             break;
808         case 'V':
809             puts(curses_version());
810             ExitProgram(EXIT_SUCCESS);
811         case 'W':
812             wrap_strings = TRUE;
813             break;
814         case 'c':
815             check_only = TRUE;
816             break;
817         case 'e':
818             namelst = make_namelist(optarg);
819             break;
820         case 'f':
821             formatted = TRUE;
822             break;
823         case 'G':
824             numbers = 1;
825             break;
826         case 'g':
827             numbers = -1;
828             break;
829         case 'o':
830             outdir = optarg;
831             break;
832         case 'q':
833             quiet = TRUE;
834             break;
835         case 'r':
836             forceresolve = TRUE;
837             break;
838         case 's':
839             showsummary = TRUE;
840             break;
841         case 'v':
842             v_opt = 0;
843             break;
844         case 'w':
845             width = 0;
846             break;
847 #if NCURSES_XNAMES
848         case 't':
849             _nc_disable_period = FALSE;
850             suppress_untranslatable = TRUE;
851             break;
852         case 'a':
853             _nc_disable_period = TRUE;
854             /* FALLTHRU */
855         case 'x':
856             use_extended_names(TRUE);
857             using_extensions = TRUE;
858             break;
859 #endif
860         default:
861             usage();
862         }
863         last_opt = this_opt;
864     }
865
866     debug_level = VtoTrace(v_opt);
867     set_trace_level(debug_level);
868
869     if (_nc_tracing) {
870         save_check_termtype = _nc_check_termtype2;
871         _nc_check_termtype2 = check_termtype;
872     }
873 #if !HAVE_BIG_CORE
874     /*
875      * Aaargh! immedhook seriously hoses us!
876      *
877      * One problem with immedhook is it means we can't do -e.  Problem
878      * is that we can't guarantee that for each terminal listed, all the
879      * terminals it depends on will have been kept in core for reference
880      * resolution -- in fact it's certain the primitive types at the end
881      * of reference chains *won't* be in core unless they were explicitly
882      * in the select list themselves.
883      */
884     if (namelst && (!infodump && !capdump)) {
885         (void) fprintf(stderr,
886                        "%s: Sorry, -e can't be used without -I or -C\n",
887                        _nc_progname);
888         ExitProgram(EXIT_FAILURE);
889     }
890 #endif /* HAVE_BIG_CORE */
891
892     if (optind < argc) {
893         source_file = argv[optind++];
894         if (optind < argc) {
895             fprintf(stderr,
896                     "%s: Too many file names.  Usage:\n\t%s %s",
897                     _nc_progname,
898                     _nc_progname,
899                     usage_string);
900             ExitProgram(EXIT_FAILURE);
901         }
902     } else {
903         if (infodump == TRUE) {
904             /* captoinfo's no-argument case */
905             source_file = "/etc/termcap";
906             if ((termcap = getenv("TERMCAP")) != 0
907                 && (namelst = make_namelist(getenv("TERM"))) != 0) {
908                 if (access(termcap, F_OK) == 0) {
909                     /* file exists */
910                     source_file = termcap;
911                 } else {
912                     if ((tmp_fp = open_tempfile(my_tmpname)) != 0) {
913                         source_file = my_tmpname;
914                         fprintf(tmp_fp, "%s\n", termcap);
915                         fclose(tmp_fp);
916                         tmp_fp = open_input(source_file, (char *) 0);
917                         to_remove = source_file;
918                     } else {
919                         failed("tmpnam");
920                     }
921                 }
922             }
923         } else {
924             /* tic */
925             fprintf(stderr,
926                     "%s: File name needed.  Usage:\n\t%s %s",
927                     _nc_progname,
928                     _nc_progname,
929                     usage_string);
930             ExitProgram(EXIT_FAILURE);
931         }
932     }
933
934     if (tmp_fp == 0) {
935         tmp_fp = open_input(source_file, my_altfile);
936         if (!strcmp(source_file, "-")) {
937             source_file = STDIN_NAME;
938         }
939     }
940
941     if (infodump || check_only) {
942         dump_init(tversion,
943                   (smart_defaults
944                    ? outform
945                    : F_LITERAL),
946                   sortmode,
947                   wrap_strings, width, height,
948                   debug_level, formatted || check_only, check_only, quickdump);
949     } else if (capdump) {
950         dump_init(tversion,
951                   outform,
952                   sortmode,
953                   wrap_strings, width, height,
954                   debug_level, FALSE, FALSE, FALSE);
955     }
956
957     /* parse entries out of the source file */
958     _nc_set_source(source_file);
959 #if !HAVE_BIG_CORE
960     if (!(check_only || infodump || capdump))
961         _nc_set_writedir(outdir);
962 #endif /* HAVE_BIG_CORE */
963     _nc_read_entry_source(tmp_fp, (char *) NULL,
964                           !smart_defaults || literal, FALSE,
965                           ((check_only || infodump || capdump)
966                            ? NULLHOOK
967                            : immedhook));
968
969     /* do use resolution */
970     if (check_only || (!infodump && !capdump) || forceresolve) {
971         if (!_nc_resolve_uses2(TRUE, literal) && !check_only) {
972             ExitProgram(EXIT_FAILURE);
973         }
974     }
975
976     /* length check */
977     if (check_only && limited && (capdump || infodump)) {
978         for_entry_list(qp) {
979             if (matches(namelst, qp->tterm.term_names)) {
980                 int len = fmt_entry(&qp->tterm, NULL, FALSE, TRUE, infodump, numbers);
981
982                 if (len > (infodump ? MAX_TERMINFO_LENGTH : MAX_TERMCAP_LENGTH))
983                     (void) fprintf(stderr,
984                                    "%s: resolved %s entry is %d bytes long\n",
985                                    _nc_progname,
986                                    _nc_first_name(qp->tterm.term_names),
987                                    len);
988             }
989         }
990     }
991
992     /* write or dump all entries */
993     if (check_only) {
994         /* this is in case infotocap() generates warnings */
995         _nc_curr_col = _nc_curr_line = -1;
996
997         for_entry_list(qp) {
998             if (matches(namelst, qp->tterm.term_names)) {
999                 /* this is in case infotocap() generates warnings */
1000                 _nc_set_type(_nc_first_name(qp->tterm.term_names));
1001                 _nc_curr_line = (int) qp->startline;
1002                 repair_acsc(&qp->tterm);
1003                 dump_entry(&qp->tterm, suppress_untranslatable,
1004                            limited, numbers, NULL);
1005             }
1006         }
1007     } else {
1008         if (!infodump && !capdump) {
1009             _nc_set_writedir(outdir);
1010             for_entry_list(qp) {
1011                 if (matches(namelst, qp->tterm.term_names))
1012                     write_it(qp);
1013             }
1014         } else {
1015             /* this is in case infotocap() generates warnings */
1016             _nc_curr_col = _nc_curr_line = -1;
1017
1018             for_entry_list(qp) {
1019                 if (matches(namelst, qp->tterm.term_names)) {
1020                     long j = qp->cend - qp->cstart;
1021                     int len = 0;
1022
1023                     /* this is in case infotocap() generates warnings */
1024                     _nc_set_type(_nc_first_name(qp->tterm.term_names));
1025
1026                     if (!quiet) {
1027                         (void) fseek(tmp_fp, qp->cstart, SEEK_SET);
1028                         while (j-- > 0) {
1029                             int ch = fgetc(tmp_fp);
1030                             if (ch == EOF || ferror(tmp_fp)) {
1031                                 break;
1032                             } else if (infodump) {
1033                                 (void) putchar(ch);
1034                             } else {
1035                                 put_translate(ch);
1036                             }
1037                         }
1038                     }
1039
1040                     repair_acsc(&qp->tterm);
1041                     dump_entry(&qp->tterm, suppress_untranslatable,
1042                                limited, numbers, NULL);
1043                     for (j = 0; j < (long) qp->nuses; j++)
1044                         dump_uses(qp->uses[j].name, !capdump);
1045                     len = show_entry();
1046                     if (debug_level != 0 && !limited)
1047                         printf("# length=%d\n", len);
1048                 }
1049             }
1050             if (!namelst && _nc_tail && !quiet) {
1051                 int c, oldc = '\0';
1052                 bool in_comment = FALSE;
1053                 bool trailing_comment = FALSE;
1054
1055                 (void) fseek(tmp_fp, _nc_tail->cend, SEEK_SET);
1056                 while ((c = fgetc(tmp_fp)) != EOF) {
1057                     if (oldc == '\n') {
1058                         if (c == '#') {
1059                             trailing_comment = TRUE;
1060                             in_comment = TRUE;
1061                         } else {
1062                             in_comment = FALSE;
1063                         }
1064                     }
1065                     if (trailing_comment
1066                         && (in_comment || (oldc == '\n' && c == '\n')))
1067                         putchar(c);
1068                     oldc = c;
1069                 }
1070             }
1071         }
1072     }
1073
1074     /* Show the directory into which entries were written, and the total
1075      * number of entries
1076      */
1077     if (showsummary
1078         && (!(check_only || infodump || capdump))) {
1079         int total = _nc_tic_written();
1080         if (total != 0)
1081             fprintf(log_fp, "%d entries written to %s\n",
1082                     total,
1083                     _nc_tic_dir((char *) 0));
1084         else
1085             fprintf(log_fp, "No entries written\n");
1086     }
1087     ExitProgram(EXIT_SUCCESS);
1088 }
1089
1090 /*
1091  * This bit of legerdemain turns all the terminfo variable names into
1092  * references to locations in the arrays Booleans, Numbers, and Strings ---
1093  * precisely what's needed (see comp_parse.c).
1094  */
1095 #undef CUR
1096 #define CUR tp->
1097
1098 /*
1099  * Check if the alternate character-set capabilities are consistent.
1100  */
1101 static void
1102 check_acs(TERMTYPE2 *tp)
1103 {
1104     int vt100_smacs = 0;
1105     int vt100_rmacs = 0;
1106     int vt100_enacs = 0;
1107
1108     /*
1109      * ena_acs is not always necessary, but if it is present, the enter/exit
1110      * capabilities should be.
1111      */
1112     ANDMISSING(ena_acs, enter_alt_charset_mode);
1113     ANDMISSING(ena_acs, exit_alt_charset_mode);
1114     PAIRED(exit_alt_charset_mode, exit_alt_charset_mode);
1115
1116     /*
1117      * vt100-like is frequently used, but perhaps ena_acs is missing, etc.
1118      */
1119     if (VALID_STRING(enter_alt_charset_mode)) {
1120         vt100_smacs = (!strcmp("\033(0", enter_alt_charset_mode)
1121                        ? 2
1122                        : (!strcmp("\016", enter_alt_charset_mode)
1123                           ? 1
1124                           : 0));
1125     }
1126     if (VALID_STRING(exit_alt_charset_mode)) {
1127         vt100_rmacs = (!strcmp("\033(B", exit_alt_charset_mode)
1128                        ? 2
1129                        : (!strcmp("\017", exit_alt_charset_mode)
1130                           ? 1
1131                           : 0));
1132     }
1133     if (VALID_STRING(ena_acs)) {
1134         vt100_enacs = (!strcmp("\033(B\033)0", ena_acs)
1135                        ? 2
1136                        : 0);
1137     }
1138     if (vt100_rmacs && vt100_smacs && (vt100_rmacs != vt100_smacs)) {
1139         _nc_warning("rmacs/smacs are inconsistent");
1140     }
1141     if ((vt100_rmacs == 2) && (vt100_smacs == 2) && vt100_enacs) {
1142         _nc_warning("rmacs/smacs make enacs redundant");
1143     }
1144     if ((vt100_rmacs == 1) && (vt100_smacs == 1) && !vt100_enacs) {
1145         _nc_warning("VT100-style rmacs/smacs require enacs");
1146     }
1147
1148     if (VALID_STRING(acs_chars)) {
1149         const char *boxes = "lmkjtuvwqxn";
1150         char mapped[256];
1151         char missing[256];
1152         const char *p;
1153         char *q;
1154
1155         memset(mapped, 0, sizeof(mapped));
1156         for (p = acs_chars; *p != '\0'; p += 2) {
1157             if (p[1] == '\0') {
1158                 _nc_warning("acsc has odd number of characters");
1159                 break;
1160             }
1161             mapped[UChar(p[0])] = p[1];
1162         }
1163
1164         if (mapped[UChar('I')] && !mapped[UChar('i')]) {
1165             _nc_warning("acsc refers to 'I', which is probably an error");
1166         }
1167
1168         for (p = boxes, q = missing; *p != '\0'; ++p) {
1169             if (!mapped[UChar(p[0])]) {
1170                 *q++ = p[0];
1171             }
1172         }
1173         *q = '\0';
1174
1175         assert(strlen(missing) <= strlen(boxes));
1176         if (*missing != '\0' && strcmp(missing, boxes)) {
1177             _nc_warning("acsc is missing some line-drawing mapping: %s", missing);
1178         }
1179     }
1180 }
1181
1182 static char *
1183 safe_strdup(const char *value)
1184 {
1185     if (value == NULL)
1186         value = "";
1187     return strdup(value);
1188 }
1189
1190 static bool
1191 same_color(NCURSES_CONST char *oldcap, NCURSES_CONST char *newcap, int limit)
1192 {
1193     bool result = FALSE;
1194     if (limit > 16)
1195         limit = 16;
1196     if (limit >= 8) {
1197         int n;
1198         int same;
1199         for (n = same = 0; n < limit; ++n) {
1200             char *oldvalue = safe_strdup(TIPARM_1(oldcap, n));
1201             char *newvalue = safe_strdup(TIPARM_1(newcap, n));
1202             same += !strcmp(oldvalue, newvalue);
1203             free(oldvalue);
1204             free(newvalue);
1205         }
1206         result = (same == limit);
1207     }
1208     return result;
1209 }
1210
1211 /*
1212  * Check if the color capabilities are consistent
1213  */
1214 static void
1215 check_colors(TERMTYPE2 *tp)
1216 {
1217     char *value;
1218
1219     if ((max_colors > 0) != (max_pairs > 0)
1220         || ((max_colors > max_pairs) && (initialize_pair == 0)))
1221         _nc_warning("inconsistent values for max_colors (%d) and max_pairs (%d)",
1222                     max_colors, max_pairs);
1223
1224     PAIRED(set_foreground, set_background);
1225     PAIRED(set_a_foreground, set_a_background);
1226     PAIRED(set_color_pair, initialize_pair);
1227
1228     if (VALID_STRING(set_foreground)
1229         && VALID_STRING(set_a_foreground)) {
1230         if (!_nc_capcmp(set_foreground, set_a_foreground)) {
1231             _nc_warning("expected setf/setaf to be different");
1232         } else if (same_color(set_foreground, set_a_foreground, max_colors)) {
1233             _nc_warning("setf/setaf are equivalent");
1234         }
1235     }
1236
1237     if (VALID_STRING(set_background)
1238         && VALID_STRING(set_a_background)) {
1239         if (!_nc_capcmp(set_background, set_a_background)) {
1240             _nc_warning("expected setb/setab to be different");
1241         } else if (same_color(set_background, set_a_background, max_colors)) {
1242             _nc_warning("setb/setab are equivalent");
1243         }
1244     }
1245
1246     /* see: has_colors() */
1247     if (VALID_NUMERIC(max_colors) && VALID_NUMERIC(max_pairs)
1248         && ((VALID_STRING(set_foreground)
1249              && VALID_STRING(set_background))
1250             || (VALID_STRING(set_a_foreground)
1251                 && VALID_STRING(set_a_background))
1252             || set_color_pair)) {
1253         if (!VALID_STRING(orig_pair) && !VALID_STRING(orig_colors))
1254             _nc_warning("expected either op/oc string for resetting colors");
1255     }
1256     if (can_change) {
1257         if (!VALID_STRING(initialize_pair) &&
1258             !VALID_STRING(initialize_color)) {
1259             _nc_warning("expected initc or initp because ccc is given");
1260         }
1261     } else {
1262         if (VALID_STRING(initialize_pair) ||
1263             VALID_STRING(initialize_color)) {
1264             _nc_warning("expected ccc because initc is given");
1265         }
1266     }
1267     value = tigetstr("RGB");
1268     if (VALID_STRING(value)) {
1269         int r, g, b;
1270         char bad;
1271         int code = sscanf(value, "%d/%d/%d%c", &r, &g, &b, &bad);
1272         if (code != 3 || r <= 0 || g <= 0 || b <= 0) {
1273             _nc_warning("unexpected value for RGB capability: %s", value);
1274         }
1275     }
1276 }
1277
1278 static int
1279 csi_length(const char *value)
1280 {
1281     int result = 0;
1282
1283     if (value[0] == '\033' && value[1] == '[') {
1284         result = 2;
1285     } else if (UChar(value[0]) == 0x9a) {
1286         result = 1;
1287     }
1288     return result;
1289 }
1290
1291 static char
1292 keypad_final(const char *string)
1293 {
1294     char result = '\0';
1295
1296     if (VALID_STRING(string)
1297         && *string++ == '\033'
1298         && *string++ == 'O'
1299         && strlen(string) == 1) {
1300         result = *string;
1301     }
1302
1303     return result;
1304 }
1305
1306 static long
1307 keypad_index(const char *string)
1308 {
1309     char *test;
1310     const char *list = "PQRSwxymtuvlqrsPpn";    /* app-keypad except "Enter" */
1311     int ch;
1312     long result = -1;
1313
1314     if ((ch = keypad_final(string)) != '\0') {
1315         test = (strchr) (list, ch);
1316         if (test != 0)
1317             result = (long) (test - list);
1318     }
1319     return result;
1320 }
1321
1322 /*
1323  * list[] is down, up, left, right
1324  * "left" may be ^H rather than \E[D
1325  * "down" may be ^J rather than \E[B
1326  * But up/right are generally consistently escape sequences for ANSI terminals.
1327  */
1328 static void
1329 check_ansi_cursor(char *list[4])
1330 {
1331     int j, k;
1332     int want;
1333     size_t suffix;
1334     bool skip[4];
1335     bool repeated = FALSE;
1336
1337     for (j = 0; j < 4; ++j) {
1338         skip[j] = FALSE;
1339         for (k = 0; k < j; ++k) {
1340             if (j != k
1341                 && !strcmp(list[j], list[k])) {
1342                 char *value = _nc_tic_expand(list[k], TRUE, 0);
1343                 _nc_warning("repeated cursor control %s\n", value);
1344                 repeated = TRUE;
1345             }
1346         }
1347     }
1348     if (!repeated) {
1349         char *up = list[1];
1350         size_t prefix = (size_t) csi_length(up);
1351
1352         if (prefix) {
1353             suffix = prefix;
1354             while (up[suffix] && isdigit(UChar(up[suffix])))
1355                 ++suffix;
1356         }
1357         if (prefix && up[suffix] == 'A') {
1358             skip[1] = TRUE;
1359             if (!strcmp(list[0], "\n"))
1360                 skip[0] = TRUE;
1361             if (!strcmp(list[2], "\b"))
1362                 skip[2] = TRUE;
1363
1364             for (j = 0; j < 4; ++j) {
1365                 if (skip[j] || strlen(list[j]) == 1)
1366                     continue;
1367                 if (memcmp(list[j], up, prefix)) {
1368                     char *value = _nc_tic_expand(list[j], TRUE, 0);
1369                     _nc_warning("inconsistent prefix for %s\n", value);
1370                     continue;
1371                 }
1372                 if (strlen(list[j]) < suffix) {
1373                     char *value = _nc_tic_expand(list[j], TRUE, 0);
1374                     _nc_warning("inconsistent length for %s, expected %d\n",
1375                                 value, (int) suffix + 1);
1376                     continue;
1377                 }
1378                 want = "BADC"[j];
1379                 if (list[j][suffix] != want) {
1380                     char *value = _nc_tic_expand(list[j], TRUE, 0);
1381                     _nc_warning("inconsistent suffix for %s, expected %c, have %c\n",
1382                                 value, want, list[j][suffix]);
1383                 }
1384             }
1385         }
1386     }
1387 }
1388
1389 #define EXPECTED(name) if (!PRESENT(name)) _nc_warning("expected " #name)
1390 #define UNEXPECTED(name) if (PRESENT(name)) _nc_warning("unexpected " #name ", for %s", why)
1391
1392 static void
1393 check_noaddress(TERMTYPE2 *tp, const char *why)
1394 {
1395     UNEXPECTED(column_address);
1396     UNEXPECTED(cursor_address);
1397     UNEXPECTED(cursor_home);
1398     UNEXPECTED(cursor_mem_address);
1399     UNEXPECTED(cursor_to_ll);
1400     UNEXPECTED(row_address);
1401     UNEXPECTED(row_address);
1402 }
1403
1404 static void
1405 check_cursor(TERMTYPE2 *tp)
1406 {
1407     int count;
1408     char *list[4];
1409
1410     if (hard_copy) {
1411         check_noaddress(tp, "hard_copy");
1412     } else if (generic_type) {
1413         check_noaddress(tp, "generic_type");
1414     } else if (strchr(tp->term_names, '+') == 0) {
1415         int y = 0;
1416         int x = 0;
1417         if (PRESENT(column_address))
1418             ++y;
1419         if (PRESENT(cursor_address))
1420             y = x = 10;
1421         if (PRESENT(cursor_home))
1422             ++y, ++x;
1423         if (PRESENT(cursor_mem_address))
1424             y = x = 10;
1425         if (PRESENT(cursor_to_ll))
1426             ++y, ++x;
1427         if (PRESENT(row_address))
1428             ++x;
1429         if (PRESENT(cursor_down))
1430             ++y;
1431         if (PRESENT(cursor_up))
1432             ++y;
1433         if (PRESENT(cursor_left))
1434             ++x;
1435         if (PRESENT(cursor_right))
1436             ++x;
1437         if (x < 2 && y < 2) {
1438             _nc_warning("terminal lacks cursor addressing");
1439         } else {
1440             if (x < 2)
1441                 _nc_warning("terminal lacks cursor column-addressing");
1442             if (y < 2)
1443                 _nc_warning("terminal lacks cursor row-addressing");
1444         }
1445     }
1446
1447     /* it is rare to have an insert-line feature without a matching delete */
1448     ANDMISSING(parm_insert_line, insert_line);
1449     ANDMISSING(parm_delete_line, delete_line);
1450     ANDMISSING(parm_insert_line, parm_delete_line);
1451
1452     /* if we have a parameterized form, then the non-parameterized is easy */
1453     ANDMISSING(parm_down_cursor, cursor_down);
1454     ANDMISSING(parm_up_cursor, cursor_up);
1455     ANDMISSING(parm_left_cursor, cursor_left);
1456     ANDMISSING(parm_right_cursor, cursor_right);
1457
1458     /* Given any of a set of cursor movement, the whole set should be present.
1459      * Technically this is not true (we could use cursor_address to fill in
1460      * unsupported controls), but it is likely.
1461      */
1462     count = 0;
1463     if (PRESENT(parm_down_cursor)) {
1464         list[count++] = parm_down_cursor;
1465     }
1466     if (PRESENT(parm_up_cursor)) {
1467         list[count++] = parm_up_cursor;
1468     }
1469     if (PRESENT(parm_left_cursor)) {
1470         list[count++] = parm_left_cursor;
1471     }
1472     if (PRESENT(parm_right_cursor)) {
1473         list[count++] = parm_right_cursor;
1474     }
1475     if (count == 4) {
1476         check_ansi_cursor(list);
1477     } else if (count != 0) {
1478         EXPECTED(parm_down_cursor);
1479         EXPECTED(parm_up_cursor);
1480         EXPECTED(parm_left_cursor);
1481         EXPECTED(parm_right_cursor);
1482     }
1483
1484     count = 0;
1485     if (PRESENT(cursor_down)) {
1486         list[count++] = cursor_down;
1487     }
1488     if (PRESENT(cursor_up)) {
1489         list[count++] = cursor_up;
1490     }
1491     if (PRESENT(cursor_left)) {
1492         list[count++] = cursor_left;
1493     }
1494     if (PRESENT(cursor_right)) {
1495         list[count++] = cursor_right;
1496     }
1497     if (count == 4) {
1498         check_ansi_cursor(list);
1499     } else if (count != 0) {
1500         count = 0;
1501         if (PRESENT(cursor_down) && strcmp(cursor_down, "\n"))
1502             ++count;
1503         if (PRESENT(cursor_left) && strcmp(cursor_left, "\b"))
1504             ++count;
1505         if (PRESENT(cursor_up) && strlen(cursor_up) > 1)
1506             ++count;
1507         if (PRESENT(cursor_right) && strlen(cursor_right) > 1)
1508             ++count;
1509         if (count) {
1510             EXPECTED(cursor_down);
1511             EXPECTED(cursor_up);
1512             EXPECTED(cursor_left);
1513             EXPECTED(cursor_right);
1514         }
1515     }
1516 }
1517
1518 #define MAX_KP 5
1519 /*
1520  * Do a quick sanity-check for vt100-style keypads to see if the 5-key keypad
1521  * is mapped inconsistently.
1522  */
1523 static void
1524 check_keypad(TERMTYPE2 *tp)
1525 {
1526     char show[80];
1527
1528     if (VALID_STRING(key_a1) &&
1529         VALID_STRING(key_a3) &&
1530         VALID_STRING(key_b2) &&
1531         VALID_STRING(key_c1) &&
1532         VALID_STRING(key_c3)) {
1533         char final[MAX_KP + 1];
1534         long list[MAX_KP];
1535         int increase = 0;
1536         int j, k, kk;
1537         long last;
1538         long test;
1539
1540         final[0] = keypad_final(key_a1);
1541         final[1] = keypad_final(key_a3);
1542         final[2] = keypad_final(key_b2);
1543         final[3] = keypad_final(key_c1);
1544         final[4] = keypad_final(key_c3);
1545         final[5] = '\0';
1546
1547         /* special case: legacy coding using 1,2,3,0,. on the bottom */
1548         assert(strlen(final) <= MAX_KP);
1549         if (!strcmp(final, "qsrpn"))
1550             return;
1551
1552         list[0] = keypad_index(key_a1);
1553         list[1] = keypad_index(key_a3);
1554         list[2] = keypad_index(key_b2);
1555         list[3] = keypad_index(key_c1);
1556         list[4] = keypad_index(key_c3);
1557
1558         /* check that they're all vt100 keys */
1559         for (j = 0; j < MAX_KP; ++j) {
1560             if (list[j] < 0) {
1561                 return;
1562             }
1563         }
1564
1565         /* check if they're all in increasing order */
1566         for (j = 1; j < MAX_KP; ++j) {
1567             if (list[j] > list[j - 1]) {
1568                 ++increase;
1569             }
1570         }
1571         if (increase != (MAX_KP - 1)) {
1572             show[0] = '\0';
1573
1574             for (j = 0, last = -1; j < MAX_KP; ++j) {
1575                 for (k = 0, kk = -1, test = 100; k < 5; ++k) {
1576                     if (list[k] > last &&
1577                         list[k] < test) {
1578                         test = list[k];
1579                         kk = k;
1580                     }
1581                 }
1582                 last = test;
1583                 assert(strlen(show) < (MAX_KP * 4));
1584                 switch (kk) {
1585                 case 0:
1586                     _nc_STRCAT(show, " ka1", sizeof(show));
1587                     break;
1588                 case 1:
1589                     _nc_STRCAT(show, " ka3", sizeof(show));
1590                     break;
1591                 case 2:
1592                     _nc_STRCAT(show, " kb2", sizeof(show));
1593                     break;
1594                 case 3:
1595                     _nc_STRCAT(show, " kc1", sizeof(show));
1596                     break;
1597                 case 4:
1598                     _nc_STRCAT(show, " kc3", sizeof(show));
1599                     break;
1600                 }
1601             }
1602
1603             _nc_warning("vt100 keypad order inconsistent: %s", show);
1604         }
1605
1606     } else if (VALID_STRING(key_a1) ||
1607                VALID_STRING(key_a3) ||
1608                VALID_STRING(key_b2) ||
1609                VALID_STRING(key_c1) ||
1610                VALID_STRING(key_c3)) {
1611         show[0] = '\0';
1612         if (keypad_index(key_a1) >= 0)
1613             _nc_STRCAT(show, " ka1", sizeof(show));
1614         if (keypad_index(key_a3) >= 0)
1615             _nc_STRCAT(show, " ka3", sizeof(show));
1616         if (keypad_index(key_b2) >= 0)
1617             _nc_STRCAT(show, " kb2", sizeof(show));
1618         if (keypad_index(key_c1) >= 0)
1619             _nc_STRCAT(show, " kc1", sizeof(show));
1620         if (keypad_index(key_c3) >= 0)
1621             _nc_STRCAT(show, " kc3", sizeof(show));
1622         if (*show != '\0')
1623             _nc_warning("vt100 keypad map incomplete:%s", show);
1624     }
1625
1626     /*
1627      * These warnings are useful for consistency checks - it is possible that
1628      * there are real terminals with mismatches in these
1629      */
1630     ANDMISSING(key_ic, key_dc);
1631 }
1632
1633 static void
1634 check_printer(TERMTYPE2 *tp)
1635 {
1636     (void) tp;
1637 #if defined(enter_doublewide_mode) && defined(exit_doublewide_mode)
1638     PAIRED(enter_doublewide_mode, exit_doublewide_mode);
1639 #endif
1640 #if defined(enter_italics_mode) && defined(exit_italics_mode)
1641     PAIRED(enter_italics_mode, exit_italics_mode);
1642 #endif
1643 #if defined(enter_leftward_mode) && defined(exit_leftward_mode)
1644     PAIRED(enter_leftward_mode, exit_leftward_mode);
1645 #endif
1646 #if defined(enter_micro_mode) && defined(exit_micro_mode)
1647     PAIRED(enter_micro_mode, exit_micro_mode);
1648 #endif
1649 #if defined(enter_shadow_mode) && defined(exit_shadow_mode)
1650     PAIRED(enter_shadow_mode, exit_shadow_mode);
1651 #endif
1652 #if defined(enter_subscript_mode) && defined(exit_subscript_mode)
1653     PAIRED(enter_subscript_mode, exit_subscript_mode);
1654 #endif
1655 #if defined(enter_superscript_mode) && defined(exit_superscript_mode)
1656     PAIRED(enter_superscript_mode, exit_superscript_mode);
1657 #endif
1658 #if defined(enter_upward_mode) && defined(exit_upward_mode)
1659     PAIRED(enter_upward_mode, exit_upward_mode);
1660 #endif
1661
1662 #if defined(start_char_set_def) && defined(stop_char_set_def)
1663     ANDMISSING(start_char_set_def, stop_char_set_def);
1664 #endif
1665
1666     /* if we have a parameterized form, then the non-parameterized is easy */
1667 #if defined(set_bottom_margin_parm) && defined(set_bottom_margin)
1668     ANDMISSING(set_bottom_margin_parm, set_bottom_margin);
1669 #endif
1670 #if defined(set_left_margin_parm) && defined(set_left_margin)
1671     ANDMISSING(set_left_margin_parm, set_left_margin);
1672 #endif
1673 #if defined(set_right_margin_parm) && defined(set_right_margin)
1674     ANDMISSING(set_right_margin_parm, set_right_margin);
1675 #endif
1676 #if defined(set_top_margin_parm) && defined(set_top_margin)
1677     ANDMISSING(set_top_margin_parm, set_top_margin);
1678 #endif
1679
1680 #if defined(parm_down_micro) && defined(micro_down)
1681     ANDMISSING(parm_down_micro, micro_down);
1682 #endif
1683 #if defined(parm_left_micro) && defined(micro_left)
1684     ANDMISSING(parm_left_micro, micro_left);
1685 #endif
1686 #if defined(parm_right_micro) && defined(micro_right)
1687     ANDMISSING(parm_right_micro, micro_right);
1688 #endif
1689 #if defined(parm_up_micro) && defined(micro_up)
1690     ANDMISSING(parm_up_micro, micro_up);
1691 #endif
1692 }
1693
1694 #if NCURSES_XNAMES
1695 static bool
1696 uses_SGR_39_49(const char *value)
1697 {
1698     return (strstr(value, "39;49") != 0
1699             || strstr(value, "49;39") != 0);
1700 }
1701
1702 /*
1703  * Check consistency of termcap extensions related to "screen".
1704  */
1705 static void
1706 check_screen(TERMTYPE2 *tp)
1707 {
1708     if (_nc_user_definable) {
1709         int have_XT = tigetflag("XT");
1710         int have_XM = tigetflag("XM");
1711         int have_bce = back_color_erase;
1712         bool have_kmouse = FALSE;
1713         bool use_sgr_39_49 = FALSE;
1714         char *name = _nc_first_name(tp->term_names);
1715         bool is_screen = !strncmp(name, "screen", 6);
1716         bool screen_base = (is_screen
1717                             && strchr(name, '.') == 0);
1718
1719         if (!VALID_BOOLEAN(have_bce)) {
1720             have_bce = FALSE;
1721         }
1722         if (!VALID_BOOLEAN(have_XM)) {
1723             have_XM = FALSE;
1724         }
1725         if (!VALID_BOOLEAN(have_XT)) {
1726             have_XT = FALSE;
1727         }
1728         if (VALID_STRING(key_mouse)) {
1729             have_kmouse = !strcmp("\033[M", key_mouse);
1730         }
1731         if (VALID_STRING(orig_colors)) {
1732             use_sgr_39_49 = uses_SGR_39_49(orig_colors);
1733         } else if (VALID_STRING(orig_pair)) {
1734             use_sgr_39_49 = uses_SGR_39_49(orig_pair);
1735         }
1736
1737         if (have_XM && have_XT) {
1738             _nc_warning("screen's XT capability conflicts with XM");
1739         } else if (have_XT && screen_base) {
1740             _nc_warning("screen's \"screen\" entries should not have XT set");
1741         } else if (have_XT) {
1742             if (!have_kmouse && is_screen) {
1743                 if (VALID_STRING(key_mouse)) {
1744                     _nc_warning("value of kmous inconsistent with screen's usage");
1745                 } else {
1746                     _nc_warning("expected kmous capability with XT");
1747                 }
1748             }
1749             if (!have_bce && max_colors > 0)
1750                 _nc_warning("expected bce capability with XT");
1751             if (!use_sgr_39_49 && have_bce && max_colors > 0)
1752                 _nc_warning("expected orig_colors capability with XT to have 39/49 parameters");
1753             if (VALID_STRING(to_status_line))
1754                 _nc_warning("\"tsl\" capability is redundant, given XT");
1755         } else {
1756             if (have_kmouse
1757                 && !have_XM
1758                 && !screen_base && strchr(name, '+') == 0) {
1759                 _nc_warning("expected XT to be set, given kmous");
1760             }
1761         }
1762     }
1763 }
1764 #else
1765 #define check_screen(tp)        /* nothing */
1766 #endif
1767
1768 /*
1769  * Returns the expected number of parameters for the given capability.
1770  */
1771 static int
1772 expected_params(const char *name)
1773 {
1774 #define DATA(name,count) { { name }, count }
1775     /* *INDENT-OFF* */
1776     static const struct {
1777         const char name[9];
1778         int count;
1779     } table[] = {
1780         DATA( "S0",             1 ),    /* 'screen' extension */
1781         DATA( "birep",          2 ),
1782         DATA( "chr",            1 ),
1783         DATA( "colornm",        1 ),
1784         DATA( "cpi",            1 ),
1785         DATA( "csnm",           1 ),
1786         DATA( "csr",            2 ),
1787         DATA( "cub",            1 ),
1788         DATA( "cud",            1 ),
1789         DATA( "cuf",            1 ),
1790         DATA( "cup",            2 ),
1791         DATA( "cuu",            1 ),
1792         DATA( "cvr",            1 ),
1793         DATA( "cwin",           5 ),
1794         DATA( "dch",            1 ),
1795         DATA( "defc",           3 ),
1796         DATA( "dial",           1 ),
1797         DATA( "dispc",          1 ),
1798         DATA( "dl",             1 ),
1799         DATA( "ech",            1 ),
1800         DATA( "getm",           1 ),
1801         DATA( "hpa",            1 ),
1802         DATA( "ich",            1 ),
1803         DATA( "il",             1 ),
1804         DATA( "indn",           1 ),
1805         DATA( "initc",          4 ),
1806         DATA( "initp",          7 ),
1807         DATA( "lpi",            1 ),
1808         DATA( "mc5p",           1 ),
1809         DATA( "mrcup",          2 ),
1810         DATA( "mvpa",           1 ),
1811         DATA( "pfkey",          2 ),
1812         DATA( "pfloc",          2 ),
1813         DATA( "pfx",            2 ),
1814         DATA( "pfxl",           3 ),
1815         DATA( "pln",            2 ),
1816         DATA( "qdial",          1 ),
1817         DATA( "rcsd",           1 ),
1818         DATA( "rep",            2 ),
1819         DATA( "rin",            1 ),
1820         DATA( "sclk",           3 ),
1821         DATA( "scp",            1 ),
1822         DATA( "scs",            1 ),
1823         DATA( "scsd",           2 ),
1824         DATA( "setab",          1 ),
1825         DATA( "setaf",          1 ),
1826         DATA( "setb",           1 ),
1827         DATA( "setcolor",       1 ),
1828         DATA( "setf",           1 ),
1829         DATA( "sgr",            9 ),
1830         DATA( "sgr1",           6 ),
1831         DATA( "slength",        1 ),
1832         DATA( "slines",         1 ),
1833         DATA( "smgbp",          1 ),    /* 2 if smgtp is not given */
1834         DATA( "smglp",          1 ),
1835         DATA( "smglr",          2 ),
1836         DATA( "smgrp",          1 ),
1837         DATA( "smgtb",          2 ),
1838         DATA( "smgtp",          1 ),
1839         DATA( "tsl",            1 ),
1840         DATA( "u6",             -1 ),
1841         DATA( "vpa",            1 ),
1842         DATA( "wind",           4 ),
1843         DATA( "wingo",          1 ),
1844     };
1845     /* *INDENT-ON* */
1846 #undef DATA
1847
1848     unsigned n;
1849     int result = 0;             /* function-keys, etc., use none */
1850
1851     for (n = 0; n < SIZEOF(table); n++) {
1852         if (!strcmp(name, table[n].name)) {
1853             result = table[n].count;
1854             break;
1855         }
1856     }
1857
1858     return result;
1859 }
1860
1861 /*
1862  * Check for user-capabilities that happen to be used in ncurses' terminal
1863  * database.
1864  */
1865 #if NCURSES_XNAMES
1866 static struct user_table_entry const *
1867 lookup_user_capability(const char *name)
1868 {
1869     struct user_table_entry const *result = 0;
1870     if (*name != 'k') {
1871         result = _nc_find_user_entry(name);
1872     }
1873     return result;
1874 }
1875 #endif
1876
1877 /*
1878  * If a given name is likely to be a user-capability, return the number of
1879  * parameters it would be used with.  If not, return -1.
1880  *
1881  * ncurses assumes that u6 could be used for getting the cursor-position, but
1882  * that is not implemented.  Make a special case for that, to quiet needless
1883  * warnings.
1884  *
1885  * The other string-capability extensions (see terminfo.src) which could have
1886  * parameters such as "Ss", "%u", are not used by ncurses.  But we check those
1887  * anyway, to validate the terminfo database.
1888  */
1889 static int
1890 is_user_capability(const char *name)
1891 {
1892     int result = -1;
1893     if (name[0] == 'u' &&
1894         (name[1] >= '0' && name[1] <= '9') &&
1895         name[2] == '\0') {
1896         result = (name[1] == '6') ? 2 : 0;
1897     }
1898 #if NCURSES_XNAMES
1899     else if (using_extensions) {
1900         struct user_table_entry const *p = lookup_user_capability(name);
1901         if (p != 0) {
1902             result = (int) p->ute_argc;
1903         }
1904     }
1905 #endif
1906     return result;
1907 }
1908
1909 /*
1910  * Make a quick sanity check for the parameters which are used in the given
1911  * strings.  If there are no "%p" tokens, then there should be no other "%"
1912  * markers.
1913  */
1914 static void
1915 check_params(TERMTYPE2 *tp, const char *name, char *value, int extended)
1916 {
1917     int expected = expected_params(name);
1918     int actual = 0;
1919     int n;
1920     bool params[1 + NUM_PARM];
1921     char *s = value;
1922
1923 #ifdef set_top_margin_parm
1924     if (!strcmp(name, "smgbp")
1925         && set_top_margin_parm == 0)
1926         expected = 2;
1927 #endif
1928
1929     for (n = 0; n <= NUM_PARM; n++)
1930         params[n] = FALSE;
1931
1932     while (*s != 0) {
1933         if (*s == '%') {
1934             if (*++s == '\0') {
1935                 _nc_warning("expected character after %% in %s", name);
1936                 break;
1937             } else if (*s == 'p') {
1938                 if (*++s == '\0' || !isdigit((int) *s)) {
1939                     _nc_warning("expected digit after %%p in %s", name);
1940                     return;
1941                 } else {
1942                     n = (*s - '0');
1943                     if (n > actual)
1944                         actual = n;
1945                     params[n] = TRUE;
1946                 }
1947             }
1948         }
1949         s++;
1950     }
1951
1952 #if NCURSES_XNAMES
1953     if (extended) {
1954         int check = is_user_capability(name);
1955         if (check != actual && (check >= 0 && actual >= 0)) {
1956             _nc_warning("extended %s capability has %d parameters, expected %d",
1957                         name, actual, check);
1958         } else if (debug_level > 1) {
1959             _nc_warning("extended %s capability has %d parameters, as expected",
1960                         name, actual);
1961         }
1962         expected = actual;
1963     }
1964 #else
1965     (void) extended;
1966 #endif
1967
1968     if (params[0]) {
1969         _nc_warning("%s refers to parameter 0 (%%p0), which is not allowed", name);
1970     }
1971     if (value == set_attributes || expected < 0) {
1972         ;
1973     } else if (expected != actual) {
1974         _nc_warning("%s uses %d parameters, expected %d", name,
1975                     actual, expected);
1976         for (n = 1; n < actual; n++) {
1977             if (!params[n])
1978                 _nc_warning("%s omits parameter %d", name, n);
1979         }
1980     }
1981
1982     /*
1983      * Counting "%p" markers does not account for termcap expressions which
1984      * may not have been fully translated.  Also, tparm does its own analysis.
1985      * Report differences here.
1986      */
1987     if (actual >= 0) {
1988         char *p_is_s[NUM_PARM];
1989         int popcount;
1990         int analyzed = _nc_tparm_analyze(value, p_is_s, &popcount);
1991         if (analyzed < popcount) {
1992             analyzed = popcount;
1993         }
1994         if (actual != analyzed && expected != analyzed) {
1995 #if NCURSES_XNAMES
1996             int user_cap = is_user_capability(name);
1997             if ((user_cap == analyzed) && using_extensions) {
1998                 ;               /* ignore */
1999             } else if (user_cap >= 0) {
2000                 _nc_warning("tparm will use %d parameters for %s, expected %d",
2001                             analyzed, name, user_cap);
2002             } else
2003 #endif
2004             {
2005                 _nc_warning("tparm analyzed %d parameters for %s, expected %d",
2006                             analyzed, name, actual);
2007             }
2008         }
2009     }
2010 }
2011
2012 static bool
2013 line_capability(const char *name)
2014 {
2015     bool result = FALSE;
2016     static const char *table[] =
2017     {
2018         "csr",                  /* change_scroll_region          */
2019         "clear",                /* clear_screen                  */
2020         "ed",                   /* clr_eos                       */
2021         "cwin",                 /* create_window                 */
2022         "cup",                  /* cursor_address                */
2023         "cud1",                 /* cursor_down                   */
2024         "home",                 /* cursor_home                   */
2025         "mrcup",                /* cursor_mem_address            */
2026         "ll",                   /* cursor_to_ll                  */
2027         "cuu1",                 /* cursor_up                     */
2028         "dl1",                  /* delete_line                   */
2029         "hd",                   /* down_half_line                */
2030         "flash",                /* flash_screen                  */
2031         "ff",                   /* form_feed                     */
2032         "il1",                  /* insert_line                   */
2033         "nel",                  /* newline                       */
2034         "dl",                   /* parm_delete_line              */
2035         "cud",                  /* parm_down_cursor              */
2036         "indn",                 /* parm_index                    */
2037         "il",                   /* parm_insert_line              */
2038         "rin",                  /* parm_rindex                   */
2039         "cuu",                  /* parm_up_cursor                */
2040         "mc0",                  /* print_screen                  */
2041         "vpa",                  /* row_address                   */
2042         "ind",                  /* scroll_forward                */
2043         "ri",                   /* scroll_reverse                */
2044         "hu",                   /* up_half_line                  */
2045     };
2046     size_t n;
2047     for (n = 0; n < SIZEOF(table); ++n) {
2048         if (!strcmp(name, table[n])) {
2049             result = TRUE;
2050             break;
2051         }
2052     }
2053     return result;
2054 }
2055
2056 /*
2057  * Check for DEC VT100 private mode for reverse video.
2058  */
2059 static const char *
2060 skip_DECSCNM(const char *value, int *flag)
2061 {
2062     *flag = -1;
2063     if (value != 0) {
2064         int skip = csi_length(value);
2065         if (skip > 0 &&
2066             value[skip++] == '?' &&
2067             value[skip++] == '5') {
2068             if (value[skip] == 'h') {
2069                 *flag = 1;
2070             } else if (value[skip] == 'l') {
2071                 *flag = 0;
2072             }
2073             value += skip + 1;
2074         }
2075     }
2076     return value;
2077 }
2078
2079 static void
2080 check_delays(TERMTYPE2 *tp, const char *name, const char *value)
2081 {
2082     const char *p, *q;
2083     const char *first = 0;
2084     const char *last = 0;
2085
2086     for (p = value; *p != '\0'; ++p) {
2087         if (p[0] == '$' && p[1] == '<') {
2088             const char *base = p + 2;
2089             const char *mark = 0;
2090             bool maybe = TRUE;
2091             bool mixed = FALSE;
2092             int proportional = 0;
2093             int mandatory = 0;
2094
2095             first = p;
2096
2097             for (q = base; *q != '\0'; ++q) {
2098                 if (*q == '>') {
2099                     if (mark == 0)
2100                         mark = q;
2101                     break;
2102                 } else if (*q == '*' || *q == '/') {
2103                     if (*q == '*')
2104                         ++proportional;
2105                     if (*q == '/')
2106                         ++mandatory;
2107                     if (mark == 0)
2108                         mark = q;
2109                 } else if (!(isalnum(UChar(*q)) || strchr("+-.", *q) != 0)) {
2110                     maybe = FALSE;
2111                     break;
2112                 } else if (proportional || mandatory) {
2113                     mixed = TRUE;
2114                 }
2115             }
2116             last = *q ? (q + 1) : q;
2117             if (*q == '\0') {
2118                 maybe = FALSE;  /* just an isolated "$<" */
2119             } else if (maybe) {
2120                 float check_f;
2121                 char check_c;
2122                 int rc = sscanf(base, "%f%c", &check_f, &check_c);
2123                 if ((rc != 2) || (check_c != *mark) || mixed) {
2124                     _nc_warning("syntax error in %s delay '%.*s'", name,
2125                                 (int) (q - base), base);
2126                 } else if (*name == 'k') {
2127                     _nc_warning("function-key %s has delay", name);
2128                 } else if (proportional && !line_capability(name)) {
2129                     _nc_warning("non-line capability using proportional delay: %s", name);
2130                 } else if (!xon_xoff &&
2131                            !mandatory &&
2132                            strchr(_nc_first_name(tp->term_names), '+') == 0) {
2133                     _nc_warning("%s in %s is used since no xon/xoff",
2134                                 (proportional
2135                                  ? "proportional delay"
2136                                  : "delay"),
2137                                 name);
2138                 }
2139             } else {
2140                 p = q - 1;      /* restart scan */
2141             }
2142         }
2143     }
2144
2145     if (!strcmp(name, "flash") ||
2146         !strcmp(name, "beep")) {
2147
2148         if (first != 0) {
2149             if (first == value || *last == 0) {
2150                 /*
2151                  * Delay is on one end or the other.
2152                  */
2153                 _nc_warning("expected delay embedded within %s", name);
2154             }
2155         } else {
2156             int flag;
2157
2158             /*
2159              * Check for missing delay when using VT100 reverse-video.
2160              * A real VT100 might not need this, but terminal emulators do.
2161              */
2162             if ((p = skip_DECSCNM(value, &flag)) != 0 &&
2163                 flag > 0 &&
2164                 (q = skip_DECSCNM(p, &flag)) != 0 &&
2165                 flag == 0) {
2166                 _nc_warning("expected a delay in %s", name);
2167             }
2168         }
2169     }
2170 }
2171
2172 static char *
2173 check_1_infotocap(const char *name, NCURSES_CONST char *value, int count)
2174 {
2175     int k;
2176     int ignored;
2177     long numbers[1 + NUM_PARM];
2178     char *strings[1 + NUM_PARM];
2179     char *p_is_s[NUM_PARM];
2180     char *result;
2181     char blob[NUM_PARM * 10];
2182     char *next = blob;
2183
2184     *next++ = '\0';
2185     for (k = 1; k <= NUM_PARM; k++) {
2186         numbers[k] = count;
2187         _nc_SPRINTF(next,
2188                     _nc_SLIMIT(sizeof(blob) - (size_t) (next - blob))
2189                     "XYZ%d", count);
2190         strings[k] = next;
2191         next += strlen(next) + 1;
2192     }
2193
2194     switch (tparm_type(name)) {
2195     case Num_Str:
2196         result = TPARM_2(value, numbers[1], strings[2]);
2197         break;
2198     case Num_Str_Str:
2199         result = TPARM_3(value, numbers[1], strings[2], strings[3]);
2200         break;
2201     case Numbers:
2202 #define myParam(n) numbers[n]
2203         result = TIPARM_9(value,
2204                           myParam(1),
2205                           myParam(2),
2206                           myParam(3),
2207                           myParam(4),
2208                           myParam(5),
2209                           myParam(6),
2210                           myParam(7),
2211                           myParam(8),
2212                           myParam(9));
2213 #undef myParam
2214         break;
2215     default:
2216         (void) _nc_tparm_analyze(value, p_is_s, &ignored);
2217 #define myParam(n) (p_is_s[n - 1] != 0 ? ((TPARM_ARG) strings[n]) : numbers[n])
2218         result = TPARM_9(value,
2219                          myParam(1),
2220                          myParam(2),
2221                          myParam(3),
2222                          myParam(4),
2223                          myParam(5),
2224                          myParam(6),
2225                          myParam(7),
2226                          myParam(8),
2227                          myParam(9));
2228 #undef myParam
2229         break;
2230     }
2231     return strdup(result);
2232 }
2233
2234 #define IsDelay(ch) ((ch) == '.' || isdigit(UChar(ch)))
2235
2236 static const char *
2237 parse_delay_value(const char *src, double *delays, int *always)
2238 {
2239     int star = 0;
2240
2241     *delays = 0.0;
2242     if (always)
2243         *always = 0;
2244
2245     while (isdigit(UChar(*src))) {
2246         (*delays) = (*delays) * 10 + (*src++ - '0');
2247     }
2248     if (*src == '.') {
2249         int gotdot = 1;
2250
2251         ++src;
2252         while (isdigit(UChar(*src))) {
2253             gotdot *= 10;
2254             (*delays) += (*src++ - '0') / gotdot;
2255         }
2256     }
2257     while (*src == '*' || *src == '/') {
2258         if (always == 0 && *src == '/')
2259             break;
2260         if (*src++ == '*') {
2261             star = 1;
2262         } else {
2263             *always = 1;
2264         }
2265     }
2266     if (star)
2267         *delays = -(*delays);
2268     return src;
2269 }
2270
2271 static const char *
2272 parse_ti_delay(const char *ti, double *delays)
2273 {
2274     *delays = 0.0;
2275     while (*ti != '\0') {
2276         if (*ti == '\\') {
2277             ++ti;
2278         }
2279         if (ti[0] == '$'
2280             && ti[1] == '<'
2281             && IsDelay(UChar(ti[2]))) {
2282             int ignored;
2283             const char *last = parse_delay_value(ti + 2, delays, &ignored);
2284             if (*last == '>') {
2285                 ti = last;
2286             }
2287         } else {
2288             ++ti;
2289         }
2290     }
2291     return ti;
2292 }
2293
2294 static const char *
2295 parse_tc_delay(const char *tc, double *delays)
2296 {
2297     return parse_delay_value(tc, delays, (int *) 0);
2298 }
2299
2300 /*
2301  * Compare terminfo- and termcap-strings, factoring out delays.
2302  */
2303 static bool
2304 same_ti_tc(const char *ti, const char *tc, bool * embedded)
2305 {
2306     bool same = TRUE;
2307     double ti_delay = 0.0;
2308     double tc_delay = 0.0;
2309     const char *ti_last;
2310
2311     *embedded = FALSE;
2312     ti_last = parse_ti_delay(ti, &ti_delay);
2313     tc = parse_tc_delay(tc, &tc_delay);
2314
2315     while ((ti < ti_last) && *tc) {
2316         if (*ti == '\\' && ispunct(UChar(ti[1]))) {
2317             ++ti;
2318             if ((*ti == '^') && !strncmp(tc, "\\136", 4)) {
2319                 ti += 1;
2320                 tc += 4;
2321                 continue;
2322             }
2323         } else if (ti[0] == '$' && ti[1] == '<') {
2324             double no_delay;
2325             const char *ss = parse_ti_delay(ti, &no_delay);
2326             if (ss != ti) {
2327                 *embedded = TRUE;
2328                 ti = ss;
2329                 continue;
2330             }
2331         }
2332         if (*tc == '\\' && ispunct(UChar(tc[1]))) {
2333             ++tc;
2334         }
2335         if (*ti++ != *tc++) {
2336             same = FALSE;
2337             break;
2338         }
2339     }
2340
2341     if (*embedded) {
2342         if (same) {
2343             same = FALSE;
2344         } else {
2345             *embedded = FALSE;  /* report only one problem */
2346         }
2347     }
2348
2349     return same;
2350 }
2351
2352 /*
2353  * Check terminfo to termcap translation.
2354  */
2355 static void
2356 check_infotocap(TERMTYPE2 *tp, int i, const char *value)
2357 {
2358     const char *name = ExtStrname(tp, i, strnames);
2359     int params = ((i < (int) SIZEOF(parametrized))
2360                   ? parametrized[i]
2361                   : ((*value == 'k')
2362                      ? 0
2363                      : has_params(value)));
2364     int to_char = 0;
2365     char *ti_value;
2366     char *tc_value;
2367     bool embedded;
2368
2369     assert(SIZEOF(parametrized) == STRCOUNT);
2370     if ((ti_value = _nc_tic_expand(value, TRUE, to_char)) == ABSENT_STRING) {
2371         _nc_warning("tic-expansion of %s failed", name);
2372     } else if ((tc_value = _nc_infotocap(name, ti_value, params)) == ABSENT_STRING) {
2373         _nc_warning("tic-conversion of %s failed", name);
2374     } else if (params > 0) {
2375         int limit = 5;
2376         int count;
2377         bool first = TRUE;
2378
2379         if (!strcmp(name, "setf")
2380             || !strcmp(name, "setb")
2381             || !strcmp(name, "setaf")
2382             || !strcmp(name, "setab")) {
2383             if ((limit = max_colors) > 16)
2384                 limit = 16;
2385         }
2386         for (count = 0; count < limit; ++count) {
2387             char *ti_check = check_1_infotocap(name, ti_value, count);
2388             char *tc_check = check_1_infotocap(name, tc_value, count);
2389
2390             if (strcmp(ti_check, tc_check)) {
2391                 if (first) {
2392                     fprintf(stderr, "check_infotocap(%s)\n", name);
2393                     fprintf(stderr, "...ti '%s'\n", ti_value);
2394                     fprintf(stderr, "...tc '%s'\n", tc_value);
2395                     first = FALSE;
2396                 }
2397                 _nc_warning("tparm-conversion of %s(%d) differs between\n\tterminfo %s\n\ttermcap  %s",
2398                             name, count, ti_check, tc_check);
2399             }
2400             free(ti_check);
2401             free(tc_check);
2402         }
2403     } else if (params == 0 && !same_ti_tc(ti_value, tc_value, &embedded)) {
2404         if (embedded) {
2405             _nc_warning("termcap equivalent of %s cannot use embedded delay", name);
2406         } else {
2407             _nc_warning("tic-conversion of %s changed value\n\tfrom %s\n\tto   %s",
2408                         name, ti_value, tc_value);
2409         }
2410     }
2411 }
2412
2413 static char *
2414 skip_delay(char *s)
2415 {
2416     while (*s == '/' || isdigit(UChar(*s)))
2417         ++s;
2418     return s;
2419 }
2420
2421 /*
2422  * Skip a delay altogether, e.g., when comparing a simple string to sgr,
2423  * the latter may have a worst-case delay on the end.
2424  */
2425 static char *
2426 ignore_delays(char *s)
2427 {
2428     int delaying = 0;
2429
2430     do {
2431         switch (*s) {
2432         case '$':
2433             if (delaying == 0)
2434                 delaying = 1;
2435             break;
2436         case '<':
2437             if (delaying == 1)
2438                 delaying = 2;
2439             break;
2440         case '\0':
2441             delaying = 0;
2442             break;
2443         default:
2444             if (delaying) {
2445                 s = skip_delay(s);
2446                 if (*s == '>')
2447                     ++s;
2448                 delaying = 0;
2449             }
2450             break;
2451         }
2452         if (delaying)
2453             ++s;
2454     } while (delaying);
2455     return s;
2456 }
2457
2458 #define DATA(name) { #name }
2459 static const char sgr_names[][11] =
2460 {
2461     DATA(none),
2462     DATA(standout),
2463     DATA(underline),
2464     DATA(reverse),
2465     DATA(blink),
2466     DATA(dim),
2467     DATA(bold),
2468     DATA(invis),
2469     DATA(protect),
2470     DATA(altcharset),
2471     ""
2472 };
2473 #undef DATA
2474
2475 /*
2476  * An sgr string may contain several settings other than the one we're
2477  * interested in, essentially sgr0 + rmacs + whatever.  As long as the
2478  * "whatever" is contained in the sgr string, that is close enough for our
2479  * sanity check.
2480  */
2481 static bool
2482 similar_sgr(int num, char *a, char *b)
2483 {
2484     char *base_a = a;
2485     char *base_b = b;
2486     int delaying = 0;
2487
2488     while (*b != 0) {
2489         while (*a != *b) {
2490             if (*a == 0) {
2491                 if (num < 0) {
2492                     ;
2493                 } else if (b[0] == '$'
2494                            && b[1] == '<') {
2495                     _nc_warning("did not find delay %s", _nc_visbuf(b));
2496                 } else {
2497                     _nc_warning("checking sgr(%s) %s\n\tcompare to %s\n\tunmatched %s",
2498                                 sgr_names[num], _nc_visbuf2(1, base_a),
2499                                 _nc_visbuf2(2, base_b),
2500                                 _nc_visbuf2(3, b));
2501                 }
2502                 return FALSE;
2503             } else if (delaying) {
2504                 a = skip_delay(a);
2505                 b = skip_delay(b);
2506             } else if ((*b == '0' || (*b == ';')) && *a == 'm') {
2507                 b++;
2508             } else {
2509                 a++;
2510             }
2511         }
2512         switch (*a) {
2513         case '$':
2514             if (delaying == 0)
2515                 delaying = 1;
2516             break;
2517         case '<':
2518             if (delaying == 1)
2519                 delaying = 2;
2520             break;
2521         default:
2522             delaying = 0;
2523             break;
2524         }
2525         a++;
2526         b++;
2527     }
2528     /* ignore delays on the end of the string */
2529     a = ignore_delays(a);
2530     return ((num != 0) || (*a == 0));
2531 }
2532
2533 static void
2534 check_tparm_err(int num)
2535 {
2536     if (_nc_tparm_err)
2537         _nc_warning("tparam error in sgr(%d): %s", num, sgr_names[num]);
2538 }
2539
2540 static char *
2541 check_sgr(TERMTYPE2 *tp, char *zero, int num, char *cap, const char *name)
2542 {
2543     char *test;
2544
2545     _nc_tparm_err = 0;
2546     test = TIPARM_9(set_attributes,
2547                     num == 1,
2548                     num == 2,
2549                     num == 3,
2550                     num == 4,
2551                     num == 5,
2552                     num == 6,
2553                     num == 7,
2554                     num == 8,
2555                     num == 9);
2556     if (test != 0) {
2557         if (PRESENT(cap)) {
2558             if (!similar_sgr(num, test, cap)) {
2559                 _nc_warning("%s differs from sgr(%d)\n\t%s=%s\n\tsgr(%d)=%s",
2560                             name, num,
2561                             name, _nc_visbuf2(1, cap),
2562                             num, _nc_visbuf2(2, test));
2563             }
2564         } else if (_nc_capcmp(test, zero)) {
2565             _nc_warning("sgr(%d) present, but not %s", num, name);
2566         }
2567     } else if (PRESENT(cap)) {
2568         _nc_warning("sgr(%d) missing, but %s present", num, name);
2569     }
2570     check_tparm_err(num);
2571     return test;
2572 }
2573
2574 #define CHECK_SGR(num,name) check_sgr(tp, zero, num, name, #name)
2575
2576 #ifdef TRACE
2577 /*
2578  * If tic is compiled with TRACE, we'll be able to see the output from the
2579  * DEBUG() macro.  But since it doesn't use traceon(), it always goes to
2580  * the standard error.  Use this function to make it simpler to follow the
2581  * resulting debug traces.
2582  */
2583 static void
2584 show_where(unsigned level)
2585 {
2586     if (_nc_tracing >= DEBUG_LEVEL(level)) {
2587         char my_name[MAX_NAME_SIZE];
2588         _nc_get_type(my_name);
2589         _tracef("\"%s\", line %d, '%s'",
2590                 _nc_get_source(),
2591                 _nc_curr_line, my_name);
2592     }
2593 }
2594
2595 #else
2596 #define show_where(level)       /* nothing */
2597 #endif
2598
2599 typedef struct {
2600     int keycode;
2601     const char *name;
2602     const char *value;
2603 } NAME_VALUE;
2604
2605 static NAME_VALUE *
2606 get_fkey_list(TERMTYPE2 *tp)
2607 {
2608     NAME_VALUE *result = typeMalloc(NAME_VALUE, NUM_STRINGS(tp) + 1);
2609     const struct tinfo_fkeys *all_fkeys = _nc_tinfo_fkeys;
2610     int used = 0;
2611     unsigned j;
2612
2613     if (result == 0)
2614         failed("get_fkey_list");
2615
2616     for (j = 0; all_fkeys[j].code; j++) {
2617         char *a = tp->Strings[all_fkeys[j].offset];
2618         if (VALID_STRING(a)) {
2619             result[used].keycode = (int) all_fkeys[j].code;
2620             result[used].name = strnames[all_fkeys[j].offset];
2621             result[used].value = a;
2622             ++used;
2623         }
2624     }
2625 #if NCURSES_XNAMES
2626     for (j = STRCOUNT; j < NUM_STRINGS(tp); ++j) {
2627         const char *name = ExtStrname(tp, (int) j, strnames);
2628         if (*name == 'k') {
2629             result[used].keycode = -1;
2630             result[used].name = name;
2631             result[used].value = tp->Strings[j];
2632             ++used;
2633         }
2634     }
2635 #endif
2636     result[used].keycode = 0;
2637     return result;
2638 }
2639
2640 static void
2641 show_fkey_name(NAME_VALUE * data)
2642 {
2643     if (data->keycode > 0) {
2644         fprintf(stderr, " %s", keyname(data->keycode));
2645         fprintf(stderr, " (capability \"%s\")", data->name);
2646     } else {
2647         fprintf(stderr, " capability \"%s\"", data->name);
2648     }
2649 }
2650
2651 /*
2652  * A terminal entry may contain more than one keycode assigned to a given
2653  * string (e.g., KEY_END and KEY_LL).  But curses will only return one (the
2654  * last one assigned).
2655  */
2656 static void
2657 check_conflict(TERMTYPE2 *tp)
2658 {
2659     bool conflict = FALSE;
2660     unsigned j, k;
2661
2662     if (!(_nc_syntax == SYN_TERMCAP && capdump)) {
2663         char *check = calloc((size_t) (NUM_STRINGS(tp) + 1), sizeof(char));
2664         NAME_VALUE *given = get_fkey_list(tp);
2665
2666         if (check == 0)
2667             failed("check_conflict");
2668
2669         for (j = 0; given[j].keycode; ++j) {
2670             const char *a = given[j].value;
2671             bool first = TRUE;
2672
2673             if (!VALID_STRING(a))
2674                 continue;
2675
2676             for (k = j + 1; given[k].keycode; k++) {
2677                 const char *b = given[k].value;
2678
2679                 if (!VALID_STRING(b))
2680                     continue;
2681                 if (check[k])
2682                     continue;
2683
2684                 if (!_nc_capcmp(a, b)) {
2685                     check[j] = 1;
2686                     check[k] = 1;
2687                     if (first) {
2688                         if (!conflict) {
2689                             _nc_warning("conflicting key definitions (using the last)");
2690                             conflict = TRUE;
2691                         }
2692                         fprintf(stderr, "...");
2693                         show_fkey_name(given + j);
2694                         fprintf(stderr, " is the same as");
2695                         show_fkey_name(given + k);
2696                         first = FALSE;
2697                     } else {
2698                         fprintf(stderr, ", ");
2699                         show_fkey_name(given + k);
2700                     }
2701                 }
2702             }
2703             if (!first)
2704                 fprintf(stderr, "\n");
2705         }
2706 #if NCURSES_XNAMES
2707         if (using_extensions) {
2708             /* *INDENT-OFF* */
2709             static struct {
2710                 const char *xcurses;
2711                 const char *shifted;
2712             } table[] = {
2713                 { "kDC",  NULL },
2714                 { "kDN",  "kind" },
2715                 { "kEND", NULL },
2716                 { "kHOM", NULL },
2717                 { "kLFT", NULL },
2718                 { "kNXT", NULL },
2719                 { "kPRV", NULL },
2720                 { "kRIT", NULL },
2721                 { "kUP",  "kri" },
2722                 { NULL,   NULL },
2723             };
2724             /* *INDENT-ON* */
2725             /*
2726              * SVr4 curses defines the "xcurses" names listed above except for
2727              * the special cases in the "shifted" column.  When using these
2728              * names for xterm's extensions, that was confusing, and resulted
2729              * in adding extended capabilities with "2" (shift) suffix.  This
2730              * check warns about unnecessary use of extensions for this quirk.
2731              */
2732             for (j = 0; given[j].keycode; ++j) {
2733                 const char *find = given[j].name;
2734                 int value;
2735                 char ch;
2736
2737                 if (!VALID_STRING(given[j].value))
2738                     continue;
2739
2740                 for (k = 0; table[k].xcurses; ++k) {
2741                     const char *test = table[k].xcurses;
2742                     size_t size = strlen(test);
2743
2744                     if (!strncmp(find, test, size) && strcmp(find, test)) {
2745                         switch (sscanf(find + size, "%d%c", &value, &ch)) {
2746                         case 1:
2747                             if (value == 2) {
2748                                 _nc_warning("expected '%s' rather than '%s'",
2749                                             (table[k].shifted
2750                                              ? table[k].shifted
2751                                              : test), find);
2752                             } else if (value < 2 || value > 15) {
2753                                 _nc_warning("expected numeric 2..15 '%s'", find);
2754                             }
2755                             break;
2756                         default:
2757                             _nc_warning("expected numeric suffix for '%s'", find);
2758                             break;
2759                         }
2760                         break;
2761                     }
2762                 }
2763             }
2764         }
2765 #endif
2766         free(given);
2767         free(check);
2768     }
2769 }
2770
2771 /*
2772  * Exiting a video mode should not duplicate sgr0
2773  */
2774 static void
2775 check_exit_attribute(const char *name, char *test, char *trimmed, char *untrimmed)
2776 {
2777     if (VALID_STRING(test) && (trimmed != 0)) {
2778         if (similar_sgr(-1, trimmed, test) ||
2779             similar_sgr(-1, untrimmed, test)) {
2780             _nc_warning("%s matches exit_attribute_mode", name);
2781         }
2782     }
2783 }
2784
2785 /*
2786  * Returns true if the string looks like a standard SGR string.
2787  */
2788 static bool
2789 is_sgr_string(char *value)
2790 {
2791     bool result = FALSE;
2792
2793     if (VALID_STRING(value)) {
2794         int skip = csi_length(value);
2795
2796         if (skip) {
2797             int ch;
2798
2799             result = TRUE;
2800             value += skip;
2801             while ((ch = UChar(*value++)) != '\0') {
2802                 if (isdigit(ch) || ch == ';') {
2803                     ;
2804                 } else if (ch == 'm' && *value == '\0') {
2805                     ;
2806                 } else {
2807                     result = FALSE;
2808                     break;
2809                 }
2810             }
2811         }
2812     }
2813     return result;
2814 }
2815
2816 /*
2817  * Check if the given capability contains a given SGR attribute.
2818  */
2819 static void
2820 check_sgr_param(TERMTYPE2 *tp, int code, const char *name, char *value)
2821 {
2822     if (VALID_STRING(value)) {
2823         int ncv = ((code != 0) ? (1 << (code - 1)) : 0);
2824         char *test = tgoto(value, 0, 0);
2825         if (is_sgr_string(test)) {
2826             int param = 0;
2827             int count = 0;
2828             int skips = 0;
2829             int color = (value == set_a_foreground ||
2830                          value == set_a_background ||
2831                          value == set_foreground ||
2832                          value == set_background);
2833             while (*test != 0) {
2834                 if (isdigit(UChar(*test))) {
2835                     param = 10 * param + (*test - '0');
2836                     ++count;
2837                 } else {
2838                     if (count) {
2839                         /*
2840                          * Avoid unnecessary warning for xterm 256color codes.
2841                          */
2842                         if (color && (param == 38 || param == 48))
2843                             skips = 3;
2844                         if ((skips-- <= 0) && (param == code))
2845                             break;
2846                     }
2847                     count = 0;
2848                     param = 0;
2849                 }
2850                 ++test;
2851             }
2852             if (count != 0 && param == code) {
2853                 if (code == 0 ||
2854                     no_color_video < 0 ||
2855                     !(no_color_video & ncv)) {
2856                     _nc_warning("\"%s\" SGR-attribute used in %s",
2857                                 sgr_names[code],
2858                                 name);
2859                 }
2860             }
2861         }
2862     }
2863 }
2864
2865 #if NCURSES_XNAMES
2866 static int
2867 standard_type(const char *name)
2868 {
2869     int result = -1;
2870     const struct name_table_entry *np;
2871
2872     if ((np = _nc_find_entry(name, _nc_get_hash_table(0))) != 0) {
2873         result = np->nte_type;
2874     }
2875     return result;
2876 }
2877
2878 static const char *
2879 name_of_type(int type)
2880 {
2881     const char *result = "unknown";
2882     switch (type) {
2883     case BOOLEAN:
2884         result = "boolean";
2885         break;
2886     case NUMBER:
2887         result = "number";
2888         break;
2889     case STRING:
2890         result = "string";
2891         break;
2892     }
2893     return result;
2894 }
2895
2896 static void
2897 check_user_capability_type(const char *name, int actual)
2898 {
2899     if (lookup_user_capability(name) == 0) {
2900         int expected = standard_type(name);
2901         if (expected >= 0) {
2902             _nc_warning("expected %s to be %s, but actually %s",
2903                         name,
2904                         name_of_type(actual),
2905                         name_of_type(expected)
2906                 );
2907         } else if (*name != 'k') {
2908             _nc_warning("undocumented %s capability %s",
2909                         name_of_type(actual),
2910                         name);
2911         }
2912     }
2913 }
2914 #endif
2915
2916 /* other sanity-checks (things that we don't want in the normal
2917  * logic that reads a terminfo entry)
2918  */
2919 static void
2920 check_termtype(TERMTYPE2 *tp, bool literal)
2921 {
2922     unsigned j;
2923
2924     check_conflict(tp);
2925
2926     for_each_string(j, tp) {
2927         char *a = tp->Strings[j];
2928         if (VALID_STRING(a)) {
2929             const char *name = ExtStrname(tp, (int) j, strnames);
2930             /*
2931              * If we expect parameters, or if there might be parameters,
2932              * check for consistent number of parameters.
2933              */
2934             if (j >= SIZEOF(parametrized) ||
2935                 is_user_capability(name) >= 0 ||
2936                 parametrized[j] > 0) {
2937                 check_params(tp, name, a, (j >= STRCOUNT));
2938             }
2939             check_delays(tp, ExtStrname(tp, (int) j, strnames), a);
2940             if (capdump) {
2941                 check_infotocap(tp, (int) j, a);
2942             }
2943         }
2944     }
2945 #if NCURSES_XNAMES
2946     /* in extended mode, verify that each extension is expected type */
2947     for_each_ext_boolean(j, tp) {
2948         check_user_capability_type(ExtBoolname(tp, (int) j, strnames), BOOLEAN);
2949     }
2950     for_each_ext_number(j, tp) {
2951         check_user_capability_type(ExtNumname(tp, (int) j, strnames), NUMBER);
2952     }
2953     for_each_ext_string(j, tp) {
2954         check_user_capability_type(ExtStrname(tp, (int) j, strnames), STRING);
2955     }
2956 #endif /* NCURSES_XNAMES */
2957
2958     check_acs(tp);
2959     check_colors(tp);
2960     check_cursor(tp);
2961     check_keypad(tp);
2962     check_printer(tp);
2963     check_screen(tp);
2964
2965     /*
2966      * These are probably both or none.
2967      */
2968     PAIRED(parm_index, parm_rindex);
2969     PAIRED(parm_ich, parm_dch);
2970
2971     /*
2972      * These may be mismatched because the terminal description relies on
2973      * restoring the cursor visibility by resetting it.
2974      */
2975     ANDMISSING(cursor_invisible, cursor_normal);
2976     ANDMISSING(cursor_visible, cursor_normal);
2977
2978     if (PRESENT(cursor_visible) && PRESENT(cursor_normal)
2979         && !_nc_capcmp(cursor_visible, cursor_normal))
2980         _nc_warning("cursor_visible is same as cursor_normal");
2981
2982     /*
2983      * From XSI & O'Reilly, we gather that sc/rc are required if csr is
2984      * given, because the cursor position after the scrolling operation is
2985      * performed is undefined.
2986      */
2987     ANDMISSING(change_scroll_region, save_cursor);
2988     ANDMISSING(change_scroll_region, restore_cursor);
2989
2990     /*
2991      * If we can clear tabs, we should be able to initialize them.
2992      */
2993     ANDMISSING(clear_all_tabs, set_tab);
2994
2995     if (PRESENT(set_attributes)) {
2996         char *zero = 0;
2997
2998         _nc_tparm_err = 0;
2999         if (PRESENT(exit_attribute_mode)) {
3000             zero = strdup(CHECK_SGR(0, exit_attribute_mode));
3001         } else {
3002             zero = strdup(TIPARM_9(set_attributes, 0, 0, 0, 0, 0, 0, 0, 0, 0));
3003         }
3004         check_tparm_err(0);
3005
3006         if (zero != 0) {
3007             CHECK_SGR(1, enter_standout_mode);
3008             CHECK_SGR(2, enter_underline_mode);
3009             CHECK_SGR(3, enter_reverse_mode);
3010             CHECK_SGR(4, enter_blink_mode);
3011             CHECK_SGR(5, enter_dim_mode);
3012             CHECK_SGR(6, enter_bold_mode);
3013             CHECK_SGR(7, enter_secure_mode);
3014             CHECK_SGR(8, enter_protected_mode);
3015             CHECK_SGR(9, enter_alt_charset_mode);
3016             free(zero);
3017         } else {
3018             _nc_warning("sgr(0) did not return a value");
3019         }
3020     } else if (PRESENT(exit_attribute_mode) &&
3021                set_attributes != CANCELLED_STRING) {
3022         if (_nc_syntax == SYN_TERMINFO)
3023             _nc_warning("missing sgr string");
3024     }
3025 #define CHECK_SGR0(name) check_exit_attribute(#name, name, check_sgr0, exit_attribute_mode)
3026     if (PRESENT(exit_attribute_mode)) {
3027         char *check_sgr0 = _nc_trim_sgr0(tp);
3028
3029         if (check_sgr0 == 0 || *check_sgr0 == '\0') {
3030             _nc_warning("trimmed sgr0 is empty");
3031         } else {
3032             show_where(2);
3033             if (check_sgr0 != exit_attribute_mode) {
3034                 DEBUG(2,
3035                       ("will trim sgr0\n\toriginal sgr0=%s\n\ttrimmed  sgr0=%s",
3036                        _nc_visbuf2(1, exit_attribute_mode),
3037                        _nc_visbuf2(2, check_sgr0)));
3038             } else {
3039                 DEBUG(2,
3040                       ("will not trim sgr0\n\toriginal sgr0=%s",
3041                        _nc_visbuf(exit_attribute_mode)));
3042             }
3043         }
3044 #if defined(exit_italics_mode)
3045         CHECK_SGR0(exit_italics_mode);
3046 #endif
3047         CHECK_SGR0(exit_standout_mode);
3048         CHECK_SGR0(exit_underline_mode);
3049         if (check_sgr0 != exit_attribute_mode) {
3050             free(check_sgr0);
3051         }
3052     }
3053 #define CHECK_SGR_PARAM(code, name) check_sgr_param(tp, (int)code, #name, name)
3054     for (j = 0; *sgr_names[j] != '\0'; ++j) {
3055         CHECK_SGR_PARAM(j, set_a_foreground);
3056         CHECK_SGR_PARAM(j, set_a_background);
3057         CHECK_SGR_PARAM(j, set_foreground);
3058         CHECK_SGR_PARAM(j, set_background);
3059     }
3060 #ifdef TRACE
3061     show_where(2);
3062     if (!auto_right_margin) {
3063         DEBUG(2,
3064               ("can write to lower-right directly"));
3065     } else if (PRESENT(enter_am_mode) && PRESENT(exit_am_mode)) {
3066         DEBUG(2,
3067               ("can write to lower-right by suppressing automargin"));
3068     } else if ((PRESENT(enter_insert_mode) && PRESENT(exit_insert_mode))
3069                || PRESENT(insert_character) || PRESENT(parm_ich)) {
3070         DEBUG(2,
3071               ("can write to lower-right by using inserts"));
3072     } else {
3073         DEBUG(2,
3074               ("cannot write to lower-right"));
3075     }
3076 #endif
3077
3078     /*
3079      * Some standard applications (e.g., vi) and some non-curses
3080      * applications (e.g., jove) get confused if we have both ich1 and
3081      * smir/rmir.  Let's be nice and warn about that, too, even though
3082      * ncurses handles it.
3083      */
3084     if ((PRESENT(enter_insert_mode) || PRESENT(exit_insert_mode))
3085         && PRESENT(insert_character)) {
3086         _nc_warning("non-curses applications may be confused by ich1 with smir/rmir");
3087     }
3088
3089     /*
3090      * Finally, do the non-verbose checks
3091      */
3092     if (save_check_termtype != 0)
3093         save_check_termtype(tp, literal);
3094 }