oscam-2.26.01-11942-802-wit.../reader-videoguard1.c

385 lines
9.0 KiB
C

#include "globals.h"
#ifdef READER_VIDEOGUARD
#include "reader-common.h"
#include "reader-videoguard-common.h"
static int32_t vg1_do_cmd(struct s_reader *reader, const uint8_t *ins, const uint8_t *txbuff, uint8_t *rxbuff, uint8_t *cta_res)
{
uint16_t cta_lr;
uint8_t ins2[5];
memcpy(ins2, ins, 5);
uint8_t len = 0;
len = ins2[4];
if(txbuff == NULL)
{
if(!write_cmd_vg(ins2, NULL) || !status_ok(cta_res + len))
{
return -1;
}
if(rxbuff != NULL)
{
memcpy(rxbuff, ins2, 5);
memcpy(rxbuff + 5, cta_res, len);
memcpy(rxbuff + 5 + len, cta_res + len, 2);
}
}
else
{
if(!write_cmd_vg(ins2, (uint8_t *)txbuff) || !status_ok(cta_res))
{
return -2;
}
if(rxbuff != NULL)
{
memcpy(rxbuff, ins2, 5);
memcpy(rxbuff + 5, txbuff, len);
memcpy(rxbuff + 5 + len, cta_res, 2);
}
}
return len;
}
static void read_tiers(struct s_reader *reader)
{
def_resp;
//const uint8_t ins2a[5] = { 0x48, 0x2a, 0x00, 0x00, 0x00 };
int32_t l;
//return; // Not working at present so just do nothing
//l = vg1_do_cmd(reader, ins2a, NULL, NULL, cta_res);
//if (l < 0 || !status_ok(cta_res + l))
//{
// return;
//}
uint8_t ins76[5] = { 0x48, 0x76, 0x00, 0x00, 0x00 };
ins76[3] = 0x7f;
ins76[4] = 2;
if(!write_cmd_vg(ins76, NULL) || !status_ok(cta_res + 2))
{
return;
}
ins76[3] = 0;
ins76[4] = 0x0a;
int32_t num = cta_res[1];
int32_t i;
cs_clear_entitlement(reader); // reset the entitlements
for(i = 0; i < num; i++)
{
ins76[2] = i;
l = vg1_do_cmd(reader, ins76, NULL, NULL, cta_res);
if(l < 0 || !status_ok(cta_res + l))
{
return;
}
if(cta_res[2] == 0 && cta_res[3] == 0)
{
break;
}
uint16_t tier_id = (cta_res[2] << 8) | cta_res[3];
// add entitlements to list
struct tm timeinfo;
memset(&timeinfo, 0, sizeof(struct tm));
rev_expiredate_calc_tm(&cta_res[4], &timeinfo, reader->card_expiredate_basemonth, reader->card_expiredate_baseyear);
char tiername[83];
cs_add_entitlement(reader, reader->caid, b2ll(4, reader->prid[0]), tier_id, 0, 0, mktime(&timeinfo), 4, 1);
rdr_log(reader, "tier: %04x, expiry date: %04d/%02d/%02d-%02d:%02d:%02d %s",
tier_id, timeinfo.tm_year + 1900, timeinfo.tm_mon + 1, timeinfo.tm_mday, timeinfo.tm_hour,
timeinfo.tm_min, timeinfo.tm_sec, get_tiername(tier_id, reader->caid, tiername));
}
}
static int32_t videoguard1_card_init(struct s_reader *reader, ATR *newatr)
{
get_hist;
/* 40 B0 09 4A 50 01 4E 5A */
if((hist_size < 7) || (hist[1] != 0xB0) || (hist[3] != 0x4A) || (hist[4] != 0x50))
{
return ERROR;
}
get_atr;
def_resp;
if(!cs_malloc(&reader->csystem_data, sizeof(struct videoguard_data)))
{
return ERROR;
}
if((reader->ndsversion != NDS1) && (reader->ndsversion != NDSAUTO))
{
/* known ATR and not NDS1
or unknown ATR and not forced to NDS1
or known NDS1 ATR and forced to another NDS version
...probably not NDS1 */
return ERROR;
}
rdr_log(reader, "type: VideoGuard1 Card, base tiers expiration date: %i/%i", reader->card_expiredate_basemonth, reader->card_expiredate_baseyear);
if(reader->ndsversion == NDS1)
{
rdr_log(reader, "forced to NDS1+");
}
/* NDS1 Class 48 only cards only need a very basic initialisation
NDS1 Class 48 only cards do not respond to vg1_do_cmd(ins7416)
nor do they return list of valid command therefore do not even try
NDS1 Class 48 only cards need to be told the length as (48, ins, 00, 80, 01)
does not return the length */
int32_t l = 0;
uint8_t buff[256];
memset(buff, 0, sizeof(buff));
/* Try to get the boxid from the card, even if BoxID specified in the config file
also used to check if it is an NDS1 card as the returned information will
not be encrypted if it is an NDS1 card */
static const uint8_t ins36[5] = { 0x48, 0x36, 0x00, 0x00, 0x90 };
uint8_t boxID[4];
int32_t boxidOK = 0;
l = vg1_do_cmd(reader, ins36, NULL, buff, cta_res);
if(buff[7] > 0x0F)
{
rdr_log(reader, "class48 ins36: encrypted - therefore not an NDS1 card");
return ERROR;
}
else
{
/* skipping the initial fixed fields: cmdecho (4) + length (1) + encr/rev++ (4) */
int32_t i = 9;
int32_t gotUA = 0;
while(i < l)
{
if(!gotUA && buff[i] < 0xF0) /* then we guess that the next 4 bytes is the UA */
{
gotUA = 1;
i += 4;
}
else
{
switch(buff[i]) /* object length vary depending on type */
{
case 0x00: /* padding */
{
i += 1;
break;
}
case 0xEF: /* card status */
{
i += 3;
break;
}
case 0xD1:
{
i += 4;
break;
}
case 0xDF: /* next server contact */
{
i += 5;
break;
}
case 0xF3: /* boxID */
{
memcpy(&boxID, &buff[i + 1], sizeof(boxID));
boxidOK = 1;
i += 5;
break;
}
case 0xF6:
{
i += 6;
break;
}
case 0xFC: /* No idea seems to with with NDS1 */
{
i += 14;
break;
}
case 0x01: /* date & time */
{
i += 7;
break;
}
case 0xFA:
{
i += 9;
break;
}
case 0x5E:
case 0x67: /* signature */
case 0xDE:
case 0xE2:
case 0xE9: /* tier dates */
case 0xF8: /* Old PPV Event Record */
case 0xFD:
{
i += buff[i + 1] + 2; /* skip length + 2 bytes (type and length) */
break;
}
default: /* default to assume a length byte */
{
rdr_log(reader, "class48 ins36: returned unknown type=0x%02X - parsing may fail", buff[i]);
i += buff[i + 1] + 2;
}
}
}
}
}
/* the boxid is specified in the config */
if(reader->boxid > 0)
{
int32_t i;
for(i = 0; i < 4; i++)
{
boxID[i] = (reader->boxid >> (8 * (3 - i))) % 0x100;
}
}
else
{
if(!boxidOK)
{
rdr_log(reader, "no boxID available");
return ERROR;
}
}
// Send BoxID
static const uint8_t ins4C[5] = { 0x48, 0x4C, 0x00, 0x00, 0x09 };
uint8_t payload4C[9] = { 0, 0, 0, 0, 3, 0, 0, 0, 4 };
memcpy(payload4C, boxID, 4);
if(!write_cmd_vg(ins4C, payload4C) || !status_ok(cta_res + l))
{
rdr_log(reader, "class48 ins4C: sending boxid failed");
return ERROR;
}
static const uint8_t ins58[5] = { 0x48, 0x58, 0x00, 0x00, 0x17 };
l = vg1_do_cmd(reader, ins58, NULL, buff, cta_res);
if(l < 0)
{
rdr_log(reader, "class48 ins58: failed");
return ERROR;
}
memset(reader->hexserial, 0, 8);
memcpy(reader->hexserial + 2, cta_res + 1, 4);
memcpy(reader->sa, cta_res + 1, 3);
//reader->caid = cta_res[24] * 0x100 + cta_res[25];
/* Force caid until can figure out how to get it */
reader->caid = 0x9 * 0x100 + 0x69;
/* we have one provider, 0x0000 */
reader->nprov = 1;
memset(reader->prid, 0x00, sizeof(reader->prid));
rdr_log_sensitive(reader, "type: VideoGuard, caid: %04X, serial: {%02X%02X%02X%02X}, BoxID: {%02X%02X%02X%02X}",
reader->caid, reader->hexserial[2], reader->hexserial[3], reader->hexserial[4], reader->hexserial[5],
boxID[0], boxID[1], boxID[2], boxID[3]);
rdr_log(reader, "ready for requests");
return OK;
}
static int32_t videoguard1_do_ecm(struct s_reader *reader, const ECM_REQUEST *er, struct s_ecm_answer *ea)
{
uint8_t cta_res[CTA_RES_LEN];
uint8_t ins40[5] = { 0x48, 0x40, 0x00, 0x80, 0xFF };
static const uint8_t ins54[5] = { 0x48, 0x54, 0x00, 0x00, 0x0D };
int32_t posECMpart2 = er->ecm[6] + 7;
int32_t lenECMpart2 = er->ecm[posECMpart2];
uint8_t tbuff[264];
uint8_t rbuff[264];
memcpy(&tbuff[0], &(er->ecm[posECMpart2 + 1]), lenECMpart2);
ins40[4] = lenECMpart2;
int32_t l;
l = vg1_do_cmd(reader, ins40, tbuff, NULL, cta_res);
if(l > 0 && status_ok(cta_res))
{
l = vg1_do_cmd(reader, ins54, NULL, rbuff, cta_res);
if(l > 0 && status_ok(cta_res + l))
{
if(!cw_is_valid(rbuff + 5)) // sky cards report 90 00 = ok but send cw = 00 when channel not subscribed
{
rdr_log(reader, "class48 ins54 status 90 00 but cw=00 -> channel not subscribed");
return ERROR;
}
if(er->ecm[0] & 1)
{
memset(ea->cw + 0, 0, 8);
memcpy(ea->cw + 8, rbuff + 5, 8);
}
else
{
memcpy(ea->cw + 0, rbuff + 5, 8);
memset(ea->cw + 8, 0, 8);
}
return OK;
}
}
rdr_log(reader, "class48 ins54 (%d) status not ok %02x %02x", l, cta_res[0], cta_res[1]);
return ERROR;
}
static int32_t videoguard1_do_emm(struct s_reader *reader, EMM_PACKET *ep)
{
return videoguard_do_emm(reader, ep, 0x48, read_tiers, vg1_do_cmd);
}
static int32_t videoguard1_do_rawcmd(struct s_reader *reader, CMD_PACKET *cp)
{
return videoguard_do_rawcmd(reader, cp);
}
static int32_t videoguard1_card_info(struct s_reader *reader)
{
/* info is displayed in init, or when processing info */
rdr_log(reader, "card detected");
rdr_log(reader, "type: VideoGuard1 Card");
read_tiers(reader);
return OK;
}
const struct s_cardsystem reader_videoguard1 =
{
.desc = "videoguard1",
.caids = (uint16_t[]){ 0x09, 0 },
.do_emm = videoguard1_do_emm,
.do_rawcmd = videoguard1_do_rawcmd,
.do_ecm = videoguard1_do_ecm,
.card_info = videoguard1_card_info,
.card_init = videoguard1_card_init,
.get_emm_type = videoguard_get_emm_type,
.get_emm_filter = videoguard_get_emm_filter,
};
#endif