]> git.ipfire.org Git - people/ms/network.git/blame - src/header-port
ip-tunnel: New port hook
[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
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
54bae947 43hook_default_new() {
b7518acc 44 local ${HOOK_SETTINGS}
54bae947
MT
45 if ! hook_parse_cmdline "$@"; then
46 return ${EXIT_ERROR}
47 fi
48
49 assert isset HOOK_PORT_PATTERN
50
51 local port=$(port_find_free ${HOOK_PORT_PATTERN})
52 assert isset port
53
54 port_settings_write "${port}" ${HOOK_SETTINGS}
55
56 exit ${EXIT_OK}
57}
58
59hook_new() {
60 hook_default_new "$@"
c2441156
SS
61}
62
a6fcc369 63hook_default_edit() {
cd6d94b5
MT
64 local port=${1}
65 assert isset port
66 shift
67
2e83362d
MT
68 # Read settings
69 if ! port_settings_read "${port}" ${HOOK_SETTINGS}; then
70 error "Could not read settings for port ${port}"
71 return ${EXIT_ERROR}
72 fi
cd6d94b5 73
2e83362d 74 # Parse command line arguments
2212045f 75 if ! hook_parse_cmdline "$@"; then
cd6d94b5
MT
76 return ${EXIT_ERROR}
77 fi
78
2e83362d
MT
79 # Save settings
80 if ! port_settings_write "${port}" ${HOOK_SETTINGS}; then
81 error "Could not write settings for port ${port}"
82 return ${EXIT_ERROR}
83 fi
cd6d94b5 84
79271f35
MT
85 # Apply settings
86 port_restart "${port}"
87
a6fcc369
MT
88 return ${EXIT_OK}
89}
90
91hook_edit() {
2212045f 92 hook_default_edit "$@"
cd6d94b5
MT
93}
94
7da8cf02
MT
95# Returns a list of all children of this port
96hook_children() {
97 local port="${1}"
98
99 if ! port_settings_read "${port}" ${HOOK_SETTINGS}; then
100 log ERROR "Could not read port settings: ${port}"
101 return ${EXIT_OK}
102 fi
103
104 print "${SLAVES}"
105}
106
1c6a4e30 107hook_status() {
2181765d 108 local port="${1}"
fe8e6d69
MT
109 assert isset port
110
2181765d 111 cli_device_headline "${port}" --long
fe8e6d69
MT
112 exit ${EXIT_OK}
113}
1ba6a2bb
MT
114
115# Create any virtual devices, but don't bring them up
116# Must tolerate that the device may already exist
1c6a4e30 117hook_create() {
1ba6a2bb
MT
118 cmd_not_implemented
119}
120
121# Must tolerate that the device may not exist
1c6a4e30 122hook_remove() {
1ba6a2bb
MT
123 cmd_not_implemented
124}
125
126# Just bring up the device
1c6a4e30 127hook_default_up() {
1ba6a2bb
MT
128 local port="${1}"
129 assert isset port
130
131 if ! device_exists "${port}"; then
132 log ERROR "Port '${port}' does not exist and cannot be brought up"
133 exit ${EXIT_ERROR}
134 fi
135
136 # Bring up the port
137 device_set_up "${port}"
138
139 # Bring up all slaves if the port has any
140 local slave
141 for slave in $(port_get_slaves "${port}"); do
142 port_up "${slave}"
143 done
144}
145
54bae947 146# Depends on the port existing
1c6a4e30 147hook_up() {
2212045f 148 hook_default_up "$@"
1ba6a2bb
MT
149}
150
1c6a4e30 151hook_default_down() {
1ba6a2bb
MT
152 local port="${1}"
153 assert isset port
154
155 if device_exists "${port}"; then
156 device_set_down "${port}"
157 fi
158
159 # Bring down all slaves if the port has any
160 local slave
161 for slave in $(port_get_slaves "${port}"); do
162 port_down "${slave}"
163 done
164}
165
1c6a4e30 166hook_down() {
2212045f 167 hook_default_down "$@"
1ba6a2bb 168}