2 5dcb3a43 2023-04-01 thomas * Copyright (c) 2023 Stefan Sperling <stsp@openbsd.org>
4 5dcb3a43 2023-04-01 thomas * Permission to use, copy, modify, and distribute this software for any
5 5dcb3a43 2023-04-01 thomas * purpose with or without fee is hereby granted, provided that the above
6 5dcb3a43 2023-04-01 thomas * copyright notice and this permission notice appear in all copies.
8 5dcb3a43 2023-04-01 thomas * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 5dcb3a43 2023-04-01 thomas * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 5dcb3a43 2023-04-01 thomas * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 5dcb3a43 2023-04-01 thomas * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 5dcb3a43 2023-04-01 thomas * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 5dcb3a43 2023-04-01 thomas * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 5dcb3a43 2023-04-01 thomas * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18 5dcb3a43 2023-04-01 thomas * Resolve path namespace conflicts for git-upload-pack and git-receive-pack.
21 4efc8dcb 2023-08-29 thomas #include "got_compat.h"
23 5dcb3a43 2023-04-01 thomas #include <sys/queue.h>
24 5dcb3a43 2023-04-01 thomas #include <sys/types.h>
25 5dcb3a43 2023-04-01 thomas #include <sys/uio.h>
27 5dcb3a43 2023-04-01 thomas #include <err.h>
28 5dcb3a43 2023-04-01 thomas #include <errno.h>
29 5dcb3a43 2023-04-01 thomas #include <event.h>
30 5dcb3a43 2023-04-01 thomas #include <limits.h>
31 5dcb3a43 2023-04-01 thomas #include <stdio.h>
32 5dcb3a43 2023-04-01 thomas #include <stdlib.h>
33 5dcb3a43 2023-04-01 thomas #include <string.h>
34 5dcb3a43 2023-04-01 thomas #include <syslog.h>
35 5dcb3a43 2023-04-01 thomas #include <unistd.h>
37 5dcb3a43 2023-04-01 thomas #include "got_error.h"
38 a07b40ef 2024-07-12 thomas #include "got_object.h"
39 5dcb3a43 2023-04-01 thomas #include "got_path.h"
41 5769f9a0 2023-04-22 thomas #include "got_lib_dial.h"
43 5dcb3a43 2023-04-01 thomas #include "gotd.h"
44 5dcb3a43 2023-04-01 thomas #include "log.h"
46 5dcb3a43 2023-04-01 thomas #ifndef GITWRAPPER_GIT_LIBEXEC_DIR
47 5dcb3a43 2023-04-01 thomas #define GITWRAPPER_GIT_LIBEXEC_DIR "/usr/local/libexec/git"
50 5dcb3a43 2023-04-01 thomas #ifndef GITWRAPPER_MY_SERVER_PROG
51 5dcb3a43 2023-04-01 thomas #define GITWRAPPER_MY_SERVER_PROG "gotsh"
55 5dcb3a43 2023-04-01 thomas __dead static void
56 5dcb3a43 2023-04-01 thomas usage(void)
58 5dcb3a43 2023-04-01 thomas fprintf(stderr, "usage: %s -c '%s|%s repository-path'\n",
59 5769f9a0 2023-04-22 thomas getprogname(), GOT_DIAL_CMD_SEND, GOT_DIAL_CMD_FETCH);
64 5dcb3a43 2023-04-01 thomas * Unveil the specific programs we want to start and hide everything else.
65 5dcb3a43 2023-04-01 thomas * This is important to limit the impact of our "exec" pledge.
67 5dcb3a43 2023-04-01 thomas static const struct got_error *
68 5dcb3a43 2023-04-01 thomas apply_unveil(const char *myserver)
70 5dcb3a43 2023-04-01 thomas const char *fetchcmd = GITWRAPPER_GIT_LIBEXEC_DIR "/" \
71 5769f9a0 2023-04-22 thomas GOT_DIAL_CMD_FETCH;
72 5dcb3a43 2023-04-01 thomas const char *sendcmd = GITWRAPPER_GIT_LIBEXEC_DIR "/" \
73 5769f9a0 2023-04-22 thomas GOT_DIAL_CMD_SEND;
75 5dcb3a43 2023-04-01 thomas #ifdef PROFILE
76 5dcb3a43 2023-04-01 thomas if (unveil("gmon.out", "rwc") != 0)
77 5dcb3a43 2023-04-01 thomas return got_error_from_errno2("unveil", "gmon.out");
79 768236a0 2023-05-26 thomas if (unveil(fetchcmd, "x") != 0 && errno != ENOENT)
80 5dcb3a43 2023-04-01 thomas return got_error_from_errno2("unveil", fetchcmd);
82 768236a0 2023-05-26 thomas if (unveil(sendcmd, "x") != 0 && errno != ENOENT)
83 5dcb3a43 2023-04-01 thomas return got_error_from_errno2("unveil", sendcmd);
85 768236a0 2023-05-26 thomas if (myserver && unveil(myserver, "x") != 0 && errno != ENOENT)
86 5dcb3a43 2023-04-01 thomas return got_error_from_errno2("unveil", myserver);
88 5dcb3a43 2023-04-01 thomas if (unveil(NULL, NULL) != 0)
89 5dcb3a43 2023-04-01 thomas return got_error_from_errno("unveil");
91 5dcb3a43 2023-04-01 thomas return NULL;
95 5dcb3a43 2023-04-01 thomas main(int argc, char *argv[])
97 5dcb3a43 2023-04-01 thomas const struct got_error *error;
98 5dcb3a43 2023-04-01 thomas const char *confpath = NULL;
99 5dcb3a43 2023-04-01 thomas char *command = NULL, *repo_name = NULL; /* for matching gotd.conf */
100 5dcb3a43 2023-04-01 thomas char *myserver = NULL;
101 5dcb3a43 2023-04-01 thomas const char *repo_path = NULL; /* as passed on the command line */
102 5dcb3a43 2023-04-01 thomas const char *relpath;
103 5dcb3a43 2023-04-01 thomas char *gitcommand = NULL;
104 5dcb3a43 2023-04-01 thomas struct gotd gotd;
105 5dcb3a43 2023-04-01 thomas struct gotd_repo *repo = NULL;
107 5dcb3a43 2023-04-01 thomas log_init(1, LOG_USER); /* Log to stderr. */
109 5dcb3a43 2023-04-01 thomas #ifndef PROFILE
110 44e35bfc 2023-04-01 thomas if (pledge("stdio rpath exec unveil", NULL) == -1)
111 5dcb3a43 2023-04-01 thomas err(1, "pledge");
115 5dcb3a43 2023-04-01 thomas * Look up our own server program in PATH so we can unveil(2) it.
116 5dcb3a43 2023-04-01 thomas * This call only errors out upon memory allocation failure.
117 5dcb3a43 2023-04-01 thomas * If the program cannot be found then myserver will be set to NULL.
119 5dcb3a43 2023-04-01 thomas error = got_path_find_prog(&myserver, GITWRAPPER_MY_SERVER_PROG);
120 5dcb3a43 2023-04-01 thomas if (error)
121 5dcb3a43 2023-04-01 thomas goto done;
124 5dcb3a43 2023-04-01 thomas * Run parse_config() before unveil(2) because parse_config()
125 5dcb3a43 2023-04-01 thomas * checks whether repository paths exist on disk.
126 5dcb3a43 2023-04-01 thomas * Parsing errors and warnings will be logged to stderr.
127 5dcb3a43 2023-04-01 thomas * Upon failure we will run Git's native tooling so do not
128 5dcb3a43 2023-04-01 thomas * bother checking for errors here.
130 5dcb3a43 2023-04-01 thomas confpath = getenv("GOTD_CONF_PATH");
131 5dcb3a43 2023-04-01 thomas if (confpath == NULL)
132 5dcb3a43 2023-04-01 thomas confpath = GOTD_CONF_PATH;
133 f3807fe5 2023-07-10 thomas parse_config(confpath, PROC_GITWRAPPER, &gotd);
135 5dcb3a43 2023-04-01 thomas error = apply_unveil(myserver);
136 5dcb3a43 2023-04-01 thomas if (error)
137 5dcb3a43 2023-04-01 thomas goto done;
139 5dcb3a43 2023-04-01 thomas #ifndef PROFILE
140 44e35bfc 2023-04-01 thomas if (pledge("stdio exec", NULL) == -1)
141 5dcb3a43 2023-04-01 thomas err(1, "pledge");
144 5769f9a0 2023-04-22 thomas if (strcmp(getprogname(), GOT_DIAL_CMD_SEND) == 0 ||
145 5769f9a0 2023-04-22 thomas strcmp(getprogname(), GOT_DIAL_CMD_FETCH) == 0) {
146 5dcb3a43 2023-04-01 thomas if (argc != 2)
148 5dcb3a43 2023-04-01 thomas command = strdup(getprogname());
149 5dcb3a43 2023-04-01 thomas if (command == NULL) {
150 5dcb3a43 2023-04-01 thomas error = got_error_from_errno("strdup");
151 5dcb3a43 2023-04-01 thomas goto done;
153 5dcb3a43 2023-04-01 thomas repo_path = argv[1];
154 5dcb3a43 2023-04-01 thomas relpath = argv[1];
155 5dcb3a43 2023-04-01 thomas while (relpath[0] == '/')
156 5dcb3a43 2023-04-01 thomas relpath++;
157 5dcb3a43 2023-04-01 thomas repo_name = strdup(relpath);
158 5dcb3a43 2023-04-01 thomas if (repo_name == NULL) {
159 5dcb3a43 2023-04-01 thomas error = got_error_from_errno("strdup");
160 5dcb3a43 2023-04-01 thomas goto done;
163 5dcb3a43 2023-04-01 thomas if (argc != 3 || strcmp(argv[1], "-c") != 0)
165 5dcb3a43 2023-04-01 thomas repo_path = argv[2];
166 5769f9a0 2023-04-22 thomas error = got_dial_parse_command(&command, &repo_name,
167 5dcb3a43 2023-04-01 thomas repo_path);
168 5dcb3a43 2023-04-01 thomas if (error && error->code == GOT_ERR_BAD_PACKET)
170 5dcb3a43 2023-04-01 thomas if (error)
171 5dcb3a43 2023-04-01 thomas goto done;
174 ce1bfad9 2024-03-30 thomas repo = gotd_find_repo_by_name(repo_name, &gotd.repos);
177 9c9f0ee1 2023-04-01 thomas * Invoke our custom Git server if the repository was found
178 9c9f0ee1 2023-04-01 thomas * in gotd.conf. Otherwise invoke native git(1) tooling.
180 44e35bfc 2023-04-01 thomas if (repo) {
181 44e35bfc 2023-04-01 thomas if (myserver == NULL) {
182 44e35bfc 2023-04-01 thomas error = got_error_fmt(GOT_ERR_NO_PROG,
183 44e35bfc 2023-04-01 thomas "cannot run '%s'",
184 44e35bfc 2023-04-01 thomas GITWRAPPER_MY_SERVER_PROG);
185 44e35bfc 2023-04-01 thomas goto done;
187 44e35bfc 2023-04-01 thomas execl(myserver, command, repo_name, (char *)NULL);
188 44e35bfc 2023-04-01 thomas error = got_error_from_errno2("execl", myserver);
190 44e35bfc 2023-04-01 thomas if (asprintf(&gitcommand, "%s/%s",
191 44e35bfc 2023-04-01 thomas GITWRAPPER_GIT_LIBEXEC_DIR, command) == -1) {
192 44e35bfc 2023-04-01 thomas error = got_error_from_errno("asprintf");
193 44e35bfc 2023-04-01 thomas goto done;
195 44e35bfc 2023-04-01 thomas execl(gitcommand, gitcommand, repo_path, (char *)NULL);
196 44e35bfc 2023-04-01 thomas error = got_error_from_errno2("execl", gitcommand);
200 5dcb3a43 2023-04-01 thomas free(command);
201 5dcb3a43 2023-04-01 thomas free(repo_name);
202 5dcb3a43 2023-04-01 thomas free(myserver);
203 5dcb3a43 2023-04-01 thomas free(gitcommand);
204 5dcb3a43 2023-04-01 thomas if (error) {
205 5dcb3a43 2023-04-01 thomas fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
206 5dcb3a43 2023-04-01 thomas return 1;
209 5dcb3a43 2023-04-01 thomas return 0;