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 RFC 4326.
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.
45 * 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.
51 * FIXME / TODO (dvb_net.c):
53 * Unloading does not work for 2.6.9 kernels: a refcount doesn't go to zero.
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>
65 #include <linux/mutex.h>
67 #include "dvb_demux.h"
70 static int dvb_net_debug
;
71 module_param(dvb_net_debug
, int, 0444);
72 MODULE_PARM_DESC(dvb_net_debug
, "enable debug messages");
74 #define dprintk(x...) do { if (dvb_net_debug) printk(x); } while (0)
77 static inline __u32
iov_crc32( __u32 c
, struct kvec
*iov
, unsigned int cnt
)
80 for (j
= 0; j
< cnt
; j
++)
81 c
= crc32_be( c
, iov
[j
].iov_base
, iov
[j
].iov_len
);
86 #define DVB_NET_MULTICAST_MAX 10
92 #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]
95 #define isprint(c) ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9'))
97 static void hexdump( const unsigned char *buf
, unsigned short len
)
99 char str
[80], octet
[10];
102 for (ofs
= 0; ofs
< len
; ofs
+= 16) {
103 sprintf( str
, "%03d: ", ofs
);
105 for (i
= 0; i
< 16; i
++) {
107 sprintf( octet
, "%02x ", buf
[ofs
+ i
] );
109 strcpy( octet
, " " );
111 strcat( str
, octet
);
116 for (i
= 0; (i
< 16) && ((i
+ ofs
) < len
); i
++)
117 str
[l
++] = isprint( buf
[ofs
+ i
] ) ? buf
[ofs
+ i
] : '.';
120 printk( KERN_WARNING
"%s\n", str
);
126 struct dvb_net_priv
{
128 struct net_device_stats stats
;
130 struct net_device
*net
;
131 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
;
137 struct dmx_section_filter
*multi_secfilter
[DVB_NET_MULTICAST_MAX
];
138 unsigned char multi_macs
[DVB_NET_MULTICAST_MAX
][6];
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. */
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.
168 * stolen from eth.c out of the linux kernel, hacked for dvb-device
169 * by Michael Holzt <kju@debian.org>
171 static unsigned short dvb_net_eth_type_trans(struct sk_buff
*skb
,
172 struct net_device
*dev
)
177 skb_reset_mac_header(skb
);
178 skb_pull(skb
,dev
->hard_header_len
);
181 if (*eth
->h_dest
& 1) {
182 if(memcmp(eth
->h_dest
,dev
->broadcast
, ETH_ALEN
)==0)
183 skb
->pkt_type
=PACKET_BROADCAST
;
185 skb
->pkt_type
=PACKET_MULTICAST
;
188 if (ntohs(eth
->h_proto
) >= 1536)
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.
199 if (*(unsigned short *)rawp
== 0xFFFF)
200 return htons(ETH_P_802_3
);
205 return htons(ETH_P_802_2
);
216 /* ULE Extension Header handlers. */
219 #define ULE_BRIDGED 1
221 #define ULE_OPTEXTHDR_PADDING 0
223 static int ule_test_sndu( struct dvb_net_priv
*p
)
228 static int ule_bridged_sndu( struct dvb_net_priv
*p
)
230 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
)) {
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.
248 static int ule_exthdr_padding(struct dvb_net_priv
*p
)
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.
258 static int handle_one_ule_extension( struct dvb_net_priv
*p
)
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
, };
264 /* Table of optional extension header handlers. The header type is the index. */
265 static int (*ule_optional_ext_handlers
[255])( struct dvb_net_priv
*p
) =
266 { [0] = ule_exthdr_padding
, [1] = NULL
, };
269 unsigned char hlen
= (p
->ule_sndu_type
& 0x0700) >> 8;
270 unsigned char htype
= p
->ule_sndu_type
& 0x00FF;
272 /* Discriminate mandatory and optional extension headers. */
274 /* Mandatory extension header */
275 if (ule_mandatory_ext_handlers
[htype
]) {
276 ext_len
= ule_mandatory_ext_handlers
[htype
]( p
);
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;
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. */
287 // else: extension handler failed or SNDU should be discarded
289 ext_len
= -1; /* SNDU has to be discarded. */
291 /* Optional extension header. Calculate the length. */
293 /* 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
;
297 p
->ule_sndu_type
= ntohs( *(unsigned short *)(p
->ule_next_hdr
-2) );
299 * note: the length of the next header type is included in the
300 * length of THIS optional extension header
307 static int handle_ule_extensions( struct dvb_net_priv
*p
)
309 int total_ext_len
= 0, l
;
311 p
->ule_next_hdr
= p
->ule_skb
->data
;
313 l
= handle_one_ule_extension( p
);
315 return l
; /* Stop extension header processing and discard SNDU. */
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
);
323 } while (p
->ule_sndu_type
< 1536);
325 return total_ext_len
;
329 /** Prepare for a new ULE SNDU: reset the decoder state. */
330 static inline void reset_ule( struct dvb_net_priv
*p
)
333 p
->ule_next_hdr
= NULL
;
335 p
->ule_sndu_type
= 0;
336 p
->ule_sndu_type_1
= 0;
337 p
->ule_sndu_remain
= 0;
343 * Decode ULE SNDUs according to draft-ietf-ipdvb-ule-03.txt from a sequence of
344 * TS cells of a single PID.
346 static void dvb_net_ule( struct net_device
*dev
, const u8
*buf
, size_t buf_len
)
348 struct dvb_net_priv
*priv
= dev
->priv
;
349 unsigned long skipped
= 0L;
350 const u8
*ts
, *ts_end
, *from_where
= NULL
;
351 u8 ts_remain
= 0, how_much
= 0, new_ts
= 1;
352 struct ethhdr
*ethh
= NULL
;
355 /* The code inside ULE_DEBUG keeps a history of the last 100 TS cells processed. */
356 static unsigned char ule_hist
[100*TS_SZ
];
357 static unsigned char *ule_where
= ule_hist
, ule_dump
= 0;
360 /* For all TS cells in current buffer.
361 * Appearently, we are called for every single TS cell.
363 for (ts
= buf
, ts_end
= buf
+ buf_len
; ts
< ts_end
; /* no default incr. */ ) {
366 /* We are about to process a new TS cell. */
369 if (ule_where
>= &ule_hist
[100*TS_SZ
]) ule_where
= ule_hist
;
370 memcpy( ule_where
, ts
, TS_SZ
);
372 hexdump( ule_where
, TS_SZ
);
378 /* Check TS error conditions: sync_byte, transport_error_indicator, scrambling_control . */
379 if ((ts
[0] != TS_SYNC
) || (ts
[1] & TS_TEI
) || ((ts
[3] & TS_SC
) != 0)) {
380 printk(KERN_WARNING
"%lu: Invalid TS cell: SYNC %#x, TEI %u, SC %#x.\n",
381 priv
->ts_count
, ts
[0], ts
[1] & TS_TEI
>> 7, ts
[3] & 0xC0 >> 6);
383 /* Drop partly decoded SNDU, reset state, resync on PUSI. */
385 dev_kfree_skb( priv
->ule_skb
);
386 /* Prepare for next SNDU. */
387 priv
->stats
.rx_errors
++;
388 priv
->stats
.rx_frame_errors
++;
393 /* Continue with next TS cell. */
402 /* Synchronize on PUSI, if required. */
403 if (priv
->need_pusi
) {
404 if (ts
[1] & TS_PUSI
) {
405 /* Find beginning of first ULE SNDU in current TS cell. */
406 /* Synchronize continuity counter. */
407 priv
->tscc
= ts
[3] & 0x0F;
408 /* There is a pointer field here. */
409 if (ts
[4] > ts_remain
) {
410 printk(KERN_ERR
"%lu: Invalid ULE packet "
411 "(pointer field %d)\n", priv
->ts_count
, ts
[4]);
416 /* Skip to destination of pointer field. */
417 from_where
= &ts
[5] + ts
[4];
418 ts_remain
-= 1 + ts
[4];
429 /* Check continuity counter. */
430 if ((ts
[3] & 0x0F) == priv
->tscc
)
431 priv
->tscc
= (priv
->tscc
+ 1) & 0x0F;
433 /* TS discontinuity handling: */
434 printk(KERN_WARNING
"%lu: TS discontinuity: got %#x, "
435 "expected %#x.\n", priv
->ts_count
, ts
[3] & 0x0F, priv
->tscc
);
436 /* Drop partly decoded SNDU, reset state, resync on PUSI. */
438 dev_kfree_skb( priv
->ule_skb
);
439 /* Prepare for next SNDU. */
440 // reset_ule(priv); moved to below.
441 priv
->stats
.rx_errors
++;
442 priv
->stats
.rx_frame_errors
++;
445 /* skip to next PUSI. */
449 /* If we still have an incomplete payload, but PUSI is
450 * set; some TS cells are missing.
451 * This is only possible here, if we missed exactly 16 TS
452 * cells (continuity counter wrap). */
453 if (ts
[1] & TS_PUSI
) {
454 if (! priv
->need_pusi
) {
455 if (!(*from_where
< (ts_remain
-1)) || *from_where
!= priv
->ule_sndu_remain
) {
456 /* Pointer field is invalid. Drop this TS cell and any started ULE SNDU. */
457 printk(KERN_WARNING
"%lu: Invalid pointer "
458 "field: %u.\n", priv
->ts_count
, *from_where
);
460 /* Drop partly decoded SNDU, reset state, resync on PUSI. */
462 dev_kfree_skb( priv
->ule_skb
);
463 ((struct dvb_net_priv
*) dev
->priv
)->stats
.rx_errors
++;
464 ((struct dvb_net_priv
*) dev
->priv
)->stats
.rx_frame_errors
++;
470 /* Skip pointer field (we're processing a
471 * packed payload). */
477 if (priv
->ule_sndu_remain
> 183) {
478 /* Current SNDU lacks more data than there could be available in the
479 * current TS cell. */
480 priv
->stats
.rx_errors
++;
481 priv
->stats
.rx_length_errors
++;
482 printk(KERN_WARNING
"%lu: Expected %d more SNDU bytes, but "
483 "got PUSI (pf %d, ts_remain %d). Flushing incomplete payload.\n",
484 priv
->ts_count
, priv
->ule_sndu_remain
, ts
[4], ts_remain
);
485 dev_kfree_skb(priv
->ule_skb
);
486 /* Prepare for next SNDU. */
488 /* Resync: go to where pointer field points to: start of next ULE SNDU. */
495 /* Check if new payload needs to be started. */
496 if (priv
->ule_skb
== NULL
) {
497 /* Start a new payload with skb.
498 * Find ULE header. It is only guaranteed that the
499 * length field (2 bytes) is contained in the current
501 * Check ts_remain has to be >= 2 here. */
503 printk(KERN_WARNING
"Invalid payload packing: only %d "
504 "bytes left in TS. Resyncing.\n", ts_remain
);
505 priv
->ule_sndu_len
= 0;
510 if (! priv
->ule_sndu_len
) {
511 /* Got at least two bytes, thus extrace the SNDU length. */
512 priv
->ule_sndu_len
= from_where
[0] << 8 | from_where
[1];
513 if (priv
->ule_sndu_len
& 0x8000) {
514 /* D-Bit is set: no dest mac present. */
515 priv
->ule_sndu_len
&= 0x7FFF;
520 if (priv
->ule_sndu_len
< 5) {
521 printk(KERN_WARNING
"%lu: Invalid ULE SNDU length %u. "
522 "Resyncing.\n", priv
->ts_count
, priv
->ule_sndu_len
);
523 priv
->stats
.rx_errors
++;
524 priv
->stats
.rx_length_errors
++;
525 priv
->ule_sndu_len
= 0;
532 ts_remain
-= 2; /* consume the 2 bytes SNDU length. */
537 * State of current TS:
538 * ts_remain (remaining bytes in the current TS cell)
539 * 0 ule_type is not available now, we need the next TS cell
540 * 1 the first byte of the ule_type is present
541 * >=2 full ULE header present, maybe some payload data as well.
545 priv
->ule_sndu_type
= from_where
[0] << 8;
546 priv
->ule_sndu_type_1
= 1; /* first byte of ule_type is set. */
547 ts_remain
-= 1; from_where
+= 1;
548 /* Continue w/ next TS. */
555 default: /* complete ULE header is present in current TS. */
556 /* Extract ULE type field. */
557 if (priv
->ule_sndu_type_1
) {
558 priv
->ule_sndu_type
|= from_where
[0];
559 from_where
+= 1; /* points to payload start. */
562 /* Complete type is present in new TS. */
563 priv
->ule_sndu_type
= from_where
[0] << 8 | from_where
[1];
564 from_where
+= 2; /* points to payload start. */
570 /* Allocate the skb (decoder target buffer) with the correct size, as follows:
571 * prepare for the largest case: bridged SNDU with MAC address (dbit = 0). */
572 priv
->ule_skb
= dev_alloc_skb( priv
->ule_sndu_len
+ ETH_HLEN
+ ETH_ALEN
);
573 if (priv
->ule_skb
== NULL
) {
574 printk(KERN_NOTICE
"%s: Memory squeeze, dropping packet.\n",
576 ((struct dvb_net_priv
*)dev
->priv
)->stats
.rx_dropped
++;
580 /* This includes the CRC32 _and_ dest mac, if !dbit. */
581 priv
->ule_sndu_remain
= priv
->ule_sndu_len
;
582 priv
->ule_skb
->dev
= dev
;
583 /* Leave space for Ethernet or bridged SNDU header (eth hdr plus one MAC addr). */
584 skb_reserve( priv
->ule_skb
, ETH_HLEN
+ ETH_ALEN
);
587 /* Copy data into our current skb. */
588 how_much
= min(priv
->ule_sndu_remain
, (int)ts_remain
);
589 memcpy(skb_put(priv
->ule_skb
, how_much
), from_where
, how_much
);
590 priv
->ule_sndu_remain
-= how_much
;
591 ts_remain
-= how_much
;
592 from_where
+= how_much
;
594 /* Check for complete payload. */
595 if (priv
->ule_sndu_remain
<= 0) {
596 /* Check CRC32, we've got it in our skb already. */
597 unsigned short ulen
= htons(priv
->ule_sndu_len
);
598 unsigned short utype
= htons(priv
->ule_sndu_type
);
600 struct kvec iov
[3] = {
601 { &ulen
, sizeof ulen
},
602 { &utype
, sizeof utype
},
603 { priv
->ule_skb
->data
, priv
->ule_skb
->len
- 4 }
605 u32 ule_crc
= ~0L, expected_crc
;
606 if (priv
->ule_dbit
) {
607 /* Set D-bit for CRC32 verification,
608 * if it was set originally. */
612 ule_crc
= iov_crc32(ule_crc
, iov
, 3);
613 tail
= skb_tail_pointer(priv
->ule_skb
);
614 expected_crc
= *(tail
- 4) << 24 |
618 if (ule_crc
!= expected_crc
) {
619 printk(KERN_WARNING
"%lu: CRC32 check FAILED: %08x / %08x, SNDU len %d type %#x, ts_remain %d, next 2: %x.\n",
620 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 hexdump( iov
[0].iov_base
, iov
[0].iov_len
);
624 hexdump( iov
[1].iov_base
, iov
[1].iov_len
);
625 hexdump( iov
[2].iov_base
, iov
[2].iov_len
);
627 if (ule_where
== ule_hist
) {
628 hexdump( &ule_hist
[98*TS_SZ
], TS_SZ
);
629 hexdump( &ule_hist
[99*TS_SZ
], TS_SZ
);
630 } else if (ule_where
== &ule_hist
[TS_SZ
]) {
631 hexdump( &ule_hist
[99*TS_SZ
], TS_SZ
);
632 hexdump( ule_hist
, TS_SZ
);
634 hexdump( ule_where
- TS_SZ
- TS_SZ
, TS_SZ
);
635 hexdump( ule_where
- TS_SZ
, TS_SZ
);
640 priv
->stats
.rx_errors
++;
641 priv
->stats
.rx_crc_errors
++;
642 dev_kfree_skb(priv
->ule_skb
);
644 /* CRC32 verified OK. */
645 u8 dest_addr
[ETH_ALEN
];
646 static const u8 bc_addr
[ETH_ALEN
] =
647 { [ 0 ... ETH_ALEN
-1] = 0xff };
649 /* CRC32 was OK. Remove it from skb. */
650 priv
->ule_skb
->tail
-= 4;
651 priv
->ule_skb
->len
-= 4;
653 if (!priv
->ule_dbit
) {
655 * The destination MAC address is the
656 * next data in the skb. It comes
657 * before any extension headers.
659 * Check if the payload of this SNDU
660 * should be passed up the stack.
662 register int drop
= 0;
663 if (priv
->rx_mode
!= RX_MODE_PROMISC
) {
664 if (priv
->ule_skb
->data
[0] & 0x01) {
665 /* multicast or broadcast */
666 if (memcmp(priv
->ule_skb
->data
, bc_addr
, ETH_ALEN
)) {
668 if (priv
->rx_mode
== RX_MODE_MULTI
) {
670 for(i
= 0; i
< priv
->multi_num
&& memcmp(priv
->ule_skb
->data
, priv
->multi_macs
[i
], ETH_ALEN
); i
++)
672 if (i
== priv
->multi_num
)
674 } else if (priv
->rx_mode
!= RX_MODE_ALL_MULTI
)
675 drop
= 1; /* no broadcast; */
676 /* else: all multicast mode: accept all multicast packets */
678 /* else: broadcast */
680 else if (memcmp(priv
->ule_skb
->data
, dev
->dev_addr
, ETH_ALEN
))
682 /* else: destination address matches the MAC address of our receiver device */
684 /* else: promiscious mode; pass everything up the stack */
688 dprintk("Dropping SNDU: MAC destination address does not match: dest addr: "MAC_ADDR_PRINTFMT
", dev addr: "MAC_ADDR_PRINTFMT
"\n",
689 MAX_ADDR_PRINTFMT_ARGS(priv
->ule_skb
->data
), MAX_ADDR_PRINTFMT_ARGS(dev
->dev_addr
));
691 dev_kfree_skb(priv
->ule_skb
);
696 skb_copy_from_linear_data(priv
->ule_skb
,
699 skb_pull(priv
->ule_skb
, ETH_ALEN
);
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
);
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
);
713 skb_pull(priv
->ule_skb
, l
);
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
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
);
733 else /* zeroize source and dest */
734 memset( ethh
, 0, ETH_ALEN
*2 );
736 ethh
->h_proto
= htons(priv
->ule_sndu_type
);
738 /* else: skb is in correct state; nothing to do. */
739 priv
->ule_bridged
= 0;
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; */
747 priv
->stats
.rx_packets
++;
748 priv
->stats
.rx_bytes
+= priv
->ule_skb
->len
;
749 netif_rx(priv
->ule_skb
);
752 /* Prepare for next SNDU. */
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. */
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);
772 if (priv
->ule_skb
== NULL
) {
774 priv
->ule_sndu_type_1
= 0;
775 priv
->ule_sndu_len
= 0;
778 } /* for all available TS cells */
781 static 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
)
785 struct net_device
*dev
= feed
->priv
;
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",
792 buffer1_len, buffer1_len / TS_SZ, buffer1); */
793 dvb_net_ule(dev
, buffer1
, buffer1_len
);
798 static void dvb_net_sec(struct net_device
*dev
,
799 const u8
*pkt
, int pkt_len
)
803 struct net_device_stats
*stats
= &(((struct dvb_net_priv
*) dev
->priv
)->stats
);
806 /* note: pkt_len includes a 32bit checksum */
808 printk("%s: IP/MPE packet length = %d too small.\n",
811 stats
->rx_length_errors
++;
814 /* it seems some ISPs manage to screw up here, so we have to
815 * relax the error checks... */
817 if ((pkt
[5] & 0xfd) != 0xc1) {
818 /* drop scrambled or broken packets */
820 if ((pkt
[5] & 0x3c) != 0x00) {
824 stats
->rx_crc_errors
++;
828 /* handle LLC/SNAP, see rfc-1042 */
829 if (pkt_len
< 24 || memcmp(&pkt
[12], "\xaa\xaa\x03\0\0\0", 6)) {
836 /* FIXME: assemble datagram from multiple sections */
838 stats
->rx_frame_errors
++;
842 /* we have 14 byte ethernet header (ip header follows);
843 * 12 byte MPE header; 4 byte checksum; + 2 byte alignment, 8 byte LLC/SNAP
845 if (!(skb
= dev_alloc_skb(pkt_len
- 4 - 12 + 14 + 2 - snap
))) {
846 //printk(KERN_NOTICE "%s: Memory squeeze, dropping packet.\n", dev->name);
850 skb_reserve(skb
, 2); /* longword align L3 header */
853 /* copy L3 payload */
854 eth
= (u8
*) skb_put(skb
, pkt_len
- 12 - 4 + 14 - snap
);
855 memcpy(eth
+ 14, pkt
+ 12 + snap
, pkt_len
- 12 - 4 - snap
);
857 /* create ethernet header: */
865 eth
[6]=eth
[7]=eth
[8]=eth
[9]=eth
[10]=eth
[11]=0;
871 /* protocol numbers are from rfc-1700 or
872 * http://www.iana.org/assignments/ethernet-numbers
874 if (pkt
[12] >> 4 == 6) { /* version field from IP header */
875 eth
[12] = 0x86; /* IPv6 */
878 eth
[12] = 0x08; /* IPv4 */
883 skb
->protocol
= dvb_net_eth_type_trans(skb
, dev
);
886 stats
->rx_bytes
+=skb
->len
;
890 static int dvb_net_sec_callback(const u8
*buffer1
, size_t buffer1_len
,
891 const u8
*buffer2
, size_t buffer2_len
,
892 struct dmx_section_filter
*filter
,
893 enum dmx_success success
)
895 struct net_device
*dev
= filter
->priv
;
898 * we rely on the DVB API definition where exactly one complete
899 * section is delivered in buffer1
901 dvb_net_sec (dev
, buffer1
, buffer1_len
);
905 static int dvb_net_tx(struct sk_buff
*skb
, struct net_device
*dev
)
911 static u8 mask_normal
[6]={0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
912 static u8 mask_allmulti
[6]={0xff, 0xff, 0xff, 0x00, 0x00, 0x00};
913 static u8 mac_allmulti
[6]={0x01, 0x00, 0x5e, 0x00, 0x00, 0x00};
914 static u8 mask_promisc
[6]={0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
916 static int dvb_net_filter_sec_set(struct net_device
*dev
,
917 struct dmx_section_filter
**secfilter
,
918 u8
*mac
, u8
*mac_mask
)
920 struct dvb_net_priv
*priv
= dev
->priv
;
924 ret
= priv
->secfeed
->allocate_filter(priv
->secfeed
, secfilter
);
926 printk("%s: could not get filter\n", dev
->name
);
930 (*secfilter
)->priv
=(void *) dev
;
932 memset((*secfilter
)->filter_value
, 0x00, DMX_MAX_FILTER_SIZE
);
933 memset((*secfilter
)->filter_mask
, 0x00, DMX_MAX_FILTER_SIZE
);
934 memset((*secfilter
)->filter_mode
, 0xff, DMX_MAX_FILTER_SIZE
);
936 (*secfilter
)->filter_value
[0]=0x3e;
937 (*secfilter
)->filter_value
[3]=mac
[5];
938 (*secfilter
)->filter_value
[4]=mac
[4];
939 (*secfilter
)->filter_value
[8]=mac
[3];
940 (*secfilter
)->filter_value
[9]=mac
[2];
941 (*secfilter
)->filter_value
[10]=mac
[1];
942 (*secfilter
)->filter_value
[11]=mac
[0];
944 (*secfilter
)->filter_mask
[0] = 0xff;
945 (*secfilter
)->filter_mask
[3] = mac_mask
[5];
946 (*secfilter
)->filter_mask
[4] = mac_mask
[4];
947 (*secfilter
)->filter_mask
[8] = mac_mask
[3];
948 (*secfilter
)->filter_mask
[9] = mac_mask
[2];
949 (*secfilter
)->filter_mask
[10] = mac_mask
[1];
950 (*secfilter
)->filter_mask
[11]=mac_mask
[0];
952 dprintk("%s: filter mac=%02x %02x %02x %02x %02x %02x\n",
953 dev
->name
, mac
[0], mac
[1], mac
[2], mac
[3], mac
[4], mac
[5]);
954 dprintk("%s: filter mask=%02x %02x %02x %02x %02x %02x\n",
955 dev
->name
, mac_mask
[0], mac_mask
[1], mac_mask
[2],
956 mac_mask
[3], mac_mask
[4], mac_mask
[5]);
961 static int dvb_net_feed_start(struct net_device
*dev
)
964 struct dvb_net_priv
*priv
= dev
->priv
;
965 struct dmx_demux
*demux
= priv
->demux
;
966 unsigned char *mac
= (unsigned char *) dev
->dev_addr
;
968 dprintk("%s: rx_mode %i\n", __FUNCTION__
, priv
->rx_mode
);
969 mutex_lock(&priv
->mutex
);
970 if (priv
->tsfeed
|| priv
->secfeed
|| priv
->secfilter
|| priv
->multi_secfilter
[0])
971 printk("%s: BUG %d\n", __FUNCTION__
, __LINE__
);
974 priv
->secfilter
=NULL
;
977 if (priv
->feedtype
== DVB_NET_FEEDTYPE_MPE
) {
978 dprintk("%s: alloc secfeed\n", __FUNCTION__
);
979 ret
=demux
->allocate_section_feed(demux
, &priv
->secfeed
,
980 dvb_net_sec_callback
);
982 printk("%s: could not allocate section feed\n", dev
->name
);
986 ret
= priv
->secfeed
->set(priv
->secfeed
, priv
->pid
, 32768, 1);
989 printk("%s: could not set section feed\n", dev
->name
);
990 priv
->demux
->release_section_feed(priv
->demux
, priv
->secfeed
);
995 if (priv
->rx_mode
!= RX_MODE_PROMISC
) {
996 dprintk("%s: set secfilter\n", __FUNCTION__
);
997 dvb_net_filter_sec_set(dev
, &priv
->secfilter
, mac
, mask_normal
);
1000 switch (priv
->rx_mode
) {
1002 for (i
= 0; i
< priv
->multi_num
; i
++) {
1003 dprintk("%s: set multi_secfilter[%d]\n", __FUNCTION__
, i
);
1004 dvb_net_filter_sec_set(dev
, &priv
->multi_secfilter
[i
],
1005 priv
->multi_macs
[i
], mask_normal
);
1008 case RX_MODE_ALL_MULTI
:
1010 dprintk("%s: set multi_secfilter[0]\n", __FUNCTION__
);
1011 dvb_net_filter_sec_set(dev
, &priv
->multi_secfilter
[0],
1012 mac_allmulti
, mask_allmulti
);
1014 case RX_MODE_PROMISC
:
1016 dprintk("%s: set secfilter\n", __FUNCTION__
);
1017 dvb_net_filter_sec_set(dev
, &priv
->secfilter
, mac
, mask_promisc
);
1021 dprintk("%s: start filtering\n", __FUNCTION__
);
1022 priv
->secfeed
->start_filtering(priv
->secfeed
);
1023 } else if (priv
->feedtype
== DVB_NET_FEEDTYPE_ULE
) {
1024 struct timespec timeout
= { 0, 10000000 }; // 10 msec
1026 /* we have payloads encapsulated in TS */
1027 dprintk("%s: alloc tsfeed\n", __FUNCTION__
);
1028 ret
= demux
->allocate_ts_feed(demux
, &priv
->tsfeed
, dvb_net_ts_callback
);
1030 printk("%s: could not allocate ts feed\n", dev
->name
);
1034 /* Set netdevice pointer for ts decaps callback. */
1035 priv
->tsfeed
->priv
= (void *)dev
;
1036 ret
= priv
->tsfeed
->set(priv
->tsfeed
,
1037 priv
->pid
, /* pid */
1038 TS_PACKET
, /* type */
1039 DMX_TS_PES_OTHER
, /* pes type */
1040 32768, /* circular buffer size */
1041 timeout
/* timeout */
1045 printk("%s: could not set ts feed\n", dev
->name
);
1046 priv
->demux
->release_ts_feed(priv
->demux
, priv
->tsfeed
);
1047 priv
->tsfeed
= NULL
;
1051 dprintk("%s: start filtering\n", __FUNCTION__
);
1052 priv
->tsfeed
->start_filtering(priv
->tsfeed
);
1057 mutex_unlock(&priv
->mutex
);
1061 static int dvb_net_feed_stop(struct net_device
*dev
)
1063 struct dvb_net_priv
*priv
= dev
->priv
;
1066 dprintk("%s\n", __FUNCTION__
);
1067 mutex_lock(&priv
->mutex
);
1068 if (priv
->feedtype
== DVB_NET_FEEDTYPE_MPE
) {
1069 if (priv
->secfeed
) {
1070 if (priv
->secfeed
->is_filtering
) {
1071 dprintk("%s: stop secfeed\n", __FUNCTION__
);
1072 priv
->secfeed
->stop_filtering(priv
->secfeed
);
1075 if (priv
->secfilter
) {
1076 dprintk("%s: release secfilter\n", __FUNCTION__
);
1077 priv
->secfeed
->release_filter(priv
->secfeed
,
1079 priv
->secfilter
=NULL
;
1082 for (i
=0; i
<priv
->multi_num
; i
++) {
1083 if (priv
->multi_secfilter
[i
]) {
1084 dprintk("%s: release multi_filter[%d]\n",
1086 priv
->secfeed
->release_filter(priv
->secfeed
,
1087 priv
->multi_secfilter
[i
]);
1088 priv
->multi_secfilter
[i
] = NULL
;
1092 priv
->demux
->release_section_feed(priv
->demux
, priv
->secfeed
);
1093 priv
->secfeed
= NULL
;
1095 printk("%s: no feed to stop\n", dev
->name
);
1096 } else if (priv
->feedtype
== DVB_NET_FEEDTYPE_ULE
) {
1098 if (priv
->tsfeed
->is_filtering
) {
1099 dprintk("%s: stop tsfeed\n", __FUNCTION__
);
1100 priv
->tsfeed
->stop_filtering(priv
->tsfeed
);
1102 priv
->demux
->release_ts_feed(priv
->demux
, priv
->tsfeed
);
1103 priv
->tsfeed
= NULL
;
1106 printk("%s: no ts feed to stop\n", dev
->name
);
1109 mutex_unlock(&priv
->mutex
);
1114 static int dvb_set_mc_filter (struct net_device
*dev
, struct dev_mc_list
*mc
)
1116 struct dvb_net_priv
*priv
= dev
->priv
;
1118 if (priv
->multi_num
== DVB_NET_MULTICAST_MAX
)
1121 memcpy(priv
->multi_macs
[priv
->multi_num
], mc
->dmi_addr
, 6);
1128 static void wq_set_multicast_list (struct work_struct
*work
)
1130 struct dvb_net_priv
*priv
=
1131 container_of(work
, struct dvb_net_priv
, set_multicast_list_wq
);
1132 struct net_device
*dev
= priv
->net
;
1134 dvb_net_feed_stop(dev
);
1135 priv
->rx_mode
= RX_MODE_UNI
;
1136 netif_tx_lock_bh(dev
);
1138 if (dev
->flags
& IFF_PROMISC
) {
1139 dprintk("%s: promiscuous mode\n", dev
->name
);
1140 priv
->rx_mode
= RX_MODE_PROMISC
;
1141 } else if ((dev
->flags
& IFF_ALLMULTI
)) {
1142 dprintk("%s: allmulti mode\n", dev
->name
);
1143 priv
->rx_mode
= RX_MODE_ALL_MULTI
;
1144 } else if (dev
->mc_count
) {
1146 struct dev_mc_list
*mc
;
1148 dprintk("%s: set_mc_list, %d entries\n",
1149 dev
->name
, dev
->mc_count
);
1151 priv
->rx_mode
= RX_MODE_MULTI
;
1152 priv
->multi_num
= 0;
1154 for (mci
= 0, mc
=dev
->mc_list
;
1155 mci
< dev
->mc_count
;
1156 mc
= mc
->next
, mci
++) {
1157 dvb_set_mc_filter(dev
, mc
);
1161 netif_tx_unlock_bh(dev
);
1162 dvb_net_feed_start(dev
);
1166 static void dvb_net_set_multicast_list (struct net_device
*dev
)
1168 struct dvb_net_priv
*priv
= dev
->priv
;
1169 schedule_work(&priv
->set_multicast_list_wq
);
1173 static void wq_restart_net_feed (struct work_struct
*work
)
1175 struct dvb_net_priv
*priv
=
1176 container_of(work
, struct dvb_net_priv
, restart_net_feed_wq
);
1177 struct net_device
*dev
= priv
->net
;
1179 if (netif_running(dev
)) {
1180 dvb_net_feed_stop(dev
);
1181 dvb_net_feed_start(dev
);
1186 static int dvb_net_set_mac (struct net_device
*dev
, void *p
)
1188 struct dvb_net_priv
*priv
= dev
->priv
;
1189 struct sockaddr
*addr
=p
;
1191 memcpy(dev
->dev_addr
, addr
->sa_data
, dev
->addr_len
);
1193 if (netif_running(dev
))
1194 schedule_work(&priv
->restart_net_feed_wq
);
1200 static int dvb_net_open(struct net_device
*dev
)
1202 struct dvb_net_priv
*priv
= dev
->priv
;
1205 dvb_net_feed_start(dev
);
1210 static int dvb_net_stop(struct net_device
*dev
)
1212 struct dvb_net_priv
*priv
= dev
->priv
;
1215 return dvb_net_feed_stop(dev
);
1218 static struct net_device_stats
* dvb_net_get_stats(struct net_device
*dev
)
1220 return &((struct dvb_net_priv
*) dev
->priv
)->stats
;
1223 static const struct header_ops dvb_header_ops
= {
1224 .create
= eth_header
,
1225 .parse
= eth_header_parse
,
1226 .rebuild
= eth_rebuild_header
,
1229 static void dvb_net_setup(struct net_device
*dev
)
1233 dev
->header_ops
= &dvb_header_ops
;
1234 dev
->open
= dvb_net_open
;
1235 dev
->stop
= dvb_net_stop
;
1236 dev
->hard_start_xmit
= dvb_net_tx
;
1237 dev
->get_stats
= dvb_net_get_stats
;
1238 dev
->set_multicast_list
= dvb_net_set_multicast_list
;
1239 dev
->set_mac_address
= dvb_net_set_mac
;
1243 dev
->flags
|= IFF_NOARP
;
1246 static int get_if(struct dvb_net
*dvbnet
)
1250 for (i
=0; i
<DVB_NET_DEVICES_MAX
; i
++)
1251 if (!dvbnet
->state
[i
])
1254 if (i
== DVB_NET_DEVICES_MAX
)
1261 static int dvb_net_add_if(struct dvb_net
*dvbnet
, u16 pid
, u8 feedtype
)
1263 struct net_device
*net
;
1264 struct dvb_net_priv
*priv
;
1268 if (feedtype
!= DVB_NET_FEEDTYPE_MPE
&& feedtype
!= DVB_NET_FEEDTYPE_ULE
)
1270 if ((if_num
= get_if(dvbnet
)) < 0)
1273 net
= alloc_netdev(sizeof(struct dvb_net_priv
), "dvb", dvb_net_setup
);
1277 if (dvbnet
->dvbdev
->id
)
1278 snprintf(net
->name
, IFNAMSIZ
, "dvb%d%u%d",
1279 dvbnet
->dvbdev
->adapter
->num
, dvbnet
->dvbdev
->id
, if_num
);
1281 /* compatibility fix to keep dvb0_0 format */
1282 snprintf(net
->name
, IFNAMSIZ
, "dvb%d_%d",
1283 dvbnet
->dvbdev
->adapter
->num
, if_num
);
1286 memcpy(net
->dev_addr
, dvbnet
->dvbdev
->adapter
->proposed_mac
, 6);
1288 dvbnet
->device
[if_num
] = net
;
1292 priv
->demux
= dvbnet
->demux
;
1294 priv
->rx_mode
= RX_MODE_UNI
;
1295 priv
->need_pusi
= 1;
1297 priv
->feedtype
= feedtype
;
1300 INIT_WORK(&priv
->set_multicast_list_wq
, wq_set_multicast_list
);
1301 INIT_WORK(&priv
->restart_net_feed_wq
, wq_restart_net_feed
);
1302 mutex_init(&priv
->mutex
);
1304 net
->base_addr
= pid
;
1306 if ((result
= register_netdev(net
)) < 0) {
1307 dvbnet
->device
[if_num
] = NULL
;
1311 printk("dvb_net: created network interface %s\n", net
->name
);
1316 static int dvb_net_remove_if(struct dvb_net
*dvbnet
, unsigned long num
)
1318 struct net_device
*net
= dvbnet
->device
[num
];
1319 struct dvb_net_priv
*priv
;
1321 if (!dvbnet
->state
[num
])
1328 flush_scheduled_work();
1329 printk("dvb_net: removed network interface %s\n", net
->name
);
1330 unregister_netdev(net
);
1331 dvbnet
->state
[num
]=0;
1332 dvbnet
->device
[num
] = NULL
;
1338 static int dvb_net_do_ioctl(struct inode
*inode
, struct file
*file
,
1339 unsigned int cmd
, void *parg
)
1341 struct dvb_device
*dvbdev
= file
->private_data
;
1342 struct dvb_net
*dvbnet
= dvbdev
->priv
;
1344 if (((file
->f_flags
&O_ACCMODE
)==O_RDONLY
))
1350 struct dvb_net_if
*dvbnetif
= parg
;
1353 if (!capable(CAP_SYS_ADMIN
))
1356 if (!try_module_get(dvbdev
->adapter
->module
))
1359 result
=dvb_net_add_if(dvbnet
, dvbnetif
->pid
, dvbnetif
->feedtype
);
1361 module_put(dvbdev
->adapter
->module
);
1364 dvbnetif
->if_num
=result
;
1369 struct net_device
*netdev
;
1370 struct dvb_net_priv
*priv_data
;
1371 struct dvb_net_if
*dvbnetif
= parg
;
1373 if (dvbnetif
->if_num
>= DVB_NET_DEVICES_MAX
||
1374 !dvbnet
->state
[dvbnetif
->if_num
])
1377 netdev
= dvbnet
->device
[dvbnetif
->if_num
];
1379 priv_data
= netdev
->priv
;
1380 dvbnetif
->pid
=priv_data
->pid
;
1381 dvbnetif
->feedtype
=priv_data
->feedtype
;
1388 if (!capable(CAP_SYS_ADMIN
))
1390 if ((unsigned long) parg
>= DVB_NET_DEVICES_MAX
)
1392 ret
= dvb_net_remove_if(dvbnet
, (unsigned long) parg
);
1394 module_put(dvbdev
->adapter
->module
);
1398 /* binary compatiblity cruft */
1399 case __NET_ADD_IF_OLD
:
1401 struct __dvb_net_if_old
*dvbnetif
= parg
;
1404 if (!capable(CAP_SYS_ADMIN
))
1407 if (!try_module_get(dvbdev
->adapter
->module
))
1410 result
=dvb_net_add_if(dvbnet
, dvbnetif
->pid
, DVB_NET_FEEDTYPE_MPE
);
1412 module_put(dvbdev
->adapter
->module
);
1415 dvbnetif
->if_num
=result
;
1418 case __NET_GET_IF_OLD
:
1420 struct net_device
*netdev
;
1421 struct dvb_net_priv
*priv_data
;
1422 struct __dvb_net_if_old
*dvbnetif
= parg
;
1424 if (dvbnetif
->if_num
>= DVB_NET_DEVICES_MAX
||
1425 !dvbnet
->state
[dvbnetif
->if_num
])
1428 netdev
= dvbnet
->device
[dvbnetif
->if_num
];
1430 priv_data
= netdev
->priv
;
1431 dvbnetif
->pid
=priv_data
->pid
;
1440 static int dvb_net_ioctl(struct inode
*inode
, struct file
*file
,
1441 unsigned int cmd
, unsigned long arg
)
1443 return dvb_usercopy(inode
, file
, cmd
, arg
, dvb_net_do_ioctl
);
1446 static int dvb_net_close(struct inode
*inode
, struct file
*file
)
1448 struct dvb_device
*dvbdev
= file
->private_data
;
1449 struct dvb_net
*dvbnet
= dvbdev
->priv
;
1451 dvb_generic_release(inode
, file
);
1453 if(dvbdev
->users
== 1 && dvbnet
->exit
== 1) {
1454 fops_put(file
->f_op
);
1456 wake_up(&dvbdev
->wait_queue
);
1462 static struct file_operations dvb_net_fops
= {
1463 .owner
= THIS_MODULE
,
1464 .ioctl
= dvb_net_ioctl
,
1465 .open
= dvb_generic_open
,
1466 .release
= dvb_net_close
,
1469 static struct dvb_device dvbdev_net
= {
1473 .fops
= &dvb_net_fops
,
1477 void dvb_net_release (struct dvb_net
*dvbnet
)
1482 if (dvbnet
->dvbdev
->users
< 1)
1483 wait_event(dvbnet
->dvbdev
->wait_queue
,
1484 dvbnet
->dvbdev
->users
==1);
1486 dvb_unregister_device(dvbnet
->dvbdev
);
1488 for (i
=0; i
<DVB_NET_DEVICES_MAX
; i
++) {
1489 if (!dvbnet
->state
[i
])
1491 dvb_net_remove_if(dvbnet
, i
);
1494 EXPORT_SYMBOL(dvb_net_release
);
1497 int dvb_net_init (struct dvb_adapter
*adap
, struct dvb_net
*dvbnet
,
1498 struct dmx_demux
*dmx
)
1502 dvbnet
->demux
= dmx
;
1504 for (i
=0; i
<DVB_NET_DEVICES_MAX
; i
++)
1505 dvbnet
->state
[i
] = 0;
1507 dvb_register_device (adap
, &dvbnet
->dvbdev
, &dvbdev_net
,
1508 dvbnet
, DVB_DEVICE_NET
);
1512 EXPORT_SYMBOL(dvb_net_init
);