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 3baa2617 2022-02-16 op
45 3baa2617 2022-02-16 op struct ctl_command ctl_commands[] = {
46 3baa2617 2022-02-16 op { "play", PLAY, ctl_noarg, "" },
47 3baa2617 2022-02-16 op { "pause", PAUSE, ctl_noarg, "" },
48 3baa2617 2022-02-16 op { "toggle", TOGGLE, ctl_noarg, "" },
49 3baa2617 2022-02-16 op { "stop", STOP, ctl_noarg, "" },
50 3baa2617 2022-02-16 op { "restart", RESTART, ctl_noarg, "" },
51 3baa2617 2022-02-16 op { "add", ADD, ctl_add, "files...", 1 },
52 3baa2617 2022-02-16 op { "flush", FLUSH, ctl_noarg, "" },
53 d980494c 2022-02-16 op { "show", SHOW, ctl_noarg, "" },
54 bb3f279f 2022-02-16 op { "status", STATUS, ctl_noarg, "" },
55 af27e631 2022-02-17 op { "next", NEXT, ctl_noarg, "" },
56 af27e631 2022-02-17 op { "prev", PREV, ctl_noarg, "" },
57 3baa2617 2022-02-16 op { NULL },
58 3baa2617 2022-02-16 op };
59 3baa2617 2022-02-16 op
60 3baa2617 2022-02-16 op __dead void
61 3baa2617 2022-02-16 op usage(void)
62 3baa2617 2022-02-16 op {
63 3baa2617 2022-02-16 op fprintf(stderr, "usage: %s [-dv] [-s socket]\n", getprogname());
64 3baa2617 2022-02-16 op fprintf(stderr, "%s version %s\n", getprogname(), AMUSED_VERSION);
65 3baa2617 2022-02-16 op exit(1);
66 3baa2617 2022-02-16 op }
67 3baa2617 2022-02-16 op
68 3baa2617 2022-02-16 op static __dead void
69 3baa2617 2022-02-16 op ctl_usage(struct ctl_command *ctl)
70 3baa2617 2022-02-16 op {
71 3baa2617 2022-02-16 op fprintf(stderr, "usage: %s [-v] [-s socket] %s %s\n", getprogname(),
72 3baa2617 2022-02-16 op ctl->name, ctl->usage);
73 3baa2617 2022-02-16 op exit(1);
74 3baa2617 2022-02-16 op }
75 3baa2617 2022-02-16 op
76 3baa2617 2022-02-16 op static int
77 3baa2617 2022-02-16 op parse(int argc, char **argv)
78 3baa2617 2022-02-16 op {
79 3baa2617 2022-02-16 op struct ctl_command *ctl = NULL;
80 3baa2617 2022-02-16 op struct parse_result res;
81 3baa2617 2022-02-16 op int i, status;
82 3baa2617 2022-02-16 op
83 3baa2617 2022-02-16 op memset(&res, 0, sizeof(res));
84 3baa2617 2022-02-16 op
85 3baa2617 2022-02-16 op for (i = 0; ctl_commands[i].name != NULL; ++i) {
86 3baa2617 2022-02-16 op if (strncmp(ctl_commands[i].name, argv[0], strlen(argv[0]))
87 3baa2617 2022-02-16 op == 0) {
88 3baa2617 2022-02-16 op if (ctl != NULL) {
89 3baa2617 2022-02-16 op fprintf(stderr,
90 3baa2617 2022-02-16 op "ambiguous argument: %s\n", argv[0]);
91 3baa2617 2022-02-16 op usage();
92 3baa2617 2022-02-16 op }
93 3baa2617 2022-02-16 op ctl = &ctl_commands[i];
94 3baa2617 2022-02-16 op }
95 3baa2617 2022-02-16 op }
96 3baa2617 2022-02-16 op
97 3baa2617 2022-02-16 op if (ctl == NULL) {
98 3baa2617 2022-02-16 op fprintf(stderr, "unknown argument: %s\n", argv[0]);
99 3baa2617 2022-02-16 op usage();
100 3baa2617 2022-02-16 op }
101 3baa2617 2022-02-16 op
102 3baa2617 2022-02-16 op res.action = ctl->action;
103 3baa2617 2022-02-16 op res.ctl = ctl;
104 3baa2617 2022-02-16 op
105 3baa2617 2022-02-16 op if (!ctl->has_pledge) {
106 3baa2617 2022-02-16 op /* pledge(2) default if command doesn't have its own */
107 3baa2617 2022-02-16 op if (pledge("stdio", NULL) == -1)
108 3baa2617 2022-02-16 op fatal("pledge");
109 3baa2617 2022-02-16 op }
110 3baa2617 2022-02-16 op
111 3baa2617 2022-02-16 op status = ctl->main(&res, argc, argv);
112 3baa2617 2022-02-16 op close(ibuf->fd);
113 3baa2617 2022-02-16 op free(ibuf);
114 3baa2617 2022-02-16 op return status;
115 3baa2617 2022-02-16 op }
116 3baa2617 2022-02-16 op
117 3baa2617 2022-02-16 op static int
118 3baa2617 2022-02-16 op enqueue_tracks(char **files)
119 3baa2617 2022-02-16 op {
120 3baa2617 2022-02-16 op char res[PATH_MAX];
121 3baa2617 2022-02-16 op int enq = 0;
122 3baa2617 2022-02-16 op
123 3baa2617 2022-02-16 op for (; *files != NULL; ++files) {
124 3baa2617 2022-02-16 op memset(&res, 0, sizeof(res));
125 3baa2617 2022-02-16 op if (realpath(*files, res) == NULL) {
126 3baa2617 2022-02-16 op log_warn("realpath %s", *files);
127 3baa2617 2022-02-16 op continue;
128 3baa2617 2022-02-16 op }
129 3baa2617 2022-02-16 op
130 3baa2617 2022-02-16 op imsg_compose(ibuf, IMSG_CTL_ADD, 0, 0, -1,
131 3baa2617 2022-02-16 op res, sizeof(res));
132 3baa2617 2022-02-16 op enq++;
133 3baa2617 2022-02-16 op }
134 3baa2617 2022-02-16 op
135 3baa2617 2022-02-16 op return enq == 0;
136 3baa2617 2022-02-16 op }
137 3baa2617 2022-02-16 op
138 8ff9231f 2022-02-16 op static void
139 8ff9231f 2022-02-16 op print_error_message(const char *prfx, struct imsg *imsg)
140 8ff9231f 2022-02-16 op {
141 8ff9231f 2022-02-16 op size_t datalen;
142 8ff9231f 2022-02-16 op char *msg;
143 8ff9231f 2022-02-16 op
144 8ff9231f 2022-02-16 op datalen = IMSG_DATA_SIZE(*imsg);
145 8ff9231f 2022-02-16 op if ((msg = calloc(1, datalen)) == NULL)
146 8ff9231f 2022-02-16 op fatal("calloc %zu", datalen);
147 8ff9231f 2022-02-16 op memcpy(msg, imsg->data, datalen);
148 8ff9231f 2022-02-16 op if (datalen == 0 || msg[datalen-1] != '\0')
149 8ff9231f 2022-02-16 op fatalx("malformed error message");
150 8ff9231f 2022-02-16 op
151 8ff9231f 2022-02-16 op log_warnx("%s: %s", prfx, msg);
152 8ff9231f 2022-02-16 op free(msg);
153 8ff9231f 2022-02-16 op }
154 8ff9231f 2022-02-16 op
155 3baa2617 2022-02-16 op static int
156 8ff9231f 2022-02-16 op show_add(struct imsg *imsg, int *ret, char ***files)
157 8ff9231f 2022-02-16 op {
158 8ff9231f 2022-02-16 op if (**files == NULL) {
159 8ff9231f 2022-02-16 op log_warnx("received more replies than file sent");
160 8ff9231f 2022-02-16 op *ret = 1;
161 8ff9231f 2022-02-16 op return 1;
162 8ff9231f 2022-02-16 op }
163 8ff9231f 2022-02-16 op
164 8ff9231f 2022-02-16 op if (imsg->hdr.type == IMSG_CTL_ERR)
165 8ff9231f 2022-02-16 op print_error_message(**files, imsg);
166 8ff9231f 2022-02-16 op else if (imsg->hdr.type == IMSG_CTL_ADD)
167 8ff9231f 2022-02-16 op log_debug("enqueued %s", **files);
168 8ff9231f 2022-02-16 op else
169 8ff9231f 2022-02-16 op fatalx("got invalid message %d", imsg->hdr.type);
170 8ff9231f 2022-02-16 op
171 8ff9231f 2022-02-16 op (*files)++;
172 8ff9231f 2022-02-16 op return (**files) == NULL;
173 8ff9231f 2022-02-16 op }
174 8ff9231f 2022-02-16 op
175 8ff9231f 2022-02-16 op static int
176 3baa2617 2022-02-16 op show_complete(struct imsg *imsg, int *ret)
177 3baa2617 2022-02-16 op {
178 63dd8e70 2022-02-17 op struct player_status s;
179 3baa2617 2022-02-16 op size_t datalen;
180 3baa2617 2022-02-16 op
181 8ff9231f 2022-02-16 op if (imsg->hdr.type == IMSG_CTL_ERR) {
182 8ff9231f 2022-02-16 op print_error_message("show failed", imsg);
183 8ff9231f 2022-02-16 op *ret = 1;
184 8ff9231f 2022-02-16 op return 1;
185 8ff9231f 2022-02-16 op }
186 8ff9231f 2022-02-16 op
187 3baa2617 2022-02-16 op datalen = IMSG_DATA_SIZE(*imsg);
188 3baa2617 2022-02-16 op if (datalen == 0)
189 3baa2617 2022-02-16 op return 1;
190 3baa2617 2022-02-16 op
191 63dd8e70 2022-02-17 op if (datalen != sizeof(s))
192 3baa2617 2022-02-16 op fatalx("%s: data size mismatch", __func__);
193 63dd8e70 2022-02-17 op memcpy(&s, imsg->data, sizeof(s));
194 63dd8e70 2022-02-17 op if (s.path[sizeof(s.path)-1] != '\0')
195 3baa2617 2022-02-16 op fatalx("%s: data corrupted?", __func__);
196 3baa2617 2022-02-16 op
197 63dd8e70 2022-02-17 op printf("%s %s\n", s.status == STATE_PLAYING ? ">" : " ", s.path);
198 3baa2617 2022-02-16 op return 0;
199 bb3f279f 2022-02-16 op }
200 bb3f279f 2022-02-16 op
201 bb3f279f 2022-02-16 op static int
202 bb3f279f 2022-02-16 op show_status(struct imsg *imsg, int *ret)
203 bb3f279f 2022-02-16 op {
204 bb3f279f 2022-02-16 op struct player_status s;
205 bb3f279f 2022-02-16 op size_t datalen;
206 bb3f279f 2022-02-16 op
207 bb3f279f 2022-02-16 op if (imsg->hdr.type == IMSG_CTL_ERR) {
208 bb3f279f 2022-02-16 op print_error_message("show failed", imsg);
209 bb3f279f 2022-02-16 op *ret = 1;
210 bb3f279f 2022-02-16 op return 1;
211 bb3f279f 2022-02-16 op }
212 bb3f279f 2022-02-16 op
213 bb3f279f 2022-02-16 op if (imsg->hdr.type != IMSG_CTL_STATUS)
214 bb3f279f 2022-02-16 op fatalx("%s: got wrong reply", __func__);
215 bb3f279f 2022-02-16 op
216 bb3f279f 2022-02-16 op datalen = IMSG_DATA_SIZE(*imsg);
217 bb3f279f 2022-02-16 op if (datalen != sizeof(s))
218 bb3f279f 2022-02-16 op fatalx("%s: data size mismatch", __func__);
219 bb3f279f 2022-02-16 op memcpy(&s, imsg->data, sizeof(s));
220 bb3f279f 2022-02-16 op if (s.path[sizeof(s.path)-1] != '\0')
221 bb3f279f 2022-02-16 op fatalx("%s: data corrupted?", __func__);
222 bb3f279f 2022-02-16 op
223 bb3f279f 2022-02-16 op switch (s.status) {
224 bb3f279f 2022-02-16 op case STATE_STOPPED:
225 bb3f279f 2022-02-16 op printf("stopped ");
226 bb3f279f 2022-02-16 op break;
227 bb3f279f 2022-02-16 op case STATE_PLAYING:
228 bb3f279f 2022-02-16 op printf("playing ");
229 bb3f279f 2022-02-16 op break;
230 bb3f279f 2022-02-16 op case STATE_PAUSED:
231 bb3f279f 2022-02-16 op printf("paused ");
232 bb3f279f 2022-02-16 op break;
233 bb3f279f 2022-02-16 op default:
234 bb3f279f 2022-02-16 op printf("unknown ");
235 bb3f279f 2022-02-16 op break;
236 bb3f279f 2022-02-16 op }
237 bb3f279f 2022-02-16 op
238 bb3f279f 2022-02-16 op printf("%s\n", s.path);
239 bb3f279f 2022-02-16 op return 1;
240 3baa2617 2022-02-16 op }
241 3baa2617 2022-02-16 op
242 3baa2617 2022-02-16 op static int
243 3baa2617 2022-02-16 op ctlaction(struct parse_result *res)
244 3baa2617 2022-02-16 op {
245 3baa2617 2022-02-16 op struct imsg imsg;
246 3baa2617 2022-02-16 op ssize_t n;
247 3baa2617 2022-02-16 op int ret = 0, done = 1;
248 8ff9231f 2022-02-16 op char **files;
249 3baa2617 2022-02-16 op
250 3baa2617 2022-02-16 op switch (res->action) {
251 3baa2617 2022-02-16 op case PLAY:
252 3baa2617 2022-02-16 op imsg_compose(ibuf, IMSG_CTL_PLAY, 0, 0, -1, NULL, 0);
253 3baa2617 2022-02-16 op break;
254 3baa2617 2022-02-16 op case PAUSE:
255 3baa2617 2022-02-16 op imsg_compose(ibuf, IMSG_CTL_PAUSE, 0, 0, -1, NULL, 0);
256 3baa2617 2022-02-16 op break;
257 3baa2617 2022-02-16 op case TOGGLE:
258 3baa2617 2022-02-16 op imsg_compose(ibuf, IMSG_CTL_TOGGLE_PLAY, 0, 0, -1, NULL, 0);
259 3baa2617 2022-02-16 op break;
260 3baa2617 2022-02-16 op case STOP:
261 3baa2617 2022-02-16 op imsg_compose(ibuf, IMSG_CTL_STOP, 0, 0, -1, NULL, 0);
262 3baa2617 2022-02-16 op break;
263 3baa2617 2022-02-16 op case RESTART:
264 3baa2617 2022-02-16 op imsg_compose(ibuf, IMSG_CTL_RESTART, 0, 0, -1, NULL, 0);
265 3baa2617 2022-02-16 op break;
266 3baa2617 2022-02-16 op case ADD:
267 8ff9231f 2022-02-16 op done = 0;
268 8ff9231f 2022-02-16 op files = res->files;
269 3baa2617 2022-02-16 op ret = enqueue_tracks(res->files);
270 3baa2617 2022-02-16 op break;
271 3baa2617 2022-02-16 op case FLUSH:
272 3baa2617 2022-02-16 op imsg_compose(ibuf, IMSG_CTL_FLUSH, 0, 0, -1, NULL, 0);
273 3baa2617 2022-02-16 op break;
274 3baa2617 2022-02-16 op case SHOW:
275 3baa2617 2022-02-16 op done = 0;
276 3baa2617 2022-02-16 op imsg_compose(ibuf, IMSG_CTL_SHOW, 0, 0, -1, NULL, 0);
277 3baa2617 2022-02-16 op break;
278 bb3f279f 2022-02-16 op case STATUS:
279 bb3f279f 2022-02-16 op done = 0;
280 bb3f279f 2022-02-16 op imsg_compose(ibuf, IMSG_CTL_STATUS, 0, 0, -1, NULL, 0);
281 af27e631 2022-02-17 op break;
282 af27e631 2022-02-17 op case NEXT:
283 af27e631 2022-02-17 op imsg_compose(ibuf, IMSG_CTL_NEXT, 0, 0, -1, NULL, 0);
284 bb3f279f 2022-02-16 op break;
285 af27e631 2022-02-17 op case PREV:
286 af27e631 2022-02-17 op imsg_compose(ibuf, IMSG_CTL_PREV, 0, 0, -1, NULL, 0);
287 af27e631 2022-02-17 op break;
288 3baa2617 2022-02-16 op case NONE:
289 3baa2617 2022-02-16 op /* action not expected */
290 3baa2617 2022-02-16 op fatalx("invalid action %u", res->action);
291 3baa2617 2022-02-16 op break;
292 3baa2617 2022-02-16 op }
293 3baa2617 2022-02-16 op
294 3baa2617 2022-02-16 op if (ret != 0)
295 3baa2617 2022-02-16 op goto end;
296 3baa2617 2022-02-16 op
297 3baa2617 2022-02-16 op imsg_flush(ibuf);
298 3baa2617 2022-02-16 op
299 3baa2617 2022-02-16 op while (!done) {
300 3baa2617 2022-02-16 op if ((n = imsg_read(ibuf)) == -1 && errno != EAGAIN)
301 3baa2617 2022-02-16 op fatalx("imsg_read error");
302 3baa2617 2022-02-16 op if (n == 0)
303 3baa2617 2022-02-16 op fatalx("pipe closed");
304 3baa2617 2022-02-16 op
305 3baa2617 2022-02-16 op while (!done) {
306 3baa2617 2022-02-16 op if ((n = imsg_get(ibuf, &imsg)) == -1)
307 3baa2617 2022-02-16 op fatalx("imsg_get error");
308 3baa2617 2022-02-16 op if (n == 0)
309 3baa2617 2022-02-16 op break;
310 3baa2617 2022-02-16 op
311 3baa2617 2022-02-16 op switch (res->action) {
312 8ff9231f 2022-02-16 op case ADD:
313 8ff9231f 2022-02-16 op done = show_add(&imsg, &ret, &files);
314 8ff9231f 2022-02-16 op break;
315 3baa2617 2022-02-16 op case SHOW:
316 3baa2617 2022-02-16 op done = show_complete(&imsg, &ret);
317 3baa2617 2022-02-16 op break;
318 bb3f279f 2022-02-16 op case STATUS:
319 bb3f279f 2022-02-16 op done = show_status(&imsg, &ret);
320 bb3f279f 2022-02-16 op break;
321 3baa2617 2022-02-16 op default:
322 3baa2617 2022-02-16 op done = 1;
323 3baa2617 2022-02-16 op break;
324 3baa2617 2022-02-16 op }
325 3baa2617 2022-02-16 op
326 3baa2617 2022-02-16 op imsg_free(&imsg);
327 3baa2617 2022-02-16 op }
328 3baa2617 2022-02-16 op }
329 3baa2617 2022-02-16 op
330 3baa2617 2022-02-16 op end:
331 3baa2617 2022-02-16 op return ret;
332 3baa2617 2022-02-16 op }
333 3baa2617 2022-02-16 op
334 3baa2617 2022-02-16 op int
335 3baa2617 2022-02-16 op ctl_noarg(struct parse_result *res, int argc, char **argv)
336 3baa2617 2022-02-16 op {
337 3baa2617 2022-02-16 op if (argc != 1)
338 3baa2617 2022-02-16 op ctl_usage(res->ctl);
339 3baa2617 2022-02-16 op return ctlaction(res);
340 3baa2617 2022-02-16 op }
341 3baa2617 2022-02-16 op
342 3baa2617 2022-02-16 op int
343 3baa2617 2022-02-16 op ctl_add(struct parse_result *res, int argc, char **argv)
344 3baa2617 2022-02-16 op {
345 3baa2617 2022-02-16 op if (argc < 2)
346 3baa2617 2022-02-16 op ctl_usage(res->ctl);
347 3baa2617 2022-02-16 op res->files = argv+1;
348 3baa2617 2022-02-16 op return ctlaction(res);
349 3baa2617 2022-02-16 op }
350 3baa2617 2022-02-16 op
351 fea541a8 2022-02-16 op static int
352 fea541a8 2022-02-16 op sockconn(void)
353 3baa2617 2022-02-16 op {
354 fea541a8 2022-02-16 op struct sockaddr_un sun;
355 fea541a8 2022-02-16 op int sock, saved_errno;
356 3baa2617 2022-02-16 op
357 fea541a8 2022-02-16 op if ((sock = socket(AF_UNIX, SOCK_STREAM, 0)) == -1)
358 3baa2617 2022-02-16 op fatal("socket");
359 3baa2617 2022-02-16 op
360 3baa2617 2022-02-16 op memset(&sun, 0, sizeof(sun));
361 3baa2617 2022-02-16 op sun.sun_family = AF_UNIX;
362 3baa2617 2022-02-16 op strlcpy(sun.sun_path, csock, sizeof(sun.sun_path));
363 fea541a8 2022-02-16 op if (connect(sock, (struct sockaddr *)&sun, sizeof(sun)) == -1) {
364 fea541a8 2022-02-16 op saved_errno = errno;
365 fea541a8 2022-02-16 op close(sock);
366 fea541a8 2022-02-16 op errno = saved_errno;
367 fea541a8 2022-02-16 op return -1;
368 fea541a8 2022-02-16 op }
369 3baa2617 2022-02-16 op
370 fea541a8 2022-02-16 op return sock;
371 fea541a8 2022-02-16 op }
372 fea541a8 2022-02-16 op
373 fea541a8 2022-02-16 op __dead void
374 fea541a8 2022-02-16 op ctl(int argc, char **argv)
375 fea541a8 2022-02-16 op {
376 fea541a8 2022-02-16 op int ctl_sock, i = 0;
377 3baa2617 2022-02-16 op
378 fea541a8 2022-02-16 op log_init(1, LOG_DAEMON);
379 fea541a8 2022-02-16 op log_setverbose(verbose);
380 fea541a8 2022-02-16 op
381 fea541a8 2022-02-16 op do {
382 fea541a8 2022-02-16 op struct timespec ts = { 0, 50000000 }; /* 0.05 seconds */
383 fea541a8 2022-02-16 op
384 fea541a8 2022-02-16 op if ((ctl_sock = sockconn()) != -1)
385 fea541a8 2022-02-16 op break;
386 fea541a8 2022-02-16 op if (errno != ENOENT && errno != ECONNREFUSED)
387 fea541a8 2022-02-16 op fatal("connect %s", csock);
388 fea541a8 2022-02-16 op
389 fea541a8 2022-02-16 op if (i == 0)
390 fea541a8 2022-02-16 op spawn_daemon();
391 fea541a8 2022-02-16 op
392 fea541a8 2022-02-16 op nanosleep(&ts, NULL);
393 fea541a8 2022-02-16 op } while (++i < 20);
394 fea541a8 2022-02-16 op
395 fea541a8 2022-02-16 op if (ctl_sock == -1)
396 fea541a8 2022-02-16 op fatalx("failed to connect to the daemon");
397 fea541a8 2022-02-16 op
398 3baa2617 2022-02-16 op ibuf = xmalloc(sizeof(*ibuf));
399 3baa2617 2022-02-16 op imsg_init(ibuf, ctl_sock);
400 3baa2617 2022-02-16 op
401 3baa2617 2022-02-16 op optreset = 1;
402 3baa2617 2022-02-16 op optind = 1;
403 3baa2617 2022-02-16 op
404 3baa2617 2022-02-16 op exit(parse(argc, argv));
405 3baa2617 2022-02-16 op }