rugged 1.0.1 → 1.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +1 -0
- data/README.md +1 -1
- data/ext/rugged/rugged.c +7 -4
- data/ext/rugged/rugged_commit.c +1 -1
- data/ext/rugged/rugged_object.c +1 -1
- data/ext/rugged/rugged_repo.c +3 -3
- data/lib/rugged/commit.rb +16 -2
- data/lib/rugged/repository.rb +2 -2
- data/lib/rugged/version.rb +1 -1
- data/vendor/libgit2/CMakeLists.txt +41 -74
- data/vendor/libgit2/COPYING +109 -1
- data/vendor/libgit2/cmake/{Modules/AddCFlagIfSupported.cmake → AddCFlagIfSupported.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/EnableWarnings.cmake → EnableWarnings.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/FindCoreFoundation.cmake → FindCoreFoundation.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/FindGSSAPI.cmake → FindGSSAPI.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/FindGSSFramework.cmake → FindGSSFramework.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/FindHTTP_Parser.cmake → FindHTTP_Parser.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/FindIconv.cmake → FindIconv.cmake} +0 -0
- data/vendor/libgit2/cmake/FindLibSSH2.cmake +13 -0
- data/vendor/libgit2/cmake/{Modules/FindPCRE.cmake → FindPCRE.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/FindPCRE2.cmake → FindPCRE2.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/FindPkgLibraries.cmake → FindPkgLibraries.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/FindSecurity.cmake → FindSecurity.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/FindStatNsec.cmake → FindStatNsec.cmake} +0 -0
- data/vendor/libgit2/cmake/Findfutimens.cmake +14 -0
- data/vendor/libgit2/cmake/{Modules/FindmbedTLS.cmake → FindmbedTLS.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/IdeSplitSources.cmake → IdeSplitSources.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/PkgBuildConfig.cmake → PkgBuildConfig.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/SanitizeBool.cmake → SanitizeBool.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/SelectGSSAPI.cmake → SelectGSSAPI.cmake} +18 -26
- data/vendor/libgit2/cmake/{Modules/SelectHTTPSBackend.cmake → SelectHTTPSBackend.cmake} +29 -32
- data/vendor/libgit2/cmake/{Modules/SelectHashes.cmake → SelectHashes.cmake} +21 -28
- data/vendor/libgit2/deps/chromium-zlib/CMakeLists.txt +101 -0
- data/vendor/libgit2/deps/http-parser/CMakeLists.txt +4 -3
- data/vendor/libgit2/deps/ntlmclient/CMakeLists.txt +24 -10
- data/vendor/libgit2/deps/ntlmclient/compat.h +0 -27
- data/vendor/libgit2/deps/ntlmclient/crypt.h +14 -9
- data/vendor/libgit2/deps/ntlmclient/crypt_commoncrypto.c +20 -20
- data/vendor/libgit2/deps/ntlmclient/crypt_commoncrypto.h +3 -3
- data/vendor/libgit2/deps/ntlmclient/crypt_mbedtls.c +37 -36
- data/vendor/libgit2/deps/ntlmclient/crypt_mbedtls.h +4 -3
- data/vendor/libgit2/deps/ntlmclient/crypt_openssl.c +178 -51
- data/vendor/libgit2/deps/ntlmclient/crypt_openssl.h +74 -5
- data/vendor/libgit2/deps/ntlmclient/ntlm.c +164 -135
- data/vendor/libgit2/deps/ntlmclient/ntlm.h +13 -9
- data/vendor/libgit2/deps/ntlmclient/ntlmclient.h +16 -3
- data/vendor/libgit2/deps/ntlmclient/unicode.h +10 -4
- data/vendor/libgit2/deps/ntlmclient/unicode_builtin.c +16 -27
- data/vendor/libgit2/deps/ntlmclient/unicode_builtin.h +20 -0
- data/vendor/libgit2/deps/ntlmclient/unicode_iconv.c +28 -52
- data/vendor/libgit2/deps/ntlmclient/unicode_iconv.h +22 -0
- data/vendor/libgit2/deps/ntlmclient/util.c +15 -1
- data/vendor/libgit2/deps/ntlmclient/util.h +2 -1
- data/vendor/libgit2/deps/pcre/LICENCE +93 -0
- data/vendor/libgit2/deps/pcre/pcre.h +2 -2
- data/vendor/libgit2/deps/pcre/pcre_compile.c +29 -17
- data/vendor/libgit2/deps/pcre/pcre_jit_compile.c +4 -4
- data/vendor/libgit2/deps/pcre/pcreposix.c +2 -3
- data/vendor/libgit2/deps/zlib/CMakeLists.txt +6 -5
- data/vendor/libgit2/deps/zlib/deflate.c +1 -0
- data/vendor/libgit2/include/git2/annotated_commit.h +1 -1
- data/vendor/libgit2/include/git2/apply.h +2 -0
- data/vendor/libgit2/include/git2/attr.h +95 -0
- data/vendor/libgit2/include/git2/blame.h +95 -42
- data/vendor/libgit2/include/git2/blob.h +37 -3
- data/vendor/libgit2/include/git2/branch.h +25 -0
- data/vendor/libgit2/include/git2/cert.h +42 -5
- data/vendor/libgit2/include/git2/checkout.h +28 -12
- data/vendor/libgit2/include/git2/clone.h +1 -1
- data/vendor/libgit2/include/git2/commit.h +35 -19
- data/vendor/libgit2/include/git2/common.h +51 -6
- data/vendor/libgit2/include/git2/config.h +1 -1
- data/vendor/libgit2/include/git2/deprecated.h +368 -8
- data/vendor/libgit2/include/git2/diff.h +34 -113
- data/vendor/libgit2/include/git2/email.h +127 -0
- data/vendor/libgit2/include/git2/errors.h +8 -7
- data/vendor/libgit2/include/git2/filter.h +63 -17
- data/vendor/libgit2/include/git2/graph.h +20 -2
- data/vendor/libgit2/include/git2/index.h +4 -5
- data/vendor/libgit2/include/git2/indexer.h +2 -1
- data/vendor/libgit2/include/git2/notes.h +2 -2
- data/vendor/libgit2/include/git2/odb.h +44 -20
- data/vendor/libgit2/include/git2/oidarray.h +5 -8
- data/vendor/libgit2/include/git2/pack.h +1 -1
- data/vendor/libgit2/include/git2/patch.h +8 -0
- data/vendor/libgit2/include/git2/rebase.h +25 -1
- data/vendor/libgit2/include/git2/refs.h +9 -5
- data/vendor/libgit2/include/git2/remote.h +62 -9
- data/vendor/libgit2/include/git2/repository.h +107 -62
- data/vendor/libgit2/include/git2/revparse.h +5 -5
- data/vendor/libgit2/include/git2/stash.h +1 -1
- data/vendor/libgit2/include/git2/status.h +115 -59
- data/vendor/libgit2/include/git2/stdint.h +3 -3
- data/vendor/libgit2/include/git2/strarray.h +6 -10
- data/vendor/libgit2/include/git2/submodule.h +9 -0
- data/vendor/libgit2/include/git2/sys/commit_graph.h +174 -0
- data/vendor/libgit2/include/git2/sys/email.h +45 -0
- data/vendor/libgit2/include/git2/sys/filter.h +49 -28
- data/vendor/libgit2/include/git2/sys/midx.h +74 -0
- data/vendor/libgit2/include/git2/sys/odb_backend.h +7 -0
- data/vendor/libgit2/include/git2/sys/transport.h +1 -0
- data/vendor/libgit2/include/git2/tag.h +12 -0
- data/vendor/libgit2/include/git2/transport.h +1 -1
- data/vendor/libgit2/include/git2/tree.h +2 -14
- data/vendor/libgit2/include/git2/types.h +9 -0
- data/vendor/libgit2/include/git2/version.h +4 -4
- data/vendor/libgit2/include/git2/worktree.h +1 -0
- data/vendor/libgit2/include/git2.h +1 -0
- data/vendor/libgit2/src/CMakeLists.txt +84 -44
- data/vendor/libgit2/src/alloc.c +21 -8
- data/vendor/libgit2/src/allocators/failalloc.c +92 -0
- data/vendor/libgit2/src/allocators/failalloc.h +23 -0
- data/vendor/libgit2/src/allocators/stdalloc.c +41 -10
- data/vendor/libgit2/src/allocators/win32_leakcheck.c +118 -0
- data/vendor/libgit2/src/allocators/{win32_crtdbg.h → win32_leakcheck.h} +3 -3
- data/vendor/libgit2/src/annotated_commit.c +21 -9
- data/vendor/libgit2/src/apply.c +21 -8
- data/vendor/libgit2/src/array.h +11 -11
- data/vendor/libgit2/src/assert_safe.h +58 -0
- data/vendor/libgit2/src/attr.c +192 -70
- data/vendor/libgit2/src/attr_file.c +99 -41
- data/vendor/libgit2/src/attr_file.h +32 -11
- data/vendor/libgit2/src/attrcache.c +44 -40
- data/vendor/libgit2/src/attrcache.h +4 -5
- data/vendor/libgit2/src/blame.c +32 -19
- data/vendor/libgit2/src/blame_git.c +7 -4
- data/vendor/libgit2/src/blob.c +60 -32
- data/vendor/libgit2/src/branch.c +87 -37
- data/vendor/libgit2/src/buffer.c +349 -29
- data/vendor/libgit2/src/buffer.h +154 -2
- data/vendor/libgit2/src/cache.c +3 -24
- data/vendor/libgit2/src/cache.h +7 -7
- data/vendor/libgit2/src/cc-compat.h +10 -8
- data/vendor/libgit2/src/checkout.c +103 -105
- data/vendor/libgit2/src/cherrypick.c +8 -2
- data/vendor/libgit2/src/clone.c +105 -30
- data/vendor/libgit2/src/commit.c +41 -28
- data/vendor/libgit2/src/commit_graph.c +1209 -0
- data/vendor/libgit2/src/commit_graph.h +162 -0
- data/vendor/libgit2/src/commit_list.c +46 -0
- data/vendor/libgit2/src/commit_list.h +2 -0
- data/vendor/libgit2/src/common.h +26 -2
- data/vendor/libgit2/src/config.c +41 -23
- data/vendor/libgit2/src/config_cache.c +9 -4
- data/vendor/libgit2/src/config_entries.c +35 -27
- data/vendor/libgit2/src/config_file.c +17 -9
- data/vendor/libgit2/src/config_parse.c +6 -8
- data/vendor/libgit2/src/config_snapshot.c +2 -1
- data/vendor/libgit2/src/crlf.c +16 -6
- data/vendor/libgit2/src/date.c +4 -3
- data/vendor/libgit2/src/delta.c +1 -1
- data/vendor/libgit2/src/describe.c +12 -5
- data/vendor/libgit2/src/diff.c +55 -183
- data/vendor/libgit2/src/diff_driver.c +21 -17
- data/vendor/libgit2/src/diff_file.c +5 -7
- data/vendor/libgit2/src/diff_generate.c +56 -28
- data/vendor/libgit2/src/diff_parse.c +2 -3
- data/vendor/libgit2/src/diff_print.c +81 -65
- data/vendor/libgit2/src/diff_stats.c +19 -16
- data/vendor/libgit2/src/diff_tform.c +13 -13
- data/vendor/libgit2/src/diff_xdiff.c +4 -2
- data/vendor/libgit2/src/diff_xdiff.h +1 -1
- data/vendor/libgit2/src/email.c +299 -0
- data/vendor/libgit2/src/email.h +25 -0
- data/vendor/libgit2/src/errors.c +26 -19
- data/vendor/libgit2/src/features.h.in +5 -1
- data/vendor/libgit2/src/fetch.c +7 -2
- data/vendor/libgit2/src/fetchhead.c +8 -4
- data/vendor/libgit2/src/filebuf.c +9 -7
- data/vendor/libgit2/src/filter.c +215 -113
- data/vendor/libgit2/src/filter.h +24 -5
- data/vendor/libgit2/src/futils.c +8 -8
- data/vendor/libgit2/src/futils.h +4 -4
- data/vendor/libgit2/src/graph.c +64 -9
- data/vendor/libgit2/src/hash/sha1/collisiondetect.c +3 -3
- data/vendor/libgit2/src/hash/sha1/common_crypto.c +3 -3
- data/vendor/libgit2/src/hash/sha1/generic.h +1 -1
- data/vendor/libgit2/src/hash/sha1/mbedtls.c +12 -12
- data/vendor/libgit2/src/hash/sha1/openssl.c +3 -3
- data/vendor/libgit2/src/hash/sha1/sha1dc/sha1.c +8 -10
- data/vendor/libgit2/src/hash/sha1/win32.c +15 -11
- data/vendor/libgit2/src/hash.c +16 -13
- data/vendor/libgit2/src/hash.h +1 -1
- data/vendor/libgit2/src/hashsig.c +23 -10
- data/vendor/libgit2/src/ident.c +13 -3
- data/vendor/libgit2/src/idxmap.c +0 -22
- data/vendor/libgit2/src/ignore.c +33 -17
- data/vendor/libgit2/src/index.c +124 -82
- data/vendor/libgit2/src/index.h +1 -1
- data/vendor/libgit2/src/indexer.c +95 -37
- data/vendor/libgit2/src/integer.h +79 -2
- data/vendor/libgit2/src/iterator.c +40 -28
- data/vendor/libgit2/src/iterator.h +1 -1
- data/vendor/libgit2/src/khash.h +2 -11
- data/vendor/libgit2/src/{settings.c → libgit2.c} +148 -49
- data/vendor/libgit2/src/libgit2.h +15 -0
- data/vendor/libgit2/src/mailmap.c +23 -10
- data/vendor/libgit2/src/map.h +3 -3
- data/vendor/libgit2/src/merge.c +95 -43
- data/vendor/libgit2/src/merge.h +2 -1
- data/vendor/libgit2/src/merge_driver.c +19 -13
- data/vendor/libgit2/src/merge_file.c +15 -9
- data/vendor/libgit2/src/message.c +3 -1
- data/vendor/libgit2/src/midx.c +879 -0
- data/vendor/libgit2/src/midx.h +110 -0
- data/vendor/libgit2/src/mwindow.c +214 -95
- data/vendor/libgit2/src/mwindow.h +3 -3
- data/vendor/libgit2/src/net.c +133 -4
- data/vendor/libgit2/src/net.h +16 -2
- data/vendor/libgit2/src/netops.c +6 -4
- data/vendor/libgit2/src/netops.h +2 -2
- data/vendor/libgit2/src/notes.c +40 -40
- data/vendor/libgit2/src/object.c +24 -15
- data/vendor/libgit2/src/odb.c +298 -57
- data/vendor/libgit2/src/odb.h +16 -2
- data/vendor/libgit2/src/odb_loose.c +31 -21
- data/vendor/libgit2/src/odb_mempack.c +3 -1
- data/vendor/libgit2/src/odb_pack.c +391 -114
- data/vendor/libgit2/src/oid.c +7 -4
- data/vendor/libgit2/src/oidarray.c +10 -1
- data/vendor/libgit2/src/pack-objects.c +83 -69
- data/vendor/libgit2/src/pack.c +383 -150
- data/vendor/libgit2/src/pack.h +44 -9
- data/vendor/libgit2/src/patch.c +14 -7
- data/vendor/libgit2/src/patch_generate.c +3 -5
- data/vendor/libgit2/src/patch_parse.c +6 -3
- data/vendor/libgit2/src/path.c +103 -58
- data/vendor/libgit2/src/path.h +80 -7
- data/vendor/libgit2/src/pathspec.c +12 -11
- data/vendor/libgit2/src/pool.c +34 -22
- data/vendor/libgit2/src/pool.h +9 -1
- data/vendor/libgit2/src/posix.c +43 -12
- data/vendor/libgit2/src/posix.h +9 -0
- data/vendor/libgit2/src/proxy.c +2 -0
- data/vendor/libgit2/src/push.c +2 -0
- data/vendor/libgit2/src/reader.c +10 -6
- data/vendor/libgit2/src/rebase.c +95 -49
- data/vendor/libgit2/src/refdb.c +165 -13
- data/vendor/libgit2/src/refdb.h +69 -0
- data/vendor/libgit2/src/refdb_fs.c +145 -153
- data/vendor/libgit2/src/reflog.c +21 -20
- data/vendor/libgit2/src/refs.c +153 -233
- data/vendor/libgit2/src/refs.h +2 -20
- data/vendor/libgit2/src/refspec.c +81 -45
- data/vendor/libgit2/src/regexp.c +2 -2
- data/vendor/libgit2/src/remote.c +320 -122
- data/vendor/libgit2/src/remote.h +2 -1
- data/vendor/libgit2/src/repository.c +476 -203
- data/vendor/libgit2/src/repository.h +27 -29
- data/vendor/libgit2/src/reset.c +8 -7
- data/vendor/libgit2/src/revert.c +8 -2
- data/vendor/libgit2/src/revparse.c +23 -17
- data/vendor/libgit2/src/revwalk.c +35 -20
- data/vendor/libgit2/src/runtime.c +162 -0
- data/vendor/libgit2/src/runtime.h +62 -0
- data/vendor/libgit2/src/{refdb_fs.h → settings.h} +3 -11
- data/vendor/libgit2/src/signature.c +6 -5
- data/vendor/libgit2/src/sortedcache.c +2 -3
- data/vendor/libgit2/src/sortedcache.h +10 -8
- data/vendor/libgit2/src/stash.c +6 -2
- data/vendor/libgit2/src/status.c +9 -4
- data/vendor/libgit2/src/strarray.c +64 -0
- data/vendor/libgit2/src/streams/mbedtls.c +14 -17
- data/vendor/libgit2/src/streams/mbedtls.h +1 -1
- data/vendor/libgit2/src/streams/openssl.c +113 -207
- data/vendor/libgit2/src/streams/openssl.h +9 -1
- data/vendor/libgit2/src/streams/openssl_dynamic.c +309 -0
- data/vendor/libgit2/src/streams/openssl_dynamic.h +348 -0
- data/vendor/libgit2/src/streams/openssl_legacy.c +203 -0
- data/vendor/libgit2/src/streams/openssl_legacy.h +63 -0
- data/vendor/libgit2/src/streams/registry.c +10 -9
- data/vendor/libgit2/src/streams/socket.c +6 -2
- data/vendor/libgit2/src/streams/stransport.c +6 -3
- data/vendor/libgit2/src/streams/tls.c +5 -3
- data/vendor/libgit2/src/submodule.c +134 -66
- data/vendor/libgit2/src/submodule.h +9 -9
- data/vendor/libgit2/src/sysdir.c +8 -26
- data/vendor/libgit2/src/sysdir.h +0 -11
- data/vendor/libgit2/src/tag.c +49 -11
- data/vendor/libgit2/src/thread.c +140 -0
- data/vendor/libgit2/src/thread.h +479 -0
- data/vendor/libgit2/src/threadstate.c +84 -0
- data/vendor/libgit2/src/threadstate.h +24 -0
- data/vendor/libgit2/src/trace.c +2 -2
- data/vendor/libgit2/src/trace.h +17 -13
- data/vendor/libgit2/src/trailer.c +1 -1
- data/vendor/libgit2/src/transaction.c +21 -9
- data/vendor/libgit2/src/transport.c +3 -3
- data/vendor/libgit2/src/transports/auth.c +1 -1
- data/vendor/libgit2/src/transports/auth_negotiate.c +11 -4
- data/vendor/libgit2/src/transports/auth_ntlm.c +10 -6
- data/vendor/libgit2/src/transports/credential.c +17 -7
- data/vendor/libgit2/src/transports/credential_helpers.c +2 -0
- data/vendor/libgit2/src/transports/git.c +1 -3
- data/vendor/libgit2/src/transports/http.c +19 -17
- data/vendor/libgit2/src/transports/http.h +1 -0
- data/vendor/libgit2/src/transports/httpclient.c +68 -38
- data/vendor/libgit2/src/transports/httpclient.h +1 -1
- data/vendor/libgit2/src/transports/local.c +5 -5
- data/vendor/libgit2/src/transports/smart.c +14 -9
- data/vendor/libgit2/src/transports/smart.h +1 -1
- data/vendor/libgit2/src/transports/smart_protocol.c +11 -5
- data/vendor/libgit2/src/transports/ssh.c +55 -21
- data/vendor/libgit2/src/transports/winhttp.c +157 -89
- data/vendor/libgit2/src/tree.c +100 -77
- data/vendor/libgit2/src/tree.h +1 -0
- data/vendor/libgit2/src/tsort.c +0 -2
- data/vendor/libgit2/src/unix/map.c +3 -1
- data/vendor/libgit2/src/unix/posix.h +16 -1
- data/vendor/libgit2/src/unix/pthread.h +2 -1
- data/vendor/libgit2/src/utf8.c +150 -0
- data/vendor/libgit2/src/utf8.h +52 -0
- data/vendor/libgit2/src/util.c +75 -184
- data/vendor/libgit2/src/util.h +34 -40
- data/vendor/libgit2/src/vector.c +23 -19
- data/vendor/libgit2/src/vector.h +4 -2
- data/vendor/libgit2/src/win32/findfile.c +5 -3
- data/vendor/libgit2/src/win32/git2.rc +18 -3
- data/vendor/libgit2/src/win32/map.c +1 -1
- data/vendor/libgit2/src/win32/msvc-compat.h +9 -1
- data/vendor/libgit2/src/win32/path_w32.c +23 -25
- data/vendor/libgit2/src/win32/path_w32.h +0 -1
- data/vendor/libgit2/src/win32/posix.h +6 -6
- data/vendor/libgit2/src/win32/posix_w32.c +86 -7
- data/vendor/libgit2/src/win32/precompiled.h +0 -1
- data/vendor/libgit2/src/win32/reparse.h +4 -4
- data/vendor/libgit2/src/win32/thread.c +24 -15
- data/vendor/libgit2/src/win32/thread.h +1 -1
- data/vendor/libgit2/src/win32/w32_buffer.c +3 -3
- data/vendor/libgit2/src/win32/w32_common.h +18 -9
- data/vendor/libgit2/src/win32/{w32_crtdbg_stacktrace.c → w32_leakcheck.c} +269 -33
- data/vendor/libgit2/src/win32/w32_leakcheck.h +222 -0
- data/vendor/libgit2/src/win32/w32_util.h +6 -6
- data/vendor/libgit2/src/worktree.c +36 -14
- data/vendor/libgit2/src/zstream.c +1 -1
- metadata +65 -42
- data/vendor/libgit2/cmake/Modules/CheckPrototypeDefinition.c.in +0 -29
- data/vendor/libgit2/cmake/Modules/CheckPrototypeDefinition.cmake +0 -96
- data/vendor/libgit2/src/allocators/win32_crtdbg.c +0 -118
- data/vendor/libgit2/src/buf_text.c +0 -316
- data/vendor/libgit2/src/buf_text.h +0 -122
- data/vendor/libgit2/src/global.c +0 -361
- data/vendor/libgit2/src/global.h +0 -41
- data/vendor/libgit2/src/thread-utils.c +0 -58
- data/vendor/libgit2/src/thread-utils.h +0 -246
- data/vendor/libgit2/src/win32/w32_crtdbg_stacktrace.h +0 -127
- data/vendor/libgit2/src/win32/w32_stack.c +0 -188
- data/vendor/libgit2/src/win32/w32_stack.h +0 -140
@@ -10,7 +10,6 @@
|
|
10
10
|
#include "http_parser.h"
|
11
11
|
#include "vector.h"
|
12
12
|
#include "trace.h"
|
13
|
-
#include "global.h"
|
14
13
|
#include "httpclient.h"
|
15
14
|
#include "http.h"
|
16
15
|
#include "auth.h"
|
@@ -146,7 +145,8 @@ bool git_http_response_is_redirect(git_http_response *response)
|
|
146
145
|
|
147
146
|
void git_http_response_dispose(git_http_response *response)
|
148
147
|
{
|
149
|
-
|
148
|
+
if (!response)
|
149
|
+
return;
|
150
150
|
|
151
151
|
git__free(response->content_type);
|
152
152
|
git__free(response->location);
|
@@ -400,7 +400,7 @@ static int on_body(http_parser *parser, const char *buf, size_t len)
|
|
400
400
|
return 0;
|
401
401
|
}
|
402
402
|
|
403
|
-
|
403
|
+
GIT_ASSERT(ctx->output_size >= ctx->output_written);
|
404
404
|
|
405
405
|
max_len = min(ctx->output_size - ctx->output_written, len);
|
406
406
|
max_len = min(max_len, INT_MAX);
|
@@ -445,7 +445,7 @@ GIT_INLINE(int) client_write_request(git_http_client *client)
|
|
445
445
|
0);
|
446
446
|
}
|
447
447
|
|
448
|
-
const char *name_for_method(git_http_method method)
|
448
|
+
static const char *name_for_method(git_http_method method)
|
449
449
|
{
|
450
450
|
switch (method) {
|
451
451
|
case GIT_HTTP_METHOD_GET:
|
@@ -597,7 +597,7 @@ static int apply_credentials(
|
|
597
597
|
free_auth_context(server);
|
598
598
|
} else if (!token.size) {
|
599
599
|
git_error_set(GIT_ERROR_HTTP, "failed to respond to authentication challenge");
|
600
|
-
error =
|
600
|
+
error = GIT_EAUTH;
|
601
601
|
goto done;
|
602
602
|
}
|
603
603
|
|
@@ -631,6 +631,26 @@ GIT_INLINE(int) apply_proxy_credentials(
|
|
631
631
|
request->proxy_credentials);
|
632
632
|
}
|
633
633
|
|
634
|
+
static int puts_host_and_port(git_buf *buf, git_net_url *url, bool force_port)
|
635
|
+
{
|
636
|
+
bool ipv6 = git_net_url_is_ipv6(url);
|
637
|
+
|
638
|
+
if (ipv6)
|
639
|
+
git_buf_putc(buf, '[');
|
640
|
+
|
641
|
+
git_buf_puts(buf, url->host);
|
642
|
+
|
643
|
+
if (ipv6)
|
644
|
+
git_buf_putc(buf, ']');
|
645
|
+
|
646
|
+
if (force_port || !git_net_url_is_default_port(url)) {
|
647
|
+
git_buf_putc(buf, ':');
|
648
|
+
git_buf_puts(buf, url->port);
|
649
|
+
}
|
650
|
+
|
651
|
+
return git_buf_oom(buf) ? -1 : 0;
|
652
|
+
}
|
653
|
+
|
634
654
|
static int generate_connect_request(
|
635
655
|
git_http_client *client,
|
636
656
|
git_http_request *request)
|
@@ -641,14 +661,17 @@ static int generate_connect_request(
|
|
641
661
|
git_buf_clear(&client->request_msg);
|
642
662
|
buf = &client->request_msg;
|
643
663
|
|
644
|
-
|
645
|
-
|
664
|
+
git_buf_puts(buf, "CONNECT ");
|
665
|
+
puts_host_and_port(buf, &client->server.url, true);
|
666
|
+
git_buf_puts(buf, " HTTP/1.1\r\n");
|
646
667
|
|
647
668
|
git_buf_puts(buf, "User-Agent: ");
|
648
669
|
git_http__user_agent(buf);
|
649
670
|
git_buf_puts(buf, "\r\n");
|
650
671
|
|
651
|
-
|
672
|
+
git_buf_puts(buf, "Host: ");
|
673
|
+
puts_host_and_port(buf, &client->server.url, true);
|
674
|
+
git_buf_puts(buf, "\r\n");
|
652
675
|
|
653
676
|
if ((error = apply_proxy_credentials(buf, client, request) < 0))
|
654
677
|
return -1;
|
@@ -658,6 +681,11 @@ static int generate_connect_request(
|
|
658
681
|
return git_buf_oom(buf) ? -1 : 0;
|
659
682
|
}
|
660
683
|
|
684
|
+
static bool use_connect_proxy(git_http_client *client)
|
685
|
+
{
|
686
|
+
return client->proxy.url.host && !strcmp(client->server.url.scheme, "https");
|
687
|
+
}
|
688
|
+
|
661
689
|
static int generate_request(
|
662
690
|
git_http_client *client,
|
663
691
|
git_http_request *request)
|
@@ -666,7 +694,8 @@ static int generate_request(
|
|
666
694
|
size_t i;
|
667
695
|
int error;
|
668
696
|
|
669
|
-
|
697
|
+
GIT_ASSERT_ARG(client);
|
698
|
+
GIT_ASSERT_ARG(request);
|
670
699
|
|
671
700
|
git_buf_clear(&client->request_msg);
|
672
701
|
buf = &client->request_msg;
|
@@ -686,11 +715,8 @@ static int generate_request(
|
|
686
715
|
git_http__user_agent(buf);
|
687
716
|
git_buf_puts(buf, "\r\n");
|
688
717
|
|
689
|
-
|
690
|
-
|
691
|
-
if (!git_net_url_is_default_port(request->url))
|
692
|
-
git_buf_printf(buf, ":%s", request->url->port);
|
693
|
-
|
718
|
+
git_buf_puts(buf, "Host: ");
|
719
|
+
puts_host_and_port(buf, request->url, false);
|
694
720
|
git_buf_puts(buf, "\r\n");
|
695
721
|
|
696
722
|
if (request->accept)
|
@@ -713,7 +739,8 @@ static int generate_request(
|
|
713
739
|
git_buf_printf(buf, "Expect: 100-continue\r\n");
|
714
740
|
|
715
741
|
if ((error = apply_server_credentials(buf, client, request)) < 0 ||
|
716
|
-
(
|
742
|
+
(!use_connect_proxy(client) &&
|
743
|
+
(error = apply_proxy_credentials(buf, client, request)) < 0))
|
717
744
|
return error;
|
718
745
|
|
719
746
|
if (request->custom_headers) {
|
@@ -843,7 +870,10 @@ static int setup_hosts(
|
|
843
870
|
{
|
844
871
|
int ret, diff = 0;
|
845
872
|
|
846
|
-
|
873
|
+
GIT_ASSERT_ARG(client);
|
874
|
+
GIT_ASSERT_ARG(request);
|
875
|
+
|
876
|
+
GIT_ASSERT(request->url);
|
847
877
|
|
848
878
|
if ((ret = server_setup_from_url(&client->server, request->url)) < 0)
|
849
879
|
return ret;
|
@@ -898,7 +928,7 @@ static int proxy_connect(
|
|
898
928
|
int error;
|
899
929
|
|
900
930
|
if (!client->proxy_connected || !client->keepalive) {
|
901
|
-
git_trace(GIT_TRACE_DEBUG, "Connecting to proxy %s
|
931
|
+
git_trace(GIT_TRACE_DEBUG, "Connecting to proxy %s port %s",
|
902
932
|
client->proxy.url.host, client->proxy.url.port);
|
903
933
|
|
904
934
|
if ((error = server_create_stream(&client->proxy)) < 0 ||
|
@@ -923,7 +953,7 @@ static int proxy_connect(
|
|
923
953
|
(error = git_http_client_skip_body(client)) < 0)
|
924
954
|
goto done;
|
925
955
|
|
926
|
-
|
956
|
+
GIT_ASSERT(client->state == DONE);
|
927
957
|
|
928
958
|
if (response.status == GIT_HTTP_STATUS_PROXY_AUTHENTICATION_REQUIRED) {
|
929
959
|
save_early_response(client, &response);
|
@@ -1003,8 +1033,7 @@ static int http_client_connect(
|
|
1003
1033
|
reset_parser(client);
|
1004
1034
|
|
1005
1035
|
/* Reconnect to the proxy if necessary. */
|
1006
|
-
use_proxy = client
|
1007
|
-
!strcmp(client->server.url.scheme, "https");
|
1036
|
+
use_proxy = use_connect_proxy(client);
|
1008
1037
|
|
1009
1038
|
if (use_proxy) {
|
1010
1039
|
if (!client->proxy_connected || !client->keepalive ||
|
@@ -1019,7 +1048,7 @@ static int http_client_connect(
|
|
1019
1048
|
goto on_error;
|
1020
1049
|
}
|
1021
1050
|
|
1022
|
-
git_trace(GIT_TRACE_DEBUG, "Connecting to remote %s
|
1051
|
+
git_trace(GIT_TRACE_DEBUG, "Connecting to remote %s port %s",
|
1023
1052
|
client->server.url.host, client->server.url.port);
|
1024
1053
|
|
1025
1054
|
if ((error = server_connect(client)) < 0)
|
@@ -1120,11 +1149,6 @@ GIT_INLINE(int) client_read_and_parse(git_http_client *client)
|
|
1120
1149
|
return -1;
|
1121
1150
|
}
|
1122
1151
|
|
1123
|
-
if (parser->upgrade) {
|
1124
|
-
git_error_set(GIT_ERROR_HTTP, "server requested upgrade");
|
1125
|
-
return -1;
|
1126
|
-
}
|
1127
|
-
|
1128
1152
|
if (ctx->parse_status == PARSE_STATUS_ERROR) {
|
1129
1153
|
client->connected = 0;
|
1130
1154
|
return ctx->error ? ctx->error : -1;
|
@@ -1143,7 +1167,7 @@ GIT_INLINE(int) client_read_and_parse(git_http_client *client)
|
|
1143
1167
|
* final byte when paused in a callback. Consume that byte.
|
1144
1168
|
* https://github.com/nodejs/http-parser/issues/97
|
1145
1169
|
*/
|
1146
|
-
|
1170
|
+
GIT_ASSERT(client->read_buf.size > parsed_len);
|
1147
1171
|
|
1148
1172
|
http_parser_pause(parser, 0);
|
1149
1173
|
|
@@ -1221,7 +1245,8 @@ int git_http_client_send_request(
|
|
1221
1245
|
git_http_response response = {0};
|
1222
1246
|
int error = -1;
|
1223
1247
|
|
1224
|
-
|
1248
|
+
GIT_ASSERT_ARG(client);
|
1249
|
+
GIT_ASSERT_ARG(request);
|
1225
1250
|
|
1226
1251
|
/* If the client did not finish reading, clean up the stream. */
|
1227
1252
|
if (client->state == READING_BODY)
|
@@ -1292,7 +1317,7 @@ int git_http_client_send_body(
|
|
1292
1317
|
git_buf hdr = GIT_BUF_INIT;
|
1293
1318
|
int error;
|
1294
1319
|
|
1295
|
-
|
1320
|
+
GIT_ASSERT_ARG(client);
|
1296
1321
|
|
1297
1322
|
/* If we're waiting for proxy auth, don't sending more requests. */
|
1298
1323
|
if (client->state == HAS_EARLY_RESPONSE)
|
@@ -1309,7 +1334,7 @@ int git_http_client_send_body(
|
|
1309
1334
|
server = &client->server;
|
1310
1335
|
|
1311
1336
|
if (client->request_body_len) {
|
1312
|
-
|
1337
|
+
GIT_ASSERT(buffer_len <= client->request_body_remain);
|
1313
1338
|
|
1314
1339
|
if ((error = stream_write(server, buffer, buffer_len)) < 0)
|
1315
1340
|
goto done;
|
@@ -1332,7 +1357,8 @@ static int complete_request(git_http_client *client)
|
|
1332
1357
|
{
|
1333
1358
|
int error = 0;
|
1334
1359
|
|
1335
|
-
|
1360
|
+
GIT_ASSERT_ARG(client);
|
1361
|
+
GIT_ASSERT(client->state == SENDING_BODY);
|
1336
1362
|
|
1337
1363
|
if (client->request_body_len && client->request_body_remain) {
|
1338
1364
|
git_error_set(GIT_ERROR_HTTP, "truncated write");
|
@@ -1352,7 +1378,8 @@ int git_http_client_read_response(
|
|
1352
1378
|
http_parser_context parser_context = {0};
|
1353
1379
|
int error;
|
1354
1380
|
|
1355
|
-
|
1381
|
+
GIT_ASSERT_ARG(response);
|
1382
|
+
GIT_ASSERT_ARG(client);
|
1356
1383
|
|
1357
1384
|
if (client->state == SENDING_BODY) {
|
1358
1385
|
if ((error = complete_request(client)) < 0)
|
@@ -1374,8 +1401,11 @@ int git_http_client_read_response(
|
|
1374
1401
|
|
1375
1402
|
git_http_response_dispose(response);
|
1376
1403
|
|
1377
|
-
|
1378
|
-
|
1404
|
+
if (client->current_server == PROXY) {
|
1405
|
+
git_vector_free_deep(&client->proxy.auth_challenges);
|
1406
|
+
} else if(client->current_server == SERVER) {
|
1407
|
+
git_vector_free_deep(&client->server.auth_challenges);
|
1408
|
+
}
|
1379
1409
|
|
1380
1410
|
client->state = READING_RESPONSE;
|
1381
1411
|
client->keepalive = 0;
|
@@ -1389,7 +1419,7 @@ int git_http_client_read_response(
|
|
1389
1419
|
goto done;
|
1390
1420
|
}
|
1391
1421
|
|
1392
|
-
|
1422
|
+
GIT_ASSERT(client->state == READING_BODY || client->state == DONE);
|
1393
1423
|
|
1394
1424
|
done:
|
1395
1425
|
git_buf_dispose(&parser_context.parse_header_name);
|
@@ -1442,7 +1472,7 @@ int git_http_client_read_body(
|
|
1442
1472
|
break;
|
1443
1473
|
}
|
1444
1474
|
|
1445
|
-
|
1475
|
+
GIT_ASSERT(parser_context.output_written <= INT_MAX);
|
1446
1476
|
error = (int)parser_context.output_written;
|
1447
1477
|
|
1448
1478
|
done:
|
@@ -1478,7 +1508,7 @@ int git_http_client_skip_body(git_http_client *client)
|
|
1478
1508
|
"unexpected data handled in callback");
|
1479
1509
|
error = -1;
|
1480
1510
|
}
|
1481
|
-
} while (
|
1511
|
+
} while (error >= 0 && client->state != DONE);
|
1482
1512
|
|
1483
1513
|
if (error < 0)
|
1484
1514
|
client->connected = 0;
|
@@ -1496,7 +1526,7 @@ int git_http_client_new(
|
|
1496
1526
|
{
|
1497
1527
|
git_http_client *client;
|
1498
1528
|
|
1499
|
-
|
1529
|
+
GIT_ASSERT_ARG(out);
|
1500
1530
|
|
1501
1531
|
client = git__calloc(1, sizeof(git_http_client));
|
1502
1532
|
GIT_ERROR_CHECK_ALLOC(client);
|
@@ -90,7 +90,7 @@ extern int git_http_client_new(
|
|
90
90
|
|
91
91
|
/*
|
92
92
|
* Sends a request to the host specified by the request URL. If the
|
93
|
-
* method is POST, either the
|
93
|
+
* method is POST, either the content_length or the chunked flag must
|
94
94
|
* be specified. The body should be provided in subsequent calls to
|
95
95
|
* git_http_client_send_body.
|
96
96
|
*
|
@@ -36,7 +36,7 @@ typedef struct {
|
|
36
36
|
char *url;
|
37
37
|
int direction;
|
38
38
|
int flags;
|
39
|
-
|
39
|
+
git_atomic32 cancelled;
|
40
40
|
git_repository *repo;
|
41
41
|
git_transport_message_cb progress_cb;
|
42
42
|
git_transport_message_cb error_cb;
|
@@ -158,7 +158,7 @@ static int store_refs(transport_local *t)
|
|
158
158
|
git_remote_head *head;
|
159
159
|
git_strarray ref_names = {0};
|
160
160
|
|
161
|
-
|
161
|
+
GIT_ASSERT_ARG(t);
|
162
162
|
|
163
163
|
if (git_reference_list(&ref_names, t->repo) < 0)
|
164
164
|
goto on_error;
|
@@ -185,12 +185,12 @@ static int store_refs(transport_local *t)
|
|
185
185
|
}
|
186
186
|
|
187
187
|
t->have_refs = 1;
|
188
|
-
|
188
|
+
git_strarray_dispose(&ref_names);
|
189
189
|
return 0;
|
190
190
|
|
191
191
|
on_error:
|
192
192
|
git_vector_free(&t->refs);
|
193
|
-
|
193
|
+
git_strarray_dispose(&ref_names);
|
194
194
|
return -1;
|
195
195
|
}
|
196
196
|
|
@@ -671,7 +671,7 @@ static void local_cancel(git_transport *transport)
|
|
671
671
|
{
|
672
672
|
transport_local *t = (transport_local *)transport;
|
673
673
|
|
674
|
-
|
674
|
+
git_atomic32_set(&t->cancelled, 1);
|
675
675
|
}
|
676
676
|
|
677
677
|
static int local_close(git_transport *transport)
|
@@ -18,7 +18,7 @@ static int git_smart__recv_cb(gitno_buffer *buf)
|
|
18
18
|
size_t old_len, bytes_read;
|
19
19
|
int error;
|
20
20
|
|
21
|
-
|
21
|
+
GIT_ASSERT(t->current_stream);
|
22
22
|
|
23
23
|
old_len = buf->offset;
|
24
24
|
|
@@ -30,7 +30,7 @@ static int git_smart__recv_cb(gitno_buffer *buf)
|
|
30
30
|
if (t->packetsize_cb && !t->cancelled.val) {
|
31
31
|
error = t->packetsize_cb(bytes_read, t->packetsize_payload);
|
32
32
|
if (error) {
|
33
|
-
|
33
|
+
git_atomic32_set(&t->cancelled, 1);
|
34
34
|
return GIT_EUSER;
|
35
35
|
}
|
36
36
|
}
|
@@ -132,7 +132,7 @@ static int git_smart__set_custom_headers(
|
|
132
132
|
size_t i;
|
133
133
|
|
134
134
|
if (t->custom_headers.count)
|
135
|
-
|
135
|
+
git_strarray_dispose(&t->custom_headers);
|
136
136
|
|
137
137
|
if (!custom_headers)
|
138
138
|
return 0;
|
@@ -226,6 +226,8 @@ static int git_smart__connect(
|
|
226
226
|
t->url = git__strdup(url);
|
227
227
|
GIT_ERROR_CHECK_ALLOC(t->url);
|
228
228
|
|
229
|
+
git_proxy_options_clear(&t->proxy);
|
230
|
+
|
229
231
|
if (git_proxy_options_dup(&t->proxy, proxy) < 0)
|
230
232
|
return -1;
|
231
233
|
|
@@ -346,7 +348,7 @@ int git_smart__negotiation_step(git_transport *transport, void *data, size_t len
|
|
346
348
|
return error;
|
347
349
|
|
348
350
|
/* If this is a stateful implementation, the stream we get back should be the same */
|
349
|
-
|
351
|
+
GIT_ASSERT(t->rpc || t->current_stream == stream);
|
350
352
|
|
351
353
|
/* Save off the current stream (i.e. socket) that we are working with */
|
352
354
|
t->current_stream = stream;
|
@@ -375,7 +377,7 @@ int git_smart__get_push_stream(transport_smart *t, git_smart_subtransport_stream
|
|
375
377
|
return error;
|
376
378
|
|
377
379
|
/* If this is a stateful implementation, the stream we get back should be the same */
|
378
|
-
|
380
|
+
GIT_ASSERT(t->rpc || t->current_stream == *stream);
|
379
381
|
|
380
382
|
/* Save off the current stream (i.e. socket) that we are working with */
|
381
383
|
t->current_stream = *stream;
|
@@ -389,7 +391,7 @@ static void git_smart__cancel(git_transport *transport)
|
|
389
391
|
{
|
390
392
|
transport_smart *t = GIT_CONTAINER_OF(transport, transport_smart, parent);
|
391
393
|
|
392
|
-
|
394
|
+
git_atomic32_set(&t->cancelled, 1);
|
393
395
|
}
|
394
396
|
|
395
397
|
static int git_smart__is_connected(git_transport *transport)
|
@@ -465,7 +467,7 @@ static void git_smart__free(git_transport *transport)
|
|
465
467
|
git_vector_free(refs);
|
466
468
|
git__free((char *)t->proxy.url);
|
467
469
|
|
468
|
-
|
470
|
+
git_strarray_dispose(&t->custom_headers);
|
469
471
|
|
470
472
|
git__free(t);
|
471
473
|
}
|
@@ -481,7 +483,9 @@ int git_transport_smart_certificate_check(git_transport *transport, git_cert *ce
|
|
481
483
|
{
|
482
484
|
transport_smart *t = GIT_CONTAINER_OF(transport, transport_smart, parent);
|
483
485
|
|
484
|
-
|
486
|
+
GIT_ASSERT_ARG(transport);
|
487
|
+
GIT_ASSERT_ARG(cert);
|
488
|
+
GIT_ASSERT_ARG(hostname);
|
485
489
|
|
486
490
|
if (!t->certificate_check_cb)
|
487
491
|
return GIT_PASSTHROUGH;
|
@@ -493,7 +497,8 @@ int git_transport_smart_credentials(git_credential **out, git_transport *transpo
|
|
493
497
|
{
|
494
498
|
transport_smart *t = GIT_CONTAINER_OF(transport, transport_smart, parent);
|
495
499
|
|
496
|
-
|
500
|
+
GIT_ASSERT_ARG(out);
|
501
|
+
GIT_ASSERT_ARG(transport);
|
497
502
|
|
498
503
|
if (!t->cred_acquire_cb)
|
499
504
|
return GIT_PASSTHROUGH;
|
@@ -64,7 +64,9 @@ int git_smart__store_refs(transport_smart *t, int flushes)
|
|
64
64
|
continue;
|
65
65
|
}
|
66
66
|
|
67
|
-
gitno_consume(buf, line_end)
|
67
|
+
if (gitno_consume(buf, line_end) < 0)
|
68
|
+
return -1;
|
69
|
+
|
68
70
|
if (pkt->type == GIT_PKT_ERR) {
|
69
71
|
git_error_set(GIT_ERROR_NET, "remote error: %s", ((git_pkt_err *)pkt)->error);
|
70
72
|
git__free(pkt);
|
@@ -236,7 +238,9 @@ static int recv_pkt(git_pkt **out_pkt, git_pkt_type *out_type, gitno_buffer *buf
|
|
236
238
|
}
|
237
239
|
} while (error);
|
238
240
|
|
239
|
-
gitno_consume(buf, line_end)
|
241
|
+
if (gitno_consume(buf, line_end) < 0)
|
242
|
+
return -1;
|
243
|
+
|
240
244
|
if (out_type != NULL)
|
241
245
|
*out_type = pkt->type;
|
242
246
|
if (out_pkt != NULL)
|
@@ -531,7 +535,7 @@ int git_smart__download_pack(
|
|
531
535
|
/* We might have something in the buffer already from negotiate_fetch */
|
532
536
|
if (t->buffer.offset > 0 && !t->cancelled.val)
|
533
537
|
if (t->packetsize_cb(t->buffer.offset, t->packetsize_payload))
|
534
|
-
|
538
|
+
git_atomic32_set(&t->cancelled, 1);
|
535
539
|
}
|
536
540
|
|
537
541
|
if ((error = git_repository_odb__weakptr(&odb, repo)) < 0 ||
|
@@ -791,7 +795,8 @@ static int parse_report(transport_smart *transport, git_push *push)
|
|
791
795
|
continue;
|
792
796
|
}
|
793
797
|
|
794
|
-
gitno_consume(buf, line_end)
|
798
|
+
if (gitno_consume(buf, line_end) < 0)
|
799
|
+
return -1;
|
795
800
|
|
796
801
|
error = 0;
|
797
802
|
|
@@ -970,9 +975,10 @@ static int stream_thunk(void *buf, size_t size, void *data)
|
|
970
975
|
|
971
976
|
if (payload->cb) {
|
972
977
|
double current_time = git__timer();
|
978
|
+
double elapsed = current_time - payload->last_progress_report_time;
|
973
979
|
payload->last_bytes += size;
|
974
980
|
|
975
|
-
if (
|
981
|
+
if (elapsed < 0 || elapsed >= MIN_PROGRESS_UPDATE_INTERVAL) {
|
976
982
|
payload->last_progress_report_time = current_time;
|
977
983
|
error = payload->cb(payload->pb->nr_written, payload->pb->nr_objects, payload->last_bytes, payload->cb_payload);
|
978
984
|
}
|
@@ -11,7 +11,7 @@
|
|
11
11
|
#include <libssh2.h>
|
12
12
|
#endif
|
13
13
|
|
14
|
-
#include "
|
14
|
+
#include "runtime.h"
|
15
15
|
#include "git2.h"
|
16
16
|
#include "buffer.h"
|
17
17
|
#include "net.h"
|
@@ -238,7 +238,7 @@ static int ssh_stream_alloc(
|
|
238
238
|
{
|
239
239
|
ssh_stream *s;
|
240
240
|
|
241
|
-
|
241
|
+
GIT_ASSERT_ARG(stream);
|
242
242
|
|
243
243
|
s = git__calloc(sizeof(ssh_stream), 1);
|
244
244
|
GIT_ERROR_CHECK_ALLOC(s);
|
@@ -404,8 +404,8 @@ static int _git_ssh_authenticate_session(
|
|
404
404
|
case GIT_CREDENTIAL_SSH_MEMORY: {
|
405
405
|
git_credential_ssh_key *c = (git_credential_ssh_key *)cred;
|
406
406
|
|
407
|
-
|
408
|
-
|
407
|
+
GIT_ASSERT(c->username);
|
408
|
+
GIT_ASSERT(c->privatekey);
|
409
409
|
|
410
410
|
rc = libssh2_userauth_publickey_frommemory(
|
411
411
|
session,
|
@@ -461,13 +461,13 @@ static int request_creds(git_credential **out, ssh_subtransport *t, const char *
|
|
461
461
|
|
462
462
|
if (no_callback) {
|
463
463
|
git_error_set(GIT_ERROR_SSH, "authentication required but no callback set");
|
464
|
-
return
|
464
|
+
return GIT_EAUTH;
|
465
465
|
}
|
466
466
|
|
467
467
|
if (!(cred->credtype & auth_methods)) {
|
468
468
|
cred->free(cred);
|
469
|
-
git_error_set(GIT_ERROR_SSH, "callback returned unsupported credentials type");
|
470
|
-
return
|
469
|
+
git_error_set(GIT_ERROR_SSH, "authentication callback returned unsupported credentials type");
|
470
|
+
return GIT_EAUTH;
|
471
471
|
}
|
472
472
|
|
473
473
|
*out = cred;
|
@@ -476,14 +476,14 @@ static int request_creds(git_credential **out, ssh_subtransport *t, const char *
|
|
476
476
|
}
|
477
477
|
|
478
478
|
static int _git_ssh_session_create(
|
479
|
-
LIBSSH2_SESSION**
|
479
|
+
LIBSSH2_SESSION **session,
|
480
480
|
git_stream *io)
|
481
481
|
{
|
482
482
|
int rc = 0;
|
483
|
-
LIBSSH2_SESSION*
|
483
|
+
LIBSSH2_SESSION *s;
|
484
484
|
git_socket_stream *socket = GIT_CONTAINER_OF(io, git_socket_stream, parent);
|
485
485
|
|
486
|
-
|
486
|
+
GIT_ASSERT_ARG(session);
|
487
487
|
|
488
488
|
s = libssh2_session_init();
|
489
489
|
if (!s) {
|
@@ -521,8 +521,8 @@ static int _git_ssh_setup_conn(
|
|
521
521
|
size_t i;
|
522
522
|
ssh_stream *s;
|
523
523
|
git_credential *cred = NULL;
|
524
|
-
LIBSSH2_SESSION*
|
525
|
-
LIBSSH2_CHANNEL*
|
524
|
+
LIBSSH2_SESSION *session=NULL;
|
525
|
+
LIBSSH2_CHANNEL *channel=NULL;
|
526
526
|
|
527
527
|
t->current_stream = NULL;
|
528
528
|
|
@@ -563,9 +563,46 @@ post_extract:
|
|
563
563
|
if (t->owner->certificate_check_cb != NULL) {
|
564
564
|
git_cert_hostkey cert = {{ 0 }}, *cert_ptr;
|
565
565
|
const char *key;
|
566
|
+
size_t cert_len;
|
567
|
+
int cert_type;
|
566
568
|
|
567
569
|
cert.parent.cert_type = GIT_CERT_HOSTKEY_LIBSSH2;
|
568
570
|
|
571
|
+
key = libssh2_session_hostkey(session, &cert_len, &cert_type);
|
572
|
+
if (key != NULL) {
|
573
|
+
cert.type |= GIT_CERT_SSH_RAW;
|
574
|
+
cert.hostkey = key;
|
575
|
+
cert.hostkey_len = cert_len;
|
576
|
+
switch (cert_type) {
|
577
|
+
case LIBSSH2_HOSTKEY_TYPE_RSA:
|
578
|
+
cert.raw_type = GIT_CERT_SSH_RAW_TYPE_RSA;
|
579
|
+
break;
|
580
|
+
case LIBSSH2_HOSTKEY_TYPE_DSS:
|
581
|
+
cert.raw_type = GIT_CERT_SSH_RAW_TYPE_DSS;
|
582
|
+
break;
|
583
|
+
|
584
|
+
#ifdef LIBSSH2_HOSTKEY_TYPE_ECDSA_256
|
585
|
+
case LIBSSH2_HOSTKEY_TYPE_ECDSA_256:
|
586
|
+
cert.raw_type = GIT_CERT_SSH_RAW_TYPE_KEY_ECDSA_256;
|
587
|
+
break;
|
588
|
+
case LIBSSH2_HOSTKEY_TYPE_ECDSA_384:
|
589
|
+
cert.raw_type = GIT_CERT_SSH_RAW_TYPE_KEY_ECDSA_384;
|
590
|
+
break;
|
591
|
+
case LIBSSH2_KNOWNHOST_KEY_ECDSA_521:
|
592
|
+
cert.raw_type = GIT_CERT_SSH_RAW_TYPE_KEY_ECDSA_521;
|
593
|
+
break;
|
594
|
+
#endif
|
595
|
+
|
596
|
+
#ifdef LIBSSH2_HOSTKEY_TYPE_ED25519
|
597
|
+
case LIBSSH2_HOSTKEY_TYPE_ED25519:
|
598
|
+
cert.raw_type = GIT_CERT_SSH_RAW_TYPE_KEY_ED25519;
|
599
|
+
break;
|
600
|
+
#endif
|
601
|
+
default:
|
602
|
+
cert.raw_type = GIT_CERT_SSH_RAW_TYPE_UNKNOWN;
|
603
|
+
}
|
604
|
+
}
|
605
|
+
|
569
606
|
#ifdef LIBSSH2_HOSTKEY_HASH_SHA256
|
570
607
|
key = libssh2_hostkey_hash(session, LIBSSH2_HOSTKEY_HASH_SHA256);
|
571
608
|
if (key != NULL) {
|
@@ -772,7 +809,7 @@ static int _ssh_close(git_smart_subtransport *subtransport)
|
|
772
809
|
{
|
773
810
|
ssh_subtransport *t = GIT_CONTAINER_OF(subtransport, ssh_subtransport, parent);
|
774
811
|
|
775
|
-
|
812
|
+
GIT_ASSERT(!t->current_stream);
|
776
813
|
|
777
814
|
GIT_UNUSED(t);
|
778
815
|
|
@@ -783,8 +820,6 @@ static void _ssh_free(git_smart_subtransport *subtransport)
|
|
783
820
|
{
|
784
821
|
ssh_subtransport *t = GIT_CONTAINER_OF(subtransport, ssh_subtransport, parent);
|
785
822
|
|
786
|
-
assert(!t->current_stream);
|
787
|
-
|
788
823
|
git__free(t->cmd_uploadpack);
|
789
824
|
git__free(t->cmd_receivepack);
|
790
825
|
git__free(t);
|
@@ -805,7 +840,7 @@ static int list_auth_methods(int *out, LIBSSH2_SESSION *session, const char *use
|
|
805
840
|
/* either error, or the remote accepts NONE auth, which is bizarre, let's punt */
|
806
841
|
if (list == NULL && !libssh2_userauth_authenticated(session)) {
|
807
842
|
ssh_error(session, "Failed to retrieve list of SSH authentication methods");
|
808
|
-
return
|
843
|
+
return GIT_EAUTH;
|
809
844
|
}
|
810
845
|
|
811
846
|
ptr = list;
|
@@ -849,7 +884,7 @@ int git_smart_subtransport_ssh(
|
|
849
884
|
#ifdef GIT_SSH
|
850
885
|
ssh_subtransport *t;
|
851
886
|
|
852
|
-
|
887
|
+
GIT_ASSERT_ARG(out);
|
853
888
|
|
854
889
|
GIT_UNUSED(param);
|
855
890
|
|
@@ -867,7 +902,7 @@ int git_smart_subtransport_ssh(
|
|
867
902
|
GIT_UNUSED(owner);
|
868
903
|
GIT_UNUSED(param);
|
869
904
|
|
870
|
-
|
905
|
+
GIT_ASSERT_ARG(out);
|
871
906
|
*out = NULL;
|
872
907
|
|
873
908
|
git_error_set(GIT_ERROR_INVALID, "cannot create SSH transport. Library was built without SSH support");
|
@@ -911,7 +946,7 @@ int git_transport_ssh_with_paths(git_transport **out, git_remote *owner, void *p
|
|
911
946
|
GIT_UNUSED(owner);
|
912
947
|
GIT_UNUSED(payload);
|
913
948
|
|
914
|
-
|
949
|
+
GIT_ASSERT_ARG(out);
|
915
950
|
*out = NULL;
|
916
951
|
|
917
952
|
git_error_set(GIT_ERROR_INVALID, "cannot create SSH transport. Library was built without SSH support");
|
@@ -934,8 +969,7 @@ int git_transport_ssh_global_init(void)
|
|
934
969
|
return -1;
|
935
970
|
}
|
936
971
|
|
937
|
-
|
938
|
-
return 0;
|
972
|
+
return git_runtime_shutdown_register(shutdown_ssh);
|
939
973
|
|
940
974
|
#else
|
941
975
|
|