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);
106 static const struct got_error *
107 show_client_info(struct imsg *imsg)
109 struct gotd_imsg_info_client info;
112 datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
113 if (datalen != sizeof(info))
114 return got_error(GOT_ERR_PRIVSEP_LEN);
115 memcpy(&info, imsg->data, sizeof(info));
117 printf("client UID %d, GID %d, ", info.euid, info.egid);
118 if (info.session_child_pid)
119 printf("session PID %ld, ", (long)info.session_child_pid);
120 if (info.repo_child_pid)
121 printf("repo PID %ld, ", (long)info.repo_child_pid);
123 printf("writing to %s\n", info.repo_name);
125 printf("reading from %s\n", info.repo_name);
130 static const struct got_error *
131 cmd_info(int argc, char *argv[], int gotd_sock)
133 const struct got_error *err;
137 imsg_init(&ibuf, gotd_sock);
139 if (imsg_compose(&ibuf, GOTD_IMSG_INFO, 0, 0, -1, NULL, 0) == -1)
140 return got_error_from_errno("imsg_compose INFO");
142 err = gotd_imsg_flush(&ibuf);
143 while (err == NULL) {
144 err = gotd_imsg_poll_recv(&imsg, &ibuf, 0);
146 if (err->code == GOT_ERR_EOF)
151 switch (imsg.hdr.type) {
152 case GOTD_IMSG_ERROR:
153 err = gotd_imsg_recv_error(NULL, &imsg);
156 err = show_info(&imsg);
158 case GOTD_IMSG_INFO_REPO:
159 err = show_repo_info(&imsg);
161 case GOTD_IMSG_INFO_CLIENT:
162 err = show_client_info(&imsg);
165 err = got_error(GOT_ERR_PRIVSEP_MSG);
179 fprintf(stderr, "usage: %s stop\n", getprogname());
183 static const struct got_error *
184 cmd_stop(int argc, char *argv[], int gotd_sock)
186 const struct got_error *err;
190 imsg_init(&ibuf, gotd_sock);
192 if (imsg_compose(&ibuf, GOTD_IMSG_STOP, 0, 0, -1, NULL, 0) == -1)
193 return got_error_from_errno("imsg_compose STOP");
195 err = gotd_imsg_flush(&ibuf);
196 while (err == NULL) {
197 err = gotd_imsg_poll_recv(&imsg, &ibuf, 0);
199 if (err->code == GOT_ERR_EOF)
204 switch (imsg.hdr.type) {
205 case GOTD_IMSG_ERROR:
206 err = gotd_imsg_recv_error(NULL, &imsg);
209 err = got_error(GOT_ERR_PRIVSEP_MSG);
221 list_commands(FILE *fp)
225 fprintf(fp, "commands:");
226 for (i = 0; i < nitems(gotctl_commands); i++) {
227 const struct gotctl_cmd *cmd = &gotctl_commands[i];
228 fprintf(fp, " %s", cmd->cmd_name);
234 usage(int hflag, int status)
236 FILE *fp = (status == 0) ? stdout : stderr;
238 fprintf(fp, "usage: %s [-hV] [-f path] command [arg ...]\n",
245 static const struct got_error *
246 apply_unveil(const char *unix_socket_path)
249 if (unveil("gmon.out", "rwc") != 0)
250 return got_error_from_errno2("unveil", "gmon.out");
252 if (unveil(unix_socket_path, "w") != 0)
253 return got_error_from_errno2("unveil", unix_socket_path);
255 if (unveil(NULL, NULL) != 0)
256 return got_error_from_errno("unveil");
262 connect_gotd(const char *socket_path)
264 const struct got_error *error = NULL;
266 struct sockaddr_un sun;
268 error = apply_unveil(socket_path);
270 errx(1, "%s", error->msg);
273 if (pledge("stdio unix", NULL) == -1)
276 if ((gotd_sock = socket(AF_UNIX, SOCK_STREAM, 0)) == -1)
279 memset(&sun, 0, sizeof(sun));
280 sun.sun_family = AF_UNIX;
281 if (strlcpy(sun.sun_path, socket_path, sizeof(sun.sun_path)) >=
282 sizeof(sun.sun_path))
283 errx(1, "gotd socket path too long");
284 if (connect(gotd_sock, (struct sockaddr *)&sun, sizeof(sun)) == -1)
285 err(1, "connect: %s", socket_path);
288 if (pledge("stdio", NULL) == -1)
296 main(int argc, char *argv[])
298 const struct gotctl_cmd *cmd;
299 int gotd_sock = -1, i;
301 int hflag = 0, Vflag = 0;
302 static const struct option longopts[] = {
303 { "version", no_argument, NULL, 'V' },
306 const char *socket_path = GOTD_UNIX_SOCKET;
308 setlocale(LC_CTYPE, "");
311 if (pledge("stdio unix unveil", NULL) == -1)
315 while ((ch = getopt_long(argc, argv, "+hf:V", longopts, NULL)) != -1) {
321 socket_path = optarg;
338 got_version_print_str();
343 usage(hflag, hflag ? 0 : 1);
345 for (i = 0; i < nitems(gotctl_commands); i++) {
346 const struct got_error *error;
348 cmd = &gotctl_commands[i];
350 if (strncmp(cmd->cmd_name, argv[0], strlen(argv[0])) != 0)
356 gotd_sock = connect_gotd(socket_path);
359 error = cmd->cmd_main(argc, argv, gotd_sock);
362 fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
369 fprintf(stderr, "%s: unknown command '%s'\n", getprogname(), argv[0]);
370 list_commands(stderr);