summaryrefslogtreecommitdiff
path: root/remux/extern.c
blob: cf766d3299d0636ae79e662e98ea1aa50eea4ec0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
#include "remux/extern.h"
#include "server/server.h"
#include "server/connection.h"
#include "server/streamer.h"
#include <vdr/channels.h>
#include <vdr/tools.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <signal.h>
#include <unistd.h>
#include <stdlib.h>

namespace Streamdev {

#define MAXENV 63

class cTSExt: public cThread {
private:
	cRingBufferLinear *m_ResultBuffer;
	bool               m_Active;
	int                m_Process;
	int                m_Inpipe, m_Outpipe;

protected:
	virtual void Action(void);

public:
	cTSExt(cRingBufferLinear *ResultBuffer, const cServerConnection *Connection, const cChannel *Channel, const int *Apids, const int *Dpids);
	virtual ~cTSExt();

	void Put(const uchar *Data, int Count);
};

} // namespace Streamdev
using namespace Streamdev;

cTSExt::cTSExt(cRingBufferLinear *ResultBuffer, const cServerConnection *Connection, const cChannel *Channel, const int *Apids, const int *Dpids):
		m_ResultBuffer(ResultBuffer),
		m_Active(false),
		m_Process(-1),
		m_Inpipe(0),
		m_Outpipe(0)
{
	int inpipe[2];
	int outpipe[2];

	if (pipe(inpipe) == -1) {
		LOG_ERROR_STR("pipe failed");
		return;
	}

	if (pipe(outpipe) == -1) {
		LOG_ERROR_STR("pipe failed");
		close(inpipe[0]);
		close(inpipe[1]);
		return;
	}

	if ((m_Process = fork()) == -1) {
		LOG_ERROR_STR("fork failed");
		close(inpipe[0]);
		close(inpipe[1]);
		close(outpipe[0]);
		close(outpipe[1]);
		return;
	}

	if (m_Process == 0) {
		// child process
		char *env[MAXENV + 1];
		int i = 0;

#define ADDENV(x...) if (asprintf(&env[i++], x) < 0) i--

		// add channel ID, name and pids to environment
		ADDENV("REMUX_CHANNEL_ID=%s", *Channel->GetChannelID().ToString());
		ADDENV("REMUX_CHANNEL_NAME=%s", Channel->Name());
#if APIVERSNUM >= 10701
		ADDENV("REMUX_VTYPE=%d", Channel->Vtype());
#endif
		if (Channel->Vpid())
			ADDENV("REMUX_VPID=%d", Channel->Vpid());
		if (Channel->Ppid() != Channel->Vpid())
			ADDENV("REMUX_PPID=%d", Channel->Ppid());
		if (Channel->Tpid())
			ADDENV("REMUX_TPID=%d", Channel->Tpid());

		std::string buffer;
		if (Apids && *Apids) {
			for (const int *pid = Apids; *pid; pid++)
				(buffer += (const char *) itoa(*pid)) += (*(pid + 1) ? " " : "");
			ADDENV("REMUX_APID=%s", buffer.c_str());

			buffer.clear();
			for (const int *pid = Apids; *pid; pid++) {
				int j;
				for (j = 0; Channel->Apid(j) && Channel->Apid(j) != *pid; j++)
					;
				(buffer += Channel->Alang(j)) += (*(pid + 1) ? " " : "");
			}
			ADDENV("REMUX_ALANG=%s", buffer.c_str());
		}

		if (Dpids && *Dpids) {
			buffer.clear();
			for (const int *pid = Dpids; *pid; pid++)
				(buffer += (const char *) itoa(*pid)) += (*(pid + 1) ? " " : "");
			ADDENV("REMUX_DPID=%s", buffer.c_str());

			buffer.clear();
			for (const int *pid = Dpids; *pid; pid++) {
				int j;
				for (j = 0; Channel->Dpid(j) && Channel->Dpid(j) != *pid; j++)
					;
				(buffer += Channel->Dlang(j)) += (*(pid + 1) ? " " : "");
			}
			ADDENV("REMUX_DLANG=%s", buffer.c_str());
		}

		if (Channel->Spid(0)) {
			buffer.clear();
			for (const int *pid = Channel->Spids(); *pid; pid++)
				(buffer += (const char *) itoa(*pid)) += (*(pid + 1) ? " " : "");
			ADDENV("REMUX_SPID=%s", buffer.c_str());

			buffer.clear();
			for (int j = 0; Channel->Spid(j); j++)
				(buffer += Channel->Slang(j)) += (Channel->Spid(j + 1) ? " " : "");
			ADDENV("REMUX_SLANG=%s", buffer.c_str());
		}

		if (Connection) {
			// add vars for a CGI like interface
			// the following vars are not implemented:
			// REMOTE_HOST, REMOTE_IDENT, REMOTE_USER
			// CONTENT_TYPE, CONTENT_LENGTH,
			// SCRIPT_NAME, PATH_TRANSLATED, GATEWAY_INTERFACE
			ADDENV("REMOTE_ADDR=%s", Connection->RemoteIp().c_str());
			ADDENV("SERVER_NAME=%s", Connection->LocalIp().c_str());
			ADDENV("SERVER_PORT=%d", Connection->LocalPort());
			ADDENV("SERVER_PROTOCOL=%s", Connection->Protocol());
			ADDENV("SERVER_SOFTWARE=%s", VERSION);

			for (tStrStrMap::const_iterator it = Connection->Headers().begin(); it != Connection->Headers().end(); it++) {
				if (i >= MAXENV) {
					esyslog("streamdev-server: Too many headers for externremux.sh");
					break;
				}
				ADDENV("%s=%s", it->first.c_str(), it->second.c_str());
			}

			// look for section parameters: /path;param1=value1;param2=value2/
			std::string::size_type begin, end;
			const static std::string PATH_INFO("PATH_INFO");

			tStrStrMap::const_iterator it_pathinfo = Connection->Headers().find(PATH_INFO);
			const std::string& path = it_pathinfo == Connection->Headers().end() ? "/" : it_pathinfo->second;
			begin = path.find(';', 0);
			begin = path.find_first_not_of(';', begin);
			end = path.find_first_of(";/", begin);
			while (begin != std::string::npos && path[begin] != '/') {
				std::string param = path.substr(begin, end - begin);
				std::string::size_type e = param.find('=');
	
				if (i >= MAXENV) {
					esyslog("streamdev-server: Too many parameters for externremux.sh");
					break;
				}
				else if (e > 0 && e != std::string::npos) {
					ADDENV("REMUX_PARAM_%s", param.c_str());
				}
				else
					esyslog("streamdev-server: Invalid externremux.sh parameter %s", param.c_str());
	
				begin = path.find_first_not_of(';', end);
				end = path.find_first_of(";/", begin);
			}
		}
			
		env[i] = NULL;

		dup2(inpipe[0], STDIN_FILENO);
		close(inpipe[1]);
		dup2(outpipe[1], STDOUT_FILENO);
		close(outpipe[0]);

		int MaxPossibleFileDescriptors = getdtablesize();
		for (int i = STDERR_FILENO + 1; i < MaxPossibleFileDescriptors; i++)
			close(i); //close all dup'ed filedescriptors

		if (setpgid(0, 0) == -1)
			esyslog("streamdev-server: externremux setpgid failed: %m");

		if (access(opt_remux, X_OK) == -1) {
			esyslog("streamdev-server %s: %m", opt_remux);
			_exit(-1);
		}

		if (execle("/bin/sh", "sh", "-c", opt_remux, NULL, env) == -1) {
			esyslog("streamdev-server: externremux script '%s' execution failed: %m", opt_remux);
			_exit(-1);
		}
		// should never be reached
		_exit(0);
	}

	close(inpipe[0]);
	close(outpipe[1]);
	m_Inpipe = inpipe[1];
	m_Outpipe = outpipe[0];
	Start();
}

cTSExt::~cTSExt()
{
	m_Active = false;
	Cancel(3);
	if (m_Process > 0) {
		// close pipes
		close(m_Outpipe);
		close(m_Inpipe);
		// signal and wait for termination
		if (kill(m_Process, SIGINT) < 0) {
			esyslog("streamdev-server: externremux SIGINT failed: %m");
		}
		else {
			int i = 0;
			int retval;
			while ((retval = waitpid(m_Process, NULL, WNOHANG)) == 0) {

				if ((++i % 20) == 0) {
					esyslog("streamdev-server: externremux process won't stop - killing it");
					kill(m_Process, SIGKILL);
				}
				cCondWait::SleepMs(100);
			}

			if (retval < 0)
				esyslog("streamdev-server: externremux process waitpid failed: %m");
			else
				Dprintf("streamdev-server: externremux child (%d) exited as expected\n", m_Process);
		}
		m_Process = -1;
	}
}

void cTSExt::Action(void)
{
	m_Active = true;
	while (m_Active) {
		fd_set rfds;
		struct timeval tv;

		FD_ZERO(&rfds);
		FD_SET(m_Outpipe, &rfds);

		while (FD_ISSET(m_Outpipe, &rfds)) {
			tv.tv_sec = 2;
			tv.tv_usec = 0;
			if (select(m_Outpipe + 1, &rfds, NULL, NULL, &tv) == -1) {
				LOG_ERROR_STR("poll failed");
				break;;
			}

			if (FD_ISSET(m_Outpipe, &rfds)) {
				int result;
				//Read returns 0 if buffer full or EOF
				bool bufferFull = m_ResultBuffer->Free() <= 0; //Free may be < 0
				while ((result = m_ResultBuffer->Read(m_Outpipe)) == 0 && bufferFull)
					dsyslog("streamdev-server: buffer full while reading from externremux");

				if (result == -1) {
					if (errno != EINTR) {
						LOG_ERROR_STR("read failed");
						m_Active = false;
					}
					break;
				}
				else if (result == 0) {
					esyslog("streamdev-server: EOF reading from externremux");
					m_Active = false;
					break;
				}
			}
		}
	}
	m_Active = false;
}


void cTSExt::Put(const uchar *Data, int Count)
{
	if (safe_write(m_Inpipe, Data, Count) == -1) {
		LOG_ERROR_STR("write failed");
		return;
	}
}

cExternRemux::cExternRemux(const cServerConnection *Connection, const cChannel *Channel, const int *Apids, const int *Dpids):
		m_ResultBuffer(new cRingBufferLinear(WRITERBUFSIZE, TS_SIZE * 2)),
		m_Remux(new cTSExt(m_ResultBuffer, Connection, Channel, Apids, Dpids))
{
	m_ResultBuffer->SetTimeouts(500, 100);
}

cExternRemux::~cExternRemux()
{
	delete m_Remux;
	delete m_ResultBuffer;
}

int cExternRemux::Put(const uchar *Data, int Count) 
{
	m_Remux->Put(Data, Count);
	return Count;
}