1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875
|
/* ------------------------------------------------------------------------ */
/* LHa for UNIX */
/* header.c -- header manipulate functions */
/* */
/* Modified Nobutaka Watazaki */
/* */
/* Original Y.Tagawa */
/* modified 1991.12.16 M.Oki */
/* Ver. 1.10 Symbolic Link added 1993.10.01 N.Watazaki */
/* Ver. 1.13b Symbolic Link Bug Fix 1994.08.22 N.Watazaki */
/* Ver. 1.14 Source All chagned 1995.01.14 N.Watazaki */
/* Ver. 1.14i bug fixed 2000.10.06 t.okamoto */
/* ------------------------------------------------------------------------ */
#include "lha.h"
/* ------------------------------------------------------------------------ */
static char *get_ptr;
/* ------------------------------------------------------------------------ */
int
calc_sum(p, len)
register char *p;
register int len;
{
register int sum;
for (sum = 0; len; len--)
sum += *p++;
return sum & 0xff;
}
/* ------------------------------------------------------------------------ */
static unsigned short
get_word()
{
int b0, b1;
b0 = get_byte();
b1 = get_byte();
return (b1 << 8) + b0;
}
/* ------------------------------------------------------------------------ */
static void
put_word(v)
unsigned int v;
{
put_byte(v);
put_byte(v >> 8);
}
/* ------------------------------------------------------------------------ */
static long
get_longword()
{
long b0, b1, b2, b3;
b0 = get_byte();
b1 = get_byte();
b2 = get_byte();
b3 = get_byte();
return (b3 << 24) + (b2 << 16) + (b1 << 8) + b0;
}
/* ------------------------------------------------------------------------ */
static void
put_longword(v)
long v;
{
put_byte(v);
put_byte(v >> 8);
put_byte(v >> 16);
put_byte(v >> 24);
}
/* ------------------------------------------------------------------------ */
static void
msdos_to_unix_filename(name, len)
register char *name;
register int len;
{
register int i;
#ifdef MULTIBYTE_CHAR
for (i = 0; i < len; i++) {
if (MULTIBYTE_FIRST_P(name[i]) &&
MULTIBYTE_SECOND_P(name[i + 1]))
i++;
else if (name[i] == '\\')
name[i] = '/';
else if (!noconvertcase && isupper(name[i]))
name[i] = tolower(name[i]);
}
#else
for (i = 0; i < len; i++) {
if (name[i] == '\\')
name[i] = '/';
else if (!noconvertcase && isupper(name[i]))
name[i] = tolower(name[i]);
}
#endif
}
/* ------------------------------------------------------------------------ */
static void
generic_to_unix_filename(name, len)
register char *name;
register int len;
{
register int i;
boolean lower_case_used = FALSE;
#ifdef MULTIBYTE_CHAR
for (i = 0; i < len; i++) {
if (MULTIBYTE_FIRST_P(name[i]) &&
MULTIBYTE_SECOND_P(name[i + 1]))
i++;
else if (islower(name[i])) {
lower_case_used = TRUE;
break;
}
}
for (i = 0; i < len; i++) {
if (MULTIBYTE_FIRST_P(name[i]) &&
MULTIBYTE_SECOND_P(name[i + 1]))
i++;
else if (name[i] == '\\')
name[i] = '/';
else if (!noconvertcase && !lower_case_used && isupper(name[i]))
name[i] = tolower(name[i]);
}
#else
for (i = 0; i < len; i++)
if (islower(name[i])) {
lower_case_used = TRUE;
break;
}
for (i = 0; i < len; i++) {
if (name[i] == '\\')
name[i] = '/';
else if (!noconvertcase && !lower_case_used && isupper(name[i]))
name[i] = tolower(name[i]);
}
#endif
}
/* ------------------------------------------------------------------------ */
static void
macos_to_unix_filename(name, len)
register char *name;
register int len;
{
register int i;
for (i = 0; i < len; i++) {
if (name[i] == ':')
name[i] = '/';
else if (name[i] == '/')
name[i] = ':';
}
}
/* ------------------------------------------------------------------------ */
static void
unix_to_generic_filename(name, len)
register char *name;
register int len;
{
register int i;
for (i = 0; i < len; i++) {
if (name[i] == '/')
name[i] = '\\';
else if (islower(name[i]))
name[i] = toupper(name[i]);
}
}
/* ------------------------------------------------------------------------ */
/* */
/* Generic stamp format: */
/* */
/* 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 */
/* |<-------- year ------->|<- month ->|<-- day -->| */
/* */
/* 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 */
/* |<--- hour --->|<---- minute --->|<- second*2 ->| */
/* */
/* ------------------------------------------------------------------------ */
/*
* NOTE : If you don't have `gettimeofday(2)', or your gettimeofday(2)
* returns bogus timezone information, try FTIME, MKTIME, TIMELOCAL or TZSET.
*/
/* choose one */
#if defined(MKTIME)
#ifdef TIMELOCAL
#undef TIMELOCAL
#endif
#endif /* defined(MKTIME) */
#if defined(MKTIME) || defined(TIMELOCAL)
#ifdef TZSET
#undef TZSET
#endif
#endif /* defined(MKTIME) || defined(TIMELOCAL) */
#if defined(MKTIME) || defined(TIMELOCAL) || defined(TZSET)
#ifdef FTIME
#undef FTIME
#endif
#endif
#if defined(MKTIME) || defined(TIMELOCAL) || defined(TZSET) || defined(FTIME)
#ifdef GETTIMEOFDAY
#undef GETTIMEOFDAY
#endif
#else
#ifndef GETTIMEOFDAY
#define GETTIMEOFDAY /* use gettimeofday() */
#endif
#endif
#ifdef FTIME
#include <sys/timeb.h>
#endif
/*
* You may define as : #define TIMEZONE_HOOK \ extern long
* timezone ; \ extern void tzset();
*/
#ifdef TIMEZONE_HOOK
TIMEZONE_HOOK
/* Which do you like better, `TIMEZONE_HOOK' or `TIMEZONE_HOOK;' ? */
#endif
#if defined(TZSET) && defined(_MINIX)
extern long timezone; /* not defined in time.h */
#endif
/* ------------------------------------------------------------------------ */
#if defined(FTIME) || defined(GETTIMEOFDAY) || defined(TZSET)
static long
gettz()
#ifdef TZSET
{
tzset();
return timezone;
}
#endif
/* ------------------------------------------------------------------------ */
#if !defined(TZSET) && defined(FTIME)
{
struct timeb buf;
ftime(&buf);
return buf.timezone * 60L;
}
#endif
/* ------------------------------------------------------------------------ */
#if !defined(TZSET) && !defined(FTIME) /* maybe defined(GETTIMEOFDAY) */
{
#ifdef HAVE_TM_ZONE
time_t tt;
time(&tt);
return -localtime(&tt)->tm_gmtoff;
#else /* HAVE_TM_ZONE */
struct timeval tp;
struct timezone tzp;
gettimeofday(&tp, &tzp);/* specific to 4.3BSD */
/*
* return (tzp.tz_minuteswest * 60L + (tzp.tz_dsttime != 0 ? 60L *
* 60L : 0));
*/
return (tzp.tz_minuteswest * 60L);
#endif /* HAVE_TM_ZONE */
}
#endif
#endif /* defined(FTIME) || defined(GETTIMEOFDAY) ||
* defined(TZSET) */
/* ------------------------------------------------------------------------ */
#ifdef NOT_USED
static struct tm *
msdos_to_unix_stamp_tm(a)
long a;
{
static struct tm t;
t.tm_sec = (a & 0x1f) * 2;
t.tm_min = (a >> 5) & 0x3f;
t.tm_hour = (a >> 11) & 0x1f;
t.tm_mday = (a >> 16) & 0x1f;
t.tm_mon = ((a >> 16 + 5) & 0x0f) - 1;
t.tm_year = ((a >> 16 + 9) & 0x7f) + 80;
return &t;
}
#endif
/* ------------------------------------------------------------------------ */
static time_t
generic_to_unix_stamp(t)
long t;
#if defined(MKTIME) || defined(TIMELOCAL)
{
struct tm dostm;
/*
* special case: if MSDOS format date and time were zero, then we
* set time to be zero here too.
*/
if (t == 0)
return (time_t) 0;
dostm.tm_sec = (t & 0x1f) * 2;
dostm.tm_min = t >> 5 & 0x3f;
dostm.tm_hour = t >> 11 & 0x1f;
dostm.tm_mday = t >> 16 & 0x1f;
dostm.tm_mon = (t >> 16 + 5 & 0x0f) - 1; /* 0..11 */
dostm.tm_year = (t >> 16 + 9 & 0x7f) + 80;
#if 0
dostm.tm_isdst = 0; /* correct? */
#endif
dostm.tm_isdst = -1; /* correct? */
#ifdef MKTIME
return (time_t) mktime(&dostm);
#else /* maybe defined(TIMELOCAL) */
return (time_t) timelocal(&dostm);
#endif
}
#else /* defined(MKTIME) || defined(TIMELOCAL) */
{
int year, month, day, hour, min, sec;
long longtime;
static unsigned int dsboy[12] = {0, 31, 59, 90, 120, 151,
181, 212, 243, 273, 304, 334};
unsigned int days;
/*
* special case: if MSDOS format date and time were zero, then we
* set time to be zero here too.
*/
if (t == 0)
return (time_t) 0;
year = ((int) (t >> 16 + 9) & 0x7f) + 1980;
month = (int) (t >> 16 + 5) & 0x0f; /* 1..12 means Jan..Dec */
day = (int) (t >> 16) & 0x1f; /* 1..31 means 1st,...31st */
hour = ((int) t >> 11) & 0x1f;
min = ((int) t >> 5) & 0x3f;
sec = ((int) t & 0x1f) * 2;
/* Calculate days since 1970.01.01 */
days = (365 * (year - 1970) + /* days due to whole years */
(year - 1970 + 1) / 4 + /* days due to leap years */
dsboy[month - 1] + /* days since beginning of this year */
day - 1); /* days since beginning of month */
if ((year % 4 == 0) &&
(year % 100 != 0 || year % 400 == 0) && /* 1999.5.24 t.oka */
(month >= 3)) /* if this is a leap year and month */
days++; /* is March or later, add a day */
/* Knowing the days, we can find seconds */
longtime = (((days * 24) + hour) * 60 + min) * 60 + sec;
longtime += gettz(); /* adjust for timezone */
/* LONGTIME is now the time in seconds, since 1970/01/01 00:00:00. */
return (time_t) longtime;
}
#endif /* defined(MKTIME) || defined(TIMELOCAL) */
/* ------------------------------------------------------------------------ */
static long
unix_to_generic_stamp(t)
time_t t;
{
struct tm *tm = localtime(&t);
return ((((long) (tm->tm_year - 80)) << 25) +
(((long) (tm->tm_mon + 1)) << 21) +
(((long) tm->tm_mday) << 16) +
(long) ((tm->tm_hour << 11) +
(tm->tm_min << 5) +
(tm->tm_sec / 2)));
}
/* ------------------------------------------------------------------------ */
/* build header functions */
/* ------------------------------------------------------------------------ */
boolean
get_header(fp, hdr)
FILE *fp;
register LzHeader *hdr;
{
int header_size;
int name_length;
char data[LZHEADER_STRAGE];
char dirname[FILENAME_LENGTH];
int dir_length = 0;
int checksum;
int i;
char *ptr;
int extend_size;
int dmy;
bzero(hdr, sizeof(LzHeader));
if (((header_size = getc(fp)) == EOF) || (header_size == 0)) {
return FALSE; /* finish */
}
if (fread(data + I_HEADER_CHECKSUM,
sizeof(char), header_size - 1, fp) < header_size - 1) {
fatal_error("Invalid header (LHarc file ?)");
return FALSE; /* finish */
}
setup_get(data + I_HEADER_LEVEL);
hdr->header_level = get_byte();
if (hdr->header_level != 2 &&
fread(data + header_size, sizeof(char), 2, fp) < 2) {
fatal_error("Invalid header (LHarc file ?)");
return FALSE; /* finish */
}
if (hdr->header_level >= 3) {
fatal_error("Unknown level header");
return FALSE;
}
setup_get(data + I_HEADER_CHECKSUM);
checksum = get_byte();
if (hdr->header_level == 2) {
hdr->header_size = header_size + checksum*256;
} else {
hdr->header_size = header_size;
}
bcopy(data + I_METHOD, hdr->method, METHOD_TYPE_STRAGE);
setup_get(data + I_PACKED_SIZE);
hdr->packed_size = get_longword();
hdr->original_size = get_longword();
hdr->last_modified_stamp = get_longword();
hdr->attribute = get_byte();
if ((hdr->header_level = get_byte()) != 2) {
if (calc_sum(data + I_METHOD, header_size) != checksum)
warning("Checksum error (LHarc file?)", "");
name_length = get_byte();
for (i = 0; i < name_length; i++)
hdr->name[i] = (char) get_byte();
hdr->name[name_length] = '\0';
}
else {
hdr->unix_last_modified_stamp = hdr->last_modified_stamp;
name_length = 0;
}
/* defaults for other type */
hdr->unix_mode = UNIX_FILE_REGULAR | UNIX_RW_RW_RW;
hdr->unix_gid = 0;
hdr->unix_uid = 0;
if (hdr->header_level == 0) {
extend_size = header_size - name_length -22;
if (extend_size < 0) {
if (extend_size == -2) {
hdr->extend_type = EXTEND_GENERIC;
hdr->has_crc = FALSE;
} else {
fatal_error("Unkonwn header (lha file?)");
return FALSE;
}
} else {
hdr->has_crc = TRUE;
hdr->crc = get_word();
}
if (extend_size >= 1) {
hdr->extend_type = get_byte();
extend_size--;
}
if (hdr->extend_type == EXTEND_UNIX) {
if (extend_size >= 11) {
hdr->minor_version = get_byte();
hdr->unix_last_modified_stamp = (time_t) get_longword();
hdr->unix_mode = get_word();
hdr->unix_uid = get_word();
hdr->unix_gid = get_word();
extend_size -= 11;
} else {
hdr->extend_type = EXTEND_GENERIC;
}
}
while (extend_size-- > 0)
dmy = get_byte();
if (hdr->extend_type == EXTEND_UNIX)
return TRUE;
} else if (hdr->header_level == 1) {
hdr->has_crc = TRUE;
extend_size = header_size - name_length-25;
hdr->crc = get_word();
hdr->extend_type = get_byte();
while (extend_size-- > 0)
dmy = get_byte();
} else { /* level 2 */
hdr->has_crc = TRUE;
hdr->crc = get_word();
hdr->extend_type = get_byte();
}
if (hdr->header_level > 0) {
/* Extend Header */
if (hdr->header_level != 2)
setup_get(data + hdr->header_size);
ptr = get_ptr;
while ((header_size = get_word()) != 0) {
if (hdr->header_level != 2 &&
((data + LZHEADER_STRAGE - get_ptr < header_size) ||
fread(get_ptr, sizeof(char), header_size, fp) < header_size)) {
fatal_error("Invalid header (LHa file ?)");
return FALSE;
}
switch (get_byte()) {
case 0:
/*
* header crc
*/
setup_get(get_ptr + header_size - 3);
break;
case 1:
/*
* filename
*/
for (i = 0; i < header_size - 3; i++)
hdr->name[i] = (char) get_byte();
hdr->name[header_size - 3] = '\0';
name_length = header_size - 3;
break;
case 2:
/*
* directory
*/
for (i = 0; i < header_size - 3; i++)
dirname[i] = (char) get_byte();
dirname[header_size - 3] = '\0';
convdelim(dirname, DELIM);
dir_length = header_size - 3;
break;
case 0x40:
/*
* MS-DOS attribute
*/
if (hdr->extend_type == EXTEND_MSDOS ||
hdr->extend_type == EXTEND_HUMAN ||
hdr->extend_type == EXTEND_GENERIC)
hdr->attribute = get_word();
break;
case 0x50:
/*
* UNIX permission
*/
if (hdr->extend_type == EXTEND_UNIX)
hdr->unix_mode = get_word();
break;
case 0x51:
/*
* UNIX gid and uid
*/
if (hdr->extend_type == EXTEND_UNIX) {
hdr->unix_gid = get_word();
hdr->unix_uid = get_word();
}
break;
case 0x52:
/*
* UNIX group name
*/
setup_get(get_ptr + header_size - 3);
break;
case 0x53:
/*
* UNIX user name
*/
setup_get(get_ptr + header_size - 3);
break;
case 0x54:
/*
* UNIX last modified time
*/
if (hdr->extend_type == EXTEND_UNIX)
hdr->unix_last_modified_stamp = (time_t) get_longword();
break;
default:
/*
* other headers
*/
setup_get(get_ptr + header_size - 3);
break;
}
}
if (hdr->header_level != 2 && get_ptr - ptr != 2) {
hdr->packed_size -= get_ptr - ptr - 2;
hdr->header_size += get_ptr - ptr - 2;
}
}
switch (hdr->extend_type) {
case EXTEND_MSDOS:
msdos_to_unix_filename(hdr->name, name_length);
msdos_to_unix_filename(dirname, dir_length);
case EXTEND_HUMAN:
if (hdr->header_level == 2)
hdr->unix_last_modified_stamp = hdr->last_modified_stamp;
else
hdr->unix_last_modified_stamp =
generic_to_unix_stamp(hdr->last_modified_stamp);
break;
#ifdef OSK
case EXTEND_OS68K:
case EXTEND_XOSK:
#endif
case EXTEND_UNIX:
break;
case EXTEND_MACOS:
macos_to_unix_filename(hdr->name, name_length);
/* macos_to_unix_filename(dirname, dir_length); */
hdr->unix_last_modified_stamp =
generic_to_unix_stamp(hdr->last_modified_stamp);
break;
default:
generic_to_unix_filename(hdr->name, name_length);
generic_to_unix_filename(dirname, dir_length);
if (hdr->header_level == 2)
hdr->unix_last_modified_stamp = hdr->last_modified_stamp;
else
hdr->unix_last_modified_stamp =
generic_to_unix_stamp(hdr->last_modified_stamp);
}
if (dir_length) {
strcat(dirname, hdr->name);
strcpy(hdr->name, dirname);
name_length += dir_length;
}
return TRUE;
}
/* ------------------------------------------------------------------------ */
void
init_header(name, v_stat, hdr)
char *name;
struct stat *v_stat;
LzHeader *hdr;
{
int len;
if (compress_method == LZHUFF5_METHOD_NUM) /* Changed N.Watazaki */
bcopy(LZHUFF5_METHOD, hdr->method, METHOD_TYPE_STRAGE);
else if (compress_method)
bcopy(LZHUFF1_METHOD, hdr->method, METHOD_TYPE_STRAGE);
else
bcopy(LZHUFF0_METHOD, hdr->method, METHOD_TYPE_STRAGE);
hdr->packed_size = 0;
hdr->original_size = v_stat->st_size;
hdr->last_modified_stamp = unix_to_generic_stamp(v_stat->st_mtime);
hdr->attribute = GENERIC_ATTRIBUTE;
hdr->header_level = header_level;
strcpy(hdr->name, name);
len = strlen(name);
hdr->crc = 0x0000;
hdr->extend_type = EXTEND_UNIX;
hdr->unix_last_modified_stamp = v_stat->st_mtime;
/* since 00:00:00 JAN.1.1970 */
#ifdef NOT_COMPATIBLE_MODE
/* Please need your modification in this space. */
#else
hdr->unix_mode = v_stat->st_mode;
#endif
hdr->unix_uid = v_stat->st_uid;
hdr->unix_gid = v_stat->st_gid;
if (is_directory(v_stat)) {
bcopy(LZHDIRS_METHOD, hdr->method, METHOD_TYPE_STRAGE);
hdr->attribute = GENERIC_DIRECTORY_ATTRIBUTE;
hdr->original_size = 0;
if (len > 0 && hdr->name[len - 1] != '/')
strcpy(&hdr->name[len++], "/");
}
#ifdef S_IFLNK
if (is_symlink(v_stat)) {
char lkname[257];
int len;
bcopy(LZHDIRS_METHOD, hdr->method, METHOD_TYPE_STRAGE);
hdr->attribute = GENERIC_DIRECTORY_ATTRIBUTE;
hdr->original_size = 0;
len = readlink(name, lkname, 256);
lkname[len] = (char)'\0';
sprintf(hdr->name, "%s|%s", hdr->name, lkname);
}
#endif
if (generic_format)
unix_to_generic_filename(hdr->name, len);
}
/* ------------------------------------------------------------------------ */
/* Write unix extended header or generic header. */
void
write_header(nafp, hdr)
FILE *nafp;
LzHeader *hdr;
{
int header_size;
int name_length;
char data[LZHEADER_STRAGE];
char *p;
char *headercrc_ptr;
bzero(data, LZHEADER_STRAGE);
bcopy(hdr->method, data + I_METHOD, METHOD_TYPE_STRAGE);
setup_put(data + I_PACKED_SIZE);
put_longword(hdr->packed_size);
put_longword(hdr->original_size);
if (hdr->header_level == HEADER_LEVEL2)
put_longword((long) hdr->unix_last_modified_stamp);
else
put_longword(hdr->last_modified_stamp);
switch (hdr->header_level) {
case HEADER_LEVEL0:
put_byte(hdr->attribute);
break;
case HEADER_LEVEL1:
case HEADER_LEVEL2:
put_byte(0x20);
break;
}
put_byte(hdr->header_level);
convdelim(hdr->name, DELIM2);
if (hdr->header_level != HEADER_LEVEL2) {
if (p = (char *) rindex(hdr->name, DELIM2))
name_length = strlen(++p);
else
name_length = strlen(hdr->name);
put_byte(name_length);
bcopy(p ? p : hdr->name, data + I_NAME, name_length);
setup_put(data + I_NAME + name_length);
}
put_word(hdr->crc);
if (header_level == HEADER_LEVEL0) {
if (generic_format) {
header_size = I_GENERIC_HEADER_BOTTOM - 2 + name_length;
data[I_HEADER_SIZE] = header_size;
data[I_HEADER_CHECKSUM] = calc_sum(data + I_METHOD, header_size);
} else {
/* write old-style extend header */
put_byte(EXTEND_UNIX);
put_byte(CURRENT_UNIX_MINOR_VERSION);
put_longword((long) hdr->unix_last_modified_stamp);
put_word(hdr->unix_mode);
put_word(hdr->unix_uid);
put_word(hdr->unix_gid);
header_size = I_UNIX_EXTEND_BOTTOM - 2 + name_length;
data[I_HEADER_SIZE] = header_size;
data[I_HEADER_CHECKSUM] = calc_sum(data + I_METHOD, header_size);
}
} else {
/* write extend header. */
char *ptr;
if (generic_format)
put_byte(0x00);
else
put_byte(EXTEND_UNIX);
ptr = put_ptr;
if (hdr->header_level == HEADER_LEVEL2) {
/* write common header */
put_word(5);
put_byte(0x00);
headercrc_ptr = put_ptr;
put_word(0x0000);
}
if (generic_format) {
header_size = put_ptr - data; /* +2 for last 0x0000 */
} else {
put_word(5);
if (hdr->header_level == HEADER_LEVEL1)
header_size = put_ptr - data - 2;
put_byte(0x50); /* permission */
put_word(hdr->unix_mode);
put_word(7);
put_byte(0x51); /* gid and uid */
put_word(hdr->unix_gid);
put_word(hdr->unix_uid);
if (p = (char *) rindex(hdr->name, DELIM2)) {
int i;
name_length = p - hdr->name + 1;
put_word(name_length + 3);
put_byte(2); /* dirname */
for (i = 0; i < name_length; i++)
put_byte(hdr->name[i]);
}
} /* if generic .. */
if (header_level != HEADER_LEVEL2) {
if (!generic_format) {
put_word(7);
put_byte(0x54); /* time stamp */
put_longword(hdr->unix_last_modified_stamp);
}
hdr->packed_size += put_ptr - ptr;
ptr = put_ptr;
setup_put(data + I_PACKED_SIZE);
put_longword(hdr->packed_size);
put_ptr = ptr;
data[I_HEADER_SIZE] = header_size;
data[I_HEADER_CHECKSUM] = calc_sum(data + I_METHOD, header_size);
} else { /* header level 2 */
int i;
if (p = (char *) rindex(hdr->name, DELIM2))
name_length = strlen(++p);
else {
p = hdr->name;
name_length = strlen(hdr->name);
}
put_word(name_length + 3);
put_byte(1); /* filename */
for (i = 0; i < name_length; i++)
put_byte(*p++);
} /* if he.. != HEAD_LV2 */
header_size = put_ptr - data;
}
if (header_level == HEADER_LEVEL2) {
unsigned short hcrc;
setup_put(data + I_HEADER_SIZE);
put_word(header_size + 2);
/* common header */
hcrc = calc_header_crc(data, (unsigned int) header_size + 2);
setup_put(headercrc_ptr);
put_word(hcrc);
}
if (fwrite(data, sizeof(char), header_size + 2, nafp) == 0)
fatal_error("Cannot write to temporary file");
convdelim(hdr->name, DELIM);
}
/* Local Variables: */
/* mode:c */
/* tab-width:4 */
/* compile-command:"gcc -c header.c" */
/* End: */
|