send-to-self-2.6.22-1.patch 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. diff -urp v2.6.22/linux/Documentation/filesystems/proc.txt linux/Documentation/filesystems/proc.txt
  2. --- v2.6.22/linux/Documentation/filesystems/proc.txt 2007-07-10 09:18:37.000000000 +0300
  3. +++ linux/Documentation/filesystems/proc.txt 2007-07-12 09:28:35.000000000 +0300
  4. @@ -1700,6 +1700,15 @@ log_martians
  5. Log packets with source addresses with no known route to kernel log.
  6. +loop
  7. +----
  8. +
  9. +By default (loop=0) the traffic between local IP addresses
  10. +is routed via interface "lo". Setting this flag for two
  11. +interfaces allows traffic between their IP addresses to
  12. +be looped externally. This is useful for setups where the
  13. +interfaces are attached to same broadcast medium.
  14. +
  15. mc_forwarding
  16. -------------
  17. diff -urp v2.6.22/linux/Documentation/networking/ip-sysctl.txt linux/Documentation/networking/ip-sysctl.txt
  18. --- v2.6.22/linux/Documentation/networking/ip-sysctl.txt 2007-07-10 09:18:37.000000000 +0300
  19. +++ linux/Documentation/networking/ip-sysctl.txt 2007-07-12 09:28:35.000000000 +0300
  20. @@ -587,6 +587,13 @@ accept_redirects - BOOLEAN
  21. forwarding - BOOLEAN
  22. Enable IP forwarding on this interface.
  23. +loop - BOOLEAN
  24. + By default (loop=0) the traffic between local IP addresses
  25. + is routed via interface "lo". Setting this flag for two
  26. + interfaces allows traffic between their IP addresses to
  27. + be looped externally. This is useful for setups where the
  28. + interfaces are attached to same broadcast medium.
  29. +
  30. mc_forwarding - BOOLEAN
  31. Do multicast routing. The kernel needs to be compiled with CONFIG_MROUTE
  32. and a multicast routing daemon is required.
  33. diff -urp v2.6.22/linux/include/linux/inetdevice.h linux/include/linux/inetdevice.h
  34. --- v2.6.22/linux/include/linux/inetdevice.h 2007-07-10 09:18:42.000000000 +0300
  35. +++ linux/include/linux/inetdevice.h 2007-07-12 09:31:18.000000000 +0300
  36. @@ -105,6 +105,7 @@ static inline void ipv4_devconf_setall(s
  37. IN_DEV_ORCONF((in_dev), ACCEPT_REDIRECTS)))
  38. #define IN_DEV_ARPFILTER(in_dev) IN_DEV_ORCONF((in_dev), ARPFILTER)
  39. +#define IN_DEV_LOOP(in_dev) IN_DEV_CONF_GET(in_dev, LOOP)
  40. #define IN_DEV_ARP_ANNOUNCE(in_dev) IN_DEV_MAXCONF((in_dev), ARP_ANNOUNCE)
  41. #define IN_DEV_ARP_IGNORE(in_dev) IN_DEV_MAXCONF((in_dev), ARP_IGNORE)
  42. diff -urp v2.6.22/linux/include/linux/sysctl.h linux/include/linux/sysctl.h
  43. --- v2.6.22/linux/include/linux/sysctl.h 2007-07-10 09:18:42.000000000 +0300
  44. +++ linux/include/linux/sysctl.h 2007-07-12 09:28:35.000000000 +0300
  45. @@ -496,6 +496,7 @@ enum
  46. NET_IPV4_CONF_ARP_IGNORE=19,
  47. NET_IPV4_CONF_PROMOTE_SECONDARIES=20,
  48. NET_IPV4_CONF_ARP_ACCEPT=21,
  49. + NET_IPV4_CONF_LOOP=22,
  50. __NET_IPV4_CONF_MAX
  51. };
  52. diff -urp v2.6.22/linux/net/ipv4/devinet.c linux/net/ipv4/devinet.c
  53. --- v2.6.22/linux/net/ipv4/devinet.c 2007-07-10 09:18:43.000000000 +0300
  54. +++ linux/net/ipv4/devinet.c 2007-07-12 09:32:46.000000000 +0300
  55. @@ -1448,6 +1448,7 @@ static struct devinet_sysctl_table {
  56. DEVINET_SYSCTL_RW_ENTRY(ARP_ANNOUNCE, "arp_announce"),
  57. DEVINET_SYSCTL_RW_ENTRY(ARP_IGNORE, "arp_ignore"),
  58. DEVINET_SYSCTL_RW_ENTRY(ARP_ACCEPT, "arp_accept"),
  59. + DEVINET_SYSCTL_RW_ENTRY(LOOP, "loop"),
  60. DEVINET_SYSCTL_FLUSHING_ENTRY(NOXFRM, "disable_xfrm"),
  61. DEVINET_SYSCTL_FLUSHING_ENTRY(NOPOLICY, "disable_policy"),
  62. diff -urp v2.6.22/linux/net/ipv4/fib_frontend.c linux/net/ipv4/fib_frontend.c
  63. --- v2.6.22/linux/net/ipv4/fib_frontend.c 2007-07-10 09:18:43.000000000 +0300
  64. +++ linux/net/ipv4/fib_frontend.c 2007-07-12 09:28:35.000000000 +0300
  65. @@ -189,15 +189,16 @@ int fib_validate_source(__be32 src, __be
  66. .tos = tos } },
  67. .iif = oif };
  68. struct fib_result res;
  69. - int no_addr, rpf;
  70. + int no_addr, rpf, loop;
  71. int ret;
  72. - no_addr = rpf = 0;
  73. + no_addr = rpf = loop = 0;
  74. rcu_read_lock();
  75. in_dev = __in_dev_get_rcu(dev);
  76. if (in_dev) {
  77. no_addr = in_dev->ifa_list == NULL;
  78. rpf = IN_DEV_RPFILTER(in_dev);
  79. + loop = IN_DEV_LOOP(in_dev);
  80. }
  81. rcu_read_unlock();
  82. @@ -206,6 +207,11 @@ int fib_validate_source(__be32 src, __be
  83. if (fib_lookup(&fl, &res))
  84. goto last_resort;
  85. + if (loop && res.type == RTN_LOCAL) {
  86. + *spec_dst = FIB_RES_PREFSRC(res);
  87. + fib_res_put(&res);
  88. + return 0;
  89. + }
  90. if (res.type != RTN_UNICAST)
  91. goto e_inval_res;
  92. *spec_dst = FIB_RES_PREFSRC(res);
  93. diff -urp v2.6.22/linux/net/ipv4/route.c linux/net/ipv4/route.c
  94. --- v2.6.22/linux/net/ipv4/route.c 2007-07-10 09:18:43.000000000 +0300
  95. +++ linux/net/ipv4/route.c 2007-07-12 09:28:35.000000000 +0300
  96. @@ -2444,6 +2444,11 @@ static int ip_route_output_slow(struct r
  97. dev_put(dev_out);
  98. goto out; /* Wrong error code */
  99. }
  100. + err = -ENETDOWN;
  101. + if (!(dev_out->flags&IFF_UP)) {
  102. + dev_put(dev_out);
  103. + goto out;
  104. + }
  105. if (LOCAL_MCAST(oldflp->fl4_dst) || oldflp->fl4_dst == htonl(0xFFFFFFFF)) {
  106. if (!fl.fl4_src)
  107. @@ -2510,10 +2515,41 @@ static int ip_route_output_slow(struct r
  108. free_res = 1;
  109. if (res.type == RTN_LOCAL) {
  110. - if (!fl.fl4_src)
  111. - fl.fl4_src = fl.fl4_dst;
  112. + struct in_device *in_dev;
  113. + __be32 src;
  114. +
  115. if (dev_out)
  116. dev_put(dev_out);
  117. + dev_out = FIB_RES_DEV(res);
  118. + in_dev = in_dev_get(dev_out);
  119. + src = fl.fl4_src? : FIB_RES_PREFSRC(res);
  120. + if (in_dev && IN_DEV_LOOP(in_dev) && src) {
  121. + struct net_device *dev_src;
  122. +
  123. + in_dev_put(in_dev);
  124. + in_dev = NULL;
  125. + dev_src = ip_dev_find(src);
  126. + if (dev_src && dev_src != dev_out &&
  127. + (in_dev = in_dev_get(dev_src)) &&
  128. + IN_DEV_LOOP(in_dev)) {
  129. + in_dev_put(in_dev);
  130. + dev_out = dev_src;
  131. + fl.fl4_src = src;
  132. + fl.oif = dev_out->ifindex;
  133. + res.type = RTN_UNICAST;
  134. + if (res.fi) {
  135. + fib_info_put(res.fi);
  136. + res.fi = NULL;
  137. + }
  138. + goto make_route;
  139. + }
  140. + if (dev_src)
  141. + dev_put(dev_src);
  142. + }
  143. + if (in_dev)
  144. + in_dev_put(in_dev);
  145. + if (!fl.fl4_src)
  146. + fl.fl4_src = fl.fl4_dst;
  147. dev_out = &loopback_dev;
  148. dev_hold(dev_out);
  149. fl.oif = dev_out->ifindex;