4 * Copyright (C) 2001 Convergence integrated media GmbH
5 * Ralph Metzler <ralph@convergence.de>
6 * Copyright (C) 2002 Ralph Metzler <rjkm@metzlerbros.de>
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>
15 * ULE Decaps according to draft-ietf-ipdvb-ule-03.txt.
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.
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.
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
35 * Feb 2004: hl/ws v1: Implementing draft-fair-ipdvb-ule-01.txt
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.
48 * FIXME / TODO (dvb_net.c):
50 * Unloading does not work for 2.6.9 kernels: a refcount doesn't go to zero.
52 * TS_FEED callback is called once for every single TS cell although it is
53 * registered (in dvb_net_feed_start()) for 100 TS cells (used for dvb_net_ule()).
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>
66 #include "dvb_demux.h"
69 static int dvb_net_debug;
70 module_param(dvb_net_debug, int, 0444);
71 MODULE_PARM_DESC(dvb_net_debug, "enable debug messages");
73 #define dprintk(x...) do { if (dvb_net_debug) printk(x); } while (0)
76 static inline __u32 iov_crc32( __u32 c, struct kvec *iov, unsigned int cnt )
79 for (j = 0; j < cnt; j++)
80 c = crc32_be( c, iov[j].iov_base, iov[j].iov_len );
85 #define DVB_NET_MULTICAST_MAX 10
91 #define isprint(c) ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9'))
93 static void hexdump( const unsigned char *buf, unsigned short len )
95 char str[80], octet[10];
98 for (ofs = 0; ofs < len; ofs += 16) {
99 sprintf( str, "%03d: ", ofs );
101 for (i = 0; i < 16; i++) {
103 sprintf( octet, "%02x ", buf[ofs + i] );
105 strcpy( octet, " " );
107 strcat( str, octet );
112 for (i = 0; (i < 16) && ((i + ofs) < len); i++)
113 str[l++] = isprint( buf[ofs + i] ) ? buf[ofs + i] : '.';
116 printk( KERN_WARNING "%s\n", str );
122 struct dvb_net_priv {
124 struct net_device_stats stats;
126 struct dvb_net *host;
127 struct dmx_demux *demux;
128 struct dmx_section_feed *secfeed;
129 struct dmx_section_filter *secfilter;
130 struct dmx_ts_feed *tsfeed;
132 struct dmx_section_filter *multi_secfilter[DVB_NET_MULTICAST_MAX];
133 unsigned char multi_macs[DVB_NET_MULTICAST_MAX][6];
135 #define RX_MODE_UNI 0
136 #define RX_MODE_MULTI 1
137 #define RX_MODE_ALL_MULTI 2
138 #define RX_MODE_PROMISC 3
139 struct work_struct set_multicast_list_wq;
140 struct work_struct restart_net_feed_wq;
141 unsigned char feedtype; /* Either FEED_TYPE_ or FEED_TYPE_ULE */
142 int need_pusi; /* Set to 1, if synchronization on PUSI required. */
143 unsigned char tscc; /* TS continuity counter after sync on PUSI. */
144 struct sk_buff *ule_skb; /* ULE SNDU decodes into this buffer. */
145 unsigned char *ule_next_hdr; /* Pointer into skb to next ULE extension header. */
146 unsigned short ule_sndu_len; /* ULE SNDU length in bytes, w/o D-Bit. */
147 unsigned short ule_sndu_type; /* ULE SNDU type field, complete. */
148 unsigned char ule_sndu_type_1; /* ULE SNDU type field, if split across 2 TS cells. */
149 unsigned char ule_dbit; /* Whether the DestMAC address present
150 * or not (bit is set). */
151 unsigned char ule_bridged; /* Whether the ULE_BRIDGED extension header was found. */
152 int ule_sndu_remain; /* Nr. of bytes still required for current ULE SNDU. */
153 unsigned long ts_count; /* Current ts cell counter. */
155 struct semaphore mutex;
160 * Determine the packet's protocol ID. The rule here is that we
161 * assume 802.3 if the type field is short enough to be a length.
162 * This is normal practice and works for any 'now in use' protocol.
164 * stolen from eth.c out of the linux kernel, hacked for dvb-device
165 * by Michael Holzt <kju@debian.org>
167 static unsigned short dvb_net_eth_type_trans(struct sk_buff *skb,
168 struct net_device *dev)
173 skb->mac.raw=skb->data;
174 skb_pull(skb,dev->hard_header_len);
177 if (*eth->h_dest & 1) {
178 if(memcmp(eth->h_dest,dev->broadcast, ETH_ALEN)==0)
179 skb->pkt_type=PACKET_BROADCAST;
181 skb->pkt_type=PACKET_MULTICAST;
184 if (ntohs(eth->h_proto) >= 1536)
190 * This is a magic hack to spot IPX packets. Older Novell breaks
191 * the protocol design and runs IPX over 802.3 without an 802.2 LLC
192 * layer. We look for FFFF which isn't a used 802.2 SSAP/DSAP. This
193 * won't work for fault tolerant netware but does for the rest.
195 if (*(unsigned short *)rawp == 0xFFFF)
196 return htons(ETH_P_802_3);
201 return htons(ETH_P_802_2);
212 /* ULE Extension Header handlers. */
215 #define ULE_BRIDGED 1
217 static int ule_test_sndu( struct dvb_net_priv *p )
222 static int ule_bridged_sndu( struct dvb_net_priv *p )
224 /* BRIDGE SNDU handling sucks in draft-ietf-ipdvb-ule-03.txt.
225 * This has to be the last extension header, otherwise it won't work.
233 /** Handle ULE extension headers.
234 * Function is called after a successful CRC32 verification of an ULE SNDU to complete its decoding.
235 * Returns: >= 0: nr. of bytes consumed by next extension header
236 * -1: Mandatory extension header that is not recognized or TEST SNDU; discard.
238 static int handle_one_ule_extension( struct dvb_net_priv *p )
240 /* Table of mandatory extension header handlers. The header type is the index. */
241 static int (*ule_mandatory_ext_handlers[255])( struct dvb_net_priv *p ) =
242 { [0] = ule_test_sndu, [1] = ule_bridged_sndu, [2] = NULL, };
244 /* Table of optional extension header handlers. The header type is the index. */
245 static int (*ule_optional_ext_handlers[255])( struct dvb_net_priv *p ) = { NULL, };
248 unsigned char hlen = (p->ule_sndu_type & 0x0700) >> 8;
249 unsigned char htype = p->ule_sndu_type & 0x00FF;
251 /* Discriminate mandatory and optional extension headers. */
253 /* Mandatory extension header */
254 if (ule_mandatory_ext_handlers[htype]) {
255 ext_len = ule_mandatory_ext_handlers[htype]( p );
256 p->ule_next_hdr += ext_len;
257 if (! p->ule_bridged) {
258 p->ule_sndu_type = ntohs( *(unsigned short *)p->ule_next_hdr );
259 p->ule_next_hdr += 2;
261 p->ule_sndu_type = ntohs( *(unsigned short *)(p->ule_next_hdr + ((p->ule_dbit ? 2 : 3) * ETH_ALEN)) );
262 /* This assures the extension handling loop will terminate. */
265 ext_len = -1; /* SNDU has to be discarded. */
267 /* Optional extension header. Calculate the length. */
269 /* Process the optional extension header according to its type. */
270 if (ule_optional_ext_handlers[htype])
271 (void)ule_optional_ext_handlers[htype]( p );
272 p->ule_next_hdr += ext_len;
273 p->ule_sndu_type = ntohs( *(unsigned short *)p->ule_next_hdr );
274 p->ule_next_hdr += 2;
280 static int handle_ule_extensions( struct dvb_net_priv *p )
282 int total_ext_len = 0, l;
284 p->ule_next_hdr = p->ule_skb->data;
286 l = handle_one_ule_extension( p );
287 if (l == -1) return -1; /* Stop extension header processing and discard SNDU. */
290 } while (p->ule_sndu_type < 1536);
292 return total_ext_len;
296 /** Prepare for a new ULE SNDU: reset the decoder state. */
297 static inline void reset_ule( struct dvb_net_priv *p )
300 p->ule_next_hdr = NULL;
302 p->ule_sndu_type = 0;
303 p->ule_sndu_type_1 = 0;
304 p->ule_sndu_remain = 0;
310 * Decode ULE SNDUs according to draft-ietf-ipdvb-ule-03.txt from a sequence of
311 * TS cells of a single PID.
313 static void dvb_net_ule( struct net_device *dev, const u8 *buf, size_t buf_len )
315 struct dvb_net_priv *priv = dev->priv;
316 unsigned long skipped = 0L;
317 u8 *ts, *ts_end, *from_where = NULL, ts_remain = 0, how_much = 0, new_ts = 1;
318 struct ethhdr *ethh = NULL;
321 /* The code inside ULE_DEBUG keeps a history of the last 100 TS cells processed. */
322 static unsigned char ule_hist[100*TS_SZ];
323 static unsigned char *ule_where = ule_hist, ule_dump = 0;
327 printk( KERN_ERR "NO netdev struct!\n" );
331 /* For all TS cells in current buffer.
332 * Appearently, we are called for every single TS cell.
334 for (ts = (char *)buf, ts_end = (char *)buf + buf_len; ts < ts_end; /* no default incr. */ ) {
337 /* We are about to process a new TS cell. */
340 if (ule_where >= &ule_hist[100*TS_SZ]) ule_where = ule_hist;
341 memcpy( ule_where, ts, TS_SZ );
343 hexdump( ule_where, TS_SZ );
349 /* Check TS error conditions: sync_byte, transport_error_indicator, scrambling_control . */
350 if ((ts[0] != TS_SYNC) || (ts[1] & TS_TEI) || ((ts[3] & TS_SC) != 0)) {
351 printk(KERN_WARNING "%lu: Invalid TS cell: SYNC %#x, TEI %u, SC %#x.\n",
352 priv->ts_count, ts[0], ts[1] & TS_TEI >> 7, ts[3] & 0xC0 >> 6);
354 /* Drop partly decoded SNDU, reset state, resync on PUSI. */
356 dev_kfree_skb( priv->ule_skb );
357 /* Prepare for next SNDU. */
358 ((struct dvb_net_priv *) dev->priv)->stats.rx_errors++;
359 ((struct dvb_net_priv *) dev->priv)->stats.rx_frame_errors++;
364 /* Continue with next TS cell. */
373 /* Synchronize on PUSI, if required. */
374 if (priv->need_pusi) {
375 if (ts[1] & TS_PUSI) {
376 /* Find beginning of first ULE SNDU in current TS cell. */
377 /* Synchronize continuity counter. */
378 priv->tscc = ts[3] & 0x0F;
379 /* There is a pointer field here. */
380 if (ts[4] > ts_remain) {
381 printk(KERN_ERR "%lu: Invalid ULE packet "
382 "(pointer field %d)\n", priv->ts_count, ts[4]);
387 /* Skip to destination of pointer field. */
388 from_where = &ts[5] + ts[4];
389 ts_remain -= 1 + ts[4];
399 /* Check continuity counter. */
401 if ((ts[3] & 0x0F) == priv->tscc)
402 priv->tscc = (priv->tscc + 1) & 0x0F;
404 /* TS discontinuity handling: */
405 printk(KERN_WARNING "%lu: TS discontinuity: got %#x, "
406 "exptected %#x.\n", priv->ts_count, ts[3] & 0x0F, priv->tscc);
407 /* Drop partly decoded SNDU, reset state, resync on PUSI. */
409 dev_kfree_skb( priv->ule_skb );
410 /* Prepare for next SNDU. */
411 // reset_ule(priv); moved to below.
412 ((struct dvb_net_priv *) dev->priv)->stats.rx_errors++;
413 ((struct dvb_net_priv *) dev->priv)->stats.rx_frame_errors++;
416 /* skip to next PUSI. */
422 /* If we still have an incomplete payload, but PUSI is
423 * set; some TS cells are missing.
424 * This is only possible here, if we missed exactly 16 TS
425 * cells (continuity counter wrap). */
426 if (ts[1] & TS_PUSI) {
427 if (! priv->need_pusi) {
428 if (*from_where > 181) {
429 /* Pointer field is invalid. Drop this TS cell and any started ULE SNDU. */
430 printk(KERN_WARNING "%lu: Invalid pointer "
431 "field: %u.\n", priv->ts_count, *from_where);
433 /* Drop partly decoded SNDU, reset state, resync on PUSI. */
435 dev_kfree_skb( priv->ule_skb );
436 ((struct dvb_net_priv *) dev->priv)->stats.rx_errors++;
437 ((struct dvb_net_priv *) dev->priv)->stats.rx_frame_errors++;
445 /* Skip pointer field (we're processing a
446 * packed payload). */
452 if (priv->ule_sndu_remain > 183) {
453 /* Current SNDU lacks more data than there could be available in the
454 * current TS cell. */
455 ((struct dvb_net_priv *) dev->priv)->stats.rx_errors++;
456 ((struct dvb_net_priv *) dev->priv)->stats.rx_length_errors++;
457 printk(KERN_WARNING "%lu: Expected %d more SNDU bytes, but "
458 "got PUSI (pf %d, ts_remain %d). Flushing incomplete payload.\n",
459 priv->ts_count, priv->ule_sndu_remain, ts[4], ts_remain);
460 dev_kfree_skb(priv->ule_skb);
461 /* Prepare for next SNDU. */
463 /* Resync: go to where pointer field points to: start of next ULE SNDU. */
470 /* Check if new payload needs to be started. */
471 if (priv->ule_skb == NULL) {
472 /* Start a new payload with skb.
473 * Find ULE header. It is only guaranteed that the
474 * length field (2 bytes) is contained in the current
476 * Check ts_remain has to be >= 2 here. */
478 printk(KERN_WARNING "Invalid payload packing: only %d "
479 "bytes left in TS. Resyncing.\n", ts_remain);
480 priv->ule_sndu_len = 0;
485 if (! priv->ule_sndu_len) {
486 /* Got at least two bytes, thus extrace the SNDU length. */
487 priv->ule_sndu_len = from_where[0] << 8 | from_where[1];
488 if (priv->ule_sndu_len & 0x8000) {
489 /* D-Bit is set: no dest mac present. */
490 priv->ule_sndu_len &= 0x7FFF;
495 if (priv->ule_sndu_len > 32763) {
496 printk(KERN_WARNING "%lu: Invalid ULE SNDU length %u. "
497 "Resyncing.\n", priv->ts_count, priv->ule_sndu_len);
498 priv->ule_sndu_len = 0;
505 ts_remain -= 2; /* consume the 2 bytes SNDU length. */
510 * State of current TS:
511 * ts_remain (remaining bytes in the current TS cell)
512 * 0 ule_type is not available now, we need the next TS cell
513 * 1 the first byte of the ule_type is present
514 * >=2 full ULE header present, maybe some payload data as well.
518 priv->ule_sndu_type = from_where[0] << 8;
519 priv->ule_sndu_type_1 = 1; /* first byte of ule_type is set. */
520 ts_remain -= 1; from_where += 1;
521 /* Continue w/ next TS. */
528 default: /* complete ULE header is present in current TS. */
529 /* Extract ULE type field. */
530 if (priv->ule_sndu_type_1) {
531 priv->ule_sndu_type |= from_where[0];
532 from_where += 1; /* points to payload start. */
535 /* Complete type is present in new TS. */
536 priv->ule_sndu_type = from_where[0] << 8 | from_where[1];
537 from_where += 2; /* points to payload start. */
543 /* Allocate the skb (decoder target buffer) with the correct size, as follows:
544 * prepare for the largest case: bridged SNDU with MAC address (dbit = 0). */
545 priv->ule_skb = dev_alloc_skb( priv->ule_sndu_len + ETH_HLEN + ETH_ALEN );
546 if (priv->ule_skb == NULL) {
547 printk(KERN_NOTICE "%s: Memory squeeze, dropping packet.\n",
549 ((struct dvb_net_priv *)dev->priv)->stats.rx_dropped++;
553 /* This includes the CRC32 _and_ dest mac, if !dbit. */
554 priv->ule_sndu_remain = priv->ule_sndu_len;
555 priv->ule_skb->dev = dev;
556 /* Leave space for Ethernet or bridged SNDU header (eth hdr plus one MAC addr). */
557 skb_reserve( priv->ule_skb, ETH_HLEN + ETH_ALEN );
560 /* Copy data into our current skb. */
561 how_much = min(priv->ule_sndu_remain, (int)ts_remain);
562 memcpy(skb_put(priv->ule_skb, how_much), from_where, how_much);
563 priv->ule_sndu_remain -= how_much;
564 ts_remain -= how_much;
565 from_where += how_much;
567 /* Check for complete payload. */
568 if (priv->ule_sndu_remain <= 0) {
569 /* Check CRC32, we've got it in our skb already. */
570 unsigned short ulen = htons(priv->ule_sndu_len);
571 unsigned short utype = htons(priv->ule_sndu_type);
572 struct kvec iov[3] = {
573 { &ulen, sizeof ulen },
574 { &utype, sizeof utype },
575 { priv->ule_skb->data, priv->ule_skb->len - 4 }
577 unsigned long ule_crc = ~0L, expected_crc;
578 if (priv->ule_dbit) {
579 /* Set D-bit for CRC32 verification,
580 * if it was set originally. */
584 ule_crc = iov_crc32(ule_crc, iov, 3);
585 expected_crc = *((u8 *)priv->ule_skb->tail - 4) << 24 |
586 *((u8 *)priv->ule_skb->tail - 3) << 16 |
587 *((u8 *)priv->ule_skb->tail - 2) << 8 |
588 *((u8 *)priv->ule_skb->tail - 1);
589 if (ule_crc != expected_crc) {
590 printk(KERN_WARNING "%lu: CRC32 check FAILED: %#lx / %#lx, SNDU len %d type %#x, ts_remain %d, next 2: %x.\n",
591 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);
594 hexdump( iov[0].iov_base, iov[0].iov_len );
595 hexdump( iov[1].iov_base, iov[1].iov_len );
596 hexdump( iov[2].iov_base, iov[2].iov_len );
598 if (ule_where == ule_hist) {
599 hexdump( &ule_hist[98*TS_SZ], TS_SZ );
600 hexdump( &ule_hist[99*TS_SZ], TS_SZ );
601 } else if (ule_where == &ule_hist[TS_SZ]) {
602 hexdump( &ule_hist[99*TS_SZ], TS_SZ );
603 hexdump( ule_hist, TS_SZ );
605 hexdump( ule_where - TS_SZ - TS_SZ, TS_SZ );
606 hexdump( ule_where - TS_SZ, TS_SZ );
611 ((struct dvb_net_priv *) dev->priv)->stats.rx_errors++;
612 ((struct dvb_net_priv *) dev->priv)->stats.rx_crc_errors++;
613 dev_kfree_skb(priv->ule_skb);
615 /* CRC32 verified OK. */
616 /* Handle ULE Extension Headers. */
617 if (priv->ule_sndu_type < 1536) {
618 /* There is an extension header. Handle it accordingly. */
619 int l = handle_ule_extensions( priv );
621 /* Mandatory extension header unknown or TEST SNDU. Drop it. */
622 // printk( KERN_WARNING "Dropping SNDU, extension headers.\n" );
623 dev_kfree_skb( priv->ule_skb );
626 skb_pull( priv->ule_skb, l );
629 /* CRC32 was OK. Remove it from skb. */
630 priv->ule_skb->tail -= 4;
631 priv->ule_skb->len -= 4;
633 /* Filter on receiver's destination MAC address, if present. */
634 if (!priv->ule_dbit) {
635 /* The destination MAC address is the next data in the skb. */
636 if (memcmp( priv->ule_skb->data, dev->dev_addr, ETH_ALEN )) {
637 /* MAC addresses don't match. Drop SNDU. */
638 // printk( KERN_WARNING "Dropping SNDU, MAC address.\n" );
639 dev_kfree_skb( priv->ule_skb );
642 if (! priv->ule_bridged) {
643 skb_push( priv->ule_skb, ETH_ALEN + 2 );
644 ethh = (struct ethhdr *)priv->ule_skb->data;
645 memcpy( ethh->h_dest, ethh->h_source, ETH_ALEN );
646 memset( ethh->h_source, 0, ETH_ALEN );
647 ethh->h_proto = htons( priv->ule_sndu_type );
649 /* Skip the Receiver destination MAC address. */
650 skb_pull( priv->ule_skb, ETH_ALEN );
653 if (! priv->ule_bridged) {
654 skb_push( priv->ule_skb, ETH_HLEN );
655 ethh = (struct ethhdr *)priv->ule_skb->data;
656 memcpy( ethh->h_dest, dev->dev_addr, ETH_ALEN );
657 memset( ethh->h_source, 0, ETH_ALEN );
658 ethh->h_proto = htons( priv->ule_sndu_type );
660 /* skb is in correct state; nothing to do. */
663 priv->ule_bridged = 0;
665 /* Stuff into kernel's protocol stack. */
666 priv->ule_skb->protocol = dvb_net_eth_type_trans(priv->ule_skb, dev);
667 /* If D-bit is set (i.e. destination MAC address not present),
668 * receive the packet anyhow. */
669 /* if (priv->ule_dbit && skb->pkt_type == PACKET_OTHERHOST)
670 priv->ule_skb->pkt_type = PACKET_HOST; */
671 ((struct dvb_net_priv *) dev->priv)->stats.rx_packets++;
672 ((struct dvb_net_priv *) dev->priv)->stats.rx_bytes += priv->ule_skb->len;
673 netif_rx(priv->ule_skb);
676 /* Prepare for next SNDU. */
680 /* More data in current TS (look at the bytes following the CRC32)? */
681 if (ts_remain >= 2 && *((unsigned short *)from_where) != 0xFFFF) {
682 /* Next ULE SNDU starts right there. */
684 priv->ule_skb = NULL;
685 priv->ule_sndu_type_1 = 0;
686 priv->ule_sndu_len = 0;
687 // printk(KERN_WARNING "More data in current TS: [%#x %#x %#x %#x]\n",
688 // *(from_where + 0), *(from_where + 1),
689 // *(from_where + 2), *(from_where + 3));
690 // printk(KERN_WARNING "ts @ %p, stopped @ %p:\n", ts, from_where + 0);
696 if (priv->ule_skb == NULL) {
698 priv->ule_sndu_type_1 = 0;
699 priv->ule_sndu_len = 0;
702 } /* for all available TS cells */
705 static int dvb_net_ts_callback(const u8 *buffer1, size_t buffer1_len,
706 const u8 *buffer2, size_t buffer2_len,
707 struct dmx_ts_feed *feed, enum dmx_success success)
709 struct net_device *dev = feed->priv;
712 printk(KERN_WARNING "buffer2 not 0: %p.\n", buffer2);
713 if (buffer1_len > 32768)
714 printk(KERN_WARNING "length > 32k: %zu.\n", buffer1_len);
715 /* printk("TS callback: %u bytes, %u TS cells @ %p.\n",
716 buffer1_len, buffer1_len / TS_SZ, buffer1); */
717 dvb_net_ule(dev, buffer1, buffer1_len);
722 static void dvb_net_sec(struct net_device *dev, u8 *pkt, int pkt_len)
726 struct net_device_stats *stats = &(((struct dvb_net_priv *) dev->priv)->stats);
729 /* note: pkt_len includes a 32bit checksum */
731 printk("%s: IP/MPE packet length = %d too small.\n",
734 stats->rx_length_errors++;
737 /* it seems some ISPs manage to screw up here, so we have to
738 * relax the error checks... */
740 if ((pkt[5] & 0xfd) != 0xc1) {
741 /* drop scrambled or broken packets */
743 if ((pkt[5] & 0x3c) != 0x00) {
747 stats->rx_crc_errors++;
751 /* handle LLC/SNAP, see rfc-1042 */
752 if (pkt_len < 24 || memcmp(&pkt[12], "\xaa\xaa\x03\0\0\0", 6)) {
759 /* FIXME: assemble datagram from multiple sections */
761 stats->rx_frame_errors++;
765 /* we have 14 byte ethernet header (ip header follows);
766 * 12 byte MPE header; 4 byte checksum; + 2 byte alignment, 8 byte LLC/SNAP
768 if (!(skb = dev_alloc_skb(pkt_len - 4 - 12 + 14 + 2 - snap))) {
769 //printk(KERN_NOTICE "%s: Memory squeeze, dropping packet.\n", dev->name);
773 skb_reserve(skb, 2); /* longword align L3 header */
776 /* copy L3 payload */
777 eth = (u8 *) skb_put(skb, pkt_len - 12 - 4 + 14 - snap);
778 memcpy(eth + 14, pkt + 12 + snap, pkt_len - 12 - 4 - snap);
780 /* create ethernet header: */
788 eth[6]=eth[7]=eth[8]=eth[9]=eth[10]=eth[11]=0;
794 /* protocol numbers are from rfc-1700 or
795 * http://www.iana.org/assignments/ethernet-numbers
797 if (pkt[12] >> 4 == 6) { /* version field from IP header */
798 eth[12] = 0x86; /* IPv6 */
801 eth[12] = 0x08; /* IPv4 */
806 skb->protocol = dvb_net_eth_type_trans(skb, dev);
809 stats->rx_bytes+=skb->len;
813 static int dvb_net_sec_callback(const u8 *buffer1, size_t buffer1_len,
814 const u8 *buffer2, size_t buffer2_len,
815 struct dmx_section_filter *filter,
816 enum dmx_success success)
818 struct net_device *dev = filter->priv;
821 * we rely on the DVB API definition where exactly one complete
822 * section is delivered in buffer1
824 dvb_net_sec (dev, (u8*) buffer1, buffer1_len);
828 static int dvb_net_tx(struct sk_buff *skb, struct net_device *dev)
834 static u8 mask_normal[6]={0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
835 static u8 mask_allmulti[6]={0xff, 0xff, 0xff, 0x00, 0x00, 0x00};
836 static u8 mac_allmulti[6]={0x01, 0x00, 0x5e, 0x00, 0x00, 0x00};
837 static u8 mask_promisc[6]={0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
839 static int dvb_net_filter_sec_set(struct net_device *dev,
840 struct dmx_section_filter **secfilter,
841 u8 *mac, u8 *mac_mask)
843 struct dvb_net_priv *priv = dev->priv;
847 ret = priv->secfeed->allocate_filter(priv->secfeed, secfilter);
849 printk("%s: could not get filter\n", dev->name);
853 (*secfilter)->priv=(void *) dev;
855 memset((*secfilter)->filter_value, 0x00, DMX_MAX_FILTER_SIZE);
856 memset((*secfilter)->filter_mask, 0x00, DMX_MAX_FILTER_SIZE);
857 memset((*secfilter)->filter_mode, 0xff, DMX_MAX_FILTER_SIZE);
859 (*secfilter)->filter_value[0]=0x3e;
860 (*secfilter)->filter_value[3]=mac[5];
861 (*secfilter)->filter_value[4]=mac[4];
862 (*secfilter)->filter_value[8]=mac[3];
863 (*secfilter)->filter_value[9]=mac[2];
864 (*secfilter)->filter_value[10]=mac[1];
865 (*secfilter)->filter_value[11]=mac[0];
867 (*secfilter)->filter_mask[0] = 0xff;
868 (*secfilter)->filter_mask[3] = mac_mask[5];
869 (*secfilter)->filter_mask[4] = mac_mask[4];
870 (*secfilter)->filter_mask[8] = mac_mask[3];
871 (*secfilter)->filter_mask[9] = mac_mask[2];
872 (*secfilter)->filter_mask[10] = mac_mask[1];
873 (*secfilter)->filter_mask[11]=mac_mask[0];
875 dprintk("%s: filter mac=%02x %02x %02x %02x %02x %02x\n",
876 dev->name, mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
877 dprintk("%s: filter mask=%02x %02x %02x %02x %02x %02x\n",
878 dev->name, mac_mask[0], mac_mask[1], mac_mask[2],
879 mac_mask[3], mac_mask[4], mac_mask[5]);
884 static int dvb_net_feed_start(struct net_device *dev)
887 struct dvb_net_priv *priv = dev->priv;
888 struct dmx_demux *demux = priv->demux;
889 unsigned char *mac = (unsigned char *) dev->dev_addr;
891 dprintk("%s: rx_mode %i\n", __FUNCTION__, priv->rx_mode);
893 if (priv->tsfeed || priv->secfeed || priv->secfilter || priv->multi_secfilter[0])
894 printk("%s: BUG %d\n", __FUNCTION__, __LINE__);
897 priv->secfilter=NULL;
900 if (priv->feedtype == DVB_NET_FEEDTYPE_MPE) {
901 dprintk("%s: alloc secfeed\n", __FUNCTION__);
902 ret=demux->allocate_section_feed(demux, &priv->secfeed,
903 dvb_net_sec_callback);
905 printk("%s: could not allocate section feed\n", dev->name);
909 ret = priv->secfeed->set(priv->secfeed, priv->pid, 32768, 1);
912 printk("%s: could not set section feed\n", dev->name);
913 priv->demux->release_section_feed(priv->demux, priv->secfeed);
918 if (priv->rx_mode != RX_MODE_PROMISC) {
919 dprintk("%s: set secfilter\n", __FUNCTION__);
920 dvb_net_filter_sec_set(dev, &priv->secfilter, mac, mask_normal);
923 switch (priv->rx_mode) {
925 for (i = 0; i < priv->multi_num; i++) {
926 dprintk("%s: set multi_secfilter[%d]\n", __FUNCTION__, i);
927 dvb_net_filter_sec_set(dev, &priv->multi_secfilter[i],
928 priv->multi_macs[i], mask_normal);
931 case RX_MODE_ALL_MULTI:
933 dprintk("%s: set multi_secfilter[0]\n", __FUNCTION__);
934 dvb_net_filter_sec_set(dev, &priv->multi_secfilter[0],
935 mac_allmulti, mask_allmulti);
937 case RX_MODE_PROMISC:
939 dprintk("%s: set secfilter\n", __FUNCTION__);
940 dvb_net_filter_sec_set(dev, &priv->secfilter, mac, mask_promisc);
944 dprintk("%s: start filtering\n", __FUNCTION__);
945 priv->secfeed->start_filtering(priv->secfeed);
946 } else if (priv->feedtype == DVB_NET_FEEDTYPE_ULE) {
947 struct timespec timeout = { 0, 30000000 }; // 30 msec
949 /* we have payloads encapsulated in TS */
950 dprintk("%s: alloc tsfeed\n", __FUNCTION__);
951 ret = demux->allocate_ts_feed(demux, &priv->tsfeed, dvb_net_ts_callback);
953 printk("%s: could not allocate ts feed\n", dev->name);
957 /* Set netdevice pointer for ts decaps callback. */
958 priv->tsfeed->priv = (void *)dev;
959 ret = priv->tsfeed->set(priv->tsfeed, priv->pid,
960 TS_PACKET, DMX_TS_PES_OTHER,
961 32768, /* circular buffer size */
965 printk("%s: could not set ts feed\n", dev->name);
966 priv->demux->release_ts_feed(priv->demux, priv->tsfeed);
971 dprintk("%s: start filtering\n", __FUNCTION__);
972 priv->tsfeed->start_filtering(priv->tsfeed);
981 static int dvb_net_feed_stop(struct net_device *dev)
983 struct dvb_net_priv *priv = dev->priv;
986 dprintk("%s\n", __FUNCTION__);
988 if (priv->feedtype == DVB_NET_FEEDTYPE_MPE) {
990 if (priv->secfeed->is_filtering) {
991 dprintk("%s: stop secfeed\n", __FUNCTION__);
992 priv->secfeed->stop_filtering(priv->secfeed);
995 if (priv->secfilter) {
996 dprintk("%s: release secfilter\n", __FUNCTION__);
997 priv->secfeed->release_filter(priv->secfeed,
999 priv->secfilter=NULL;
1002 for (i=0; i<priv->multi_num; i++) {
1003 if (priv->multi_secfilter[i]) {
1004 dprintk("%s: release multi_filter[%d]\n",
1006 priv->secfeed->release_filter(priv->secfeed,
1007 priv->multi_secfilter[i]);
1008 priv->multi_secfilter[i] = NULL;
1012 priv->demux->release_section_feed(priv->demux, priv->secfeed);
1013 priv->secfeed = NULL;
1015 printk("%s: no feed to stop\n", dev->name);
1016 } else if (priv->feedtype == DVB_NET_FEEDTYPE_ULE) {
1018 if (priv->tsfeed->is_filtering) {
1019 dprintk("%s: stop tsfeed\n", __FUNCTION__);
1020 priv->tsfeed->stop_filtering(priv->tsfeed);
1022 priv->demux->release_ts_feed(priv->demux, priv->tsfeed);
1023 priv->tsfeed = NULL;
1026 printk("%s: no ts feed to stop\n", dev->name);
1034 static int dvb_set_mc_filter (struct net_device *dev, struct dev_mc_list *mc)
1036 struct dvb_net_priv *priv = dev->priv;
1038 if (priv->multi_num == DVB_NET_MULTICAST_MAX)
1041 memcpy(priv->multi_macs[priv->multi_num], mc->dmi_addr, 6);
1048 static void wq_set_multicast_list (void *data)
1050 struct net_device *dev = data;
1051 struct dvb_net_priv *priv = dev->priv;
1053 dvb_net_feed_stop(dev);
1054 priv->rx_mode = RX_MODE_UNI;
1055 spin_lock_bh(&dev->xmit_lock);
1057 if (dev->flags & IFF_PROMISC) {
1058 dprintk("%s: promiscuous mode\n", dev->name);
1059 priv->rx_mode = RX_MODE_PROMISC;
1060 } else if ((dev->flags & IFF_ALLMULTI)) {
1061 dprintk("%s: allmulti mode\n", dev->name);
1062 priv->rx_mode = RX_MODE_ALL_MULTI;
1063 } else if (dev->mc_count) {
1065 struct dev_mc_list *mc;
1067 dprintk("%s: set_mc_list, %d entries\n",
1068 dev->name, dev->mc_count);
1070 priv->rx_mode = RX_MODE_MULTI;
1071 priv->multi_num = 0;
1073 for (mci = 0, mc=dev->mc_list;
1074 mci < dev->mc_count;
1075 mc = mc->next, mci++) {
1076 dvb_set_mc_filter(dev, mc);
1080 spin_unlock_bh(&dev->xmit_lock);
1081 dvb_net_feed_start(dev);
1085 static void dvb_net_set_multicast_list (struct net_device *dev)
1087 struct dvb_net_priv *priv = dev->priv;
1088 schedule_work(&priv->set_multicast_list_wq);
1092 static void wq_restart_net_feed (void *data)
1094 struct net_device *dev = data;
1096 if (netif_running(dev)) {
1097 dvb_net_feed_stop(dev);
1098 dvb_net_feed_start(dev);
1103 static int dvb_net_set_mac (struct net_device *dev, void *p)
1105 struct dvb_net_priv *priv = dev->priv;
1106 struct sockaddr *addr=p;
1108 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
1110 if (netif_running(dev))
1111 schedule_work(&priv->restart_net_feed_wq);
1117 static int dvb_net_open(struct net_device *dev)
1119 struct dvb_net_priv *priv = dev->priv;
1122 dvb_net_feed_start(dev);
1127 static int dvb_net_stop(struct net_device *dev)
1129 struct dvb_net_priv *priv = dev->priv;
1132 return dvb_net_feed_stop(dev);
1135 static struct net_device_stats * dvb_net_get_stats(struct net_device *dev)
1137 return &((struct dvb_net_priv*) dev->priv)->stats;
1140 static void dvb_net_setup(struct net_device *dev)
1144 dev->open = dvb_net_open;
1145 dev->stop = dvb_net_stop;
1146 dev->hard_start_xmit = dvb_net_tx;
1147 dev->get_stats = dvb_net_get_stats;
1148 dev->set_multicast_list = dvb_net_set_multicast_list;
1149 dev->set_mac_address = dvb_net_set_mac;
1152 dev->hard_header_cache = NULL;
1153 dev->flags |= IFF_NOARP;
1156 static int get_if(struct dvb_net *dvbnet)
1160 for (i=0; i<DVB_NET_DEVICES_MAX; i++)
1161 if (!dvbnet->state[i])
1164 if (i == DVB_NET_DEVICES_MAX)
1171 static int dvb_net_add_if(struct dvb_net *dvbnet, u16 pid, u8 feedtype)
1173 struct net_device *net;
1174 struct dvb_net_priv *priv;
1178 if (feedtype != DVB_NET_FEEDTYPE_MPE && feedtype != DVB_NET_FEEDTYPE_ULE)
1180 if ((if_num = get_if(dvbnet)) < 0)
1183 net = alloc_netdev(sizeof(struct dvb_net_priv), "dvb", dvb_net_setup);
1187 if (dvbnet->dvbdev->id)
1188 snprintf(net->name, IFNAMSIZ, "dvb%d%u%d",
1189 dvbnet->dvbdev->adapter->num, dvbnet->dvbdev->id, if_num);
1191 /* compatibility fix to keep dvb0_0 format */
1192 snprintf(net->name, IFNAMSIZ, "dvb%d_%d",
1193 dvbnet->dvbdev->adapter->num, if_num);
1196 memcpy(net->dev_addr, dvbnet->dvbdev->adapter->proposed_mac, 6);
1198 dvbnet->device[if_num] = net;
1201 priv->demux = dvbnet->demux;
1203 priv->rx_mode = RX_MODE_UNI;
1204 priv->need_pusi = 1;
1206 priv->feedtype = feedtype;
1209 INIT_WORK(&priv->set_multicast_list_wq, wq_set_multicast_list, net);
1210 INIT_WORK(&priv->restart_net_feed_wq, wq_restart_net_feed, net);
1211 init_MUTEX(&priv->mutex);
1213 net->base_addr = pid;
1215 if ((result = register_netdev(net)) < 0) {
1216 dvbnet->device[if_num] = NULL;
1220 printk("dvb_net: created network interface %s\n", net->name);
1225 static int dvb_net_remove_if(struct dvb_net *dvbnet, unsigned int num)
1227 struct net_device *net = dvbnet->device[num];
1228 struct dvb_net_priv *priv;
1230 if (!dvbnet->state[num])
1237 flush_scheduled_work();
1238 printk("dvb_net: removed network interface %s\n", net->name);
1239 unregister_netdev(net);
1240 dvbnet->state[num]=0;
1241 dvbnet->device[num] = NULL;
1247 static int dvb_net_do_ioctl(struct inode *inode, struct file *file,
1248 unsigned int cmd, void *parg)
1250 struct dvb_device *dvbdev = file->private_data;
1251 struct dvb_net *dvbnet = dvbdev->priv;
1253 if (((file->f_flags&O_ACCMODE)==O_RDONLY))
1259 struct dvb_net_if *dvbnetif = parg;
1262 if (!capable(CAP_SYS_ADMIN))
1265 if (!try_module_get(dvbdev->adapter->module))
1268 result=dvb_net_add_if(dvbnet, dvbnetif->pid, dvbnetif->feedtype);
1270 module_put(dvbdev->adapter->module);
1273 dvbnetif->if_num=result;
1278 struct net_device *netdev;
1279 struct dvb_net_priv *priv_data;
1280 struct dvb_net_if *dvbnetif = parg;
1282 if (dvbnetif->if_num >= DVB_NET_DEVICES_MAX ||
1283 !dvbnet->state[dvbnetif->if_num])
1286 netdev = dvbnet->device[dvbnetif->if_num];
1288 priv_data = netdev->priv;
1289 dvbnetif->pid=priv_data->pid;
1290 dvbnetif->feedtype=priv_data->feedtype;
1297 if (!capable(CAP_SYS_ADMIN))
1299 if ((unsigned int) parg >= DVB_NET_DEVICES_MAX)
1301 ret = dvb_net_remove_if(dvbnet, (unsigned int) parg);
1303 module_put(dvbdev->adapter->module);
1307 /* binary compatiblity cruft */
1308 case __NET_ADD_IF_OLD:
1310 struct __dvb_net_if_old *dvbnetif = parg;
1313 if (!capable(CAP_SYS_ADMIN))
1316 if (!try_module_get(dvbdev->adapter->module))
1319 result=dvb_net_add_if(dvbnet, dvbnetif->pid, DVB_NET_FEEDTYPE_MPE);
1321 module_put(dvbdev->adapter->module);
1324 dvbnetif->if_num=result;
1327 case __NET_GET_IF_OLD:
1329 struct net_device *netdev;
1330 struct dvb_net_priv *priv_data;
1331 struct __dvb_net_if_old *dvbnetif = parg;
1333 if (dvbnetif->if_num >= DVB_NET_DEVICES_MAX ||
1334 !dvbnet->state[dvbnetif->if_num])
1337 netdev = dvbnet->device[dvbnetif->if_num];
1339 priv_data = netdev->priv;
1340 dvbnetif->pid=priv_data->pid;
1349 static int dvb_net_ioctl(struct inode *inode, struct file *file,
1350 unsigned int cmd, unsigned long arg)
1352 return dvb_usercopy(inode, file, cmd, arg, dvb_net_do_ioctl);
1355 static struct file_operations dvb_net_fops = {
1356 .owner = THIS_MODULE,
1357 .ioctl = dvb_net_ioctl,
1358 .open = dvb_generic_open,
1359 .release = dvb_generic_release,
1362 static struct dvb_device dvbdev_net = {
1366 .fops = &dvb_net_fops,
1370 void dvb_net_release (struct dvb_net *dvbnet)
1374 dvb_unregister_device(dvbnet->dvbdev);
1376 for (i=0; i<DVB_NET_DEVICES_MAX; i++) {
1377 if (!dvbnet->state[i])
1379 dvb_net_remove_if(dvbnet, i);
1382 EXPORT_SYMBOL(dvb_net_release);
1385 int dvb_net_init (struct dvb_adapter *adap, struct dvb_net *dvbnet,
1386 struct dmx_demux *dmx)
1390 dvbnet->demux = dmx;
1392 for (i=0; i<DVB_NET_DEVICES_MAX; i++)
1393 dvbnet->state[i] = 0;
1395 dvb_register_device (adap, &dvbnet->dvbdev, &dvbdev_net,
1396 dvbnet, DVB_DEVICE_NET);
1400 EXPORT_SYMBOL(dvb_net_init);