-
Notifications
You must be signed in to change notification settings - Fork 0
/
module-dvbapi-mca.c
547 lines (473 loc) · 16.8 KB
/
module-dvbapi-mca.c
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
/**
* dvbapi-support for Matrix Cam Air
*
* The code is based partially on module-dvbapi-azbox.
* the (closed source) oscam that comes with the MCA is
* apparently based on svn-revision 5124-5242.
* DEMUXMATRIX is essentially the old DEMUXTYPE which
* has changed since then.
*
* We may be able to implement add/remove-filter
* by adding/removing them from DEMUXMATRIX
* and reexecute mca_write_flt
* In some cases the MCA will send ECMs for multiple PIDS
* So it is apparently able to handle multiple filters
*
* @author dirtyharry123
*/
#include "globals.h"
#if defined(HAVE_DVBAPI) && defined(WITH_MCA)
//#include "extapi/openxcas/openxcas_api.h"
//#include "extapi/openxcas/openxcas_message.h"
#define DVBAPI_LOG_PREFIX 1
#include "module-dvbapi.h"
#include "module-dvbapi-mca.h"
#include "oscam-client.h"
#include "oscam-ecm.h"
#include "oscam-reader.h"
#include "oscam-string.h"
#include "oscam-time.h"
#define LOG_PREFIX "mca: "
#define LOG_PREFIX_MSG "mcamsg: "
int8_t dummy(void)
{
return 0;
}
#define openxcas_start_filter_ex(...) dummy()
#define openxcas_stop_filter_ex(...) dummy()
#define openxcas_get_message mca_get_message
#define azbox_openxcas_ex_callback mca_ex_callback
#define openxcas_stop_filter(...) do { } while(0)
#define openxcas_remove_filter(...) do { } while(0)
#define openxcas_destory_cipher_ex(...) do { } while(0)
// These variables are declared in module-dvbapi.c
extern void *dvbapi_client;
extern DEMUXTYPE demux[MAX_DEMUX];
// These are used in module-dvbapi.c
int32_t openxcas_provid;
uint16_t openxcas_sid, openxcas_caid, openxcas_ecm_pid;
static unsigned char openxcas_cw[16];
static int32_t openxcas_seq, openxcas_filter_idx, openxcas_stream_id, openxcas_cipher_idx, openxcas_busy = 0;
static uint16_t openxcas_video_pid, openxcas_audio_pid, openxcas_data_pid;
static uint8_t found[MAX_DEMUX];
int fd_mdvbi = -1;
int fd_mdesc = -1;
int fd_mflt = -1;
int mca_open(void)
{
if((fd_mdvbi = open(MCA_DVBI, O_RDONLY)) < 0)
{
cs_log(LOG_PREFIX "can't open \"%s\" (err=%d %s)", MCA_DVBI, errno, strerror(errno));
return -1;
}
if((fd_mdesc = open(MCA_DESC, O_WRONLY)) < 0)
{
cs_log(LOG_PREFIX "can't open \"%s\" (err=%d %s)", MCA_DESC, errno, strerror(errno));
return -1;
}
if((fd_mflt = open(MCA_FLT, O_WRONLY)) < 0)
{
cs_log(LOG_PREFIX "can't open \"%s\" (err=%d %s)", MCA_FLT, errno, strerror(errno));
return -1;
}
return 0;
}
int mca_exit(void)
{
if((fd_mdvbi = close(fd_mdvbi)) < 0)
{
cs_log(LOG_PREFIX "can't close \"%s\" (err=%d %s)", MCA_DVBI, errno, strerror(errno));
return -1;
}
if((fd_mdvbi = close(fd_mdesc)) < 0)
{
cs_log(LOG_PREFIX "can't close \"%s\" (err=%d %s)", MCA_DESC, errno, strerror(errno));
return -1;
}
if((fd_mdvbi = close(fd_mflt)) < 0)
{
cs_log(LOG_PREFIX "can't close \"%s\" (err=%d %s)", MCA_FLT, errno, strerror(errno));
return -1;
}
return 0;
}
void mca_init(void)
{
if(mca_open() < 0)
{
cs_log(LOG_PREFIX "could not init");
}
}
void mca_close(void)
{
if(mca_exit() < 0)
{
cs_log(LOG_PREFIX "could not close");
}
}
int mca_get_message(openxcas_msg_t *message, int timeout)
{
int rval = -1;
struct pollfd mdvbi_poll_fd;
mdvbi_poll_fd.fd = fd_mdvbi;
mdvbi_poll_fd.events = POLLIN | POLLPRI;
rval = poll(&mdvbi_poll_fd, 1, timeout == 0 ? -1 : timeout);
if((rval >= 1) && (mdvbi_poll_fd.revents & (POLLIN | POLLPRI)))
{
rval = read(fd_mdvbi, message, 568);
}
else { rval = -1; }
return rval;
}
int mca_write_flt(DEMUXMATRIX *demux_matrix, int timeout)
{
int rval = -1;
struct pollfd mflt_poll_fd;
mflt_poll_fd.fd = fd_mflt;
mflt_poll_fd.events = POLLOUT;
rval = poll(&mflt_poll_fd, 1, timeout);
if((rval >= 1) && (mflt_poll_fd.revents & POLLOUT))
{
rval = write(fd_mflt, demux_matrix, sizeof(DEMUXMATRIX));
}
else { rval = -1; }
return rval;
}
int mca_set_key(unsigned char *mca_cw)
{
int rval = -1;
struct pollfd mdesc_poll_fd;
mdesc_poll_fd.fd = fd_mdesc;
mdesc_poll_fd.events = POLLOUT;
rval = poll(&mdesc_poll_fd, 1, 0);
if((rval >= 1) && (mdesc_poll_fd.revents & POLLOUT))
{
rval = write(fd_mdesc, mca_cw, 16);
}
else { rval = -1; }
return rval;
}
int mca_capmt_remove_duplicates(uchar *capmt, int len)
{
int i, newlen = len;
uint16_t descriptor_length = 0;
uint32_t program_info_length = ((capmt[4] & 0x0F) << 8) | capmt[5];
for(i = 7; i < len; i += descriptor_length + 2)
{
descriptor_length = capmt[i + 1];
if(capmt[i] != 0x09) { continue; }
if(!memcmp(&(capmt[i]), &(capmt[i + descriptor_length + 2]), descriptor_length + 2))
{
memmove(&(capmt[i + descriptor_length + 2]), &(capmt[i + (2 * (descriptor_length + 2))]), newlen - (descriptor_length + 2));
newlen -= descriptor_length + 2;
}
}
program_info_length -= (len - newlen);
capmt[4] = (uchar)((capmt[4] & 0xF0) | ((program_info_length & 0xF00) >> 8));
capmt[5] = (uchar)(program_info_length & 0x0FF);
return newlen;
}
void mca_demux_convert(DEMUXTYPE *demux_orig, DEMUXMATRIX *demux_matrix)
{
int i = 0;
memset(demux_matrix, 0, sizeof(DEMUXMATRIX));
demux_matrix->demux_index = (int32_t)demux_orig->demux_index;
for(i = 0; i < MAX_FILTER_MATRIX; ++i)
{
demux_matrix->demux_fd[i].fd = (uint32_t) demux_orig->demux_fd[i].fd;
demux_matrix->demux_fd[i].pidindex = (int32_t) demux_orig->demux_fd[i].pidindex;
demux_matrix->demux_fd[i].pid = (int32_t) demux_orig->demux_fd[i].pid;
demux_matrix->demux_fd[i].type = (uint16_t) demux_orig->demux_fd[i].type;
demux_matrix->demux_fd[i].count = (int32_t) demux_orig->demux_fd[i].count;
}
demux_matrix->ca_mask = (int32_t)demux_orig->ca_mask;
demux_matrix->adapter_index = (int32_t)demux_orig->adapter_index;
demux_matrix->socket_fd = (int32_t)demux_orig->socket_fd;
demux_matrix->ECMpidcount = (int32_t)demux_orig->ECMpidcount;
for(i = 0; i < demux_matrix->ECMpidcount; ++i)
{
demux_matrix->ECMpids[i].CAID = (uint16_t)demux_orig->ECMpids[i].CAID;
demux_matrix->ECMpids[i].PROVID = (uint32_t)demux_orig->ECMpids[i].PROVID;
demux_matrix->ECMpids[i].ECM_PID = (uint16_t)demux_orig->ECMpids[i].ECM_PID;
demux_matrix->ECMpids[i].EMM_PID = (uint16_t)demux_orig->ECMpids[i].EMM_PID;
demux_matrix->ECMpids[i].irdeto_maxindex = (int32_t)demux_orig->ECMpids[i].irdeto_maxindex;
demux_matrix->ECMpids[i].irdeto_curindex = (int32_t)demux_orig->ECMpids[i].irdeto_curindex;
demux_matrix->ECMpids[i].irdeto_cycle = (int32_t)demux_orig->ECMpids[i].irdeto_cycle;
demux_matrix->ECMpids[i].checked = (int32_t)demux_orig->ECMpids[i].checked;
demux_matrix->ECMpids[i].status = (int32_t)demux_orig->ECMpids[i].status;
demux_matrix->ECMpids[i].table = (unsigned char)demux_orig->ECMpids[i].table;
demux_matrix->ECMpids[i].streams = (uint32_t)demux_orig->ECMpids[i].streams;
}
demux_matrix->STREAMpidcount = (int32_t)demux->STREAMpidcount;
memcpy(&demux_matrix->STREAMpids, &demux_orig->STREAMpids, demux_matrix->STREAMpidcount * sizeof(uint16_t));
demux_matrix->pidindex = (int32_t)demux_orig->pidindex;
demux_matrix->curindex = (int32_t)demux_orig->curindex;
demux_matrix->max_status = (int32_t)demux_orig->max_status;
demux_matrix->program_number = (uint16_t)demux_orig->program_number;
memcpy(&demux_matrix->lastcw, &demux_orig->lastcw, 2 * 8 * sizeof(unsigned char));
demux_matrix->emm_filter = (int32_t)demux_orig->emm_filter;
memcpy(&demux_matrix->hexserial, &demux_orig->hexserial, 8 * sizeof(uchar));
demux_matrix->rdr = (struct s_reader *)demux_orig->rdr;
memcpy(&demux_matrix->pmt_file, &demux_orig->pmt_file, 30);
demux_matrix->pmt_time = (int32_t)demux_orig->pmt_time;
}
void mca_ecm_callback(int32_t stream_id, uint32_t UNUSED(seq), int32_t cipher_index, uint32_t caid, unsigned char *ecm_data, int32_t l, uint16_t pid)
{
cs_debug_mask(D_DVBAPI, LOG_PREFIX "ecm callback received");
openxcas_stream_id = stream_id;
//openxcas_seq = seq;
//openxcas_caid = caid;
openxcas_ecm_pid = pid;
openxcas_busy = 1;
//char tmp[1024];
//As soon as we have received a valid CW we lock onto that CAID, otherwise we will have freezers.
if(openxcas_caid && caid && openxcas_caid != caid)
{
cs_log(LOG_PREFIX "ignoring caid: %04X, waiting for %04X", caid, openxcas_caid);
openxcas_busy = 0;
return;
}
ECM_REQUEST *er;
if(!(er = get_ecmtask()))
{ return; }
er->srvid = openxcas_sid;
er->caid = openxcas_caid;
er->pid = openxcas_ecm_pid;
er->prid = openxcas_provid;
er->ecmlen = l;
memcpy(er->ecm, ecm_data, er->ecmlen);
request_cw(dvbapi_client, er, 0, 0);
openxcas_stop_filter(openxcas_stream_id, OPENXCAS_FILTER_ECM);
openxcas_remove_filter(openxcas_stream_id, OPENXCAS_FILTER_ECM);
openxcas_cipher_idx = cipher_index;
struct timeb tp;
cs_ftime(&tp);
tp.time += 500;
}
void mca_ex_callback(int32_t stream_id, uint32_t UNUSED(seq), int32_t idx, uint32_t pid, unsigned char *ecm_data, int32_t l)
{
cs_debug_mask(D_DVBAPI, LOG_PREFIX "ex callback received");
openxcas_stream_id = stream_id;
openxcas_ecm_pid = pid;
openxcas_cipher_idx = idx; // is this really cipher_idx?
ECM_REQUEST *er;
if(!(er = get_ecmtask()))
{ return; }
er->srvid = openxcas_sid;
er->caid = openxcas_caid;
er->pid = openxcas_ecm_pid;
er->prid = openxcas_provid;
er->ecmlen = l;
memcpy(er->ecm, ecm_data, er->ecmlen);
request_cw(dvbapi_client, er, 0, 0);
if(openxcas_stop_filter_ex(stream_id, seq, openxcas_filter_idx) < 0)
{ cs_log(LOG_PREFIX "unable to stop ex filter"); }
else
{ cs_debug_mask(D_DVBAPI, LOG_PREFIX "ex filter stopped"); }
unsigned char mask[12];
unsigned char comp[12];
memset(&mask, 0x00, sizeof(mask));
memset(&comp, 0x00, sizeof(comp));
mask[0] = 0xff;
comp[0] = ecm_data[0] ^ 1;
if((openxcas_filter_idx = openxcas_start_filter_ex(stream_id, seq, openxcas_ecm_pid, mask, comp, (void *)azbox_openxcas_ex_callback)) < 0)
{ cs_log(LOG_PREFIX "unable to start ex filter"); }
else
{ cs_debug_mask(D_DVBAPI, LOG_PREFIX "ex filter started, pid = %x", openxcas_ecm_pid); }
}
void *mca_main_thread(void *cli)
{
struct s_client *client = (struct s_client *) cli;
client->thread = pthread_self();
pthread_setspecific(getclient, cli);
dvbapi_client = cli;
struct s_auth *account;
int32_t ok = 0;
for(account = cfg.account; account; account = account->next)
{
if((ok = streq(cfg.dvbapi_usr, account->usr)))
{ break; }
}
cs_auth_client(client, ok ? account : (struct s_auth *)(-1), "dvbapi");
dvbapi_read_priority();
openxcas_msg_t msg;
int32_t ret;
while((ret = openxcas_get_message(&msg, 0)) >= 0)
{
cs_sleepms(10);
if(ret)
{
openxcas_stream_id = msg.stream_id;
openxcas_seq = msg.sequence;
struct stOpenXCAS_Data data;
switch(msg.cmd)
{
case OPENXCAS_SELECT_CHANNEL:
cs_debug_mask(D_DVBAPI, LOG_PREFIX_MSG "OPENXCAS_SELECT_CHANNEL");
// parse channel info
struct stOpenXCASChannel chan;
memcpy(&chan, msg.buf, msg.buf_len);
cs_log(LOG_PREFIX "channel change: sid = %x, vpid = %x. apid = %x", chan.service_id, chan.v_pid, chan.a_pid);
openxcas_video_pid = chan.v_pid;
openxcas_audio_pid = chan.a_pid;
openxcas_data_pid = chan.d_pid;
break;
case OPENXCAS_START_PMT_ECM:
//FIXME: Apparently this is what the original MCA-oscam does
cs_debug_mask(D_DVBAPI, LOG_PREFIX_MSG "OPENXCAS_STOP_PMT_ECM");
memset(&demux, 0, sizeof(demux));
memset(&found, 0, sizeof(found));
cs_debug_mask(D_DVBAPI, LOG_PREFIX_MSG "OPENXCAS_START_PMT_ECM");
// parse pmt
cs_ddump_mask(D_DVBAPI, msg.buf + 2, msg.buf_len - 2, LOG_PREFIX "capmt:");
// For some reason the mca sometimes sends duplicate ECMpids,
// we remove them here so dvbapi will not try them twice.
int new_len = mca_capmt_remove_duplicates(msg.buf + 2, msg.buf_len - 2);
if(new_len < msg.buf_len - 2)
{ cs_ddump_mask(D_DVBAPI, msg.buf + 2, new_len, LOG_PREFIX "capmt (duplicates removed):"); }
int demux_id = dvbapi_parse_capmt(msg.buf + 2, new_len, -1, NULL);
unsigned char mask[12];
unsigned char comp[12];
memset(&mask, 0x00, sizeof(mask));
memset(&comp, 0x00, sizeof(comp));
mask[0] = 0xfe;
comp[0] = 0x80;
if(demux_id < 0)
{
cs_log(LOG_PREFIX "could not parse pmt");
break;
}
//if ((ret = openxcas_add_filter(msg.stream_id, OPENXCAS_FILTER_ECM, 0, 0xffff, openxcas_ecm_pid, mask, comp, (void *)mca_ecm_callback)) < 0)
DEMUXMATRIX demux_matrix;
mca_demux_convert(&demux[demux_id], &demux_matrix);
if((ret = mca_write_flt(&demux_matrix, 0)) < 0)
{ cs_log(LOG_PREFIX "unable to add ecm filter"); }
else
{
cs_debug_mask(D_DVBAPI, LOG_PREFIX "ecm filter added, pid = %x, caid = %x", openxcas_ecm_pid, 0);
cs_debug_mask(D_DVBAPI, LOG_PREFIX "ecm filter started");
}
//if (!openxcas_create_cipher_ex(msg.stream_id, openxcas_seq, 0, openxcas_ecm_pid, openxcas_video_pid, 0xffff, openxcas_audio_pid, 0xffff, 0xffff, 0xffff))
// cs_log(LOG_PREFIX "failed to create cipher ex");
//else
cs_debug_mask(D_DVBAPI, LOG_PREFIX "cipher created");
break;
case OPENXCAS_STOP_PMT_ECM:
cs_debug_mask(D_DVBAPI, LOG_PREFIX_MSG "OPENXCAS_STOP_PMT_ECM");
openxcas_stop_filter(msg.stream_id, OPENXCAS_FILTER_ECM);
openxcas_remove_filter(msg.stream_id, OPENXCAS_FILTER_ECM);
openxcas_stop_filter_ex(msg.stream_id, msg.sequence, openxcas_filter_idx);
openxcas_destory_cipher_ex(msg.stream_id, msg.sequence);
memset(&demux, 0, sizeof(demux));
memset(&found, 0, sizeof(found));
break;
case OPENXCAS_ECM_CALLBACK:
cs_debug_mask(D_DVBAPI, LOG_PREFIX_MSG "OPENXCAS_ECM_CALLBACK");
memcpy(&data, msg.buf, msg.buf_len);
if(!openxcas_busy)
//openxcas_filter_callback(msg.stream_id, msg.sequence, OPENXCAS_FILTER_ECM, &data);
{ mca_ecm_callback(msg.stream_id, msg.sequence, data.cipher_index, data.ca_system_id, (unsigned char *)&data.buf, data.len, data.pid); }
break;
case OPENXCAS_PID_FILTER_CALLBACK:
cs_debug_mask(D_DVBAPI, LOG_PREFIX_MSG "OPENXCAS_PID_FILTER_CALLBACK");
memcpy(&data, msg.buf, msg.buf_len);
//openxcas_filter_callback_ex(msg.stream_id, msg.sequence, (struct stOpenXCAS_Data *)msg.buf);
mca_ex_callback(msg.stream_id, msg.sequence, data.cipher_index, data.pid, (unsigned char *)&data.buf, data.len);
break;
case OPENXCAS_QUIT:
cs_debug_mask(D_DVBAPI, LOG_PREFIX_MSG "OPENXCAS_QUIT");
mca_exit();
cs_log(LOG_PREFIX "exited");
return NULL;
break;
case OPENXCAS_UKNOWN_MSG:
default:
cs_debug_mask(D_DVBAPI, LOG_PREFIX_MSG "OPENXCAS_UKNOWN_MSG (%d)", msg.cmd);
//cs_ddump_mask(D_DVBAPI, &msg, sizeof(msg), "msg dump:");
break;
}
}
}
cs_log(LOG_PREFIX "invalid message");
return NULL;
}
void mca_send_dcw(struct s_client *client, ECM_REQUEST *er)
{
cs_debug_mask(D_DVBAPI, LOG_PREFIX "send_dcw");
delayer(er);
FILE *ecmtxt;
if((ecmtxt = fopen(ECMINFO_FILE, "w")))
{
char tmp[25];
if(er->rc <= E_CACHEEX)
{
fprintf(ecmtxt, "caid: 0x%04X\npid: 0x%04X\nprov: 0x%06X\n", er->caid, er->pid, (uint) er->prid);
fprintf(ecmtxt, "reader: %s\n", er->selected_reader->label);
if(is_cascading_reader(er->selected_reader))
{ fprintf(ecmtxt, "from: %s\n", er->selected_reader->device); }
else
{ fprintf(ecmtxt, "from: local\n"); }
fprintf(ecmtxt, "protocol: %s\n", reader_get_type_desc(er->selected_reader, 1));
fprintf(ecmtxt, "hops: %d\n", er->selected_reader->currenthops);
fprintf(ecmtxt, "ecm time: %.3f\n", (float) client->cwlastresptime / 1000);
fprintf(ecmtxt, "cw0: %s\n", cs_hexdump(1, demux[0].lastcw[0], 8, tmp, sizeof(tmp)));
fprintf(ecmtxt, "cw1: %s\n", cs_hexdump(1, demux[0].lastcw[1], 8, tmp, sizeof(tmp)));
fclose(ecmtxt);
ecmtxt = NULL;
}
else
{
fprintf(ecmtxt, "ECM information not found\n");
fclose(ecmtxt);
}
}
openxcas_busy = 0;
int32_t i;
for(i = 0; i < MAX_DEMUX; i++)
{
if(er->rc >= E_NOTFOUND && !found[i])
{
cs_debug_mask(D_DVBAPI, "cw not found");
if(demux[i].pidindex == -1)
{ dvbapi_try_next_caid(i, 0); }
openxcas_stop_filter(openxcas_stream_id, OPENXCAS_FILTER_ECM);
openxcas_remove_filter(openxcas_stream_id, OPENXCAS_FILTER_ECM);
unsigned char mask[12];
unsigned char comp[12];
memset(&mask, 0x00, sizeof(mask));
memset(&comp, 0x00, sizeof(comp));
mask[0] = 0xfe;
comp[0] = 0x80;
DEMUXMATRIX demux_matrix;
mca_demux_convert(&demux[0], &demux_matrix);
if(mca_write_flt(&demux_matrix, 0) < 0)
{ cs_log(LOG_PREFIX "unable to add ecm filter (0)"); }
else
{
cs_debug_mask(D_DVBAPI, LOG_PREFIX "ecm filter added, pid = %x, caid = %x", openxcas_ecm_pid, 0);
cs_debug_mask(D_DVBAPI, LOG_PREFIX "ecm filter started");
}
return;
}
else
{
found[i] = 1;
}
}
unsigned char nullcw[8];
memset(nullcw, 0, 8);
int32_t n;
for(n = 0; n < 2; n++)
{
if((memcmp(er->cw + (n * 8), demux[0].lastcw[0], 8) && memcmp(er->cw + (n * 8), demux[0].lastcw[1], 8)) && memcmp(er->cw + (n * 8), nullcw, 8))
{
memcpy(demux[0].lastcw[n], er->cw + (n * 8), 8);
memcpy(openxcas_cw + (n * 8), er->cw + (n * 8), 8);
if(mca_set_key(openxcas_cw) < 0)
{ cs_log(LOG_PREFIX "set cw failed"); }
else
{ cs_ddump_mask(D_DVBAPI, openxcas_cw, 16, LOG_PREFIX "write cws to descrambler"); }
}
}
}
#endif