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