summaryrefslogtreecommitdiff
blob: a92d79c43f6c0d3c516dbedd74bfd0f840dadef2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
#!/bin/bash
# Copyright (c) 2004-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

# Contributed by Roy Marples (uberlord@gentoo.org)

# void ifplugd_depend(void)
#
# Sets up the dependancies for the module
ifplugd_depend() {
	after macnet rename
	before interface
	functions interface_exists interface_get_mac_address
	provide plug
}

# bool ifplugd_check_installed(void)
#
# Returns 0 if ifplugd is installed, otherwise 1
ifplugd_check_installed() {
	if [[ ! -x /usr/sbin/ifplugd ]]; then
		${1:-false} && eerror "For ifplugd support, emerge sys-apps/ifplugd"
		return 1
	fi
	return 0
}

# bool ifplugd_pre_start(char *interface)
#
# Start ifplugd on an interface
ifplugd_pre_start() {
	local iface="$1" ifvar=$( bash_variable "$1" ) timeout i opts
	local pidfile="/var/run/ifplugd.${iface}.pid"

	# We don't start ifplugd if we're being called from the background
	${IN_BACKGROUND} && return 0

	interface_exists "${iface}" || return 0

	# ifplugd could have been started by the old init script
	if [[ -e ${pidfile} ]]; then
		vewarn "ifplugd is already running on ${iface}"
		return 0
	fi

	# We need a valid MAC address
	# It's a basic test to ensure it's not a virtual interface
	local mac=$(interface_get_mac_address "${iface}")
	if [[ -z ${mac} ]]; then
		vewarn "ifplugd only works on interfaces with a valid MAC address"
		return 0
	fi

	# We don't work on bridges
	if is_function bridge_exists ; then
		if bridge_exists "${iface}"; then
			veinfo "netplug does not work on bridges"
			return 0
		fi
	fi

	# We don't work on tun/tap interfaces
	if is_function tuntap_exists ; then
		if tuntap_exists "${iface}"; then
			veinfo "netplug does not work on tun/tap interfaces"
			return 0
		fi
	fi
	
	# Do some options
	eval opts=\" \$\{ifplugd_${ifvar}\} \"
	
	# We don't work on wirelesss interfaces
	# Although ifplugd can, we prefer wpa_supplicant, unless explicitly told
	# so via our options
	if [[ ${opts} != *" -m wlan "* && ${opts} != *" --api-mode=wlan "* ]]; then
		if is_function wireless_check_extensions ; then
			if wireless_check_extensions "${iface}"; then
				veinfo "ifplugd does not work on wireless interfaces"
				return 0
			fi
		fi
	fi

	ebegin "Starting ifplugd on ${iface}"

	# We need the interface up for ifplugd to listen to netlink events
	interface_up "${iface}"

	# Mark the us as inactive so ifplugd can restart us
	mark_service_inactive "net.${iface}"

	# Start ifplugd
	start-stop-daemon --start --exec /usr/sbin/ifplugd \
		--pidfile "${pidfile}" \
		-- ${opts} --iface="${iface}"
	eend "$?" || return 1

	eindent

	eval timeout=\"\$\{plug_timeout_${ifvar}\:--1}\"
	if [[ ${timeout} == "0" ]]; then
		ewarn "WARNING: infinite timeout set for ${iface} to come up"
	elif [[ ${timeout} -lt 0 ]]; then
		einfo "Backgrounding ..."
		exit 0
	fi

	veinfo "Waiting for ${iface} to be marked as started"

	i=0
	while true ; do
		if service_started "net.${iface}"; then
			local addr=$( interface_get_address "${iface}" )
			einfo "${iface} configured with address ${addr}"
			exit 0
		fi
		sleep 1
		(( i++ ))
		[[ ${i} == "${timeout}" || ${i} -gt "${timeout}" ]] && break
	done

	eend 1 "Failed to configure ${iface} in the background"
	exit 0
}

# bool ifplugd_stop(char *iface)
#
# Stops ifplugd on an interface
# Returns 0 (true) when successful, non-zero otherwise
ifplugd_stop() {
	${IN_BACKGROUND} && return 0
	local iface="$1"
	local pidfile="/var/run/ifplugd.${iface}.pid"

	[[ ! -e ${pidfile} ]] && return 0
	
	ebegin "Stopping ifplugd on ${iface}"
	start-stop-daemon --stop --exec /usr/sbin/ifplugd \
		--pidfile "${pidfile}" --signal 3
	eend $?
}

# vim:ts=4