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/queue.h>
19 3baa2617 2022-02-16 op #include <sys/uio.h>
20 3baa2617 2022-02-16 op
21 3baa2617 2022-02-16 op #include <limits.h>
22 3baa2617 2022-02-16 op
23 3baa2617 2022-02-16 op #include <assert.h>
24 3baa2617 2022-02-16 op #include <errno.h>
25 3baa2617 2022-02-16 op #include <event.h>
26 3baa2617 2022-02-16 op #include <poll.h>
27 3baa2617 2022-02-16 op #include <signal.h>
28 3baa2617 2022-02-16 op #include <sndio.h>
29 14be015f 2022-02-17 op #include <stdio.h>
30 3baa2617 2022-02-16 op #include <stdlib.h>
31 3baa2617 2022-02-16 op #include <stdint.h>
32 3baa2617 2022-02-16 op #include <imsg.h>
33 3baa2617 2022-02-16 op #include <string.h>
34 3baa2617 2022-02-16 op #include <syslog.h>
35 3baa2617 2022-02-16 op #include <unistd.h>
36 3baa2617 2022-02-16 op
37 3baa2617 2022-02-16 op #include "amused.h"
38 3baa2617 2022-02-16 op #include "log.h"
39 3baa2617 2022-02-16 op #include "xmalloc.h"
40 3baa2617 2022-02-16 op
41 5a4b3030 2022-03-09 op struct sio_hdl *hdl;
42 c0180200 2022-06-10 op struct pollfd *player_pfds;
43 5a4b3030 2022-03-09 op static struct imsgbuf *ibuf;
44 3baa2617 2022-02-16 op
45 c0180200 2022-06-10 op static int stopped = 1;
46 3baa2617 2022-02-16 op static int nextfd = -1;
47 3baa2617 2022-02-16 op
48 3baa2617 2022-02-16 op volatile sig_atomic_t halted;
49 3baa2617 2022-02-16 op
50 ee5ab27d 2022-06-09 op void
51 3baa2617 2022-02-16 op player_signal_handler(int signo)
52 3baa2617 2022-02-16 op {
53 3baa2617 2022-02-16 op halted = 1;
54 3baa2617 2022-02-16 op }
55 3baa2617 2022-02-16 op
56 3baa2617 2022-02-16 op int
57 e24324f1 2022-02-21 op player_setup(int bits, int rate, int channels)
58 3baa2617 2022-02-16 op {
59 4d8a06d4 2022-06-10 op static struct sio_par par;
60 4d8a06d4 2022-06-10 op int nfds, fpct;
61 3baa2617 2022-02-16 op
62 a728254f 2022-02-23 op log_debug("%s: bits=%d, rate=%d, channels=%d", __func__,
63 a728254f 2022-02-23 op bits, rate, channels);
64 4d8a06d4 2022-06-10 op
65 4d8a06d4 2022-06-10 op fpct = (rate*5)/100;
66 4d8a06d4 2022-06-10 op
67 4d8a06d4 2022-06-10 op /* don't stop if the parameters are the same */
68 4d8a06d4 2022-06-10 op if (bits == par.bits && channels == par.pchan &&
69 f5237736 2022-06-10 op par.rate - fpct <= rate && rate <= par.rate + fpct) {
70 f5237736 2022-06-10 op if (stopped)
71 f5237736 2022-06-10 op goto start;
72 f5237736 2022-06-10 op return 0;
73 f5237736 2022-06-10 op }
74 3baa2617 2022-02-16 op
75 c0180200 2022-06-10 op again:
76 c0180200 2022-06-10 op if (!stopped) {
77 c0180200 2022-06-10 op sio_stop(hdl);
78 c0180200 2022-06-10 op stopped = 1;
79 c0180200 2022-06-10 op }
80 3baa2617 2022-02-16 op
81 3baa2617 2022-02-16 op sio_initpar(&par);
82 e24324f1 2022-02-21 op par.bits = bits;
83 3baa2617 2022-02-16 op par.rate = rate;
84 7fc831ea 2022-02-18 op par.pchan = channels;
85 c0180200 2022-06-10 op if (!sio_setpar(hdl, &par)) {
86 c0180200 2022-06-10 op if (errno == EAGAIN) {
87 463ce879 2022-06-10 op nfds = sio_pollfd(hdl, player_pfds + 1, POLLOUT);
88 c0180200 2022-06-10 op if (poll(player_pfds + 1, nfds, INFTIM) == -1)
89 c0180200 2022-06-10 op fatal("poll");
90 c0180200 2022-06-10 op goto again;
91 c0180200 2022-06-10 op }
92 f002c42a 2022-05-09 op log_warnx("invalid params (bits=%d, rate=%d, channels=%d",
93 f002c42a 2022-05-09 op bits, rate, channels);
94 7fc831ea 2022-02-18 op return -1;
95 7fc831ea 2022-02-18 op }
96 c0180200 2022-06-10 op if (!sio_getpar(hdl, &par)) {
97 c0180200 2022-06-10 op log_warnx("can't get params");
98 c0180200 2022-06-10 op return -1;
99 c0180200 2022-06-10 op }
100 7fc831ea 2022-02-18 op
101 e24324f1 2022-02-21 op if (par.bits != bits || par.pchan != channels) {
102 7fc831ea 2022-02-18 op log_warnx("failed to set params");
103 3baa2617 2022-02-16 op return -1;
104 3baa2617 2022-02-16 op }
105 3baa2617 2022-02-16 op
106 3baa2617 2022-02-16 op /* TODO: check the sample rate? */
107 3baa2617 2022-02-16 op
108 f5237736 2022-06-10 op start:
109 3baa2617 2022-02-16 op if (!sio_start(hdl)) {
110 3baa2617 2022-02-16 op log_warn("sio_start");
111 3baa2617 2022-02-16 op return -1;
112 3baa2617 2022-02-16 op }
113 c0180200 2022-06-10 op stopped = 0;
114 3baa2617 2022-02-16 op return 0;
115 3baa2617 2022-02-16 op }
116 3baa2617 2022-02-16 op
117 3baa2617 2022-02-16 op /* process only one message */
118 3baa2617 2022-02-16 op int
119 3baa2617 2022-02-16 op player_dispatch(void)
120 3baa2617 2022-02-16 op {
121 fc4a38af 2022-05-19 op struct pollfd pfd;
122 3baa2617 2022-02-16 op struct imsg imsg;
123 3baa2617 2022-02-16 op ssize_t n;
124 3baa2617 2022-02-16 op int ret;
125 3baa2617 2022-02-16 op
126 3baa2617 2022-02-16 op if (halted != 0)
127 3baa2617 2022-02-16 op return IMSG_STOP;
128 fc4a38af 2022-05-19 op
129 926ee836 2022-05-19 op again:
130 3baa2617 2022-02-16 op if ((n = imsg_get(ibuf, &imsg)) == -1)
131 3baa2617 2022-02-16 op fatal("imsg_get");
132 926ee836 2022-05-19 op if (n == 0) {
133 926ee836 2022-05-19 op pfd.fd = ibuf->fd;
134 926ee836 2022-05-19 op pfd.events = POLLIN;
135 926ee836 2022-05-19 op if (poll(&pfd, 1, INFTIM) == -1)
136 926ee836 2022-05-19 op fatal("poll");
137 926ee836 2022-05-19 op if ((n = imsg_read(ibuf)) == -1 && errno != EAGAIN)
138 926ee836 2022-05-19 op fatal("imsg_read");
139 926ee836 2022-05-19 op if (n == 0)
140 926ee836 2022-05-19 op fatalx("pipe closed");
141 926ee836 2022-05-19 op goto again;
142 926ee836 2022-05-19 op }
143 3baa2617 2022-02-16 op
144 3baa2617 2022-02-16 op ret = imsg.hdr.type;
145 3baa2617 2022-02-16 op switch (imsg.hdr.type) {
146 3baa2617 2022-02-16 op case IMSG_PLAY:
147 6e4f8947 2022-06-09 op if (nextfd != -1)
148 6e4f8947 2022-06-09 op fatalx("track already enqueued");
149 6e4f8947 2022-06-09 op if ((nextfd = imsg.fd) == -1)
150 6e4f8947 2022-06-09 op fatalx("%s: got invalid file descriptor", __func__);
151 6e4f8947 2022-06-09 op log_debug("song enqueued");
152 3baa2617 2022-02-16 op ret = IMSG_STOP;
153 3baa2617 2022-02-16 op break;
154 3baa2617 2022-02-16 op case IMSG_RESUME:
155 3baa2617 2022-02-16 op case IMSG_PAUSE:
156 3baa2617 2022-02-16 op case IMSG_STOP:
157 3baa2617 2022-02-16 op break;
158 3baa2617 2022-02-16 op default:
159 3baa2617 2022-02-16 op fatalx("unknown imsg %d", imsg.hdr.type);
160 3baa2617 2022-02-16 op }
161 3baa2617 2022-02-16 op
162 fd90976c 2022-06-09 op imsg_free(&imsg);
163 3baa2617 2022-02-16 op return ret;
164 3baa2617 2022-02-16 op }
165 3baa2617 2022-02-16 op
166 3baa2617 2022-02-16 op void
167 3baa2617 2022-02-16 op player_senderr(void)
168 3baa2617 2022-02-16 op {
169 3baa2617 2022-02-16 op imsg_compose(ibuf, IMSG_ERR, 0, 0, -1, NULL, 0);
170 3baa2617 2022-02-16 op imsg_flush(ibuf);
171 3baa2617 2022-02-16 op }
172 3baa2617 2022-02-16 op
173 3baa2617 2022-02-16 op void
174 3baa2617 2022-02-16 op player_sendeof(void)
175 3baa2617 2022-02-16 op {
176 3baa2617 2022-02-16 op imsg_compose(ibuf, IMSG_EOF, 0, 0, -1, NULL, 0);
177 3baa2617 2022-02-16 op imsg_flush(ibuf);
178 3baa2617 2022-02-16 op }
179 3baa2617 2022-02-16 op
180 06412529 2022-05-09 op int
181 3baa2617 2022-02-16 op player_playnext(void)
182 3baa2617 2022-02-16 op {
183 bf19b03e 2022-05-09 op static char buf[512];
184 bf19b03e 2022-05-09 op ssize_t r;
185 3baa2617 2022-02-16 op int fd = nextfd;
186 3baa2617 2022-02-16 op
187 3baa2617 2022-02-16 op assert(nextfd != -1);
188 3baa2617 2022-02-16 op nextfd = -1;
189 3baa2617 2022-02-16 op
190 bf19b03e 2022-05-09 op r = read(fd, buf, sizeof(buf));
191 bf19b03e 2022-05-09 op
192 bf19b03e 2022-05-09 op /* 8 byte is the larger magic number */
193 bf19b03e 2022-05-09 op if (r < 8) {
194 a975dca9 2022-05-10 op log_warn("read failed");
195 bf19b03e 2022-05-09 op goto err;
196 bf19b03e 2022-05-09 op }
197 bf19b03e 2022-05-09 op
198 bf19b03e 2022-05-09 op if (lseek(fd, 0, SEEK_SET) == -1) {
199 bf19b03e 2022-05-09 op log_warn("lseek failed");
200 bf19b03e 2022-05-09 op goto err;
201 bf19b03e 2022-05-09 op }
202 bf19b03e 2022-05-09 op
203 bf19b03e 2022-05-09 op if (memcmp(buf, "fLaC", 4) == 0)
204 bf19b03e 2022-05-09 op return play_flac(fd);
205 bf19b03e 2022-05-09 op if (memcmp(buf, "ID3", 3) == 0 ||
206 bf19b03e 2022-05-09 op memcmp(buf, "\xFF\xFB", 2) == 0)
207 bf19b03e 2022-05-09 op return play_mp3(fd);
208 bf19b03e 2022-05-09 op if (memmem(buf, r, "OpusHead", 8) != NULL)
209 06412529 2022-05-09 op return play_opus(fd);
210 bf19b03e 2022-05-09 op if (memmem(buf, r, "OggS", 4) != NULL)
211 bf19b03e 2022-05-09 op return play_oggvorbis(fd);
212 25cb72fb 2022-02-22 op
213 a975dca9 2022-05-10 op log_warnx("unknown file type");
214 bf19b03e 2022-05-09 op err:
215 184600a8 2022-05-09 op close(fd);
216 06412529 2022-05-09 op return -1;
217 3baa2617 2022-02-16 op }
218 3baa2617 2022-02-16 op
219 3baa2617 2022-02-16 op int
220 3baa2617 2022-02-16 op player_pause(void)
221 3baa2617 2022-02-16 op {
222 3baa2617 2022-02-16 op int r;
223 3baa2617 2022-02-16 op
224 3baa2617 2022-02-16 op r = player_dispatch();
225 3baa2617 2022-02-16 op return r == IMSG_RESUME;
226 3baa2617 2022-02-16 op }
227 3baa2617 2022-02-16 op
228 3baa2617 2022-02-16 op int
229 3baa2617 2022-02-16 op player_shouldstop(void)
230 3baa2617 2022-02-16 op {
231 3baa2617 2022-02-16 op switch (player_dispatch()) {
232 3baa2617 2022-02-16 op case IMSG_PAUSE:
233 3baa2617 2022-02-16 op if (player_pause())
234 3baa2617 2022-02-16 op break;
235 3baa2617 2022-02-16 op /* fallthrough */
236 3baa2617 2022-02-16 op case IMSG_STOP:
237 3baa2617 2022-02-16 op return 1;
238 3baa2617 2022-02-16 op }
239 3baa2617 2022-02-16 op
240 3baa2617 2022-02-16 op return 0;
241 3baa2617 2022-02-16 op }
242 3baa2617 2022-02-16 op
243 3baa2617 2022-02-16 op int
244 2139c525 2022-03-09 op play(const void *buf, size_t len)
245 2139c525 2022-03-09 op {
246 c0180200 2022-06-10 op size_t w;
247 c0180200 2022-06-10 op int nfds, revents, r;
248 c0180200 2022-06-10 op
249 c0180200 2022-06-10 op while (len != 0) {
250 c0180200 2022-06-10 op nfds = sio_pollfd(hdl, player_pfds + 1, POLLOUT);
251 c0180200 2022-06-10 op r = poll(player_pfds, nfds + 1, INFTIM);
252 c0180200 2022-06-10 op if (r == -1)
253 c0180200 2022-06-10 op fatal("poll");
254 c0180200 2022-06-10 op
255 c0180200 2022-06-10 op if (player_pfds[0].revents & (POLLHUP|POLLIN)) {
256 c0180200 2022-06-10 op if (player_shouldstop()) {
257 c0180200 2022-06-10 op sio_flush(hdl);
258 c0180200 2022-06-10 op stopped = 1;
259 c0180200 2022-06-10 op return 0;
260 c0180200 2022-06-10 op }
261 c0180200 2022-06-10 op }
262 c0180200 2022-06-10 op
263 c0180200 2022-06-10 op revents = sio_revents(hdl, player_pfds + 1);
264 c0180200 2022-06-10 op if (revents & POLLHUP)
265 c0180200 2022-06-10 op fatalx("sndio hang-up");
266 c0180200 2022-06-10 op if (revents & POLLOUT) {
267 c0180200 2022-06-10 op w = sio_write(hdl, buf, len);
268 c0180200 2022-06-10 op len -= w;
269 c0180200 2022-06-10 op buf += w;
270 c0180200 2022-06-10 op }
271 c0180200 2022-06-10 op }
272 c0180200 2022-06-10 op
273 2139c525 2022-03-09 op return 1;
274 2139c525 2022-03-09 op }
275 2139c525 2022-03-09 op
276 2139c525 2022-03-09 op int
277 3baa2617 2022-02-16 op player(int debug, int verbose)
278 3baa2617 2022-02-16 op {
279 fc4a38af 2022-05-19 op int r;
280 fc4a38af 2022-05-19 op
281 3baa2617 2022-02-16 op log_init(debug, LOG_DAEMON);
282 3baa2617 2022-02-16 op log_setverbose(verbose);
283 3baa2617 2022-02-16 op
284 3baa2617 2022-02-16 op setproctitle("player");
285 3baa2617 2022-02-16 op log_procinit("player");
286 3baa2617 2022-02-16 op
287 3baa2617 2022-02-16 op #if 0
288 3baa2617 2022-02-16 op {
289 3baa2617 2022-02-16 op static int attached;
290 3baa2617 2022-02-16 op
291 3baa2617 2022-02-16 op while (!attached)
292 3baa2617 2022-02-16 op sleep(1);
293 3baa2617 2022-02-16 op }
294 3baa2617 2022-02-16 op #endif
295 3baa2617 2022-02-16 op
296 aecca17c 2022-06-10 op if ((hdl = sio_open(SIO_DEVANY, SIO_PLAY, 1)) == NULL)
297 aecca17c 2022-06-10 op fatal("sio_open");
298 3baa2617 2022-02-16 op
299 c0180200 2022-06-10 op /* allocate one extra for imsg */
300 c0180200 2022-06-10 op player_pfds = calloc(sio_nfds(hdl) + 1, sizeof(*player_pfds));
301 c0180200 2022-06-10 op if (player_pfds == NULL)
302 c0180200 2022-06-10 op fatal("calloc");
303 c0180200 2022-06-10 op
304 c0180200 2022-06-10 op player_pfds[0].events = POLLIN;
305 c0180200 2022-06-10 op player_pfds[0].fd = 3;
306 c0180200 2022-06-10 op
307 3baa2617 2022-02-16 op ibuf = xmalloc(sizeof(*ibuf));
308 3baa2617 2022-02-16 op imsg_init(ibuf, 3);
309 3baa2617 2022-02-16 op
310 3baa2617 2022-02-16 op signal(SIGINT, player_signal_handler);
311 3baa2617 2022-02-16 op signal(SIGTERM, player_signal_handler);
312 3baa2617 2022-02-16 op
313 3baa2617 2022-02-16 op signal(SIGHUP, SIG_IGN);
314 3baa2617 2022-02-16 op signal(SIGPIPE, SIG_IGN);
315 3baa2617 2022-02-16 op
316 251e00ff 2022-03-10 op if (pledge("stdio recvfd audio", NULL) == -1)
317 3baa2617 2022-02-16 op fatal("pledge");
318 3baa2617 2022-02-16 op
319 3baa2617 2022-02-16 op while (!halted) {
320 3baa2617 2022-02-16 op while (nextfd == -1)
321 1489a53d 2022-02-16 op player_dispatch();
322 06412529 2022-05-09 op
323 239029b6 2022-05-09 op r = player_playnext();
324 239029b6 2022-05-09 op if (r == -1)
325 06412529 2022-05-09 op player_senderr();
326 239029b6 2022-05-09 op if (r == 0)
327 06412529 2022-05-09 op player_sendeof();
328 3baa2617 2022-02-16 op }
329 3baa2617 2022-02-16 op
330 3baa2617 2022-02-16 op return 0;
331 3baa2617 2022-02-16 op }