1 /**************************************************************************** 2 * Copyright (c) 1998,1999,2000 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 ****************************************************************************/ 33 34 /* 35 * write_entry.c -- write a terminfo structure onto the file system 36 */ 37 38 #include <curses.priv.h> 39 40 #include <sys/stat.h> 41 42 #include <tic.h> 43 #include <term_entry.h> 44 45 #ifndef S_ISDIR 46 #define S_ISDIR(mode) ((mode & S_IFMT) == S_IFDIR) 47 #endif 48 49 #if 0 50 #define TRACE_OUT(p) DEBUG(2, p) 51 #else 52 #define TRACE_OUT(p) /*nothing */ 53 #endif 54 55 MODULE_ID("$Id: write_entry.c,v 1.56 2000/12/10 02:55:08 tom Exp $") 56 57 static int total_written; 58 59 static int write_object(FILE *, TERMTYPE *); 60 61 static void 62 write_file(char *filename, TERMTYPE * tp) 63 { 64 FILE *fp = (_nc_access(filename, W_OK) == 0) ? fopen(filename, "wb") : 0; 65 if (fp == 0) { 66 perror(filename); 67 _nc_syserr_abort("can't open %s/%s", _nc_tic_dir(0), filename); 68 } 69 DEBUG(1, ("Created %s", filename)); 70 71 if (write_object(fp, tp) == ERR) { 72 _nc_syserr_abort("error writing %s/%s", _nc_tic_dir(0), filename); 73 } 74 fclose(fp); 75 } 76 77 /* 78 * make_directory(char *path) 79 * 80 * Make a directory if it doesn't exist. 81 */ 82 static int 83 make_directory(const char *path) 84 { 85 int rc; 86 struct stat statbuf; 87 char fullpath[PATH_MAX]; 88 const char *destination = _nc_tic_dir(0); 89 90 if (path == destination || *path == '/') { 91 if (strlen(path) + 1 > sizeof(fullpath)) 92 return (-1); 93 (void) strcpy(fullpath, path); 94 } else { 95 if (strlen(destination) + strlen(path) + 2 > sizeof(fullpath)) 96 return (-1); 97 (void) sprintf(fullpath, "%s/%s", destination, path); 98 } 99 100 if ((rc = stat(path, &statbuf)) < 0) { 101 rc = mkdir(path, 0777); 102 } else { 103 if (_nc_access(path, R_OK | W_OK | X_OK) < 0) { 104 rc = -1; /* permission denied */ 105 } else if (!(S_ISDIR(statbuf.st_mode))) { 106 rc = -1; /* not a directory */ 107 } 108 } 109 return rc; 110 } 111 112 NCURSES_EXPORT(void) 113 _nc_set_writedir(char *dir) 114 /* set the write directory for compiled entries */ 115 { 116 const char *destination; 117 char actual[PATH_MAX]; 118 119 if (dir == 0 120 && use_terminfo_vars()) 121 dir = getenv("TERMINFO"); 122 123 if (dir != 0) 124 (void) _nc_tic_dir(dir); 125 126 destination = _nc_tic_dir(0); 127 if (make_directory(destination) < 0) { 128 char *home = _nc_home_terminfo(); 129 130 if (home != 0) { 131 destination = home; 132 if (make_directory(destination) < 0) 133 _nc_err_abort("%s: permission denied (errno %d)", 134 destination, errno); 135 } 136 } 137 138 /* 139 * Note: because of this code, this logic should be exercised 140 * *once only* per run. 141 */ 142 if (chdir(_nc_tic_dir(destination)) < 0 143 || getcwd(actual, sizeof(actual)) == 0) 144 _nc_err_abort("%s: not a directory", destination); 145 _nc_keep_tic_dir(strdup(actual)); 146 } 147 148 /* 149 * check_writeable(char code) 150 * 151 * Miscellaneous initialisations 152 * 153 * Check for access rights to destination directories 154 * Create any directories which don't exist. 155 * Note: there's no reason to return the result of make_directory(), since 156 * this function is called only in instances where that has to succeed. 157 * 158 */ 159 160 static void 161 check_writeable(int code) 162 { 163 static const char dirnames[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; 164 static bool verified[sizeof(dirnames)]; 165 166 char dir[2]; 167 char *s = 0; 168 169 if (code == 0 || (s = strchr(dirnames, code)) == 0) 170 _nc_err_abort("Illegal terminfo subdirectory \"%c\"", code); 171 172 if (verified[s - dirnames]) 173 return; 174 175 dir[0] = code; 176 dir[1] = '\0'; 177 if (make_directory(dir) < 0) { 178 _nc_err_abort("%s/%s: permission denied", _nc_tic_dir(0), dir); 179 } 180 181 verified[s - dirnames] = TRUE; 182 } 183 184 /* 185 * _nc_write_entry() 186 * 187 * Save the compiled version of a description in the filesystem. 188 * 189 * make a copy of the name-list 190 * break it up into first-name and all-but-last-name 191 * creat(first-name) 192 * write object information to first-name 193 * close(first-name) 194 * for each name in all-but-last-name 195 * link to first-name 196 * 197 * Using 'time()' to obtain a reference for file timestamps is unreliable, 198 * e.g., with NFS, because the filesystem may have a different time 199 * reference. We check for pre-existence of links by latching the first 200 * timestamp from a file that we create. 201 * 202 * The _nc_warning() calls will report a correct line number only if 203 * _nc_curr_line is properly set before the write_entry() call. 204 */ 205 206 void 207 _nc_write_entry(TERMTYPE * const tp) 208 { 209 struct stat statbuf; 210 char name_list[MAX_TERMINFO_LENGTH]; 211 char *first_name, *other_names; 212 char *ptr; 213 char filename[PATH_MAX]; 214 char linkname[PATH_MAX]; 215 #if USE_SYMLINKS 216 char symlinkname[PATH_MAX]; 217 #endif /* USE_SYMLINKS */ 218 static int call_count; 219 static time_t start_time; /* time at start of writes */ 220 221 if (call_count++ == 0) { 222 start_time = 0; 223 } 224 225 (void) strcpy(name_list, tp->term_names); 226 DEBUG(7, ("Name list = '%s'", name_list)); 227 228 first_name = name_list; 229 230 ptr = &name_list[strlen(name_list) - 1]; 231 other_names = ptr + 1; 232 233 while (ptr > name_list && *ptr != '|') 234 ptr--; 235 236 if (ptr != name_list) { 237 *ptr = '\0'; 238 239 for (ptr = name_list; *ptr != '\0' && *ptr != '|'; ptr++) 240 continue; 241 242 if (*ptr == '\0') 243 other_names = ptr; 244 else { 245 *ptr = '\0'; 246 other_names = ptr + 1; 247 } 248 } 249 250 DEBUG(7, ("First name = '%s'", first_name)); 251 DEBUG(7, ("Other names = '%s'", other_names)); 252 253 _nc_set_type(first_name); 254 255 if (strlen(first_name) > sizeof(filename) - 3) 256 _nc_warning("terminal name too long."); 257 258 sprintf(filename, "%c/%s", first_name[0], first_name); 259 260 /* 261 * Has this primary name been written since the first call to 262 * write_entry()? If so, the newer write will step on the older, 263 * so warn the user. 264 */ 265 if (start_time > 0 && 266 stat(filename, &statbuf) >= 0 267 && statbuf.st_mtime >= start_time) { 268 _nc_warning("name multiply defined."); 269 } 270 271 check_writeable(first_name[0]); 272 write_file(filename, tp); 273 274 if (start_time == 0) { 275 if (stat(filename, &statbuf) < 0 276 || (start_time = statbuf.st_mtime) == 0) { 277 _nc_syserr_abort("error obtaining time from %s/%s", 278 _nc_tic_dir(0), filename); 279 } 280 } 281 while (*other_names != '\0') { 282 ptr = other_names++; 283 while (*other_names != '|' && *other_names != '\0') 284 other_names++; 285 286 if (*other_names != '\0') 287 *(other_names++) = '\0'; 288 289 if (strlen(ptr) > sizeof(linkname) - 3) { 290 _nc_warning("terminal alias %s too long.", ptr); 291 continue; 292 } 293 if (strchr(ptr, '/') != 0) { 294 _nc_warning("cannot link alias %s.", ptr); 295 continue; 296 } 297 298 check_writeable(ptr[0]); 299 sprintf(linkname, "%c/%s", ptr[0], ptr); 300 301 if (strcmp(filename, linkname) == 0) { 302 _nc_warning("self-synonym ignored"); 303 } else if (stat(linkname, &statbuf) >= 0 && 304 statbuf.st_mtime < start_time) { 305 _nc_warning("alias %s multiply defined.", ptr); 306 } else if (_nc_access(linkname, W_OK) == 0) 307 #if HAVE_LINK 308 { 309 int code; 310 #if USE_SYMLINKS 311 strcpy(symlinkname, "../"); 312 strncat(symlinkname, filename, sizeof(symlinkname) - 4); 313 symlinkname[sizeof(symlinkname) - 1] = '\0'; 314 #endif /* USE_SYMLINKS */ 315 #if HAVE_REMOVE 316 code = remove(linkname); 317 #else 318 code = unlink(linkname); 319 #endif 320 if (code != 0 && errno == ENOENT) 321 code = 0; 322 #if USE_SYMLINKS 323 if (symlink(symlinkname, linkname) < 0) 324 #else 325 if (link(filename, linkname) < 0) 326 #endif /* USE_SYMLINKS */ 327 { 328 /* 329 * If there wasn't anything there, and we cannot 330 * link to the target because it is the same as the 331 * target, then the source must be on a filesystem 332 * that uses caseless filenames, such as Win32, etc. 333 */ 334 if (code == 0 && errno == EEXIST) 335 _nc_warning("can't link %s to %s", filename, linkname); 336 else if (code == 0 && (errno == EPERM || errno == ENOENT)) 337 write_file(linkname, tp); 338 else { 339 #if MIXEDCASE_FILENAMES 340 _nc_syserr_abort("can't link %s to %s", filename, linkname); 341 #else 342 _nc_warning("can't link %s to %s (errno=%d)", filename, 343 linkname, errno); 344 #endif 345 } 346 } else { 347 DEBUG(1, ("Linked %s", linkname)); 348 } 349 } 350 #else /* just make copies */ 351 write_file(linkname, tp); 352 #endif /* HAVE_LINK */ 353 } 354 } 355 356 #undef LITTLE_ENDIAN /* BSD/OS defines this as a feature macro */ 357 #define HI(x) ((x) / 256) 358 #define LO(x) ((x) % 256) 359 #define LITTLE_ENDIAN(p, x) (p)[0] = LO(x), (p)[1] = HI(x) 360 361 #define WRITE_STRING(str) (fwrite(str, sizeof(char), strlen(str) + 1, fp) == strlen(str) + 1) 362 363 static int 364 compute_offsets(char **Strings, int strmax, short *offsets) 365 { 366 size_t nextfree = 0; 367 int i; 368 369 for (i = 0; i < strmax; i++) { 370 if (Strings[i] == ABSENT_STRING) { 371 offsets[i] = -1; 372 } else if (Strings[i] == CANCELLED_STRING) { 373 offsets[i] = -2; 374 } else { 375 offsets[i] = nextfree; 376 nextfree += strlen(Strings[i]) + 1; 377 TRACE_OUT(("put Strings[%d]=%s(%d)", i, _nc_visbuf(Strings[i]), nextfree)); 378 } 379 } 380 return nextfree; 381 } 382 383 static void 384 convert_shorts(unsigned char *buf, short *Numbers, int count) 385 { 386 int i; 387 for (i = 0; i < count; i++) { 388 if (Numbers[i] == ABSENT_NUMERIC) { /* HI/LO won't work */ 389 buf[2 * i] = buf[2 * i + 1] = 0377; 390 } else if (Numbers[i] == CANCELLED_NUMERIC) { /* HI/LO won't work */ 391 buf[2 * i] = 0376; 392 buf[2 * i + 1] = 0377; 393 } else { 394 LITTLE_ENDIAN(buf + 2 * i, Numbers[i]); 395 TRACE_OUT(("put Numbers[%d]=%d", i, Numbers[i])); 396 } 397 } 398 } 399 400 #define even_boundary(value) \ 401 ((value) % 2 != 0 && fwrite(&zero, sizeof(char), 1, fp) != 1) 402 403 static int 404 write_object(FILE * fp, TERMTYPE * tp) 405 { 406 char *namelist; 407 size_t namelen, boolmax, nummax, strmax; 408 char zero = '\0'; 409 size_t i; 410 short nextfree; 411 short offsets[MAX_ENTRY_SIZE / 2]; 412 unsigned char buf[MAX_ENTRY_SIZE]; 413 unsigned last_bool = BOOLWRITE; 414 unsigned last_num = NUMWRITE; 415 unsigned last_str = STRWRITE; 416 417 #if NCURSES_XNAMES 418 /* 419 * Normally we limit the list of values to exclude the "obsolete" 420 * capabilities. However, if we are accepting extended names, add 421 * these as well, since they are used for supporting translation 422 * to/from termcap. 423 */ 424 if (_nc_user_definable) { 425 last_bool = BOOLCOUNT; 426 last_num = NUMCOUNT; 427 last_str = STRCOUNT; 428 } 429 #endif 430 431 namelist = tp->term_names; 432 namelen = strlen(namelist) + 1; 433 434 boolmax = 0; 435 for (i = 0; i < last_bool; i++) { 436 if (tp->Booleans[i] == TRUE) 437 boolmax = i + 1; 438 } 439 440 nummax = 0; 441 for (i = 0; i < last_num; i++) { 442 if (tp->Numbers[i] != ABSENT_NUMERIC) 443 nummax = i + 1; 444 } 445 446 strmax = 0; 447 for (i = 0; i < last_str; i++) { 448 if (tp->Strings[i] != ABSENT_STRING) 449 strmax = i + 1; 450 } 451 452 nextfree = compute_offsets(tp->Strings, strmax, offsets); 453 454 /* fill in the header */ 455 LITTLE_ENDIAN(buf, MAGIC); 456 LITTLE_ENDIAN(buf + 2, min(namelen, MAX_NAME_SIZE + 1)); 457 LITTLE_ENDIAN(buf + 4, boolmax); 458 LITTLE_ENDIAN(buf + 6, nummax); 459 LITTLE_ENDIAN(buf + 8, strmax); 460 LITTLE_ENDIAN(buf + 10, nextfree); 461 462 /* write out the header */ 463 TRACE_OUT(("Header of %s @%ld", namelist, ftell(fp))); 464 if (fwrite(buf, 12, 1, fp) != 1 465 || fwrite(namelist, sizeof(char), namelen, fp) != namelen) 466 return (ERR); 467 468 for (i = 0; i < boolmax; i++) 469 if (tp->Booleans[i] == TRUE) 470 buf[i] = TRUE; 471 else 472 buf[i] = FALSE; 473 if (fwrite(buf, sizeof(char), boolmax, fp) != boolmax) 474 return (ERR); 475 476 if (even_boundary(namelen + boolmax)) 477 return (ERR); 478 479 TRACE_OUT(("Numerics begin at %04lx", ftell(fp))); 480 481 /* the numerics */ 482 convert_shorts(buf, tp->Numbers, nummax); 483 if (fwrite(buf, 2, nummax, fp) != nummax) 484 return (ERR); 485 486 TRACE_OUT(("String offsets begin at %04lx", ftell(fp))); 487 488 /* the string offsets */ 489 convert_shorts(buf, offsets, strmax); 490 if (fwrite(buf, 2, strmax, fp) != strmax) 491 return (ERR); 492 493 TRACE_OUT(("String table begins at %04lx", ftell(fp))); 494 495 /* the strings */ 496 for (i = 0; i < strmax; i++) 497 if (VALID_STRING(tp->Strings[i])) 498 if (!WRITE_STRING(tp->Strings[i])) 499 return (ERR); 500 501 #if NCURSES_XNAMES 502 if (NUM_EXT_NAMES(tp)) { 503 unsigned extcnt = NUM_EXT_NAMES(tp); 504 505 if (even_boundary(nextfree)) 506 return (ERR); 507 508 nextfree = compute_offsets(tp->Strings + STRCOUNT, tp->ext_Strings, offsets); 509 TRACE_OUT(("after extended string capabilities, nextfree=%d", nextfree)); 510 nextfree += compute_offsets(tp->ext_Names, extcnt, offsets + tp->ext_Strings); 511 TRACE_OUT(("after extended capnames, nextfree=%d", nextfree)); 512 strmax = tp->ext_Strings + extcnt; 513 514 /* 515 * Write the extended header 516 */ 517 LITTLE_ENDIAN(buf + 0, tp->ext_Booleans); 518 LITTLE_ENDIAN(buf + 2, tp->ext_Numbers); 519 LITTLE_ENDIAN(buf + 4, tp->ext_Strings); 520 LITTLE_ENDIAN(buf + 6, strmax); 521 LITTLE_ENDIAN(buf + 8, nextfree); 522 TRACE_OUT(("WRITE extended-header @%ld", ftell(fp))); 523 if (fwrite(buf, 10, 1, fp) != 1) 524 return (ERR); 525 526 TRACE_OUT(("WRITE %d booleans @%ld", tp->ext_Booleans, ftell(fp))); 527 if (tp->ext_Booleans 528 && fwrite(tp->Booleans + BOOLCOUNT, sizeof(char), 529 tp->ext_Booleans, fp) != tp->ext_Booleans) 530 return (ERR); 531 532 if (even_boundary(tp->ext_Booleans)) 533 return (ERR); 534 535 TRACE_OUT(("WRITE %d numbers @%ld", tp->ext_Numbers, ftell(fp))); 536 if (tp->ext_Numbers) { 537 convert_shorts(buf, tp->Numbers + NUMCOUNT, tp->ext_Numbers); 538 if (fwrite(buf, 2, tp->ext_Numbers, fp) != tp->ext_Numbers) 539 return (ERR); 540 } 541 542 /* 543 * Convert the offsets for the ext_Strings and ext_Names tables, 544 * in that order. 545 */ 546 convert_shorts(buf, offsets, strmax); 547 TRACE_OUT(("WRITE offsets @%ld", ftell(fp))); 548 if (fwrite(buf, 2, strmax, fp) != strmax) 549 return (ERR); 550 551 /* 552 * Write the string table after the offset tables so we do not 553 * have to do anything about alignment. 554 */ 555 for (i = 0; i < tp->ext_Strings; i++) { 556 if (VALID_STRING(tp->Strings[i + STRCOUNT])) { 557 TRACE_OUT(("WRITE ext_Strings[%d]=%s", i, 558 _nc_visbuf(tp->Strings[i + STRCOUNT]))); 559 if (!WRITE_STRING(tp->Strings[i + STRCOUNT])) 560 return (ERR); 561 } 562 } 563 564 /* 565 * Write the extended names 566 */ 567 for (i = 0; i < extcnt; i++) { 568 TRACE_OUT(("WRITE ext_Names[%d]=%s", i, tp->ext_Names[i])); 569 if (!WRITE_STRING(tp->ext_Names[i])) 570 return (ERR); 571 } 572 573 } 574 #endif /* NCURSES_XNAMES */ 575 576 total_written++; 577 return (OK); 578 } 579 580 /* 581 * Returns the total number of entries written by this process 582 */ 583 NCURSES_EXPORT(int) 584 _nc_tic_written(void) 585 { 586 return total_written; 587 } 588