Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 | /* * dvb_net.c * * Copyright (C) 2001 Convergence integrated media GmbH * Ralph Metzler <ralph@convergence.de> * Copyright (C) 2002 Ralph Metzler <rjkm@metzlerbros.de> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * Or, point your browser to http://www.gnu.org/copyleft/gpl.html * */ #include <asm/uaccess.h> #include <linux/dvb/net.h> #include "dvb_demux.h" #include "dvb_net.h" #if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,51) #include "compat.h" #endif #define DVB_NET_MULTICAST_MAX 10 struct dvb_net_priv { struct net_device_stats stats; char name[6]; u16 pid; struct dmx_demux_s *demux; dmx_section_feed_t *secfeed; dmx_section_filter_t *secfilter; int multi_num; dmx_section_filter_t *multi_secfilter[DVB_NET_MULTICAST_MAX]; unsigned char multi_macs[DVB_NET_MULTICAST_MAX][6]; int mode; }; /* * Determine the packet's protocol ID. The rule here is that we * assume 802.3 if the type field is short enough to be a length. * This is normal practice and works for any 'now in use' protocol. * * stolen from eth.c out of the linux kernel, hacked for dvb-device * by Michael Holzt <kju@debian.org> */ unsigned short my_eth_type_trans(struct sk_buff *skb, struct net_device *dev) { struct ethhdr *eth; unsigned char *rawp; skb->mac.raw=skb->data; skb_pull(skb,dev->hard_header_len); eth= skb->mac.ethernet; if(*eth->h_dest&1) { if(memcmp(eth->h_dest,dev->broadcast, ETH_ALEN)==0) skb->pkt_type=PACKET_BROADCAST; else skb->pkt_type=PACKET_MULTICAST; } if (ntohs(eth->h_proto) >= 1536) return eth->h_proto; rawp = skb->data; /* * This is a magic hack to spot IPX packets. Older Novell breaks * the protocol design and runs IPX over 802.3 without an 802.2 LLC * layer. We look for FFFF which isn't a used 802.2 SSAP/DSAP. This * won't work for fault tolerant netware but does for the rest. */ if (*(unsigned short *)rawp == 0xFFFF) return htons(ETH_P_802_3); /* * Real 802.2 LLC */ return htons(ETH_P_802_2); } static void dvb_net_sec(struct net_device *dev, const u8 *pkt, int pkt_len) { u8 *eth; struct sk_buff *skb; if (pkt_len<13) { printk("%s: IP/MPE packet length = %d too small.\n", dev->name, pkt_len); return; } skb = dev_alloc_skb(pkt_len+2); if (skb == NULL) { printk(KERN_NOTICE "%s: Memory squeeze, dropping packet.\n", dev->name); ((struct dvb_net_priv *)dev->priv)->stats.rx_dropped++; return; } eth=(u8 *) skb_put(skb, pkt_len+2); memcpy(eth+14, (void*)pkt+12, pkt_len-12); eth[0]=pkt[0x0b]; eth[1]=pkt[0x0a]; eth[2]=pkt[0x09]; eth[3]=pkt[0x08]; eth[4]=pkt[0x04]; eth[5]=pkt[0x03]; eth[6]=eth[7]=eth[8]=eth[9]=eth[10]=eth[11]=0; eth[12]=0x08; eth[13]=0x00; skb->protocol=my_eth_type_trans(skb,dev); skb->dev=dev; ((struct dvb_net_priv *)dev->priv)->stats.rx_packets++; ((struct dvb_net_priv *)dev->priv)->stats.rx_bytes+=skb->len; netif_rx(skb); } static int dvb_net_callback(const u8 *buffer1, size_t buffer1_len, const u8 *buffer2, size_t buffer2_len, dmx_section_filter_t *filter, dmx_success_t success) { struct net_device *dev=(struct net_device *) filter->priv; /* FIXME: this only works if exactly one complete section is delivered in buffer1 only */ dvb_net_sec(dev, buffer1, buffer1_len); return 0; } static int dvb_net_tx(struct sk_buff *skb, struct net_device *dev) { return 0; } static u8 mask_normal[6]={0xff, 0xff, 0xff, 0xff, 0xff, 0xff}; static u8 mask_allmulti[6]={0xff, 0xff, 0xff, 0x00, 0x00, 0x00}; static u8 mac_allmulti[6]={0x01, 0x00, 0x5e, 0x00, 0x00, 0x00}; static u8 mask_promisc[6]={0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; static int dvb_net_filter_set(struct net_device *dev, dmx_section_filter_t **secfilter, u8 *mac, u8 *mac_mask) { struct dvb_net_priv *priv = (struct dvb_net_priv*) dev->priv; int ret; *secfilter=0; ret = priv->secfeed->allocate_filter(priv->secfeed, secfilter); if (ret<0) { printk("%s: could not get filter\n", dev->name); return ret; } (*secfilter)->priv=(void *) dev; memset((*secfilter)->filter_value, 0x00, DMX_MAX_FILTER_SIZE); memset((*secfilter)->filter_mask, 0x00, DMX_MAX_FILTER_SIZE); memset((*secfilter)->filter_mode, 0xff, DMX_MAX_FILTER_SIZE); (*secfilter)->filter_value[0]=0x3e; (*secfilter)->filter_mask[0]=0xff; (*secfilter)->filter_value[3]=mac[5]; (*secfilter)->filter_mask[3]=mac_mask[5]; (*secfilter)->filter_value[4]=mac[4]; (*secfilter)->filter_mask[4]=mac_mask[4]; (*secfilter)->filter_value[8]=mac[3]; (*secfilter)->filter_mask[8]=mac_mask[3]; (*secfilter)->filter_value[9]=mac[2]; (*secfilter)->filter_mask[9]=mac_mask[2]; (*secfilter)->filter_value[10]=mac[1]; (*secfilter)->filter_mask[10]=mac_mask[1]; (*secfilter)->filter_value[11]=mac[0]; (*secfilter)->filter_mask[11]=mac_mask[0]; printk("%s: filter mac=%02x %02x %02x %02x %02x %02x\n", dev->name, mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]); return 0; } static int dvb_net_feed_start(struct net_device *dev) { int ret, i; struct dvb_net_priv *priv = (struct dvb_net_priv*) dev->priv; dmx_demux_t *demux = priv->demux; unsigned char *mac = (unsigned char *) dev->dev_addr; priv->secfeed=0; priv->secfilter=0; ret=demux->allocate_section_feed(demux, &priv->secfeed, dvb_net_callback); if (ret<0) { printk("%s: could not get section feed\n", dev->name); return ret; } ret=priv->secfeed->set(priv->secfeed, priv->pid, 32768, 0, 0); if (ret<0) { printk("%s: could not set section feed\n", dev->name); priv->demux-> release_section_feed(priv->demux, priv->secfeed); priv->secfeed=0; return ret; } /* fixme: is this correct? */ try_module_get(THIS_MODULE); if (priv->mode<3) dvb_net_filter_set(dev, &priv->secfilter, mac, mask_normal); switch (priv->mode) { case 1: for (i=0; i<priv->multi_num; i++) dvb_net_filter_set(dev, &priv->multi_secfilter[i], priv->multi_macs[i], mask_normal); break; case 2: priv->multi_num=1; dvb_net_filter_set(dev, &priv->multi_secfilter[0], mac_allmulti, mask_allmulti); break; case 3: priv->multi_num=0; dvb_net_filter_set(dev, &priv->secfilter, mac, mask_promisc); break; } priv->secfeed->start_filtering(priv->secfeed); return 0; } static void dvb_net_feed_stop(struct net_device *dev) { struct dvb_net_priv *priv = (struct dvb_net_priv*) dev->priv; int i; if (priv->secfeed) { if (priv->secfeed->is_filtering) priv->secfeed->stop_filtering(priv->secfeed); if (priv->secfilter) priv->secfeed-> release_filter(priv->secfeed, priv->secfilter); priv->secfilter=0; for (i=0; i<priv->multi_num; i++) { if (priv->multi_secfilter[i]) priv->secfeed-> release_filter(priv->secfeed, priv->multi_secfilter[i]); priv->multi_secfilter[i]=0; } priv->demux-> release_section_feed(priv->demux, priv->secfeed); priv->secfeed=0; /* fixme: is this correct? */ module_put(THIS_MODULE); } else printk("%s: no feed to stop\n", dev->name); } static int dvb_add_mc_filter(struct net_device *dev, struct dev_mc_list *mc) { struct dvb_net_priv *priv = (struct dvb_net_priv*) dev->priv; int ret; if (priv->multi_num >= DVB_NET_MULTICAST_MAX) return -ENOMEM; ret = memcmp(priv->multi_macs[priv->multi_num], mc->dmi_addr, 6); memcpy(priv->multi_macs[priv->multi_num], mc->dmi_addr, 6); priv->multi_num++; return ret; } static void dvb_net_set_multi(struct net_device *dev) { struct dvb_net_priv *priv = (struct dvb_net_priv*) dev->priv; struct dev_mc_list *mc; int mci; int update = 0; if(dev->flags & IFF_PROMISC) { // printk("%s: promiscuous mode\n", dev->name); if(priv->mode != 3) update = 1; priv->mode = 3; } else if(dev->flags & IFF_ALLMULTI) { // printk("%s: allmulti mode\n", dev->name); if(priv->mode != 2) update = 1; priv->mode = 2; } else if(dev->mc_count > 0) { // printk("%s: set_mc_list, %d entries\n", // dev->name, dev->mc_count); if(priv->mode != 1) update = 1; priv->mode = 1; priv->multi_num = 0; for (mci = 0, mc=dev->mc_list; mci < dev->mc_count; mc=mc->next, mci++) if(dvb_add_mc_filter(dev, mc) != 0) update = 1; } else { if(priv->mode != 0) update = 1; priv->mode = 0; } if(netif_running(dev) != 0 && update > 0) { dvb_net_feed_stop(dev); dvb_net_feed_start(dev); } } static int dvb_net_set_config(struct net_device *dev, struct ifmap *map) { if (netif_running(dev)) return -EBUSY; return 0; } static int dvb_net_set_mac(struct net_device *dev, void *p) { struct sockaddr *addr=p; int update; update = memcmp(dev->dev_addr, addr->sa_data, dev->addr_len); memcpy(dev->dev_addr, addr->sa_data, dev->addr_len); if (netif_running(dev) != 0 && update > 0) { dvb_net_feed_stop(dev); dvb_net_feed_start(dev); } return 0; } static int dvb_net_open(struct net_device *dev) { dvb_net_feed_start(dev); return 0; } static int dvb_net_stop(struct net_device *dev) { dvb_net_feed_stop(dev); return 0; } static struct net_device_stats * dvb_net_get_stats(struct net_device *dev) { return &((struct dvb_net_priv*) dev->priv)->stats; } static int dvb_net_init_dev(struct net_device *dev) { ether_setup(dev); dev->open = dvb_net_open; dev->stop = dvb_net_stop; dev->hard_start_xmit = dvb_net_tx; dev->get_stats = dvb_net_get_stats; dev->set_multicast_list = dvb_net_set_multi; dev->set_config = dvb_net_set_config; dev->set_mac_address = dvb_net_set_mac; dev->mtu = 4096; dev->mc_count = 0; dev->flags |= IFF_NOARP; dev->hard_header_cache = NULL; //SET_MODULE_OWNER(dev); return 0; } static int get_if(struct dvb_net *dvbnet) { int i; for (i=0; i<dvbnet->dev_num; i++) if (!dvbnet->state[i]) break; if (i==dvbnet->dev_num) return -1; dvbnet->state[i]=1; return i; } int dvb_net_add_if(struct dvb_net *dvbnet, u16 pid) { struct net_device *net; dmx_demux_t *demux; struct dvb_net_priv *priv; int result; int if_num; if_num=get_if(dvbnet); if (if_num<0) return -EINVAL; net=&dvbnet->device[if_num]; demux=dvbnet->demux; net->base_addr = 0; net->irq = 0; net->dma = 0; net->mem_start = 0; memcpy(net->name, "dvb0_0", 7); net->name[3]=dvbnet->card_num+0x30; net->name[5]=if_num+0x30; net->next = NULL; net->init = dvb_net_init_dev; net->priv = kmalloc(sizeof(struct dvb_net_priv), GFP_KERNEL); if (net->priv == NULL) return -ENOMEM; priv = net->priv; memset(priv, 0, sizeof(struct dvb_net_priv)); priv->demux = demux; priv->pid = pid; priv->mode = 0; net->base_addr = pid; if ((result = register_netdev(net)) < 0) { return result; } /* fixme: is this correct? */ try_module_get(THIS_MODULE); return if_num; } int dvb_net_remove_if(struct dvb_net *dvbnet, int num) { if (!dvbnet->state[num]) return -EINVAL; dvb_net_stop(&dvbnet->device[num]); kfree(dvbnet->device[num].priv); unregister_netdev(&dvbnet->device[num]); dvbnet->state[num]=0; /* fixme: is this correct? */ module_put(THIS_MODULE); return 0; } int dvb_net_do_ioctl(struct inode *inode, struct file *file, unsigned int cmd, void *parg) { struct dvb_device *dvbdev = (struct dvb_device *) file->private_data; struct dvb_net *dvbnet = (struct dvb_net *) dvbdev->priv; if (((file->f_flags&O_ACCMODE)==O_RDONLY)) return -EPERM; switch (cmd) { case NET_ADD_IF: { struct dvb_net_if *dvbnetif=(struct dvb_net_if *)parg; int result; result=dvb_net_add_if(dvbnet, dvbnetif->pid); if (result<0) return result; dvbnetif->if_num=result; break; } case NET_GET_IF: { struct net_device *netdev; struct dvb_net_priv *priv_data; struct dvb_net_if *dvbnetif=(struct dvb_net_if *)parg; if (dvbnetif->if_num >= dvbnet->dev_num || !dvbnet->state[dvbnetif->if_num]) return -EFAULT; netdev=(struct net_device*)&dvbnet->device[dvbnetif->if_num]; priv_data=(struct dvb_net_priv*)netdev->priv; dvbnetif->pid=priv_data->pid; break; } case NET_REMOVE_IF: return dvb_net_remove_if(dvbnet, (int) parg); default: return -EINVAL; } return 0; } static int dvb_net_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg) { return dvb_usercopy(inode, file, cmd, arg, dvb_net_do_ioctl); } static struct file_operations dvb_net_fops = { .owner = THIS_MODULE, .read = 0, .write = 0, .ioctl = dvb_net_ioctl, .open = dvb_generic_open, .release = dvb_generic_release, .poll = 0, }; static struct dvb_device dvbdev_net = { .priv = 0, .users = 1, .writers = 1, .fops = &dvb_net_fops, }; void dvb_net_release(struct dvb_net *dvbnet) { int i; dvb_unregister_device(dvbnet->dvbdev); for (i=0; i<dvbnet->dev_num; i++) { if (!dvbnet->state[i]) continue; dvb_net_remove_if(dvbnet, i); } } int dvb_net_init(struct dvb_adapter *adap, struct dvb_net *dvbnet, dmx_demux_t *dmx) { int i; dvbnet->demux = dmx; dvbnet->dev_num = DVB_NET_DEVICES_MAX; for (i=0; i<dvbnet->dev_num; i++) dvbnet->state[i] = 0; dvb_register_device (adap, &dvbnet->dvbdev, &dvbdev_net, dvbnet, DVB_DEVICE_NET); return 0; } |