David Howells | 607ca46 | 2012-10-13 10:46:48 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Linux ethernet bridge |
| 3 | * |
| 4 | * Authors: |
| 5 | * Lennert Buytenhek <buytenh@gnu.org> |
| 6 | * |
| 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. |
| 11 | */ |
| 12 | |
| 13 | #ifndef _UAPI_LINUX_IF_BRIDGE_H |
| 14 | #define _UAPI_LINUX_IF_BRIDGE_H |
| 15 | |
| 16 | #include <linux/types.h> |
Joe Perches | e216975 | 2013-08-01 16:17:47 -0700 | [diff] [blame] | 17 | #include <linux/if_ether.h> |
Gregory Fong | 66f1c44 | 2014-11-04 11:21:21 -0800 | [diff] [blame] | 18 | #include <linux/in6.h> |
David Howells | 607ca46 | 2012-10-13 10:46:48 +0100 | [diff] [blame] | 19 | |
| 20 | #define SYSFS_BRIDGE_ATTR "bridge" |
| 21 | #define SYSFS_BRIDGE_FDB "brforward" |
| 22 | #define SYSFS_BRIDGE_PORT_SUBDIR "brif" |
| 23 | #define SYSFS_BRIDGE_PORT_ATTR "brport" |
| 24 | #define SYSFS_BRIDGE_PORT_LINK "bridge" |
| 25 | |
| 26 | #define BRCTL_VERSION 1 |
| 27 | |
| 28 | #define BRCTL_GET_VERSION 0 |
| 29 | #define BRCTL_GET_BRIDGES 1 |
| 30 | #define BRCTL_ADD_BRIDGE 2 |
| 31 | #define BRCTL_DEL_BRIDGE 3 |
| 32 | #define BRCTL_ADD_IF 4 |
| 33 | #define BRCTL_DEL_IF 5 |
| 34 | #define BRCTL_GET_BRIDGE_INFO 6 |
| 35 | #define BRCTL_GET_PORT_LIST 7 |
| 36 | #define BRCTL_SET_BRIDGE_FORWARD_DELAY 8 |
| 37 | #define BRCTL_SET_BRIDGE_HELLO_TIME 9 |
| 38 | #define BRCTL_SET_BRIDGE_MAX_AGE 10 |
| 39 | #define BRCTL_SET_AGEING_TIME 11 |
| 40 | #define BRCTL_SET_GC_INTERVAL 12 |
| 41 | #define BRCTL_GET_PORT_INFO 13 |
| 42 | #define BRCTL_SET_BRIDGE_STP_STATE 14 |
| 43 | #define BRCTL_SET_BRIDGE_PRIORITY 15 |
| 44 | #define BRCTL_SET_PORT_PRIORITY 16 |
| 45 | #define BRCTL_SET_PATH_COST 17 |
| 46 | #define BRCTL_GET_FDB_ENTRIES 18 |
| 47 | |
| 48 | #define BR_STATE_DISABLED 0 |
| 49 | #define BR_STATE_LISTENING 1 |
| 50 | #define BR_STATE_LEARNING 2 |
| 51 | #define BR_STATE_FORWARDING 3 |
| 52 | #define BR_STATE_BLOCKING 4 |
| 53 | |
| 54 | struct __bridge_info { |
| 55 | __u64 designated_root; |
| 56 | __u64 bridge_id; |
| 57 | __u32 root_path_cost; |
| 58 | __u32 max_age; |
| 59 | __u32 hello_time; |
| 60 | __u32 forward_delay; |
| 61 | __u32 bridge_max_age; |
| 62 | __u32 bridge_hello_time; |
| 63 | __u32 bridge_forward_delay; |
| 64 | __u8 topology_change; |
| 65 | __u8 topology_change_detected; |
| 66 | __u8 root_port; |
| 67 | __u8 stp_enabled; |
| 68 | __u32 ageing_time; |
| 69 | __u32 gc_interval; |
| 70 | __u32 hello_timer_value; |
| 71 | __u32 tcn_timer_value; |
| 72 | __u32 topology_change_timer_value; |
| 73 | __u32 gc_timer_value; |
| 74 | }; |
| 75 | |
| 76 | struct __port_info { |
| 77 | __u64 designated_root; |
| 78 | __u64 designated_bridge; |
| 79 | __u16 port_id; |
| 80 | __u16 designated_port; |
| 81 | __u32 path_cost; |
| 82 | __u32 designated_cost; |
| 83 | __u8 state; |
| 84 | __u8 top_change_ack; |
| 85 | __u8 config_pending; |
| 86 | __u8 unused0; |
| 87 | __u32 message_age_timer_value; |
| 88 | __u32 forward_delay_timer_value; |
| 89 | __u32 hold_timer_value; |
| 90 | }; |
| 91 | |
| 92 | struct __fdb_entry { |
Joe Perches | e216975 | 2013-08-01 16:17:47 -0700 | [diff] [blame] | 93 | __u8 mac_addr[ETH_ALEN]; |
David Howells | 607ca46 | 2012-10-13 10:46:48 +0100 | [diff] [blame] | 94 | __u8 port_no; |
| 95 | __u8 is_local; |
| 96 | __u32 ageing_timer_value; |
| 97 | __u8 port_hi; |
| 98 | __u8 pad0; |
| 99 | __u16 unused; |
| 100 | }; |
| 101 | |
John Fastabend | 2469ffd | 2012-10-24 08:13:03 +0000 | [diff] [blame] | 102 | /* Bridge Flags */ |
| 103 | #define BRIDGE_FLAGS_MASTER 1 /* Bridge command to/from master */ |
| 104 | #define BRIDGE_FLAGS_SELF 2 /* Bridge command to/from lowerdev */ |
David Howells | 607ca46 | 2012-10-13 10:46:48 +0100 | [diff] [blame] | 105 | |
John Fastabend | 2469ffd | 2012-10-24 08:13:03 +0000 | [diff] [blame] | 106 | #define BRIDGE_MODE_VEB 0 /* Default loopback mode */ |
| 107 | #define BRIDGE_MODE_VEPA 1 /* 802.1Qbg defined VEPA mode */ |
Roopa Prabhu | fc0bdbb | 2014-12-08 14:04:19 -0800 | [diff] [blame] | 108 | #define BRIDGE_MODE_UNDEF 0xFFFF /* mode undefined */ |
John Fastabend | 2469ffd | 2012-10-24 08:13:03 +0000 | [diff] [blame] | 109 | |
| 110 | /* Bridge management nested attributes |
| 111 | * [IFLA_AF_SPEC] = { |
| 112 | * [IFLA_BRIDGE_FLAGS] |
| 113 | * [IFLA_BRIDGE_MODE] |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 114 | * [IFLA_BRIDGE_VLAN_INFO] |
John Fastabend | 2469ffd | 2012-10-24 08:13:03 +0000 | [diff] [blame] | 115 | * } |
| 116 | */ |
| 117 | enum { |
| 118 | IFLA_BRIDGE_FLAGS, |
| 119 | IFLA_BRIDGE_MODE, |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 120 | IFLA_BRIDGE_VLAN_INFO, |
John Fastabend | 2469ffd | 2012-10-24 08:13:03 +0000 | [diff] [blame] | 121 | __IFLA_BRIDGE_MAX, |
| 122 | }; |
| 123 | #define IFLA_BRIDGE_MAX (__IFLA_BRIDGE_MAX - 1) |
Cong Wang | ee07c6e | 2012-12-07 00:04:48 +0000 | [diff] [blame] | 124 | |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 125 | #define BRIDGE_VLAN_INFO_MASTER (1<<0) /* Operate on Bridge device as well */ |
Vlad Yasevich | 552406c | 2013-02-13 12:00:15 +0000 | [diff] [blame] | 126 | #define BRIDGE_VLAN_INFO_PVID (1<<1) /* VLAN is PVID, ingress untagged */ |
Vlad Yasevich | 35e03f3 | 2013-02-13 12:00:20 +0000 | [diff] [blame] | 127 | #define BRIDGE_VLAN_INFO_UNTAGGED (1<<2) /* VLAN egresses untagged */ |
Roopa Prabhu | bdced7e | 2015-01-10 07:31:12 -0800 | [diff] [blame] | 128 | #define BRIDGE_VLAN_INFO_RANGE_BEGIN (1<<3) /* VLAN is start of vlan range */ |
| 129 | #define BRIDGE_VLAN_INFO_RANGE_END (1<<4) /* VLAN is end of vlan range */ |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 130 | |
| 131 | struct bridge_vlan_info { |
Cong Wang | 9f89ec8 | 2013-02-14 13:32:31 +0800 | [diff] [blame] | 132 | __u16 flags; |
| 133 | __u16 vid; |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 134 | }; |
| 135 | |
Cong Wang | ee07c6e | 2012-12-07 00:04:48 +0000 | [diff] [blame] | 136 | /* Bridge multicast database attributes |
| 137 | * [MDBA_MDB] = { |
| 138 | * [MDBA_MDB_ENTRY] = { |
| 139 | * [MDBA_MDB_ENTRY_INFO] |
| 140 | * } |
| 141 | * } |
| 142 | * [MDBA_ROUTER] = { |
| 143 | * [MDBA_ROUTER_PORT] |
| 144 | * } |
| 145 | */ |
| 146 | enum { |
| 147 | MDBA_UNSPEC, |
| 148 | MDBA_MDB, |
| 149 | MDBA_ROUTER, |
| 150 | __MDBA_MAX, |
| 151 | }; |
| 152 | #define MDBA_MAX (__MDBA_MAX - 1) |
| 153 | |
| 154 | enum { |
| 155 | MDBA_MDB_UNSPEC, |
| 156 | MDBA_MDB_ENTRY, |
| 157 | __MDBA_MDB_MAX, |
| 158 | }; |
| 159 | #define MDBA_MDB_MAX (__MDBA_MDB_MAX - 1) |
| 160 | |
| 161 | enum { |
| 162 | MDBA_MDB_ENTRY_UNSPEC, |
| 163 | MDBA_MDB_ENTRY_INFO, |
| 164 | __MDBA_MDB_ENTRY_MAX, |
| 165 | }; |
| 166 | #define MDBA_MDB_ENTRY_MAX (__MDBA_MDB_ENTRY_MAX - 1) |
| 167 | |
| 168 | enum { |
| 169 | MDBA_ROUTER_UNSPEC, |
| 170 | MDBA_ROUTER_PORT, |
| 171 | __MDBA_ROUTER_MAX, |
| 172 | }; |
| 173 | #define MDBA_ROUTER_MAX (__MDBA_ROUTER_MAX - 1) |
| 174 | |
| 175 | struct br_port_msg { |
Cong Wang | cfd5675 | 2012-12-11 22:23:08 +0000 | [diff] [blame] | 176 | __u8 family; |
Cong Wang | ee07c6e | 2012-12-07 00:04:48 +0000 | [diff] [blame] | 177 | __u32 ifindex; |
| 178 | }; |
| 179 | |
| 180 | struct br_mdb_entry { |
| 181 | __u32 ifindex; |
Amerigo Wang | ccb1c31 | 2012-12-14 22:09:51 +0000 | [diff] [blame] | 182 | #define MDB_TEMPORARY 0 |
| 183 | #define MDB_PERMANENT 1 |
| 184 | __u8 state; |
Cong Wang | ee07c6e | 2012-12-07 00:04:48 +0000 | [diff] [blame] | 185 | struct { |
| 186 | union { |
| 187 | __be32 ip4; |
| 188 | struct in6_addr ip6; |
| 189 | } u; |
| 190 | __be16 proto; |
| 191 | } addr; |
| 192 | }; |
| 193 | |
Cong Wang | cfd5675 | 2012-12-11 22:23:08 +0000 | [diff] [blame] | 194 | enum { |
| 195 | MDBA_SET_ENTRY_UNSPEC, |
| 196 | MDBA_SET_ENTRY, |
| 197 | __MDBA_SET_ENTRY_MAX, |
| 198 | }; |
| 199 | #define MDBA_SET_ENTRY_MAX (__MDBA_SET_ENTRY_MAX - 1) |
| 200 | |
David Howells | 607ca46 | 2012-10-13 10:46:48 +0100 | [diff] [blame] | 201 | #endif /* _UAPI_LINUX_IF_BRIDGE_H */ |