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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * This is a module which is used for setting the MSS option in TCP packets.
  3.  *
  4.  * Copyright (c) 2000 Marc Boucher
  5.  */
  6. #include <linux/module.h>
  7. #include <linux/skbuff.h>
  8. #include <linux/ip.h>
  9. #include <net/tcp.h>
  10. #include <linux/netfilter_ipv4/ip_tables.h>
  11. #include <linux/netfilter_ipv4/ipt_TCPMSS.h>
  12. #if 0
  13. #define DEBUGP printk
  14. #else
  15. #define DEBUGP(format, args...)
  16. #endif
  17. static u_int16_t
  18. cheat_check(u_int32_t oldvalinv, u_int32_t newval, u_int16_t oldcheck)
  19. {
  20. u_int32_t diffs[] = { oldvalinv, newval };
  21. return csum_fold(csum_partial((char *)diffs, sizeof(diffs),
  22.                                       oldcheck^0xFFFF));
  23. }
  24. static inline unsigned int
  25. optlen(const u_int8_t *opt, unsigned int offset)
  26. {
  27. /* Beware zero-length options: make finite progress */
  28. if (opt[offset] <= TCPOPT_NOP || opt[offset+1] == 0) return 1;
  29. else return opt[offset+1];
  30. }
  31. static unsigned int
  32. ipt_tcpmss_target(struct sk_buff **pskb,
  33.   unsigned int hooknum,
  34.   const struct net_device *in,
  35.   const struct net_device *out,
  36.   const void *targinfo,
  37.   void *userinfo)
  38. {
  39. const struct ipt_tcpmss_info *tcpmssinfo = targinfo;
  40. struct tcphdr *tcph;
  41. struct iphdr *iph;
  42. u_int16_t tcplen, newtotlen, oldval, newmss;
  43. unsigned int i;
  44. u_int8_t *opt;
  45. /* raw socket (tcpdump) may have clone of incoming skb: don't
  46.    disturb it --RR */
  47. if (skb_cloned(*pskb) && !(*pskb)->sk) {
  48. struct sk_buff *nskb = skb_copy(*pskb, GFP_ATOMIC);
  49. if (!nskb)
  50. return NF_DROP;
  51. kfree_skb(*pskb);
  52. *pskb = nskb;
  53. }
  54. iph = (*pskb)->nh.iph;
  55. tcplen = (*pskb)->len - iph->ihl*4;
  56. tcph = (void *)iph + iph->ihl*4;
  57. /* Since it passed flags test in tcp match, we know it is is
  58.    not a fragment, and has data >= tcp header length.  SYN
  59.    packets should not contain data: if they did, then we risk
  60.    running over MTU, sending Frag Needed and breaking things
  61.    badly. --RR */
  62. if (tcplen != tcph->doff*4) {
  63. if (net_ratelimit())
  64. printk(KERN_ERR
  65.        "ipt_tcpmss_target: bad length (%d bytes)n",
  66.        (*pskb)->len);
  67. return NF_DROP;
  68. }
  69. if(tcpmssinfo->mss == IPT_TCPMSS_CLAMP_PMTU) {
  70. if(!(*pskb)->dst) {
  71. if (net_ratelimit())
  72. printk(KERN_ERR
  73.         "ipt_tcpmss_target: no dst?! can't determine path-MTUn");
  74. return NF_DROP; /* or IPT_CONTINUE ?? */
  75. }
  76. if((*pskb)->dst->pmtu <= (sizeof(struct iphdr) + sizeof(struct tcphdr))) {
  77. if (net_ratelimit())
  78. printk(KERN_ERR
  79.         "ipt_tcpmss_target: unknown or invalid path-MTU (%d)n", (*pskb)->dst->pmtu);
  80. return NF_DROP; /* or IPT_CONTINUE ?? */
  81. }
  82. newmss = (*pskb)->dst->pmtu - sizeof(struct iphdr) - sizeof(struct tcphdr);
  83. } else
  84. newmss = tcpmssinfo->mss;
  85.   opt = (u_int8_t *)tcph;
  86. for (i = sizeof(struct tcphdr); i < tcph->doff*4; i += optlen(opt, i)){
  87. if ((opt[i] == TCPOPT_MSS) &&
  88.     ((tcph->doff*4 - i) >= TCPOLEN_MSS) &&
  89.     (opt[i+1] == TCPOLEN_MSS)) {
  90. u_int16_t oldmss;
  91. oldmss = (opt[i+2] << 8) | opt[i+3];
  92. if((tcpmssinfo->mss == IPT_TCPMSS_CLAMP_PMTU) &&
  93. (oldmss <= newmss))
  94. return IPT_CONTINUE;
  95. opt[i+2] = (newmss & 0xff00) >> 8;
  96. opt[i+3] = (newmss & 0x00ff);
  97. tcph->check = cheat_check(htons(oldmss)^0xFFFF,
  98.   htons(newmss),
  99.   tcph->check);
  100. DEBUGP(KERN_INFO "ipt_tcpmss_target: %u.%u.%u.%u:%hu"
  101.        "->%u.%u.%u.%u:%hu changed TCP MSS option"
  102.        " (from %u to %u)n", 
  103.        NIPQUAD((*pskb)->nh.iph->saddr),
  104.        ntohs(tcph->source),
  105.        NIPQUAD((*pskb)->nh.iph->daddr),
  106.        ntohs(tcph->dest),
  107.        oldmss, newmss);
  108. goto retmodified;
  109. }
  110. }
  111. /*
  112.  * MSS Option not found ?! add it..
  113.  */
  114. if (skb_tailroom((*pskb)) < TCPOLEN_MSS) {
  115. struct sk_buff *newskb;
  116. newskb = skb_copy_expand(*pskb, skb_headroom(*pskb),
  117.  TCPOLEN_MSS, GFP_ATOMIC);
  118. if (!newskb) {
  119. if (net_ratelimit())
  120. printk(KERN_ERR "ipt_tcpmss_target:"
  121.        " unable to allocate larger skbn");
  122. return NF_DROP;
  123. }
  124. kfree_skb(*pskb);
  125. *pskb = newskb;
  126. iph = (*pskb)->nh.iph;
  127. tcph = (void *)iph + iph->ihl*4;
  128. }
  129. skb_put((*pskb), TCPOLEN_MSS);
  130.   opt = (u_int8_t *)tcph + sizeof(struct tcphdr);
  131. memmove(opt + TCPOLEN_MSS, opt, tcplen - sizeof(struct tcphdr));
  132. tcph->check = cheat_check(htons(tcplen) ^ 0xFFFF,
  133.   htons(tcplen + TCPOLEN_MSS), tcph->check);
  134. tcplen += TCPOLEN_MSS;
  135. opt[0] = TCPOPT_MSS;
  136. opt[1] = TCPOLEN_MSS;
  137. opt[2] = (newmss & 0xff00) >> 8;
  138. opt[3] = (newmss & 0x00ff);
  139. tcph->check = cheat_check(~0, *((u_int32_t *)opt), tcph->check);
  140. oldval = ((u_int16_t *)tcph)[6];
  141. tcph->doff += TCPOLEN_MSS/4;
  142. tcph->check = cheat_check(oldval ^ 0xFFFF,
  143.   ((u_int16_t *)tcph)[6], tcph->check);
  144. newtotlen = htons(ntohs(iph->tot_len) + TCPOLEN_MSS);
  145. iph->check = cheat_check(iph->tot_len ^ 0xFFFF,
  146.  newtotlen, iph->check);
  147. iph->tot_len = newtotlen;
  148. DEBUGP(KERN_INFO "ipt_tcpmss_target: %u.%u.%u.%u:%hu"
  149.        "->%u.%u.%u.%u:%hu added TCP MSS option (%u)n",
  150.        NIPQUAD((*pskb)->nh.iph->saddr),
  151.        ntohs(tcph->source),
  152.        NIPQUAD((*pskb)->nh.iph->daddr),
  153.        ntohs(tcph->dest),
  154.        newmss);
  155.  retmodified:
  156. /* If we had a hardware checksum before, it's now invalid */
  157. (*pskb)->ip_summed = CHECKSUM_NONE;
  158. (*pskb)->nfcache |= NFC_UNKNOWN | NFC_ALTERED;
  159. return IPT_CONTINUE;
  160. }
  161. #define TH_SYN 0x02
  162. static inline int find_syn_match(const struct ipt_entry_match *m)
  163. {
  164. const struct ipt_tcp *tcpinfo = (const struct ipt_tcp *)m->data;
  165. if (strcmp(m->u.kernel.match->name, "tcp") == 0
  166.     && (tcpinfo->flg_cmp & TH_SYN)
  167.     && !(tcpinfo->invflags & IPT_TCP_INV_FLAGS))
  168. return 1;
  169. return 0;
  170. }
  171. /* Must specify -p tcp --syn/--tcp-flags SYN */
  172. static int
  173. ipt_tcpmss_checkentry(const char *tablename,
  174.       const struct ipt_entry *e,
  175.       void *targinfo,
  176.       unsigned int targinfosize,
  177.       unsigned int hook_mask)
  178. {
  179. const struct ipt_tcpmss_info *tcpmssinfo = targinfo;
  180. if (targinfosize != IPT_ALIGN(sizeof(struct ipt_tcpmss_info))) {
  181. DEBUGP("ipt_tcpmss_checkentry: targinfosize %u != %un",
  182.        targinfosize, IPT_ALIGN(sizeof(struct ipt_tcpmss_info)));
  183. return 0;
  184. }
  185. if((tcpmssinfo->mss == IPT_TCPMSS_CLAMP_PMTU) && 
  186. ((hook_mask & ~((1 << NF_IP_FORWARD)
  187.     | (1 << NF_IP_LOCAL_OUT)
  188.     | (1 << NF_IP_POST_ROUTING))) != 0)) {
  189. printk("TCPMSS: path-MTU clamping only supported in FORWARD, OUTPUT and POSTROUTING hooksn");
  190. return 0;
  191. }
  192. if (e->ip.proto == IPPROTO_TCP
  193.     && !(e->ip.invflags & IPT_INV_PROTO)
  194.     && IPT_MATCH_ITERATE(e, find_syn_match))
  195. return 1;
  196. printk("TCPMSS: Only works on TCP SYN packetsn");
  197. return 0;
  198. }
  199. static struct ipt_target ipt_tcpmss_reg
  200. = { { NULL, NULL }, "TCPMSS",
  201.     ipt_tcpmss_target, ipt_tcpmss_checkentry, NULL, THIS_MODULE };
  202. static int __init init(void)
  203. {
  204. return ipt_register_target(&ipt_tcpmss_reg);
  205. }
  206. static void __exit fini(void)
  207. {
  208. ipt_unregister_target(&ipt_tcpmss_reg);
  209. }
  210. module_init(init);
  211. module_exit(fini);
  212. MODULE_LICENSE("GPL");