ipt_mac.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* Kernel module to match MAC address parameters. */
  2. #include <linux/module.h>
  3. #include <linux/skbuff.h>
  4. #include <linux/if_ether.h>
  5. #include <linux/netfilter_ipv4/ipt_mac.h>
  6. #include <linux/netfilter_ipv4/ip_tables.h>
  7. static int
  8. match(const struct sk_buff *skb,
  9.       const struct net_device *in,
  10.       const struct net_device *out,
  11.       const void *matchinfo,
  12.       int offset,
  13.       const void *hdr,
  14.       u_int16_t datalen,
  15.       int *hotdrop)
  16. {
  17.     const struct ipt_mac_info *info = matchinfo;
  18.     /* Is mac pointer valid? */
  19.     return (skb->mac.raw >= skb->head
  20.     && (skb->mac.raw + ETH_HLEN) <= skb->data
  21.     /* If so, compare... */
  22.     && ((memcmp(skb->mac.ethernet->h_source, info->srcaddr, ETH_ALEN)
  23. == 0) ^ info->invert));
  24. }
  25. static int
  26. ipt_mac_checkentry(const char *tablename,
  27.    const struct ipt_ip *ip,
  28.    void *matchinfo,
  29.    unsigned int matchsize,
  30.    unsigned int hook_mask)
  31. {
  32. /* FORWARD isn't always valid, but it's nice to be able to do --RR */
  33. if (hook_mask
  34.     & ~((1 << NF_IP_PRE_ROUTING) | (1 << NF_IP_LOCAL_IN)
  35. | (1 << NF_IP_FORWARD))) {
  36. printk("ipt_mac: only valid for PRE_ROUTING, LOCAL_IN or FORWARD.n");
  37. return 0;
  38. }
  39. if (matchsize != IPT_ALIGN(sizeof(struct ipt_mac_info)))
  40. return 0;
  41. return 1;
  42. }
  43. static struct ipt_match mac_match
  44. = { { NULL, NULL }, "mac", &match, &ipt_mac_checkentry, NULL, THIS_MODULE };
  45. static int __init init(void)
  46. {
  47. return ipt_register_match(&mac_match);
  48. }
  49. static void __exit fini(void)
  50. {
  51. ipt_unregister_match(&mac_match);
  52. }
  53. module_init(init);
  54. module_exit(fini);
  55. MODULE_LICENSE("GPL");