]> git.ipfire.org Git - network.git/blame - src/header-port
vlan: Create devices when they don't exist, yet
[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
2eaf16f3
MT
24# This function is called after a device has been plugged
25# into the system and got its correct name.
26# The function is intended to create child ports and things
27# like that.
1c6a4e30 28hook_hotplug() {
05365355
MT
29 # If the hook does not handle the hotplug event, it
30 # must return EXIT_NOT_HANDLED.
31 exit ${EXIT_NOT_HANDLED}
2eaf16f3
MT
32}
33
34# This function gets called when a device is plugged in
35# to determine the right name.
36# The first argument is the port which should be tested
37# against the second argument which is the device that
38# has been plugged in.
1c6a4e30 39hook_hotplug_rename() {
2eaf16f3 40 exit ${EXIT_FALSE}
8895cf8f
MT
41}
42
1c6a4e30 43hook_add() {
c2441156
SS
44 cmd_not_implemented
45}
46
1c6a4e30 47hook_info() {
2181765d 48 local port="${1}"
98f4dae6 49 assert isset port
2181765d 50 shift
98f4dae6 51
e9df08ad 52 settings_read "$(port_file ${port})"
98f4dae6 53
2181765d 54 local key val
98f4dae6
MT
55 for key in PORT_PARENTS PORT_CHILDREN; do
56 val="${key}_VAR"
57 val=${!val}
50a4ee71
MT
58
59 assign "${key}" "${!val}"
98f4dae6
MT
60 done
61
62 for key in ${INFO_SETTINGS}; do
63 echo "${key}=\"${!key}\""
64 done
65
66 exit ${ERROR_OK}
67}
fe8e6d69 68
1c6a4e30 69hook_status() {
2181765d 70 local port="${1}"
fe8e6d69
MT
71 assert isset port
72
2181765d 73 cli_device_headline "${port}" --long
fe8e6d69
MT
74 exit ${EXIT_OK}
75}
1ba6a2bb
MT
76
77# Create any virtual devices, but don't bring them up
78# Must tolerate that the device may already exist
1c6a4e30 79hook_create() {
1ba6a2bb
MT
80 cmd_not_implemented
81}
82
83# Must tolerate that the device may not exist
1c6a4e30 84hook_remove() {
1ba6a2bb
MT
85 cmd_not_implemented
86}
87
88# Just bring up the device
1c6a4e30 89hook_default_up() {
1ba6a2bb
MT
90 local port="${1}"
91 assert isset port
92
93 if ! device_exists "${port}"; then
94 log ERROR "Port '${port}' does not exist and cannot be brought up"
95 exit ${EXIT_ERROR}
96 fi
97
98 # Bring up the port
99 device_set_up "${port}"
100
101 # Bring up all slaves if the port has any
102 local slave
103 for slave in $(port_get_slaves "${port}"); do
104 port_up "${slave}"
105 done
106}
107
1c6a4e30 108hook_up() {
1ba6a2bb
MT
109 hook_default_up $@
110}
111
1c6a4e30 112hook_default_down() {
1ba6a2bb
MT
113 local port="${1}"
114 assert isset port
115
116 if device_exists "${port}"; then
117 device_set_down "${port}"
118 fi
119
120 # Bring down all slaves if the port has any
121 local slave
122 for slave in $(port_get_slaves "${port}"); do
123 port_down "${slave}"
124 done
125}
126
1c6a4e30 127hook_down() {
1ba6a2bb
MT
128 hook_default_down $@
129}