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
|
/* DVB CI CA Manager */
#include <lib/base/eerror.h>
#include <lib/dvb_ci/dvbci_camgr.h>
eDVBCICAManagerSession::eDVBCICAManagerSession(eDVBCISlot *tslot)
{
slot = tslot;
slot->setCAManager(this);
}
eDVBCICAManagerSession::~eDVBCICAManagerSession()
{
slot->setCAManager(NULL);
}
int eDVBCICAManagerSession::receivedAPDU(const unsigned char *tag, const void *data, int len)
{
eDebugNoNewLine("SESSION(%d)/CA %02x %02x %02x: ", session_nb, tag[0], tag[1],tag[2]);
for (int i=0; i<len; i++)
eDebugNoNewLine("%02x ", ((const unsigned char*)data)[i]);
eDebug("");
if ((tag[0]==0x9f) && (tag[1]==0x80))
{
switch (tag[2])
{
case 0x31:
eDebug("ca info:");
for (int i=0; i<len; i+=2)
{
eDebugNoNewLine("%04x ", (((const unsigned char*)data)[i]<<8)|(((const unsigned char*)data)[i+1]));
caids.push_back((((const unsigned char*)data)[i]<<8)|(((const unsigned char*)data)[i+1]));
}
std::sort(caids.begin(), caids.end());
eDebug("");
eDVBCIInterfaces::getInstance()->recheckPMTHandlers();
break;
default:
eDebug("unknown APDU tag 9F 80 %02x", tag[2]);
break;
}
}
return 0;
}
int eDVBCICAManagerSession::doAction()
{
switch (state)
{
case stateStarted:
{
const unsigned char tag[3]={0x9F, 0x80, 0x30}; // ca info enq
sendAPDU(tag);
state=stateFinal;
return 0;
}
case stateFinal:
eDebug("stateFinal und action! kann doch garnicht sein ;)");
default:
return 0;
}
}
int eDVBCICAManagerSession::sendCAPMT(unsigned char *data, int len)
{
const unsigned char tag[3]={0x9F, 0x80, 0x32}; // ca_pmt
sendAPDU(tag, data, len);
return 0;
}
|