libarchive-static 1.0.6 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ext/extconf.rb +2 -9
- data/ext/libarchive-0.1.1/ext/archive_read_support_compression.c +6 -6
- data/ext/libarchive-0.1.1/ext/archive_read_support_compression.o +0 -0
- data/ext/libarchive-0.1.1/ext/archive_read_support_format.o +0 -0
- data/ext/libarchive-0.1.1/ext/archive_write_open_rb_str.c +1 -1
- data/ext/libarchive-0.1.1/ext/archive_write_open_rb_str.o +0 -0
- data/ext/libarchive-0.1.1/ext/archive_write_set_compression.c +5 -5
- data/ext/libarchive-0.1.1/ext/archive_write_set_compression.o +0 -0
- data/ext/libarchive-0.1.1/ext/config.h +23 -0
- data/ext/libarchive-0.1.1/ext/config.log +230 -0
- data/ext/libarchive-0.1.1/ext/config.status +671 -0
- data/ext/libarchive-0.1.1/ext/libarchive.c +1 -1
- data/ext/libarchive-0.1.1/ext/libarchive.o +0 -0
- data/ext/libarchive-0.1.1/ext/libarchive_archive.c +7 -7
- data/ext/libarchive-0.1.1/ext/libarchive_archive.o +0 -0
- data/ext/libarchive-0.1.1/ext/libarchive_entry.c +6 -0
- data/ext/libarchive-0.1.1/ext/libarchive_entry.o +0 -0
- data/ext/libarchive-0.1.1/ext/libarchive_reader.c +6 -4
- data/ext/libarchive-0.1.1/ext/libarchive_reader.o +0 -0
- data/ext/libarchive-0.1.1/ext/libarchive_ruby.so +0 -0
- data/ext/libarchive-0.1.1/ext/libarchive_win32.h +1 -1
- data/ext/libarchive-0.1.1/ext/libarchive_writer.c +2 -2
- data/ext/libarchive-0.1.1/ext/libarchive_writer.o +0 -0
- data/ext/libarchive-3.6.2/Makefile.in +16892 -0
- data/ext/libarchive-3.6.2/build/autoconf/ax_append_compile_flags.m4 +67 -0
- data/ext/libarchive-3.6.2/build/autoconf/ax_append_flag.m4 +71 -0
- data/ext/libarchive-3.6.2/build/autoconf/ax_check_compile_flag.m4 +74 -0
- data/ext/libarchive-3.6.2/build/autoconf/ax_require_defined.m4 +37 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/build/autoconf/check_stdcall_func.m4 +0 -0
- data/ext/libarchive-3.6.2/build/autoconf/compile +348 -0
- data/ext/libarchive-3.6.2/build/autoconf/config.guess +1754 -0
- data/ext/libarchive-3.6.2/build/autoconf/config.rpath +696 -0
- data/ext/libarchive-3.6.2/build/autoconf/config.sub +1890 -0
- data/ext/libarchive-3.6.2/build/autoconf/depcomp +791 -0
- data/ext/libarchive-3.6.2/build/autoconf/iconv.m4 +271 -0
- data/ext/libarchive-3.6.2/build/autoconf/install-sh +541 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/build/autoconf/la_uid_t.m4 +0 -0
- data/ext/libarchive-3.6.2/build/autoconf/lib-ld.m4 +109 -0
- data/ext/libarchive-3.6.2/build/autoconf/lib-link.m4 +777 -0
- data/ext/libarchive-3.6.2/build/autoconf/lib-prefix.m4 +224 -0
- data/ext/libarchive-3.6.2/build/autoconf/ltmain.sh +11251 -0
- data/ext/libarchive-3.6.2/build/autoconf/m4_ax_compile_check_sizeof.m4 +115 -0
- data/ext/libarchive-3.6.2/build/autoconf/missing +215 -0
- data/ext/libarchive-3.6.2/build/autoconf/test-driver +153 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/build/pkgconfig/libarchive.pc.in +4 -1
- data/ext/libarchive-3.6.2/config.h.in +1504 -0
- data/ext/libarchive-3.6.2/configure +25558 -0
- data/ext/libarchive-3.6.2/libarchive/archive.h +1212 -0
- data/ext/libarchive-3.6.2/libarchive/archive_acl.c +2097 -0
- data/ext/libarchive-3.6.2/libarchive/archive_acl_private.h +83 -0
- data/ext/libarchive-3.6.2/libarchive/archive_blake2.h +197 -0
- data/ext/libarchive-3.6.2/libarchive/archive_blake2_impl.h +161 -0
- data/ext/libarchive-3.6.2/libarchive/archive_blake2s_ref.c +369 -0
- data/ext/libarchive-3.6.2/libarchive/archive_blake2sp_ref.c +361 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_check_magic.c +63 -22
- data/ext/libarchive-3.6.2/libarchive/archive_cmdline.c +227 -0
- data/ext/libarchive-3.6.2/libarchive/archive_cmdline_private.h +47 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_crc32.h +17 -0
- data/ext/libarchive-3.6.2/libarchive/archive_cryptor.c +534 -0
- data/ext/libarchive-3.6.2/libarchive/archive_cryptor_private.h +188 -0
- data/ext/libarchive-3.6.2/libarchive/archive_digest.c +1505 -0
- data/ext/libarchive-3.6.2/libarchive/archive_digest_private.h +416 -0
- data/ext/libarchive-3.6.2/libarchive/archive_disk_acl_darwin.c +559 -0
- data/ext/libarchive-3.6.2/libarchive/archive_disk_acl_freebsd.c +712 -0
- data/ext/libarchive-3.6.2/libarchive/archive_disk_acl_linux.c +760 -0
- data/ext/libarchive-3.6.2/libarchive/archive_disk_acl_sunos.c +824 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_endian.h +48 -15
- data/ext/libarchive-3.6.2/libarchive/archive_entry.c +2149 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry.h +305 -106
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_copy_bhfi.c +5 -4
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_copy_stat.c +9 -3
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_link_resolver.c +104 -62
- data/ext/libarchive-3.6.2/libarchive/archive_entry_locale.h +92 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_private.h +65 -49
- data/ext/libarchive-3.6.2/libarchive/archive_entry_sparse.c +156 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_stat.c +6 -6
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_strmode.c +1 -1
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_xattr.c +4 -6
- data/ext/libarchive-3.6.2/libarchive/archive_getdate.c +1165 -0
- data/ext/libarchive-3.6.2/libarchive/archive_getdate.h +39 -0
- data/ext/libarchive-3.6.2/libarchive/archive_hmac.c +334 -0
- data/ext/libarchive-3.6.2/libarchive/archive_hmac_private.h +117 -0
- data/ext/libarchive-3.6.2/libarchive/archive_match.c +1875 -0
- data/ext/libarchive-3.6.2/libarchive/archive_openssl_evp_private.h +53 -0
- data/ext/libarchive-3.6.2/libarchive/archive_openssl_hmac_private.h +54 -0
- data/ext/libarchive-3.6.2/libarchive/archive_options.c +218 -0
- data/ext/libarchive-3.6.2/libarchive/archive_options_private.h +51 -0
- data/ext/libarchive-3.6.2/libarchive/archive_pack_dev.c +337 -0
- data/ext/libarchive-3.6.2/libarchive/archive_pack_dev.h +49 -0
- data/ext/libarchive-3.6.2/libarchive/archive_pathmatch.c +463 -0
- data/ext/libarchive-3.6.2/libarchive/archive_pathmatch.h +52 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_platform.h +77 -9
- data/ext/libarchive-3.6.2/libarchive/archive_platform_acl.h +55 -0
- data/ext/libarchive-3.6.2/libarchive/archive_platform_xattr.h +47 -0
- data/ext/libarchive-3.6.2/libarchive/archive_ppmd7.c +1168 -0
- data/ext/libarchive-3.6.2/libarchive/archive_ppmd7_private.h +119 -0
- data/ext/libarchive-3.6.2/libarchive/archive_ppmd8.c +1287 -0
- data/ext/libarchive-3.6.2/libarchive/archive_ppmd8_private.h +148 -0
- data/ext/libarchive-3.6.2/libarchive/archive_ppmd_private.h +151 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_private.h +74 -18
- data/ext/libarchive-3.6.2/libarchive/archive_random.c +272 -0
- data/ext/libarchive-3.6.2/libarchive/archive_random_private.h +36 -0
- data/ext/libarchive-3.6.2/libarchive/archive_rb.c +709 -0
- data/ext/libarchive-3.6.2/libarchive/archive_rb.h +113 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read.c +1756 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_add_passphrase.c +190 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_append_filter.c +204 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_data_into_fd.c +64 -18
- data/ext/libarchive-3.6.2/libarchive/archive_read_disk_entry_from_file.c +1086 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_disk_posix.c +2732 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_disk_private.h +40 -4
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_disk_set_standard_lookup.c +21 -11
- data/ext/libarchive-3.6.2/libarchive/archive_read_disk_windows.c +2479 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_extract.c +60 -0
- data/ext/{libarchive-2.8.4/libarchive/archive_read_extract.c → libarchive-3.6.2/libarchive/archive_read_extract2.c} +34 -61
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_open_fd.c +70 -49
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_open_file.c +38 -23
- data/ext/libarchive-3.6.2/libarchive/archive_read_open_filename.c +586 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_open_memory.c +58 -28
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_private.h +127 -59
- data/ext/libarchive-3.6.2/libarchive/archive_read_set_format.c +117 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_set_options.c +133 -0
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_all.c → libarchive-3.6.2/libarchive/archive_read_support_filter_all.c} +35 -10
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_by_code.c +83 -0
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_bzip2.c → libarchive-3.6.2/libarchive/archive_read_support_filter_bzip2.c} +38 -26
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_compress.c → libarchive-3.6.2/libarchive/archive_read_support_filter_compress.c} +52 -44
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_grzip.c +112 -0
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_gzip.c → libarchive-3.6.2/libarchive/archive_read_support_filter_gzip.c} +108 -37
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_lrzip.c +122 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_lz4.c +742 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_lzop.c +499 -0
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_none.c → libarchive-3.6.2/libarchive/archive_read_support_filter_none.c} +15 -3
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_program.c → libarchive-3.6.2/libarchive/archive_read_support_filter_program.c} +114 -77
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_rpm.c → libarchive-3.6.2/libarchive/archive_read_support_filter_rpm.c} +31 -31
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_uu.c → libarchive-3.6.2/libarchive/archive_read_support_filter_uu.c} +141 -85
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_xz.c → libarchive-3.6.2/libarchive/archive_read_support_filter_xz.c} +369 -284
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_zstd.c +297 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_7zip.c +3900 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_all.c +89 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_ar.c +126 -72
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_by_code.c +92 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_cab.c +3228 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_cpio.c +1104 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_empty.c +14 -11
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_iso9660.c +990 -541
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_lha.c +2916 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_mtree.c +2150 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_rar.c +3797 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_rar5.c +4251 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_raw.c +38 -31
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_tar.c +1157 -629
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_warc.c +848 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_xar.c +439 -258
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_zip.c +4270 -0
- data/ext/libarchive-3.6.2/libarchive/archive_string.c +4240 -0
- data/ext/libarchive-3.6.2/libarchive/archive_string.h +243 -0
- data/ext/libarchive-3.6.2/libarchive/archive_string_composition.h +2292 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_string_sprintf.c +44 -16
- data/ext/libarchive-3.6.2/libarchive/archive_util.c +655 -0
- data/ext/libarchive-3.6.2/libarchive/archive_version_details.c +151 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_virtual.c +85 -16
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_windows.c +214 -541
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_windows.h +74 -106
- data/ext/libarchive-3.6.2/libarchive/archive_write.c +828 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter.c +72 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_b64encode.c +304 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_by_name.c +77 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_bzip2.c +401 -0
- data/ext/{libarchive-2.8.4/libarchive/archive_write_set_compression_compress.c → libarchive-3.6.2/libarchive/archive_write_add_filter_compress.c} +86 -131
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_grzip.c +135 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_gzip.c +442 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_lrzip.c +197 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_lz4.c +700 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_lzop.c +478 -0
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_format_all.c → libarchive-3.6.2/libarchive/archive_write_add_filter_none.c} +11 -11
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_program.c +391 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_uuencode.c +295 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_xz.c +545 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_zstd.c +418 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_disk_posix.c +4711 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_disk_private.h +9 -2
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_disk_set_standard_lookup.c +30 -29
- data/ext/libarchive-3.6.2/libarchive/archive_write_disk_windows.c +2842 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_open_fd.c +15 -10
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_open_file.c +15 -9
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_open_filename.c +128 -20
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_open_memory.c +7 -18
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_private.h +72 -29
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format.c +56 -3
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_7zip.c +2322 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format_ar.c +54 -34
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format_by_name.c +20 -2
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_cpio.c +11 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_cpio_binary.c +610 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_cpio_newc.c +457 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_cpio_odc.c +500 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_filter_by_ext.c +142 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_gnutar.c +755 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_iso9660.c +8165 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_mtree.c +2217 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format_pax.c +1049 -387
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_private.h +42 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_raw.c +125 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format_shar.c +62 -47
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format_ustar.c +279 -108
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_v7tar.c +638 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_warc.c +453 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_xar.c +3259 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_zip.c +1704 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_options.c +130 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_passphrase.c +95 -0
- data/ext/libarchive-3.6.2/libarchive/archive_xxhash.h +48 -0
- data/ext/libarchive-3.6.2/libarchive/config_freebsd.h +271 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/filter_fork.h +10 -5
- data/ext/{libarchive-2.8.4/libarchive/filter_fork.c → libarchive-3.6.2/libarchive/filter_fork_posix.c} +98 -19
- data/ext/libarchive-3.6.2/libarchive/filter_fork_windows.c +236 -0
- data/ext/libarchive-3.6.2/libarchive/xxhash.c +525 -0
- data/ext/libarchive-static-makefile +144 -80
- data/ext/libarchive-static-wrapper-makefile +1 -1
- data/ext/zlib-1.2.13/Makefile.in +404 -0
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/adler32.c +51 -34
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/compress.c +27 -21
- data/ext/zlib-1.2.13/configure +922 -0
- data/ext/zlib-1.2.13/crc32.c +1125 -0
- data/ext/zlib-1.2.13/crc32.h +9446 -0
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/deflate.c +842 -459
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/deflate.h +37 -33
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/gzclose.c +0 -0
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/gzguts.h +103 -16
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/gzlib.c +155 -53
- data/ext/zlib-1.2.13/gzread.c +650 -0
- data/ext/zlib-1.2.13/gzwrite.c +677 -0
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/infback.c +24 -12
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/inffast.c +49 -66
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/inffast.h +0 -0
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/inffixed.h +3 -3
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/inflate.c +209 -94
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/inflate.h +9 -5
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/inftrees.c +24 -50
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/inftrees.h +1 -1
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/trees.c +135 -198
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/trees.h +0 -0
- data/ext/zlib-1.2.13/uncompr.c +93 -0
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/zconf.h +182 -63
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/zlib.h +617 -295
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/zutil.c +50 -41
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/zutil.h +83 -82
- metadata +241 -133
- data/ext/libarchive-0.1.1/libarchive.c +0 -1762
- data/ext/libarchive-2.8.4/Makefile.in +0 -7076
- data/ext/libarchive-2.8.4/build/autoconf/compile +0 -143
- data/ext/libarchive-2.8.4/build/autoconf/config.guess +0 -1502
- data/ext/libarchive-2.8.4/build/autoconf/config.sub +0 -1708
- data/ext/libarchive-2.8.4/build/autoconf/depcomp +0 -630
- data/ext/libarchive-2.8.4/build/autoconf/install-sh +0 -291
- data/ext/libarchive-2.8.4/build/autoconf/ltmain.sh +0 -8406
- data/ext/libarchive-2.8.4/build/autoconf/missing +0 -376
- data/ext/libarchive-2.8.4/config.h.in +0 -772
- data/ext/libarchive-2.8.4/configure +0 -17916
- data/ext/libarchive-2.8.4/libarchive/archive.h +0 -741
- data/ext/libarchive-2.8.4/libarchive/archive_entry.c +0 -2202
- data/ext/libarchive-2.8.4/libarchive/archive_hash.h +0 -281
- data/ext/libarchive-2.8.4/libarchive/archive_read.c +0 -1249
- data/ext/libarchive-2.8.4/libarchive/archive_read_disk.c +0 -198
- data/ext/libarchive-2.8.4/libarchive/archive_read_disk_entry_from_file.c +0 -570
- data/ext/libarchive-2.8.4/libarchive/archive_read_open_filename.c +0 -272
- data/ext/libarchive-2.8.4/libarchive/archive_read_support_format_cpio.c +0 -777
- data/ext/libarchive-2.8.4/libarchive/archive_read_support_format_mtree.c +0 -1304
- data/ext/libarchive-2.8.4/libarchive/archive_read_support_format_zip.c +0 -903
- data/ext/libarchive-2.8.4/libarchive/archive_string.c +0 -453
- data/ext/libarchive-2.8.4/libarchive/archive_string.h +0 -148
- data/ext/libarchive-2.8.4/libarchive/archive_util.c +0 -391
- data/ext/libarchive-2.8.4/libarchive/archive_write.c +0 -466
- data/ext/libarchive-2.8.4/libarchive/archive_write_disk.c +0 -2628
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_bzip2.c +0 -408
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_gzip.c +0 -477
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_none.c +0 -257
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_program.c +0 -347
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_xz.c +0 -438
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_cpio.c +0 -344
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_cpio_newc.c +0 -295
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_mtree.c +0 -1050
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_zip.c +0 -667
- data/ext/libarchive-2.8.4/libarchive/config_freebsd.h +0 -154
- data/ext/libarchive-2.8.4/libarchive/filter_fork_windows.c +0 -113
- data/ext/zlib-1.2.5/Makefile.in +0 -257
- data/ext/zlib-1.2.5/configure +0 -596
- data/ext/zlib-1.2.5/crc32.c +0 -442
- data/ext/zlib-1.2.5/crc32.h +0 -441
- data/ext/zlib-1.2.5/example.c +0 -565
- data/ext/zlib-1.2.5/gzread.c +0 -653
- data/ext/zlib-1.2.5/gzwrite.c +0 -531
- data/ext/zlib-1.2.5/minigzip.c +0 -440
- data/ext/zlib-1.2.5/uncompr.c +0 -59
|
@@ -0,0 +1,457 @@
|
|
|
1
|
+
/*-
|
|
2
|
+
* Copyright (c) 2003-2007 Tim Kientzle
|
|
3
|
+
* Copyright (c) 2006 Rudolf Marek SYSGO s.r.o.
|
|
4
|
+
* Copyright (c) 2011-2012 Michihiro NAKAJIMA
|
|
5
|
+
* All rights reserved.
|
|
6
|
+
*
|
|
7
|
+
* Redistribution and use in source and binary forms, with or without
|
|
8
|
+
* modification, are permitted provided that the following conditions
|
|
9
|
+
* are met:
|
|
10
|
+
* 1. Redistributions of source code must retain the above copyright
|
|
11
|
+
* notice, this list of conditions and the following disclaimer.
|
|
12
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
|
13
|
+
* notice, this list of conditions and the following disclaimer in the
|
|
14
|
+
* documentation and/or other materials provided with the distribution.
|
|
15
|
+
*
|
|
16
|
+
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
|
|
17
|
+
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
18
|
+
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
19
|
+
* IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
20
|
+
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
21
|
+
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
22
|
+
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
23
|
+
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
24
|
+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
25
|
+
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
26
|
+
*/
|
|
27
|
+
|
|
28
|
+
#include "archive_platform.h"
|
|
29
|
+
__FBSDID("$FreeBSD: head/lib/libarchive/archive_write_set_format_cpio_newc.c 201160 2009-12-29 05:41:57Z kientzle $");
|
|
30
|
+
|
|
31
|
+
#ifdef HAVE_ERRNO_H
|
|
32
|
+
#include <errno.h>
|
|
33
|
+
#endif
|
|
34
|
+
#include <stdio.h>
|
|
35
|
+
#ifdef HAVE_STDLIB_H
|
|
36
|
+
#include <stdlib.h>
|
|
37
|
+
#endif
|
|
38
|
+
#ifdef HAVE_STRING_H
|
|
39
|
+
#include <string.h>
|
|
40
|
+
#endif
|
|
41
|
+
|
|
42
|
+
#include "archive.h"
|
|
43
|
+
#include "archive_entry.h"
|
|
44
|
+
#include "archive_entry_locale.h"
|
|
45
|
+
#include "archive_private.h"
|
|
46
|
+
#include "archive_write_private.h"
|
|
47
|
+
#include "archive_write_set_format_private.h"
|
|
48
|
+
|
|
49
|
+
static ssize_t archive_write_newc_data(struct archive_write *,
|
|
50
|
+
const void *buff, size_t s);
|
|
51
|
+
static int archive_write_newc_close(struct archive_write *);
|
|
52
|
+
static int archive_write_newc_free(struct archive_write *);
|
|
53
|
+
static int archive_write_newc_finish_entry(struct archive_write *);
|
|
54
|
+
static int archive_write_newc_header(struct archive_write *,
|
|
55
|
+
struct archive_entry *);
|
|
56
|
+
static int archive_write_newc_options(struct archive_write *,
|
|
57
|
+
const char *, const char *);
|
|
58
|
+
static int format_hex(int64_t, void *, int);
|
|
59
|
+
static int64_t format_hex_recursive(int64_t, char *, int);
|
|
60
|
+
static int write_header(struct archive_write *, struct archive_entry *);
|
|
61
|
+
|
|
62
|
+
struct cpio {
|
|
63
|
+
uint64_t entry_bytes_remaining;
|
|
64
|
+
int padding;
|
|
65
|
+
|
|
66
|
+
struct archive_string_conv *opt_sconv;
|
|
67
|
+
struct archive_string_conv *sconv_default;
|
|
68
|
+
int init_default_conversion;
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
#define c_magic_offset 0
|
|
72
|
+
#define c_magic_size 6
|
|
73
|
+
#define c_ino_offset 6
|
|
74
|
+
#define c_ino_size 8
|
|
75
|
+
#define c_mode_offset 14
|
|
76
|
+
#define c_mode_size 8
|
|
77
|
+
#define c_uid_offset 22
|
|
78
|
+
#define c_uid_size 8
|
|
79
|
+
#define c_gid_offset 30
|
|
80
|
+
#define c_gid_size 8
|
|
81
|
+
#define c_nlink_offset 38
|
|
82
|
+
#define c_nlink_size 8
|
|
83
|
+
#define c_mtime_offset 46
|
|
84
|
+
#define c_mtime_size 8
|
|
85
|
+
#define c_filesize_offset 54
|
|
86
|
+
#define c_filesize_size 8
|
|
87
|
+
#define c_devmajor_offset 62
|
|
88
|
+
#define c_devmajor_size 8
|
|
89
|
+
#define c_devminor_offset 70
|
|
90
|
+
#define c_devminor_size 8
|
|
91
|
+
#define c_rdevmajor_offset 78
|
|
92
|
+
#define c_rdevmajor_size 8
|
|
93
|
+
#define c_rdevminor_offset 86
|
|
94
|
+
#define c_rdevminor_size 8
|
|
95
|
+
#define c_namesize_offset 94
|
|
96
|
+
#define c_namesize_size 8
|
|
97
|
+
#define c_checksum_offset 102
|
|
98
|
+
#define c_checksum_size 8
|
|
99
|
+
#define c_header_size 110
|
|
100
|
+
|
|
101
|
+
/* Logic trick: difference between 'n' and next multiple of 4 */
|
|
102
|
+
#define PAD4(n) (3 & (1 + ~(n)))
|
|
103
|
+
|
|
104
|
+
/*
|
|
105
|
+
* Set output format to 'cpio' format.
|
|
106
|
+
*/
|
|
107
|
+
int
|
|
108
|
+
archive_write_set_format_cpio_newc(struct archive *_a)
|
|
109
|
+
{
|
|
110
|
+
struct archive_write *a = (struct archive_write *)_a;
|
|
111
|
+
struct cpio *cpio;
|
|
112
|
+
|
|
113
|
+
archive_check_magic(_a, ARCHIVE_WRITE_MAGIC,
|
|
114
|
+
ARCHIVE_STATE_NEW, "archive_write_set_format_cpio_newc");
|
|
115
|
+
|
|
116
|
+
/* If someone else was already registered, unregister them. */
|
|
117
|
+
if (a->format_free != NULL)
|
|
118
|
+
(a->format_free)(a);
|
|
119
|
+
|
|
120
|
+
cpio = (struct cpio *)calloc(1, sizeof(*cpio));
|
|
121
|
+
if (cpio == NULL) {
|
|
122
|
+
archive_set_error(&a->archive, ENOMEM, "Can't allocate cpio data");
|
|
123
|
+
return (ARCHIVE_FATAL);
|
|
124
|
+
}
|
|
125
|
+
a->format_data = cpio;
|
|
126
|
+
a->format_name = "cpio";
|
|
127
|
+
a->format_options = archive_write_newc_options;
|
|
128
|
+
a->format_write_header = archive_write_newc_header;
|
|
129
|
+
a->format_write_data = archive_write_newc_data;
|
|
130
|
+
a->format_finish_entry = archive_write_newc_finish_entry;
|
|
131
|
+
a->format_close = archive_write_newc_close;
|
|
132
|
+
a->format_free = archive_write_newc_free;
|
|
133
|
+
a->archive.archive_format = ARCHIVE_FORMAT_CPIO_SVR4_NOCRC;
|
|
134
|
+
a->archive.archive_format_name = "SVR4 cpio nocrc";
|
|
135
|
+
return (ARCHIVE_OK);
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
static int
|
|
139
|
+
archive_write_newc_options(struct archive_write *a, const char *key,
|
|
140
|
+
const char *val)
|
|
141
|
+
{
|
|
142
|
+
struct cpio *cpio = (struct cpio *)a->format_data;
|
|
143
|
+
int ret = ARCHIVE_FAILED;
|
|
144
|
+
|
|
145
|
+
if (strcmp(key, "hdrcharset") == 0) {
|
|
146
|
+
if (val == NULL || val[0] == 0)
|
|
147
|
+
archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC,
|
|
148
|
+
"%s: hdrcharset option needs a character-set name",
|
|
149
|
+
a->format_name);
|
|
150
|
+
else {
|
|
151
|
+
cpio->opt_sconv = archive_string_conversion_to_charset(
|
|
152
|
+
&a->archive, val, 0);
|
|
153
|
+
if (cpio->opt_sconv != NULL)
|
|
154
|
+
ret = ARCHIVE_OK;
|
|
155
|
+
else
|
|
156
|
+
ret = ARCHIVE_FATAL;
|
|
157
|
+
}
|
|
158
|
+
return (ret);
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
/* Note: The "warn" return is just to inform the options
|
|
162
|
+
* supervisor that we didn't handle it. It will generate
|
|
163
|
+
* a suitable error if no one used this option. */
|
|
164
|
+
return (ARCHIVE_WARN);
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
static struct archive_string_conv *
|
|
168
|
+
get_sconv(struct archive_write *a)
|
|
169
|
+
{
|
|
170
|
+
struct cpio *cpio;
|
|
171
|
+
struct archive_string_conv *sconv;
|
|
172
|
+
|
|
173
|
+
cpio = (struct cpio *)a->format_data;
|
|
174
|
+
sconv = cpio->opt_sconv;
|
|
175
|
+
if (sconv == NULL) {
|
|
176
|
+
if (!cpio->init_default_conversion) {
|
|
177
|
+
cpio->sconv_default =
|
|
178
|
+
archive_string_default_conversion_for_write(
|
|
179
|
+
&(a->archive));
|
|
180
|
+
cpio->init_default_conversion = 1;
|
|
181
|
+
}
|
|
182
|
+
sconv = cpio->sconv_default;
|
|
183
|
+
}
|
|
184
|
+
return (sconv);
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
static int
|
|
188
|
+
archive_write_newc_header(struct archive_write *a, struct archive_entry *entry)
|
|
189
|
+
{
|
|
190
|
+
const char *path;
|
|
191
|
+
size_t len;
|
|
192
|
+
|
|
193
|
+
if (archive_entry_filetype(entry) == 0 && archive_entry_hardlink(entry) == NULL) {
|
|
194
|
+
archive_set_error(&a->archive, -1, "Filetype required");
|
|
195
|
+
return (ARCHIVE_FAILED);
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
if (archive_entry_pathname_l(entry, &path, &len, get_sconv(a)) != 0
|
|
199
|
+
&& errno == ENOMEM) {
|
|
200
|
+
archive_set_error(&a->archive, ENOMEM,
|
|
201
|
+
"Can't allocate memory for Pathname");
|
|
202
|
+
return (ARCHIVE_FATAL);
|
|
203
|
+
}
|
|
204
|
+
if (len == 0 || path == NULL || path[0] == '\0') {
|
|
205
|
+
archive_set_error(&a->archive, -1, "Pathname required");
|
|
206
|
+
return (ARCHIVE_FAILED);
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
if (archive_entry_hardlink(entry) == NULL
|
|
210
|
+
&& (!archive_entry_size_is_set(entry) || archive_entry_size(entry) < 0)) {
|
|
211
|
+
archive_set_error(&a->archive, -1, "Size required");
|
|
212
|
+
return (ARCHIVE_FAILED);
|
|
213
|
+
}
|
|
214
|
+
return write_header(a, entry);
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
static int
|
|
218
|
+
write_header(struct archive_write *a, struct archive_entry *entry)
|
|
219
|
+
{
|
|
220
|
+
int64_t ino;
|
|
221
|
+
struct cpio *cpio;
|
|
222
|
+
const char *p, *path;
|
|
223
|
+
int pathlength, ret, ret_final;
|
|
224
|
+
char h[c_header_size];
|
|
225
|
+
struct archive_string_conv *sconv;
|
|
226
|
+
struct archive_entry *entry_main;
|
|
227
|
+
size_t len;
|
|
228
|
+
int pad;
|
|
229
|
+
|
|
230
|
+
cpio = (struct cpio *)a->format_data;
|
|
231
|
+
ret_final = ARCHIVE_OK;
|
|
232
|
+
sconv = get_sconv(a);
|
|
233
|
+
|
|
234
|
+
#if defined(_WIN32) && !defined(__CYGWIN__)
|
|
235
|
+
/* Make sure the path separators in pathname, hardlink and symlink
|
|
236
|
+
* are all slash '/', not the Windows path separator '\'. */
|
|
237
|
+
entry_main = __la_win_entry_in_posix_pathseparator(entry);
|
|
238
|
+
if (entry_main == NULL) {
|
|
239
|
+
archive_set_error(&a->archive, ENOMEM,
|
|
240
|
+
"Can't allocate ustar data");
|
|
241
|
+
return(ARCHIVE_FATAL);
|
|
242
|
+
}
|
|
243
|
+
if (entry != entry_main)
|
|
244
|
+
entry = entry_main;
|
|
245
|
+
else
|
|
246
|
+
entry_main = NULL;
|
|
247
|
+
#else
|
|
248
|
+
entry_main = NULL;
|
|
249
|
+
#endif
|
|
250
|
+
|
|
251
|
+
ret = archive_entry_pathname_l(entry, &path, &len, sconv);
|
|
252
|
+
if (ret != 0) {
|
|
253
|
+
if (errno == ENOMEM) {
|
|
254
|
+
archive_set_error(&a->archive, ENOMEM,
|
|
255
|
+
"Can't allocate memory for Pathname");
|
|
256
|
+
ret_final = ARCHIVE_FATAL;
|
|
257
|
+
goto exit_write_header;
|
|
258
|
+
}
|
|
259
|
+
archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
|
|
260
|
+
"Can't translate pathname '%s' to %s",
|
|
261
|
+
archive_entry_pathname(entry),
|
|
262
|
+
archive_string_conversion_charset_name(sconv));
|
|
263
|
+
ret_final = ARCHIVE_WARN;
|
|
264
|
+
}
|
|
265
|
+
pathlength = (int)len + 1; /* Include trailing null. */
|
|
266
|
+
|
|
267
|
+
memset(h, 0, c_header_size);
|
|
268
|
+
format_hex(0x070701, h + c_magic_offset, c_magic_size);
|
|
269
|
+
format_hex(archive_entry_devmajor(entry), h + c_devmajor_offset,
|
|
270
|
+
c_devmajor_size);
|
|
271
|
+
format_hex(archive_entry_devminor(entry), h + c_devminor_offset,
|
|
272
|
+
c_devminor_size);
|
|
273
|
+
|
|
274
|
+
ino = archive_entry_ino64(entry);
|
|
275
|
+
if (ino > 0xffffffff) {
|
|
276
|
+
archive_set_error(&a->archive, ERANGE,
|
|
277
|
+
"large inode number truncated");
|
|
278
|
+
ret_final = ARCHIVE_WARN;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
/* TODO: Set ret_final to ARCHIVE_WARN if any of these overflow. */
|
|
282
|
+
format_hex(ino & 0xffffffff, h + c_ino_offset, c_ino_size);
|
|
283
|
+
format_hex(archive_entry_mode(entry), h + c_mode_offset, c_mode_size);
|
|
284
|
+
format_hex(archive_entry_uid(entry), h + c_uid_offset, c_uid_size);
|
|
285
|
+
format_hex(archive_entry_gid(entry), h + c_gid_offset, c_gid_size);
|
|
286
|
+
format_hex(archive_entry_nlink(entry), h + c_nlink_offset, c_nlink_size);
|
|
287
|
+
if (archive_entry_filetype(entry) == AE_IFBLK
|
|
288
|
+
|| archive_entry_filetype(entry) == AE_IFCHR) {
|
|
289
|
+
format_hex(archive_entry_rdevmajor(entry), h + c_rdevmajor_offset, c_rdevmajor_size);
|
|
290
|
+
format_hex(archive_entry_rdevminor(entry), h + c_rdevminor_offset, c_rdevminor_size);
|
|
291
|
+
} else {
|
|
292
|
+
format_hex(0, h + c_rdevmajor_offset, c_rdevmajor_size);
|
|
293
|
+
format_hex(0, h + c_rdevminor_offset, c_rdevminor_size);
|
|
294
|
+
}
|
|
295
|
+
format_hex(archive_entry_mtime(entry), h + c_mtime_offset, c_mtime_size);
|
|
296
|
+
format_hex(pathlength, h + c_namesize_offset, c_namesize_size);
|
|
297
|
+
format_hex(0, h + c_checksum_offset, c_checksum_size);
|
|
298
|
+
|
|
299
|
+
/* Non-regular files don't store bodies. */
|
|
300
|
+
if (archive_entry_filetype(entry) != AE_IFREG)
|
|
301
|
+
archive_entry_set_size(entry, 0);
|
|
302
|
+
|
|
303
|
+
/* Symlinks get the link written as the body of the entry. */
|
|
304
|
+
ret = archive_entry_symlink_l(entry, &p, &len, sconv);
|
|
305
|
+
if (ret != 0) {
|
|
306
|
+
if (errno == ENOMEM) {
|
|
307
|
+
archive_set_error(&a->archive, ENOMEM,
|
|
308
|
+
"Can't allocate memory for Likname");
|
|
309
|
+
ret_final = ARCHIVE_FATAL;
|
|
310
|
+
goto exit_write_header;
|
|
311
|
+
}
|
|
312
|
+
archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
|
|
313
|
+
"Can't translate linkname '%s' to %s",
|
|
314
|
+
archive_entry_symlink(entry),
|
|
315
|
+
archive_string_conversion_charset_name(sconv));
|
|
316
|
+
ret_final = ARCHIVE_WARN;
|
|
317
|
+
}
|
|
318
|
+
if (len > 0 && p != NULL && *p != '\0')
|
|
319
|
+
ret = format_hex(strlen(p), h + c_filesize_offset,
|
|
320
|
+
c_filesize_size);
|
|
321
|
+
else
|
|
322
|
+
ret = format_hex(archive_entry_size(entry),
|
|
323
|
+
h + c_filesize_offset, c_filesize_size);
|
|
324
|
+
if (ret) {
|
|
325
|
+
archive_set_error(&a->archive, ERANGE,
|
|
326
|
+
"File is too large for this format.");
|
|
327
|
+
ret_final = ARCHIVE_FAILED;
|
|
328
|
+
goto exit_write_header;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
ret = __archive_write_output(a, h, c_header_size);
|
|
332
|
+
if (ret != ARCHIVE_OK) {
|
|
333
|
+
ret_final = ARCHIVE_FATAL;
|
|
334
|
+
goto exit_write_header;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
/* Pad pathname to even length. */
|
|
338
|
+
ret = __archive_write_output(a, path, pathlength);
|
|
339
|
+
if (ret != ARCHIVE_OK) {
|
|
340
|
+
ret_final = ARCHIVE_FATAL;
|
|
341
|
+
goto exit_write_header;
|
|
342
|
+
}
|
|
343
|
+
pad = PAD4(pathlength + c_header_size);
|
|
344
|
+
if (pad) {
|
|
345
|
+
ret = __archive_write_output(a, "\0\0\0", pad);
|
|
346
|
+
if (ret != ARCHIVE_OK) {
|
|
347
|
+
ret_final = ARCHIVE_FATAL;
|
|
348
|
+
goto exit_write_header;
|
|
349
|
+
}
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
cpio->entry_bytes_remaining = archive_entry_size(entry);
|
|
353
|
+
cpio->padding = (int)PAD4(cpio->entry_bytes_remaining);
|
|
354
|
+
|
|
355
|
+
/* Write the symlink now. */
|
|
356
|
+
if (p != NULL && *p != '\0') {
|
|
357
|
+
ret = __archive_write_output(a, p, strlen(p));
|
|
358
|
+
if (ret != ARCHIVE_OK) {
|
|
359
|
+
ret_final = ARCHIVE_FATAL;
|
|
360
|
+
goto exit_write_header;
|
|
361
|
+
}
|
|
362
|
+
pad = PAD4(strlen(p));
|
|
363
|
+
ret = __archive_write_output(a, "\0\0\0", pad);
|
|
364
|
+
if (ret != ARCHIVE_OK) {
|
|
365
|
+
ret_final = ARCHIVE_FATAL;
|
|
366
|
+
goto exit_write_header;
|
|
367
|
+
}
|
|
368
|
+
}
|
|
369
|
+
exit_write_header:
|
|
370
|
+
archive_entry_free(entry_main);
|
|
371
|
+
return (ret_final);
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
static ssize_t
|
|
375
|
+
archive_write_newc_data(struct archive_write *a, const void *buff, size_t s)
|
|
376
|
+
{
|
|
377
|
+
struct cpio *cpio;
|
|
378
|
+
int ret;
|
|
379
|
+
|
|
380
|
+
cpio = (struct cpio *)a->format_data;
|
|
381
|
+
if (s > cpio->entry_bytes_remaining)
|
|
382
|
+
s = (size_t)cpio->entry_bytes_remaining;
|
|
383
|
+
|
|
384
|
+
ret = __archive_write_output(a, buff, s);
|
|
385
|
+
cpio->entry_bytes_remaining -= s;
|
|
386
|
+
if (ret >= 0)
|
|
387
|
+
return (s);
|
|
388
|
+
else
|
|
389
|
+
return (ret);
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
/*
|
|
393
|
+
* Format a number into the specified field.
|
|
394
|
+
*/
|
|
395
|
+
static int
|
|
396
|
+
format_hex(int64_t v, void *p, int digits)
|
|
397
|
+
{
|
|
398
|
+
int64_t max;
|
|
399
|
+
int ret;
|
|
400
|
+
|
|
401
|
+
max = (((int64_t)1) << (digits * 4)) - 1;
|
|
402
|
+
if (v >= 0 && v <= max) {
|
|
403
|
+
format_hex_recursive(v, (char *)p, digits);
|
|
404
|
+
ret = 0;
|
|
405
|
+
} else {
|
|
406
|
+
format_hex_recursive(max, (char *)p, digits);
|
|
407
|
+
ret = -1;
|
|
408
|
+
}
|
|
409
|
+
return (ret);
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
static int64_t
|
|
413
|
+
format_hex_recursive(int64_t v, char *p, int s)
|
|
414
|
+
{
|
|
415
|
+
if (s == 0)
|
|
416
|
+
return (v);
|
|
417
|
+
v = format_hex_recursive(v, p+1, s-1);
|
|
418
|
+
*p = "0123456789abcdef"[v & 0xf];
|
|
419
|
+
return (v >> 4);
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
static int
|
|
423
|
+
archive_write_newc_close(struct archive_write *a)
|
|
424
|
+
{
|
|
425
|
+
int er;
|
|
426
|
+
struct archive_entry *trailer;
|
|
427
|
+
|
|
428
|
+
trailer = archive_entry_new();
|
|
429
|
+
archive_entry_set_nlink(trailer, 1);
|
|
430
|
+
archive_entry_set_size(trailer, 0);
|
|
431
|
+
archive_entry_set_pathname(trailer, "TRAILER!!!");
|
|
432
|
+
/* Bypass the required data checks. */
|
|
433
|
+
er = write_header(a, trailer);
|
|
434
|
+
archive_entry_free(trailer);
|
|
435
|
+
return (er);
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
static int
|
|
439
|
+
archive_write_newc_free(struct archive_write *a)
|
|
440
|
+
{
|
|
441
|
+
struct cpio *cpio;
|
|
442
|
+
|
|
443
|
+
cpio = (struct cpio *)a->format_data;
|
|
444
|
+
free(cpio);
|
|
445
|
+
a->format_data = NULL;
|
|
446
|
+
return (ARCHIVE_OK);
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
static int
|
|
450
|
+
archive_write_newc_finish_entry(struct archive_write *a)
|
|
451
|
+
{
|
|
452
|
+
struct cpio *cpio;
|
|
453
|
+
|
|
454
|
+
cpio = (struct cpio *)a->format_data;
|
|
455
|
+
return (__archive_write_nulls(a,
|
|
456
|
+
(size_t)cpio->entry_bytes_remaining + cpio->padding));
|
|
457
|
+
}
|