]> git.tuebingen.mpg.de Git - paraslash.git/blob - afs.c
f9dd7583df42a3b5d8bf48fe36ccdea88020c3d4
[paraslash.git] / afs.c
1 /* Copyright (C) 2007 Andre Noll <maan@tuebingen.mpg.de>, see file COPYING. */
2
3 /** \file afs.c Paraslash's audio file selector. */
4
5 #include <netinet/in.h>
6 #include <sys/socket.h>
7 #include <regex.h>
8 #include <signal.h>
9 #include <fnmatch.h>
10 #include <osl.h>
11 #include <lopsub.h>
12 #include <arpa/inet.h>
13 #include <sys/un.h>
14 #include <netdb.h>
15 #include <lopsub.h>
16
17 #include "server.lsg.h"
18 #include "server_cmd.lsg.h"
19 #include "para.h"
20 #include "error.h"
21 #include "crypt.h"
22 #include "string.h"
23 #include "afh.h"
24 #include "afs.h"
25 #include "net.h"
26 #include "server.h"
27 #include "daemon.h"
28 #include "ipc.h"
29 #include "list.h"
30 #include "sched.h"
31 #include "fd.h"
32 #include "signal.h"
33 #include "mood.h"
34 #include "sideband.h"
35 #include "command.h"
36
37 static struct afs_table afs_tables[] = {
38         {.init = aft_init, .name = "audio_files"},
39         {.init = attribute_init, .name = "attributes"},
40         {.init = score_init, .name = "scores"},
41         {.init = moods_init, .name = "moods"},
42         {.init = lyrics_init, .name = "lyrics"},
43         {.init = images_init, .name = "images"},
44         {.init = playlists_init, .name = "playlists"},
45 };
46
47 #define NUM_AFS_TABLES ARRAY_SIZE(afs_tables)
48
49 struct command_task {
50         /** The file descriptor for the local socket. */
51         int fd;
52         /** The associated task structure. */
53         struct task *task;
54 };
55
56 extern int mmd_mutex;
57 extern struct misc_meta_data *mmd;
58
59 static int server_socket;
60 static struct command_task command_task_struct;
61 static struct signal_task *signal_task;
62
63 static enum play_mode current_play_mode;
64 static char *current_mop; /* mode or playlist specifier. NULL means dummy mood */
65
66 extern uint32_t afs_socket_cookie;
67
68 /**
69  * Passed from command handlers to afs.
70  *
71  * Command handlers cannot change the afs database directly because they run in
72  * a separate process. The callback query structure circumvents this
73  * restriction as follows. To instruct the afs process to execute a particular
74  * function, the command hander writes an instance of this structure to a
75  * shared memory area, along with the arguments to the callback function. The
76  * identifier of the shared memory area is transferred to the afs process via
77  * the command socket.
78  *
79  * The afs process reads the shared memory id from the command socket, attaches
80  * the corresponding area, and calls the callback function whose address is
81  * stored in the area.
82  *
83  * The command output, if any, is transferred back to the command handler in
84  * the same way: The afs process writes the output to a second shared memory
85  * area together with a fixed size metadata header whose format corresponds to
86  * the \ref callback_result structure. The identifier of this area is sent back
87  * to the command handler which attaches the area and forwards the output to
88  * the remote client.
89  *
90  * \sa \ref struct callback_result.
91  */
92 struct callback_query {
93         /** The function to be called. */
94         afs_callback *handler;
95         /** The number of bytes of the query */
96         size_t query_size;
97 };
98
99 /**
100  * Structure embedded in the result of a callback.
101  *
102  * If the callback produced a result, an instance of that structure is embedded
103  * into the shared memory area holding the result, mainly to let the command
104  * handler know the size of the result.
105  *
106  * \sa \ref struct callback_query.
107  */
108 struct callback_result {
109         /** The number of bytes of the result. */
110         size_t result_size;
111         /** The band designator (loglevel for the result). */
112         uint8_t band;
113 };
114
115 static int dispatch_result(int result_shmid, callback_result_handler *handler,
116                 void *private_result_data)
117 {
118         struct osl_object result;
119         void *result_shm;
120         /* must attach r/w as result.data might get encrypted in-place. */
121         int ret2, ret = shm_attach(result_shmid, ATTACH_RW, &result_shm);
122         struct callback_result *cr = result_shm;
123
124         if (ret < 0) {
125                 PARA_ERROR_LOG("attach failed: %s\n", para_strerror(-ret));
126                 return ret;
127         }
128         result.size = cr->result_size;
129         result.data = result_shm + sizeof(*cr);
130         assert(handler);
131         ret = handler(&result, cr->band, private_result_data);
132         ret2 = shm_detach(result_shm);
133         if (ret2 < 0) {
134                 PARA_ERROR_LOG("detach failed: %s\n", para_strerror(-ret2));
135                 if (ret >= 0)
136                         ret = ret2;
137         }
138         return ret;
139 }
140
141 /**
142  * Ask the afs process to call a given function.
143  *
144  * \param f The function to be called.
145  * \param query Pointer to arbitrary data for the callback.
146  * \param result_handler Called for each shm area sent by the callback.
147  * \param private_result_data Passed verbatim to \a result_handler.
148  *
149  * This function creates a socket for communication with the afs process and a
150  * shared memory area (sma) to which the buffer pointed to by \a query is
151  * copied.  It then notifies the afs process that the callback function \a f
152  * should be executed by sending the shared memory identifier (shmid) to the
153  * socket.
154  *
155  * If the callback produces a result, it sends any number of shared memory
156  * identifiers back via the socket. For each such identifier received, \a
157  * result_handler is called. The contents of the sma identified by the received
158  * shmid are passed to that function as an osl object. The private_result_data
159  * pointer is passed as the second argument to \a result_handler.
160  *
161  * \return Number of shared memory areas dispatched on success, negative on
162  * errors.
163  */
164 int send_callback_request(afs_callback *f, struct osl_object *query,
165                 callback_result_handler *result_handler,
166                 void *private_result_data)
167 {
168         struct callback_query *cq;
169         int ret, fd = -1, query_shmid, result_shmid;
170         void *query_shm;
171         char buf[sizeof(afs_socket_cookie) + sizeof(int)];
172         size_t query_shm_size = sizeof(*cq);
173         int dispatch_error = 0, num_dispatched = 0;
174
175         if (query)
176                 query_shm_size += query->size;
177         ret = shm_new(query_shm_size);
178         if (ret < 0)
179                 return ret;
180         query_shmid = ret;
181         ret = shm_attach(query_shmid, ATTACH_RW, &query_shm);
182         if (ret < 0)
183                 goto out;
184         cq = query_shm;
185         cq->handler = f;
186         cq->query_size = query_shm_size - sizeof(*cq);
187
188         if (query)
189                 memcpy(query_shm + sizeof(*cq), query->data, query->size);
190         ret = shm_detach(query_shm);
191         if (ret < 0)
192                 goto out;
193
194         *(uint32_t *)buf = afs_socket_cookie;
195         *(int *)(buf + sizeof(afs_socket_cookie)) = query_shmid;
196
197         ret = connect_local_socket(OPT_STRING_VAL(AFS_SOCKET));
198         if (ret < 0)
199                 goto out;
200         fd = ret;
201         ret = write_all(fd, buf, sizeof(buf));
202         if (ret < 0)
203                 goto out;
204         /*
205          * Read all shmids from afs.
206          *
207          * Even if the dispatcher returns an error we _must_ continue to read
208          * shmids from fd so that we can destroy all shared memory areas that
209          * have been created for us by the afs process.
210          */
211         for (;;) {
212                 ret = recv_bin_buffer(fd, buf, sizeof(int));
213                 if (ret <= 0)
214                         goto out;
215                 assert(ret == sizeof(int));
216                 ret = *(int *) buf;
217                 assert(ret > 0);
218                 result_shmid = ret;
219                 ret = dispatch_result(result_shmid, result_handler,
220                         private_result_data);
221                 if (ret < 0 && dispatch_error >= 0)
222                         dispatch_error = ret;
223                 ret = shm_destroy(result_shmid);
224                 if (ret < 0)
225                         PARA_CRIT_LOG("destroy result failed: %s\n",
226                                 para_strerror(-ret));
227                 num_dispatched++;
228         }
229 out:
230         if (shm_destroy(query_shmid) < 0)
231                 PARA_CRIT_LOG("shm destroy error\n");
232         if (fd >= 0)
233                 close(fd);
234         if (dispatch_error < 0)
235                 return dispatch_error;
236         if (ret < 0)
237                 return ret;
238         return num_dispatched;
239 }
240
241 /**
242  * Wrapper for send_callback_request() which passes a lopsub parse result.
243  *
244  * \param f The callback function.
245  * \param cmd Needed for (de-)serialization.
246  * \param lpr Must match cmd.
247  * \param private_result_data Passed to send_callback_request().
248  *
249  * This function serializes the parse result given by the lpr pointer into a
250  * buffer. The buffer is sent as the query to the afs process with the callback
251  * mechanism.
252  *
253  * \return The return value of the underlying call to send_callback_request().
254  */
255 int send_lls_callback_request(afs_callback *f,
256                 const struct lls_command * const cmd,
257                 struct lls_parse_result *lpr, void *private_result_data)
258 {
259         struct osl_object query;
260         char *buf = NULL;
261         int ret = lls_serialize_parse_result(lpr, cmd, &buf, &query.size);
262
263         assert(ret >= 0);
264         query.data = buf;
265         ret = send_callback_request(f, &query, afs_cb_result_handler,
266                 private_result_data);
267         free(buf);
268         return ret;
269 }
270
271 static int action_if_pattern_matches(struct osl_row *row, void *data)
272 {
273         struct pattern_match_data *pmd = data;
274         struct osl_object name_obj;
275         const char *p, *name;
276         int i, ret;
277
278         ret = osl(osl_get_object(pmd->table, row, pmd->match_col_num,
279                 &name_obj));
280         if (ret < 0)
281                 return ret;
282         name = (char *)name_obj.data;
283         if ((!name || !*name) && (pmd->pm_flags & PM_SKIP_EMPTY_NAME))
284                 return 1;
285         if (lls_num_inputs(pmd->lpr) == 0) {
286                 if (pmd->pm_flags & PM_NO_PATTERN_MATCHES_EVERYTHING) {
287                         pmd->num_matches++;
288                         return pmd->action(pmd->table, row, name, pmd->data);
289                 }
290         }
291         i = pmd->input_skip;
292         for (;;) {
293                 if (i >= lls_num_inputs(pmd->lpr))
294                         break;
295                 p = lls_input(i, pmd->lpr);
296                 ret = fnmatch(p, name, pmd->fnmatch_flags);
297                 if (ret != FNM_NOMATCH) {
298                         if (ret != 0)
299                                 return -E_FNMATCH;
300                         ret = pmd->action(pmd->table, row, name, pmd->data);
301                         if (ret >= 0)
302                                 pmd->num_matches++;
303                         return ret;
304
305                 }
306                 i++;
307         }
308         return 1;
309 }
310
311 /**
312  * Execute the given function for each matching row.
313  *
314  * \param pmd Describes what to match and how.
315  *
316  * \return Standard.
317  */
318 int for_each_matching_row(struct pattern_match_data *pmd)
319 {
320         if (pmd->pm_flags & PM_REVERSE_LOOP)
321                 return osl(osl_rbtree_loop_reverse(pmd->table, pmd->loop_col_num, pmd,
322                         action_if_pattern_matches));
323         return osl(osl_rbtree_loop(pmd->table, pmd->loop_col_num, pmd,
324                         action_if_pattern_matches));
325 }
326
327 /**
328  * Compare two osl objects of string type.
329  *
330  * \param obj1 Pointer to the first object.
331  * \param obj2 Pointer to the second object.
332  *
333  * In any case, only \p MIN(obj1->size, obj2->size) characters of each string
334  * are taken into account.
335  *
336  * \return It returns an integer less than, equal to, or greater than zero if
337  * \a obj1 is found, respectively, to be less than, to match, or be greater than
338  * obj2.
339  *
340  * \sa strcmp(3), strncmp(3).
341  */
342 int string_compare(const struct osl_object *obj1, const struct osl_object *obj2)
343 {
344         const char *str1 = obj1->data;
345         const char *str2 = obj2->data;
346         return strncmp(str1, str2, PARA_MIN(obj1->size, obj2->size));
347 }
348
349 static int pass_afd(int fd, char *buf, size_t size)
350 {
351         struct msghdr msg = {.msg_iov = NULL};
352         struct cmsghdr *cmsg;
353         char control[255] __a_aligned(8);
354         int ret;
355         struct iovec iov;
356
357         iov.iov_base = buf;
358         iov.iov_len  = size;
359
360         msg.msg_iov = &iov;
361         msg.msg_iovlen = 1;
362
363         msg.msg_control = control;
364         msg.msg_controllen = sizeof(control);
365
366         cmsg = CMSG_FIRSTHDR(&msg);
367         cmsg->cmsg_level = SOL_SOCKET;
368         cmsg->cmsg_type = SCM_RIGHTS;
369         cmsg->cmsg_len = CMSG_LEN(sizeof(int));
370         *(int *)CMSG_DATA(cmsg) = fd;
371
372         /* Sum of the length of all control messages in the buffer */
373         msg.msg_controllen = cmsg->cmsg_len;
374         PARA_DEBUG_LOG("passing %zu bytes and fd %d\n", size, fd);
375         ret = sendmsg(server_socket, &msg, 0);
376         if (ret < 0) {
377                 ret = -ERRNO_TO_PARA_ERROR(errno);
378                 return ret;
379         }
380         return 1;
381 }
382
383 /**
384  * Pass the fd of the next audio file to the server process.
385  *
386  * This stores all information for streaming the "best" audio file in a shared
387  * memory area. The id of that area and an open file descriptor for the next
388  * audio file are passed to the server process.
389  *
390  * \return Standard.
391  *
392  * \sa \ref open_and_update_audio_file().
393  */
394 static int open_next_audio_file(void)
395 {
396         int ret, shmid, fd;
397         char buf[8];
398
399         ret = open_and_update_audio_file(&fd);
400         if (ret < 0) {
401                 if (ret != -OSL_ERRNO_TO_PARA_ERROR(E_OSL_RB_KEY_NOT_FOUND))
402                         PARA_ERROR_LOG("%s\n", para_strerror(-ret));
403                 goto no_admissible_files;
404         }
405         shmid = ret;
406         if (!write_ok(server_socket)) {
407                 ret = -E_AFS_SOCKET;
408                 goto destroy;
409         }
410         *(uint32_t *)buf = NEXT_AUDIO_FILE;
411         *(uint32_t *)(buf + 4) = (uint32_t)shmid;
412         ret = pass_afd(fd, buf, 8);
413         close(fd);
414         if (ret >= 0)
415                 return ret;
416 destroy:
417         shm_destroy(shmid);
418         return ret;
419 no_admissible_files:
420         *(uint32_t *)buf = NO_ADMISSIBLE_FILES;
421         *(uint32_t *)(buf + 4) = (uint32_t)0;
422         return write_all(server_socket, buf, 8);
423 }
424
425 static int activate_mood_or_playlist(const char *arg, int *num_admissible,
426                 char **errmsg)
427 {
428         enum play_mode mode;
429         int ret;
430
431         if (!arg) {
432                 mode = PLAY_MODE_MOOD;
433                 ret = change_current_mood(NULL, errmsg);
434                 if (ret < 0) {
435                         if (num_admissible)
436                                 *num_admissible = 0;
437                         return ret;
438                 }
439         } else {
440                 if (!strncmp(arg, "p/", 2)) {
441                         ret = playlist_open(arg + 2);
442                         if (ret < 0 && errmsg)
443                                 *errmsg = make_message( "could not open %s",
444                                         arg);
445                         mode = PLAY_MODE_PLAYLIST;
446                 } else if (!strncmp(arg, "m/", 2)) {
447                         ret = change_current_mood(arg + 2, errmsg);
448                         mode = PLAY_MODE_MOOD;
449                 } else {
450                         if (errmsg)
451                                 *errmsg = make_message("%s: parse error", arg);
452                         return -ERRNO_TO_PARA_ERROR(EINVAL);
453                 }
454                 if (ret < 0)
455                         return ret;
456         }
457         if (num_admissible)
458                 *num_admissible = ret;
459         current_play_mode = mode;
460         /*
461          * We get called with arg == current_mop from the signal dispatcher
462          * after SIGHUP and from the error path of the select command to
463          * re-select the current mood or playlist. In this case the assignment
464          * to current_mop below would result in a use-after-free condition.
465          */
466         if (arg != current_mop) {
467                 free(current_mop);
468                 if (arg) {
469                         current_mop = para_strdup(arg);
470                         mutex_lock(mmd_mutex);
471                         strncpy(mmd->afs_mode_string, arg,
472                                 sizeof(mmd->afs_mode_string));
473                         mmd->afs_mode_string[sizeof(mmd->afs_mode_string) - 1] = '\0';
474                         mmd->events++;
475                         mutex_unlock(mmd_mutex);
476                 } else {
477                         mutex_lock(mmd_mutex);
478                         strcpy(mmd->afs_mode_string, "dummy");
479                         mmd->events++;
480                         mutex_unlock(mmd_mutex);
481                         current_mop = NULL;
482                 }
483         }
484         return 1;
485 }
486
487 /**
488  * Result handler for sending data to the para_client process.
489  *
490  * \param result The data to be sent.
491  * \param band The band designator.
492  * \param private Pointer to the command context.
493  *
494  * \return The return value of the underlying call to \ref command.c::send_sb.
495  *
496  * \sa \ref callback_result_handler, \ref command.c::send_sb.
497  */
498 int afs_cb_result_handler(struct osl_object *result, uint8_t band,
499                 void *private)
500 {
501         struct command_context *cc = private;
502
503         assert(cc);
504         switch (band) {
505         case SBD_OUTPUT:
506         case SBD_DEBUG_LOG:
507         case SBD_INFO_LOG:
508         case SBD_NOTICE_LOG:
509         case SBD_WARNING_LOG:
510         case SBD_ERROR_LOG:
511         case SBD_CRIT_LOG:
512         case SBD_EMERG_LOG:
513                 assert(result->size > 0);
514                 return send_sb(&cc->scc, result->data, result->size, band, true);
515         case SBD_AFS_CB_FAILURE:
516                 return *(int *)(result->data);
517         default:
518                 return -E_BAD_BAND;
519         }
520 }
521
522 static void flush_and_free_pb(struct para_buffer *pb)
523 {
524         int ret;
525         struct afs_max_size_handler_data *amshd = pb->private_data;
526
527         if (pb->buf && pb->size > 0) {
528                 ret = pass_buffer_as_shm(amshd->fd, amshd->band, pb->buf,
529                         pb->offset);
530                 if (ret < 0)
531                         PARA_ERROR_LOG("%s\n", para_strerror(-ret));
532         }
533         free(pb->buf);
534 }
535
536 static int com_select_callback(struct afs_callback_arg *aca)
537 {
538         const struct lls_command *cmd = SERVER_CMD_CMD_PTR(SELECT);
539         const char *arg;
540         int num_admissible, ret;
541         char *errmsg;
542
543         ret = lls_deserialize_parse_result(aca->query.data, cmd, &aca->lpr);
544         assert(ret >= 0);
545         arg = lls_input(0, aca->lpr);
546         ret = clear_score_table();
547         if (ret < 0) {
548                 para_printf(&aca->pbout, "could not clear score table\n");
549                 goto free_lpr;
550         }
551         if (current_play_mode == PLAY_MODE_MOOD)
552                 close_current_mood();
553         else
554                 playlist_close();
555         ret = activate_mood_or_playlist(arg, &num_admissible, &errmsg);
556         if (ret >= 0)
557                 goto out;
558         /* ignore subsequent errors (but log them) */
559         para_printf(&aca->pbout, "%s\n", errmsg);
560         free(errmsg);
561         para_printf(&aca->pbout, "could not activate %s\n", arg);
562         if (current_mop && strcmp(current_mop, arg) != 0) {
563                 int ret2;
564                 para_printf(&aca->pbout, "switching back to %s\n", current_mop);
565                 ret2 = activate_mood_or_playlist(current_mop, &num_admissible,
566                         &errmsg);
567                 if (ret2 >= 0)
568                         goto out;
569                 para_printf(&aca->pbout, "%s\n", errmsg);
570                 free(errmsg);
571                 para_printf(&aca->pbout, "could not reactivate %s: %s\n",
572                         current_mop, para_strerror(-ret2));
573         }
574         para_printf(&aca->pbout, "activating dummy mood\n");
575         activate_mood_or_playlist(NULL, &num_admissible, NULL);
576 out:
577         para_printf(&aca->pbout, "activated %s (%d admissible file%s)\n",
578                 current_mop? current_mop : "dummy mood", num_admissible,
579                         num_admissible == 1? "" : "s");
580 free_lpr:
581         lls_free_parse_result(aca->lpr, cmd);
582         return ret;
583 }
584
585 static int com_select(struct command_context *cc, struct lls_parse_result *lpr)
586 {
587         const struct lls_command *cmd = SERVER_CMD_CMD_PTR(SELECT);
588         char *errctx;
589         int ret = lls(lls_check_arg_count(lpr, 1, 1, &errctx));
590
591         if (ret < 0) {
592                 send_errctx(cc, errctx);
593                 return ret;
594         }
595         return send_lls_callback_request(com_select_callback, cmd, lpr, cc);
596 }
597 EXPORT_SERVER_CMD_HANDLER(select);
598
599 static void init_admissible_files(const char *arg)
600 {
601         int ret = activate_mood_or_playlist(arg, NULL, NULL);
602         if (ret < 0) {
603                 PARA_WARNING_LOG("could not activate %s: %s\n", arg,
604                         para_strerror(-ret));
605                 if (arg)
606                         activate_mood_or_playlist(NULL, NULL, NULL);
607         }
608 }
609
610 static int setup_command_socket_or_die(void)
611 {
612         int ret, socket_fd;
613         const char *socket_name = OPT_STRING_VAL(AFS_SOCKET);
614
615         unlink(socket_name);
616         ret = create_local_socket(socket_name);
617         if (ret < 0) {
618                 PARA_EMERG_LOG("%s: %s\n", para_strerror(-ret), socket_name);
619                 exit(EXIT_FAILURE);
620         }
621         socket_fd = ret;
622         PARA_INFO_LOG("listening on socket %s (fd %d)\n", socket_name,
623                 socket_fd);
624         return socket_fd;
625 }
626
627 static char *database_dir;
628
629 static void close_afs_tables(void)
630 {
631         int i;
632         PARA_NOTICE_LOG("closing afs tables\n");
633         for (i = 0; i < NUM_AFS_TABLES; i++)
634                 afs_tables[i].close();
635         free(database_dir);
636         database_dir = NULL;
637 }
638
639 static void get_database_dir(void)
640 {
641         if (!database_dir) {
642                 if (OPT_GIVEN(AFS_DATABASE_DIR))
643                         database_dir = para_strdup(OPT_STRING_VAL(AFS_DATABASE_DIR));
644                 else {
645                         char *home = para_homedir();
646                         database_dir = make_message(
647                                 "%s/.paraslash/afs_database-0.7", home);
648                         free(home);
649                 }
650         }
651         PARA_INFO_LOG("afs_database dir %s\n", database_dir);
652 }
653
654 static int make_database_dir(void)
655 {
656         int ret;
657
658         get_database_dir();
659         ret = para_mkdir(database_dir, 0777);
660         if (ret >= 0 || ret == -ERRNO_TO_PARA_ERROR(EEXIST))
661                 return 1;
662         return ret;
663 }
664
665 static int open_afs_tables(void)
666 {
667         int i, ret;
668
669         get_database_dir();
670         PARA_NOTICE_LOG("opening %zu osl tables in %s\n", NUM_AFS_TABLES,
671                 database_dir);
672         for (i = 0; i < NUM_AFS_TABLES; i++) {
673                 ret = afs_tables[i].open(database_dir);
674                 if (ret >= 0)
675                         continue;
676                 PARA_ERROR_LOG("could not open %s\n", afs_tables[i].name);
677                 break;
678         }
679         if (ret >= 0)
680                 return ret;
681         while (i)
682                 afs_tables[--i].close();
683         return ret;
684 }
685
686 static int afs_signal_post_monitor(struct sched *s, __a_unused void *context)
687 {
688         int signum, ret;
689
690         if (getppid() == 1) {
691                 PARA_EMERG_LOG("para_server died\n");
692                 goto shutdown;
693         }
694         signum = para_next_signal();
695         if (signum == 0)
696                 return 0;
697         if (signum == SIGHUP) {
698                 close_afs_tables();
699                 parse_config_or_die(1);
700                 ret = open_afs_tables();
701                 if (ret < 0)
702                         return ret;
703                 init_admissible_files(current_mop);
704                 return 0;
705         }
706         PARA_EMERG_LOG("terminating on signal %d\n", signum);
707 shutdown:
708         task_notify_all(s, E_AFS_SIGNAL);
709         return -E_AFS_SIGNAL;
710 }
711
712 static void register_signal_task(struct sched *s)
713 {
714         para_sigaction(SIGPIPE, SIG_IGN);
715         signal_task = signal_init_or_die();
716         para_install_sighandler(SIGINT);
717         para_install_sighandler(SIGTERM);
718         para_install_sighandler(SIGHUP);
719
720         signal_task->task = task_register(&(struct task_info) {
721                 .name = "signal",
722                 .pre_monitor = signal_pre_monitor,
723                 .post_monitor = afs_signal_post_monitor,
724                 .context = signal_task,
725
726         }, s);
727 }
728
729 static struct list_head afs_client_list;
730
731 /** Describes one connected afs client. */
732 struct afs_client {
733         /** Position in the afs client list. */
734         struct list_head node;
735         /** The socket file descriptor for this client. */
736         int fd;
737         /** The time the client connected. */
738         struct timeval connect_time;
739 };
740
741 static void command_pre_monitor(struct sched *s, void *context)
742 {
743         struct command_task *ct = context;
744         struct afs_client *client;
745
746         sched_monitor_readfd(server_socket, s);
747         sched_monitor_readfd(ct->fd, s);
748         list_for_each_entry(client, &afs_client_list, node)
749                 sched_monitor_readfd(client->fd, s);
750 }
751
752 /**
753  * Send data as shared memory to a file descriptor.
754  *
755  * \param fd File descriptor to send the shmid to.
756  * \param band The band designator for this data.
757  * \param buf The buffer holding the data to be sent.
758  * \param size The size of \a buf.
759  *
760  * This function creates a shared memory area large enough to hold
761  * the content given by \a buf and \a size and sends the identifier
762  * of this area to the file descriptor \a fd.
763  *
764  * It is called by the AFS max_size handler as well as directly by the AFS
765  * command callbacks to send command output to the command handlers.
766  *
767  * \return Zero if \a buf is \p NULL or \a size is zero. Negative on errors,
768  * and positive on success.
769  */
770 int pass_buffer_as_shm(int fd, uint8_t band, const char *buf, size_t size)
771 {
772         int ret, shmid;
773         void *shm;
774         struct callback_result *cr;
775
776         if (size == 0)
777                 assert(band != SBD_OUTPUT);
778         ret = shm_new(size + sizeof(*cr));
779         if (ret < 0)
780                 return ret;
781         shmid = ret;
782         ret = shm_attach(shmid, ATTACH_RW, &shm);
783         if (ret < 0)
784                 goto err;
785         cr = shm;
786         cr->result_size = size;
787         cr->band = band;
788         if (size > 0)
789                 memcpy(shm + sizeof(*cr), buf, size);
790         ret = shm_detach(shm);
791         if (ret < 0)
792                 goto err;
793         ret = write_all(fd, (char *)&shmid, sizeof(int));
794         if (ret >= 0)
795                 return ret;
796 err:
797         if (shm_destroy(shmid) < 0)
798                 PARA_ERROR_LOG("destroy result failed\n");
799         return ret;
800 }
801
802 static int call_callback(int fd, int query_shmid)
803 {
804         void *query_shm;
805         struct callback_query *cq;
806         int ret, ret2;
807         struct afs_callback_arg aca = {.fd = fd};
808
809         ret = shm_attach(query_shmid, ATTACH_RW, &query_shm);
810         if (ret < 0)
811                 return ret;
812         cq = query_shm;
813         aca.query.data = (char *)query_shm + sizeof(*cq);
814         aca.query.size = cq->query_size;
815         aca.pbout.max_size = shm_get_shmmax();
816         aca.pbout.max_size_handler = afs_max_size_handler;
817         aca.pbout.private_data = &(struct afs_max_size_handler_data) {
818                 .fd = fd,
819                 .band = SBD_OUTPUT
820         };
821         ret = cq->handler(&aca);
822         ret2 = shm_detach(query_shm);
823         if (ret2 < 0) {
824                 if (ret < 0) /* ignore (but log) detach error */
825                         PARA_ERROR_LOG("could not detach sma: %s\n",
826                                 para_strerror(-ret2));
827                 else
828                         ret = ret2;
829         }
830         flush_and_free_pb(&aca.pbout);
831         if (ret < 0) {
832                 ret2 = pass_buffer_as_shm(fd, SBD_AFS_CB_FAILURE,
833                         (const char *)&ret, sizeof(ret));
834                 if (ret2 < 0)
835                         PARA_ERROR_LOG("could not pass cb failure packet: %s\n",
836                                 para_strerror(-ret));
837         }
838         return ret;
839 }
840
841 static int execute_server_command(void)
842 {
843         char buf[8];
844         size_t n;
845         int ret = read_nonblock(server_socket, buf, sizeof(buf) - 1, &n);
846
847         if (ret < 0 || n == 0)
848                 return ret;
849         buf[n] = '\0';
850         if (strcmp(buf, "new"))
851                 return -ERRNO_TO_PARA_ERROR(EINVAL);
852         return open_next_audio_file();
853 }
854
855 /* returns 0 if no data available, 1 else */
856 static int execute_afs_command(int fd)
857 {
858         uint32_t cookie;
859         int query_shmid;
860         char buf[sizeof(cookie) + sizeof(query_shmid)];
861         size_t n;
862         int ret = read_nonblock(fd, buf, sizeof(buf), &n);
863
864         if (ret < 0)
865                 goto err;
866         if (n == 0)
867                 return 0;
868         if (n != sizeof(buf)) {
869                 PARA_NOTICE_LOG("short read (%d bytes, expected %lu)\n",
870                         ret, (long unsigned) sizeof(buf));
871                 return 1;
872         }
873         cookie = *(uint32_t *)buf;
874         if (cookie != afs_socket_cookie) {
875                 PARA_NOTICE_LOG("received invalid cookie (got %u, expected %u)\n",
876                         (unsigned)cookie, (unsigned)afs_socket_cookie);
877                 return 1;
878         }
879         query_shmid = *(int *)(buf + sizeof(cookie));
880         if (query_shmid < 0) {
881                 PARA_WARNING_LOG("received invalid query shmid %d)\n",
882                         query_shmid);
883                 return 1;
884         }
885         ret = call_callback(fd, query_shmid);
886         if (ret >= 0)
887                 return 1;
888 err:
889         PARA_NOTICE_LOG("%s\n", para_strerror(-ret));
890         return 1;
891 }
892
893 /** Shutdown connection if query has not arrived until this many seconds. */
894 #define AFS_CLIENT_TIMEOUT 3
895
896 static int command_post_monitor(struct sched *s, void *context)
897 {
898         struct command_task *ct = context;
899         struct sockaddr_un unix_addr;
900         struct afs_client *client, *tmp;
901         int fd, ret;
902
903         ret = task_get_notification(ct->task);
904         if (ret < 0)
905                 return ret;
906         ret = execute_server_command();
907         if (ret < 0) {
908                 PARA_EMERG_LOG("%s\n", para_strerror(-ret));
909                 task_notify_all(s, -ret);
910                 return ret;
911         }
912         /* Check the list of connected clients. */
913         list_for_each_entry_safe(client, tmp, &afs_client_list, node) {
914                 ret = execute_afs_command(client->fd);
915                 if (ret == 0) { /* prevent bogus connection flooding */
916                         struct timeval diff;
917                         tv_diff(now, &client->connect_time, &diff);
918                         if (diff.tv_sec < AFS_CLIENT_TIMEOUT)
919                                 continue;
920                         PARA_WARNING_LOG("connection timeout\n");
921                 }
922                 close(client->fd);
923                 list_del(&client->node);
924                 free(client);
925         }
926         /* Accept connections on the local socket. */
927         ret = para_accept(ct->fd, &unix_addr, sizeof(unix_addr), &fd);
928         if (ret < 0)
929                 PARA_NOTICE_LOG("%s\n", para_strerror(-ret));
930         if (ret <= 0)
931                 return 0;
932         ret = mark_fd_nonblocking(fd);
933         if (ret < 0) {
934                 PARA_NOTICE_LOG("%s\n", para_strerror(-ret));
935                 close(fd);
936                 return 0;
937         }
938         client = alloc(sizeof(*client));
939         client->fd = fd;
940         client->connect_time = *now;
941         para_list_add(&client->node, &afs_client_list);
942         return 0;
943 }
944
945 static void register_command_task(struct sched *s)
946 {
947         struct command_task *ct = &command_task_struct;
948         ct->fd = setup_command_socket_or_die();
949
950         ct->task = task_register(&(struct task_info) {
951                 .name = "afs command",
952                 .pre_monitor = command_pre_monitor,
953                 .post_monitor = command_post_monitor,
954                 .context = ct,
955         }, s);
956 }
957
958 static int afs_poll(struct pollfd *fds, nfds_t nfds, int timeout)
959 {
960         mutex_lock(mmd_mutex);
961         daemon_set_loglevel(mmd->loglevel);
962         mutex_unlock(mmd_mutex);
963         return xpoll(fds, nfds, timeout);
964 }
965
966 /**
967  * Initialize the audio file selector process.
968  *
969  * \param socket_fd File descriptor used for communication with the server.
970  */
971 __noreturn void afs_init(int socket_fd)
972 {
973         static struct sched s;
974         int i, ret;
975
976         register_signal_task(&s);
977         init_list_head(&afs_client_list);
978         for (i = 0; i < NUM_AFS_TABLES; i++)
979                 afs_tables[i].init(&afs_tables[i]);
980         ret = open_afs_tables();
981         if (ret < 0)
982                 goto out;
983         server_socket = socket_fd;
984         ret = mark_fd_nonblocking(server_socket);
985         if (ret < 0)
986                 goto out_close;
987         PARA_INFO_LOG("server_socket: %d\n", server_socket);
988         init_admissible_files(OPT_STRING_VAL(AFS_INITIAL_MODE));
989         register_command_task(&s);
990         s.default_timeout = 1000;
991         s.poll_function = afs_poll;
992         ret = write(socket_fd, "\0", 1);
993         if (ret != 1) {
994                 if (ret == 0)
995                         errno = EINVAL;
996                 ret = -ERRNO_TO_PARA_ERROR(errno);
997                 goto out_close;
998         }
999         ret = schedule(&s);
1000         sched_shutdown(&s);
1001         close_current_mood();
1002 out_close:
1003         close_afs_tables();
1004 out:
1005         signal_shutdown(signal_task);
1006         free_status_items();
1007         free(current_mop);
1008         free_lpr();
1009         if (ret < 0)
1010                 PARA_EMERG_LOG("%s\n", para_strerror(-ret));
1011         exit(EXIT_FAILURE);
1012 }
1013
1014 static int com_init_callback(struct afs_callback_arg *aca)
1015 {
1016         uint32_t table_mask = *(uint32_t *)aca->query.data;
1017         int i, ret;
1018
1019         close_afs_tables();
1020         get_database_dir();
1021         for (i = 0; i < NUM_AFS_TABLES; i++) {
1022                 struct afs_table *t = &afs_tables[i];
1023
1024                 if (!(table_mask & (1 << i)))
1025                         continue;
1026                 if (!t->create)
1027                         continue;
1028                 ret = t->create(database_dir);
1029                 if (ret < 0) {
1030                         para_printf(&aca->pbout, "cannot create table %s\n",
1031                                 t->name);
1032                         goto out;
1033                 }
1034                 para_printf(&aca->pbout, "successfully created %s table\n",
1035                         t->name);
1036         }
1037         ret = open_afs_tables();
1038         if (ret < 0)
1039                 para_printf(&aca->pbout, "cannot open afs tables: %s\n",
1040                         para_strerror(-ret));
1041 out:
1042         return ret;
1043 }
1044
1045 static int com_init(struct command_context *cc, struct lls_parse_result *lpr)
1046 {
1047         int i, j, ret;
1048         uint32_t table_mask = (1 << (NUM_AFS_TABLES + 1)) - 1;
1049         struct osl_object query = {.data = &table_mask,
1050                 .size = sizeof(table_mask)};
1051         unsigned num_inputs = lls_num_inputs(lpr);
1052
1053         ret = make_database_dir();
1054         if (ret < 0)
1055                 return ret;
1056         if (num_inputs > 0) {
1057                 table_mask = 0;
1058                 for (i = 0; i < num_inputs; i++) {
1059                         for (j = 0; j < NUM_AFS_TABLES; j++) {
1060                                 struct afs_table *t = &afs_tables[j];
1061
1062                                 if (strcmp(lls_input(i, lpr), t->name))
1063                                         continue;
1064                                 table_mask |= (1 << j);
1065                                 break;
1066                         }
1067                         if (j == NUM_AFS_TABLES)
1068                                 return -E_BAD_TABLE_NAME;
1069                 }
1070         }
1071         return send_callback_request(com_init_callback, &query,
1072                 afs_cb_result_handler, cc);
1073 }
1074 EXPORT_SERVER_CMD_HANDLER(init);
1075
1076 static int com_check(struct command_context *cc, struct lls_parse_result *lpr)
1077 {
1078         const struct lls_opt_result *r_a = SERVER_CMD_OPT_RESULT(CHECK, AFT, lpr);
1079         const struct lls_opt_result *r_A = SERVER_CMD_OPT_RESULT(CHECK, ATTRIBUTE, lpr);
1080         const struct lls_opt_result *r_m = SERVER_CMD_OPT_RESULT(CHECK, MOOD, lpr);
1081         const struct lls_opt_result *r_p = SERVER_CMD_OPT_RESULT(CHECK, PLAYLIST, lpr);
1082         bool noopt = !lls_opt_given(r_a) && !lls_opt_given(r_A)
1083                 && !lls_opt_given(r_m) && !lls_opt_given(r_p);
1084         int ret;
1085
1086         if (noopt || lls_opt_given(r_a)) {
1087                 ret = send_callback_request(aft_check_callback, NULL,
1088                         afs_cb_result_handler, cc);
1089                 if (ret < 0)
1090                         return ret;
1091         }
1092         if (noopt || lls_opt_given(r_A)) {
1093                 ret = send_callback_request(attribute_check_callback, NULL,
1094                         afs_cb_result_handler, cc);
1095                 if (ret < 0)
1096                         return ret;
1097         }
1098         if (noopt || lls_opt_given(r_p)) {
1099                 ret = send_callback_request(playlist_check_callback,
1100                         NULL, afs_cb_result_handler, cc);
1101                 if (ret < 0)
1102                         return ret;
1103         }
1104         if (noopt || lls_opt_given(r_m)) {
1105                 ret = send_callback_request(mood_check_callback, NULL,
1106                         afs_cb_result_handler, cc);
1107                 if (ret < 0)
1108                         return ret;
1109         }
1110         return 1;
1111 }
1112 EXPORT_SERVER_CMD_HANDLER(check);
1113
1114 /**
1115  * The afs event dispatcher.
1116  *
1117  * \param event Type of the event.
1118  * \param pb May be \p NULL.
1119  * \param data Type depends on \a event.
1120  *
1121  * This function calls each table event handler, passing \a pb and \a data
1122  * verbatim. It's up to the handlers to interpret the \a data pointer. If a
1123  * handler returns negative, the loop is aborted.
1124  *
1125  * \return The (negative) error code of the first handler that failed, or non-negative
1126  * if all handlers succeeded.
1127  */
1128 __must_check int afs_event(enum afs_events event, struct para_buffer *pb,
1129                 void *data)
1130 {
1131         int i, ret;
1132
1133         for (i = 0; i < NUM_AFS_TABLES; i++) {
1134                 struct afs_table *t = &afs_tables[i];
1135                 if (!t->event_handler)
1136                         continue;
1137                 ret = t->event_handler(event, pb, data);
1138                 if (ret < 0) {
1139                         PARA_CRIT_LOG("table %s, event %u: %s\n", t->name,
1140                                 event, para_strerror(-ret));
1141                         return ret;
1142                 }
1143         }
1144         return 1;
1145 }
1146
1147 /**
1148  * Dummy event handler for the images table.
1149  *
1150  * \param event Unused.
1151  * \param pb Unused.
1152  * \param data Unused.
1153  *
1154  * \return The images table does not honor events, so this handler always
1155  * returns success.
1156  */
1157 __a_const int images_event_handler(__a_unused enum afs_events event,
1158         __a_unused  struct para_buffer *pb, __a_unused void *data)
1159 {
1160         return 1;
1161 }
1162
1163 /**
1164  * Dummy event handler for the lyrics table.
1165  *
1166  * \param event Unused.
1167  * \param pb Unused.
1168  * \param data Unused.
1169  *
1170  * \return The lyrics table does not honor events, so this handler always
1171  * returns success.
1172  */
1173 __a_const int lyrics_event_handler(__a_unused enum afs_events event,
1174         __a_unused struct para_buffer *pb, __a_unused void *data)
1175 {
1176         return 1;
1177 }