2006-08-04 10:38:38 +00:00
|
|
|
#ifndef __LINUX_FIB_RULES_H
|
|
|
|
#define __LINUX_FIB_RULES_H
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/rtnetlink.h>
|
|
|
|
|
|
|
|
/* rule is permanent, and cannot be deleted */
|
2007-04-06 18:45:39 +00:00
|
|
|
#define FIB_RULE_PERMANENT 0x00000001
|
|
|
|
#define FIB_RULE_INVERT 0x00000002
|
|
|
|
#define FIB_RULE_UNRESOLVED 0x00000004
|
2009-12-03 01:25:54 +00:00
|
|
|
#define FIB_RULE_IIF_DETACHED 0x00000008
|
|
|
|
#define FIB_RULE_DEV_DETACHED FIB_RULE_IIF_DETACHED
|
2009-12-03 01:25:56 +00:00
|
|
|
#define FIB_RULE_OIF_DETACHED 0x00000010
|
2007-04-06 18:45:39 +00:00
|
|
|
|
|
|
|
/* try to find source address in routing lookups */
|
|
|
|
#define FIB_RULE_FIND_SADDR 0x00010000
|
2006-08-04 10:38:38 +00:00
|
|
|
|
2009-11-04 17:50:58 +00:00
|
|
|
struct fib_rule_hdr {
|
2006-08-04 10:38:38 +00:00
|
|
|
__u8 family;
|
|
|
|
__u8 dst_len;
|
|
|
|
__u8 src_len;
|
|
|
|
__u8 tos;
|
|
|
|
|
|
|
|
__u8 table;
|
|
|
|
__u8 res1; /* reserved */
|
|
|
|
__u8 res2; /* reserved */
|
|
|
|
__u8 action;
|
|
|
|
|
|
|
|
__u32 flags;
|
|
|
|
};
|
|
|
|
|
2009-11-04 17:50:58 +00:00
|
|
|
enum {
|
2006-08-04 10:38:38 +00:00
|
|
|
FRA_UNSPEC,
|
|
|
|
FRA_DST, /* destination address */
|
|
|
|
FRA_SRC, /* source address */
|
2009-12-03 01:25:54 +00:00
|
|
|
FRA_IIFNAME, /* interface name */
|
|
|
|
#define FRA_IFNAME FRA_IIFNAME
|
2007-03-27 00:14:15 +00:00
|
|
|
FRA_GOTO, /* target to jump to (FR_ACT_GOTO) */
|
2006-08-04 10:38:38 +00:00
|
|
|
FRA_UNUSED2,
|
|
|
|
FRA_PRIORITY, /* priority/preference */
|
|
|
|
FRA_UNUSED3,
|
|
|
|
FRA_UNUSED4,
|
|
|
|
FRA_UNUSED5,
|
2006-11-09 23:22:18 +00:00
|
|
|
FRA_FWMARK, /* mark */
|
2006-08-04 10:38:38 +00:00
|
|
|
FRA_FLOW, /* flow/class id */
|
2006-08-11 06:09:48 +00:00
|
|
|
FRA_UNUSED6,
|
|
|
|
FRA_UNUSED7,
|
|
|
|
FRA_UNUSED8,
|
|
|
|
FRA_TABLE, /* Extended table id */
|
2006-08-25 23:10:14 +00:00
|
|
|
FRA_FWMASK, /* mask for netfilter mark */
|
2009-12-03 01:25:56 +00:00
|
|
|
FRA_OIFNAME,
|
2006-08-04 10:38:38 +00:00
|
|
|
__FRA_MAX
|
|
|
|
};
|
|
|
|
|
|
|
|
#define FRA_MAX (__FRA_MAX - 1)
|
|
|
|
|
2009-11-04 17:50:58 +00:00
|
|
|
enum {
|
2006-08-04 10:38:38 +00:00
|
|
|
FR_ACT_UNSPEC,
|
|
|
|
FR_ACT_TO_TBL, /* Pass to fixed table */
|
2007-03-27 00:14:15 +00:00
|
|
|
FR_ACT_GOTO, /* Jump to another rule */
|
2007-03-27 00:38:53 +00:00
|
|
|
FR_ACT_NOP, /* No operation */
|
2006-08-04 10:38:38 +00:00
|
|
|
FR_ACT_RES3,
|
|
|
|
FR_ACT_RES4,
|
|
|
|
FR_ACT_BLACKHOLE, /* Drop without notification */
|
|
|
|
FR_ACT_UNREACHABLE, /* Drop with ENETUNREACH */
|
|
|
|
FR_ACT_PROHIBIT, /* Drop with EACCES */
|
|
|
|
__FR_ACT_MAX,
|
|
|
|
};
|
|
|
|
|
|
|
|
#define FR_ACT_MAX (__FR_ACT_MAX - 1)
|
|
|
|
|
|
|
|
#endif
|