rugged 1.3.2.3 → 1.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (329) hide show
  1. checksums.yaml +4 -4
  2. data/ext/rugged/extconf.rb +1 -1
  3. data/ext/rugged/rugged_config.c +7 -2
  4. data/ext/rugged/rugged_remote.c +17 -0
  5. data/lib/rugged/version.rb +1 -1
  6. data/vendor/libgit2/CMakeLists.txt +103 -276
  7. data/vendor/libgit2/COPYING +36 -19
  8. data/vendor/libgit2/cmake/AddCFlagIfSupported.cmake +21 -21
  9. data/vendor/libgit2/cmake/DefaultCFlags.cmake +154 -0
  10. data/vendor/libgit2/cmake/EnableWarnings.cmake +13 -13
  11. data/vendor/libgit2/cmake/FindCoreFoundation.cmake +13 -13
  12. data/vendor/libgit2/cmake/FindGSSAPI.cmake +171 -287
  13. data/vendor/libgit2/cmake/FindGSSFramework.cmake +13 -13
  14. data/vendor/libgit2/cmake/{FindHTTP_Parser.cmake → FindHTTPParser.cmake} +17 -17
  15. data/vendor/libgit2/cmake/FindIconv.cmake +27 -27
  16. data/vendor/libgit2/cmake/FindLibSSH2.cmake +5 -5
  17. data/vendor/libgit2/cmake/FindPCRE.cmake +13 -13
  18. data/vendor/libgit2/cmake/FindPCRE2.cmake +12 -12
  19. data/vendor/libgit2/cmake/FindPkgLibraries.cmake +19 -19
  20. data/vendor/libgit2/cmake/FindSecurity.cmake +14 -14
  21. data/vendor/libgit2/cmake/FindStatNsec.cmake +12 -18
  22. data/vendor/libgit2/cmake/Findfutimens.cmake +8 -8
  23. data/vendor/libgit2/cmake/FindmbedTLS.cmake +63 -70
  24. data/vendor/libgit2/cmake/IdeSplitSources.cmake +18 -18
  25. data/vendor/libgit2/cmake/PkgBuildConfig.cmake +60 -60
  26. data/vendor/libgit2/cmake/SanitizeBool.cmake +20 -20
  27. data/vendor/libgit2/cmake/SelectGSSAPI.cmake +37 -37
  28. data/vendor/libgit2/cmake/SelectHTTPParser.cmake +19 -0
  29. data/vendor/libgit2/cmake/SelectHTTPSBackend.cmake +100 -100
  30. data/vendor/libgit2/cmake/SelectHashes.cmake +39 -49
  31. data/vendor/libgit2/cmake/SelectRegex.cmake +51 -0
  32. data/vendor/libgit2/cmake/SelectSSH.cmake +41 -0
  33. data/vendor/libgit2/cmake/SelectWinHTTP.cmake +17 -0
  34. data/vendor/libgit2/cmake/SelectZlib.cmake +34 -0
  35. data/vendor/libgit2/deps/chromium-zlib/CMakeLists.txt +6 -6
  36. data/vendor/libgit2/deps/ntlmclient/CMakeLists.txt +31 -31
  37. data/vendor/libgit2/deps/ntlmclient/crypt_openssl.c +1 -1
  38. data/vendor/libgit2/deps/ntlmclient/ntlm.c +4 -4
  39. data/vendor/libgit2/deps/ntlmclient/ntlm.h +4 -4
  40. data/vendor/libgit2/deps/ntlmclient/ntlmclient.h +2 -2
  41. data/vendor/libgit2/deps/pcre/CMakeLists.txt +88 -88
  42. data/vendor/libgit2/deps/winhttp/CMakeLists.txt +14 -16
  43. data/vendor/libgit2/deps/zlib/adler32.c +0 -7
  44. data/vendor/libgit2/deps/zlib/crc32.c +288 -975
  45. data/vendor/libgit2/deps/zlib/crc32.h +436 -9441
  46. data/vendor/libgit2/deps/zlib/deflate.c +31 -83
  47. data/vendor/libgit2/deps/zlib/deflate.h +15 -12
  48. data/vendor/libgit2/deps/zlib/gzguts.h +2 -3
  49. data/vendor/libgit2/deps/zlib/infback.c +1 -2
  50. data/vendor/libgit2/deps/zlib/inffast.c +14 -14
  51. data/vendor/libgit2/deps/zlib/inflate.c +8 -39
  52. data/vendor/libgit2/deps/zlib/inflate.h +2 -3
  53. data/vendor/libgit2/deps/zlib/inftrees.c +3 -3
  54. data/vendor/libgit2/deps/zlib/trees.c +48 -27
  55. data/vendor/libgit2/deps/zlib/zlib.h +100 -126
  56. data/vendor/libgit2/deps/zlib/zutil.c +2 -2
  57. data/vendor/libgit2/deps/zlib/zutil.h +9 -12
  58. data/vendor/libgit2/include/git2/apply.h +16 -2
  59. data/vendor/libgit2/include/git2/attr.h +11 -2
  60. data/vendor/libgit2/include/git2/blame.h +4 -1
  61. data/vendor/libgit2/include/git2/blob.h +14 -1
  62. data/vendor/libgit2/include/git2/branch.h +2 -0
  63. data/vendor/libgit2/include/git2/buffer.h +18 -78
  64. data/vendor/libgit2/include/git2/cert.h +2 -2
  65. data/vendor/libgit2/include/git2/checkout.h +5 -2
  66. data/vendor/libgit2/include/git2/clone.h +3 -3
  67. data/vendor/libgit2/include/git2/commit.h +2 -0
  68. data/vendor/libgit2/include/git2/common.h +5 -12
  69. data/vendor/libgit2/include/git2/config.h +19 -3
  70. data/vendor/libgit2/include/git2/credential.h +2 -1
  71. data/vendor/libgit2/include/git2/credential_helpers.h +1 -0
  72. data/vendor/libgit2/include/git2/deprecated.h +1 -1
  73. data/vendor/libgit2/include/git2/describe.h +7 -2
  74. data/vendor/libgit2/include/git2/diff.h +17 -9
  75. data/vendor/libgit2/include/git2/email.h +1 -1
  76. data/vendor/libgit2/include/git2/errors.h +1 -2
  77. data/vendor/libgit2/include/git2/filter.h +7 -2
  78. data/vendor/libgit2/include/git2/graph.h +1 -0
  79. data/vendor/libgit2/include/git2/ignore.h +1 -1
  80. data/vendor/libgit2/include/git2/index.h +11 -5
  81. data/vendor/libgit2/include/git2/indexer.h +19 -0
  82. data/vendor/libgit2/include/git2/merge.h +23 -3
  83. data/vendor/libgit2/include/git2/message.h +2 -0
  84. data/vendor/libgit2/include/git2/object.h +23 -0
  85. data/vendor/libgit2/include/git2/odb.h +37 -7
  86. data/vendor/libgit2/include/git2/odb_backend.h +1 -1
  87. data/vendor/libgit2/include/git2/pack.h +24 -8
  88. data/vendor/libgit2/include/git2/patch.h +8 -0
  89. data/vendor/libgit2/include/git2/pathspec.h +1 -1
  90. data/vendor/libgit2/include/git2/proxy.h +1 -1
  91. data/vendor/libgit2/include/git2/rebase.h +9 -1
  92. data/vendor/libgit2/include/git2/refdb.h +3 -0
  93. data/vendor/libgit2/include/git2/reflog.h +1 -1
  94. data/vendor/libgit2/include/git2/refs.h +2 -2
  95. data/vendor/libgit2/include/git2/remote.h +184 -37
  96. data/vendor/libgit2/include/git2/repository.h +14 -9
  97. data/vendor/libgit2/include/git2/reset.h +2 -2
  98. data/vendor/libgit2/include/git2/revparse.h +1 -1
  99. data/vendor/libgit2/include/git2/revwalk.h +4 -1
  100. data/vendor/libgit2/include/git2/signature.h +1 -1
  101. data/vendor/libgit2/include/git2/stash.h +3 -3
  102. data/vendor/libgit2/include/git2/status.h +9 -3
  103. data/vendor/libgit2/include/git2/submodule.h +7 -2
  104. data/vendor/libgit2/include/git2/sys/commit_graph.h +1 -1
  105. data/vendor/libgit2/include/git2/sys/odb_backend.h +2 -5
  106. data/vendor/libgit2/include/git2/sys/remote.h +31 -0
  107. data/vendor/libgit2/include/git2/sys/stream.h +1 -1
  108. data/vendor/libgit2/include/git2/sys/transport.h +25 -34
  109. data/vendor/libgit2/include/git2/tag.h +1 -0
  110. data/vendor/libgit2/include/git2/tree.h +4 -3
  111. data/vendor/libgit2/include/git2/types.h +7 -7
  112. data/vendor/libgit2/include/git2/version.h +3 -3
  113. data/vendor/libgit2/include/git2/worktree.h +12 -2
  114. data/vendor/libgit2/src/CMakeLists.txt +189 -315
  115. data/vendor/libgit2/src/annotated_commit.h +1 -1
  116. data/vendor/libgit2/src/apply.c +18 -18
  117. data/vendor/libgit2/src/apply.h +2 -2
  118. data/vendor/libgit2/src/attr.c +18 -18
  119. data/vendor/libgit2/src/attr_file.c +17 -17
  120. data/vendor/libgit2/src/attr_file.h +4 -4
  121. data/vendor/libgit2/src/attrcache.c +17 -12
  122. data/vendor/libgit2/src/blame_git.c +1 -1
  123. data/vendor/libgit2/src/blob.c +33 -26
  124. data/vendor/libgit2/src/blob.h +1 -1
  125. data/vendor/libgit2/src/branch.c +150 -109
  126. data/vendor/libgit2/src/branch.h +15 -3
  127. data/vendor/libgit2/src/buf.c +126 -0
  128. data/vendor/libgit2/src/buf.h +50 -0
  129. data/vendor/libgit2/src/cc-compat.h +1 -1
  130. data/vendor/libgit2/src/checkout.c +74 -68
  131. data/vendor/libgit2/src/cherrypick.c +10 -10
  132. data/vendor/libgit2/src/clone.c +66 -66
  133. data/vendor/libgit2/src/commit.c +128 -58
  134. data/vendor/libgit2/src/commit.h +24 -1
  135. data/vendor/libgit2/src/commit_graph.c +68 -53
  136. data/vendor/libgit2/src/commit_graph.h +10 -3
  137. data/vendor/libgit2/src/commit_list.c +2 -3
  138. data/vendor/libgit2/src/common.h +10 -3
  139. data/vendor/libgit2/src/config.c +99 -77
  140. data/vendor/libgit2/src/config.h +15 -2
  141. data/vendor/libgit2/src/config_file.c +103 -91
  142. data/vendor/libgit2/src/config_mem.c +9 -9
  143. data/vendor/libgit2/src/config_parse.c +27 -23
  144. data/vendor/libgit2/src/crlf.c +24 -21
  145. data/vendor/libgit2/src/date.c +10 -17
  146. data/vendor/libgit2/src/date.h +33 -0
  147. data/vendor/libgit2/src/describe.c +27 -19
  148. data/vendor/libgit2/src/diff.c +25 -8
  149. data/vendor/libgit2/src/diff.h +2 -4
  150. data/vendor/libgit2/src/diff_driver.c +34 -36
  151. data/vendor/libgit2/src/diff_driver.h +3 -3
  152. data/vendor/libgit2/src/diff_file.c +29 -20
  153. data/vendor/libgit2/src/diff_generate.c +30 -6
  154. data/vendor/libgit2/src/diff_generate.h +5 -3
  155. data/vendor/libgit2/src/diff_print.c +102 -95
  156. data/vendor/libgit2/src/diff_stats.c +40 -29
  157. data/vendor/libgit2/src/{message.h → diff_stats.h} +7 -6
  158. data/vendor/libgit2/src/diff_tform.c +9 -8
  159. data/vendor/libgit2/src/diff_xdiff.c +3 -8
  160. data/vendor/libgit2/src/email.c +54 -38
  161. data/vendor/libgit2/src/email.h +1 -1
  162. data/vendor/libgit2/src/errors.c +18 -18
  163. data/vendor/libgit2/src/features.h.in +6 -1
  164. data/vendor/libgit2/src/fetch.c +69 -24
  165. data/vendor/libgit2/src/fetch.h +1 -1
  166. data/vendor/libgit2/src/fetchhead.c +19 -19
  167. data/vendor/libgit2/src/filebuf.c +28 -28
  168. data/vendor/libgit2/src/filebuf.h +1 -1
  169. data/vendor/libgit2/src/filter.c +96 -52
  170. data/vendor/libgit2/src/filter.h +26 -5
  171. data/vendor/libgit2/src/fs_path.c +1912 -0
  172. data/vendor/libgit2/src/fs_path.h +752 -0
  173. data/vendor/libgit2/src/futils.c +91 -85
  174. data/vendor/libgit2/src/futils.h +26 -14
  175. data/vendor/libgit2/src/hash/sha1/collisiondetect.c +2 -2
  176. data/vendor/libgit2/src/hash/sha1/common_crypto.c +2 -2
  177. data/vendor/libgit2/src/hash/sha1/generic.c +2 -2
  178. data/vendor/libgit2/src/hash/sha1/mbedtls.c +2 -2
  179. data/vendor/libgit2/src/hash/sha1/openssl.c +2 -2
  180. data/vendor/libgit2/src/hash/sha1/sha1dc/sha1.c +1 -1
  181. data/vendor/libgit2/src/hash/sha1/win32.c +6 -6
  182. data/vendor/libgit2/src/hash/sha1.h +3 -1
  183. data/vendor/libgit2/src/hash.c +67 -35
  184. data/vendor/libgit2/src/hash.h +12 -12
  185. data/vendor/libgit2/src/ident.c +18 -18
  186. data/vendor/libgit2/src/ignore.c +35 -34
  187. data/vendor/libgit2/src/ignore.h +2 -2
  188. data/vendor/libgit2/src/index.c +79 -80
  189. data/vendor/libgit2/src/index.h +6 -3
  190. data/vendor/libgit2/src/indexer.c +75 -57
  191. data/vendor/libgit2/src/iterator.c +64 -56
  192. data/vendor/libgit2/src/iterator.h +5 -5
  193. data/vendor/libgit2/src/khash.h +1 -1
  194. data/vendor/libgit2/src/libgit2.c +22 -19
  195. data/vendor/libgit2/src/mailmap.c +38 -36
  196. data/vendor/libgit2/src/merge.c +27 -27
  197. data/vendor/libgit2/src/merge.h +1 -14
  198. data/vendor/libgit2/src/merge_driver.c +2 -2
  199. data/vendor/libgit2/src/merge_file.c +13 -3
  200. data/vendor/libgit2/src/message.c +21 -10
  201. data/vendor/libgit2/src/midx.c +83 -66
  202. data/vendor/libgit2/src/midx.h +3 -3
  203. data/vendor/libgit2/src/mwindow.c +1 -1
  204. data/vendor/libgit2/src/net.c +278 -68
  205. data/vendor/libgit2/src/net.h +10 -3
  206. data/vendor/libgit2/src/netops.c +1 -1
  207. data/vendor/libgit2/src/netops.h +1 -1
  208. data/vendor/libgit2/src/notes.c +20 -29
  209. data/vendor/libgit2/src/object.c +49 -9
  210. data/vendor/libgit2/src/object.h +1 -1
  211. data/vendor/libgit2/src/odb.c +35 -32
  212. data/vendor/libgit2/src/odb.h +1 -1
  213. data/vendor/libgit2/src/odb_loose.c +68 -68
  214. data/vendor/libgit2/src/odb_mempack.c +18 -5
  215. data/vendor/libgit2/src/odb_pack.c +43 -43
  216. data/vendor/libgit2/src/oid.c +11 -4
  217. data/vendor/libgit2/src/oid.h +15 -0
  218. data/vendor/libgit2/src/pack-objects.c +41 -26
  219. data/vendor/libgit2/src/pack-objects.h +11 -6
  220. data/vendor/libgit2/src/pack.c +10 -10
  221. data/vendor/libgit2/src/patch.c +3 -3
  222. data/vendor/libgit2/src/patch.h +1 -0
  223. data/vendor/libgit2/src/patch_generate.c +27 -11
  224. data/vendor/libgit2/src/patch_generate.h +5 -5
  225. data/vendor/libgit2/src/patch_parse.c +24 -24
  226. data/vendor/libgit2/src/path.c +76 -1951
  227. data/vendor/libgit2/src/path.h +34 -741
  228. data/vendor/libgit2/src/pathspec.c +6 -6
  229. data/vendor/libgit2/src/pathspec.h +2 -2
  230. data/vendor/libgit2/src/posix.c +3 -3
  231. data/vendor/libgit2/src/posix.h +1 -0
  232. data/vendor/libgit2/src/pqueue.h +1 -1
  233. data/vendor/libgit2/src/proxy.c +4 -1
  234. data/vendor/libgit2/src/proxy.h +1 -1
  235. data/vendor/libgit2/src/push.c +30 -35
  236. data/vendor/libgit2/src/push.h +4 -16
  237. data/vendor/libgit2/src/rand.c +226 -0
  238. data/vendor/libgit2/src/rand.h +37 -0
  239. data/vendor/libgit2/src/reader.c +8 -8
  240. data/vendor/libgit2/src/reader.h +2 -2
  241. data/vendor/libgit2/src/rebase.c +89 -88
  242. data/vendor/libgit2/src/refdb_fs.c +447 -173
  243. data/vendor/libgit2/src/refs.c +32 -32
  244. data/vendor/libgit2/src/refs.h +2 -2
  245. data/vendor/libgit2/src/refspec.c +32 -37
  246. data/vendor/libgit2/src/refspec.h +5 -2
  247. data/vendor/libgit2/src/regexp.c +1 -1
  248. data/vendor/libgit2/src/remote.c +713 -419
  249. data/vendor/libgit2/src/remote.h +15 -10
  250. data/vendor/libgit2/src/repository.c +350 -467
  251. data/vendor/libgit2/src/repository.h +11 -10
  252. data/vendor/libgit2/src/reset.c +8 -5
  253. data/vendor/libgit2/src/revert.c +10 -10
  254. data/vendor/libgit2/src/revparse.c +48 -35
  255. data/vendor/libgit2/src/revwalk.c +7 -7
  256. data/vendor/libgit2/src/signature.c +12 -6
  257. data/vendor/libgit2/src/signature.h +1 -1
  258. data/vendor/libgit2/src/sortedcache.c +1 -1
  259. data/vendor/libgit2/src/sortedcache.h +1 -1
  260. data/vendor/libgit2/src/stash.c +36 -37
  261. data/vendor/libgit2/src/status.c +4 -1
  262. data/vendor/libgit2/src/{buffer.c → str.c} +157 -151
  263. data/vendor/libgit2/src/str.h +357 -0
  264. data/vendor/libgit2/src/streams/mbedtls.c +8 -6
  265. data/vendor/libgit2/src/streams/openssl_dynamic.h +3 -3
  266. data/vendor/libgit2/src/submodule.c +171 -159
  267. data/vendor/libgit2/src/submodule.h +1 -1
  268. data/vendor/libgit2/src/sysdir.c +68 -52
  269. data/vendor/libgit2/src/sysdir.h +15 -10
  270. data/vendor/libgit2/src/tag.c +29 -27
  271. data/vendor/libgit2/src/thread.h +3 -3
  272. data/vendor/libgit2/src/threadstate.c +3 -3
  273. data/vendor/libgit2/src/threadstate.h +1 -1
  274. data/vendor/libgit2/src/trace.c +1 -14
  275. data/vendor/libgit2/src/trace.h +5 -22
  276. data/vendor/libgit2/src/trailer.c +1 -1
  277. data/vendor/libgit2/src/transaction.c +1 -1
  278. data/vendor/libgit2/src/transport.c +10 -10
  279. data/vendor/libgit2/src/transports/auth.c +7 -9
  280. data/vendor/libgit2/src/transports/auth.h +2 -3
  281. data/vendor/libgit2/src/transports/auth_negotiate.c +12 -13
  282. data/vendor/libgit2/src/transports/auth_ntlm.c +10 -10
  283. data/vendor/libgit2/src/transports/auth_ntlm.h +0 -1
  284. data/vendor/libgit2/src/transports/git.c +9 -11
  285. data/vendor/libgit2/src/transports/http.c +37 -17
  286. data/vendor/libgit2/src/transports/http.h +2 -3
  287. data/vendor/libgit2/src/transports/httpclient.c +65 -65
  288. data/vendor/libgit2/src/transports/local.c +124 -116
  289. data/vendor/libgit2/src/transports/smart.c +51 -139
  290. data/vendor/libgit2/src/transports/smart.h +25 -31
  291. data/vendor/libgit2/src/transports/smart_pkt.c +33 -33
  292. data/vendor/libgit2/src/transports/smart_protocol.c +57 -39
  293. data/vendor/libgit2/src/transports/ssh.c +47 -112
  294. data/vendor/libgit2/src/transports/winhttp.c +50 -56
  295. data/vendor/libgit2/src/tree-cache.c +5 -5
  296. data/vendor/libgit2/src/tree-cache.h +2 -2
  297. data/vendor/libgit2/src/tree.c +59 -48
  298. data/vendor/libgit2/src/tree.h +1 -1
  299. data/vendor/libgit2/src/unix/map.c +0 -2
  300. data/vendor/libgit2/src/unix/posix.h +1 -4
  301. data/vendor/libgit2/src/unix/realpath.c +0 -2
  302. data/vendor/libgit2/src/util.c +14 -14
  303. data/vendor/libgit2/src/util.h +2 -28
  304. data/vendor/libgit2/src/vector.h +1 -1
  305. data/vendor/libgit2/src/win32/findfile.c +172 -116
  306. data/vendor/libgit2/src/win32/findfile.h +7 -4
  307. data/vendor/libgit2/src/win32/path_w32.c +140 -9
  308. data/vendor/libgit2/src/win32/path_w32.h +2 -0
  309. data/vendor/libgit2/src/win32/posix.h +0 -1
  310. data/vendor/libgit2/src/win32/posix_w32.c +11 -27
  311. data/vendor/libgit2/src/win32/w32_buffer.c +2 -3
  312. data/vendor/libgit2/src/win32/w32_buffer.h +2 -3
  313. data/vendor/libgit2/src/win32/w32_leakcheck.c +1 -1
  314. data/vendor/libgit2/src/worktree.c +116 -94
  315. data/vendor/libgit2/src/worktree.h +1 -1
  316. data/vendor/libgit2/src/xdiff/git-xdiff.h +53 -0
  317. data/vendor/libgit2/src/xdiff/xdiff.h +15 -15
  318. data/vendor/libgit2/src/xdiff/xdiffi.c +134 -108
  319. data/vendor/libgit2/src/xdiff/xemit.c +23 -7
  320. data/vendor/libgit2/src/xdiff/xhistogram.c +87 -78
  321. data/vendor/libgit2/src/xdiff/xinclude.h +1 -12
  322. data/vendor/libgit2/src/xdiff/xmerge.c +104 -117
  323. data/vendor/libgit2/src/xdiff/xpatience.c +6 -17
  324. data/vendor/libgit2/src/xdiff/xprepare.c +15 -20
  325. data/vendor/libgit2/src/xdiff/xutils.c +18 -7
  326. data/vendor/libgit2/src/zstream.c +5 -5
  327. data/vendor/libgit2/src/zstream.h +4 -4
  328. metadata +25 -10
  329. data/vendor/libgit2/src/buffer.h +0 -374
@@ -0,0 +1,752 @@
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_fs_path_h__
8
+ #define INCLUDE_fs_path_h__
9
+
10
+ #include "common.h"
11
+
12
+ #include "posix.h"
13
+ #include "str.h"
14
+ #include "vector.h"
15
+ #include "utf8.h"
16
+
17
+ /**
18
+ * Path manipulation utils
19
+ *
20
+ * These are path utilities that munge paths without actually
21
+ * looking at the real filesystem.
22
+ */
23
+
24
+ /*
25
+ * The dirname() function shall take a pointer to a character string
26
+ * that contains a pathname, and return a pointer to a string that is a
27
+ * pathname of the parent directory of that file. Trailing '/' characters
28
+ * in the path are not counted as part of the path.
29
+ *
30
+ * If path does not contain a '/', then dirname() shall return a pointer to
31
+ * the string ".". If path is a null pointer or points to an empty string,
32
+ * dirname() shall return a pointer to the string "." .
33
+ *
34
+ * The `git_fs_path_dirname` implementation is thread safe. The returned
35
+ * string must be manually free'd.
36
+ *
37
+ * The `git_fs_path_dirname_r` implementation writes the dirname to a `git_str`
38
+ * if the buffer pointer is not NULL.
39
+ * It returns an error code < 0 if there is an allocation error, otherwise
40
+ * the length of the dirname (which will be > 0).
41
+ */
42
+ extern char *git_fs_path_dirname(const char *path);
43
+ extern int git_fs_path_dirname_r(git_str *buffer, const char *path);
44
+
45
+ /*
46
+ * This function returns the basename of the file, which is the last
47
+ * part of its full name given by fname, with the drive letter and
48
+ * leading directories stripped off. For example, the basename of
49
+ * c:/foo/bar/file.ext is file.ext, and the basename of a:foo is foo.
50
+ *
51
+ * Trailing slashes and backslashes are significant: the basename of
52
+ * c:/foo/bar/ is an empty string after the rightmost slash.
53
+ *
54
+ * The `git_fs_path_basename` implementation is thread safe. The returned
55
+ * string must be manually free'd.
56
+ *
57
+ * The `git_fs_path_basename_r` implementation writes the basename to a `git_str`.
58
+ * It returns an error code < 0 if there is an allocation error, otherwise
59
+ * the length of the basename (which will be >= 0).
60
+ */
61
+ extern char *git_fs_path_basename(const char *path);
62
+ extern int git_fs_path_basename_r(git_str *buffer, const char *path);
63
+
64
+ /* Return the offset of the start of the basename. Unlike the other
65
+ * basename functions, this returns 0 if the path is empty.
66
+ */
67
+ extern size_t git_fs_path_basename_offset(git_str *buffer);
68
+
69
+ /**
70
+ * Find offset to root of path if path has one.
71
+ *
72
+ * This will return a number >= 0 which is the offset to the start of the
73
+ * path, if the path is rooted (i.e. "/rooted/path" returns 0 and
74
+ * "c:/windows/rooted/path" returns 2). If the path is not rooted, this
75
+ * returns -1.
76
+ */
77
+ extern int git_fs_path_root(const char *path);
78
+
79
+ /**
80
+ * Ensure path has a trailing '/'.
81
+ */
82
+ extern int git_fs_path_to_dir(git_str *path);
83
+
84
+ /**
85
+ * Ensure string has a trailing '/' if there is space for it.
86
+ */
87
+ extern void git_fs_path_string_to_dir(char *path, size_t size);
88
+
89
+ /**
90
+ * Taken from git.git; returns nonzero if the given path is "." or "..".
91
+ */
92
+ GIT_INLINE(int) git_fs_path_is_dot_or_dotdot(const char *name)
93
+ {
94
+ return (name[0] == '.' &&
95
+ (name[1] == '\0' ||
96
+ (name[1] == '.' && name[2] == '\0')));
97
+ }
98
+
99
+ #ifdef GIT_WIN32
100
+ GIT_INLINE(int) git_fs_path_is_dot_or_dotdotW(const wchar_t *name)
101
+ {
102
+ return (name[0] == L'.' &&
103
+ (name[1] == L'\0' ||
104
+ (name[1] == L'.' && name[2] == L'\0')));
105
+ }
106
+
107
+ #define git_fs_path_is_absolute(p) \
108
+ (git__isalpha((p)[0]) && (p)[1] == ':' && ((p)[2] == '\\' || (p)[2] == '/'))
109
+
110
+ #define git_fs_path_is_dirsep(p) \
111
+ ((p) == '/' || (p) == '\\')
112
+
113
+ /**
114
+ * Convert backslashes in path to forward slashes.
115
+ */
116
+ GIT_INLINE(void) git_fs_path_mkposix(char *path)
117
+ {
118
+ while (*path) {
119
+ if (*path == '\\')
120
+ *path = '/';
121
+
122
+ path++;
123
+ }
124
+ }
125
+ #else
126
+ # define git_fs_path_mkposix(p) /* blank */
127
+
128
+ #define git_fs_path_is_absolute(p) \
129
+ ((p)[0] == '/')
130
+
131
+ #define git_fs_path_is_dirsep(p) \
132
+ ((p) == '/')
133
+
134
+ #endif
135
+
136
+ /**
137
+ * Check if string is a relative path (i.e. starts with "./" or "../")
138
+ */
139
+ GIT_INLINE(int) git_fs_path_is_relative(const char *p)
140
+ {
141
+ return (p[0] == '.' && (p[1] == '/' || (p[1] == '.' && p[2] == '/')));
142
+ }
143
+
144
+ /**
145
+ * Check if string is at end of path segment (i.e. looking at '/' or '\0')
146
+ */
147
+ GIT_INLINE(int) git_fs_path_at_end_of_segment(const char *p)
148
+ {
149
+ return !*p || *p == '/';
150
+ }
151
+
152
+ extern int git__percent_decode(git_str *decoded_out, const char *input);
153
+
154
+ /**
155
+ * Extract path from file:// URL.
156
+ */
157
+ extern int git_fs_path_fromurl(git_str *local_path_out, const char *file_url);
158
+
159
+
160
+ /**
161
+ * Path filesystem utils
162
+ *
163
+ * These are path utilities that actually access the filesystem.
164
+ */
165
+
166
+ /**
167
+ * Check if a file exists and can be accessed.
168
+ * @return true or false
169
+ */
170
+ extern bool git_fs_path_exists(const char *path);
171
+
172
+ /**
173
+ * Check if the given path points to a directory.
174
+ * @return true or false
175
+ */
176
+ extern bool git_fs_path_isdir(const char *path);
177
+
178
+ /**
179
+ * Check if the given path points to a regular file.
180
+ * @return true or false
181
+ */
182
+ extern bool git_fs_path_isfile(const char *path);
183
+
184
+ /**
185
+ * Check if the given path points to a symbolic link.
186
+ * @return true or false
187
+ */
188
+ extern bool git_fs_path_islink(const char *path);
189
+
190
+ /**
191
+ * Check if the given path is a directory, and is empty.
192
+ */
193
+ extern bool git_fs_path_is_empty_dir(const char *path);
194
+
195
+ /**
196
+ * Stat a file and/or link and set error if needed.
197
+ */
198
+ extern int git_fs_path_lstat(const char *path, struct stat *st);
199
+
200
+ /**
201
+ * Check if the parent directory contains the item.
202
+ *
203
+ * @param dir Directory to check.
204
+ * @param item Item that might be in the directory.
205
+ * @return 0 if item exists in directory, <0 otherwise.
206
+ */
207
+ extern bool git_fs_path_contains(git_str *dir, const char *item);
208
+
209
+ /**
210
+ * Check if the given path contains the given subdirectory.
211
+ *
212
+ * @param parent Directory path that might contain subdir
213
+ * @param subdir Subdirectory name to look for in parent
214
+ * @return true if subdirectory exists, false otherwise.
215
+ */
216
+ extern bool git_fs_path_contains_dir(git_str *parent, const char *subdir);
217
+
218
+ /**
219
+ * Determine the common directory length between two paths, including
220
+ * the final path separator. For example, given paths 'a/b/c/1.txt
221
+ * and 'a/b/c/d/2.txt', the common directory is 'a/b/c/', and this
222
+ * will return the length of the string 'a/b/c/', which is 6.
223
+ *
224
+ * @param one The first path
225
+ * @param two The second path
226
+ * @return The length of the common directory
227
+ */
228
+ extern size_t git_fs_path_common_dirlen(const char *one, const char *two);
229
+
230
+ /**
231
+ * Make the path relative to the given parent path.
232
+ *
233
+ * @param path The path to make relative
234
+ * @param parent The parent path to make path relative to
235
+ * @return 0 if path was made relative, GIT_ENOTFOUND
236
+ * if there was not common root between the paths,
237
+ * or <0.
238
+ */
239
+ extern int git_fs_path_make_relative(git_str *path, const char *parent);
240
+
241
+ /**
242
+ * Check if the given path contains the given file.
243
+ *
244
+ * @param dir Directory path that might contain file
245
+ * @param file File name to look for in parent
246
+ * @return true if file exists, false otherwise.
247
+ */
248
+ extern bool git_fs_path_contains_file(git_str *dir, const char *file);
249
+
250
+ /**
251
+ * Prepend base to unrooted path or just copy path over.
252
+ *
253
+ * This will optionally return the index into the path where the "root"
254
+ * is, either the end of the base directory prefix or the path root.
255
+ */
256
+ extern int git_fs_path_join_unrooted(
257
+ git_str *path_out, const char *path, const char *base, ssize_t *root_at);
258
+
259
+ /**
260
+ * Removes multiple occurrences of '/' in a row, squashing them into a
261
+ * single '/'.
262
+ */
263
+ extern void git_fs_path_squash_slashes(git_str *path);
264
+
265
+ /**
266
+ * Clean up path, prepending base if it is not already rooted.
267
+ */
268
+ extern int git_fs_path_prettify(git_str *path_out, const char *path, const char *base);
269
+
270
+ /**
271
+ * Clean up path, prepending base if it is not already rooted and
272
+ * appending a slash.
273
+ */
274
+ extern int git_fs_path_prettify_dir(git_str *path_out, const char *path, const char *base);
275
+
276
+ /**
277
+ * Get a directory from a path.
278
+ *
279
+ * If path is a directory, this acts like `git_fs_path_prettify_dir`
280
+ * (cleaning up path and appending a '/'). If path is a normal file,
281
+ * this prettifies it, then removed the filename a la dirname and
282
+ * appends the trailing '/'. If the path does not exist, it is
283
+ * treated like a regular filename.
284
+ */
285
+ extern int git_fs_path_find_dir(git_str *dir);
286
+
287
+ /**
288
+ * Resolve relative references within a path.
289
+ *
290
+ * This eliminates "./" and "../" relative references inside a path,
291
+ * as well as condensing multiple slashes into single ones. It will
292
+ * not touch the path before the "ceiling" length.
293
+ *
294
+ * Additionally, this will recognize an "c:/" drive prefix or a "xyz://" URL
295
+ * prefix and not touch that part of the path.
296
+ */
297
+ extern int git_fs_path_resolve_relative(git_str *path, size_t ceiling);
298
+
299
+ /**
300
+ * Apply a relative path to base path.
301
+ *
302
+ * Note that the base path could be a filename or a URL and this
303
+ * should still work. The relative path is walked segment by segment
304
+ * with three rules: series of slashes will be condensed to a single
305
+ * slash, "." will be eaten with no change, and ".." will remove a
306
+ * segment from the base path.
307
+ */
308
+ extern int git_fs_path_apply_relative(git_str *target, const char *relpath);
309
+
310
+ enum {
311
+ GIT_FS_PATH_DIR_IGNORE_CASE = (1u << 0),
312
+ GIT_FS_PATH_DIR_PRECOMPOSE_UNICODE = (1u << 1),
313
+ GIT_FS_PATH_DIR_INCLUDE_DOT_AND_DOTDOT = (1u << 2),
314
+ };
315
+
316
+ /**
317
+ * Walk each directory entry, except '.' and '..', calling fn(state).
318
+ *
319
+ * @param pathbuf Buffer the function reads the initial directory
320
+ * path from, and updates with each successive entry's name.
321
+ * @param flags Combination of GIT_FS_PATH_DIR flags.
322
+ * @param callback Callback for each entry. Passed the `payload` and each
323
+ * successive path inside the directory as a full path. This may
324
+ * safely append text to the pathbuf if needed. Return non-zero to
325
+ * cancel iteration (and return value will be propagated back).
326
+ * @param payload Passed to callback as first argument.
327
+ * @return 0 on success or error code from OS error or from callback
328
+ */
329
+ extern int git_fs_path_direach(
330
+ git_str *pathbuf,
331
+ uint32_t flags,
332
+ int (*callback)(void *payload, git_str *path),
333
+ void *payload);
334
+
335
+ /**
336
+ * Sort function to order two paths
337
+ */
338
+ extern int git_fs_path_cmp(
339
+ const char *name1, size_t len1, int isdir1,
340
+ const char *name2, size_t len2, int isdir2,
341
+ int (*compare)(const char *, const char *, size_t));
342
+
343
+ /**
344
+ * Invoke callback up path directory by directory until the ceiling is
345
+ * reached (inclusive of a final call at the root_path).
346
+ *
347
+ * Returning anything other than 0 from the callback function
348
+ * will stop the iteration and propagate the error to the caller.
349
+ *
350
+ * @param pathbuf Buffer the function reads the directory from and
351
+ * and updates with each successive name.
352
+ * @param ceiling Prefix of path at which to stop walking up. If NULL,
353
+ * this will walk all the way up to the root. If not a prefix of
354
+ * pathbuf, the callback will be invoked a single time on the
355
+ * original input path.
356
+ * @param callback Function to invoke on each path. Passed the `payload`
357
+ * and the buffer containing the current path. The path should not
358
+ * be modified in any way. Return non-zero to stop iteration.
359
+ * @param payload Passed to fn as the first ath.
360
+ */
361
+ extern int git_fs_path_walk_up(
362
+ git_str *pathbuf,
363
+ const char *ceiling,
364
+ int (*callback)(void *payload, const char *path),
365
+ void *payload);
366
+
367
+
368
+ enum {
369
+ GIT_FS_PATH_NOTEQUAL = 0,
370
+ GIT_FS_PATH_EQUAL = 1,
371
+ GIT_FS_PATH_PREFIX = 2
372
+ };
373
+
374
+ /*
375
+ * Determines if a path is equal to or potentially a child of another.
376
+ * @param parent The possible parent
377
+ * @param child The possible child
378
+ */
379
+ GIT_INLINE(int) git_fs_path_equal_or_prefixed(
380
+ const char *parent,
381
+ const char *child,
382
+ ssize_t *prefixlen)
383
+ {
384
+ const char *p = parent, *c = child;
385
+ int lastslash = 0;
386
+
387
+ while (*p && *c) {
388
+ lastslash = (*p == '/');
389
+
390
+ if (*p++ != *c++)
391
+ return GIT_FS_PATH_NOTEQUAL;
392
+ }
393
+
394
+ if (*p != '\0')
395
+ return GIT_FS_PATH_NOTEQUAL;
396
+
397
+ if (*c == '\0') {
398
+ if (prefixlen)
399
+ *prefixlen = p - parent;
400
+
401
+ return GIT_FS_PATH_EQUAL;
402
+ }
403
+
404
+ if (*c == '/' || lastslash) {
405
+ if (prefixlen)
406
+ *prefixlen = (p - parent) - lastslash;
407
+
408
+ return GIT_FS_PATH_PREFIX;
409
+ }
410
+
411
+ return GIT_FS_PATH_NOTEQUAL;
412
+ }
413
+
414
+ /* translate errno to libgit2 error code and set error message */
415
+ extern int git_fs_path_set_error(
416
+ int errno_value, const char *path, const char *action);
417
+
418
+ /* check if non-ascii characters are present in filename */
419
+ extern bool git_fs_path_has_non_ascii(const char *path, size_t pathlen);
420
+
421
+ #define GIT_PATH_REPO_ENCODING "UTF-8"
422
+
423
+ #ifdef __APPLE__
424
+ #define GIT_PATH_NATIVE_ENCODING "UTF-8-MAC"
425
+ #else
426
+ #define GIT_PATH_NATIVE_ENCODING "UTF-8"
427
+ #endif
428
+
429
+ #ifdef GIT_USE_ICONV
430
+
431
+ #include <iconv.h>
432
+
433
+ typedef struct {
434
+ iconv_t map;
435
+ git_str buf;
436
+ } git_fs_path_iconv_t;
437
+
438
+ #define GIT_PATH_ICONV_INIT { (iconv_t)-1, GIT_STR_INIT }
439
+
440
+ /* Init iconv data for converting decomposed UTF-8 to precomposed */
441
+ extern int git_fs_path_iconv_init_precompose(git_fs_path_iconv_t *ic);
442
+
443
+ /* Clear allocated iconv data */
444
+ extern void git_fs_path_iconv_clear(git_fs_path_iconv_t *ic);
445
+
446
+ /*
447
+ * Rewrite `in` buffer using iconv map if necessary, replacing `in`
448
+ * pointer internal iconv buffer if rewrite happened. The `in` pointer
449
+ * will be left unchanged if no rewrite was needed.
450
+ */
451
+ extern int git_fs_path_iconv(git_fs_path_iconv_t *ic, const char **in, size_t *inlen);
452
+
453
+ #endif /* GIT_USE_ICONV */
454
+
455
+ extern bool git_fs_path_does_decompose_unicode(const char *root);
456
+
457
+
458
+ typedef struct git_fs_path_diriter git_fs_path_diriter;
459
+
460
+ #if defined(GIT_WIN32) && !defined(__MINGW32__)
461
+
462
+ struct git_fs_path_diriter
463
+ {
464
+ git_win32_path path;
465
+ size_t parent_len;
466
+
467
+ git_str path_utf8;
468
+ size_t parent_utf8_len;
469
+
470
+ HANDLE handle;
471
+
472
+ unsigned int flags;
473
+
474
+ WIN32_FIND_DATAW current;
475
+ unsigned int needs_next;
476
+ };
477
+
478
+ #define GIT_FS_PATH_DIRITER_INIT { {0}, 0, GIT_STR_INIT, 0, INVALID_HANDLE_VALUE }
479
+
480
+ #else
481
+
482
+ struct git_fs_path_diriter
483
+ {
484
+ git_str path;
485
+ size_t parent_len;
486
+
487
+ unsigned int flags;
488
+
489
+ DIR *dir;
490
+
491
+ #ifdef GIT_USE_ICONV
492
+ git_fs_path_iconv_t ic;
493
+ #endif
494
+ };
495
+
496
+ #define GIT_FS_PATH_DIRITER_INIT { GIT_STR_INIT }
497
+
498
+ #endif
499
+
500
+ /**
501
+ * Initialize a directory iterator.
502
+ *
503
+ * @param diriter Pointer to a diriter structure that will be setup.
504
+ * @param path The path that will be iterated over
505
+ * @param flags Directory reader flags
506
+ * @return 0 or an error code
507
+ */
508
+ extern int git_fs_path_diriter_init(
509
+ git_fs_path_diriter *diriter,
510
+ const char *path,
511
+ unsigned int flags);
512
+
513
+ /**
514
+ * Advance the directory iterator. Will return GIT_ITEROVER when
515
+ * the iteration has completed successfully.
516
+ *
517
+ * @param diriter The directory iterator
518
+ * @return 0, GIT_ITEROVER, or an error code
519
+ */
520
+ extern int git_fs_path_diriter_next(git_fs_path_diriter *diriter);
521
+
522
+ /**
523
+ * Returns the file name of the current item in the iterator.
524
+ *
525
+ * @param out Pointer to store the path in
526
+ * @param out_len Pointer to store the length of the path in
527
+ * @param diriter The directory iterator
528
+ * @return 0 or an error code
529
+ */
530
+ extern int git_fs_path_diriter_filename(
531
+ const char **out,
532
+ size_t *out_len,
533
+ git_fs_path_diriter *diriter);
534
+
535
+ /**
536
+ * Returns the full path of the current item in the iterator; that
537
+ * is the current filename plus the path of the directory that the
538
+ * iterator was constructed with.
539
+ *
540
+ * @param out Pointer to store the path in
541
+ * @param out_len Pointer to store the length of the path in
542
+ * @param diriter The directory iterator
543
+ * @return 0 or an error code
544
+ */
545
+ extern int git_fs_path_diriter_fullpath(
546
+ const char **out,
547
+ size_t *out_len,
548
+ git_fs_path_diriter *diriter);
549
+
550
+ /**
551
+ * Performs an `lstat` on the current item in the iterator.
552
+ *
553
+ * @param out Pointer to store the stat data in
554
+ * @param diriter The directory iterator
555
+ * @return 0 or an error code
556
+ */
557
+ extern int git_fs_path_diriter_stat(struct stat *out, git_fs_path_diriter *diriter);
558
+
559
+ /**
560
+ * Closes the directory iterator.
561
+ *
562
+ * @param diriter The directory iterator
563
+ */
564
+ extern void git_fs_path_diriter_free(git_fs_path_diriter *diriter);
565
+
566
+ /**
567
+ * Load all directory entries (except '.' and '..') into a vector.
568
+ *
569
+ * For cases where `git_fs_path_direach()` is not appropriate, this
570
+ * allows you to load the filenames in a directory into a vector
571
+ * of strings. That vector can then be sorted, iterated, or whatever.
572
+ * Remember to free alloc of the allocated strings when you are done.
573
+ *
574
+ * @param contents Vector to fill with directory entry names.
575
+ * @param path The directory to read from.
576
+ * @param prefix_len When inserting entries, the trailing part of path
577
+ * will be prefixed after this length. I.e. given path "/a/b" and
578
+ * prefix_len 3, the entries will look like "b/e1", "b/e2", etc.
579
+ * @param flags Combination of GIT_FS_PATH_DIR flags.
580
+ */
581
+ extern int git_fs_path_dirload(
582
+ git_vector *contents,
583
+ const char *path,
584
+ size_t prefix_len,
585
+ uint32_t flags);
586
+
587
+
588
+ /* Used for paths to repositories on the filesystem */
589
+ extern bool git_fs_path_is_local_file_url(const char *file_url);
590
+ extern int git_fs_path_from_url_or_path(git_str *local_path_out, const char *url_or_path);
591
+
592
+ /* Flags to determine path validity in `git_fs_path_isvalid` */
593
+ #define GIT_FS_PATH_REJECT_EMPTY_COMPONENT (1 << 0)
594
+ #define GIT_FS_PATH_REJECT_TRAVERSAL (1 << 1)
595
+ #define GIT_FS_PATH_REJECT_SLASH (1 << 2)
596
+ #define GIT_FS_PATH_REJECT_BACKSLASH (1 << 3)
597
+ #define GIT_FS_PATH_REJECT_TRAILING_DOT (1 << 4)
598
+ #define GIT_FS_PATH_REJECT_TRAILING_SPACE (1 << 5)
599
+ #define GIT_FS_PATH_REJECT_TRAILING_COLON (1 << 6)
600
+ #define GIT_FS_PATH_REJECT_DOS_PATHS (1 << 7)
601
+ #define GIT_FS_PATH_REJECT_NT_CHARS (1 << 8)
602
+ #define GIT_FS_PATH_REJECT_LONG_PATHS (1 << 9)
603
+
604
+ #define GIT_FS_PATH_REJECT_MAX (1 << 9)
605
+
606
+ /* Default path safety for writing files to disk: since we use the
607
+ * Win32 "File Namespace" APIs ("\\?\") we need to protect from
608
+ * paths that the normal Win32 APIs would not write.
609
+ */
610
+ #ifdef GIT_WIN32
611
+ # define GIT_FS_PATH_REJECT_FILESYSTEM_DEFAULTS \
612
+ GIT_FS_PATH_REJECT_EMPTY_COMPONENT | \
613
+ GIT_FS_PATH_REJECT_TRAVERSAL | \
614
+ GIT_FS_PATH_REJECT_BACKSLASH | \
615
+ GIT_FS_PATH_REJECT_TRAILING_DOT | \
616
+ GIT_FS_PATH_REJECT_TRAILING_SPACE | \
617
+ GIT_FS_PATH_REJECT_TRAILING_COLON | \
618
+ GIT_FS_PATH_REJECT_DOS_PATHS | \
619
+ GIT_FS_PATH_REJECT_NT_CHARS
620
+ #else
621
+ # define GIT_FS_PATH_REJECT_FILESYSTEM_DEFAULTS \
622
+ GIT_FS_PATH_REJECT_EMPTY_COMPONENT | \
623
+ GIT_FS_PATH_REJECT_TRAVERSAL
624
+ #endif
625
+
626
+ /**
627
+ * Validate a filesystem path; with custom callbacks per-character and
628
+ * per-path component.
629
+ */
630
+ extern bool git_fs_path_str_is_valid_ext(
631
+ const git_str *path,
632
+ unsigned int flags,
633
+ bool (*validate_char_cb)(char ch, void *payload),
634
+ bool (*validate_component_cb)(const char *component, size_t len, void *payload),
635
+ bool (*validate_length_cb)(const char *component, size_t len, size_t utf8_char_len),
636
+ void *payload);
637
+
638
+ GIT_INLINE(bool) git_fs_path_is_valid_ext(
639
+ const char *path,
640
+ unsigned int flags,
641
+ bool (*validate_char_cb)(char ch, void *payload),
642
+ bool (*validate_component_cb)(const char *component, size_t len, void *payload),
643
+ bool (*validate_length_cb)(const char *component, size_t len, size_t utf8_char_len),
644
+ void *payload)
645
+ {
646
+ const git_str str = GIT_STR_INIT_CONST(path, SIZE_MAX);
647
+ return git_fs_path_str_is_valid_ext(
648
+ &str,
649
+ flags,
650
+ validate_char_cb,
651
+ validate_component_cb,
652
+ validate_length_cb,
653
+ payload);
654
+ }
655
+
656
+ /**
657
+ * Validate a filesystem path. This ensures that the given path is legal
658
+ * and does not contain any "unsafe" components like path traversal ('.'
659
+ * or '..'), characters that are inappropriate for lesser filesystems
660
+ * (trailing ' ' or ':' characters), or filenames ("component names")
661
+ * that are not supported ('AUX', 'COM1").
662
+ */
663
+ GIT_INLINE(bool) git_fs_path_is_valid(
664
+ const char *path,
665
+ unsigned int flags)
666
+ {
667
+ const git_str str = GIT_STR_INIT_CONST(path, SIZE_MAX);
668
+ return git_fs_path_str_is_valid_ext(&str, flags, NULL, NULL, NULL, NULL);
669
+ }
670
+
671
+ /** Validate a filesystem path in a `git_str`. */
672
+ GIT_INLINE(bool) git_fs_path_str_is_valid(
673
+ const git_str *path,
674
+ unsigned int flags)
675
+ {
676
+ return git_fs_path_str_is_valid_ext(path, flags, NULL, NULL, NULL, NULL);
677
+ }
678
+
679
+ extern int git_fs_path_validate_str_length_with_suffix(
680
+ git_str *path,
681
+ size_t suffix_len);
682
+
683
+ /**
684
+ * Validate an on-disk path, taking into account that it will have a
685
+ * suffix appended (eg, `.lock`).
686
+ */
687
+ GIT_INLINE(int) git_fs_path_validate_filesystem_with_suffix(
688
+ const char *path,
689
+ size_t path_len,
690
+ size_t suffix_len)
691
+ {
692
+ #ifdef GIT_WIN32
693
+ size_t path_chars, total_chars;
694
+
695
+ path_chars = git_utf8_char_length(path, path_len);
696
+
697
+ if (GIT_ADD_SIZET_OVERFLOW(&total_chars, path_chars, suffix_len) ||
698
+ total_chars > MAX_PATH) {
699
+ git_error_set(GIT_ERROR_FILESYSTEM, "path too long: '%s'", path);
700
+ return -1;
701
+ }
702
+ return 0;
703
+ #else
704
+ GIT_UNUSED(path);
705
+ GIT_UNUSED(path_len);
706
+ GIT_UNUSED(suffix_len);
707
+ return 0;
708
+ #endif
709
+ }
710
+
711
+ /**
712
+ * Validate an path on the filesystem. This ensures that the given
713
+ * path is valid for the operating system/platform; for example, this
714
+ * will ensure that the given absolute path is smaller than MAX_PATH on
715
+ * Windows.
716
+ *
717
+ * For paths within the working directory, you should use ensure that
718
+ * `core.longpaths` is obeyed. Use `git_fs_path_validate_workdir`.
719
+ */
720
+ GIT_INLINE(int) git_fs_path_validate_filesystem(
721
+ const char *path,
722
+ size_t path_len)
723
+ {
724
+ return git_fs_path_validate_filesystem_with_suffix(path, path_len, 0);
725
+ }
726
+
727
+ /**
728
+ * Convert any backslashes into slashes
729
+ */
730
+ int git_fs_path_normalize_slashes(git_str *out, const char *path);
731
+
732
+ bool git_fs_path_supports_symlinks(const char *dir);
733
+
734
+ /**
735
+ * Validate a system file's ownership
736
+ *
737
+ * Verify that the file in question is owned by an administrator or system
738
+ * account, or at least by the current user.
739
+ *
740
+ * This function returns 0 if successful. If the file is not owned by any of
741
+ * these, or any other if there have been problems determining the file
742
+ * ownership, it returns -1.
743
+ */
744
+ int git_fs_path_validate_system_file_ownership(const char *path);
745
+
746
+ /**
747
+ * Search the current PATH for the given executable, returning the full
748
+ * path if it is found.
749
+ */
750
+ int git_fs_path_find_executable(git_str *fullpath, const char *executable);
751
+
752
+ #endif