send-to-self-2.6.30-1.patch 5.5 KB

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