tsdecrypt reads and decrypts CSA encrypted incoming mpeg transport stream over UDP/RTP using code words obtained from OSCAM or similar CAM server. tsdecrypt communicates with CAM server using cs378x (camd35 over tcp) protocol or newcamd protocol. https://georgi.unixsol.org/programs/tsdecrypt/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

process.c 7.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. /*
  2. * Process packets
  3. * Copyright (C) 2011 Unix Solutions Ltd.
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2
  7. * as published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  17. */
  18. #include <unistd.h>
  19. #include <string.h>
  20. #include "data.h"
  21. #include "tables.h"
  22. static unsigned long ts_pack;
  23. static int ts_pack_shown;
  24. static char *get_pid_desc(struct ts *ts, uint16_t pid) {
  25. int i;
  26. uint16_t nitpid = 0x0010, pmtpid = 0xffff, pcrpid = 0xffff;
  27. if (ts->pat->initialized) {
  28. for (i=0;i<ts->pat->programs_num;i++) {
  29. struct ts_pat_program *prg = ts->pat->programs[i];
  30. if (prg->pid) {
  31. if (prg->program == 0)
  32. nitpid = prg->pid;
  33. }
  34. }
  35. }
  36. if (ts->pmt->initialized) {
  37. pmtpid = ts->pmt->ts_header.pid;
  38. pcrpid = ts->pmt->PCR_pid;
  39. for (i=0;i<ts->pmt->streams_num;i++) {
  40. struct ts_pmt_stream *stream = ts->pmt->streams[i];
  41. if (pid == stream->pid)
  42. return h222_stream_type_desc(stream->stream_type);
  43. }
  44. }
  45. switch (pid) {
  46. case 0x0000: return "PAT"; break;
  47. case 0x0001: return "CAT"; break;
  48. case 0x0011: return "SDT"; break;
  49. case 0x0012: return "EPG"; break;
  50. case 0x0014: return "TDT/TOT"; break;
  51. }
  52. if (pid == nitpid) return "NIT";
  53. else if (pid == pmtpid) return "PMT";
  54. else if (pid == pcrpid) return "PCR";
  55. else if (pid == ts->emm_pid) return "EMM";
  56. else if (pid == ts->ecm_pid) return "ECM";
  57. return "Unknown";
  58. }
  59. void show_ts_pack(struct ts *ts, uint16_t pid, char *wtf, char *extra, uint8_t *ts_packet) {
  60. char cw1_dump[8 * 6];
  61. char cw2_dump[8 * 6];
  62. if (ts->debug_level >= 4) {
  63. if (ts_pack_shown)
  64. return;
  65. int stype = ts_packet_get_scrambled(ts_packet);
  66. ts_hex_dump_buf(cw1_dump, 8 * 6, ts->key.cw , 8, 0);
  67. ts_hex_dump_buf(cw2_dump, 8 * 6, ts->key.cw + 8, 8, 0);
  68. fprintf(stderr, "@ %s %s %03x %5ld %7ld | %s %s | %s\n",
  69. stype == 0 ? "------" :
  70. stype == 2 ? "even 0" :
  71. stype == 3 ? "odd 1" : "??????",
  72. wtf,
  73. pid,
  74. ts_pack, ts_pack * 188,
  75. cw1_dump, cw2_dump, extra ? extra : wtf);
  76. }
  77. }
  78. static void dump_ts_pack(struct ts *ts, uint16_t pid, uint8_t *ts_packet) {
  79. if (pid == 0x010) show_ts_pack(ts, pid, "nit", NULL, ts_packet);
  80. else if (pid == 0x11) show_ts_pack(ts, pid, "sdt", NULL, ts_packet);
  81. else if (pid == 0x12) show_ts_pack(ts, pid, "epg", NULL, ts_packet);
  82. else show_ts_pack(ts, pid, "---", NULL, ts_packet);
  83. }
  84. static void decode_packet(struct ts *ts, uint8_t *ts_packet) {
  85. int scramble_idx = ts_packet_get_scrambled(ts_packet);
  86. if (scramble_idx > 1) {
  87. if (ts->key.is_valid_cw) {
  88. // scramble_idx 2 == even key
  89. // scramble_idx 3 == odd key
  90. ts_packet_set_not_scrambled(ts_packet);
  91. uint8_t payload_ofs = ts_packet_get_payload_offset(ts_packet);
  92. dvbcsa_decrypt(ts->key.csakey[scramble_idx - 2], ts_packet + payload_ofs, 188 - payload_ofs);
  93. } else {
  94. // Can't decrypt the packet just make it NULL packet
  95. if (ts->pid_filter)
  96. ts_packet_set_pid(ts_packet, 0x1fff);
  97. }
  98. }
  99. }
  100. static void decode_buffer(struct ts *ts, uint8_t *data, int data_len) {
  101. int i;
  102. int batch_sz = dvbcsa_bs_batch_size(); // 32?
  103. int even_packets = 0;
  104. int odd_packets = 0;
  105. struct dvbcsa_bs_batch_s even_pcks[batch_sz + 1];
  106. struct dvbcsa_bs_batch_s odd_pcks [batch_sz + 1];
  107. // Prepare batch structure
  108. for (i = 0; i < batch_sz; i++) {
  109. uint8_t *ts_packet = data + (i * 188);
  110. int scramble_idx = ts_packet_get_scrambled(ts_packet);
  111. if (scramble_idx > 1) {
  112. if (ts->key.is_valid_cw) {
  113. uint8_t payload_ofs = ts_packet_get_payload_offset(ts_packet);
  114. if (scramble_idx == 2) { // scramble_idx 2 == even key
  115. even_pcks[even_packets].data = ts_packet + payload_ofs;
  116. even_pcks[even_packets].len = 188 - payload_ofs;
  117. even_packets++;
  118. }
  119. if (scramble_idx == 3) { // scramble_idx 3 == odd key
  120. odd_pcks[odd_packets].data = ts_packet + payload_ofs;
  121. odd_pcks[odd_packets].len = 188 - payload_ofs;
  122. odd_packets++;
  123. }
  124. ts_packet_set_not_scrambled(ts_packet);
  125. } else {
  126. if (ts->pid_filter)
  127. ts_packet_set_pid(ts_packet, 0x1fff);
  128. }
  129. }
  130. }
  131. // Decode packets
  132. if (even_packets) {
  133. even_pcks[even_packets].data = NULL; // Last one...
  134. dvbcsa_bs_decrypt(ts->key.bs_csakey[0], even_pcks, 184);
  135. }
  136. if (odd_packets) {
  137. odd_pcks[odd_packets].data = NULL; // Last one...
  138. dvbcsa_bs_decrypt(ts->key.bs_csakey[1], odd_pcks, 184);
  139. }
  140. // Fill write buffer
  141. for (i=0; i<data_len; i += 188) {
  142. uint8_t *ts_packet = data + i;
  143. if (!ts->pid_filter) {
  144. cbuf_fill(ts->write_buf, ts_packet, 188);
  145. } else {
  146. uint16_t pid = ts_packet_get_pid(ts_packet);
  147. if (pidmap_get(&ts->pidmap, pid)) // PAT or allowed PIDs
  148. cbuf_fill(ts->write_buf, ts_packet, 188);
  149. }
  150. }
  151. }
  152. void *decode_thread(void *_ts) {
  153. struct ts *ts = _ts;
  154. uint8_t *data;
  155. int data_size;
  156. int req_size = 188 * dvbcsa_bs_batch_size();
  157. while (!ts->decode_stop) {
  158. data = cbuf_peek(ts->decode_buf, req_size, &data_size);
  159. if (data_size < req_size) {
  160. usleep(10000);
  161. continue;
  162. }
  163. data = cbuf_get(ts->decode_buf, req_size, &data_size);
  164. if (data)
  165. decode_buffer(ts, data, data_size);
  166. }
  167. do { // Flush data
  168. data = cbuf_get(ts->decode_buf, req_size, &data_size);
  169. if (data)
  170. decode_buffer(ts, data, data_size);
  171. } while(data);
  172. return NULL;
  173. }
  174. void *write_thread(void *_ts) {
  175. struct ts *ts = _ts;
  176. uint8_t *data;
  177. int data_size;
  178. while (!ts->write_stop) {
  179. data_size = 0;
  180. data = cbuf_peek(ts->write_buf, FRAME_SIZE, &data_size);
  181. if (data_size < FRAME_SIZE) {
  182. usleep(5000);
  183. continue;
  184. }
  185. data = cbuf_get (ts->write_buf, FRAME_SIZE, &data_size);
  186. if (data)
  187. write(ts->output.fd, data, data_size);
  188. }
  189. do { // Flush data
  190. data = cbuf_get(ts->write_buf, FRAME_SIZE, &data_size);
  191. if (data)
  192. write(ts->output.fd, data, data_size);
  193. } while(data);
  194. return NULL;
  195. }
  196. static void detect_discontinuity(struct ts *ts, uint8_t *ts_packet) {
  197. uint16_t pid;
  198. uint8_t cur_cc, last_cc;
  199. if (!ts->ts_discont)
  200. return;
  201. pid = ts_packet_get_pid(ts_packet);
  202. cur_cc = ts_packet_get_cont(ts_packet);
  203. if (!pidmap_get(&ts->pid_seen, pid)) {
  204. if (strcmp(get_pid_desc(ts, pid), "Unknown") == 0)
  205. return;
  206. pidmap_set(&ts->pid_seen, pid);
  207. pidmap_set_val(&ts->cc, pid, cur_cc);
  208. ts_LOGf("NEW | Input PID 0x%04x appeared (%s)\n",
  209. pid, get_pid_desc(ts, pid));
  210. return;
  211. }
  212. last_cc = pidmap_get(&ts->cc, pid);
  213. if (last_cc != cur_cc && ((last_cc + 1) & 0x0f) != cur_cc)
  214. ts_LOGf("--- | TS discontinuity on PID 0x%04x expected %2d got %2d /%d/ (%s)\n",
  215. pid,
  216. ((last_cc + 1) & 0x0f), cur_cc,
  217. (cur_cc - ((last_cc + 1) & 0x0f)) & 0x0f,
  218. get_pid_desc(ts, pid));
  219. pidmap_set_val(&ts->cc, pid, cur_cc);
  220. }
  221. void process_packets(struct ts *ts, uint8_t *data, ssize_t data_len) {
  222. ssize_t i;
  223. for (i=0; i<data_len; i += 188) {
  224. uint8_t *ts_packet = data + i;
  225. uint16_t pid = ts_packet_get_pid(ts_packet);
  226. ts_pack_shown = 0;
  227. process_pat(ts, pid, ts_packet);
  228. process_cat(ts, pid, ts_packet);
  229. process_pmt(ts, pid, ts_packet);
  230. process_emm(ts, pid, ts_packet);
  231. process_ecm(ts, pid, ts_packet);
  232. detect_discontinuity(ts, ts_packet);
  233. if (!ts_pack_shown)
  234. dump_ts_pack(ts, pid, ts_packet);
  235. if (ts->emm_only)
  236. continue;
  237. if (ts->threaded) {
  238. // Add to decode buffer. The decoder thread will handle it
  239. if (cbuf_fill(ts->decode_buf, ts_packet, 188) != 0) {
  240. ts_LOGf("Decode buffer is full, waiting...\n");
  241. cbuf_dump(ts->decode_buf);
  242. usleep(10000);
  243. }
  244. } else {
  245. decode_packet(ts, ts_packet);
  246. if (ts->pid_filter) {
  247. if (pidmap_get(&ts->pidmap, pid)) // PAT or allowed PIDs
  248. write(ts->output.fd, ts_packet, 188);
  249. } else {
  250. write(ts->output.fd, ts_packet, 188);
  251. }
  252. }
  253. ts_pack++;
  254. }
  255. }