]> git.ipfire.org Git - people/ms/network.git/blame - src/hooks/ports/ethernet
Makefile: Fix typo in localstatedir
[people/ms/network.git] / src / hooks / ports / ethernet
CommitLineData
711ffac1
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
8c63fa13 22. /usr/lib/network/header-port
711ffac1 23
d389e96b
MT
24HOOK_SETTINGS=(
25 "ADDRESS"
26 "ADVERTISED_LINK_SPEEDS"
27 "DEVICE"
28 "OFFLOADING"
29 "MTU"
30)
711ffac1 31
1c6a4e30 32hook_check_settings() {
64b7bffd
MT
33 assert ismac DEVICE
34
5e4629f6
MT
35 # Invalid MAC addresses are not allowed
36 assert not isoneof DEVICE 00:00:00:00:00:00 ff:ff:ff:ff:ff:ff
37
64b7bffd
MT
38 if isset ADDRESS; then
39 assert ismac ADDRESS
40 fi
ef53293c
MT
41
42 if isset MTU; then
43 assert mtu_is_valid "ethernet" "${MTU}"
44 fi
3a0e1dda 45
5b1fd814
MT
46 if isset MODES; then
47 local mode
48 for mode in ${MODES}; do
49 assert [ -n "${DEVICE_LINK_SPEEDS[${mode}]}" ]
50 done
3a0e1dda 51 fi
711ffac1
MT
52}
53
c1c6a024
MT
54hook_parse_cmdline() {
55 while [ $# -gt 0 ]; do
56 case "${1}" in
57 --address=*)
58 ADDRESS="$(cli_get_val "${1}")"
59
60 if ! mac_is_valid "${ADDRESS}"; then
61 error "Invalid MAC address: ${ADDRESS}"
62 return ${EXIT_ERROR}
63 fi
64 ;;
ef53293c 65
5b1fd814
MT
66 --advertised-link-speeds=*)
67 ADVERTISED_LINK_SPEEDS="$(cli_get_val "${1}")"
178aabc0 68
5b1fd814
MT
69 local speed
70 for speed in ${ADVERTISED_LINK_SPEEDS}; do
71 if [ -z "${DEVICE_LINK_SPEEDS[${speed}]}" ]; then
72 error "Unsupported link speed: ${speed}"
73 return ${EXIT_ERROR}
74 fi
75 done
178aabc0
MT
76 ;;
77
ef53293c
MT
78 --mtu=*)
79 MTU="$(cli_get_val "${1}")"
80
81 if ! mtu_is_valid "ethernet" "${MTU}"; then
82 error "Invalid MTU: ${MTU}"
83 return ${EXIT_ERROR}
84 fi
85 ;;
3a0e1dda 86
085a89dc 87 --offloading=*)
f6659cc5 88 OFFLOADING="$(cli_get_bool "${1}")"
085a89dc
MT
89 ;;
90
c1c6a024
MT
91 *)
92 error "Unknown argument: ${1}"
93 return ${EXIT_ERROR}
94 ;;
95 esac
96 shift
97 done
98}
99
39aae674
MT
100# This function is only called automatically by hotplug to create
101# a new ethernet port.
102hook_new() {
103 local port="${1}"
104 assert isset port
105
ec87f5ce
MT
106 local device="${2}"
107 assert isset device
108
109 local DEVICE="$(device_get_address "${device}")"
39aae674 110
eba9fa9c 111 if ! port_settings_write "${port}"; then
39aae674
MT
112 log ERROR "Could not write settings for port ${port}"
113 return ${EXIT_ERROR}
114 fi
115
116 return ${EXIT_OK}
117}
118
3d007f4c
MT
119hook_create() {
120 return ${EXIT_OK}
121}
122
ef53293c 123hook_up() {
79271f35
MT
124 local port="${1}"
125
d389e96b 126 local ${HOOK_SETTINGS[*]}
eba9fa9c 127 if ! port_settings_read "${port}"; then
ef53293c
MT
128 log ERROR "Could not read settings for port ${port}"
129 return ${EXIT_ERROR}
130 fi
131
79271f35
MT
132 # Set MAC address, if needed
133 if isset ADDRESS; then
134 device_set_address "${port}" "${ADDRESS}"
135 fi
136
ef53293c
MT
137 # Set MTU
138 if isset MTU; then
139 device_set_mtu "${port}" "${MTU}"
140 else
141 device_set_mtu "${port}" "${DEFAULT_MTU}"
142 fi
143
5b1fd814
MT
144 # Set link speeds
145 if isset ADVERTISED_LINK_SPEEDS; then
146 device_advertise_link_speeds "${port}" ${ADVERTISED_LINK_SPEEDS}
3a0e1dda
MT
147 fi
148
085a89dc
MT
149 # Auto-enable or disable hardware offloading
150 if ! isset OFFLOADING || enabled OFFLOADING; then
151 offloading_auto "${port}"
152 else
153 offloading_disable_all "${port}"
154 fi
c3db1412 155
ef53293c
MT
156 # Bring up the device
157 device_set_up "${port}"
158
711ffac1
MT
159 exit ${EXIT_OK}
160}
161
1c6a4e30 162hook_remove() {
711ffac1
MT
163 exit ${EXIT_OK}
164}
165
1c6a4e30 166hook_hotplug_rename() {
12f9c8d2 167 hook_hotplug_rename_by_address "$@"
8895cf8f 168}