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
@@ -1,5 +1,6 @@
|
|
1
1
|
/*-
|
2
2
|
* Copyright (c) 2007 Joerg Sonnenberger
|
3
|
+
* Copyright (c) 2012 Michihiro NAKAJIMA
|
3
4
|
* All rights reserved.
|
4
5
|
*
|
5
6
|
* Redistribution and use in source and binary forms, with or without
|
@@ -27,10 +28,19 @@
|
|
27
28
|
|
28
29
|
/* This capability is only available on POSIX systems. */
|
29
30
|
#if defined(HAVE_PIPE) && defined(HAVE_FCNTL) && \
|
30
|
-
(defined(HAVE_FORK) || defined(HAVE_VFORK))
|
31
|
+
(defined(HAVE_FORK) || defined(HAVE_VFORK) || defined(HAVE_POSIX_SPAWNP))
|
31
32
|
|
32
33
|
__FBSDID("$FreeBSD: head/lib/libarchive/filter_fork.c 182958 2008-09-12 05:33:00Z kientzle $");
|
33
34
|
|
35
|
+
#if defined(HAVE_SYS_TYPES_H)
|
36
|
+
# include <sys/types.h>
|
37
|
+
#endif
|
38
|
+
#ifdef HAVE_ERRNO_H
|
39
|
+
# include <errno.h>
|
40
|
+
#endif
|
41
|
+
#ifdef HAVE_STRING_H
|
42
|
+
# include <string.h>
|
43
|
+
#endif
|
34
44
|
#if defined(HAVE_POLL) && (defined(HAVE_POLL_H) || defined(HAVE_SYS_POLL_H))
|
35
45
|
# if defined(HAVE_POLL_H)
|
36
46
|
# include <poll.h>
|
@@ -47,17 +57,38 @@ __FBSDID("$FreeBSD: head/lib/libarchive/filter_fork.c 182958 2008-09-12 05:33:00
|
|
47
57
|
#ifdef HAVE_FCNTL_H
|
48
58
|
# include <fcntl.h>
|
49
59
|
#endif
|
60
|
+
#ifdef HAVE_SPAWN_H
|
61
|
+
# include <spawn.h>
|
62
|
+
#endif
|
63
|
+
#ifdef HAVE_STDLIB_H
|
64
|
+
# include <stdlib.h>
|
65
|
+
#endif
|
50
66
|
#ifdef HAVE_UNISTD_H
|
51
67
|
# include <unistd.h>
|
52
68
|
#endif
|
53
69
|
|
70
|
+
#include "archive.h"
|
71
|
+
#include "archive_cmdline_private.h"
|
72
|
+
|
54
73
|
#include "filter_fork.h"
|
55
74
|
|
56
|
-
|
57
|
-
__archive_create_child(const char *
|
75
|
+
int
|
76
|
+
__archive_create_child(const char *cmd, int *child_stdin, int *child_stdout,
|
77
|
+
pid_t *out_child)
|
58
78
|
{
|
59
|
-
pid_t child;
|
79
|
+
pid_t child = -1;
|
60
80
|
int stdin_pipe[2], stdout_pipe[2], tmp;
|
81
|
+
#if HAVE_POSIX_SPAWNP
|
82
|
+
posix_spawn_file_actions_t actions;
|
83
|
+
int r;
|
84
|
+
#endif
|
85
|
+
struct archive_cmdline *cmdline;
|
86
|
+
|
87
|
+
cmdline = __archive_cmdline_allocate();
|
88
|
+
if (cmdline == NULL)
|
89
|
+
goto state_allocated;
|
90
|
+
if (__archive_cmdline_parse(cmdline, cmd) != ARCHIVE_OK)
|
91
|
+
goto state_allocated;
|
61
92
|
|
62
93
|
if (pipe(stdin_pipe) == -1)
|
63
94
|
goto state_allocated;
|
@@ -76,14 +107,53 @@ __archive_create_child(const char *path, int *child_stdin, int *child_stdout)
|
|
76
107
|
stdout_pipe[1] = tmp;
|
77
108
|
}
|
78
109
|
|
110
|
+
#if HAVE_POSIX_SPAWNP
|
111
|
+
|
112
|
+
r = posix_spawn_file_actions_init(&actions);
|
113
|
+
if (r != 0) {
|
114
|
+
errno = r;
|
115
|
+
goto stdout_opened;
|
116
|
+
}
|
117
|
+
r = posix_spawn_file_actions_addclose(&actions, stdin_pipe[1]);
|
118
|
+
if (r != 0)
|
119
|
+
goto actions_inited;
|
120
|
+
r = posix_spawn_file_actions_addclose(&actions, stdout_pipe[0]);
|
121
|
+
if (r != 0)
|
122
|
+
goto actions_inited;
|
123
|
+
/* Setup for stdin. */
|
124
|
+
r = posix_spawn_file_actions_adddup2(&actions, stdin_pipe[0], 0);
|
125
|
+
if (r != 0)
|
126
|
+
goto actions_inited;
|
127
|
+
if (stdin_pipe[0] != 0 /* stdin */) {
|
128
|
+
r = posix_spawn_file_actions_addclose(&actions, stdin_pipe[0]);
|
129
|
+
if (r != 0)
|
130
|
+
goto actions_inited;
|
131
|
+
}
|
132
|
+
/* Setup for stdout. */
|
133
|
+
r = posix_spawn_file_actions_adddup2(&actions, stdout_pipe[1], 1);
|
134
|
+
if (r != 0)
|
135
|
+
goto actions_inited;
|
136
|
+
if (stdout_pipe[1] != 1 /* stdout */) {
|
137
|
+
r = posix_spawn_file_actions_addclose(&actions, stdout_pipe[1]);
|
138
|
+
if (r != 0)
|
139
|
+
goto actions_inited;
|
140
|
+
}
|
141
|
+
r = posix_spawnp(&child, cmdline->path, &actions, NULL,
|
142
|
+
cmdline->argv, NULL);
|
143
|
+
if (r != 0)
|
144
|
+
goto actions_inited;
|
145
|
+
posix_spawn_file_actions_destroy(&actions);
|
146
|
+
|
147
|
+
#else /* HAVE_POSIX_SPAWNP */
|
148
|
+
|
79
149
|
#if HAVE_VFORK
|
80
|
-
|
150
|
+
child = vfork();
|
81
151
|
#else
|
82
|
-
|
152
|
+
child = fork();
|
83
153
|
#endif
|
84
|
-
|
154
|
+
if (child == -1)
|
85
155
|
goto stdout_opened;
|
86
|
-
|
156
|
+
if (child == 0) {
|
87
157
|
close(stdin_pipe[1]);
|
88
158
|
close(stdout_pipe[0]);
|
89
159
|
if (dup2(stdin_pipe[0], 0 /* stdin */) == -1)
|
@@ -94,20 +164,28 @@ __archive_create_child(const char *path, int *child_stdin, int *child_stdout)
|
|
94
164
|
_exit(254);
|
95
165
|
if (stdout_pipe[1] != 1 /* stdout */)
|
96
166
|
close(stdout_pipe[1]);
|
97
|
-
|
167
|
+
execvp(cmdline->path, cmdline->argv);
|
98
168
|
_exit(254);
|
99
|
-
default:
|
100
|
-
close(stdin_pipe[0]);
|
101
|
-
close(stdout_pipe[1]);
|
102
|
-
|
103
|
-
*child_stdin = stdin_pipe[1];
|
104
|
-
fcntl(*child_stdin, F_SETFL, O_NONBLOCK);
|
105
|
-
*child_stdout = stdout_pipe[0];
|
106
|
-
fcntl(*child_stdout, F_SETFL, O_NONBLOCK);
|
107
169
|
}
|
170
|
+
#endif /* HAVE_POSIX_SPAWNP */
|
171
|
+
|
172
|
+
close(stdin_pipe[0]);
|
173
|
+
close(stdout_pipe[1]);
|
174
|
+
|
175
|
+
*child_stdin = stdin_pipe[1];
|
176
|
+
fcntl(*child_stdin, F_SETFL, O_NONBLOCK);
|
177
|
+
*child_stdout = stdout_pipe[0];
|
178
|
+
fcntl(*child_stdout, F_SETFL, O_NONBLOCK);
|
179
|
+
__archive_cmdline_free(cmdline);
|
108
180
|
|
109
|
-
|
181
|
+
*out_child = child;
|
182
|
+
return ARCHIVE_OK;
|
110
183
|
|
184
|
+
#if HAVE_POSIX_SPAWNP
|
185
|
+
actions_inited:
|
186
|
+
errno = r;
|
187
|
+
posix_spawn_file_actions_destroy(&actions);
|
188
|
+
#endif
|
111
189
|
stdout_opened:
|
112
190
|
close(stdout_pipe[0]);
|
113
191
|
close(stdout_pipe[1]);
|
@@ -115,7 +193,8 @@ stdin_opened:
|
|
115
193
|
close(stdin_pipe[0]);
|
116
194
|
close(stdin_pipe[1]);
|
117
195
|
state_allocated:
|
118
|
-
|
196
|
+
__archive_cmdline_free(cmdline);
|
197
|
+
return ARCHIVE_FAILED;
|
119
198
|
}
|
120
199
|
|
121
200
|
void
|
@@ -0,0 +1,236 @@
|
|
1
|
+
/*-
|
2
|
+
* Copyright (c) 2009-2012 Michihiro NAKAJIMA
|
3
|
+
* All rights reserved.
|
4
|
+
*
|
5
|
+
* Redistribution and use in source and binary forms, with or without
|
6
|
+
* modification, are permitted provided that the following conditions
|
7
|
+
* are met:
|
8
|
+
* 1. Redistributions of source code must retain the above copyright
|
9
|
+
* notice, this list of conditions and the following disclaimer.
|
10
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
11
|
+
* notice, this list of conditions and the following disclaimer in the
|
12
|
+
* documentation and/or other materials provided with the distribution.
|
13
|
+
*
|
14
|
+
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
|
15
|
+
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
16
|
+
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
17
|
+
* IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
|
18
|
+
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
19
|
+
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
20
|
+
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
21
|
+
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
22
|
+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
23
|
+
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
24
|
+
*/
|
25
|
+
|
26
|
+
#include "archive_platform.h"
|
27
|
+
|
28
|
+
#if defined(_WIN32) && !defined(__CYGWIN__)
|
29
|
+
#include "archive_cmdline_private.h"
|
30
|
+
#include "archive_string.h"
|
31
|
+
|
32
|
+
#include "filter_fork.h"
|
33
|
+
|
34
|
+
/* There are some editions of Windows ("nano server," for example) that
|
35
|
+
* do not host user32.dll. If we want to keep running on those editions,
|
36
|
+
* we need to delay-load WaitForInputIdle. */
|
37
|
+
static void *
|
38
|
+
la_GetFunctionUser32(const char *name)
|
39
|
+
{
|
40
|
+
static HINSTANCE lib;
|
41
|
+
static int set;
|
42
|
+
if (!set) {
|
43
|
+
set = 1;
|
44
|
+
lib = LoadLibrary(TEXT("user32.dll"));
|
45
|
+
}
|
46
|
+
if (lib == NULL) {
|
47
|
+
return NULL;
|
48
|
+
}
|
49
|
+
return (void *)GetProcAddress(lib, name);
|
50
|
+
}
|
51
|
+
|
52
|
+
static int
|
53
|
+
la_WaitForInputIdle(HANDLE hProcess, DWORD dwMilliseconds)
|
54
|
+
{
|
55
|
+
static DWORD (WINAPI *f)(HANDLE, DWORD);
|
56
|
+
static int set;
|
57
|
+
|
58
|
+
if (!set) {
|
59
|
+
set = 1;
|
60
|
+
f = la_GetFunctionUser32("WaitForInputIdle");
|
61
|
+
}
|
62
|
+
|
63
|
+
if (!f) {
|
64
|
+
/* An inability to wait for input idle is
|
65
|
+
* not _good_, but it is not catastrophic. */
|
66
|
+
return WAIT_FAILED;
|
67
|
+
}
|
68
|
+
return (*f)(hProcess, dwMilliseconds);
|
69
|
+
}
|
70
|
+
|
71
|
+
int
|
72
|
+
__archive_create_child(const char *cmd, int *child_stdin, int *child_stdout,
|
73
|
+
HANDLE *out_child)
|
74
|
+
{
|
75
|
+
HANDLE childStdout[2], childStdin[2],childStderr;
|
76
|
+
SECURITY_ATTRIBUTES secAtts;
|
77
|
+
STARTUPINFOA staInfo;
|
78
|
+
PROCESS_INFORMATION childInfo;
|
79
|
+
struct archive_string cmdline;
|
80
|
+
struct archive_string fullpath;
|
81
|
+
struct archive_cmdline *acmd;
|
82
|
+
char *arg0, *ext;
|
83
|
+
int i, l;
|
84
|
+
DWORD fl, fl_old;
|
85
|
+
HANDLE child;
|
86
|
+
|
87
|
+
childStdout[0] = childStdout[1] = INVALID_HANDLE_VALUE;
|
88
|
+
childStdin[0] = childStdin[1] = INVALID_HANDLE_VALUE;
|
89
|
+
childStderr = INVALID_HANDLE_VALUE;
|
90
|
+
archive_string_init(&cmdline);
|
91
|
+
archive_string_init(&fullpath);
|
92
|
+
|
93
|
+
acmd = __archive_cmdline_allocate();
|
94
|
+
if (acmd == NULL)
|
95
|
+
goto fail;
|
96
|
+
if (__archive_cmdline_parse(acmd, cmd) != ARCHIVE_OK)
|
97
|
+
goto fail;
|
98
|
+
|
99
|
+
/*
|
100
|
+
* Search the full path of 'path'.
|
101
|
+
* NOTE: This does not need if we give CreateProcessA 'path' as
|
102
|
+
* a part of the cmdline and give CreateProcessA NULL as first
|
103
|
+
* parameter, but I do not like that way.
|
104
|
+
*/
|
105
|
+
ext = strrchr(acmd->path, '.');
|
106
|
+
if (ext == NULL || strlen(ext) > 4)
|
107
|
+
/* 'path' does not have a proper extension, so we have to
|
108
|
+
* give SearchPath() ".exe" as the extension. */
|
109
|
+
ext = ".exe";
|
110
|
+
else
|
111
|
+
ext = NULL;/* 'path' has an extension. */
|
112
|
+
|
113
|
+
fl = MAX_PATH;
|
114
|
+
do {
|
115
|
+
if (archive_string_ensure(&fullpath, fl) == NULL)
|
116
|
+
goto fail;
|
117
|
+
fl_old = fl;
|
118
|
+
fl = SearchPathA(NULL, acmd->path, ext, fl, fullpath.s,
|
119
|
+
&arg0);
|
120
|
+
} while (fl != 0 && fl > fl_old);
|
121
|
+
if (fl == 0)
|
122
|
+
goto fail;
|
123
|
+
|
124
|
+
/*
|
125
|
+
* Make a command line.
|
126
|
+
*/
|
127
|
+
for (l = 0, i = 0; acmd->argv[i] != NULL; i++) {
|
128
|
+
if (i == 0)
|
129
|
+
continue;
|
130
|
+
l += (int)strlen(acmd->argv[i]) + 1;
|
131
|
+
}
|
132
|
+
if (archive_string_ensure(&cmdline, l + 1) == NULL)
|
133
|
+
goto fail;
|
134
|
+
for (i = 0; acmd->argv[i] != NULL; i++) {
|
135
|
+
if (i == 0) {
|
136
|
+
const char *p, *sp;
|
137
|
+
|
138
|
+
if ((p = strchr(acmd->argv[i], '/')) != NULL ||
|
139
|
+
(p = strchr(acmd->argv[i], '\\')) != NULL)
|
140
|
+
p++;
|
141
|
+
else
|
142
|
+
p = acmd->argv[i];
|
143
|
+
if ((sp = strchr(p, ' ')) != NULL)
|
144
|
+
archive_strappend_char(&cmdline, '"');
|
145
|
+
archive_strcat(&cmdline, p);
|
146
|
+
if (sp != NULL)
|
147
|
+
archive_strappend_char(&cmdline, '"');
|
148
|
+
} else {
|
149
|
+
archive_strappend_char(&cmdline, ' ');
|
150
|
+
archive_strcat(&cmdline, acmd->argv[i]);
|
151
|
+
}
|
152
|
+
}
|
153
|
+
if (i <= 1) {
|
154
|
+
const char *sp;
|
155
|
+
|
156
|
+
if ((sp = strchr(arg0, ' ')) != NULL)
|
157
|
+
archive_strappend_char(&cmdline, '"');
|
158
|
+
archive_strcat(&cmdline, arg0);
|
159
|
+
if (sp != NULL)
|
160
|
+
archive_strappend_char(&cmdline, '"');
|
161
|
+
}
|
162
|
+
|
163
|
+
secAtts.nLength = sizeof(SECURITY_ATTRIBUTES);
|
164
|
+
secAtts.bInheritHandle = TRUE;
|
165
|
+
secAtts.lpSecurityDescriptor = NULL;
|
166
|
+
if (CreatePipe(&childStdout[0], &childStdout[1], &secAtts, 0) == 0)
|
167
|
+
goto fail;
|
168
|
+
if (!SetHandleInformation(childStdout[0], HANDLE_FLAG_INHERIT, 0))
|
169
|
+
goto fail;
|
170
|
+
if (CreatePipe(&childStdin[0], &childStdin[1], &secAtts, 0) == 0)
|
171
|
+
goto fail;
|
172
|
+
if (!SetHandleInformation(childStdin[1], HANDLE_FLAG_INHERIT, 0))
|
173
|
+
goto fail;
|
174
|
+
if (DuplicateHandle(GetCurrentProcess(), GetStdHandle(STD_ERROR_HANDLE),
|
175
|
+
GetCurrentProcess(), &childStderr, 0, TRUE,
|
176
|
+
DUPLICATE_SAME_ACCESS) == 0)
|
177
|
+
goto fail;
|
178
|
+
|
179
|
+
memset(&staInfo, 0, sizeof(staInfo));
|
180
|
+
staInfo.cb = sizeof(staInfo);
|
181
|
+
staInfo.hStdError = childStderr;
|
182
|
+
staInfo.hStdOutput = childStdout[1];
|
183
|
+
staInfo.hStdInput = childStdin[0];
|
184
|
+
staInfo.wShowWindow = SW_HIDE;
|
185
|
+
staInfo.dwFlags = STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW;
|
186
|
+
if (CreateProcessA(fullpath.s, cmdline.s, NULL, NULL, TRUE, 0,
|
187
|
+
NULL, NULL, &staInfo, &childInfo) == 0)
|
188
|
+
goto fail;
|
189
|
+
la_WaitForInputIdle(childInfo.hProcess, INFINITE);
|
190
|
+
CloseHandle(childInfo.hProcess);
|
191
|
+
CloseHandle(childInfo.hThread);
|
192
|
+
|
193
|
+
*child_stdout = _open_osfhandle((intptr_t)childStdout[0], _O_RDONLY);
|
194
|
+
*child_stdin = _open_osfhandle((intptr_t)childStdin[1], _O_WRONLY);
|
195
|
+
|
196
|
+
child = OpenProcess(PROCESS_QUERY_INFORMATION, FALSE,
|
197
|
+
childInfo.dwProcessId);
|
198
|
+
if (child == NULL) // INVALID_HANDLE_VALUE ?
|
199
|
+
goto fail;
|
200
|
+
|
201
|
+
*out_child = child;
|
202
|
+
|
203
|
+
CloseHandle(childStdout[1]);
|
204
|
+
CloseHandle(childStdin[0]);
|
205
|
+
|
206
|
+
archive_string_free(&cmdline);
|
207
|
+
archive_string_free(&fullpath);
|
208
|
+
__archive_cmdline_free(acmd);
|
209
|
+
return ARCHIVE_OK;
|
210
|
+
|
211
|
+
fail:
|
212
|
+
if (childStdout[0] != INVALID_HANDLE_VALUE)
|
213
|
+
CloseHandle(childStdout[0]);
|
214
|
+
if (childStdout[1] != INVALID_HANDLE_VALUE)
|
215
|
+
CloseHandle(childStdout[1]);
|
216
|
+
if (childStdin[0] != INVALID_HANDLE_VALUE)
|
217
|
+
CloseHandle(childStdin[0]);
|
218
|
+
if (childStdin[1] != INVALID_HANDLE_VALUE)
|
219
|
+
CloseHandle(childStdin[1]);
|
220
|
+
if (childStderr != INVALID_HANDLE_VALUE)
|
221
|
+
CloseHandle(childStderr);
|
222
|
+
archive_string_free(&cmdline);
|
223
|
+
archive_string_free(&fullpath);
|
224
|
+
__archive_cmdline_free(acmd);
|
225
|
+
return ARCHIVE_FAILED;
|
226
|
+
}
|
227
|
+
|
228
|
+
void
|
229
|
+
__archive_check_child(int in, int out)
|
230
|
+
{
|
231
|
+
(void)in; /* UNUSED */
|
232
|
+
(void)out; /* UNUSED */
|
233
|
+
Sleep(100);
|
234
|
+
}
|
235
|
+
|
236
|
+
#endif /* _WIN32 && !__CYGWIN__ */
|