blob: ebf4dc5190f68bbf2ebcc201b26f59ca43962dcf [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * dvb_net.c
3 *
4 * Copyright (C) 2001 Convergence integrated media GmbH
5 * Ralph Metzler <ralph@convergence.de>
6 * Copyright (C) 2002 Ralph Metzler <rjkm@metzlerbros.de>
7 *
8 * ULE Decapsulation code:
9 * Copyright (C) 2003, 2004 gcs - Global Communication & Services GmbH.
10 * and Department of Scientific Computing
11 * Paris Lodron University of Salzburg.
12 * Hilmar Linder <hlinder@cosy.sbg.ac.at>
13 * and Wolfram Stering <wstering@cosy.sbg.ac.at>
14 *
Christian Praehauser18232ca2006-05-22 10:31:47 -030015 * ULE Decaps according to RFC 4326.
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 *
17 * This program is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU General Public License
19 * as published by the Free Software Foundation; either version 2
20 * of the License, or (at your option) any later version.
21 *
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26 *
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software
29 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
30 * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
31 */
32
33/*
34 * ULE ChangeLog:
35 * Feb 2004: hl/ws v1: Implementing draft-fair-ipdvb-ule-01.txt
36 *
37 * Dec 2004: hl/ws v2: Implementing draft-ietf-ipdvb-ule-03.txt:
38 * ULE Extension header handling.
39 * Bugreports by Moritz Vieth and Hanno Tersteegen,
40 * Fraunhofer Institute for Open Communication Systems
41 * Competence Center for Advanced Satellite Communications.
42 * Bugfixes and robustness improvements.
43 * Filtering on dest MAC addresses, if present (D-Bit = 0)
44 * ULE_DEBUG compile-time option.
Christian Praehauser18232ca2006-05-22 10:31:47 -030045 * Apr 2006: cp v3: Bugfixes and compliency with RFC 4326 (ULE) by
46 * Christian Praehauser <cpraehaus@cosy.sbg.ac.at>,
47 * Paris Lodron University of Salzburg.
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 */
49
50/*
51 * FIXME / TODO (dvb_net.c):
52 *
53 * Unloading does not work for 2.6.9 kernels: a refcount doesn't go to zero.
54 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 */
56
57#include <linux/module.h>
58#include <linux/kernel.h>
59#include <linux/netdevice.h>
60#include <linux/etherdevice.h>
61#include <linux/dvb/net.h>
62#include <linux/uio.h>
63#include <asm/uaccess.h>
64#include <linux/crc32.h>
Ingo Molnar3593cab2006-02-07 06:49:14 -020065#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67#include "dvb_demux.h"
68#include "dvb_net.h"
69
70static int dvb_net_debug;
71module_param(dvb_net_debug, int, 0444);
72MODULE_PARM_DESC(dvb_net_debug, "enable debug messages");
73
74#define dprintk(x...) do { if (dvb_net_debug) printk(x); } while (0)
75
76
77static inline __u32 iov_crc32( __u32 c, struct kvec *iov, unsigned int cnt )
78{
79 unsigned int j;
80 for (j = 0; j < cnt; j++)
81 c = crc32_be( c, iov[j].iov_base, iov[j].iov_len );
82 return c;
83}
84
85
86#define DVB_NET_MULTICAST_MAX 10
87
88#undef ULE_DEBUG
89
90#ifdef ULE_DEBUG
91
Christian Praehauser18232ca2006-05-22 10:31:47 -030092#define MAC_ADDR_PRINTFMT "%.2x:%.2x:%.2x:%.2x:%.2x:%.2x"
93#define MAX_ADDR_PRINTFMT_ARGS(macap) (macap)[0],(macap)[1],(macap)[2],(macap)[3],(macap)[4],(macap)[5]
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#define isprint(c) ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9'))
96
97static void hexdump( const unsigned char *buf, unsigned short len )
98{
99 char str[80], octet[10];
100 int ofs, i, l;
101
102 for (ofs = 0; ofs < len; ofs += 16) {
103 sprintf( str, "%03d: ", ofs );
104
105 for (i = 0; i < 16; i++) {
106 if ((i + ofs) < len)
107 sprintf( octet, "%02x ", buf[ofs + i] );
108 else
109 strcpy( octet, " " );
110
111 strcat( str, octet );
112 }
113 strcat( str, " " );
114 l = strlen( str );
115
116 for (i = 0; (i < 16) && ((i + ofs) < len); i++)
117 str[l++] = isprint( buf[ofs + i] ) ? buf[ofs + i] : '.';
118
119 str[l] = '\0';
120 printk( KERN_WARNING "%s\n", str );
121 }
122}
123
124#endif
125
126struct dvb_net_priv {
127 int in_use;
128 struct net_device_stats stats;
129 u16 pid;
David Howellsc4028952006-11-22 14:57:56 +0000130 struct net_device *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 struct dvb_net *host;
132 struct dmx_demux *demux;
133 struct dmx_section_feed *secfeed;
134 struct dmx_section_filter *secfilter;
135 struct dmx_ts_feed *tsfeed;
136 int multi_num;
137 struct dmx_section_filter *multi_secfilter[DVB_NET_MULTICAST_MAX];
138 unsigned char multi_macs[DVB_NET_MULTICAST_MAX][6];
139 int rx_mode;
140#define RX_MODE_UNI 0
141#define RX_MODE_MULTI 1
142#define RX_MODE_ALL_MULTI 2
143#define RX_MODE_PROMISC 3
144 struct work_struct set_multicast_list_wq;
145 struct work_struct restart_net_feed_wq;
146 unsigned char feedtype; /* Either FEED_TYPE_ or FEED_TYPE_ULE */
147 int need_pusi; /* Set to 1, if synchronization on PUSI required. */
148 unsigned char tscc; /* TS continuity counter after sync on PUSI. */
149 struct sk_buff *ule_skb; /* ULE SNDU decodes into this buffer. */
150 unsigned char *ule_next_hdr; /* Pointer into skb to next ULE extension header. */
151 unsigned short ule_sndu_len; /* ULE SNDU length in bytes, w/o D-Bit. */
152 unsigned short ule_sndu_type; /* ULE SNDU type field, complete. */
153 unsigned char ule_sndu_type_1; /* ULE SNDU type field, if split across 2 TS cells. */
154 unsigned char ule_dbit; /* Whether the DestMAC address present
155 * or not (bit is set). */
156 unsigned char ule_bridged; /* Whether the ULE_BRIDGED extension header was found. */
157 int ule_sndu_remain; /* Nr. of bytes still required for current ULE SNDU. */
158 unsigned long ts_count; /* Current ts cell counter. */
Ingo Molnar3593cab2006-02-07 06:49:14 -0200159 struct mutex mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160};
161
162
163/**
164 * Determine the packet's protocol ID. The rule here is that we
165 * assume 802.3 if the type field is short enough to be a length.
166 * This is normal practice and works for any 'now in use' protocol.
167 *
168 * stolen from eth.c out of the linux kernel, hacked for dvb-device
169 * by Michael Holzt <kju@debian.org>
170 */
171static unsigned short dvb_net_eth_type_trans(struct sk_buff *skb,
172 struct net_device *dev)
173{
174 struct ethhdr *eth;
175 unsigned char *rawp;
176
177 skb->mac.raw=skb->data;
178 skb_pull(skb,dev->hard_header_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 eth = eth_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
181 if (*eth->h_dest & 1) {
182 if(memcmp(eth->h_dest,dev->broadcast, ETH_ALEN)==0)
183 skb->pkt_type=PACKET_BROADCAST;
184 else
185 skb->pkt_type=PACKET_MULTICAST;
186 }
187
188 if (ntohs(eth->h_proto) >= 1536)
189 return eth->h_proto;
190
191 rawp = skb->data;
192
193 /**
194 * This is a magic hack to spot IPX packets. Older Novell breaks
195 * the protocol design and runs IPX over 802.3 without an 802.2 LLC
196 * layer. We look for FFFF which isn't a used 802.2 SSAP/DSAP. This
197 * won't work for fault tolerant netware but does for the rest.
198 */
199 if (*(unsigned short *)rawp == 0xFFFF)
200 return htons(ETH_P_802_3);
201
202 /**
203 * Real 802.2 LLC
204 */
205 return htons(ETH_P_802_2);
206}
207
208#define TS_SZ 188
209#define TS_SYNC 0x47
210#define TS_TEI 0x80
211#define TS_SC 0xC0
212#define TS_PUSI 0x40
213#define TS_AF_A 0x20
214#define TS_AF_D 0x10
215
216/* ULE Extension Header handlers. */
217
218#define ULE_TEST 0
219#define ULE_BRIDGED 1
220
Christian Praehauser18232ca2006-05-22 10:31:47 -0300221#define ULE_OPTEXTHDR_PADDING 0
222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223static int ule_test_sndu( struct dvb_net_priv *p )
224{
225 return -1;
226}
227
228static int ule_bridged_sndu( struct dvb_net_priv *p )
229{
Christian Praehauser18232ca2006-05-22 10:31:47 -0300230 struct ethhdr *hdr = (struct ethhdr*) p->ule_next_hdr;
231 if(ntohs(hdr->h_proto) < 1536) {
232 int framelen = p->ule_sndu_len - ((p->ule_next_hdr+sizeof(struct ethhdr)) - p->ule_skb->data);
233 /* A frame Type < 1536 for a bridged frame, introduces a LLC Length field. */
234 if(framelen != ntohs(hdr->h_proto)) {
235 return -1;
236 }
237 }
238 /* Note:
239 * From RFC4326:
240 * "A bridged SNDU is a Mandatory Extension Header of Type 1.
241 * It must be the final (or only) extension header specified in the header chain of a SNDU."
242 * The 'ule_bridged' flag will cause the extension header processing loop to terminate.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 */
244 p->ule_bridged = 1;
245 return 0;
246}
247
Christian Praehauser18232ca2006-05-22 10:31:47 -0300248static int ule_exthdr_padding(struct dvb_net_priv *p)
249{
250 return 0;
251}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253/** Handle ULE extension headers.
254 * Function is called after a successful CRC32 verification of an ULE SNDU to complete its decoding.
255 * Returns: >= 0: nr. of bytes consumed by next extension header
256 * -1: Mandatory extension header that is not recognized or TEST SNDU; discard.
257 */
258static int handle_one_ule_extension( struct dvb_net_priv *p )
259{
260 /* Table of mandatory extension header handlers. The header type is the index. */
261 static int (*ule_mandatory_ext_handlers[255])( struct dvb_net_priv *p ) =
262 { [0] = ule_test_sndu, [1] = ule_bridged_sndu, [2] = NULL, };
263
264 /* Table of optional extension header handlers. The header type is the index. */
Christian Praehauser18232ca2006-05-22 10:31:47 -0300265 static int (*ule_optional_ext_handlers[255])( struct dvb_net_priv *p ) =
266 { [0] = ule_exthdr_padding, [1] = NULL, };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268 int ext_len = 0;
269 unsigned char hlen = (p->ule_sndu_type & 0x0700) >> 8;
270 unsigned char htype = p->ule_sndu_type & 0x00FF;
271
272 /* Discriminate mandatory and optional extension headers. */
273 if (hlen == 0) {
274 /* Mandatory extension header */
275 if (ule_mandatory_ext_handlers[htype]) {
276 ext_len = ule_mandatory_ext_handlers[htype]( p );
Christian Praehauser18232ca2006-05-22 10:31:47 -0300277 if(ext_len >= 0) {
278 p->ule_next_hdr += ext_len;
279 if (!p->ule_bridged) {
280 p->ule_sndu_type = ntohs(*(unsigned short *)p->ule_next_hdr);
281 p->ule_next_hdr += 2;
282 } else {
283 p->ule_sndu_type = ntohs(*(unsigned short *)(p->ule_next_hdr + ((p->ule_dbit ? 2 : 3) * ETH_ALEN)));
284 /* This assures the extension handling loop will terminate. */
285 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 }
Christian Praehauser18232ca2006-05-22 10:31:47 -0300287 // else: extension handler failed or SNDU should be discarded
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 } else
289 ext_len = -1; /* SNDU has to be discarded. */
290 } else {
291 /* Optional extension header. Calculate the length. */
Christian Praehauser18232ca2006-05-22 10:31:47 -0300292 ext_len = hlen << 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 /* Process the optional extension header according to its type. */
294 if (ule_optional_ext_handlers[htype])
295 (void)ule_optional_ext_handlers[htype]( p );
296 p->ule_next_hdr += ext_len;
Christian Praehauser18232ca2006-05-22 10:31:47 -0300297 p->ule_sndu_type = ntohs( *(unsigned short *)(p->ule_next_hdr-2) );
298 /*
299 * note: the length of the next header type is included in the
300 * length of THIS optional extension header
301 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 }
303
304 return ext_len;
305}
306
307static int handle_ule_extensions( struct dvb_net_priv *p )
308{
309 int total_ext_len = 0, l;
310
311 p->ule_next_hdr = p->ule_skb->data;
312 do {
313 l = handle_one_ule_extension( p );
Christian Praehauser18232ca2006-05-22 10:31:47 -0300314 if (l < 0)
315 return l; /* Stop extension header processing and discard SNDU. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 total_ext_len += l;
Christian Praehauser18232ca2006-05-22 10:31:47 -0300317#ifdef ULE_DEBUG
318 dprintk("handle_ule_extensions: ule_next_hdr=%p, ule_sndu_type=%i, "
319 "l=%i, total_ext_len=%i\n", p->ule_next_hdr,
320 (int) p->ule_sndu_type, l, total_ext_len);
321#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323 } while (p->ule_sndu_type < 1536);
324
325 return total_ext_len;
326}
327
328
329/** Prepare for a new ULE SNDU: reset the decoder state. */
330static inline void reset_ule( struct dvb_net_priv *p )
331{
332 p->ule_skb = NULL;
333 p->ule_next_hdr = NULL;
334 p->ule_sndu_len = 0;
335 p->ule_sndu_type = 0;
336 p->ule_sndu_type_1 = 0;
337 p->ule_sndu_remain = 0;
338 p->ule_dbit = 0xFF;
339 p->ule_bridged = 0;
340}
341
342/**
343 * Decode ULE SNDUs according to draft-ietf-ipdvb-ule-03.txt from a sequence of
344 * TS cells of a single PID.
345 */
346static void dvb_net_ule( struct net_device *dev, const u8 *buf, size_t buf_len )
347{
Johannes Stezenbach0c53c702005-05-16 21:54:24 -0700348 struct dvb_net_priv *priv = dev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 unsigned long skipped = 0L;
350 u8 *ts, *ts_end, *from_where = NULL, ts_remain = 0, how_much = 0, new_ts = 1;
351 struct ethhdr *ethh = NULL;
352
353#ifdef ULE_DEBUG
354 /* The code inside ULE_DEBUG keeps a history of the last 100 TS cells processed. */
355 static unsigned char ule_hist[100*TS_SZ];
356 static unsigned char *ule_where = ule_hist, ule_dump = 0;
357#endif
358
359 if (dev == NULL) {
360 printk( KERN_ERR "NO netdev struct!\n" );
361 return;
362 }
363
364 /* For all TS cells in current buffer.
365 * Appearently, we are called for every single TS cell.
366 */
367 for (ts = (char *)buf, ts_end = (char *)buf + buf_len; ts < ts_end; /* no default incr. */ ) {
368
369 if (new_ts) {
370 /* We are about to process a new TS cell. */
371
372#ifdef ULE_DEBUG
373 if (ule_where >= &ule_hist[100*TS_SZ]) ule_where = ule_hist;
374 memcpy( ule_where, ts, TS_SZ );
375 if (ule_dump) {
376 hexdump( ule_where, TS_SZ );
377 ule_dump = 0;
378 }
379 ule_where += TS_SZ;
380#endif
381
382 /* Check TS error conditions: sync_byte, transport_error_indicator, scrambling_control . */
383 if ((ts[0] != TS_SYNC) || (ts[1] & TS_TEI) || ((ts[3] & TS_SC) != 0)) {
384 printk(KERN_WARNING "%lu: Invalid TS cell: SYNC %#x, TEI %u, SC %#x.\n",
385 priv->ts_count, ts[0], ts[1] & TS_TEI >> 7, ts[3] & 0xC0 >> 6);
386
387 /* Drop partly decoded SNDU, reset state, resync on PUSI. */
388 if (priv->ule_skb) {
389 dev_kfree_skb( priv->ule_skb );
390 /* Prepare for next SNDU. */
Christian Praehauser18232ca2006-05-22 10:31:47 -0300391 priv->stats.rx_errors++;
392 priv->stats.rx_frame_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 }
394 reset_ule(priv);
395 priv->need_pusi = 1;
396
397 /* Continue with next TS cell. */
398 ts += TS_SZ;
399 priv->ts_count++;
400 continue;
401 }
402
403 ts_remain = 184;
404 from_where = ts + 4;
405 }
406 /* Synchronize on PUSI, if required. */
407 if (priv->need_pusi) {
408 if (ts[1] & TS_PUSI) {
409 /* Find beginning of first ULE SNDU in current TS cell. */
410 /* Synchronize continuity counter. */
411 priv->tscc = ts[3] & 0x0F;
412 /* There is a pointer field here. */
413 if (ts[4] > ts_remain) {
414 printk(KERN_ERR "%lu: Invalid ULE packet "
415 "(pointer field %d)\n", priv->ts_count, ts[4]);
416 ts += TS_SZ;
417 priv->ts_count++;
418 continue;
419 }
420 /* Skip to destination of pointer field. */
421 from_where = &ts[5] + ts[4];
422 ts_remain -= 1 + ts[4];
423 skipped = 0;
424 } else {
425 skipped++;
426 ts += TS_SZ;
427 priv->ts_count++;
428 continue;
429 }
430 }
431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 if (new_ts) {
Christian Praehauser18232ca2006-05-22 10:31:47 -0300433 /* Check continuity counter. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 if ((ts[3] & 0x0F) == priv->tscc)
435 priv->tscc = (priv->tscc + 1) & 0x0F;
436 else {
437 /* TS discontinuity handling: */
438 printk(KERN_WARNING "%lu: TS discontinuity: got %#x, "
Christian Praehauser18232ca2006-05-22 10:31:47 -0300439 "expected %#x.\n", priv->ts_count, ts[3] & 0x0F, priv->tscc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 /* Drop partly decoded SNDU, reset state, resync on PUSI. */
441 if (priv->ule_skb) {
442 dev_kfree_skb( priv->ule_skb );
443 /* Prepare for next SNDU. */
444 // reset_ule(priv); moved to below.
Christian Praehauser18232ca2006-05-22 10:31:47 -0300445 priv->stats.rx_errors++;
446 priv->stats.rx_frame_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 }
448 reset_ule(priv);
449 /* skip to next PUSI. */
450 priv->need_pusi = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 continue;
452 }
453 /* If we still have an incomplete payload, but PUSI is
454 * set; some TS cells are missing.
455 * This is only possible here, if we missed exactly 16 TS
456 * cells (continuity counter wrap). */
457 if (ts[1] & TS_PUSI) {
458 if (! priv->need_pusi) {
Christian Praehauser18232ca2006-05-22 10:31:47 -0300459 if (!(*from_where < (ts_remain-1)) || *from_where != priv->ule_sndu_remain) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 /* Pointer field is invalid. Drop this TS cell and any started ULE SNDU. */
461 printk(KERN_WARNING "%lu: Invalid pointer "
462 "field: %u.\n", priv->ts_count, *from_where);
463
464 /* Drop partly decoded SNDU, reset state, resync on PUSI. */
465 if (priv->ule_skb) {
466 dev_kfree_skb( priv->ule_skb );
467 ((struct dvb_net_priv *) dev->priv)->stats.rx_errors++;
468 ((struct dvb_net_priv *) dev->priv)->stats.rx_frame_errors++;
469 }
470 reset_ule(priv);
471 priv->need_pusi = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 continue;
473 }
474 /* Skip pointer field (we're processing a
475 * packed payload). */
476 from_where += 1;
477 ts_remain -= 1;
478 } else
479 priv->need_pusi = 0;
480
481 if (priv->ule_sndu_remain > 183) {
482 /* Current SNDU lacks more data than there could be available in the
483 * current TS cell. */
Christian Praehauser18232ca2006-05-22 10:31:47 -0300484 priv->stats.rx_errors++;
485 priv->stats.rx_length_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 printk(KERN_WARNING "%lu: Expected %d more SNDU bytes, but "
487 "got PUSI (pf %d, ts_remain %d). Flushing incomplete payload.\n",
488 priv->ts_count, priv->ule_sndu_remain, ts[4], ts_remain);
489 dev_kfree_skb(priv->ule_skb);
490 /* Prepare for next SNDU. */
491 reset_ule(priv);
492 /* Resync: go to where pointer field points to: start of next ULE SNDU. */
493 from_where += ts[4];
494 ts_remain -= ts[4];
495 }
496 }
497 }
498
499 /* Check if new payload needs to be started. */
500 if (priv->ule_skb == NULL) {
501 /* Start a new payload with skb.
502 * Find ULE header. It is only guaranteed that the
503 * length field (2 bytes) is contained in the current
504 * TS.
505 * Check ts_remain has to be >= 2 here. */
506 if (ts_remain < 2) {
507 printk(KERN_WARNING "Invalid payload packing: only %d "
508 "bytes left in TS. Resyncing.\n", ts_remain);
509 priv->ule_sndu_len = 0;
510 priv->need_pusi = 1;
511 continue;
512 }
513
514 if (! priv->ule_sndu_len) {
515 /* Got at least two bytes, thus extrace the SNDU length. */
516 priv->ule_sndu_len = from_where[0] << 8 | from_where[1];
517 if (priv->ule_sndu_len & 0x8000) {
518 /* D-Bit is set: no dest mac present. */
519 priv->ule_sndu_len &= 0x7FFF;
520 priv->ule_dbit = 1;
521 } else
522 priv->ule_dbit = 0;
523
Christian Praehauser18232ca2006-05-22 10:31:47 -0300524 if (priv->ule_sndu_len < 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 printk(KERN_WARNING "%lu: Invalid ULE SNDU length %u. "
526 "Resyncing.\n", priv->ts_count, priv->ule_sndu_len);
Christian Praehauser18232ca2006-05-22 10:31:47 -0300527 priv->stats.rx_errors++;
528 priv->stats.rx_length_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 priv->ule_sndu_len = 0;
530 priv->need_pusi = 1;
531 new_ts = 1;
532 ts += TS_SZ;
533 priv->ts_count++;
534 continue;
535 }
536 ts_remain -= 2; /* consume the 2 bytes SNDU length. */
537 from_where += 2;
538 }
539
540 /*
541 * State of current TS:
542 * ts_remain (remaining bytes in the current TS cell)
543 * 0 ule_type is not available now, we need the next TS cell
544 * 1 the first byte of the ule_type is present
545 * >=2 full ULE header present, maybe some payload data as well.
546 */
547 switch (ts_remain) {
548 case 1:
549 priv->ule_sndu_type = from_where[0] << 8;
550 priv->ule_sndu_type_1 = 1; /* first byte of ule_type is set. */
551 ts_remain -= 1; from_where += 1;
552 /* Continue w/ next TS. */
553 case 0:
554 new_ts = 1;
555 ts += TS_SZ;
556 priv->ts_count++;
557 continue;
558
559 default: /* complete ULE header is present in current TS. */
560 /* Extract ULE type field. */
561 if (priv->ule_sndu_type_1) {
562 priv->ule_sndu_type |= from_where[0];
563 from_where += 1; /* points to payload start. */
564 ts_remain -= 1;
565 } else {
566 /* Complete type is present in new TS. */
567 priv->ule_sndu_type = from_where[0] << 8 | from_where[1];
568 from_where += 2; /* points to payload start. */
569 ts_remain -= 2;
570 }
571 break;
572 }
573
574 /* Allocate the skb (decoder target buffer) with the correct size, as follows:
575 * prepare for the largest case: bridged SNDU with MAC address (dbit = 0). */
576 priv->ule_skb = dev_alloc_skb( priv->ule_sndu_len + ETH_HLEN + ETH_ALEN );
577 if (priv->ule_skb == NULL) {
578 printk(KERN_NOTICE "%s: Memory squeeze, dropping packet.\n",
579 dev->name);
580 ((struct dvb_net_priv *)dev->priv)->stats.rx_dropped++;
581 return;
582 }
583
584 /* This includes the CRC32 _and_ dest mac, if !dbit. */
585 priv->ule_sndu_remain = priv->ule_sndu_len;
586 priv->ule_skb->dev = dev;
587 /* Leave space for Ethernet or bridged SNDU header (eth hdr plus one MAC addr). */
588 skb_reserve( priv->ule_skb, ETH_HLEN + ETH_ALEN );
589 }
590
591 /* Copy data into our current skb. */
592 how_much = min(priv->ule_sndu_remain, (int)ts_remain);
593 memcpy(skb_put(priv->ule_skb, how_much), from_where, how_much);
594 priv->ule_sndu_remain -= how_much;
595 ts_remain -= how_much;
596 from_where += how_much;
597
598 /* Check for complete payload. */
599 if (priv->ule_sndu_remain <= 0) {
600 /* Check CRC32, we've got it in our skb already. */
601 unsigned short ulen = htons(priv->ule_sndu_len);
602 unsigned short utype = htons(priv->ule_sndu_type);
603 struct kvec iov[3] = {
604 { &ulen, sizeof ulen },
605 { &utype, sizeof utype },
606 { priv->ule_skb->data, priv->ule_skb->len - 4 }
607 };
608 unsigned long ule_crc = ~0L, expected_crc;
609 if (priv->ule_dbit) {
610 /* Set D-bit for CRC32 verification,
611 * if it was set originally. */
612 ulen |= 0x0080;
613 }
614
615 ule_crc = iov_crc32(ule_crc, iov, 3);
616 expected_crc = *((u8 *)priv->ule_skb->tail - 4) << 24 |
617 *((u8 *)priv->ule_skb->tail - 3) << 16 |
618 *((u8 *)priv->ule_skb->tail - 2) << 8 |
619 *((u8 *)priv->ule_skb->tail - 1);
620 if (ule_crc != expected_crc) {
621 printk(KERN_WARNING "%lu: CRC32 check FAILED: %#lx / %#lx, SNDU len %d type %#x, ts_remain %d, next 2: %x.\n",
622 priv->ts_count, ule_crc, expected_crc, priv->ule_sndu_len, priv->ule_sndu_type, ts_remain, ts_remain > 2 ? *(unsigned short *)from_where : 0);
623
624#ifdef ULE_DEBUG
625 hexdump( iov[0].iov_base, iov[0].iov_len );
626 hexdump( iov[1].iov_base, iov[1].iov_len );
627 hexdump( iov[2].iov_base, iov[2].iov_len );
628
629 if (ule_where == ule_hist) {
630 hexdump( &ule_hist[98*TS_SZ], TS_SZ );
631 hexdump( &ule_hist[99*TS_SZ], TS_SZ );
632 } else if (ule_where == &ule_hist[TS_SZ]) {
633 hexdump( &ule_hist[99*TS_SZ], TS_SZ );
634 hexdump( ule_hist, TS_SZ );
635 } else {
636 hexdump( ule_where - TS_SZ - TS_SZ, TS_SZ );
637 hexdump( ule_where - TS_SZ, TS_SZ );
638 }
639 ule_dump = 1;
640#endif
641
Christian Praehauser18232ca2006-05-22 10:31:47 -0300642 priv->stats.rx_errors++;
643 priv->stats.rx_crc_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 dev_kfree_skb(priv->ule_skb);
645 } else {
646 /* CRC32 verified OK. */
Christian Praehauser18232ca2006-05-22 10:31:47 -0300647 u8 dest_addr[ETH_ALEN];
648 static const u8 bc_addr[ETH_ALEN] =
649 { [ 0 ... ETH_ALEN-1] = 0xff };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
651 /* CRC32 was OK. Remove it from skb. */
652 priv->ule_skb->tail -= 4;
653 priv->ule_skb->len -= 4;
654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 if (!priv->ule_dbit) {
Christian Praehauser18232ca2006-05-22 10:31:47 -0300656 /*
657 * The destination MAC address is the
658 * next data in the skb. It comes
659 * before any extension headers.
660 *
661 * Check if the payload of this SNDU
662 * should be passed up the stack.
663 */
664 register int drop = 0;
665 if (priv->rx_mode != RX_MODE_PROMISC) {
666 if (priv->ule_skb->data[0] & 0x01) {
667 /* multicast or broadcast */
668 if (memcmp(priv->ule_skb->data, bc_addr, ETH_ALEN)) {
669 /* multicast */
670 if (priv->rx_mode == RX_MODE_MULTI) {
671 int i;
672 for(i = 0; i < priv->multi_num && memcmp(priv->ule_skb->data, priv->multi_macs[i], ETH_ALEN); i++)
673 ;
674 if (i == priv->multi_num)
675 drop = 1;
676 } else if (priv->rx_mode != RX_MODE_ALL_MULTI)
677 drop = 1; /* no broadcast; */
678 /* else: all multicast mode: accept all multicast packets */
679 }
680 /* else: broadcast */
681 }
682 else if (memcmp(priv->ule_skb->data, dev->dev_addr, ETH_ALEN))
683 drop = 1;
684 /* else: destination address matches the MAC address of our receiver device */
685 }
686 /* else: promiscious mode; pass everything up the stack */
687
688 if (drop) {
689#ifdef ULE_DEBUG
690 dprintk("Dropping SNDU: MAC destination address does not match: dest addr: "MAC_ADDR_PRINTFMT", dev addr: "MAC_ADDR_PRINTFMT"\n",
691 MAX_ADDR_PRINTFMT_ARGS(priv->ule_skb->data), MAX_ADDR_PRINTFMT_ARGS(dev->dev_addr));
692#endif
693 dev_kfree_skb(priv->ule_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 goto sndu_done;
695 }
Christian Praehauser18232ca2006-05-22 10:31:47 -0300696 else
697 {
698 memcpy(dest_addr, priv->ule_skb->data, ETH_ALEN);
699 skb_pull(priv->ule_skb, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 }
701 }
Christian Praehauser18232ca2006-05-22 10:31:47 -0300702
703 /* Handle ULE Extension Headers. */
704 if (priv->ule_sndu_type < 1536) {
705 /* There is an extension header. Handle it accordingly. */
706 int l = handle_ule_extensions(priv);
707 if (l < 0) {
708 /* Mandatory extension header unknown or TEST SNDU. Drop it. */
709 // printk( KERN_WARNING "Dropping SNDU, extension headers.\n" );
710 dev_kfree_skb(priv->ule_skb);
711 goto sndu_done;
712 }
713 skb_pull(priv->ule_skb, l);
714 }
715
716 /*
717 * Construct/assure correct ethernet header.
718 * Note: in bridged mode (priv->ule_bridged !=
719 * 0) we already have the (original) ethernet
720 * header at the start of the payload (after
721 * optional dest. address and any extension
722 * headers).
723 */
724
725 if (!priv->ule_bridged) {
726 skb_push(priv->ule_skb, ETH_HLEN);
727 ethh = (struct ethhdr *)priv->ule_skb->data;
728 if (!priv->ule_dbit) {
729 /* dest_addr buffer is only valid if priv->ule_dbit == 0 */
730 memcpy(ethh->h_dest, dest_addr, ETH_ALEN);
731 memset(ethh->h_source, 0, ETH_ALEN);
732 }
733 else /* zeroize source and dest */
734 memset( ethh, 0, ETH_ALEN*2 );
735
736 ethh->h_proto = htons(priv->ule_sndu_type);
737 }
738 /* else: skb is in correct state; nothing to do. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 priv->ule_bridged = 0;
740
741 /* Stuff into kernel's protocol stack. */
742 priv->ule_skb->protocol = dvb_net_eth_type_trans(priv->ule_skb, dev);
743 /* If D-bit is set (i.e. destination MAC address not present),
744 * receive the packet anyhow. */
745 /* if (priv->ule_dbit && skb->pkt_type == PACKET_OTHERHOST)
746 priv->ule_skb->pkt_type = PACKET_HOST; */
Christian Praehauser18232ca2006-05-22 10:31:47 -0300747 priv->stats.rx_packets++;
748 priv->stats.rx_bytes += priv->ule_skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 netif_rx(priv->ule_skb);
750 }
751 sndu_done:
752 /* Prepare for next SNDU. */
753 reset_ule(priv);
754 }
755
756 /* More data in current TS (look at the bytes following the CRC32)? */
757 if (ts_remain >= 2 && *((unsigned short *)from_where) != 0xFFFF) {
758 /* Next ULE SNDU starts right there. */
759 new_ts = 0;
760 priv->ule_skb = NULL;
761 priv->ule_sndu_type_1 = 0;
762 priv->ule_sndu_len = 0;
763 // printk(KERN_WARNING "More data in current TS: [%#x %#x %#x %#x]\n",
764 // *(from_where + 0), *(from_where + 1),
765 // *(from_where + 2), *(from_where + 3));
766 // printk(KERN_WARNING "ts @ %p, stopped @ %p:\n", ts, from_where + 0);
767 // hexdump(ts, 188);
768 } else {
769 new_ts = 1;
770 ts += TS_SZ;
771 priv->ts_count++;
772 if (priv->ule_skb == NULL) {
773 priv->need_pusi = 1;
774 priv->ule_sndu_type_1 = 0;
775 priv->ule_sndu_len = 0;
776 }
777 }
778 } /* for all available TS cells */
779}
780
781static int dvb_net_ts_callback(const u8 *buffer1, size_t buffer1_len,
782 const u8 *buffer2, size_t buffer2_len,
783 struct dmx_ts_feed *feed, enum dmx_success success)
784{
Johannes Stezenbach0c53c702005-05-16 21:54:24 -0700785 struct net_device *dev = feed->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787 if (buffer2 != 0)
788 printk(KERN_WARNING "buffer2 not 0: %p.\n", buffer2);
789 if (buffer1_len > 32768)
790 printk(KERN_WARNING "length > 32k: %zu.\n", buffer1_len);
791 /* printk("TS callback: %u bytes, %u TS cells @ %p.\n",
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800792 buffer1_len, buffer1_len / TS_SZ, buffer1); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 dvb_net_ule(dev, buffer1, buffer1_len);
794 return 0;
795}
796
797
798static void dvb_net_sec(struct net_device *dev, u8 *pkt, int pkt_len)
799{
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800800 u8 *eth;
801 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 struct net_device_stats *stats = &(((struct dvb_net_priv *) dev->priv)->stats);
Johannes Stezenbach59142332005-05-16 21:54:25 -0700803 int snap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
805 /* note: pkt_len includes a 32bit checksum */
806 if (pkt_len < 16) {
807 printk("%s: IP/MPE packet length = %d too small.\n",
808 dev->name, pkt_len);
809 stats->rx_errors++;
810 stats->rx_length_errors++;
811 return;
812 }
813/* it seems some ISPs manage to screw up here, so we have to
814 * relax the error checks... */
815#if 0
816 if ((pkt[5] & 0xfd) != 0xc1) {
817 /* drop scrambled or broken packets */
818#else
819 if ((pkt[5] & 0x3c) != 0x00) {
820 /* drop scrambled */
821#endif
822 stats->rx_errors++;
823 stats->rx_crc_errors++;
824 return;
825 }
826 if (pkt[5] & 0x02) {
Johannes Stezenbach59142332005-05-16 21:54:25 -0700827 /* handle LLC/SNAP, see rfc-1042 */
828 if (pkt_len < 24 || memcmp(&pkt[12], "\xaa\xaa\x03\0\0\0", 6)) {
829 stats->rx_dropped++;
830 return;
831 }
832 snap = 8;
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800833 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 if (pkt[7]) {
835 /* FIXME: assemble datagram from multiple sections */
836 stats->rx_errors++;
837 stats->rx_frame_errors++;
838 return;
839 }
840
841 /* we have 14 byte ethernet header (ip header follows);
Johannes Stezenbach59142332005-05-16 21:54:25 -0700842 * 12 byte MPE header; 4 byte checksum; + 2 byte alignment, 8 byte LLC/SNAP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 */
Johannes Stezenbach59142332005-05-16 21:54:25 -0700844 if (!(skb = dev_alloc_skb(pkt_len - 4 - 12 + 14 + 2 - snap))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 //printk(KERN_NOTICE "%s: Memory squeeze, dropping packet.\n", dev->name);
846 stats->rx_dropped++;
847 return;
848 }
849 skb_reserve(skb, 2); /* longword align L3 header */
850 skb->dev = dev;
851
852 /* copy L3 payload */
Johannes Stezenbach59142332005-05-16 21:54:25 -0700853 eth = (u8 *) skb_put(skb, pkt_len - 12 - 4 + 14 - snap);
854 memcpy(eth + 14, pkt + 12 + snap, pkt_len - 12 - 4 - snap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
856 /* create ethernet header: */
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800857 eth[0]=pkt[0x0b];
858 eth[1]=pkt[0x0a];
859 eth[2]=pkt[0x09];
860 eth[3]=pkt[0x08];
861 eth[4]=pkt[0x04];
862 eth[5]=pkt[0x03];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800864 eth[6]=eth[7]=eth[8]=eth[9]=eth[10]=eth[11]=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Johannes Stezenbach59142332005-05-16 21:54:25 -0700866 if (snap) {
867 eth[12] = pkt[18];
868 eth[13] = pkt[19];
869 } else {
870 /* protocol numbers are from rfc-1700 or
871 * http://www.iana.org/assignments/ethernet-numbers
872 */
873 if (pkt[12] >> 4 == 6) { /* version field from IP header */
874 eth[12] = 0x86; /* IPv6 */
875 eth[13] = 0xdd;
876 } else {
877 eth[12] = 0x08; /* IPv4 */
878 eth[13] = 0x00;
879 }
880 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
882 skb->protocol = dvb_net_eth_type_trans(skb, dev);
883
884 stats->rx_packets++;
885 stats->rx_bytes+=skb->len;
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800886 netif_rx(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887}
888
889static int dvb_net_sec_callback(const u8 *buffer1, size_t buffer1_len,
890 const u8 *buffer2, size_t buffer2_len,
891 struct dmx_section_filter *filter,
892 enum dmx_success success)
893{
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800894 struct net_device *dev = filter->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
896 /**
897 * we rely on the DVB API definition where exactly one complete
898 * section is delivered in buffer1
899 */
900 dvb_net_sec (dev, (u8*) buffer1, buffer1_len);
901 return 0;
902}
903
904static int dvb_net_tx(struct sk_buff *skb, struct net_device *dev)
905{
906 dev_kfree_skb(skb);
907 return 0;
908}
909
910static u8 mask_normal[6]={0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
911static u8 mask_allmulti[6]={0xff, 0xff, 0xff, 0x00, 0x00, 0x00};
912static u8 mac_allmulti[6]={0x01, 0x00, 0x5e, 0x00, 0x00, 0x00};
913static u8 mask_promisc[6]={0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
914
915static int dvb_net_filter_sec_set(struct net_device *dev,
916 struct dmx_section_filter **secfilter,
917 u8 *mac, u8 *mac_mask)
918{
Johannes Stezenbach0c53c702005-05-16 21:54:24 -0700919 struct dvb_net_priv *priv = dev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 int ret;
921
922 *secfilter=NULL;
923 ret = priv->secfeed->allocate_filter(priv->secfeed, secfilter);
924 if (ret<0) {
925 printk("%s: could not get filter\n", dev->name);
926 return ret;
927 }
928
929 (*secfilter)->priv=(void *) dev;
930
931 memset((*secfilter)->filter_value, 0x00, DMX_MAX_FILTER_SIZE);
932 memset((*secfilter)->filter_mask, 0x00, DMX_MAX_FILTER_SIZE);
933 memset((*secfilter)->filter_mode, 0xff, DMX_MAX_FILTER_SIZE);
934
935 (*secfilter)->filter_value[0]=0x3e;
936 (*secfilter)->filter_value[3]=mac[5];
937 (*secfilter)->filter_value[4]=mac[4];
938 (*secfilter)->filter_value[8]=mac[3];
939 (*secfilter)->filter_value[9]=mac[2];
940 (*secfilter)->filter_value[10]=mac[1];
941 (*secfilter)->filter_value[11]=mac[0];
942
943 (*secfilter)->filter_mask[0] = 0xff;
944 (*secfilter)->filter_mask[3] = mac_mask[5];
945 (*secfilter)->filter_mask[4] = mac_mask[4];
946 (*secfilter)->filter_mask[8] = mac_mask[3];
947 (*secfilter)->filter_mask[9] = mac_mask[2];
948 (*secfilter)->filter_mask[10] = mac_mask[1];
949 (*secfilter)->filter_mask[11]=mac_mask[0];
950
951 dprintk("%s: filter mac=%02x %02x %02x %02x %02x %02x\n",
952 dev->name, mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
953 dprintk("%s: filter mask=%02x %02x %02x %02x %02x %02x\n",
954 dev->name, mac_mask[0], mac_mask[1], mac_mask[2],
955 mac_mask[3], mac_mask[4], mac_mask[5]);
956
957 return 0;
958}
959
960static int dvb_net_feed_start(struct net_device *dev)
961{
Ralph Metzler1130ca42005-12-01 00:51:54 -0800962 int ret = 0, i;
Johannes Stezenbach0c53c702005-05-16 21:54:24 -0700963 struct dvb_net_priv *priv = dev->priv;
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800964 struct dmx_demux *demux = priv->demux;
965 unsigned char *mac = (unsigned char *) dev->dev_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
967 dprintk("%s: rx_mode %i\n", __FUNCTION__, priv->rx_mode);
Ingo Molnar3593cab2006-02-07 06:49:14 -0200968 mutex_lock(&priv->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 if (priv->tsfeed || priv->secfeed || priv->secfilter || priv->multi_secfilter[0])
970 printk("%s: BUG %d\n", __FUNCTION__, __LINE__);
971
972 priv->secfeed=NULL;
973 priv->secfilter=NULL;
974 priv->tsfeed = NULL;
975
976 if (priv->feedtype == DVB_NET_FEEDTYPE_MPE) {
977 dprintk("%s: alloc secfeed\n", __FUNCTION__);
978 ret=demux->allocate_section_feed(demux, &priv->secfeed,
979 dvb_net_sec_callback);
980 if (ret<0) {
981 printk("%s: could not allocate section feed\n", dev->name);
Ralph Metzler1130ca42005-12-01 00:51:54 -0800982 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 }
984
Andreas Oberritter5d2cd162005-09-09 13:02:24 -0700985 ret = priv->secfeed->set(priv->secfeed, priv->pid, 32768, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
987 if (ret<0) {
988 printk("%s: could not set section feed\n", dev->name);
989 priv->demux->release_section_feed(priv->demux, priv->secfeed);
990 priv->secfeed=NULL;
Ralph Metzler1130ca42005-12-01 00:51:54 -0800991 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 }
993
994 if (priv->rx_mode != RX_MODE_PROMISC) {
995 dprintk("%s: set secfilter\n", __FUNCTION__);
996 dvb_net_filter_sec_set(dev, &priv->secfilter, mac, mask_normal);
997 }
998
999 switch (priv->rx_mode) {
1000 case RX_MODE_MULTI:
1001 for (i = 0; i < priv->multi_num; i++) {
1002 dprintk("%s: set multi_secfilter[%d]\n", __FUNCTION__, i);
1003 dvb_net_filter_sec_set(dev, &priv->multi_secfilter[i],
1004 priv->multi_macs[i], mask_normal);
1005 }
1006 break;
1007 case RX_MODE_ALL_MULTI:
1008 priv->multi_num=1;
1009 dprintk("%s: set multi_secfilter[0]\n", __FUNCTION__);
1010 dvb_net_filter_sec_set(dev, &priv->multi_secfilter[0],
1011 mac_allmulti, mask_allmulti);
1012 break;
1013 case RX_MODE_PROMISC:
1014 priv->multi_num=0;
1015 dprintk("%s: set secfilter\n", __FUNCTION__);
1016 dvb_net_filter_sec_set(dev, &priv->secfilter, mac, mask_promisc);
1017 break;
1018 }
1019
1020 dprintk("%s: start filtering\n", __FUNCTION__);
1021 priv->secfeed->start_filtering(priv->secfeed);
1022 } else if (priv->feedtype == DVB_NET_FEEDTYPE_ULE) {
Christian Praehauser18232ca2006-05-22 10:31:47 -03001023 struct timespec timeout = { 0, 10000000 }; // 10 msec
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
1025 /* we have payloads encapsulated in TS */
1026 dprintk("%s: alloc tsfeed\n", __FUNCTION__);
1027 ret = demux->allocate_ts_feed(demux, &priv->tsfeed, dvb_net_ts_callback);
1028 if (ret < 0) {
1029 printk("%s: could not allocate ts feed\n", dev->name);
Ralph Metzler1130ca42005-12-01 00:51:54 -08001030 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 }
1032
1033 /* Set netdevice pointer for ts decaps callback. */
1034 priv->tsfeed->priv = (void *)dev;
Christian Praehauser18232ca2006-05-22 10:31:47 -03001035 ret = priv->tsfeed->set(priv->tsfeed,
1036 priv->pid, /* pid */
1037 TS_PACKET, /* type */
1038 DMX_TS_PES_OTHER, /* pes type */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 32768, /* circular buffer size */
Christian Praehauser18232ca2006-05-22 10:31:47 -03001040 timeout /* timeout */
1041 );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
1043 if (ret < 0) {
1044 printk("%s: could not set ts feed\n", dev->name);
1045 priv->demux->release_ts_feed(priv->demux, priv->tsfeed);
1046 priv->tsfeed = NULL;
Ralph Metzler1130ca42005-12-01 00:51:54 -08001047 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 }
1049
1050 dprintk("%s: start filtering\n", __FUNCTION__);
1051 priv->tsfeed->start_filtering(priv->tsfeed);
1052 } else
Ralph Metzler1130ca42005-12-01 00:51:54 -08001053 ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
Ralph Metzler1130ca42005-12-01 00:51:54 -08001055error:
Ingo Molnar3593cab2006-02-07 06:49:14 -02001056 mutex_unlock(&priv->mutex);
Ralph Metzler1130ca42005-12-01 00:51:54 -08001057 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058}
1059
1060static int dvb_net_feed_stop(struct net_device *dev)
1061{
Johannes Stezenbach0c53c702005-05-16 21:54:24 -07001062 struct dvb_net_priv *priv = dev->priv;
Ralph Metzler1130ca42005-12-01 00:51:54 -08001063 int i, ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
1065 dprintk("%s\n", __FUNCTION__);
Ingo Molnar3593cab2006-02-07 06:49:14 -02001066 mutex_lock(&priv->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 if (priv->feedtype == DVB_NET_FEEDTYPE_MPE) {
1068 if (priv->secfeed) {
1069 if (priv->secfeed->is_filtering) {
1070 dprintk("%s: stop secfeed\n", __FUNCTION__);
1071 priv->secfeed->stop_filtering(priv->secfeed);
1072 }
1073
1074 if (priv->secfilter) {
1075 dprintk("%s: release secfilter\n", __FUNCTION__);
1076 priv->secfeed->release_filter(priv->secfeed,
1077 priv->secfilter);
1078 priv->secfilter=NULL;
1079 }
1080
1081 for (i=0; i<priv->multi_num; i++) {
1082 if (priv->multi_secfilter[i]) {
1083 dprintk("%s: release multi_filter[%d]\n",
1084 __FUNCTION__, i);
1085 priv->secfeed->release_filter(priv->secfeed,
1086 priv->multi_secfilter[i]);
1087 priv->multi_secfilter[i] = NULL;
1088 }
1089 }
1090
1091 priv->demux->release_section_feed(priv->demux, priv->secfeed);
1092 priv->secfeed = NULL;
1093 } else
1094 printk("%s: no feed to stop\n", dev->name);
1095 } else if (priv->feedtype == DVB_NET_FEEDTYPE_ULE) {
1096 if (priv->tsfeed) {
1097 if (priv->tsfeed->is_filtering) {
1098 dprintk("%s: stop tsfeed\n", __FUNCTION__);
1099 priv->tsfeed->stop_filtering(priv->tsfeed);
1100 }
1101 priv->demux->release_ts_feed(priv->demux, priv->tsfeed);
1102 priv->tsfeed = NULL;
1103 }
1104 else
1105 printk("%s: no ts feed to stop\n", dev->name);
1106 } else
Ralph Metzler1130ca42005-12-01 00:51:54 -08001107 ret = -EINVAL;
Ingo Molnar3593cab2006-02-07 06:49:14 -02001108 mutex_unlock(&priv->mutex);
Ralph Metzler1130ca42005-12-01 00:51:54 -08001109 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110}
1111
1112
1113static int dvb_set_mc_filter (struct net_device *dev, struct dev_mc_list *mc)
1114{
Johannes Stezenbach0c53c702005-05-16 21:54:24 -07001115 struct dvb_net_priv *priv = dev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
1117 if (priv->multi_num == DVB_NET_MULTICAST_MAX)
1118 return -ENOMEM;
1119
1120 memcpy(priv->multi_macs[priv->multi_num], mc->dmi_addr, 6);
1121
1122 priv->multi_num++;
1123 return 0;
1124}
1125
1126
David Howellsc4028952006-11-22 14:57:56 +00001127static void wq_set_multicast_list (struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128{
David Howellsc4028952006-11-22 14:57:56 +00001129 struct dvb_net_priv *priv =
1130 container_of(work, struct dvb_net_priv, set_multicast_list_wq);
1131 struct net_device *dev = priv->net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
1133 dvb_net_feed_stop(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 priv->rx_mode = RX_MODE_UNI;
Herbert Xu932ff272006-06-09 12:20:56 -07001135 netif_tx_lock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
1137 if (dev->flags & IFF_PROMISC) {
1138 dprintk("%s: promiscuous mode\n", dev->name);
1139 priv->rx_mode = RX_MODE_PROMISC;
1140 } else if ((dev->flags & IFF_ALLMULTI)) {
1141 dprintk("%s: allmulti mode\n", dev->name);
1142 priv->rx_mode = RX_MODE_ALL_MULTI;
1143 } else if (dev->mc_count) {
1144 int mci;
1145 struct dev_mc_list *mc;
1146
1147 dprintk("%s: set_mc_list, %d entries\n",
1148 dev->name, dev->mc_count);
1149
1150 priv->rx_mode = RX_MODE_MULTI;
1151 priv->multi_num = 0;
1152
1153 for (mci = 0, mc=dev->mc_list;
1154 mci < dev->mc_count;
1155 mc = mc->next, mci++) {
1156 dvb_set_mc_filter(dev, mc);
1157 }
1158 }
1159
Herbert Xu932ff272006-06-09 12:20:56 -07001160 netif_tx_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 dvb_net_feed_start(dev);
1162}
1163
1164
1165static void dvb_net_set_multicast_list (struct net_device *dev)
1166{
Johannes Stezenbach0c53c702005-05-16 21:54:24 -07001167 struct dvb_net_priv *priv = dev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 schedule_work(&priv->set_multicast_list_wq);
1169}
1170
1171
David Howellsc4028952006-11-22 14:57:56 +00001172static void wq_restart_net_feed (struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173{
David Howellsc4028952006-11-22 14:57:56 +00001174 struct dvb_net_priv *priv =
1175 container_of(work, struct dvb_net_priv, restart_net_feed_wq);
1176 struct net_device *dev = priv->net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
1178 if (netif_running(dev)) {
1179 dvb_net_feed_stop(dev);
1180 dvb_net_feed_start(dev);
1181 }
1182}
1183
1184
1185static int dvb_net_set_mac (struct net_device *dev, void *p)
1186{
Johannes Stezenbach0c53c702005-05-16 21:54:24 -07001187 struct dvb_net_priv *priv = dev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 struct sockaddr *addr=p;
1189
1190 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
1191
1192 if (netif_running(dev))
1193 schedule_work(&priv->restart_net_feed_wq);
1194
1195 return 0;
1196}
1197
1198
1199static int dvb_net_open(struct net_device *dev)
1200{
Johannes Stezenbach0c53c702005-05-16 21:54:24 -07001201 struct dvb_net_priv *priv = dev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
1203 priv->in_use++;
1204 dvb_net_feed_start(dev);
1205 return 0;
1206}
1207
1208
1209static int dvb_net_stop(struct net_device *dev)
1210{
Johannes Stezenbach0c53c702005-05-16 21:54:24 -07001211 struct dvb_net_priv *priv = dev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
1213 priv->in_use--;
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -08001214 return dvb_net_feed_stop(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215}
1216
1217static struct net_device_stats * dvb_net_get_stats(struct net_device *dev)
1218{
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -08001219 return &((struct dvb_net_priv*) dev->priv)->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220}
1221
1222static void dvb_net_setup(struct net_device *dev)
1223{
1224 ether_setup(dev);
1225
1226 dev->open = dvb_net_open;
1227 dev->stop = dvb_net_stop;
1228 dev->hard_start_xmit = dvb_net_tx;
1229 dev->get_stats = dvb_net_get_stats;
1230 dev->set_multicast_list = dvb_net_set_multicast_list;
1231 dev->set_mac_address = dvb_net_set_mac;
1232 dev->mtu = 4096;
1233 dev->mc_count = 0;
1234 dev->hard_header_cache = NULL;
1235 dev->flags |= IFF_NOARP;
1236}
1237
1238static int get_if(struct dvb_net *dvbnet)
1239{
1240 int i;
1241
1242 for (i=0; i<DVB_NET_DEVICES_MAX; i++)
1243 if (!dvbnet->state[i])
1244 break;
1245
1246 if (i == DVB_NET_DEVICES_MAX)
1247 return -1;
1248
1249 dvbnet->state[i]=1;
1250 return i;
1251}
1252
1253static int dvb_net_add_if(struct dvb_net *dvbnet, u16 pid, u8 feedtype)
1254{
1255 struct net_device *net;
1256 struct dvb_net_priv *priv;
1257 int result;
1258 int if_num;
1259
1260 if (feedtype != DVB_NET_FEEDTYPE_MPE && feedtype != DVB_NET_FEEDTYPE_ULE)
1261 return -EINVAL;
1262 if ((if_num = get_if(dvbnet)) < 0)
1263 return -EINVAL;
1264
1265 net = alloc_netdev(sizeof(struct dvb_net_priv), "dvb", dvb_net_setup);
1266 if (!net)
1267 return -ENOMEM;
1268
1269 if (dvbnet->dvbdev->id)
1270 snprintf(net->name, IFNAMSIZ, "dvb%d%u%d",
1271 dvbnet->dvbdev->adapter->num, dvbnet->dvbdev->id, if_num);
1272 else
1273 /* compatibility fix to keep dvb0_0 format */
1274 snprintf(net->name, IFNAMSIZ, "dvb%d_%d",
1275 dvbnet->dvbdev->adapter->num, if_num);
1276
1277 net->addr_len = 6;
1278 memcpy(net->dev_addr, dvbnet->dvbdev->adapter->proposed_mac, 6);
1279
1280 dvbnet->device[if_num] = net;
1281
1282 priv = net->priv;
David Howellsc4028952006-11-22 14:57:56 +00001283 priv->net = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 priv->demux = dvbnet->demux;
1285 priv->pid = pid;
1286 priv->rx_mode = RX_MODE_UNI;
1287 priv->need_pusi = 1;
1288 priv->tscc = 0;
1289 priv->feedtype = feedtype;
1290 reset_ule(priv);
1291
David Howellsc4028952006-11-22 14:57:56 +00001292 INIT_WORK(&priv->set_multicast_list_wq, wq_set_multicast_list);
1293 INIT_WORK(&priv->restart_net_feed_wq, wq_restart_net_feed);
Ingo Molnar3593cab2006-02-07 06:49:14 -02001294 mutex_init(&priv->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
1296 net->base_addr = pid;
1297
1298 if ((result = register_netdev(net)) < 0) {
1299 dvbnet->device[if_num] = NULL;
1300 free_netdev(net);
1301 return result;
1302 }
1303 printk("dvb_net: created network interface %s\n", net->name);
1304
1305 return if_num;
1306}
1307
Peter Beutner400b7082006-01-09 15:32:43 -02001308static int dvb_net_remove_if(struct dvb_net *dvbnet, unsigned long num)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309{
1310 struct net_device *net = dvbnet->device[num];
1311 struct dvb_net_priv *priv;
1312
1313 if (!dvbnet->state[num])
1314 return -EINVAL;
1315 priv = net->priv;
1316 if (priv->in_use)
1317 return -EBUSY;
1318
1319 dvb_net_stop(net);
1320 flush_scheduled_work();
1321 printk("dvb_net: removed network interface %s\n", net->name);
1322 unregister_netdev(net);
1323 dvbnet->state[num]=0;
1324 dvbnet->device[num] = NULL;
1325 free_netdev(net);
1326
1327 return 0;
1328}
1329
1330static int dvb_net_do_ioctl(struct inode *inode, struct file *file,
1331 unsigned int cmd, void *parg)
1332{
Johannes Stezenbach0c53c702005-05-16 21:54:24 -07001333 struct dvb_device *dvbdev = file->private_data;
1334 struct dvb_net *dvbnet = dvbdev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
1336 if (((file->f_flags&O_ACCMODE)==O_RDONLY))
1337 return -EPERM;
1338
1339 switch (cmd) {
1340 case NET_ADD_IF:
1341 {
Johannes Stezenbach0c53c702005-05-16 21:54:24 -07001342 struct dvb_net_if *dvbnetif = parg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 int result;
1344
1345 if (!capable(CAP_SYS_ADMIN))
1346 return -EPERM;
1347
1348 if (!try_module_get(dvbdev->adapter->module))
1349 return -EPERM;
1350
1351 result=dvb_net_add_if(dvbnet, dvbnetif->pid, dvbnetif->feedtype);
1352 if (result<0) {
1353 module_put(dvbdev->adapter->module);
1354 return result;
1355 }
1356 dvbnetif->if_num=result;
1357 break;
1358 }
1359 case NET_GET_IF:
1360 {
1361 struct net_device *netdev;
1362 struct dvb_net_priv *priv_data;
Johannes Stezenbach0c53c702005-05-16 21:54:24 -07001363 struct dvb_net_if *dvbnetif = parg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
1365 if (dvbnetif->if_num >= DVB_NET_DEVICES_MAX ||
1366 !dvbnet->state[dvbnetif->if_num])
1367 return -EINVAL;
1368
1369 netdev = dvbnet->device[dvbnetif->if_num];
1370
Johannes Stezenbach0c53c702005-05-16 21:54:24 -07001371 priv_data = netdev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 dvbnetif->pid=priv_data->pid;
1373 dvbnetif->feedtype=priv_data->feedtype;
1374 break;
1375 }
1376 case NET_REMOVE_IF:
1377 {
1378 int ret;
1379
1380 if (!capable(CAP_SYS_ADMIN))
1381 return -EPERM;
Hans Verkuile18828e2006-01-09 15:25:28 -02001382 if ((unsigned long) parg >= DVB_NET_DEVICES_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 return -EINVAL;
Hans Verkuile18828e2006-01-09 15:25:28 -02001384 ret = dvb_net_remove_if(dvbnet, (unsigned long) parg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 if (!ret)
1386 module_put(dvbdev->adapter->module);
1387 return ret;
1388 }
1389
1390 /* binary compatiblity cruft */
1391 case __NET_ADD_IF_OLD:
1392 {
Johannes Stezenbach0c53c702005-05-16 21:54:24 -07001393 struct __dvb_net_if_old *dvbnetif = parg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 int result;
1395
1396 if (!capable(CAP_SYS_ADMIN))
1397 return -EPERM;
1398
1399 if (!try_module_get(dvbdev->adapter->module))
1400 return -EPERM;
1401
1402 result=dvb_net_add_if(dvbnet, dvbnetif->pid, DVB_NET_FEEDTYPE_MPE);
1403 if (result<0) {
1404 module_put(dvbdev->adapter->module);
1405 return result;
1406 }
1407 dvbnetif->if_num=result;
1408 break;
1409 }
1410 case __NET_GET_IF_OLD:
1411 {
1412 struct net_device *netdev;
1413 struct dvb_net_priv *priv_data;
Johannes Stezenbach0c53c702005-05-16 21:54:24 -07001414 struct __dvb_net_if_old *dvbnetif = parg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
1416 if (dvbnetif->if_num >= DVB_NET_DEVICES_MAX ||
1417 !dvbnet->state[dvbnetif->if_num])
1418 return -EINVAL;
1419
1420 netdev = dvbnet->device[dvbnetif->if_num];
1421
Johannes Stezenbach0c53c702005-05-16 21:54:24 -07001422 priv_data = netdev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 dvbnetif->pid=priv_data->pid;
1424 break;
1425 }
1426 default:
1427 return -ENOTTY;
1428 }
1429 return 0;
1430}
1431
1432static int dvb_net_ioctl(struct inode *inode, struct file *file,
1433 unsigned int cmd, unsigned long arg)
1434{
1435 return dvb_usercopy(inode, file, cmd, arg, dvb_net_do_ioctl);
1436}
1437
1438static struct file_operations dvb_net_fops = {
1439 .owner = THIS_MODULE,
1440 .ioctl = dvb_net_ioctl,
1441 .open = dvb_generic_open,
1442 .release = dvb_generic_release,
1443};
1444
1445static struct dvb_device dvbdev_net = {
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -08001446 .priv = NULL,
1447 .users = 1,
1448 .writers = 1,
1449 .fops = &dvb_net_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450};
1451
1452
1453void dvb_net_release (struct dvb_net *dvbnet)
1454{
1455 int i;
1456
1457 dvb_unregister_device(dvbnet->dvbdev);
1458
1459 for (i=0; i<DVB_NET_DEVICES_MAX; i++) {
1460 if (!dvbnet->state[i])
1461 continue;
1462 dvb_net_remove_if(dvbnet, i);
1463 }
1464}
1465EXPORT_SYMBOL(dvb_net_release);
1466
1467
1468int dvb_net_init (struct dvb_adapter *adap, struct dvb_net *dvbnet,
1469 struct dmx_demux *dmx)
1470{
1471 int i;
1472
1473 dvbnet->demux = dmx;
1474
1475 for (i=0; i<DVB_NET_DEVICES_MAX; i++)
1476 dvbnet->state[i] = 0;
1477
1478 dvb_register_device (adap, &dvbnet->dvbdev, &dvbdev_net,
1479 dvbnet, DVB_DEVICE_NET);
1480
1481 return 0;
1482}
1483EXPORT_SYMBOL(dvb_net_init);