vdr-plugin-iptv/protocolhttp.c

214 lines
5.5 KiB
C
Raw Permalink Normal View History

2007-09-16 11:38:00 +02:00
/*
* protocolhttp.c: IPTV plugin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
*/
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include <fcntl.h>
#include <unistd.h>
#include <string.h>
2007-09-16 11:38:00 +02:00
#include <vdr/device.h>
#include "common.h"
2007-09-16 15:38:20 +02:00
#include "config.h"
2015-03-08 13:33:18 +01:00
#include "log.h"
2007-09-16 11:38:00 +02:00
#include "protocolhttp.h"
cIptvProtocolHttp::cIptvProtocolHttp()
2013-02-23 14:31:11 +01:00
: streamAddrM(strdup("")),
streamPathM(strdup("/")),
streamPortM(0)
2007-09-16 11:38:00 +02:00
{
2015-03-08 13:33:18 +01:00
debug1("%s", __PRETTY_FUNCTION__);
2007-09-16 11:38:00 +02:00
}
cIptvProtocolHttp::~cIptvProtocolHttp()
{
2015-03-08 13:33:18 +01:00
debug1("%s", __PRETTY_FUNCTION__);
2007-09-16 11:38:00 +02:00
// Close the socket
2008-01-05 00:36:37 +01:00
cIptvProtocolHttp::Close();
2007-09-16 11:38:00 +02:00
// Free allocated memory
2013-02-23 14:31:11 +01:00
free(streamPathM);
free(streamAddrM);
2007-09-16 11:38:00 +02:00
}
bool cIptvProtocolHttp::Connect(void)
{
2015-03-08 13:33:18 +01:00
debug1("%s", __PRETTY_FUNCTION__);
2007-09-16 11:38:00 +02:00
// Check that stream address is valid
2013-02-23 16:12:46 +01:00
if (!isActiveM && !isempty(streamAddrM) && !isempty(streamPathM)) {
2010-09-15 22:41:25 +02:00
// Ensure that socket is valid and connect
2013-02-23 14:31:11 +01:00
OpenSocket(streamPortM, streamAddrM);
2010-09-15 22:41:25 +02:00
if (!ConnectSocket()) {
CloseSocket();
2007-09-16 11:38:00 +02:00
return false;
}
// Formulate and send HTTP request
cString buffer = cString::sprintf("GET %s HTTP/1.1\r\n"
"Host: %s\r\n"
"User-Agent: vdr-%s/%s\r\n"
"Range: bytes=0-\r\n"
"Connection: Close\r\n"
2013-02-23 14:31:11 +01:00
"\r\n", streamPathM, streamAddrM,
PLUGIN_NAME_I18N, VERSION);
unsigned int len = strlen(*buffer);
2015-03-08 13:33:18 +01:00
debug1("%s Requesting %d: %s", __PRETTY_FUNCTION__, len, *buffer);
if (!Write(*buffer, len)) {
2010-09-15 22:41:25 +02:00
CloseSocket();
return false;
}
2007-09-29 12:55:14 +02:00
// Now process headers
if (!ProcessHeaders()) {
CloseSocket();
return false;
2007-09-29 18:21:04 +02:00
}
// Update active flag
2013-02-23 16:12:46 +01:00
isActiveM = true;
2007-09-16 11:38:00 +02:00
}
return true;
}
bool cIptvProtocolHttp::Disconnect(void)
{
2015-03-08 13:33:18 +01:00
debug1("%s", __PRETTY_FUNCTION__);
2013-02-23 16:12:46 +01:00
if (isActiveM) {
// Close the socket
CloseSocket();
// Update active flag
2013-02-23 16:12:46 +01:00
isActiveM = false;
}
2007-09-16 11:38:00 +02:00
return true;
}
2013-02-23 14:31:11 +01:00
bool cIptvProtocolHttp::GetHeaderLine(char* destP, unsigned int destLenP,
unsigned int &recvLenP)
2007-09-29 12:55:14 +02:00
{
2015-03-08 13:33:18 +01:00
debug1("%s (, %u, )", __PRETTY_FUNCTION__, destLenP);
2007-09-29 12:55:14 +02:00
bool linefeed = false;
bool newline = false;
2013-02-23 14:31:11 +01:00
char *bufptr = destP;
recvLenP = 0;
2007-09-29 12:55:14 +02:00
2013-02-23 14:31:11 +01:00
if (!destP)
return false;
2007-09-29 18:21:04 +02:00
while (!newline || !linefeed) {
2007-10-21 21:46:03 +02:00
// Wait 500ms for data
2010-09-15 22:41:25 +02:00
if (ReadChar(bufptr, 500)) {
2007-09-29 12:55:14 +02:00
// Parsing end conditions, if line ends with \r\n
2007-09-29 18:21:04 +02:00
if (linefeed && *bufptr == '\n')
2007-09-29 12:55:14 +02:00
newline = true;
// First occurrence of \r seen
2007-09-29 18:21:04 +02:00
else if (*bufptr == '\r')
2007-09-29 12:55:14 +02:00
linefeed = true;
// Saw just data or \r without \n
else {
linefeed = false;
2013-02-23 14:31:11 +01:00
++recvLenP;
2007-09-29 12:55:14 +02:00
}
++bufptr;
// Check that buffer won't be exceeded
2013-02-23 14:31:11 +01:00
if (recvLenP >= destLenP) {
error("Header wouldn't fit into buffer");
2013-02-23 14:31:11 +01:00
recvLenP = 0;
2007-09-29 12:55:14 +02:00
return false;
}
2007-09-29 18:21:04 +02:00
}
else {
error("No HTTP response received in 500ms");
2007-09-29 12:55:14 +02:00
return false;
}
2007-09-29 18:21:04 +02:00
}
2007-09-29 12:55:14 +02:00
return true;
}
bool cIptvProtocolHttp::ProcessHeaders(void)
{
2015-03-08 13:33:18 +01:00
debug1("%s", __PRETTY_FUNCTION__);
2007-09-29 12:55:14 +02:00
unsigned int lineLength = 0;
int version = 0, response = 0;
2007-09-29 12:55:14 +02:00
bool responseFound = false;
char fmt[32];
char buf[4096];
2007-09-29 12:55:14 +02:00
// Generate HTTP response format string with 2 arguments
snprintf(fmt, sizeof(fmt), "HTTP/1.%%%zui %%%zui ", sizeof(version) - 1, sizeof(response) - 1);
2007-09-29 18:21:04 +02:00
while (!responseFound || lineLength != 0) {
2013-02-23 16:12:46 +01:00
memset(buf, 0, sizeof(buf));
2007-09-29 18:21:04 +02:00
if (!GetHeaderLine(buf, sizeof(buf), lineLength))
return false;
if (!responseFound && sscanf(buf, fmt, &version, &response) != 2) {
error("Expected HTTP header not found");
2007-09-29 18:21:04 +02:00
continue;
}
else
responseFound = true;
// Allow only 'OK' and 'Partial Content'
if ((response != 200) && (response != 206)) {
error("Invalid HTTP response (%d): %s", response, buf);
2007-09-29 18:21:04 +02:00
return false;
}
}
2007-09-29 12:55:14 +02:00
return true;
}
2007-09-16 11:38:00 +02:00
bool cIptvProtocolHttp::Open(void)
{
2015-03-08 13:33:18 +01:00
debug1("%s", __PRETTY_FUNCTION__);
2007-09-16 11:38:00 +02:00
// Connect the socket
return Connect();
}
bool cIptvProtocolHttp::Close(void)
{
2015-03-08 13:33:18 +01:00
debug1("%s", __PRETTY_FUNCTION__);
2007-09-16 11:38:00 +02:00
// Disconnect the current stream
Disconnect();
return true;
}
2013-02-23 14:31:11 +01:00
int cIptvProtocolHttp::Read(unsigned char* bufferAddrP, unsigned int bufferLenP)
{
2013-02-23 14:31:11 +01:00
return cIptvTcpSocket::Read(bufferAddrP, bufferLenP);
}
2014-02-09 18:22:02 +01:00
bool cIptvProtocolHttp::SetSource(const char* locationP, const int parameterP, const int indexP)
2007-09-16 11:38:00 +02:00
{
2015-03-08 13:33:18 +01:00
debug1("%s (%s, %d, %d)", __PRETTY_FUNCTION__, locationP, parameterP, indexP);
2013-02-23 14:31:11 +01:00
if (!isempty(locationP)) {
2008-01-30 22:57:33 +01:00
// Disconnect the current socket
Disconnect();
// Update stream address, path and port
2013-02-23 14:31:11 +01:00
streamAddrM = strcpyrealloc(streamAddrM, locationP);
char *path = strstr(streamAddrM, "/");
2008-01-30 22:57:33 +01:00
if (path) {
2013-02-23 14:31:11 +01:00
streamPathM = strcpyrealloc(streamPathM, path);
2008-01-30 22:57:33 +01:00
*path = 0;
}
else
2013-02-23 14:31:11 +01:00
streamPathM = strcpyrealloc(streamPathM, "/");
streamPortM = parameterP;
2008-01-30 22:57:33 +01:00
// Re-connect the socket
Connect();
}
2007-09-16 11:38:00 +02:00
return true;
}
2007-10-08 00:54:09 +02:00
2014-02-09 18:22:02 +01:00
bool cIptvProtocolHttp::SetPid(int pidP, int typeP, bool onP)
{
2015-03-08 13:33:18 +01:00
debug16("%s (%d, %d, %d)", __PRETTY_FUNCTION__, pidP, typeP, onP);
2014-02-09 18:22:02 +01:00
return true;
}
2007-10-08 00:54:09 +02:00
cString cIptvProtocolHttp::GetInformation(void)
{
2015-03-08 13:33:18 +01:00
debug16("%s", __PRETTY_FUNCTION__);
2013-02-23 14:31:11 +01:00
return cString::sprintf("http://%s:%d%s", streamAddrM, streamPortM, streamPathM);
2007-10-08 00:54:09 +02:00
}