Commit Briefs

18441876c2 Stefan Sperling

make gotsh handle poll timeouts when checking for gotd closing the pack pipe

This will hopefully fix issues seen on servers where gotsh exits early for no good reason.


beb5455b68 Stefan Sperling

gotsh: do not set POLLOUT flag when there is no data to send

Prevent an endless polling loop on Linux where POLLOUT and POLLHUP can both be reported via pollfd revents.


baaae61518 Stefan Sperling

make gotd avoid a "failed to push some refs" error from no-op 'git push'

gotsh was sending errors such as "unexpected end of file" and "unexpected flush-pkt" to the client when the client disconnected immediately after receiving reference announcements from the server. As a result, 'git push' with both sides up-to-date would show an obscure error message: = [up to date] main -> main error: failed to push some refs to 'ssh://example.com/git/repo.git Now we see: = [up to date] main -> main Everything up-to-date ok jamsek


1eb3899277 Stefan Sperling

significantly reduce the amount of code linked into gitwrapper

By moving got_serve_parse_command() from lib/serve.c into lib/dial.c as got_dial_parse_command(), we can significantly reduce the amount of symbols gitwrapper depends on indirectly. As a downside, gotsh now needs to link to dial.c. But it only uses the same parsing routine, and any other routines in dial.c would likely cause pledge violations in gotsh if used. No functional change.


fd39115905 Stefan Sperling

fix an off-by-one in got_serve_parse_command() canonpath allocation

ok op@, tracey@


8d98a77522 Stefan Sperling

fix gotd sending too large pack files in some cases

Make gotsh pass all have-lines sent by clients onwards to gotd, reducing size of pack files generated by the repo_read process. Problem reported by naddy@ ok jamsek


87a3ab84d3 Omar Polo

provide functions to parse/serialize different hashes

it abstracts over the hash type and ensures that object ids are zero'ed before their sha1 digest is written. Needed by the incoming sha256 support. ok stsp@


53bf0b5419 Omar Polo

rename lib/sha1.c to lib/hash.c

It will soon grow functions to deal with sha256 too. stsp@ agrees.


5822e79e39 Omar Polo

include sha2.h too where sha1.h is included

In preparation for wide sha256 support; stsp@ agrees. Change done mechanically with find . -iname \*.[cy] -exec sam {} + X ,x/<sha1\.h>/i/\n#include <sha2.h>


53e553e8de Omar Polo

tweak send_zero_refs; use GOT_SHA1_STRING_ZERO

ok stsp@


9a8e357c72 Omar Polo

gotd: implement the delete-refs capability

Allow clients to run "got send -d" against gotd. Clients will send a zero-id as new id for a reference and, in the special but more common case of just deleting and not updating, no pack file will be sent. ok and tweaks by stsp@


a2c12f7b81 Omar Polo

delete trailing whitespaces



9aeaf23a7e Omar Polo

gotsh: validate with parse_command before connecting

Export parse_command (now got_serve_parse_command) from lib/serve.c and use it to validate the command line in gotsh instead of just checking that the -c argument starts with 'git-receive-pack' or 'git-upload-pack'. Invalid usage now always fails before opening the socket, while before it wasn't always the case. This also means that invalid usage doesn't count towards the limits. ok jamsek, stsp


c808f45090 Omar Polo

fmt; fold long line


96afb0d623 Stefan Sperling

make read errors in gotsh serve_read() fatal and adjust tests accordingly

ok jamsek


f91b5c433d Stefan Sperling

only "forward" implicit flush packets in serve_read() if they are expected

ok jamsek


fecfd5bc4d Stefan Sperling

fix spurious "gotsh: unexpected flush packet" error when client is up-to-date

ok op@


f9550d472e Stefan Sperling

fix an issue where gotd fails to accept multiple have-lines from clients

ok op, jamsek


00b3e9ae14 Omar Polo

replace malloc+memcpy with strndup. no functional change intended

ok stsp@


d10629e662 Stefan Sperling

remove bogus abort() call from gotsh echo_error()


2ff9f0818d Stefan Sperling

fix capabilities announced by gotsh when no reference exist in repository

ok op@



758dc042e8 Stefan Sperling

remove trailing whitespace; patch by Josiah Frentsos


1c9d898d6c Stefan Sperling

avoid incomplete writes of buffered pack file chunks in gotsh