2 * Copyright (c) 2022 Stefan Sperling <stsp@openbsd.org>
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 #include <sys/queue.h>
18 #include <sys/socket.h>
33 #include "got_error.h"
34 #include "got_version.h"
36 #include "got_lib_gitproto.h"
41 #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
44 #define GOTCTL_CMD_INFO "info"
45 #define GOTCTL_CMD_STOP "stop"
49 const struct got_error *(*cmd_main)(int, char *[], int);
50 void (*cmd_usage)(void);
53 __dead static void usage(int, int);
55 __dead static void usage_info(void);
56 __dead static void usage_stop(void);
58 static const struct got_error* cmd_info(int, char *[], int);
59 static const struct got_error* cmd_stop(int, char *[], int);
61 static const struct gotctl_cmd gotctl_commands[] = {
62 { "info", cmd_info, usage_info },
63 { "stop", cmd_stop, usage_stop },
69 fprintf(stderr, "usage: %s info\n", getprogname());
73 static const struct got_error *
74 show_info(struct imsg *imsg)
76 struct gotd_imsg_info info;
79 datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
80 if (datalen != sizeof(info))
81 return got_error(GOT_ERR_PRIVSEP_LEN);
82 memcpy(&info, imsg->data, sizeof(info));
84 printf("gotd PID: %d\n", info.pid);
85 printf("verbosity: %d\n", info.verbosity);
86 printf("number of repositories: %d\n", info.nrepos);
87 printf("number of connected clients: %d\n", info.nclients);
91 static const struct got_error *
92 show_repo_info(struct imsg *imsg)
94 struct gotd_imsg_info_repo info;
97 datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
98 if (datalen != sizeof(info))
99 return got_error(GOT_ERR_PRIVSEP_LEN);
100 memcpy(&info, imsg->data, sizeof(info));
102 printf("repository \"%s\", path %s\n", info.repo_name, info.repo_path);
107 get_state_name(enum gotd_client_state state)
109 static char unknown_state[64];
112 case GOTD_STATE_EXPECT_LIST_REFS:
114 case GOTD_STATE_EXPECT_CAPABILITIES:
115 return "expect-capabilities";
116 case GOTD_STATE_EXPECT_WANT:
117 return "expect-want";
118 case GOTD_STATE_EXPECT_REF_UPDATE:
119 return "expect-ref-update";
120 case GOTD_STATE_EXPECT_MORE_REF_UPDATES:
121 return "expect-more-ref-updates";
122 case GOTD_STATE_EXPECT_HAVE:
123 return "expect-have";
124 case GOTD_STATE_EXPECT_PACKFILE:
125 return "expect-packfile";
126 case GOTD_STATE_EXPECT_DONE:
127 return "expect-done";
128 case GOTD_STATE_DONE:
132 snprintf(unknown_state, sizeof(unknown_state),
133 "unknown state %d", state);
134 return unknown_state;
137 static const struct got_error *
138 show_client_info(struct imsg *imsg)
140 struct gotd_imsg_info_client info;
143 datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
144 if (datalen != sizeof(info))
145 return got_error(GOT_ERR_PRIVSEP_LEN);
146 memcpy(&info, imsg->data, sizeof(info));
148 printf("client UID %d, GID %d, protocol state '%s', ",
149 info.euid, info.egid, get_state_name(info.state));
151 printf("writing to %s\n", info.repo_name);
153 printf("reading from %s\n", info.repo_name);
158 static const struct got_error *
159 show_capability(struct imsg *imsg)
161 struct gotd_imsg_capability icapa;
163 char *key, *value = NULL;
165 memset(&icapa, 0, sizeof(icapa));
167 datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
168 if (datalen < sizeof(icapa))
169 return got_error(GOT_ERR_PRIVSEP_LEN);
170 memcpy(&icapa, imsg->data, sizeof(icapa));
172 if (datalen != sizeof(icapa) + icapa.key_len + icapa.value_len)
173 return got_error(GOT_ERR_PRIVSEP_LEN);
175 key = malloc(icapa.key_len + 1);
177 return got_error_from_errno("malloc");
178 if (icapa.value_len > 0) {
179 value = malloc(icapa.value_len + 1);
182 return got_error_from_errno("malloc");
186 memcpy(key, imsg->data + sizeof(icapa), icapa.key_len);
187 key[icapa.key_len] = '\0';
189 memcpy(value, imsg->data + sizeof(icapa) + icapa.key_len,
191 value[icapa.value_len] = '\0';
194 if (strcmp(key, GOT_CAPA_AGENT) == 0)
195 printf(" client user agent: %s\n", value);
197 printf(" client supports %s=%s\n", key, value);
199 printf(" client supports %s\n", key);
206 static const struct got_error *
207 cmd_info(int argc, char *argv[], int gotd_sock)
209 const struct got_error *err;
213 imsg_init(&ibuf, gotd_sock);
215 if (imsg_compose(&ibuf, GOTD_IMSG_INFO, 0, 0, -1, NULL, 0) == -1)
216 return got_error_from_errno("imsg_compose INFO");
218 err = gotd_imsg_flush(&ibuf);
219 while (err == NULL) {
220 err = gotd_imsg_poll_recv(&imsg, &ibuf, 0);
222 if (err->code == GOT_ERR_EOF)
227 switch (imsg.hdr.type) {
228 case GOTD_IMSG_ERROR:
229 err = gotd_imsg_recv_error(NULL, &imsg);
232 err = show_info(&imsg);
234 case GOTD_IMSG_INFO_REPO:
235 err = show_repo_info(&imsg);
237 case GOTD_IMSG_INFO_CLIENT:
238 err = show_client_info(&imsg);
240 case GOTD_IMSG_CAPABILITY:
241 err = show_capability(&imsg);
244 err = got_error(GOT_ERR_PRIVSEP_MSG);
258 fprintf(stderr, "usage: %s stop\n", getprogname());
262 static const struct got_error *
263 cmd_stop(int argc, char *argv[], int gotd_sock)
265 const struct got_error *err;
269 imsg_init(&ibuf, gotd_sock);
271 if (imsg_compose(&ibuf, GOTD_IMSG_STOP, 0, 0, -1, NULL, 0) == -1)
272 return got_error_from_errno("imsg_compose STOP");
274 err = gotd_imsg_flush(&ibuf);
275 while (err == NULL) {
276 err = gotd_imsg_poll_recv(&imsg, &ibuf, 0);
278 if (err->code == GOT_ERR_EOF)
283 switch (imsg.hdr.type) {
284 case GOTD_IMSG_ERROR:
285 err = gotd_imsg_recv_error(NULL, &imsg);
288 err = got_error(GOT_ERR_PRIVSEP_MSG);
300 list_commands(FILE *fp)
304 fprintf(fp, "commands:");
305 for (i = 0; i < nitems(gotctl_commands); i++) {
306 const struct gotctl_cmd *cmd = &gotctl_commands[i];
307 fprintf(fp, " %s", cmd->cmd_name);
313 usage(int hflag, int status)
315 FILE *fp = (status == 0) ? stdout : stderr;
317 fprintf(fp, "usage: %s [-hV] [-f path] command [arg ...]\n",
324 static const struct got_error *
325 apply_unveil(const char *unix_socket_path)
328 if (unveil("gmon.out", "rwc") != 0)
329 return got_error_from_errno2("unveil", "gmon.out");
331 if (unveil(unix_socket_path, "w") != 0)
332 return got_error_from_errno2("unveil", unix_socket_path);
334 if (unveil(NULL, NULL) != 0)
335 return got_error_from_errno("unveil");
341 connect_gotd(const char *socket_path)
343 const struct got_error *error = NULL;
345 struct sockaddr_un sun;
347 error = apply_unveil(socket_path);
349 errx(1, "%s", error->msg);
352 if (pledge("stdio unix", NULL) == -1)
355 if ((gotd_sock = socket(AF_UNIX, SOCK_STREAM, 0)) == -1)
358 memset(&sun, 0, sizeof(sun));
359 sun.sun_family = AF_UNIX;
360 if (strlcpy(sun.sun_path, socket_path, sizeof(sun.sun_path)) >=
361 sizeof(sun.sun_path))
362 errx(1, "gotd socket path too long");
363 if (connect(gotd_sock, (struct sockaddr *)&sun, sizeof(sun)) == -1)
364 err(1, "connect: %s", socket_path);
367 if (pledge("stdio", NULL) == -1)
375 main(int argc, char *argv[])
377 const struct gotctl_cmd *cmd;
378 int gotd_sock = -1, i;
380 int hflag = 0, Vflag = 0;
381 static const struct option longopts[] = {
382 { "version", no_argument, NULL, 'V' },
385 const char *socket_path = GOTD_UNIX_SOCKET;
387 setlocale(LC_CTYPE, "");
390 if (pledge("stdio unix unveil", NULL) == -1)
394 while ((ch = getopt_long(argc, argv, "+hf:V", longopts, NULL)) != -1) {
400 socket_path = optarg;
417 got_version_print_str();
422 usage(hflag, hflag ? 0 : 1);
424 for (i = 0; i < nitems(gotctl_commands); i++) {
425 const struct got_error *error;
427 cmd = &gotctl_commands[i];
429 if (strncmp(cmd->cmd_name, argv[0], strlen(argv[0])) != 0)
435 gotd_sock = connect_gotd(socket_path);
438 error = cmd->cmd_main(argc, argv, gotd_sock);
441 fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
448 fprintf(stderr, "%s: unknown command '%s'\n", getprogname(), argv[0]);
449 list_commands(stderr);