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