blob: 87b606b63f1e82052418b78ab12aacad2b0265e8 [file] [log] [blame]
Thomas Graf14c0b972006-08-04 03:38:38 -07001#ifndef __LINUX_FIB_RULES_H
2#define __LINUX_FIB_RULES_H
3
4#include <linux/types.h>
5#include <linux/rtnetlink.h>
6
7/* rule is permanent, and cannot be deleted */
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -07008#define FIB_RULE_PERMANENT 0x00000001
9#define FIB_RULE_INVERT 0x00000002
10#define FIB_RULE_UNRESOLVED 0x00000004
11#define FIB_RULE_DEV_DETACHED 0x00000008
12
13/* try to find source address in routing lookups */
14#define FIB_RULE_FIND_SADDR 0x00010000
Thomas Graf14c0b972006-08-04 03:38:38 -070015
16struct fib_rule_hdr
17{
18 __u8 family;
19 __u8 dst_len;
20 __u8 src_len;
21 __u8 tos;
22
23 __u8 table;
24 __u8 res1; /* reserved */
25 __u8 res2; /* reserved */
26 __u8 action;
27
28 __u32 flags;
29};
30
31enum
32{
33 FRA_UNSPEC,
34 FRA_DST, /* destination address */
35 FRA_SRC, /* source address */
36 FRA_IFNAME, /* interface name */
Thomas Graf0947c9fe2007-03-26 17:14:15 -070037 FRA_GOTO, /* target to jump to (FR_ACT_GOTO) */
Thomas Graf14c0b972006-08-04 03:38:38 -070038 FRA_UNUSED2,
39 FRA_PRIORITY, /* priority/preference */
40 FRA_UNUSED3,
41 FRA_UNUSED4,
42 FRA_UNUSED5,
Thomas Grafb8964ed2006-11-09 15:22:18 -080043 FRA_FWMARK, /* mark */
Thomas Graf14c0b972006-08-04 03:38:38 -070044 FRA_FLOW, /* flow/class id */
Patrick McHardy9e762a42006-08-10 23:09:48 -070045 FRA_UNUSED6,
46 FRA_UNUSED7,
47 FRA_UNUSED8,
48 FRA_TABLE, /* Extended table id */
Patrick McHardybbfb39c2006-08-25 16:10:14 -070049 FRA_FWMASK, /* mask for netfilter mark */
Thomas Graf14c0b972006-08-04 03:38:38 -070050 __FRA_MAX
51};
52
53#define FRA_MAX (__FRA_MAX - 1)
54
55enum
56{
57 FR_ACT_UNSPEC,
58 FR_ACT_TO_TBL, /* Pass to fixed table */
Thomas Graf0947c9fe2007-03-26 17:14:15 -070059 FR_ACT_GOTO, /* Jump to another rule */
Thomas Graffa0b2d12007-03-26 17:38:53 -070060 FR_ACT_NOP, /* No operation */
Thomas Graf14c0b972006-08-04 03:38:38 -070061 FR_ACT_RES3,
62 FR_ACT_RES4,
63 FR_ACT_BLACKHOLE, /* Drop without notification */
64 FR_ACT_UNREACHABLE, /* Drop with ENETUNREACH */
65 FR_ACT_PROHIBIT, /* Drop with EACCES */
66 __FR_ACT_MAX,
67};
68
69#define FR_ACT_MAX (__FR_ACT_MAX - 1)
70
71#endif