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