Blame


1 3baa2617 2022-02-16 op /*
2 3baa2617 2022-02-16 op * Copyright (c) 2022 Omar Polo <op@openbsd.org>
3 3baa2617 2022-02-16 op *
4 3baa2617 2022-02-16 op * Permission to use, copy, modify, and distribute this software for any
5 3baa2617 2022-02-16 op * purpose with or without fee is hereby granted, provided that the above
6 3baa2617 2022-02-16 op * copyright notice and this permission notice appear in all copies.
7 3baa2617 2022-02-16 op *
8 3baa2617 2022-02-16 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 3baa2617 2022-02-16 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 3baa2617 2022-02-16 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 3baa2617 2022-02-16 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 3baa2617 2022-02-16 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 3baa2617 2022-02-16 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 3baa2617 2022-02-16 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 3baa2617 2022-02-16 op */
16 3baa2617 2022-02-16 op
17 3baa2617 2022-02-16 op #include <sys/types.h>
18 3baa2617 2022-02-16 op #include <sys/socket.h>
19 3baa2617 2022-02-16 op #include <sys/queue.h>
20 3baa2617 2022-02-16 op #include <sys/uio.h>
21 3baa2617 2022-02-16 op #include <sys/un.h>
22 3baa2617 2022-02-16 op
23 3baa2617 2022-02-16 op #include <errno.h>
24 3baa2617 2022-02-16 op #include <event.h>
25 3baa2617 2022-02-16 op #include <limits.h>
26 3baa2617 2022-02-16 op #include <sndio.h>
27 3baa2617 2022-02-16 op #include <stdio.h>
28 3baa2617 2022-02-16 op #include <stdlib.h>
29 3baa2617 2022-02-16 op #include <stdint.h>
30 3baa2617 2022-02-16 op #include <string.h>
31 3baa2617 2022-02-16 op #include <syslog.h>
32 3baa2617 2022-02-16 op #include <unistd.h>
33 3baa2617 2022-02-16 op #include <imsg.h>
34 3baa2617 2022-02-16 op
35 3baa2617 2022-02-16 op #include "amused.h"
36 3baa2617 2022-02-16 op #include "log.h"
37 bb3f279f 2022-02-16 op #include "playlist.h"
38 3baa2617 2022-02-16 op #include "xmalloc.h"
39 3baa2617 2022-02-16 op
40 3baa2617 2022-02-16 op static struct imsgbuf *ibuf;
41 3baa2617 2022-02-16 op
42 3baa2617 2022-02-16 op int ctl_noarg(struct parse_result *, int, char **);
43 3baa2617 2022-02-16 op int ctl_add(struct parse_result *, int, char **);
44 14be015f 2022-02-17 op int ctl_load(struct parse_result *, int, char **);
45 3baa2617 2022-02-16 op
46 3baa2617 2022-02-16 op struct ctl_command ctl_commands[] = {
47 3baa2617 2022-02-16 op { "play", PLAY, ctl_noarg, "" },
48 3baa2617 2022-02-16 op { "pause", PAUSE, ctl_noarg, "" },
49 3baa2617 2022-02-16 op { "toggle", TOGGLE, ctl_noarg, "" },
50 3baa2617 2022-02-16 op { "stop", STOP, ctl_noarg, "" },
51 3baa2617 2022-02-16 op { "restart", RESTART, ctl_noarg, "" },
52 3baa2617 2022-02-16 op { "add", ADD, ctl_add, "files...", 1 },
53 3baa2617 2022-02-16 op { "flush", FLUSH, ctl_noarg, "" },
54 d980494c 2022-02-16 op { "show", SHOW, ctl_noarg, "" },
55 bb3f279f 2022-02-16 op { "status", STATUS, ctl_noarg, "" },
56 af27e631 2022-02-17 op { "next", NEXT, ctl_noarg, "" },
57 af27e631 2022-02-17 op { "prev", PREV, ctl_noarg, "" },
58 14be015f 2022-02-17 op { "load", LOAD, ctl_load, "[file]", 1 },
59 3baa2617 2022-02-16 op { NULL },
60 3baa2617 2022-02-16 op };
61 3baa2617 2022-02-16 op
62 3baa2617 2022-02-16 op __dead void
63 3baa2617 2022-02-16 op usage(void)
64 3baa2617 2022-02-16 op {
65 3baa2617 2022-02-16 op fprintf(stderr, "usage: %s [-dv] [-s socket]\n", getprogname());
66 3baa2617 2022-02-16 op fprintf(stderr, "%s version %s\n", getprogname(), AMUSED_VERSION);
67 3baa2617 2022-02-16 op exit(1);
68 3baa2617 2022-02-16 op }
69 3baa2617 2022-02-16 op
70 3baa2617 2022-02-16 op static __dead void
71 3baa2617 2022-02-16 op ctl_usage(struct ctl_command *ctl)
72 3baa2617 2022-02-16 op {
73 3baa2617 2022-02-16 op fprintf(stderr, "usage: %s [-v] [-s socket] %s %s\n", getprogname(),
74 3baa2617 2022-02-16 op ctl->name, ctl->usage);
75 3baa2617 2022-02-16 op exit(1);
76 3baa2617 2022-02-16 op }
77 3baa2617 2022-02-16 op
78 3baa2617 2022-02-16 op static int
79 3baa2617 2022-02-16 op parse(int argc, char **argv)
80 3baa2617 2022-02-16 op {
81 3baa2617 2022-02-16 op struct ctl_command *ctl = NULL;
82 3baa2617 2022-02-16 op struct parse_result res;
83 3baa2617 2022-02-16 op int i, status;
84 3baa2617 2022-02-16 op
85 3baa2617 2022-02-16 op memset(&res, 0, sizeof(res));
86 3baa2617 2022-02-16 op
87 3baa2617 2022-02-16 op for (i = 0; ctl_commands[i].name != NULL; ++i) {
88 3baa2617 2022-02-16 op if (strncmp(ctl_commands[i].name, argv[0], strlen(argv[0]))
89 3baa2617 2022-02-16 op == 0) {
90 3baa2617 2022-02-16 op if (ctl != NULL) {
91 3baa2617 2022-02-16 op fprintf(stderr,
92 3baa2617 2022-02-16 op "ambiguous argument: %s\n", argv[0]);
93 3baa2617 2022-02-16 op usage();
94 3baa2617 2022-02-16 op }
95 3baa2617 2022-02-16 op ctl = &ctl_commands[i];
96 3baa2617 2022-02-16 op }
97 3baa2617 2022-02-16 op }
98 3baa2617 2022-02-16 op
99 3baa2617 2022-02-16 op if (ctl == NULL) {
100 3baa2617 2022-02-16 op fprintf(stderr, "unknown argument: %s\n", argv[0]);
101 3baa2617 2022-02-16 op usage();
102 3baa2617 2022-02-16 op }
103 3baa2617 2022-02-16 op
104 3baa2617 2022-02-16 op res.action = ctl->action;
105 3baa2617 2022-02-16 op res.ctl = ctl;
106 3baa2617 2022-02-16 op
107 3baa2617 2022-02-16 op if (!ctl->has_pledge) {
108 3baa2617 2022-02-16 op /* pledge(2) default if command doesn't have its own */
109 3baa2617 2022-02-16 op if (pledge("stdio", NULL) == -1)
110 3baa2617 2022-02-16 op fatal("pledge");
111 3baa2617 2022-02-16 op }
112 3baa2617 2022-02-16 op
113 3baa2617 2022-02-16 op status = ctl->main(&res, argc, argv);
114 3baa2617 2022-02-16 op close(ibuf->fd);
115 3baa2617 2022-02-16 op free(ibuf);
116 3baa2617 2022-02-16 op return status;
117 3baa2617 2022-02-16 op }
118 3baa2617 2022-02-16 op
119 3baa2617 2022-02-16 op static int
120 3baa2617 2022-02-16 op enqueue_tracks(char **files)
121 3baa2617 2022-02-16 op {
122 3baa2617 2022-02-16 op char res[PATH_MAX];
123 3baa2617 2022-02-16 op int enq = 0;
124 3baa2617 2022-02-16 op
125 3baa2617 2022-02-16 op for (; *files != NULL; ++files) {
126 3baa2617 2022-02-16 op memset(&res, 0, sizeof(res));
127 3baa2617 2022-02-16 op if (realpath(*files, res) == NULL) {
128 3baa2617 2022-02-16 op log_warn("realpath %s", *files);
129 3baa2617 2022-02-16 op continue;
130 3baa2617 2022-02-16 op }
131 3baa2617 2022-02-16 op
132 3baa2617 2022-02-16 op imsg_compose(ibuf, IMSG_CTL_ADD, 0, 0, -1,
133 3baa2617 2022-02-16 op res, sizeof(res));
134 3baa2617 2022-02-16 op enq++;
135 3baa2617 2022-02-16 op }
136 3baa2617 2022-02-16 op
137 3baa2617 2022-02-16 op return enq == 0;
138 3baa2617 2022-02-16 op }
139 3baa2617 2022-02-16 op
140 8ff9231f 2022-02-16 op static void
141 8ff9231f 2022-02-16 op print_error_message(const char *prfx, struct imsg *imsg)
142 8ff9231f 2022-02-16 op {
143 8ff9231f 2022-02-16 op size_t datalen;
144 8ff9231f 2022-02-16 op char *msg;
145 8ff9231f 2022-02-16 op
146 8ff9231f 2022-02-16 op datalen = IMSG_DATA_SIZE(*imsg);
147 8ff9231f 2022-02-16 op if ((msg = calloc(1, datalen)) == NULL)
148 8ff9231f 2022-02-16 op fatal("calloc %zu", datalen);
149 8ff9231f 2022-02-16 op memcpy(msg, imsg->data, datalen);
150 8ff9231f 2022-02-16 op if (datalen == 0 || msg[datalen-1] != '\0')
151 8ff9231f 2022-02-16 op fatalx("malformed error message");
152 8ff9231f 2022-02-16 op
153 8ff9231f 2022-02-16 op log_warnx("%s: %s", prfx, msg);
154 8ff9231f 2022-02-16 op free(msg);
155 8ff9231f 2022-02-16 op }
156 8ff9231f 2022-02-16 op
157 3baa2617 2022-02-16 op static int
158 8ff9231f 2022-02-16 op show_add(struct imsg *imsg, int *ret, char ***files)
159 8ff9231f 2022-02-16 op {
160 8ff9231f 2022-02-16 op if (**files == NULL) {
161 8ff9231f 2022-02-16 op log_warnx("received more replies than file sent");
162 8ff9231f 2022-02-16 op *ret = 1;
163 8ff9231f 2022-02-16 op return 1;
164 8ff9231f 2022-02-16 op }
165 8ff9231f 2022-02-16 op
166 8ff9231f 2022-02-16 op if (imsg->hdr.type == IMSG_CTL_ERR)
167 8ff9231f 2022-02-16 op print_error_message(**files, imsg);
168 8ff9231f 2022-02-16 op else if (imsg->hdr.type == IMSG_CTL_ADD)
169 8ff9231f 2022-02-16 op log_debug("enqueued %s", **files);
170 8ff9231f 2022-02-16 op else
171 8ff9231f 2022-02-16 op fatalx("got invalid message %d", imsg->hdr.type);
172 8ff9231f 2022-02-16 op
173 8ff9231f 2022-02-16 op (*files)++;
174 8ff9231f 2022-02-16 op return (**files) == NULL;
175 8ff9231f 2022-02-16 op }
176 8ff9231f 2022-02-16 op
177 8ff9231f 2022-02-16 op static int
178 3baa2617 2022-02-16 op show_complete(struct imsg *imsg, int *ret)
179 3baa2617 2022-02-16 op {
180 63dd8e70 2022-02-17 op struct player_status s;
181 3baa2617 2022-02-16 op size_t datalen;
182 3baa2617 2022-02-16 op
183 8ff9231f 2022-02-16 op if (imsg->hdr.type == IMSG_CTL_ERR) {
184 8ff9231f 2022-02-16 op print_error_message("show failed", imsg);
185 8ff9231f 2022-02-16 op *ret = 1;
186 8ff9231f 2022-02-16 op return 1;
187 8ff9231f 2022-02-16 op }
188 8ff9231f 2022-02-16 op
189 3baa2617 2022-02-16 op datalen = IMSG_DATA_SIZE(*imsg);
190 3baa2617 2022-02-16 op if (datalen == 0)
191 3baa2617 2022-02-16 op return 1;
192 3baa2617 2022-02-16 op
193 63dd8e70 2022-02-17 op if (datalen != sizeof(s))
194 3baa2617 2022-02-16 op fatalx("%s: data size mismatch", __func__);
195 63dd8e70 2022-02-17 op memcpy(&s, imsg->data, sizeof(s));
196 63dd8e70 2022-02-17 op if (s.path[sizeof(s.path)-1] != '\0')
197 3baa2617 2022-02-16 op fatalx("%s: data corrupted?", __func__);
198 3baa2617 2022-02-16 op
199 63dd8e70 2022-02-17 op printf("%s %s\n", s.status == STATE_PLAYING ? ">" : " ", s.path);
200 3baa2617 2022-02-16 op return 0;
201 bb3f279f 2022-02-16 op }
202 bb3f279f 2022-02-16 op
203 bb3f279f 2022-02-16 op static int
204 bb3f279f 2022-02-16 op show_status(struct imsg *imsg, int *ret)
205 bb3f279f 2022-02-16 op {
206 bb3f279f 2022-02-16 op struct player_status s;
207 bb3f279f 2022-02-16 op size_t datalen;
208 bb3f279f 2022-02-16 op
209 bb3f279f 2022-02-16 op if (imsg->hdr.type == IMSG_CTL_ERR) {
210 bb3f279f 2022-02-16 op print_error_message("show failed", imsg);
211 bb3f279f 2022-02-16 op *ret = 1;
212 bb3f279f 2022-02-16 op return 1;
213 bb3f279f 2022-02-16 op }
214 bb3f279f 2022-02-16 op
215 bb3f279f 2022-02-16 op if (imsg->hdr.type != IMSG_CTL_STATUS)
216 bb3f279f 2022-02-16 op fatalx("%s: got wrong reply", __func__);
217 bb3f279f 2022-02-16 op
218 bb3f279f 2022-02-16 op datalen = IMSG_DATA_SIZE(*imsg);
219 bb3f279f 2022-02-16 op if (datalen != sizeof(s))
220 bb3f279f 2022-02-16 op fatalx("%s: data size mismatch", __func__);
221 bb3f279f 2022-02-16 op memcpy(&s, imsg->data, sizeof(s));
222 bb3f279f 2022-02-16 op if (s.path[sizeof(s.path)-1] != '\0')
223 bb3f279f 2022-02-16 op fatalx("%s: data corrupted?", __func__);
224 bb3f279f 2022-02-16 op
225 bb3f279f 2022-02-16 op switch (s.status) {
226 bb3f279f 2022-02-16 op case STATE_STOPPED:
227 bb3f279f 2022-02-16 op printf("stopped ");
228 bb3f279f 2022-02-16 op break;
229 bb3f279f 2022-02-16 op case STATE_PLAYING:
230 bb3f279f 2022-02-16 op printf("playing ");
231 bb3f279f 2022-02-16 op break;
232 bb3f279f 2022-02-16 op case STATE_PAUSED:
233 bb3f279f 2022-02-16 op printf("paused ");
234 bb3f279f 2022-02-16 op break;
235 bb3f279f 2022-02-16 op default:
236 bb3f279f 2022-02-16 op printf("unknown ");
237 bb3f279f 2022-02-16 op break;
238 bb3f279f 2022-02-16 op }
239 bb3f279f 2022-02-16 op
240 bb3f279f 2022-02-16 op printf("%s\n", s.path);
241 bb3f279f 2022-02-16 op return 1;
242 7a427ecd 2022-02-17 op }
243 7a427ecd 2022-02-17 op
244 7a427ecd 2022-02-17 op static int
245 7a427ecd 2022-02-17 op show_load(struct parse_result *res, struct imsg *imsg, int *ret)
246 7a427ecd 2022-02-17 op {
247 7a427ecd 2022-02-17 op const char *file;
248 7a427ecd 2022-02-17 op char *line = NULL;
249 7a427ecd 2022-02-17 op char path[PATH_MAX];
250 7a427ecd 2022-02-17 op size_t linesize = 0;
251 7a427ecd 2022-02-17 op ssize_t linelen;
252 7a427ecd 2022-02-17 op int any = 0;
253 7a427ecd 2022-02-17 op
254 7a427ecd 2022-02-17 op if (imsg->hdr.type == IMSG_CTL_ERR) {
255 7a427ecd 2022-02-17 op print_error_message("load failed", imsg);
256 7a427ecd 2022-02-17 op *ret = 1;
257 7a427ecd 2022-02-17 op return 1;
258 7a427ecd 2022-02-17 op }
259 7a427ecd 2022-02-17 op
260 7a427ecd 2022-02-17 op if (imsg->hdr.type == IMSG_CTL_ADD)
261 7a427ecd 2022-02-17 op return 0;
262 7a427ecd 2022-02-17 op
263 7a427ecd 2022-02-17 op if (imsg->hdr.type == IMSG_CTL_COMMIT)
264 7a427ecd 2022-02-17 op return 1;
265 7a427ecd 2022-02-17 op
266 7a427ecd 2022-02-17 op if (imsg->hdr.type != IMSG_CTL_BEGIN)
267 7a427ecd 2022-02-17 op fatalx("got unexpected message %d", imsg->hdr.type);
268 7a427ecd 2022-02-17 op
269 7a427ecd 2022-02-17 op while ((linelen = getline(&line, &linesize, res->file)) != -1) {
270 7a427ecd 2022-02-17 op if (linelen == 0)
271 7a427ecd 2022-02-17 op continue;
272 7a427ecd 2022-02-17 op line[linelen-1] = '\0';
273 7a427ecd 2022-02-17 op file = line;
274 7a427ecd 2022-02-17 op if (file[0] == '>' && file[1] == ' ')
275 7a427ecd 2022-02-17 op file += 2;
276 7a427ecd 2022-02-17 op if (file[0] == ' ' && file[1] == ' ')
277 7a427ecd 2022-02-17 op file += 2;
278 7a427ecd 2022-02-17 op
279 7a427ecd 2022-02-17 op memset(&path, 0, sizeof(path));
280 7a427ecd 2022-02-17 op if (realpath(file, path) == NULL) {
281 7a427ecd 2022-02-17 op log_warn("realpath %s", file);
282 7a427ecd 2022-02-17 op continue;
283 7a427ecd 2022-02-17 op }
284 7a427ecd 2022-02-17 op
285 7a427ecd 2022-02-17 op any++;
286 7a427ecd 2022-02-17 op imsg_compose(ibuf, IMSG_CTL_ADD, 0, 0, -1,
287 7a427ecd 2022-02-17 op path, sizeof(path));
288 7a427ecd 2022-02-17 op }
289 7a427ecd 2022-02-17 op
290 7a427ecd 2022-02-17 op free(line);
291 7a427ecd 2022-02-17 op if (ferror(res->file))
292 7a427ecd 2022-02-17 op fatal("getline");
293 7a427ecd 2022-02-17 op fclose(res->file);
294 7a427ecd 2022-02-17 op res->file = NULL;
295 7a427ecd 2022-02-17 op
296 7a427ecd 2022-02-17 op if (!any) {
297 7a427ecd 2022-02-17 op *ret = 1;
298 7a427ecd 2022-02-17 op return 1;
299 7a427ecd 2022-02-17 op }
300 7a427ecd 2022-02-17 op
301 7a427ecd 2022-02-17 op imsg_compose(ibuf, IMSG_CTL_COMMIT, 0, 0, -1,
302 7a427ecd 2022-02-17 op NULL, 0);
303 7a427ecd 2022-02-17 op imsg_flush(ibuf);
304 7a427ecd 2022-02-17 op return 0;
305 3baa2617 2022-02-16 op }
306 3baa2617 2022-02-16 op
307 3baa2617 2022-02-16 op static int
308 3baa2617 2022-02-16 op ctlaction(struct parse_result *res)
309 3baa2617 2022-02-16 op {
310 3baa2617 2022-02-16 op struct imsg imsg;
311 3baa2617 2022-02-16 op ssize_t n;
312 3baa2617 2022-02-16 op int ret = 0, done = 1;
313 8ff9231f 2022-02-16 op char **files;
314 3baa2617 2022-02-16 op
315 3baa2617 2022-02-16 op switch (res->action) {
316 3baa2617 2022-02-16 op case PLAY:
317 3baa2617 2022-02-16 op imsg_compose(ibuf, IMSG_CTL_PLAY, 0, 0, -1, NULL, 0);
318 3baa2617 2022-02-16 op break;
319 3baa2617 2022-02-16 op case PAUSE:
320 3baa2617 2022-02-16 op imsg_compose(ibuf, IMSG_CTL_PAUSE, 0, 0, -1, NULL, 0);
321 3baa2617 2022-02-16 op break;
322 3baa2617 2022-02-16 op case TOGGLE:
323 3baa2617 2022-02-16 op imsg_compose(ibuf, IMSG_CTL_TOGGLE_PLAY, 0, 0, -1, NULL, 0);
324 3baa2617 2022-02-16 op break;
325 3baa2617 2022-02-16 op case STOP:
326 3baa2617 2022-02-16 op imsg_compose(ibuf, IMSG_CTL_STOP, 0, 0, -1, NULL, 0);
327 3baa2617 2022-02-16 op break;
328 3baa2617 2022-02-16 op case RESTART:
329 3baa2617 2022-02-16 op imsg_compose(ibuf, IMSG_CTL_RESTART, 0, 0, -1, NULL, 0);
330 3baa2617 2022-02-16 op break;
331 3baa2617 2022-02-16 op case ADD:
332 8ff9231f 2022-02-16 op done = 0;
333 8ff9231f 2022-02-16 op files = res->files;
334 3baa2617 2022-02-16 op ret = enqueue_tracks(res->files);
335 3baa2617 2022-02-16 op break;
336 3baa2617 2022-02-16 op case FLUSH:
337 3baa2617 2022-02-16 op imsg_compose(ibuf, IMSG_CTL_FLUSH, 0, 0, -1, NULL, 0);
338 3baa2617 2022-02-16 op break;
339 3baa2617 2022-02-16 op case SHOW:
340 3baa2617 2022-02-16 op done = 0;
341 3baa2617 2022-02-16 op imsg_compose(ibuf, IMSG_CTL_SHOW, 0, 0, -1, NULL, 0);
342 3baa2617 2022-02-16 op break;
343 bb3f279f 2022-02-16 op case STATUS:
344 bb3f279f 2022-02-16 op done = 0;
345 bb3f279f 2022-02-16 op imsg_compose(ibuf, IMSG_CTL_STATUS, 0, 0, -1, NULL, 0);
346 af27e631 2022-02-17 op break;
347 af27e631 2022-02-17 op case NEXT:
348 af27e631 2022-02-17 op imsg_compose(ibuf, IMSG_CTL_NEXT, 0, 0, -1, NULL, 0);
349 bb3f279f 2022-02-16 op break;
350 af27e631 2022-02-17 op case PREV:
351 af27e631 2022-02-17 op imsg_compose(ibuf, IMSG_CTL_PREV, 0, 0, -1, NULL, 0);
352 af27e631 2022-02-17 op break;
353 14be015f 2022-02-17 op case LOAD:
354 7a427ecd 2022-02-17 op done = 0;
355 7a427ecd 2022-02-17 op imsg_compose(ibuf, IMSG_CTL_BEGIN, 0, 0, -1, NULL, 0);
356 7a427ecd 2022-02-17 op break;
357 3baa2617 2022-02-16 op case NONE:
358 3baa2617 2022-02-16 op /* action not expected */
359 3baa2617 2022-02-16 op fatalx("invalid action %u", res->action);
360 3baa2617 2022-02-16 op break;
361 3baa2617 2022-02-16 op }
362 3baa2617 2022-02-16 op
363 3baa2617 2022-02-16 op if (ret != 0)
364 3baa2617 2022-02-16 op goto end;
365 3baa2617 2022-02-16 op
366 3baa2617 2022-02-16 op imsg_flush(ibuf);
367 3baa2617 2022-02-16 op
368 3baa2617 2022-02-16 op while (!done) {
369 3baa2617 2022-02-16 op if ((n = imsg_read(ibuf)) == -1 && errno != EAGAIN)
370 3baa2617 2022-02-16 op fatalx("imsg_read error");
371 3baa2617 2022-02-16 op if (n == 0)
372 3baa2617 2022-02-16 op fatalx("pipe closed");
373 3baa2617 2022-02-16 op
374 3baa2617 2022-02-16 op while (!done) {
375 3baa2617 2022-02-16 op if ((n = imsg_get(ibuf, &imsg)) == -1)
376 3baa2617 2022-02-16 op fatalx("imsg_get error");
377 3baa2617 2022-02-16 op if (n == 0)
378 3baa2617 2022-02-16 op break;
379 3baa2617 2022-02-16 op
380 3baa2617 2022-02-16 op switch (res->action) {
381 8ff9231f 2022-02-16 op case ADD:
382 8ff9231f 2022-02-16 op done = show_add(&imsg, &ret, &files);
383 8ff9231f 2022-02-16 op break;
384 3baa2617 2022-02-16 op case SHOW:
385 3baa2617 2022-02-16 op done = show_complete(&imsg, &ret);
386 3baa2617 2022-02-16 op break;
387 bb3f279f 2022-02-16 op case STATUS:
388 bb3f279f 2022-02-16 op done = show_status(&imsg, &ret);
389 bb3f279f 2022-02-16 op break;
390 7a427ecd 2022-02-17 op case LOAD:
391 7a427ecd 2022-02-17 op done = show_load(res, &imsg, &ret);
392 7a427ecd 2022-02-17 op break;
393 3baa2617 2022-02-16 op default:
394 3baa2617 2022-02-16 op done = 1;
395 3baa2617 2022-02-16 op break;
396 3baa2617 2022-02-16 op }
397 3baa2617 2022-02-16 op
398 3baa2617 2022-02-16 op imsg_free(&imsg);
399 3baa2617 2022-02-16 op }
400 3baa2617 2022-02-16 op }
401 3baa2617 2022-02-16 op
402 3baa2617 2022-02-16 op end:
403 3baa2617 2022-02-16 op return ret;
404 3baa2617 2022-02-16 op }
405 3baa2617 2022-02-16 op
406 3baa2617 2022-02-16 op int
407 3baa2617 2022-02-16 op ctl_noarg(struct parse_result *res, int argc, char **argv)
408 3baa2617 2022-02-16 op {
409 3baa2617 2022-02-16 op if (argc != 1)
410 3baa2617 2022-02-16 op ctl_usage(res->ctl);
411 3baa2617 2022-02-16 op return ctlaction(res);
412 3baa2617 2022-02-16 op }
413 3baa2617 2022-02-16 op
414 3baa2617 2022-02-16 op int
415 3baa2617 2022-02-16 op ctl_add(struct parse_result *res, int argc, char **argv)
416 3baa2617 2022-02-16 op {
417 3baa2617 2022-02-16 op if (argc < 2)
418 3baa2617 2022-02-16 op ctl_usage(res->ctl);
419 3baa2617 2022-02-16 op res->files = argv+1;
420 14be015f 2022-02-17 op
421 14be015f 2022-02-17 op if (pledge("stdio rpath", NULL) == -1)
422 14be015f 2022-02-17 op fatal("pledge");
423 14be015f 2022-02-17 op
424 3baa2617 2022-02-16 op return ctlaction(res);
425 3baa2617 2022-02-16 op }
426 14be015f 2022-02-17 op
427 14be015f 2022-02-17 op int
428 14be015f 2022-02-17 op ctl_load(struct parse_result *res, int argc, char **argv)
429 14be015f 2022-02-17 op {
430 14be015f 2022-02-17 op if (argc < 2)
431 14be015f 2022-02-17 op res->file = stdin;
432 14be015f 2022-02-17 op else if (argc == 2) {
433 14be015f 2022-02-17 op if ((res->file = fopen(argv[1], "r")) == NULL)
434 14be015f 2022-02-17 op fatal("open %s", argv[1]);
435 14be015f 2022-02-17 op } else
436 14be015f 2022-02-17 op ctl_usage(res->ctl);
437 14be015f 2022-02-17 op
438 14be015f 2022-02-17 op if (pledge("stdio rpath", NULL) == -1)
439 14be015f 2022-02-17 op fatal("pledge");
440 14be015f 2022-02-17 op
441 7a427ecd 2022-02-17 op return ctlaction(res);
442 14be015f 2022-02-17 op }
443 14be015f 2022-02-17 op
444 fea541a8 2022-02-16 op static int
445 fea541a8 2022-02-16 op sockconn(void)
446 3baa2617 2022-02-16 op {
447 fea541a8 2022-02-16 op struct sockaddr_un sun;
448 fea541a8 2022-02-16 op int sock, saved_errno;
449 3baa2617 2022-02-16 op
450 fea541a8 2022-02-16 op if ((sock = socket(AF_UNIX, SOCK_STREAM, 0)) == -1)
451 3baa2617 2022-02-16 op fatal("socket");
452 3baa2617 2022-02-16 op
453 3baa2617 2022-02-16 op memset(&sun, 0, sizeof(sun));
454 3baa2617 2022-02-16 op sun.sun_family = AF_UNIX;
455 3baa2617 2022-02-16 op strlcpy(sun.sun_path, csock, sizeof(sun.sun_path));
456 fea541a8 2022-02-16 op if (connect(sock, (struct sockaddr *)&sun, sizeof(sun)) == -1) {
457 fea541a8 2022-02-16 op saved_errno = errno;
458 fea541a8 2022-02-16 op close(sock);
459 fea541a8 2022-02-16 op errno = saved_errno;
460 fea541a8 2022-02-16 op return -1;
461 fea541a8 2022-02-16 op }
462 3baa2617 2022-02-16 op
463 fea541a8 2022-02-16 op return sock;
464 fea541a8 2022-02-16 op }
465 fea541a8 2022-02-16 op
466 fea541a8 2022-02-16 op __dead void
467 fea541a8 2022-02-16 op ctl(int argc, char **argv)
468 fea541a8 2022-02-16 op {
469 fea541a8 2022-02-16 op int ctl_sock, i = 0;
470 3baa2617 2022-02-16 op
471 fea541a8 2022-02-16 op log_init(1, LOG_DAEMON);
472 fea541a8 2022-02-16 op log_setverbose(verbose);
473 fea541a8 2022-02-16 op
474 fea541a8 2022-02-16 op do {
475 fea541a8 2022-02-16 op struct timespec ts = { 0, 50000000 }; /* 0.05 seconds */
476 fea541a8 2022-02-16 op
477 fea541a8 2022-02-16 op if ((ctl_sock = sockconn()) != -1)
478 fea541a8 2022-02-16 op break;
479 fea541a8 2022-02-16 op if (errno != ENOENT && errno != ECONNREFUSED)
480 fea541a8 2022-02-16 op fatal("connect %s", csock);
481 fea541a8 2022-02-16 op
482 fea541a8 2022-02-16 op if (i == 0)
483 fea541a8 2022-02-16 op spawn_daemon();
484 fea541a8 2022-02-16 op
485 fea541a8 2022-02-16 op nanosleep(&ts, NULL);
486 fea541a8 2022-02-16 op } while (++i < 20);
487 fea541a8 2022-02-16 op
488 fea541a8 2022-02-16 op if (ctl_sock == -1)
489 fea541a8 2022-02-16 op fatalx("failed to connect to the daemon");
490 fea541a8 2022-02-16 op
491 3baa2617 2022-02-16 op ibuf = xmalloc(sizeof(*ibuf));
492 3baa2617 2022-02-16 op imsg_init(ibuf, ctl_sock);
493 3baa2617 2022-02-16 op
494 3baa2617 2022-02-16 op optreset = 1;
495 3baa2617 2022-02-16 op optind = 1;
496 3baa2617 2022-02-16 op
497 3baa2617 2022-02-16 op exit(parse(argc, argv));
498 3baa2617 2022-02-16 op }