diff -ur v2.6.3/linux/Documentation/filesystems/proc.txt linux/Documentation/filesystems/proc.txt --- v2.6.3/linux/Documentation/filesystems/proc.txt 2003-09-27 23:14:56.000000000 +0300 +++ linux/Documentation/filesystems/proc.txt 2004-02-19 01:56:59.145698752 +0200 @@ -1555,6 +1555,15 @@ Log packets with source addresses with no known route to kernel log. +loop +---- + +By default (loop=0) the traffic between local IP addresses +is routed via interface "lo". Setting this flag for two +interfaces allows traffic between their IP addresses to +be looped externally. This is useful for setups where the +interfaces are attached to same broadcast medium. + mc_forwarding ------------- diff -ur v2.6.3/linux/Documentation/networking/ip-sysctl.txt linux/Documentation/networking/ip-sysctl.txt --- v2.6.3/linux/Documentation/networking/ip-sysctl.txt 2004-02-19 00:13:33.000000000 +0200 +++ linux/Documentation/networking/ip-sysctl.txt 2004-02-19 01:56:59.146698600 +0200 @@ -403,6 +403,13 @@ forwarding - BOOLEAN Enable IP forwarding on this interface. +loop - BOOLEAN + By default (loop=0) the traffic between local IP addresses + is routed via interface "lo". Setting this flag for two + interfaces allows traffic between their IP addresses to + be looped externally. This is useful for setups where the + interfaces are attached to same broadcast medium. + mc_forwarding - BOOLEAN Do multicast routing. The kernel needs to be compiled with CONFIG_MROUTE and a multicast routing daemon is required. diff -ur v2.6.3/linux/include/linux/inetdevice.h linux/include/linux/inetdevice.h --- v2.6.3/linux/include/linux/inetdevice.h 2004-02-19 00:13:38.000000000 +0200 +++ linux/include/linux/inetdevice.h 2004-02-19 01:57:28.943168848 +0200 @@ -22,6 +22,7 @@ int no_xfrm; int no_policy; int force_igmp_version; + int loop; void *sysctl; }; @@ -71,6 +72,7 @@ (ipv4_devconf.accept_redirects || (in_dev)->cnf.accept_redirects))) #define IN_DEV_ARPFILTER(in_dev) (ipv4_devconf.arp_filter || (in_dev)->cnf.arp_filter) +#define IN_DEV_LOOP(in_dev) ((in_dev)->cnf.loop) struct in_ifaddr { diff -ur v2.6.3/linux/include/linux/sysctl.h linux/include/linux/sysctl.h --- v2.6.3/linux/include/linux/sysctl.h 2004-02-19 00:13:38.000000000 +0200 +++ linux/include/linux/sysctl.h 2004-02-19 01:57:48.492196944 +0200 @@ -362,6 +362,7 @@ NET_IPV4_CONF_NOXFRM=15, NET_IPV4_CONF_NOPOLICY=16, NET_IPV4_CONF_FORCE_IGMP_VERSION=17, + NET_IPV4_CONF_LOOP=18, }; /* /proc/sys/net/ipv4/netfilter */ diff -ur v2.6.3/linux/net/ipv4/devinet.c linux/net/ipv4/devinet.c --- v2.6.3/linux/net/ipv4/devinet.c 2004-02-19 00:13:38.000000000 +0200 +++ linux/net/ipv4/devinet.c 2004-02-19 01:58:44.117740576 +0200 @@ -1132,7 +1132,7 @@ static struct devinet_sysctl_table { struct ctl_table_header *sysctl_header; - ctl_table devinet_vars[18]; + ctl_table devinet_vars[19]; ctl_table devinet_dev[2]; ctl_table devinet_conf_dir[2]; ctl_table devinet_proto_dir[2]; @@ -1278,6 +1278,14 @@ .proc_handler = &ipv4_doint_and_flush, .strategy = &ipv4_doint_and_flush_strategy, }, + { + .ctl_name = NET_IPV4_CONF_LOOP, + .procname = "loop", + .data = &ipv4_devconf.loop, + .maxlen = sizeof(int), + .mode = 0644, + .proc_handler = &proc_dointvec, + }, }, .devinet_dev = { { diff -ur v2.6.3/linux/net/ipv4/fib_frontend.c linux/net/ipv4/fib_frontend.c --- v2.6.3/linux/net/ipv4/fib_frontend.c 2003-10-10 01:16:29.000000000 +0300 +++ linux/net/ipv4/fib_frontend.c 2004-02-19 01:57:00.791448560 +0200 @@ -168,15 +168,16 @@ .tos = tos } }, .iif = oif }; struct fib_result res; - int no_addr, rpf; + int no_addr, rpf, loop; int ret; - no_addr = rpf = 0; + no_addr = rpf = loop = 0; read_lock(&inetdev_lock); in_dev = __in_dev_get(dev); if (in_dev) { no_addr = in_dev->ifa_list == NULL; rpf = IN_DEV_RPFILTER(in_dev); + loop = IN_DEV_LOOP(in_dev); } read_unlock(&inetdev_lock); @@ -185,6 +186,11 @@ if (fib_lookup(&fl, &res)) goto last_resort; + if (loop && res.type == RTN_LOCAL) { + *spec_dst = FIB_RES_PREFSRC(res); + fib_res_put(&res); + return 0; + } if (res.type != RTN_UNICAST) goto e_inval_res; *spec_dst = FIB_RES_PREFSRC(res); diff -ur v2.6.3/linux/net/ipv4/route.c linux/net/ipv4/route.c --- v2.6.3/linux/net/ipv4/route.c 2004-02-05 00:23:18.000000000 +0200 +++ linux/net/ipv4/route.c 2004-02-19 01:57:00.792448408 +0200 @@ -1993,6 +1993,11 @@ dev_put(dev_out); goto out; /* Wrong error code */ } + err = -ENETDOWN; + if (!(dev_out->flags&IFF_UP)) { + dev_put(dev_out); + goto out; + } if (LOCAL_MCAST(oldflp->fl4_dst) || oldflp->fl4_dst == 0xFFFFFFFF) { if (!fl.fl4_src) @@ -2062,10 +2067,41 @@ goto e_inval; if (res.type == RTN_LOCAL) { - if (!fl.fl4_src) - fl.fl4_src = fl.fl4_dst; + struct in_device *in_dev; + u32 src; + if (dev_out) dev_put(dev_out); + dev_out = FIB_RES_DEV(res); + in_dev = in_dev_get(dev_out); + src = fl.fl4_src? : FIB_RES_PREFSRC(res); + if (in_dev && IN_DEV_LOOP(in_dev) && src) { + struct net_device *dev_src; + + in_dev_put(in_dev); + in_dev = NULL; + dev_src = ip_dev_find(src); + if (dev_src && dev_src != dev_out && + (in_dev = in_dev_get(dev_src)) && + IN_DEV_LOOP(in_dev)) { + in_dev_put(in_dev); + dev_out = dev_src; + fl.fl4_src = src; + fl.oif = dev_out->ifindex; + res.type = RTN_UNICAST; + if (res.fi) { + fib_info_put(res.fi); + res.fi = NULL; + } + goto make_route; + } + if (dev_src) + dev_put(dev_src); + } + if (in_dev) + in_dev_put(in_dev); + if (!fl.fl4_src) + fl.fl4_src = fl.fl4_dst; dev_out = &loopback_dev; dev_hold(dev_out); fl.oif = dev_out->ifindex;