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