]> git.ipfire.org Git - people/ms/network.git/blame - src/hooks/zones/bridge
Use autotools.
[people/ms/network.git] / src / hooks / zones / bridge
CommitLineData
1848564d
MT
1#!/bin/bash
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
5# Copyright (C) 2010 Michael Tremer & Christian Schmidt #
6# #
7# This program is free software: you can redistribute it and/or modify #
8# it under the terms of the GNU General Public License as published by #
9# the Free Software Foundation, either version 3 of the License, or #
10# (at your option) any later version. #
11# #
12# This program is distributed in the hope that it will be useful, #
13# but WITHOUT ANY WARRANTY; without even the implied warranty of #
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15# GNU General Public License for more details. #
16# #
17# You should have received a copy of the GNU General Public License #
18# along with this program. If not, see <http://www.gnu.org/licenses/>. #
19# #
20###############################################################################
21
e2aa12b3 22. /usr/lib/network/header-zone
1848564d 23
de125810
MT
24HOOK_MANPAGE="network-zone-bridge"
25
6b3f9c85
MT
26HOOK_SETTINGS="HOOK STP STP_FORWARD_DELAY STP_HELLO STP_MAXAGE STP_MODE"
27HOOK_SETTINGS="${HOOK_SETTINGS} STP_PRIORITY MAC MTU"
1848564d
MT
28
29# Default values
30MAC=$(mac_generate)
31MTU=1500
32STP="on"
6b3f9c85 33STP_MODE="rstp"
1848564d
MT
34STP_FORWARD_DELAY=0
35STP_HELLO=2
36STP_MAXAGE=20
e266c18e 37STP_PRIORITY=512
1848564d 38
2181765d 39function hook_check() {
1848564d
MT
40 assert ismac MAC
41 assert isbool STP
6b3f9c85 42 assert isoneof STP_MODE stp rstp
1848564d
MT
43 assert isinteger STP_HELLO
44 assert isinteger STP_FORWARD_DELAY
d82cf370 45 assert isinteger STP_PRIORITY
1848564d
MT
46 assert isinteger MTU
47}
48
2181765d 49function hook_parse_cmdline() {
1848564d
MT
50 while [ $# -gt 0 ]; do
51 case "${1}" in
52 --stp=*)
53 STP=${1#--stp=}
54 ;;
6b3f9c85
MT
55 --stp-mode=*)
56 STP_MODE=${1#--stp-mode=}
57 ;;
1848564d
MT
58 --stp-hello=*)
59 STP_HELLO=${1#--stp-hello=}
60 ;;
61 --stp-forward-delay=*)
62 STP_FORWARD_DELAY=${1#--stp-forward-delay=}
63 ;;
d82cf370
MT
64 --stp-priority=*)
65 STP_PRIORITY=${1#--stp-priority=}
66 ;;
1848564d
MT
67 --mtu=*)
68 MTU=${1#--mtu=}
69 ;;
70 --mac=*)
71 MAC=${1#--mac=}
72 ;;
73 *)
74 warning "Ignoring unknown option '${1}'"
75 ;;
76 esac
77 shift
78 done
79}
80
2181765d 81function hook_up() {
1848564d 82 local zone=${1}
99be6026 83 assert isset zone
1848564d 84
eb9d9b03 85 zone_config_read ${zone}
1848564d 86
99be6026 87 # Create the bridge if it does not already exist.
1848564d 88 if ! device_exists ${zone}; then
99be6026
MT
89 bridge_create ${zone} \
90 --address=${MAC} --mtu=${MTU}
1848564d 91
99be6026
MT
92 # Adjust MAC address and MTU if needed.
93 else
94 device_set_address ${zone} ${MAC}
95 device_set_mtu ${zone} ${MTU}
96 fi
1848564d
MT
97
98 # Enable STP
99 if enabled STP; then
7d85603e 100 stp_enable ${zone}
1848564d
MT
101
102 if [ -n "${STP_FORWARD_DELAY}" ]; then
e2aa12b3 103 stp_bridge_set_forward_delay ${zone} ${STP_FORWARD_DELAY}
1848564d
MT
104 fi
105
106 if [ -n "${STP_HELLO}" ]; then
e2aa12b3 107 stp_bridge_set_hello_time ${zone} ${STP_HELLO}
1848564d
MT
108 fi
109
110 if [ -n "${STP_MAXAGE}" ]; then
e2aa12b3 111 stp_bridge_set_max_age ${zone} ${STP_MAXAGE}
1848564d 112 fi
d82cf370
MT
113
114 if [ -n "${STP_PRIORITY}" ]; then
e2aa12b3 115 stp_bridge_set_priority ${zone} ${STP_PRIORITY}
d82cf370 116 fi
1848564d 117 else
6b3f9c85 118 stp_disable ${zone}
1848564d
MT
119 fi
120
121 device_set_up ${zone}
122
cf6e4606
MT
123 # XXX Currently, there is a bug (in the linux kernel?) that we need to
124 # set our bridges to promisc mode.
125 device_set_promisc ${zone} on
126
1848564d
MT
127 # Bring all ports up
128 zone_ports_up ${zone}
1848564d
MT
129 zone_configs_up ${zone}
130
8dcb2687 131 exit ${EXIT_OK}
1848564d
MT
132}
133
2181765d 134function hook_down() {
1848564d 135 local zone=${1}
99be6026 136 assert isset zone
1848564d
MT
137
138 if ! device_is_up ${zone}; then
139 warning "Zone '${zone}' is not up"
140 exit ${EXIT_OK}
141 fi
142
1848564d
MT
143 zone_configs_down ${zone}
144 zone_ports_down ${zone}
145
cf6e4606
MT
146 # XXX See remark in _up().
147 device_set_promisc ${zone} off
148
1848564d 149 device_set_down ${zone}
99be6026 150 bridge_delete ${zone}
1848564d 151
8dcb2687 152 exit ${EXIT_OK}
1848564d
MT
153}
154
2181765d 155function hook_status() {
e84e4e76 156 local zone=${1}
3cb2fc42 157 assert isset zone
e84e4e76 158
3cb2fc42
MT
159 # Print the default header.
160 cli_device_headline ${zone}
e84e4e76
MT
161
162 # Exit if zone is down
163 if ! zone_is_up ${zone}; then
164 echo # Empty line
165 exit ${EXIT_ERROR}
166 fi
167
3cb2fc42
MT
168 cli_headline 2 "Spanning Tree Protocol information"
169 if stp_is_enabled ${zone}; then
170 local proto=$(stp_bridge_get_protocol ${zone})
8d4f9311 171
3cb2fc42
MT
172 cli_print_fmt1 2 "Version" "$(stp_get_name ${proto})"
173 cli_print_fmt1 2 "ID" "$(stp_bridge_get_id ${zone})"
174 cli_print_fmt1 2 "Priority" "$(stp_bridge_get_priority ${zone})"
36e3fd2f
MT
175
176 if stp_bridge_is_root ${zone}; then
3cb2fc42 177 cli_print 2 "This bridge is root."
36e3fd2f 178 else
3cb2fc42
MT
179 cli_print_fmt1 2 "Designated root" \
180 "$(stp_bridge_get_designated_root ${zone})"
181 cli_print_fmt1 2 "Root path cost" \
182 "$(stp_bridge_get_root_path_cost ${zone})"
36e3fd2f 183 fi
3cb2fc42 184 cli_space
feb76eaf 185
36e3fd2f 186 # Topology information
3cb2fc42
MT
187 cli_print_fmt1 2 "Topology changing" \
188 "$(stp_bridge_get_topology_change_detected ${zone})"
189 cli_print_fmt1 2 "Topology change time" \
190 "$(beautify_time $(stp_bridge_get_topology_change_timer ${zone}))"
191 cli_print_fmt1 2 "Topology change count" \
192 "$(stp_bridge_get_topology_change_count ${zone})"
193 cli_space
feb76eaf 194 else
3cb2fc42
MT
195 cli_print 2 "Disabled"
196 cli_space
feb76eaf 197 fi
e84e4e76 198
50250b79 199 cli_headline 2 "Ports"
711ffac1 200 zone_ports_status ${zone}
8e3508ac 201 cli_space
e84e4e76 202
50250b79 203 cli_headline 2 "Configurations"
e84e4e76 204 zone_configs_cmd status ${zone}
3cb2fc42 205 cli_space
8e3508ac 206
e84e4e76
MT
207 exit ${EXIT_OK}
208}