libarchive-static 1.0.6 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- 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,500 @@
|
|
1
|
+
/*-
|
2
|
+
* Copyright (c) 2003-2007 Tim Kientzle
|
3
|
+
* Copyright (c) 2011-2012 Michihiro NAKAJIMA
|
4
|
+
* All rights reserved.
|
5
|
+
*
|
6
|
+
* Redistribution and use in source and binary forms, with or without
|
7
|
+
* modification, are permitted provided that the following conditions
|
8
|
+
* are met:
|
9
|
+
* 1. Redistributions of source code must retain the above copyright
|
10
|
+
* notice, this list of conditions and the following disclaimer.
|
11
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
12
|
+
* notice, this list of conditions and the following disclaimer in the
|
13
|
+
* documentation and/or other materials provided with the distribution.
|
14
|
+
*
|
15
|
+
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
|
16
|
+
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
17
|
+
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
18
|
+
* IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
|
19
|
+
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
20
|
+
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
21
|
+
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
22
|
+
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
23
|
+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
24
|
+
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
25
|
+
*/
|
26
|
+
|
27
|
+
#include "archive_platform.h"
|
28
|
+
__FBSDID("$FreeBSD: head/lib/libarchive/archive_write_set_format_cpio.c 201170 2009-12-29 06:34:23Z kientzle $");
|
29
|
+
|
30
|
+
#ifdef HAVE_ERRNO_H
|
31
|
+
#include <errno.h>
|
32
|
+
#endif
|
33
|
+
#include <stdio.h>
|
34
|
+
#ifdef HAVE_STDLIB_H
|
35
|
+
#include <stdlib.h>
|
36
|
+
#endif
|
37
|
+
#ifdef HAVE_STRING_H
|
38
|
+
#include <string.h>
|
39
|
+
#endif
|
40
|
+
|
41
|
+
#include "archive.h"
|
42
|
+
#include "archive_entry.h"
|
43
|
+
#include "archive_entry_locale.h"
|
44
|
+
#include "archive_private.h"
|
45
|
+
#include "archive_write_private.h"
|
46
|
+
#include "archive_write_set_format_private.h"
|
47
|
+
|
48
|
+
static ssize_t archive_write_odc_data(struct archive_write *,
|
49
|
+
const void *buff, size_t s);
|
50
|
+
static int archive_write_odc_close(struct archive_write *);
|
51
|
+
static int archive_write_odc_free(struct archive_write *);
|
52
|
+
static int archive_write_odc_finish_entry(struct archive_write *);
|
53
|
+
static int archive_write_odc_header(struct archive_write *,
|
54
|
+
struct archive_entry *);
|
55
|
+
static int archive_write_odc_options(struct archive_write *,
|
56
|
+
const char *, const char *);
|
57
|
+
static int format_octal(int64_t, void *, int);
|
58
|
+
static int64_t format_octal_recursive(int64_t, char *, int);
|
59
|
+
static int write_header(struct archive_write *, struct archive_entry *);
|
60
|
+
|
61
|
+
struct cpio {
|
62
|
+
uint64_t entry_bytes_remaining;
|
63
|
+
|
64
|
+
int64_t ino_next;
|
65
|
+
|
66
|
+
struct { int64_t old; int new;} *ino_list;
|
67
|
+
size_t ino_list_size;
|
68
|
+
size_t ino_list_next;
|
69
|
+
|
70
|
+
struct archive_string_conv *opt_sconv;
|
71
|
+
struct archive_string_conv *sconv_default;
|
72
|
+
int init_default_conversion;
|
73
|
+
};
|
74
|
+
|
75
|
+
#define c_magic_offset 0
|
76
|
+
#define c_magic_size 6
|
77
|
+
#define c_dev_offset 6
|
78
|
+
#define c_dev_size 6
|
79
|
+
#define c_ino_offset 12
|
80
|
+
#define c_ino_size 6
|
81
|
+
#define c_mode_offset 18
|
82
|
+
#define c_mode_size 6
|
83
|
+
#define c_uid_offset 24
|
84
|
+
#define c_uid_size 6
|
85
|
+
#define c_gid_offset 30
|
86
|
+
#define c_gid_size 6
|
87
|
+
#define c_nlink_offset 36
|
88
|
+
#define c_nlink_size 6
|
89
|
+
#define c_rdev_offset 42
|
90
|
+
#define c_rdev_size 6
|
91
|
+
#define c_mtime_offset 48
|
92
|
+
#define c_mtime_size 11
|
93
|
+
#define c_namesize_offset 59
|
94
|
+
#define c_namesize_size 6
|
95
|
+
#define c_filesize_offset 65
|
96
|
+
#define c_filesize_size 11
|
97
|
+
|
98
|
+
/*
|
99
|
+
* Set output format to 'cpio' format.
|
100
|
+
*/
|
101
|
+
int
|
102
|
+
archive_write_set_format_cpio_odc(struct archive *_a)
|
103
|
+
{
|
104
|
+
struct archive_write *a = (struct archive_write *)_a;
|
105
|
+
struct cpio *cpio;
|
106
|
+
|
107
|
+
archive_check_magic(_a, ARCHIVE_WRITE_MAGIC,
|
108
|
+
ARCHIVE_STATE_NEW, "archive_write_set_format_cpio_odc");
|
109
|
+
|
110
|
+
/* If someone else was already registered, unregister them. */
|
111
|
+
if (a->format_free != NULL)
|
112
|
+
(a->format_free)(a);
|
113
|
+
|
114
|
+
cpio = (struct cpio *)calloc(1, sizeof(*cpio));
|
115
|
+
if (cpio == NULL) {
|
116
|
+
archive_set_error(&a->archive, ENOMEM, "Can't allocate cpio data");
|
117
|
+
return (ARCHIVE_FATAL);
|
118
|
+
}
|
119
|
+
a->format_data = cpio;
|
120
|
+
a->format_name = "cpio";
|
121
|
+
a->format_options = archive_write_odc_options;
|
122
|
+
a->format_write_header = archive_write_odc_header;
|
123
|
+
a->format_write_data = archive_write_odc_data;
|
124
|
+
a->format_finish_entry = archive_write_odc_finish_entry;
|
125
|
+
a->format_close = archive_write_odc_close;
|
126
|
+
a->format_free = archive_write_odc_free;
|
127
|
+
a->archive.archive_format = ARCHIVE_FORMAT_CPIO_POSIX;
|
128
|
+
a->archive.archive_format_name = "POSIX cpio";
|
129
|
+
return (ARCHIVE_OK);
|
130
|
+
}
|
131
|
+
|
132
|
+
static int
|
133
|
+
archive_write_odc_options(struct archive_write *a, const char *key,
|
134
|
+
const char *val)
|
135
|
+
{
|
136
|
+
struct cpio *cpio = (struct cpio *)a->format_data;
|
137
|
+
int ret = ARCHIVE_FAILED;
|
138
|
+
|
139
|
+
if (strcmp(key, "hdrcharset") == 0) {
|
140
|
+
if (val == NULL || val[0] == 0)
|
141
|
+
archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC,
|
142
|
+
"%s: hdrcharset option needs a character-set name",
|
143
|
+
a->format_name);
|
144
|
+
else {
|
145
|
+
cpio->opt_sconv = archive_string_conversion_to_charset(
|
146
|
+
&a->archive, val, 0);
|
147
|
+
if (cpio->opt_sconv != NULL)
|
148
|
+
ret = ARCHIVE_OK;
|
149
|
+
else
|
150
|
+
ret = ARCHIVE_FATAL;
|
151
|
+
}
|
152
|
+
return (ret);
|
153
|
+
}
|
154
|
+
|
155
|
+
/* Note: The "warn" return is just to inform the options
|
156
|
+
* supervisor that we didn't handle it. It will generate
|
157
|
+
* a suitable error if no one used this option. */
|
158
|
+
return (ARCHIVE_WARN);
|
159
|
+
}
|
160
|
+
|
161
|
+
/*
|
162
|
+
* Ino values are as long as 64 bits on some systems; cpio format
|
163
|
+
* only allows 18 bits and relies on the ino values to identify hardlinked
|
164
|
+
* files. So, we can't merely "hash" the ino numbers since collisions
|
165
|
+
* would corrupt the archive. Instead, we generate synthetic ino values
|
166
|
+
* to store in the archive and maintain a map of original ino values to
|
167
|
+
* synthetic ones so we can preserve hardlink information.
|
168
|
+
*
|
169
|
+
* TODO: Make this more efficient. It's not as bad as it looks (most
|
170
|
+
* files don't have any hardlinks and we don't do any work here for those),
|
171
|
+
* but it wouldn't be hard to do better.
|
172
|
+
*
|
173
|
+
* TODO: Work with dev/ino pairs here instead of just ino values.
|
174
|
+
*/
|
175
|
+
static int
|
176
|
+
synthesize_ino_value(struct cpio *cpio, struct archive_entry *entry)
|
177
|
+
{
|
178
|
+
int64_t ino = archive_entry_ino64(entry);
|
179
|
+
int ino_new;
|
180
|
+
size_t i;
|
181
|
+
|
182
|
+
/*
|
183
|
+
* If no index number was given, don't assign one. In
|
184
|
+
* particular, this handles the end-of-archive marker
|
185
|
+
* correctly by giving it a zero index value. (This is also
|
186
|
+
* why we start our synthetic index numbers with one below.)
|
187
|
+
*/
|
188
|
+
if (ino == 0)
|
189
|
+
return (0);
|
190
|
+
|
191
|
+
/* Don't store a mapping if we don't need to. */
|
192
|
+
if (archive_entry_nlink(entry) < 2) {
|
193
|
+
return (int)(++cpio->ino_next);
|
194
|
+
}
|
195
|
+
|
196
|
+
/* Look up old ino; if we have it, this is a hardlink
|
197
|
+
* and we reuse the same value. */
|
198
|
+
for (i = 0; i < cpio->ino_list_next; ++i) {
|
199
|
+
if (cpio->ino_list[i].old == ino)
|
200
|
+
return (cpio->ino_list[i].new);
|
201
|
+
}
|
202
|
+
|
203
|
+
/* Assign a new index number. */
|
204
|
+
ino_new = (int)(++cpio->ino_next);
|
205
|
+
|
206
|
+
/* Ensure space for the new mapping. */
|
207
|
+
if (cpio->ino_list_size <= cpio->ino_list_next) {
|
208
|
+
size_t newsize = cpio->ino_list_size < 512
|
209
|
+
? 512 : cpio->ino_list_size * 2;
|
210
|
+
void *newlist = realloc(cpio->ino_list,
|
211
|
+
sizeof(cpio->ino_list[0]) * newsize);
|
212
|
+
if (newlist == NULL)
|
213
|
+
return (-1);
|
214
|
+
|
215
|
+
cpio->ino_list_size = newsize;
|
216
|
+
cpio->ino_list = newlist;
|
217
|
+
}
|
218
|
+
|
219
|
+
/* Record and return the new value. */
|
220
|
+
cpio->ino_list[cpio->ino_list_next].old = ino;
|
221
|
+
cpio->ino_list[cpio->ino_list_next].new = ino_new;
|
222
|
+
++cpio->ino_list_next;
|
223
|
+
return (ino_new);
|
224
|
+
}
|
225
|
+
|
226
|
+
|
227
|
+
static struct archive_string_conv *
|
228
|
+
get_sconv(struct archive_write *a)
|
229
|
+
{
|
230
|
+
struct cpio *cpio;
|
231
|
+
struct archive_string_conv *sconv;
|
232
|
+
|
233
|
+
cpio = (struct cpio *)a->format_data;
|
234
|
+
sconv = cpio->opt_sconv;
|
235
|
+
if (sconv == NULL) {
|
236
|
+
if (!cpio->init_default_conversion) {
|
237
|
+
cpio->sconv_default =
|
238
|
+
archive_string_default_conversion_for_write(
|
239
|
+
&(a->archive));
|
240
|
+
cpio->init_default_conversion = 1;
|
241
|
+
}
|
242
|
+
sconv = cpio->sconv_default;
|
243
|
+
}
|
244
|
+
return (sconv);
|
245
|
+
}
|
246
|
+
|
247
|
+
static int
|
248
|
+
archive_write_odc_header(struct archive_write *a, struct archive_entry *entry)
|
249
|
+
{
|
250
|
+
const char *path;
|
251
|
+
size_t len;
|
252
|
+
|
253
|
+
if (archive_entry_filetype(entry) == 0 && archive_entry_hardlink(entry) == NULL) {
|
254
|
+
archive_set_error(&a->archive, -1, "Filetype required");
|
255
|
+
return (ARCHIVE_FAILED);
|
256
|
+
}
|
257
|
+
|
258
|
+
if (archive_entry_pathname_l(entry, &path, &len, get_sconv(a)) != 0
|
259
|
+
&& errno == ENOMEM) {
|
260
|
+
archive_set_error(&a->archive, ENOMEM,
|
261
|
+
"Can't allocate memory for Pathname");
|
262
|
+
return (ARCHIVE_FATAL);
|
263
|
+
}
|
264
|
+
if (len == 0 || path == NULL || path[0] == '\0') {
|
265
|
+
archive_set_error(&a->archive, -1, "Pathname required");
|
266
|
+
return (ARCHIVE_FAILED);
|
267
|
+
}
|
268
|
+
|
269
|
+
if (!archive_entry_size_is_set(entry) || archive_entry_size(entry) < 0) {
|
270
|
+
archive_set_error(&a->archive, -1, "Size required");
|
271
|
+
return (ARCHIVE_FAILED);
|
272
|
+
}
|
273
|
+
return write_header(a, entry);
|
274
|
+
}
|
275
|
+
|
276
|
+
static int
|
277
|
+
write_header(struct archive_write *a, struct archive_entry *entry)
|
278
|
+
{
|
279
|
+
struct cpio *cpio;
|
280
|
+
const char *p, *path;
|
281
|
+
int pathlength, ret, ret_final;
|
282
|
+
int64_t ino;
|
283
|
+
char h[76];
|
284
|
+
struct archive_string_conv *sconv;
|
285
|
+
struct archive_entry *entry_main;
|
286
|
+
size_t len;
|
287
|
+
|
288
|
+
cpio = (struct cpio *)a->format_data;
|
289
|
+
ret_final = ARCHIVE_OK;
|
290
|
+
sconv = get_sconv(a);
|
291
|
+
|
292
|
+
#if defined(_WIN32) && !defined(__CYGWIN__)
|
293
|
+
/* Make sure the path separators in pathname, hardlink and symlink
|
294
|
+
* are all slash '/', not the Windows path separator '\'. */
|
295
|
+
entry_main = __la_win_entry_in_posix_pathseparator(entry);
|
296
|
+
if (entry_main == NULL) {
|
297
|
+
archive_set_error(&a->archive, ENOMEM,
|
298
|
+
"Can't allocate ustar data");
|
299
|
+
return(ARCHIVE_FATAL);
|
300
|
+
}
|
301
|
+
if (entry != entry_main)
|
302
|
+
entry = entry_main;
|
303
|
+
else
|
304
|
+
entry_main = NULL;
|
305
|
+
#else
|
306
|
+
entry_main = NULL;
|
307
|
+
#endif
|
308
|
+
|
309
|
+
ret = archive_entry_pathname_l(entry, &path, &len, sconv);
|
310
|
+
if (ret != 0) {
|
311
|
+
if (errno == ENOMEM) {
|
312
|
+
archive_set_error(&a->archive, ENOMEM,
|
313
|
+
"Can't allocate memory for Pathname");
|
314
|
+
ret_final = ARCHIVE_FATAL;
|
315
|
+
goto exit_write_header;
|
316
|
+
}
|
317
|
+
archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
|
318
|
+
"Can't translate pathname '%s' to %s",
|
319
|
+
archive_entry_pathname(entry),
|
320
|
+
archive_string_conversion_charset_name(sconv));
|
321
|
+
ret_final = ARCHIVE_WARN;
|
322
|
+
}
|
323
|
+
/* Include trailing null. */
|
324
|
+
pathlength = (int)len + 1;
|
325
|
+
|
326
|
+
memset(h, 0, sizeof(h));
|
327
|
+
format_octal(070707, h + c_magic_offset, c_magic_size);
|
328
|
+
format_octal(archive_entry_dev(entry), h + c_dev_offset, c_dev_size);
|
329
|
+
|
330
|
+
ino = synthesize_ino_value(cpio, entry);
|
331
|
+
if (ino < 0) {
|
332
|
+
archive_set_error(&a->archive, ENOMEM,
|
333
|
+
"No memory for ino translation table");
|
334
|
+
ret_final = ARCHIVE_FATAL;
|
335
|
+
goto exit_write_header;
|
336
|
+
} else if (ino > 0777777) {
|
337
|
+
archive_set_error(&a->archive, ERANGE,
|
338
|
+
"Too many files for this cpio format");
|
339
|
+
ret_final = ARCHIVE_FATAL;
|
340
|
+
goto exit_write_header;
|
341
|
+
}
|
342
|
+
format_octal(ino & 0777777, h + c_ino_offset, c_ino_size);
|
343
|
+
|
344
|
+
/* TODO: Set ret_final to ARCHIVE_WARN if any of these overflow. */
|
345
|
+
format_octal(archive_entry_mode(entry), h + c_mode_offset, c_mode_size);
|
346
|
+
format_octal(archive_entry_uid(entry), h + c_uid_offset, c_uid_size);
|
347
|
+
format_octal(archive_entry_gid(entry), h + c_gid_offset, c_gid_size);
|
348
|
+
format_octal(archive_entry_nlink(entry), h + c_nlink_offset, c_nlink_size);
|
349
|
+
if (archive_entry_filetype(entry) == AE_IFBLK
|
350
|
+
|| archive_entry_filetype(entry) == AE_IFCHR)
|
351
|
+
format_octal(archive_entry_rdev(entry), h + c_rdev_offset, c_rdev_size);
|
352
|
+
else
|
353
|
+
format_octal(0, h + c_rdev_offset, c_rdev_size);
|
354
|
+
format_octal(archive_entry_mtime(entry), h + c_mtime_offset, c_mtime_size);
|
355
|
+
format_octal(pathlength, h + c_namesize_offset, c_namesize_size);
|
356
|
+
|
357
|
+
/* Non-regular files don't store bodies. */
|
358
|
+
if (archive_entry_filetype(entry) != AE_IFREG)
|
359
|
+
archive_entry_set_size(entry, 0);
|
360
|
+
|
361
|
+
/* Symlinks get the link written as the body of the entry. */
|
362
|
+
ret = archive_entry_symlink_l(entry, &p, &len, sconv);
|
363
|
+
if (ret != 0) {
|
364
|
+
if (errno == ENOMEM) {
|
365
|
+
archive_set_error(&a->archive, ENOMEM,
|
366
|
+
"Can't allocate memory for Linkname");
|
367
|
+
ret_final = ARCHIVE_FATAL;
|
368
|
+
goto exit_write_header;
|
369
|
+
}
|
370
|
+
archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
|
371
|
+
"Can't translate linkname '%s' to %s",
|
372
|
+
archive_entry_symlink(entry),
|
373
|
+
archive_string_conversion_charset_name(sconv));
|
374
|
+
ret_final = ARCHIVE_WARN;
|
375
|
+
}
|
376
|
+
if (len > 0 && p != NULL && *p != '\0')
|
377
|
+
ret = format_octal(strlen(p), h + c_filesize_offset,
|
378
|
+
c_filesize_size);
|
379
|
+
else
|
380
|
+
ret = format_octal(archive_entry_size(entry),
|
381
|
+
h + c_filesize_offset, c_filesize_size);
|
382
|
+
if (ret) {
|
383
|
+
archive_set_error(&a->archive, ERANGE,
|
384
|
+
"File is too large for cpio format.");
|
385
|
+
ret_final = ARCHIVE_FAILED;
|
386
|
+
goto exit_write_header;
|
387
|
+
}
|
388
|
+
|
389
|
+
ret = __archive_write_output(a, h, sizeof(h));
|
390
|
+
if (ret != ARCHIVE_OK) {
|
391
|
+
ret_final = ARCHIVE_FATAL;
|
392
|
+
goto exit_write_header;
|
393
|
+
}
|
394
|
+
|
395
|
+
ret = __archive_write_output(a, path, pathlength);
|
396
|
+
if (ret != ARCHIVE_OK) {
|
397
|
+
ret_final = ARCHIVE_FATAL;
|
398
|
+
goto exit_write_header;
|
399
|
+
}
|
400
|
+
|
401
|
+
cpio->entry_bytes_remaining = archive_entry_size(entry);
|
402
|
+
|
403
|
+
/* Write the symlink now. */
|
404
|
+
if (p != NULL && *p != '\0') {
|
405
|
+
ret = __archive_write_output(a, p, strlen(p));
|
406
|
+
if (ret != ARCHIVE_OK) {
|
407
|
+
ret_final = ARCHIVE_FATAL;
|
408
|
+
goto exit_write_header;
|
409
|
+
}
|
410
|
+
}
|
411
|
+
exit_write_header:
|
412
|
+
archive_entry_free(entry_main);
|
413
|
+
return (ret_final);
|
414
|
+
}
|
415
|
+
|
416
|
+
static ssize_t
|
417
|
+
archive_write_odc_data(struct archive_write *a, const void *buff, size_t s)
|
418
|
+
{
|
419
|
+
struct cpio *cpio;
|
420
|
+
int ret;
|
421
|
+
|
422
|
+
cpio = (struct cpio *)a->format_data;
|
423
|
+
if (s > cpio->entry_bytes_remaining)
|
424
|
+
s = (size_t)cpio->entry_bytes_remaining;
|
425
|
+
|
426
|
+
ret = __archive_write_output(a, buff, s);
|
427
|
+
cpio->entry_bytes_remaining -= s;
|
428
|
+
if (ret >= 0)
|
429
|
+
return (s);
|
430
|
+
else
|
431
|
+
return (ret);
|
432
|
+
}
|
433
|
+
|
434
|
+
/*
|
435
|
+
* Format a number into the specified field.
|
436
|
+
*/
|
437
|
+
static int
|
438
|
+
format_octal(int64_t v, void *p, int digits)
|
439
|
+
{
|
440
|
+
int64_t max;
|
441
|
+
int ret;
|
442
|
+
|
443
|
+
max = (((int64_t)1) << (digits * 3)) - 1;
|
444
|
+
if (v >= 0 && v <= max) {
|
445
|
+
format_octal_recursive(v, (char *)p, digits);
|
446
|
+
ret = 0;
|
447
|
+
} else {
|
448
|
+
format_octal_recursive(max, (char *)p, digits);
|
449
|
+
ret = -1;
|
450
|
+
}
|
451
|
+
return (ret);
|
452
|
+
}
|
453
|
+
|
454
|
+
static int64_t
|
455
|
+
format_octal_recursive(int64_t v, char *p, int s)
|
456
|
+
{
|
457
|
+
if (s == 0)
|
458
|
+
return (v);
|
459
|
+
v = format_octal_recursive(v, p+1, s-1);
|
460
|
+
*p = '0' + ((char)v & 7);
|
461
|
+
return (v >> 3);
|
462
|
+
}
|
463
|
+
|
464
|
+
static int
|
465
|
+
archive_write_odc_close(struct archive_write *a)
|
466
|
+
{
|
467
|
+
int er;
|
468
|
+
struct archive_entry *trailer;
|
469
|
+
|
470
|
+
trailer = archive_entry_new2(NULL);
|
471
|
+
/* nlink = 1 here for GNU cpio compat. */
|
472
|
+
archive_entry_set_nlink(trailer, 1);
|
473
|
+
archive_entry_set_size(trailer, 0);
|
474
|
+
archive_entry_set_pathname(trailer, "TRAILER!!!");
|
475
|
+
er = write_header(a, trailer);
|
476
|
+
archive_entry_free(trailer);
|
477
|
+
return (er);
|
478
|
+
}
|
479
|
+
|
480
|
+
static int
|
481
|
+
archive_write_odc_free(struct archive_write *a)
|
482
|
+
{
|
483
|
+
struct cpio *cpio;
|
484
|
+
|
485
|
+
cpio = (struct cpio *)a->format_data;
|
486
|
+
free(cpio->ino_list);
|
487
|
+
free(cpio);
|
488
|
+
a->format_data = NULL;
|
489
|
+
return (ARCHIVE_OK);
|
490
|
+
}
|
491
|
+
|
492
|
+
static int
|
493
|
+
archive_write_odc_finish_entry(struct archive_write *a)
|
494
|
+
{
|
495
|
+
struct cpio *cpio;
|
496
|
+
|
497
|
+
cpio = (struct cpio *)a->format_data;
|
498
|
+
return (__archive_write_nulls(a,
|
499
|
+
(size_t)cpio->entry_bytes_remaining));
|
500
|
+
}
|
@@ -0,0 +1,142 @@
|
|
1
|
+
/*-
|
2
|
+
* Copyright (c) 2003-2007 Tim Kientzle
|
3
|
+
* Copyright (c) 2015 Okhotnikov Kirill
|
4
|
+
* All rights reserved.
|
5
|
+
*
|
6
|
+
* Redistribution and use in source and binary forms, with or without
|
7
|
+
* modification, are permitted provided that the following conditions
|
8
|
+
* are met:
|
9
|
+
* 1. Redistributions of source code must retain the above copyright
|
10
|
+
* notice, this list of conditions and the following disclaimer.
|
11
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
12
|
+
* notice, this list of conditions and the following disclaimer in the
|
13
|
+
* documentation and/or other materials provided with the distribution.
|
14
|
+
*
|
15
|
+
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
|
16
|
+
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
17
|
+
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
18
|
+
* IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
|
19
|
+
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
20
|
+
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
21
|
+
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
22
|
+
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
23
|
+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
24
|
+
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
25
|
+
*/
|
26
|
+
|
27
|
+
#include "archive_platform.h"
|
28
|
+
__FBSDID("$FreeBSD: head/lib/libarchive/archive_write_set_format_by_name.c 201168 2009-12-29 06:15:32Z kientzle $");
|
29
|
+
|
30
|
+
#ifdef HAVE_SYS_TYPES_H
|
31
|
+
#include <sys/types.h>
|
32
|
+
#endif
|
33
|
+
|
34
|
+
#ifdef HAVE_ERRNO_H
|
35
|
+
#include <errno.h>
|
36
|
+
#endif
|
37
|
+
#ifdef HAVE_STRING_H
|
38
|
+
#include <string.h>
|
39
|
+
#endif
|
40
|
+
|
41
|
+
#include "archive.h"
|
42
|
+
#include "archive_private.h"
|
43
|
+
|
44
|
+
/* A table that maps names to functions. */
|
45
|
+
static const
|
46
|
+
struct { const char *name; int (*format)(struct archive *); int (*filter)(struct archive *); } names[] =
|
47
|
+
{
|
48
|
+
{ ".7z", archive_write_set_format_7zip, archive_write_add_filter_none},
|
49
|
+
{ ".zip", archive_write_set_format_zip, archive_write_add_filter_none},
|
50
|
+
{ ".jar", archive_write_set_format_zip, archive_write_add_filter_none},
|
51
|
+
{ ".cpio", archive_write_set_format_cpio, archive_write_add_filter_none},
|
52
|
+
{ ".iso", archive_write_set_format_iso9660, archive_write_add_filter_none},
|
53
|
+
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__NetBSD__) || defined(__OpenBSD__)
|
54
|
+
{ ".a", archive_write_set_format_ar_bsd, archive_write_add_filter_none},
|
55
|
+
{ ".ar", archive_write_set_format_ar_bsd, archive_write_add_filter_none},
|
56
|
+
#else
|
57
|
+
{ ".a", archive_write_set_format_ar_svr4, archive_write_add_filter_none},
|
58
|
+
{ ".ar", archive_write_set_format_ar_svr4, archive_write_add_filter_none},
|
59
|
+
#endif
|
60
|
+
{ ".tar", archive_write_set_format_pax_restricted, archive_write_add_filter_none},
|
61
|
+
{ ".tgz", archive_write_set_format_pax_restricted, archive_write_add_filter_gzip},
|
62
|
+
{ ".tar.gz", archive_write_set_format_pax_restricted, archive_write_add_filter_gzip},
|
63
|
+
{ ".tar.bz2", archive_write_set_format_pax_restricted, archive_write_add_filter_bzip2},
|
64
|
+
{ ".tar.xz", archive_write_set_format_pax_restricted, archive_write_add_filter_xz},
|
65
|
+
{ NULL, NULL, NULL }
|
66
|
+
};
|
67
|
+
|
68
|
+
static
|
69
|
+
int cmpsuff(const char *str, const char *suffix)
|
70
|
+
{
|
71
|
+
size_t length_str, length_suffix;
|
72
|
+
|
73
|
+
if ((str == NULL) || (suffix == NULL))
|
74
|
+
return -1;
|
75
|
+
|
76
|
+
length_str = strlen(str);
|
77
|
+
length_suffix = strlen(suffix);
|
78
|
+
|
79
|
+
if (length_str >= length_suffix) {
|
80
|
+
return strcmp(str + (length_str - length_suffix), suffix);
|
81
|
+
} else {
|
82
|
+
return -1;
|
83
|
+
}
|
84
|
+
}
|
85
|
+
|
86
|
+
static int get_array_index(const char *name)
|
87
|
+
{
|
88
|
+
int i;
|
89
|
+
|
90
|
+
for (i = 0; names[i].name != NULL; i++)
|
91
|
+
{
|
92
|
+
if (cmpsuff(name, names[i].name) == 0)
|
93
|
+
return i;
|
94
|
+
}
|
95
|
+
return -1;
|
96
|
+
|
97
|
+
}
|
98
|
+
|
99
|
+
int
|
100
|
+
archive_write_set_format_filter_by_ext(struct archive *a, const char *filename)
|
101
|
+
{
|
102
|
+
int names_index = get_array_index(filename);
|
103
|
+
|
104
|
+
if (names_index >= 0)
|
105
|
+
{
|
106
|
+
int format_state = (names[names_index].format)(a);
|
107
|
+
if (format_state == ARCHIVE_OK)
|
108
|
+
return ((names[names_index].filter)(a));
|
109
|
+
else
|
110
|
+
return format_state;
|
111
|
+
}
|
112
|
+
|
113
|
+
archive_set_error(a, EINVAL, "No such format '%s'", filename);
|
114
|
+
a->state = ARCHIVE_STATE_FATAL;
|
115
|
+
return (ARCHIVE_FATAL);
|
116
|
+
}
|
117
|
+
|
118
|
+
int
|
119
|
+
archive_write_set_format_filter_by_ext_def(struct archive *a, const char *filename, const char * def_ext)
|
120
|
+
{
|
121
|
+
int names_index = get_array_index(filename);
|
122
|
+
|
123
|
+
if (names_index < 0)
|
124
|
+
names_index = get_array_index(def_ext);
|
125
|
+
|
126
|
+
if (names_index >= 0)
|
127
|
+
{
|
128
|
+
int format_state = (names[names_index].format)(a);
|
129
|
+
if (format_state == ARCHIVE_OK)
|
130
|
+
return ((names[names_index].filter)(a));
|
131
|
+
else
|
132
|
+
return format_state;
|
133
|
+
}
|
134
|
+
|
135
|
+
archive_set_error(a, EINVAL, "No such format '%s'", filename);
|
136
|
+
a->state = ARCHIVE_STATE_FATAL;
|
137
|
+
return (ARCHIVE_FATAL);
|
138
|
+
}
|
139
|
+
|
140
|
+
|
141
|
+
|
142
|
+
|