nft_chain_route_ipv6.c 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /*
  2. * Copyright (c) 2008 Patrick McHardy <kaber@trash.net>
  3. * Copyright (c) 2012 Pablo Neira Ayuso <pablo@netfilter.org>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Development of this code funded by Astaro AG (http://www.astaro.com/)
  10. */
  11. #include <linux/module.h>
  12. #include <linux/init.h>
  13. #include <linux/list.h>
  14. #include <linux/skbuff.h>
  15. #include <linux/netlink.h>
  16. #include <linux/netfilter.h>
  17. #include <linux/netfilter_ipv6.h>
  18. #include <linux/netfilter/nfnetlink.h>
  19. #include <linux/netfilter/nf_tables.h>
  20. #include <net/netfilter/nf_tables.h>
  21. #include <net/netfilter/nf_tables_ipv6.h>
  22. #include <net/route.h>
  23. static unsigned int nf_route_table_hook(void *priv,
  24. struct sk_buff *skb,
  25. const struct nf_hook_state *state)
  26. {
  27. unsigned int ret;
  28. struct nft_pktinfo pkt;
  29. struct in6_addr saddr, daddr;
  30. u_int8_t hop_limit;
  31. u32 mark, flowlabel;
  32. /* malformed packet, drop it */
  33. if (nft_set_pktinfo_ipv6(&pkt, skb, state) < 0)
  34. return NF_DROP;
  35. /* save source/dest address, mark, hoplimit, flowlabel, priority */
  36. memcpy(&saddr, &ipv6_hdr(skb)->saddr, sizeof(saddr));
  37. memcpy(&daddr, &ipv6_hdr(skb)->daddr, sizeof(daddr));
  38. mark = skb->mark;
  39. hop_limit = ipv6_hdr(skb)->hop_limit;
  40. /* flowlabel and prio (includes version, which shouldn't change either */
  41. flowlabel = *((u32 *)ipv6_hdr(skb));
  42. ret = nft_do_chain(&pkt, priv);
  43. if (ret != NF_DROP && ret != NF_QUEUE &&
  44. (memcmp(&ipv6_hdr(skb)->saddr, &saddr, sizeof(saddr)) ||
  45. memcmp(&ipv6_hdr(skb)->daddr, &daddr, sizeof(daddr)) ||
  46. skb->mark != mark ||
  47. ipv6_hdr(skb)->hop_limit != hop_limit ||
  48. flowlabel != *((u_int32_t *)ipv6_hdr(skb))))
  49. return ip6_route_me_harder(state->net, skb) == 0 ? ret : NF_DROP;
  50. return ret;
  51. }
  52. static const struct nf_chain_type nft_chain_route_ipv6 = {
  53. .name = "route",
  54. .type = NFT_CHAIN_T_ROUTE,
  55. .family = NFPROTO_IPV6,
  56. .owner = THIS_MODULE,
  57. .hook_mask = (1 << NF_INET_LOCAL_OUT),
  58. .hooks = {
  59. [NF_INET_LOCAL_OUT] = nf_route_table_hook,
  60. },
  61. };
  62. static int __init nft_chain_route_init(void)
  63. {
  64. return nft_register_chain_type(&nft_chain_route_ipv6);
  65. }
  66. static void __exit nft_chain_route_exit(void)
  67. {
  68. nft_unregister_chain_type(&nft_chain_route_ipv6);
  69. }
  70. module_init(nft_chain_route_init);
  71. module_exit(nft_chain_route_exit);
  72. MODULE_LICENSE("GPL");
  73. MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
  74. MODULE_ALIAS_NFT_CHAIN(AF_INET6, "route");