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