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

嵌入式Linux

开发平台:

Unix_Linux

  1. #include <linux/types.h>
  2. #include <linux/init.h>
  3. #include <linux/netfilter.h>
  4. #include <linux/ip.h>
  5. #include <linux/udp.h>
  6. #include <linux/if.h>
  7. #include <linux/netfilter_ipv4/ip_nat.h>
  8. #include <linux/netfilter_ipv4/ip_nat_rule.h>
  9. #include <linux/netfilter_ipv4/ip_nat_protocol.h>
  10. static int
  11. udp_in_range(const struct ip_conntrack_tuple *tuple,
  12.      enum ip_nat_manip_type maniptype,
  13.      const union ip_conntrack_manip_proto *min,
  14.      const union ip_conntrack_manip_proto *max)
  15. {
  16. u_int16_t port;
  17. if (maniptype == IP_NAT_MANIP_SRC)
  18. port = tuple->src.u.udp.port;
  19. else
  20. port = tuple->dst.u.udp.port;
  21. return ntohs(port) >= ntohs(min->udp.port)
  22. && ntohs(port) <= ntohs(max->udp.port);
  23. }
  24. static int
  25. udp_unique_tuple(struct ip_conntrack_tuple *tuple,
  26.  const struct ip_nat_range *range,
  27.  enum ip_nat_manip_type maniptype,
  28.  const struct ip_conntrack *conntrack)
  29. {
  30. static u_int16_t port = 0, *portptr;
  31. unsigned int range_size, min, i;
  32. if (maniptype == IP_NAT_MANIP_SRC)
  33. portptr = &tuple->src.u.udp.port;
  34. else
  35. portptr = &tuple->dst.u.udp.port;
  36. /* If no range specified... */
  37. if (!(range->flags & IP_NAT_RANGE_PROTO_SPECIFIED)) {
  38. /* If it's dst rewrite, can't change port */
  39. if (maniptype == IP_NAT_MANIP_DST)
  40. return 0;
  41. if (ntohs(*portptr) < 1024) {
  42. /* Loose convention: >> 512 is credential passing */
  43. if (ntohs(*portptr)<512) {
  44. min = 1;
  45. range_size = 511 - min + 1;
  46. } else {
  47. min = 600;
  48. range_size = 1023 - min + 1;
  49. }
  50. } else {
  51. min = 1024;
  52. range_size = 65535 - 1024 + 1;
  53. }
  54. } else {
  55. min = ntohs(range->min.udp.port);
  56. range_size = ntohs(range->max.udp.port) - min + 1;
  57. }
  58. for (i = 0; i < range_size; i++, port++) {
  59. *portptr = htons(min + port % range_size);
  60. if (!ip_nat_used_tuple(tuple, conntrack))
  61. return 1;
  62. }
  63. return 0;
  64. }
  65. static void
  66. udp_manip_pkt(struct iphdr *iph, size_t len,
  67.       const struct ip_conntrack_manip *manip,
  68.       enum ip_nat_manip_type maniptype)
  69. {
  70. struct udphdr *hdr = (struct udphdr *)((u_int32_t *)iph + iph->ihl);
  71. u_int32_t oldip;
  72. u_int16_t *portptr;
  73. if (maniptype == IP_NAT_MANIP_SRC) {
  74. /* Get rid of src ip and src pt */
  75. oldip = iph->saddr;
  76. portptr = &hdr->source;
  77. } else {
  78. /* Get rid of dst ip and dst pt */
  79. oldip = iph->daddr;
  80. portptr = &hdr->dest;
  81. }
  82. if (hdr->check) /* 0 is a special case meaning no checksum */
  83. hdr->check = ip_nat_cheat_check(~oldip, manip->ip,
  84. ip_nat_cheat_check(*portptr ^ 0xFFFF,
  85.    manip->u.udp.port,
  86.    hdr->check));
  87. *portptr = manip->u.udp.port;
  88. }
  89. static unsigned int
  90. udp_print(char *buffer,
  91.   const struct ip_conntrack_tuple *match,
  92.   const struct ip_conntrack_tuple *mask)
  93. {
  94. unsigned int len = 0;
  95. if (mask->src.u.udp.port)
  96. len += sprintf(buffer + len, "srcpt=%u ",
  97.        ntohs(match->src.u.udp.port));
  98. if (mask->dst.u.udp.port)
  99. len += sprintf(buffer + len, "dstpt=%u ",
  100.        ntohs(match->dst.u.udp.port));
  101. return len;
  102. }
  103. static unsigned int
  104. udp_print_range(char *buffer, const struct ip_nat_range *range)
  105. {
  106. if (range->min.udp.port != 0 || range->max.udp.port != 0xFFFF) {
  107. if (range->min.udp.port == range->max.udp.port)
  108. return sprintf(buffer, "port %u ",
  109.        ntohs(range->min.udp.port));
  110. else
  111. return sprintf(buffer, "ports %u-%u ",
  112.        ntohs(range->min.udp.port),
  113.        ntohs(range->max.udp.port));
  114. }
  115. else return 0;
  116. }
  117. struct ip_nat_protocol ip_nat_protocol_udp
  118. = { { NULL, NULL }, "UDP", IPPROTO_UDP,
  119.     udp_manip_pkt,
  120.     udp_in_range,
  121.     udp_unique_tuple,
  122.     udp_print,
  123.     udp_print_range
  124. };