Project

General

Profile

Download (7.82 KB) Statistics
| Branch: | Tag: | Revision:
1
#!/usr/local/bin/php-cgi -f
2
<?php
3
/*
4
	rc.newwanip
5
	Copyright (C) 2006 Scott Ullrich (sullrich@gmail.com)
6
	part of pfSense (https://www.pfsense.org)
7

    
8
	Originally part of m0n0wall (http://m0n0.ch)
9
	Copyright (C) 2003-2005 Manuel Kasper <mk@neon1.net>.
10
	All rights reserved.
11

    
12
	Redistribution and use in source and binary forms, with or without
13
	modification, are permitted provided that the following conditions are met:
14

    
15
	1. Redistributions of source code must retain the above copyright notice,
16
	this list of conditions and the following disclaimer.
17

    
18
	2. Redistributions in binary form must reproduce the above copyright
19
	notice, this list of conditions and the following disclaimer in the
20
	documentation and/or other materials provided with the distribution.
21

    
22
	THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
23
	INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
24
	AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25
	AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
26
	OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27
	SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28
	INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29
	CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30
	ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31
	POSSIBILITY OF SUCH DAMAGE.
32
*/
33

    
34
/* parse the configuration and include all functions used below */
35
require_once("globals.inc");
36
require_once("config.inc");
37
require_once("functions.inc");
38
require_once("filter.inc");
39
require_once("shaper.inc");
40
require_once("ipsec.inc");
41
require_once("vpn.inc");
42
require_once("openvpn.inc");
43
require_once("IPv6.inc");
44
require_once("rrd.inc");
45

    
46
function restart_packages() {
47
	global $oldip, $curwanip, $g;
48

    
49
	/* restart packages */
50
	log_error("{$g['product_name']} package system has detected an IP change or dynamic WAN reconnection - $oldip ->  $curwanip - Restarting packages.");
51
	send_event("service reload packages");
52
}
53

    
54
/* Interface IP address has changed */
55
if (isset($_GET['interface'])) {
56
	$argument = $_GET['interface'];
57
} else {
58
	$argument = str_replace("\n", "", $argv[1]);
59
}
60

    
61
log_error("rc.newwanip: Info: starting on {$argument}.");
62

    
63
if (empty($argument)) {
64
	$interface = "wan";
65
	$interface_real = get_real_interface();
66
} else {
67
	$interface = convert_real_interface_to_friendly_interface_name($argument);
68
	$interface_real = $argument;
69
}
70

    
71
$interface_descr = convert_friendly_interface_to_friendly_descr($interface);
72

    
73
/* If the interface is configured and not enabled, bail. We do not need to change settings for disabled interfaces. #3313 */
74
if (is_array($config['interfaces'][$interface]) && !isset($config['interfaces'][$interface]['enable'])) {
75
	log_error("Interface is disabled, nothing to do.");
76
	return;
77
}
78

    
79
if (empty($argument)) {
80
	$curwanip = get_interface_ip();
81
} else {
82
	$curwanip = find_interface_ip($interface_real, true);
83
	if ($curwanip == "") {
84
		$curwanip = get_interface_ip($interface);
85
	}
86
}
87

    
88
log_error("rc.newwanip: on (IP address: {$curwanip}) (interface: {$interface_descr}[{$interface}]) (real interface: {$interface_real}).");
89

    
90
/*
91
 * NOTE: Take care of openvpn, no-ip or similar interfaces if you generate the event to reconfigure an interface.
92
 *      i.e. OpenVPN might be in tap mode and not have an ip.
93
 */
94
if ($curwanip == "0.0.0.0" || !is_ipaddr($curwanip)) {
95
	if (substr($interface_real, 0, 4) != "ovpn") {
96
		if (!empty($config['interfaces'][$interface]['ipaddr'])) {
97
			log_error("rc.newwanip: Failed to update {$interface} IP, restarting...");
98
			send_event("interface reconfigure {$interface}");
99
			return;
100
		}
101
	}
102
}
103

    
104
/* XXX: This really possible? */
105
if (empty($interface)) {
106
	if (platform_booting()) {
107
		return;
108
	}
109
	filter_configure();
110
	restart_packages();
111
	return;
112
}
113

    
114
$oldip = "0.0.0.0";
115
if (file_exists("{$g['vardb_path']}/{$interface}_cacheip")) {
116
	$oldip = file_get_contents("{$g['vardb_path']}/{$interface}_cacheip");
117
}
118

    
119
/* regenerate resolv.conf */
120
system_resolvconf_generate(true);
121

    
122
/* write the current interface IP to file */
123
if (is_ipaddr($curwanip)) {
124
	@file_put_contents("{$g['vardb_path']}/{$interface}_ip", $curwanip);
125
}
126

    
127
link_interface_to_vips($interface, "update");
128

    
129
unset($gre);
130
$gre = link_interface_to_gre($interface);
131
if (!empty($gre)) {
132
	array_walk($gre, 'interface_gre_configure');
133
}
134

    
135
unset($gif);
136
$gif = link_interface_to_gif($interface);
137
if (!empty($gif)) {
138
	array_walk($gif, 'interface_gif_configure');
139
}
140

    
141
$grouptmp = link_interface_to_group($interface);
142
if (!empty($grouptmp)) {
143
	array_walk($grouptmp, 'interface_group_add_member');
144
}
145

    
146
unset($bridgetmp);
147
$bridgetmp = link_interface_to_bridge($interface);
148
if (!empty($bridgetmp)) {
149
	interface_bridge_add_member($bridgetmp, $interface_real);
150
}
151

    
152
/* make new hosts file */
153
system_hosts_generate();
154

    
155
/* check tunnelled IPv6 interface tracking */
156
switch ($config['interfaces'][$interface]['ipaddrv6']) {
157
	case "6to4":
158
		interface_6to4_configure($interface, $config['interfaces'][$interface]);
159
		break;
160
	case "6rd":
161
		interface_6rd_configure($interface, $config['interfaces'][$interface]);
162
		break;
163
	case "dhcp6":
164
		// N.B. PPP connections using PPP as the IPv6 parent interface are excluded because the ppp-ipv6 script calls
165
		// interface_dhcpv6_configure() for these connections after IPv6CP is up
166
		if (isset($config['interfaces'][$interface]['dhcp6usev4iface']) && !interface_isppp_type($interface)) {
167
			interface_dhcpv6_configure($interface, $config['interfaces'][$interface]);
168
		}
169
		break;
170
}
171

    
172
/* Check Gif tunnels */
173
if (!empty($gif)) {
174
	foreach ($gif as $giftun) {
175
		$confif = convert_real_interface_to_friendly_interface_name($giftun['gifif']);
176
		if (!empty($confif)) {
177
			interface_configure($confif);
178
			system_routing_configure($confif);
179
		}
180
	}
181
}
182
if (!empty($gre)) {
183
	foreach ($gre as $gretun) {
184
		$confif = convert_real_interface_to_friendly_interface_name($gretun['greif']);
185
		if (!empty($confif)) {
186
			interface_configure($confif);
187
			system_routing_configure($confif);
188
		}
189
	}
190
}
191

    
192
/*
193
 * We need to force sync VPNs on such even when the IP is the same for dynamic interfaces.
194
 * Even with the same IP the VPN software is unhappy with the IP disappearing, and we
195
 * could be failing back in which case we need to switch IPs back anyhow.
196
 */
197
if (!is_ipaddr($oldip) || $curwanip != $oldip || !is_ipaddrv4($config['interfaces'][$interface]['ipaddr'])) {
198
	/* IP changed, kill states accordingly */
199
	if ($curwanip != $oldip) {
200
		log_error("IP has changed, killing states on former IP $oldip.");
201
		pfSense_kill_states($oldip);
202
		if (isset($config['system']['ip_change_kill_states'])) {
203
			/* hidden config option to wipe all states if needed */
204
			log_error("Killing all states post-IP change.");
205
			filter_flush_state_table();
206
		}
207
	}
208

    
209
	/*
210
	 * Some services (e.g. dyndns, see ticket #4066) depend on
211
	 * filter_configure() to be called before, otherwise pass out
212
	 * route-to rules have the old ip set in 'from' and connections
213
	 * do not go through the correct link
214
	 */
215
	filter_configure_sync();
216

    
217
	/* reconfigure static routes (kernel may have deleted them) */
218
	system_routing_configure($interface);
219

    
220
	/* reconfigure our gateway monitor */
221
	setup_gateways_monitor();
222

    
223
	/* reload unbound */
224
	services_unbound_configure();
225

    
226
	if (is_ipaddr($curwanip)) {
227
		@file_put_contents("{$g['vardb_path']}/{$interface}_cacheip", $curwanip);
228
	}
229

    
230
	/* perform RFC 2136 DNS update */
231
	services_dnsupdate_process($interface);
232

    
233
	/* signal dyndns update */
234
	services_dyndns_configure($interface);
235

    
236
	/* reconfigure IPsec tunnels */
237
	vpn_ipsec_force_reload($interface);
238

    
239
	/* start OpenVPN server & clients */
240
	if (substr($interface_real, 0, 4) != "ovpn") {
241
		openvpn_resync_all($interface);
242
	}
243

    
244
	/* reload graphing functions */
245
	enable_rrd_graphing();
246

    
247
	/* reload igmpproxy */
248
	services_igmpproxy_configure();
249

    
250
	/* restart snmp */
251
	services_snmpd_configure();
252

    
253
	restart_packages();
254
} else {
255
	/* signal filter reload */
256
	filter_configure();
257
}
258

    
259
?>
(67-67/94)