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