2004-01-28 20:02:12 -05:00
|
|
|
/* Icecast
|
|
|
|
*
|
|
|
|
* This program is distributed under the GNU General Public License, version 2.
|
|
|
|
* A copy of this license is included with this source.
|
|
|
|
*
|
|
|
|
* Copyright 2000-2004, Jack Moffitt <jack@xiph.org,
|
|
|
|
* Michael Smith <msmith@xiph.org>,
|
|
|
|
* oddsock <oddsock@xiph.org>,
|
|
|
|
* Karl Heyes <karl@xiph.org>
|
|
|
|
* and others (see AUTHORS for details).
|
|
|
|
*/
|
|
|
|
|
2003-03-27 12:10:14 -05:00
|
|
|
/* -*- c-basic-offset: 4; indent-tabs-mode: nil; -*- */
|
2003-07-20 21:58:54 -04:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2001-09-09 22:21:46 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/types.h>
|
2001-10-20 02:43:04 -04:00
|
|
|
#include <ogg/ogg.h>
|
2003-03-02 05:13:59 -05:00
|
|
|
#include <errno.h>
|
2001-10-20 02:43:04 -04:00
|
|
|
|
|
|
|
#ifndef _WIN32
|
2002-02-06 20:04:09 -05:00
|
|
|
#include <unistd.h>
|
2001-09-09 22:21:46 -04:00
|
|
|
#include <sys/time.h>
|
2004-04-25 19:28:36 -04:00
|
|
|
#include <sys/socket.h>
|
2001-10-20 02:43:04 -04:00
|
|
|
#else
|
2002-02-06 20:04:09 -05:00
|
|
|
#include <winsock2.h>
|
|
|
|
#include <windows.h>
|
2004-04-25 19:28:36 -04:00
|
|
|
#define snprintf _snprintf
|
2001-10-20 02:43:04 -04:00
|
|
|
#endif
|
2001-09-09 22:21:46 -04:00
|
|
|
|
2003-07-16 15:41:59 -04:00
|
|
|
#include "thread/thread.h"
|
|
|
|
#include "avl/avl.h"
|
|
|
|
#include "httpp/httpp.h"
|
|
|
|
#include "net/sock.h"
|
2001-09-09 22:21:46 -04:00
|
|
|
|
|
|
|
#include "connection.h"
|
|
|
|
#include "global.h"
|
|
|
|
#include "refbuf.h"
|
|
|
|
#include "client.h"
|
|
|
|
#include "stats.h"
|
2002-01-20 22:56:16 -05:00
|
|
|
#include "logging.h"
|
2003-07-20 21:58:54 -04:00
|
|
|
#include "cfgfile.h"
|
2002-07-24 10:52:28 -04:00
|
|
|
#include "util.h"
|
2001-09-09 22:21:46 -04:00
|
|
|
#include "source.h"
|
2002-12-30 02:55:56 -05:00
|
|
|
#include "format.h"
|
2004-01-14 20:01:09 -05:00
|
|
|
#include "auth.h"
|
2001-09-09 22:21:46 -04:00
|
|
|
|
2002-01-20 22:56:16 -05:00
|
|
|
#undef CATMODULE
|
|
|
|
#define CATMODULE "source"
|
|
|
|
|
2004-01-14 20:01:09 -05:00
|
|
|
#define MAX_FALLBACK_DEPTH 10
|
|
|
|
|
2004-01-29 11:46:54 -05:00
|
|
|
mutex_t move_clients_mutex;
|
|
|
|
|
2001-09-09 22:21:46 -04:00
|
|
|
/* avl tree helper */
|
|
|
|
static int _compare_clients(void *compare_arg, void *a, void *b);
|
|
|
|
static int _free_client(void *key);
|
2004-05-10 12:17:56 -04:00
|
|
|
static void _parse_audio_info (source_t *source, const char *s);
|
2004-08-20 11:13:59 -04:00
|
|
|
static void source_shutdown (source_t *source);
|
2001-09-09 22:21:46 -04:00
|
|
|
|
2004-02-19 11:32:26 -05:00
|
|
|
/* Allocate a new source with the stated mountpoint, if one already
|
|
|
|
* exists with that mountpoint in the global source tree then return
|
|
|
|
* NULL.
|
|
|
|
*/
|
|
|
|
source_t *source_reserve (const char *mount)
|
|
|
|
{
|
|
|
|
source_t *src = NULL;
|
|
|
|
|
2004-09-30 20:42:19 -04:00
|
|
|
if(mount[0] != '/')
|
|
|
|
WARN1("Source at \"%s\" does not start with '/', clients will be "
|
|
|
|
"unable to connect", mount);
|
|
|
|
|
2004-02-19 11:32:26 -05:00
|
|
|
do
|
|
|
|
{
|
|
|
|
avl_tree_wlock (global.source_tree);
|
|
|
|
src = source_find_mount_raw (mount);
|
|
|
|
if (src)
|
|
|
|
{
|
|
|
|
src = NULL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
src = calloc (1, sizeof(source_t));
|
|
|
|
if (src == NULL)
|
|
|
|
break;
|
|
|
|
|
|
|
|
src->client_tree = avl_tree_new(_compare_clients, NULL);
|
|
|
|
src->pending_tree = avl_tree_new(_compare_clients, NULL);
|
|
|
|
|
|
|
|
/* make duplicates for strings or similar */
|
|
|
|
src->mount = strdup (mount);
|
|
|
|
src->max_listeners = -1;
|
|
|
|
|
|
|
|
avl_insert (global.source_tree, src);
|
|
|
|
|
|
|
|
} while (0);
|
|
|
|
|
|
|
|
avl_tree_unlock (global.source_tree);
|
|
|
|
return src;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-01-14 20:01:09 -05:00
|
|
|
/* Find a mount with this raw name - ignoring fallbacks. You should have the
|
|
|
|
* global source tree locked to call this.
|
|
|
|
*/
|
|
|
|
source_t *source_find_mount_raw(const char *mount)
|
2001-09-09 22:21:46 -04:00
|
|
|
{
|
2003-03-14 21:10:19 -05:00
|
|
|
source_t *source;
|
|
|
|
avl_node *node;
|
|
|
|
int cmp;
|
|
|
|
|
|
|
|
if (!mount) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
/* get the root node */
|
|
|
|
node = global.source_tree->root->right;
|
|
|
|
|
|
|
|
while (node) {
|
|
|
|
source = (source_t *)node->key;
|
|
|
|
cmp = strcmp(mount, source->mount);
|
|
|
|
if (cmp < 0)
|
|
|
|
node = node->left;
|
|
|
|
else if (cmp > 0)
|
|
|
|
node = node->right;
|
|
|
|
else
|
|
|
|
return source;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* didn't find it */
|
|
|
|
return NULL;
|
2001-09-09 22:21:46 -04:00
|
|
|
}
|
|
|
|
|
2004-02-16 19:09:14 -05:00
|
|
|
|
|
|
|
/* Search for mount, if the mount is there but not currently running then
|
2004-02-17 10:46:05 -05:00
|
|
|
* check the fallback, and so on. Must have a global source lock to call
|
2004-02-16 19:09:14 -05:00
|
|
|
* this function.
|
|
|
|
*/
|
|
|
|
source_t *source_find_mount (const char *mount)
|
2004-01-14 20:01:09 -05:00
|
|
|
{
|
2004-02-16 19:09:14 -05:00
|
|
|
source_t *source = NULL;
|
2004-01-14 20:01:09 -05:00
|
|
|
ice_config_t *config;
|
2004-02-16 19:09:14 -05:00
|
|
|
mount_proxy *mountinfo;
|
|
|
|
int depth = 0;
|
|
|
|
|
|
|
|
config = config_get_config();
|
|
|
|
while (mount != NULL)
|
|
|
|
{
|
|
|
|
/* limit the number of times through, maybe infinite */
|
|
|
|
if (depth > MAX_FALLBACK_DEPTH)
|
|
|
|
{
|
|
|
|
source = NULL;
|
|
|
|
break;
|
|
|
|
}
|
2004-01-14 20:01:09 -05:00
|
|
|
|
2004-02-16 19:09:14 -05:00
|
|
|
source = source_find_mount_raw(mount);
|
2004-01-14 20:01:09 -05:00
|
|
|
|
2004-06-05 23:08:19 -04:00
|
|
|
if (source != NULL && source->running)
|
2004-02-16 19:09:14 -05:00
|
|
|
break;
|
2004-01-14 20:01:09 -05:00
|
|
|
|
2004-02-16 19:09:14 -05:00
|
|
|
/* source is not running, meaning that the fallback is not configured
|
|
|
|
within the source, we need to check the mount list */
|
|
|
|
mountinfo = config->mounts;
|
|
|
|
source = NULL;
|
|
|
|
while (mountinfo)
|
|
|
|
{
|
|
|
|
if (strcmp (mountinfo->mountname, mount) == 0)
|
2004-01-14 20:01:09 -05:00
|
|
|
break;
|
|
|
|
mountinfo = mountinfo->next;
|
|
|
|
}
|
2004-02-16 19:09:14 -05:00
|
|
|
if (mountinfo)
|
|
|
|
mount = mountinfo->fallback_mount;
|
2004-01-14 20:01:09 -05:00
|
|
|
else
|
2004-02-16 19:09:14 -05:00
|
|
|
mount = NULL;
|
|
|
|
depth++;
|
2004-01-14 20:01:09 -05:00
|
|
|
}
|
|
|
|
|
2004-02-16 19:09:14 -05:00
|
|
|
config_release_config();
|
2004-01-14 20:01:09 -05:00
|
|
|
return source;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-09 22:21:46 -04:00
|
|
|
int source_compare_sources(void *arg, void *a, void *b)
|
|
|
|
{
|
2003-03-14 21:10:19 -05:00
|
|
|
source_t *srca = (source_t *)a;
|
|
|
|
source_t *srcb = (source_t *)b;
|
2001-09-09 22:21:46 -04:00
|
|
|
|
2003-03-14 21:10:19 -05:00
|
|
|
return strcmp(srca->mount, srcb->mount);
|
2001-09-09 22:21:46 -04:00
|
|
|
}
|
|
|
|
|
2004-02-19 11:32:26 -05:00
|
|
|
|
|
|
|
void source_clear_source (source_t *source)
|
|
|
|
{
|
|
|
|
DEBUG1 ("clearing source \"%s\"", source->mount);
|
|
|
|
client_destroy(source->client);
|
|
|
|
source->client = NULL;
|
2004-02-19 15:28:21 -05:00
|
|
|
source->parser = NULL;
|
|
|
|
source->con = NULL;
|
2004-02-19 11:32:26 -05:00
|
|
|
|
2004-02-27 10:15:40 -05:00
|
|
|
if (source->dumpfile)
|
|
|
|
{
|
|
|
|
INFO1 ("Closing dumpfile for %s", source->mount);
|
|
|
|
fclose (source->dumpfile);
|
|
|
|
source->dumpfile = NULL;
|
|
|
|
}
|
|
|
|
|
2004-02-19 11:32:26 -05:00
|
|
|
/* lets kick off any clients that are left on here */
|
|
|
|
avl_tree_rlock (source->client_tree);
|
|
|
|
while (avl_get_first (source->client_tree))
|
|
|
|
{
|
|
|
|
avl_delete (source->client_tree,
|
|
|
|
avl_get_first (source->client_tree)->key, _free_client);
|
|
|
|
}
|
|
|
|
avl_tree_unlock (source->client_tree);
|
|
|
|
|
|
|
|
avl_tree_rlock (source->pending_tree);
|
|
|
|
while (avl_get_first (source->pending_tree))
|
|
|
|
{
|
|
|
|
avl_delete (source->pending_tree,
|
|
|
|
avl_get_first(source->pending_tree)->key, _free_client);
|
|
|
|
}
|
|
|
|
avl_tree_unlock (source->pending_tree);
|
|
|
|
|
|
|
|
if (source->format && source->format->free_plugin)
|
|
|
|
{
|
|
|
|
source->format->free_plugin (source->format);
|
|
|
|
}
|
|
|
|
source->format = NULL;
|
2004-05-10 12:17:56 -04:00
|
|
|
if (source->yp_public)
|
|
|
|
yp_remove (source->mount);
|
2004-02-19 15:28:21 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
source->burst_point = NULL;
|
|
|
|
source->burst_size = 0;
|
|
|
|
source->burst_offset = 0;
|
|
|
|
source->queue_size = 0;
|
2004-02-27 10:15:40 -05:00
|
|
|
source->queue_size_limit = 0;
|
2004-02-19 11:32:26 -05:00
|
|
|
source->listeners = 0;
|
|
|
|
source->no_mount = 0;
|
|
|
|
source->max_listeners = -1;
|
|
|
|
source->yp_public = 0;
|
2004-08-20 18:55:27 -04:00
|
|
|
util_dict_free (source->audio_info);
|
|
|
|
source->audio_info = NULL;
|
2004-02-19 11:32:26 -05:00
|
|
|
|
|
|
|
free(source->fallback_mount);
|
|
|
|
source->fallback_mount = NULL;
|
|
|
|
|
|
|
|
free(source->dumpfilename);
|
|
|
|
source->dumpfilename = NULL;
|
2004-08-20 11:13:59 -04:00
|
|
|
|
2004-04-29 11:23:13 -04:00
|
|
|
/* Lets clear out the source queue too */
|
2004-08-20 11:13:59 -04:00
|
|
|
while (source->stream_data)
|
|
|
|
{
|
|
|
|
refbuf_t *p = source->stream_data;
|
|
|
|
source->stream_data = p->next;
|
|
|
|
/* can be referenced by burst handler as well */
|
|
|
|
while (p->_count > 1)
|
|
|
|
refbuf_release (p);
|
|
|
|
refbuf_release (p);
|
|
|
|
}
|
|
|
|
source->stream_data_tail = NULL;
|
2004-02-19 11:32:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-02-19 15:28:21 -05:00
|
|
|
/* Remove the provided source from the global tree and free it */
|
2004-02-27 10:15:40 -05:00
|
|
|
void source_free_source (source_t *source)
|
2001-09-09 22:21:46 -04:00
|
|
|
{
|
2004-02-19 15:28:21 -05:00
|
|
|
DEBUG1 ("freeing source \"%s\"", source->mount);
|
|
|
|
avl_tree_wlock (global.source_tree);
|
|
|
|
avl_delete (global.source_tree, source, NULL);
|
|
|
|
avl_tree_unlock (global.source_tree);
|
|
|
|
|
2003-03-14 21:10:19 -05:00
|
|
|
avl_tree_free(source->pending_tree, _free_client);
|
|
|
|
avl_tree_free(source->client_tree, _free_client);
|
2004-02-19 15:28:21 -05:00
|
|
|
|
|
|
|
free (source->mount);
|
|
|
|
free (source);
|
2001-09-09 22:21:46 -04:00
|
|
|
|
2004-02-27 10:15:40 -05:00
|
|
|
return;
|
2001-09-09 22:21:46 -04:00
|
|
|
}
|
2003-03-30 08:52:27 -05:00
|
|
|
|
2004-02-19 15:28:21 -05:00
|
|
|
|
2003-03-30 08:52:27 -05:00
|
|
|
client_t *source_find_client(source_t *source, int id)
|
|
|
|
{
|
|
|
|
client_t fakeclient;
|
2003-07-24 12:21:22 -04:00
|
|
|
void *result;
|
2003-03-30 08:52:27 -05:00
|
|
|
connection_t fakecon;
|
|
|
|
|
|
|
|
fakeclient.con = &fakecon;
|
|
|
|
fakeclient.con->id = id;
|
|
|
|
|
|
|
|
avl_tree_rlock(source->client_tree);
|
2003-07-24 12:21:22 -04:00
|
|
|
if(avl_get_by_key(source->client_tree, &fakeclient, &result) == 0)
|
2003-03-30 08:52:27 -05:00
|
|
|
{
|
|
|
|
avl_tree_unlock(source->client_tree);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
avl_tree_unlock(source->client_tree);
|
|
|
|
return NULL;
|
|
|
|
}
|
2004-01-29 11:46:54 -05:00
|
|
|
|
2004-02-27 10:15:40 -05:00
|
|
|
/* Move clients from source to dest provided dest is running
|
|
|
|
* and that the stream format is the same.
|
|
|
|
* The only lock that should be held when this is called is the
|
|
|
|
* source tree lock
|
|
|
|
*/
|
2004-01-29 11:46:54 -05:00
|
|
|
void source_move_clients (source_t *source, source_t *dest)
|
|
|
|
{
|
2004-02-27 10:15:40 -05:00
|
|
|
/* we don't want the two write locks to deadlock in here */
|
|
|
|
thread_mutex_lock (&move_clients_mutex);
|
|
|
|
|
|
|
|
/* if the destination is not running then we can't move clients */
|
2004-01-29 11:46:54 -05:00
|
|
|
|
|
|
|
if (dest->running == 0)
|
|
|
|
{
|
2004-02-27 10:15:40 -05:00
|
|
|
WARN1 ("destination mount %s not running, unable to move clients ", dest->mount);
|
|
|
|
thread_mutex_unlock (&move_clients_mutex);
|
2004-01-29 11:46:54 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
avl_tree_wlock (dest->pending_tree);
|
2004-02-27 10:15:40 -05:00
|
|
|
do
|
2004-01-29 11:46:54 -05:00
|
|
|
{
|
2004-02-27 10:15:40 -05:00
|
|
|
client_t *client;
|
2004-01-29 11:46:54 -05:00
|
|
|
|
2004-02-27 10:15:40 -05:00
|
|
|
/* we need to move the client and pending trees */
|
|
|
|
avl_tree_wlock (source->pending_tree);
|
2004-01-29 11:46:54 -05:00
|
|
|
|
2004-02-27 10:15:40 -05:00
|
|
|
if (source->format == NULL)
|
|
|
|
{
|
|
|
|
INFO1 ("source mount %s is not available", source->mount);
|
2004-01-29 11:46:54 -05:00
|
|
|
break;
|
2004-02-27 10:15:40 -05:00
|
|
|
}
|
|
|
|
if (source->format->type != dest->format->type)
|
|
|
|
{
|
|
|
|
WARN2 ("stream %s and %s are of different types, ignored", source->mount, dest->mount);
|
|
|
|
break;
|
|
|
|
}
|
2004-01-29 11:46:54 -05:00
|
|
|
|
2004-02-27 10:15:40 -05:00
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
avl_node *node = avl_get_first (source->pending_tree);
|
|
|
|
if (node == NULL)
|
|
|
|
break;
|
|
|
|
client = (client_t *)(node->key);
|
|
|
|
avl_delete (source->pending_tree, client, NULL);
|
2004-01-29 11:46:54 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
/* switch client to different queue */
|
|
|
|
client_set_queue (client, dest->stream_data_tail);
|
2004-02-27 10:15:40 -05:00
|
|
|
avl_insert (dest->pending_tree, (void *)client);
|
|
|
|
}
|
|
|
|
|
|
|
|
avl_tree_wlock (source->client_tree);
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
avl_node *node = avl_get_first (source->client_tree);
|
|
|
|
if (node == NULL)
|
|
|
|
break;
|
|
|
|
|
|
|
|
client = (client_t *)(node->key);
|
|
|
|
avl_delete (source->client_tree, client, NULL);
|
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
/* switch client to different queue */
|
|
|
|
client_set_queue (client, dest->stream_data_tail);
|
2004-02-27 10:15:40 -05:00
|
|
|
avl_insert (dest->pending_tree, (void *)client);
|
|
|
|
}
|
|
|
|
source->listeners = 0;
|
|
|
|
stats_event (source->mount, "listeners", "0");
|
|
|
|
avl_tree_unlock (source->client_tree);
|
|
|
|
|
|
|
|
} while (0);
|
|
|
|
|
|
|
|
avl_tree_unlock (source->pending_tree);
|
2004-01-29 11:46:54 -05:00
|
|
|
avl_tree_unlock (dest->pending_tree);
|
|
|
|
thread_mutex_unlock (&move_clients_mutex);
|
|
|
|
}
|
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
/* get some data from the source. The stream data is placed in a refbuf
|
|
|
|
* and sent back, however NULL is also valid as in the case of a short
|
|
|
|
* timeout and there's no data pending.
|
|
|
|
*/
|
|
|
|
static refbuf_t *get_next_buffer (source_t *source)
|
|
|
|
{
|
|
|
|
refbuf_t *refbuf = NULL;
|
|
|
|
int delay = 250;
|
|
|
|
|
|
|
|
if (source->short_delay)
|
|
|
|
delay = 0;
|
|
|
|
while (global.running == ICE_RUNNING && source->running)
|
|
|
|
{
|
|
|
|
int fds;
|
|
|
|
time_t current = time (NULL);
|
|
|
|
|
|
|
|
fds = util_timed_wait_for_fd (source->con->sock, delay);
|
|
|
|
|
|
|
|
if (fds < 0)
|
|
|
|
{
|
|
|
|
if (! sock_recoverable (sock_error()))
|
|
|
|
{
|
|
|
|
WARN0 ("Error while waiting on socket, Disconnecting source");
|
|
|
|
source->running = 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (fds == 0)
|
|
|
|
{
|
|
|
|
if (source->last_read + (time_t)source->timeout < current)
|
|
|
|
{
|
|
|
|
DEBUG3 ("last %ld, timeout %ld, now %ld", source->last_read, source->timeout, current);
|
|
|
|
WARN0 ("Disconnecting source due to socket timeout");
|
|
|
|
source->running = 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
source->last_read = current;
|
|
|
|
refbuf = source->format->get_buffer (source);
|
|
|
|
if (refbuf)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return refbuf;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* general send routine per listener. The deletion_expected tells us whether
|
|
|
|
* the last in the queue is about to disappear, so if this client is still
|
|
|
|
* referring to it after writing then drop the client as it's fallen too far
|
|
|
|
* behind
|
|
|
|
*/
|
|
|
|
static void send_to_listener (source_t *source, client_t *client, int deletion_expected)
|
|
|
|
{
|
|
|
|
int bytes;
|
|
|
|
int loop = 10; /* max number of iterations in one go */
|
|
|
|
int total_written = 0;
|
|
|
|
|
|
|
|
/* new users need somewhere to start from */
|
|
|
|
if (client->refbuf == NULL)
|
|
|
|
{
|
|
|
|
/* make clients start at the per source burst point on the queue */
|
|
|
|
client_set_queue (client, source->burst_point);
|
|
|
|
if (client->refbuf == NULL)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
/* jump out if client connection has died */
|
|
|
|
if (client->con->error)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* lets not send too much to one client in one go, but don't
|
|
|
|
sleep for too long if more data can be sent */
|
|
|
|
if (total_written > 20000 || loop == 0)
|
|
|
|
{
|
|
|
|
source->short_delay = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
loop--;
|
|
|
|
|
|
|
|
bytes = source->format->write_buf_to_client (source->format, client);
|
|
|
|
if (bytes <= 0)
|
|
|
|
break; /* can't write any more */
|
|
|
|
|
|
|
|
total_written += bytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* the refbuf referenced at head (last in queue) may be marked for deletion
|
|
|
|
* if so, check to see if this client is still referring to it */
|
|
|
|
if (deletion_expected && client->refbuf == source->stream_data)
|
|
|
|
{
|
|
|
|
DEBUG0("Client has fallen too far behind, removing");
|
|
|
|
client->con->error = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-09-09 22:21:46 -04:00
|
|
|
|
2004-02-26 11:51:43 -05:00
|
|
|
static void source_init (source_t *source)
|
2001-09-09 22:21:46 -04:00
|
|
|
{
|
2004-02-26 11:51:43 -05:00
|
|
|
ice_config_t *config = config_get_config();
|
2004-05-10 12:17:56 -04:00
|
|
|
char *listenurl, *str;
|
2004-02-26 11:51:43 -05:00
|
|
|
int listen_url_size;
|
|
|
|
|
2004-01-15 10:37:25 -05:00
|
|
|
/* 6 for max size of port */
|
2004-02-26 11:51:43 -05:00
|
|
|
listen_url_size = strlen("http://") + strlen(config->hostname) +
|
|
|
|
strlen(":") + 6 + strlen(source->mount) + 1;
|
|
|
|
|
|
|
|
listenurl = malloc (listen_url_size);
|
|
|
|
memset (listenurl, '\000', listen_url_size);
|
|
|
|
snprintf (listenurl, listen_url_size, "http://%s:%d%s",
|
|
|
|
config->hostname, config->port, source->mount);
|
|
|
|
config_release_config();
|
|
|
|
|
2004-05-10 12:17:56 -04:00
|
|
|
/* maybe better in connection.c */
|
|
|
|
if ((str = httpp_getvar(source->parser, "ice-public")))
|
|
|
|
source->yp_public = atoi(str);
|
|
|
|
if ((str = httpp_getvar(source->parser, "icy-pub")))
|
|
|
|
source->yp_public = atoi(str);
|
|
|
|
if (str == NULL)
|
|
|
|
str = "0";
|
|
|
|
stats_event (source->mount, "public", str);
|
|
|
|
|
|
|
|
str = httpp_getvar(source->parser, "ice-audio-info");
|
|
|
|
source->audio_info = util_dict_new();
|
|
|
|
if (str)
|
|
|
|
{
|
|
|
|
_parse_audio_info (source, str);
|
|
|
|
stats_event (source->mount, "audio_info", str);
|
|
|
|
}
|
|
|
|
|
2004-02-26 11:51:43 -05:00
|
|
|
stats_event (source->mount, "listenurl", listenurl);
|
|
|
|
|
2004-01-15 10:37:25 -05:00
|
|
|
if (listenurl) {
|
|
|
|
free(listenurl);
|
|
|
|
}
|
2004-02-26 11:51:43 -05:00
|
|
|
|
2004-02-19 16:16:59 -05:00
|
|
|
if (source->dumpfilename != NULL)
|
|
|
|
{
|
|
|
|
source->dumpfile = fopen (source->dumpfilename, "ab");
|
|
|
|
if (source->dumpfile == NULL)
|
|
|
|
{
|
|
|
|
WARN2("Cannot open dump file \"%s\" for appending: %s, disabling.",
|
|
|
|
source->dumpfilename, strerror(errno));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-02-26 11:51:43 -05:00
|
|
|
/* grab a read lock, to make sure we get a chance to cleanup */
|
|
|
|
thread_rwlock_rlock (source->shutdown_rwlock);
|
|
|
|
|
|
|
|
/* start off the statistics */
|
|
|
|
source->listeners = 0;
|
|
|
|
stats_event_inc (NULL, "sources");
|
|
|
|
stats_event_inc (NULL, "source_total_connections");
|
|
|
|
stats_event (source->mount, "listeners", "0");
|
|
|
|
stats_event (source->mount, "type", source->format->format_description);
|
2004-02-27 10:15:40 -05:00
|
|
|
|
2004-02-25 11:24:30 -05:00
|
|
|
sock_set_blocking (source->con->sock, SOCK_NONBLOCK);
|
2003-02-06 08:10:48 -05:00
|
|
|
|
2003-02-25 04:40:34 -05:00
|
|
|
DEBUG0("Source creation complete");
|
2004-08-20 11:13:59 -04:00
|
|
|
source->last_read = time (NULL);
|
2004-02-19 11:32:26 -05:00
|
|
|
source->running = 1;
|
2003-02-25 04:40:34 -05:00
|
|
|
|
2004-01-14 20:01:09 -05:00
|
|
|
/*
|
|
|
|
** Now, if we have a fallback source and override is on, we want
|
2004-03-08 21:36:01 -05:00
|
|
|
** to steal its clients, because it means we've come back online
|
2004-01-14 20:01:09 -05:00
|
|
|
** after a failure and they should be gotten back from the waiting
|
|
|
|
** loop or jingle track or whatever the fallback is used for
|
|
|
|
*/
|
|
|
|
|
2004-02-26 11:51:43 -05:00
|
|
|
if (source->fallback_override && source->fallback_mount)
|
|
|
|
{
|
|
|
|
source_t *fallback_source;
|
|
|
|
|
2004-01-14 20:01:09 -05:00
|
|
|
avl_tree_rlock(global.source_tree);
|
|
|
|
fallback_source = source_find_mount(source->fallback_mount);
|
|
|
|
|
2004-01-29 11:46:54 -05:00
|
|
|
if (fallback_source)
|
|
|
|
source_move_clients (fallback_source, source);
|
2004-01-14 20:01:09 -05:00
|
|
|
|
2004-01-29 11:46:54 -05:00
|
|
|
avl_tree_unlock(global.source_tree);
|
2004-01-14 20:01:09 -05:00
|
|
|
}
|
2004-05-10 12:17:56 -04:00
|
|
|
if (source->yp_public)
|
|
|
|
yp_add (source);
|
2004-02-26 11:51:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void source_main (source_t *source)
|
|
|
|
{
|
2004-08-20 11:13:59 -04:00
|
|
|
unsigned int listeners;
|
|
|
|
refbuf_t *refbuf;
|
2004-02-26 11:51:43 -05:00
|
|
|
client_t *client;
|
|
|
|
avl_node *client_node;
|
|
|
|
|
|
|
|
source_init (source);
|
2004-01-14 20:01:09 -05:00
|
|
|
|
2003-03-14 21:10:19 -05:00
|
|
|
while (global.running == ICE_RUNNING && source->running) {
|
2004-08-20 11:13:59 -04:00
|
|
|
int remove_from_q;
|
2001-09-09 22:21:46 -04:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
refbuf = get_next_buffer (source);
|
2003-03-14 21:10:19 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
remove_from_q = 0;
|
|
|
|
source->short_delay = 0;
|
2003-03-14 21:10:19 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
if (refbuf)
|
|
|
|
{
|
|
|
|
/* append buffer to the in-flight data queue, */
|
|
|
|
if (source->stream_data == NULL)
|
2003-03-02 05:13:59 -05:00
|
|
|
{
|
2004-08-20 11:13:59 -04:00
|
|
|
source->stream_data = refbuf;
|
|
|
|
source->burst_point = refbuf;
|
2003-03-14 21:10:19 -05:00
|
|
|
}
|
2004-08-20 11:13:59 -04:00
|
|
|
if (source->stream_data_tail)
|
|
|
|
source->stream_data_tail->next = refbuf;
|
|
|
|
source->stream_data_tail = refbuf;
|
|
|
|
source->queue_size += refbuf->len;
|
|
|
|
/* new buffer is referenced for burst */
|
|
|
|
refbuf_addref (refbuf);
|
|
|
|
|
|
|
|
/* new data on queue, so check the burst point */
|
|
|
|
source->burst_offset += refbuf->len;
|
|
|
|
if (source->burst_offset > source->burst_size)
|
|
|
|
{
|
|
|
|
if (source->burst_point->next)
|
|
|
|
{
|
|
|
|
refbuf_release (source->burst_point);
|
|
|
|
source->burst_point = source->burst_point->next;
|
|
|
|
source->burst_offset -= source->burst_point->len;
|
2003-03-14 21:10:19 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
/* save stream to file */
|
|
|
|
if (source->dumpfile && source->format->write_buf_to_file)
|
|
|
|
source->format->write_buf_to_file (source, refbuf);
|
2004-04-29 11:23:13 -04:00
|
|
|
}
|
2004-08-20 11:13:59 -04:00
|
|
|
/* lets see if we have too much data in the queue, but don't remove it until later */
|
|
|
|
if (source->queue_size > source->queue_size_limit)
|
|
|
|
remove_from_q = 1;
|
2003-03-14 21:10:19 -05:00
|
|
|
|
|
|
|
/* acquire write lock on client_tree */
|
|
|
|
avl_tree_wlock(source->client_tree);
|
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
listeners = source->listeners;
|
2003-03-14 21:10:19 -05:00
|
|
|
client_node = avl_get_first(source->client_tree);
|
|
|
|
while (client_node) {
|
|
|
|
client = (client_t *)client_node->key;
|
2004-08-20 11:13:59 -04:00
|
|
|
|
|
|
|
send_to_listener (source, client, remove_from_q);
|
|
|
|
|
2003-03-14 21:10:19 -05:00
|
|
|
if (client->con->error) {
|
|
|
|
client_node = avl_get_next(client_node);
|
|
|
|
avl_delete(source->client_tree, (void *)client, _free_client);
|
2004-01-14 20:01:09 -05:00
|
|
|
source->listeners--;
|
2002-08-09 04:06:00 -04:00
|
|
|
DEBUG0("Client removed");
|
2003-03-14 21:10:19 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
client_node = avl_get_next(client_node);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* acquire write lock on pending_tree */
|
|
|
|
avl_tree_wlock(source->pending_tree);
|
|
|
|
|
|
|
|
/** add pending clients **/
|
|
|
|
client_node = avl_get_first(source->pending_tree);
|
|
|
|
while (client_node) {
|
2004-01-14 20:01:09 -05:00
|
|
|
if(source->max_listeners != -1 &&
|
|
|
|
source->listeners >= source->max_listeners)
|
|
|
|
{
|
|
|
|
/* The common case is caught in the main connection handler,
|
|
|
|
* this deals with rarer cases (mostly concerning fallbacks)
|
|
|
|
* and doesn't give the listening client any information about
|
|
|
|
* why they were disconnected
|
|
|
|
*/
|
|
|
|
client = (client_t *)client_node->key;
|
|
|
|
client_node = avl_get_next(client_node);
|
|
|
|
avl_delete(source->pending_tree, (void *)client, _free_client);
|
|
|
|
|
|
|
|
INFO0("Client deleted, exceeding maximum listeners for this "
|
|
|
|
"mountpoint.");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Otherwise, the client is accepted, add it */
|
2003-03-14 21:10:19 -05:00
|
|
|
avl_insert(source->client_tree, client_node->key);
|
2004-01-14 20:01:09 -05:00
|
|
|
|
|
|
|
source->listeners++;
|
2002-08-09 04:06:00 -04:00
|
|
|
DEBUG0("Client added");
|
2003-03-14 21:10:19 -05:00
|
|
|
stats_event_inc(NULL, "clients");
|
|
|
|
stats_event_inc(source->mount, "connections");
|
|
|
|
|
|
|
|
client_node = avl_get_next(client_node);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** clear pending tree **/
|
|
|
|
while (avl_get_first(source->pending_tree)) {
|
2004-01-14 20:01:09 -05:00
|
|
|
avl_delete(source->pending_tree,
|
|
|
|
avl_get_first(source->pending_tree)->key,
|
|
|
|
source_remove_client);
|
2003-03-14 21:10:19 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* release write lock on pending_tree */
|
|
|
|
avl_tree_unlock(source->pending_tree);
|
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
/* update the stats if need be */
|
|
|
|
if (source->listeners != listeners)
|
|
|
|
{
|
|
|
|
INFO2("listener count on %s now %d", source->mount, source->listeners);
|
|
|
|
stats_event_args (source->mount, "listeners", "%d", source->listeners);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* lets reduce the queue, any lagging clients should of been
|
|
|
|
* terminated by now
|
|
|
|
*/
|
|
|
|
if (source->stream_data)
|
|
|
|
{
|
|
|
|
/* normal unreferenced queue data will have a refcount 1, but
|
|
|
|
* burst queue data will be at least 2, active clients will also
|
|
|
|
* increase refcount */
|
|
|
|
while (source->stream_data->_count == 1)
|
|
|
|
{
|
|
|
|
refbuf_t *to_go = source->stream_data;
|
|
|
|
|
|
|
|
if (to_go->next == NULL || source->burst_point == to_go)
|
|
|
|
{
|
|
|
|
/* this should not happen */
|
|
|
|
ERROR0 ("queue state is unexpected");
|
|
|
|
source->running = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
source->stream_data = to_go->next;
|
|
|
|
source->queue_size -= to_go->len;
|
|
|
|
refbuf_release (to_go);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-03-14 21:10:19 -05:00
|
|
|
/* release write lock on client_tree */
|
|
|
|
avl_tree_unlock(source->client_tree);
|
|
|
|
}
|
2004-08-20 11:13:59 -04:00
|
|
|
source_shutdown (source);
|
|
|
|
}
|
2001-09-09 22:21:46 -04:00
|
|
|
|
2002-04-05 04:28:26 -05:00
|
|
|
|
2004-08-20 11:13:59 -04:00
|
|
|
static void source_shutdown (source_t *source)
|
|
|
|
{
|
2004-02-19 15:28:21 -05:00
|
|
|
source->running = 0;
|
2003-03-31 07:54:44 -05:00
|
|
|
INFO1("Source \"%s\" exiting", source->mount);
|
2003-03-27 12:10:14 -05:00
|
|
|
|
2004-02-19 15:28:21 -05:00
|
|
|
/* we have de-activated the source now, so no more clients will be
|
|
|
|
* added, now move the listeners we have to the fallback (if any)
|
2003-03-14 02:59:58 -05:00
|
|
|
*/
|
2004-02-26 11:51:43 -05:00
|
|
|
if (source->fallback_mount)
|
|
|
|
{
|
|
|
|
source_t *fallback_source;
|
2002-12-30 10:19:46 -05:00
|
|
|
|
2004-02-26 11:51:43 -05:00
|
|
|
avl_tree_rlock(global.source_tree);
|
|
|
|
fallback_source = source_find_mount (source->fallback_mount);
|
2002-12-30 10:19:46 -05:00
|
|
|
|
2004-02-26 11:51:43 -05:00
|
|
|
if (fallback_source != NULL)
|
|
|
|
source_move_clients (source, fallback_source);
|
|
|
|
|
|
|
|
avl_tree_unlock (global.source_tree);
|
|
|
|
}
|
2001-09-09 22:21:46 -04:00
|
|
|
|
2003-03-14 21:10:19 -05:00
|
|
|
/* delete this sources stats */
|
|
|
|
stats_event_dec(NULL, "sources");
|
2004-10-25 10:03:42 -04:00
|
|
|
stats_event(source->mount, NULL, NULL);
|
2001-09-09 22:21:46 -04:00
|
|
|
|
2004-02-27 10:15:40 -05:00
|
|
|
/* we don't remove the source from the tree here, it may be a relay and
|
|
|
|
therefore reserved */
|
|
|
|
source_clear_source (source);
|
|
|
|
|
2003-03-14 21:10:19 -05:00
|
|
|
global_lock();
|
|
|
|
global.sources--;
|
|
|
|
global_unlock();
|
2001-09-09 22:21:46 -04:00
|
|
|
|
2003-03-14 21:10:19 -05:00
|
|
|
/* release our hold on the lock so the main thread can continue cleaning up */
|
|
|
|
thread_rwlock_unlock(source->shutdown_rwlock);
|
2001-09-09 22:21:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static int _compare_clients(void *compare_arg, void *a, void *b)
|
|
|
|
{
|
2003-03-30 08:52:27 -05:00
|
|
|
client_t *clienta = (client_t *)a;
|
|
|
|
client_t *clientb = (client_t *)b;
|
|
|
|
|
|
|
|
connection_t *cona = clienta->con;
|
|
|
|
connection_t *conb = clientb->con;
|
2001-09-09 22:21:46 -04:00
|
|
|
|
2003-03-14 21:10:19 -05:00
|
|
|
if (cona->id < conb->id) return -1;
|
|
|
|
if (cona->id > conb->id) return 1;
|
2001-09-09 22:21:46 -04:00
|
|
|
|
2003-03-14 21:10:19 -05:00
|
|
|
return 0;
|
2001-09-09 22:21:46 -04:00
|
|
|
}
|
|
|
|
|
2003-03-14 02:59:58 -05:00
|
|
|
int source_remove_client(void *key)
|
2001-09-09 22:21:46 -04:00
|
|
|
{
|
2003-03-14 21:10:19 -05:00
|
|
|
return 1;
|
2001-09-09 22:21:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static int _free_client(void *key)
|
|
|
|
{
|
2003-03-14 21:10:19 -05:00
|
|
|
client_t *client = (client_t *)key;
|
|
|
|
|
|
|
|
global_lock();
|
|
|
|
global.clients--;
|
|
|
|
global_unlock();
|
|
|
|
stats_event_dec(NULL, "clients");
|
|
|
|
|
|
|
|
client_destroy(client);
|
|
|
|
|
|
|
|
return 1;
|
2001-09-09 22:21:46 -04:00
|
|
|
}
|
2003-02-06 08:10:48 -05:00
|
|
|
|
2004-05-10 12:17:56 -04:00
|
|
|
static void _parse_audio_info (source_t *source, const char *s)
|
2003-02-26 18:52:23 -05:00
|
|
|
{
|
2004-05-10 12:17:56 -04:00
|
|
|
const char *start = s;
|
2004-08-20 11:13:59 -04:00
|
|
|
unsigned int len;
|
2004-05-10 12:17:56 -04:00
|
|
|
|
|
|
|
while (start != NULL && *start != '\0')
|
|
|
|
{
|
|
|
|
if ((s = strchr (start, ';')) == NULL)
|
|
|
|
len = strlen (start);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
len = (int)(s - start);
|
|
|
|
s++; /* skip passed the ';' */
|
|
|
|
}
|
|
|
|
if (len)
|
|
|
|
{
|
|
|
|
char name[100], value[100];
|
|
|
|
char *esc;
|
|
|
|
|
|
|
|
sscanf (start, "%199[^=]=%199[^;\r\n]", name, value);
|
|
|
|
esc = util_url_unescape (value);
|
|
|
|
if (esc)
|
|
|
|
{
|
|
|
|
util_dict_set (source->audio_info, name, esc);
|
|
|
|
stats_event (source->mount, name, value);
|
|
|
|
free (esc);
|
2003-02-26 18:52:23 -05:00
|
|
|
}
|
|
|
|
}
|
2004-05-10 12:17:56 -04:00
|
|
|
start = s;
|
2003-02-26 18:52:23 -05:00
|
|
|
}
|
|
|
|
}
|
2004-02-19 11:32:26 -05:00
|
|
|
|
|
|
|
|
|
|
|
void source_apply_mount (source_t *source, mount_proxy *mountinfo)
|
|
|
|
{
|
|
|
|
DEBUG1("Applying mount information for \"%s\"", source->mount);
|
|
|
|
source->max_listeners = mountinfo->max_listeners;
|
|
|
|
source->fallback_override = mountinfo->fallback_override;
|
|
|
|
source->no_mount = mountinfo->no_mount;
|
|
|
|
if (mountinfo->fallback_mount)
|
|
|
|
{
|
|
|
|
source->fallback_mount = strdup (mountinfo->fallback_mount);
|
|
|
|
DEBUG1 ("fallback %s", mountinfo->fallback_mount);
|
|
|
|
}
|
|
|
|
if (mountinfo->auth_type != NULL)
|
|
|
|
{
|
|
|
|
source->authenticator = auth_get_authenticator(
|
|
|
|
mountinfo->auth_type, mountinfo->auth_options);
|
2004-04-30 10:36:07 -04:00
|
|
|
stats_event(source->mount, "authenticator", mountinfo->auth_type);
|
2004-02-19 11:32:26 -05:00
|
|
|
}
|
|
|
|
if (mountinfo->dumpfile)
|
|
|
|
{
|
|
|
|
DEBUG1("Dumping stream to %s", mountinfo->dumpfile);
|
|
|
|
source->dumpfilename = strdup (mountinfo->dumpfile);
|
|
|
|
}
|
2004-02-26 06:56:48 -05:00
|
|
|
if (mountinfo->queue_size_limit)
|
|
|
|
{
|
|
|
|
source->queue_size_limit = mountinfo->queue_size_limit;
|
|
|
|
DEBUG1 ("queue size to %u", source->queue_size_limit);
|
|
|
|
}
|
|
|
|
if (mountinfo->source_timeout)
|
|
|
|
{
|
|
|
|
source->timeout = mountinfo->source_timeout;
|
|
|
|
DEBUG1 ("source timeout to %u", source->timeout);
|
|
|
|
}
|
2004-08-20 11:13:59 -04:00
|
|
|
if (mountinfo->burst_size > -1)
|
|
|
|
source->burst_size = mountinfo->burst_size;
|
|
|
|
DEBUG1 ("amount to burst on client connect set to %u", source->burst_size);
|
2004-02-19 11:32:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void *source_client_thread (void *arg)
|
|
|
|
{
|
|
|
|
source_t *source = arg;
|
2004-02-25 11:24:30 -05:00
|
|
|
const char ok_msg[] = "HTTP/1.0 200 OK\r\n\r\n";
|
|
|
|
int bytes;
|
|
|
|
|
|
|
|
source->client->respcode = 200;
|
|
|
|
bytes = sock_write_bytes (source->client->con->sock, ok_msg, sizeof (ok_msg)-1);
|
|
|
|
if (bytes < sizeof (ok_msg)-1)
|
|
|
|
{
|
|
|
|
global_lock();
|
|
|
|
global.sources--;
|
|
|
|
global_unlock();
|
|
|
|
WARN0 ("Error writing 200 OK message to source client");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
source->client->con->sent_bytes += bytes;
|
2004-02-19 11:32:26 -05:00
|
|
|
|
2004-02-25 11:24:30 -05:00
|
|
|
stats_event_inc(NULL, "source_client_connections");
|
|
|
|
source_main (source);
|
|
|
|
}
|
2004-02-19 11:32:26 -05:00
|
|
|
source_free_source (source);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|