mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-11-03 04:17:17 -05:00
7742bf0a21
The URL is constructed considering Protocol, TLS Mode, Host, and Port. This considers: - The Host:-header as provided by the client, - The effective listensocket of the client, - Global configuration. This works for: - Playlist generation, - Admin authed playlist generation, - Stats based XSLT. It also unifies code: - Default stats values. Not yet included: - YP requests.
1205 lines
32 KiB
C
1205 lines
32 KiB
C
/* 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).
|
|
* Copyright 2012-2014, Philipp "ph3-der-loewe" Schafft <lion@lion.leolix.org>,
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
#include <ctype.h>
|
|
|
|
#include <libxml/xmlmemory.h>
|
|
#include <libxml/parser.h>
|
|
#include <libxml/tree.h>
|
|
|
|
#include "common/thread/thread.h"
|
|
#include "common/avl/avl.h"
|
|
#include "common/httpp/httpp.h"
|
|
#include "common/net/sock.h"
|
|
|
|
#include "stats.h"
|
|
#include "connection.h"
|
|
#include "source.h"
|
|
#include "global.h"
|
|
#include "refbuf.h"
|
|
#include "client.h"
|
|
#include "admin.h"
|
|
#include "xslt.h"
|
|
#include "util.h"
|
|
#include "auth.h"
|
|
#define CATMODULE "stats"
|
|
#include "logging.h"
|
|
|
|
#ifdef _WIN32
|
|
#define atoll _atoi64
|
|
#define vsnprintf _vsnprintf
|
|
#define snprintf _snprintf
|
|
#endif
|
|
|
|
#define STATS_EVENT_SET 0
|
|
#define STATS_EVENT_INC 1
|
|
#define STATS_EVENT_DEC 2
|
|
#define STATS_EVENT_ADD 3
|
|
#define STATS_EVENT_SUB 4
|
|
#define STATS_EVENT_REMOVE 5
|
|
#define STATS_EVENT_HIDDEN 6
|
|
|
|
typedef struct _event_queue_tag
|
|
{
|
|
volatile stats_event_t *head;
|
|
volatile stats_event_t **tail;
|
|
} event_queue_t;
|
|
|
|
#define event_queue_init(qp) { (qp)->head = NULL; (qp)->tail = &(qp)->head; }
|
|
|
|
typedef struct _event_listener_tag
|
|
{
|
|
event_queue_t queue;
|
|
mutex_t mutex;
|
|
|
|
struct _event_listener_tag *next;
|
|
} event_listener_t;
|
|
|
|
static volatile int _stats_running = 0;
|
|
static thread_type *_stats_thread_id;
|
|
static volatile int _stats_threads = 0;
|
|
|
|
static stats_t _stats;
|
|
static mutex_t _stats_mutex;
|
|
|
|
static event_queue_t _global_event_queue;
|
|
mutex_t _global_event_mutex;
|
|
|
|
static volatile event_listener_t *_event_listeners;
|
|
|
|
|
|
static void *_stats_thread(void *arg);
|
|
static int _compare_stats(void *a, void *b, void *arg);
|
|
static int _compare_source_stats(void *a, void *b, void *arg);
|
|
static int _free_stats(void *key);
|
|
static int _free_source_stats(void *key);
|
|
static void _add_event_to_queue(stats_event_t *event, event_queue_t *queue);
|
|
static stats_node_t *_find_node(avl_tree *tree, const char *name);
|
|
static stats_source_t *_find_source(avl_tree *tree, const char *source);
|
|
static void _free_event(stats_event_t *event);
|
|
static stats_event_t *_get_event_from_queue(event_queue_t *queue);
|
|
static void __add_metadata(xmlNodePtr node, const char *tag);
|
|
|
|
|
|
/* simple helper function for creating an event */
|
|
static stats_event_t *build_event (const char *source, const char *name, const char *value)
|
|
{
|
|
stats_event_t *event;
|
|
|
|
event = (stats_event_t *)calloc(1, sizeof(stats_event_t));
|
|
if (event)
|
|
{
|
|
if (source)
|
|
event->source = (char *)strdup(source);
|
|
if (name)
|
|
event->name = (char *)strdup(name);
|
|
if (value)
|
|
event->value = (char *)strdup(value);
|
|
else
|
|
event->action = STATS_EVENT_REMOVE;
|
|
}
|
|
return event;
|
|
}
|
|
|
|
static void queue_global_event (stats_event_t *event)
|
|
{
|
|
thread_mutex_lock(&_global_event_mutex);
|
|
_add_event_to_queue (event, &_global_event_queue);
|
|
thread_mutex_unlock(&_global_event_mutex);
|
|
}
|
|
|
|
void stats_initialize(void)
|
|
{
|
|
_event_listeners = NULL;
|
|
|
|
/* set up global struct */
|
|
_stats.global_tree = avl_tree_new(_compare_stats, NULL);
|
|
_stats.source_tree = avl_tree_new(_compare_source_stats, NULL);
|
|
|
|
/* set up global mutex */
|
|
thread_mutex_create(&_stats_mutex);
|
|
|
|
/* set up stats queues */
|
|
event_queue_init(&_global_event_queue);
|
|
thread_mutex_create(&_global_event_mutex);
|
|
|
|
/* fire off the stats thread */
|
|
_stats_running = 1;
|
|
_stats_thread_id = thread_create("Stats Thread", _stats_thread, NULL, THREAD_ATTACHED);
|
|
}
|
|
|
|
void stats_shutdown(void)
|
|
{
|
|
int n;
|
|
|
|
if (!_stats_running) /* We can't shutdown if we're not running. */
|
|
return;
|
|
|
|
/* wait for thread to exit */
|
|
_stats_running = 0;
|
|
thread_join(_stats_thread_id);
|
|
|
|
/* wait for other threads to shut down */
|
|
do {
|
|
thread_sleep(300000);
|
|
thread_mutex_lock(&_stats_mutex);
|
|
n = _stats_threads;
|
|
thread_mutex_unlock(&_stats_mutex);
|
|
} while (n > 0);
|
|
ICECAST_LOG_INFO("stats thread finished");
|
|
|
|
/* free the queues */
|
|
|
|
/* destroy the queue mutexes */
|
|
thread_mutex_destroy(&_global_event_mutex);
|
|
|
|
thread_mutex_destroy(&_stats_mutex);
|
|
avl_tree_free(_stats.source_tree, _free_source_stats);
|
|
avl_tree_free(_stats.global_tree, _free_stats);
|
|
|
|
while (1)
|
|
{
|
|
stats_event_t *event = _get_event_from_queue (&_global_event_queue);
|
|
if (event == NULL) break;
|
|
if(event->source)
|
|
free(event->source);
|
|
if(event->value)
|
|
free(event->value);
|
|
if(event->name)
|
|
free(event->name);
|
|
free(event);
|
|
}
|
|
}
|
|
|
|
stats_t *stats_get_stats(void)
|
|
{
|
|
/* lock global stats
|
|
|
|
copy stats
|
|
|
|
unlock global stats
|
|
|
|
return copied stats */
|
|
|
|
return NULL;
|
|
}
|
|
|
|
/* simple name=tag stat create/update */
|
|
void stats_event(const char *source, const char *name, const char *value)
|
|
{
|
|
stats_event_t *event;
|
|
|
|
if (value && xmlCheckUTF8 ((unsigned char *)value) == 0)
|
|
{
|
|
ICECAST_LOG_WARN("seen non-UTF8 data, probably incorrect metadata (%s, %s)", name, value);
|
|
return;
|
|
}
|
|
event = build_event(source, name, value);
|
|
if (event)
|
|
queue_global_event(event);
|
|
}
|
|
|
|
|
|
/* wrapper for stats_event, this takes a charset to convert from */
|
|
void stats_event_conv(const char *mount, const char *name, const char *value, const char *charset)
|
|
{
|
|
const char *metadata = value;
|
|
xmlBufferPtr conv = xmlBufferCreate ();
|
|
|
|
if (charset)
|
|
{
|
|
xmlCharEncodingHandlerPtr handle = xmlFindCharEncodingHandler (charset);
|
|
|
|
if (handle)
|
|
{
|
|
xmlBufferPtr raw = xmlBufferCreate ();
|
|
xmlBufferAdd (raw, (const xmlChar *)value, strlen (value));
|
|
if (xmlCharEncInFunc (handle, conv, raw) > 0)
|
|
metadata = (char *)xmlBufferContent (conv);
|
|
xmlBufferFree (raw);
|
|
xmlCharEncCloseFunc (handle);
|
|
}
|
|
else
|
|
ICECAST_LOG_WARN("No charset found for \"%s\"", charset);
|
|
}
|
|
|
|
stats_event (mount, name, metadata);
|
|
xmlBufferFree (conv);
|
|
}
|
|
|
|
/* make stat hidden (non-zero). name can be NULL if it applies to a whole
|
|
* source stats tree. */
|
|
void stats_event_hidden (const char *source, const char *name, int hidden)
|
|
{
|
|
stats_event_t *event;
|
|
const char *str = NULL;
|
|
|
|
if (hidden)
|
|
str = "";
|
|
event = build_event (source, name, str);
|
|
if (event)
|
|
{
|
|
event->action = STATS_EVENT_HIDDEN;
|
|
queue_global_event (event);
|
|
}
|
|
}
|
|
|
|
/* printf style formatting for stat create/update */
|
|
void stats_event_args(const char *source, char *name, char *format, ...)
|
|
{
|
|
char buf[1024];
|
|
va_list val;
|
|
int ret;
|
|
|
|
if (name == NULL)
|
|
return;
|
|
va_start(val, format);
|
|
ret = vsnprintf(buf, sizeof(buf), format, val);
|
|
va_end(val);
|
|
|
|
if (ret < 0 || (unsigned int)ret >= sizeof (buf))
|
|
{
|
|
ICECAST_LOG_WARN("problem with formatting %s stat %s",
|
|
source==NULL ? "global" : source, name);
|
|
return;
|
|
}
|
|
stats_event(source, name, buf);
|
|
}
|
|
|
|
static char *_get_stats(const char *source, const char *name)
|
|
{
|
|
stats_node_t *stats = NULL;
|
|
stats_source_t *src = NULL;
|
|
char *value = NULL;
|
|
|
|
thread_mutex_lock(&_stats_mutex);
|
|
|
|
if (source == NULL) {
|
|
stats = _find_node(_stats.global_tree, name);
|
|
} else {
|
|
src = _find_source(_stats.source_tree, source);
|
|
if (src) {
|
|
stats = _find_node(src->stats_tree, name);
|
|
}
|
|
}
|
|
|
|
if (stats) value = (char *)strdup(stats->value);
|
|
|
|
thread_mutex_unlock(&_stats_mutex);
|
|
|
|
return value;
|
|
}
|
|
|
|
char *stats_get_value(const char *source, const char *name)
|
|
{
|
|
return(_get_stats(source, name));
|
|
}
|
|
|
|
/* increase the value in the provided stat by 1 */
|
|
void stats_event_inc(const char *source, const char *name)
|
|
{
|
|
stats_event_t *event = build_event (source, name, NULL);
|
|
/* ICECAST_LOG_DEBUG("%s on %s", name, source==NULL?"global":source); */
|
|
if (event)
|
|
{
|
|
event->action = STATS_EVENT_INC;
|
|
queue_global_event (event);
|
|
}
|
|
}
|
|
|
|
void stats_event_add(const char *source, const char *name, unsigned long value)
|
|
{
|
|
stats_event_t *event = build_event (source, name, NULL);
|
|
/* ICECAST_LOG_DEBUG("%s on %s", name, source==NULL?"global":source); */
|
|
if (event)
|
|
{
|
|
event->value = malloc (16);
|
|
snprintf(event->value, 16, "%lu", value);
|
|
event->action = STATS_EVENT_ADD;
|
|
queue_global_event (event);
|
|
}
|
|
}
|
|
|
|
void stats_event_sub(const char *source, const char *name, unsigned long value)
|
|
{
|
|
stats_event_t *event = build_event (source, name, NULL);
|
|
if (event)
|
|
{
|
|
event->value = malloc (16);
|
|
snprintf(event->value, 16, "%lu", value);
|
|
event->action = STATS_EVENT_SUB;
|
|
queue_global_event (event);
|
|
}
|
|
}
|
|
|
|
/* decrease the value in the provided stat by 1 */
|
|
void stats_event_dec(const char *source, const char *name)
|
|
{
|
|
/* ICECAST_LOG_DEBUG("%s on %s", name, source==NULL?"global":source); */
|
|
stats_event_t *event = build_event (source, name, NULL);
|
|
if (event)
|
|
{
|
|
event->action = STATS_EVENT_DEC;
|
|
queue_global_event (event);
|
|
}
|
|
}
|
|
|
|
/* note: you must call this function only when you have exclusive access
|
|
** to the avl_tree
|
|
*/
|
|
static stats_node_t *_find_node(avl_tree *stats_tree, const char *name)
|
|
{
|
|
stats_node_t *stats;
|
|
avl_node *node;
|
|
int cmp;
|
|
|
|
/* get the root node */
|
|
node = stats_tree->root->right;
|
|
|
|
while (node) {
|
|
stats = (stats_node_t *) node->key;
|
|
cmp = strcmp(name, stats->name);
|
|
if (cmp < 0)
|
|
node = node->left;
|
|
else if (cmp > 0)
|
|
node = node->right;
|
|
else
|
|
return stats;
|
|
}
|
|
|
|
/* didn't find it */
|
|
return NULL;
|
|
}
|
|
|
|
/* note: you must call this function only when you have exclusive access
|
|
** to the avl_tree
|
|
*/
|
|
static stats_source_t *_find_source(avl_tree *source_tree, const char *source)
|
|
{
|
|
stats_source_t *stats;
|
|
avl_node *node;
|
|
int cmp;
|
|
|
|
/* get the root node */
|
|
node = source_tree->root->right;
|
|
while (node) {
|
|
stats = (stats_source_t *) node->key;
|
|
cmp = strcmp(source, stats->source);
|
|
if (cmp < 0)
|
|
node = node->left;
|
|
else if (cmp > 0)
|
|
node = node->right;
|
|
else
|
|
return stats;
|
|
}
|
|
|
|
/* didn't find it */
|
|
return NULL;
|
|
}
|
|
|
|
static stats_event_t *_copy_event(stats_event_t *event)
|
|
{
|
|
stats_event_t *copy = (stats_event_t *)calloc(1, sizeof(stats_event_t));
|
|
if (event->source)
|
|
copy->source = (char *)strdup(event->source);
|
|
else
|
|
copy->source = NULL;
|
|
if (event->name)
|
|
copy->name = (char *)strdup(event->name);
|
|
if (event->value)
|
|
copy->value = (char *)strdup(event->value);
|
|
else
|
|
copy->value = NULL;
|
|
copy->hidden = event->hidden;
|
|
copy->next = NULL;
|
|
|
|
return copy;
|
|
}
|
|
|
|
|
|
/* helper to apply specialised changes to a stats node */
|
|
static void modify_node_event(stats_node_t *node, stats_event_t *event)
|
|
{
|
|
char *str;
|
|
|
|
if (event->action == STATS_EVENT_HIDDEN)
|
|
{
|
|
if (event->value)
|
|
node->hidden = 1;
|
|
else
|
|
node->hidden = 0;
|
|
return;
|
|
}
|
|
if (event->action != STATS_EVENT_SET)
|
|
{
|
|
int64_t value = 0;
|
|
|
|
switch (event->action)
|
|
{
|
|
case STATS_EVENT_INC:
|
|
value = atoi (node->value)+1;
|
|
break;
|
|
case STATS_EVENT_DEC:
|
|
value = atoi (node->value)-1;
|
|
break;
|
|
case STATS_EVENT_ADD:
|
|
value = atoi (node->value)+atoi (event->value);
|
|
break;
|
|
case STATS_EVENT_SUB:
|
|
value = atoll (node->value) - atoll (event->value);
|
|
break;
|
|
default:
|
|
ICECAST_LOG_WARN("unhandled event (%d) for %s", event->action, event->source);
|
|
break;
|
|
}
|
|
str = malloc (16);
|
|
snprintf (str, 16, "%" PRId64, value);
|
|
if (event->value == NULL)
|
|
event->value = strdup (str);
|
|
}
|
|
else
|
|
str = (char *)strdup (event->value);
|
|
free (node->value);
|
|
node->value = str;
|
|
if (event->source)
|
|
ICECAST_LOG_DEBUG("update \"%s\" %s (%s)", event->source, node->name, node->value);
|
|
else
|
|
ICECAST_LOG_DEBUG("update global %s (%s)", node->name, node->value);
|
|
}
|
|
|
|
|
|
static void process_global_event (stats_event_t *event)
|
|
{
|
|
stats_node_t *node;
|
|
|
|
/* ICECAST_LOG_DEBUG("global event %s %s %d", event->name, event->value, event->action); */
|
|
if (event->action == STATS_EVENT_REMOVE)
|
|
{
|
|
/* we're deleting */
|
|
node = _find_node(_stats.global_tree, event->name);
|
|
if (node != NULL)
|
|
avl_delete(_stats.global_tree, (void *)node, _free_stats);
|
|
return;
|
|
}
|
|
node = _find_node(_stats.global_tree, event->name);
|
|
if (node)
|
|
{
|
|
modify_node_event (node, event);
|
|
}
|
|
else
|
|
{
|
|
/* add node */
|
|
node = (stats_node_t *)calloc(1, sizeof(stats_node_t));
|
|
node->name = (char *)strdup(event->name);
|
|
node->value = (char *)strdup(event->value);
|
|
|
|
avl_insert(_stats.global_tree, (void *)node);
|
|
}
|
|
}
|
|
|
|
|
|
static void process_source_event (stats_event_t *event)
|
|
{
|
|
stats_source_t *snode = _find_source(_stats.source_tree, event->source);
|
|
if (snode == NULL)
|
|
{
|
|
if (event->action == STATS_EVENT_REMOVE)
|
|
return;
|
|
snode = (stats_source_t *)calloc(1,sizeof(stats_source_t));
|
|
if (snode == NULL)
|
|
return;
|
|
ICECAST_LOG_DEBUG("new source stat %s", event->source);
|
|
snode->source = (char *)strdup(event->source);
|
|
snode->stats_tree = avl_tree_new(_compare_stats, NULL);
|
|
if (event->action == STATS_EVENT_HIDDEN)
|
|
snode->hidden = 1;
|
|
else
|
|
snode->hidden = 0;
|
|
|
|
avl_insert(_stats.source_tree, (void *) snode);
|
|
}
|
|
if (event->name)
|
|
{
|
|
stats_node_t *node = _find_node(snode->stats_tree, event->name);
|
|
if (node == NULL)
|
|
{
|
|
if (event->action == STATS_EVENT_REMOVE)
|
|
return;
|
|
/* adding node */
|
|
if (event->value)
|
|
{
|
|
ICECAST_LOG_DEBUG("new node %s (%s)", event->name, event->value);
|
|
node = (stats_node_t *)calloc(1,sizeof(stats_node_t));
|
|
node->name = (char *)strdup(event->name);
|
|
node->value = (char *)strdup(event->value);
|
|
node->hidden = snode->hidden;
|
|
|
|
avl_insert(snode->stats_tree, (void *)node);
|
|
}
|
|
return;
|
|
}
|
|
if (event->action == STATS_EVENT_REMOVE)
|
|
{
|
|
ICECAST_LOG_DEBUG("delete node %s", event->name);
|
|
avl_delete(snode->stats_tree, (void *)node, _free_stats);
|
|
return;
|
|
}
|
|
modify_node_event (node, event);
|
|
return;
|
|
}
|
|
if (event->action == STATS_EVENT_HIDDEN)
|
|
{
|
|
avl_node *node = avl_get_first (snode->stats_tree);
|
|
|
|
if (event->value)
|
|
snode->hidden = 1;
|
|
else
|
|
snode->hidden = 0;
|
|
while (node)
|
|
{
|
|
stats_node_t *stats = (stats_node_t*)node->key;
|
|
stats->hidden = snode->hidden;
|
|
node = avl_get_next (node);
|
|
}
|
|
return;
|
|
}
|
|
if (event->action == STATS_EVENT_REMOVE)
|
|
{
|
|
ICECAST_LOG_DEBUG("delete source node %s", event->source);
|
|
avl_delete(_stats.source_tree, (void *)snode, _free_source_stats);
|
|
}
|
|
}
|
|
|
|
/* NOTE: implicit %z is added to format string. */
|
|
static inline void __format_time(char * buffer, size_t len, const char * format) {
|
|
time_t now = time(NULL);
|
|
struct tm local;
|
|
char tzbuffer[32];
|
|
char timebuffer[128];
|
|
#ifdef _WIN32
|
|
struct tm *thetime;
|
|
int time_days, time_hours, time_tz;
|
|
int tempnum1, tempnum2;
|
|
char sign;
|
|
#endif
|
|
|
|
localtime_r (&now, &local);
|
|
#ifndef _WIN32
|
|
strftime (tzbuffer, sizeof(tzbuffer), "%z", &local);
|
|
#else
|
|
thetime = gmtime (&now);
|
|
time_days = local.tm_yday - thetime->tm_yday;
|
|
|
|
if (time_days < -1) {
|
|
tempnum1 = 24;
|
|
} else {
|
|
tempnum1 = 1;
|
|
}
|
|
|
|
if (tempnum1 < time_days) {
|
|
tempnum2 = -24;
|
|
} else {
|
|
tempnum2 = time_days*24;
|
|
}
|
|
|
|
time_hours = (tempnum2 + local.tm_hour - thetime->tm_hour);
|
|
time_tz = time_hours * 60 + local.tm_min - thetime->tm_min;
|
|
|
|
if (time_tz < 0) {
|
|
sign = '-';
|
|
time_tz = -time_tz;
|
|
} else {
|
|
sign = '+';
|
|
}
|
|
|
|
snprintf(tzbuffer, sizeof(tzbuffer), "%c%.2d%.2d", sign, time_tz / 60, time_tz % 60);
|
|
#endif
|
|
strftime (timebuffer, sizeof(timebuffer), format, &local);
|
|
|
|
snprintf(buffer, len, "%s%s", timebuffer, tzbuffer);
|
|
}
|
|
|
|
void stats_event_time (const char *mount, const char *name)
|
|
{
|
|
char buffer[100];
|
|
|
|
__format_time(buffer, sizeof(buffer), "%a, %d %b %Y %H:%M:%S ");
|
|
stats_event (mount, name, buffer);
|
|
}
|
|
|
|
|
|
void stats_event_time_iso8601 (const char *mount, const char *name)
|
|
{
|
|
char buffer[100];
|
|
|
|
__format_time(buffer, sizeof(buffer), "%Y-%m-%dT%H:%M:%S");
|
|
stats_event (mount, name, buffer);
|
|
}
|
|
|
|
|
|
void stats_global (ice_config_t *config)
|
|
{
|
|
stats_event (NULL, "server_id", config->server_id);
|
|
stats_event (NULL, "host", config->hostname);
|
|
stats_event (NULL, "location", config->location);
|
|
stats_event (NULL, "admin", config->admin);
|
|
}
|
|
|
|
|
|
static void *_stats_thread(void *arg)
|
|
{
|
|
stats_event_t *event;
|
|
stats_event_t *copy;
|
|
event_listener_t *listener;
|
|
|
|
(void)arg;
|
|
|
|
stats_event_time (NULL, "server_start");
|
|
stats_event_time_iso8601 (NULL, "server_start_iso8601");
|
|
|
|
/* global currently active stats */
|
|
stats_event (NULL, "clients", "0");
|
|
stats_event (NULL, "connections", "0");
|
|
stats_event (NULL, "sources", "0");
|
|
stats_event (NULL, "stats", "0");
|
|
stats_event (NULL, "listeners", "0");
|
|
|
|
/* global accumulating stats */
|
|
stats_event (NULL, "client_connections", "0");
|
|
stats_event (NULL, "source_client_connections", "0");
|
|
stats_event (NULL, "source_relay_connections", "0");
|
|
stats_event (NULL, "source_total_connections", "0");
|
|
stats_event (NULL, "stats_connections", "0");
|
|
stats_event (NULL, "listener_connections", "0");
|
|
|
|
ICECAST_LOG_INFO("stats thread started");
|
|
while (_stats_running) {
|
|
thread_mutex_lock(&_global_event_mutex);
|
|
if (_global_event_queue.head != NULL) {
|
|
/* grab the next event from the queue */
|
|
event = _get_event_from_queue (&_global_event_queue);
|
|
thread_mutex_unlock(&_global_event_mutex);
|
|
|
|
if (event == NULL)
|
|
continue;
|
|
event->next = NULL;
|
|
|
|
thread_mutex_lock(&_stats_mutex);
|
|
|
|
/* check if we are dealing with a global or source event */
|
|
if (event->source == NULL)
|
|
process_global_event (event);
|
|
else
|
|
process_source_event (event);
|
|
|
|
/* now we have an event that's been processed into the running stats */
|
|
/* this event should get copied to event listeners' queues */
|
|
listener = (event_listener_t *)_event_listeners;
|
|
while (listener) {
|
|
copy = _copy_event(event);
|
|
thread_mutex_lock (&listener->mutex);
|
|
_add_event_to_queue (copy, &listener->queue);
|
|
thread_mutex_unlock (&listener->mutex);
|
|
|
|
listener = listener->next;
|
|
}
|
|
|
|
/* now we need to destroy the event */
|
|
_free_event(event);
|
|
|
|
thread_mutex_unlock(&_stats_mutex);
|
|
continue;
|
|
}
|
|
else
|
|
{
|
|
thread_mutex_unlock(&_global_event_mutex);
|
|
}
|
|
|
|
thread_sleep(300000);
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
/* you must have the _stats_mutex locked here */
|
|
static void _unregister_listener(event_listener_t *listener)
|
|
{
|
|
event_listener_t **prev = (event_listener_t **)&_event_listeners,
|
|
*current = *prev;
|
|
while (current)
|
|
{
|
|
if (current == listener)
|
|
{
|
|
*prev = current->next;
|
|
break;
|
|
}
|
|
prev = ¤t->next;
|
|
current = *prev;
|
|
}
|
|
}
|
|
|
|
|
|
static stats_event_t *_make_event_from_node(stats_node_t *node, char *source)
|
|
{
|
|
stats_event_t *event = (stats_event_t *)malloc(sizeof(stats_event_t));
|
|
|
|
if (source != NULL)
|
|
event->source = (char *)strdup(source);
|
|
else
|
|
event->source = NULL;
|
|
event->name = (char *)strdup(node->name);
|
|
event->value = (char *)strdup(node->value);
|
|
event->hidden = node->hidden;
|
|
event->action = STATS_EVENT_SET;
|
|
event->next = NULL;
|
|
|
|
return event;
|
|
}
|
|
|
|
|
|
static void _add_event_to_queue(stats_event_t *event, event_queue_t *queue)
|
|
{
|
|
*queue->tail = event;
|
|
queue->tail = (volatile stats_event_t **)&event->next;
|
|
}
|
|
|
|
|
|
static stats_event_t *_get_event_from_queue (event_queue_t *queue)
|
|
{
|
|
stats_event_t *event = NULL;
|
|
|
|
if (queue && queue->head)
|
|
{
|
|
event = (stats_event_t *)queue->head;
|
|
queue->head = event->next;
|
|
if (queue->head == NULL)
|
|
queue->tail = &queue->head;
|
|
}
|
|
|
|
return event;
|
|
}
|
|
|
|
static int _send_event_to_client(stats_event_t *event, client_t *client)
|
|
{
|
|
int len;
|
|
char buf [200];
|
|
|
|
/* send data to the client!!!! */
|
|
len = snprintf (buf, sizeof (buf), "EVENT %s %s %s\n",
|
|
(event->source != NULL) ? event->source : "global",
|
|
event->name ? event->name : "null",
|
|
event->value ? event->value : "null");
|
|
if (len > 0 && len < (int)sizeof (buf))
|
|
{
|
|
client_send_bytes (client, buf, len);
|
|
if (client->con->error)
|
|
return -1;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static inline void __add_authstack (auth_stack_t *stack, xmlNodePtr parent) {
|
|
xmlNodePtr authentication;
|
|
authentication = xmlNewTextChild(parent, NULL, XMLSTR("authentication"), NULL);
|
|
|
|
auth_stack_addref(stack);
|
|
|
|
while (stack) {
|
|
auth_t *auth = auth_stack_get(stack);
|
|
admin_add_role_to_authentication(auth, authentication);
|
|
auth_release(auth);
|
|
auth_stack_next(&stack);
|
|
}
|
|
}
|
|
static xmlNodePtr _dump_stats_to_doc (xmlNodePtr root, const char *show_mount, int hidden, client_t *client) {
|
|
avl_node *avlnode;
|
|
xmlNodePtr ret = NULL;
|
|
ice_config_t *config;
|
|
|
|
thread_mutex_lock(&_stats_mutex);
|
|
/* general stats first */
|
|
avlnode = avl_get_first(_stats.global_tree);
|
|
|
|
while (avlnode) {
|
|
stats_node_t *stat = avlnode->key;
|
|
if (stat->hidden <= hidden)
|
|
xmlNewTextChild (root, NULL, XMLSTR(stat->name), XMLSTR(stat->value));
|
|
avlnode = avl_get_next (avlnode);
|
|
}
|
|
/* now per mount stats */
|
|
avlnode = avl_get_first(_stats.source_tree);
|
|
config = config_get_config();
|
|
__add_authstack(config->authstack, root);
|
|
config_release_config();
|
|
|
|
while (avlnode) {
|
|
stats_source_t *source = (stats_source_t *)avlnode->key;
|
|
|
|
if (source->hidden <= hidden &&
|
|
(show_mount == NULL || strcmp (show_mount, source->source) == 0))
|
|
{
|
|
xmlNodePtr metadata, history;
|
|
source_t *source_real;
|
|
mount_proxy *mountproxy;
|
|
int i;
|
|
|
|
avl_node *avlnode2 = avl_get_first (source->stats_tree);
|
|
xmlNodePtr xmlnode = xmlNewTextChild (root, NULL, XMLSTR("source"), NULL);
|
|
|
|
xmlSetProp (xmlnode, XMLSTR("mount"), XMLSTR(source->source));
|
|
if (ret == NULL)
|
|
ret = xmlnode;
|
|
while (avlnode2)
|
|
{
|
|
stats_node_t *stat = avlnode2->key;
|
|
if (client && strcmp(stat->name, "listenurl") == 0) {
|
|
char buf[512];
|
|
client_get_baseurl(client, NULL, buf, sizeof(buf), NULL, NULL, NULL, source->source, NULL);
|
|
xmlNewTextChild (xmlnode, NULL, XMLSTR(stat->name), XMLSTR(buf));
|
|
} else {
|
|
xmlNewTextChild (xmlnode, NULL, XMLSTR(stat->name), XMLSTR(stat->value));
|
|
}
|
|
avlnode2 = avl_get_next (avlnode2);
|
|
}
|
|
|
|
|
|
avl_tree_rlock(global.source_tree);
|
|
source_real = source_find_mount_raw(source->source);
|
|
history = playlist_render_xspf(source_real->history);
|
|
if (history)
|
|
xmlAddChild(xmlnode, history);
|
|
metadata = xmlNewTextChild(xmlnode, NULL, XMLSTR("metadata"), NULL);
|
|
if (source_real->format) {
|
|
for (i = 0; i < source_real->format->vc.comments; i++)
|
|
__add_metadata(metadata, source_real->format->vc.user_comments[i]);
|
|
}
|
|
avl_tree_unlock(global.source_tree);
|
|
|
|
config = config_get_config();
|
|
mountproxy = config_find_mount(config, source->source, MOUNT_TYPE_NORMAL);
|
|
__add_authstack(mountproxy->authstack, xmlnode);
|
|
config_release_config();
|
|
}
|
|
avlnode = avl_get_next (avlnode);
|
|
}
|
|
thread_mutex_unlock(&_stats_mutex);
|
|
return ret;
|
|
}
|
|
|
|
|
|
/* factoring out code for stats loops
|
|
** this function copies all stats to queue, and registers
|
|
** the queue for all new events atomically.
|
|
** note: mutex must already be created!
|
|
*/
|
|
static void _register_listener (event_listener_t *listener)
|
|
{
|
|
avl_node *node;
|
|
avl_node *node2;
|
|
stats_event_t *event;
|
|
stats_source_t *source;
|
|
|
|
thread_mutex_lock(&_stats_mutex);
|
|
|
|
/* first we fill our queue with the current stats */
|
|
|
|
/* start with the global stats */
|
|
node = avl_get_first(_stats.global_tree);
|
|
while (node) {
|
|
event = _make_event_from_node((stats_node_t *) node->key, NULL);
|
|
_add_event_to_queue(event, &listener->queue);
|
|
|
|
node = avl_get_next(node);
|
|
}
|
|
|
|
/* now the stats for each source */
|
|
node = avl_get_first(_stats.source_tree);
|
|
while (node) {
|
|
source = (stats_source_t *)node->key;
|
|
node2 = avl_get_first(source->stats_tree);
|
|
while (node2) {
|
|
event = _make_event_from_node((stats_node_t *)node2->key, source->source);
|
|
_add_event_to_queue (event, &listener->queue);
|
|
|
|
node2 = avl_get_next(node2);
|
|
}
|
|
|
|
node = avl_get_next(node);
|
|
}
|
|
|
|
/* now we register to receive future event notices */
|
|
listener->next = (event_listener_t *)_event_listeners;
|
|
_event_listeners = listener;
|
|
|
|
thread_mutex_unlock(&_stats_mutex);
|
|
}
|
|
|
|
void *stats_connection(void *arg)
|
|
{
|
|
client_t *client = (client_t *)arg;
|
|
stats_event_t *event;
|
|
event_listener_t listener;
|
|
|
|
ICECAST_LOG_INFO("stats client starting");
|
|
|
|
event_queue_init (&listener.queue);
|
|
/* increment the thread count */
|
|
thread_mutex_lock(&_stats_mutex);
|
|
_stats_threads++;
|
|
stats_event_args (NULL, "stats", "%d", _stats_threads);
|
|
thread_mutex_unlock(&_stats_mutex);
|
|
|
|
thread_mutex_create (&(listener.mutex));
|
|
|
|
_register_listener (&listener);
|
|
|
|
while (_stats_running) {
|
|
thread_mutex_lock (&listener.mutex);
|
|
event = _get_event_from_queue (&listener.queue);
|
|
thread_mutex_unlock (&listener.mutex);
|
|
if (event != NULL) {
|
|
if (_send_event_to_client(event, client) < 0) {
|
|
_free_event(event);
|
|
break;
|
|
}
|
|
_free_event(event);
|
|
continue;
|
|
}
|
|
thread_sleep (500000);
|
|
}
|
|
|
|
thread_mutex_lock(&_stats_mutex);
|
|
_unregister_listener (&listener);
|
|
_stats_threads--;
|
|
stats_event_args (NULL, "stats", "%d", _stats_threads);
|
|
thread_mutex_unlock(&_stats_mutex);
|
|
|
|
thread_mutex_destroy (&listener.mutex);
|
|
client_destroy (client);
|
|
ICECAST_LOG_INFO("stats client finished");
|
|
|
|
return NULL;
|
|
}
|
|
|
|
|
|
void stats_callback (client_t *client, void *notused)
|
|
{
|
|
(void)notused;
|
|
|
|
if (client->con->error)
|
|
{
|
|
client_destroy (client);
|
|
return;
|
|
}
|
|
client_set_queue (client, NULL);
|
|
thread_create("Stats Connection", stats_connection, (void *)client, THREAD_DETACHED);
|
|
}
|
|
|
|
|
|
typedef struct _source_xml_tag {
|
|
char *mount;
|
|
xmlNodePtr node;
|
|
|
|
struct _source_xml_tag *next;
|
|
} source_xml_t;
|
|
|
|
|
|
void stats_transform_xslt(client_t *client, const char *uri)
|
|
{
|
|
xmlDocPtr doc;
|
|
char *xslpath = util_get_path_from_normalised_uri(uri);
|
|
const char *mount = httpp_get_param(client->parser, "mount");
|
|
|
|
doc = stats_get_xml(0, mount, client);
|
|
|
|
xslt_transform(doc, xslpath, client, 200);
|
|
|
|
xmlFreeDoc(doc);
|
|
free(xslpath);
|
|
}
|
|
|
|
static void __add_metadata(xmlNodePtr node, const char *tag) {
|
|
const char *value = strstr(tag, "=");
|
|
char *name = NULL;
|
|
size_t namelen = value - tag + 1;
|
|
size_t i;
|
|
|
|
if (!value)
|
|
return;
|
|
|
|
name = malloc(namelen);
|
|
if (!name)
|
|
return;
|
|
|
|
for (i = 0; i < (namelen - 1); i++)
|
|
name[i] = tolower(tag[i]);
|
|
|
|
name[namelen-1] = 0;
|
|
|
|
xmlNewTextChild(node, NULL, XMLSTR(name), XMLSTR(value+1));
|
|
|
|
free(name);
|
|
}
|
|
|
|
xmlDocPtr stats_get_xml(int show_hidden, const char *show_mount, client_t *client)
|
|
{
|
|
xmlDocPtr doc;
|
|
xmlNodePtr node;
|
|
source_t * source;
|
|
|
|
doc = xmlNewDoc (XMLSTR("1.0"));
|
|
node = xmlNewDocNode (doc, NULL, XMLSTR("icestats"), NULL);
|
|
xmlDocSetRootElement(doc, node);
|
|
|
|
node = _dump_stats_to_doc(node, show_mount, show_hidden, client);
|
|
|
|
if (show_mount && node) {
|
|
avl_tree_rlock(global.source_tree);
|
|
source = source_find_mount_raw(show_mount);
|
|
admin_add_listeners_to_mount(source, node, client->mode);
|
|
avl_tree_unlock(global.source_tree);
|
|
}
|
|
|
|
return doc;
|
|
}
|
|
|
|
|
|
static int _compare_stats(void *arg, void *a, void *b)
|
|
{
|
|
stats_node_t *nodea = (stats_node_t *)a;
|
|
stats_node_t *nodeb = (stats_node_t *)b;
|
|
|
|
(void)arg;
|
|
|
|
return strcmp(nodea->name, nodeb->name);
|
|
}
|
|
|
|
static int _compare_source_stats(void *arg, void *a, void *b)
|
|
{
|
|
stats_source_t *nodea = (stats_source_t *)a;
|
|
stats_source_t *nodeb = (stats_source_t *)b;
|
|
|
|
(void)arg;
|
|
|
|
return strcmp(nodea->source, nodeb->source);
|
|
}
|
|
|
|
static int _free_stats(void *key)
|
|
{
|
|
stats_node_t *node = (stats_node_t *)key;
|
|
free(node->value);
|
|
free(node->name);
|
|
free(node);
|
|
|
|
return 1;
|
|
}
|
|
|
|
static int _free_source_stats(void *key)
|
|
{
|
|
stats_source_t *node = (stats_source_t *)key;
|
|
avl_tree_free(node->stats_tree, _free_stats);
|
|
free(node->source);
|
|
free(node);
|
|
|
|
return 1;
|
|
}
|
|
|
|
static void _free_event(stats_event_t *event)
|
|
{
|
|
if (event->source) free(event->source);
|
|
if (event->name) free(event->name);
|
|
if (event->value) free(event->value);
|
|
free(event);
|
|
}
|
|
|
|
|
|
refbuf_t *stats_get_streams (void)
|
|
{
|
|
#define STREAMLIST_BLKSIZE 4096
|
|
avl_node *node;
|
|
unsigned int remaining = STREAMLIST_BLKSIZE;
|
|
refbuf_t *start = refbuf_new (remaining), *cur = start;
|
|
char *buffer = cur->data;
|
|
|
|
/* now the stats for each source */
|
|
thread_mutex_lock (&_stats_mutex);
|
|
node = avl_get_first(_stats.source_tree);
|
|
while (node)
|
|
{
|
|
int ret;
|
|
stats_source_t *source = (stats_source_t *)node->key;
|
|
|
|
if (source->hidden == 0)
|
|
{
|
|
if (remaining <= strlen (source->source) + 3)
|
|
{
|
|
cur->len = STREAMLIST_BLKSIZE - remaining;
|
|
cur->next = refbuf_new (STREAMLIST_BLKSIZE);
|
|
remaining = STREAMLIST_BLKSIZE;
|
|
cur = cur->next;
|
|
buffer = cur->data;
|
|
}
|
|
ret = snprintf (buffer, remaining, "%s\r\n", source->source);
|
|
if (ret > 0)
|
|
{
|
|
buffer += ret;
|
|
remaining -= ret;
|
|
}
|
|
}
|
|
node = avl_get_next(node);
|
|
}
|
|
thread_mutex_unlock(&_stats_mutex);
|
|
cur->len = STREAMLIST_BLKSIZE - remaining;
|
|
return start;
|
|
}
|
|
|
|
|
|
|
|
/* This removes any source stats from virtual mountpoints, ie mountpoints
|
|
* where no source_t exists. This function requires the global sources lock
|
|
* to be held before calling.
|
|
*/
|
|
void stats_clear_virtual_mounts (void)
|
|
{
|
|
avl_node *snode;
|
|
|
|
thread_mutex_lock (&_stats_mutex);
|
|
snode = avl_get_first(_stats.source_tree);
|
|
while (snode)
|
|
{
|
|
stats_source_t *src = (stats_source_t *)snode->key;
|
|
source_t *source = source_find_mount_raw (src->source);
|
|
|
|
if (source == NULL)
|
|
{
|
|
/* no source_t is reserved so remove them now */
|
|
snode = avl_get_next (snode);
|
|
ICECAST_LOG_DEBUG("releasing %s stats", src->source);
|
|
avl_delete (_stats.source_tree, src, _free_source_stats);
|
|
continue;
|
|
}
|
|
|
|
snode = avl_get_next (snode);
|
|
}
|
|
thread_mutex_unlock (&_stats_mutex);
|
|
}
|
|
|