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