Blob
- Date:
- Message:
- 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.
- Actions:
- History | Blame | Raw File
1 /*2 * Copyright (c) 2019 Ori Bernstein <ori@openbsd.org>3 * Copyright (c) 2021 Stefan Sperling <stsp@openbsd.org>4 *5 * Permission to use, copy, modify, and distribute this software for any6 * purpose with or without fee is hereby granted, provided that the above7 * copyright notice and this permission notice appear in all copies.8 *9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.16 */18 #define GOT_CAPA_AGENT "agent"19 #define GOT_CAPA_OFS_DELTA "ofs-delta"20 #define GOT_CAPA_SIDE_BAND_64K "side-band-64k"21 #define GOT_CAPA_REPORT_STATUS "report-status"22 #define GOT_CAPA_DELETE_REFS "delete-refs"23 #define GOT_CAPA_NO_THIN "no-thin"25 #define GOT_SIDEBAND_PACKFILE_DATA 126 #define GOT_SIDEBAND_PROGRESS_INFO 227 #define GOT_SIDEBAND_ERROR_INFO 329 #define GOT_SIDEBAND_64K_PACKFILE_DATA_MAX (GOT_PKT_MAX - 17)31 struct got_capability {32 const char *key;33 const char *value;34 };36 struct got_pathlist_head;38 const struct got_error *got_gitproto_parse_refline(char **id_str,39 char **refname, char **server_capabilities, char *line, int len);40 const struct got_error *got_gitproto_parse_want_line(char **id_str,41 char **capabilities, char *line, int len);42 const struct got_error *got_gitproto_parse_have_line(char **id_str,43 char *line, int len);44 const struct got_error *got_gitproto_parse_ref_update_line(char **old_id_str,45 char **new_id_str, char **refname, char **client_capabilities,46 char *line, size_t len);47 const struct got_error *got_gitproto_match_capabilities(48 char **common_capabilities,49 struct got_pathlist_head *symrefs, char *capabilities,50 const struct got_capability my_capabilities[], size_t ncapa);51 const struct got_error *got_gitproto_append_capabilities(size_t *capalen,52 char *buf, size_t offset, size_t bufsize,53 const struct got_capability my_capabilities[], size_t ncapa);54 const struct got_error *got_gitproto_split_capabilities_str(55 struct got_capability **capabilities, size_t *ncapabilities,56 char *capabilities_str);