2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2011-01-29 10:13:54 +01:00
|
|
|
* Copyright (C) 2003-2011 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2008-10-26 19:32:43 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2008-10-26 19:32:43 +01:00
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2009-03-02 20:40:31 +01:00
|
|
|
#include "input/curl_input_plugin.h"
|
2011-09-14 22:01:55 +02:00
|
|
|
#include "input_internal.h"
|
2009-03-02 20:13:08 +01:00
|
|
|
#include "input_plugin.h"
|
2009-01-13 22:57:05 +01:00
|
|
|
#include "conf.h"
|
2009-01-03 23:29:45 +01:00
|
|
|
#include "tag.h"
|
2009-01-03 23:55:03 +01:00
|
|
|
#include "icy_metadata.h"
|
2011-08-24 02:54:05 +02:00
|
|
|
#include "io_thread.h"
|
2009-11-10 21:14:22 +01:00
|
|
|
#include "glib_compat.h"
|
2008-10-26 19:32:43 +01:00
|
|
|
|
|
|
|
#include <assert.h>
|
2009-03-27 17:24:24 +01:00
|
|
|
|
|
|
|
#if defined(WIN32)
|
|
|
|
#include <winsock2.h>
|
|
|
|
#else
|
|
|
|
#include <sys/select.h>
|
|
|
|
#endif
|
|
|
|
|
2008-10-26 19:32:43 +01:00
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#include <curl/curl.h>
|
|
|
|
#include <glib.h>
|
|
|
|
|
2009-02-17 22:58:27 +01:00
|
|
|
#undef G_LOG_DOMAIN
|
|
|
|
#define G_LOG_DOMAIN "input_curl"
|
|
|
|
|
2011-08-23 20:46:51 +02:00
|
|
|
/**
|
|
|
|
* Do not buffer more than this number of bytes. It should be a
|
|
|
|
* reasonable limit that doesn't make low-end machines suffer too
|
|
|
|
* much, but doesn't cause stuttering on high-latency lines.
|
|
|
|
*/
|
|
|
|
static const size_t CURL_MAX_BUFFERED = 512 * 1024;
|
|
|
|
|
2008-10-26 19:32:43 +01:00
|
|
|
/**
|
|
|
|
* Buffers created by input_curl_writefunction().
|
|
|
|
*/
|
|
|
|
struct buffer {
|
|
|
|
/** size of the payload */
|
|
|
|
size_t size;
|
|
|
|
|
|
|
|
/** how much has been consumed yet? */
|
|
|
|
size_t consumed;
|
|
|
|
|
|
|
|
/** the payload */
|
|
|
|
unsigned char data[sizeof(long)];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct input_curl {
|
2009-12-30 23:27:37 +01:00
|
|
|
struct input_stream base;
|
|
|
|
|
2008-10-26 19:32:43 +01:00
|
|
|
/* some buffers which were passed to libcurl, which we have
|
|
|
|
too free */
|
|
|
|
char *url, *range;
|
|
|
|
struct curl_slist *request_headers;
|
|
|
|
|
|
|
|
/** the curl handles */
|
|
|
|
CURL *easy;
|
2011-08-24 02:54:05 +02:00
|
|
|
|
|
|
|
/** the GMainLoop source used to poll all CURL file
|
|
|
|
descriptors */
|
|
|
|
GSource *source;
|
|
|
|
|
|
|
|
/** the source id of #source */
|
|
|
|
guint source_id;
|
|
|
|
|
|
|
|
/** a linked list of all registered GPollFD objects */
|
|
|
|
GSList *fds;
|
2008-10-26 19:32:43 +01:00
|
|
|
|
|
|
|
/** list of buffers, where input_curl_writefunction() appends
|
|
|
|
to, and input_curl_read() reads from them */
|
2009-01-07 16:30:43 +01:00
|
|
|
GQueue *buffers;
|
2008-10-26 19:32:43 +01:00
|
|
|
|
2011-08-24 02:54:05 +02:00
|
|
|
#if LIBCURL_VERSION_NUM >= 0x071200
|
|
|
|
/**
|
|
|
|
* Is the connection currently paused? That happens when the
|
|
|
|
* buffer was getting too large. It will be unpaused when the
|
|
|
|
* buffer is below the threshold again.
|
|
|
|
*/
|
|
|
|
bool paused;
|
|
|
|
#endif
|
2008-10-26 19:32:43 +01:00
|
|
|
|
2008-11-06 06:48:30 +01:00
|
|
|
/** error message provided by libcurl */
|
|
|
|
char error[CURL_ERROR_SIZE];
|
2009-01-03 23:29:45 +01:00
|
|
|
|
2009-01-03 23:55:03 +01:00
|
|
|
/** parser for icy-metadata */
|
|
|
|
struct icy_metadata icy_metadata;
|
|
|
|
|
2009-01-03 23:29:45 +01:00
|
|
|
/** the stream name from the icy-name response header */
|
|
|
|
char *meta_name;
|
|
|
|
|
|
|
|
/** the tag object ready to be requested via
|
|
|
|
input_stream_tag() */
|
|
|
|
struct tag *tag;
|
2011-08-24 02:54:05 +02:00
|
|
|
|
|
|
|
GError *postponed_error;
|
2008-10-26 19:32:43 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/** libcurl should accept "ICY 200 OK" */
|
|
|
|
static struct curl_slist *http_200_aliases;
|
|
|
|
|
2009-04-25 13:35:04 +02:00
|
|
|
/** HTTP proxy settings */
|
|
|
|
static const char *proxy, *proxy_user, *proxy_password;
|
|
|
|
static unsigned proxy_port;
|
|
|
|
|
2011-08-24 02:54:05 +02:00
|
|
|
static struct {
|
|
|
|
GStaticMutex mutex;
|
|
|
|
GCond *cond;
|
|
|
|
CURLM *multi;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A linked list of all active HTTP requests. An active
|
|
|
|
* request is one that doesn't have the "eof" flag set.
|
|
|
|
*/
|
|
|
|
GSList *requests;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The GMainLoop source used to poll all CURL file
|
|
|
|
* descriptors.
|
|
|
|
*/
|
|
|
|
GSource *source;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The source id of #source.
|
|
|
|
*/
|
|
|
|
guint source_id;
|
|
|
|
|
|
|
|
GSList *fds;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* When this is non-zero, then an update of #fds is scheduled.
|
|
|
|
*/
|
|
|
|
guint dirty_source_id;
|
|
|
|
|
|
|
|
#if LIBCURL_VERSION_NUM >= 0x070f04
|
|
|
|
/**
|
|
|
|
* Did CURL give us a timeout? If yes, then we need to call
|
|
|
|
* curl_multi_perform(), even if there was no event on any
|
|
|
|
* file descriptor.
|
|
|
|
*/
|
|
|
|
bool timeout;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The absolute time stamp when the timeout expires. This is
|
|
|
|
* used in the GSource method check().
|
|
|
|
*/
|
|
|
|
GTimeVal absolute_timeout;
|
|
|
|
#endif
|
|
|
|
} curl = {
|
|
|
|
.mutex = G_STATIC_MUTEX_INIT,
|
|
|
|
};
|
|
|
|
|
2009-11-14 23:53:04 +01:00
|
|
|
static inline GQuark
|
|
|
|
curl_quark(void)
|
|
|
|
{
|
|
|
|
return g_quark_from_static_string("curl");
|
|
|
|
}
|
|
|
|
|
2011-08-24 02:54:05 +02:00
|
|
|
/**
|
|
|
|
* Find a request by its CURL "easy" handle.
|
|
|
|
*
|
|
|
|
* The caller must lock the mutex.
|
|
|
|
*/
|
|
|
|
static struct input_curl *
|
|
|
|
input_curl_find_request(CURL *easy)
|
|
|
|
{
|
|
|
|
for (GSList *i = curl.requests; i != NULL; i = g_slist_next(i)) {
|
|
|
|
struct input_curl *c = i->data;
|
|
|
|
if (c->easy == easy)
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if LIBCURL_VERSION_NUM >= 0x071200
|
|
|
|
|
|
|
|
static gpointer
|
|
|
|
input_curl_resume(gpointer data)
|
|
|
|
{
|
|
|
|
struct input_curl *c = data;
|
|
|
|
|
|
|
|
if (c->paused) {
|
|
|
|
curl_easy_pause(c->easy, CURLPAUSE_CONT);
|
|
|
|
c->paused = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Calculates the GLib event bit mask for one file descriptor,
|
|
|
|
* obtained from three #fd_set objects filled by curl_multi_fdset().
|
|
|
|
*/
|
|
|
|
static gushort
|
|
|
|
input_curl_fd_events(int fd, fd_set *rfds, fd_set *wfds, fd_set *efds)
|
|
|
|
{
|
|
|
|
gushort events = 0;
|
|
|
|
|
|
|
|
if (FD_ISSET(fd, rfds)) {
|
|
|
|
events |= G_IO_IN | G_IO_HUP | G_IO_ERR;
|
|
|
|
FD_CLR(fd, rfds);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (FD_ISSET(fd, wfds)) {
|
|
|
|
events |= G_IO_OUT | G_IO_ERR;
|
|
|
|
FD_CLR(fd, wfds);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (FD_ISSET(fd, efds)) {
|
|
|
|
events |= G_IO_HUP | G_IO_ERR;
|
|
|
|
FD_CLR(fd, efds);
|
|
|
|
}
|
|
|
|
|
|
|
|
return events;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates all registered GPollFD objects, unregisters old ones,
|
|
|
|
* registers new ones.
|
|
|
|
*
|
|
|
|
* The caller must lock the mutex. Runs in the I/O thread.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
curl_update_fds(void)
|
|
|
|
{
|
|
|
|
fd_set rfds, wfds, efds;
|
|
|
|
|
|
|
|
FD_ZERO(&rfds);
|
|
|
|
FD_ZERO(&wfds);
|
|
|
|
FD_ZERO(&efds);
|
|
|
|
|
|
|
|
int max_fd;
|
|
|
|
CURLMcode mcode = curl_multi_fdset(curl.multi, &rfds, &wfds,
|
|
|
|
&efds, &max_fd);
|
|
|
|
if (mcode != CURLM_OK) {
|
|
|
|
g_warning("curl_multi_fdset() failed: %s\n",
|
|
|
|
curl_multi_strerror(mcode));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
GSList *fds = curl.fds;
|
|
|
|
curl.fds = NULL;
|
|
|
|
|
|
|
|
while (fds != NULL) {
|
|
|
|
GPollFD *poll_fd = fds->data;
|
|
|
|
gushort events = input_curl_fd_events(poll_fd->fd, &rfds,
|
|
|
|
&wfds, &efds);
|
|
|
|
|
|
|
|
assert(poll_fd->events != 0);
|
|
|
|
|
|
|
|
fds = g_slist_remove(fds, poll_fd);
|
|
|
|
|
|
|
|
if (events != poll_fd->events)
|
|
|
|
g_source_remove_poll(curl.source, poll_fd);
|
|
|
|
|
|
|
|
if (events != 0) {
|
|
|
|
if (events != poll_fd->events) {
|
|
|
|
poll_fd->events = events;
|
|
|
|
g_source_add_poll(curl.source, poll_fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
curl.fds = g_slist_prepend(curl.fds, poll_fd);
|
|
|
|
} else {
|
|
|
|
g_free(poll_fd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int fd = 0; fd <= max_fd; ++fd) {
|
|
|
|
gushort events = input_curl_fd_events(fd, &rfds, &wfds, &efds);
|
|
|
|
if (events != 0) {
|
|
|
|
GPollFD *poll_fd = g_new(GPollFD, 1);
|
|
|
|
poll_fd->fd = fd;
|
|
|
|
poll_fd->events = events;
|
|
|
|
g_source_add_poll(curl.source, poll_fd);
|
|
|
|
curl.fds = g_slist_prepend(curl.fds, poll_fd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Callback for curl_schedule_update() that runs in the I/O thread.
|
|
|
|
*/
|
|
|
|
static gboolean
|
|
|
|
input_curl_dirty_callback(G_GNUC_UNUSED gpointer data)
|
|
|
|
{
|
|
|
|
g_static_mutex_lock(&curl.mutex);
|
|
|
|
|
|
|
|
assert(curl.dirty_source_id != 0 || curl.requests == NULL);
|
|
|
|
curl.dirty_source_id = 0;
|
|
|
|
|
|
|
|
curl_update_fds();
|
|
|
|
|
|
|
|
g_static_mutex_unlock(&curl.mutex);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Schedule a refresh of curl.fds. Does nothing if that is already
|
|
|
|
* scheduled.
|
|
|
|
*
|
|
|
|
* The caller must lock the mutex.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
input_curl_schedule_update(void)
|
|
|
|
{
|
|
|
|
if (curl.dirty_source_id != 0)
|
|
|
|
/* already scheduled */
|
|
|
|
return;
|
|
|
|
|
|
|
|
curl.dirty_source_id =
|
|
|
|
io_thread_idle_add(input_curl_dirty_callback, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
input_curl_easy_add(struct input_curl *c, GError **error_r)
|
|
|
|
{
|
|
|
|
assert(c != NULL);
|
|
|
|
assert(c->easy != NULL);
|
|
|
|
assert(input_curl_find_request(c->easy) == NULL);
|
|
|
|
|
|
|
|
curl.requests = g_slist_prepend(curl.requests, c);
|
|
|
|
|
|
|
|
CURLMcode mcode = curl_multi_add_handle(curl.multi, c->easy);
|
|
|
|
if (mcode != CURLM_OK) {
|
|
|
|
g_set_error(error_r, curl_quark(), mcode,
|
|
|
|
"curl_multi_add_handle() failed: %s",
|
|
|
|
curl_multi_strerror(mcode));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
input_curl_schedule_update();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Frees the current "libcurl easy" handle, and everything associated
|
|
|
|
* with it.
|
|
|
|
*
|
|
|
|
* The caller must lock the mutex.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
input_curl_easy_free(struct input_curl *c)
|
|
|
|
{
|
|
|
|
assert(c != NULL);
|
|
|
|
|
|
|
|
if (c->easy == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
curl.requests = g_slist_remove(curl.requests, c);
|
|
|
|
|
|
|
|
curl_multi_remove_handle(curl.multi, c->easy);
|
|
|
|
curl_easy_cleanup(c->easy);
|
|
|
|
c->easy = NULL;
|
|
|
|
|
|
|
|
curl_slist_free_all(c->request_headers);
|
|
|
|
c->request_headers = NULL;
|
|
|
|
|
|
|
|
g_free(c->range);
|
|
|
|
c->range = NULL;
|
|
|
|
|
|
|
|
c->base.ready = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gpointer
|
|
|
|
input_curl_easy_free_callback(gpointer data)
|
|
|
|
{
|
|
|
|
struct input_curl *c = data;
|
|
|
|
|
|
|
|
g_static_mutex_lock(&curl.mutex);
|
|
|
|
|
|
|
|
input_curl_easy_free(c);
|
|
|
|
curl_update_fds();
|
|
|
|
|
|
|
|
g_static_mutex_unlock(&curl.mutex);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Frees the current "libcurl easy" handle, and everything associated
|
|
|
|
* with it.
|
|
|
|
*
|
|
|
|
* The mutex must not be locked.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
input_curl_easy_free_indirect(struct input_curl *c)
|
|
|
|
{
|
|
|
|
io_thread_call(input_curl_easy_free_callback, c);
|
|
|
|
assert(c->easy == NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Aborts and frees a running HTTP request.
|
|
|
|
*
|
|
|
|
* The caller must lock the mutex. Runs in the I/O thread.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
input_curl_request_abort(struct input_curl *c, GError *error)
|
|
|
|
{
|
|
|
|
assert(c != NULL);
|
|
|
|
assert(c->postponed_error == NULL);
|
|
|
|
assert(error != NULL);
|
|
|
|
|
|
|
|
input_curl_easy_free(c);
|
|
|
|
|
|
|
|
c->postponed_error = error;
|
|
|
|
|
|
|
|
g_cond_broadcast(curl.cond);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Abort and free all HTTP requests.
|
|
|
|
*
|
|
|
|
* The caller must lock the mutex. Runs in the I/O thread.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
input_curl_abort_all_requests(GError *error)
|
|
|
|
{
|
|
|
|
while (curl.requests != NULL) {
|
|
|
|
struct input_curl *is = curl.requests->data;
|
|
|
|
input_curl_request_abort(is, g_error_copy(error));
|
|
|
|
}
|
|
|
|
|
|
|
|
g_error_free(error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A HTTP request is finished.
|
|
|
|
*
|
|
|
|
* The caller must lock the mutex. Runs in the I/O thread.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
input_curl_request_done(struct input_curl *c, CURLcode result, long status)
|
|
|
|
{
|
|
|
|
assert(c->easy == NULL);
|
|
|
|
assert(c->base.ready);
|
|
|
|
|
|
|
|
if (result != CURLE_OK) {
|
|
|
|
GError *error = g_error_new(curl_quark(), result,
|
|
|
|
"curl failed: %s",
|
|
|
|
c->error);
|
|
|
|
input_curl_request_abort(c, error);
|
|
|
|
} else if (status < 200 || status >= 300) {
|
|
|
|
GError *error = g_error_new(curl_quark(), 0,
|
|
|
|
"got HTTP status %ld",
|
|
|
|
status);
|
|
|
|
input_curl_request_abort(c, error);
|
|
|
|
} else {
|
|
|
|
g_cond_broadcast(curl.cond);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
input_curl_handle_done(CURL *easy_handle, CURLcode result)
|
|
|
|
{
|
|
|
|
struct input_curl *c = input_curl_find_request(easy_handle);
|
|
|
|
assert(c != NULL);
|
|
|
|
|
|
|
|
long status = 0;
|
|
|
|
curl_easy_getinfo(easy_handle, CURLINFO_RESPONSE_CODE, &status);
|
|
|
|
|
|
|
|
input_curl_easy_free(c);
|
|
|
|
input_curl_request_done(c, result, status);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check for finished HTTP responses.
|
|
|
|
*
|
|
|
|
* The caller must lock the mutex. Runs in the I/O thread.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
input_curl_info_read(void)
|
|
|
|
{
|
|
|
|
CURLMsg *msg;
|
|
|
|
int msgs_in_queue;
|
|
|
|
|
|
|
|
while ((msg = curl_multi_info_read(curl.multi,
|
|
|
|
&msgs_in_queue)) != NULL) {
|
|
|
|
if (msg->msg == CURLMSG_DONE)
|
|
|
|
input_curl_handle_done(msg->easy_handle, msg->data.result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Give control to CURL.
|
|
|
|
*
|
|
|
|
* The caller must lock the mutex. Runs in the I/O thread.
|
|
|
|
*/
|
|
|
|
static bool
|
|
|
|
input_curl_perform(void)
|
|
|
|
{
|
|
|
|
CURLMcode mcode;
|
|
|
|
|
|
|
|
do {
|
|
|
|
int running_handles;
|
|
|
|
mcode = curl_multi_perform(curl.multi, &running_handles);
|
|
|
|
} while (mcode == CURLM_CALL_MULTI_PERFORM);
|
|
|
|
|
|
|
|
if (mcode != CURLM_OK && mcode != CURLM_CALL_MULTI_PERFORM) {
|
|
|
|
GError *error = g_error_new(curl_quark(), mcode,
|
|
|
|
"curl_multi_perform() failed: %s",
|
|
|
|
curl_multi_strerror(mcode));
|
|
|
|
input_curl_abort_all_requests(error);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* GSource methods
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The GSource prepare() method implementation.
|
|
|
|
*/
|
|
|
|
static gboolean
|
|
|
|
input_curl_source_prepare(G_GNUC_UNUSED GSource *source, gint *timeout_r)
|
|
|
|
{
|
|
|
|
curl_update_fds();
|
|
|
|
|
|
|
|
#if LIBCURL_VERSION_NUM >= 0x070f04
|
|
|
|
curl.timeout = false;
|
|
|
|
|
|
|
|
long timeout2;
|
|
|
|
CURLMcode mcode = curl_multi_timeout(curl.multi, &timeout2);
|
|
|
|
if (mcode == CURLM_OK) {
|
|
|
|
if (timeout2 >= 0) {
|
|
|
|
g_source_get_current_time(source,
|
|
|
|
&curl.absolute_timeout);
|
|
|
|
g_time_val_add(&curl.absolute_timeout,
|
|
|
|
timeout2 * 1000);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (timeout2 >= 0 && timeout2 < 10)
|
|
|
|
/* CURL 7.21.1 likes to report "timeout=0",
|
|
|
|
which means we're running in a busy loop.
|
|
|
|
Quite a bad idea to waste so much CPU.
|
|
|
|
Let's use a lower limit of 10ms. */
|
|
|
|
timeout2 = 10;
|
|
|
|
|
|
|
|
*timeout_r = timeout2;
|
|
|
|
|
|
|
|
curl.timeout = timeout2 >= 0;
|
|
|
|
} else
|
|
|
|
g_warning("curl_multi_timeout() failed: %s\n",
|
|
|
|
curl_multi_strerror(mcode));
|
|
|
|
#else
|
|
|
|
(void)timeout_r;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The GSource check() method implementation.
|
|
|
|
*/
|
|
|
|
static gboolean
|
|
|
|
input_curl_source_check(G_GNUC_UNUSED GSource *source)
|
|
|
|
{
|
|
|
|
#if LIBCURL_VERSION_NUM >= 0x070f04
|
|
|
|
if (curl.timeout) {
|
|
|
|
/* when a timeout has expired, we need to call
|
|
|
|
curl_multi_perform(), even if there was no file
|
|
|
|
descriptor event */
|
|
|
|
|
|
|
|
GTimeVal now;
|
|
|
|
g_source_get_current_time(source, &now);
|
|
|
|
if (now.tv_sec > curl.absolute_timeout.tv_sec ||
|
|
|
|
(now.tv_sec == curl.absolute_timeout.tv_sec &&
|
|
|
|
now.tv_usec >= curl.absolute_timeout.tv_usec))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
for (GSList *i = curl.fds; i != NULL; i = i->next) {
|
|
|
|
GPollFD *poll_fd = i->data;
|
|
|
|
if (poll_fd->revents != 0)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The GSource dispatch() method implementation. The callback isn't
|
|
|
|
* used, because we're handling all events directly.
|
|
|
|
*/
|
|
|
|
static gboolean
|
|
|
|
input_curl_source_dispatch(G_GNUC_UNUSED GSource *source,
|
|
|
|
G_GNUC_UNUSED GSourceFunc callback,
|
|
|
|
G_GNUC_UNUSED gpointer user_data)
|
|
|
|
{
|
|
|
|
g_static_mutex_lock(&curl.mutex);
|
|
|
|
|
|
|
|
if (input_curl_perform())
|
|
|
|
input_curl_info_read();
|
|
|
|
|
|
|
|
g_static_mutex_unlock(&curl.mutex);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The vtable for our GSource implementation. Unfortunately, we
|
|
|
|
* cannot declare it "const", because g_source_new() takes a non-const
|
|
|
|
* pointer, for whatever reason.
|
|
|
|
*/
|
|
|
|
static GSourceFuncs curl_source_funcs = {
|
|
|
|
.prepare = input_curl_source_prepare,
|
|
|
|
.check = input_curl_source_check,
|
|
|
|
.dispatch = input_curl_source_dispatch,
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* input_plugin methods
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2009-03-02 20:45:50 +01:00
|
|
|
static bool
|
2009-12-14 22:29:46 +01:00
|
|
|
input_curl_init(const struct config_param *param,
|
|
|
|
G_GNUC_UNUSED GError **error_r)
|
2008-10-26 19:32:43 +01:00
|
|
|
{
|
|
|
|
CURLcode code = curl_global_init(CURL_GLOBAL_ALL);
|
2009-03-02 20:45:50 +01:00
|
|
|
if (code != CURLE_OK) {
|
2011-08-25 08:43:05 +02:00
|
|
|
g_set_error(error_r, curl_quark(), code,
|
|
|
|
"curl_global_init() failed: %s\n",
|
|
|
|
curl_easy_strerror(code));
|
2009-03-02 20:45:50 +01:00
|
|
|
return false;
|
|
|
|
}
|
2008-10-26 19:32:43 +01:00
|
|
|
|
|
|
|
http_200_aliases = curl_slist_append(http_200_aliases, "ICY 200 OK");
|
2009-03-02 20:45:50 +01:00
|
|
|
|
2009-04-25 13:35:04 +02:00
|
|
|
proxy = config_get_block_string(param, "proxy", NULL);
|
|
|
|
proxy_port = config_get_block_unsigned(param, "proxy_port", 0);
|
|
|
|
proxy_user = config_get_block_string(param, "proxy_user", NULL);
|
|
|
|
proxy_password = config_get_block_string(param, "proxy_password",
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
if (proxy == NULL) {
|
|
|
|
/* deprecated proxy configuration */
|
|
|
|
proxy = config_get_string(CONF_HTTP_PROXY_HOST, NULL);
|
|
|
|
proxy_port = config_get_positive(CONF_HTTP_PROXY_PORT, 0);
|
|
|
|
proxy_user = config_get_string(CONF_HTTP_PROXY_USER, NULL);
|
|
|
|
proxy_password = config_get_string(CONF_HTTP_PROXY_PASSWORD,
|
|
|
|
"");
|
|
|
|
}
|
|
|
|
|
2011-08-24 02:54:05 +02:00
|
|
|
curl.multi = curl_multi_init();
|
|
|
|
if (curl.multi == NULL) {
|
|
|
|
g_set_error(error_r, curl_quark(), 0,
|
|
|
|
"curl_multi_init() failed");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
curl.cond = g_cond_new();
|
|
|
|
|
|
|
|
curl.source = g_source_new(&curl_source_funcs, sizeof(*curl.source));
|
|
|
|
curl.source_id = g_source_attach(curl.source, io_thread_context());
|
|
|
|
|
2009-03-02 20:45:50 +01:00
|
|
|
return true;
|
2008-10-26 19:32:43 +01:00
|
|
|
}
|
|
|
|
|
2011-08-24 02:54:05 +02:00
|
|
|
static gpointer
|
|
|
|
curl_destroy_sources(G_GNUC_UNUSED gpointer data)
|
|
|
|
{
|
|
|
|
g_source_destroy(curl.source);
|
|
|
|
|
|
|
|
if (curl.dirty_source_id != 0) {
|
|
|
|
GSource *source =
|
|
|
|
g_main_context_find_source_by_id(io_thread_context(),
|
|
|
|
curl.dirty_source_id);
|
|
|
|
assert(source != NULL);
|
|
|
|
curl.dirty_source_id = 0;
|
|
|
|
|
|
|
|
g_source_destroy(source);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-03-02 20:45:50 +01:00
|
|
|
static void
|
|
|
|
input_curl_finish(void)
|
2008-10-26 19:32:43 +01:00
|
|
|
{
|
2011-08-24 02:54:05 +02:00
|
|
|
assert(curl.requests == NULL);
|
|
|
|
|
|
|
|
io_thread_call(curl_destroy_sources, NULL);
|
|
|
|
|
|
|
|
curl_multi_cleanup(curl.multi);
|
|
|
|
g_cond_free(curl.cond);
|
|
|
|
|
2008-10-26 19:32:43 +01:00
|
|
|
curl_slist_free_all(http_200_aliases);
|
|
|
|
|
|
|
|
curl_global_cleanup();
|
|
|
|
}
|
|
|
|
|
2011-08-24 02:54:05 +02:00
|
|
|
#if LIBCURL_VERSION_NUM >= 0x071200
|
|
|
|
|
2011-08-23 20:46:51 +02:00
|
|
|
/**
|
|
|
|
* Determine the total sizes of all buffers, including portions that
|
|
|
|
* have already been consumed.
|
2011-08-24 02:54:05 +02:00
|
|
|
*
|
|
|
|
* The caller must lock the mutex.
|
2011-08-23 20:46:51 +02:00
|
|
|
*/
|
|
|
|
G_GNUC_PURE
|
|
|
|
static size_t
|
|
|
|
curl_total_buffer_size(const struct input_curl *c)
|
|
|
|
{
|
|
|
|
size_t total = 0;
|
|
|
|
|
|
|
|
for (GList *i = g_queue_peek_head_link(c->buffers);
|
|
|
|
i != NULL; i = g_list_next(i)) {
|
|
|
|
struct buffer *buffer = i->data;
|
|
|
|
total += buffer->size;
|
|
|
|
}
|
|
|
|
|
|
|
|
return total;
|
|
|
|
}
|
|
|
|
|
2011-08-24 02:54:05 +02:00
|
|
|
#endif
|
|
|
|
|
2009-01-07 16:30:43 +01:00
|
|
|
static void
|
|
|
|
buffer_free_callback(gpointer data, G_GNUC_UNUSED gpointer user_data)
|
|
|
|
{
|
|
|
|
struct buffer *buffer = data;
|
|
|
|
|
|
|
|
assert(buffer->consumed <= buffer->size);
|
|
|
|
|
|
|
|
g_free(data);
|
|
|
|
}
|
|
|
|
|
2011-08-25 18:48:05 +02:00
|
|
|
static void
|
|
|
|
input_curl_flush_buffers(struct input_curl *c)
|
|
|
|
{
|
|
|
|
g_queue_foreach(c->buffers, buffer_free_callback, NULL);
|
|
|
|
g_queue_clear(c->buffers);
|
|
|
|
}
|
|
|
|
|
2008-10-26 19:32:43 +01:00
|
|
|
/**
|
2011-09-15 06:43:48 +02:00
|
|
|
* Frees this stream, including the input_stream struct.
|
2008-10-26 19:32:43 +01:00
|
|
|
*/
|
|
|
|
static void
|
2009-12-30 23:27:37 +01:00
|
|
|
input_curl_free(struct input_curl *c)
|
2008-10-26 19:32:43 +01:00
|
|
|
{
|
2009-01-03 23:29:45 +01:00
|
|
|
if (c->tag != NULL)
|
|
|
|
tag_free(c->tag);
|
2009-01-03 23:55:03 +01:00
|
|
|
g_free(c->meta_name);
|
2009-01-03 23:29:45 +01:00
|
|
|
|
2011-08-24 02:54:05 +02:00
|
|
|
input_curl_easy_free_indirect(c);
|
2011-08-25 18:48:05 +02:00
|
|
|
input_curl_flush_buffers(c);
|
2008-10-26 19:32:43 +01:00
|
|
|
|
2009-01-07 16:30:43 +01:00
|
|
|
g_queue_free(c->buffers);
|
|
|
|
|
2008-10-26 19:32:43 +01:00
|
|
|
g_free(c->url);
|
2010-01-18 09:57:53 +01:00
|
|
|
input_stream_deinit(&c->base);
|
2008-10-26 19:32:43 +01:00
|
|
|
g_free(c);
|
|
|
|
}
|
|
|
|
|
2009-01-03 23:29:45 +01:00
|
|
|
static struct tag *
|
|
|
|
input_curl_tag(struct input_stream *is)
|
|
|
|
{
|
2009-12-30 23:27:37 +01:00
|
|
|
struct input_curl *c = (struct input_curl *)is;
|
2009-01-03 23:29:45 +01:00
|
|
|
struct tag *tag = c->tag;
|
|
|
|
|
|
|
|
c->tag = NULL;
|
|
|
|
return tag;
|
|
|
|
}
|
|
|
|
|
2009-10-11 23:09:38 +02:00
|
|
|
static bool
|
2011-08-25 18:40:12 +02:00
|
|
|
fill_buffer(struct input_curl *c, GError **error_r)
|
2009-10-11 23:09:38 +02:00
|
|
|
{
|
2011-08-24 02:54:05 +02:00
|
|
|
while (c->easy != NULL && g_queue_is_empty(c->buffers))
|
|
|
|
g_cond_wait(curl.cond, g_static_mutex_get_mutex(&curl.mutex));
|
2009-10-11 23:09:38 +02:00
|
|
|
|
2011-08-24 02:54:05 +02:00
|
|
|
if (c->postponed_error != NULL) {
|
|
|
|
g_propagate_error(error_r, c->postponed_error);
|
|
|
|
c->postponed_error = NULL;
|
|
|
|
return false;
|
2009-10-11 23:09:38 +02:00
|
|
|
}
|
|
|
|
|
2009-10-13 16:24:28 +02:00
|
|
|
return !g_queue_is_empty(c->buffers);
|
2009-10-11 23:09:38 +02:00
|
|
|
}
|
|
|
|
|
2008-11-21 16:57:55 +01:00
|
|
|
/**
|
|
|
|
* Mark a part of the buffer object as consumed.
|
|
|
|
*/
|
2009-01-07 16:30:43 +01:00
|
|
|
static struct buffer *
|
2009-12-30 21:41:45 +01:00
|
|
|
consume_buffer(struct buffer *buffer, size_t length)
|
2008-11-21 16:57:55 +01:00
|
|
|
{
|
|
|
|
assert(buffer != NULL);
|
|
|
|
assert(buffer->consumed < buffer->size);
|
|
|
|
|
|
|
|
buffer->consumed += length;
|
|
|
|
if (buffer->consumed < buffer->size)
|
2009-01-07 16:30:43 +01:00
|
|
|
return buffer;
|
2008-11-21 16:57:55 +01:00
|
|
|
|
|
|
|
assert(buffer->consumed == buffer->size);
|
|
|
|
|
2009-12-30 21:41:45 +01:00
|
|
|
g_free(buffer);
|
2009-01-07 16:30:43 +01:00
|
|
|
|
|
|
|
return NULL;
|
2008-11-21 16:57:55 +01:00
|
|
|
}
|
|
|
|
|
2008-10-26 19:32:43 +01:00
|
|
|
static size_t
|
2009-01-07 16:30:43 +01:00
|
|
|
read_from_buffer(struct icy_metadata *icy_metadata, GQueue *buffers,
|
2009-12-30 21:41:45 +01:00
|
|
|
void *dest0, size_t length)
|
2008-10-26 19:32:43 +01:00
|
|
|
{
|
2009-01-07 16:30:43 +01:00
|
|
|
struct buffer *buffer = g_queue_pop_head(buffers);
|
2009-01-03 23:55:03 +01:00
|
|
|
uint8_t *dest = dest0;
|
|
|
|
size_t nbytes = 0;
|
|
|
|
|
2008-10-26 19:32:43 +01:00
|
|
|
assert(buffer->size > 0);
|
|
|
|
assert(buffer->consumed < buffer->size);
|
|
|
|
|
|
|
|
if (length > buffer->size - buffer->consumed)
|
|
|
|
length = buffer->size - buffer->consumed;
|
|
|
|
|
2009-01-03 23:55:03 +01:00
|
|
|
while (true) {
|
|
|
|
size_t chunk;
|
|
|
|
|
|
|
|
chunk = icy_data(icy_metadata, length);
|
|
|
|
if (chunk > 0) {
|
|
|
|
memcpy(dest, buffer->data + buffer->consumed,
|
|
|
|
chunk);
|
2009-12-30 21:41:45 +01:00
|
|
|
buffer = consume_buffer(buffer, chunk);
|
2009-01-03 23:55:03 +01:00
|
|
|
|
|
|
|
nbytes += chunk;
|
|
|
|
dest += chunk;
|
|
|
|
length -= chunk;
|
|
|
|
|
|
|
|
if (length == 0)
|
|
|
|
break;
|
2009-01-07 16:30:43 +01:00
|
|
|
|
|
|
|
assert(buffer != NULL);
|
2009-01-03 23:55:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
chunk = icy_meta(icy_metadata, buffer->data + buffer->consumed,
|
|
|
|
length);
|
|
|
|
if (chunk > 0) {
|
2009-12-30 21:41:45 +01:00
|
|
|
buffer = consume_buffer(buffer, chunk);
|
2009-01-03 23:55:03 +01:00
|
|
|
|
|
|
|
length -= chunk;
|
|
|
|
|
|
|
|
if (length == 0)
|
|
|
|
break;
|
2009-01-07 16:30:43 +01:00
|
|
|
|
|
|
|
assert(buffer != NULL);
|
2009-01-03 23:55:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-07 16:30:43 +01:00
|
|
|
if (buffer != NULL)
|
|
|
|
g_queue_push_head(buffers, buffer);
|
|
|
|
|
2009-01-03 23:55:03 +01:00
|
|
|
return nbytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
copy_icy_tag(struct input_curl *c)
|
|
|
|
{
|
|
|
|
struct tag *tag = icy_tag(&c->icy_metadata);
|
|
|
|
|
|
|
|
if (tag == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (c->tag != NULL)
|
|
|
|
tag_free(c->tag);
|
|
|
|
|
2009-10-13 16:12:45 +02:00
|
|
|
if (c->meta_name != NULL && !tag_has_type(tag, TAG_NAME))
|
|
|
|
tag_add_item(tag, TAG_NAME, c->meta_name);
|
2009-01-03 23:55:03 +01:00
|
|
|
|
|
|
|
c->tag = tag;
|
2008-10-26 19:32:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static size_t
|
2009-11-14 23:53:04 +01:00
|
|
|
input_curl_read(struct input_stream *is, void *ptr, size_t size,
|
|
|
|
GError **error_r)
|
2008-10-26 19:32:43 +01:00
|
|
|
{
|
2009-12-30 23:27:37 +01:00
|
|
|
struct input_curl *c = (struct input_curl *)is;
|
2009-10-11 23:09:38 +02:00
|
|
|
bool success;
|
2008-10-26 19:32:43 +01:00
|
|
|
size_t nbytes = 0;
|
|
|
|
char *dest = ptr;
|
|
|
|
|
2011-08-24 02:54:05 +02:00
|
|
|
g_static_mutex_lock(&curl.mutex);
|
|
|
|
|
2009-10-11 23:13:49 +02:00
|
|
|
do {
|
|
|
|
/* fill the buffer */
|
|
|
|
|
2011-08-25 18:40:12 +02:00
|
|
|
success = fill_buffer(c, error_r);
|
2011-08-24 02:54:05 +02:00
|
|
|
if (!success) {
|
|
|
|
g_static_mutex_unlock(&curl.mutex);
|
2009-10-11 23:13:49 +02:00
|
|
|
return 0;
|
2011-08-24 02:54:05 +02:00
|
|
|
}
|
2009-10-11 23:13:49 +02:00
|
|
|
|
|
|
|
/* send buffer contents */
|
|
|
|
|
|
|
|
while (size > 0 && !g_queue_is_empty(c->buffers)) {
|
|
|
|
size_t copy = read_from_buffer(&c->icy_metadata, c->buffers,
|
2009-12-30 21:41:45 +01:00
|
|
|
dest + nbytes, size);
|
2009-10-11 23:13:49 +02:00
|
|
|
|
|
|
|
nbytes += copy;
|
|
|
|
size -= copy;
|
|
|
|
}
|
|
|
|
} while (nbytes == 0);
|
2008-10-26 19:32:43 +01:00
|
|
|
|
2009-01-03 23:55:03 +01:00
|
|
|
if (icy_defined(&c->icy_metadata))
|
|
|
|
copy_icy_tag(c);
|
|
|
|
|
2009-10-11 23:32:22 +02:00
|
|
|
is->offset += (goffset)nbytes;
|
2008-11-02 17:06:15 +01:00
|
|
|
|
2011-08-24 02:54:05 +02:00
|
|
|
#if LIBCURL_VERSION_NUM >= 0x071200
|
|
|
|
if (c->paused && curl_total_buffer_size(c) < CURL_MAX_BUFFERED)
|
|
|
|
io_thread_call(input_curl_resume, c);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
g_static_mutex_unlock(&curl.mutex);
|
|
|
|
|
2008-10-26 19:32:43 +01:00
|
|
|
return nbytes;
|
|
|
|
}
|
|
|
|
|
2008-10-26 20:54:52 +01:00
|
|
|
static void
|
2008-10-26 19:32:43 +01:00
|
|
|
input_curl_close(struct input_stream *is)
|
|
|
|
{
|
2009-12-30 23:27:37 +01:00
|
|
|
struct input_curl *c = (struct input_curl *)is;
|
|
|
|
|
|
|
|
input_curl_free(c);
|
2008-10-26 19:32:43 +01:00
|
|
|
}
|
|
|
|
|
2008-10-26 20:56:46 +01:00
|
|
|
static bool
|
2008-11-24 14:33:25 +01:00
|
|
|
input_curl_eof(G_GNUC_UNUSED struct input_stream *is)
|
2008-10-26 19:32:43 +01:00
|
|
|
{
|
2009-12-30 23:27:37 +01:00
|
|
|
struct input_curl *c = (struct input_curl *)is;
|
2008-10-26 19:32:43 +01:00
|
|
|
|
2011-08-24 02:54:05 +02:00
|
|
|
g_static_mutex_lock(&curl.mutex);
|
|
|
|
bool eof = c->easy == NULL && g_queue_is_empty(c->buffers);
|
|
|
|
g_static_mutex_unlock(&curl.mutex);
|
|
|
|
|
|
|
|
return eof;
|
2008-10-26 19:32:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2009-11-14 23:53:04 +01:00
|
|
|
input_curl_buffer(struct input_stream *is, GError **error_r)
|
2008-10-26 19:32:43 +01:00
|
|
|
{
|
2009-12-30 23:27:37 +01:00
|
|
|
struct input_curl *c = (struct input_curl *)is;
|
2011-08-23 20:46:51 +02:00
|
|
|
|
2011-08-24 02:54:05 +02:00
|
|
|
g_static_mutex_lock(&curl.mutex);
|
2011-08-23 20:46:51 +02:00
|
|
|
|
2011-08-24 02:54:05 +02:00
|
|
|
int result;
|
|
|
|
if (c->postponed_error != NULL) {
|
|
|
|
g_propagate_error(error_r, c->postponed_error);
|
|
|
|
c->postponed_error = NULL;
|
|
|
|
result = -1;
|
|
|
|
} else if (g_queue_is_empty(c->buffers))
|
|
|
|
result = 0;
|
|
|
|
else
|
|
|
|
result = 1;
|
2008-10-26 19:32:43 +01:00
|
|
|
|
2011-08-24 02:54:05 +02:00
|
|
|
g_static_mutex_unlock(&curl.mutex);
|
2008-10-26 19:32:43 +01:00
|
|
|
|
2011-08-24 02:54:05 +02:00
|
|
|
return result;
|
2008-10-26 19:32:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/** called by curl when new data is available */
|
|
|
|
static size_t
|
|
|
|
input_curl_headerfunction(void *ptr, size_t size, size_t nmemb, void *stream)
|
|
|
|
{
|
2009-12-30 23:27:37 +01:00
|
|
|
struct input_curl *c = (struct input_curl *)stream;
|
2008-10-26 21:12:56 +01:00
|
|
|
const char *header = ptr, *end, *value;
|
2008-10-26 19:32:43 +01:00
|
|
|
char name[64];
|
|
|
|
|
|
|
|
size *= nmemb;
|
|
|
|
end = header + size;
|
|
|
|
|
2008-10-26 21:12:56 +01:00
|
|
|
value = memchr(header, ':', size);
|
|
|
|
if (value == NULL || (size_t)(value - header) >= sizeof(name))
|
2008-10-26 19:32:43 +01:00
|
|
|
return size;
|
|
|
|
|
2008-10-26 21:12:56 +01:00
|
|
|
memcpy(name, header, value - header);
|
|
|
|
name[value - header] = 0;
|
|
|
|
|
|
|
|
/* skip the colon */
|
|
|
|
|
|
|
|
++value;
|
|
|
|
|
|
|
|
/* strip the value */
|
|
|
|
|
|
|
|
while (value < end && g_ascii_isspace(*value))
|
|
|
|
++value;
|
|
|
|
|
|
|
|
while (end > value && g_ascii_isspace(end[-1]))
|
|
|
|
--end;
|
2008-10-26 19:32:43 +01:00
|
|
|
|
2009-04-28 09:30:12 +02:00
|
|
|
if (g_ascii_strcasecmp(name, "accept-ranges") == 0) {
|
2009-01-03 23:55:03 +01:00
|
|
|
/* a stream with icy-metadata is not seekable */
|
|
|
|
if (!icy_defined(&c->icy_metadata))
|
2009-12-30 23:27:37 +01:00
|
|
|
c->base.seekable = true;
|
2009-04-28 09:30:12 +02:00
|
|
|
} else if (g_ascii_strcasecmp(name, "content-length") == 0) {
|
2008-10-26 21:12:56 +01:00
|
|
|
char buffer[64];
|
2008-10-26 19:32:43 +01:00
|
|
|
|
2008-10-26 21:12:56 +01:00
|
|
|
if ((size_t)(end - header) >= sizeof(buffer))
|
2008-10-26 19:32:43 +01:00
|
|
|
return size;
|
|
|
|
|
2008-10-26 21:12:56 +01:00
|
|
|
memcpy(buffer, value, end - value);
|
|
|
|
buffer[end - value] = 0;
|
2008-10-26 19:32:43 +01:00
|
|
|
|
2009-12-30 23:27:37 +01:00
|
|
|
c->base.size = c->base.offset + g_ascii_strtoull(buffer, NULL, 10);
|
2009-04-28 09:30:12 +02:00
|
|
|
} else if (g_ascii_strcasecmp(name, "content-type") == 0) {
|
2009-12-30 23:27:37 +01:00
|
|
|
g_free(c->base.mime);
|
|
|
|
c->base.mime = g_strndup(value, end - value);
|
2009-04-28 09:30:12 +02:00
|
|
|
} else if (g_ascii_strcasecmp(name, "icy-name") == 0 ||
|
|
|
|
g_ascii_strcasecmp(name, "ice-name") == 0 ||
|
|
|
|
g_ascii_strcasecmp(name, "x-audiocast-name") == 0) {
|
2009-01-03 23:29:45 +01:00
|
|
|
g_free(c->meta_name);
|
|
|
|
c->meta_name = g_strndup(value, end - value);
|
|
|
|
|
|
|
|
if (c->tag != NULL)
|
|
|
|
tag_free(c->tag);
|
|
|
|
|
|
|
|
c->tag = tag_new();
|
2009-10-13 16:12:45 +02:00
|
|
|
tag_add_item(c->tag, TAG_NAME, c->meta_name);
|
2009-04-28 09:30:12 +02:00
|
|
|
} else if (g_ascii_strcasecmp(name, "icy-metaint") == 0) {
|
2009-01-03 23:55:03 +01:00
|
|
|
char buffer[64];
|
|
|
|
size_t icy_metaint;
|
|
|
|
|
|
|
|
if ((size_t)(end - header) >= sizeof(buffer) ||
|
|
|
|
icy_defined(&c->icy_metadata))
|
|
|
|
return size;
|
|
|
|
|
|
|
|
memcpy(buffer, value, end - value);
|
|
|
|
buffer[end - value] = 0;
|
|
|
|
|
|
|
|
icy_metaint = g_ascii_strtoull(buffer, NULL, 10);
|
|
|
|
g_debug("icy-metaint=%zu", icy_metaint);
|
|
|
|
|
|
|
|
if (icy_metaint > 0) {
|
|
|
|
icy_start(&c->icy_metadata, icy_metaint);
|
|
|
|
|
|
|
|
/* a stream with icy-metadata is not
|
|
|
|
seekable */
|
2009-12-30 23:27:37 +01:00
|
|
|
c->base.seekable = false;
|
2009-01-03 23:55:03 +01:00
|
|
|
}
|
2008-10-26 19:32:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** called by curl when new data is available */
|
|
|
|
static size_t
|
|
|
|
input_curl_writefunction(void *ptr, size_t size, size_t nmemb, void *stream)
|
|
|
|
{
|
2009-12-30 23:27:37 +01:00
|
|
|
struct input_curl *c = (struct input_curl *)stream;
|
2008-10-26 19:32:43 +01:00
|
|
|
struct buffer *buffer;
|
|
|
|
|
|
|
|
size *= nmemb;
|
|
|
|
if (size == 0)
|
|
|
|
return 0;
|
|
|
|
|
2011-08-24 02:54:05 +02:00
|
|
|
#if LIBCURL_VERSION_NUM >= 0x071200
|
|
|
|
if (curl_total_buffer_size(c) + size >= CURL_MAX_BUFFERED) {
|
|
|
|
c->paused = true;
|
|
|
|
return CURL_WRITEFUNC_PAUSE;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-10-26 19:32:43 +01:00
|
|
|
buffer = g_malloc(sizeof(*buffer) - sizeof(buffer->data) + size);
|
|
|
|
buffer->size = size;
|
|
|
|
buffer->consumed = 0;
|
|
|
|
memcpy(buffer->data, ptr, size);
|
2011-08-24 02:54:05 +02:00
|
|
|
|
2009-01-07 16:30:43 +01:00
|
|
|
g_queue_push_tail(c->buffers, buffer);
|
2008-10-26 19:32:43 +01:00
|
|
|
|
2009-12-30 23:27:37 +01:00
|
|
|
c->base.ready = true;
|
2008-10-26 19:32:43 +01:00
|
|
|
|
2011-08-24 02:54:05 +02:00
|
|
|
g_cond_broadcast(curl.cond);
|
|
|
|
|
2008-10-26 19:32:43 +01:00
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2009-12-30 23:27:37 +01:00
|
|
|
input_curl_easy_init(struct input_curl *c, GError **error_r)
|
2008-10-26 19:32:43 +01:00
|
|
|
{
|
|
|
|
CURLcode code;
|
|
|
|
|
|
|
|
c->easy = curl_easy_init();
|
|
|
|
if (c->easy == NULL) {
|
2009-11-14 23:53:04 +01:00
|
|
|
g_set_error(error_r, curl_quark(), 0,
|
|
|
|
"curl_easy_init() failed");
|
2008-10-26 19:32:43 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-11-30 13:06:18 +01:00
|
|
|
curl_easy_setopt(c->easy, CURLOPT_USERAGENT,
|
|
|
|
"Music Player Daemon " VERSION);
|
2008-10-26 19:32:43 +01:00
|
|
|
curl_easy_setopt(c->easy, CURLOPT_HEADERFUNCTION,
|
|
|
|
input_curl_headerfunction);
|
2009-12-30 23:27:37 +01:00
|
|
|
curl_easy_setopt(c->easy, CURLOPT_WRITEHEADER, c);
|
2008-10-26 19:32:43 +01:00
|
|
|
curl_easy_setopt(c->easy, CURLOPT_WRITEFUNCTION,
|
|
|
|
input_curl_writefunction);
|
2009-12-30 23:27:37 +01:00
|
|
|
curl_easy_setopt(c->easy, CURLOPT_WRITEDATA, c);
|
2008-10-26 19:32:43 +01:00
|
|
|
curl_easy_setopt(c->easy, CURLOPT_HTTP200ALIASES, http_200_aliases);
|
2008-11-30 13:06:21 +01:00
|
|
|
curl_easy_setopt(c->easy, CURLOPT_FOLLOWLOCATION, 1);
|
2011-01-29 08:43:30 +01:00
|
|
|
curl_easy_setopt(c->easy, CURLOPT_NETRC, 1);
|
2008-11-30 13:06:21 +01:00
|
|
|
curl_easy_setopt(c->easy, CURLOPT_MAXREDIRS, 5);
|
2008-11-06 06:36:25 +01:00
|
|
|
curl_easy_setopt(c->easy, CURLOPT_FAILONERROR, true);
|
2008-11-06 06:48:30 +01:00
|
|
|
curl_easy_setopt(c->easy, CURLOPT_ERRORBUFFER, c->error);
|
2011-08-26 19:28:09 +02:00
|
|
|
curl_easy_setopt(c->easy, CURLOPT_NOPROGRESS, 1l);
|
|
|
|
curl_easy_setopt(c->easy, CURLOPT_NOSIGNAL, 1l);
|
|
|
|
curl_easy_setopt(c->easy, CURLOPT_CONNECTTIMEOUT, 10l);
|
2008-10-26 19:32:43 +01:00
|
|
|
|
2009-04-25 13:35:04 +02:00
|
|
|
if (proxy != NULL)
|
|
|
|
curl_easy_setopt(c->easy, CURLOPT_PROXY, proxy);
|
2009-01-13 22:57:05 +01:00
|
|
|
|
2009-04-25 13:35:04 +02:00
|
|
|
if (proxy_port > 0)
|
|
|
|
curl_easy_setopt(c->easy, CURLOPT_PROXYPORT, (long)proxy_port);
|
2009-01-25 16:00:51 +01:00
|
|
|
|
2009-04-25 13:35:04 +02:00
|
|
|
if (proxy_user != NULL && proxy_password != NULL) {
|
2009-01-13 22:57:05 +01:00
|
|
|
char *proxy_auth_str =
|
2009-04-25 13:35:04 +02:00
|
|
|
g_strconcat(proxy_user, ":", proxy_password, NULL);
|
2009-01-13 22:57:05 +01:00
|
|
|
curl_easy_setopt(c->easy, CURLOPT_PROXYUSERPWD, proxy_auth_str);
|
|
|
|
g_free(proxy_auth_str);
|
|
|
|
}
|
|
|
|
|
2008-10-26 19:32:43 +01:00
|
|
|
code = curl_easy_setopt(c->easy, CURLOPT_URL, c->url);
|
2009-11-14 23:53:04 +01:00
|
|
|
if (code != CURLE_OK) {
|
|
|
|
g_set_error(error_r, curl_quark(), code,
|
|
|
|
"curl_easy_setopt() failed: %s",
|
|
|
|
curl_easy_strerror(code));
|
2008-10-26 19:32:43 +01:00
|
|
|
return false;
|
2009-11-14 23:53:04 +01:00
|
|
|
}
|
2008-10-26 19:32:43 +01:00
|
|
|
|
|
|
|
c->request_headers = NULL;
|
|
|
|
c->request_headers = curl_slist_append(c->request_headers,
|
|
|
|
"Icy-Metadata: 1");
|
|
|
|
curl_easy_setopt(c->easy, CURLOPT_HTTPHEADER, c->request_headers);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-10-26 20:56:46 +01:00
|
|
|
static bool
|
2009-11-14 23:53:04 +01:00
|
|
|
input_curl_seek(struct input_stream *is, goffset offset, int whence,
|
|
|
|
GError **error_r)
|
2008-10-26 19:32:43 +01:00
|
|
|
{
|
2009-12-30 23:27:37 +01:00
|
|
|
struct input_curl *c = (struct input_curl *)is;
|
2008-10-26 19:32:43 +01:00
|
|
|
bool ret;
|
|
|
|
|
2009-01-15 16:12:22 +01:00
|
|
|
assert(is->ready);
|
|
|
|
|
2009-12-30 21:41:45 +01:00
|
|
|
if (whence == SEEK_SET && offset == is->offset)
|
|
|
|
/* no-op */
|
|
|
|
return true;
|
2008-11-02 17:06:15 +01:00
|
|
|
|
2008-10-26 19:32:43 +01:00
|
|
|
if (!is->seekable)
|
2008-10-26 20:56:46 +01:00
|
|
|
return false;
|
2008-10-26 19:32:43 +01:00
|
|
|
|
|
|
|
/* calculate the absolute offset */
|
|
|
|
|
|
|
|
switch (whence) {
|
|
|
|
case SEEK_SET:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SEEK_CUR:
|
2008-11-21 16:56:10 +01:00
|
|
|
offset += is->offset;
|
2008-10-26 19:32:43 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SEEK_END:
|
2008-11-16 20:42:08 +01:00
|
|
|
if (is->size < 0)
|
|
|
|
/* stream size is not known */
|
|
|
|
return false;
|
|
|
|
|
2008-11-21 16:56:10 +01:00
|
|
|
offset += is->size;
|
2008-10-26 19:32:43 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2008-10-26 20:56:46 +01:00
|
|
|
return false;
|
2008-10-26 19:32:43 +01:00
|
|
|
}
|
|
|
|
|
2008-11-21 16:56:10 +01:00
|
|
|
if (offset < 0)
|
2008-10-26 20:56:46 +01:00
|
|
|
return false;
|
2008-10-26 19:32:43 +01:00
|
|
|
|
2008-11-21 17:10:20 +01:00
|
|
|
/* check if we can fast-forward the buffer */
|
|
|
|
|
2009-01-07 16:30:43 +01:00
|
|
|
while (offset > is->offset && !g_queue_is_empty(c->buffers)) {
|
|
|
|
struct buffer *buffer;
|
2008-11-21 17:10:20 +01:00
|
|
|
size_t length;
|
|
|
|
|
2009-01-07 16:30:43 +01:00
|
|
|
buffer = (struct buffer *)g_queue_pop_head(c->buffers);
|
2008-11-21 17:10:20 +01:00
|
|
|
|
|
|
|
length = buffer->size - buffer->consumed;
|
2009-10-11 23:32:22 +02:00
|
|
|
if (offset - is->offset < (goffset)length)
|
2008-11-21 17:10:20 +01:00
|
|
|
length = offset - is->offset;
|
|
|
|
|
2009-12-30 21:41:45 +01:00
|
|
|
buffer = consume_buffer(buffer, length);
|
2009-01-07 16:30:43 +01:00
|
|
|
if (buffer != NULL)
|
|
|
|
g_queue_push_head(c->buffers, buffer);
|
|
|
|
|
2008-11-21 17:10:20 +01:00
|
|
|
is->offset += length;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (offset == is->offset)
|
|
|
|
return true;
|
|
|
|
|
2008-10-26 19:32:43 +01:00
|
|
|
/* close the old connection and open a new one */
|
|
|
|
|
2011-08-24 02:54:05 +02:00
|
|
|
input_curl_easy_free_indirect(c);
|
2011-08-25 18:48:05 +02:00
|
|
|
input_curl_flush_buffers(c);
|
2008-10-26 19:32:43 +01:00
|
|
|
|
2008-11-21 16:56:10 +01:00
|
|
|
is->offset = offset;
|
2008-11-20 12:45:17 +01:00
|
|
|
if (is->offset == is->size) {
|
|
|
|
/* seek to EOF: simulate empty result; avoid
|
|
|
|
triggering a "416 Requested Range Not Satisfiable"
|
|
|
|
response */
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-12-30 23:27:37 +01:00
|
|
|
ret = input_curl_easy_init(c, error_r);
|
2008-10-26 19:32:43 +01:00
|
|
|
if (!ret)
|
2008-10-26 20:56:46 +01:00
|
|
|
return false;
|
2008-10-26 19:32:43 +01:00
|
|
|
|
|
|
|
/* send the "Range" header */
|
|
|
|
|
|
|
|
if (is->offset > 0) {
|
2008-10-28 20:39:09 +01:00
|
|
|
c->range = g_strdup_printf("%lld-", (long long)is->offset);
|
2008-10-26 19:32:43 +01:00
|
|
|
curl_easy_setopt(c->easy, CURLOPT_RANGE, c->range);
|
|
|
|
}
|
|
|
|
|
2011-08-24 02:54:05 +02:00
|
|
|
g_static_mutex_lock(&curl.mutex);
|
|
|
|
|
|
|
|
c->base.ready = false;
|
|
|
|
|
|
|
|
if (!input_curl_easy_add(c, error_r)) {
|
|
|
|
g_static_mutex_unlock(&curl.mutex);
|
2008-10-26 20:56:46 +01:00
|
|
|
return false;
|
2011-08-24 02:54:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
while (!c->base.ready)
|
|
|
|
g_cond_wait(curl.cond, g_static_mutex_get_mutex(&curl.mutex));
|
2008-10-26 19:32:43 +01:00
|
|
|
|
2011-08-24 02:54:05 +02:00
|
|
|
if (c->postponed_error != NULL) {
|
|
|
|
g_propagate_error(error_r, c->postponed_error);
|
|
|
|
c->postponed_error = NULL;
|
|
|
|
g_static_mutex_unlock(&curl.mutex);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_static_mutex_unlock(&curl.mutex);
|
|
|
|
|
|
|
|
return true;
|
2008-10-26 19:32:43 +01:00
|
|
|
}
|
|
|
|
|
2009-12-30 23:27:37 +01:00
|
|
|
static struct input_stream *
|
|
|
|
input_curl_open(const char *url, GError **error_r)
|
2008-10-26 19:32:43 +01:00
|
|
|
{
|
|
|
|
struct input_curl *c;
|
|
|
|
|
2008-10-27 10:10:24 +01:00
|
|
|
if (strncmp(url, "http://", 7) != 0)
|
2009-12-30 23:27:37 +01:00
|
|
|
return NULL;
|
2008-10-27 10:10:24 +01:00
|
|
|
|
2008-10-26 19:32:43 +01:00
|
|
|
c = g_new0(struct input_curl, 1);
|
2010-01-18 09:26:10 +01:00
|
|
|
input_stream_init(&c->base, &input_plugin_curl, url);
|
2009-12-30 23:27:37 +01:00
|
|
|
|
2008-10-26 19:32:43 +01:00
|
|
|
c->url = g_strdup(url);
|
2009-01-07 16:30:43 +01:00
|
|
|
c->buffers = g_queue_new();
|
2008-10-26 19:32:43 +01:00
|
|
|
|
2009-01-03 23:55:03 +01:00
|
|
|
icy_clear(&c->icy_metadata);
|
2009-01-03 23:29:45 +01:00
|
|
|
c->tag = NULL;
|
|
|
|
|
2011-08-24 02:54:05 +02:00
|
|
|
#if LIBCURL_VERSION_NUM >= 0x071200
|
|
|
|
c->paused = false;
|
|
|
|
#endif
|
2008-10-26 19:32:43 +01:00
|
|
|
|
2011-08-24 02:54:05 +02:00
|
|
|
if (!input_curl_easy_init(c, error_r)) {
|
2009-12-30 23:27:37 +01:00
|
|
|
input_curl_free(c);
|
|
|
|
return NULL;
|
2008-10-26 19:32:43 +01:00
|
|
|
}
|
|
|
|
|
2011-08-24 02:54:05 +02:00
|
|
|
g_static_mutex_lock(&curl.mutex);
|
|
|
|
if (!input_curl_easy_add(c, error_r)) {
|
|
|
|
g_static_mutex_unlock(&curl.mutex);
|
2009-12-30 23:27:37 +01:00
|
|
|
input_curl_free(c);
|
|
|
|
return NULL;
|
2009-01-15 16:12:11 +01:00
|
|
|
}
|
|
|
|
|
2011-08-24 02:54:05 +02:00
|
|
|
g_static_mutex_unlock(&curl.mutex);
|
|
|
|
|
2009-12-30 23:27:37 +01:00
|
|
|
return &c->base;
|
2008-10-26 19:32:43 +01:00
|
|
|
}
|
2008-10-26 20:38:44 +01:00
|
|
|
|
|
|
|
const struct input_plugin input_plugin_curl = {
|
2009-03-02 23:08:17 +01:00
|
|
|
.name = "curl",
|
2009-03-02 20:45:50 +01:00
|
|
|
.init = input_curl_init,
|
|
|
|
.finish = input_curl_finish,
|
|
|
|
|
2008-10-26 20:38:44 +01:00
|
|
|
.open = input_curl_open,
|
|
|
|
.close = input_curl_close,
|
2009-01-03 23:29:45 +01:00
|
|
|
.tag = input_curl_tag,
|
2008-10-26 20:38:44 +01:00
|
|
|
.buffer = input_curl_buffer,
|
|
|
|
.read = input_curl_read,
|
|
|
|
.eof = input_curl_eof,
|
|
|
|
.seek = input_curl_seek,
|
|
|
|
};
|