if_vlan.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:12k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * VLAN An implementation of 802.1Q VLAN tagging.
  3.  *
  4.  * Authors: Ben Greear <greearb@candelatech.com>
  5.  *
  6.  * This program is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU General Public License
  8.  * as published by the Free Software Foundation; either version
  9.  * 2 of the License, or (at your option) any later version.
  10.  *
  11.  */
  12. #ifndef _LINUX_IF_VLAN_H_
  13. #define _LINUX_IF_VLAN_H_
  14. #ifdef __KERNEL__
  15. /* externally defined structs */
  16. struct vlan_group;
  17. struct net_device;
  18. struct packet_type;
  19. struct vlan_collection;
  20. struct vlan_dev_info;
  21. struct hlist_node;
  22. #include <linux/proc_fs.h> /* for proc_dir_entry */
  23. #include <linux/netdevice.h>
  24. #define VLAN_HLEN 4 /* The additional bytes (on top of the Ethernet header)
  25.  * that VLAN requires.
  26.  */
  27. #define VLAN_ETH_ALEN 6 /* Octets in one ethernet addr  */
  28. #define VLAN_ETH_HLEN 18 /* Total octets in header.  */
  29. #define VLAN_ETH_ZLEN 64 /* Min. octets in frame sans FCS */
  30. /*
  31.  * According to 802.3ac, the packet can be 4 bytes longer. --Klika Jan
  32.  */
  33. #define VLAN_ETH_DATA_LEN 1500 /* Max. octets in payload  */
  34. #define VLAN_ETH_FRAME_LEN 1518 /* Max. octets in frame sans FCS */
  35. struct vlan_ethhdr {
  36.    unsigned char h_dest[ETH_ALEN];    /* destination eth addr */
  37.    unsigned char h_source[ETH_ALEN];    /* source ether addr */
  38.    __be16               h_vlan_proto;              /* Should always be 0x8100 */
  39.    __be16               h_vlan_TCI;                /* Encapsulates priority and VLAN ID */
  40.    unsigned short h_vlan_encapsulated_proto; /* packet type ID field (or len) */
  41. };
  42. #include <linux/skbuff.h>
  43. static inline struct vlan_ethhdr *vlan_eth_hdr(const struct sk_buff *skb)
  44. {
  45. return (struct vlan_ethhdr *)skb->mac.raw;
  46. }
  47. struct vlan_hdr {
  48.    __be16               h_vlan_TCI;                /* Encapsulates priority and VLAN ID */
  49.    __be16               h_vlan_encapsulated_proto; /* packet type ID field (or len) */
  50. };
  51. #define VLAN_VID_MASK 0xfff
  52. /* found in socket.c */
  53. extern void vlan_ioctl_set(int (*hook)(void __user *));
  54. #define VLAN_NAME "vlan"
  55. /* if this changes, algorithm will have to be reworked because this
  56.  * depends on completely exhausting the VLAN identifier space.  Thus
  57.  * it gives constant time look-up, but in many cases it wastes memory.
  58.  */
  59. #define VLAN_GROUP_ARRAY_LEN 4096
  60. struct vlan_group {
  61. int real_dev_ifindex; /* The ifindex of the ethernet(like) device the vlan is attached to. */
  62. struct hlist_node hlist; /* linked list */
  63. struct net_device *vlan_devices[VLAN_GROUP_ARRAY_LEN];
  64. struct rcu_head rcu;
  65. };
  66. struct vlan_priority_tci_mapping {
  67. unsigned long priority;
  68. unsigned short vlan_qos; /* This should be shifted when first set, so we only do it
  69.   * at provisioning time.
  70.   * ((skb->priority << 13) & 0xE000)
  71.   */
  72. struct vlan_priority_tci_mapping *next;
  73. };
  74. /* Holds information that makes sense if this device is a VLAN device. */
  75. struct vlan_dev_info {
  76. /** This will be the mapping that correlates skb->priority to
  77.  * 3 bits of VLAN QOS tags...
  78.  */
  79. unsigned long ingress_priority_map[8];
  80. struct vlan_priority_tci_mapping *egress_priority_map[16]; /* hash table */
  81. unsigned short vlan_id;        /*  The VLAN Identifier for this interface. */
  82. unsigned short flags;          /* (1 << 0) re_order_header   This option will cause the
  83.                                         *   VLAN code to move around the ethernet header on
  84.                                         *   ingress to make the skb look **exactly** like it
  85.                                         *   came in from an ethernet port.  This destroys some of
  86.                                         *   the VLAN information in the skb, but it fixes programs
  87.                                         *   like DHCP that use packet-filtering and don't understand
  88.                                         *   802.1Q
  89.                                         */
  90. struct dev_mc_list *old_mc_list;  /* old multi-cast list for the VLAN interface..
  91.                                            * we save this so we can tell what changes were
  92.                                            * made, in order to feed the right changes down
  93.                                            * to the real hardware...
  94.                                            */
  95. int old_allmulti;               /* similar to above. */
  96. int old_promiscuity;            /* similar to above. */
  97. struct net_device *real_dev;    /* the underlying device/interface */
  98. struct proc_dir_entry *dent;    /* Holds the proc data */
  99. unsigned long cnt_inc_headroom_on_tx; /* How many times did we have to grow the skb on TX. */
  100. unsigned long cnt_encap_on_xmit;      /* How many times did we have to encapsulate the skb on TX. */
  101. struct net_device_stats dev_stats; /* Device stats (rx-bytes, tx-pkts, etc...) */
  102. };
  103. #define VLAN_DEV_INFO(x) ((struct vlan_dev_info *)(x->priv))
  104. /* inline functions */
  105. static inline struct net_device_stats *vlan_dev_get_stats(struct net_device *dev)
  106. {
  107. return &(VLAN_DEV_INFO(dev)->dev_stats);
  108. }
  109. static inline __u32 vlan_get_ingress_priority(struct net_device *dev,
  110.       unsigned short vlan_tag)
  111. {
  112. struct vlan_dev_info *vip = VLAN_DEV_INFO(dev);
  113. return vip->ingress_priority_map[(vlan_tag >> 13) & 0x7];
  114. }
  115. /* VLAN tx hw acceleration helpers. */
  116. struct vlan_skb_tx_cookie {
  117. u32 magic;
  118. u32 vlan_tag;
  119. };
  120. #define VLAN_TX_COOKIE_MAGIC 0x564c414e /* "VLAN" in ascii. */
  121. #define VLAN_TX_SKB_CB(__skb) ((struct vlan_skb_tx_cookie *)&((__skb)->cb[0]))
  122. #define vlan_tx_tag_present(__skb) 
  123. (VLAN_TX_SKB_CB(__skb)->magic == VLAN_TX_COOKIE_MAGIC)
  124. #define vlan_tx_tag_get(__skb) (VLAN_TX_SKB_CB(__skb)->vlan_tag)
  125. /* VLAN rx hw acceleration helper.  This acts like netif_{rx,receive_skb}(). */
  126. static inline int __vlan_hwaccel_rx(struct sk_buff *skb,
  127.     struct vlan_group *grp,
  128.     unsigned short vlan_tag, int polling)
  129. {
  130. struct net_device_stats *stats;
  131. skb->dev = grp->vlan_devices[vlan_tag & VLAN_VID_MASK];
  132. if (skb->dev == NULL) {
  133. dev_kfree_skb_any(skb);
  134. /* Not NET_RX_DROP, this is not being dropped
  135.  * due to congestion.
  136.  */
  137. return 0;
  138. }
  139. skb->dev->last_rx = jiffies;
  140. stats = vlan_dev_get_stats(skb->dev);
  141. stats->rx_packets++;
  142. stats->rx_bytes += skb->len;
  143. skb->priority = vlan_get_ingress_priority(skb->dev, vlan_tag);
  144. switch (skb->pkt_type) {
  145. case PACKET_BROADCAST:
  146. break;
  147. case PACKET_MULTICAST:
  148. stats->multicast++;
  149. break;
  150. case PACKET_OTHERHOST:
  151. /* Our lower layer thinks this is not local, let's make sure.
  152.  * This allows the VLAN to have a different MAC than the underlying
  153.  * device, and still route correctly.
  154.  */
  155. if (!memcmp(eth_hdr(skb)->h_dest, skb->dev->dev_addr, ETH_ALEN))
  156. skb->pkt_type = PACKET_HOST;
  157. break;
  158. };
  159. return (polling ? netif_receive_skb(skb) : netif_rx(skb));
  160. }
  161. static inline int vlan_hwaccel_rx(struct sk_buff *skb,
  162.   struct vlan_group *grp,
  163.   unsigned short vlan_tag)
  164. {
  165. return __vlan_hwaccel_rx(skb, grp, vlan_tag, 0);
  166. }
  167. static inline int vlan_hwaccel_receive_skb(struct sk_buff *skb,
  168.    struct vlan_group *grp,
  169.    unsigned short vlan_tag)
  170. {
  171. return __vlan_hwaccel_rx(skb, grp, vlan_tag, 1);
  172. }
  173. /**
  174.  * __vlan_put_tag - regular VLAN tag inserting
  175.  * @skb: skbuff to tag
  176.  * @tag: VLAN tag to insert
  177.  *
  178.  * Inserts the VLAN tag into @skb as part of the payload
  179.  * Returns a VLAN tagged skb. If a new skb is created, @skb is freed.
  180.  * 
  181.  * Following the skb_unshare() example, in case of error, the calling function
  182.  * doesn't have to worry about freeing the original skb.
  183.  */
  184. static inline struct sk_buff *__vlan_put_tag(struct sk_buff *skb, unsigned short tag)
  185. {
  186. struct vlan_ethhdr *veth;
  187. if (skb_headroom(skb) < VLAN_HLEN) {
  188. struct sk_buff *sk_tmp = skb;
  189. skb = skb_realloc_headroom(sk_tmp, VLAN_HLEN);
  190. kfree_skb(sk_tmp);
  191. if (!skb) {
  192. printk(KERN_ERR "vlan: failed to realloc headroomn");
  193. return NULL;
  194. }
  195. } else {
  196. skb = skb_unshare(skb, GFP_ATOMIC);
  197. if (!skb) {
  198. printk(KERN_ERR "vlan: failed to unshare skbuffn");
  199. return NULL;
  200. }
  201. }
  202. veth = (struct vlan_ethhdr *)skb_push(skb, VLAN_HLEN);
  203. /* Move the mac addresses to the beginning of the new header. */
  204. memmove(skb->data, skb->data + VLAN_HLEN, 2 * VLAN_ETH_ALEN);
  205. /* first, the ethernet type */
  206. veth->h_vlan_proto = __constant_htons(ETH_P_8021Q);
  207. /* now, the tag */
  208. veth->h_vlan_TCI = htons(tag);
  209. skb->protocol = __constant_htons(ETH_P_8021Q);
  210. skb->mac.raw -= VLAN_HLEN;
  211. skb->nh.raw -= VLAN_HLEN;
  212. return skb;
  213. }
  214. /**
  215.  * __vlan_hwaccel_put_tag - hardware accelerated VLAN inserting
  216.  * @skb: skbuff to tag
  217.  * @tag: VLAN tag to insert
  218.  *
  219.  * Puts the VLAN tag in @skb->cb[] and lets the device do the rest
  220.  */
  221. static inline struct sk_buff *__vlan_hwaccel_put_tag(struct sk_buff *skb, unsigned short tag)
  222. {
  223. struct vlan_skb_tx_cookie *cookie;
  224. cookie = VLAN_TX_SKB_CB(skb);
  225. cookie->magic = VLAN_TX_COOKIE_MAGIC;
  226. cookie->vlan_tag = tag;
  227. return skb;
  228. }
  229. #define HAVE_VLAN_PUT_TAG
  230. /**
  231.  * vlan_put_tag - inserts VLAN tag according to device features
  232.  * @skb: skbuff to tag
  233.  * @tag: VLAN tag to insert
  234.  *
  235.  * Assumes skb->dev is the target that will xmit this frame.
  236.  * Returns a VLAN tagged skb.
  237.  */
  238. static inline struct sk_buff *vlan_put_tag(struct sk_buff *skb, unsigned short tag)
  239. {
  240. if (skb->dev->features & NETIF_F_HW_VLAN_TX) {
  241. return __vlan_hwaccel_put_tag(skb, tag);
  242. } else {
  243. return __vlan_put_tag(skb, tag);
  244. }
  245. }
  246. /**
  247.  * __vlan_get_tag - get the VLAN ID that is part of the payload
  248.  * @skb: skbuff to query
  249.  * @tag: buffer to store vlaue
  250.  * 
  251.  * Returns error if the skb is not of VLAN type
  252.  */
  253. static inline int __vlan_get_tag(struct sk_buff *skb, unsigned short *tag)
  254. {
  255. struct vlan_ethhdr *veth = (struct vlan_ethhdr *)skb->data;
  256. if (veth->h_vlan_proto != __constant_htons(ETH_P_8021Q)) {
  257. return -EINVAL;
  258. }
  259. *tag = ntohs(veth->h_vlan_TCI);
  260. return 0;
  261. }
  262. /**
  263.  * __vlan_hwaccel_get_tag - get the VLAN ID that is in @skb->cb[]
  264.  * @skb: skbuff to query
  265.  * @tag: buffer to store vlaue
  266.  * 
  267.  * Returns error if @skb->cb[] is not set correctly
  268.  */
  269. static inline int __vlan_hwaccel_get_tag(struct sk_buff *skb, unsigned short *tag)
  270. {
  271. struct vlan_skb_tx_cookie *cookie;
  272. cookie = VLAN_TX_SKB_CB(skb);
  273. if (cookie->magic == VLAN_TX_COOKIE_MAGIC) {
  274. *tag = cookie->vlan_tag;
  275. return 0;
  276. } else {
  277. *tag = 0;
  278. return -EINVAL;
  279. }
  280. }
  281. #define HAVE_VLAN_GET_TAG
  282. /**
  283.  * vlan_get_tag - get the VLAN ID from the skb
  284.  * @skb: skbuff to query
  285.  * @tag: buffer to store vlaue
  286.  * 
  287.  * Returns error if the skb is not VLAN tagged
  288.  */
  289. static inline int vlan_get_tag(struct sk_buff *skb, unsigned short *tag)
  290. {
  291. if (skb->dev->features & NETIF_F_HW_VLAN_TX) {
  292. return __vlan_hwaccel_get_tag(skb, tag);
  293. } else {
  294. return __vlan_get_tag(skb, tag);
  295. }
  296. }
  297. #endif /* __KERNEL__ */
  298. /* VLAN IOCTLs are found in sockios.h */
  299. /* Passed in vlan_ioctl_args structure to determine behaviour. */
  300. enum vlan_ioctl_cmds {
  301. ADD_VLAN_CMD,
  302. DEL_VLAN_CMD,
  303. SET_VLAN_INGRESS_PRIORITY_CMD,
  304. SET_VLAN_EGRESS_PRIORITY_CMD,
  305. GET_VLAN_INGRESS_PRIORITY_CMD,
  306. GET_VLAN_EGRESS_PRIORITY_CMD,
  307. SET_VLAN_NAME_TYPE_CMD,
  308. SET_VLAN_FLAG_CMD,
  309. GET_VLAN_REALDEV_NAME_CMD, /* If this works, you know it's a VLAN device, btw */
  310. GET_VLAN_VID_CMD /* Get the VID of this VLAN (specified by name) */
  311. };
  312. enum vlan_name_types {
  313. VLAN_NAME_TYPE_PLUS_VID, /* Name will look like:  vlan0005 */
  314. VLAN_NAME_TYPE_RAW_PLUS_VID, /* name will look like:  eth1.0005 */
  315. VLAN_NAME_TYPE_PLUS_VID_NO_PAD, /* Name will look like:  vlan5 */
  316. VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD, /* Name will look like:  eth0.5 */
  317. VLAN_NAME_TYPE_HIGHEST
  318. };
  319. struct vlan_ioctl_args {
  320. int cmd; /* Should be one of the vlan_ioctl_cmds enum above. */
  321. char device1[24];
  322.         union {
  323. char device2[24];
  324. int VID;
  325. unsigned int skb_priority;
  326. unsigned int name_type;
  327. unsigned int bind_type;
  328. unsigned int flag; /* Matches vlan_dev_info flags */
  329.         } u;
  330. short vlan_qos;   
  331. };
  332. #endif /* !(_LINUX_IF_VLAN_H_) */