Commits
- Commit:
2f43cd698e3fcc3000262b3e0f3a2119f06345bb
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
remove dependency of gitwrapper, gotctl, and gotsh on object_parse.c
Move some functions from object_parse.c into hash.c. These functions either
require hash.c code anyway or contain object ID implementation internals.
Add a new file object_qid.c, for got_object_id_queue and got_object_qid.
This new file must be linked to virtually every program.
- Commit:
53bf0b541977b66862040d4b633fb6b5d3a3c6c8
- From:
- Omar Polo <op@omarpolo.com>
- Date:
rename lib/sha1.c to lib/hash.c
It will soon grow functions to deal with sha256 too. stsp@ agrees.
- Commit:
30bd0f8ea103b4839e685df105cbdf5a033b3ebd
- From:
- Omar Polo <op@omarpolo.com>
- Date:
fix building of few regress
after got_object_id_hex was introduced and used in error.c, the building
of delta, deltify and path failed due to missing symbols.
Spotted by stsp and tracey, ok stsp
- Commit:
13b2bc374c1870ec27b2eeb40efe68fd465f64bb
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
introduce gotd(8), a Git repository server reachable via ssh(1)
This is an initial barebones implementation which provides the absolute
minimum of functionality required to serve got(1) and git(1) clients.
Basic fetch/send functionality has been tested and seems to work here,
but this server is not yet expected to be stable.
More testing is welcome. See the man pages for setup instructions.
The current design uses one reader and one writer process per repository,
which will have to be extended to N readers and N writers in the future.
At startup, each process will chroot(2) into its assigned repository.
This works because gotd(8) can only be started as root, and will then
fork+exec, chroot, and privdrop.
At present the parent process runs with the following pledge(2) promises:
"stdio rpath wpath cpath proc getpw sendfd recvfd fattr flock unix unveil"
The parent is the only process able to modify the repository in a way
that becomes visible to Git clients. The parent uses unveil(2) to
restrict its view of the filesystem to /tmp and the repositories
listed in the configuration file gotd.conf(5).
Per-repository chroot(2) processes use "stdio rpath sendfd recvfd".
The writer defers to the parent for modifying references in the
repository to point at newly uploaded commits. The reader is fine
without such help, because Git repositories can be read without
having to create any lock-files.
gotd(8) requires a dedicated user ID, which should own repositories
on the filesystem, and a separate secondary group, which should not
have filesystem-level repository access, and must be allowed access
to the gotd(8) socket.
To obtain Git repository access, users must be members of this
secondary group, and must have their login shell set to gotsh(1).
gotsh(1) connects to the gotd(8) socket and speaks Git-protocol
towards the client on the other end of the SSH connection.
gotsh(1) is not an interactive command shell.
At present, authenticated clients are granted read/write access to
all repositories and all references (except for the "refs/got/" and
the "refs/remotes/" namespaces, which are already being protected
from modification).
While complicated access control mechanism are not a design goal,
making it possible to safely offer anonymous Git repository access
over ssh(1) is on the road map.
- Commit:
7fb414ae4d46ebdaeff458477ba801f9ad5853c4
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
add a -q option to tests for quiet output and use it for 'make regress'
Previous default output remains when test cases are run individually.
ok tracey
- Commit:
91a3d81fcf77040d5c432c86b5d4aebbec565468
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
introduce got errors with custom messages; add one for ERR_NO_OBJ
- Commit:
079b2f6564ee7fbd71071aedde0c3c317b985d46
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
add a Makefile hierarchy which builds the whole show
- Commit:
63581804340e880bf611c6a4a59eda26c503799f
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
rename zbuf to inflate
- Commit:
511a516b74d9f5e498a5dc2de97b0e488df51088
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
move got_opentmp* functions to public API; used from tog
- Commit:
22eb897338c1f91ec8dfa725dd84ab38ed2b1aeb
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
restore DEBUG build
- Commit:
25783624d6d0848cf127e112e4b7648265a35ca4
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
use stricter CPPFLAGS from mpi
- Commit:
a76a38d94e01aee74bea1e13c38979f9d2214291
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
rename zb.c to zbuf.c
- Commit:
885d3e0206a04e896704eb67f94c5f39b6976d33
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
implement delta combiner and a small test suite for it
- Commit:
ac25a2928225d680fe46d1ff1bd086a2e7757365
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
add a skeleton for a delta test (empty)