]> git.ipfire.org Git - people/stevee/network.git/blame - src/udev/network-hotplug
bash-autocompletion: add basic security-policy support
[people/stevee/network.git] / src / udev / network-hotplug
CommitLineData
3a7fef62
MT
1#!/bin/bash
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
5# Copyright (C) 2011 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
b8026986
MT
22IN_HOTPLUG_EVENT=1
23
24# Setup logging.
25LOG_FACILITY="network-hotplug"
26
8c63fa13
MT
27. /usr/lib/network/functions
28
e9df08ad
MT
29# Read network settings
30network_settings_read
b834a824 31
b8026986 32log DEBUG "Called with SUBSYSTEM='${SUBSYSTEM}', ACTION='${ACTION}'"
3a7fef62 33
3a7fef62
MT
34# Check if the udev environment variables are properly set.
35assert isset ACTION
3a7fef62 36
b8026986
MT
37case "${SUBSYSTEM}" in
38 ieee80211)
39 PHY="$(basename "${DEVPATH}")"
40 if phy_exists "${PHY}"; then
41 PHY_ADDRESS="$(phy_get_address "${PHY}")"
42 log DEBUG " PHY='${PHY}', PHY_ADDRESS='${PHY_ADDRESS}'"
43 else
44 PHY=""
45 fi
a23fdc0e 46
b8026986
MT
47 # Propagate the hotplug event to all configured port hooks
48 hotplug_propagate_all_ports || exit ${EXIT_ERROR}
49 ;;
50
51 net)
52 assert isset INTERFACE
3a7fef62 53
b8026986 54 # Don't do anything for zones
fb8c7c92 55 if zone_exists "${INTERFACE}"; then
fb8c7c92 56 exit ${EXIT_OK}
47e2688a
MT
57
58 # Stop processing rules for the loopback device
59 elif device_is_loopback ${INTERFACE}; then
60 exit ${EXIT_OK}
61
62 # Stop processing rules for wireless monitoring devices
63 elif device_is_wireless_monitor ${INTERFACE}; then
64 exit ${EXIT_OK}
b8026986 65 fi
fb8c7c92 66
b8026986
MT
67 # Get the internal type of the device for later processing
68 TYPE="$(device_get_type "${INTERFACE}")"
8c63fa13 69
b8026986
MT
70 log DEBUG " INTERFACE='${INTERFACE}', TYPE='${TYPE}'"
71
b8026986
MT
72 # Handle special cases like removing automatically created
73 # devices that we don't want
74 case "${ACTION},${TYPE}" in
75 # Bonding
76 add,bonding)
77 # Remove bonding devices without configuration
78 if ! port_exists "${INTERFACE}"; then
79 bonding_remove "${INTERFACE}"
80 exit ${EXIT_OK}
81 fi
82 ;;
83
0067696a
MT
84 # dummy
85 add,dummy)
86 # Remove the by default created dummy device
87 if [ "${INTERFACE}" = "dummy0" ]; then
88 dummy_remove "${INTERFACE}"
89 exit ${EXIT_OK}
90 fi
91 ;;
92
b8026986
MT
93 # Ethernet
94 add,ethernet)
95 # Create a default port for all ethernet devices
96 if ! port_exists "${INTERFACE}"; then
1ba6a2bb 97 port_new "ethernet" "${INTERFACE}"
b8026986
MT
98 fi
99 ;;
100
101 # Wireless devices
102 add,wireless)
103 # Remove wireless devices without configuration
104 if ! port_exists "${INTERFACE}"; then
105 wireless_remove "${INTERFACE}"
106 exit ${EXIT_OK}
107 fi
108
109 # Load regulatory domain for wireless devices
110 wireless_init_reg_domain
111 ;;
112
113 # Don't propagate removal events for ports that don't exist
114 remove,*)
115 if ! port_exists "${INTERFACE}"; then
116 exit ${EXIT_OK}
117 fi
118 ;;
119 esac
120
121 if ! port_exists "${INTERFACE}"; then
122 log ERROR "Got to hotplug event for a port which does not exist: ${INTERFACE}"
123 exit ${EXIT_ERROR}
3a7fef62 124 fi
b8026986
MT
125
126 # Propagate the hotplug event to all configured port hooks
127 hotplug_propagate_all_ports || exit ${EXIT_ERROR}
128
2a969c27
MT
129 # Propagate the hotplug event to all configured zones
130 hotplug_propagate_all_zones || exit ${EXIT_ERROR}
b8026986
MT
131
132 exit ${EXIT_OK}
3a7fef62
MT
133 ;;
134
b8026986
MT
135 *)
136 log ERROR "Called for an unsupported subsystem: ${SUBSYSTEM}"
137 exit ${EXIT_ERROR}
3a7fef62
MT
138 ;;
139esac
140
b8026986 141exit ${EXIT_NOT_HANDLED}