rugged 1.1.0 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (288) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +1 -0
  3. data/README.md +1 -1
  4. data/ext/rugged/rugged.c +7 -4
  5. data/ext/rugged/rugged_object.c +1 -1
  6. data/ext/rugged/rugged_repo.c +3 -3
  7. data/lib/rugged/repository.rb +2 -2
  8. data/lib/rugged/version.rb +1 -1
  9. data/vendor/libgit2/CMakeLists.txt +11 -6
  10. data/vendor/libgit2/COPYING +109 -1
  11. data/vendor/libgit2/cmake/Findfutimens.cmake +14 -0
  12. data/vendor/libgit2/cmake/SelectHTTPSBackend.cmake +4 -0
  13. data/vendor/libgit2/cmake/SelectHashes.cmake +1 -0
  14. data/vendor/libgit2/deps/chromium-zlib/CMakeLists.txt +101 -0
  15. data/vendor/libgit2/deps/ntlmclient/CMakeLists.txt +18 -5
  16. data/vendor/libgit2/deps/ntlmclient/compat.h +0 -34
  17. data/vendor/libgit2/deps/ntlmclient/crypt.h +14 -9
  18. data/vendor/libgit2/deps/ntlmclient/crypt_commoncrypto.c +20 -20
  19. data/vendor/libgit2/deps/ntlmclient/crypt_commoncrypto.h +3 -3
  20. data/vendor/libgit2/deps/ntlmclient/crypt_mbedtls.c +37 -36
  21. data/vendor/libgit2/deps/ntlmclient/crypt_mbedtls.h +4 -3
  22. data/vendor/libgit2/deps/ntlmclient/crypt_openssl.c +178 -51
  23. data/vendor/libgit2/deps/ntlmclient/crypt_openssl.h +74 -5
  24. data/vendor/libgit2/deps/ntlmclient/ntlm.c +156 -124
  25. data/vendor/libgit2/deps/ntlmclient/ntlm.h +13 -9
  26. data/vendor/libgit2/deps/ntlmclient/ntlmclient.h +16 -3
  27. data/vendor/libgit2/deps/ntlmclient/unicode.h +10 -4
  28. data/vendor/libgit2/deps/ntlmclient/unicode_builtin.c +16 -27
  29. data/vendor/libgit2/deps/ntlmclient/unicode_builtin.h +20 -0
  30. data/vendor/libgit2/deps/ntlmclient/unicode_iconv.c +28 -52
  31. data/vendor/libgit2/deps/ntlmclient/unicode_iconv.h +22 -0
  32. data/vendor/libgit2/deps/ntlmclient/util.c +15 -1
  33. data/vendor/libgit2/deps/ntlmclient/util.h +2 -1
  34. data/vendor/libgit2/include/git2/apply.h +2 -0
  35. data/vendor/libgit2/include/git2/attr.h +89 -0
  36. data/vendor/libgit2/include/git2/blame.h +93 -42
  37. data/vendor/libgit2/include/git2/blob.h +31 -3
  38. data/vendor/libgit2/include/git2/branch.h +25 -0
  39. data/vendor/libgit2/include/git2/cert.h +42 -5
  40. data/vendor/libgit2/include/git2/checkout.h +28 -12
  41. data/vendor/libgit2/include/git2/commit.h +35 -19
  42. data/vendor/libgit2/include/git2/common.h +19 -4
  43. data/vendor/libgit2/include/git2/config.h +1 -1
  44. data/vendor/libgit2/include/git2/deprecated.h +206 -6
  45. data/vendor/libgit2/include/git2/diff.h +35 -20
  46. data/vendor/libgit2/include/git2/errors.h +6 -6
  47. data/vendor/libgit2/include/git2/filter.h +57 -17
  48. data/vendor/libgit2/include/git2/graph.h +20 -2
  49. data/vendor/libgit2/include/git2/index.h +3 -3
  50. data/vendor/libgit2/include/git2/indexer.h +2 -1
  51. data/vendor/libgit2/include/git2/odb.h +44 -20
  52. data/vendor/libgit2/include/git2/patch.h +8 -0
  53. data/vendor/libgit2/include/git2/rebase.h +25 -1
  54. data/vendor/libgit2/include/git2/refs.h +9 -5
  55. data/vendor/libgit2/include/git2/remote.h +59 -6
  56. data/vendor/libgit2/include/git2/repository.h +95 -52
  57. data/vendor/libgit2/include/git2/revparse.h +5 -5
  58. data/vendor/libgit2/include/git2/status.h +115 -59
  59. data/vendor/libgit2/include/git2/submodule.h +9 -0
  60. data/vendor/libgit2/include/git2/sys/commit_graph.h +174 -0
  61. data/vendor/libgit2/include/git2/sys/filter.h +49 -28
  62. data/vendor/libgit2/include/git2/sys/midx.h +74 -0
  63. data/vendor/libgit2/include/git2/sys/odb_backend.h +7 -0
  64. data/vendor/libgit2/include/git2/sys/transport.h +1 -0
  65. data/vendor/libgit2/include/git2/tag.h +12 -0
  66. data/vendor/libgit2/include/git2/transport.h +1 -1
  67. data/vendor/libgit2/include/git2/tree.h +2 -14
  68. data/vendor/libgit2/include/git2/types.h +9 -0
  69. data/vendor/libgit2/include/git2/version.h +3 -3
  70. data/vendor/libgit2/include/git2/worktree.h +1 -0
  71. data/vendor/libgit2/src/CMakeLists.txt +25 -4
  72. data/vendor/libgit2/src/alloc.c +21 -8
  73. data/vendor/libgit2/src/allocators/failalloc.c +92 -0
  74. data/vendor/libgit2/src/allocators/failalloc.h +23 -0
  75. data/vendor/libgit2/src/allocators/stdalloc.c +41 -10
  76. data/vendor/libgit2/src/allocators/win32_leakcheck.c +118 -0
  77. data/vendor/libgit2/src/allocators/{win32_crtdbg.h → win32_leakcheck.h} +3 -3
  78. data/vendor/libgit2/src/annotated_commit.c +21 -9
  79. data/vendor/libgit2/src/apply.c +16 -7
  80. data/vendor/libgit2/src/array.h +11 -11
  81. data/vendor/libgit2/src/attr.c +181 -74
  82. data/vendor/libgit2/src/attr_file.c +84 -39
  83. data/vendor/libgit2/src/attr_file.h +32 -11
  84. data/vendor/libgit2/src/attrcache.c +42 -37
  85. data/vendor/libgit2/src/attrcache.h +4 -5
  86. data/vendor/libgit2/src/blame.c +26 -15
  87. data/vendor/libgit2/src/blob.c +44 -24
  88. data/vendor/libgit2/src/branch.c +69 -17
  89. data/vendor/libgit2/src/buffer.c +334 -25
  90. data/vendor/libgit2/src/buffer.h +153 -2
  91. data/vendor/libgit2/src/cache.c +2 -2
  92. data/vendor/libgit2/src/cache.h +7 -7
  93. data/vendor/libgit2/src/cc-compat.h +10 -2
  94. data/vendor/libgit2/src/checkout.c +48 -26
  95. data/vendor/libgit2/src/cherrypick.c +6 -2
  96. data/vendor/libgit2/src/clone.c +26 -11
  97. data/vendor/libgit2/src/commit.c +41 -28
  98. data/vendor/libgit2/src/commit_graph.c +1209 -0
  99. data/vendor/libgit2/src/commit_graph.h +162 -0
  100. data/vendor/libgit2/src/commit_list.c +46 -0
  101. data/vendor/libgit2/src/commit_list.h +2 -0
  102. data/vendor/libgit2/src/common.h +25 -2
  103. data/vendor/libgit2/src/config.c +37 -15
  104. data/vendor/libgit2/src/config_cache.c +9 -4
  105. data/vendor/libgit2/src/config_file.c +16 -8
  106. data/vendor/libgit2/src/config_parse.c +4 -6
  107. data/vendor/libgit2/src/crlf.c +16 -6
  108. data/vendor/libgit2/src/date.c +4 -3
  109. data/vendor/libgit2/src/delta.c +1 -1
  110. data/vendor/libgit2/src/describe.c +6 -3
  111. data/vendor/libgit2/src/diff.c +11 -8
  112. data/vendor/libgit2/src/diff_driver.c +21 -17
  113. data/vendor/libgit2/src/diff_file.c +2 -6
  114. data/vendor/libgit2/src/diff_generate.c +46 -17
  115. data/vendor/libgit2/src/diff_print.c +19 -6
  116. data/vendor/libgit2/src/diff_stats.c +7 -5
  117. data/vendor/libgit2/src/diff_tform.c +11 -10
  118. data/vendor/libgit2/src/diff_xdiff.c +4 -2
  119. data/vendor/libgit2/src/diff_xdiff.h +1 -1
  120. data/vendor/libgit2/src/errors.c +24 -19
  121. data/vendor/libgit2/src/features.h.in +5 -1
  122. data/vendor/libgit2/src/fetch.c +5 -2
  123. data/vendor/libgit2/src/fetchhead.c +8 -4
  124. data/vendor/libgit2/src/filebuf.c +9 -7
  125. data/vendor/libgit2/src/filter.c +206 -110
  126. data/vendor/libgit2/src/filter.h +24 -5
  127. data/vendor/libgit2/src/futils.c +5 -5
  128. data/vendor/libgit2/src/futils.h +1 -1
  129. data/vendor/libgit2/src/graph.c +64 -9
  130. data/vendor/libgit2/src/hash/sha1/collisiondetect.c +3 -3
  131. data/vendor/libgit2/src/hash/sha1/common_crypto.c +3 -3
  132. data/vendor/libgit2/src/hash/sha1/generic.h +1 -1
  133. data/vendor/libgit2/src/hash/sha1/mbedtls.c +12 -12
  134. data/vendor/libgit2/src/hash/sha1/openssl.c +3 -3
  135. data/vendor/libgit2/src/hash/sha1/sha1dc/sha1.c +0 -2
  136. data/vendor/libgit2/src/hash/sha1/win32.c +15 -11
  137. data/vendor/libgit2/src/hash.c +16 -13
  138. data/vendor/libgit2/src/hash.h +1 -1
  139. data/vendor/libgit2/src/hashsig.c +23 -10
  140. data/vendor/libgit2/src/ident.c +13 -3
  141. data/vendor/libgit2/src/ignore.c +35 -19
  142. data/vendor/libgit2/src/index.c +112 -75
  143. data/vendor/libgit2/src/index.h +1 -1
  144. data/vendor/libgit2/src/indexer.c +50 -32
  145. data/vendor/libgit2/src/integer.h +79 -2
  146. data/vendor/libgit2/src/iterator.c +36 -24
  147. data/vendor/libgit2/src/iterator.h +1 -1
  148. data/vendor/libgit2/src/khash.h +2 -11
  149. data/vendor/libgit2/src/{settings.c → libgit2.c} +117 -50
  150. data/vendor/libgit2/src/libgit2.h +15 -0
  151. data/vendor/libgit2/src/mailmap.c +23 -10
  152. data/vendor/libgit2/src/map.h +3 -3
  153. data/vendor/libgit2/src/merge.c +75 -32
  154. data/vendor/libgit2/src/merge.h +2 -1
  155. data/vendor/libgit2/src/merge_driver.c +19 -13
  156. data/vendor/libgit2/src/merge_file.c +11 -3
  157. data/vendor/libgit2/src/message.c +3 -1
  158. data/vendor/libgit2/src/midx.c +471 -10
  159. data/vendor/libgit2/src/midx.h +28 -1
  160. data/vendor/libgit2/src/mwindow.c +106 -60
  161. data/vendor/libgit2/src/mwindow.h +3 -3
  162. data/vendor/libgit2/src/net.c +127 -3
  163. data/vendor/libgit2/src/net.h +16 -2
  164. data/vendor/libgit2/src/netops.c +6 -4
  165. data/vendor/libgit2/src/netops.h +2 -2
  166. data/vendor/libgit2/src/notes.c +10 -10
  167. data/vendor/libgit2/src/object.c +22 -14
  168. data/vendor/libgit2/src/odb.c +289 -51
  169. data/vendor/libgit2/src/odb.h +16 -2
  170. data/vendor/libgit2/src/odb_loose.c +28 -18
  171. data/vendor/libgit2/src/odb_mempack.c +1 -1
  172. data/vendor/libgit2/src/odb_pack.c +391 -114
  173. data/vendor/libgit2/src/oid.c +5 -4
  174. data/vendor/libgit2/src/pack-objects.c +54 -48
  175. data/vendor/libgit2/src/pack.c +339 -125
  176. data/vendor/libgit2/src/pack.h +25 -7
  177. data/vendor/libgit2/src/patch.c +14 -7
  178. data/vendor/libgit2/src/patch_generate.c +2 -2
  179. data/vendor/libgit2/src/patch_parse.c +2 -1
  180. data/vendor/libgit2/src/path.c +98 -53
  181. data/vendor/libgit2/src/path.h +79 -6
  182. data/vendor/libgit2/src/pathspec.c +8 -8
  183. data/vendor/libgit2/src/pool.c +13 -7
  184. data/vendor/libgit2/src/posix.c +43 -12
  185. data/vendor/libgit2/src/posix.h +9 -0
  186. data/vendor/libgit2/src/reader.c +10 -6
  187. data/vendor/libgit2/src/rebase.c +93 -49
  188. data/vendor/libgit2/src/refdb.c +30 -13
  189. data/vendor/libgit2/src/refdb_fs.c +125 -71
  190. data/vendor/libgit2/src/reflog.c +19 -14
  191. data/vendor/libgit2/src/refs.c +91 -43
  192. data/vendor/libgit2/src/refs.h +1 -1
  193. data/vendor/libgit2/src/refspec.c +80 -44
  194. data/vendor/libgit2/src/remote.c +281 -105
  195. data/vendor/libgit2/src/remote.h +2 -1
  196. data/vendor/libgit2/src/repository.c +191 -118
  197. data/vendor/libgit2/src/repository.h +13 -2
  198. data/vendor/libgit2/src/reset.c +7 -6
  199. data/vendor/libgit2/src/revert.c +6 -2
  200. data/vendor/libgit2/src/revparse.c +14 -9
  201. data/vendor/libgit2/src/revwalk.c +32 -15
  202. data/vendor/libgit2/src/runtime.c +162 -0
  203. data/vendor/libgit2/src/runtime.h +62 -0
  204. data/vendor/libgit2/src/settings.h +11 -0
  205. data/vendor/libgit2/src/signature.c +6 -5
  206. data/vendor/libgit2/src/sortedcache.h +10 -8
  207. data/vendor/libgit2/src/stash.c +3 -1
  208. data/vendor/libgit2/src/status.c +7 -4
  209. data/vendor/libgit2/src/strarray.c +2 -1
  210. data/vendor/libgit2/src/streams/mbedtls.c +14 -17
  211. data/vendor/libgit2/src/streams/mbedtls.h +1 -1
  212. data/vendor/libgit2/src/streams/openssl.c +101 -201
  213. data/vendor/libgit2/src/streams/openssl.h +9 -1
  214. data/vendor/libgit2/src/streams/openssl_dynamic.c +309 -0
  215. data/vendor/libgit2/src/streams/openssl_dynamic.h +348 -0
  216. data/vendor/libgit2/src/streams/openssl_legacy.c +203 -0
  217. data/vendor/libgit2/src/streams/openssl_legacy.h +63 -0
  218. data/vendor/libgit2/src/streams/registry.c +5 -6
  219. data/vendor/libgit2/src/streams/socket.c +6 -2
  220. data/vendor/libgit2/src/streams/stransport.c +6 -3
  221. data/vendor/libgit2/src/streams/tls.c +5 -3
  222. data/vendor/libgit2/src/submodule.c +128 -62
  223. data/vendor/libgit2/src/submodule.h +9 -9
  224. data/vendor/libgit2/src/sysdir.c +4 -6
  225. data/vendor/libgit2/src/tag.c +47 -11
  226. data/vendor/libgit2/src/thread.c +140 -0
  227. data/vendor/libgit2/src/thread.h +479 -0
  228. data/vendor/libgit2/src/threadstate.c +83 -0
  229. data/vendor/libgit2/src/threadstate.h +24 -0
  230. data/vendor/libgit2/src/trace.c +2 -2
  231. data/vendor/libgit2/src/trace.h +17 -13
  232. data/vendor/libgit2/src/transaction.c +19 -8
  233. data/vendor/libgit2/src/transport.c +3 -3
  234. data/vendor/libgit2/src/transports/auth.c +1 -1
  235. data/vendor/libgit2/src/transports/auth_negotiate.c +11 -4
  236. data/vendor/libgit2/src/transports/auth_ntlm.c +10 -6
  237. data/vendor/libgit2/src/transports/credential.c +15 -7
  238. data/vendor/libgit2/src/transports/git.c +1 -3
  239. data/vendor/libgit2/src/transports/http.c +19 -17
  240. data/vendor/libgit2/src/transports/http.h +1 -0
  241. data/vendor/libgit2/src/transports/httpclient.c +62 -30
  242. data/vendor/libgit2/src/transports/httpclient.h +1 -1
  243. data/vendor/libgit2/src/transports/local.c +3 -3
  244. data/vendor/libgit2/src/transports/smart.c +12 -7
  245. data/vendor/libgit2/src/transports/smart.h +1 -1
  246. data/vendor/libgit2/src/transports/smart_protocol.c +11 -5
  247. data/vendor/libgit2/src/transports/ssh.c +51 -17
  248. data/vendor/libgit2/src/transports/winhttp.c +138 -81
  249. data/vendor/libgit2/src/tree.c +100 -77
  250. data/vendor/libgit2/src/tree.h +1 -0
  251. data/vendor/libgit2/src/tsort.c +0 -2
  252. data/vendor/libgit2/src/unix/map.c +3 -1
  253. data/vendor/libgit2/src/unix/posix.h +3 -0
  254. data/vendor/libgit2/src/unix/pthread.h +2 -1
  255. data/vendor/libgit2/src/utf8.c +150 -0
  256. data/vendor/libgit2/src/utf8.h +52 -0
  257. data/vendor/libgit2/src/util.c +53 -129
  258. data/vendor/libgit2/src/util.h +33 -39
  259. data/vendor/libgit2/src/vector.c +23 -19
  260. data/vendor/libgit2/src/vector.h +4 -2
  261. data/vendor/libgit2/src/win32/findfile.c +4 -2
  262. data/vendor/libgit2/src/win32/map.c +1 -1
  263. data/vendor/libgit2/src/win32/msvc-compat.h +9 -1
  264. data/vendor/libgit2/src/win32/path_w32.c +22 -24
  265. data/vendor/libgit2/src/win32/path_w32.h +0 -1
  266. data/vendor/libgit2/src/win32/posix_w32.c +77 -1
  267. data/vendor/libgit2/src/win32/precompiled.h +0 -1
  268. data/vendor/libgit2/src/win32/reparse.h +4 -4
  269. data/vendor/libgit2/src/win32/thread.c +24 -15
  270. data/vendor/libgit2/src/win32/thread.h +1 -1
  271. data/vendor/libgit2/src/win32/w32_buffer.c +3 -3
  272. data/vendor/libgit2/src/win32/w32_common.h +18 -9
  273. data/vendor/libgit2/src/win32/{w32_crtdbg_stacktrace.c → w32_leakcheck.c} +269 -33
  274. data/vendor/libgit2/src/win32/w32_leakcheck.h +222 -0
  275. data/vendor/libgit2/src/win32/w32_util.h +6 -6
  276. data/vendor/libgit2/src/worktree.c +32 -14
  277. data/vendor/libgit2/src/zstream.c +1 -1
  278. metadata +32 -16
  279. data/vendor/libgit2/src/allocators/win32_crtdbg.c +0 -118
  280. data/vendor/libgit2/src/buf_text.c +0 -316
  281. data/vendor/libgit2/src/buf_text.h +0 -122
  282. data/vendor/libgit2/src/global.c +0 -363
  283. data/vendor/libgit2/src/global.h +0 -41
  284. data/vendor/libgit2/src/thread-utils.c +0 -58
  285. data/vendor/libgit2/src/thread-utils.h +0 -364
  286. data/vendor/libgit2/src/win32/w32_crtdbg_stacktrace.h +0 -127
  287. data/vendor/libgit2/src/win32/w32_stack.c +0 -188
  288. data/vendor/libgit2/src/win32/w32_stack.h +0 -140
@@ -17,7 +17,6 @@
17
17
  #include "smart.h"
18
18
  #include "remote.h"
19
19
  #include "repository.h"
20
- #include "global.h"
21
20
  #include "http.h"
22
21
  #include "git2/sys/credential.h"
23
22
 
@@ -53,6 +52,10 @@
53
52
  # define WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_3 0x00002000
54
53
  #endif
55
54
 
55
+ #ifndef WINHTTP_NO_CLIENT_CERT_CONTEXT
56
+ # define WINHTTP_NO_CLIENT_CERT_CONTEXT NULL
57
+ #endif
58
+
56
59
  #ifndef HTTP_STATUS_PERMANENT_REDIRECT
57
60
  # define HTTP_STATUS_PERMANENT_REDIRECT 308
58
61
  #endif
@@ -112,7 +115,8 @@ typedef struct {
112
115
  DWORD post_body_len;
113
116
  unsigned sent_request : 1,
114
117
  received_response : 1,
115
- chunked : 1;
118
+ chunked : 1,
119
+ status_sending_request_reached: 1;
116
120
  } winhttp_stream;
117
121
 
118
122
  typedef struct {
@@ -150,7 +154,7 @@ static int apply_userpass_credentials(HINTERNET request, DWORD target, int mecha
150
154
  native_scheme = WINHTTP_AUTH_SCHEME_BASIC;
151
155
  } else {
152
156
  git_error_set(GIT_ERROR_HTTP, "invalid authentication scheme");
153
- error = -1;
157
+ error = GIT_EAUTH;
154
158
  goto done;
155
159
  }
156
160
 
@@ -189,7 +193,7 @@ static int apply_default_credentials(HINTERNET request, DWORD target, int mechan
189
193
  native_scheme = WINHTTP_AUTH_SCHEME_NTLM;
190
194
  } else {
191
195
  git_error_set(GIT_ERROR_HTTP, "invalid authentication scheme");
192
- return -1;
196
+ return GIT_EAUTH;
193
197
  }
194
198
 
195
199
  /*
@@ -269,7 +273,7 @@ static int acquire_fallback_cred(
269
273
  pISM->lpVtbl->Release(pISM);
270
274
  }
271
275
 
272
- /* Only unitialize if the call to CoInitializeEx was successful. */
276
+ /* Only uninitialize if the call to CoInitializeEx was successful. */
273
277
  if (SUCCEEDED(hCoInitResult))
274
278
  CoUninitialize();
275
279
  }
@@ -425,7 +429,7 @@ static int winhttp_stream_connect(winhttp_stream *s)
425
429
  proxy_opts = &t->owner->proxy;
426
430
  if (proxy_opts->type == GIT_PROXY_AUTO) {
427
431
  /* Set proxy if necessary */
428
- if (git_remote__get_http_proxy(t->owner->owner, (strcmp(t->server.url.scheme, "https") == 0), &proxy_url) < 0)
432
+ if (git_remote__http_proxy(&proxy_url, t->owner->owner, &t->server.url) < 0)
429
433
  goto on_error;
430
434
  }
431
435
  else if (proxy_opts->type == GIT_PROXY_SPECIFIED) {
@@ -452,8 +456,14 @@ static int winhttp_stream_connect(winhttp_stream *s)
452
456
  git_buf_puts(&processed_url, t->proxy.url.scheme);
453
457
  git_buf_PUTS(&processed_url, "://");
454
458
 
459
+ if (git_net_url_is_ipv6(&t->proxy.url))
460
+ git_buf_putc(&processed_url, '[');
461
+
455
462
  git_buf_puts(&processed_url, t->proxy.url.host);
456
463
 
464
+ if (git_net_url_is_ipv6(&t->proxy.url))
465
+ git_buf_putc(&processed_url, ']');
466
+
457
467
  if (!git_net_url_is_default_port(&t->proxy.url))
458
468
  git_buf_printf(&processed_url, ":%s", t->proxy.url.port);
459
469
 
@@ -606,7 +616,7 @@ static int parse_unauthorized_response(
606
616
  */
607
617
  if (!WinHttpQueryAuthSchemes(request, &supported, &first, &target)) {
608
618
  git_error_set(GIT_ERROR_OS, "failed to parse supported auth schemes");
609
- return -1;
619
+ return GIT_EAUTH;
610
620
  }
611
621
 
612
622
  if (WINHTTP_AUTH_SCHEME_NTLM & supported) {
@@ -708,39 +718,46 @@ static void CALLBACK winhttp_status(
708
718
  DWORD status;
709
719
 
710
720
  GIT_UNUSED(connection);
711
- GIT_UNUSED(ctx);
712
721
  GIT_UNUSED(info_len);
713
722
 
714
- if (code != WINHTTP_CALLBACK_STATUS_SECURE_FAILURE)
715
- return;
716
-
717
- status = *((DWORD *)info);
718
-
719
- if ((status & WINHTTP_CALLBACK_STATUS_FLAG_CERT_CN_INVALID))
720
- git_error_set(GIT_ERROR_HTTP, "SSL certificate issued for different common name");
721
- else if ((status & WINHTTP_CALLBACK_STATUS_FLAG_CERT_DATE_INVALID))
722
- git_error_set(GIT_ERROR_HTTP, "SSL certificate has expired");
723
- else if ((status & WINHTTP_CALLBACK_STATUS_FLAG_INVALID_CA))
724
- git_error_set(GIT_ERROR_HTTP, "SSL certificate signed by unknown CA");
725
- else if ((status & WINHTTP_CALLBACK_STATUS_FLAG_INVALID_CERT))
726
- git_error_set(GIT_ERROR_HTTP, "SSL certificate is invalid");
727
- else if ((status & WINHTTP_CALLBACK_STATUS_FLAG_CERT_REV_FAILED))
728
- git_error_set(GIT_ERROR_HTTP, "certificate revocation check failed");
729
- else if ((status & WINHTTP_CALLBACK_STATUS_FLAG_CERT_REVOKED))
730
- git_error_set(GIT_ERROR_HTTP, "SSL certificate was revoked");
731
- else if ((status & WINHTTP_CALLBACK_STATUS_FLAG_SECURITY_CHANNEL_ERROR))
732
- git_error_set(GIT_ERROR_HTTP, "security libraries could not be loaded");
733
- else
734
- git_error_set(GIT_ERROR_HTTP, "unknown security error %lu", status);
723
+ switch (code) {
724
+ case WINHTTP_CALLBACK_STATUS_SECURE_FAILURE:
725
+ status = *((DWORD *)info);
726
+
727
+ if ((status & WINHTTP_CALLBACK_STATUS_FLAG_CERT_CN_INVALID))
728
+ git_error_set(GIT_ERROR_HTTP, "SSL certificate issued for different common name");
729
+ else if ((status & WINHTTP_CALLBACK_STATUS_FLAG_CERT_DATE_INVALID))
730
+ git_error_set(GIT_ERROR_HTTP, "SSL certificate has expired");
731
+ else if ((status & WINHTTP_CALLBACK_STATUS_FLAG_INVALID_CA))
732
+ git_error_set(GIT_ERROR_HTTP, "SSL certificate signed by unknown CA");
733
+ else if ((status & WINHTTP_CALLBACK_STATUS_FLAG_INVALID_CERT))
734
+ git_error_set(GIT_ERROR_HTTP, "SSL certificate is invalid");
735
+ else if ((status & WINHTTP_CALLBACK_STATUS_FLAG_CERT_REV_FAILED))
736
+ git_error_set(GIT_ERROR_HTTP, "certificate revocation check failed");
737
+ else if ((status & WINHTTP_CALLBACK_STATUS_FLAG_CERT_REVOKED))
738
+ git_error_set(GIT_ERROR_HTTP, "SSL certificate was revoked");
739
+ else if ((status & WINHTTP_CALLBACK_STATUS_FLAG_SECURITY_CHANNEL_ERROR))
740
+ git_error_set(GIT_ERROR_HTTP, "security libraries could not be loaded");
741
+ else
742
+ git_error_set(GIT_ERROR_HTTP, "unknown security error %lu", status);
743
+
744
+ break;
745
+
746
+ case WINHTTP_CALLBACK_STATUS_SENDING_REQUEST:
747
+ ((winhttp_stream *) ctx)->status_sending_request_reached = 1;
748
+
749
+ break;
750
+ }
735
751
  }
736
752
 
737
753
  static int winhttp_connect(
738
754
  winhttp_subtransport *t)
739
755
  {
740
- wchar_t *wide_host;
756
+ wchar_t *wide_host = NULL;
741
757
  int32_t port;
742
- wchar_t *wide_ua;
743
- git_buf ua = GIT_BUF_INIT;
758
+ wchar_t *wide_ua = NULL;
759
+ git_buf ipv6 = GIT_BUF_INIT, ua = GIT_BUF_INIT;
760
+ const char *host;
744
761
  int error = -1;
745
762
  int default_timeout = TIMEOUT_INFINITE;
746
763
  int default_connect_timeout = DEFAULT_CONNECT_TIMEOUT;
@@ -756,29 +773,33 @@ static int winhttp_connect(
756
773
  /* Prepare port */
757
774
  if (git__strntol32(&port, t->server.url.port,
758
775
  strlen(t->server.url.port), NULL, 10) < 0)
759
- return -1;
776
+ goto on_error;
777
+
778
+ /* IPv6? Add braces around the host. */
779
+ if (git_net_url_is_ipv6(&t->server.url)) {
780
+ if (git_buf_printf(&ipv6, "[%s]", t->server.url.host) < 0)
781
+ goto on_error;
782
+
783
+ host = ipv6.ptr;
784
+ } else {
785
+ host = t->server.url.host;
786
+ }
760
787
 
761
788
  /* Prepare host */
762
- if (git__utf8_to_16_alloc(&wide_host, t->server.url.host) < 0) {
789
+ if (git__utf8_to_16_alloc(&wide_host, host) < 0) {
763
790
  git_error_set(GIT_ERROR_OS, "unable to convert host to wide characters");
764
- return -1;
791
+ goto on_error;
765
792
  }
766
793
 
767
794
 
768
- if ((error = git_http__user_agent(&ua)) < 0) {
769
- git__free(wide_host);
770
- return error;
771
- }
795
+ if (git_http__user_agent(&ua) < 0)
796
+ goto on_error;
772
797
 
773
798
  if (git__utf8_to_16_alloc(&wide_ua, git_buf_cstr(&ua)) < 0) {
774
799
  git_error_set(GIT_ERROR_OS, "unable to convert host to wide characters");
775
- git__free(wide_host);
776
- git_buf_dispose(&ua);
777
- return -1;
800
+ goto on_error;
778
801
  }
779
802
 
780
- git_buf_dispose(&ua);
781
-
782
803
  /* Establish session */
783
804
  t->session = WinHttpOpen(
784
805
  wide_ua,
@@ -826,7 +847,12 @@ static int winhttp_connect(
826
847
  goto on_error;
827
848
  }
828
849
 
829
- if (WinHttpSetStatusCallback(t->connection, winhttp_status, WINHTTP_CALLBACK_FLAG_SECURE_FAILURE, 0) == WINHTTP_INVALID_STATUS_CALLBACK) {
850
+ if (WinHttpSetStatusCallback(
851
+ t->connection,
852
+ winhttp_status,
853
+ WINHTTP_CALLBACK_FLAG_SECURE_FAILURE | WINHTTP_CALLBACK_FLAG_SEND_REQUEST,
854
+ 0
855
+ ) == WINHTTP_INVALID_STATUS_CALLBACK) {
830
856
  git_error_set(GIT_ERROR_OS, "failed to set status callback");
831
857
  goto on_error;
832
858
  }
@@ -837,6 +863,8 @@ on_error:
837
863
  if (error < 0)
838
864
  winhttp_close_connection(t);
839
865
 
866
+ git_buf_dispose(&ua);
867
+ git_buf_dispose(&ipv6);
840
868
  git__free(wide_host);
841
869
  git__free(wide_ua);
842
870
 
@@ -858,12 +886,12 @@ static int do_send_request(winhttp_stream *s, size_t len, bool chunked)
858
886
  success = WinHttpSendRequest(s->request,
859
887
  WINHTTP_NO_ADDITIONAL_HEADERS, 0,
860
888
  WINHTTP_NO_REQUEST_DATA, 0,
861
- WINHTTP_IGNORE_REQUEST_TOTAL_LENGTH, 0);
889
+ WINHTTP_IGNORE_REQUEST_TOTAL_LENGTH, (DWORD_PTR)s);
862
890
  } else {
863
891
  success = WinHttpSendRequest(s->request,
864
892
  WINHTTP_NO_ADDITIONAL_HEADERS, 0,
865
893
  WINHTTP_NO_REQUEST_DATA, 0,
866
- (DWORD)len, 0);
894
+ (DWORD)len, (DWORD_PTR)s);
867
895
  }
868
896
 
869
897
  if (success || GetLastError() != (DWORD)SEC_E_BUFFER_TOO_SMALL)
@@ -875,42 +903,71 @@ static int do_send_request(winhttp_stream *s, size_t len, bool chunked)
875
903
 
876
904
  static int send_request(winhttp_stream *s, size_t len, bool chunked)
877
905
  {
878
- int request_failed = 0, cert_valid = 1, error = 0;
879
- DWORD ignore_flags;
906
+ int request_failed = 1, error, attempts = 0;
907
+ DWORD ignore_flags, send_request_error;
880
908
 
881
909
  git_error_clear();
882
- if ((error = do_send_request(s, len, chunked)) < 0) {
883
- if (GetLastError() != ERROR_WINHTTP_SECURE_FAILURE) {
884
- git_error_set(GIT_ERROR_OS, "failed to send request");
885
- return -1;
886
- }
887
910
 
888
- request_failed = 1;
889
- cert_valid = 0;
890
- }
911
+ while (request_failed && attempts++ < 3) {
912
+ int cert_valid = 1;
913
+ int client_cert_requested = 0;
914
+ request_failed = 0;
915
+ if ((error = do_send_request(s, len, chunked)) < 0) {
916
+ send_request_error = GetLastError();
917
+ request_failed = 1;
918
+ switch (send_request_error) {
919
+ case ERROR_WINHTTP_SECURE_FAILURE:
920
+ cert_valid = 0;
921
+ break;
922
+ case ERROR_WINHTTP_CLIENT_AUTH_CERT_NEEDED:
923
+ client_cert_requested = 1;
924
+ break;
925
+ default:
926
+ git_error_set(GIT_ERROR_OS, "failed to send request");
927
+ return -1;
928
+ }
929
+ }
891
930
 
892
- git_error_clear();
893
- if ((error = certificate_check(s, cert_valid)) < 0) {
894
- if (!git_error_last())
895
- git_error_set(GIT_ERROR_OS, "user cancelled certificate check");
931
+ /*
932
+ * Only check the certificate if we were able to reach the sending request phase, or
933
+ * received a secure failure error. Otherwise, the server certificate won't be available
934
+ * since the request wasn't able to complete (e.g. proxy auth required)
935
+ */
936
+ if (!cert_valid ||
937
+ (!request_failed && s->status_sending_request_reached)) {
938
+ git_error_clear();
939
+ if ((error = certificate_check(s, cert_valid)) < 0) {
940
+ if (!git_error_last())
941
+ git_error_set(GIT_ERROR_OS, "user cancelled certificate check");
896
942
 
897
- return error;
898
- }
943
+ return error;
944
+ }
945
+ }
899
946
 
900
- /* if neither the request nor the certificate check returned errors, we're done */
901
- if (!request_failed)
902
- return 0;
947
+ /* if neither the request nor the certificate check returned errors, we're done */
948
+ if (!request_failed)
949
+ return 0;
903
950
 
904
- ignore_flags = no_check_cert_flags;
951
+ if (!cert_valid) {
952
+ ignore_flags = no_check_cert_flags;
953
+ if (!WinHttpSetOption(s->request, WINHTTP_OPTION_SECURITY_FLAGS, &ignore_flags, sizeof(ignore_flags))) {
954
+ git_error_set(GIT_ERROR_OS, "failed to set security options");
955
+ return -1;
956
+ }
957
+ }
905
958
 
906
- if (!WinHttpSetOption(s->request, WINHTTP_OPTION_SECURITY_FLAGS, &ignore_flags, sizeof(ignore_flags))) {
907
- git_error_set(GIT_ERROR_OS, "failed to set security options");
908
- return -1;
959
+ if (client_cert_requested) {
960
+ /*
961
+ * Client certificates are not supported, explicitly tell the server that
962
+ * (it's possible a client certificate was requested but is not required)
963
+ */
964
+ if (!WinHttpSetOption(s->request, WINHTTP_OPTION_CLIENT_CERT_CONTEXT, WINHTTP_NO_CLIENT_CERT_CONTEXT, 0)) {
965
+ git_error_set(GIT_ERROR_OS, "failed to set client cert context");
966
+ return -1;
967
+ }
968
+ }
909
969
  }
910
970
 
911
- if ((error = do_send_request(s, len, chunked)) < 0)
912
- git_error_set(GIT_ERROR_OS, "failed to send request with unchecked certificate");
913
-
914
971
  return error;
915
972
  }
916
973
 
@@ -983,7 +1040,7 @@ replay:
983
1040
  /* Enforce a reasonable cap on the number of replays */
984
1041
  if (replay_count++ >= GIT_HTTP_REPLAY_MAX) {
985
1042
  git_error_set(GIT_ERROR_HTTP, "too many redirects or authentication replays");
986
- return -1;
1043
+ return GIT_ERROR; /* not GIT_EAUTH because the exact cause is not clear */
987
1044
  }
988
1045
 
989
1046
  /* Connect if necessary */
@@ -1004,7 +1061,7 @@ replay:
1004
1061
  }
1005
1062
 
1006
1063
  if (s->chunked) {
1007
- assert(s->verb == post_verb);
1064
+ GIT_ASSERT(s->verb == post_verb);
1008
1065
 
1009
1066
  /* Flush, if necessary */
1010
1067
  if (s->chunk_buffer_len > 0 &&
@@ -1055,7 +1112,7 @@ replay:
1055
1112
  }
1056
1113
 
1057
1114
  len -= bytes_read;
1058
- assert(bytes_read == bytes_written);
1115
+ GIT_ASSERT(bytes_read == bytes_written);
1059
1116
  }
1060
1117
 
1061
1118
  git__free(buffer);
@@ -1167,7 +1224,7 @@ replay:
1167
1224
  if (error < 0) {
1168
1225
  return error;
1169
1226
  } else if (!error) {
1170
- assert(t->server.cred);
1227
+ GIT_ASSERT(t->server.cred);
1171
1228
  winhttp_stream_close(s);
1172
1229
  goto replay;
1173
1230
  }
@@ -1181,7 +1238,7 @@ replay:
1181
1238
  if (error < 0) {
1182
1239
  return error;
1183
1240
  } else if (!error) {
1184
- assert(t->proxy.cred);
1241
+ GIT_ASSERT(t->proxy.cred);
1185
1242
  winhttp_stream_close(s);
1186
1243
  goto replay;
1187
1244
  }
@@ -1267,7 +1324,7 @@ static int winhttp_stream_write_single(
1267
1324
  return -1;
1268
1325
  }
1269
1326
 
1270
- assert((DWORD)len == bytes_written);
1327
+ GIT_ASSERT((DWORD)len == bytes_written);
1271
1328
 
1272
1329
  return 0;
1273
1330
  }
@@ -1366,7 +1423,7 @@ static int winhttp_stream_write_buffered(
1366
1423
  return -1;
1367
1424
  }
1368
1425
 
1369
- assert((DWORD)len == bytes_written);
1426
+ GIT_ASSERT((DWORD)len == bytes_written);
1370
1427
 
1371
1428
  s->post_body_len += bytes_written;
1372
1429
 
@@ -1573,7 +1630,7 @@ static int winhttp_action(
1573
1630
  break;
1574
1631
 
1575
1632
  default:
1576
- assert(0);
1633
+ GIT_ASSERT(0);
1577
1634
  }
1578
1635
 
1579
1636
  if (!ret)