[media] dvb-net: split the logic at dvb_net_ule() into other functions
[linux-2.6/btrfs-unstable.git] / drivers / media / dvb-core / dvb_net.c
blobbd833b0824c6a34e1764a1b2701966b2ab950281
1 /*
2 * dvb_net.c
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
34 * ULE ChangeLog:
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 #define pr_fmt(fmt) "dvb_net: " fmt
59 #include <linux/module.h>
60 #include <linux/kernel.h>
61 #include <linux/netdevice.h>
62 #include <linux/etherdevice.h>
63 #include <linux/dvb/net.h>
64 #include <linux/uio.h>
65 #include <asm/uaccess.h>
66 #include <linux/crc32.h>
67 #include <linux/mutex.h>
68 #include <linux/sched.h>
70 #include "dvb_demux.h"
71 #include "dvb_net.h"
73 static inline __u32 iov_crc32( __u32 c, struct kvec *iov, unsigned int cnt )
75 unsigned int j;
76 for (j = 0; j < cnt; j++)
77 c = crc32_be( c, iov[j].iov_base, iov[j].iov_len );
78 return c;
82 #define DVB_NET_MULTICAST_MAX 10
84 #undef ULE_DEBUG
86 #ifdef ULE_DEBUG
88 static void hexdump(const unsigned char *buf, unsigned short len)
90 print_hex_dump_debug("", DUMP_PREFIX_OFFSET, 16, 1, buf, len, true);
93 #endif
95 struct dvb_net_priv {
96 int in_use;
97 u16 pid;
98 struct net_device *net;
99 struct dvb_net *host;
100 struct dmx_demux *demux;
101 struct dmx_section_feed *secfeed;
102 struct dmx_section_filter *secfilter;
103 struct dmx_ts_feed *tsfeed;
104 int multi_num;
105 struct dmx_section_filter *multi_secfilter[DVB_NET_MULTICAST_MAX];
106 unsigned char multi_macs[DVB_NET_MULTICAST_MAX][6];
107 int rx_mode;
108 #define RX_MODE_UNI 0
109 #define RX_MODE_MULTI 1
110 #define RX_MODE_ALL_MULTI 2
111 #define RX_MODE_PROMISC 3
112 struct work_struct set_multicast_list_wq;
113 struct work_struct restart_net_feed_wq;
114 unsigned char feedtype; /* Either FEED_TYPE_ or FEED_TYPE_ULE */
115 int need_pusi; /* Set to 1, if synchronization on PUSI required. */
116 unsigned char tscc; /* TS continuity counter after sync on PUSI. */
117 struct sk_buff *ule_skb; /* ULE SNDU decodes into this buffer. */
118 unsigned char *ule_next_hdr; /* Pointer into skb to next ULE extension header. */
119 unsigned short ule_sndu_len; /* ULE SNDU length in bytes, w/o D-Bit. */
120 unsigned short ule_sndu_type; /* ULE SNDU type field, complete. */
121 unsigned char ule_sndu_type_1; /* ULE SNDU type field, if split across 2 TS cells. */
122 unsigned char ule_dbit; /* Whether the DestMAC address present
123 * or not (bit is set). */
124 unsigned char ule_bridged; /* Whether the ULE_BRIDGED extension header was found. */
125 int ule_sndu_remain; /* Nr. of bytes still required for current ULE SNDU. */
126 unsigned long ts_count; /* Current ts cell counter. */
127 struct mutex mutex;
132 * Determine the packet's protocol ID. The rule here is that we
133 * assume 802.3 if the type field is short enough to be a length.
134 * This is normal practice and works for any 'now in use' protocol.
136 * stolen from eth.c out of the linux kernel, hacked for dvb-device
137 * by Michael Holzt <kju@debian.org>
139 static __be16 dvb_net_eth_type_trans(struct sk_buff *skb,
140 struct net_device *dev)
142 struct ethhdr *eth;
143 unsigned char *rawp;
145 skb_reset_mac_header(skb);
146 skb_pull(skb,dev->hard_header_len);
147 eth = eth_hdr(skb);
149 if (*eth->h_dest & 1) {
150 if(ether_addr_equal(eth->h_dest,dev->broadcast))
151 skb->pkt_type=PACKET_BROADCAST;
152 else
153 skb->pkt_type=PACKET_MULTICAST;
156 if (ntohs(eth->h_proto) >= ETH_P_802_3_MIN)
157 return eth->h_proto;
159 rawp = skb->data;
162 * This is a magic hack to spot IPX packets. Older Novell breaks
163 * the protocol design and runs IPX over 802.3 without an 802.2 LLC
164 * layer. We look for FFFF which isn't a used 802.2 SSAP/DSAP. This
165 * won't work for fault tolerant netware but does for the rest.
167 if (*(unsigned short *)rawp == 0xFFFF)
168 return htons(ETH_P_802_3);
171 * Real 802.2 LLC
173 return htons(ETH_P_802_2);
176 #define TS_SZ 188
177 #define TS_SYNC 0x47
178 #define TS_TEI 0x80
179 #define TS_SC 0xC0
180 #define TS_PUSI 0x40
181 #define TS_AF_A 0x20
182 #define TS_AF_D 0x10
184 /* ULE Extension Header handlers. */
186 #define ULE_TEST 0
187 #define ULE_BRIDGED 1
189 #define ULE_OPTEXTHDR_PADDING 0
191 static int ule_test_sndu( struct dvb_net_priv *p )
193 return -1;
196 static int ule_bridged_sndu( struct dvb_net_priv *p )
198 struct ethhdr *hdr = (struct ethhdr*) p->ule_next_hdr;
199 if(ntohs(hdr->h_proto) < ETH_P_802_3_MIN) {
200 int framelen = p->ule_sndu_len - ((p->ule_next_hdr+sizeof(struct ethhdr)) - p->ule_skb->data);
201 /* A frame Type < ETH_P_802_3_MIN for a bridged frame, introduces a LLC Length field. */
202 if(framelen != ntohs(hdr->h_proto)) {
203 return -1;
206 /* Note:
207 * From RFC4326:
208 * "A bridged SNDU is a Mandatory Extension Header of Type 1.
209 * It must be the final (or only) extension header specified in the header chain of a SNDU."
210 * The 'ule_bridged' flag will cause the extension header processing loop to terminate.
212 p->ule_bridged = 1;
213 return 0;
216 static int ule_exthdr_padding(struct dvb_net_priv *p)
218 return 0;
221 /** Handle ULE extension headers.
222 * Function is called after a successful CRC32 verification of an ULE SNDU to complete its decoding.
223 * Returns: >= 0: nr. of bytes consumed by next extension header
224 * -1: Mandatory extension header that is not recognized or TEST SNDU; discard.
226 static int handle_one_ule_extension( struct dvb_net_priv *p )
228 /* Table of mandatory extension header handlers. The header type is the index. */
229 static int (*ule_mandatory_ext_handlers[255])( struct dvb_net_priv *p ) =
230 { [0] = ule_test_sndu, [1] = ule_bridged_sndu, [2] = NULL, };
232 /* Table of optional extension header handlers. The header type is the index. */
233 static int (*ule_optional_ext_handlers[255])( struct dvb_net_priv *p ) =
234 { [0] = ule_exthdr_padding, [1] = NULL, };
236 int ext_len = 0;
237 unsigned char hlen = (p->ule_sndu_type & 0x0700) >> 8;
238 unsigned char htype = p->ule_sndu_type & 0x00FF;
240 /* Discriminate mandatory and optional extension headers. */
241 if (hlen == 0) {
242 /* Mandatory extension header */
243 if (ule_mandatory_ext_handlers[htype]) {
244 ext_len = ule_mandatory_ext_handlers[htype]( p );
245 if(ext_len >= 0) {
246 p->ule_next_hdr += ext_len;
247 if (!p->ule_bridged) {
248 p->ule_sndu_type = ntohs(*(__be16 *)p->ule_next_hdr);
249 p->ule_next_hdr += 2;
250 } else {
251 p->ule_sndu_type = ntohs(*(__be16 *)(p->ule_next_hdr + ((p->ule_dbit ? 2 : 3) * ETH_ALEN)));
252 /* This assures the extension handling loop will terminate. */
255 // else: extension handler failed or SNDU should be discarded
256 } else
257 ext_len = -1; /* SNDU has to be discarded. */
258 } else {
259 /* Optional extension header. Calculate the length. */
260 ext_len = hlen << 1;
261 /* Process the optional extension header according to its type. */
262 if (ule_optional_ext_handlers[htype])
263 (void)ule_optional_ext_handlers[htype]( p );
264 p->ule_next_hdr += ext_len;
265 p->ule_sndu_type = ntohs( *(__be16 *)(p->ule_next_hdr-2) );
267 * note: the length of the next header type is included in the
268 * length of THIS optional extension header
272 return ext_len;
275 static int handle_ule_extensions( struct dvb_net_priv *p )
277 int total_ext_len = 0, l;
279 p->ule_next_hdr = p->ule_skb->data;
280 do {
281 l = handle_one_ule_extension( p );
282 if (l < 0)
283 return l; /* Stop extension header processing and discard SNDU. */
284 total_ext_len += l;
285 #ifdef ULE_DEBUG
286 pr_debug("ule_next_hdr=%p, ule_sndu_type=%i, l=%i, total_ext_len=%i\n",
287 p->ule_next_hdr, (int)p->ule_sndu_type,
288 l, total_ext_len);
289 #endif
291 } while (p->ule_sndu_type < ETH_P_802_3_MIN);
293 return total_ext_len;
297 /** Prepare for a new ULE SNDU: reset the decoder state. */
298 static inline void reset_ule( struct dvb_net_priv *p )
300 p->ule_skb = NULL;
301 p->ule_next_hdr = NULL;
302 p->ule_sndu_len = 0;
303 p->ule_sndu_type = 0;
304 p->ule_sndu_type_1 = 0;
305 p->ule_sndu_remain = 0;
306 p->ule_dbit = 0xFF;
307 p->ule_bridged = 0;
311 * Decode ULE SNDUs according to draft-ietf-ipdvb-ule-03.txt from a sequence of
312 * TS cells of a single PID.
315 struct dvb_net_ule_handle {
316 struct net_device *dev;
317 struct dvb_net_priv *priv;
318 struct ethhdr *ethh;
319 const u8 *buf;
320 size_t buf_len;
321 unsigned long skipped;
322 const u8 *ts, *ts_end, *from_where;
323 u8 ts_remain, how_much, new_ts;
324 bool error;
325 #ifdef ULE_DEBUG
327 * The code inside ULE_DEBUG keeps a history of the
328 * last 100 TS cells processed.
330 static unsigned char ule_hist[100*TS_SZ];
331 static unsigned char *ule_where = ule_hist, ule_dump;
332 #endif
335 static int dvb_net_ule_new_ts_cell(struct dvb_net_ule_handle *h)
337 /* We are about to process a new TS cell. */
339 #ifdef ULE_DEBUG
340 if (h->ule_where >= &h->ule_hist[100*TS_SZ])
341 h->ule_where = h->ule_hist;
342 memcpy(h->ule_where, h->ts, TS_SZ);
343 if (h->ule_dump) {
344 hexdump(h->ule_where, TS_SZ);
345 h->ule_dump = 0;
347 h->ule_where += TS_SZ;
348 #endif
351 * Check TS h->error conditions: sync_byte, transport_error_indicator,
352 * scrambling_control .
354 if ((h->ts[0] != TS_SYNC) || (h->ts[1] & TS_TEI) ||
355 ((h->ts[3] & TS_SC) != 0)) {
356 pr_warn("%lu: Invalid TS cell: SYNC %#x, TEI %u, SC %#x.\n",
357 h->priv->ts_count, h->ts[0],
358 (h->ts[1] & TS_TEI) >> 7,
359 (h->ts[3] & TS_SC) >> 6);
361 /* Drop partly decoded SNDU, reset state, resync on PUSI. */
362 if (h->priv->ule_skb) {
363 dev_kfree_skb(h->priv->ule_skb);
364 /* Prepare for next SNDU. */
365 h->dev->stats.rx_errors++;
366 h->dev->stats.rx_frame_errors++;
368 reset_ule(h->priv);
369 h->priv->need_pusi = 1;
371 /* Continue with next TS cell. */
372 h->ts += TS_SZ;
373 h->priv->ts_count++;
374 return 1;
377 h->ts_remain = 184;
378 h->from_where = h->ts + 4;
380 return 0;
383 static int dvb_net_ule_ts_pusi(struct dvb_net_ule_handle *h)
385 if (h->ts[1] & TS_PUSI) {
386 /* Find beginning of first ULE SNDU in current TS cell. */
387 /* Synchronize continuity counter. */
388 h->priv->tscc = h->ts[3] & 0x0F;
389 /* There is a pointer field here. */
390 if (h->ts[4] > h->ts_remain) {
391 pr_err("%lu: Invalid ULE packet (pointer field %d)\n",
392 h->priv->ts_count, h->ts[4]);
393 h->ts += TS_SZ;
394 h->priv->ts_count++;
395 return 1;
397 /* Skip to destination of pointer field. */
398 h->from_where = &h->ts[5] + h->ts[4];
399 h->ts_remain -= 1 + h->ts[4];
400 h->skipped = 0;
401 } else {
402 h->skipped++;
403 h->ts += TS_SZ;
404 h->priv->ts_count++;
405 return 1;
408 return 0;
411 static int dvb_net_ule_new_ts(struct dvb_net_ule_handle *h)
413 /* Check continuity counter. */
414 if ((h->ts[3] & 0x0F) == h->priv->tscc)
415 h->priv->tscc = (h->priv->tscc + 1) & 0x0F;
416 else {
417 /* TS discontinuity handling: */
418 pr_warn("%lu: TS discontinuity: got %#x, expected %#x.\n",
419 h->priv->ts_count, h->ts[3] & 0x0F,
420 h->priv->tscc);
421 /* Drop partly decoded SNDU, reset state, resync on PUSI. */
422 if (h->priv->ule_skb) {
423 dev_kfree_skb(h->priv->ule_skb);
424 /* Prepare for next SNDU. */
425 // reset_ule(h->priv); moved to below.
426 h->dev->stats.rx_errors++;
427 h->dev->stats.rx_frame_errors++;
429 reset_ule(h->priv);
430 /* skip to next PUSI. */
431 h->priv->need_pusi = 1;
432 return 1;
435 * If we still have an incomplete payload, but PUSI is
436 * set; some TS cells are missing.
437 * This is only possible here, if we missed exactly 16 TS
438 * cells (continuity counter wrap).
440 if (h->ts[1] & TS_PUSI) {
441 if (!h->priv->need_pusi) {
442 if (!(*h->from_where < (h->ts_remain-1)) ||
443 *h->from_where != h->priv->ule_sndu_remain) {
445 * Pointer field is invalid.
446 * Drop this TS cell and any started ULE SNDU.
448 pr_warn("%lu: Invalid pointer field: %u.\n",
449 h->priv->ts_count,
450 *h->from_where);
453 * Drop partly decoded SNDU, reset state,
454 * resync on PUSI.
456 if (h->priv->ule_skb) {
457 h->error = true;
458 dev_kfree_skb(h->priv->ule_skb);
461 if (h->error || h->priv->ule_sndu_remain) {
462 h->dev->stats.rx_errors++;
463 h->dev->stats.rx_frame_errors++;
464 h->error = false;
467 reset_ule(h->priv);
468 h->priv->need_pusi = 1;
469 return 1;
472 * Skip pointer field (we're processing a
473 * packed payload).
475 h->from_where += 1;
476 h->ts_remain -= 1;
477 } else
478 h->priv->need_pusi = 0;
480 if (h->priv->ule_sndu_remain > 183) {
482 * Current SNDU lacks more data than there
483 * could be available in the current TS cell.
485 h->dev->stats.rx_errors++;
486 h->dev->stats.rx_length_errors++;
487 pr_warn("%lu: Expected %d more SNDU bytes, but got PUSI (pf %d, h->ts_remain %d). Flushing incomplete payload.\n",
488 h->priv->ts_count,
489 h->priv->ule_sndu_remain,
490 h->ts[4], h->ts_remain);
491 dev_kfree_skb(h->priv->ule_skb);
492 /* Prepare for next SNDU. */
493 reset_ule(h->priv);
495 * Resync: go to where pointer field points to:
496 * start of next ULE SNDU.
498 h->from_where += h->ts[4];
499 h->ts_remain -= h->ts[4];
502 return 0;
507 * Start a new payload with skb.
508 * Find ULE header. It is only guaranteed that the
509 * length field (2 bytes) is contained in the current
510 * TS.
511 * Check h.ts_remain has to be >= 2 here.
513 static int dvb_net_ule_new_payload(struct dvb_net_ule_handle *h)
515 if (h->ts_remain < 2) {
516 pr_warn("Invalid payload packing: only %d bytes left in TS. Resyncing.\n",
517 h->ts_remain);
518 h->priv->ule_sndu_len = 0;
519 h->priv->need_pusi = 1;
520 h->ts += TS_SZ;
521 return 1;
524 if (!h->priv->ule_sndu_len) {
525 /* Got at least two bytes, thus extrace the SNDU length. */
526 h->priv->ule_sndu_len = h->from_where[0] << 8 |
527 h->from_where[1];
528 if (h->priv->ule_sndu_len & 0x8000) {
529 /* D-Bit is set: no dest mac present. */
530 h->priv->ule_sndu_len &= 0x7FFF;
531 h->priv->ule_dbit = 1;
532 } else
533 h->priv->ule_dbit = 0;
535 if (h->priv->ule_sndu_len < 5) {
536 pr_warn("%lu: Invalid ULE SNDU length %u. Resyncing.\n",
537 h->priv->ts_count,
538 h->priv->ule_sndu_len);
539 h->dev->stats.rx_errors++;
540 h->dev->stats.rx_length_errors++;
541 h->priv->ule_sndu_len = 0;
542 h->priv->need_pusi = 1;
543 h->new_ts = 1;
544 h->ts += TS_SZ;
545 h->priv->ts_count++;
546 return 1;
548 h->ts_remain -= 2; /* consume the 2 bytes SNDU length. */
549 h->from_where += 2;
552 h->priv->ule_sndu_remain = h->priv->ule_sndu_len + 2;
554 * State of current TS:
555 * h->ts_remain (remaining bytes in the current TS cell)
556 * 0 ule_type is not available now, we need the next TS cell
557 * 1 the first byte of the ule_type is present
558 * >=2 full ULE header present, maybe some payload data as well.
560 switch (h->ts_remain) {
561 case 1:
562 h->priv->ule_sndu_remain--;
563 h->priv->ule_sndu_type = h->from_where[0] << 8;
565 /* first byte of ule_type is set. */
566 h->priv->ule_sndu_type_1 = 1;
567 h->ts_remain -= 1;
568 h->from_where += 1;
569 /* fallthrough */
570 case 0:
571 h->new_ts = 1;
572 h->ts += TS_SZ;
573 h->priv->ts_count++;
574 return 1;
576 default: /* complete ULE header is present in current TS. */
577 /* Extract ULE type field. */
578 if (h->priv->ule_sndu_type_1) {
579 h->priv->ule_sndu_type_1 = 0;
580 h->priv->ule_sndu_type |= h->from_where[0];
581 h->from_where += 1; /* points to payload start. */
582 h->ts_remain -= 1;
583 } else {
584 /* Complete type is present in new TS. */
585 h->priv->ule_sndu_type = h->from_where[0] << 8 |
586 h->from_where[1];
587 h->from_where += 2; /* points to payload start. */
588 h->ts_remain -= 2;
590 break;
594 * Allocate the skb (decoder target buffer) with the correct size,
595 * as follows:
597 * prepare for the largest case: bridged SNDU with MAC address
598 * (dbit = 0).
600 h->priv->ule_skb = dev_alloc_skb(h->priv->ule_sndu_len +
601 ETH_HLEN + ETH_ALEN);
602 if (!h->priv->ule_skb) {
603 pr_notice("%s: Memory squeeze, dropping packet.\n",
604 h->dev->name);
605 h->dev->stats.rx_dropped++;
606 return -1;
609 /* This includes the CRC32 _and_ dest mac, if !dbit. */
610 h->priv->ule_sndu_remain = h->priv->ule_sndu_len;
611 h->priv->ule_skb->dev = h->dev;
613 * Leave space for Ethernet or bridged SNDU header
614 * (eth hdr plus one MAC addr).
616 skb_reserve(h->priv->ule_skb, ETH_HLEN + ETH_ALEN);
618 return 0;
622 static int dvb_net_ule_should_drop(struct dvb_net_ule_handle *h)
624 static const u8 bc_addr[ETH_ALEN] = { [0 ... ETH_ALEN - 1] = 0xff };
627 * The destination MAC address is the next data in the skb. It comes
628 * before any extension headers.
630 * Check if the payload of this SNDU should be passed up the stack.
632 if (h->priv->rx_mode == RX_MODE_PROMISC)
633 return 0;
635 if (h->priv->ule_skb->data[0] & 0x01) {
636 /* multicast or broadcast */
637 if (!ether_addr_equal(h->priv->ule_skb->data, bc_addr)) {
638 /* multicast */
639 if (h->priv->rx_mode == RX_MODE_MULTI) {
640 int i;
642 for (i = 0; i < h->priv->multi_num &&
643 !ether_addr_equal(h->priv->ule_skb->data,
644 h->priv->multi_macs[i]);
645 i++)
647 if (i == h->priv->multi_num)
648 return 1;
649 } else if (h->priv->rx_mode != RX_MODE_ALL_MULTI)
650 return 1; /* no broadcast; */
652 * else:
653 * all multicast mode: accept all multicast packets
656 /* else: broadcast */
657 } else if (!ether_addr_equal(h->priv->ule_skb->data, h->dev->dev_addr))
658 return 1;
660 return 0;
664 static void dvb_net_ule_check_crc(struct dvb_net_ule_handle *h,
665 u32 ule_crc, u32 expected_crc)
667 u8 dest_addr[ETH_ALEN];
669 if (ule_crc != expected_crc) {
670 pr_warn("%lu: CRC32 check FAILED: %08x / %08x, SNDU len %d type %#x, ts_remain %d, next 2: %x.\n",
671 h->priv->ts_count, ule_crc, expected_crc,
672 h->priv->ule_sndu_len, h->priv->ule_sndu_type,
673 h->ts_remain,
674 h->ts_remain > 2 ?
675 *(unsigned short *)h->from_where : 0);
677 #ifdef ULE_DEBUG
678 hexdump(iov[0].iov_base, iov[0].iov_len);
679 hexdump(iov[1].iov_base, iov[1].iov_len);
680 hexdump(iov[2].iov_base, iov[2].iov_len);
682 if (h->ule_where == h->ule_hist) {
683 hexdump(&h->ule_hist[98*TS_SZ], TS_SZ);
684 hexdump(&h->ule_hist[99*TS_SZ], TS_SZ);
685 } else if (h->ule_where == &h->ule_hist[TS_SZ]) {
686 hexdump(&h->ule_hist[99*TS_SZ], TS_SZ);
687 hexdump(h->ule_hist, TS_SZ);
688 } else {
689 hexdump(h->ule_where - TS_SZ - TS_SZ, TS_SZ);
690 hexdump(h->ule_where - TS_SZ, TS_SZ);
692 h->ule_dump = 1;
693 #endif
695 h->dev->stats.rx_errors++;
696 h->dev->stats.rx_crc_errors++;
697 dev_kfree_skb(h->priv->ule_skb);
699 return;
702 /* CRC32 verified OK. */
704 /* CRC32 was OK, so remove it from skb. */
705 h->priv->ule_skb->tail -= 4;
706 h->priv->ule_skb->len -= 4;
708 if (!h->priv->ule_dbit) {
709 if (dvb_net_ule_should_drop(h)) {
710 #ifdef ULE_DEBUG
711 netdev_dbg(h->dev,
712 "Dropping SNDU: MAC destination address does not match: dest addr: %pM, h->dev addr: %pM\n",
713 h->priv->ule_skb->data, h->dev->dev_addr);
714 #endif
715 dev_kfree_skb(h->priv->ule_skb);
716 return;
719 skb_copy_from_linear_data(h->priv->ule_skb, dest_addr,
720 ETH_ALEN);
721 skb_pull(h->priv->ule_skb, ETH_ALEN);
724 /* Handle ULE Extension Headers. */
725 if (h->priv->ule_sndu_type < ETH_P_802_3_MIN) {
726 /* There is an extension header. Handle it accordingly. */
727 int l = handle_ule_extensions(h->priv);
729 if (l < 0) {
731 * Mandatory extension header unknown or TEST SNDU.
732 * Drop it.
735 // pr_warn("Dropping SNDU, extension headers.\n" );
736 dev_kfree_skb(h->priv->ule_skb);
737 return;
739 skb_pull(h->priv->ule_skb, l);
743 * Construct/assure correct ethernet header.
744 * Note: in bridged mode (h->priv->ule_bridged != 0)
745 * we already have the (original) ethernet
746 * header at the start of the payload (after
747 * optional dest. address and any extension
748 * headers).
750 if (!h->priv->ule_bridged) {
751 skb_push(h->priv->ule_skb, ETH_HLEN);
752 h->ethh = (struct ethhdr *)h->priv->ule_skb->data;
753 if (!h->priv->ule_dbit) {
755 * dest_addr buffer is only valid if
756 * h->priv->ule_dbit == 0
758 memcpy(h->ethh->h_dest, dest_addr, ETH_ALEN);
759 eth_zero_addr(h->ethh->h_source);
760 } else /* zeroize source and dest */
761 memset(h->ethh, 0, ETH_ALEN * 2);
763 h->ethh->h_proto = htons(h->priv->ule_sndu_type);
765 /* else: skb is in correct state; nothing to do. */
766 h->priv->ule_bridged = 0;
768 /* Stuff into kernel's protocol stack. */
769 h->priv->ule_skb->protocol = dvb_net_eth_type_trans(h->priv->ule_skb,
770 h->dev);
772 * If D-bit is set (i.e. destination MAC address not present),
773 * receive the packet anyhow.
775 #if 0
776 if (h->priv->ule_dbit && skb->pkt_type == PACKET_OTHERHOST)
777 h->priv->ule_skb->pkt_type = PACKET_HOST;
778 #endif
779 h->dev->stats.rx_packets++;
780 h->dev->stats.rx_bytes += h->priv->ule_skb->len;
781 netif_rx(h->priv->ule_skb);
784 static void dvb_net_ule(struct net_device *dev, const u8 *buf, size_t buf_len)
786 int ret;
787 struct dvb_net_ule_handle h = {
788 .dev = dev,
789 .buf = buf,
790 .buf_len = buf_len,
791 .skipped = 0L,
792 .ts = NULL,
793 .ts_end = NULL,
794 .from_where = NULL,
795 .ts_remain = 0,
796 .how_much = 0,
797 .new_ts = 1,
798 .ethh = NULL,
799 .error = false,
800 #ifdef ULE_DEBUG
801 .ule_where = ule_hist,
802 #endif
806 * For all TS cells in current buffer.
807 * Appearently, we are called for every single TS cell.
809 for (h.ts = h.buf, h.ts_end = h.buf + h.buf_len;
810 h.ts < h.ts_end; /* no incr. */) {
811 if (h.new_ts) {
812 /* We are about to process a new TS cell. */
813 if (dvb_net_ule_new_ts_cell(&h))
814 continue;
817 /* Synchronize on PUSI, if required. */
818 if (h.priv->need_pusi) {
819 if (dvb_net_ule_ts_pusi(&h))
820 continue;
823 if (h.new_ts) {
824 if (dvb_net_ule_new_ts(&h))
825 continue;
828 /* Check if new payload needs to be started. */
829 if (h.priv->ule_skb == NULL) {
830 ret = dvb_net_ule_new_payload(&h);
831 if (ret < 0)
832 return;
833 if (ret)
834 continue;
837 /* Copy data into our current skb. */
838 h.how_much = min(h.priv->ule_sndu_remain, (int)h.ts_remain);
839 memcpy(skb_put(h.priv->ule_skb, h.how_much),
840 h.from_where, h.how_much);
841 h.priv->ule_sndu_remain -= h.how_much;
842 h.ts_remain -= h.how_much;
843 h.from_where += h.how_much;
845 /* Check for complete payload. */
846 if (h.priv->ule_sndu_remain <= 0) {
847 /* Check CRC32, we've got it in our skb already. */
848 __be16 ulen = htons(h.priv->ule_sndu_len);
849 __be16 utype = htons(h.priv->ule_sndu_type);
850 const u8 *tail;
851 struct kvec iov[3] = {
852 { &ulen, sizeof ulen },
853 { &utype, sizeof utype },
854 { h.priv->ule_skb->data,
855 h.priv->ule_skb->len - 4 }
857 u32 ule_crc = ~0L, expected_crc;
858 if (h.priv->ule_dbit) {
859 /* Set D-bit for CRC32 verification,
860 * if it was set originally. */
861 ulen |= htons(0x8000);
864 ule_crc = iov_crc32(ule_crc, iov, 3);
865 tail = skb_tail_pointer(h.priv->ule_skb);
866 expected_crc = *(tail - 4) << 24 |
867 *(tail - 3) << 16 |
868 *(tail - 2) << 8 |
869 *(tail - 1);
871 dvb_net_ule_check_crc(&h, ule_crc, expected_crc);
873 /* Prepare for next SNDU. */
874 reset_ule(h.priv);
877 /* More data in current TS (look at the bytes following the CRC32)? */
878 if (h.ts_remain >= 2 && *((unsigned short *)h.from_where) != 0xFFFF) {
879 /* Next ULE SNDU starts right there. */
880 h.new_ts = 0;
881 h.priv->ule_skb = NULL;
882 h.priv->ule_sndu_type_1 = 0;
883 h.priv->ule_sndu_len = 0;
884 // pr_warn("More data in current TS: [%#x %#x %#x %#x]\n",
885 // *(h.from_where + 0), *(h.from_where + 1),
886 // *(h.from_where + 2), *(h.from_where + 3));
887 // pr_warn("h.ts @ %p, stopped @ %p:\n", h.ts, h.from_where + 0);
888 // hexdump(h.ts, 188);
889 } else {
890 h.new_ts = 1;
891 h.ts += TS_SZ;
892 h.priv->ts_count++;
893 if (h.priv->ule_skb == NULL) {
894 h.priv->need_pusi = 1;
895 h.priv->ule_sndu_type_1 = 0;
896 h.priv->ule_sndu_len = 0;
899 } /* for all available TS cells */
902 static int dvb_net_ts_callback(const u8 *buffer1, size_t buffer1_len,
903 const u8 *buffer2, size_t buffer2_len,
904 struct dmx_ts_feed *feed)
906 struct net_device *dev = feed->priv;
908 if (buffer2)
909 pr_warn("buffer2 not NULL: %p.\n", buffer2);
910 if (buffer1_len > 32768)
911 pr_warn("length > 32k: %zu.\n", buffer1_len);
912 /* pr_info("TS callback: %u bytes, %u TS cells @ %p.\n",
913 buffer1_len, buffer1_len / TS_SZ, buffer1); */
914 dvb_net_ule(dev, buffer1, buffer1_len);
915 return 0;
919 static void dvb_net_sec(struct net_device *dev,
920 const u8 *pkt, int pkt_len)
922 u8 *eth;
923 struct sk_buff *skb;
924 struct net_device_stats *stats = &dev->stats;
925 int snap = 0;
927 /* note: pkt_len includes a 32bit checksum */
928 if (pkt_len < 16) {
929 pr_warn("%s: IP/MPE packet length = %d too small.\n",
930 dev->name, pkt_len);
931 stats->rx_errors++;
932 stats->rx_length_errors++;
933 return;
935 /* it seems some ISPs manage to screw up here, so we have to
936 * relax the error checks... */
937 #if 0
938 if ((pkt[5] & 0xfd) != 0xc1) {
939 /* drop scrambled or broken packets */
940 #else
941 if ((pkt[5] & 0x3c) != 0x00) {
942 /* drop scrambled */
943 #endif
944 stats->rx_errors++;
945 stats->rx_crc_errors++;
946 return;
948 if (pkt[5] & 0x02) {
949 /* handle LLC/SNAP, see rfc-1042 */
950 if (pkt_len < 24 || memcmp(&pkt[12], "\xaa\xaa\x03\0\0\0", 6)) {
951 stats->rx_dropped++;
952 return;
954 snap = 8;
956 if (pkt[7]) {
957 /* FIXME: assemble datagram from multiple sections */
958 stats->rx_errors++;
959 stats->rx_frame_errors++;
960 return;
963 /* we have 14 byte ethernet header (ip header follows);
964 * 12 byte MPE header; 4 byte checksum; + 2 byte alignment, 8 byte LLC/SNAP
966 if (!(skb = dev_alloc_skb(pkt_len - 4 - 12 + 14 + 2 - snap))) {
967 //pr_notice("%s: Memory squeeze, dropping packet.\n", dev->name);
968 stats->rx_dropped++;
969 return;
971 skb_reserve(skb, 2); /* longword align L3 header */
972 skb->dev = dev;
974 /* copy L3 payload */
975 eth = (u8 *) skb_put(skb, pkt_len - 12 - 4 + 14 - snap);
976 memcpy(eth + 14, pkt + 12 + snap, pkt_len - 12 - 4 - snap);
978 /* create ethernet header: */
979 eth[0]=pkt[0x0b];
980 eth[1]=pkt[0x0a];
981 eth[2]=pkt[0x09];
982 eth[3]=pkt[0x08];
983 eth[4]=pkt[0x04];
984 eth[5]=pkt[0x03];
986 eth[6]=eth[7]=eth[8]=eth[9]=eth[10]=eth[11]=0;
988 if (snap) {
989 eth[12] = pkt[18];
990 eth[13] = pkt[19];
991 } else {
992 /* protocol numbers are from rfc-1700 or
993 * http://www.iana.org/assignments/ethernet-numbers
995 if (pkt[12] >> 4 == 6) { /* version field from IP header */
996 eth[12] = 0x86; /* IPv6 */
997 eth[13] = 0xdd;
998 } else {
999 eth[12] = 0x08; /* IPv4 */
1000 eth[13] = 0x00;
1004 skb->protocol = dvb_net_eth_type_trans(skb, dev);
1006 stats->rx_packets++;
1007 stats->rx_bytes+=skb->len;
1008 netif_rx(skb);
1011 static int dvb_net_sec_callback(const u8 *buffer1, size_t buffer1_len,
1012 const u8 *buffer2, size_t buffer2_len,
1013 struct dmx_section_filter *filter)
1015 struct net_device *dev = filter->priv;
1018 * we rely on the DVB API definition where exactly one complete
1019 * section is delivered in buffer1
1021 dvb_net_sec (dev, buffer1, buffer1_len);
1022 return 0;
1025 static int dvb_net_tx(struct sk_buff *skb, struct net_device *dev)
1027 dev_kfree_skb(skb);
1028 return NETDEV_TX_OK;
1031 static u8 mask_normal[6]={0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
1032 static u8 mask_allmulti[6]={0xff, 0xff, 0xff, 0x00, 0x00, 0x00};
1033 static u8 mac_allmulti[6]={0x01, 0x00, 0x5e, 0x00, 0x00, 0x00};
1034 static u8 mask_promisc[6]={0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
1036 static int dvb_net_filter_sec_set(struct net_device *dev,
1037 struct dmx_section_filter **secfilter,
1038 u8 *mac, u8 *mac_mask)
1040 struct dvb_net_priv *priv = netdev_priv(dev);
1041 int ret;
1043 *secfilter=NULL;
1044 ret = priv->secfeed->allocate_filter(priv->secfeed, secfilter);
1045 if (ret<0) {
1046 pr_err("%s: could not get filter\n", dev->name);
1047 return ret;
1050 (*secfilter)->priv=(void *) dev;
1052 memset((*secfilter)->filter_value, 0x00, DMX_MAX_FILTER_SIZE);
1053 memset((*secfilter)->filter_mask, 0x00, DMX_MAX_FILTER_SIZE);
1054 memset((*secfilter)->filter_mode, 0xff, DMX_MAX_FILTER_SIZE);
1056 (*secfilter)->filter_value[0]=0x3e;
1057 (*secfilter)->filter_value[3]=mac[5];
1058 (*secfilter)->filter_value[4]=mac[4];
1059 (*secfilter)->filter_value[8]=mac[3];
1060 (*secfilter)->filter_value[9]=mac[2];
1061 (*secfilter)->filter_value[10]=mac[1];
1062 (*secfilter)->filter_value[11]=mac[0];
1064 (*secfilter)->filter_mask[0] = 0xff;
1065 (*secfilter)->filter_mask[3] = mac_mask[5];
1066 (*secfilter)->filter_mask[4] = mac_mask[4];
1067 (*secfilter)->filter_mask[8] = mac_mask[3];
1068 (*secfilter)->filter_mask[9] = mac_mask[2];
1069 (*secfilter)->filter_mask[10] = mac_mask[1];
1070 (*secfilter)->filter_mask[11]=mac_mask[0];
1072 netdev_dbg(dev, "filter mac=%pM mask=%pM\n", mac, mac_mask);
1074 return 0;
1077 static int dvb_net_feed_start(struct net_device *dev)
1079 int ret = 0, i;
1080 struct dvb_net_priv *priv = netdev_priv(dev);
1081 struct dmx_demux *demux = priv->demux;
1082 unsigned char *mac = (unsigned char *) dev->dev_addr;
1084 netdev_dbg(dev, "rx_mode %i\n", priv->rx_mode);
1085 mutex_lock(&priv->mutex);
1086 if (priv->tsfeed || priv->secfeed || priv->secfilter || priv->multi_secfilter[0])
1087 pr_err("%s: BUG %d\n", __func__, __LINE__);
1089 priv->secfeed=NULL;
1090 priv->secfilter=NULL;
1091 priv->tsfeed = NULL;
1093 if (priv->feedtype == DVB_NET_FEEDTYPE_MPE) {
1094 netdev_dbg(dev, "alloc secfeed\n");
1095 ret=demux->allocate_section_feed(demux, &priv->secfeed,
1096 dvb_net_sec_callback);
1097 if (ret<0) {
1098 pr_err("%s: could not allocate section feed\n",
1099 dev->name);
1100 goto error;
1103 ret = priv->secfeed->set(priv->secfeed, priv->pid, 1);
1105 if (ret<0) {
1106 pr_err("%s: could not set section feed\n", dev->name);
1107 priv->demux->release_section_feed(priv->demux, priv->secfeed);
1108 priv->secfeed=NULL;
1109 goto error;
1112 if (priv->rx_mode != RX_MODE_PROMISC) {
1113 netdev_dbg(dev, "set secfilter\n");
1114 dvb_net_filter_sec_set(dev, &priv->secfilter, mac, mask_normal);
1117 switch (priv->rx_mode) {
1118 case RX_MODE_MULTI:
1119 for (i = 0; i < priv->multi_num; i++) {
1120 netdev_dbg(dev, "set multi_secfilter[%d]\n", i);
1121 dvb_net_filter_sec_set(dev, &priv->multi_secfilter[i],
1122 priv->multi_macs[i], mask_normal);
1124 break;
1125 case RX_MODE_ALL_MULTI:
1126 priv->multi_num=1;
1127 netdev_dbg(dev, "set multi_secfilter[0]\n");
1128 dvb_net_filter_sec_set(dev, &priv->multi_secfilter[0],
1129 mac_allmulti, mask_allmulti);
1130 break;
1131 case RX_MODE_PROMISC:
1132 priv->multi_num=0;
1133 netdev_dbg(dev, "set secfilter\n");
1134 dvb_net_filter_sec_set(dev, &priv->secfilter, mac, mask_promisc);
1135 break;
1138 netdev_dbg(dev, "start filtering\n");
1139 priv->secfeed->start_filtering(priv->secfeed);
1140 } else if (priv->feedtype == DVB_NET_FEEDTYPE_ULE) {
1141 ktime_t timeout = ns_to_ktime(10 * NSEC_PER_MSEC);
1143 /* we have payloads encapsulated in TS */
1144 netdev_dbg(dev, "alloc tsfeed\n");
1145 ret = demux->allocate_ts_feed(demux, &priv->tsfeed, dvb_net_ts_callback);
1146 if (ret < 0) {
1147 pr_err("%s: could not allocate ts feed\n", dev->name);
1148 goto error;
1151 /* Set netdevice pointer for ts decaps callback. */
1152 priv->tsfeed->priv = (void *)dev;
1153 ret = priv->tsfeed->set(priv->tsfeed,
1154 priv->pid, /* pid */
1155 TS_PACKET, /* type */
1156 DMX_PES_OTHER, /* pes type */
1157 timeout /* timeout */
1160 if (ret < 0) {
1161 pr_err("%s: could not set ts feed\n", dev->name);
1162 priv->demux->release_ts_feed(priv->demux, priv->tsfeed);
1163 priv->tsfeed = NULL;
1164 goto error;
1167 netdev_dbg(dev, "start filtering\n");
1168 priv->tsfeed->start_filtering(priv->tsfeed);
1169 } else
1170 ret = -EINVAL;
1172 error:
1173 mutex_unlock(&priv->mutex);
1174 return ret;
1177 static int dvb_net_feed_stop(struct net_device *dev)
1179 struct dvb_net_priv *priv = netdev_priv(dev);
1180 int i, ret = 0;
1182 mutex_lock(&priv->mutex);
1183 if (priv->feedtype == DVB_NET_FEEDTYPE_MPE) {
1184 if (priv->secfeed) {
1185 if (priv->secfeed->is_filtering) {
1186 netdev_dbg(dev, "stop secfeed\n");
1187 priv->secfeed->stop_filtering(priv->secfeed);
1190 if (priv->secfilter) {
1191 netdev_dbg(dev, "release secfilter\n");
1192 priv->secfeed->release_filter(priv->secfeed,
1193 priv->secfilter);
1194 priv->secfilter=NULL;
1197 for (i=0; i<priv->multi_num; i++) {
1198 if (priv->multi_secfilter[i]) {
1199 netdev_dbg(dev, "release multi_filter[%d]\n",
1201 priv->secfeed->release_filter(priv->secfeed,
1202 priv->multi_secfilter[i]);
1203 priv->multi_secfilter[i] = NULL;
1207 priv->demux->release_section_feed(priv->demux, priv->secfeed);
1208 priv->secfeed = NULL;
1209 } else
1210 pr_err("%s: no feed to stop\n", dev->name);
1211 } else if (priv->feedtype == DVB_NET_FEEDTYPE_ULE) {
1212 if (priv->tsfeed) {
1213 if (priv->tsfeed->is_filtering) {
1214 netdev_dbg(dev, "stop tsfeed\n");
1215 priv->tsfeed->stop_filtering(priv->tsfeed);
1217 priv->demux->release_ts_feed(priv->demux, priv->tsfeed);
1218 priv->tsfeed = NULL;
1220 else
1221 pr_err("%s: no ts feed to stop\n", dev->name);
1222 } else
1223 ret = -EINVAL;
1224 mutex_unlock(&priv->mutex);
1225 return ret;
1229 static int dvb_set_mc_filter(struct net_device *dev, unsigned char *addr)
1231 struct dvb_net_priv *priv = netdev_priv(dev);
1233 if (priv->multi_num == DVB_NET_MULTICAST_MAX)
1234 return -ENOMEM;
1236 memcpy(priv->multi_macs[priv->multi_num], addr, ETH_ALEN);
1238 priv->multi_num++;
1239 return 0;
1243 static void wq_set_multicast_list (struct work_struct *work)
1245 struct dvb_net_priv *priv =
1246 container_of(work, struct dvb_net_priv, set_multicast_list_wq);
1247 struct net_device *dev = priv->net;
1249 dvb_net_feed_stop(dev);
1250 priv->rx_mode = RX_MODE_UNI;
1251 netif_addr_lock_bh(dev);
1253 if (dev->flags & IFF_PROMISC) {
1254 netdev_dbg(dev, "promiscuous mode\n");
1255 priv->rx_mode = RX_MODE_PROMISC;
1256 } else if ((dev->flags & IFF_ALLMULTI)) {
1257 netdev_dbg(dev, "allmulti mode\n");
1258 priv->rx_mode = RX_MODE_ALL_MULTI;
1259 } else if (!netdev_mc_empty(dev)) {
1260 struct netdev_hw_addr *ha;
1262 netdev_dbg(dev, "set_mc_list, %d entries\n",
1263 netdev_mc_count(dev));
1265 priv->rx_mode = RX_MODE_MULTI;
1266 priv->multi_num = 0;
1268 netdev_for_each_mc_addr(ha, dev)
1269 dvb_set_mc_filter(dev, ha->addr);
1272 netif_addr_unlock_bh(dev);
1273 dvb_net_feed_start(dev);
1277 static void dvb_net_set_multicast_list (struct net_device *dev)
1279 struct dvb_net_priv *priv = netdev_priv(dev);
1280 schedule_work(&priv->set_multicast_list_wq);
1284 static void wq_restart_net_feed (struct work_struct *work)
1286 struct dvb_net_priv *priv =
1287 container_of(work, struct dvb_net_priv, restart_net_feed_wq);
1288 struct net_device *dev = priv->net;
1290 if (netif_running(dev)) {
1291 dvb_net_feed_stop(dev);
1292 dvb_net_feed_start(dev);
1297 static int dvb_net_set_mac (struct net_device *dev, void *p)
1299 struct dvb_net_priv *priv = netdev_priv(dev);
1300 struct sockaddr *addr=p;
1302 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
1304 if (netif_running(dev))
1305 schedule_work(&priv->restart_net_feed_wq);
1307 return 0;
1311 static int dvb_net_open(struct net_device *dev)
1313 struct dvb_net_priv *priv = netdev_priv(dev);
1315 priv->in_use++;
1316 dvb_net_feed_start(dev);
1317 return 0;
1321 static int dvb_net_stop(struct net_device *dev)
1323 struct dvb_net_priv *priv = netdev_priv(dev);
1325 priv->in_use--;
1326 return dvb_net_feed_stop(dev);
1329 static const struct header_ops dvb_header_ops = {
1330 .create = eth_header,
1331 .parse = eth_header_parse,
1335 static const struct net_device_ops dvb_netdev_ops = {
1336 .ndo_open = dvb_net_open,
1337 .ndo_stop = dvb_net_stop,
1338 .ndo_start_xmit = dvb_net_tx,
1339 .ndo_set_rx_mode = dvb_net_set_multicast_list,
1340 .ndo_set_mac_address = dvb_net_set_mac,
1341 .ndo_change_mtu = eth_change_mtu,
1342 .ndo_validate_addr = eth_validate_addr,
1345 static void dvb_net_setup(struct net_device *dev)
1347 ether_setup(dev);
1349 dev->header_ops = &dvb_header_ops;
1350 dev->netdev_ops = &dvb_netdev_ops;
1351 dev->mtu = 4096;
1353 dev->flags |= IFF_NOARP;
1356 static int get_if(struct dvb_net *dvbnet)
1358 int i;
1360 for (i=0; i<DVB_NET_DEVICES_MAX; i++)
1361 if (!dvbnet->state[i])
1362 break;
1364 if (i == DVB_NET_DEVICES_MAX)
1365 return -1;
1367 dvbnet->state[i]=1;
1368 return i;
1371 static int dvb_net_add_if(struct dvb_net *dvbnet, u16 pid, u8 feedtype)
1373 struct net_device *net;
1374 struct dvb_net_priv *priv;
1375 int result;
1376 int if_num;
1378 if (feedtype != DVB_NET_FEEDTYPE_MPE && feedtype != DVB_NET_FEEDTYPE_ULE)
1379 return -EINVAL;
1380 if ((if_num = get_if(dvbnet)) < 0)
1381 return -EINVAL;
1383 net = alloc_netdev(sizeof(struct dvb_net_priv), "dvb",
1384 NET_NAME_UNKNOWN, dvb_net_setup);
1385 if (!net)
1386 return -ENOMEM;
1388 if (dvbnet->dvbdev->id)
1389 snprintf(net->name, IFNAMSIZ, "dvb%d%u%d",
1390 dvbnet->dvbdev->adapter->num, dvbnet->dvbdev->id, if_num);
1391 else
1392 /* compatibility fix to keep dvb0_0 format */
1393 snprintf(net->name, IFNAMSIZ, "dvb%d_%d",
1394 dvbnet->dvbdev->adapter->num, if_num);
1396 net->addr_len = 6;
1397 memcpy(net->dev_addr, dvbnet->dvbdev->adapter->proposed_mac, 6);
1399 dvbnet->device[if_num] = net;
1401 priv = netdev_priv(net);
1402 priv->net = net;
1403 priv->demux = dvbnet->demux;
1404 priv->pid = pid;
1405 priv->rx_mode = RX_MODE_UNI;
1406 priv->need_pusi = 1;
1407 priv->tscc = 0;
1408 priv->feedtype = feedtype;
1409 reset_ule(priv);
1411 INIT_WORK(&priv->set_multicast_list_wq, wq_set_multicast_list);
1412 INIT_WORK(&priv->restart_net_feed_wq, wq_restart_net_feed);
1413 mutex_init(&priv->mutex);
1415 net->base_addr = pid;
1417 if ((result = register_netdev(net)) < 0) {
1418 dvbnet->device[if_num] = NULL;
1419 free_netdev(net);
1420 return result;
1422 pr_info("created network interface %s\n", net->name);
1424 return if_num;
1427 static int dvb_net_remove_if(struct dvb_net *dvbnet, unsigned long num)
1429 struct net_device *net = dvbnet->device[num];
1430 struct dvb_net_priv *priv;
1432 if (!dvbnet->state[num])
1433 return -EINVAL;
1434 priv = netdev_priv(net);
1435 if (priv->in_use)
1436 return -EBUSY;
1438 dvb_net_stop(net);
1439 flush_work(&priv->set_multicast_list_wq);
1440 flush_work(&priv->restart_net_feed_wq);
1441 pr_info("removed network interface %s\n", net->name);
1442 unregister_netdev(net);
1443 dvbnet->state[num]=0;
1444 dvbnet->device[num] = NULL;
1445 free_netdev(net);
1447 return 0;
1450 static int dvb_net_do_ioctl(struct file *file,
1451 unsigned int cmd, void *parg)
1453 struct dvb_device *dvbdev = file->private_data;
1454 struct dvb_net *dvbnet = dvbdev->priv;
1455 int ret = 0;
1457 if (((file->f_flags&O_ACCMODE)==O_RDONLY))
1458 return -EPERM;
1460 if (mutex_lock_interruptible(&dvbnet->ioctl_mutex))
1461 return -ERESTARTSYS;
1463 switch (cmd) {
1464 case NET_ADD_IF:
1466 struct dvb_net_if *dvbnetif = parg;
1467 int result;
1469 if (!capable(CAP_SYS_ADMIN)) {
1470 ret = -EPERM;
1471 goto ioctl_error;
1474 if (!try_module_get(dvbdev->adapter->module)) {
1475 ret = -EPERM;
1476 goto ioctl_error;
1479 result=dvb_net_add_if(dvbnet, dvbnetif->pid, dvbnetif->feedtype);
1480 if (result<0) {
1481 module_put(dvbdev->adapter->module);
1482 ret = result;
1483 goto ioctl_error;
1485 dvbnetif->if_num=result;
1486 break;
1488 case NET_GET_IF:
1490 struct net_device *netdev;
1491 struct dvb_net_priv *priv_data;
1492 struct dvb_net_if *dvbnetif = parg;
1494 if (dvbnetif->if_num >= DVB_NET_DEVICES_MAX ||
1495 !dvbnet->state[dvbnetif->if_num]) {
1496 ret = -EINVAL;
1497 goto ioctl_error;
1500 netdev = dvbnet->device[dvbnetif->if_num];
1502 priv_data = netdev_priv(netdev);
1503 dvbnetif->pid=priv_data->pid;
1504 dvbnetif->feedtype=priv_data->feedtype;
1505 break;
1507 case NET_REMOVE_IF:
1509 if (!capable(CAP_SYS_ADMIN)) {
1510 ret = -EPERM;
1511 goto ioctl_error;
1513 if ((unsigned long) parg >= DVB_NET_DEVICES_MAX) {
1514 ret = -EINVAL;
1515 goto ioctl_error;
1517 ret = dvb_net_remove_if(dvbnet, (unsigned long) parg);
1518 if (!ret)
1519 module_put(dvbdev->adapter->module);
1520 break;
1523 /* binary compatibility cruft */
1524 case __NET_ADD_IF_OLD:
1526 struct __dvb_net_if_old *dvbnetif = parg;
1527 int result;
1529 if (!capable(CAP_SYS_ADMIN)) {
1530 ret = -EPERM;
1531 goto ioctl_error;
1534 if (!try_module_get(dvbdev->adapter->module)) {
1535 ret = -EPERM;
1536 goto ioctl_error;
1539 result=dvb_net_add_if(dvbnet, dvbnetif->pid, DVB_NET_FEEDTYPE_MPE);
1540 if (result<0) {
1541 module_put(dvbdev->adapter->module);
1542 ret = result;
1543 goto ioctl_error;
1545 dvbnetif->if_num=result;
1546 break;
1548 case __NET_GET_IF_OLD:
1550 struct net_device *netdev;
1551 struct dvb_net_priv *priv_data;
1552 struct __dvb_net_if_old *dvbnetif = parg;
1554 if (dvbnetif->if_num >= DVB_NET_DEVICES_MAX ||
1555 !dvbnet->state[dvbnetif->if_num]) {
1556 ret = -EINVAL;
1557 goto ioctl_error;
1560 netdev = dvbnet->device[dvbnetif->if_num];
1562 priv_data = netdev_priv(netdev);
1563 dvbnetif->pid=priv_data->pid;
1564 break;
1566 default:
1567 ret = -ENOTTY;
1568 break;
1571 ioctl_error:
1572 mutex_unlock(&dvbnet->ioctl_mutex);
1573 return ret;
1576 static long dvb_net_ioctl(struct file *file,
1577 unsigned int cmd, unsigned long arg)
1579 return dvb_usercopy(file, cmd, arg, dvb_net_do_ioctl);
1582 static int dvb_net_close(struct inode *inode, struct file *file)
1584 struct dvb_device *dvbdev = file->private_data;
1585 struct dvb_net *dvbnet = dvbdev->priv;
1587 dvb_generic_release(inode, file);
1589 if(dvbdev->users == 1 && dvbnet->exit == 1)
1590 wake_up(&dvbdev->wait_queue);
1591 return 0;
1595 static const struct file_operations dvb_net_fops = {
1596 .owner = THIS_MODULE,
1597 .unlocked_ioctl = dvb_net_ioctl,
1598 .open = dvb_generic_open,
1599 .release = dvb_net_close,
1600 .llseek = noop_llseek,
1603 static const struct dvb_device dvbdev_net = {
1604 .priv = NULL,
1605 .users = 1,
1606 .writers = 1,
1607 #if defined(CONFIG_MEDIA_CONTROLLER_DVB)
1608 .name = "dvb-net",
1609 #endif
1610 .fops = &dvb_net_fops,
1613 void dvb_net_release (struct dvb_net *dvbnet)
1615 int i;
1617 dvbnet->exit = 1;
1618 if (dvbnet->dvbdev->users < 1)
1619 wait_event(dvbnet->dvbdev->wait_queue,
1620 dvbnet->dvbdev->users==1);
1622 dvb_unregister_device(dvbnet->dvbdev);
1624 for (i=0; i<DVB_NET_DEVICES_MAX; i++) {
1625 if (!dvbnet->state[i])
1626 continue;
1627 dvb_net_remove_if(dvbnet, i);
1630 EXPORT_SYMBOL(dvb_net_release);
1633 int dvb_net_init (struct dvb_adapter *adap, struct dvb_net *dvbnet,
1634 struct dmx_demux *dmx)
1636 int i;
1638 mutex_init(&dvbnet->ioctl_mutex);
1639 dvbnet->demux = dmx;
1641 for (i=0; i<DVB_NET_DEVICES_MAX; i++)
1642 dvbnet->state[i] = 0;
1644 return dvb_register_device(adap, &dvbnet->dvbdev, &dvbdev_net,
1645 dvbnet, DVB_DEVICE_NET, 0);
1647 EXPORT_SYMBOL(dvb_net_init);