]> git.ipfire.org Git - people/stevee/network.git/blame - src/udev/network-hotplug
zone: Don't handle hotplug events for zones
[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
8c63fa13
MT
22. /usr/lib/network/functions
23
e9df08ad
MT
24# Read network settings
25network_settings_read
b834a824 26
8c63fa13
MT
27# Setup logging.
28LOG_FACILITY="network-hotplug"
29
30log DEBUG "Called with ACTION='${ACTION}', INTERFACE='${INTERFACE}'."
3a7fef62 31
3a7fef62
MT
32# Check if the udev environment variables are properly set.
33assert isset ACTION
34assert isset INTERFACE
35
36# Check, if the device is a physical network interface and
37# if we can handle it.
8c63fa13 38if device_exists ${INTERFACE}; then
e72eb5c8
MT
39 type="$(device_get_type "${INTERFACE}")"
40 case "${type}" in
41 # Remove automatically created bonding interface without any configuration
42 bonding)
43 port_exists "${INTERFACE}" || bonding_remove "${INTERFACE}"
44 exit ${EXIT_OK}
45 ;;
46 ethernet)
47 log DEBUG "Called for interface '${INTERFACE}' which is a virtual interface. Exiting."
48 exit ${EXIT_OK}
49 ;;
50 esac
3a7fef62
MT
51fi
52
53case "${ACTION}" in
54 add|register)
fb8c7c92
MT
55 # Handle hotplug events for zones.
56 if zone_exists "${INTERFACE}"; then
57 # TODO When e.g. a wireless device is plugged in,
58 # the right zone needs to be searched and started.
59 exit ${EXIT_OK}
60
61 # Check, if there is a port configuration for that device.
62 elif port_exists ${INTERFACE}; then
8c63fa13
MT
63 port=${INTERFACE}
64
65 # Create new configuration for _real_ network devices.
8c63fa13 66 else
9ea57fb8
MT
67 type=$(device_get_type ${INTERFACE})
68 case "${type}" in
69 # If the given device was not configured,
70 # we create an initial configuration.
71 ethernet|real)
72 port_create ethernet ${INTERFACE}
73 ;;
74
e6993835
MT
75 # Handle batman-adv and wireless devices.
76 batman-adv|batman-adv-port|wireless)
06a6f01e
MT
77 # Load regulatory domain for wireless devices
78 wireless_init_reg_domain
79
9ea57fb8
MT
80 # Save the phy of this device for later.
81 phy=$(phy_get ${INTERFACE})
82 assert isset phy
83
84 # Remove the unconfigured wireless device.
85 wireless_remove ${INTERFACE}
86
87 # Create configured child devices.
88 for port in $(ports_get_all); do
05365355
MT
89 port_cmd hotplug "${port}" "${phy}"
90 ret=$?
91
92 case "${ret}" in
93 ${EXIT_OK})
94 log DEBUG "phy '${phy}' was handled by port '${port}'"
95 break
96 ;;
97 ${EXIT_NOT_HANDLED})
98 log DEBUG "phy '${phy}' was not handled by port '${port}'"
99 ;;
100 *)
101 log WARNING "Unknown exit code for port '${port}': ${ret}"
102 ;;
103 esac
9ea57fb8
MT
104 done
105 ;;
106
107 # Do nothing for all the rest.
108 *)
109 log DEBUG "Don't create a port configuration for device '${INTERFACE}' of type '${type}'."
110 ;;
111 esac
112 exit ${EXIT_OK}
8c63fa13
MT
113 fi
114
3a7fef62
MT
115 # Check, if the device is configured in a zone.
116 # If not, there is nothing to do.
fb8c7c92
MT
117 zone=$(port_zone "${port}")
118 if isset zone; then
119 zone_hotplug_event "${zone}"
120 exit ${?}
3a7fef62
MT
121 fi
122 ;;
123
124 remove|unregister)
9ea57fb8
MT
125 # After the interface has been removed/unplugged,
126 # there are often daemons (like hostapd) which need
127 # to be stopped.
128 port_exists ${INTERFACE} && port_down ${INTERFACE}
3a7fef62
MT
129 ;;
130esac
131
132exit ${EXIT_OK}