rugged 1.7.2 → 1.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/rugged/version.rb +1 -1
- data/vendor/libgit2/AUTHORS +1 -0
- data/vendor/libgit2/CMakeLists.txt +23 -10
- data/vendor/libgit2/COPYING +195 -1
- data/vendor/libgit2/cmake/{FindIconv.cmake → FindIntlIconv.cmake} +6 -0
- data/vendor/libgit2/cmake/FindLLHTTP.cmake +39 -0
- data/vendor/libgit2/cmake/SelectGSSAPI.cmake +1 -1
- data/vendor/libgit2/cmake/SelectHTTPParser.cmake +23 -8
- data/vendor/libgit2/cmake/SelectHTTPSBackend.cmake +17 -8
- data/vendor/libgit2/cmake/SelectHashes.cmake +28 -11
- data/vendor/libgit2/cmake/SelectRegex.cmake +6 -1
- data/vendor/libgit2/cmake/SelectSSH.cmake +22 -17
- data/vendor/libgit2/cmake/SelectZlib.cmake +4 -0
- data/vendor/libgit2/deps/llhttp/CMakeLists.txt +8 -0
- data/vendor/libgit2/deps/llhttp/LICENSE-MIT +22 -0
- data/vendor/libgit2/deps/llhttp/api.c +510 -0
- data/vendor/libgit2/deps/llhttp/http.c +170 -0
- data/vendor/libgit2/deps/llhttp/llhttp.c +10168 -0
- data/vendor/libgit2/deps/llhttp/llhttp.h +897 -0
- data/vendor/libgit2/deps/ntlmclient/CMakeLists.txt +1 -1
- data/vendor/libgit2/deps/ntlmclient/crypt_builtin_md4.c +311 -0
- data/vendor/libgit2/deps/ntlmclient/crypt_commoncrypto.c +2 -1
- data/vendor/libgit2/deps/ntlmclient/crypt_mbedtls.c +0 -20
- data/vendor/libgit2/deps/ntlmclient/crypt_openssl.c +4 -4
- data/vendor/libgit2/deps/ntlmclient/ntlm.c +21 -21
- data/vendor/libgit2/deps/ntlmclient/unicode_builtin.c +5 -4
- data/vendor/libgit2/deps/ntlmclient/unicode_iconv.c +2 -1
- data/vendor/libgit2/deps/ntlmclient/utf8.h +1176 -721
- data/vendor/libgit2/deps/ntlmclient/util.h +11 -0
- data/vendor/libgit2/deps/pcre/CMakeLists.txt +1 -0
- data/vendor/libgit2/deps/xdiff/xmerge.c +2 -2
- data/vendor/libgit2/deps/zlib/CMakeLists.txt +6 -1
- data/vendor/libgit2/deps/zlib/LICENSE +22 -0
- data/vendor/libgit2/deps/zlib/adler32.c +5 -27
- data/vendor/libgit2/deps/zlib/crc32.c +94 -167
- data/vendor/libgit2/deps/zlib/deflate.c +358 -435
- data/vendor/libgit2/deps/zlib/deflate.h +41 -10
- data/vendor/libgit2/deps/zlib/gzguts.h +13 -18
- data/vendor/libgit2/deps/zlib/infback.c +17 -30
- data/vendor/libgit2/deps/zlib/inffast.c +1 -4
- data/vendor/libgit2/deps/zlib/inffast.h +1 -1
- data/vendor/libgit2/deps/zlib/inflate.c +36 -102
- data/vendor/libgit2/deps/zlib/inftrees.c +6 -11
- data/vendor/libgit2/deps/zlib/inftrees.h +6 -6
- data/vendor/libgit2/deps/zlib/trees.c +287 -352
- data/vendor/libgit2/deps/zlib/zconf.h +23 -14
- data/vendor/libgit2/deps/zlib/zlib.h +202 -202
- data/vendor/libgit2/deps/zlib/zutil.c +18 -44
- data/vendor/libgit2/deps/zlib/zutil.h +13 -33
- data/vendor/libgit2/include/git2/annotated_commit.h +12 -5
- data/vendor/libgit2/include/git2/apply.h +27 -6
- data/vendor/libgit2/include/git2/attr.h +17 -4
- data/vendor/libgit2/include/git2/blame.h +133 -28
- data/vendor/libgit2/include/git2/blob.h +71 -28
- data/vendor/libgit2/include/git2/branch.h +22 -15
- data/vendor/libgit2/include/git2/buffer.h +6 -4
- data/vendor/libgit2/include/git2/cert.h +2 -1
- data/vendor/libgit2/include/git2/checkout.h +83 -32
- data/vendor/libgit2/include/git2/cherrypick.h +10 -3
- data/vendor/libgit2/include/git2/clone.h +25 -9
- data/vendor/libgit2/include/git2/commit.h +132 -3
- data/vendor/libgit2/include/git2/common.h +120 -63
- data/vendor/libgit2/include/git2/config.h +93 -23
- data/vendor/libgit2/include/git2/credential.h +30 -2
- data/vendor/libgit2/include/git2/credential_helpers.h +1 -0
- data/vendor/libgit2/include/git2/deprecated.h +133 -3
- data/vendor/libgit2/include/git2/describe.h +13 -1
- data/vendor/libgit2/include/git2/diff.h +38 -8
- data/vendor/libgit2/include/git2/email.h +9 -29
- data/vendor/libgit2/include/git2/errors.h +46 -73
- data/vendor/libgit2/include/git2/filter.h +14 -7
- data/vendor/libgit2/include/git2/global.h +8 -1
- data/vendor/libgit2/include/git2/graph.h +3 -2
- data/vendor/libgit2/include/git2/ignore.h +10 -0
- data/vendor/libgit2/include/git2/index.h +99 -14
- data/vendor/libgit2/include/git2/indexer.h +21 -4
- data/vendor/libgit2/include/git2/mailmap.h +7 -1
- data/vendor/libgit2/include/git2/merge.h +46 -1
- data/vendor/libgit2/include/git2/message.h +2 -2
- data/vendor/libgit2/include/git2/net.h +3 -1
- data/vendor/libgit2/include/git2/notes.h +9 -6
- data/vendor/libgit2/include/git2/object.h +9 -8
- data/vendor/libgit2/include/git2/odb.h +91 -49
- data/vendor/libgit2/include/git2/odb_backend.h +80 -52
- data/vendor/libgit2/include/git2/oid.h +23 -24
- data/vendor/libgit2/include/git2/oidarray.h +7 -1
- data/vendor/libgit2/include/git2/pack.h +13 -1
- data/vendor/libgit2/include/git2/patch.h +2 -3
- data/vendor/libgit2/include/git2/pathspec.h +9 -0
- data/vendor/libgit2/include/git2/proxy.h +10 -0
- data/vendor/libgit2/include/git2/rebase.h +9 -6
- data/vendor/libgit2/include/git2/refdb.h +2 -2
- data/vendor/libgit2/include/git2/reflog.h +3 -2
- data/vendor/libgit2/include/git2/refs.h +9 -6
- data/vendor/libgit2/include/git2/refspec.h +14 -4
- data/vendor/libgit2/include/git2/remote.h +94 -18
- data/vendor/libgit2/include/git2/repository.h +57 -21
- data/vendor/libgit2/include/git2/reset.h +16 -3
- data/vendor/libgit2/include/git2/revert.h +9 -4
- data/vendor/libgit2/include/git2/revparse.h +3 -3
- data/vendor/libgit2/include/git2/revwalk.h +3 -2
- data/vendor/libgit2/include/git2/signature.h +46 -1
- data/vendor/libgit2/include/git2/stash.h +17 -3
- data/vendor/libgit2/include/git2/status.h +10 -6
- data/vendor/libgit2/include/git2/stdint.h +87 -85
- data/vendor/libgit2/include/git2/strarray.h +2 -3
- data/vendor/libgit2/include/git2/submodule.h +20 -9
- data/vendor/libgit2/include/git2/sys/alloc.h +12 -0
- data/vendor/libgit2/include/git2/sys/commit.h +77 -3
- data/vendor/libgit2/include/git2/sys/commit_graph.h +103 -62
- data/vendor/libgit2/include/git2/sys/config.h +80 -4
- data/vendor/libgit2/include/git2/sys/credential.h +4 -3
- data/vendor/libgit2/include/git2/sys/diff.h +21 -1
- data/vendor/libgit2/include/git2/sys/email.h +7 -0
- data/vendor/libgit2/include/git2/sys/errors.h +76 -0
- data/vendor/libgit2/include/git2/sys/filter.h +66 -3
- data/vendor/libgit2/include/git2/sys/hashsig.h +11 -0
- data/vendor/libgit2/include/git2/sys/index.h +3 -2
- data/vendor/libgit2/include/git2/sys/mempack.h +32 -2
- data/vendor/libgit2/include/git2/sys/merge.h +55 -7
- data/vendor/libgit2/include/git2/sys/midx.h +43 -4
- data/vendor/libgit2/include/git2/sys/odb_backend.h +7 -3
- data/vendor/libgit2/include/git2/sys/openssl.h +8 -1
- data/vendor/libgit2/include/git2/sys/path.h +12 -1
- data/vendor/libgit2/include/git2/sys/refdb_backend.h +40 -36
- data/vendor/libgit2/include/git2/sys/refs.h +3 -2
- data/vendor/libgit2/include/git2/sys/remote.h +8 -1
- data/vendor/libgit2/include/git2/sys/repository.h +63 -3
- data/vendor/libgit2/include/git2/sys/stream.h +11 -2
- data/vendor/libgit2/include/git2/sys/transport.h +24 -3
- data/vendor/libgit2/include/git2/tag.h +3 -1
- data/vendor/libgit2/include/git2/trace.h +9 -3
- data/vendor/libgit2/include/git2/transaction.h +3 -2
- data/vendor/libgit2/include/git2/transport.h +11 -3
- data/vendor/libgit2/include/git2/tree.h +16 -5
- data/vendor/libgit2/include/git2/types.h +19 -3
- data/vendor/libgit2/include/git2/version.h +44 -8
- data/vendor/libgit2/include/git2/worktree.h +16 -6
- data/vendor/libgit2/src/CMakeLists.txt +6 -4
- data/vendor/libgit2/src/cli/CMakeLists.txt +2 -2
- data/vendor/libgit2/src/cli/cmd.c +1 -1
- data/vendor/libgit2/src/cli/cmd.h +4 -0
- data/vendor/libgit2/src/cli/cmd_blame.c +287 -0
- data/vendor/libgit2/src/cli/cmd_cat_file.c +6 -8
- data/vendor/libgit2/src/cli/cmd_clone.c +5 -7
- data/vendor/libgit2/src/cli/cmd_config.c +241 -0
- data/vendor/libgit2/src/cli/cmd_hash_object.c +6 -8
- data/vendor/libgit2/src/cli/cmd_help.c +6 -7
- data/vendor/libgit2/src/cli/cmd_index_pack.c +114 -0
- data/vendor/libgit2/src/cli/cmd_init.c +102 -0
- data/vendor/libgit2/src/cli/common.c +168 -0
- data/vendor/libgit2/src/cli/common.h +63 -0
- data/vendor/libgit2/src/cli/error.h +1 -1
- data/vendor/libgit2/src/cli/main.c +52 -24
- data/vendor/libgit2/src/cli/opt.c +29 -3
- data/vendor/libgit2/src/cli/opt.h +21 -3
- data/vendor/libgit2/src/cli/opt_usage.c +102 -33
- data/vendor/libgit2/src/cli/opt_usage.h +6 -1
- data/vendor/libgit2/src/cli/progress.c +51 -2
- data/vendor/libgit2/src/cli/progress.h +12 -0
- data/vendor/libgit2/src/cli/unix/sighandler.c +2 -1
- data/vendor/libgit2/src/cli/win32/precompiled.h +1 -1
- data/vendor/libgit2/src/cli/win32/sighandler.c +1 -1
- data/vendor/libgit2/src/libgit2/CMakeLists.txt +26 -8
- data/vendor/libgit2/src/libgit2/apply.c +10 -13
- data/vendor/libgit2/src/libgit2/attr.c +30 -13
- data/vendor/libgit2/src/libgit2/attr_file.c +7 -2
- data/vendor/libgit2/src/libgit2/attr_file.h +2 -0
- data/vendor/libgit2/src/libgit2/attrcache.c +69 -33
- data/vendor/libgit2/src/libgit2/attrcache.h +5 -9
- data/vendor/libgit2/src/libgit2/blame.c +130 -44
- data/vendor/libgit2/src/libgit2/blame.h +1 -0
- data/vendor/libgit2/src/libgit2/cache.c +22 -17
- data/vendor/libgit2/src/libgit2/cache.h +7 -9
- data/vendor/libgit2/src/libgit2/checkout.c +34 -24
- data/vendor/libgit2/src/libgit2/checkout.h +0 -2
- data/vendor/libgit2/src/libgit2/cherrypick.c +1 -2
- data/vendor/libgit2/src/libgit2/clone.c +186 -166
- data/vendor/libgit2/src/libgit2/clone.h +4 -1
- data/vendor/libgit2/src/libgit2/commit.c +92 -0
- data/vendor/libgit2/src/libgit2/commit_graph.c +67 -56
- data/vendor/libgit2/src/libgit2/commit_graph.h +1 -2
- data/vendor/libgit2/src/libgit2/config.c +389 -298
- data/vendor/libgit2/src/libgit2/config.cmake.in +3 -0
- data/vendor/libgit2/src/libgit2/config.h +9 -4
- data/vendor/libgit2/src/libgit2/config_backend.h +8 -10
- data/vendor/libgit2/src/libgit2/config_cache.c +4 -5
- data/vendor/libgit2/src/libgit2/config_file.c +99 -88
- data/vendor/libgit2/src/libgit2/config_list.c +285 -0
- data/vendor/libgit2/src/libgit2/config_list.h +32 -0
- data/vendor/libgit2/src/libgit2/config_mem.c +194 -40
- data/vendor/libgit2/src/libgit2/config_parse.c +10 -9
- data/vendor/libgit2/src/libgit2/config_snapshot.c +24 -31
- data/vendor/libgit2/src/libgit2/describe.c +24 -24
- data/vendor/libgit2/src/libgit2/diff.c +1 -1
- data/vendor/libgit2/src/libgit2/diff_driver.c +12 -19
- data/vendor/libgit2/src/libgit2/diff_driver.h +2 -2
- data/vendor/libgit2/src/libgit2/diff_generate.c +3 -3
- data/vendor/libgit2/src/libgit2/diff_parse.c +2 -2
- data/vendor/libgit2/src/libgit2/diff_print.c +65 -9
- data/vendor/libgit2/src/libgit2/diff_tform.c +36 -8
- data/vendor/libgit2/src/libgit2/email.c +1 -0
- data/vendor/libgit2/src/libgit2/fetch.c +5 -3
- data/vendor/libgit2/src/libgit2/filter.c +5 -5
- data/vendor/libgit2/src/libgit2/git2.rc +3 -3
- data/vendor/libgit2/src/libgit2/grafts.c +18 -20
- data/vendor/libgit2/src/libgit2/grafts.h +0 -1
- data/vendor/libgit2/src/libgit2/graph.c +1 -1
- data/vendor/libgit2/src/libgit2/hashmap_oid.h +30 -0
- data/vendor/libgit2/src/libgit2/ignore.c +9 -5
- data/vendor/libgit2/src/libgit2/index.c +68 -90
- data/vendor/libgit2/src/libgit2/index.h +2 -2
- data/vendor/libgit2/src/libgit2/index_map.c +95 -0
- data/vendor/libgit2/src/libgit2/index_map.h +28 -0
- data/vendor/libgit2/src/libgit2/indexer.c +34 -38
- data/vendor/libgit2/src/libgit2/iterator.c +14 -8
- data/vendor/libgit2/src/libgit2/libgit2.c +153 -368
- data/vendor/libgit2/src/libgit2/mailmap.c +1 -1
- data/vendor/libgit2/src/libgit2/merge.c +42 -37
- data/vendor/libgit2/src/libgit2/merge_driver.c +2 -2
- data/vendor/libgit2/src/libgit2/midx.c +28 -15
- data/vendor/libgit2/src/libgit2/mwindow.c +38 -45
- data/vendor/libgit2/src/libgit2/mwindow.h +4 -0
- data/vendor/libgit2/src/libgit2/object.c +6 -5
- data/vendor/libgit2/src/libgit2/odb.c +5 -4
- data/vendor/libgit2/src/libgit2/odb_mempack.c +49 -17
- data/vendor/libgit2/src/libgit2/odb_pack.c +13 -5
- data/vendor/libgit2/src/libgit2/oid.c +32 -5
- data/vendor/libgit2/src/libgit2/oid.h +11 -0
- data/vendor/libgit2/src/libgit2/pack-objects.c +58 -31
- data/vendor/libgit2/src/libgit2/pack-objects.h +12 -4
- data/vendor/libgit2/src/libgit2/pack.c +30 -24
- data/vendor/libgit2/src/libgit2/pack.h +15 -10
- data/vendor/libgit2/src/libgit2/patch_parse.c +2 -2
- data/vendor/libgit2/src/libgit2/path.c +1 -1
- data/vendor/libgit2/src/libgit2/pathspec.c +1 -1
- data/vendor/libgit2/src/libgit2/push.c +79 -28
- data/vendor/libgit2/src/libgit2/push.h +1 -0
- data/vendor/libgit2/src/libgit2/refdb_fs.c +128 -61
- data/vendor/libgit2/src/libgit2/reflog.c +1 -2
- data/vendor/libgit2/src/libgit2/reflog.h +2 -0
- data/vendor/libgit2/src/libgit2/refs.c +26 -7
- data/vendor/libgit2/src/libgit2/refs.h +6 -1
- data/vendor/libgit2/src/libgit2/refspec.c +28 -1
- data/vendor/libgit2/src/libgit2/refspec.h +8 -0
- data/vendor/libgit2/src/libgit2/remote.c +121 -61
- data/vendor/libgit2/src/libgit2/repository.c +231 -51
- data/vendor/libgit2/src/libgit2/repository.h +10 -6
- data/vendor/libgit2/src/libgit2/revert.c +1 -2
- data/vendor/libgit2/src/libgit2/revparse.c +2 -2
- data/vendor/libgit2/src/libgit2/revwalk.c +13 -10
- data/vendor/libgit2/src/libgit2/revwalk.h +3 -3
- data/vendor/libgit2/src/libgit2/settings.c +468 -0
- data/vendor/libgit2/src/libgit2/settings.h +6 -2
- data/vendor/libgit2/src/libgit2/signature.c +132 -15
- data/vendor/libgit2/src/libgit2/signature.h +0 -1
- data/vendor/libgit2/src/libgit2/status.c +1 -1
- data/vendor/libgit2/src/libgit2/streams/mbedtls.c +54 -60
- data/vendor/libgit2/src/libgit2/streams/openssl.c +32 -7
- data/vendor/libgit2/src/libgit2/streams/openssl.h +2 -0
- data/vendor/libgit2/src/libgit2/streams/openssl_dynamic.c +4 -0
- data/vendor/libgit2/src/libgit2/streams/openssl_dynamic.h +3 -0
- data/vendor/libgit2/src/libgit2/streams/stransport.c +39 -7
- data/vendor/libgit2/src/libgit2/submodule.c +106 -63
- data/vendor/libgit2/src/libgit2/submodule.h +6 -7
- data/vendor/libgit2/src/libgit2/tag.c +1 -1
- data/vendor/libgit2/src/libgit2/trailer.c +6 -6
- data/vendor/libgit2/src/libgit2/transaction.c +26 -20
- data/vendor/libgit2/src/libgit2/transaction.h +4 -1
- data/vendor/libgit2/src/libgit2/transport.c +4 -1
- data/vendor/libgit2/src/libgit2/transports/credential.c +1 -1
- data/vendor/libgit2/src/libgit2/transports/http.c +1 -2
- data/vendor/libgit2/src/libgit2/transports/http.h +0 -10
- data/vendor/libgit2/src/libgit2/transports/httpclient.c +112 -72
- data/vendor/libgit2/src/libgit2/transports/httpparser.c +128 -0
- data/vendor/libgit2/src/libgit2/transports/httpparser.h +99 -0
- data/vendor/libgit2/src/libgit2/transports/local.c +8 -7
- data/vendor/libgit2/src/libgit2/transports/smart.c +20 -8
- data/vendor/libgit2/src/libgit2/transports/smart.h +4 -2
- data/vendor/libgit2/src/libgit2/transports/smart_pkt.c +2 -2
- data/vendor/libgit2/src/libgit2/transports/smart_protocol.c +55 -10
- data/vendor/libgit2/src/libgit2/transports/ssh.c +41 -1103
- data/vendor/libgit2/src/libgit2/transports/ssh_exec.c +347 -0
- data/vendor/libgit2/src/libgit2/transports/ssh_exec.h +26 -0
- data/vendor/libgit2/src/libgit2/transports/ssh_libssh2.c +1126 -0
- data/vendor/libgit2/src/libgit2/transports/ssh_libssh2.h +28 -0
- data/vendor/libgit2/src/libgit2/transports/winhttp.c +35 -7
- data/vendor/libgit2/src/libgit2/tree.c +34 -26
- data/vendor/libgit2/src/libgit2/tree.h +3 -2
- data/vendor/libgit2/src/libgit2/worktree.c +14 -17
- data/vendor/libgit2/src/util/CMakeLists.txt +4 -6
- data/vendor/libgit2/src/util/alloc.c +4 -1
- data/vendor/libgit2/src/util/allocators/debugalloc.c +73 -0
- data/vendor/libgit2/src/{cli/cli.h → util/allocators/debugalloc.h} +6 -9
- data/vendor/libgit2/src/util/allocators/stdalloc.c +0 -10
- data/vendor/libgit2/src/util/array.h +18 -17
- data/vendor/libgit2/src/util/cc-compat.h +2 -0
- data/vendor/libgit2/src/util/ctype_compat.h +70 -0
- data/vendor/libgit2/src/util/date.c +22 -14
- data/vendor/libgit2/src/util/date.h +12 -0
- data/vendor/libgit2/src/util/errors.c +401 -0
- data/vendor/libgit2/src/{libgit2 → util}/errors.h +21 -17
- data/vendor/libgit2/src/util/fs_path.c +15 -4
- data/vendor/libgit2/src/util/fs_path.h +23 -0
- data/vendor/libgit2/src/util/futils.c +6 -5
- data/vendor/libgit2/src/util/futils.h +13 -4
- data/vendor/libgit2/src/util/git2_features.h.in +12 -1
- data/vendor/libgit2/src/util/git2_util.h +6 -0
- data/vendor/libgit2/src/util/hash/openssl.c +152 -0
- data/vendor/libgit2/src/util/hash/openssl.h +17 -1
- data/vendor/libgit2/src/util/hash/sha.h +4 -1
- data/vendor/libgit2/src/util/hashmap.h +424 -0
- data/vendor/libgit2/src/util/hashmap_str.h +43 -0
- data/vendor/libgit2/src/util/integer.h +3 -1
- data/vendor/libgit2/src/util/net.c +13 -7
- data/vendor/libgit2/src/util/net.h +2 -0
- data/vendor/libgit2/src/util/pool.c +1 -1
- data/vendor/libgit2/src/util/pool.h +5 -0
- data/vendor/libgit2/src/util/pqueue.h +1 -1
- data/vendor/libgit2/src/util/process.h +222 -0
- data/vendor/libgit2/src/util/rand.c +1 -7
- data/vendor/libgit2/src/util/regexp.c +1 -1
- data/vendor/libgit2/src/util/sortedcache.c +14 -13
- data/vendor/libgit2/src/util/sortedcache.h +3 -3
- data/vendor/libgit2/src/util/str.c +2 -2
- data/vendor/libgit2/src/util/strlist.c +108 -0
- data/vendor/libgit2/src/util/strlist.h +36 -0
- data/vendor/libgit2/src/util/unix/posix.h +0 -2
- data/vendor/libgit2/src/util/unix/process.c +629 -0
- data/vendor/libgit2/src/util/unix/realpath.c +23 -5
- data/vendor/libgit2/src/util/util.c +2 -2
- data/vendor/libgit2/src/util/util.h +4 -38
- data/vendor/libgit2/src/util/vector.c +3 -3
- data/vendor/libgit2/src/util/vector.h +2 -2
- data/vendor/libgit2/src/util/win32/posix_w32.c +29 -6
- data/vendor/libgit2/src/util/win32/process.c +506 -0
- metadata +45 -28
- data/vendor/libgit2/deps/http-parser/CMakeLists.txt +0 -6
- data/vendor/libgit2/deps/http-parser/COPYING +0 -23
- data/vendor/libgit2/deps/http-parser/http_parser.c +0 -2182
- data/vendor/libgit2/deps/http-parser/http_parser.h +0 -305
- data/vendor/libgit2/deps/zlib/COPYING +0 -27
- data/vendor/libgit2/include/git2/sys/reflog.h +0 -21
- data/vendor/libgit2/src/libgit2/config_entries.c +0 -237
- data/vendor/libgit2/src/libgit2/config_entries.h +0 -24
- data/vendor/libgit2/src/libgit2/errors.c +0 -293
- data/vendor/libgit2/src/libgit2/idxmap.c +0 -157
- data/vendor/libgit2/src/libgit2/idxmap.h +0 -177
- data/vendor/libgit2/src/libgit2/libgit2.h +0 -15
- data/vendor/libgit2/src/libgit2/offmap.c +0 -101
- data/vendor/libgit2/src/libgit2/offmap.h +0 -133
- data/vendor/libgit2/src/libgit2/oidmap.c +0 -107
- data/vendor/libgit2/src/libgit2/oidmap.h +0 -128
- data/vendor/libgit2/src/libgit2/threadstate.c +0 -97
- data/vendor/libgit2/src/libgit2/threadstate.h +0 -22
- data/vendor/libgit2/src/libgit2/transports/ssh.h +0 -14
- data/vendor/libgit2/src/util/khash.h +0 -615
- data/vendor/libgit2/src/util/strmap.c +0 -100
- data/vendor/libgit2/src/util/strmap.h +0 -131
- /data/vendor/libgit2/cmake/{FindHTTPParser.cmake → FindHTTP_Parser.cmake} +0 -0
@@ -0,0 +1,347 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (C) the libgit2 contributors. All rights reserved.
|
3
|
+
*
|
4
|
+
* This file is part of libgit2, distributed under the GNU GPL v2 with
|
5
|
+
* a Linking Exception. For full terms see the included COPYING file.
|
6
|
+
*/
|
7
|
+
|
8
|
+
#include "ssh_exec.h"
|
9
|
+
|
10
|
+
#ifdef GIT_SSH_EXEC
|
11
|
+
|
12
|
+
#include "common.h"
|
13
|
+
|
14
|
+
#include "config.h"
|
15
|
+
#include "net.h"
|
16
|
+
#include "path.h"
|
17
|
+
#include "futils.h"
|
18
|
+
#include "process.h"
|
19
|
+
#include "transports/smart.h"
|
20
|
+
|
21
|
+
typedef struct {
|
22
|
+
git_smart_subtransport_stream parent;
|
23
|
+
} ssh_exec_subtransport_stream;
|
24
|
+
|
25
|
+
typedef struct {
|
26
|
+
git_smart_subtransport parent;
|
27
|
+
git_transport *owner;
|
28
|
+
|
29
|
+
ssh_exec_subtransport_stream *current_stream;
|
30
|
+
|
31
|
+
char *cmd_uploadpack;
|
32
|
+
char *cmd_receivepack;
|
33
|
+
|
34
|
+
git_smart_service_t action;
|
35
|
+
git_process *process;
|
36
|
+
} ssh_exec_subtransport;
|
37
|
+
|
38
|
+
static int ssh_exec_subtransport_stream_read(
|
39
|
+
git_smart_subtransport_stream *s,
|
40
|
+
char *buffer,
|
41
|
+
size_t buf_size,
|
42
|
+
size_t *bytes_read)
|
43
|
+
{
|
44
|
+
ssh_exec_subtransport *transport;
|
45
|
+
ssh_exec_subtransport_stream *stream = (ssh_exec_subtransport_stream *)s;
|
46
|
+
ssize_t ret;
|
47
|
+
|
48
|
+
GIT_ASSERT_ARG(stream);
|
49
|
+
GIT_ASSERT(stream->parent.subtransport);
|
50
|
+
|
51
|
+
transport = (ssh_exec_subtransport *)stream->parent.subtransport;
|
52
|
+
|
53
|
+
if ((ret = git_process_read(transport->process, buffer, buf_size)) < 0) {
|
54
|
+
return (int)ret;
|
55
|
+
}
|
56
|
+
|
57
|
+
*bytes_read = (size_t)ret;
|
58
|
+
return 0;
|
59
|
+
}
|
60
|
+
|
61
|
+
static int ssh_exec_subtransport_stream_write(
|
62
|
+
git_smart_subtransport_stream *s,
|
63
|
+
const char *buffer,
|
64
|
+
size_t len)
|
65
|
+
{
|
66
|
+
ssh_exec_subtransport *transport;
|
67
|
+
ssh_exec_subtransport_stream *stream = (ssh_exec_subtransport_stream *)s;
|
68
|
+
ssize_t ret;
|
69
|
+
|
70
|
+
GIT_ASSERT(stream && stream->parent.subtransport);
|
71
|
+
|
72
|
+
transport = (ssh_exec_subtransport *)stream->parent.subtransport;
|
73
|
+
|
74
|
+
while (len > 0) {
|
75
|
+
if ((ret = git_process_write(transport->process, buffer, len)) < 0)
|
76
|
+
return (int)ret;
|
77
|
+
|
78
|
+
len -= ret;
|
79
|
+
}
|
80
|
+
|
81
|
+
return 0;
|
82
|
+
}
|
83
|
+
|
84
|
+
static void ssh_exec_subtransport_stream_free(git_smart_subtransport_stream *s)
|
85
|
+
{
|
86
|
+
ssh_exec_subtransport_stream *stream = (ssh_exec_subtransport_stream *)s;
|
87
|
+
|
88
|
+
git__free(stream);
|
89
|
+
}
|
90
|
+
|
91
|
+
static int ssh_exec_subtransport_stream_init(
|
92
|
+
ssh_exec_subtransport_stream **out,
|
93
|
+
ssh_exec_subtransport *transport)
|
94
|
+
{
|
95
|
+
GIT_ASSERT_ARG(out);
|
96
|
+
|
97
|
+
*out = git__calloc(sizeof(ssh_exec_subtransport_stream), 1);
|
98
|
+
GIT_ERROR_CHECK_ALLOC(*out);
|
99
|
+
|
100
|
+
(*out)->parent.subtransport = &transport->parent;
|
101
|
+
(*out)->parent.read = ssh_exec_subtransport_stream_read;
|
102
|
+
(*out)->parent.write = ssh_exec_subtransport_stream_write;
|
103
|
+
(*out)->parent.free = ssh_exec_subtransport_stream_free;
|
104
|
+
|
105
|
+
return 0;
|
106
|
+
}
|
107
|
+
|
108
|
+
GIT_INLINE(int) ensure_transport_state(
|
109
|
+
ssh_exec_subtransport *transport,
|
110
|
+
git_smart_service_t expected,
|
111
|
+
git_smart_service_t next)
|
112
|
+
{
|
113
|
+
if (transport->action != expected && transport->action != next) {
|
114
|
+
git_error_set(GIT_ERROR_NET, "invalid transport state");
|
115
|
+
|
116
|
+
return -1;
|
117
|
+
}
|
118
|
+
|
119
|
+
return 0;
|
120
|
+
}
|
121
|
+
|
122
|
+
static int get_ssh_cmdline(
|
123
|
+
git_str *out,
|
124
|
+
ssh_exec_subtransport *transport,
|
125
|
+
git_net_url *url,
|
126
|
+
const char *command)
|
127
|
+
{
|
128
|
+
git_remote *remote = ((transport_smart *)transport->owner)->owner;
|
129
|
+
git_repository *repo = remote->repo;
|
130
|
+
git_config *cfg;
|
131
|
+
git_str ssh_cmd = GIT_STR_INIT;
|
132
|
+
const char *default_ssh_cmd = "ssh";
|
133
|
+
int error;
|
134
|
+
|
135
|
+
/*
|
136
|
+
* Safety check: like git, we forbid paths that look like an
|
137
|
+
* option as that could lead to injection to ssh that can make
|
138
|
+
* us do unexpected things
|
139
|
+
*/
|
140
|
+
if (git_process__is_cmdline_option(url->username)) {
|
141
|
+
git_error_set(GIT_ERROR_NET, "cannot ssh: username '%s' is ambiguous with command-line option", url->username);
|
142
|
+
return -1;
|
143
|
+
} else if (git_process__is_cmdline_option(url->host)) {
|
144
|
+
git_error_set(GIT_ERROR_NET, "cannot ssh: host '%s' is ambiguous with command-line option", url->host);
|
145
|
+
return -1;
|
146
|
+
} else if (git_process__is_cmdline_option(url->path)) {
|
147
|
+
git_error_set(GIT_ERROR_NET, "cannot ssh: path '%s' is ambiguous with command-line option", url->path);
|
148
|
+
return -1;
|
149
|
+
}
|
150
|
+
|
151
|
+
if ((error = git_repository_config_snapshot(&cfg, repo)) < 0)
|
152
|
+
return error;
|
153
|
+
|
154
|
+
if ((error = git__getenv(&ssh_cmd, "GIT_SSH")) == 0)
|
155
|
+
;
|
156
|
+
else if (error != GIT_ENOTFOUND)
|
157
|
+
goto done;
|
158
|
+
else if ((error = git_config__get_string_buf(&ssh_cmd, cfg, "core.sshcommand")) < 0 && error != GIT_ENOTFOUND)
|
159
|
+
goto done;
|
160
|
+
|
161
|
+
error = git_str_printf(out, "%s %s %s \"%s%s%s\" \"%s\" \"%s\"",
|
162
|
+
ssh_cmd.size > 0 ? ssh_cmd.ptr : default_ssh_cmd,
|
163
|
+
url->port_specified ? "-p" : "",
|
164
|
+
url->port_specified ? url->port : "",
|
165
|
+
url->username ? url->username : "",
|
166
|
+
url->username ? "@" : "",
|
167
|
+
url->host,
|
168
|
+
command,
|
169
|
+
url->path);
|
170
|
+
|
171
|
+
done:
|
172
|
+
git_str_dispose(&ssh_cmd);
|
173
|
+
git_config_free(cfg);
|
174
|
+
return error;
|
175
|
+
}
|
176
|
+
|
177
|
+
static int start_ssh(
|
178
|
+
ssh_exec_subtransport *transport,
|
179
|
+
git_smart_service_t action,
|
180
|
+
const char *sshpath)
|
181
|
+
{
|
182
|
+
const char *env[] = { "GIT_DIR=" };
|
183
|
+
|
184
|
+
git_process_options process_opts = GIT_PROCESS_OPTIONS_INIT;
|
185
|
+
git_net_url url = GIT_NET_URL_INIT;
|
186
|
+
git_str ssh_cmdline = GIT_STR_INIT;
|
187
|
+
const char *command;
|
188
|
+
int error;
|
189
|
+
|
190
|
+
process_opts.capture_in = 1;
|
191
|
+
process_opts.capture_out = 1;
|
192
|
+
process_opts.capture_err = 0;
|
193
|
+
|
194
|
+
switch (action) {
|
195
|
+
case GIT_SERVICE_UPLOADPACK_LS:
|
196
|
+
command = transport->cmd_uploadpack ?
|
197
|
+
transport->cmd_uploadpack : "git-upload-pack";
|
198
|
+
break;
|
199
|
+
case GIT_SERVICE_RECEIVEPACK_LS:
|
200
|
+
command = transport->cmd_receivepack ?
|
201
|
+
transport->cmd_receivepack : "git-receive-pack";
|
202
|
+
break;
|
203
|
+
default:
|
204
|
+
git_error_set(GIT_ERROR_NET, "invalid action");
|
205
|
+
error = -1;
|
206
|
+
goto done;
|
207
|
+
}
|
208
|
+
|
209
|
+
if (git_net_str_is_url(sshpath))
|
210
|
+
error = git_net_url_parse(&url, sshpath);
|
211
|
+
else
|
212
|
+
error = git_net_url_parse_scp(&url, sshpath);
|
213
|
+
|
214
|
+
if (error < 0)
|
215
|
+
goto done;
|
216
|
+
|
217
|
+
if ((error = get_ssh_cmdline(&ssh_cmdline, transport, &url, command)) < 0)
|
218
|
+
goto done;
|
219
|
+
|
220
|
+
if ((error = git_process_new_from_cmdline(&transport->process,
|
221
|
+
ssh_cmdline.ptr, env, ARRAY_SIZE(env), &process_opts)) < 0 ||
|
222
|
+
(error = git_process_start(transport->process)) < 0) {
|
223
|
+
git_process_free(transport->process);
|
224
|
+
transport->process = NULL;
|
225
|
+
goto done;
|
226
|
+
}
|
227
|
+
|
228
|
+
done:
|
229
|
+
git_str_dispose(&ssh_cmdline);
|
230
|
+
git_net_url_dispose(&url);
|
231
|
+
return error;
|
232
|
+
}
|
233
|
+
|
234
|
+
static int ssh_exec_subtransport_action(
|
235
|
+
git_smart_subtransport_stream **out,
|
236
|
+
git_smart_subtransport *t,
|
237
|
+
const char *sshpath,
|
238
|
+
git_smart_service_t action)
|
239
|
+
{
|
240
|
+
ssh_exec_subtransport *transport = (ssh_exec_subtransport *)t;
|
241
|
+
ssh_exec_subtransport_stream *stream = NULL;
|
242
|
+
git_smart_service_t expected;
|
243
|
+
int error;
|
244
|
+
|
245
|
+
switch (action) {
|
246
|
+
case GIT_SERVICE_UPLOADPACK_LS:
|
247
|
+
case GIT_SERVICE_RECEIVEPACK_LS:
|
248
|
+
if ((error = ensure_transport_state(transport, 0, 0)) < 0 ||
|
249
|
+
(error = ssh_exec_subtransport_stream_init(&stream, transport)) < 0 ||
|
250
|
+
(error = start_ssh(transport, action, sshpath)) < 0)
|
251
|
+
goto on_error;
|
252
|
+
|
253
|
+
transport->current_stream = stream;
|
254
|
+
break;
|
255
|
+
|
256
|
+
case GIT_SERVICE_UPLOADPACK:
|
257
|
+
case GIT_SERVICE_RECEIVEPACK:
|
258
|
+
expected = (action == GIT_SERVICE_UPLOADPACK) ?
|
259
|
+
GIT_SERVICE_UPLOADPACK_LS : GIT_SERVICE_RECEIVEPACK_LS;
|
260
|
+
|
261
|
+
if ((error = ensure_transport_state(transport, expected, action)) < 0)
|
262
|
+
goto on_error;
|
263
|
+
|
264
|
+
break;
|
265
|
+
|
266
|
+
default:
|
267
|
+
git_error_set(GIT_ERROR_INVALID, "invalid service request");
|
268
|
+
goto on_error;
|
269
|
+
}
|
270
|
+
|
271
|
+
transport->action = action;
|
272
|
+
*out = &transport->current_stream->parent;
|
273
|
+
|
274
|
+
return 0;
|
275
|
+
|
276
|
+
on_error:
|
277
|
+
if (stream != NULL)
|
278
|
+
ssh_exec_subtransport_stream_free(&stream->parent);
|
279
|
+
|
280
|
+
return -1;
|
281
|
+
}
|
282
|
+
|
283
|
+
static int ssh_exec_subtransport_close(git_smart_subtransport *t)
|
284
|
+
{
|
285
|
+
ssh_exec_subtransport *transport = (ssh_exec_subtransport *)t;
|
286
|
+
|
287
|
+
if (transport->process) {
|
288
|
+
git_process_close(transport->process);
|
289
|
+
git_process_free(transport->process);
|
290
|
+
transport->process = NULL;
|
291
|
+
}
|
292
|
+
|
293
|
+
transport->action = 0;
|
294
|
+
|
295
|
+
return 0;
|
296
|
+
}
|
297
|
+
|
298
|
+
static void ssh_exec_subtransport_free(git_smart_subtransport *t)
|
299
|
+
{
|
300
|
+
ssh_exec_subtransport *transport = (ssh_exec_subtransport *)t;
|
301
|
+
|
302
|
+
git__free(transport->cmd_uploadpack);
|
303
|
+
git__free(transport->cmd_receivepack);
|
304
|
+
git__free(transport);
|
305
|
+
}
|
306
|
+
|
307
|
+
int git_smart_subtransport_ssh_exec(
|
308
|
+
git_smart_subtransport **out,
|
309
|
+
git_transport *owner,
|
310
|
+
void *payload)
|
311
|
+
{
|
312
|
+
ssh_exec_subtransport *transport;
|
313
|
+
|
314
|
+
GIT_UNUSED(payload);
|
315
|
+
|
316
|
+
transport = git__calloc(sizeof(ssh_exec_subtransport), 1);
|
317
|
+
GIT_ERROR_CHECK_ALLOC(transport);
|
318
|
+
|
319
|
+
transport->owner = owner;
|
320
|
+
transport->parent.action = ssh_exec_subtransport_action;
|
321
|
+
transport->parent.close = ssh_exec_subtransport_close;
|
322
|
+
transport->parent.free = ssh_exec_subtransport_free;
|
323
|
+
|
324
|
+
*out = (git_smart_subtransport *) transport;
|
325
|
+
return 0;
|
326
|
+
}
|
327
|
+
|
328
|
+
int git_smart_subtransport_ssh_exec_set_paths(
|
329
|
+
git_smart_subtransport *subtransport,
|
330
|
+
const char *cmd_uploadpack,
|
331
|
+
const char *cmd_receivepack)
|
332
|
+
{
|
333
|
+
ssh_exec_subtransport *t = (ssh_exec_subtransport *)subtransport;
|
334
|
+
|
335
|
+
git__free(t->cmd_uploadpack);
|
336
|
+
git__free(t->cmd_receivepack);
|
337
|
+
|
338
|
+
t->cmd_uploadpack = git__strdup(cmd_uploadpack);
|
339
|
+
GIT_ERROR_CHECK_ALLOC(t->cmd_uploadpack);
|
340
|
+
|
341
|
+
t->cmd_receivepack = git__strdup(cmd_receivepack);
|
342
|
+
GIT_ERROR_CHECK_ALLOC(t->cmd_receivepack);
|
343
|
+
|
344
|
+
return 0;
|
345
|
+
}
|
346
|
+
|
347
|
+
#endif
|
@@ -0,0 +1,26 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (C) the libgit2 contributors. All rights reserved.
|
3
|
+
*
|
4
|
+
* This file is part of libgit2, distributed under the GNU GPL v2 with
|
5
|
+
* a Linking Exception. For full terms see the included COPYING file.
|
6
|
+
*/
|
7
|
+
#ifndef INCLUDE_transports_ssh_exec_h__
|
8
|
+
#define INCLUDE_transports_ssh_exec_h__
|
9
|
+
|
10
|
+
#include "common.h"
|
11
|
+
|
12
|
+
#include "git2.h"
|
13
|
+
#include "git2/transport.h"
|
14
|
+
#include "git2/sys/transport.h"
|
15
|
+
|
16
|
+
int git_smart_subtransport_ssh_exec(
|
17
|
+
git_smart_subtransport **out,
|
18
|
+
git_transport *owner,
|
19
|
+
void *param);
|
20
|
+
|
21
|
+
int git_smart_subtransport_ssh_exec_set_paths(
|
22
|
+
git_smart_subtransport *subtransport,
|
23
|
+
const char *cmd_uploadpack,
|
24
|
+
const char *cmd_receivepack);
|
25
|
+
|
26
|
+
#endif
|