blob: 3485655fa08297c1ea6d75e73e40c3b1797e676d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * dvb_demux.c - DVB kernel demux API
3 *
4 * Copyright (C) 2000-2001 Ralph Metzler <ralph@convergence.de>
5 * & Marcus Metzler <marcus@convergence.de>
6 * for convergence integrated media GmbH
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public License
10 * as published by the Free Software Foundation; either version 2.1
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 *
22 */
23
Alexey Dobriyana99bbaf2009-10-04 16:11:37 +040024#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/spinlock.h>
26#include <linux/slab.h>
27#include <linux/vmalloc.h>
28#include <linux/module.h>
29#include <linux/poll.h>
30#include <linux/string.h>
31#include <linux/crc32.h>
32#include <asm/uaccess.h>
Abylay Ospan26b9d6c2009-11-01 18:46:53 -030033#include <asm/div64.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35#include "dvb_demux.h"
36
37#define NOBUFS
38/*
39** #define DVB_DEMUX_SECTION_LOSS_LOG to monitor payload loss in the syslog
40*/
41// #define DVB_DEMUX_SECTION_LOSS_LOG
42
Abylay Ospan0d834632009-06-06 09:31:34 -030043static int dvb_demux_tscheck;
44module_param(dvb_demux_tscheck, int, 0644);
45MODULE_PARM_DESC(dvb_demux_tscheck,
46 "enable transport stream continuity and TEI check");
47
Abylay Ospan26b9d6c2009-11-01 18:46:53 -030048static int dvb_demux_speedcheck;
49module_param(dvb_demux_speedcheck, int, 0644);
50MODULE_PARM_DESC(dvb_demux_speedcheck,
51 "enable transport stream speed check");
52
Michael Krufkyae530202012-05-21 17:47:15 -030053static int dvb_demux_feed_err_pkts = 1;
54module_param(dvb_demux_feed_err_pkts, int, 0644);
55MODULE_PARM_DESC(dvb_demux_feed_err_pkts,
56 "when set to 0, drop packets with the TEI bit set (1 by default)");
57
Abylay Ospan0d834632009-06-06 09:31:34 -030058#define dprintk_tscheck(x...) do { \
59 if (dvb_demux_tscheck && printk_ratelimit()) \
60 printk(x); \
61 } while (0)
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063/******************************************************************************
64 * static inlined helper functions
65 ******************************************************************************/
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067static inline u16 section_length(const u8 *buf)
68{
Andreas Oberritterdad4a732005-09-09 13:02:26 -070069 return 3 + ((buf[1] & 0x0f) << 8) + buf[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -070070}
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072static inline u16 ts_pid(const u8 *buf)
73{
Andreas Oberritterdad4a732005-09-09 13:02:26 -070074 return ((buf[1] & 0x1f) << 8) + buf[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -070075}
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077static inline u8 payload(const u8 *tsp)
78{
Andreas Oberritterdad4a732005-09-09 13:02:26 -070079 if (!(tsp[3] & 0x10)) // no payload?
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 return 0;
Andreas Oberritterdad4a732005-09-09 13:02:26 -070081
82 if (tsp[3] & 0x20) { // adaptation field?
83 if (tsp[4] > 183) // corrupted data?
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 return 0;
85 else
Andreas Oberritterdad4a732005-09-09 13:02:26 -070086 return 184 - 1 - tsp[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 }
Andreas Oberritterdad4a732005-09-09 13:02:26 -070088
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 return 184;
90}
91
Andreas Oberritterdad4a732005-09-09 13:02:26 -070092static u32 dvb_dmx_crc32(struct dvb_demux_feed *f, const u8 *src, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
Andreas Oberritterdad4a732005-09-09 13:02:26 -070094 return (f->feed.sec.crc_val = crc32_be(f->feed.sec.crc_val, src, len));
Linus Torvalds1da177e2005-04-16 15:20:36 -070095}
96
Andreas Oberritterdad4a732005-09-09 13:02:26 -070097static void dvb_dmx_memcopy(struct dvb_demux_feed *f, u8 *d, const u8 *s,
98 size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700100 memcpy(d, s, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101}
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103/******************************************************************************
104 * Software filter functions
105 ******************************************************************************/
106
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700107static inline int dvb_dmx_swfilter_payload(struct dvb_demux_feed *feed,
108 const u8 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
110 int count = payload(buf);
111 int p;
112 //int ccok;
113 //u8 cc;
114
115 if (count == 0)
116 return -1;
117
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700118 p = 188 - count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 /*
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700121 cc = buf[3] & 0x0f;
122 ccok = ((feed->cc + 1) & 0x0f) == cc;
123 feed->cc = cc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 if (!ccok)
125 printk("missed packet!\n");
126 */
127
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700128 if (buf[1] & 0x40) // PUSI ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 feed->peslen = 0xfffa;
130
131 feed->peslen += count;
132
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700133 return feed->cb.ts(&buf[p], count, NULL, 0, &feed->feed.ts, DMX_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134}
135
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700136static int dvb_dmx_swfilter_sectionfilter(struct dvb_demux_feed *feed,
137 struct dvb_demux_filter *f)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
139 u8 neq = 0;
140 int i;
141
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700142 for (i = 0; i < DVB_DEMUX_MASK_MAX; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 u8 xor = f->filter.filter_value[i] ^ feed->feed.sec.secbuf[i];
144
145 if (f->maskandmode[i] & xor)
146 return 0;
147
148 neq |= f->maskandnotmode[i] & xor;
149 }
150
151 if (f->doneq && !neq)
152 return 0;
153
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700154 return feed->cb.sec(feed->feed.sec.secbuf, feed->feed.sec.seclen,
155 NULL, 0, &f->filter, DMX_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156}
157
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700158static inline int dvb_dmx_swfilter_section_feed(struct dvb_demux_feed *feed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
160 struct dvb_demux *demux = feed->demux;
161 struct dvb_demux_filter *f = feed->filter;
162 struct dmx_section_feed *sec = &feed->feed.sec;
163 int section_syntax_indicator;
164
165 if (!sec->is_filtering)
166 return 0;
167
168 if (!f)
169 return 0;
170
171 if (sec->check_crc) {
172 section_syntax_indicator = ((sec->secbuf[1] & 0x80) != 0);
173 if (section_syntax_indicator &&
174 demux->check_crc32(feed, sec->secbuf, sec->seclen))
175 return -1;
176 }
177
178 do {
179 if (dvb_dmx_swfilter_sectionfilter(feed, f) < 0)
180 return -1;
181 } while ((f = f->next) && sec->is_filtering);
182
183 sec->seclen = 0;
184
185 return 0;
186}
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188static void dvb_dmx_swfilter_section_new(struct dvb_demux_feed *feed)
189{
190 struct dmx_section_feed *sec = &feed->feed.sec;
191
192#ifdef DVB_DEMUX_SECTION_LOSS_LOG
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700193 if (sec->secbufp < sec->tsfeedp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 int i, n = sec->tsfeedp - sec->secbufp;
195
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700196 /*
197 * Section padding is done with 0xff bytes entirely.
198 * Due to speed reasons, we won't check all of them
199 * but just first and last.
200 */
201 if (sec->secbuf[0] != 0xff || sec->secbuf[n - 1] != 0xff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 printk("dvb_demux.c section ts padding loss: %d/%d\n",
203 n, sec->tsfeedp);
204 printk("dvb_demux.c pad data:");
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700205 for (i = 0; i < n; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 printk(" %02x", sec->secbuf[i]);
207 printk("\n");
208 }
209 }
210#endif
211
212 sec->tsfeedp = sec->secbufp = sec->seclen = 0;
213 sec->secbuf = sec->secbuf_base;
214}
215
216/*
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700217 * Losless Section Demux 1.4.1 by Emard
218 * Valsecchi Patrick:
219 * - middle of section A (no PUSI)
220 * - end of section A and start of section B
221 * (with PUSI pointing to the start of the second section)
222 *
223 * In this case, without feed->pusi_seen you'll receive a garbage section
224 * consisting of the end of section A. Basically because tsfeedp
225 * is incemented and the use=0 condition is not raised
226 * when the second packet arrives.
227 *
228 * Fix:
229 * when demux is started, let feed->pusi_seen = 0 to
230 * prevent initial feeding of garbage from the end of
231 * previous section. When you for the first time see PUSI=1
232 * then set feed->pusi_seen = 1
233 */
234static int dvb_dmx_swfilter_section_copy_dump(struct dvb_demux_feed *feed,
235 const u8 *buf, u8 len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
237 struct dvb_demux *demux = feed->demux;
238 struct dmx_section_feed *sec = &feed->feed.sec;
239 u16 limit, seclen, n;
240
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700241 if (sec->tsfeedp >= DMX_MAX_SECFEED_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 return 0;
243
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700244 if (sec->tsfeedp + len > DMX_MAX_SECFEED_SIZE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245#ifdef DVB_DEMUX_SECTION_LOSS_LOG
246 printk("dvb_demux.c section buffer full loss: %d/%d\n",
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700247 sec->tsfeedp + len - DMX_MAX_SECFEED_SIZE,
248 DMX_MAX_SECFEED_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249#endif
250 len = DMX_MAX_SECFEED_SIZE - sec->tsfeedp;
251 }
252
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700253 if (len <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 return 0;
255
256 demux->memcopy(feed, sec->secbuf_base + sec->tsfeedp, buf, len);
257 sec->tsfeedp += len;
258
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700259 /*
260 * Dump all the sections we can find in the data (Emard)
261 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 limit = sec->tsfeedp;
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700263 if (limit > DMX_MAX_SECFEED_SIZE)
264 return -1; /* internal error should never happen */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 /* to be sure always set secbuf */
267 sec->secbuf = sec->secbuf_base + sec->secbufp;
268
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700269 for (n = 0; sec->secbufp + 2 < limit; n++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 seclen = section_length(sec->secbuf);
Mark Adamsb3967d62005-11-08 21:35:50 -0800271 if (seclen <= 0 || seclen > DMX_MAX_SECTION_SIZE
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700272 || seclen + sec->secbufp > limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 return 0;
274 sec->seclen = seclen;
275 sec->crc_val = ~0;
276 /* dump [secbuf .. secbuf+seclen) */
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700277 if (feed->pusi_seen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 dvb_dmx_swfilter_section_feed(feed);
279#ifdef DVB_DEMUX_SECTION_LOSS_LOG
280 else
281 printk("dvb_demux.c pusi not seen, discarding section data\n");
282#endif
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700283 sec->secbufp += seclen; /* secbufp and secbuf moving together is */
284 sec->secbuf += seclen; /* redundant but saves pointer arithmetic */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 }
286
287 return 0;
288}
289
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700290static int dvb_dmx_swfilter_section_packet(struct dvb_demux_feed *feed,
291 const u8 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
293 u8 p, count;
294 int ccok, dc_i = 0;
295 u8 cc;
296
297 count = payload(buf);
298
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700299 if (count == 0) /* count == 0 if no payload or out of range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 return -1;
301
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700302 p = 188 - count; /* payload start */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304 cc = buf[3] & 0x0f;
305 ccok = ((feed->cc + 1) & 0x0f) == cc;
306 feed->cc = cc;
307
308 if (buf[3] & 0x20) {
309 /* adaption field present, check for discontinuity_indicator */
310 if ((buf[4] > 0) && (buf[5] & 0x80))
311 dc_i = 1;
312 }
313
314 if (!ccok || dc_i) {
315#ifdef DVB_DEMUX_SECTION_LOSS_LOG
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700316 printk("dvb_demux.c discontinuity detected %d bytes lost\n",
317 count);
318 /*
319 * those bytes under sume circumstances will again be reported
320 * in the following dvb_dmx_swfilter_section_new
321 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322#endif
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700323 /*
324 * Discontinuity detected. Reset pusi_seen = 0 to
325 * stop feeding of suspicious data until next PUSI=1 arrives
326 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 feed->pusi_seen = 0;
328 dvb_dmx_swfilter_section_new(feed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 }
330
331 if (buf[1] & 0x40) {
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700332 /* PUSI=1 (is set), section boundary is here */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 if (count > 1 && buf[p] < count) {
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700334 const u8 *before = &buf[p + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 u8 before_len = buf[p];
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700336 const u8 *after = &before[before_len];
337 u8 after_len = count - 1 - before_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700339 dvb_dmx_swfilter_section_copy_dump(feed, before,
340 before_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 /* before start of new section, set pusi_seen = 1 */
342 feed->pusi_seen = 1;
343 dvb_dmx_swfilter_section_new(feed);
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700344 dvb_dmx_swfilter_section_copy_dump(feed, after,
345 after_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 }
347#ifdef DVB_DEMUX_SECTION_LOSS_LOG
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700348 else if (count > 0)
349 printk("dvb_demux.c PUSI=1 but %d bytes lost\n", count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350#endif
351 } else {
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700352 /* PUSI=0 (is not set), no section boundary */
353 dvb_dmx_swfilter_section_copy_dump(feed, &buf[p], count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 }
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 return 0;
357}
358
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700359static inline void dvb_dmx_swfilter_packet_type(struct dvb_demux_feed *feed,
360 const u8 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700362 switch (feed->type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 case DMX_TYPE_TS:
364 if (!feed->feed.ts.is_filtering)
365 break;
366 if (feed->ts_type & TS_PACKET) {
367 if (feed->ts_type & TS_PAYLOAD_ONLY)
368 dvb_dmx_swfilter_payload(feed, buf);
369 else
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700370 feed->cb.ts(buf, 188, NULL, 0, &feed->feed.ts,
371 DMX_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 }
373 if (feed->ts_type & TS_DECODER)
374 if (feed->demux->write_to_decoder)
375 feed->demux->write_to_decoder(feed, buf, 188);
376 break;
377
378 case DMX_TYPE_SEC:
379 if (!feed->feed.sec.is_filtering)
380 break;
381 if (dvb_dmx_swfilter_section_packet(feed, buf) < 0)
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700382 feed->feed.sec.seclen = feed->feed.sec.secbufp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 break;
384
385 default:
386 break;
387 }
388}
389
390#define DVR_FEED(f) \
391 (((f)->type == DMX_TYPE_TS) && \
392 ((f)->feed.ts.is_filtering) && \
Andreas Oberritter4a24ce32008-04-22 14:45:47 -0300393 (((f)->ts_type & (TS_PACKET | TS_DEMUX)) == TS_PACKET))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395static void dvb_dmx_swfilter_packet(struct dvb_demux *demux, const u8 *buf)
396{
397 struct dvb_demux_feed *feed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 u16 pid = ts_pid(buf);
399 int dvr_done = 0;
400
Abylay Ospan26b9d6c2009-11-01 18:46:53 -0300401 if (dvb_demux_speedcheck) {
402 struct timespec cur_time, delta_time;
403 u64 speed_bytes, speed_timedelta;
404
405 demux->speed_pkts_cnt++;
406
407 /* show speed every SPEED_PKTS_INTERVAL packets */
408 if (!(demux->speed_pkts_cnt % SPEED_PKTS_INTERVAL)) {
409 cur_time = current_kernel_time();
410
411 if (demux->speed_last_time.tv_sec != 0 &&
412 demux->speed_last_time.tv_nsec != 0) {
413 delta_time = timespec_sub(cur_time,
414 demux->speed_last_time);
415 speed_bytes = (u64)demux->speed_pkts_cnt
416 * 188 * 8;
417 /* convert to 1024 basis */
418 speed_bytes = 1000 * div64_u64(speed_bytes,
419 1024);
420 speed_timedelta =
421 (u64)timespec_to_ns(&delta_time);
422 speed_timedelta = div64_u64(speed_timedelta,
423 1000000); /* nsec -> usec */
424 printk(KERN_INFO "TS speed %llu Kbits/sec \n",
425 div64_u64(speed_bytes,
426 speed_timedelta));
Peter Senna Tschudinc2c90362012-09-07 11:24:44 -0300427 }
Abylay Ospan26b9d6c2009-11-01 18:46:53 -0300428
429 demux->speed_last_time = cur_time;
430 demux->speed_pkts_cnt = 0;
Peter Senna Tschudinc2c90362012-09-07 11:24:44 -0300431 }
432 }
Abylay Ospan26b9d6c2009-11-01 18:46:53 -0300433
Michael Krufkyae530202012-05-21 17:47:15 -0300434 if (buf[1] & 0x80) {
435 dprintk_tscheck("TEI detected. "
436 "PID=0x%x data1=0x%x\n",
437 pid, buf[1]);
438 /* data in this packet cant be trusted - drop it unless
439 * module option dvb_demux_feed_err_pkts is set */
440 if (!dvb_demux_feed_err_pkts)
441 return;
442 } else /* if TEI bit is set, pid may be wrong- skip pkt counter */
John Smith5144f5b2013-03-05 18:02:43 -0300443 if (demux->cnt_storage && dvb_demux_tscheck) {
444 /* check pkt counter */
445 if (pid < MAX_PID) {
446 if (buf[3] & 0x10)
447 demux->cnt_storage[pid] =
448 (demux->cnt_storage[pid] + 1) & 0xf;
449
450 if ((buf[3] & 0xf) != demux->cnt_storage[pid]) {
451 dprintk_tscheck("TS packet counter mismatch. PID=0x%x expected 0x%x got 0x%x\n",
Abylay Ospan0d834632009-06-06 09:31:34 -0300452 pid, demux->cnt_storage[pid],
453 buf[3] & 0xf);
John Smith5144f5b2013-03-05 18:02:43 -0300454 demux->cnt_storage[pid] = buf[3] & 0xf;
455 }
456 }
457 /* end check */
Peter Senna Tschudinc2c90362012-09-07 11:24:44 -0300458 }
Abylay Ospan0d834632009-06-06 09:31:34 -0300459
Trent Piepho79482612007-10-10 05:37:39 -0300460 list_for_each_entry(feed, &demux->feed_list, list_head) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 if ((feed->pid != pid) && (feed->pid != 0x2000))
462 continue;
463
464 /* copy each packet only once to the dvr device, even
465 * if a PID is in multiple filters (e.g. video + PCR) */
466 if ((DVR_FEED(feed)) && (dvr_done++))
467 continue;
468
Andreas Oberrittera4afd652009-07-14 20:48:37 -0300469 if (feed->pid == pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 dvb_dmx_swfilter_packet_type(feed, buf);
Andreas Oberrittera4afd652009-07-14 20:48:37 -0300471 else if (feed->pid == 0x2000)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 feed->cb.ts(buf, 188, NULL, 0, &feed->feed.ts, DMX_OK);
473 }
474}
475
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700476void dvb_dmx_swfilter_packets(struct dvb_demux *demux, const u8 *buf,
477 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
Mauro Carvalho Chehab28100162009-02-16 15:27:44 -0300479 spin_lock(&demux->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
481 while (count--) {
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700482 if (buf[0] == 0x47)
483 dvb_dmx_swfilter_packet(demux, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 buf += 188;
485 }
486
Mauro Carvalho Chehab28100162009-02-16 15:27:44 -0300487 spin_unlock(&demux->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700490EXPORT_SYMBOL(dvb_dmx_swfilter_packets);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Marko Ristola38e009a2011-04-08 12:40:51 -0300492static inline int find_next_packet(const u8 *buf, int pos, size_t count,
493 const int pktsize)
494{
495 int start = pos, lost;
496
497 while (pos < count) {
498 if (buf[pos] == 0x47 ||
499 (pktsize == 204 && buf[pos] == 0xB8))
500 break;
501 pos++;
502 }
503
504 lost = pos - start;
505 if (lost) {
506 /* This garbage is part of a valid packet? */
507 int backtrack = pos - pktsize;
508 if (backtrack >= 0 && (buf[backtrack] == 0x47 ||
509 (pktsize == 204 && buf[backtrack] == 0xB8)))
510 return backtrack;
511 }
512
513 return pos;
514}
515
516/* Filter all pktsize= 188 or 204 sized packets and skip garbage. */
517static inline void _dvb_dmx_swfilter(struct dvb_demux *demux, const u8 *buf,
518 size_t count, const int pktsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519{
520 int p = 0, i, j;
Marko Ristola38e009a2011-04-08 12:40:51 -0300521 const u8 *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Mauro Carvalho Chehab28100162009-02-16 15:27:44 -0300523 spin_lock(&demux->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Marko Ristola38e009a2011-04-08 12:40:51 -0300525 if (demux->tsbufp) { /* tsbuf[0] is now 0x47. */
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700526 i = demux->tsbufp;
Marko Ristola38e009a2011-04-08 12:40:51 -0300527 j = pktsize - i;
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700528 if (count < j) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 memcpy(&demux->tsbuf[i], buf, count);
530 demux->tsbufp += count;
531 goto bailout;
532 }
533 memcpy(&demux->tsbuf[i], buf, j);
Marko Ristola38e009a2011-04-08 12:40:51 -0300534 if (demux->tsbuf[0] == 0x47) /* double check */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 dvb_dmx_swfilter_packet(demux, demux->tsbuf);
536 demux->tsbufp = 0;
537 p += j;
538 }
539
Marko Ristola38e009a2011-04-08 12:40:51 -0300540 while (1) {
541 p = find_next_packet(buf, p, count, pktsize);
542 if (p >= count)
543 break;
544 if (count - p < pktsize)
545 break;
546
547 q = &buf[p];
548
549 if (pktsize == 204 && (*q == 0xB8)) {
550 memcpy(demux->tsbuf, q, 188);
551 demux->tsbuf[0] = 0x47;
552 q = demux->tsbuf;
553 }
554 dvb_dmx_swfilter_packet(demux, q);
555 p += pktsize;
556 }
557
558 i = count - p;
559 if (i) {
560 memcpy(demux->tsbuf, &buf[p], i);
561 demux->tsbufp = i;
562 if (pktsize == 204 && demux->tsbuf[0] == 0xB8)
563 demux->tsbuf[0] = 0x47;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 }
565
566bailout:
Mauro Carvalho Chehab28100162009-02-16 15:27:44 -0300567 spin_unlock(&demux->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568}
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700569
Marko Ristola38e009a2011-04-08 12:40:51 -0300570void dvb_dmx_swfilter(struct dvb_demux *demux, const u8 *buf, size_t count)
571{
572 _dvb_dmx_swfilter(demux, buf, count, 188);
573}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574EXPORT_SYMBOL(dvb_dmx_swfilter);
575
576void dvb_dmx_swfilter_204(struct dvb_demux *demux, const u8 *buf, size_t count)
577{
Marko Ristola38e009a2011-04-08 12:40:51 -0300578 _dvb_dmx_swfilter(demux, buf, count, 204);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579}
580EXPORT_SYMBOL(dvb_dmx_swfilter_204);
581
Michael Krufky8e156702011-08-27 18:46:37 -0300582void dvb_dmx_swfilter_raw(struct dvb_demux *demux, const u8 *buf, size_t count)
583{
584 spin_lock(&demux->lock);
585
586 demux->feed->cb.ts(buf, count, NULL, 0, &demux->feed->feed.ts, DMX_OK);
587
588 spin_unlock(&demux->lock);
589}
590EXPORT_SYMBOL(dvb_dmx_swfilter_raw);
591
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700592static struct dvb_demux_filter *dvb_dmx_filter_alloc(struct dvb_demux *demux)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
594 int i;
595
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700596 for (i = 0; i < demux->filternum; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 if (demux->filter[i].state == DMX_STATE_FREE)
598 break;
599
600 if (i == demux->filternum)
601 return NULL;
602
603 demux->filter[i].state = DMX_STATE_ALLOCATED;
604
605 return &demux->filter[i];
606}
607
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700608static struct dvb_demux_feed *dvb_dmx_feed_alloc(struct dvb_demux *demux)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609{
610 int i;
611
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700612 for (i = 0; i < demux->feednum; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 if (demux->feed[i].state == DMX_STATE_FREE)
614 break;
615
616 if (i == demux->feednum)
617 return NULL;
618
619 demux->feed[i].state = DMX_STATE_ALLOCATED;
620
621 return &demux->feed[i];
622}
623
624static int dvb_demux_feed_find(struct dvb_demux_feed *feed)
625{
626 struct dvb_demux_feed *entry;
627
628 list_for_each_entry(entry, &feed->demux->feed_list, list_head)
629 if (entry == feed)
630 return 1;
631
632 return 0;
633}
634
635static void dvb_demux_feed_add(struct dvb_demux_feed *feed)
636{
637 spin_lock_irq(&feed->demux->lock);
638 if (dvb_demux_feed_find(feed)) {
639 printk(KERN_ERR "%s: feed already in list (type=%x state=%x pid=%x)\n",
Harvey Harrison46b4f7c2008-04-08 23:20:00 -0300640 __func__, feed->type, feed->state, feed->pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 goto out;
642 }
643
644 list_add(&feed->list_head, &feed->demux->feed_list);
645out:
646 spin_unlock_irq(&feed->demux->lock);
647}
648
649static void dvb_demux_feed_del(struct dvb_demux_feed *feed)
650{
651 spin_lock_irq(&feed->demux->lock);
652 if (!(dvb_demux_feed_find(feed))) {
653 printk(KERN_ERR "%s: feed not in list (type=%x state=%x pid=%x)\n",
Harvey Harrison46b4f7c2008-04-08 23:20:00 -0300654 __func__, feed->type, feed->state, feed->pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 goto out;
656 }
657
658 list_del(&feed->list_head);
659out:
660 spin_unlock_irq(&feed->demux->lock);
661}
662
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700663static int dmx_ts_feed_set(struct dmx_ts_feed *ts_feed, u16 pid, int ts_type,
664 enum dmx_ts_pes pes_type,
665 size_t circular_buffer_size, struct timespec timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700667 struct dvb_demux_feed *feed = (struct dvb_demux_feed *)ts_feed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 struct dvb_demux *demux = feed->demux;
669
670 if (pid > DMX_MAX_PID)
671 return -EINVAL;
672
Ingo Molnar3593cab2006-02-07 06:49:14 -0200673 if (mutex_lock_interruptible(&demux->mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 return -ERESTARTSYS;
675
676 if (ts_type & TS_DECODER) {
Mauro Carvalho Chehabfde04ab2013-04-04 13:25:30 -0300677 if (pes_type >= DMX_PES_OTHER) {
Ingo Molnar3593cab2006-02-07 06:49:14 -0200678 mutex_unlock(&demux->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 return -EINVAL;
680 }
681
682 if (demux->pesfilter[pes_type] &&
683 demux->pesfilter[pes_type] != feed) {
Ingo Molnar3593cab2006-02-07 06:49:14 -0200684 mutex_unlock(&demux->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 return -EINVAL;
686 }
687
688 demux->pesfilter[pes_type] = feed;
689 demux->pids[pes_type] = pid;
690 }
691
692 dvb_demux_feed_add(feed);
693
694 feed->pid = pid;
695 feed->buffer_size = circular_buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 feed->timeout = timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 feed->ts_type = ts_type;
698 feed->pes_type = pes_type;
699
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 if (feed->buffer_size) {
701#ifdef NOBUFS
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700702 feed->buffer = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703#else
704 feed->buffer = vmalloc(feed->buffer_size);
705 if (!feed->buffer) {
Ingo Molnar3593cab2006-02-07 06:49:14 -0200706 mutex_unlock(&demux->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 return -ENOMEM;
708 }
709#endif
710 }
711
712 feed->state = DMX_STATE_READY;
Ingo Molnar3593cab2006-02-07 06:49:14 -0200713 mutex_unlock(&demux->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
715 return 0;
716}
717
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700718static int dmx_ts_feed_start_filtering(struct dmx_ts_feed *ts_feed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700720 struct dvb_demux_feed *feed = (struct dvb_demux_feed *)ts_feed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 struct dvb_demux *demux = feed->demux;
722 int ret;
723
Ingo Molnar3593cab2006-02-07 06:49:14 -0200724 if (mutex_lock_interruptible(&demux->mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 return -ERESTARTSYS;
726
727 if (feed->state != DMX_STATE_READY || feed->type != DMX_TYPE_TS) {
Ingo Molnar3593cab2006-02-07 06:49:14 -0200728 mutex_unlock(&demux->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 return -EINVAL;
730 }
731
732 if (!demux->start_feed) {
Ingo Molnar3593cab2006-02-07 06:49:14 -0200733 mutex_unlock(&demux->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 return -ENODEV;
735 }
736
737 if ((ret = demux->start_feed(feed)) < 0) {
Ingo Molnar3593cab2006-02-07 06:49:14 -0200738 mutex_unlock(&demux->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 return ret;
740 }
741
742 spin_lock_irq(&demux->lock);
743 ts_feed->is_filtering = 1;
744 feed->state = DMX_STATE_GO;
745 spin_unlock_irq(&demux->lock);
Ingo Molnar3593cab2006-02-07 06:49:14 -0200746 mutex_unlock(&demux->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748 return 0;
749}
750
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700751static int dmx_ts_feed_stop_filtering(struct dmx_ts_feed *ts_feed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752{
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700753 struct dvb_demux_feed *feed = (struct dvb_demux_feed *)ts_feed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 struct dvb_demux *demux = feed->demux;
755 int ret;
756
Simon Arlottc2788502007-03-10 06:21:25 -0300757 mutex_lock(&demux->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
759 if (feed->state < DMX_STATE_GO) {
Ingo Molnar3593cab2006-02-07 06:49:14 -0200760 mutex_unlock(&demux->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 return -EINVAL;
762 }
763
764 if (!demux->stop_feed) {
Ingo Molnar3593cab2006-02-07 06:49:14 -0200765 mutex_unlock(&demux->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 return -ENODEV;
767 }
768
769 ret = demux->stop_feed(feed);
770
771 spin_lock_irq(&demux->lock);
772 ts_feed->is_filtering = 0;
773 feed->state = DMX_STATE_ALLOCATED;
774 spin_unlock_irq(&demux->lock);
Ingo Molnar3593cab2006-02-07 06:49:14 -0200775 mutex_unlock(&demux->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
777 return ret;
778}
779
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700780static int dvbdmx_allocate_ts_feed(struct dmx_demux *dmx,
781 struct dmx_ts_feed **ts_feed,
782 dmx_ts_cb callback)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783{
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700784 struct dvb_demux *demux = (struct dvb_demux *)dmx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 struct dvb_demux_feed *feed;
786
Ingo Molnar3593cab2006-02-07 06:49:14 -0200787 if (mutex_lock_interruptible(&demux->mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 return -ERESTARTSYS;
789
790 if (!(feed = dvb_dmx_feed_alloc(demux))) {
Ingo Molnar3593cab2006-02-07 06:49:14 -0200791 mutex_unlock(&demux->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 return -EBUSY;
793 }
794
795 feed->type = DMX_TYPE_TS;
796 feed->cb.ts = callback;
797 feed->demux = demux;
798 feed->pid = 0xffff;
799 feed->peslen = 0xfffa;
800 feed->buffer = NULL;
801
802 (*ts_feed) = &feed->feed.ts;
803 (*ts_feed)->parent = dmx;
804 (*ts_feed)->priv = NULL;
805 (*ts_feed)->is_filtering = 0;
806 (*ts_feed)->start_filtering = dmx_ts_feed_start_filtering;
807 (*ts_feed)->stop_filtering = dmx_ts_feed_stop_filtering;
808 (*ts_feed)->set = dmx_ts_feed_set;
809
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 if (!(feed->filter = dvb_dmx_filter_alloc(demux))) {
811 feed->state = DMX_STATE_FREE;
Ingo Molnar3593cab2006-02-07 06:49:14 -0200812 mutex_unlock(&demux->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 return -EBUSY;
814 }
815
816 feed->filter->type = DMX_TYPE_TS;
817 feed->filter->feed = feed;
818 feed->filter->state = DMX_STATE_READY;
819
Ingo Molnar3593cab2006-02-07 06:49:14 -0200820 mutex_unlock(&demux->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822 return 0;
823}
824
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700825static int dvbdmx_release_ts_feed(struct dmx_demux *dmx,
826 struct dmx_ts_feed *ts_feed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827{
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700828 struct dvb_demux *demux = (struct dvb_demux *)dmx;
829 struct dvb_demux_feed *feed = (struct dvb_demux_feed *)ts_feed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
Simon Arlottc2788502007-03-10 06:21:25 -0300831 mutex_lock(&demux->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
833 if (feed->state == DMX_STATE_FREE) {
Ingo Molnar3593cab2006-02-07 06:49:14 -0200834 mutex_unlock(&demux->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 return -EINVAL;
836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837#ifndef NOBUFS
838 vfree(feed->buffer);
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700839 feed->buffer = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840#endif
841
842 feed->state = DMX_STATE_FREE;
843 feed->filter->state = DMX_STATE_FREE;
844
845 dvb_demux_feed_del(feed);
846
847 feed->pid = 0xffff;
848
Mauro Carvalho Chehabfde04ab2013-04-04 13:25:30 -0300849 if (feed->ts_type & TS_DECODER && feed->pes_type < DMX_PES_OTHER)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 demux->pesfilter[feed->pes_type] = NULL;
851
Ingo Molnar3593cab2006-02-07 06:49:14 -0200852 mutex_unlock(&demux->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 return 0;
854}
855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856/******************************************************************************
857 * dmx_section_feed API calls
858 ******************************************************************************/
859
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700860static int dmx_section_feed_allocate_filter(struct dmx_section_feed *feed,
861 struct dmx_section_filter **filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700863 struct dvb_demux_feed *dvbdmxfeed = (struct dvb_demux_feed *)feed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 struct dvb_demux *dvbdemux = dvbdmxfeed->demux;
865 struct dvb_demux_filter *dvbdmxfilter;
866
Ingo Molnar3593cab2006-02-07 06:49:14 -0200867 if (mutex_lock_interruptible(&dvbdemux->mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 return -ERESTARTSYS;
869
870 dvbdmxfilter = dvb_dmx_filter_alloc(dvbdemux);
871 if (!dvbdmxfilter) {
Ingo Molnar3593cab2006-02-07 06:49:14 -0200872 mutex_unlock(&dvbdemux->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 return -EBUSY;
874 }
875
876 spin_lock_irq(&dvbdemux->lock);
877 *filter = &dvbdmxfilter->filter;
878 (*filter)->parent = feed;
879 (*filter)->priv = NULL;
880 dvbdmxfilter->feed = dvbdmxfeed;
881 dvbdmxfilter->type = DMX_TYPE_SEC;
882 dvbdmxfilter->state = DMX_STATE_READY;
883 dvbdmxfilter->next = dvbdmxfeed->filter;
884 dvbdmxfeed->filter = dvbdmxfilter;
885 spin_unlock_irq(&dvbdemux->lock);
886
Ingo Molnar3593cab2006-02-07 06:49:14 -0200887 mutex_unlock(&dvbdemux->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 return 0;
889}
890
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700891static int dmx_section_feed_set(struct dmx_section_feed *feed,
892 u16 pid, size_t circular_buffer_size,
893 int check_crc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894{
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700895 struct dvb_demux_feed *dvbdmxfeed = (struct dvb_demux_feed *)feed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 struct dvb_demux *dvbdmx = dvbdmxfeed->demux;
897
898 if (pid > 0x1fff)
899 return -EINVAL;
900
Ingo Molnar3593cab2006-02-07 06:49:14 -0200901 if (mutex_lock_interruptible(&dvbdmx->mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 return -ERESTARTSYS;
903
904 dvb_demux_feed_add(dvbdmxfeed);
905
906 dvbdmxfeed->pid = pid;
907 dvbdmxfeed->buffer_size = circular_buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 dvbdmxfeed->feed.sec.check_crc = check_crc;
909
910#ifdef NOBUFS
911 dvbdmxfeed->buffer = NULL;
912#else
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700913 dvbdmxfeed->buffer = vmalloc(dvbdmxfeed->buffer_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 if (!dvbdmxfeed->buffer) {
Ingo Molnar3593cab2006-02-07 06:49:14 -0200915 mutex_unlock(&dvbdmx->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 return -ENOMEM;
917 }
918#endif
919
920 dvbdmxfeed->state = DMX_STATE_READY;
Ingo Molnar3593cab2006-02-07 06:49:14 -0200921 mutex_unlock(&dvbdmx->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 return 0;
923}
924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925static void prepare_secfilters(struct dvb_demux_feed *dvbdmxfeed)
926{
927 int i;
928 struct dvb_demux_filter *f;
929 struct dmx_section_filter *sf;
930 u8 mask, mode, doneq;
931
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700932 if (!(f = dvbdmxfeed->filter))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 return;
934 do {
935 sf = &f->filter;
936 doneq = 0;
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700937 for (i = 0; i < DVB_DEMUX_MASK_MAX; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 mode = sf->filter_mode[i];
939 mask = sf->filter_mask[i];
940 f->maskandmode[i] = mask & mode;
941 doneq |= f->maskandnotmode[i] = mask & ~mode;
942 }
943 f->doneq = doneq ? 1 : 0;
944 } while ((f = f->next));
945}
946
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947static int dmx_section_feed_start_filtering(struct dmx_section_feed *feed)
948{
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700949 struct dvb_demux_feed *dvbdmxfeed = (struct dvb_demux_feed *)feed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 struct dvb_demux *dvbdmx = dvbdmxfeed->demux;
951 int ret;
952
Ingo Molnar3593cab2006-02-07 06:49:14 -0200953 if (mutex_lock_interruptible(&dvbdmx->mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 return -ERESTARTSYS;
955
956 if (feed->is_filtering) {
Ingo Molnar3593cab2006-02-07 06:49:14 -0200957 mutex_unlock(&dvbdmx->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 return -EBUSY;
959 }
960
961 if (!dvbdmxfeed->filter) {
Ingo Molnar3593cab2006-02-07 06:49:14 -0200962 mutex_unlock(&dvbdmx->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 return -EINVAL;
964 }
965
966 dvbdmxfeed->feed.sec.tsfeedp = 0;
967 dvbdmxfeed->feed.sec.secbuf = dvbdmxfeed->feed.sec.secbuf_base;
968 dvbdmxfeed->feed.sec.secbufp = 0;
969 dvbdmxfeed->feed.sec.seclen = 0;
970
971 if (!dvbdmx->start_feed) {
Ingo Molnar3593cab2006-02-07 06:49:14 -0200972 mutex_unlock(&dvbdmx->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 return -ENODEV;
974 }
975
976 prepare_secfilters(dvbdmxfeed);
977
978 if ((ret = dvbdmx->start_feed(dvbdmxfeed)) < 0) {
Ingo Molnar3593cab2006-02-07 06:49:14 -0200979 mutex_unlock(&dvbdmx->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 return ret;
981 }
982
983 spin_lock_irq(&dvbdmx->lock);
984 feed->is_filtering = 1;
985 dvbdmxfeed->state = DMX_STATE_GO;
986 spin_unlock_irq(&dvbdmx->lock);
987
Ingo Molnar3593cab2006-02-07 06:49:14 -0200988 mutex_unlock(&dvbdmx->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 return 0;
990}
991
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700992static int dmx_section_feed_stop_filtering(struct dmx_section_feed *feed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993{
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700994 struct dvb_demux_feed *dvbdmxfeed = (struct dvb_demux_feed *)feed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 struct dvb_demux *dvbdmx = dvbdmxfeed->demux;
996 int ret;
997
Simon Arlottc2788502007-03-10 06:21:25 -0300998 mutex_lock(&dvbdmx->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
1000 if (!dvbdmx->stop_feed) {
Ingo Molnar3593cab2006-02-07 06:49:14 -02001001 mutex_unlock(&dvbdmx->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 return -ENODEV;
1003 }
1004
1005 ret = dvbdmx->stop_feed(dvbdmxfeed);
1006
1007 spin_lock_irq(&dvbdmx->lock);
1008 dvbdmxfeed->state = DMX_STATE_READY;
1009 feed->is_filtering = 0;
1010 spin_unlock_irq(&dvbdmx->lock);
1011
Ingo Molnar3593cab2006-02-07 06:49:14 -02001012 mutex_unlock(&dvbdmx->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 return ret;
1014}
1015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016static int dmx_section_feed_release_filter(struct dmx_section_feed *feed,
Andreas Oberritterdad4a732005-09-09 13:02:26 -07001017 struct dmx_section_filter *filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018{
Andreas Oberritterdad4a732005-09-09 13:02:26 -07001019 struct dvb_demux_filter *dvbdmxfilter = (struct dvb_demux_filter *)filter, *f;
1020 struct dvb_demux_feed *dvbdmxfeed = (struct dvb_demux_feed *)feed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 struct dvb_demux *dvbdmx = dvbdmxfeed->demux;
1022
Simon Arlottc2788502007-03-10 06:21:25 -03001023 mutex_lock(&dvbdmx->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
1025 if (dvbdmxfilter->feed != dvbdmxfeed) {
Ingo Molnar3593cab2006-02-07 06:49:14 -02001026 mutex_unlock(&dvbdmx->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 return -EINVAL;
1028 }
1029
1030 if (feed->is_filtering)
1031 feed->stop_filtering(feed);
1032
1033 spin_lock_irq(&dvbdmx->lock);
1034 f = dvbdmxfeed->filter;
1035
1036 if (f == dvbdmxfilter) {
1037 dvbdmxfeed->filter = dvbdmxfilter->next;
1038 } else {
Andreas Oberritterdad4a732005-09-09 13:02:26 -07001039 while (f->next != dvbdmxfilter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 f = f->next;
1041 f->next = f->next->next;
1042 }
1043
1044 dvbdmxfilter->state = DMX_STATE_FREE;
1045 spin_unlock_irq(&dvbdmx->lock);
Ingo Molnar3593cab2006-02-07 06:49:14 -02001046 mutex_unlock(&dvbdmx->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 return 0;
1048}
1049
1050static int dvbdmx_allocate_section_feed(struct dmx_demux *demux,
1051 struct dmx_section_feed **feed,
1052 dmx_section_cb callback)
1053{
Andreas Oberritterdad4a732005-09-09 13:02:26 -07001054 struct dvb_demux *dvbdmx = (struct dvb_demux *)demux;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 struct dvb_demux_feed *dvbdmxfeed;
1056
Ingo Molnar3593cab2006-02-07 06:49:14 -02001057 if (mutex_lock_interruptible(&dvbdmx->mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 return -ERESTARTSYS;
1059
1060 if (!(dvbdmxfeed = dvb_dmx_feed_alloc(dvbdmx))) {
Ingo Molnar3593cab2006-02-07 06:49:14 -02001061 mutex_unlock(&dvbdmx->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 return -EBUSY;
1063 }
1064
1065 dvbdmxfeed->type = DMX_TYPE_SEC;
1066 dvbdmxfeed->cb.sec = callback;
1067 dvbdmxfeed->demux = dvbdmx;
1068 dvbdmxfeed->pid = 0xffff;
1069 dvbdmxfeed->feed.sec.secbuf = dvbdmxfeed->feed.sec.secbuf_base;
1070 dvbdmxfeed->feed.sec.secbufp = dvbdmxfeed->feed.sec.seclen = 0;
1071 dvbdmxfeed->feed.sec.tsfeedp = 0;
1072 dvbdmxfeed->filter = NULL;
1073 dvbdmxfeed->buffer = NULL;
1074
Andreas Oberritterdad4a732005-09-09 13:02:26 -07001075 (*feed) = &dvbdmxfeed->feed.sec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 (*feed)->is_filtering = 0;
1077 (*feed)->parent = demux;
1078 (*feed)->priv = NULL;
1079
1080 (*feed)->set = dmx_section_feed_set;
1081 (*feed)->allocate_filter = dmx_section_feed_allocate_filter;
1082 (*feed)->start_filtering = dmx_section_feed_start_filtering;
1083 (*feed)->stop_filtering = dmx_section_feed_stop_filtering;
1084 (*feed)->release_filter = dmx_section_feed_release_filter;
1085
Ingo Molnar3593cab2006-02-07 06:49:14 -02001086 mutex_unlock(&dvbdmx->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 return 0;
1088}
1089
1090static int dvbdmx_release_section_feed(struct dmx_demux *demux,
1091 struct dmx_section_feed *feed)
1092{
Andreas Oberritterdad4a732005-09-09 13:02:26 -07001093 struct dvb_demux_feed *dvbdmxfeed = (struct dvb_demux_feed *)feed;
1094 struct dvb_demux *dvbdmx = (struct dvb_demux *)demux;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
Simon Arlottc2788502007-03-10 06:21:25 -03001096 mutex_lock(&dvbdmx->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
Andreas Oberritterdad4a732005-09-09 13:02:26 -07001098 if (dvbdmxfeed->state == DMX_STATE_FREE) {
Ingo Molnar3593cab2006-02-07 06:49:14 -02001099 mutex_unlock(&dvbdmx->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 return -EINVAL;
1101 }
1102#ifndef NOBUFS
1103 vfree(dvbdmxfeed->buffer);
Andreas Oberritterdad4a732005-09-09 13:02:26 -07001104 dvbdmxfeed->buffer = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105#endif
Andreas Oberritterdad4a732005-09-09 13:02:26 -07001106 dvbdmxfeed->state = DMX_STATE_FREE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
1108 dvb_demux_feed_del(dvbdmxfeed);
1109
1110 dvbdmxfeed->pid = 0xffff;
1111
Ingo Molnar3593cab2006-02-07 06:49:14 -02001112 mutex_unlock(&dvbdmx->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 return 0;
1114}
1115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116/******************************************************************************
1117 * dvb_demux kernel data API calls
1118 ******************************************************************************/
1119
1120static int dvbdmx_open(struct dmx_demux *demux)
1121{
Andreas Oberritterdad4a732005-09-09 13:02:26 -07001122 struct dvb_demux *dvbdemux = (struct dvb_demux *)demux;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
1124 if (dvbdemux->users >= MAX_DVB_DEMUX_USERS)
1125 return -EUSERS;
1126
1127 dvbdemux->users++;
1128 return 0;
1129}
1130
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131static int dvbdmx_close(struct dmx_demux *demux)
1132{
Andreas Oberritterdad4a732005-09-09 13:02:26 -07001133 struct dvb_demux *dvbdemux = (struct dvb_demux *)demux;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
1135 if (dvbdemux->users == 0)
1136 return -ENODEV;
1137
1138 dvbdemux->users--;
1139 //FIXME: release any unneeded resources if users==0
1140 return 0;
1141}
1142
Al Viro947a0802008-06-22 14:20:19 -03001143static int dvbdmx_write(struct dmx_demux *demux, const char __user *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144{
Andreas Oberritterdad4a732005-09-09 13:02:26 -07001145 struct dvb_demux *dvbdemux = (struct dvb_demux *)demux;
Al Viro947a0802008-06-22 14:20:19 -03001146 void *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
1148 if ((!demux->frontend) || (demux->frontend->source != DMX_MEMORY_FE))
1149 return -EINVAL;
1150
Julia Lawallc6cfe052010-05-22 05:21:02 -03001151 p = memdup_user(buf, count);
1152 if (IS_ERR(p))
1153 return PTR_ERR(p);
Al Viro947a0802008-06-22 14:20:19 -03001154 if (mutex_lock_interruptible(&dvbdemux->mutex)) {
1155 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 return -ERESTARTSYS;
Al Viro947a0802008-06-22 14:20:19 -03001157 }
1158 dvb_dmx_swfilter(dvbdemux, p, count);
1159 kfree(p);
Ingo Molnar3593cab2006-02-07 06:49:14 -02001160 mutex_unlock(&dvbdemux->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
1162 if (signal_pending(current))
1163 return -EINTR;
1164 return count;
1165}
1166
Andreas Oberritterdad4a732005-09-09 13:02:26 -07001167static int dvbdmx_add_frontend(struct dmx_demux *demux,
1168 struct dmx_frontend *frontend)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169{
Andreas Oberritterdad4a732005-09-09 13:02:26 -07001170 struct dvb_demux *dvbdemux = (struct dvb_demux *)demux;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 struct list_head *head = &dvbdemux->frontend_list;
1172
1173 list_add(&(frontend->connectivity_list), head);
1174
1175 return 0;
1176}
1177
Andreas Oberritterdad4a732005-09-09 13:02:26 -07001178static int dvbdmx_remove_frontend(struct dmx_demux *demux,
1179 struct dmx_frontend *frontend)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180{
Andreas Oberritterdad4a732005-09-09 13:02:26 -07001181 struct dvb_demux *dvbdemux = (struct dvb_demux *)demux;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 struct list_head *pos, *n, *head = &dvbdemux->frontend_list;
1183
Andreas Oberritterdad4a732005-09-09 13:02:26 -07001184 list_for_each_safe(pos, n, head) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 if (DMX_FE_ENTRY(pos) == frontend) {
1186 list_del(pos);
1187 return 0;
1188 }
1189 }
1190
1191 return -ENODEV;
1192}
1193
Andreas Oberritterdad4a732005-09-09 13:02:26 -07001194static struct list_head *dvbdmx_get_frontends(struct dmx_demux *demux)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195{
Andreas Oberritterdad4a732005-09-09 13:02:26 -07001196 struct dvb_demux *dvbdemux = (struct dvb_demux *)demux;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
1198 if (list_empty(&dvbdemux->frontend_list))
1199 return NULL;
Andreas Oberritterdad4a732005-09-09 13:02:26 -07001200
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 return &dvbdemux->frontend_list;
1202}
1203
Andreas Oberritterdad4a732005-09-09 13:02:26 -07001204static int dvbdmx_connect_frontend(struct dmx_demux *demux,
1205 struct dmx_frontend *frontend)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206{
Andreas Oberritterdad4a732005-09-09 13:02:26 -07001207 struct dvb_demux *dvbdemux = (struct dvb_demux *)demux;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
1209 if (demux->frontend)
1210 return -EINVAL;
1211
Simon Arlottc2788502007-03-10 06:21:25 -03001212 mutex_lock(&dvbdemux->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
1214 demux->frontend = frontend;
Ingo Molnar3593cab2006-02-07 06:49:14 -02001215 mutex_unlock(&dvbdemux->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 return 0;
1217}
1218
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219static int dvbdmx_disconnect_frontend(struct dmx_demux *demux)
1220{
Andreas Oberritterdad4a732005-09-09 13:02:26 -07001221 struct dvb_demux *dvbdemux = (struct dvb_demux *)demux;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
Simon Arlottc2788502007-03-10 06:21:25 -03001223 mutex_lock(&dvbdemux->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
1225 demux->frontend = NULL;
Ingo Molnar3593cab2006-02-07 06:49:14 -02001226 mutex_unlock(&dvbdemux->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 return 0;
1228}
1229
Andreas Oberritterdad4a732005-09-09 13:02:26 -07001230static int dvbdmx_get_pes_pids(struct dmx_demux *demux, u16 * pids)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231{
Andreas Oberritterdad4a732005-09-09 13:02:26 -07001232 struct dvb_demux *dvbdemux = (struct dvb_demux *)demux;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Andreas Oberritterdad4a732005-09-09 13:02:26 -07001234 memcpy(pids, dvbdemux->pids, 5 * sizeof(u16));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 return 0;
1236}
1237
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238int dvb_dmx_init(struct dvb_demux *dvbdemux)
1239{
Andreas Oberritter93653462005-09-09 13:02:23 -07001240 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 struct dmx_demux *dmx = &dvbdemux->dmx;
1242
Abylay Ospan0d834632009-06-06 09:31:34 -03001243 dvbdemux->cnt_storage = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 dvbdemux->users = 0;
Andreas Oberritterdad4a732005-09-09 13:02:26 -07001245 dvbdemux->filter = vmalloc(dvbdemux->filternum * sizeof(struct dvb_demux_filter));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
1247 if (!dvbdemux->filter)
1248 return -ENOMEM;
1249
Andreas Oberritterdad4a732005-09-09 13:02:26 -07001250 dvbdemux->feed = vmalloc(dvbdemux->feednum * sizeof(struct dvb_demux_feed));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 if (!dvbdemux->feed) {
1252 vfree(dvbdemux->filter);
Mauro Carvalho Chehabadefdce2010-02-01 10:35:22 -03001253 dvbdemux->filter = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 return -ENOMEM;
1255 }
Andreas Oberritterdad4a732005-09-09 13:02:26 -07001256 for (i = 0; i < dvbdemux->filternum; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 dvbdemux->filter[i].state = DMX_STATE_FREE;
1258 dvbdemux->filter[i].index = i;
1259 }
Andreas Oberritterdad4a732005-09-09 13:02:26 -07001260 for (i = 0; i < dvbdemux->feednum; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 dvbdemux->feed[i].state = DMX_STATE_FREE;
1262 dvbdemux->feed[i].index = i;
1263 }
Andreas Oberritterdb574d72005-09-09 13:02:26 -07001264
Abylay Ospanab6a21f2010-03-06 14:58:01 -03001265 dvbdemux->cnt_storage = vmalloc(MAX_PID + 1);
1266 if (!dvbdemux->cnt_storage)
1267 printk(KERN_WARNING "Couldn't allocate memory for TS/TEI check. Disabling it\n");
Mauro Carvalho Chehabbc081cc2010-02-01 11:50:42 -03001268
Andreas Oberritterdb574d72005-09-09 13:02:26 -07001269 INIT_LIST_HEAD(&dvbdemux->frontend_list);
1270
Mauro Carvalho Chehabfde04ab2013-04-04 13:25:30 -03001271 for (i = 0; i < DMX_PES_OTHER; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 dvbdemux->pesfilter[i] = NULL;
1273 dvbdemux->pids[i] = 0xffff;
1274 }
1275
1276 INIT_LIST_HEAD(&dvbdemux->feed_list);
1277
1278 dvbdemux->playing = 0;
1279 dvbdemux->recording = 0;
1280 dvbdemux->tsbufp = 0;
1281
1282 if (!dvbdemux->check_crc32)
1283 dvbdemux->check_crc32 = dvb_dmx_crc32;
1284
Andreas Oberritterdad4a732005-09-09 13:02:26 -07001285 if (!dvbdemux->memcopy)
1286 dvbdemux->memcopy = dvb_dmx_memcopy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
1288 dmx->frontend = NULL;
Andreas Oberritterdad4a732005-09-09 13:02:26 -07001289 dmx->priv = dvbdemux;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 dmx->open = dvbdmx_open;
1291 dmx->close = dvbdmx_close;
1292 dmx->write = dvbdmx_write;
1293 dmx->allocate_ts_feed = dvbdmx_allocate_ts_feed;
1294 dmx->release_ts_feed = dvbdmx_release_ts_feed;
1295 dmx->allocate_section_feed = dvbdmx_allocate_section_feed;
1296 dmx->release_section_feed = dvbdmx_release_section_feed;
1297
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 dmx->add_frontend = dvbdmx_add_frontend;
1299 dmx->remove_frontend = dvbdmx_remove_frontend;
1300 dmx->get_frontends = dvbdmx_get_frontends;
1301 dmx->connect_frontend = dvbdmx_connect_frontend;
1302 dmx->disconnect_frontend = dvbdmx_disconnect_frontend;
1303 dmx->get_pes_pids = dvbdmx_get_pes_pids;
1304
Ingo Molnar3593cab2006-02-07 06:49:14 -02001305 mutex_init(&dvbdemux->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 spin_lock_init(&dvbdemux->lock);
1307
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 return 0;
1309}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
Andreas Oberritterdad4a732005-09-09 13:02:26 -07001311EXPORT_SYMBOL(dvb_dmx_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
Andreas Oberritter93653462005-09-09 13:02:23 -07001313void dvb_dmx_release(struct dvb_demux *dvbdemux)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314{
Abylay Ospan0d834632009-06-06 09:31:34 -03001315 vfree(dvbdemux->cnt_storage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 vfree(dvbdemux->filter);
1317 vfree(dvbdemux->feed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318}
Andreas Oberritterdad4a732005-09-09 13:02:26 -07001319
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320EXPORT_SYMBOL(dvb_dmx_release);