vlan.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:18k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * INET 802.1Q VLAN
  3.  * Ethernet-type device handling.
  4.  *
  5.  * Authors: Ben Greear <greearb@candelatech.com>
  6.  *              Please send support related email to: vlan@scry.wanfear.com
  7.  *              VLAN Home Page: http://www.candelatech.com/~greear/vlan.html
  8.  * 
  9.  * Fixes:
  10.  *              Fix for packet capture - Nick Eggleston <nick@dccinc.com>;
  11.  * Add HW acceleration hooks - David S. Miller <davem@redhat.com>;
  12.  * Correct all the locking - David S. Miller <davem@redhat.com>;
  13.  * Use hash table for VLAN groups - David S. Miller <davem@redhat.com>
  14.  *
  15.  * This program is free software; you can redistribute it and/or
  16.  * modify it under the terms of the GNU General Public License
  17.  * as published by the Free Software Foundation; either version
  18.  * 2 of the License, or (at your option) any later version.
  19.  */
  20. #include <asm/uaccess.h> /* for copy_from_user */
  21. #include <linux/module.h>
  22. #include <linux/netdevice.h>
  23. #include <linux/skbuff.h>
  24. #include <net/datalink.h>
  25. #include <linux/mm.h>
  26. #include <linux/in.h>
  27. #include <linux/init.h>
  28. #include <net/p8022.h>
  29. #include <net/arp.h>
  30. #include <linux/rtnetlink.h>
  31. #include <linux/brlock.h>
  32. #include <linux/notifier.h>
  33. #include <linux/if_vlan.h>
  34. #include "vlan.h"
  35. #include "vlanproc.h"
  36. /* Global VLAN variables */
  37. /* Our listing of VLAN group(s) */
  38. struct vlan_group *vlan_group_hash[VLAN_GRP_HASH_SIZE];
  39. spinlock_t vlan_group_lock = SPIN_LOCK_UNLOCKED;
  40. #define vlan_grp_hashfn(IDX) ((((IDX) >> VLAN_GRP_HASH_SHIFT) ^ (IDX)) & VLAN_GRP_HASH_MASK)
  41. static char vlan_fullname[] = "802.1Q VLAN Support";
  42. static unsigned int vlan_version = 1;
  43. static unsigned int vlan_release = 7;
  44. static char vlan_copyright[] = "Ben Greear <greearb@candelatech.com>";
  45. static char vlan_buggyright[] = "David S. Miller <davem@redhat.com>";
  46. static int vlan_device_event(struct notifier_block *, unsigned long, void *);
  47. struct notifier_block vlan_notifier_block = {
  48. notifier_call: vlan_device_event,
  49. };
  50. /* These may be changed at run-time through IOCTLs */
  51. /* Determines interface naming scheme. */
  52. unsigned short vlan_name_type = VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD;
  53. /* DO reorder the header by default */
  54. unsigned short vlan_default_dev_flags = 1;
  55. static struct packet_type vlan_packet_type = {
  56. type: __constant_htons(ETH_P_8021Q),
  57. dev:  NULL,
  58. func: vlan_skb_recv, /* VLAN receive method */
  59. data: (void *)(-1),  /* Set here '(void *)1' when this code can SHARE SKBs */
  60. next: NULL
  61. };
  62. /* End of global variables definitions. */
  63. /*
  64.  * Function vlan_proto_init (pro)
  65.  *
  66.  *    Initialize VLAN protocol layer, 
  67.  *
  68.  */
  69. static int __init vlan_proto_init(void)
  70. {
  71. int err;
  72. printk(VLAN_INF "%s v%u.%u %sn",
  73.        vlan_fullname, vlan_version, vlan_release, vlan_copyright);
  74. printk(VLAN_INF "All bugs added by %sn",
  75.        vlan_buggyright);
  76. /* proc file system initialization */
  77. err = vlan_proc_init();
  78. if (err < 0) {
  79. printk(KERN_ERR 
  80.        "%s %s: can't create entry in proc filesystem!n",
  81.        __FUNCTION__, VLAN_NAME);
  82. return 1;
  83. }
  84. dev_add_pack(&vlan_packet_type);
  85. /* Register us to receive netdevice events */
  86. register_netdevice_notifier(&vlan_notifier_block);
  87. vlan_ioctl_hook = vlan_ioctl_handler;
  88. return 0;
  89. }
  90. /*
  91.  *     Module 'remove' entry point.
  92.  *     o delete /proc/net/router directory and static entries.
  93.  */ 
  94. static void __exit vlan_cleanup_module(void)
  95. {
  96. int i;
  97. /* This table must be empty if there are no module
  98.  * references left.
  99.  */
  100. for (i = 0; i < VLAN_GRP_HASH_SIZE; i++) {
  101. if (vlan_group_hash[i] != NULL)
  102. BUG();
  103. }
  104. /* Un-register us from receiving netdevice events */
  105. unregister_netdevice_notifier(&vlan_notifier_block);
  106. dev_remove_pack(&vlan_packet_type);
  107. vlan_proc_cleanup();
  108. vlan_ioctl_hook = NULL;
  109. }
  110. module_init(vlan_proto_init);
  111. module_exit(vlan_cleanup_module);
  112. /* Must be invoked with vlan_group_lock held. */
  113. static struct vlan_group *__vlan_find_group(int real_dev_ifindex)
  114. {
  115. struct vlan_group *grp;
  116. for (grp = vlan_group_hash[vlan_grp_hashfn(real_dev_ifindex)];
  117.      grp != NULL;
  118.      grp = grp->next) {
  119. if (grp->real_dev_ifindex == real_dev_ifindex)
  120. break;
  121. }
  122. return grp;
  123. }
  124. /* Must hold vlan_group_lock. */
  125. static void __grp_hash(struct vlan_group *grp)
  126. {
  127. struct vlan_group **head;
  128. head = &vlan_group_hash[vlan_grp_hashfn(grp->real_dev_ifindex)];
  129. grp->next = *head;
  130. *head = grp;
  131. }
  132. /* Must hold vlan_group_lock. */
  133. static void __grp_unhash(struct vlan_group *grp)
  134. {
  135. struct vlan_group *next, **pprev;
  136. pprev = &vlan_group_hash[vlan_grp_hashfn(grp->real_dev_ifindex)];
  137. next = *pprev;
  138. while (next != grp) {
  139. pprev = &next->next;
  140. next = *pprev;
  141. }
  142. *pprev = grp->next;
  143. }
  144. /*  Find the protocol handler.  Assumes VID < VLAN_VID_MASK.
  145.  *
  146.  * Must be invoked with vlan_group_lock held.
  147.  */
  148. struct net_device *__find_vlan_dev(struct net_device *real_dev,
  149.    unsigned short VID)
  150. {
  151. struct vlan_group *grp = __vlan_find_group(real_dev->ifindex);
  152. if (grp)
  153.                 return grp->vlan_devices[VID];
  154. return NULL;
  155. }
  156. /* This returns 0 if everything went fine.
  157.  * It will return 1 if the group was killed as a result.
  158.  * A negative return indicates failure.
  159.  *
  160.  * The RTNL lock must be held.
  161.  */
  162. static int unregister_vlan_dev(struct net_device *real_dev,
  163.        unsigned short vlan_id)
  164. {
  165. struct net_device *dev = NULL;
  166. int real_dev_ifindex = real_dev->ifindex;
  167. struct vlan_group *grp;
  168. int i, ret;
  169. #ifdef VLAN_DEBUG
  170. printk(VLAN_DBG "%s: VID: %in", __FUNCTION__, vlan_id);
  171. #endif
  172. /* sanity check */
  173. if (vlan_id >= VLAN_VID_MASK)
  174. return -EINVAL;
  175. spin_lock_bh(&vlan_group_lock);
  176. grp = __vlan_find_group(real_dev_ifindex);
  177. spin_unlock_bh(&vlan_group_lock);
  178. ret = 0;
  179. if (grp) {
  180. dev = grp->vlan_devices[vlan_id];
  181. if (dev) {
  182. /* Remove proc entry */
  183. vlan_proc_rem_dev(dev);
  184. /* Take it out of our own structures, but be sure to
  185.  * interlock with HW accelerating devices or SW vlan
  186.  * input packet processing.
  187.  */
  188. if (real_dev->features &
  189.     (NETIF_F_HW_VLAN_RX | NETIF_F_HW_VLAN_FILTER)) {
  190. real_dev->vlan_rx_kill_vid(real_dev, vlan_id);
  191. } else {
  192. br_write_lock(BR_NETPROTO_LOCK);
  193. grp->vlan_devices[vlan_id] = NULL;
  194. br_write_unlock(BR_NETPROTO_LOCK);
  195. }
  196. /* Caller unregisters (and if necessary, puts)
  197.  * VLAN device, but we get rid of the reference to
  198.  * real_dev here.
  199.  */
  200. dev_put(real_dev);
  201. /* If the group is now empty, kill off the
  202.  * group.
  203.  */
  204. for (i = 0; i < VLAN_VID_MASK; i++)
  205. if (grp->vlan_devices[i])
  206. break;
  207. if (i == VLAN_VID_MASK) {
  208. if (real_dev->features & NETIF_F_HW_VLAN_RX)
  209. real_dev->vlan_rx_register(real_dev, NULL);
  210. spin_lock_bh(&vlan_group_lock);
  211. __grp_unhash(grp);
  212. spin_unlock_bh(&vlan_group_lock);
  213. ret = 1;
  214. }
  215. MOD_DEC_USE_COUNT;
  216. }
  217. }
  218.         return ret;
  219. }
  220. static int unregister_vlan_device(const char *vlan_IF_name)
  221. {
  222. struct net_device *dev = NULL;
  223. int ret;
  224. dev = dev_get_by_name(vlan_IF_name);
  225. ret = -EINVAL;
  226. if (dev) {
  227. if (dev->priv_flags & IFF_802_1Q_VLAN) {
  228. rtnl_lock();
  229. ret = unregister_vlan_dev(VLAN_DEV_INFO(dev)->real_dev,
  230.   VLAN_DEV_INFO(dev)->vlan_id);
  231. dev_put(dev);
  232. unregister_netdevice(dev);
  233. rtnl_unlock();
  234. if (ret == 1)
  235. ret = 0;
  236. } else {
  237. printk(VLAN_ERR 
  238.        "%s: ERROR: Tried to remove a non-vlan device "
  239.        "with VLAN code, name: %s  priv_flags: %hXn",
  240.        __FUNCTION__, dev->name, dev->priv_flags);
  241. dev_put(dev);
  242. ret = -EPERM;
  243. }
  244. } else {
  245. #ifdef VLAN_DEBUG
  246. printk(VLAN_DBG "%s: WARNING: Could not find dev.n", __FUNCTION__);
  247. #endif
  248. ret = -EINVAL;
  249. }
  250. return ret;
  251. }
  252. /*  Attach a VLAN device to a mac address (ie Ethernet Card).
  253.  *  Returns the device that was created, or NULL if there was
  254.  *  an error of some kind.
  255.  */
  256. static struct net_device *register_vlan_device(const char *eth_IF_name,
  257.        unsigned short VLAN_ID)
  258. {
  259. struct vlan_group *grp;
  260. struct net_device *new_dev;
  261. struct net_device *real_dev; /* the ethernet device */
  262. int malloc_size = 0;
  263. int r;
  264. #ifdef VLAN_DEBUG
  265. printk(VLAN_DBG "%s: if_name -:%s:- vid: %in",
  266. __FUNCTION__, eth_IF_name, VLAN_ID);
  267. #endif
  268. if (VLAN_ID >= VLAN_VID_MASK)
  269. goto out_ret_null;
  270. /* find the device relating to eth_IF_name. */
  271. real_dev = dev_get_by_name(eth_IF_name);
  272. if (!real_dev)
  273. goto out_ret_null;
  274. if (real_dev->features & NETIF_F_VLAN_CHALLENGED) {
  275. printk(VLAN_DBG "%s: VLANs not supported on %s.n",
  276. __FUNCTION__, real_dev->name);
  277. goto out_put_dev;
  278. }
  279. if ((real_dev->features & NETIF_F_HW_VLAN_RX) &&
  280.     (real_dev->vlan_rx_register == NULL ||
  281.      real_dev->vlan_rx_kill_vid == NULL)) {
  282. printk(VLAN_DBG "%s: Device %s has buggy VLAN hw accel.n",
  283. __FUNCTION__, real_dev->name);
  284. goto out_put_dev;
  285. }
  286. if ((real_dev->features & NETIF_F_HW_VLAN_FILTER) &&
  287.     (real_dev->vlan_rx_add_vid == NULL ||
  288.      real_dev->vlan_rx_kill_vid == NULL)) {
  289. printk(VLAN_DBG "%s: Device %s has buggy VLAN hw accel.n",
  290. __FUNCTION__, real_dev->name);
  291. goto out_put_dev;
  292. }
  293. /* From this point on, all the data structures must remain
  294.  * consistent.
  295.  */
  296. rtnl_lock();
  297. /* The real device must be up and operating in order to
  298.  * assosciate a VLAN device with it.
  299.  */
  300. if (!(real_dev->flags & IFF_UP))
  301. goto out_unlock;
  302. spin_lock_bh(&vlan_group_lock);
  303. r = (__find_vlan_dev(real_dev, VLAN_ID) != NULL);
  304. spin_unlock_bh(&vlan_group_lock);
  305. if (r) {
  306. /* was already registered. */
  307. printk(VLAN_DBG "%s: ALREADY had VLAN registeredn", __FUNCTION__);
  308. goto out_unlock;
  309. }
  310. malloc_size = (sizeof(struct net_device));
  311. new_dev = (struct net_device *) kmalloc(malloc_size, GFP_KERNEL);
  312. VLAN_MEM_DBG("net_device malloc, addr: %p  size: %in",
  313.      new_dev, malloc_size);
  314. if (new_dev == NULL)
  315. goto out_unlock;
  316. memset(new_dev, 0, malloc_size);
  317. /* Set us up to have no queue, as the underlying Hardware device
  318.  * can do all the queueing we could want.
  319.  */
  320. new_dev->tx_queue_len = 0;
  321. /* Gotta set up the fields for the device. */
  322. #ifdef VLAN_DEBUG
  323. printk(VLAN_DBG "About to allocate name, vlan_name_type: %in",
  324.        vlan_name_type);
  325. #endif
  326. switch (vlan_name_type) {
  327. case VLAN_NAME_TYPE_RAW_PLUS_VID:
  328. /* name will look like:  eth1.0005 */
  329. sprintf(new_dev->name, "%s.%.4i", real_dev->name, VLAN_ID);
  330. break;
  331. case VLAN_NAME_TYPE_PLUS_VID_NO_PAD:
  332. /* Put our vlan.VID in the name.
  333.  * Name will look like:  vlan5
  334.  */
  335. sprintf(new_dev->name, "vlan%i", VLAN_ID);
  336. break;
  337. case VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD:
  338. /* Put our vlan.VID in the name.
  339.  * Name will look like:  eth0.5
  340.  */
  341. sprintf(new_dev->name, "%s.%i", real_dev->name, VLAN_ID);
  342. break;
  343. case VLAN_NAME_TYPE_PLUS_VID:
  344. /* Put our vlan.VID in the name.
  345.  * Name will look like:  vlan0005
  346.  */
  347. default:
  348. sprintf(new_dev->name, "vlan%.4i", VLAN_ID);
  349. };
  350.     
  351. #ifdef VLAN_DEBUG
  352. printk(VLAN_DBG "Allocated new name -:%s:-n", new_dev->name);
  353. #endif
  354. /* set up method calls */
  355. new_dev->init = vlan_dev_init;
  356. new_dev->destructor = vlan_dev_destruct;
  357. new_dev->features |= NETIF_F_DYNALLOC ; 
  358.     
  359. /* new_dev->ifindex = 0;  it will be set when added to
  360.  * the global list.
  361.  * iflink is set as well.
  362.  */
  363. new_dev->get_stats = vlan_dev_get_stats;
  364.     
  365. /* IFF_BROADCAST|IFF_MULTICAST; ??? */
  366. new_dev->flags = real_dev->flags;
  367. new_dev->flags &= ~IFF_UP;
  368. /* Make this thing known as a VLAN device */
  369. new_dev->priv_flags |= IFF_802_1Q_VLAN;
  370. /* need 4 bytes for extra VLAN header info,
  371.  * hope the underlying device can handle it.
  372.  */
  373. new_dev->mtu = real_dev->mtu;
  374. new_dev->change_mtu = vlan_dev_change_mtu;
  375. /* TODO: maybe just assign it to be ETHERNET? */
  376. new_dev->type = real_dev->type;
  377. new_dev->hard_header_len = real_dev->hard_header_len;
  378. if (!(real_dev->features & NETIF_F_HW_VLAN_TX)) {
  379. /* Regular ethernet + 4 bytes (18 total). */
  380. new_dev->hard_header_len += VLAN_HLEN;
  381. }
  382. new_dev->priv = kmalloc(sizeof(struct vlan_dev_info),
  383. GFP_KERNEL);
  384. VLAN_MEM_DBG("new_dev->priv malloc, addr: %p  size: %in",
  385.      new_dev->priv,
  386.      sizeof(struct vlan_dev_info));
  387.     
  388. if (new_dev->priv == NULL)
  389. goto out_free_newdev;
  390. memset(new_dev->priv, 0, sizeof(struct vlan_dev_info));
  391. memcpy(new_dev->broadcast, real_dev->broadcast, real_dev->addr_len);
  392. memcpy(new_dev->dev_addr, real_dev->dev_addr, real_dev->addr_len);
  393. new_dev->addr_len = real_dev->addr_len;
  394. new_dev->open = vlan_dev_open;
  395. new_dev->stop = vlan_dev_stop;
  396. if (real_dev->features & NETIF_F_HW_VLAN_TX) {
  397. new_dev->hard_header = real_dev->hard_header;
  398. new_dev->hard_start_xmit = vlan_dev_hwaccel_hard_start_xmit;
  399. new_dev->rebuild_header = real_dev->rebuild_header;
  400. } else {
  401. new_dev->hard_header = vlan_dev_hard_header;
  402. new_dev->hard_start_xmit = vlan_dev_hard_start_xmit;
  403. new_dev->rebuild_header = vlan_dev_rebuild_header;
  404. }
  405. new_dev->hard_header_parse = real_dev->hard_header_parse;
  406. new_dev->set_mac_address = vlan_dev_set_mac_address;
  407. new_dev->set_multicast_list = vlan_dev_set_multicast_list;
  408. VLAN_DEV_INFO(new_dev)->vlan_id = VLAN_ID; /* 1 through VLAN_VID_MASK */
  409. VLAN_DEV_INFO(new_dev)->real_dev = real_dev;
  410. VLAN_DEV_INFO(new_dev)->dent = NULL;
  411. VLAN_DEV_INFO(new_dev)->flags = vlan_default_dev_flags;
  412. #ifdef VLAN_DEBUG
  413. printk(VLAN_DBG "About to go find the group for idx: %in",
  414.        real_dev->ifindex);
  415. #endif
  416.     
  417. /* So, got the sucker initialized, now lets place
  418.  * it into our local structure.
  419.  */
  420. spin_lock_bh(&vlan_group_lock);
  421. grp = __vlan_find_group(real_dev->ifindex);
  422. spin_unlock_bh(&vlan_group_lock);
  423. /* Note, we are running under the RTNL semaphore
  424.  * so it cannot "appear" on us.
  425.  */
  426. if (!grp) { /* need to add a new group */
  427. grp = kmalloc(sizeof(struct vlan_group), GFP_KERNEL);
  428. if (!grp)
  429. goto out_free_newdev_priv;
  430. /* printk(KERN_ALERT "VLAN REGISTER:  Allocated new group.n"); */
  431. memset(grp, 0, sizeof(struct vlan_group));
  432. grp->real_dev_ifindex = real_dev->ifindex;
  433. spin_lock_bh(&vlan_group_lock);
  434. __grp_hash(grp);
  435. spin_unlock_bh(&vlan_group_lock);
  436. if (real_dev->features & NETIF_F_HW_VLAN_RX)
  437. real_dev->vlan_rx_register(real_dev, grp);
  438. }
  439.     
  440. grp->vlan_devices[VLAN_ID] = new_dev;
  441. vlan_proc_add_dev(new_dev); /* create it's proc entry */
  442. if (real_dev->features & NETIF_F_HW_VLAN_FILTER)
  443. real_dev->vlan_rx_add_vid(real_dev, VLAN_ID);
  444. register_netdevice(new_dev);
  445. rtnl_unlock();
  446.     
  447. /* NOTE:  We have a reference to the real device,
  448.  * so hold on to the reference.
  449.  */
  450. MOD_INC_USE_COUNT; /* Add was a success!! */
  451. #ifdef VLAN_DEBUG
  452. printk(VLAN_DBG "Allocated new device successfully, returning.n");
  453. #endif
  454. return new_dev;
  455. out_free_newdev_priv:
  456. kfree(new_dev->priv);
  457. out_free_newdev:
  458. kfree(new_dev);
  459. out_unlock:
  460. rtnl_unlock();
  461. out_put_dev:
  462. dev_put(real_dev);
  463. out_ret_null:
  464. return NULL;
  465. }
  466. static int vlan_device_event(struct notifier_block *unused, unsigned long event, void *ptr)
  467. {
  468. struct net_device *dev = (struct net_device *)(ptr);
  469. struct vlan_group *grp = NULL;
  470. int i, flgs;
  471. struct net_device *vlandev = NULL;
  472. spin_lock_bh(&vlan_group_lock);
  473. grp = __vlan_find_group(dev->ifindex);
  474. spin_unlock_bh(&vlan_group_lock);
  475. if (!grp)
  476. goto out;
  477. /* It is OK that we do not hold the group lock right now,
  478.  * as we run under the RTNL lock.
  479.  */
  480. switch (event) {
  481. case NETDEV_CHANGEADDR:
  482. case NETDEV_GOING_DOWN:
  483. /* Ignore for now */
  484. break;
  485. case NETDEV_DOWN:
  486. /* Put all VLANs for this dev in the down state too.  */
  487. for (i = 0; i < VLAN_GROUP_ARRAY_LEN; i++) {
  488. vlandev = grp->vlan_devices[i];
  489. if (!vlandev)
  490. continue;
  491. flgs = vlandev->flags;
  492. if (!(flgs & IFF_UP))
  493. continue;
  494. dev_change_flags(vlandev, flgs & ~IFF_UP);
  495. }
  496. break;
  497. case NETDEV_UP:
  498. /* Put all VLANs for this dev in the up state too.  */
  499. for (i = 0; i < VLAN_GROUP_ARRAY_LEN; i++) {
  500. vlandev = grp->vlan_devices[i];
  501. if (!vlandev)
  502. continue;
  503. flgs = vlandev->flags;
  504. if (flgs & IFF_UP)
  505. continue;
  506. dev_change_flags(vlandev, flgs | IFF_UP);
  507. }
  508. break;
  509. case NETDEV_UNREGISTER:
  510. /* Delete all VLANs for this dev. */
  511. for (i = 0; i < VLAN_GROUP_ARRAY_LEN; i++) {
  512. int ret;
  513. vlandev = grp->vlan_devices[i];
  514. if (!vlandev)
  515. continue;
  516. ret = unregister_vlan_dev(dev,
  517.   VLAN_DEV_INFO(vlandev)->vlan_id);
  518. unregister_netdevice(vlandev);
  519. /* Group was destroyed? */
  520. if (ret == 1)
  521. break;
  522. }
  523. break;
  524. };
  525. out:
  526. return NOTIFY_DONE;
  527. }
  528. /*
  529.  * VLAN IOCTL handler.
  530.  * o execute requested action or pass command to the device driver
  531.  *   arg is really a void* to a vlan_ioctl_args structure.
  532.  */
  533. int vlan_ioctl_handler(unsigned long arg)
  534. {
  535. int err = 0;
  536. struct vlan_ioctl_args args;
  537. /* everything here needs root permissions, except aguably the
  538.  * hack ioctls for sending packets.  However, I know _I_ don't
  539.  * want users running that on my network! --BLG
  540.  */
  541. if (!capable(CAP_NET_ADMIN))
  542. return -EPERM;
  543. if (copy_from_user(&args, (void*)arg,
  544.                            sizeof(struct vlan_ioctl_args)))
  545. return -EFAULT;
  546. /* Null terminate this sucker, just in case. */
  547. args.device1[23] = 0;
  548. args.u.device2[23] = 0;
  549. #ifdef VLAN_DEBUG
  550. printk(VLAN_DBG "%s: args.cmd: %xn", __FUNCTION__, args.cmd);
  551. #endif
  552. switch (args.cmd) {
  553. case SET_VLAN_INGRESS_PRIORITY_CMD:
  554. err = vlan_dev_set_ingress_priority(args.device1,
  555.     args.u.skb_priority,
  556.     args.vlan_qos);
  557. break;
  558. case SET_VLAN_EGRESS_PRIORITY_CMD:
  559. err = vlan_dev_set_egress_priority(args.device1,
  560.    args.u.skb_priority,
  561.    args.vlan_qos);
  562. break;
  563. case SET_VLAN_FLAG_CMD:
  564. err = vlan_dev_set_vlan_flag(args.device1,
  565.      args.u.flag,
  566.      args.vlan_qos);
  567. break;
  568. case SET_VLAN_NAME_TYPE_CMD:
  569. if ((args.u.name_type >= 0) &&
  570.     (args.u.name_type < VLAN_NAME_TYPE_HIGHEST)) {
  571. vlan_name_type = args.u.name_type;
  572. err = 0;
  573. } else {
  574. err = -EINVAL;
  575. }
  576. break;
  577. /* TODO:  Figure out how to pass info back...
  578.    case GET_VLAN_INGRESS_PRIORITY_IOCTL:
  579.    err = vlan_dev_get_ingress_priority(args);
  580.    break;
  581.    case GET_VLAN_EGRESS_PRIORITY_IOCTL:
  582.    err = vlan_dev_get_egress_priority(args);
  583.    break;
  584. */
  585. case ADD_VLAN_CMD:
  586. /* we have been given the name of the Ethernet Device we want to
  587.  * talk to:  args.dev1  We also have the
  588.  * VLAN ID:  args.u.VID
  589.  */
  590. if (register_vlan_device(args.device1, args.u.VID)) {
  591. err = 0;
  592. } else {
  593. err = -EINVAL;
  594. }
  595. break;
  596. case DEL_VLAN_CMD:
  597. /* Here, the args.dev1 is the actual VLAN we want
  598.  * to get rid of.
  599.  */
  600. err = unregister_vlan_device(args.device1);
  601. break;
  602. default:
  603. /* pass on to underlying device instead?? */
  604. printk(VLAN_DBG "%s: Unknown VLAN CMD: %x n",
  605. __FUNCTION__, args.cmd);
  606. return -EINVAL;
  607. };
  608. return err;
  609. }
  610. MODULE_LICENSE("GPL");