1
|
<?php
|
2
|
/* $Id$ */
|
3
|
/*
|
4
|
vslb.inc
|
5
|
Copyright (C) 2005-2008 Bill Marquette
|
6
|
All rights reserved.
|
7
|
|
8
|
Redistribution and use in source and binary forms, with or without
|
9
|
modification, are permitted provided that the following conditions are met:
|
10
|
|
11
|
1. Redistributions of source code must retain the above copyright notice,
|
12
|
this list of conditions and the following disclaimer.
|
13
|
|
14
|
2. Redistributions in binary form must reproduce the above copyright
|
15
|
notice, this list of conditions and the following disclaimer in the
|
16
|
documentation and/or other materials provided with the distribution.
|
17
|
|
18
|
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
19
|
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
|
20
|
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
21
|
AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
|
22
|
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
23
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
24
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
25
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
26
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
27
|
POSSIBILITY OF SUCH DAMAGE.
|
28
|
|
29
|
*/
|
30
|
|
31
|
/*
|
32
|
pfSense_BUILDER_BINARIES: /usr/local/sbin/relayd
|
33
|
pfSense_MODULE: routing
|
34
|
*/
|
35
|
|
36
|
/* DISABLE_PHP_LINT_CHECKING */
|
37
|
|
38
|
/* include all configuration functions */
|
39
|
|
40
|
class Monitor {
|
41
|
private $conf = array();
|
42
|
function __construct($config) {
|
43
|
$this->conf = $config;
|
44
|
}
|
45
|
|
46
|
public function p() {
|
47
|
return "check {$this->get('proto')}";
|
48
|
}
|
49
|
private function get($var) {
|
50
|
return isset($this->$var) ? $this->$var : "";
|
51
|
}
|
52
|
protected function config($element) {
|
53
|
return isset($this->conf[$element]) ? $this->conf[$element] : "";
|
54
|
}
|
55
|
}
|
56
|
|
57
|
class TCPMonitor extends Monitor {
|
58
|
protected $proto = 'tcp';
|
59
|
}
|
60
|
|
61
|
class SSLMonitor extends Monitor {
|
62
|
protected $proto = 'ssl';
|
63
|
}
|
64
|
|
65
|
class ICMPMonitor extends Monitor {
|
66
|
protected $proto = 'icmp';
|
67
|
}
|
68
|
|
69
|
class HTTPMonitor extends Monitor {
|
70
|
protected $proto = 'http';
|
71
|
function __construct($config) {
|
72
|
parent::__construct($config);
|
73
|
}
|
74
|
public function p() {
|
75
|
$method = ($this->code() != "") ? $this->code() : $this->digest();
|
76
|
return "check {$this->proto} {$this->path()} {$this->host()} {$method}";
|
77
|
}
|
78
|
|
79
|
private function path() {
|
80
|
return $this->config('path') != "" ? "'{$this->config('path')}'" : "";
|
81
|
}
|
82
|
|
83
|
private function host() {
|
84
|
return $this->config('host') != "" ? "host {$this->config('host')}" : "";
|
85
|
}
|
86
|
|
87
|
private function code() {
|
88
|
return $this->config('code') != "" ? "code {$this->config('code')}" : "";
|
89
|
}
|
90
|
|
91
|
private function digest() {
|
92
|
return $this->config('digest') != "" ? "digest {$this->config('digest')}" : "";
|
93
|
}
|
94
|
}
|
95
|
|
96
|
class HTTPSMonitor extends HTTPMonitor {
|
97
|
protected $proto = 'https';
|
98
|
}
|
99
|
|
100
|
class SendMonitor extends Monitor {
|
101
|
private $proto = 'send';
|
102
|
function __construct($config) {
|
103
|
parent::__construct($config);
|
104
|
}
|
105
|
public function p() {
|
106
|
return "check {$this->proto} {$this->data()} expect {$this->pattern()} {$this->ssl()}";
|
107
|
}
|
108
|
|
109
|
|
110
|
private function data() {
|
111
|
return $this->config('send') != "" ? "{$this->config('send')}" : "";
|
112
|
}
|
113
|
|
114
|
private function pattern() {
|
115
|
return $this->config('expect') != "" ? "{$this->config('expect')}" : "";
|
116
|
}
|
117
|
|
118
|
private function ssl() {
|
119
|
return $this->config('ssl') == true ? "ssl" : "";
|
120
|
}
|
121
|
}
|
122
|
|
123
|
function echo_lbaction($action) {
|
124
|
global $config;
|
125
|
|
126
|
// Index actions by name
|
127
|
$actions_a = array();
|
128
|
for ($i=0; isset($config['load_balancer']['lbaction'][$i]); $i++)
|
129
|
$actions_a[$config['load_balancer']['lbaction'][$i]['name']] = $config['load_balancer']['lbaction'][$i];
|
130
|
|
131
|
$ret = "";
|
132
|
$ret .= "{$actions_a[$action]['direction']} {$actions_a[$action]['type']} {$actions_a[$action]['action']}";
|
133
|
switch($actions_a[$action]['action']) {
|
134
|
case 'append': {
|
135
|
$ret .= " \"{$actions_a[$action]['options']['value']}\" to \"{$actions_a[$action]['options']['akey']}\"";
|
136
|
break;
|
137
|
}
|
138
|
case 'change': {
|
139
|
$ret .= " \"{$actions_a[$action]['options']['akey']}\" to \"{$actions_a[$action]['options']['value']}\"";
|
140
|
break;
|
141
|
}
|
142
|
case 'expect': {
|
143
|
$ret .= " \"{$actions_a[$action]['options']['value']}\" from \"{$actions_a[$action]['options']['akey']}\"";
|
144
|
break;
|
145
|
}
|
146
|
case 'filter': {
|
147
|
$ret .= " \"{$actions_a[$action]['options']['value']}\" from \"{$actions_a[$action]['options']['akey']}\"";
|
148
|
break;
|
149
|
}
|
150
|
case 'hash': {
|
151
|
$ret .= " \"{$actions_a[$action]['options']['akey']}\"";
|
152
|
break;
|
153
|
}
|
154
|
case 'log': {
|
155
|
$ret .= " \"{$actions_a[$action]['options']['akey']}\"";
|
156
|
break;
|
157
|
}
|
158
|
}
|
159
|
return $ret;
|
160
|
}
|
161
|
|
162
|
function relayd_configure() {
|
163
|
global $config, $g;
|
164
|
|
165
|
$vs_a = $config['load_balancer']['virtual_server'];
|
166
|
$pool_a = $config['load_balancer']['lbpool'];
|
167
|
$protocol_a = $config['load_balancer']['lbprotocol'];
|
168
|
|
169
|
$check_a = array();
|
170
|
|
171
|
foreach ((array)$config['load_balancer']['monitor_type'] as $type) {
|
172
|
switch($type['type']) {
|
173
|
case 'icmp': {
|
174
|
$mon = new ICMPMonitor($type['options']);
|
175
|
break;
|
176
|
}
|
177
|
case 'tcp': {
|
178
|
$mon = new TCPMonitor($type['options']);
|
179
|
break;
|
180
|
}
|
181
|
case 'http': {
|
182
|
$mon = new HTTPMonitor($type['options']);
|
183
|
break;
|
184
|
}
|
185
|
case 'https': {
|
186
|
$mon = new HTTPSMonitor($type['options']);
|
187
|
break;
|
188
|
}
|
189
|
case 'send': {
|
190
|
$mon = new SendMonitor($type['options']);
|
191
|
break;
|
192
|
}
|
193
|
}
|
194
|
if($mon) {
|
195
|
$check_a[$type['name']] = $mon->p();
|
196
|
}
|
197
|
}
|
198
|
|
199
|
|
200
|
$fd = fopen("{$g['varetc_path']}/relayd.conf", "w");
|
201
|
|
202
|
/* reindex pools by name as we loop through the pools array */
|
203
|
$pools = array();
|
204
|
$conf .= "log updates \n";
|
205
|
/* Virtual server pools */
|
206
|
if(is_array($pool_a)) {
|
207
|
for ($i = 0; isset($pool_a[$i]); $i++) {
|
208
|
if(is_array($pool_a[$i]['servers'])) {
|
209
|
$srvtxt = implode(", ", $pool_a[$i]['servers']);
|
210
|
$conf .= "table <{$pool_a[$i]['name']}> { $srvtxt }\n";
|
211
|
/* Index by name for easier fetching when we loop through the virtual servers */
|
212
|
$pools[$pool_a[$i]['name']] = $pool_a[$i];
|
213
|
}
|
214
|
}
|
215
|
}
|
216
|
if(is_array($protocol_a)) {
|
217
|
for ($i = 0; isset($protocol_a[$i]); $i++) {
|
218
|
$proto = "{$protocol_a[$i]['type']} protocol \"{$protocol_a[$i]['name']}\" {\n";
|
219
|
if(is_array($protocol_a[$i]['lbaction'])) {
|
220
|
if($protocol_a[$i]['lbaction'][0] == "") {
|
221
|
continue;
|
222
|
}
|
223
|
for ($a = 0; isset($protocol_a[$i]['lbaction'][$a]); $a++) {
|
224
|
$proto .= " " . echo_lbaction($protocol_a[$i]['lbaction'][$a]) . "\n";
|
225
|
}
|
226
|
}
|
227
|
$proto .= "}\n";
|
228
|
$conf .= $proto;
|
229
|
}
|
230
|
}
|
231
|
if(is_array($vs_a)) {
|
232
|
for ($i = 0; isset($vs_a[$i]); $i++) {
|
233
|
switch($vs_a[$i]['mode']) {
|
234
|
case 'redirect_mode': {
|
235
|
$conf .= "redirect \"{$vs_a[$i]['name']}\" {\n";
|
236
|
$conf .= " listen on {$vs_a[$i]['ipaddr']} port {$vs_a[$i]['port']}\n";
|
237
|
$conf .= " forward to <{$vs_a[$i]['pool']}> port {$pools[$vs_a[$i]['pool']]['port']} {$check_a[$pools[$vs_a[$i]['pool']]['monitor']]} timeout 1000\n";
|
238
|
|
239
|
# sitedown MUST use the same port as the primary pool - sucks, but it's a relayd thing
|
240
|
if (isset($vs_a[$i]['sitedown']) && strlen($vs_a[$i]['sitedown']) > 0)
|
241
|
$conf .= " forward to <{$vs_a[$i]['sitedown']}> port {$pools[$vs_a[$i]['pool']]['port']} {$check_a[$pools[$vs_a[$i]['pool']]['monitor']]} timeout 1000\n";
|
242
|
|
243
|
$conf .= "}\n";
|
244
|
break;
|
245
|
}
|
246
|
case 'relay': {
|
247
|
$conf .= "relay \"{$vs_a[$i]['name']}\" {\n";
|
248
|
$conf .= " listen on {$vs_a[$i]['ipaddr']} port {$vs_a[$i]['port']}\n";
|
249
|
$conf .= " protocol \"{$vs_a[$i]['relay_protocol']}\"\n";
|
250
|
$conf .= " forward to <{$vs_a[$i]['pool']}> port {$pools[$vs_a[$i]['pool']]['port']} {$check_a[$pools[$vs_a[$i]['pool']]['monitor']]} timeout 1000\n";
|
251
|
|
252
|
if (isset($vs_a[$i]['sitedown']) && strlen($vs_a[$i]['sitedown']) > 0)
|
253
|
$conf .= " forward to <{$vs_a[$i]['sitedown']}> port {$pools[$vs_a[$i]['pool']]['port']} {$check_a[$pools[$vs_a[$i]['pool']]['monitor']]} timeout 1000\n";
|
254
|
$conf .= "}\n";
|
255
|
break;
|
256
|
}
|
257
|
}
|
258
|
}
|
259
|
}
|
260
|
fwrite($fd, $conf);
|
261
|
fclose($fd);
|
262
|
|
263
|
if (is_process_running('relayd')) {
|
264
|
if (! empty($vs_a)) {
|
265
|
// it's running and there is a config, just reload
|
266
|
mwexec("/usr/local/sbin/relayctl reload");
|
267
|
} else {
|
268
|
/*
|
269
|
* XXX: Something breaks our control connection with relayd
|
270
|
* and makes 'relayctl stop' not work
|
271
|
* rule reloads are the current suspect
|
272
|
* mwexec('/usr/local/sbin/relayctl stop');
|
273
|
* returns "command failed"
|
274
|
*/
|
275
|
mwexec('pkill relayd');
|
276
|
}
|
277
|
} else {
|
278
|
if (! empty($vs_a)) {
|
279
|
// not running and there is a config, start it
|
280
|
mwexec("/usr/local/sbin/relayd -f {$g['varetc_path']}/relayd.conf");
|
281
|
}
|
282
|
}
|
283
|
|
284
|
}
|
285
|
|
286
|
?>
|