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