Blame


1 f1752522 2022-10-29 stsp /*
2 f1752522 2022-10-29 stsp * Copyright (c) 2022 Stefan Sperling <stsp@openbsd.org>
3 f1752522 2022-10-29 stsp *
4 f1752522 2022-10-29 stsp * Permission to use, copy, modify, and distribute this software for any
5 f1752522 2022-10-29 stsp * purpose with or without fee is hereby granted, provided that the above
6 f1752522 2022-10-29 stsp * copyright notice and this permission notice appear in all copies.
7 f1752522 2022-10-29 stsp *
8 f1752522 2022-10-29 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 f1752522 2022-10-29 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 f1752522 2022-10-29 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 f1752522 2022-10-29 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 f1752522 2022-10-29 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 f1752522 2022-10-29 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 f1752522 2022-10-29 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 f1752522 2022-10-29 stsp */
16 f1752522 2022-10-29 stsp
17 f1752522 2022-10-29 stsp #include <sys/queue.h>
18 f1752522 2022-10-29 stsp #include <sys/socket.h>
19 f1752522 2022-10-29 stsp #include <sys/un.h>
20 f1752522 2022-10-29 stsp
21 f1752522 2022-10-29 stsp #include <err.h>
22 f1752522 2022-10-29 stsp #include <event.h>
23 f1752522 2022-10-29 stsp #include <imsg.h>
24 f1752522 2022-10-29 stsp #include <limits.h>
25 f1752522 2022-10-29 stsp #include <locale.h>
26 f1752522 2022-10-29 stsp #include <sha1.h>
27 f1752522 2022-10-29 stsp #include <stdio.h>
28 f1752522 2022-10-29 stsp #include <stdlib.h>
29 f1752522 2022-10-29 stsp #include <string.h>
30 f1752522 2022-10-29 stsp #include <getopt.h>
31 f1752522 2022-10-29 stsp #include <unistd.h>
32 f1752522 2022-10-29 stsp
33 f1752522 2022-10-29 stsp #include "got_error.h"
34 f1752522 2022-10-29 stsp #include "got_version.h"
35 f1752522 2022-10-29 stsp
36 f1752522 2022-10-29 stsp #include "got_lib_gitproto.h"
37 f1752522 2022-10-29 stsp
38 f1752522 2022-10-29 stsp #include "gotd.h"
39 f1752522 2022-10-29 stsp
40 f1752522 2022-10-29 stsp #ifndef nitems
41 f1752522 2022-10-29 stsp #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
42 f1752522 2022-10-29 stsp #endif
43 f1752522 2022-10-29 stsp
44 f1752522 2022-10-29 stsp #define GOTCTL_CMD_INFO "info"
45 f1752522 2022-10-29 stsp #define GOTCTL_CMD_STOP "stop"
46 f1752522 2022-10-29 stsp
47 f1752522 2022-10-29 stsp struct gotctl_cmd {
48 f1752522 2022-10-29 stsp const char *cmd_name;
49 f1752522 2022-10-29 stsp const struct got_error *(*cmd_main)(int, char *[], int);
50 f1752522 2022-10-29 stsp void (*cmd_usage)(void);
51 f1752522 2022-10-29 stsp };
52 f1752522 2022-10-29 stsp
53 f1752522 2022-10-29 stsp __dead static void usage(int, int);
54 f1752522 2022-10-29 stsp
55 f1752522 2022-10-29 stsp __dead static void usage_info(void);
56 f1752522 2022-10-29 stsp __dead static void usage_stop(void);
57 f1752522 2022-10-29 stsp
58 f1752522 2022-10-29 stsp static const struct got_error* cmd_info(int, char *[], int);
59 f1752522 2022-10-29 stsp static const struct got_error* cmd_stop(int, char *[], int);
60 f1752522 2022-10-29 stsp
61 f1752522 2022-10-29 stsp static const struct gotctl_cmd gotctl_commands[] = {
62 f1752522 2022-10-29 stsp { "info", cmd_info, usage_info },
63 f1752522 2022-10-29 stsp { "stop", cmd_stop, usage_stop },
64 f1752522 2022-10-29 stsp };
65 f1752522 2022-10-29 stsp
66 f1752522 2022-10-29 stsp __dead static void
67 f1752522 2022-10-29 stsp usage_info(void)
68 f1752522 2022-10-29 stsp {
69 f1752522 2022-10-29 stsp fprintf(stderr, "usage: %s info\n", getprogname());
70 f1752522 2022-10-29 stsp exit(1);
71 f1752522 2022-10-29 stsp }
72 f1752522 2022-10-29 stsp
73 f1752522 2022-10-29 stsp static const struct got_error *
74 f1752522 2022-10-29 stsp show_info(struct imsg *imsg)
75 f1752522 2022-10-29 stsp {
76 f1752522 2022-10-29 stsp struct gotd_imsg_info info;
77 f1752522 2022-10-29 stsp size_t datalen;
78 f1752522 2022-10-29 stsp
79 f1752522 2022-10-29 stsp datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
80 f1752522 2022-10-29 stsp if (datalen != sizeof(info))
81 f1752522 2022-10-29 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
82 f1752522 2022-10-29 stsp memcpy(&info, imsg->data, sizeof(info));
83 f1752522 2022-10-29 stsp
84 f1752522 2022-10-29 stsp printf("gotd PID: %d\n", info.pid);
85 f1752522 2022-10-29 stsp printf("verbosity: %d\n", info.verbosity);
86 f1752522 2022-10-29 stsp printf("number of repositories: %d\n", info.nrepos);
87 f1752522 2022-10-29 stsp printf("number of connected clients: %d\n", info.nclients);
88 f1752522 2022-10-29 stsp return NULL;
89 f1752522 2022-10-29 stsp }
90 f1752522 2022-10-29 stsp
91 f1752522 2022-10-29 stsp static const struct got_error *
92 f1752522 2022-10-29 stsp show_repo_info(struct imsg *imsg)
93 f1752522 2022-10-29 stsp {
94 f1752522 2022-10-29 stsp struct gotd_imsg_info_repo info;
95 f1752522 2022-10-29 stsp size_t datalen;
96 f1752522 2022-10-29 stsp
97 f1752522 2022-10-29 stsp datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
98 f1752522 2022-10-29 stsp if (datalen != sizeof(info))
99 f1752522 2022-10-29 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
100 f1752522 2022-10-29 stsp memcpy(&info, imsg->data, sizeof(info));
101 f1752522 2022-10-29 stsp
102 f1752522 2022-10-29 stsp printf("repository \"%s\", path %s\n", info.repo_name, info.repo_path);
103 f1752522 2022-10-29 stsp return NULL;
104 f1752522 2022-10-29 stsp }
105 f1752522 2022-10-29 stsp
106 f1752522 2022-10-29 stsp static const struct got_error *
107 f1752522 2022-10-29 stsp show_client_info(struct imsg *imsg)
108 f1752522 2022-10-29 stsp {
109 f1752522 2022-10-29 stsp struct gotd_imsg_info_client info;
110 f1752522 2022-10-29 stsp size_t datalen;
111 f1752522 2022-10-29 stsp
112 f1752522 2022-10-29 stsp datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
113 f1752522 2022-10-29 stsp if (datalen != sizeof(info))
114 f1752522 2022-10-29 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
115 f1752522 2022-10-29 stsp memcpy(&info, imsg->data, sizeof(info));
116 f1752522 2022-10-29 stsp
117 eac23c30 2023-01-10 stsp printf("client UID %d, GID %d, ", info.euid, info.egid);
118 ae7c1b78 2023-01-10 stsp if (info.session_child_pid)
119 ae7c1b78 2023-01-10 stsp printf("session PID %ld, ", (long)info.session_child_pid);
120 ae7c1b78 2023-01-10 stsp if (info.repo_child_pid)
121 ae7c1b78 2023-01-10 stsp printf("repo PID %ld, ", (long)info.repo_child_pid);
122 f1752522 2022-10-29 stsp if (info.is_writing)
123 f1752522 2022-10-29 stsp printf("writing to %s\n", info.repo_name);
124 f1752522 2022-10-29 stsp else
125 f1752522 2022-10-29 stsp printf("reading from %s\n", info.repo_name);
126 f1752522 2022-10-29 stsp
127 f1752522 2022-10-29 stsp return NULL;
128 f1752522 2022-10-29 stsp }
129 f1752522 2022-10-29 stsp
130 f1752522 2022-10-29 stsp static const struct got_error *
131 f1752522 2022-10-29 stsp cmd_info(int argc, char *argv[], int gotd_sock)
132 f1752522 2022-10-29 stsp {
133 f1752522 2022-10-29 stsp const struct got_error *err;
134 f1752522 2022-10-29 stsp struct imsgbuf ibuf;
135 f1752522 2022-10-29 stsp struct imsg imsg;
136 f1752522 2022-10-29 stsp
137 f1752522 2022-10-29 stsp imsg_init(&ibuf, gotd_sock);
138 f1752522 2022-10-29 stsp
139 f1752522 2022-10-29 stsp if (imsg_compose(&ibuf, GOTD_IMSG_INFO, 0, 0, -1, NULL, 0) == -1)
140 f1752522 2022-10-29 stsp return got_error_from_errno("imsg_compose INFO");
141 f1752522 2022-10-29 stsp
142 f1752522 2022-10-29 stsp err = gotd_imsg_flush(&ibuf);
143 f1752522 2022-10-29 stsp while (err == NULL) {
144 f1752522 2022-10-29 stsp err = gotd_imsg_poll_recv(&imsg, &ibuf, 0);
145 f1752522 2022-10-29 stsp if (err) {
146 f1752522 2022-10-29 stsp if (err->code == GOT_ERR_EOF)
147 f1752522 2022-10-29 stsp err = NULL;
148 f1752522 2022-10-29 stsp break;
149 f1752522 2022-10-29 stsp }
150 f1752522 2022-10-29 stsp
151 f1752522 2022-10-29 stsp switch (imsg.hdr.type) {
152 f1752522 2022-10-29 stsp case GOTD_IMSG_ERROR:
153 f1752522 2022-10-29 stsp err = gotd_imsg_recv_error(NULL, &imsg);
154 f1752522 2022-10-29 stsp break;
155 f1752522 2022-10-29 stsp case GOTD_IMSG_INFO:
156 f1752522 2022-10-29 stsp err = show_info(&imsg);
157 f1752522 2022-10-29 stsp break;
158 f1752522 2022-10-29 stsp case GOTD_IMSG_INFO_REPO:
159 f1752522 2022-10-29 stsp err = show_repo_info(&imsg);
160 f1752522 2022-10-29 stsp break;
161 f1752522 2022-10-29 stsp case GOTD_IMSG_INFO_CLIENT:
162 f1752522 2022-10-29 stsp err = show_client_info(&imsg);
163 f1752522 2022-10-29 stsp break;
164 f1752522 2022-10-29 stsp default:
165 f1752522 2022-10-29 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
166 f1752522 2022-10-29 stsp break;
167 f1752522 2022-10-29 stsp }
168 f1752522 2022-10-29 stsp
169 f1752522 2022-10-29 stsp imsg_free(&imsg);
170 f1752522 2022-10-29 stsp }
171 f1752522 2022-10-29 stsp
172 f1752522 2022-10-29 stsp imsg_clear(&ibuf);
173 f1752522 2022-10-29 stsp return err;
174 f1752522 2022-10-29 stsp }
175 f1752522 2022-10-29 stsp
176 f1752522 2022-10-29 stsp __dead static void
177 f1752522 2022-10-29 stsp usage_stop(void)
178 f1752522 2022-10-29 stsp {
179 f1752522 2022-10-29 stsp fprintf(stderr, "usage: %s stop\n", getprogname());
180 f1752522 2022-10-29 stsp exit(1);
181 f1752522 2022-10-29 stsp }
182 f1752522 2022-10-29 stsp
183 f1752522 2022-10-29 stsp static const struct got_error *
184 f1752522 2022-10-29 stsp cmd_stop(int argc, char *argv[], int gotd_sock)
185 f1752522 2022-10-29 stsp {
186 f1752522 2022-10-29 stsp const struct got_error *err;
187 f1752522 2022-10-29 stsp struct imsgbuf ibuf;
188 f1752522 2022-10-29 stsp struct imsg imsg;
189 f1752522 2022-10-29 stsp
190 f1752522 2022-10-29 stsp imsg_init(&ibuf, gotd_sock);
191 f1752522 2022-10-29 stsp
192 f1752522 2022-10-29 stsp if (imsg_compose(&ibuf, GOTD_IMSG_STOP, 0, 0, -1, NULL, 0) == -1)
193 f1752522 2022-10-29 stsp return got_error_from_errno("imsg_compose STOP");
194 f1752522 2022-10-29 stsp
195 f1752522 2022-10-29 stsp err = gotd_imsg_flush(&ibuf);
196 f1752522 2022-10-29 stsp while (err == NULL) {
197 f1752522 2022-10-29 stsp err = gotd_imsg_poll_recv(&imsg, &ibuf, 0);
198 f1752522 2022-10-29 stsp if (err) {
199 f1752522 2022-10-29 stsp if (err->code == GOT_ERR_EOF)
200 f1752522 2022-10-29 stsp err = NULL;
201 f1752522 2022-10-29 stsp break;
202 f1752522 2022-10-29 stsp }
203 f1752522 2022-10-29 stsp
204 f1752522 2022-10-29 stsp switch (imsg.hdr.type) {
205 f1752522 2022-10-29 stsp case GOTD_IMSG_ERROR:
206 f1752522 2022-10-29 stsp err = gotd_imsg_recv_error(NULL, &imsg);
207 f1752522 2022-10-29 stsp break;
208 f1752522 2022-10-29 stsp default:
209 f1752522 2022-10-29 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
210 f1752522 2022-10-29 stsp break;
211 f1752522 2022-10-29 stsp }
212 f1752522 2022-10-29 stsp
213 f1752522 2022-10-29 stsp imsg_free(&imsg);
214 f1752522 2022-10-29 stsp }
215 f1752522 2022-10-29 stsp
216 f1752522 2022-10-29 stsp imsg_clear(&ibuf);
217 f1752522 2022-10-29 stsp return err;
218 f1752522 2022-10-29 stsp }
219 f1752522 2022-10-29 stsp
220 f1752522 2022-10-29 stsp static void
221 f1752522 2022-10-29 stsp list_commands(FILE *fp)
222 f1752522 2022-10-29 stsp {
223 f1752522 2022-10-29 stsp size_t i;
224 f1752522 2022-10-29 stsp
225 f1752522 2022-10-29 stsp fprintf(fp, "commands:");
226 f1752522 2022-10-29 stsp for (i = 0; i < nitems(gotctl_commands); i++) {
227 f1752522 2022-10-29 stsp const struct gotctl_cmd *cmd = &gotctl_commands[i];
228 f1752522 2022-10-29 stsp fprintf(fp, " %s", cmd->cmd_name);
229 f1752522 2022-10-29 stsp }
230 f1752522 2022-10-29 stsp fputc('\n', fp);
231 f1752522 2022-10-29 stsp }
232 f1752522 2022-10-29 stsp
233 f1752522 2022-10-29 stsp __dead static void
234 f1752522 2022-10-29 stsp usage(int hflag, int status)
235 f1752522 2022-10-29 stsp {
236 f1752522 2022-10-29 stsp FILE *fp = (status == 0) ? stdout : stderr;
237 f1752522 2022-10-29 stsp
238 a5a750bd 2022-11-14 op fprintf(fp, "usage: %s [-hV] [-f path] command [arg ...]\n",
239 f1752522 2022-10-29 stsp getprogname());
240 f1752522 2022-10-29 stsp if (hflag)
241 f1752522 2022-10-29 stsp list_commands(fp);
242 f1752522 2022-10-29 stsp exit(status);
243 f1752522 2022-10-29 stsp }
244 f1752522 2022-10-29 stsp
245 f1752522 2022-10-29 stsp static const struct got_error *
246 f1752522 2022-10-29 stsp apply_unveil(const char *unix_socket_path)
247 f1752522 2022-10-29 stsp {
248 f1752522 2022-10-29 stsp #ifdef PROFILE
249 f1752522 2022-10-29 stsp if (unveil("gmon.out", "rwc") != 0)
250 f1752522 2022-10-29 stsp return got_error_from_errno2("unveil", "gmon.out");
251 f1752522 2022-10-29 stsp #endif
252 f1752522 2022-10-29 stsp if (unveil(unix_socket_path, "w") != 0)
253 f1752522 2022-10-29 stsp return got_error_from_errno2("unveil", unix_socket_path);
254 f1752522 2022-10-29 stsp
255 f1752522 2022-10-29 stsp if (unveil(NULL, NULL) != 0)
256 f1752522 2022-10-29 stsp return got_error_from_errno("unveil");
257 f1752522 2022-10-29 stsp
258 f1752522 2022-10-29 stsp return NULL;
259 f1752522 2022-10-29 stsp }
260 f1752522 2022-10-29 stsp
261 f1752522 2022-10-29 stsp static int
262 f1752522 2022-10-29 stsp connect_gotd(const char *socket_path)
263 f1752522 2022-10-29 stsp {
264 f1752522 2022-10-29 stsp const struct got_error *error = NULL;
265 f1752522 2022-10-29 stsp int gotd_sock = -1;
266 f1752522 2022-10-29 stsp struct sockaddr_un sun;
267 f1752522 2022-10-29 stsp
268 f5d30fbb 2022-10-29 op error = apply_unveil(socket_path);
269 f1752522 2022-10-29 stsp if (error)
270 f1752522 2022-10-29 stsp errx(1, "%s", error->msg);
271 f1752522 2022-10-29 stsp
272 f1752522 2022-10-29 stsp #ifndef PROFILE
273 f1752522 2022-10-29 stsp if (pledge("stdio unix", NULL) == -1)
274 f1752522 2022-10-29 stsp err(1, "pledge");
275 f1752522 2022-10-29 stsp #endif
276 f1752522 2022-10-29 stsp if ((gotd_sock = socket(AF_UNIX, SOCK_STREAM, 0)) == -1)
277 f1752522 2022-10-29 stsp err(1, "socket");
278 f1752522 2022-10-29 stsp
279 f1752522 2022-10-29 stsp memset(&sun, 0, sizeof(sun));
280 f1752522 2022-10-29 stsp sun.sun_family = AF_UNIX;
281 f5d30fbb 2022-10-29 op if (strlcpy(sun.sun_path, socket_path, sizeof(sun.sun_path)) >=
282 f5d30fbb 2022-10-29 op sizeof(sun.sun_path))
283 f1752522 2022-10-29 stsp errx(1, "gotd socket path too long");
284 f1752522 2022-10-29 stsp if (connect(gotd_sock, (struct sockaddr *)&sun, sizeof(sun)) == -1)
285 f5d30fbb 2022-10-29 op err(1, "connect: %s", socket_path);
286 f1752522 2022-10-29 stsp
287 f1752522 2022-10-29 stsp #ifndef PROFILE
288 f1752522 2022-10-29 stsp if (pledge("stdio", NULL) == -1)
289 f1752522 2022-10-29 stsp err(1, "pledge");
290 f1752522 2022-10-29 stsp #endif
291 f1752522 2022-10-29 stsp
292 f1752522 2022-10-29 stsp return gotd_sock;
293 f1752522 2022-10-29 stsp }
294 f1752522 2022-10-29 stsp
295 f1752522 2022-10-29 stsp int
296 f1752522 2022-10-29 stsp main(int argc, char *argv[])
297 f1752522 2022-10-29 stsp {
298 f1752522 2022-10-29 stsp const struct gotctl_cmd *cmd;
299 f1752522 2022-10-29 stsp int gotd_sock = -1, i;
300 f1752522 2022-10-29 stsp int ch;
301 f1752522 2022-10-29 stsp int hflag = 0, Vflag = 0;
302 f1752522 2022-10-29 stsp static const struct option longopts[] = {
303 f1752522 2022-10-29 stsp { "version", no_argument, NULL, 'V' },
304 f1752522 2022-10-29 stsp { NULL, 0, NULL, 0 }
305 f1752522 2022-10-29 stsp };
306 f5d30fbb 2022-10-29 op const char *socket_path = GOTD_UNIX_SOCKET;
307 f1752522 2022-10-29 stsp
308 f1752522 2022-10-29 stsp setlocale(LC_CTYPE, "");
309 f1752522 2022-10-29 stsp
310 f1752522 2022-10-29 stsp #ifndef PROFILE
311 f1752522 2022-10-29 stsp if (pledge("stdio unix unveil", NULL) == -1)
312 f1752522 2022-10-29 stsp err(1, "pledge");
313 f1752522 2022-10-29 stsp #endif
314 f1752522 2022-10-29 stsp
315 f1752522 2022-10-29 stsp while ((ch = getopt_long(argc, argv, "+hf:V", longopts, NULL)) != -1) {
316 f1752522 2022-10-29 stsp switch (ch) {
317 f1752522 2022-10-29 stsp case 'h':
318 f1752522 2022-10-29 stsp hflag = 1;
319 f1752522 2022-10-29 stsp break;
320 f1752522 2022-10-29 stsp case 'f':
321 f1752522 2022-10-29 stsp socket_path = optarg;
322 f1752522 2022-10-29 stsp break;
323 f1752522 2022-10-29 stsp case 'V':
324 f1752522 2022-10-29 stsp Vflag = 1;
325 f1752522 2022-10-29 stsp break;
326 f1752522 2022-10-29 stsp default:
327 f1752522 2022-10-29 stsp usage(hflag, 1);
328 f1752522 2022-10-29 stsp /* NOTREACHED */
329 f1752522 2022-10-29 stsp }
330 f1752522 2022-10-29 stsp }
331 f1752522 2022-10-29 stsp
332 f1752522 2022-10-29 stsp argc -= optind;
333 f1752522 2022-10-29 stsp argv += optind;
334 f1752522 2022-10-29 stsp optind = 1;
335 f1752522 2022-10-29 stsp optreset = 1;
336 f1752522 2022-10-29 stsp
337 f1752522 2022-10-29 stsp if (Vflag) {
338 f1752522 2022-10-29 stsp got_version_print_str();
339 f1752522 2022-10-29 stsp return 0;
340 f1752522 2022-10-29 stsp }
341 f1752522 2022-10-29 stsp
342 f1752522 2022-10-29 stsp if (argc <= 0)
343 f1752522 2022-10-29 stsp usage(hflag, hflag ? 0 : 1);
344 f1752522 2022-10-29 stsp
345 f1752522 2022-10-29 stsp for (i = 0; i < nitems(gotctl_commands); i++) {
346 f1752522 2022-10-29 stsp const struct got_error *error;
347 f1752522 2022-10-29 stsp
348 f1752522 2022-10-29 stsp cmd = &gotctl_commands[i];
349 f1752522 2022-10-29 stsp
350 f1752522 2022-10-29 stsp if (strncmp(cmd->cmd_name, argv[0], strlen(argv[0])) != 0)
351 f1752522 2022-10-29 stsp continue;
352 f1752522 2022-10-29 stsp
353 f1752522 2022-10-29 stsp if (hflag)
354 f1752522 2022-10-29 stsp cmd->cmd_usage();
355 f1752522 2022-10-29 stsp
356 f1752522 2022-10-29 stsp gotd_sock = connect_gotd(socket_path);
357 f1752522 2022-10-29 stsp if (gotd_sock == -1)
358 f1752522 2022-10-29 stsp return 1;
359 f1752522 2022-10-29 stsp error = cmd->cmd_main(argc, argv, gotd_sock);
360 f1752522 2022-10-29 stsp close(gotd_sock);
361 f1752522 2022-10-29 stsp if (error) {
362 f1752522 2022-10-29 stsp fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
363 f1752522 2022-10-29 stsp return 1;
364 f1752522 2022-10-29 stsp }
365 f1752522 2022-10-29 stsp
366 f1752522 2022-10-29 stsp return 0;
367 f1752522 2022-10-29 stsp }
368 f1752522 2022-10-29 stsp
369 f1752522 2022-10-29 stsp fprintf(stderr, "%s: unknown command '%s'\n", getprogname(), argv[0]);
370 f1752522 2022-10-29 stsp list_commands(stderr);
371 f1752522 2022-10-29 stsp return 1;
372 f1752522 2022-10-29 stsp }