make_attribute_lines(): Check return value of ().
[paraslash.git] / vss.c
1 /*
2  * Copyright (C) 1997-2009 Andre Noll <maan@systemlinux.org>
3  *
4  * Licensed under the GPL v2. For licencing details see COPYING.
5  */
6
7 /** \file vss.c The virtual streaming system.
8  *
9  * This contains the audio streaming code of para_server which is independent
10  * of the current audio format, audio file selector and of the activated
11  * senders.
12  */
13
14 #include <dirent.h>
15 #include <osl.h>
16
17 #include "para.h"
18 #include "error.h"
19 #include "portable_io.h"
20 #include "fec.h"
21 #include "string.h"
22 #include "afh.h"
23 #include "afs.h"
24 #include "server.h"
25 #include "net.h"
26 #include "server.cmdline.h"
27 #include "list.h"
28 #include "vss.h"
29 #include "send.h"
30 #include "ipc.h"
31 #include "fd.h"
32 #include "sched.h"
33
34 extern struct misc_meta_data *mmd;
35
36 extern void dccp_send_init(struct sender *);
37 extern void http_send_init(struct sender *);
38 extern void udp_send_init(struct sender *);
39
40 /** The list of supported senders. */
41 struct sender senders[] = {
42         {
43                 .name = "http",
44                 .init = http_send_init,
45         },
46         {
47                 .name = "dccp",
48                 .init = dccp_send_init,
49         },
50         {
51                 .name = "udp",
52                 .init = udp_send_init,
53         },
54         {
55                 .name = NULL,
56         }
57 };
58
59 /** The possible states of the afs socket. */
60 enum afs_socket_status {
61         /** Socket is inactive. */
62         AFS_SOCKET_READY,
63         /** Socket fd was included in the write fd set for select(). */
64         AFS_SOCKET_CHECK_FOR_WRITE,
65         /** vss wrote a request to the socket and waits for reply from afs. */
66         AFS_SOCKET_AFD_PENDING
67 };
68
69 /** The task structure for the virtual streaming system. */
70 struct vss_task {
71         /** Copied from the -announce_time command line option. */
72         struct timeval announce_tv;
73         /** End of the announcing interval. */
74         struct timeval data_send_barrier;
75         /** End of the EOF interval. */
76         struct timeval eof_barrier;
77         /** Only used if --autoplay_delay was given. */
78         struct timeval autoplay_barrier;
79         /** Used for afs-server communication. */
80         int afs_socket;
81         /** The current state of \a afs_socket. */
82         enum afs_socket_status afsss;
83         /** The memory mapped audio file. */
84         char *map;
85         /** Used by the scheduler. */
86         struct task task;
87         /** Pointer to the header of the mapped audio file. */
88         const char *header_buf;
89         /** Length of the audio file header. */
90         size_t header_len;
91         /** Time between audio file headers are sent. */
92         struct timeval header_interval;
93 };
94
95 /**
96  * The list of currently connected fec clients.
97  *
98  * Senders may use \ref vss_add_fec_client() to add entries to the list.
99  */
100 static struct list_head fec_client_list;
101
102 /**
103  * Data associated with one FEC group.
104  *
105  * A FEC group consists of a fixed number of slices and this number is given by
106  * the \a slices_per_group parameter of struct \ref fec_client_parms. Each FEC
107  * group contains a number of chunks of the current audio file.
108  *
109  * FEC slices directly correspond to the data packages sent by the paraslash
110  * senders that use FEC. Each slice is identified by its group number and its
111  * number within the group. All slices have the same size, but the last slice
112  * of the group may not be filled entirely.
113  */
114 struct fec_group {
115         /** The number of the FEC group. */
116         uint32_t num;
117         /** Number of bytes in this group. */
118         uint32_t bytes;
119         /** The first chunk of the current audio file belonging to the group. */
120         uint32_t first_chunk;
121         /** The number of chunks contained in this group. */
122         uint32_t num_chunks;
123         /** When the first chunk was sent. */
124         struct timeval start;
125         /** The group duration divided by the number of slices. */
126         struct timeval slice_duration;
127         /** Group contains the audio file header that occupies that many slices. */
128         uint8_t num_header_slices;
129 };
130
131 /**
132  * Describes one connected FEC client.
133  */
134 struct fec_client {
135         /** If negative, this client is temporarily disabled. */
136         int error;
137         /** Parameters requested by the client. */
138         struct fec_client_parms *fcp;
139         /** Used by the core FEC code. */
140         struct fec_parms *parms;
141         /** The position of this client in the fec client list. */
142         struct list_head node;
143         /** When the first slice for this client was sent. */
144         struct timeval stream_start;
145         /** The first chunk sent to this FEC client. */
146         int first_stream_chunk;
147         /** Describes the current group. */
148         struct fec_group group;
149         /** The current slice. */
150         uint8_t current_slice_num;
151         /** The data to be FEC-encoded (point to a region within the mapped audio file). */
152         const unsigned char **src_data;
153         /** Last time an audio  header was sent. */
154         struct timeval next_header_time;
155         /** Used for the last source pointer of an audio file. */
156         unsigned char *extra_src_buf;
157         /** Extra slices needed to store largest chunk + header. */
158         int num_extra_slices;
159         /** Contains the FEC-encoded data. */
160         unsigned char *enc_buf;
161 };
162
163 /**
164  * Get the chunk time of the current audio file.
165  *
166  * \return A pointer to a struct containing the chunk time, or NULL,
167  * if currently no audio file is selected.
168  */
169 struct timeval *vss_chunk_time(void)
170 {
171         if (mmd->afd.afhi.chunk_tv.tv_sec == 0 &&
172                         mmd->afd.afhi.chunk_tv.tv_usec == 0)
173                 return NULL;
174         return &mmd->afd.afhi.chunk_tv;
175 }
176
177 /**
178  * Write a fec header to a buffer.
179  *
180  * \param buf The buffer to write to.
181  * \param h The fec header to write.
182  */
183 static void write_fec_header(struct fec_client *fc, struct vss_task *vsst)
184 {
185         char *buf = (char *)fc->enc_buf;
186         struct fec_group *g = &fc->group;
187         struct fec_client_parms *p = fc->fcp;
188
189         write_u32(buf, FEC_MAGIC);
190
191         write_u8(buf + 4, p->slices_per_group + fc->num_extra_slices);
192         write_u8(buf + 5, p->data_slices_per_group + fc->num_extra_slices);
193         write_u32(buf + 6, g->num_header_slices? vsst->header_len : 0);
194
195         write_u32(buf + 10, g->num);
196         write_u32(buf + 14, g->bytes);
197
198         write_u8(buf + 18, fc->current_slice_num);
199         write_u16(buf + 20, p->max_slice_bytes - FEC_HEADER_SIZE);
200         write_u8(buf + 22, g->first_chunk? 0 : 1);
201         write_u8(buf + 23, vsst->header_len? 1 : 0);
202         memset(buf + 24, 0, 7);
203 }
204
205 static int need_audio_header(struct fec_client *fc, struct vss_task *vsst)
206 {
207         if (!mmd->current_chunk) {
208                 tv_add(now, &vsst->header_interval, &fc->next_header_time);
209                 return 0;
210         }
211         if (!vsst->header_buf)
212                 return 0;
213         if (!vsst->header_len)
214                 return 0;
215         if (fc->group.num && tv_diff(&fc->next_header_time, now, NULL) > 0)
216                 return 0;
217         tv_add(now, &vsst->header_interval, &fc->next_header_time);
218         return 1;
219 }
220
221 static int num_slices(long unsigned bytes, struct fec_client *fc, uint8_t *result)
222 {
223         unsigned long m = fc->fcp->max_slice_bytes - FEC_HEADER_SIZE;
224         unsigned rv, redundant_slices = fc->fcp->slices_per_group
225                 - fc->fcp->data_slices_per_group;
226
227         if (!m)
228                 return -E_BAD_CT;
229         rv = (bytes + m - 1) / m;
230         if (rv + redundant_slices > 255)
231                 return -E_BAD_CT;
232         *result = rv;
233         return 1;
234 }
235
236 static int setup_next_fec_group(struct fec_client *fc, struct vss_task *vsst)
237 {
238         int ret, i, k, data_slices;
239         size_t len;
240         const char *buf, *start_buf;
241         struct timeval tmp, *chunk_tv = vss_chunk_time();
242         struct fec_group *g = &fc->group;
243         unsigned slice_bytes = fc->fcp->max_slice_bytes - FEC_HEADER_SIZE;
244         uint32_t max_data_size;
245
246         assert(chunk_tv);
247         k = fc->fcp->data_slices_per_group + fc->num_extra_slices;
248         if (fc->first_stream_chunk < 0) {
249                 uint32_t largest = afh_get_largest_chunk_size(&mmd->afd.afhi)
250                         + vsst->header_len;
251                 uint8_t needed, want;
252
253                 ret = num_slices(largest, fc, &needed);
254                 if (ret < 0)
255                         return ret;
256                 if (needed > fc->fcp->data_slices_per_group)
257                         PARA_WARNING_LOG("fec parms insufficient for this audio file\n");
258                 want = PARA_MAX(needed, fc->fcp->data_slices_per_group);
259                 if (want != k) {
260                         fec_free(fc->parms);
261                         fc->src_data = para_realloc(fc->src_data, want * sizeof(char *));
262                         ret = fec_new(want, want + fc->fcp->slices_per_group
263                                 - fc->fcp->data_slices_per_group, &fc->parms);
264                         if (ret < 0)
265                                 return ret;
266                         k = want;
267                         fc->num_extra_slices = 0;
268                         if (k > fc->fcp->data_slices_per_group) {
269                                 fc->num_extra_slices = k - fc->fcp->data_slices_per_group;
270                                 PARA_NOTICE_LOG("using %d extra slices\n",
271                                         fc->num_extra_slices);
272                         }
273                 }
274                 fc->stream_start = *now;
275                 fc->first_stream_chunk = mmd->current_chunk;
276                 g->first_chunk = mmd->current_chunk;
277                 g->num = 0;
278         } else {
279                 g->first_chunk += g->num_chunks;
280                 g->num++;
281         }
282         if (g->first_chunk >= mmd->afd.afhi.chunks_total)
283                 return 0;
284         if (need_audio_header(fc, vsst)) {
285                 ret = num_slices(vsst->header_len, fc, &g->num_header_slices);
286                 if (ret < 0)
287                         return ret;
288         } else
289                 g->num_header_slices = 0;
290         afh_get_chunk(g->first_chunk, &mmd->afd.afhi, vsst->map, &start_buf,
291                 &len);
292         data_slices = k - g->num_header_slices;
293         assert(data_slices);
294         max_data_size = slice_bytes * data_slices;
295         g->bytes = 0;
296         for (i = g->first_chunk; i < mmd->afd.afhi.chunks_total; i++) {
297                 afh_get_chunk(i, &mmd->afd.afhi, vsst->map, &buf, &len);
298                 if (g->bytes + len > max_data_size)
299                         break;
300                 g->bytes += len;
301         }
302         g->num_chunks = i - g->first_chunk;
303         assert(g->num_chunks);
304         fc->current_slice_num = 0;
305
306         /* setup header slices */
307         buf = vsst->header_buf;
308         for (i = 0; i < g->num_header_slices; i++) {
309                 fc->src_data[i] = (const unsigned char *)buf;
310                 buf += slice_bytes;
311         }
312
313         /* setup data slices */
314         buf = start_buf;
315         for (i = g->num_header_slices; i < k; i++) {
316                 if (buf + slice_bytes > vsst->map + mmd->size)
317                         /*
318                          * Can not use the memory mapped audio file for this
319                          * slice as it goes beyond the map. This slice will not
320                          * be fully used.
321                          */
322                         break;
323                 fc->src_data[i] = (const unsigned char *)buf;
324                 buf += slice_bytes;
325         }
326         if (i < k) {
327                 uint32_t payload_size = vsst->map + mmd->size - buf;
328                 memcpy(fc->extra_src_buf, buf, payload_size);
329                 fc->src_data[i] = fc->extra_src_buf;
330                 i++;
331                 /* use arbitrary data for all remaining slices */
332                 buf = vsst->map;
333                 for (; i < k; i++)
334                         fc->src_data[i] = (const unsigned char *)buf;
335         }
336
337         /* setup group timing */
338         tv_scale(g->first_chunk - fc->first_stream_chunk, chunk_tv, &tmp);
339         tv_add(&fc->stream_start, &tmp, &g->start);
340         if (g->num) /* quick hack to avoid buffer underruns */
341                 g->start.tv_sec--;
342         tv_scale(g->num_chunks, chunk_tv, &tmp); /* group duration */
343         tv_divide(fc->fcp->slices_per_group + fc->num_extra_slices,
344                 &tmp, &g->slice_duration);
345
346         PARA_DEBUG_LOG("FEC group %d: %d chunks (%d - %d), %d header slices, %d data slices\n",
347                 g->num, g->num_chunks, g->first_chunk,
348                 g->first_chunk + g->num_chunks - 1,
349                 g->num_header_slices, data_slices
350         );
351         PARA_DEBUG_LOG("durations (group/chunk/slice): %lu/%lu/%lu\n",
352                 tv2ms(&tmp), tv2ms(chunk_tv), tv2ms(&g->slice_duration));
353         return 1;
354 }
355
356 static int compute_next_fec_slice(struct fec_client *fc, struct vss_task *vsst)
357 {
358         assert(fc->error >= 0);
359         if (fc->first_stream_chunk < 0 || fc->current_slice_num
360                         == fc->fcp->slices_per_group + fc->num_extra_slices) {
361                 int ret = setup_next_fec_group(fc, vsst);
362                 if (ret == 0)
363                         return 0;
364                 if (ret < 0) {
365                         PARA_ERROR_LOG("%s\n", para_strerror(-ret));
366                         PARA_ERROR_LOG("FEC client temporarily disabled\n");
367                         fc->error = ret;
368                         return fc->error;
369                 }
370         }
371         write_fec_header(fc, vsst);
372         fec_encode(fc->parms, fc->src_data, fc->enc_buf + FEC_HEADER_SIZE,
373                 fc->current_slice_num,
374                 fc->fcp->max_slice_bytes - FEC_HEADER_SIZE);
375         return 1;
376 }
377
378 /**
379  * Return a buffer that marks the end of the stream.
380  *
381  * \param buf Result pointer.
382  * \return The length of the eof buffer.
383  *
384  * This is used for (multicast) udp streaming where closing the socket on the
385  * sender might not give rise to an eof condition at the peer.
386  */
387 size_t vss_get_fec_eof_packet(const char **buf)
388 {
389         static const char fec_eof_packet[FEC_HEADER_SIZE] = FEC_EOF_PACKET;
390         *buf = fec_eof_packet;
391         return FEC_HEADER_SIZE;
392 }
393
394 /**
395  * Add one entry to the list of active fec clients.
396  *
397  * \param fcp Describes the fec parameters to be used for this client.
398  * \param result An opaque pointer that must be used by remove the client later.
399  *
400  * \return Standard.
401  */
402 int vss_add_fec_client(struct fec_client_parms *fcp, struct fec_client **result)
403 {
404         int ret;
405         struct fec_client *fc;
406
407         if (fcp->max_slice_bytes < FEC_HEADER_SIZE + fcp->data_slices_per_group)
408                 return -ERRNO_TO_PARA_ERROR(EINVAL);
409         fc = para_calloc(sizeof(*fc));
410         fc->fcp = fcp;
411         ret = fec_new(fcp->data_slices_per_group, fcp->slices_per_group,
412                 &fc->parms);
413         if (ret < 0)
414                 goto err;
415         fc->first_stream_chunk = -1; /* stream not yet started */
416         fc->src_data = para_malloc(fc->fcp->slices_per_group * sizeof(char *));
417         fc->enc_buf = para_calloc(fc->fcp->max_slice_bytes);
418         fc->num_extra_slices = 0;
419         fc->extra_src_buf = para_calloc(fc->fcp->max_slice_bytes);
420         fc->next_header_time.tv_sec = 0;
421         para_list_add(&fc->node, &fec_client_list);
422         *result = fc;
423         return 1;
424 err:
425         fec_free(fc->parms);
426         free(fc);
427         *result = NULL;
428         return ret;
429 }
430
431 /**
432  * Remove one entry from the list of active fec clients.
433  *
434  * \param fc The client to be removed.
435  */
436 void vss_del_fec_client(struct fec_client *fc)
437 {
438         list_del(&fc->node);
439         free(fc->src_data);
440         free(fc->enc_buf);
441         free(fc->extra_src_buf);
442         fec_free(fc->parms);
443         free(fc);
444 }
445
446 /*
447  * Compute if/when next slice is due. If it isn't due yet and \a diff is
448  * not \p Null, compute the time difference next - now, where
449  *
450  *      next = stream_start + (first_group_chunk - first_stream_chunk)
451  *              * chunk_time + slice_num * slice_time
452  */
453 static int next_slice_is_due(struct fec_client *fc, struct timeval *diff)
454 {
455         struct timeval tmp, next;
456         int ret;
457
458         if (fc->first_stream_chunk < 0)
459                 return 1;
460         tv_scale(fc->current_slice_num, &fc->group.slice_duration, &tmp);
461         tv_add(&tmp, &fc->group.start, &next);
462         ret = tv_diff(&next, now, diff);
463         return ret < 0? 1 : 0;
464 }
465
466 static void compute_slice_timeout(struct timeval *timeout)
467 {
468         struct fec_client *fc;
469
470         assert(vss_playing());
471         list_for_each_entry(fc, &fec_client_list, node) {
472                 struct timeval diff;
473
474                 if (fc->error < 0)
475                         continue;
476                 if (next_slice_is_due(fc, &diff)) {
477                         timeout->tv_sec = 0;
478                         timeout->tv_usec = 0;
479                         return;
480                 }
481                 /* timeout = min(timeout, diff) */
482                 if (tv_diff(&diff, timeout, NULL) < 0)
483                         *timeout = diff;
484         }
485 }
486
487 static void set_eof_barrier(struct vss_task *vsst)
488 {
489         struct fec_client *fc;
490         struct timeval timeout = {1, 0}, *chunk_tv = vss_chunk_time();
491
492         if (!chunk_tv)
493                 goto out;
494         list_for_each_entry(fc, &fec_client_list, node) {
495                 struct timeval group_duration;
496
497                 if (fc->error < 0)
498                         continue;
499                 tv_scale(fc->group.num_chunks, chunk_tv, &group_duration);
500                 if (tv_diff(&timeout, &group_duration, NULL) < 0)
501                         timeout = group_duration;
502         }
503 out:
504         tv_add(now, &timeout, &vsst->eof_barrier);
505 }
506
507 /**
508  * Check if vss status flag \a P (playing) is set.
509  *
510  * \return Greater than zero if playing, zero otherwise.
511  *
512  */
513 unsigned int vss_playing(void)
514 {
515         return mmd->new_vss_status_flags & VSS_PLAYING;
516 }
517
518 /**
519  * Check if the \a N (next) status flag is set.
520  *
521  * \return Greater than zero if set, zero if not.
522  *
523  */
524 unsigned int vss_next(void)
525 {
526         return mmd->new_vss_status_flags & VSS_NEXT;
527 }
528
529 /**
530  * Check if a reposition request is pending.
531  *
532  * \return Greater than zero if true, zero otherwise.
533  *
534  */
535 unsigned int vss_repos(void)
536 {
537         return mmd->new_vss_status_flags & VSS_REPOS;
538 }
539
540 /**
541  * Check if the vss is currently paused.
542  *
543  * \return Greater than zero if paused, zero otherwise.
544  *
545  */
546 unsigned int vss_paused(void)
547 {
548         return !(mmd->new_vss_status_flags & VSS_NEXT)
549                 && !(mmd->new_vss_status_flags & VSS_PLAYING);
550 }
551
552 /**
553  * Check if the vss is currently stopped.
554  *
555  * \return Greater than zero if paused, zero otherwise.
556  *
557  */
558 unsigned int vss_stopped(void)
559 {
560         return (mmd->new_vss_status_flags & VSS_NEXT)
561                 && !(mmd->new_vss_status_flags & VSS_PLAYING);
562 }
563
564 static int chk_barrier(const char *bname, const struct timeval *barrier,
565                 struct timeval *diff, int print_log)
566 {
567         long ms;
568
569         if (tv_diff(now, barrier, diff) > 0)
570                 return 1;
571         ms = tv2ms(diff);
572         if (print_log && ms)
573                 PARA_DEBUG_LOG("%s barrier: %lims left\n", bname, ms);
574         return -1;
575 }
576
577 /*
578  * != NULL: timeout for next chunk
579  * NULL: nothing to do
580  */
581 static struct timeval *vss_compute_timeout(struct vss_task *vsst)
582 {
583         static struct timeval the_timeout;
584         struct timeval next_chunk;
585
586         if (vss_next() && vsst->map) {
587                 /* only sleep a bit, nec*/
588                 the_timeout.tv_sec = 0;
589                 the_timeout.tv_usec = 100;
590                 return &the_timeout;
591         }
592         if (chk_barrier("autoplay_delay", &vsst->autoplay_barrier,
593                         &the_timeout, 1) < 0)
594                 return &the_timeout;
595         if (chk_barrier("eof", &vsst->eof_barrier, &the_timeout, 1) < 0)
596                 return &the_timeout;
597         if (chk_barrier("data send", &vsst->data_send_barrier,
598                         &the_timeout, 1) < 0)
599                 return &the_timeout;
600         if (!vss_playing() || !vsst->map)
601                 return NULL;
602         compute_chunk_time(mmd->chunks_sent, &mmd->afd.afhi.chunk_tv,
603                 &mmd->stream_start, &next_chunk);
604         if (chk_barrier("chunk", &next_chunk, &the_timeout, 0) >= 0) {
605                 /* chunk is due or bof */
606                 the_timeout.tv_sec = 0;
607                 the_timeout.tv_usec = 0;
608                 return &the_timeout;
609         }
610         /* compute min of current timeout and next slice time */
611         compute_slice_timeout(&the_timeout);
612         return &the_timeout;
613 }
614
615 static void vss_eof(struct vss_task *vsst)
616 {
617
618         if (!vsst->map)
619                 return;
620         if (mmd->new_vss_status_flags & VSS_NOMORE)
621                 mmd->new_vss_status_flags = VSS_NEXT;
622         set_eof_barrier(vsst);
623         para_munmap(vsst->map, mmd->size);
624         vsst->map = NULL;
625         mmd->chunks_sent = 0;
626         mmd->offset = 0;
627         mmd->afd.afhi.seconds_total = 0;
628         mmd->afd.afhi.chunk_tv.tv_sec = 0;
629         mmd->afd.afhi.chunk_tv.tv_usec = 0;
630         free(mmd->afd.afhi.chunk_table);
631         mmd->afd.afhi.chunk_table = NULL;
632         mmd->mtime = 0;
633         mmd->size = 0;
634         mmd->events++;
635 }
636
637 /**
638  * Get the list of all supported audio formats.
639  *
640  * \return Aa space separated list of all supported audio formats
641  * It is not allocated at runtime, i.e. there is no need to free
642  * the returned string in the caller.
643  */
644 const char *supported_audio_formats(void)
645 {
646         return SUPPORTED_AUDIO_FORMATS;
647 }
648
649 static int need_to_request_new_audio_file(struct vss_task *vsst)
650 {
651         struct timeval diff;
652
653         if (vsst->map) /* have audio file */
654                 return 0;
655         if (!vss_playing()) /* don't need one */
656                 return 0;
657         if (mmd->new_vss_status_flags & VSS_NOMORE)
658                 return 0;
659         if (vsst->afsss == AFS_SOCKET_AFD_PENDING) /* already requested one */
660                 return 0;
661         if (chk_barrier("autoplay_delay", &vsst->autoplay_barrier,
662                         &diff, 1) < 0)
663                 return 0;
664         return 1;
665 }
666
667 /**
668  * Compute the timeout for the main select-loop of the scheduler.
669  *
670  * \param s Pointer to the server scheduler.
671  * \param t Pointer to the vss task structure.
672  *
673  * Before the timeout is computed, the current vss status flags are evaluated
674  * and acted upon by calling appropriate functions from the lower layers.
675  * Possible actions include
676  *
677  *      - request a new audio file from afs,
678  *      - shutdown of all senders (stop/pause command),
679  *      - reposition the stream (ff/jmp command).
680  */
681 static void vss_pre_select(struct sched *s, struct task *t)
682 {
683         int i;
684         struct timeval *tv, diff;
685         struct vss_task *vsst = container_of(t, struct vss_task, task);
686
687         if (!vsst->map || vss_next() || vss_paused() || vss_repos()) {
688                 struct fec_client *fc, *tmp;
689                 for (i = 0; senders[i].name; i++)
690                         if (senders[i].shutdown_clients)
691                                 senders[i].shutdown_clients();
692                 list_for_each_entry_safe(fc, tmp, &fec_client_list, node) {
693                         fc->first_stream_chunk = -1;
694                         fc->error = 0;
695                 }
696                 mmd->stream_start.tv_sec = 0;
697                 mmd->stream_start.tv_usec = 0;
698         }
699         if (vss_next())
700                 vss_eof(vsst);
701         else if (vss_paused()) {
702                 if (mmd->chunks_sent)
703                         set_eof_barrier(vsst);
704                 mmd->chunks_sent = 0;
705         } else if (vss_repos()) {
706                 tv_add(now, &vsst->announce_tv, &vsst->data_send_barrier);
707                 set_eof_barrier(vsst);
708                 mmd->chunks_sent = 0;
709                 mmd->current_chunk = mmd->repos_request;
710                 mmd->new_vss_status_flags &= ~VSS_REPOS;
711         }
712         if (need_to_request_new_audio_file(vsst)) {
713                 PARA_DEBUG_LOG("ready and playing, but no audio file\n");
714                 para_fd_set(vsst->afs_socket, &s->wfds, &s->max_fileno);
715                 vsst->afsss = AFS_SOCKET_CHECK_FOR_WRITE;
716         } else
717                 para_fd_set(vsst->afs_socket, &s->rfds, &s->max_fileno);
718         for (i = 0; senders[i].name; i++) {
719                 if (!senders[i].pre_select)
720                         continue;
721                 senders[i].pre_select(&s->max_fileno, &s->rfds, &s->wfds);
722         }
723         tv = vss_compute_timeout(vsst);
724         if (tv && tv_diff(tv, &s->timeout, &diff) < 0)
725                 s->timeout = *tv;
726 }
727
728 static int recv_afs_msg(int afs_socket, int *fd, uint32_t *code, uint32_t *data)
729 {
730         char control[255], buf[8];
731         struct msghdr msg = {.msg_iov = NULL};
732         struct cmsghdr *cmsg;
733         struct iovec iov;
734         int ret = 0;
735
736         *fd = -1;
737         iov.iov_base = buf;
738         iov.iov_len = sizeof(buf);
739         msg.msg_iov = &iov;
740         msg.msg_iovlen = 1;
741         msg.msg_control = control;
742         msg.msg_controllen = sizeof(control);
743         memset(buf, 0, sizeof(buf));
744         ret = recvmsg(afs_socket, &msg, 0);
745         if (ret < 0)
746                 return -ERRNO_TO_PARA_ERROR(errno);
747         if (iov.iov_len != sizeof(buf))
748                 return -E_AFS_SHORT_READ;
749         *code = *(uint32_t*)buf;
750         *data =  *(uint32_t*)(buf + 4);
751         for (cmsg = CMSG_FIRSTHDR(&msg); cmsg; cmsg = CMSG_NXTHDR(&msg, cmsg)) {
752                 if (cmsg->cmsg_level != SOL_SOCKET
753                         || cmsg->cmsg_type != SCM_RIGHTS)
754                         continue;
755                 if ((cmsg->cmsg_len - CMSG_LEN(0)) / sizeof(int) != 1)
756                         continue;
757                 *fd = *(int *)CMSG_DATA(cmsg);
758         }
759         return 1;
760 }
761
762 static void recv_afs_result(struct vss_task *vsst)
763 {
764         int ret, passed_fd, shmid;
765         uint32_t afs_code = 0, afs_data = 0;
766         struct stat statbuf;
767
768         vsst->afsss = AFS_SOCKET_READY;
769         ret = recv_afs_msg(vsst->afs_socket, &passed_fd, &afs_code, &afs_data);
770         if (ret < 0)
771                 goto err;
772         PARA_DEBUG_LOG("fd: %d, code: %u, shmid: %u\n", passed_fd, afs_code,
773                 afs_data);
774         ret = -E_NOFD;
775         if (afs_code != NEXT_AUDIO_FILE)
776                 goto err;
777         if (passed_fd < 0)
778                 goto err;
779         shmid = afs_data;
780         ret = load_afd(shmid, &mmd->afd);
781         if (ret < 0)
782                 goto err;
783         shm_destroy(shmid);
784         ret = fstat(passed_fd, &statbuf);
785         if (ret < 0) {
786                 PARA_ERROR_LOG("fstat error:\n");
787                 ret = -ERRNO_TO_PARA_ERROR(errno);
788                 goto err;
789         }
790         mmd->size = statbuf.st_size;
791         mmd->mtime = statbuf.st_mtime;
792         ret = para_mmap(mmd->size, PROT_READ, MAP_PRIVATE, passed_fd,
793                 0, &vsst->map);
794         if (ret < 0)
795                 goto err;
796         close(passed_fd);
797         mmd->chunks_sent = 0;
798         mmd->current_chunk = 0;
799         mmd->offset = 0;
800         mmd->events++;
801         mmd->num_played++;
802         mmd->new_vss_status_flags &= (~VSS_NEXT);
803         afh_get_header(&mmd->afd.afhi, vsst->map, &vsst->header_buf,
804                 &vsst->header_len);
805         return;
806 err:
807         free(mmd->afd.afhi.chunk_table);
808         if (passed_fd >= 0)
809                 close(passed_fd);
810         PARA_ERROR_LOG("%s\n", para_strerror(-ret));
811         mmd->new_vss_status_flags = VSS_NEXT;
812 }
813
814 /**
815  * Main sending function.
816  *
817  * This function gets called from vss_post_select(). It checks whether the next
818  * chunk of data should be pushed out. It obtains a pointer to the data to be
819  * sent out as well as its length from mmd->afd.afhi. This information is then
820  * passed to each supported sender's send() function as well as to the send()
821  * functions of each registered fec client.
822  */
823 static void vss_send(struct vss_task *vsst)
824 {
825         int i, sent_something = 0;
826         struct timeval due;
827         struct fec_client *fc, *tmp_fc;
828
829         if (!vsst->map || !vss_playing())
830                 return;
831         if (chk_barrier("eof", &vsst->eof_barrier, &due, 1) < 0)
832                 return;
833         if (chk_barrier("data send", &vsst->data_send_barrier,
834                         &due, 1) < 0)
835                 return;
836         list_for_each_entry_safe(fc, tmp_fc, &fec_client_list, node) {
837                 if (fc->error < 0)
838                         continue;
839                 if (!next_slice_is_due(fc, NULL))
840                         continue;
841                 if (compute_next_fec_slice(fc, vsst) <= 0)
842                         continue;
843                 PARA_DEBUG_LOG("sending %d:%d (%u bytes)\n", fc->group.num,
844                         fc->current_slice_num, fc->fcp->max_slice_bytes);
845                 fc->fcp->send((char *)fc->enc_buf,
846                         fc->fcp->max_slice_bytes,
847                         fc->fcp->private_data);
848                 fc->current_slice_num++;
849                 sent_something = 1;
850         }
851         if (mmd->current_chunk >= mmd->afd.afhi.chunks_total) { /* eof */
852                 if (!sent_something)
853                         mmd->new_vss_status_flags |= VSS_NEXT;
854                 return;
855         }
856         compute_chunk_time(mmd->chunks_sent, &mmd->afd.afhi.chunk_tv,
857                 &mmd->stream_start, &due);
858         if (tv_diff(&due, now, NULL) <= 0) {
859                 const char *buf;
860                 size_t len;
861
862                 if (!mmd->chunks_sent) {
863                         struct timeval tmp;
864                         mmd->stream_start = *now;
865                         tv_scale(mmd->current_chunk, &mmd->afd.afhi.chunk_tv, &tmp);
866                         mmd->offset = tv2ms(&tmp);
867                         mmd->events++;
868                 }
869                 /*
870                  * We call the send function also in case of empty chunks as
871                  * they might have still some data queued which can be sent in
872                  * this case.
873                  */
874                 afh_get_chunk(mmd->current_chunk, &mmd->afd.afhi, vsst->map,
875                         &buf, &len);
876                 for (i = 0; senders[i].name; i++) {
877                         if (!senders[i].send)
878                                 continue;
879                         senders[i].send(mmd->current_chunk, mmd->chunks_sent,
880                                 buf, len, vsst->header_buf, vsst->header_len);
881                 }
882                 mmd->chunks_sent++;
883                 mmd->current_chunk++;
884         }
885 }
886
887 static void vss_post_select(struct sched *s, struct task *t)
888 {
889         int ret, i;
890         struct vss_task *vsst = container_of(t, struct vss_task, task);
891
892
893         if (mmd->sender_cmd_data.cmd_num >= 0) {
894                 int num = mmd->sender_cmd_data.cmd_num,
895                         sender_num = mmd->sender_cmd_data.sender_num;
896
897                 if (senders[sender_num].client_cmds[num])
898                         senders[sender_num].client_cmds[num](&mmd->sender_cmd_data);
899                 mmd->sender_cmd_data.cmd_num = -1;
900         }
901         if (vsst->afsss != AFS_SOCKET_CHECK_FOR_WRITE) {
902                 if (FD_ISSET(vsst->afs_socket, &s->rfds))
903                         recv_afs_result(vsst);
904         } else if (FD_ISSET(vsst->afs_socket, &s->wfds)) {
905                 PARA_NOTICE_LOG("requesting new fd from afs\n");
906                 ret = send_buffer(vsst->afs_socket, "new");
907                 if (ret < 0)
908                         PARA_CRIT_LOG("%s\n", para_strerror(-ret));
909                 else
910                         vsst->afsss = AFS_SOCKET_AFD_PENDING;
911         }
912         for (i = 0; senders[i].name; i++) {
913                 if (!senders[i].post_select)
914                         continue;
915                 senders[i].post_select(&s->rfds, &s->wfds);
916         }
917         if ((vss_playing() && !(mmd->vss_status_flags & VSS_PLAYING)) ||
918                         (vss_next() && vss_playing()))
919                 tv_add(now, &vsst->announce_tv, &vsst->data_send_barrier);
920         vss_send(vsst);
921 }
922
923 /**
924  * Initialize the virtual streaming system task.
925  *
926  * \param afs_socket The fd for communication with afs.
927  *
928  * This also initializes all supported senders and starts streaming
929  * if the --autoplay command line flag was given.
930  */
931 void init_vss_task(int afs_socket)
932 {
933         static struct vss_task vss_task_struct, *vsst = &vss_task_struct;
934         int i;
935         char *hn = para_hostname(), *home = para_homedir();
936         long unsigned announce_time = conf.announce_time_arg > 0?
937                         conf.announce_time_arg : 300,
938                 autoplay_delay = conf.autoplay_delay_arg > 0?
939                         conf.autoplay_delay_arg : 0;
940         vsst->header_interval.tv_sec = 5; /* should this be configurable? */
941         vsst->afs_socket = afs_socket;
942         vsst->task.pre_select = vss_pre_select;
943         vsst->task.post_select = vss_post_select;
944         ms2tv(announce_time, &vsst->announce_tv);
945         PARA_INFO_LOG("announce timeval: %lums\n", tv2ms(&vsst->announce_tv));
946         INIT_LIST_HEAD(&fec_client_list);
947         for (i = 0; senders[i].name; i++) {
948                 PARA_NOTICE_LOG("initializing %s sender\n", senders[i].name);
949                 senders[i].init(&senders[i]);
950         }
951         free(hn);
952         free(home);
953         mmd->sender_cmd_data.cmd_num = -1;
954         if (conf.autoplay_given) {
955                 struct timeval tmp;
956                 mmd->vss_status_flags |= VSS_PLAYING;
957                 mmd->new_vss_status_flags |= VSS_PLAYING;
958                 ms2tv(autoplay_delay, &tmp);
959                 tv_add(now, &tmp, &vsst->autoplay_barrier);
960                 tv_add(&vsst->autoplay_barrier, &vsst->announce_tv,
961                         &vsst->data_send_barrier);
962         }
963         register_task(&vsst->task);
964 }