summaryrefslogtreecommitdiff
path: root/ci.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2015-01-30 13:38:44 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2015-01-30 13:38:44 +0100
commitbf7cc2c04fb0678d57ac47d295ef351c3d54b8c4 (patch)
treec53b4165e740b12da0403874757fc5b92584f188 /ci.c
parent7f195606eeacb73b46208e8efdfbe1b7a4dbaaca (diff)
downloadvdr-bf7cc2c04fb0678d57ac47d295ef351c3d54b8c4.tar.gz
vdr-bf7cc2c04fb0678d57ac47d295ef351c3d54b8c4.tar.bz2
Added support for smart card activation
Diffstat (limited to 'ci.c')
-rw-r--r--ci.c90
1 files changed, 88 insertions, 2 deletions
diff --git a/ci.c b/ci.c
index 1072695c..b1958bdc 100644
--- a/ci.c
+++ b/ci.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: ci.c 3.17 2015/01/15 09:14:57 kls Exp $
+ * $Id: ci.c 3.18 2015/01/30 12:24:53 kls Exp $
*/
#include "ci.h"
@@ -22,6 +22,7 @@
#include "receiver.h"
#include "remux.h"
#include "libsi/si.h"
+#include "skins.h"
#include "tools.h"
// Set these to 'true' for debug output:
@@ -236,6 +237,53 @@ void cCaPidReceiver::Receive(uchar *Data, int Length)
}
}
+// --- cCaActivationReceiver -------------------------------------------------
+
+// A receiver that is used to make the device stay on a given channel and
+// keep the CAM slot assigned.
+
+#define UNSCRAMBLE_TIME 5 // seconds of receiving purely unscrambled data before considering the smart card "activated"
+#define TS_PACKET_FACTOR 1024 // only process every TS_PACKET_FACTORth packet to keep the load down
+
+class cCaActivationReceiver : public cReceiver {
+private:
+ cCamSlot *camSlot;
+ time_t lastScrambledTime;
+ int numTsPackets;
+protected:
+ virtual void Receive(uchar *Data, int Length);
+public:
+ cCaActivationReceiver(const cChannel *Channel, cCamSlot *CamSlot);
+ virtual ~cCaActivationReceiver();
+ };
+
+cCaActivationReceiver::cCaActivationReceiver(const cChannel *Channel, cCamSlot *CamSlot)
+:cReceiver(Channel, MINPRIORITY + 1)
+{
+ camSlot = CamSlot;
+ lastScrambledTime = time(NULL);
+ numTsPackets = 0;
+}
+
+cCaActivationReceiver::~cCaActivationReceiver()
+{
+ Detach();
+}
+
+void cCaActivationReceiver::Receive(uchar *Data, int Length)
+{
+ if (numTsPackets++ % TS_PACKET_FACTOR == 0) {
+ time_t Now = time(NULL);
+ if (TsIsScrambled(Data))
+ lastScrambledTime = Now;
+ else if (Now - lastScrambledTime > UNSCRAMBLE_TIME) {
+ dsyslog("CAM %d: activated!", camSlot->SlotNumber());
+ Skins.QueueMessage(mtInfo, tr("CAM activated!"));
+ Detach();
+ }
+ }
+}
+
// --- cTPDU -----------------------------------------------------------------
#define MAX_TPDU_SIZE 2048
@@ -1696,6 +1744,7 @@ cCamSlot::cCamSlot(cCiAdapter *CiAdapter, bool ReceiveCaPids)
ciAdapter = CiAdapter;
assignedDevice = NULL;
caPidReceiver = ReceiveCaPids ? new cCaPidReceiver : NULL;
+ caActivationReceiver = NULL;
slotIndex = -1;
lastModuleStatus = msReset; // avoids initial reset log message
resetTime = 0;
@@ -1715,6 +1764,7 @@ cCamSlot::~cCamSlot()
if (assignedDevice)
assignedDevice->SetCamSlot(NULL);
delete caPidReceiver;
+ delete caActivationReceiver;
CamSlots.Del(this, false);
DeleteAllConnections();
}
@@ -1735,8 +1785,10 @@ bool cCamSlot::Assign(cDevice *Device, bool Query)
Device->SetCamSlot(this);
dsyslog("CAM %d: assigned to device %d", slotNumber, Device->DeviceNumber() + 1);
}
- else
+ else {
+ CancelActivation();
dsyslog("CAM %d: unassigned", slotNumber);
+ }
}
else
return false;
@@ -1772,6 +1824,8 @@ void cCamSlot::DeleteAllConnections(void)
void cCamSlot::Process(cTPDU *TPDU)
{
cMutexLock MutexLock(&mutex);
+ if (caActivationReceiver && !caActivationReceiver->IsAttached())
+ CancelActivation();
if (TPDU) {
int n = TPDU->Tcid();
if (1 <= n && n <= MAX_CONNECTIONS_PER_CAM_SLOT) {
@@ -1795,6 +1849,7 @@ void cCamSlot::Process(cTPDU *TPDU)
dbgprotocol("Slot %d: no module present\n", slotNumber);
isyslog("CAM %d: no module present", slotNumber);
DeleteAllConnections();
+ CancelActivation();
break;
case msReset:
dbgprotocol("Slot %d: module reset\n", slotNumber);
@@ -1856,6 +1911,37 @@ bool cCamSlot::Reset(void)
return false;
}
+bool cCamSlot::CanActivate(void)
+{
+ return ModuleStatus() == msReady;
+}
+
+void cCamSlot::StartActivation(void)
+{
+ cMutexLock MutexLock(&mutex);
+ if (!caActivationReceiver) {
+ if (cDevice *d = Device()) {
+ if (cChannel *Channel = Channels.GetByNumber(cDevice::CurrentChannel())) {
+ caActivationReceiver = new cCaActivationReceiver(Channel, this);
+ d->AttachReceiver(caActivationReceiver);
+ dsyslog("CAM %d: activating on device %d with channel %d (%s)", SlotNumber(), d->DeviceNumber() + 1, Channel->Number(), Channel->Name());
+ }
+ }
+ }
+}
+
+void cCamSlot::CancelActivation(void)
+{
+ cMutexLock MutexLock(&mutex);
+ delete caActivationReceiver;
+ caActivationReceiver = NULL;
+}
+
+bool cCamSlot::IsActivating(void)
+{
+ return caActivationReceiver;
+}
+
eModuleStatus cCamSlot::ModuleStatus(void)
{
cMutexLock MutexLock(&mutex);