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