Blame


1 3baa2617 2022-02-16 op /*
2 3baa2617 2022-02-16 op * Copyright (c) 2022 Omar Polo <op@openbsd.org>
3 96233476 2022-06-09 op * Copyright (c) 2015 Theo de Raadt <deraadt@openbsd.org>
4 3baa2617 2022-02-16 op *
5 3baa2617 2022-02-16 op * Permission to use, copy, modify, and distribute this software for any
6 3baa2617 2022-02-16 op * purpose with or without fee is hereby granted, provided that the above
7 3baa2617 2022-02-16 op * copyright notice and this permission notice appear in all copies.
8 3baa2617 2022-02-16 op *
9 3baa2617 2022-02-16 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 3baa2617 2022-02-16 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 3baa2617 2022-02-16 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 3baa2617 2022-02-16 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 3baa2617 2022-02-16 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 3baa2617 2022-02-16 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 3baa2617 2022-02-16 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 3baa2617 2022-02-16 op */
17 3baa2617 2022-02-16 op
18 f36fd90a 2022-07-09 op #include "config.h"
19 f36fd90a 2022-07-09 op
20 3baa2617 2022-02-16 op #include <sys/socket.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 1d673950 2022-03-03 op #include <fcntl.h>
25 3baa2617 2022-02-16 op #include <limits.h>
26 3baa2617 2022-02-16 op #include <stdio.h>
27 3baa2617 2022-02-16 op #include <stdlib.h>
28 3baa2617 2022-02-16 op #include <stdint.h>
29 3baa2617 2022-02-16 op #include <string.h>
30 3baa2617 2022-02-16 op #include <syslog.h>
31 3baa2617 2022-02-16 op #include <unistd.h>
32 3baa2617 2022-02-16 op
33 3baa2617 2022-02-16 op #include "amused.h"
34 3baa2617 2022-02-16 op #include "log.h"
35 bb3f279f 2022-02-16 op #include "playlist.h"
36 3baa2617 2022-02-16 op #include "xmalloc.h"
37 3baa2617 2022-02-16 op
38 96233476 2022-06-09 op static struct imsgbuf *ibuf;
39 96233476 2022-06-09 op char cwd[PATH_MAX];
40 3baa2617 2022-02-16 op
41 2ddcfa40 2022-07-08 op static int ctl_noarg(struct parse_result *, int, char **);
42 2ddcfa40 2022-07-08 op static int ctl_add(struct parse_result *, int, char **);
43 2ddcfa40 2022-07-08 op static int ctl_show(struct parse_result *, int, char **);
44 2ddcfa40 2022-07-08 op static int ctl_load(struct parse_result *, int, char **);
45 2ddcfa40 2022-07-08 op static int ctl_jump(struct parse_result *, int, char **);
46 2ddcfa40 2022-07-08 op static int ctl_repeat(struct parse_result *, int, char **);
47 2ddcfa40 2022-07-08 op static int ctl_monitor(struct parse_result *, int, char **);
48 e5d4e9f7 2022-07-09 op static int ctl_seek(struct parse_result *, int, char **);
49 68e4f29e 2022-07-10 op static int ctl_status(struct parse_result *, int, char **);
50 3baa2617 2022-02-16 op
51 3baa2617 2022-02-16 op struct ctl_command ctl_commands[] = {
52 d488e5a5 2022-07-08 op { "add", ADD, ctl_add, "files...", 0 },
53 d488e5a5 2022-07-08 op { "flush", FLUSH, ctl_noarg, "", 0 },
54 d488e5a5 2022-07-08 op { "jump", JUMP, ctl_jump, "pattern", 0 },
55 6a128dce 2022-07-08 op { "load", LOAD, ctl_load, "[file]", 1 },
56 d488e5a5 2022-07-08 op { "monitor", MONITOR, ctl_monitor, "[events]", 0 },
57 6a128dce 2022-07-08 op { "next", NEXT, ctl_noarg, "", 0 },
58 6a128dce 2022-07-08 op { "pause", PAUSE, ctl_noarg, "", 0 },
59 6a128dce 2022-07-08 op { "play", PLAY, ctl_noarg, "", 0 },
60 6a128dce 2022-07-08 op { "prev", PREV, ctl_noarg, "", 0 },
61 6a128dce 2022-07-08 op { "repeat", REPEAT, ctl_repeat, "one|all on|off", 0 },
62 6a128dce 2022-07-08 op { "restart", RESTART, ctl_noarg, "", 0 },
63 071167ed 2022-07-09 op { "seek", SEEK, ctl_seek, "[+-]time[%]", 0 },
64 6a128dce 2022-07-08 op { "show", SHOW, ctl_show, "[-p]", 0 },
65 68e4f29e 2022-07-10 op { "status", STATUS, ctl_status, "[-f fmt]", 0 },
66 6a128dce 2022-07-08 op { "stop", STOP, ctl_noarg, "", 0 },
67 6a128dce 2022-07-08 op { "toggle", TOGGLE, ctl_noarg, "", 0 },
68 d488e5a5 2022-07-08 op { NULL, 0, NULL, NULL, 0 },
69 3baa2617 2022-02-16 op };
70 3baa2617 2022-02-16 op
71 3baa2617 2022-02-16 op __dead void
72 3baa2617 2022-02-16 op usage(void)
73 3baa2617 2022-02-16 op {
74 3baa2617 2022-02-16 op fprintf(stderr, "usage: %s [-dv] [-s socket]\n", getprogname());
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 __dead void
79 3baa2617 2022-02-16 op ctl_usage(struct ctl_command *ctl)
80 3baa2617 2022-02-16 op {
81 3baa2617 2022-02-16 op fprintf(stderr, "usage: %s [-v] [-s socket] %s %s\n", getprogname(),
82 3baa2617 2022-02-16 op ctl->name, ctl->usage);
83 3baa2617 2022-02-16 op exit(1);
84 3baa2617 2022-02-16 op }
85 3baa2617 2022-02-16 op
86 96233476 2022-06-09 op /* based on canonpath from kern_pledge.c */
87 3baa2617 2022-02-16 op static int
88 96233476 2022-06-09 op canonpath(const char *input, char *buf, size_t bufsize)
89 96233476 2022-06-09 op {
90 96233476 2022-06-09 op const char *p;
91 96233476 2022-06-09 op char *q, path[PATH_MAX];
92 96233476 2022-06-09 op
93 96233476 2022-06-09 op if (input[0] != '/') {
94 96233476 2022-06-09 op if (snprintf(path, sizeof(path), "%s/%s", cwd, input)
95 96233476 2022-06-09 op >= sizeof(path)) {
96 96233476 2022-06-09 op errno = ENAMETOOLONG;
97 96233476 2022-06-09 op return -1;
98 96233476 2022-06-09 op }
99 96233476 2022-06-09 op input = path;
100 96233476 2022-06-09 op }
101 96233476 2022-06-09 op
102 96233476 2022-06-09 op p = input;
103 96233476 2022-06-09 op q = buf;
104 96233476 2022-06-09 op while (*p && (q - buf < bufsize)) {
105 96233476 2022-06-09 op if (p[0] == '/' && (p[1] == '/' || p[1] == '\0')) {
106 96233476 2022-06-09 op p += 1;
107 96233476 2022-06-09 op
108 96233476 2022-06-09 op } else if (p[0] == '/' && p[1] == '.' &&
109 96233476 2022-06-09 op (p[2] == '/' || p[2] == '\0')) {
110 96233476 2022-06-09 op p += 2;
111 96233476 2022-06-09 op
112 96233476 2022-06-09 op } else if (p[0] == '/' && p[1] == '.' && p[2] == '.' &&
113 96233476 2022-06-09 op (p[3] == '/' || p[3] == '\0')) {
114 96233476 2022-06-09 op p += 3;
115 96233476 2022-06-09 op if (q != buf) /* "/../" at start of buf */
116 96233476 2022-06-09 op while (*--q != '/')
117 96233476 2022-06-09 op continue;
118 96233476 2022-06-09 op
119 96233476 2022-06-09 op } else {
120 96233476 2022-06-09 op *q++ = *p++;
121 96233476 2022-06-09 op }
122 96233476 2022-06-09 op }
123 96233476 2022-06-09 op if ((*p == '\0') && (q - buf < bufsize)) {
124 96233476 2022-06-09 op *q = 0;
125 96233476 2022-06-09 op return 0;
126 96233476 2022-06-09 op } else {
127 96233476 2022-06-09 op errno = ENAMETOOLONG;
128 96233476 2022-06-09 op return -1;
129 96233476 2022-06-09 op }
130 96233476 2022-06-09 op }
131 96233476 2022-06-09 op
132 96233476 2022-06-09 op static int
133 3baa2617 2022-02-16 op parse(int argc, char **argv)
134 3baa2617 2022-02-16 op {
135 3baa2617 2022-02-16 op struct ctl_command *ctl = NULL;
136 3baa2617 2022-02-16 op struct parse_result res;
137 1d673950 2022-03-03 op const char *argv0;
138 3baa2617 2022-02-16 op int i, status;
139 3baa2617 2022-02-16 op
140 3baa2617 2022-02-16 op memset(&res, 0, sizeof(res));
141 3baa2617 2022-02-16 op
142 1d673950 2022-03-03 op if ((argv0 = argv[0]) == NULL)
143 1d673950 2022-03-03 op argv0 = "status";
144 1d673950 2022-03-03 op
145 3baa2617 2022-02-16 op for (i = 0; ctl_commands[i].name != NULL; ++i) {
146 1d673950 2022-03-03 op if (strncmp(ctl_commands[i].name, argv0, strlen(argv0))
147 3baa2617 2022-02-16 op == 0) {
148 3baa2617 2022-02-16 op if (ctl != NULL) {
149 3baa2617 2022-02-16 op fprintf(stderr,
150 1d673950 2022-03-03 op "ambiguous argument: %s\n", argv0);
151 3baa2617 2022-02-16 op usage();
152 3baa2617 2022-02-16 op }
153 3baa2617 2022-02-16 op ctl = &ctl_commands[i];
154 3baa2617 2022-02-16 op }
155 3baa2617 2022-02-16 op }
156 3baa2617 2022-02-16 op
157 3baa2617 2022-02-16 op if (ctl == NULL) {
158 3baa2617 2022-02-16 op fprintf(stderr, "unknown argument: %s\n", argv[0]);
159 3baa2617 2022-02-16 op usage();
160 3baa2617 2022-02-16 op }
161 3baa2617 2022-02-16 op
162 3baa2617 2022-02-16 op res.action = ctl->action;
163 3baa2617 2022-02-16 op res.ctl = ctl;
164 3baa2617 2022-02-16 op
165 3baa2617 2022-02-16 op if (!ctl->has_pledge) {
166 3baa2617 2022-02-16 op /* pledge(2) default if command doesn't have its own */
167 3baa2617 2022-02-16 op if (pledge("stdio", NULL) == -1)
168 3baa2617 2022-02-16 op fatal("pledge");
169 3baa2617 2022-02-16 op }
170 3baa2617 2022-02-16 op
171 3baa2617 2022-02-16 op status = ctl->main(&res, argc, argv);
172 3baa2617 2022-02-16 op close(ibuf->fd);
173 3baa2617 2022-02-16 op free(ibuf);
174 3baa2617 2022-02-16 op return status;
175 3baa2617 2022-02-16 op }
176 3baa2617 2022-02-16 op
177 3baa2617 2022-02-16 op static int
178 fad0fb69 2022-05-28 op load_files(struct parse_result *res, int *ret)
179 7a427ecd 2022-02-17 op {
180 ec1fb0c7 2022-02-17 op FILE *f;
181 7a427ecd 2022-02-17 op const char *file;
182 7a427ecd 2022-02-17 op char *line = NULL;
183 96233476 2022-06-09 op char path[PATH_MAX];
184 96233476 2022-06-09 op size_t linesize = 0, i = 0;
185 3af93963 2022-03-02 op ssize_t linelen, curr = -1;
186 7a427ecd 2022-02-17 op
187 ec1fb0c7 2022-02-17 op if (res->file == NULL)
188 ec1fb0c7 2022-02-17 op f = stdin;
189 ec1fb0c7 2022-02-17 op else if ((f = fopen(res->file, "r")) == NULL) {
190 ec1fb0c7 2022-02-17 op log_warn("can't open %s", res->file);
191 ec1fb0c7 2022-02-17 op *ret = 1;
192 ec1fb0c7 2022-02-17 op return 1;
193 ec1fb0c7 2022-02-17 op }
194 c00c1428 2022-03-25 op
195 ec1fb0c7 2022-02-17 op while ((linelen = getline(&line, &linesize, f)) != -1) {
196 7a427ecd 2022-02-17 op if (linelen == 0)
197 7a427ecd 2022-02-17 op continue;
198 7a427ecd 2022-02-17 op line[linelen-1] = '\0';
199 7a427ecd 2022-02-17 op file = line;
200 1dd3b054 2022-03-25 op if (!strncmp(file, "> ", 2)) {
201 7a427ecd 2022-02-17 op file += 2;
202 3af93963 2022-03-02 op curr = i;
203 1dd3b054 2022-03-25 op } else if (!strncmp(file, " ", 2))
204 7a427ecd 2022-02-17 op file += 2;
205 1dd3b054 2022-03-25 op
206 18223c28 2022-06-13 op memset(path, 0, sizeof(path));
207 96233476 2022-06-09 op if (canonpath(file, path, sizeof(path)) == -1) {
208 f1beb69a 2022-06-13 op log_warn("canonpath %s", file);
209 7a427ecd 2022-02-17 op continue;
210 7a427ecd 2022-02-17 op }
211 7a427ecd 2022-02-17 op
212 3af93963 2022-03-02 op i++;
213 7a427ecd 2022-02-17 op imsg_compose(ibuf, IMSG_CTL_ADD, 0, 0, -1,
214 7a427ecd 2022-02-17 op path, sizeof(path));
215 7a427ecd 2022-02-17 op }
216 7a427ecd 2022-02-17 op
217 7a427ecd 2022-02-17 op free(line);
218 ec1fb0c7 2022-02-17 op if (ferror(f))
219 7a427ecd 2022-02-17 op fatal("getline");
220 ec1fb0c7 2022-02-17 op fclose(f);
221 7a427ecd 2022-02-17 op
222 3af93963 2022-03-02 op if (i == 0) {
223 7a427ecd 2022-02-17 op *ret = 1;
224 7a427ecd 2022-02-17 op return 1;
225 7a427ecd 2022-02-17 op }
226 7a427ecd 2022-02-17 op
227 7a427ecd 2022-02-17 op imsg_compose(ibuf, IMSG_CTL_COMMIT, 0, 0, -1,
228 3af93963 2022-03-02 op &curr, sizeof(curr));
229 7a427ecd 2022-02-17 op imsg_flush(ibuf);
230 7a427ecd 2022-02-17 op return 0;
231 3baa2617 2022-02-16 op }
232 3baa2617 2022-02-16 op
233 fad0fb69 2022-05-28 op static const char *
234 fad0fb69 2022-05-28 op imsg_strerror(struct imsg *imsg)
235 6b47a39f 2022-02-21 op {
236 fad0fb69 2022-05-28 op size_t datalen;
237 fad0fb69 2022-05-28 op const char *msg;
238 6b47a39f 2022-02-21 op
239 fad0fb69 2022-05-28 op datalen = IMSG_DATA_SIZE(*imsg);
240 fad0fb69 2022-05-28 op msg = imsg->data;
241 fad0fb69 2022-05-28 op if (datalen == 0 || msg[datalen-1] != '\0')
242 fad0fb69 2022-05-28 op fatalx("malformed error message");
243 6b47a39f 2022-02-21 op
244 fad0fb69 2022-05-28 op return msg;
245 fad0fb69 2022-05-28 op }
246 90122a37 2022-05-14 op
247 fad0fb69 2022-05-28 op static const char *
248 fad0fb69 2022-05-28 op imsg_name(int type)
249 fad0fb69 2022-05-28 op {
250 6b47a39f 2022-02-21 op switch (type) {
251 6b47a39f 2022-02-21 op case IMSG_CTL_PLAY:
252 fad0fb69 2022-05-28 op return "play";
253 6b47a39f 2022-02-21 op case IMSG_CTL_TOGGLE_PLAY:
254 fad0fb69 2022-05-28 op return "toggle";
255 6b47a39f 2022-02-21 op case IMSG_CTL_PAUSE:
256 fad0fb69 2022-05-28 op return "pause";
257 6b47a39f 2022-02-21 op case IMSG_CTL_STOP:
258 fad0fb69 2022-05-28 op return "stop";
259 6b47a39f 2022-02-21 op case IMSG_CTL_FLUSH:
260 fad0fb69 2022-05-28 op return "flush";
261 6b47a39f 2022-02-21 op case IMSG_CTL_NEXT:
262 fad0fb69 2022-05-28 op return "next";
263 6b47a39f 2022-02-21 op case IMSG_CTL_PREV:
264 fad0fb69 2022-05-28 op return "prev";
265 6b47a39f 2022-02-21 op case IMSG_CTL_JUMP:
266 fad0fb69 2022-05-28 op return "jump";
267 6b47a39f 2022-02-21 op case IMSG_CTL_REPEAT:
268 fad0fb69 2022-05-28 op return "repeat";
269 6b47a39f 2022-02-21 op case IMSG_CTL_ADD:
270 fad0fb69 2022-05-28 op return "add";
271 6b47a39f 2022-02-21 op case IMSG_CTL_COMMIT:
272 fad0fb69 2022-05-28 op return "load";
273 6b47a39f 2022-02-21 op default:
274 fad0fb69 2022-05-28 op return "unknown";
275 6b47a39f 2022-02-21 op }
276 bdc8c4e0 2022-07-08 op }
277 bdc8c4e0 2022-07-08 op
278 bdc8c4e0 2022-07-08 op static void
279 68e4f29e 2022-07-10 op print_time(const char *label, int64_t seconds, const char *suffx)
280 bdc8c4e0 2022-07-08 op {
281 bdc8c4e0 2022-07-08 op int hours, minutes;
282 bdc8c4e0 2022-07-08 op
283 bdc8c4e0 2022-07-08 op if (seconds < 0)
284 bdc8c4e0 2022-07-08 op seconds = 0;
285 bdc8c4e0 2022-07-08 op
286 bdc8c4e0 2022-07-08 op hours = seconds / 3600;
287 bdc8c4e0 2022-07-08 op seconds -= hours * 3600;
288 bdc8c4e0 2022-07-08 op
289 bdc8c4e0 2022-07-08 op minutes = seconds / 60;
290 bdc8c4e0 2022-07-08 op seconds -= minutes * 60;
291 bdc8c4e0 2022-07-08 op
292 68e4f29e 2022-07-10 op printf("%s", label);
293 bdc8c4e0 2022-07-08 op if (hours != 0)
294 bdc8c4e0 2022-07-08 op printf("%02d:", hours);
295 68e4f29e 2022-07-10 op printf("%02d:%02lld%s", minutes, (long long)seconds, suffx);
296 68e4f29e 2022-07-10 op }
297 68e4f29e 2022-07-10 op
298 68e4f29e 2022-07-10 op static void
299 68e4f29e 2022-07-10 op print_status(struct player_status *ps, const char *spec)
300 68e4f29e 2022-07-10 op {
301 68e4f29e 2022-07-10 op const char *status;
302 68e4f29e 2022-07-10 op double percent;
303 68e4f29e 2022-07-10 op char *dup, *tmp, *tok;
304 68e4f29e 2022-07-10 op
305 68e4f29e 2022-07-10 op if (ps->status == STATE_STOPPED)
306 68e4f29e 2022-07-10 op status = "stopped";
307 68e4f29e 2022-07-10 op else if (ps->status == STATE_PLAYING)
308 68e4f29e 2022-07-10 op status = "playing";
309 68e4f29e 2022-07-10 op else if (ps->status == STATE_PAUSED)
310 68e4f29e 2022-07-10 op status = "paused";
311 68e4f29e 2022-07-10 op else
312 68e4f29e 2022-07-10 op status = "unknown";
313 68e4f29e 2022-07-10 op
314 68e4f29e 2022-07-10 op percent = 100.0 * (double)ps->position / (double)ps->duration;
315 68e4f29e 2022-07-10 op
316 68e4f29e 2022-07-10 op tmp = dup = xstrdup(spec);
317 68e4f29e 2022-07-10 op while ((tok = strsep(&tmp, ",")) != NULL) {
318 68e4f29e 2022-07-10 op if (*tok == '\0')
319 68e4f29e 2022-07-10 op continue;
320 68e4f29e 2022-07-10 op
321 68e4f29e 2022-07-10 op if (!strcmp(tok, "path")) {
322 68e4f29e 2022-07-10 op puts(ps->path);
323 68e4f29e 2022-07-10 op } else if (!strcmp(tok, "repeat:oneline")) {
324 68e4f29e 2022-07-10 op printf("repeat one:%s ",
325 68e4f29e 2022-07-10 op ps->rp.repeat_one ? "on" : "off");
326 68e4f29e 2022-07-10 op printf("all:%s\n", ps->rp.repeat_all ? "on" : "off");
327 68e4f29e 2022-07-10 op } else if (!strcmp(tok, "repeat")) {
328 68e4f29e 2022-07-10 op printf("repeat one %s\n",
329 68e4f29e 2022-07-10 op ps->rp.repeat_one ? "on" : "off");
330 68e4f29e 2022-07-10 op printf("repeat all %s\n",
331 68e4f29e 2022-07-10 op ps->rp.repeat_all ? "on" : "off");
332 68e4f29e 2022-07-10 op } else if (!strcmp(tok, "status")) {
333 68e4f29e 2022-07-10 op printf("%s %s\n", status, ps->path);
334 68e4f29e 2022-07-10 op } else if (!strcmp(tok, "time:oneline")) {
335 68e4f29e 2022-07-10 op print_time("time ", ps->position, " / ");
336 68e4f29e 2022-07-10 op print_time("", ps->duration, "\n");
337 68e4f29e 2022-07-10 op } else if (!strcmp(tok, "time:percentage")) {
338 68e4f29e 2022-07-10 op printf("position %.2f%%\n", percent);
339 68e4f29e 2022-07-10 op } else if (!strcmp(tok, "time:raw")) {
340 68e4f29e 2022-07-10 op printf("position %lld\n", (long long)ps->position);
341 68e4f29e 2022-07-10 op printf("duration %lld\n", (long long)ps->duration);
342 68e4f29e 2022-07-10 op } else if (!strcmp(tok, "time")) {
343 68e4f29e 2022-07-10 op print_time("position ", ps->position, "\n");
344 68e4f29e 2022-07-10 op print_time("duration ", ps->duration, "\n");
345 68e4f29e 2022-07-10 op }
346 68e4f29e 2022-07-10 op }
347 68e4f29e 2022-07-10 op
348 68e4f29e 2022-07-10 op free(dup);
349 6b47a39f 2022-02-21 op }
350 6b47a39f 2022-02-21 op
351 6b47a39f 2022-02-21 op static int
352 3baa2617 2022-02-16 op ctlaction(struct parse_result *res)
353 3baa2617 2022-02-16 op {
354 fad0fb69 2022-05-28 op char path[PATH_MAX];
355 3baa2617 2022-02-16 op struct imsg imsg;
356 fad0fb69 2022-05-28 op struct player_status ps;
357 fad0fb69 2022-05-28 op size_t datalen;
358 3baa2617 2022-02-16 op ssize_t n;
359 fad0fb69 2022-05-28 op int i, type, ret = 0, done = 1;
360 3baa2617 2022-02-16 op
361 3baa2617 2022-02-16 op switch (res->action) {
362 3baa2617 2022-02-16 op case PLAY:
363 3baa2617 2022-02-16 op imsg_compose(ibuf, IMSG_CTL_PLAY, 0, 0, -1, NULL, 0);
364 00f500ff 2022-02-19 op if (verbose) {
365 00f500ff 2022-02-19 op imsg_compose(ibuf, IMSG_CTL_STATUS, 0, 0, -1,
366 00f500ff 2022-02-19 op NULL, 0);
367 00f500ff 2022-02-19 op done = 0;
368 00f500ff 2022-02-19 op }
369 3baa2617 2022-02-16 op break;
370 3baa2617 2022-02-16 op case PAUSE:
371 3baa2617 2022-02-16 op imsg_compose(ibuf, IMSG_CTL_PAUSE, 0, 0, -1, NULL, 0);
372 3baa2617 2022-02-16 op break;
373 3baa2617 2022-02-16 op case TOGGLE:
374 3baa2617 2022-02-16 op imsg_compose(ibuf, IMSG_CTL_TOGGLE_PLAY, 0, 0, -1, NULL, 0);
375 00f500ff 2022-02-19 op if (verbose) {
376 00f500ff 2022-02-19 op imsg_compose(ibuf, IMSG_CTL_STATUS, 0, 0, -1,
377 00f500ff 2022-02-19 op NULL, 0);
378 00f500ff 2022-02-19 op done = 0;
379 00f500ff 2022-02-19 op }
380 3baa2617 2022-02-16 op break;
381 3baa2617 2022-02-16 op case STOP:
382 3baa2617 2022-02-16 op imsg_compose(ibuf, IMSG_CTL_STOP, 0, 0, -1, NULL, 0);
383 3baa2617 2022-02-16 op break;
384 3baa2617 2022-02-16 op case ADD:
385 8ff9231f 2022-02-16 op done = 0;
386 d903ec9a 2022-05-29 op for (i = 0; res->files[i] != NULL; ++i) {
387 18223c28 2022-06-13 op memset(path, 0, sizeof(path));
388 ef593b43 2022-06-09 op if (canonpath(res->files[i], path, sizeof(path))
389 ef593b43 2022-06-09 op == -1) {
390 ef593b43 2022-06-09 op log_warn("canonpath %s", res->files[i]);
391 fad0fb69 2022-05-28 op continue;
392 fad0fb69 2022-05-28 op }
393 fad0fb69 2022-05-28 op
394 fad0fb69 2022-05-28 op imsg_compose(ibuf, IMSG_CTL_ADD, 0, 0, -1,
395 fad0fb69 2022-05-28 op path, sizeof(path));
396 fad0fb69 2022-05-28 op }
397 fad0fb69 2022-05-28 op ret = i == 0;
398 3baa2617 2022-02-16 op break;
399 3baa2617 2022-02-16 op case FLUSH:
400 3baa2617 2022-02-16 op imsg_compose(ibuf, IMSG_CTL_FLUSH, 0, 0, -1, NULL, 0);
401 3baa2617 2022-02-16 op break;
402 3baa2617 2022-02-16 op case SHOW:
403 3baa2617 2022-02-16 op done = 0;
404 3baa2617 2022-02-16 op imsg_compose(ibuf, IMSG_CTL_SHOW, 0, 0, -1, NULL, 0);
405 3baa2617 2022-02-16 op break;
406 bb3f279f 2022-02-16 op case STATUS:
407 bb3f279f 2022-02-16 op done = 0;
408 bb3f279f 2022-02-16 op imsg_compose(ibuf, IMSG_CTL_STATUS, 0, 0, -1, NULL, 0);
409 af27e631 2022-02-17 op break;
410 af27e631 2022-02-17 op case NEXT:
411 af27e631 2022-02-17 op imsg_compose(ibuf, IMSG_CTL_NEXT, 0, 0, -1, NULL, 0);
412 00f500ff 2022-02-19 op if (verbose) {
413 00f500ff 2022-02-19 op imsg_compose(ibuf, IMSG_CTL_STATUS, 0, 0, -1,
414 00f500ff 2022-02-19 op NULL, 0);
415 00f500ff 2022-02-19 op done = 0;
416 00f500ff 2022-02-19 op }
417 bb3f279f 2022-02-16 op break;
418 af27e631 2022-02-17 op case PREV:
419 af27e631 2022-02-17 op imsg_compose(ibuf, IMSG_CTL_PREV, 0, 0, -1, NULL, 0);
420 00f500ff 2022-02-19 op if (verbose) {
421 00f500ff 2022-02-19 op imsg_compose(ibuf, IMSG_CTL_STATUS, 0, 0, -1,
422 00f500ff 2022-02-19 op NULL, 0);
423 00f500ff 2022-02-19 op done = 0;
424 00f500ff 2022-02-19 op }
425 af27e631 2022-02-17 op break;
426 14be015f 2022-02-17 op case LOAD:
427 7a427ecd 2022-02-17 op done = 0;
428 7a427ecd 2022-02-17 op imsg_compose(ibuf, IMSG_CTL_BEGIN, 0, 0, -1, NULL, 0);
429 a913de21 2022-02-17 op break;
430 a913de21 2022-02-17 op case JUMP:
431 a913de21 2022-02-17 op done = 0;
432 fad0fb69 2022-05-28 op memset(path, 0, sizeof(path));
433 fad0fb69 2022-05-28 op strlcpy(path, res->file, sizeof(path));
434 fad0fb69 2022-05-28 op imsg_compose(ibuf, IMSG_CTL_JUMP, 0, 0, -1,
435 fad0fb69 2022-05-28 op path, sizeof(path));
436 7a427ecd 2022-02-17 op break;
437 310ef57c 2022-02-19 op case REPEAT:
438 310ef57c 2022-02-19 op imsg_compose(ibuf, IMSG_CTL_REPEAT, 0, 0, -1,
439 310ef57c 2022-02-19 op &res->rep, sizeof(res->rep));
440 310ef57c 2022-02-19 op break;
441 6b47a39f 2022-02-21 op case MONITOR:
442 6b47a39f 2022-02-21 op done = 0;
443 6b47a39f 2022-02-21 op imsg_compose(ibuf, IMSG_CTL_MONITOR, 0, 0, -1,
444 6b47a39f 2022-02-21 op NULL, 0);
445 6b47a39f 2022-02-21 op break;
446 8d087670 2022-07-09 op case RESTART:
447 8d087670 2022-07-09 op memset(&res->seek, 0, sizeof(res->seek));
448 8d087670 2022-07-09 op /* fallthrough */
449 e5d4e9f7 2022-07-09 op case SEEK:
450 e5d4e9f7 2022-07-09 op imsg_compose(ibuf, IMSG_CTL_SEEK, 0, 0, -1, &res->seek,
451 e5d4e9f7 2022-07-09 op sizeof(res->seek));
452 e5d4e9f7 2022-07-09 op break;
453 3baa2617 2022-02-16 op case NONE:
454 3baa2617 2022-02-16 op /* action not expected */
455 3baa2617 2022-02-16 op fatalx("invalid action %u", res->action);
456 3baa2617 2022-02-16 op break;
457 3baa2617 2022-02-16 op }
458 3baa2617 2022-02-16 op
459 3baa2617 2022-02-16 op if (ret != 0)
460 3baa2617 2022-02-16 op goto end;
461 3baa2617 2022-02-16 op
462 3baa2617 2022-02-16 op imsg_flush(ibuf);
463 3baa2617 2022-02-16 op
464 fad0fb69 2022-05-28 op i = 0;
465 3baa2617 2022-02-16 op while (!done) {
466 3baa2617 2022-02-16 op if ((n = imsg_read(ibuf)) == -1 && errno != EAGAIN)
467 3baa2617 2022-02-16 op fatalx("imsg_read error");
468 3baa2617 2022-02-16 op if (n == 0)
469 3baa2617 2022-02-16 op fatalx("pipe closed");
470 3baa2617 2022-02-16 op
471 3baa2617 2022-02-16 op while (!done) {
472 3baa2617 2022-02-16 op if ((n = imsg_get(ibuf, &imsg)) == -1)
473 3baa2617 2022-02-16 op fatalx("imsg_get error");
474 3baa2617 2022-02-16 op if (n == 0)
475 3baa2617 2022-02-16 op break;
476 3baa2617 2022-02-16 op
477 fad0fb69 2022-05-28 op if (imsg.hdr.type == IMSG_CTL_ERR) {
478 fad0fb69 2022-05-28 op log_warnx("%s: %s", res->ctl->name,
479 fad0fb69 2022-05-28 op imsg_strerror(&imsg));
480 fad0fb69 2022-05-28 op ret = 1;
481 fad0fb69 2022-05-28 op done = 1;
482 fad0fb69 2022-05-28 op break;
483 fad0fb69 2022-05-28 op }
484 fad0fb69 2022-05-28 op
485 fad0fb69 2022-05-28 op datalen = IMSG_DATA_SIZE(imsg);
486 fad0fb69 2022-05-28 op
487 3baa2617 2022-02-16 op switch (res->action) {
488 8ff9231f 2022-02-16 op case ADD:
489 d903ec9a 2022-05-29 op if (res->files[i] == NULL)
490 fad0fb69 2022-05-28 op fatalx("received more replies than "
491 fad0fb69 2022-05-28 op "files enqueued.");
492 fad0fb69 2022-05-28 op
493 fad0fb69 2022-05-28 op if (imsg.hdr.type == IMSG_CTL_ADD)
494 d903ec9a 2022-05-29 op log_debug("enqueued %s", res->files[i]);
495 fad0fb69 2022-05-28 op else
496 fad0fb69 2022-05-28 op fatalx("invalid message %d",
497 fad0fb69 2022-05-28 op imsg.hdr.type);
498 fad0fb69 2022-05-28 op i++;
499 d903ec9a 2022-05-29 op done = res->files[i] == NULL;
500 8ff9231f 2022-02-16 op break;
501 3baa2617 2022-02-16 op case SHOW:
502 fad0fb69 2022-05-28 op if (datalen == 0) {
503 fad0fb69 2022-05-28 op done = 1;
504 fad0fb69 2022-05-28 op break;
505 fad0fb69 2022-05-28 op }
506 fad0fb69 2022-05-28 op if (datalen != sizeof(ps))
507 fad0fb69 2022-05-28 op fatalx("data size mismatch");
508 fad0fb69 2022-05-28 op memcpy(&ps, imsg.data, sizeof(ps));
509 fad0fb69 2022-05-28 op if (ps.path[sizeof(ps.path) - 1] != '\0')
510 fad0fb69 2022-05-28 op fatalx("received corrupted data");
511 fad0fb69 2022-05-28 op if (res->pretty) {
512 fad0fb69 2022-05-28 op char c = ' ';
513 fad0fb69 2022-05-28 op if (ps.status == STATE_PLAYING)
514 fad0fb69 2022-05-28 op c = '>';
515 fad0fb69 2022-05-28 op printf("%c ", c);
516 fad0fb69 2022-05-28 op }
517 fad0fb69 2022-05-28 op puts(ps.path);
518 3baa2617 2022-02-16 op break;
519 146307bd 2022-02-17 op case PLAY:
520 146307bd 2022-02-17 op case TOGGLE:
521 146307bd 2022-02-17 op case RESTART:
522 bb3f279f 2022-02-16 op case STATUS:
523 146307bd 2022-02-17 op case NEXT:
524 146307bd 2022-02-17 op case PREV:
525 a913de21 2022-02-17 op case JUMP:
526 fad0fb69 2022-05-28 op if (imsg.hdr.type != IMSG_CTL_STATUS)
527 fad0fb69 2022-05-28 op fatalx("invalid message %d",
528 fad0fb69 2022-05-28 op imsg.hdr.type);
529 fad0fb69 2022-05-28 op
530 fad0fb69 2022-05-28 op if (datalen != sizeof(ps))
531 fad0fb69 2022-05-28 op fatalx("data size mismatch");
532 fad0fb69 2022-05-28 op memcpy(&ps, imsg.data, sizeof(ps));
533 fad0fb69 2022-05-28 op if (ps.path[sizeof(ps.path) - 1] != '\0')
534 fad0fb69 2022-05-28 op fatalx("received corrupted data");
535 fad0fb69 2022-05-28 op
536 68e4f29e 2022-07-10 op print_status(&ps, res->status_format);
537 fad0fb69 2022-05-28 op done = 1;
538 bb3f279f 2022-02-16 op break;
539 7a427ecd 2022-02-17 op case LOAD:
540 fad0fb69 2022-05-28 op if (imsg.hdr.type == IMSG_CTL_ADD)
541 fad0fb69 2022-05-28 op break;
542 fad0fb69 2022-05-28 op if (imsg.hdr.type == IMSG_CTL_COMMIT) {
543 fad0fb69 2022-05-28 op done = 1;
544 fad0fb69 2022-05-28 op break;
545 fad0fb69 2022-05-28 op }
546 fad0fb69 2022-05-28 op
547 fad0fb69 2022-05-28 op if (imsg.hdr.type != IMSG_CTL_BEGIN)
548 fad0fb69 2022-05-28 op fatalx("invalid message %d",
549 fad0fb69 2022-05-28 op imsg.hdr.type);
550 fad0fb69 2022-05-28 op
551 fad0fb69 2022-05-28 op load_files(res, &ret);
552 7a427ecd 2022-02-17 op break;
553 6b47a39f 2022-02-21 op case MONITOR:
554 fad0fb69 2022-05-28 op if (imsg.hdr.type != IMSG_CTL_MONITOR)
555 fad0fb69 2022-05-28 op fatalx("invalid message %d",
556 fad0fb69 2022-05-28 op imsg.hdr.type);
557 fad0fb69 2022-05-28 op
558 fad0fb69 2022-05-28 op if (datalen != sizeof(type))
559 fad0fb69 2022-05-28 op fatalx("data size mismatch");
560 fad0fb69 2022-05-28 op
561 fad0fb69 2022-05-28 op memcpy(&type, imsg.data, sizeof(type));
562 fad0fb69 2022-05-28 op if (type < 0 || type > IMSG__LAST)
563 fad0fb69 2022-05-28 op fatalx("received corrupted data");
564 fad0fb69 2022-05-28 op
565 fad0fb69 2022-05-28 op if (!res->monitor[type])
566 fad0fb69 2022-05-28 op break;
567 fad0fb69 2022-05-28 op
568 fad0fb69 2022-05-28 op puts(imsg_name(type));
569 fad0fb69 2022-05-28 op fflush(stdout);
570 6b47a39f 2022-02-21 op break;
571 3baa2617 2022-02-16 op default:
572 3baa2617 2022-02-16 op done = 1;
573 3baa2617 2022-02-16 op break;
574 3baa2617 2022-02-16 op }
575 3baa2617 2022-02-16 op
576 3baa2617 2022-02-16 op imsg_free(&imsg);
577 3baa2617 2022-02-16 op }
578 3baa2617 2022-02-16 op }
579 3baa2617 2022-02-16 op
580 3baa2617 2022-02-16 op end:
581 3baa2617 2022-02-16 op return ret;
582 3baa2617 2022-02-16 op }
583 3baa2617 2022-02-16 op
584 2ddcfa40 2022-07-08 op static int
585 3baa2617 2022-02-16 op ctl_noarg(struct parse_result *res, int argc, char **argv)
586 3baa2617 2022-02-16 op {
587 7e29fc4a 2022-03-03 op int ch;
588 7e29fc4a 2022-03-03 op
589 7e29fc4a 2022-03-03 op while ((ch = getopt(argc, argv, "")) != -1)
590 7e29fc4a 2022-03-03 op ctl_usage(res->ctl);
591 7e29fc4a 2022-03-03 op argc -= optind;
592 7e29fc4a 2022-03-03 op argv += optind;
593 7e29fc4a 2022-03-03 op
594 acaf7eb2 2022-03-05 op if (argc > 0)
595 3baa2617 2022-02-16 op ctl_usage(res->ctl);
596 7e29fc4a 2022-03-03 op
597 3baa2617 2022-02-16 op return ctlaction(res);
598 3baa2617 2022-02-16 op }
599 3baa2617 2022-02-16 op
600 2ddcfa40 2022-07-08 op static int
601 3baa2617 2022-02-16 op ctl_add(struct parse_result *res, int argc, char **argv)
602 3baa2617 2022-02-16 op {
603 7e29fc4a 2022-03-03 op int ch;
604 7e29fc4a 2022-03-03 op
605 7e29fc4a 2022-03-03 op while ((ch = getopt(argc, argv, "")) != -1)
606 3baa2617 2022-02-16 op ctl_usage(res->ctl);
607 7e29fc4a 2022-03-03 op argc -= optind;
608 7e29fc4a 2022-03-03 op argv += optind;
609 7e29fc4a 2022-03-03 op
610 7e29fc4a 2022-03-03 op if (argc == 0)
611 7e29fc4a 2022-03-03 op ctl_usage(res->ctl);
612 7e29fc4a 2022-03-03 op res->files = argv;
613 14be015f 2022-02-17 op
614 3baa2617 2022-02-16 op return ctlaction(res);
615 3baa2617 2022-02-16 op }
616 14be015f 2022-02-17 op
617 2ddcfa40 2022-07-08 op static int
618 8e916714 2022-02-17 op ctl_show(struct parse_result *res, int argc, char **argv)
619 8e916714 2022-02-17 op {
620 8e916714 2022-02-17 op int ch;
621 8e916714 2022-02-17 op
622 8e916714 2022-02-17 op while ((ch = getopt(argc, argv, "p")) != -1) {
623 8e916714 2022-02-17 op switch (ch) {
624 8e916714 2022-02-17 op case 'p':
625 8e916714 2022-02-17 op res->pretty = 1;
626 8e916714 2022-02-17 op break;
627 8e916714 2022-02-17 op default:
628 8e916714 2022-02-17 op ctl_usage(res->ctl);
629 8e916714 2022-02-17 op }
630 8e916714 2022-02-17 op }
631 8e916714 2022-02-17 op
632 8e916714 2022-02-17 op return ctlaction(res);
633 8e916714 2022-02-17 op }
634 8e916714 2022-02-17 op
635 2ddcfa40 2022-07-08 op static int
636 14be015f 2022-02-17 op ctl_load(struct parse_result *res, int argc, char **argv)
637 14be015f 2022-02-17 op {
638 7e29fc4a 2022-03-03 op int ch;
639 7e29fc4a 2022-03-03 op
640 7e29fc4a 2022-03-03 op while ((ch = getopt(argc, argv, "")) != -1)
641 7e29fc4a 2022-03-03 op ctl_usage(res->ctl);
642 7e29fc4a 2022-03-03 op argc -= optind;
643 7e29fc4a 2022-03-03 op argv += optind;
644 7e29fc4a 2022-03-03 op
645 7e29fc4a 2022-03-03 op if (argc == 0)
646 ec1fb0c7 2022-02-17 op res->file = NULL;
647 7e29fc4a 2022-03-03 op else if (argc == 1)
648 7e29fc4a 2022-03-03 op res->file = argv[0];
649 ec1fb0c7 2022-02-17 op else
650 14be015f 2022-02-17 op ctl_usage(res->ctl);
651 14be015f 2022-02-17 op
652 14be015f 2022-02-17 op if (pledge("stdio rpath", NULL) == -1)
653 14be015f 2022-02-17 op fatal("pledge");
654 14be015f 2022-02-17 op
655 7a427ecd 2022-02-17 op return ctlaction(res);
656 14be015f 2022-02-17 op }
657 14be015f 2022-02-17 op
658 2ddcfa40 2022-07-08 op static int
659 a913de21 2022-02-17 op ctl_jump(struct parse_result *res, int argc, char **argv)
660 a913de21 2022-02-17 op {
661 a913de21 2022-02-17 op int ch;
662 a913de21 2022-02-17 op
663 a913de21 2022-02-17 op while ((ch = getopt(argc, argv, "")) != -1)
664 a913de21 2022-02-17 op ctl_usage(res->ctl);
665 a913de21 2022-02-17 op argc -= optind;
666 a913de21 2022-02-17 op argv += optind;
667 a913de21 2022-02-17 op
668 a913de21 2022-02-17 op if (argc != 1)
669 a913de21 2022-02-17 op ctl_usage(res->ctl);
670 a913de21 2022-02-17 op
671 a913de21 2022-02-17 op res->file = argv[0];
672 310ef57c 2022-02-19 op return ctlaction(res);
673 310ef57c 2022-02-19 op }
674 310ef57c 2022-02-19 op
675 2ddcfa40 2022-07-08 op static int
676 310ef57c 2022-02-19 op ctl_repeat(struct parse_result *res, int argc, char **argv)
677 310ef57c 2022-02-19 op {
678 310ef57c 2022-02-19 op int ch, b;
679 310ef57c 2022-02-19 op
680 310ef57c 2022-02-19 op while ((ch = getopt(argc, argv, "")) != -1)
681 310ef57c 2022-02-19 op ctl_usage(res->ctl);
682 310ef57c 2022-02-19 op argc -= optind;
683 310ef57c 2022-02-19 op argv += optind;
684 310ef57c 2022-02-19 op
685 310ef57c 2022-02-19 op if (argc != 2)
686 310ef57c 2022-02-19 op ctl_usage(res->ctl);
687 310ef57c 2022-02-19 op
688 310ef57c 2022-02-19 op if (!strcmp(argv[1], "on"))
689 310ef57c 2022-02-19 op b = 1;
690 310ef57c 2022-02-19 op else if (!strcmp(argv[1], "off"))
691 310ef57c 2022-02-19 op b = 0;
692 310ef57c 2022-02-19 op else
693 310ef57c 2022-02-19 op ctl_usage(res->ctl);
694 310ef57c 2022-02-19 op
695 310ef57c 2022-02-19 op res->rep.repeat_one = -1;
696 310ef57c 2022-02-19 op res->rep.repeat_all = -1;
697 310ef57c 2022-02-19 op if (!strcmp(argv[0], "one"))
698 310ef57c 2022-02-19 op res->rep.repeat_one = b;
699 310ef57c 2022-02-19 op else if (!strcmp(argv[0], "all"))
700 310ef57c 2022-02-19 op res->rep.repeat_all = b;
701 310ef57c 2022-02-19 op else
702 310ef57c 2022-02-19 op ctl_usage(res->ctl);
703 90122a37 2022-05-14 op
704 90122a37 2022-05-14 op return ctlaction(res);
705 90122a37 2022-05-14 op }
706 90122a37 2022-05-14 op
707 2ddcfa40 2022-07-08 op static int
708 90122a37 2022-05-14 op ctl_monitor(struct parse_result *res, int argc, char **argv)
709 90122a37 2022-05-14 op {
710 90122a37 2022-05-14 op int ch;
711 90122a37 2022-05-14 op const char *events;
712 90122a37 2022-05-14 op char *dup, *tmp, *tok;
713 90122a37 2022-05-14 op
714 90122a37 2022-05-14 op while ((ch = getopt(argc, argv, "")) != -1)
715 90122a37 2022-05-14 op ctl_usage(res->ctl);
716 90122a37 2022-05-14 op argc -= optind;
717 90122a37 2022-05-14 op argv += optind;
718 90122a37 2022-05-14 op
719 90122a37 2022-05-14 op if (argc > 1)
720 90122a37 2022-05-14 op ctl_usage(res->ctl);
721 90122a37 2022-05-14 op
722 90122a37 2022-05-14 op if (argc == 1)
723 90122a37 2022-05-14 op events = *argv;
724 90122a37 2022-05-14 op else
725 90122a37 2022-05-14 op events = "play,toggle,pause,stop,restart,flush,next,prev,"
726 90122a37 2022-05-14 op "jump,repeat,add,load";
727 310ef57c 2022-02-19 op
728 90122a37 2022-05-14 op tmp = dup = xstrdup(events);
729 90122a37 2022-05-14 op while ((tok = strsep(&tmp, ",")) != NULL) {
730 90122a37 2022-05-14 op if (*tok == '\0')
731 90122a37 2022-05-14 op continue;
732 90122a37 2022-05-14 op
733 90122a37 2022-05-14 op if (!strcmp(tok, "play"))
734 90122a37 2022-05-14 op res->monitor[IMSG_CTL_PLAY] = 1;
735 90122a37 2022-05-14 op else if (!strcmp(tok, "toggle"))
736 90122a37 2022-05-14 op res->monitor[IMSG_CTL_TOGGLE_PLAY] = 1;
737 90122a37 2022-05-14 op else if (!strcmp(tok, "pause"))
738 90122a37 2022-05-14 op res->monitor[IMSG_CTL_PAUSE] = 1;
739 90122a37 2022-05-14 op else if (!strcmp(tok, "stop"))
740 90122a37 2022-05-14 op res->monitor[IMSG_CTL_STOP] = 1;
741 8d087670 2022-07-09 op else if (!strcmp(tok, "restart")) /* compat */
742 8d087670 2022-07-09 op res->monitor[IMSG_CTL_SEEK] = 1;
743 90122a37 2022-05-14 op else if (!strcmp(tok, "flush"))
744 90122a37 2022-05-14 op res->monitor[IMSG_CTL_FLUSH] = 1;
745 90122a37 2022-05-14 op else if (!strcmp(tok, "next"))
746 90122a37 2022-05-14 op res->monitor[IMSG_CTL_NEXT] = 1;
747 90122a37 2022-05-14 op else if (!strcmp(tok, "prev"))
748 90122a37 2022-05-14 op res->monitor[IMSG_CTL_PREV] = 1;
749 90122a37 2022-05-14 op else if (!strcmp(tok, "jump"))
750 90122a37 2022-05-14 op res->monitor[IMSG_CTL_JUMP] = 1;
751 90122a37 2022-05-14 op else if (!strcmp(tok, "repeat"))
752 90122a37 2022-05-14 op res->monitor[IMSG_CTL_REPEAT] = 1;
753 90122a37 2022-05-14 op else if (!strcmp(tok, "add"))
754 90122a37 2022-05-14 op res->monitor[IMSG_CTL_ADD] = 1;
755 90122a37 2022-05-14 op else if (!strcmp(tok, "load"))
756 90122a37 2022-05-14 op res->monitor[IMSG_CTL_COMMIT] = 1;
757 88519c7b 2022-07-09 op else if (!strcmp(tok, "seek"))
758 88519c7b 2022-07-09 op res->monitor[IMSG_CTL_SEEK] = 1;
759 90122a37 2022-05-14 op else
760 90122a37 2022-05-14 op fatalx("unknown event \"%s\"", tok);
761 90122a37 2022-05-14 op }
762 90122a37 2022-05-14 op
763 90122a37 2022-05-14 op free(dup);
764 e5d4e9f7 2022-07-09 op return ctlaction(res);
765 e5d4e9f7 2022-07-09 op }
766 e5d4e9f7 2022-07-09 op
767 e5d4e9f7 2022-07-09 op static int
768 e5d4e9f7 2022-07-09 op ctl_seek(struct parse_result *res, int argc, char **argv)
769 e5d4e9f7 2022-07-09 op {
770 071167ed 2022-07-09 op const char *n;
771 071167ed 2022-07-09 op char *ep;
772 071167ed 2022-07-09 op int hours = 0, minutes = 0, seconds = 0;
773 071167ed 2022-07-09 op int sign = 1;
774 e5d4e9f7 2022-07-09 op
775 e5d4e9f7 2022-07-09 op if (argc > 0) {
776 e5d4e9f7 2022-07-09 op /* skip the command name */
777 e5d4e9f7 2022-07-09 op argc--;
778 e5d4e9f7 2022-07-09 op argv++;
779 e5d4e9f7 2022-07-09 op }
780 e5d4e9f7 2022-07-09 op
781 e5d4e9f7 2022-07-09 op if (argc > 0 && !strcmp(*argv, "--")) {
782 e5d4e9f7 2022-07-09 op argc--;
783 e5d4e9f7 2022-07-09 op argv++;
784 e5d4e9f7 2022-07-09 op }
785 e5d4e9f7 2022-07-09 op
786 e5d4e9f7 2022-07-09 op if (argc != 1)
787 e5d4e9f7 2022-07-09 op ctl_usage(res->ctl);
788 e5d4e9f7 2022-07-09 op
789 e5d4e9f7 2022-07-09 op n = *argv;
790 e5d4e9f7 2022-07-09 op if (*n == '-' || *n == '+')
791 e5d4e9f7 2022-07-09 op res->seek.relative = 1;
792 071167ed 2022-07-09 op if (*n == '-') {
793 071167ed 2022-07-09 op n++;
794 071167ed 2022-07-09 op sign = -1;
795 071167ed 2022-07-09 op }
796 e5d4e9f7 2022-07-09 op
797 071167ed 2022-07-09 op seconds = strtol(n, &ep, 10);
798 071167ed 2022-07-09 op if (n[0] == '\0' ||
799 071167ed 2022-07-09 op (*ep != '\0' && *ep != ':' && *ep != '%') ||
800 071167ed 2022-07-09 op (*ep == '%' && ep[1] != '\0'))
801 071167ed 2022-07-09 op fatalx("invalid offset: %s", argv[0]);
802 071167ed 2022-07-09 op if (*ep == '\0' || *ep == '%') {
803 071167ed 2022-07-09 op res->seek.percent = *ep == '%';
804 071167ed 2022-07-09 op goto done;
805 071167ed 2022-07-09 op }
806 e5d4e9f7 2022-07-09 op
807 071167ed 2022-07-09 op n = ++ep;
808 071167ed 2022-07-09 op minutes = seconds;
809 071167ed 2022-07-09 op seconds = strtol(n, &ep, 10);
810 071167ed 2022-07-09 op if (n[0] == '\0' || (*ep != '\0' && *ep != ':'))
811 071167ed 2022-07-09 op fatalx("invalid offset: %s", argv[0]);
812 071167ed 2022-07-09 op if (*ep == '\0')
813 071167ed 2022-07-09 op goto done;
814 071167ed 2022-07-09 op
815 071167ed 2022-07-09 op n = ++ep;
816 071167ed 2022-07-09 op hours = minutes;
817 071167ed 2022-07-09 op minutes = seconds;
818 071167ed 2022-07-09 op seconds = strtol(n, &ep, 10);
819 071167ed 2022-07-09 op if (n[0] == '\0' || *ep != '\0')
820 071167ed 2022-07-09 op fatalx("invalid offset: %s", argv[0]);
821 071167ed 2022-07-09 op
822 071167ed 2022-07-09 op done:
823 071167ed 2022-07-09 op res->seek.offset = sign * (hours * 3600 + minutes * 60 + seconds);
824 a913de21 2022-02-17 op return ctlaction(res);
825 a913de21 2022-02-17 op }
826 a913de21 2022-02-17 op
827 fea541a8 2022-02-16 op static int
828 68e4f29e 2022-07-10 op ctl_status(struct parse_result *res, int argc, char **argv)
829 68e4f29e 2022-07-10 op {
830 68e4f29e 2022-07-10 op const char *fmt = NULL;
831 68e4f29e 2022-07-10 op int ch;
832 68e4f29e 2022-07-10 op
833 68e4f29e 2022-07-10 op while ((ch = getopt(argc, argv, "f:")) != -1) {
834 68e4f29e 2022-07-10 op switch (ch) {
835 68e4f29e 2022-07-10 op case 'f':
836 68e4f29e 2022-07-10 op fmt = optarg;
837 68e4f29e 2022-07-10 op break;
838 68e4f29e 2022-07-10 op default:
839 68e4f29e 2022-07-10 op ctl_usage(res->ctl);
840 68e4f29e 2022-07-10 op }
841 68e4f29e 2022-07-10 op }
842 68e4f29e 2022-07-10 op argc -= optind;
843 68e4f29e 2022-07-10 op argv += optind;
844 68e4f29e 2022-07-10 op
845 68e4f29e 2022-07-10 op if (argc > 0)
846 68e4f29e 2022-07-10 op ctl_usage(res->ctl);
847 68e4f29e 2022-07-10 op
848 68e4f29e 2022-07-10 op if (fmt == NULL && (fmt = getenv("AMUSED_STATUS_FORMAT")) == NULL)
849 68e4f29e 2022-07-10 op fmt = "status,time,repeat";
850 68e4f29e 2022-07-10 op res->status_format = fmt;
851 68e4f29e 2022-07-10 op return ctlaction(res);
852 68e4f29e 2022-07-10 op }
853 68e4f29e 2022-07-10 op
854 68e4f29e 2022-07-10 op static int
855 1d673950 2022-03-03 op ctl_get_lock(const char *lockfile)
856 3baa2617 2022-02-16 op {
857 1d673950 2022-03-03 op int lockfd;
858 3baa2617 2022-02-16 op
859 1d673950 2022-03-03 op if ((lockfd = open(lockfile, O_WRONLY|O_CREAT, 0600)) == -1) {
860 1d673950 2022-03-03 op log_debug("open failed: %s", strerror(errno));
861 1d673950 2022-03-03 op return -1;
862 1d673950 2022-03-03 op }
863 3baa2617 2022-02-16 op
864 1d673950 2022-03-03 op if (flock(lockfd, LOCK_EX|LOCK_NB) == -1) {
865 1d673950 2022-03-03 op log_debug("flock failed: %s", strerror(errno));
866 1d673950 2022-03-03 op if (errno != EAGAIN)
867 1d673950 2022-03-03 op return -1;
868 1d673950 2022-03-03 op while (flock(lockfd, LOCK_EX) == -1 && errno == EINTR)
869 1d673950 2022-03-03 op /* nop */;
870 1d673950 2022-03-03 op close(lockfd);
871 1d673950 2022-03-03 op return -2;
872 1d673950 2022-03-03 op }
873 1d673950 2022-03-03 op log_debug("flock succeeded");
874 1d673950 2022-03-03 op
875 1d673950 2022-03-03 op return lockfd;
876 1d673950 2022-03-03 op }
877 1d673950 2022-03-03 op
878 1d673950 2022-03-03 op static int
879 1d673950 2022-03-03 op ctl_connect(void)
880 1d673950 2022-03-03 op {
881 1d673950 2022-03-03 op struct timespec ts = { 0, 50000000 }; /* 0.05 seconds */
882 1d673950 2022-03-03 op struct sockaddr_un sa;
883 1d673950 2022-03-03 op size_t size;
884 1d673950 2022-03-03 op int fd, lockfd = -1, locked = 0, spawned = 0;
885 1b77ad48 2022-07-08 op int attempt = 0;
886 1d673950 2022-03-03 op char *lockfile = NULL;
887 1d673950 2022-03-03 op
888 1d673950 2022-03-03 op memset(&sa, 0, sizeof(sa));
889 1d673950 2022-03-03 op sa.sun_family = AF_UNIX;
890 1d673950 2022-03-03 op size = strlcpy(sa.sun_path, csock, sizeof(sa.sun_path));
891 1d673950 2022-03-03 op if (size >= sizeof(sa.sun_path)) {
892 1d673950 2022-03-03 op errno = ENAMETOOLONG;
893 fea541a8 2022-02-16 op return -1;
894 fea541a8 2022-02-16 op }
895 3baa2617 2022-02-16 op
896 1d673950 2022-03-03 op retry:
897 1d673950 2022-03-03 op if ((fd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1)
898 1d673950 2022-03-03 op return -1;
899 1d673950 2022-03-03 op
900 1d673950 2022-03-03 op if (connect(fd, (struct sockaddr *)&sa, sizeof(sa)) == -1) {
901 1d673950 2022-03-03 op log_debug("connection failed: %s", strerror(errno));
902 1d673950 2022-03-03 op if (errno != ECONNREFUSED && errno != ENOENT)
903 1d673950 2022-03-03 op goto failed;
904 1b77ad48 2022-07-08 op if (attempt++ == 100)
905 1b77ad48 2022-07-08 op goto failed;
906 1d673950 2022-03-03 op close(fd);
907 1d673950 2022-03-03 op
908 1d673950 2022-03-03 op if (!locked) {
909 1d673950 2022-03-03 op xasprintf(&lockfile, "%s.lock", csock);
910 1d673950 2022-03-03 op if ((lockfd = ctl_get_lock(lockfile)) < 0) {
911 1d673950 2022-03-03 op log_debug("didn't get the lock (%d)", lockfd);
912 1d673950 2022-03-03 op
913 1d673950 2022-03-03 op free(lockfile);
914 1d673950 2022-03-03 op lockfile = NULL;
915 1d673950 2022-03-03 op
916 1d673950 2022-03-03 op if (lockfd == -1)
917 1d673950 2022-03-03 op goto retry;
918 1d673950 2022-03-03 op }
919 1d673950 2022-03-03 op
920 1d673950 2022-03-03 op /*
921 1d673950 2022-03-03 op * Always retry at least once, even if we got
922 1d673950 2022-03-03 op * the lock, because another client could have
923 1d673950 2022-03-03 op * taken the lock, started the server and released
924 1d673950 2022-03-03 op * the lock between our connect() and flock()
925 1d673950 2022-03-03 op */
926 1d673950 2022-03-03 op locked = 1;
927 1d673950 2022-03-03 op goto retry;
928 1d673950 2022-03-03 op }
929 1d673950 2022-03-03 op
930 1d673950 2022-03-03 op if (!spawned) {
931 1d673950 2022-03-03 op log_debug("spawning the daemon");
932 1d673950 2022-03-03 op spawn_daemon();
933 1d673950 2022-03-03 op spawned = 1;
934 1d673950 2022-03-03 op }
935 1d673950 2022-03-03 op
936 1d673950 2022-03-03 op nanosleep(&ts, NULL);
937 1d673950 2022-03-03 op goto retry;
938 1d673950 2022-03-03 op }
939 1d673950 2022-03-03 op
940 1d673950 2022-03-03 op if (locked && lockfd >= 0) {
941 1d673950 2022-03-03 op unlink(lockfile);
942 1d673950 2022-03-03 op free(lockfile);
943 1d673950 2022-03-03 op close(lockfd);
944 1d673950 2022-03-03 op }
945 1d673950 2022-03-03 op return fd;
946 1d673950 2022-03-03 op
947 1d673950 2022-03-03 op failed:
948 1d673950 2022-03-03 op if (locked) {
949 1d673950 2022-03-03 op free(lockfile);
950 1d673950 2022-03-03 op close(lockfd);
951 1d673950 2022-03-03 op }
952 1d673950 2022-03-03 op close(fd);
953 1d673950 2022-03-03 op return -1;
954 fea541a8 2022-02-16 op }
955 fea541a8 2022-02-16 op
956 fea541a8 2022-02-16 op __dead void
957 fea541a8 2022-02-16 op ctl(int argc, char **argv)
958 fea541a8 2022-02-16 op {
959 1d673950 2022-03-03 op int ctl_sock;
960 3baa2617 2022-02-16 op
961 fea541a8 2022-02-16 op log_init(1, LOG_DAEMON);
962 fea541a8 2022-02-16 op log_setverbose(verbose);
963 fea541a8 2022-02-16 op
964 96233476 2022-06-09 op if (getcwd(cwd, sizeof(cwd)) == NULL)
965 96233476 2022-06-09 op fatal("getcwd");
966 96233476 2022-06-09 op
967 1d673950 2022-03-03 op if ((ctl_sock = ctl_connect()) == -1)
968 1d673950 2022-03-03 op fatal("can't connect");
969 fea541a8 2022-02-16 op
970 fea541a8 2022-02-16 op if (ctl_sock == -1)
971 fea541a8 2022-02-16 op fatalx("failed to connect to the daemon");
972 fea541a8 2022-02-16 op
973 3baa2617 2022-02-16 op ibuf = xmalloc(sizeof(*ibuf));
974 3baa2617 2022-02-16 op imsg_init(ibuf, ctl_sock);
975 3baa2617 2022-02-16 op
976 3baa2617 2022-02-16 op optreset = 1;
977 3baa2617 2022-02-16 op optind = 1;
978 3baa2617 2022-02-16 op
979 3baa2617 2022-02-16 op exit(parse(argc, argv));
980 3baa2617 2022-02-16 op }