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.
|
|
|
|
*
|
2007-10-08 00:54:09 +02:00
|
|
|
* $Id: protocolhttp.c,v 1.10 2007/10/07 22:54:09 rahrenbe Exp $
|
2007-09-16 11:38:00 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netdb.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
2007-09-19 19:14:03 +02:00
|
|
|
#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"
|
2007-09-16 11:38:00 +02:00
|
|
|
#include "protocolhttp.h"
|
|
|
|
|
|
|
|
cIptvProtocolHttp::cIptvProtocolHttp()
|
2007-09-26 21:49:35 +02:00
|
|
|
: streamPort(3000),
|
2007-09-16 11:38:00 +02:00
|
|
|
socketDesc(-1),
|
2007-09-28 18:44:59 +02:00
|
|
|
readBufferLen(TS_SIZE * IptvConfig.GetReadBufferTsCount()),
|
2007-09-26 21:49:35 +02:00
|
|
|
isActive(false)
|
2007-09-16 11:38:00 +02:00
|
|
|
{
|
2007-09-28 18:44:59 +02:00
|
|
|
debug("cIptvProtocolHttp::cIptvProtocolHttp()\n");
|
2007-09-16 11:38:00 +02:00
|
|
|
streamAddr = strdup("");
|
2007-09-19 19:14:03 +02:00
|
|
|
streamPath = strdup("/");
|
2007-09-16 11:38:00 +02:00
|
|
|
// Allocate receive buffer
|
2007-09-28 18:44:59 +02:00
|
|
|
readBuffer = MALLOC(unsigned char, readBufferLen);
|
2007-09-16 11:38:00 +02:00
|
|
|
if (!readBuffer)
|
|
|
|
error("ERROR: MALLOC() failed in ProtocolHttp()");
|
|
|
|
}
|
|
|
|
|
|
|
|
cIptvProtocolHttp::~cIptvProtocolHttp()
|
|
|
|
{
|
|
|
|
debug("cIptvProtocolHttp::~cIptvProtocolHttp()\n");
|
|
|
|
// Close the socket
|
|
|
|
Close();
|
|
|
|
// Free allocated memory
|
2007-09-19 19:14:03 +02:00
|
|
|
free(streamPath);
|
2007-09-16 11:38:00 +02:00
|
|
|
free(streamAddr);
|
|
|
|
free(readBuffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cIptvProtocolHttp::OpenSocket(const int Port)
|
|
|
|
{
|
|
|
|
debug("cIptvProtocolHttp::OpenSocket()\n");
|
|
|
|
// If socket is there already and it is bound to a different port, it must
|
|
|
|
// be closed first
|
|
|
|
if (Port != streamPort) {
|
|
|
|
debug("cIptvProtocolHttp::OpenSocket(): Socket tear-down\n");
|
|
|
|
CloseSocket();
|
|
|
|
}
|
|
|
|
// Bind to the socket if it is not active already
|
|
|
|
if (socketDesc < 0) {
|
|
|
|
int yes = 1;
|
|
|
|
// Create socket
|
|
|
|
socketDesc = socket(PF_INET, SOCK_STREAM, 0);
|
|
|
|
if (socketDesc < 0) {
|
|
|
|
char tmp[64];
|
|
|
|
error("ERROR: socket(): %s", strerror_r(errno, tmp, sizeof(tmp)));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make it use non-blocking I/O to avoid stuck read calls
|
|
|
|
if (fcntl(socketDesc, F_SETFL, O_NONBLOCK)) {
|
|
|
|
char tmp[64];
|
|
|
|
error("ERROR: fcntl(): %s", strerror_r(errno, tmp, sizeof(tmp)));
|
|
|
|
CloseSocket();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Allow multiple sockets to use the same PORT number
|
|
|
|
if (setsockopt(socketDesc, SOL_SOCKET, SO_REUSEADDR, &yes,
|
|
|
|
sizeof(yes)) < 0) {
|
|
|
|
char tmp[64];
|
|
|
|
error("ERROR: setsockopt(): %s", strerror_r(errno, tmp, sizeof(tmp)));
|
|
|
|
CloseSocket();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create default socket
|
|
|
|
memset(&sockAddr, '\0', sizeof(sockAddr));
|
|
|
|
sockAddr.sin_family = AF_INET;
|
|
|
|
sockAddr.sin_port = htons(Port);
|
|
|
|
sockAddr.sin_addr.s_addr = htonl(INADDR_ANY);
|
|
|
|
|
|
|
|
// Update stream port
|
|
|
|
streamPort = Port;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cIptvProtocolHttp::CloseSocket(void)
|
|
|
|
{
|
|
|
|
debug("cIptvProtocolHttp::CloseSocket()\n");
|
|
|
|
// Check if socket exists
|
|
|
|
if (socketDesc >= 0) {
|
|
|
|
close(socketDesc);
|
|
|
|
socketDesc = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cIptvProtocolHttp::Connect(void)
|
|
|
|
{
|
|
|
|
debug("cIptvProtocolHttp::Connect()\n");
|
|
|
|
// Check that stream address is valid
|
2007-09-26 21:49:35 +02:00
|
|
|
if (!isActive && !isempty(streamAddr) && !isempty(streamPath)) {
|
2007-09-16 11:38:00 +02:00
|
|
|
// Ensure that socket is valid
|
|
|
|
OpenSocket(streamPort);
|
|
|
|
|
2007-09-19 19:14:03 +02:00
|
|
|
// First try only the IP address
|
2007-09-16 11:38:00 +02:00
|
|
|
sockAddr.sin_addr.s_addr = inet_addr(streamAddr);
|
|
|
|
|
|
|
|
if (sockAddr.sin_addr.s_addr == INADDR_NONE) {
|
|
|
|
debug("Cannot convert %s directly to internet address\n", streamAddr);
|
|
|
|
|
|
|
|
// It may be a host name, get the name
|
|
|
|
struct hostent *host;
|
|
|
|
host = gethostbyname(streamAddr);
|
|
|
|
if (!host) {
|
|
|
|
error("%s is not valid address\n", streamAddr);
|
|
|
|
char tmp[64];
|
|
|
|
error("ERROR: %s", strerror_r(h_errno, tmp, sizeof(tmp)));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
sockAddr.sin_addr.s_addr = inet_addr(*host->h_addr_list);
|
|
|
|
}
|
|
|
|
|
|
|
|
int err = connect(socketDesc, (struct sockaddr*)&sockAddr,
|
|
|
|
sizeof(sockAddr));
|
|
|
|
// Non-blocking sockets always report in-progress error when connected
|
|
|
|
if (err < 0 && errno != EINPROGRESS) {
|
|
|
|
char tmp[64];
|
|
|
|
error("ERROR: Connect(): %s", strerror_r(errno, tmp, sizeof(tmp)));
|
2007-09-29 13:17:57 +02:00
|
|
|
CloseSocket();
|
2007-09-16 11:38:00 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Select on the socket completion
|
|
|
|
struct timeval tv;
|
|
|
|
tv.tv_sec = 1;
|
|
|
|
tv.tv_usec = 0;
|
|
|
|
// Use select to check socket writability
|
|
|
|
fd_set wfds;
|
|
|
|
FD_ZERO(&wfds);
|
|
|
|
FD_SET(socketDesc, &wfds);
|
|
|
|
int retval = select(socketDesc + 1, NULL, &wfds, NULL, &tv);
|
|
|
|
// Check if error
|
|
|
|
if (retval < 0) {
|
|
|
|
char tmp[64];
|
|
|
|
error("ERROR: select(): %s", strerror_r(errno, tmp, sizeof(tmp)));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Select has returned. Get socket errors if there are any
|
|
|
|
int socketStatus = 0;
|
|
|
|
socklen_t len = sizeof(socketStatus);
|
|
|
|
getsockopt(socketDesc, SOL_SOCKET, SO_ERROR, &socketStatus, &len);
|
|
|
|
|
|
|
|
// If not any errors, then socket must be ready and connected
|
|
|
|
if (socketStatus != 0) {
|
|
|
|
error("Cannot connect to %s\n", streamAddr);
|
|
|
|
char tmp[64];
|
|
|
|
error("ERROR: %s", strerror_r(socketStatus, tmp, sizeof(tmp)));
|
2007-09-29 13:17:57 +02:00
|
|
|
CloseSocket();
|
2007-09-16 11:38:00 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-09-19 19:14:03 +02:00
|
|
|
// Formulate and send HTTP request
|
2007-09-16 11:38:00 +02:00
|
|
|
char buffer[256];
|
|
|
|
memset(buffer, '\0', sizeof(buffer));
|
|
|
|
snprintf(buffer, sizeof(buffer),
|
|
|
|
"GET %s HTTP/1.1\r\n"
|
|
|
|
"Host: %s\r\n"
|
|
|
|
"User-Agent: vdr-iptv\r\n"
|
|
|
|
"Range: bytes=0-\r\n"
|
|
|
|
"Connection: Close\r\n"
|
2007-09-19 19:14:03 +02:00
|
|
|
"\r\n", streamPath, streamAddr);
|
2007-09-16 11:38:00 +02:00
|
|
|
|
2007-09-19 19:14:03 +02:00
|
|
|
//debug("Sending http request: %s\n", buffer);
|
2007-09-16 11:38:00 +02:00
|
|
|
err = send(socketDesc, buffer, strlen(buffer), 0);
|
|
|
|
if (err < 0) {
|
|
|
|
char tmp[64];
|
|
|
|
error("ERROR: send(): %s", strerror_r(errno, tmp, sizeof(tmp)));
|
2007-09-29 13:17:57 +02:00
|
|
|
CloseSocket();
|
2007-09-16 11:38:00 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-09-29 12:55:14 +02:00
|
|
|
// Now process headers
|
2007-09-29 13:17:57 +02:00
|
|
|
if (!ProcessHeaders()) {
|
|
|
|
CloseSocket();
|
|
|
|
return false;
|
2007-09-29 18:21:04 +02:00
|
|
|
}
|
2007-09-16 11:38:00 +02:00
|
|
|
|
|
|
|
// Update active flag
|
2007-09-26 21:49:35 +02:00
|
|
|
isActive = true;
|
2007-09-16 11:38:00 +02:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cIptvProtocolHttp::Disconnect(void)
|
|
|
|
{
|
|
|
|
debug("cIptvProtocolHttp::Disconnect()\n");
|
|
|
|
// Check that stream address is valid
|
2007-09-26 21:49:35 +02:00
|
|
|
if (isActive) {
|
2007-09-19 19:14:03 +02:00
|
|
|
// Close the socket
|
|
|
|
CloseSocket();
|
2007-09-16 11:38:00 +02:00
|
|
|
// Update active flag
|
2007-09-26 21:49:35 +02:00
|
|
|
isActive = false;
|
2007-09-16 11:38:00 +02:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2007-09-29 12:55:14 +02:00
|
|
|
bool cIptvProtocolHttp::GetHeaderLine(char* dest, unsigned int destLen,
|
|
|
|
unsigned int &recvLen)
|
|
|
|
{
|
|
|
|
debug("cIptvProtocolHttp::GetHeaderLine()\n");
|
|
|
|
bool linefeed = false;
|
|
|
|
bool newline = false;
|
|
|
|
char buf[256];
|
|
|
|
char *bufptr = buf;
|
|
|
|
memset(buf, '\0', sizeof(buf));
|
|
|
|
recvLen = 0;
|
|
|
|
|
2007-09-29 18:21:04 +02:00
|
|
|
while (!newline || !linefeed) {
|
2007-09-29 12:55:14 +02:00
|
|
|
socklen_t addrlen = sizeof(sockAddr);
|
|
|
|
// Set argument point to read buffer
|
|
|
|
// Wait for data
|
|
|
|
struct timeval tv;
|
|
|
|
tv.tv_sec = 0;
|
|
|
|
tv.tv_usec = 500000;
|
|
|
|
// Use select
|
|
|
|
fd_set rfds;
|
|
|
|
FD_ZERO(&rfds);
|
|
|
|
FD_SET(socketDesc, &rfds);
|
|
|
|
int retval = select(socketDesc + 1, &rfds, NULL, NULL, &tv);
|
|
|
|
// Check if error
|
|
|
|
if (retval < 0) {
|
|
|
|
char tmp[64];
|
|
|
|
error("ERROR: select(): %s", strerror_r(errno, tmp, sizeof(tmp)));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// Check if data available
|
|
|
|
else if (retval) {
|
|
|
|
int retval = recvfrom(socketDesc, bufptr, 1, MSG_DONTWAIT,
|
|
|
|
(struct sockaddr *)&sockAddr, &addrlen);
|
|
|
|
if (retval <= 0)
|
|
|
|
return false;
|
|
|
|
// 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;
|
|
|
|
++recvLen;
|
|
|
|
}
|
|
|
|
++bufptr;
|
|
|
|
// Check that buffers won't be exceeded
|
|
|
|
if (recvLen >= sizeof(buf) || recvLen >= destLen) {
|
|
|
|
error("Header wouldn't fit into buffer\n");
|
|
|
|
return false;
|
|
|
|
}
|
2007-09-29 18:21:04 +02:00
|
|
|
}
|
|
|
|
else {
|
2007-09-29 12:55:14 +02:00
|
|
|
error("No HTTP response received\n");
|
|
|
|
return false;
|
|
|
|
}
|
2007-09-29 18:21:04 +02:00
|
|
|
}
|
2007-09-29 12:55:14 +02:00
|
|
|
memcpy(dest, buf, recvLen);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cIptvProtocolHttp::ProcessHeaders(void)
|
|
|
|
{
|
|
|
|
debug("cIptvProtocolHttp::ProcessHeaders()\n");
|
|
|
|
unsigned int lineLength = 0;
|
|
|
|
int response = 0;
|
|
|
|
bool responseFound = false;
|
|
|
|
char buf[256];
|
|
|
|
|
2007-09-29 18:21:04 +02:00
|
|
|
while (!responseFound || lineLength != 0) {
|
|
|
|
memset(buf, '\0', sizeof(buf));
|
|
|
|
if (!GetHeaderLine(buf, sizeof(buf), lineLength))
|
|
|
|
return false;
|
|
|
|
if (!responseFound && sscanf(buf, "HTTP/1.%*i %i ",&response) != 1) {
|
|
|
|
error("Expected HTTP header not found\n");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
responseFound = true;
|
|
|
|
if (response != 200) {
|
|
|
|
error("ERROR: %s\n", buf);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2007-09-29 12:55:14 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2007-09-16 11:38:00 +02:00
|
|
|
int cIptvProtocolHttp::Read(unsigned char* *BufferAddr)
|
|
|
|
{
|
|
|
|
//debug("cIptvProtocolHttp::Read()\n");
|
|
|
|
socklen_t addrlen = sizeof(sockAddr);
|
|
|
|
// Set argument point to read buffer
|
|
|
|
*BufferAddr = readBuffer;
|
|
|
|
// Wait for data
|
|
|
|
struct timeval tv;
|
|
|
|
tv.tv_sec = 0;
|
|
|
|
tv.tv_usec = 500000;
|
|
|
|
// Use select
|
|
|
|
fd_set rfds;
|
|
|
|
FD_ZERO(&rfds);
|
|
|
|
FD_SET(socketDesc, &rfds);
|
|
|
|
int retval = select(socketDesc + 1, &rfds, NULL, NULL, &tv);
|
|
|
|
// Check if error
|
|
|
|
if (retval < 0) {
|
|
|
|
char tmp[64];
|
|
|
|
error("ERROR: select(): %s", strerror_r(errno, tmp, sizeof(tmp)));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
// Check if data available
|
|
|
|
else if (retval) {
|
|
|
|
// Read data from socket
|
2007-09-28 18:44:59 +02:00
|
|
|
return recvfrom(socketDesc, readBuffer, readBufferLen, MSG_DONTWAIT,
|
|
|
|
(struct sockaddr *)&sockAddr, &addrlen);
|
2007-09-16 11:38:00 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cIptvProtocolHttp::Open(void)
|
|
|
|
{
|
|
|
|
debug("cIptvProtocolHttp::Open(): streamAddr=%s\n", streamAddr);
|
|
|
|
// Connect the socket
|
|
|
|
return Connect();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cIptvProtocolHttp::Close(void)
|
|
|
|
{
|
|
|
|
debug("cIptvProtocolHttp::Close(): streamAddr=%s\n", streamAddr);
|
|
|
|
// Disconnect the current stream
|
|
|
|
Disconnect();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cIptvProtocolHttp::Set(const char* Address, const int Port)
|
|
|
|
{
|
|
|
|
debug("cIptvProtocolHttp::Set(): %s:%d\n", Address, Port);
|
|
|
|
if (!isempty(Address)) {
|
|
|
|
// Disconnect the current socket
|
|
|
|
Disconnect();
|
2007-09-19 19:14:03 +02:00
|
|
|
// Update stream address, path and port
|
2007-09-16 11:38:00 +02:00
|
|
|
streamAddr = strcpyrealloc(streamAddr, Address);
|
2007-09-19 19:14:03 +02:00
|
|
|
char *path = strstr(streamAddr, "/");
|
|
|
|
if (path) {
|
|
|
|
streamPath = strcpyrealloc(streamPath, path);
|
|
|
|
*path = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
streamPath = strcpyrealloc(streamPath, "/");
|
2007-09-16 11:38:00 +02:00
|
|
|
streamPort = Port;
|
2007-10-08 00:54:09 +02:00
|
|
|
debug("http://%s:%d%s\n", streamAddr, streamPort, streamPath);
|
2007-09-16 11:38:00 +02:00
|
|
|
// Re-connect the socket
|
|
|
|
Connect();
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2007-10-08 00:54:09 +02:00
|
|
|
|
|
|
|
cString cIptvProtocolHttp::GetInformation(void)
|
|
|
|
{
|
|
|
|
//debug("cIptvProtocolHttp::GetInformation()");
|
|
|
|
return cString::sprintf("http://%s:%d%s", streamAddr, streamPort, streamPath);
|
|
|
|
}
|