]> git.ipfire.org Git - people/ms/network.git/blame - src/header-port
man: Convert network-performance-tuning(8) to asciidoc
[people/ms/network.git] / src / header-port
CommitLineData
5b20e43a
MT
1#!/bin/bash
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
1848564d 5# Copyright (C) 2010 Michael Tremer & Christian Schmidt #
5b20e43a
MT
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
98f4dae6 22INFO_SETTINGS="HOOK PORT_PARENTS PORT_CHILDREN"
1848564d 23
96088590
MT
24HOOK_PORT_PATTERN="${PORT_PATTERN}"
25
2eaf16f3
MT
26# This function is called after a device has been plugged
27# into the system and got its correct name.
28# The function is intended to create child ports and things
29# like that.
1c6a4e30 30hook_hotplug() {
05365355
MT
31 # If the hook does not handle the hotplug event, it
32 # must return EXIT_NOT_HANDLED.
33 exit ${EXIT_NOT_HANDLED}
2eaf16f3
MT
34}
35
36# This function gets called when a device is plugged in
37# to determine the right name.
38# The first argument is the port which should be tested
39# against the second argument which is the device that
40# has been plugged in.
1c6a4e30 41hook_hotplug_rename() {
2eaf16f3 42 exit ${EXIT_FALSE}
8895cf8f
MT
43}
44
12f9c8d2
MT
45hook_hotplug_rename_by_address() {
46 local port="${1}"
47 assert isset port
48
49 local device="${2}"
50 assert isset device
51
52 # Read in the conifguration file.
53 if ! port_settings_read "${port}"; then
54 return ${EXIT_ERROR}
55 fi
56
57 # Get the current MAC address of the device.
58 local address="$(device_get_address "${device}")"
59 assert isset address
60
61 # Check if the address matches with the configuration.
62 if list_match "${address}" "${ADDRESS}" "${DEVICE}"; then
63 log DEBUG "Device '${device}' is port '${port}'"
64 return ${EXIT_OK}
65 fi
66
67 log DEBUG "Device '${device}' is not port '${port}'"
68 return ${EXIT_ERROR}
69}
70
54bae947 71hook_default_new() {
d389e96b 72 local ${HOOK_SETTINGS[*]}
4637109c
MT
73
74 # Import all default variables
75 hook_set_defaults
76
54bae947
MT
77 if ! hook_parse_cmdline "$@"; then
78 return ${EXIT_ERROR}
79 fi
80
81 assert isset HOOK_PORT_PATTERN
82
83 local port=$(port_find_free ${HOOK_PORT_PATTERN})
84 assert isset port
85
d389e96b 86 port_settings_write "${port}" ${HOOK_SETTINGS[*]}
54bae947
MT
87
88 exit ${EXIT_OK}
89}
90
91hook_new() {
92 hook_default_new "$@"
c2441156
SS
93}
94
a6fcc369 95hook_default_edit() {
cd6d94b5
MT
96 local port=${1}
97 assert isset port
98 shift
99
2e83362d 100 # Read settings
d389e96b 101 if ! port_settings_read "${port}" ${HOOK_SETTINGS[*]}; then
2e83362d
MT
102 error "Could not read settings for port ${port}"
103 return ${EXIT_ERROR}
104 fi
cd6d94b5 105
2e83362d 106 # Parse command line arguments
2212045f 107 if ! hook_parse_cmdline "$@"; then
cd6d94b5
MT
108 return ${EXIT_ERROR}
109 fi
110
2e83362d 111 # Save settings
d389e96b 112 if ! port_settings_write "${port}" ${HOOK_SETTINGS[*]}; then
2e83362d
MT
113 error "Could not write settings for port ${port}"
114 return ${EXIT_ERROR}
115 fi
cd6d94b5 116
79271f35
MT
117 # Apply settings
118 port_restart "${port}"
119
a6fcc369
MT
120 return ${EXIT_OK}
121}
122
123hook_edit() {
2212045f 124 hook_default_edit "$@"
cd6d94b5
MT
125}
126
7da8cf02
MT
127# Returns a list of all children of this port
128hook_children() {
129 local port="${1}"
130
d389e96b 131 if ! port_settings_read "${port}" ${HOOK_SETTINGS[*]}; then
7da8cf02
MT
132 log ERROR "Could not read port settings: ${port}"
133 return ${EXIT_OK}
134 fi
135
136 print "${SLAVES}"
137}
138
1c6a4e30 139hook_status() {
2181765d 140 local port="${1}"
fe8e6d69
MT
141 assert isset port
142
2181765d 143 cli_device_headline "${port}" --long
fe8e6d69
MT
144 exit ${EXIT_OK}
145}
1ba6a2bb
MT
146
147# Create any virtual devices, but don't bring them up
148# Must tolerate that the device may already exist
1c6a4e30 149hook_create() {
1ba6a2bb
MT
150 cmd_not_implemented
151}
152
153# Must tolerate that the device may not exist
1c6a4e30 154hook_remove() {
1ba6a2bb
MT
155 cmd_not_implemented
156}
157
158# Just bring up the device
1c6a4e30 159hook_default_up() {
1ba6a2bb
MT
160 local port="${1}"
161 assert isset port
162
163 if ! device_exists "${port}"; then
164 log ERROR "Port '${port}' does not exist and cannot be brought up"
165 exit ${EXIT_ERROR}
166 fi
167
168 # Bring up the port
169 device_set_up "${port}"
170
171 # Bring up all slaves if the port has any
172 local slave
173 for slave in $(port_get_slaves "${port}"); do
174 port_up "${slave}"
175 done
176}
177
54bae947 178# Depends on the port existing
1c6a4e30 179hook_up() {
2212045f 180 hook_default_up "$@"
1ba6a2bb
MT
181}
182
1c6a4e30 183hook_default_down() {
1ba6a2bb
MT
184 local port="${1}"
185 assert isset port
186
187 if device_exists "${port}"; then
188 device_set_down "${port}"
189 fi
190
191 # Bring down all slaves if the port has any
192 local slave
193 for slave in $(port_get_slaves "${port}"); do
194 port_down "${slave}"
195 done
196}
197
1c6a4e30 198hook_down() {
2212045f 199 hook_default_down "$@"
1ba6a2bb 200}