add libduckbox

This commit is contained in:
max10
2014-04-27 01:52:05 +02:00
parent fcf4785716
commit 4dc1171253
73 changed files with 4050 additions and 2030 deletions

81
libdvbci/dvbci_camgr.cpp Normal file
View File

@@ -0,0 +1,81 @@
/* DVB CI CA Manager */
#include <stdio.h>
#include <stdint.h>
#include "dvbci_camgr.h"
#include <algorithm>
eDVBCICAManagerSession::eDVBCICAManagerSession(tSlot *tslot)
{
slot = tslot;
}
eDVBCICAManagerSession::~eDVBCICAManagerSession()
{
slot->hasCAManager = false;
slot->camgrSession = NULL;
}
int eDVBCICAManagerSession::receivedAPDU(const unsigned char *tag, const void *data, int len)
{
printf("SESSION(%d)/CA %02x %02x %02x: ", session_nb, tag[0], tag[1], tag[2]);
for (int i = 0; i < len; i++)
printf("%02x ", ((const unsigned char*)data)[i]);
printf("\n");
if ((tag[0] == 0x9f) && (tag[1] == 0x80))
{
switch (tag[2])
{
case 0x31:
{
printf("ca info:\n");
for (int i = 0; i < len; i += 2)
{
printf("%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]));
}
sort(caids.begin(), caids.end());
printf("\n");
slot->pollConnection = false;
slot->hasCAManager = true;
slot->camgrSession = this;
}
break;
default:
printf("unknown APDU tag 9F 80 %02x\n", 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:
printf("stateFinal und action! kann doch garnicht sein ;)\n");
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;
}