]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/tinfo/write_entry.c
ncurses 5.9 - patch 20111210
[ncurses.git] / ncurses / tinfo / write_entry.c
1 /****************************************************************************
2  * Copyright (c) 1998-2010,2011 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  *      write_entry.c -- write a terminfo structure onto the file system
37  */
38
39 #include <curses.priv.h>
40 #include <hashed_db.h>
41
42 #include <tic.h>
43
44 #if 1
45 #define TRACE_OUT(p) DEBUG(2, p)
46 #else
47 #define TRACE_OUT(p)            /*nothing */
48 #endif
49
50 MODULE_ID("$Id: write_entry.c,v 1.82 2011/10/30 14:33:13 tom Exp $")
51
52 static int total_written;
53
54 static int make_db_root(const char *);
55 static int write_object(TERMTYPE *, char *, unsigned *, unsigned);
56
57 #if !USE_HASHED_DB
58 static void
59 write_file(char *filename, TERMTYPE *tp)
60 {
61     char buffer[MAX_ENTRY_SIZE];
62     unsigned limit = sizeof(buffer);
63     unsigned offset = 0;
64
65     FILE *fp = (_nc_access(filename, W_OK) == 0) ? fopen(filename, "wb") : 0;
66     if (fp == 0) {
67         perror(filename);
68         _nc_syserr_abort("can't open %s/%s", _nc_tic_dir(0), filename);
69     }
70     DEBUG(1, ("Created %s", filename));
71
72     if (write_object(tp, buffer, &offset, limit) == ERR
73         || fwrite(buffer, sizeof(char), (size_t) offset, fp) != offset) {
74         _nc_syserr_abort("error writing %s/%s", _nc_tic_dir(0), filename);
75     }
76
77     fclose(fp);
78 }
79
80 /*
81  * Check for access rights to destination directories
82  * Create any directories which don't exist.
83  *
84  * Note:  there's no reason to return the result of make_db_root(), since
85  * this function is called only in instances where that has to succeed.
86  */
87 static void
88 check_writeable(int code)
89 {
90     static const char dirnames[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
91     static bool verified[sizeof(dirnames)];
92
93     char dir[sizeof(LEAF_FMT)];
94     char *s = 0;
95
96     if (code == 0 || (s = strchr(dirnames, code)) == 0)
97         _nc_err_abort("Illegal terminfo subdirectory \"" LEAF_FMT "\"", code);
98
99     if (verified[s - dirnames])
100         return;
101
102     sprintf(dir, LEAF_FMT, code);
103     if (make_db_root(dir) < 0) {
104         _nc_err_abort("%s/%s: permission denied", _nc_tic_dir(0), dir);
105     }
106
107     verified[s - dirnames] = TRUE;
108 }
109 #endif /* !USE_HASHED_DB */
110
111 static int
112 make_db_path(char *dst, const char *src, size_t limit)
113 {
114     int rc = -1;
115     const char *top = _nc_tic_dir(0);
116
117     if (src == top || _nc_is_abs_path(src)) {
118         if (strlen(src) + 1 <= limit) {
119             (void) strcpy(dst, src);
120             rc = 0;
121         }
122     } else {
123         if (strlen(top) + strlen(src) + 2 <= limit) {
124             (void) sprintf(dst, "%s/%s", top, src);
125             rc = 0;
126         }
127     }
128 #if USE_HASHED_DB
129     if (rc == 0) {
130         static const char suffix[] = DBM_SUFFIX;
131         size_t have = strlen(dst);
132         size_t need = strlen(suffix);
133         if (have > need && strcmp(dst + (int) (have - need), suffix)) {
134             if (have + need <= limit) {
135                 strcat(dst, suffix);
136             } else {
137                 rc = -1;
138             }
139         } else if (_nc_is_dir_path(dst)) {
140             rc = -1;
141         }
142     }
143 #endif
144     return rc;
145 }
146
147 /*
148  * Make a database-root if it doesn't exist.
149  */
150 static int
151 make_db_root(const char *path)
152 {
153     int rc;
154     char fullpath[PATH_MAX];
155
156     if ((rc = make_db_path(fullpath, path, sizeof(fullpath))) == 0) {
157 #if USE_HASHED_DB
158         DB *capdbp;
159
160         if ((capdbp = _nc_db_open(fullpath, TRUE)) == NULL) {
161             rc = -1;
162         } else if (_nc_db_close(capdbp) < 0) {
163             rc = -1;
164         }
165 #else
166         struct stat statbuf;
167
168         if ((rc = stat(path, &statbuf)) < 0) {
169             rc = mkdir(path
170 #if !defined(__MINGW32__)
171                        ,0777
172 #endif
173                 );
174         } else if (_nc_access(path, R_OK | W_OK | X_OK) < 0) {
175             rc = -1;            /* permission denied */
176         } else if (!(S_ISDIR(statbuf.st_mode))) {
177             rc = -1;            /* not a directory */
178         }
179 #endif
180     }
181     return rc;
182 }
183
184 /*
185  * Set the write directory for compiled entries.
186  */
187 NCURSES_EXPORT(void)
188 _nc_set_writedir(char *dir)
189 {
190     const char *destination;
191     char actual[PATH_MAX];
192
193     if (dir == 0
194         && use_terminfo_vars())
195         dir = getenv("TERMINFO");
196
197     if (dir != 0)
198         (void) _nc_tic_dir(dir);
199
200     destination = _nc_tic_dir(0);
201     if (make_db_root(destination) < 0) {
202         char *home = _nc_home_terminfo();
203
204         if (home != 0) {
205             destination = home;
206             if (make_db_root(destination) < 0)
207                 _nc_err_abort("%s: permission denied (errno %d)",
208                               destination, errno);
209         }
210     }
211
212     /*
213      * Note: because of this code, this logic should be exercised
214      * *once only* per run.
215      */
216 #if USE_HASHED_DB
217     make_db_path(actual, destination, sizeof(actual));
218 #else
219     if (chdir(_nc_tic_dir(destination)) < 0
220         || getcwd(actual, sizeof(actual)) == 0)
221         _nc_err_abort("%s: not a directory", destination);
222 #endif
223     _nc_keep_tic_dir(strdup(actual));
224 }
225
226 /*
227  *      Save the compiled version of a description in the filesystem.
228  *
229  *      make a copy of the name-list
230  *      break it up into first-name and all-but-last-name
231  *      creat(first-name)
232  *      write object information to first-name
233  *      close(first-name)
234  *      for each name in all-but-last-name
235  *          link to first-name
236  *
237  *      Using 'time()' to obtain a reference for file timestamps is unreliable,
238  *      e.g., with NFS, because the filesystem may have a different time
239  *      reference.  We check for pre-existence of links by latching the first
240  *      timestamp from a file that we create.
241  *
242  *      The _nc_warning() calls will report a correct line number only if
243  *      _nc_curr_line is properly set before the write_entry() call.
244  */
245
246 NCURSES_EXPORT(void)
247 _nc_write_entry(TERMTYPE *const tp)
248 {
249 #if USE_HASHED_DB
250
251     char buffer[MAX_ENTRY_SIZE + 1];
252     unsigned limit = sizeof(buffer);
253     unsigned offset = 0;
254
255 #else /* !USE_HASHED_DB */
256
257     struct stat statbuf;
258     char filename[PATH_MAX];
259     char linkname[PATH_MAX];
260 #if USE_SYMLINKS
261     char symlinkname[PATH_MAX];
262 #if !HAVE_LINK
263 #undef HAVE_LINK
264 #define HAVE_LINK 1
265 #endif
266 #endif /* USE_SYMLINKS */
267
268     static int call_count;
269     static time_t start_time;   /* time at start of writes */
270
271 #endif /* USE_HASHED_DB */
272
273     char name_list[MAX_TERMINFO_LENGTH];
274     char *first_name, *other_names;
275     char *ptr;
276
277     assert(strlen(tp->term_names) != 0);
278     assert(strlen(tp->term_names) < sizeof(name_list));
279
280     (void) strcpy(name_list, tp->term_names);
281     DEBUG(7, ("Name list = '%s'", name_list));
282
283     first_name = name_list;
284
285     ptr = &name_list[strlen(name_list) - 1];
286     other_names = ptr + 1;
287
288     while (ptr > name_list && *ptr != '|')
289         ptr--;
290
291     if (ptr != name_list) {
292         *ptr = '\0';
293
294         for (ptr = name_list; *ptr != '\0' && *ptr != '|'; ptr++)
295             continue;
296
297         if (*ptr == '\0')
298             other_names = ptr;
299         else {
300             *ptr = '\0';
301             other_names = ptr + 1;
302         }
303     }
304
305     DEBUG(7, ("First name = '%s'", first_name));
306     DEBUG(7, ("Other names = '%s'", other_names));
307
308     _nc_set_type(first_name);
309
310 #if USE_HASHED_DB
311     if (write_object(tp, buffer + 1, &offset, limit - 1) != ERR) {
312         DB *capdb = _nc_db_open(_nc_tic_dir(0), TRUE);
313         DBT key, data;
314
315         if (capdb != 0) {
316             buffer[0] = 0;
317
318             memset(&key, 0, sizeof(key));
319             key.data = tp->term_names;
320             key.size = strlen(tp->term_names);
321
322             memset(&data, 0, sizeof(data));
323             data.data = buffer;
324             data.size = offset + 1;
325
326             _nc_db_put(capdb, &key, &data);
327
328             buffer[0] = 2;
329
330             key.data = name_list;
331             key.size = strlen(name_list);
332
333             strcpy(buffer + 1, tp->term_names);
334             data.size = strlen(tp->term_names) + 1;
335
336             _nc_db_put(capdb, &key, &data);
337
338             while (*other_names != '\0') {
339                 ptr = other_names++;
340                 assert(ptr < buffer + sizeof(buffer) - 1);
341                 while (*other_names != '|' && *other_names != '\0')
342                     other_names++;
343
344                 if (*other_names != '\0')
345                     *(other_names++) = '\0';
346
347                 key.data = ptr;
348                 key.size = strlen(ptr);
349
350                 _nc_db_put(capdb, &key, &data);
351             }
352         }
353     }
354 #else /* !USE_HASHED_DB */
355     if (call_count++ == 0) {
356         start_time = 0;
357     }
358
359     if (strlen(first_name) >= sizeof(filename) - (2 + LEAF_LEN))
360         _nc_warning("terminal name too long.");
361
362     sprintf(filename, LEAF_FMT "/%s", first_name[0], first_name);
363
364     /*
365      * Has this primary name been written since the first call to
366      * write_entry()?  If so, the newer write will step on the older,
367      * so warn the user.
368      */
369     if (start_time > 0 &&
370         stat(filename, &statbuf) >= 0
371         && statbuf.st_mtime >= start_time) {
372         _nc_warning("name multiply defined.");
373     }
374
375     check_writeable(first_name[0]);
376     write_file(filename, tp);
377
378     if (start_time == 0) {
379         if (stat(filename, &statbuf) < 0
380             || (start_time = statbuf.st_mtime) == 0) {
381             _nc_syserr_abort("error obtaining time from %s/%s",
382                              _nc_tic_dir(0), filename);
383         }
384     }
385     while (*other_names != '\0') {
386         ptr = other_names++;
387         while (*other_names != '|' && *other_names != '\0')
388             other_names++;
389
390         if (*other_names != '\0')
391             *(other_names++) = '\0';
392
393         if (strlen(ptr) > sizeof(linkname) - (2 + LEAF_LEN)) {
394             _nc_warning("terminal alias %s too long.", ptr);
395             continue;
396         }
397         if (strchr(ptr, '/') != 0) {
398             _nc_warning("cannot link alias %s.", ptr);
399             continue;
400         }
401
402         check_writeable(ptr[0]);
403         sprintf(linkname, LEAF_FMT "/%s", ptr[0], ptr);
404
405         if (strcmp(filename, linkname) == 0) {
406             _nc_warning("self-synonym ignored");
407         } else if (stat(linkname, &statbuf) >= 0 &&
408                    statbuf.st_mtime < start_time) {
409             _nc_warning("alias %s multiply defined.", ptr);
410         } else if (_nc_access(linkname, W_OK) == 0)
411 #if HAVE_LINK
412         {
413             int code;
414 #if USE_SYMLINKS
415             if (first_name[0] == linkname[0])
416                 strncpy(symlinkname, first_name, sizeof(symlinkname) - 1);
417             else {
418                 strcpy(symlinkname, "../");
419                 strncat(symlinkname, filename, sizeof(symlinkname) - 4);
420             }
421             symlinkname[sizeof(symlinkname) - 1] = '\0';
422 #endif /* USE_SYMLINKS */
423 #if HAVE_REMOVE
424             code = remove(linkname);
425 #else
426             code = unlink(linkname);
427 #endif
428             if (code != 0 && errno == ENOENT)
429                 code = 0;
430 #if USE_SYMLINKS
431             if (symlink(symlinkname, linkname) < 0)
432 #else
433             if (link(filename, linkname) < 0)
434 #endif /* USE_SYMLINKS */
435             {
436                 /*
437                  * If there wasn't anything there, and we cannot
438                  * link to the target because it is the same as the
439                  * target, then the source must be on a filesystem
440                  * that uses caseless filenames, such as Win32, etc.
441                  */
442                 if (code == 0 && errno == EEXIST)
443                     _nc_warning("can't link %s to %s", filename, linkname);
444                 else if (code == 0 && (errno == EPERM || errno == ENOENT))
445                     write_file(linkname, tp);
446                 else {
447 #if MIXEDCASE_FILENAMES
448                     _nc_syserr_abort("can't link %s to %s", filename, linkname);
449 #else
450                     _nc_warning("can't link %s to %s (errno=%d)", filename,
451                                 linkname, errno);
452 #endif
453                 }
454             } else {
455                 DEBUG(1, ("Linked %s", linkname));
456             }
457         }
458 #else /* just make copies */
459             write_file(linkname, tp);
460 #endif /* HAVE_LINK */
461     }
462 #endif /* USE_HASHED_DB */
463 }
464
465 static size_t
466 fake_write(char *dst,
467            unsigned *offset,
468            size_t limit,
469            char *src,
470            size_t want,
471            size_t size)
472 {
473     size_t have = (limit - *offset);
474
475     want *= size;
476     if (have > 0) {
477         if (want > have)
478             want = have;
479         memcpy(dst + *offset, src, want);
480         *offset += (unsigned) want;
481     } else {
482         want = 0;
483     }
484     return (want / size);
485 }
486
487 #define Write(buf, size, count) fake_write(buffer, offset, (size_t) limit, (char *) buf, (size_t) count, (size_t) size)
488
489 #undef LITTLE_ENDIAN            /* BSD/OS defines this as a feature macro */
490 #define HI(x)                   ((x) / 256)
491 #define LO(x)                   ((x) % 256)
492 #define LITTLE_ENDIAN(p, x)     (p)[0] = (unsigned char)LO(x),  \
493                                 (p)[1] = (unsigned char)HI(x)
494
495 #define WRITE_STRING(str) (Write(str, sizeof(char), strlen(str) + 1) == strlen(str) + 1)
496
497 static int
498 compute_offsets(char **Strings, size_t strmax, short *offsets)
499 {
500     int nextfree = 0;
501     size_t i;
502
503     for (i = 0; i < strmax; i++) {
504         if (Strings[i] == ABSENT_STRING) {
505             offsets[i] = -1;
506         } else if (Strings[i] == CANCELLED_STRING) {
507             offsets[i] = -2;
508         } else {
509             offsets[i] = (short) nextfree;
510             nextfree += (int) strlen(Strings[i]) + 1;
511             TRACE_OUT(("put Strings[%d]=%s(%d)", (int) i,
512                        _nc_visbuf(Strings[i]), (int) nextfree));
513         }
514     }
515     return nextfree;
516 }
517
518 static void
519 convert_shorts(unsigned char *buf, short *Numbers, size_t count)
520 {
521     size_t i;
522     for (i = 0; i < count; i++) {
523         if (Numbers[i] == ABSENT_NUMERIC) {     /* HI/LO won't work */
524             buf[2 * i] = buf[2 * i + 1] = 0377;
525         } else if (Numbers[i] == CANCELLED_NUMERIC) {   /* HI/LO won't work */
526             buf[2 * i] = 0376;
527             buf[2 * i + 1] = 0377;
528         } else {
529             LITTLE_ENDIAN(buf + 2 * i, Numbers[i]);
530             TRACE_OUT(("put Numbers[%u]=%d", (unsigned) i, Numbers[i]));
531         }
532     }
533 }
534
535 #define even_boundary(value) \
536             ((value) % 2 != 0 && Write(&zero, sizeof(char), 1) != 1)
537
538 #if NCURSES_XNAMES
539 static unsigned
540 extended_Booleans(TERMTYPE *tp)
541 {
542     unsigned result = 0;
543     unsigned i;
544
545     for (i = 0; i < tp->ext_Booleans; ++i) {
546         if (tp->Booleans[BOOLCOUNT + i] == TRUE)
547             result = (i + 1);
548     }
549     return result;
550 }
551
552 static unsigned
553 extended_Numbers(TERMTYPE *tp)
554 {
555     unsigned result = 0;
556     unsigned i;
557
558     for (i = 0; i < tp->ext_Numbers; ++i) {
559         if (tp->Numbers[NUMCOUNT + i] != ABSENT_NUMERIC)
560             result = (i + 1);
561     }
562     return result;
563 }
564
565 static unsigned
566 extended_Strings(TERMTYPE *tp)
567 {
568     unsigned short result = 0;
569     unsigned short i;
570
571     for (i = 0; i < tp->ext_Strings; ++i) {
572         if (tp->Strings[STRCOUNT + i] != ABSENT_STRING)
573             result = (unsigned short) (i + 1);
574     }
575     return result;
576 }
577
578 /*
579  * _nc_align_termtype() will extend entries that are referenced in a use=
580  * clause - discard the unneeded data.
581  */
582 static bool
583 extended_object(TERMTYPE *tp)
584 {
585     bool result = FALSE;
586
587     if (_nc_user_definable) {
588         result = ((extended_Booleans(tp)
589                    + extended_Numbers(tp)
590                    + extended_Strings(tp)) != 0);
591     }
592     return result;
593 }
594 #endif
595
596 static int
597 write_object(TERMTYPE *tp, char *buffer, unsigned *offset, unsigned limit)
598 {
599     char *namelist;
600     size_t namelen, boolmax, nummax, strmax;
601     char zero = '\0';
602     size_t i;
603     int nextfree;
604     short offsets[MAX_ENTRY_SIZE / 2];
605     unsigned char buf[MAX_ENTRY_SIZE];
606     unsigned last_bool = BOOLWRITE;
607     unsigned last_num = NUMWRITE;
608     unsigned last_str = STRWRITE;
609
610 #if NCURSES_XNAMES
611     /*
612      * Normally we limit the list of values to exclude the "obsolete"
613      * capabilities.  However, if we are accepting extended names, add
614      * these as well, since they are used for supporting translation
615      * to/from termcap.
616      */
617     if (_nc_user_definable) {
618         last_bool = BOOLCOUNT;
619         last_num = NUMCOUNT;
620         last_str = STRCOUNT;
621     }
622 #endif
623
624     namelist = tp->term_names;
625     namelen = strlen(namelist) + 1;
626
627     boolmax = 0;
628     for (i = 0; i < last_bool; i++) {
629         if (tp->Booleans[i] == TRUE)
630             boolmax = i + 1;
631     }
632
633     nummax = 0;
634     for (i = 0; i < last_num; i++) {
635         if (tp->Numbers[i] != ABSENT_NUMERIC)
636             nummax = i + 1;
637     }
638
639     strmax = 0;
640     for (i = 0; i < last_str; i++) {
641         if (tp->Strings[i] != ABSENT_STRING)
642             strmax = i + 1;
643     }
644
645     nextfree = compute_offsets(tp->Strings, strmax, offsets);
646
647     /* fill in the header */
648     LITTLE_ENDIAN(buf, MAGIC);
649     LITTLE_ENDIAN(buf + 2, min(namelen, MAX_NAME_SIZE + 1));
650     LITTLE_ENDIAN(buf + 4, boolmax);
651     LITTLE_ENDIAN(buf + 6, nummax);
652     LITTLE_ENDIAN(buf + 8, strmax);
653     LITTLE_ENDIAN(buf + 10, nextfree);
654
655     /* write out the header */
656     TRACE_OUT(("Header of %s @%d", namelist, *offset));
657     if (Write(buf, 12, 1) != 1
658         || Write(namelist, sizeof(char), namelen) != namelen)
659           return (ERR);
660
661     for (i = 0; i < boolmax; i++)
662         if (tp->Booleans[i] == TRUE)
663             buf[i] = TRUE;
664         else
665             buf[i] = FALSE;
666     if (Write(buf, sizeof(char), boolmax) != boolmax)
667           return (ERR);
668
669     if (even_boundary(namelen + boolmax))
670         return (ERR);
671
672     TRACE_OUT(("Numerics begin at %04x", *offset));
673
674     /* the numerics */
675     convert_shorts(buf, tp->Numbers, nummax);
676     if (Write(buf, 2, nummax) != nummax)
677         return (ERR);
678
679     TRACE_OUT(("String offsets begin at %04x", *offset));
680
681     /* the string offsets */
682     convert_shorts(buf, offsets, strmax);
683     if (Write(buf, 2, strmax) != strmax)
684         return (ERR);
685
686     TRACE_OUT(("String table begins at %04x", *offset));
687
688     /* the strings */
689     for (i = 0; i < strmax; i++)
690         if (VALID_STRING(tp->Strings[i]))
691             if (!WRITE_STRING(tp->Strings[i]))
692                 return (ERR);
693
694 #if NCURSES_XNAMES
695     if (extended_object(tp)) {
696         unsigned extcnt = (unsigned) NUM_EXT_NAMES(tp);
697
698         if (even_boundary(nextfree))
699             return (ERR);
700
701         nextfree = compute_offsets(tp->Strings + STRCOUNT,
702                                    (size_t) tp->ext_Strings,
703                                    offsets);
704         TRACE_OUT(("after extended string capabilities, nextfree=%d", nextfree));
705
706         if (tp->ext_Strings >= SIZEOF(offsets))
707             return (ERR);
708
709         nextfree += compute_offsets(tp->ext_Names,
710                                     (size_t) extcnt,
711                                     offsets + tp->ext_Strings);
712         TRACE_OUT(("after extended capnames, nextfree=%d", nextfree));
713         strmax = tp->ext_Strings + extcnt;
714
715         /*
716          * Write the extended header
717          */
718         LITTLE_ENDIAN(buf + 0, tp->ext_Booleans);
719         LITTLE_ENDIAN(buf + 2, tp->ext_Numbers);
720         LITTLE_ENDIAN(buf + 4, tp->ext_Strings);
721         LITTLE_ENDIAN(buf + 6, strmax);
722         LITTLE_ENDIAN(buf + 8, nextfree);
723         TRACE_OUT(("WRITE extended-header @%d", *offset));
724         if (Write(buf, 10, 1) != 1)
725             return (ERR);
726
727         TRACE_OUT(("WRITE %d booleans @%d", tp->ext_Booleans, *offset));
728         if (tp->ext_Booleans
729             && Write(tp->Booleans + BOOLCOUNT, sizeof(char),
730                      tp->ext_Booleans) != tp->ext_Booleans)
731               return (ERR);
732
733         if (even_boundary(tp->ext_Booleans))
734             return (ERR);
735
736         TRACE_OUT(("WRITE %d numbers @%d", tp->ext_Numbers, *offset));
737         if (tp->ext_Numbers) {
738             convert_shorts(buf, tp->Numbers + NUMCOUNT, (size_t) tp->ext_Numbers);
739             if (Write(buf, 2, tp->ext_Numbers) != tp->ext_Numbers)
740                 return (ERR);
741         }
742
743         /*
744          * Convert the offsets for the ext_Strings and ext_Names tables,
745          * in that order.
746          */
747         convert_shorts(buf, offsets, strmax);
748         TRACE_OUT(("WRITE offsets @%d", *offset));
749         if (Write(buf, 2, strmax) != strmax)
750             return (ERR);
751
752         /*
753          * Write the string table after the offset tables so we do not
754          * have to do anything about alignment.
755          */
756         for (i = 0; i < tp->ext_Strings; i++) {
757             if (VALID_STRING(tp->Strings[i + STRCOUNT])) {
758                 TRACE_OUT(("WRITE ext_Strings[%d]=%s", (int) i,
759                            _nc_visbuf(tp->Strings[i + STRCOUNT])));
760                 if (!WRITE_STRING(tp->Strings[i + STRCOUNT]))
761                     return (ERR);
762             }
763         }
764
765         /*
766          * Write the extended names
767          */
768         for (i = 0; i < extcnt; i++) {
769             TRACE_OUT(("WRITE ext_Names[%d]=%s", (int) i, tp->ext_Names[i]));
770             if (!WRITE_STRING(tp->ext_Names[i]))
771                 return (ERR);
772         }
773
774     }
775 #endif /* NCURSES_XNAMES */
776
777     total_written++;
778     return (OK);
779 }
780
781 /*
782  * Returns the total number of entries written by this process
783  */
784 NCURSES_EXPORT(int)
785 _nc_tic_written(void)
786 {
787     return total_written;
788 }