123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299 |
- /*
- * Data definitions
- * Copyright (C) 2011 Unix Solutions Ltd.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
- */
- #ifndef DATA_H
- #define DATA_H
-
- #include <pthread.h>
- #include <limits.h>
-
- #include <openssl/aes.h>
- #include <openssl/des.h>
- #include <openssl/md5.h>
-
- #include <dvbcsa/dvbcsa.h>
-
- #include "libfuncs/libfuncs.h"
- #include "libtsfuncs/tsfuncs.h"
-
- // 7 * 188
- #define FRAME_SIZE 1316
-
- // How much seconds to assume the key is valid
- #define KEY_VALID_TIME 10
-
- #define EMM_QUEUE_HARD_LIMIT 10000
- #define EMM_QUEUE_SOFT_LIMIT 1000
-
- #define ECM_QUEUE_HARD_LIMIT 10
- #define ECM_QUEUE_SOFT_LIMIT 3
-
- // 64k should be enough for everybody
- #define THREAD_STACK_SIZE (64 * 1024)
-
- struct notify {
- pthread_t thread; /* Thread handle */
- QUEUE *notifications; /* Notification queue */
- char ident[512]; /* tsdecrypt ident (set by -i) */
- char program[512]; /* What program to exec */
- };
-
- #define CODEWORD_LENGTH 16
-
- struct key {
- uint8_t cw[CODEWORD_LENGTH];
- int is_valid_cw;
- struct dvbcsa_key_s *csakey[2];
- struct dvbcsa_bs_key_s *bs_csakey[2];
- time_t ts; // At what time the key is set
- struct timeval ts_keyset; // At what time the key is set
- };
-
- // 4 auth header, 20 header size, 256 max data size, 16 potential padding
- #define CAMD35_HDR_LEN (20)
- #define CAMD35_BUF_LEN (4 + CAMD35_HDR_LEN + 256 + 16)
-
- // When this limit is reached invalid_cw flag is set.
- #define ECM_RECV_ERRORS_LIMIT 10
-
- // When this limit is reached camd_reconnect is called.
- #define EMM_RECV_ERRORS_LIMIT 100
-
- struct camd;
- struct ts;
-
- enum msg_type { EMM_MSG, ECM_MSG };
-
- struct camd_msg {
- enum msg_type type;
- uint16_t ca_id;
- uint16_t service_id;
- uint8_t data_len;
- uint8_t data[255];
- struct ts *ts;
- };
-
- enum camd_proto {
- CAMD_CS378X,
- CAMD_NEWCAMD,
- };
-
- struct camd_ops {
- char *ident;
- enum camd_proto proto;
- int (*connect)(struct camd *c);
- void (*disconnect)(struct camd *c);
- int (*reconnect)(struct camd *c);
- int (*do_emm)(struct camd *c, struct camd_msg *msg);
- int (*do_ecm)(struct camd *c, struct camd_msg *msg);
- int (*get_cw)(struct camd *c, uint16_t *ca_id, uint16_t *idx, uint8_t *cw);
- };
-
- struct cs378x {
- // cs378x private data
- uint8_t buf[CAMD35_BUF_LEN];
- AES_KEY aes_encrypt_key;
- AES_KEY aes_decrypt_key;
- uint32_t auth_token;
- uint16_t msg_id;
- };
-
- #define DESKEY_LENGTH 28
- #define NEWCAMD_MSG_SIZE 400
- #define NEWCAMD_MAXPROV 32
-
- typedef struct {
- DES_key_schedule ks1;
- DES_key_schedule ks2;
- uint8_t des_key[16];
- } triple_des_t;
-
- struct newcamd {
- // newcamd private data
- uint8_t buf[NEWCAMD_MSG_SIZE];
- char hex_des_key[DESKEY_LENGTH + 1];
- uint8_t bin_des_key[DESKEY_LENGTH / 2]; // Decoded des_key
- triple_des_t td_key;
- uint16_t msg_id;
- // Initialized from CARD INFO command
- int caid;
- uint8_t ua[8];
- uint8_t num_of_provs;
- uint8_t provs_ident[NEWCAMD_MAXPROV][3];
- uint8_t provs_id[NEWCAMD_MAXPROV][8];
- uint8_t prov_ident_manual;
- char *crypt_passwd;
- };
-
- struct camd {
- int server_fd;
- struct in_addr server_addr;
- unsigned int server_port;
- char *user;
- char *pass;
-
- unsigned int ecm_recv_errors; // Error counter, reset on successful send/recv
- unsigned int emm_recv_errors; // Error counter, reset on successful send/recv
-
- struct key *key;
- unsigned int constant_codeword; // The codeword is set on the command line once, no ecm processing is done.
-
- pthread_t thread;
- QUEUE *req_queue;
- QUEUE *ecm_queue;
- QUEUE *emm_queue;
-
- struct camd_ops ops;
- struct cs378x cs378x;
- struct newcamd newcamd;
- };
-
- enum io_type {
- FILE_IO,
- NET_IO,
- WTF_IO
- };
-
- struct io {
- int fd;
- enum io_type type;
- char *fname;
- struct in_addr addr;
- unsigned int port;
- // Used only for output
- int ttl;
- int tos;
- struct in_addr intf;
- };
-
- struct packet_buf {
- int64_t time;
- uint8_t data[188];
- };
-
- #define MAX_PIDS 8192
-
- struct ts {
- // Stream handling
- struct ts_pat *pat, *curpat;
- struct ts_pat *genpat;
- uint8_t genpat_cc;
- struct ts_cat *cat, *curcat;
- struct ts_pmt *pmt, *curpmt;
- struct ts_sdt *sdt, *cursdt;
- struct ts_privsec *emm, *last_emm;
- struct ts_privsec *ecm, *last_ecm;
- struct ts_privsec *tmp_emm;
- struct ts_privsec *tmp_ecm;
- uint16_t pmt_pid;
- uint16_t service_id;
- uint16_t forced_service_id;
- uint16_t emm_caid, emm_pid;
- uint16_t ecm_caid, ecm_pid;
- uint16_t forced_caid;
- uint16_t forced_emm_pid;
- uint16_t forced_ecm_pid;
- pidmap_t pidmap;
- pidmap_t cc; // Continuity counters
- pidmap_t pid_seen;
-
- // Stats
- unsigned int emm_seen_count;
- unsigned int emm_processed_count;
- unsigned int emm_report_interval;
- time_t emm_last_report;
-
- unsigned int ecm_seen_count;
- unsigned int ecm_processed_count;
- unsigned int ecm_duplicate_count;
- unsigned int ecm_report_interval;
- time_t ecm_last_report;
-
- unsigned int cw_warn_sec;
- time_t cw_last_warn;
- time_t cw_next_warn;
- struct timeval ecm_change_time;
-
- unsigned int pid_report;
- unsigned int pid_stats[MAX_PIDS];
-
- // CAMD handling
- struct key key;
- struct camd camd;
-
- // Config
- char *ident;
-
- char *syslog_host;
- int syslog_port;
- int syslog_active;
- int syslog_remote;
-
- char *pidfile;
-
- enum CA_system req_CA_sys;
-
- int emm_send;
- int emm_only;
- int pid_filter;
- int eit_passthrough;
- int tdt_passthrough;
- int nit_passthrough;
-
- uint8_t irdeto_ecm;
- int ecm_cw_log;
-
- int rtp_input;
- int rtp_output;
- uint32_t rtp_ssrc;
- uint16_t rtp_seqnum;
-
- struct io input;
- struct io output;
-
- FILE *input_dump_file;
- char *input_dump_filename;
-
- int debug_level;
- int ts_discont;
-
- int camd_stop;
- int is_cw_error;
-
- int threaded;
-
- pthread_attr_t thread_attr;
-
- int decode_stop;
- pthread_t decode_thread;
- CBUF *decode_buf;
-
- int write_stop;
- pthread_t write_thread;
- CBUF *write_buf;
-
- struct notify *notify;
- char *notify_program;
-
- unsigned int input_buffer_time;
- LIST *input_buffer;
- };
-
- void data_init(struct ts *ts);
- void data_free(struct ts *ts);
-
- #endif
|