]> git.tuebingen.mpg.de Git - paraslash.git/blob - afs.c
4d473dc1aa6d61f0d6786e97991ab0490c39f43d
[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 = mood_switch(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, errmsg);
442                         mode = PLAY_MODE_PLAYLIST;
443                 } else if (!strncmp(arg, "m/", 2)) {
444                         ret = mood_switch(arg + 2, errmsg);
445                         mode = PLAY_MODE_MOOD;
446                 } else {
447                         if (errmsg)
448                                 *errmsg = make_message("%s: parse error", arg);
449                         return -ERRNO_TO_PARA_ERROR(EINVAL);
450                 }
451                 if (ret < 0)
452                         return ret;
453         }
454         if (num_admissible)
455                 *num_admissible = ret;
456         current_play_mode = mode;
457         /*
458          * We get called with arg == current_mop from the signal dispatcher
459          * after SIGHUP and from the error path of the select command to
460          * re-select the current mood or playlist. In this case the assignment
461          * to current_mop below would result in a use-after-free condition.
462          */
463         if (arg != current_mop) {
464                 free(current_mop);
465                 current_mop = arg? para_strdup(arg) : NULL;
466         }
467         /* Notify the server about the mood/playlist change. */
468         mutex_lock(mmd_mutex);
469         strncpy(mmd->afs_mode_string, arg? arg: "dummy",
470                 sizeof(mmd->afs_mode_string));
471         mmd->afs_mode_string[sizeof(mmd->afs_mode_string) - 1] = '\0';
472         mmd->events++;
473         mutex_unlock(mmd_mutex);
474         return 1;
475 }
476
477 /**
478  * Result handler for sending data to the para_client process.
479  *
480  * \param result The data to be sent.
481  * \param band The band designator.
482  * \param private Pointer to the command context.
483  *
484  * \return The return value of the underlying call to \ref command.c::send_sb.
485  *
486  * \sa \ref callback_result_handler, \ref command.c::send_sb.
487  */
488 int afs_cb_result_handler(struct osl_object *result, uint8_t band,
489                 void *private)
490 {
491         struct command_context *cc = private;
492
493         assert(cc);
494         switch (band) {
495         case SBD_OUTPUT:
496         case SBD_DEBUG_LOG:
497         case SBD_INFO_LOG:
498         case SBD_NOTICE_LOG:
499         case SBD_WARNING_LOG:
500         case SBD_ERROR_LOG:
501         case SBD_CRIT_LOG:
502         case SBD_EMERG_LOG:
503                 assert(result->size > 0);
504                 return send_sb(&cc->scc, result->data, result->size, band, true);
505         case SBD_AFS_CB_FAILURE:
506                 return *(int *)(result->data);
507         default:
508                 return -E_BAD_BAND;
509         }
510 }
511
512 static void flush_and_free_pb(struct para_buffer *pb)
513 {
514         int ret;
515         struct afs_max_size_handler_data *amshd = pb->private_data;
516
517         if (pb->buf && pb->size > 0) {
518                 ret = pass_buffer_as_shm(amshd->fd, amshd->band, pb->buf,
519                         pb->offset);
520                 if (ret < 0)
521                         PARA_ERROR_LOG("%s\n", para_strerror(-ret));
522         }
523         free(pb->buf);
524 }
525
526 static int com_select_callback(struct afs_callback_arg *aca)
527 {
528         const struct lls_command *cmd = SERVER_CMD_CMD_PTR(SELECT);
529         const char *arg;
530         int num_admissible, ret;
531         char *errmsg;
532
533         ret = lls_deserialize_parse_result(aca->query.data, cmd, &aca->lpr);
534         assert(ret >= 0);
535         arg = lls_input(0, aca->lpr);
536         ret = clear_score_table();
537         if (ret < 0) {
538                 para_printf(&aca->pbout, "could not clear score table\n");
539                 goto free_lpr;
540         }
541         if (current_play_mode == PLAY_MODE_MOOD)
542                 close_current_mood();
543         else
544                 playlist_close();
545         ret = activate_mood_or_playlist(arg, &num_admissible, &errmsg);
546         if (ret >= 0)
547                 goto out;
548         /* ignore subsequent errors (but log them) */
549         para_printf(&aca->pbout, "%s\n", errmsg);
550         free(errmsg);
551         para_printf(&aca->pbout, "could not activate %s\n", arg);
552         if (current_mop && strcmp(current_mop, arg) != 0) {
553                 int ret2;
554                 para_printf(&aca->pbout, "switching back to %s\n", current_mop);
555                 ret2 = activate_mood_or_playlist(current_mop, &num_admissible,
556                         &errmsg);
557                 if (ret2 >= 0)
558                         goto out;
559                 para_printf(&aca->pbout, "%s\n", errmsg);
560                 free(errmsg);
561                 para_printf(&aca->pbout, "could not reactivate %s: %s\n",
562                         current_mop, para_strerror(-ret2));
563         }
564         para_printf(&aca->pbout, "activating dummy mood\n");
565         activate_mood_or_playlist(NULL, &num_admissible, NULL);
566 out:
567         para_printf(&aca->pbout, "activated %s (%d admissible file%s)\n",
568                 current_mop? current_mop : "dummy mood", num_admissible,
569                         num_admissible == 1? "" : "s");
570 free_lpr:
571         lls_free_parse_result(aca->lpr, cmd);
572         return ret;
573 }
574
575 static int com_select(struct command_context *cc, struct lls_parse_result *lpr)
576 {
577         const struct lls_command *cmd = SERVER_CMD_CMD_PTR(SELECT);
578         char *errctx;
579         int ret = lls(lls_check_arg_count(lpr, 1, 1, &errctx));
580
581         if (ret < 0) {
582                 send_errctx(cc, errctx);
583                 return ret;
584         }
585         return send_lls_callback_request(com_select_callback, cmd, lpr, cc);
586 }
587 EXPORT_SERVER_CMD_HANDLER(select);
588
589 static void init_admissible_files(const char *arg)
590 {
591         int ret = activate_mood_or_playlist(arg, NULL, NULL);
592         if (ret < 0) {
593                 PARA_WARNING_LOG("could not activate %s: %s\n", arg,
594                         para_strerror(-ret));
595                 if (arg)
596                         activate_mood_or_playlist(NULL, NULL, NULL);
597         }
598 }
599
600 static int setup_command_socket_or_die(void)
601 {
602         int ret, socket_fd;
603         const char *socket_name = OPT_STRING_VAL(AFS_SOCKET);
604
605         unlink(socket_name);
606         ret = create_local_socket(socket_name);
607         if (ret < 0) {
608                 PARA_EMERG_LOG("%s: %s\n", para_strerror(-ret), socket_name);
609                 exit(EXIT_FAILURE);
610         }
611         socket_fd = ret;
612         PARA_INFO_LOG("listening on socket %s (fd %d)\n", socket_name,
613                 socket_fd);
614         return socket_fd;
615 }
616
617 static char *database_dir;
618
619 static void close_afs_tables(void)
620 {
621         int i;
622         PARA_NOTICE_LOG("closing afs tables\n");
623         for (i = 0; i < NUM_AFS_TABLES; i++)
624                 afs_tables[i].close();
625         free(database_dir);
626         database_dir = NULL;
627 }
628
629 static void get_database_dir(void)
630 {
631         if (!database_dir) {
632                 if (OPT_GIVEN(AFS_DATABASE_DIR))
633                         database_dir = para_strdup(OPT_STRING_VAL(AFS_DATABASE_DIR));
634                 else {
635                         char *home = para_homedir();
636                         database_dir = make_message(
637                                 "%s/.paraslash/afs_database-0.7", home);
638                         free(home);
639                 }
640         }
641         PARA_INFO_LOG("afs_database dir %s\n", database_dir);
642 }
643
644 static int make_database_dir(void)
645 {
646         int ret;
647
648         get_database_dir();
649         ret = para_mkdir(database_dir, 0777);
650         if (ret >= 0 || ret == -ERRNO_TO_PARA_ERROR(EEXIST))
651                 return 1;
652         return ret;
653 }
654
655 static int open_afs_tables(void)
656 {
657         int i, ret;
658
659         get_database_dir();
660         PARA_NOTICE_LOG("opening %zu osl tables in %s\n", NUM_AFS_TABLES,
661                 database_dir);
662         for (i = 0; i < NUM_AFS_TABLES; i++) {
663                 ret = afs_tables[i].open(database_dir);
664                 if (ret >= 0)
665                         continue;
666                 PARA_ERROR_LOG("could not open %s\n", afs_tables[i].name);
667                 break;
668         }
669         if (ret >= 0)
670                 return ret;
671         while (i)
672                 afs_tables[--i].close();
673         return ret;
674 }
675
676 static int afs_signal_post_monitor(struct sched *s, __a_unused void *context)
677 {
678         int signum, ret;
679
680         if (getppid() == 1) {
681                 PARA_EMERG_LOG("para_server died\n");
682                 goto shutdown;
683         }
684         signum = para_next_signal();
685         if (signum == 0)
686                 return 0;
687         if (signum == SIGHUP) {
688                 close_afs_tables();
689                 parse_config_or_die(1);
690                 ret = open_afs_tables();
691                 if (ret < 0)
692                         return ret;
693                 init_admissible_files(current_mop);
694                 return 0;
695         }
696         PARA_EMERG_LOG("terminating on signal %d\n", signum);
697 shutdown:
698         task_notify_all(s, E_AFS_SIGNAL);
699         return -E_AFS_SIGNAL;
700 }
701
702 static void register_signal_task(struct sched *s)
703 {
704         para_sigaction(SIGPIPE, SIG_IGN);
705         signal_task = signal_init_or_die();
706         para_install_sighandler(SIGINT);
707         para_install_sighandler(SIGTERM);
708         para_install_sighandler(SIGHUP);
709
710         signal_task->task = task_register(&(struct task_info) {
711                 .name = "signal",
712                 .pre_monitor = signal_pre_monitor,
713                 .post_monitor = afs_signal_post_monitor,
714                 .context = signal_task,
715
716         }, s);
717 }
718
719 static struct list_head afs_client_list;
720
721 /** Describes one connected afs client. */
722 struct afs_client {
723         /** Position in the afs client list. */
724         struct list_head node;
725         /** The socket file descriptor for this client. */
726         int fd;
727         /** The time the client connected. */
728         struct timeval connect_time;
729 };
730
731 static void command_pre_monitor(struct sched *s, void *context)
732 {
733         struct command_task *ct = context;
734         struct afs_client *client;
735
736         sched_monitor_readfd(server_socket, s);
737         sched_monitor_readfd(ct->fd, s);
738         list_for_each_entry(client, &afs_client_list, node)
739                 sched_monitor_readfd(client->fd, s);
740 }
741
742 /**
743  * Send data as shared memory to a file descriptor.
744  *
745  * \param fd File descriptor to send the shmid to.
746  * \param band The band designator for this data.
747  * \param buf The buffer holding the data to be sent.
748  * \param size The size of \a buf.
749  *
750  * This function creates a shared memory area large enough to hold
751  * the content given by \a buf and \a size and sends the identifier
752  * of this area to the file descriptor \a fd.
753  *
754  * It is called by the AFS max_size handler as well as directly by the AFS
755  * command callbacks to send command output to the command handlers.
756  *
757  * \return Zero if \a buf is \p NULL or \a size is zero. Negative on errors,
758  * and positive on success.
759  */
760 int pass_buffer_as_shm(int fd, uint8_t band, const char *buf, size_t size)
761 {
762         int ret, shmid;
763         void *shm;
764         struct callback_result *cr;
765
766         if (size == 0)
767                 assert(band != SBD_OUTPUT);
768         ret = shm_new(size + sizeof(*cr));
769         if (ret < 0)
770                 return ret;
771         shmid = ret;
772         ret = shm_attach(shmid, ATTACH_RW, &shm);
773         if (ret < 0)
774                 goto err;
775         cr = shm;
776         cr->result_size = size;
777         cr->band = band;
778         if (size > 0)
779                 memcpy(shm + sizeof(*cr), buf, size);
780         ret = shm_detach(shm);
781         if (ret < 0)
782                 goto err;
783         ret = write_all(fd, (char *)&shmid, sizeof(int));
784         if (ret >= 0)
785                 return ret;
786 err:
787         if (shm_destroy(shmid) < 0)
788                 PARA_ERROR_LOG("destroy result failed\n");
789         return ret;
790 }
791
792 static int call_callback(int fd, int query_shmid)
793 {
794         void *query_shm;
795         struct callback_query *cq;
796         int ret, ret2;
797         struct afs_callback_arg aca = {.fd = fd};
798
799         ret = shm_attach(query_shmid, ATTACH_RW, &query_shm);
800         if (ret < 0)
801                 return ret;
802         cq = query_shm;
803         aca.query.data = (char *)query_shm + sizeof(*cq);
804         aca.query.size = cq->query_size;
805         aca.pbout.max_size = shm_get_shmmax();
806         aca.pbout.max_size_handler = afs_max_size_handler;
807         aca.pbout.private_data = &(struct afs_max_size_handler_data) {
808                 .fd = fd,
809                 .band = SBD_OUTPUT
810         };
811         ret = cq->handler(&aca);
812         ret2 = shm_detach(query_shm);
813         if (ret2 < 0) {
814                 if (ret < 0) /* ignore (but log) detach error */
815                         PARA_ERROR_LOG("could not detach sma: %s\n",
816                                 para_strerror(-ret2));
817                 else
818                         ret = ret2;
819         }
820         flush_and_free_pb(&aca.pbout);
821         if (ret < 0) {
822                 ret2 = pass_buffer_as_shm(fd, SBD_AFS_CB_FAILURE,
823                         (const char *)&ret, sizeof(ret));
824                 if (ret2 < 0)
825                         PARA_ERROR_LOG("could not pass cb failure packet: %s\n",
826                                 para_strerror(-ret));
827         }
828         return ret;
829 }
830
831 static int execute_server_command(void)
832 {
833         char buf[8];
834         size_t n;
835         int ret = read_nonblock(server_socket, buf, sizeof(buf) - 1, &n);
836
837         if (ret < 0 || n == 0)
838                 return ret;
839         buf[n] = '\0';
840         if (strcmp(buf, "new"))
841                 return -ERRNO_TO_PARA_ERROR(EINVAL);
842         return open_next_audio_file();
843 }
844
845 /* returns 0 if no data available, 1 else */
846 static int execute_afs_command(int fd)
847 {
848         uint32_t cookie;
849         int query_shmid;
850         char buf[sizeof(cookie) + sizeof(query_shmid)];
851         size_t n;
852         int ret = read_nonblock(fd, buf, sizeof(buf), &n);
853
854         if (ret < 0)
855                 goto err;
856         if (n == 0)
857                 return 0;
858         if (n != sizeof(buf)) {
859                 PARA_NOTICE_LOG("short read (%d bytes, expected %lu)\n",
860                         ret, (long unsigned) sizeof(buf));
861                 return 1;
862         }
863         cookie = *(uint32_t *)buf;
864         if (cookie != afs_socket_cookie) {
865                 PARA_NOTICE_LOG("received invalid cookie (got %u, expected %u)\n",
866                         (unsigned)cookie, (unsigned)afs_socket_cookie);
867                 return 1;
868         }
869         query_shmid = *(int *)(buf + sizeof(cookie));
870         if (query_shmid < 0) {
871                 PARA_WARNING_LOG("received invalid query shmid %d)\n",
872                         query_shmid);
873                 return 1;
874         }
875         ret = call_callback(fd, query_shmid);
876         if (ret >= 0)
877                 return 1;
878 err:
879         PARA_NOTICE_LOG("%s\n", para_strerror(-ret));
880         return 1;
881 }
882
883 /** Shutdown connection if query has not arrived until this many seconds. */
884 #define AFS_CLIENT_TIMEOUT 3
885
886 static int command_post_monitor(struct sched *s, void *context)
887 {
888         struct command_task *ct = context;
889         struct sockaddr_un unix_addr;
890         struct afs_client *client, *tmp;
891         int fd, ret;
892
893         ret = task_get_notification(ct->task);
894         if (ret < 0)
895                 return ret;
896         ret = execute_server_command();
897         if (ret < 0) {
898                 PARA_EMERG_LOG("%s\n", para_strerror(-ret));
899                 task_notify_all(s, -ret);
900                 return ret;
901         }
902         /* Check the list of connected clients. */
903         list_for_each_entry_safe(client, tmp, &afs_client_list, node) {
904                 ret = execute_afs_command(client->fd);
905                 if (ret == 0) { /* prevent bogus connection flooding */
906                         struct timeval diff;
907                         tv_diff(now, &client->connect_time, &diff);
908                         if (diff.tv_sec < AFS_CLIENT_TIMEOUT)
909                                 continue;
910                         PARA_WARNING_LOG("connection timeout\n");
911                 }
912                 close(client->fd);
913                 list_del(&client->node);
914                 free(client);
915         }
916         /* Accept connections on the local socket. */
917         ret = para_accept(ct->fd, &unix_addr, sizeof(unix_addr), &fd);
918         if (ret < 0)
919                 PARA_NOTICE_LOG("%s\n", para_strerror(-ret));
920         if (ret <= 0)
921                 return 0;
922         ret = mark_fd_nonblocking(fd);
923         if (ret < 0) {
924                 PARA_NOTICE_LOG("%s\n", para_strerror(-ret));
925                 close(fd);
926                 return 0;
927         }
928         client = alloc(sizeof(*client));
929         client->fd = fd;
930         client->connect_time = *now;
931         para_list_add(&client->node, &afs_client_list);
932         return 0;
933 }
934
935 static void register_command_task(struct sched *s)
936 {
937         struct command_task *ct = &command_task_struct;
938         ct->fd = setup_command_socket_or_die();
939
940         ct->task = task_register(&(struct task_info) {
941                 .name = "afs command",
942                 .pre_monitor = command_pre_monitor,
943                 .post_monitor = command_post_monitor,
944                 .context = ct,
945         }, s);
946 }
947
948 static int afs_poll(struct pollfd *fds, nfds_t nfds, int timeout)
949 {
950         mutex_lock(mmd_mutex);
951         daemon_set_loglevel(mmd->loglevel);
952         mutex_unlock(mmd_mutex);
953         return xpoll(fds, nfds, timeout);
954 }
955
956 /**
957  * Initialize the audio file selector process.
958  *
959  * \param socket_fd File descriptor used for communication with the server.
960  */
961 __noreturn void afs_init(int socket_fd)
962 {
963         static struct sched s;
964         int i, ret;
965
966         register_signal_task(&s);
967         init_list_head(&afs_client_list);
968         for (i = 0; i < NUM_AFS_TABLES; i++)
969                 afs_tables[i].init(&afs_tables[i]);
970         ret = open_afs_tables();
971         if (ret < 0)
972                 goto out;
973         server_socket = socket_fd;
974         ret = mark_fd_nonblocking(server_socket);
975         if (ret < 0)
976                 goto out_close;
977         PARA_INFO_LOG("server_socket: %d\n", server_socket);
978         init_admissible_files(OPT_STRING_VAL(AFS_INITIAL_MODE));
979         register_command_task(&s);
980         s.default_timeout = 1000;
981         s.poll_function = afs_poll;
982         ret = write(socket_fd, "\0", 1);
983         if (ret != 1) {
984                 if (ret == 0)
985                         errno = EINVAL;
986                 ret = -ERRNO_TO_PARA_ERROR(errno);
987                 goto out_close;
988         }
989         ret = schedule(&s);
990         sched_shutdown(&s);
991         close_current_mood();
992 out_close:
993         close_afs_tables();
994 out:
995         signal_shutdown(signal_task);
996         free_status_items();
997         free(current_mop);
998         free_lpr();
999         if (ret < 0)
1000                 PARA_EMERG_LOG("%s\n", para_strerror(-ret));
1001         exit(EXIT_FAILURE);
1002 }
1003
1004 static int com_init_callback(struct afs_callback_arg *aca)
1005 {
1006         uint32_t table_mask = *(uint32_t *)aca->query.data;
1007         int i, ret;
1008
1009         close_afs_tables();
1010         get_database_dir();
1011         for (i = 0; i < NUM_AFS_TABLES; i++) {
1012                 struct afs_table *t = &afs_tables[i];
1013
1014                 if (!(table_mask & (1 << i)))
1015                         continue;
1016                 if (!t->create)
1017                         continue;
1018                 ret = t->create(database_dir);
1019                 if (ret < 0) {
1020                         para_printf(&aca->pbout, "cannot create table %s\n",
1021                                 t->name);
1022                         goto out;
1023                 }
1024                 para_printf(&aca->pbout, "successfully created %s table\n",
1025                         t->name);
1026         }
1027         ret = open_afs_tables();
1028         if (ret < 0)
1029                 para_printf(&aca->pbout, "cannot open afs tables: %s\n",
1030                         para_strerror(-ret));
1031 out:
1032         return ret;
1033 }
1034
1035 static int com_init(struct command_context *cc, struct lls_parse_result *lpr)
1036 {
1037         int i, j, ret;
1038         uint32_t table_mask = (1 << (NUM_AFS_TABLES + 1)) - 1;
1039         struct osl_object query = {.data = &table_mask,
1040                 .size = sizeof(table_mask)};
1041         unsigned num_inputs = lls_num_inputs(lpr);
1042
1043         ret = make_database_dir();
1044         if (ret < 0)
1045                 return ret;
1046         if (num_inputs > 0) {
1047                 table_mask = 0;
1048                 for (i = 0; i < num_inputs; i++) {
1049                         for (j = 0; j < NUM_AFS_TABLES; j++) {
1050                                 struct afs_table *t = &afs_tables[j];
1051
1052                                 if (strcmp(lls_input(i, lpr), t->name))
1053                                         continue;
1054                                 table_mask |= (1 << j);
1055                                 break;
1056                         }
1057                         if (j == NUM_AFS_TABLES)
1058                                 return -E_BAD_TABLE_NAME;
1059                 }
1060         }
1061         return send_callback_request(com_init_callback, &query,
1062                 afs_cb_result_handler, cc);
1063 }
1064 EXPORT_SERVER_CMD_HANDLER(init);
1065
1066 static int com_check(struct command_context *cc, struct lls_parse_result *lpr)
1067 {
1068         const struct lls_opt_result *r_a = SERVER_CMD_OPT_RESULT(CHECK, AFT, lpr);
1069         const struct lls_opt_result *r_A = SERVER_CMD_OPT_RESULT(CHECK, ATTRIBUTE, lpr);
1070         const struct lls_opt_result *r_m = SERVER_CMD_OPT_RESULT(CHECK, MOOD, lpr);
1071         const struct lls_opt_result *r_p = SERVER_CMD_OPT_RESULT(CHECK, PLAYLIST, lpr);
1072         bool noopt = !lls_opt_given(r_a) && !lls_opt_given(r_A)
1073                 && !lls_opt_given(r_m) && !lls_opt_given(r_p);
1074         int ret;
1075
1076         if (noopt || lls_opt_given(r_a)) {
1077                 ret = send_callback_request(aft_check_callback, NULL,
1078                         afs_cb_result_handler, cc);
1079                 if (ret < 0)
1080                         return ret;
1081         }
1082         if (noopt || lls_opt_given(r_A)) {
1083                 ret = send_callback_request(attribute_check_callback, NULL,
1084                         afs_cb_result_handler, cc);
1085                 if (ret < 0)
1086                         return ret;
1087         }
1088         if (noopt || lls_opt_given(r_p)) {
1089                 ret = send_callback_request(playlist_check_callback,
1090                         NULL, afs_cb_result_handler, cc);
1091                 if (ret < 0)
1092                         return ret;
1093         }
1094         if (noopt || lls_opt_given(r_m)) {
1095                 ret = send_callback_request(mood_check_callback, NULL,
1096                         afs_cb_result_handler, cc);
1097                 if (ret < 0)
1098                         return ret;
1099         }
1100         return 1;
1101 }
1102 EXPORT_SERVER_CMD_HANDLER(check);
1103
1104 /**
1105  * The afs event dispatcher.
1106  *
1107  * \param event Type of the event.
1108  * \param pb May be \p NULL.
1109  * \param data Type depends on \a event.
1110  *
1111  * This function calls each table event handler, passing \a pb and \a data
1112  * verbatim. It's up to the handlers to interpret the \a data pointer. If a
1113  * handler returns negative, the loop is aborted.
1114  *
1115  * \return The (negative) error code of the first handler that failed, or non-negative
1116  * if all handlers succeeded.
1117  */
1118 __must_check int afs_event(enum afs_events event, struct para_buffer *pb,
1119                 void *data)
1120 {
1121         int i, ret;
1122
1123         for (i = 0; i < NUM_AFS_TABLES; i++) {
1124                 struct afs_table *t = &afs_tables[i];
1125                 if (!t->event_handler)
1126                         continue;
1127                 ret = t->event_handler(event, pb, data);
1128                 if (ret < 0) {
1129                         PARA_CRIT_LOG("table %s, event %u: %s\n", t->name,
1130                                 event, para_strerror(-ret));
1131                         return ret;
1132                 }
1133         }
1134         return 1;
1135 }
1136
1137 /**
1138  * Dummy event handler for the images table.
1139  *
1140  * \param event Unused.
1141  * \param pb Unused.
1142  * \param data Unused.
1143  *
1144  * \return The images table does not honor events, so this handler always
1145  * returns success.
1146  */
1147 __a_const int images_event_handler(__a_unused enum afs_events event,
1148         __a_unused  struct para_buffer *pb, __a_unused void *data)
1149 {
1150         return 1;
1151 }
1152
1153 /**
1154  * Dummy event handler for the lyrics table.
1155  *
1156  * \param event Unused.
1157  * \param pb Unused.
1158  * \param data Unused.
1159  *
1160  * \return The lyrics table does not honor events, so this handler always
1161  * returns success.
1162  */
1163 __a_const int lyrics_event_handler(__a_unused enum afs_events event,
1164         __a_unused struct para_buffer *pb, __a_unused void *data)
1165 {
1166         return 1;
1167 }