2 * Linux ethernet bridge
5 * Lennert Buytenhek <buytenh@gnu.org>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
13 #ifndef _UAPI_LINUX_IF_BRIDGE_H
14 #define _UAPI_LINUX_IF_BRIDGE_H
16 #include <linux/types.h>
18 #define SYSFS_BRIDGE_ATTR "bridge"
19 #define SYSFS_BRIDGE_FDB "brforward"
20 #define SYSFS_BRIDGE_PORT_SUBDIR "brif"
21 #define SYSFS_BRIDGE_PORT_ATTR "brport"
22 #define SYSFS_BRIDGE_PORT_LINK "bridge"
24 #define BRCTL_VERSION 1
26 #define BRCTL_GET_VERSION 0
27 #define BRCTL_GET_BRIDGES 1
28 #define BRCTL_ADD_BRIDGE 2
29 #define BRCTL_DEL_BRIDGE 3
30 #define BRCTL_ADD_IF 4
31 #define BRCTL_DEL_IF 5
32 #define BRCTL_GET_BRIDGE_INFO 6
33 #define BRCTL_GET_PORT_LIST 7
34 #define BRCTL_SET_BRIDGE_FORWARD_DELAY 8
35 #define BRCTL_SET_BRIDGE_HELLO_TIME 9
36 #define BRCTL_SET_BRIDGE_MAX_AGE 10
37 #define BRCTL_SET_AGEING_TIME 11
38 #define BRCTL_SET_GC_INTERVAL 12
39 #define BRCTL_GET_PORT_INFO 13
40 #define BRCTL_SET_BRIDGE_STP_STATE 14
41 #define BRCTL_SET_BRIDGE_PRIORITY 15
42 #define BRCTL_SET_PORT_PRIORITY 16
43 #define BRCTL_SET_PATH_COST 17
44 #define BRCTL_GET_FDB_ENTRIES 18
46 #define BR_STATE_DISABLED 0
47 #define BR_STATE_LISTENING 1
48 #define BR_STATE_LEARNING 2
49 #define BR_STATE_FORWARDING 3
50 #define BR_STATE_BLOCKING 4
52 struct __bridge_info
{
53 __u64 designated_root
;
60 __u32 bridge_hello_time
;
61 __u32 bridge_forward_delay
;
63 __u8 topology_change_detected
;
68 __u32 hello_timer_value
;
69 __u32 tcn_timer_value
;
70 __u32 topology_change_timer_value
;
75 __u64 designated_root
;
76 __u64 designated_bridge
;
78 __u16 designated_port
;
80 __u32 designated_cost
;
85 __u32 message_age_timer_value
;
86 __u32 forward_delay_timer_value
;
87 __u32 hold_timer_value
;
94 __u32 ageing_timer_value
;
101 #define BRIDGE_FLAGS_MASTER 1 /* Bridge command to/from master */
102 #define BRIDGE_FLAGS_SELF 2 /* Bridge command to/from lowerdev */
104 #define BRIDGE_MODE_VEB 0 /* Default loopback mode */
105 #define BRIDGE_MODE_VEPA 1 /* 802.1Qbg defined VEPA mode */
107 /* Bridge management nested attributes
109 * [IFLA_BRIDGE_FLAGS]
118 #define IFLA_BRIDGE_MAX (__IFLA_BRIDGE_MAX - 1)
120 /* Bridge multicast database attributes
122 * [MDBA_MDB_ENTRY] = {
123 * [MDBA_MDB_ENTRY_INFO]
136 #define MDBA_MAX (__MDBA_MAX - 1)
143 #define MDBA_MDB_MAX (__MDBA_MDB_MAX - 1)
146 MDBA_MDB_ENTRY_UNSPEC
,
148 __MDBA_MDB_ENTRY_MAX
,
150 #define MDBA_MDB_ENTRY_MAX (__MDBA_MDB_ENTRY_MAX - 1)
157 #define MDBA_ROUTER_MAX (__MDBA_ROUTER_MAX - 1)
164 struct br_mdb_entry
{
176 MDBA_SET_ENTRY_UNSPEC
,
178 __MDBA_SET_ENTRY_MAX
,
180 #define MDBA_SET_ENTRY_MAX (__MDBA_SET_ENTRY_MAX - 1)
182 #endif /* _UAPI_LINUX_IF_BRIDGE_H */