send-to-self-2.6.24-1.patch 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. diff -urp v2.6.24/linux/Documentation/filesystems/proc.txt linux/Documentation/filesystems/proc.txt
  2. --- v2.6.24/linux/Documentation/filesystems/proc.txt 2008-01-25 10:44:55.000000000 +0200
  3. +++ linux/Documentation/filesystems/proc.txt 2008-01-27 16:18:46.000000000 +0200
  4. @@ -1803,6 +1803,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.24/linux/Documentation/networking/ip-sysctl.txt linux/Documentation/networking/ip-sysctl.txt
  18. --- v2.6.24/linux/Documentation/networking/ip-sysctl.txt 2008-01-25 10:44:55.000000000 +0200
  19. +++ linux/Documentation/networking/ip-sysctl.txt 2008-01-27 16:18:46.000000000 +0200
  20. @@ -600,6 +600,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.24/linux/include/linux/inetdevice.h linux/include/linux/inetdevice.h
  34. --- v2.6.24/linux/include/linux/inetdevice.h 2007-07-10 09:18:42.000000000 +0300
  35. +++ linux/include/linux/inetdevice.h 2008-01-27 16:18:46.000000000 +0200
  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.24/linux/include/linux/sysctl.h linux/include/linux/sysctl.h
  43. --- v2.6.24/linux/include/linux/sysctl.h 2008-01-25 10:45:05.000000000 +0200
  44. +++ linux/include/linux/sysctl.h 2008-01-27 16:18:46.000000000 +0200
  45. @@ -491,6 +491,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.24/linux/kernel/sysctl_check.c linux/kernel/sysctl_check.c
  53. --- v2.6.24/linux/kernel/sysctl_check.c 2008-01-25 10:45:06.000000000 +0200
  54. +++ linux/kernel/sysctl_check.c 2008-02-05 01:16:16.000000000 +0200
  55. @@ -224,6 +224,7 @@ static struct trans_ctl_table trans_net_
  56. { NET_IPV4_CONF_ARP_IGNORE, "arp_ignore" },
  57. { NET_IPV4_CONF_PROMOTE_SECONDARIES, "promote_secondaries" },
  58. { NET_IPV4_CONF_ARP_ACCEPT, "arp_accept" },
  59. + { NET_IPV4_CONF_LOOP, "loop" },
  60. {}
  61. };
  62. diff -urp v2.6.24/linux/net/ipv4/devinet.c linux/net/ipv4/devinet.c
  63. --- v2.6.24/linux/net/ipv4/devinet.c 2008-01-25 10:45:06.000000000 +0200
  64. +++ linux/net/ipv4/devinet.c 2008-01-27 16:18:46.000000000 +0200
  65. @@ -1447,6 +1447,7 @@ static struct devinet_sysctl_table {
  66. DEVINET_SYSCTL_RW_ENTRY(ARP_ANNOUNCE, "arp_announce"),
  67. DEVINET_SYSCTL_RW_ENTRY(ARP_IGNORE, "arp_ignore"),
  68. DEVINET_SYSCTL_RW_ENTRY(ARP_ACCEPT, "arp_accept"),
  69. + DEVINET_SYSCTL_RW_ENTRY(LOOP, "loop"),
  70. DEVINET_SYSCTL_FLUSHING_ENTRY(NOXFRM, "disable_xfrm"),
  71. DEVINET_SYSCTL_FLUSHING_ENTRY(NOPOLICY, "disable_policy"),
  72. diff -urp v2.6.24/linux/net/ipv4/fib_frontend.c linux/net/ipv4/fib_frontend.c
  73. --- v2.6.24/linux/net/ipv4/fib_frontend.c 2008-01-25 10:45:06.000000000 +0200
  74. +++ linux/net/ipv4/fib_frontend.c 2008-01-27 16:18:46.000000000 +0200
  75. @@ -200,15 +200,16 @@ int fib_validate_source(__be32 src, __be
  76. .tos = tos } },
  77. .iif = oif };
  78. struct fib_result res;
  79. - int no_addr, rpf;
  80. + int no_addr, rpf, loop;
  81. int ret;
  82. - no_addr = rpf = 0;
  83. + no_addr = rpf = loop = 0;
  84. rcu_read_lock();
  85. in_dev = __in_dev_get_rcu(dev);
  86. if (in_dev) {
  87. no_addr = in_dev->ifa_list == NULL;
  88. rpf = IN_DEV_RPFILTER(in_dev);
  89. + loop = IN_DEV_LOOP(in_dev);
  90. }
  91. rcu_read_unlock();
  92. @@ -217,6 +218,11 @@ int fib_validate_source(__be32 src, __be
  93. if (fib_lookup(&fl, &res))
  94. goto last_resort;
  95. + if (loop && res.type == RTN_LOCAL) {
  96. + *spec_dst = FIB_RES_PREFSRC(res);
  97. + fib_res_put(&res);
  98. + return 0;
  99. + }
  100. if (res.type != RTN_UNICAST)
  101. goto e_inval_res;
  102. *spec_dst = FIB_RES_PREFSRC(res);
  103. diff -urp v2.6.24/linux/net/ipv4/route.c linux/net/ipv4/route.c
  104. --- v2.6.24/linux/net/ipv4/route.c 2008-01-25 10:45:06.000000000 +0200
  105. +++ linux/net/ipv4/route.c 2008-01-27 16:22:26.000000000 +0200
  106. @@ -2202,6 +2202,11 @@ static int ip_route_output_slow(struct r
  107. dev_put(dev_out);
  108. goto out; /* Wrong error code */
  109. }
  110. + err = -ENETDOWN;
  111. + if (!(dev_out->flags&IFF_UP)) {
  112. + dev_put(dev_out);
  113. + goto out;
  114. + }
  115. if (LOCAL_MCAST(oldflp->fl4_dst) || oldflp->fl4_dst == htonl(0xFFFFFFFF)) {
  116. if (!fl.fl4_src)
  117. @@ -2268,10 +2273,41 @@ static int ip_route_output_slow(struct r
  118. free_res = 1;
  119. if (res.type == RTN_LOCAL) {
  120. - if (!fl.fl4_src)
  121. - fl.fl4_src = fl.fl4_dst;
  122. + struct in_device *in_dev;
  123. + __be32 src;
  124. +
  125. if (dev_out)
  126. dev_put(dev_out);
  127. + dev_out = FIB_RES_DEV(res);
  128. + in_dev = in_dev_get(dev_out);
  129. + src = fl.fl4_src? : FIB_RES_PREFSRC(res);
  130. + if (in_dev && IN_DEV_LOOP(in_dev) && src) {
  131. + struct net_device *dev_src;
  132. +
  133. + in_dev_put(in_dev);
  134. + in_dev = NULL;
  135. + dev_src = ip_dev_find(src);
  136. + if (dev_src && dev_src != dev_out &&
  137. + (in_dev = in_dev_get(dev_src)) &&
  138. + IN_DEV_LOOP(in_dev)) {
  139. + in_dev_put(in_dev);
  140. + dev_out = dev_src;
  141. + fl.fl4_src = src;
  142. + fl.oif = dev_out->ifindex;
  143. + res.type = RTN_UNICAST;
  144. + if (res.fi) {
  145. + fib_info_put(res.fi);
  146. + res.fi = NULL;
  147. + }
  148. + goto make_route;
  149. + }
  150. + if (dev_src)
  151. + dev_put(dev_src);
  152. + }
  153. + if (in_dev)
  154. + in_dev_put(in_dev);
  155. + if (!fl.fl4_src)
  156. + fl.fl4_src = fl.fl4_dst;
  157. dev_out = init_net.loopback_dev;
  158. dev_hold(dev_out);
  159. fl.oif = dev_out->ifindex;