forked from luck/tmp_suning_uos_patched
5cbf777cfd
This patch implements the feature described in rfc1812#section-5.3.5.2 and rfc2644. It allows the router to forward directed broadcast when sysctl bc_forwarding is enabled. Note that this feature could be done by iptables -j TEE, but it would cause some problems: - target TEE's gateway param has to be set with a specific address, and it's not flexible especially when the route wants forward all directed broadcasts. - this duplicates the directed broadcasts so this may cause side effects to applications. Besides, to keep consistent with other os router like BSD, it's also necessary to implement it in the route rx path. Note that route cache needs to be flushed when bc_forwarding is changed. Signed-off-by: Xin Long <lucien.xin@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
31 lines
629 B
C
31 lines
629 B
C
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
|
|
#ifndef _UAPI_LINUX_NETCONF_H_
|
|
#define _UAPI_LINUX_NETCONF_H_
|
|
|
|
#include <linux/types.h>
|
|
#include <linux/netlink.h>
|
|
|
|
struct netconfmsg {
|
|
__u8 ncm_family;
|
|
};
|
|
|
|
enum {
|
|
NETCONFA_UNSPEC,
|
|
NETCONFA_IFINDEX,
|
|
NETCONFA_FORWARDING,
|
|
NETCONFA_RP_FILTER,
|
|
NETCONFA_MC_FORWARDING,
|
|
NETCONFA_PROXY_NEIGH,
|
|
NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN,
|
|
NETCONFA_INPUT,
|
|
NETCONFA_BC_FORWARDING,
|
|
__NETCONFA_MAX
|
|
};
|
|
#define NETCONFA_MAX (__NETCONFA_MAX - 1)
|
|
#define NETCONFA_ALL -1
|
|
|
|
#define NETCONFA_IFINDEX_ALL -1
|
|
#define NETCONFA_IFINDEX_DEFAULT -2
|
|
|
|
#endif /* _UAPI_LINUX_NETCONF_H_ */
|