]> git.ipfire.org Git - people/ms/network.git/blame - src/hooks/ports/vlan
ports: Drop HOOK_SETTINGS variable
[people/ms/network.git] / src / hooks / ports / vlan
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
987dfeb4 22. /usr/lib/network/header-port
711ffac1 23
d389e96b
MT
24HOOK_SETTINGS=(
25 "ADDRESS"
26 "PARENT_DEVICE"
27 "TAG"
28)
711ffac1 29
95b96ee3 30PORT_PARENTS_VAR="PARENT"
98f4dae6 31
1c6a4e30 32hook_check_settings() {
7951525a 33 assert isset PARENT_DEVICE
95b96ee3 34 assert isinteger TAG
711ffac1 35
7951525a
MT
36 if isset ADDRESS; then
37 assert ismac ADDRESS
38 fi
39
95b96ee3
MT
40 if [ ${TAG} -gt 4096 ]; then
41 error "TAG is greater than 4096."
711ffac1
MT
42 exit ${EXIT_ERROR}
43 fi
44
45 local reserved
46 for reserved in 0 4095; do
95b96ee3
MT
47 if [ "${TAG}" = "${reserved}" ]; then
48 error "TAG=${reserved} is reserved."
711ffac1
MT
49 exit ${EXIT_ERROR}
50 fi
51 done
52}
53
1c6a4e30 54hook_new() {
711ffac1
MT
55 while [ $# -gt 0 ]; do
56 case "${1}" in
7951525a 57 --parent-device=*)
2212045f 58 PARENT_DEVICE=$(cli_get_val "${1}")
711ffac1 59 ;;
7951525a 60 --address=*)
2212045f 61 ADDRESS=$(cli_get_val "${1}")
711ffac1 62 ;;
7951525a 63 --tag=*)
2212045f 64 TAG=$(cli_get_val "${1}")
711ffac1
MT
65 ;;
66 *)
67 warning "Unknown argument '${1}'"
68 ;;
69 esac
70 shift
71 done
72
7951525a 73 local port="${PARENT_DEVICE}${VLAN_PORT_INTERFIX}${TAG}"
711ffac1 74
eba9fa9c 75 port_settings_write "${port}"
711ffac1
MT
76
77 exit ${EXIT_OK}
78}
79
1c6a4e30 80hook_edit() {
711ffac1 81 local port=${1}
711ffac1 82 assert isset port
7951525a 83 shift
711ffac1 84
eba9fa9c 85 port_settings_read "${port}"
711ffac1
MT
86
87 while [ $# -gt 0 ]; do
88 case "${1}" in
7951525a 89 --address=*)
2212045f 90 ADDRESS=$(cli_get_val "${1}")
711ffac1
MT
91 ;;
92 *)
93 warning "Unknown argument '${1}'"
94 ;;
95 esac
96 shift
97 done
98
eba9fa9c 99 port_settings_write "${port}"
711ffac1
MT
100
101 exit ${EXIT_OK}
102}
103
1c6a4e30 104hook_create() {
1ba6a2bb 105 local port="${1}"
711ffac1
MT
106 assert isset port
107
1ba6a2bb 108 device_exists "${port}" && exit ${EXIT_OK}
7951525a 109
1ba6a2bb 110 # Read configruation
eba9fa9c 111 port_settings_read "${port}"
711ffac1 112
1ba6a2bb
MT
113 # Create the VLAN device
114 vlan_create "${port}" "${PARENT_DEVICE}" "${TAG}" "${ADDRESS}"
7951525a 115
711ffac1
MT
116 exit ${EXIT_OK}
117}
118
1c6a4e30 119hook_remove() {
1ba6a2bb 120 local port="${1}"
711ffac1
MT
121 assert isset port
122
1ba6a2bb
MT
123 if device_exists "${port}"; then
124 vlan_remove "${port}"
711ffac1
MT
125 fi
126
711ffac1
MT
127 exit ${EXIT_OK}
128}