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 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453
|
#include <cstdint>
#include <cstdbool>
#include <cstdlib>
#include <bitstream/mpeg/ts.h>
#include <bitstream/mpeg/psi.h>
#include <bitstream/mpeg/psi/pmt_print.h>
#include <glib.h>
#include <cassert>
#include "mpeg.h"
#include "log.h"
/*
* This module handles remultiplexing the incoming DVB stream for different
* clients, including only the SID (service ID) and associated PIDs requested
* by the client.
*
* It parses the PAT (containing SID to PMT mapping) and PMTs (containing
* associated PIDs for the SID this PMT corresponds to) and maintains a list of
* clients for each PID.
*
* Each incoming packet is forwarded to all clients requesting a SID containing
* this PID. Also, it regularly sends a PAT containing only the requested SID
* to all clients.
*/
const int MAX_TRANSPONDER_RETRIES = 64;
/*
* Struct describing one specific client and the associated callbacks
*/
struct mpeg_client {
/** sid requested by this client */
int sid;
/** As we send different PATs to different clients, we have a per-client
* PAT continuity counter */
uint8_t pid0_cc;
/** Associated transponder */
struct transponder *t;
/** Callback for MPEG-TS input */
void (*cb) (void *, const uint8_t *, uint16_t);
/** Callback to call on timeout */
void (*timeout_cb) (void *);
/** Argument to supply to the callback functions */
void *ptr;
};
/*
* Struct containing information about a given PID (list of callbacks
* and buffers used for decoding PAT or PMTs sent on this PID, if
* applicable
*/
struct pid_info {
/** true if we are interested in this PID, i.e., we should parse
* tables transmitted over this PID */
bool parse;
int8_t last_cc;
/* Buffers used by bitstream for decoding psi tables */
uint8_t *psi_buffer;
uint16_t psi_buffer_used;
GSList *callback;
};
struct transponder {
/** Transport stream ID. Taken over as part of the PAT */
uint16_t tsid;
/** User refcount */
int users;
/** Handle for the associated frontend */
void *frontend_handle;
/** Current frequency */
struct tune in;
struct pid_info pids[MAX_PID];
/** List of clients subscribed to this transponder */
GSList *clients;
/** How often we already tried to get a tuner for this transponder */
int retry_count;
};
static GSList *transponders;
/* Helper function for send_pat(). Send a PSI section to the client. */
/* This code is copied from bitstream examples. See LICENSE. */
static void output_psi_section(struct mpeg_client *c, uint8_t *section, uint16_t pid, uint8_t *cc) {
uint16_t section_length = psi_get_length(section) + PSI_HEADER_SIZE;
uint16_t section_offset = 0;
do {
uint8_t ts[TS_SIZE];
uint8_t ts_offset = 0;
memset(ts, 0xff, TS_SIZE);
psi_split_section(ts, &ts_offset, section, §ion_offset);
ts_set_pid(ts, pid);
ts_set_cc(ts, *cc);
(*cc)++;
*cc &= 0xf;
if (section_offset == section_length)
psi_split_end(ts, &ts_offset);
c->cb(c->ptr, ts, TS_SIZE);
} while (section_offset < section_length);
}
/*
* Assemble new PAT containing only the SID requested by the client and
* sent it to him.
*/
static void send_pat(struct mpeg_client *c, uint16_t sid, uint16_t pid) {
uint8_t *pat = psi_allocate();
uint8_t *pat_n, j = 0;
pat_init(pat);
pat_set_tsid(pat, 0);
psi_set_section(pat, 0);
psi_set_lastsection(pat, 0);
psi_set_version(pat, 0);
psi_set_current(pat);
psi_set_length(pat, PSI_MAX_SIZE);
pat_n = pat_get_program(pat, j++);
patn_init(pat_n);
patn_set_program(pat_n, sid);
patn_set_pid(pat_n, pid);
// Set correct PAT length
pat_n = pat_get_program(pat, j); // Get offset of the end of last program
pat_set_length(pat, pat_n - pat - PAT_HEADER_SIZE);
psi_set_crc(pat);
output_psi_section(c, pat, PAT_PID, &c->pid0_cc);
free(pat);
}
/*
* Helper function to register all clients in it as callbacks for PID pid
* on transponder a
*/
static void register_callback(GSList *it, struct transponder *a, uint16_t pid) {
// Loop over all supplied clients and add them if requested
for(; it; it = g_slist_next(it)) {
GSList *it2 = a->pids[pid].callback;
for(; it2 != NULL; it2 = g_slist_next(it2)) {
if(it2->data == it->data)
break;
}
if(it2) // Client already registered
continue;
a->pids[pid].callback =
g_slist_prepend(a->pids[pid].callback, it->data);
}
}
/*
* Process a new parsed PMT. Map PIDs to corresponding SIDs.
* @param p Pointer to struct pmt_handle
*/
static void pmt_handler(struct transponder *a, uint16_t pid, uint8_t *section) {
int j;
//logger(LOG_DEBUG, "Handling new PMT on PID %u", pid);
if(!pmt_validate(section)) {
free(section);
return;
}
uint8_t *es;
// Register callback for all elementary streams for this SID
for(j = 0; (es = pmt_get_es(section, j)); j++) {
//logger(LOG_NOTICE, "Adding callback for PID %d", pmtn_get_pid(es));
register_callback(a->pids[pid].callback, a, pmtn_get_pid(es));
}
// ... and for the PCR
register_callback(a->pids[pid].callback, a, pmt_get_pcrpid(section));
free(section);
}
/*
* Process a new parsed PAT on input stream. Add PMT parsers for all referenced
* channels, if necessary.
* @param p Pointer to struct mpeg_handle
*/
static void pat_handler(struct transponder *a, uint16_t pid, uint8_t *section) {
PSI_TABLE_DECLARE(new_pat);
uint8_t last_section;
int i;
//logger(LOG_DEBUG, "Handling new PAT");
if(!pat_validate(section)) {
free(section);
return;
}
psi_table_init(new_pat);
if(!psi_table_section(new_pat, section) || !psi_table_validate(new_pat)
|| !pat_table_validate(new_pat)) {
//logger(LOG_DEBUG, "Handling new PAT??");
psi_table_free(new_pat);
return;
}
last_section = psi_table_get_lastsection(new_pat);
for(i = 0; i <= last_section; i++) {
uint8_t *cur = psi_table_get_section(new_pat, i);
const uint8_t *program;
int j;
a->tsid = pat_get_tsid(cur);
/*
* For every proram in this PAT, check whether we have clients
* that request it. Add callbacks for them, if necessary.
*/
for(j = 0; (program = pat_get_program(cur, j)); j++) {
uint16_t cur_sid = patn_get_program(program);
a->pids[patn_get_pid(program)].parse = true; // We always parse all PMTs
/*
* Loop over all registered clients for this transponder.
* This might be expensive, however, PATs are only sent about
* once a second, so this should not hurt.
*/
for(GSList *it = a->clients; it != NULL; it = g_slist_next(it)) {
struct mpeg_client *c = (struct mpeg_client *) it->data;
if(c->sid != cur_sid)
continue;
/*
* Receiving a new PAT from the uplink triggers sending
* a new, reduced PAT on the remuxed transport
* streams
*/
send_pat(c, cur_sid, patn_get_pid(program));
/*
* If necessary, add this client as callback for the
* referenced PMT.
*/
GSList *it2;
for(it2 = a->pids[patn_get_pid(program)].callback;
it2 != NULL; it2 = g_slist_next(it2)) {
if(it2->data == c)
break;
}
if(it2) // Callback already registered
continue;
a->pids[patn_get_pid(program)].callback =
g_slist_prepend(a->pids[patn_get_pid(program)].callback, c);
}
//logger(LOG_DEBUG, "%d -> %d", patn_get_program(program),
// patn_get_pid(program));
}
}
/* Additionally to the PIDs defined in the PMT, we also forward the EPG
* informations to all clients. They always have PID 18. */
register_callback(a->clients, a, 18);
psi_table_free(new_pat);
return;
}
static void handle_section(struct transponder *a, uint16_t pid, uint8_t *section) {
uint8_t table_pid = psi_get_tableid(section);
if(!psi_validate(section)) {
free(section);
return;
}
switch(table_pid) {
case PAT_TABLE_ID:
pat_handler(a, pid, section);
break;
case PMT_TABLE_ID:
pmt_handler(a, pid, section);
break;
default:
free(section);
}
}
void mpeg_input(void *ptr, unsigned char *data, size_t len) {
struct transponder *a = (struct transponder *) ptr;
if(len % TS_SIZE) {
logger(LOG_NOTICE, "Unaligned MPEG-TS packets received, dropping.");
return;
}
/*
* Loop over all packets, parse PSI tables, if necessary and forward them
* to all requesting clients
*/
for(size_t i = 0; i < len; i += TS_SIZE) {
uint8_t *cur = data + i;
uint16_t pid = ts_get_pid(cur);
GSList *it;
if(pid >= MAX_PID - 1)
continue;
// Send packet to clients
for(it = a->pids[pid].callback; it != NULL; it = g_slist_next(it)) {
struct mpeg_client *c = (struct mpeg_client *) it->data;
c->cb(c->ptr, cur, TS_SIZE);
}
if(!a->pids[pid].parse)
continue;
/* The following code is based on bitstream examples */
if(ts_check_duplicate(ts_get_cc(cur), a->pids[pid].last_cc) ||
!ts_has_payload(cur)) {
logger(LOG_DEBUG, "Ignoring input packet: duplicate or no payload");
continue;
}
if(ts_check_discontinuity(ts_get_cc(cur), a->pids[pid].last_cc))
psi_assemble_reset(&a->pids[pid].psi_buffer, &a->pids[pid].psi_buffer_used);
a->pids[pid].last_cc = ts_get_cc(cur);
const uint8_t *payload = ts_section(cur);
uint8_t length = data + TS_SIZE - payload;
if(!psi_assemble_empty(&a->pids[pid].psi_buffer, &a->pids[pid].psi_buffer_used)) {
uint8_t *section = psi_assemble_payload(&a->pids[pid].psi_buffer,
&a->pids[pid].psi_buffer_used, &payload, &length);
if(section)
handle_section(a, pid, section);
}
payload = ts_next_section(cur);
length = cur + TS_SIZE - payload;
while(length) {
uint8_t *section = psi_assemble_payload(&a->pids[pid].psi_buffer,
&a->pids[pid].psi_buffer_used, &payload, &length);
if(section)
handle_section(a, pid, section);
}
}
}
/*
* Called if transponder times out waiting for data
*/
void mpeg_notify_timeout(void *handle) {
struct transponder *t = (struct transponder *) handle;
t->retry_count++;
frontend_release(t->frontend_handle);
if(t->retry_count <= MAX_TRANSPONDER_RETRIES) {
/* If possible, acquire new frontend as a replacement */
t->frontend_handle = frontend_acquire(t->in, t);
}
if(t->retry_count > MAX_TRANSPONDER_RETRIES || !t->frontend_handle) {
/* No replacement found. Disconnect all clients on this
* transponder */
logger(LOG_ERR, "Unable to acquire transponder while looking for replacement after timeout");
GSList *copy = g_slist_copy(t->clients);
for(GSList *it = copy; it; it = g_slist_next(it)) {
struct mpeg_client *scb = (struct mpeg_client *) it->data;
scb->timeout_cb(scb->ptr);
}
g_slist_free(copy);
} else {
logger(LOG_NOTICE, "Switched frontend after frontend error, retry count: %d", t->retry_count);
}
}
void *mpeg_register(struct tune s, void (*cb) (void *, const uint8_t *, uint16_t),
void (*timeout_cb) (void *), void *ptr) {
struct mpeg_client *scb = (struct mpeg_client *) g_slice_alloc(sizeof(struct mpeg_client));
scb->cb = cb;
scb->timeout_cb = timeout_cb;
scb->ptr = ptr;
scb->sid = s.sid;
scb->pid0_cc = 0;
/* Check whether we are already receiving a multiplex containing
* the requested program */
GSList *it = transponders;
for(; it != NULL; it = g_slist_next(it)) {
struct transponder *t = (struct transponder *) it->data;
struct tune in = t->in;
if(in.delivery_system == s.delivery_system &&
in.dvbs.symbol_rate == s.dvbs.symbol_rate &&
in.dvbs.frequency == s.dvbs.frequency &&
in.dvbs.polarization == s.dvbs.polarization) {
t->users++;
t->clients = g_slist_prepend(t->clients, scb);
scb->t = t;
logger(LOG_DEBUG, "New client on known transponder. New client count: %d",
t->users);
return scb;
}
}
/* We aren't, acquire new frontend */
struct transponder *t = (struct transponder *) g_slice_alloc(sizeof(struct transponder));
t->frontend_handle = frontend_acquire(s, t);
if(!t->frontend_handle) { // Unable to acquire frontend
g_slice_free1(sizeof(struct transponder), t);
g_slice_free1(sizeof(struct mpeg_client), scb);
logger(LOG_NOTICE, "Unable to allocate new frontend.");
return NULL;
}
logger(LOG_DEBUG, "Acquired new frontend in mpeg_register()");
t->in = s;
t->users = 1;
t->clients = NULL;
t->clients = g_slist_prepend(t->clients, scb);
t->retry_count = 0;
scb->t = t;
for(int i = 0; i < MAX_PID; i++) {
t->pids[i].last_cc = 0;
t->pids[i].callback = NULL;
psi_assemble_init(&t->pids[i].psi_buffer, &t->pids[i].psi_buffer_used);
}
t->pids[0].parse = true; // Always parse the PAT
transponders = g_slist_prepend(transponders, t);
return scb;
}
void mpeg_unregister(void *ptr) {
struct mpeg_client *scb = (struct mpeg_client *) ptr;
struct transponder *t = scb->t;
t->users--;
if(!t->users) { // Completely remove transponder
if(t->frontend_handle)
frontend_release(t->frontend_handle);
for(int i = 0; i < MAX_PID; i++) {
psi_assemble_reset(&t->pids[i].psi_buffer, &t->pids[i].psi_buffer_used);
g_slist_free(t->pids[i].callback);
}
g_slice_free1(sizeof(struct mpeg_client), scb);
transponders = g_slist_remove(transponders, t);
g_slice_free1(sizeof(struct transponder), t);
} else { // Only unregister this client
/*
* Iterate over all callbacks and remove this client from them. This
* is expensive, however, disconnects should be rather rare.
*/
for(int i=0; i < MAX_PID; i++)
t->pids[i].callback = g_slist_remove(t->pids[i].callback, scb);
t->clients = g_slist_remove(t->clients, scb);
g_slice_free1(sizeof(struct mpeg_client), scb);
logger(LOG_INFO, "Client quitted, new transponder user count: %d",
t->users);
}
}
|