2014-03-08 12:07:47 +01:00
|
|
|
/*
|
|
|
|
* sectionfilter.c: SAT>IP plugin for the Video Disk Recorder
|
|
|
|
*
|
|
|
|
* See the README file for copyright information and how to reach the author.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
2014-12-05 22:14:40 +01:00
|
|
|
#include "log.h"
|
2014-03-08 12:07:47 +01:00
|
|
|
#include "sectionfilter.h"
|
|
|
|
|
|
|
|
cSatipSectionFilter::cSatipSectionFilter(int deviceIndexP, uint16_t pidP, uint8_t tidP, uint8_t maskP)
|
|
|
|
: pusiSeenM(0),
|
|
|
|
feedCcM(0),
|
|
|
|
doneqM(0),
|
|
|
|
secBufM(NULL),
|
|
|
|
secBufpM(0),
|
|
|
|
secLenM(0),
|
|
|
|
tsFeedpM(0),
|
|
|
|
pidM(pidP),
|
2014-04-03 23:56:00 +02:00
|
|
|
ringBufferM(new cRingBufferFrame(eDmxMaxSectionCount * eDmxMaxSectionSize)),
|
2014-03-08 12:07:47 +01:00
|
|
|
deviceIndexM(deviceIndexP)
|
|
|
|
{
|
2014-12-14 16:45:55 +01:00
|
|
|
debug16("%s (%d, %d, %d, %d) [device %d]", __PRETTY_FUNCTION__, deviceIndexM, pidM, tidP, maskP, deviceIndexM);
|
2014-03-08 12:07:47 +01:00
|
|
|
int i;
|
|
|
|
|
|
|
|
memset(secBufBaseM, 0, sizeof(secBufBaseM));
|
|
|
|
memset(filterValueM, 0, sizeof(filterValueM));
|
|
|
|
memset(filterMaskM, 0, sizeof(filterMaskM));
|
|
|
|
memset(filterModeM, 0, sizeof(filterModeM));
|
|
|
|
memset(maskAndModeM, 0, sizeof(maskAndModeM));
|
|
|
|
memset(maskAndNotModeM, 0, sizeof(maskAndNotModeM));
|
|
|
|
|
|
|
|
filterValueM[0] = tidP;
|
|
|
|
filterMaskM[0] = maskP;
|
|
|
|
|
|
|
|
// Invert the filter
|
2014-03-13 17:23:55 +01:00
|
|
|
for (i = 0; i < eDmxMaxFilterSize; ++i)
|
2014-03-08 12:07:47 +01:00
|
|
|
filterValueM[i] ^= 0xFF;
|
|
|
|
|
2014-10-31 21:07:33 +01:00
|
|
|
uint8_t doneq = 0;
|
2014-03-13 17:23:55 +01:00
|
|
|
for (i = 0; i < eDmxMaxFilterSize; ++i) {
|
2014-10-31 21:07:33 +01:00
|
|
|
uint8_t mode = filterModeM[i];
|
|
|
|
uint8_t mask = filterMaskM[i];
|
2014-03-08 12:07:47 +01:00
|
|
|
maskAndModeM[i] = (uint8_t)(mask & mode);
|
|
|
|
maskAndNotModeM[i] = (uint8_t)(mask & ~mode);
|
|
|
|
doneq |= maskAndNotModeM[i];
|
|
|
|
}
|
|
|
|
doneqM = doneq ? 1 : 0;
|
|
|
|
|
|
|
|
// Create sockets
|
|
|
|
socketM[0] = socketM[1] = -1;
|
2014-04-03 23:56:00 +02:00
|
|
|
if (socketpair(AF_UNIX, SOCK_SEQPACKET, 0, socketM) != 0) {
|
2014-03-08 12:07:47 +01:00
|
|
|
char tmp[64];
|
|
|
|
error("Opening section filter sockets failed (device=%d pid=%d): %s", deviceIndexM, pidM, strerror_r(errno, tmp, sizeof(tmp)));
|
|
|
|
}
|
|
|
|
else if ((fcntl(socketM[0], F_SETFL, O_NONBLOCK) != 0) || (fcntl(socketM[1], F_SETFL, O_NONBLOCK) != 0)) {
|
|
|
|
char tmp[64];
|
|
|
|
error("Setting section filter socket to non-blocking mode failed (device=%d pid=%d): %s", deviceIndexM, pidM, strerror_r(errno, tmp, sizeof(tmp)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cSatipSectionFilter::~cSatipSectionFilter()
|
|
|
|
{
|
2014-12-14 16:45:55 +01:00
|
|
|
debug16("%s pid=%d [device %d]", __PRETTY_FUNCTION__, pidM, deviceIndexM);
|
2014-03-08 12:07:47 +01:00
|
|
|
int tmp = socketM[1];
|
|
|
|
socketM[1] = -1;
|
|
|
|
if (tmp >= 0)
|
|
|
|
close(tmp);
|
|
|
|
tmp = socketM[0];
|
|
|
|
socketM[0] = -1;
|
|
|
|
if (tmp >= 0)
|
|
|
|
close(tmp);
|
|
|
|
secBufM = NULL;
|
2014-04-03 23:56:00 +02:00
|
|
|
DELETENULL(ringBufferM);
|
2014-03-08 12:07:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
inline uint16_t cSatipSectionFilter::GetLength(const uint8_t *dataP)
|
|
|
|
{
|
|
|
|
return (uint16_t)(3 + ((dataP[1] & 0x0f) << 8) + dataP[2]);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cSatipSectionFilter::New(void)
|
|
|
|
{
|
|
|
|
tsFeedpM = secBufpM = secLenM = 0;
|
|
|
|
secBufM = secBufBaseM;
|
|
|
|
}
|
|
|
|
|
|
|
|
int cSatipSectionFilter::Filter(void)
|
|
|
|
{
|
|
|
|
if (secBufM) {
|
|
|
|
int i;
|
|
|
|
uint8_t neq = 0;
|
|
|
|
|
2014-03-13 17:23:55 +01:00
|
|
|
for (i = 0; i < eDmxMaxFilterSize; ++i) {
|
2014-03-08 12:07:47 +01:00
|
|
|
uint8_t calcxor = (uint8_t)(filterValueM[i] ^ secBufM[i]);
|
|
|
|
if (maskAndModeM[i] & calcxor)
|
|
|
|
return 0;
|
|
|
|
neq |= (maskAndNotModeM[i] & calcxor);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (doneqM && !neq)
|
|
|
|
return 0;
|
|
|
|
|
2014-04-03 23:56:00 +02:00
|
|
|
if (ringBufferM && (secLenM > 0))
|
|
|
|
ringBufferM->Put(new cFrame(secBufM, secLenM));
|
2014-03-08 12:07:47 +01:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline int cSatipSectionFilter::Feed(void)
|
|
|
|
{
|
|
|
|
if (Filter() < 0)
|
|
|
|
return -1;
|
|
|
|
secLenM = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int cSatipSectionFilter::CopyDump(const uint8_t *bufP, uint8_t lenP)
|
|
|
|
{
|
2014-10-31 21:07:33 +01:00
|
|
|
uint16_t limit, n;
|
2014-03-08 12:07:47 +01:00
|
|
|
|
2014-03-13 17:23:55 +01:00
|
|
|
if (tsFeedpM >= eDmxMaxSectionFeedSize)
|
2014-03-08 12:07:47 +01:00
|
|
|
return 0;
|
|
|
|
|
2014-03-13 17:23:55 +01:00
|
|
|
if (tsFeedpM + lenP > eDmxMaxSectionFeedSize)
|
|
|
|
lenP = (uint8_t)(eDmxMaxSectionFeedSize - tsFeedpM);
|
2014-03-08 12:07:47 +01:00
|
|
|
|
|
|
|
if (lenP <= 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
memcpy(secBufBaseM + tsFeedpM, bufP, lenP);
|
|
|
|
tsFeedpM = uint16_t(tsFeedpM + lenP);
|
|
|
|
|
|
|
|
limit = tsFeedpM;
|
2014-03-13 17:23:55 +01:00
|
|
|
if (limit > eDmxMaxSectionFeedSize)
|
2014-03-08 12:07:47 +01:00
|
|
|
return -1; // internal error should never happen
|
|
|
|
|
|
|
|
// Always set secbuf
|
|
|
|
secBufM = secBufBaseM + secBufpM;
|
|
|
|
|
|
|
|
for (n = 0; secBufpM + 2 < limit; ++n) {
|
2014-10-31 21:07:33 +01:00
|
|
|
uint16_t seclen = GetLength(secBufM);
|
2014-03-13 17:23:55 +01:00
|
|
|
if ((seclen <= 0) || (seclen > eDmxMaxSectionSize) || ((seclen + secBufpM) > limit))
|
2014-03-08 12:07:47 +01:00
|
|
|
return 0;
|
|
|
|
secLenM = seclen;
|
|
|
|
if (pusiSeenM)
|
|
|
|
Feed();
|
|
|
|
secBufpM = uint16_t(secBufpM + seclen);
|
|
|
|
secBufM += seclen;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cSatipSectionFilter::Process(const uint8_t* dataP)
|
|
|
|
{
|
|
|
|
if (dataP[0] != TS_SYNC_BYTE)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Stop if not the PID this filter is looking for
|
|
|
|
if (ts_pid(dataP) != pidM)
|
|
|
|
return;
|
|
|
|
|
|
|
|
uint8_t count = payload(dataP);
|
|
|
|
|
|
|
|
// Check if no payload or out of range
|
|
|
|
if (count == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Payload start
|
|
|
|
uint8_t p = (uint8_t)(TS_SIZE - count);
|
|
|
|
|
|
|
|
uint8_t cc = (uint8_t)(dataP[3] & 0x0f);
|
|
|
|
int ccok = ((feedCcM + 1) & 0x0f) == cc;
|
|
|
|
feedCcM = cc;
|
|
|
|
|
|
|
|
int dc_i = 0;
|
|
|
|
if (dataP[3] & 0x20) {
|
|
|
|
// Adaption field present, check for discontinuity_indicator
|
|
|
|
if ((dataP[4] > 0) && (dataP[5] & 0x80))
|
|
|
|
dc_i = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ccok || dc_i) {
|
|
|
|
// Discontinuity detected. Reset pusiSeenM = 0 to
|
|
|
|
// stop feeding of suspicious data until next PUSI=1 arrives
|
|
|
|
pusiSeenM = 0;
|
|
|
|
New();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dataP[1] & 0x40) {
|
|
|
|
// PUSI=1 (is set), section boundary is here
|
|
|
|
if (count > 1 && dataP[p] < count) {
|
|
|
|
const uint8_t *before = &dataP[p + 1];
|
|
|
|
uint8_t before_len = dataP[p];
|
|
|
|
const uint8_t *after = &before[before_len];
|
|
|
|
uint8_t after_len = (uint8_t)(count - 1 - before_len);
|
|
|
|
CopyDump(before, before_len);
|
|
|
|
|
|
|
|
// Before start of new section, set pusiSeenM = 1
|
|
|
|
pusiSeenM = 1;
|
|
|
|
New();
|
|
|
|
CopyDump(after, after_len);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// PUSI=0 (is not set), no section boundary
|
|
|
|
CopyDump(&dataP[p], count);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-03 23:56:00 +02:00
|
|
|
bool cSatipSectionFilter::Send(void)
|
|
|
|
{
|
|
|
|
bool result = false;
|
|
|
|
cFrame *section = ringBufferM->Get();
|
|
|
|
if (section) {
|
|
|
|
uchar *data = section->Data();
|
|
|
|
int count = section->Count();
|
|
|
|
if (data && (count > 0) && (socketM[1] >= 0) && (socketM[0] >= 0)) {
|
|
|
|
ssize_t len = send(socketM[1], data, count, MSG_EOR);
|
|
|
|
ERROR_IF(len < 0 && errno != EAGAIN, "send()");
|
|
|
|
if (len > 0) {
|
|
|
|
ringBufferM->Drop(section);
|
2014-04-05 12:46:07 +02:00
|
|
|
result = !!ringBufferM->Available();
|
2014-04-03 23:56:00 +02:00
|
|
|
// Update statistics
|
|
|
|
AddSectionStatistic(len, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2014-03-08 12:07:47 +01:00
|
|
|
|
|
|
|
cSatipSectionFilterHandler::cSatipSectionFilterHandler(int deviceIndexP, unsigned int bufferLenP)
|
2014-12-14 20:39:13 +01:00
|
|
|
: cThread(cString::sprintf("SATIP#%d section handler", deviceIndexP)),
|
2014-12-05 23:37:55 +01:00
|
|
|
ringBufferM(new cRingBufferLinear(bufferLenP, TS_SIZE, false, *cString::sprintf("SATIP %d section handler", deviceIndexP))),
|
2014-03-08 12:07:47 +01:00
|
|
|
mutexM(),
|
2014-03-30 21:20:56 +02:00
|
|
|
deviceIndexM(deviceIndexP)
|
2014-03-08 12:07:47 +01:00
|
|
|
{
|
2014-12-07 16:27:53 +01:00
|
|
|
debug1("%s (%d, %d) [device %d]", __PRETTY_FUNCTION__, deviceIndexM, bufferLenP, deviceIndexM);
|
2014-03-08 12:07:47 +01:00
|
|
|
|
|
|
|
// Initialize filter pointers
|
|
|
|
memset(filtersM, 0, sizeof(filtersM));
|
|
|
|
|
|
|
|
// Create input buffer
|
|
|
|
if (ringBufferM) {
|
|
|
|
ringBufferM->SetTimeouts(100, 100);
|
|
|
|
ringBufferM->SetIoThrottle();
|
|
|
|
}
|
|
|
|
else
|
2014-12-05 22:02:57 +01:00
|
|
|
error("Failed to allocate buffer for section filter handler [device=%d]", deviceIndexM);
|
2014-04-03 23:56:00 +02:00
|
|
|
|
2014-03-08 12:07:47 +01:00
|
|
|
Start();
|
|
|
|
}
|
|
|
|
|
|
|
|
cSatipSectionFilterHandler::~cSatipSectionFilterHandler()
|
|
|
|
{
|
2014-12-06 16:02:45 +01:00
|
|
|
debug1("%s [device %d]", __PRETTY_FUNCTION__, deviceIndexM);
|
2014-03-30 21:20:56 +02:00
|
|
|
// Stop thread
|
|
|
|
if (Running())
|
|
|
|
Cancel(3);
|
2014-03-08 12:07:47 +01:00
|
|
|
DELETE_POINTER(ringBufferM);
|
|
|
|
|
|
|
|
// Destroy all filters
|
|
|
|
cMutexLock MutexLock(&mutexM);
|
|
|
|
for (int i = 0; i < eMaxSecFilterCount; ++i)
|
|
|
|
Delete(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cSatipSectionFilterHandler::Action(void)
|
|
|
|
{
|
2014-12-06 16:02:45 +01:00
|
|
|
debug1("%s Entering [device %d]", __PRETTY_FUNCTION__, deviceIndexM);
|
2014-03-30 21:20:56 +02:00
|
|
|
bool processed = false;
|
2014-03-08 12:07:47 +01:00
|
|
|
// Do the thread loop
|
|
|
|
while (Running()) {
|
2014-04-03 23:56:00 +02:00
|
|
|
// Send demuxed section packets through all filters
|
|
|
|
bool retry = false;
|
|
|
|
mutexM.Lock();
|
|
|
|
for (unsigned int i = 0; i < eMaxSecFilterCount; ++i) {
|
|
|
|
if (filtersM[i] && filtersM[i]->Send())
|
|
|
|
retry = true;
|
|
|
|
}
|
|
|
|
mutexM.Unlock();
|
|
|
|
if (retry)
|
|
|
|
continue;
|
2014-03-08 12:07:47 +01:00
|
|
|
// Read one TS packet
|
|
|
|
if (ringBufferM) {
|
|
|
|
int len = 0;
|
2014-03-30 21:20:56 +02:00
|
|
|
if (processed) {
|
2014-03-08 12:07:47 +01:00
|
|
|
ringBufferM->Del(TS_SIZE);
|
2014-03-30 21:20:56 +02:00
|
|
|
processed = false;
|
2014-03-08 12:07:47 +01:00
|
|
|
}
|
|
|
|
uchar *p = ringBufferM->Get(len);
|
|
|
|
if (p && (len >= TS_SIZE)) {
|
|
|
|
if (*p != TS_SYNC_BYTE) {
|
|
|
|
for (int i = 1; i < len; ++i) {
|
|
|
|
if (p[i] == TS_SYNC_BYTE) {
|
|
|
|
len = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ringBufferM->Del(len);
|
2014-12-06 16:02:45 +01:00
|
|
|
debug1("%s Skipped %d bytes to sync on TS packet [device %d]", __PRETTY_FUNCTION__, len, deviceIndexM);
|
2014-03-08 12:07:47 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// Process TS packet through all filters
|
|
|
|
mutexM.Lock();
|
|
|
|
for (unsigned int i = 0; i < eMaxSecFilterCount; ++i) {
|
|
|
|
if (filtersM[i])
|
|
|
|
filtersM[i]->Process(p);
|
|
|
|
}
|
|
|
|
mutexM.Unlock();
|
2014-03-30 21:20:56 +02:00
|
|
|
processed = true;
|
2014-03-08 12:07:47 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cCondWait::SleepMs(10); // to avoid busy loop and reduce cpu load
|
|
|
|
}
|
2014-12-06 16:02:45 +01:00
|
|
|
debug1("%s Exiting [device %d]", __PRETTY_FUNCTION__, deviceIndexM);
|
2014-03-08 12:07:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
cString cSatipSectionFilterHandler::GetInformation(void)
|
|
|
|
{
|
2014-12-14 16:45:55 +01:00
|
|
|
debug16("%s [device %d]", __PRETTY_FUNCTION__, deviceIndexM);
|
2014-03-08 12:07:47 +01:00
|
|
|
// loop through active section filters
|
|
|
|
cMutexLock MutexLock(&mutexM);
|
|
|
|
cString s = "";
|
|
|
|
unsigned int count = 0;
|
|
|
|
for (unsigned int i = 0; i < eMaxSecFilterCount; ++i) {
|
|
|
|
if (filtersM[i]) {
|
|
|
|
s = cString::sprintf("%sFilter %d: %s Pid=0x%02X (%s)\n", *s, i,
|
|
|
|
*filtersM[i]->GetSectionStatistic(), filtersM[i]->GetPid(),
|
|
|
|
id_pid(filtersM[i]->GetPid()));
|
|
|
|
if (++count > SATIP_STATS_ACTIVE_FILTERS_COUNT)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cSatipSectionFilterHandler::Delete(unsigned int indexP)
|
|
|
|
{
|
2014-12-14 16:45:55 +01:00
|
|
|
debug16("%s (%d) [device %d]", __PRETTY_FUNCTION__, indexP, deviceIndexM);
|
2014-03-08 12:07:47 +01:00
|
|
|
if ((indexP < eMaxSecFilterCount) && filtersM[indexP]) {
|
2014-12-14 16:45:55 +01:00
|
|
|
debug8("%s (%d) Found [device %d]", __PRETTY_FUNCTION__, indexP, deviceIndexM);
|
2014-03-08 12:07:47 +01:00
|
|
|
cSatipSectionFilter *tmp = filtersM[indexP];
|
|
|
|
filtersM[indexP] = NULL;
|
|
|
|
delete tmp;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cSatipSectionFilterHandler::IsBlackListed(u_short pidP, u_char tidP, u_char maskP) const
|
|
|
|
{
|
2014-12-14 16:45:55 +01:00
|
|
|
debug16("%s (%d, %02X, %02X) [device %d]", __PRETTY_FUNCTION__, pidP, tidP, maskP, deviceIndexM);
|
2014-03-08 12:07:47 +01:00
|
|
|
// loop through section filter table
|
|
|
|
for (int i = 0; i < SECTION_FILTER_TABLE_SIZE; ++i) {
|
|
|
|
int index = SatipConfig.GetDisabledFilters(i);
|
|
|
|
// Check if matches
|
|
|
|
if ((index >= 0) && (index < SECTION_FILTER_TABLE_SIZE) &&
|
|
|
|
(section_filter_table[index].pid == pidP) && (section_filter_table[index].tid == tidP) &&
|
|
|
|
(section_filter_table[index].mask == maskP)) {
|
2014-12-14 16:45:55 +01:00
|
|
|
debug8("%s Found %s [device %d]", __PRETTY_FUNCTION__, section_filter_table[index].description, deviceIndexM);
|
2014-03-08 12:07:47 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
int cSatipSectionFilterHandler::Open(u_short pidP, u_char tidP, u_char maskP)
|
|
|
|
{
|
|
|
|
cMutexLock MutexLock(&mutexM);
|
|
|
|
// Blacklist check, refuse certain filters
|
|
|
|
if (IsBlackListed(pidP, tidP, maskP))
|
|
|
|
return -1;
|
|
|
|
// Search the next free filter slot
|
|
|
|
for (unsigned int i = 0; i < eMaxSecFilterCount; ++i) {
|
|
|
|
if (!filtersM[i]) {
|
|
|
|
filtersM[i] = new cSatipSectionFilter(deviceIndexM, pidP, tidP, maskP);
|
2014-12-14 16:45:55 +01:00
|
|
|
debug16("%s (%d, %02X, %02X) handle=%d index=%u [device %d]", __PRETTY_FUNCTION__, pidP, tidP, maskP, filtersM[i]->GetFd(), i, deviceIndexM);
|
2014-03-08 12:07:47 +01:00
|
|
|
return filtersM[i]->GetFd();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// No free filter slot found
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cSatipSectionFilterHandler::Close(int handleP)
|
|
|
|
{
|
|
|
|
cMutexLock MutexLock(&mutexM);
|
|
|
|
// Search the filter for deletion
|
|
|
|
for (unsigned int i = 0; i < eMaxSecFilterCount; ++i) {
|
|
|
|
if (filtersM[i] && (handleP == filtersM[i]->GetFd())) {
|
2014-12-14 16:45:55 +01:00
|
|
|
debug8("%s (%d) pid=%d index=%u [device %d]", __PRETTY_FUNCTION__, handleP, filtersM[i]->GetPid(), i, deviceIndexM);
|
2014-03-08 12:07:47 +01:00
|
|
|
Delete(i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int cSatipSectionFilterHandler::GetPid(int handleP)
|
|
|
|
{
|
|
|
|
cMutexLock MutexLock(&mutexM);
|
|
|
|
// Search the filter for data
|
|
|
|
for (unsigned int i = 0; i < eMaxSecFilterCount; ++i) {
|
|
|
|
if (filtersM[i] && (handleP == filtersM[i]->GetFd())) {
|
2014-12-14 16:45:55 +01:00
|
|
|
debug8("%s (%d) pid=%d index=%u [device %d]", __PRETTY_FUNCTION__, handleP, filtersM[i]->GetPid(), i, deviceIndexM);
|
2014-03-08 12:07:47 +01:00
|
|
|
return filtersM[i]->GetPid();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cSatipSectionFilterHandler::Write(uchar *bufferP, int lengthP)
|
|
|
|
{
|
2014-12-14 16:45:55 +01:00
|
|
|
debug16("%s (, %d) [device %d]", __PRETTY_FUNCTION__, lengthP, deviceIndexM);
|
2014-03-08 12:07:47 +01:00
|
|
|
// Fill up the buffer
|
|
|
|
if (ringBufferM) {
|
|
|
|
int len = ringBufferM->Put(bufferP, lengthP);
|
|
|
|
if (len != lengthP)
|
|
|
|
ringBufferM->ReportOverflow(lengthP - len);
|
|
|
|
}
|
|
|
|
}
|