summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | use `giterr_set_str()` wherever possiblePranit Bauva2016-11-172-2/+2
|/ / | | | | | | | | | | | | | | | | | | `giterr_set()` is used when it is required to format a string, and since we don't really require it for this case, it is better to stick to `giterr_set_str()`. This also suppresses a warning(-Wformat-security) raised by the compiler. Signed-off-by: Pranit Bauva <pranit.bauva@gmail.com>
* | Merge pull request #4007 from libgit2/cmn/bump-v25v0.25.0-rc1Carlos Martín Nieto2016-11-152-4/+15
|\ \ | | | | | | Bump version number to v0.25
| * | Bump version number to v0.25cmn/bump-v25Carlos Martín Nieto2016-11-152-4/+15
| | |
* | | Merge pull request #4008 from pks-t/pks/sortedcache-fd-leakCarlos Martín Nieto2016-11-152-1/+4
|\ \ \ | | | | | | | | sortedcache: plug leaked file descriptor
| * | | patch_parse: fix memory leakPatrick Steinhardt2016-11-151-1/+3
| | | |
| * | | sortedcache: plug leaked file descriptorPatrick Steinhardt2016-11-151-0/+1
| | | |
* | | | Merge pull request #3996 from pks-t/pks/curl-lastsocket-deprecationCarlos Martín Nieto2016-11-151-3/+14
|\ \ \ \ | |_|/ / |/| | | curl_stream: use CURLINFO_ACTIVESOCKET if curl is recent enough
| * | | curl_stream: use CURLINFO_ACTIVESOCKET if curl is recent enoughPatrick Steinhardt2016-11-151-3/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The `CURLINFO_LASTSOCKET` information has been deprecated since curl version 7.45.0 as it may result in an overflow in the returned socket on certain systems, most importantly on 64 bit Windows. Instead, a new call `CURLINFO_ACTIVESOCKET` has been added which instead returns a `curl_socket_t`, which is always sufficiently long to store a socket. As we need to provide backwards compatibility with curl versions smaller than 7.45.0, alias CURLINFO_ACTIVESOCKET to CURLINFO_LASTSOCKET on platforms without CURLINFO_ACTIVESOCKET.
* | | | Merge pull request #3962 from libgit2/ethomson/issue_templateCarlos Martín Nieto2016-11-151-0/+14
|\ \ \ \ | | | | | | | | | | Introduce a GitHub Issue Template
| * | | | Introduce a GitHub Issue Templateethomson/issue_templateEdward Thomson2016-11-141-0/+14
| | | | |
* | | | | Merge pull request #4004 from libgit2/cmn/changelogCarlos Martín Nieto2016-11-151-2/+63
|\ \ \ \ \ | |_|_|/ / |/| | | | CHANGELOG: fill in some updates we missed
| * | | | CHANGELOG: fill in some updates we missedcmn/changelogCarlos Martín Nieto2016-11-141-2/+63
| | | | |
* | | | | Merge pull request #4006 from libgit2/cmn/compress-buf-freeEdward Thomson2016-11-141-0/+2
|\ \ \ \ \ | | | | | | | | | | | | Plug a leak in the refs compressor
| * | | | | Plug a leak in the refs compressorcmn/compress-buf-freeCarlos Martín Nieto2016-11-141-0/+2
| |/ / / /
* | | | | Merge pull request #3998 from pks-t/pks/repo-discoveryCarlos Martín Nieto2016-11-142-57/+105
|\ \ \ \ \ | | | | | | | | | | | | Repository discovery starting from files
| * | | | | repository: do not interpret all files as gitlinks in discoveryPatrick Steinhardt2016-11-142-1/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When trying to find a discovery, we walk up the directory structure checking if there is a ".git" file or directory and, if so, check its validity. But in the case that we've got a ".git" file, we do not want to unconditionally assume that the file is in fact a ".git" file and treat it as such, as we would error out if it is not. Fix the issue by only treating a file as a gitlink file if it ends with "/.git". This allows users of the function to discover a repository by handing in any path contained inside of a git repository.
| * | | | | test: discover: fix indentationPatrick Steinhardt2016-11-141-1/+1
| | | | | |
| * | | | | test: discover: split up monolithic test into smaller onesPatrick Steinhardt2016-11-141-49/+67
| | | | | |
| * | | | | test: discover: pass constants to ensure_repository_discoverPatrick Steinhardt2016-11-141-19/+26
| | | | | |
| * | | | | test: discover: move layout creation into test initializerPatrick Steinhardt2016-11-141-22/+35
| | | | | |
* | | | | | Merge pull request #4003 from libgit2/cmn/tree-updater-orderingEdward Thomson2016-11-142-2/+62
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | Use the sorted input in the tree updater
| * | | | | tree: look for conflicts in the new tree when updatingcmn/tree-updater-orderingCarlos Martín Nieto2016-11-141-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We look at whether we're trying to replace a blob with a tree during the update phase, but we fail to look at whether we've just inserted a blob where we're now trying to insert a tree. Update the check to look at both places. The test for this was previously succeeding due to the bu where we did not look at the sorted output.
| * | | | | tree: use the sorted update list in our loopCarlos Martín Nieto2016-11-141-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The loop is made with the assumption that the inputs are sorted and not using it leads to bad outputs.
| * | | | | tree: add a failing test for unsorted inputCarlos Martín Nieto2016-11-141-0/+57
| |/ / / / | | | | | | | | | | | | | | | | | | | | We do not currently use the sorted version of this input in the function, which means we produce bad results.
* | | | | Merge pull request #3561 from libgit2/cmn/refdb-paraEdward Thomson2016-11-146-148/+185
|\ \ \ \ \ | |/ / / / |/| | | | Concurrency fixes for the reference db
| * | | | refdb: use a constant for the number of per-thread creations/deletescmn/refdb-paraCarlos Martín Nieto2016-11-141-6/+8
| | | | |
| * | | | refdb: bubble up locked files on the read sideCarlos Martín Nieto2016-11-144-23/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | On Windows we can find locked files even when reading a reference or the packed-refs file. Bubble up the error in this case as well to allow callers on Windows to retry more intelligently.
| * | | | refdb: expect threaded test deletes to raceCarlos Martín Nieto2016-11-141-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | At times we may try to delete a reference which a different thread has already taken care of.
| * | | | refdb: remove a check-delete race when removing a loose refCarlos Martín Nieto2016-11-141-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It does not help us to check whether the file exists before trying to unlink it since it might be gone by the time unlink is called. Instead try to remove it and handle the resulting error if it did not exist.
| * | | | sortedcache: check file size after opening the fileCarlos Martín Nieto2016-11-141-5/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Checking the size before we open the file descriptor can lead to the file being replaced from under us when renames aren't quite atomic, so we can end up reading too little of the file, leading to us thinking the file is corrupted.
| * | | | refdb: add retry logic to the threaded testsCarlos Martín Nieto2016-11-141-5/+13
| | | | | | | | | | | | | | | | | | | | | | | | | The logic simply consists of retrying for as long as the library says the data is locked, but it eventually gets through.
| * | | | refdb: bubble up the error code when compressing the dbCarlos Martín Nieto2016-11-141-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | | This allows the caller to know the errors was e.g. due to the packed-refs file being already locked and they can try again later.
| * | | | refdb: refactor the lockfile cleanupCarlos Martín Nieto2016-11-141-15/+9
| | | | | | | | | | | | | | | | | | | | | | | | | We can reduce the duplication by cleaning up at the beginning of the loop, since it's something we want to do every time we continue.
| * | | | refdb: don't report failure for expected errorsCarlos Martín Nieto2016-11-141-20/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There might be a few threads or processes working with references concurrently, so fortify the code to ignore errors which come from concurrent access which do not stop us from continuing the work. This includes ignoring an unlinking error. Either someone else removed it or we leave the file around. In the former case the job is done, and in the latter case, the ref is still in a valid state.
| * | | | fileops: save errno and report file existenceCarlos Martín Nieto2016-11-141-1/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We need to save the errno, lest we clobber it in the giterr_set() call. Also add code for reporting that a path component is missing, which is a distinct failure mode.
| * | | | refdb: make ref deletion after pack saferCarlos Martín Nieto2016-11-141-7/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In order not to undo concurrent modifications to references, we must make sure that we only delete a loose reference if it still has the same value as when we packed it. This means we need to lock it and then compare the value with the one we put in the packed file.
| * | | | refdb: bubble up errorsCarlos Martín Nieto2016-11-141-9/+10
| | | | | | | | | | | | | | | | | | | | | | | | | We can get useful information like GIT_ELOCKED out of this instead of just -1.
| * | | | refdb: adjust the threading tests to what we promiseCarlos Martín Nieto2016-11-141-78/+44
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | We say it's going to work if you use a different repository in each thread. Let's do precisely that in our code instead of hoping re-using the refdb is going to work. This test does fail currently, surfacing existing bugs.
* | | | Merge pull request #4002 from pks-t/pks/giterr-formatCarlos Martín Nieto2016-11-1410-43/+44
|\ \ \ \ | | | | | | | | | | giterr format
| * | | | path: pass string instead of git_buf to giterr_setPatrick Steinhardt2016-11-141-1/+1
| | | | |
| * | | | checkout: pass string instead of git_buf to `giterr_set`Patrick Steinhardt2016-11-141-2/+2
| | | | |
| * | | | common: cast precision specifiers to intPatrick Steinhardt2016-11-142-3/+3
| | | | |
| * | | | common: use PRIuZ for size_t in `giterr_set` callsPatrick Steinhardt2016-11-145-36/+36
| | | | |
| * | | | common: mark printf-style formatting for `giterr_set`Patrick Steinhardt2016-11-141-1/+2
| | | | |
* | | | | Merge pull request #3983 from pks-t/pks/smart-early-eofCarlos Martín Nieto2016-11-142-3/+7
|\ \ \ \ \ | | | | | | | | | | | | transports: smart: abort on early end of stream
| * | | | | transports: smart: abort receiving packets on end of streamPatrick Steinhardt2016-11-021-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When trying to receive packets from the remote, we loop until either an error distinct to `GIT_EBUFS` occurs or until we successfully parsed the packet. This does not honor the case where we are looping over an already closed socket which has no more data, leaving us in an infinite loop if we got a bogus packet size or if the remote hang up. Fix the issue by returning `GIT_EEOF` when we cannot read data from the socket anymore.
| * | | | | transports: smart: abort ref announcement on early end of streamPatrick Steinhardt2016-11-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When reading a server's reference announcements via the smart protocol, we expect the server to send multiple flushes before the protocol is finished. If we fail to receive new data from the socket, we will only return an end of stream error if we have not seen any flush yet. This logic is flawed in that we may run into an infinite loop when receiving a server's reference announcement with a bogus flush packet. E.g. assume the last flushing package is changed to not be '0000' but instead any other value. In this case, we will still await one more flush package and ignore the fact that we are not receiving any data from the socket, causing an infinite loop. Fix the issue by always returning `GIT_EEOF` if the socket indicates an end of stream.
| * | | | | proxy: fix typo in documentationPatrick Steinhardt2016-11-011-1/+1
| | | | | |
* | | | | | Merge pull request #3985 from libgit2/cmn/threading-updateCarlos Martín Nieto2016-11-141-22/+24
|\ \ \ \ \ \ | | | | | | | | | | | | | | Update THREADING for OpenSSL 1.1
| * | | | | | THREADING: OpenSSL 1.1 is thead-safe, rework some paragraphscmn/threading-updateCarlos Martín Nieto2016-11-041-22/+24
| | | | | | |