summaryrefslogtreecommitdiffstats
path: root/etc/inc/zeromq.inc
blob: 65589d0896f924ac05be5cd265dc75c873a7f005 (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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
<?php 
/*
	zeromq.inc
	part of the pfSense project (https://www.pfsense.org)
	Copyright 2010 Scott Ullrich <sullrich@gmail.com>
	All rights reserved.

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

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

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

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

define('ZEROMQ_AUTH_FAIL', 'authfail');
define('ZEROMQ_TRUE', 'true');
define('ZEROMQ_FASLE', 'false');

$do_not_include_config_gui_inc = true;
require("auth.inc");

//$debug = true; 

/* zeromq_send: Send a message to a member node */
function zeromq_send($protocol = "tcp", $ipaddress = "127.0.0.1", $port = "8888", 
					 $method, $params, $username, $password) {

	global $debug;

	/* Set calling function and auth information */
	$xmlparams = array(
		$username,
		$password,
		$method,
		$params
	);
	
	/* Create new queue object */
	$queue = new ZMQSocket(new ZMQContext(), ZMQ::SOCKET_REQ, "MySock1");
	$queue->connect("{$protocol}://{$ipaddress}:{$port}");

	/* Assign socket 1 to the queue, send and receive */
	$result = $queue->send(serialize($xmlparams))->recv();

	/* xmlrpc_params_to_php() the result and return */
	$unserializedresult = unserialize($result);
	
	/* Return the result to the caller */
	return $unserializedresult;
}

function zeromq_server($protocol = "tcp", $ipaddress = "127.0.0.1", $port = "8888") {
	global $debug;
	if(!$ipaddress || !$port) {
		if($debug) 
			echo "ERROR: You must pass, proto, ipaddress and port\n";
		return;
	}
	if($debug)
		echo "Creating ZMQSocket()\n";
	$server = new ZMQSocket(new ZMQContext(), ZMQ::SOCKET_REP);
	if($debug)
		echo "Binding to {$protocol}://{$ipaddress}:{$port}\n";
	$server->bind("{$protocol}://{$ipaddress}:{$port}");
	if($debug) 
		echo "Entering while() loop\n";
	while ($msg = $server->recv()) {
		// Convert the XML to a PHP array
		$message = unserialize($msg);
		if($debug) {
			echo "Message received:\n";
			print_r($message);
		}
		switch ($message[2]) {
			case "pfsense.exec_shell":
				$function_to_call = "exec_shell_zeromq";
				break;
			case "pfsense.exec_php":
				$function_to_call = "exec_php_zeromq";
				break;
			case "pfsense.filter_configure":
				$function_to_call = "filter_configure_zeromq";
				break;
			case "pfsense.interfaces_carp_configure":
				$function_to_call = "interfaces_carp_configure_zeromq";
				break;
			case "pfsense.backup_config_section":
				$function_to_call = "backup_config_section_zeromq";
				break;
			case "pfsense.restore_config_section":
				$function_to_call = "restore_config_section_zeromq";
				break;
			case "pfsense.merge_config_section":
				$function_to_call = "merge_config_section_zeromq";
				break;
			case "pfsense.merge_installedpackages_section_zeromq":
				$function_to_call = "merge_installedpackages_section_zeromq";
				break;
			case "pfsense.check_firmware_version":
				$function_to_call = "check_firmware_version_zeromq";
				break;
			case "pfsense.reboot":
				$function_to_call = "reboot_zeromq";
				break;
			case "pfsense.get_notices":
				$function_to_call = "get_notices_zeromq";
				break;
		}
		if(!$function_to_call) {
			if($debug)
				echo "ERROR:  Could not find a function to call";
			return;
		} else {
			if($debug) 
				echo "Invoking function {$message[2]}()\n;";
		}
		/* Call function that is being invoked */
		$result = $function_to_call($message);
		/* echo back the result */
		$server->send($result);  
	}
}

function zeromq_auth($params) {
	global $config, $g, $debug;	

	$username = $params[0];
	$passwd = $params[1];
	
	$user = getUserEntry($username);
	if (!$user) {
		if($debug) 
			echo "Could not locate user $username with getUserEntry()\n";
		return false;
	}

	if (is_account_disabled($username) || is_account_expired($username)) {
		if($debug) 
			echo "Returning account expired/disabled\n";
		return false;
	}
		
	if ($user['password']) {
		$passwd = crypt($passwd, $user['password']);
		if ($passwd == $user['password'])
			return true;
	}

	if ($user['md5-hash']) {
		$passwd = md5($passwd);
		if ($passwd == $user['md5-hash'])
			return true;
	}

	if($debug) 
		echo "zeromq_auth() fall through == false\n";

	return false;
}

function exec_php_zeromq($raw_params) {
	global $config, $g, $debug;
	$params = $raw_params;
	if(zeromq_auth($raw_params) == false) {
		if($debug)
			echo "Auth failed in exec_shell_zeromq()\n";
		return ZEROMQ_AUTH_FAIL;
	}
	$exec_php = $params[3];
	if($debug) 
		echo "Running exec_php_zeromq(): {$exec_php}\n";
	eval($exec_php);
	if($toreturn) {
		return serialize($toreturn);
	} else
		return ZEROMQ_FASLE;
}

function exec_shell_zeromq($raw_params) {
	global $config, $g, $debug;
	$params = $raw_params;
	if(zeromq_auth($raw_params) == false) {
		if($debug)
			echo "Auth failed in exec_shell_zeromq()\n";
		return ZEROMQ_AUTH_FAIL;
	}
	$shell_cmd = $params[3];
	if($debug) 
		echo "Running exec_shell_zeromq(): {$shell_cmd}\n";
	mwexec($shell_cmd);
	return ZEROMQ_FASLE;
}

function backup_config_section_zeromq($raw_params) {
	global $config, $g, $debug;
	$params = $raw_params;
	if(zeromq_auth($raw_params) == false)
		return ZEROMQ_AUTH_FAIL;
	$val = array_intersect_key($config, array_flip($params[3]));
	return serialize($val);
}

function restore_config_section_zeromq($raw_params) {
	global $config, $g, $debug;
	$params = $raw_params;
	if(zeromq_auth($raw_params) == false) 
		return ZEROMQ_AUTH_FAIL;
	$config = array_merge($config, $params[3]);
	$mergedkeys = implode(",", array_keys($params[3]));
	write_config(sprintf(gettext("Merged in config (%s sections) from ZeroMQ client."),$mergedkeys));
	return ZEROMQ_FASLE;
}

function merge_installedpackages_section_zeromq($raw_params) {
	global $config, $g, $debug;
	$params = $raw_params;
	if(zeromq_auth($raw_params) == false) 
		return ZEROMQ_AUTH_FAIL;
	$config['installedpackages'] = array_merge($config['installedpackages'], $params[0]);
	$mergedkeys = implode(",", array_keys($params[3]));
	write_config(sprintf(gettext("Merged in config (%s sections) from ZeroMQ client."),$mergedkeys));
	return ZEROMQ_FASLE;
}

function merge_config_section_zeromq($raw_params) {
	global $config, $g, $debug;
	$params = $raw_params;
	if(zeromq_auth($raw_params) == false)
	 	return ZEROMQ_AUTH_FAIL;
	$config = array_merge_recursive_unique($config, $params[0]);
	$mergedkeys = implode(",", array_keys($params[3]));
	write_config("Merged in config ({$mergedkeys} sections) from ZeroMQ client.");
	return ZEROMQ_FASLE;
}

function filter_configure_zeromq($raw_params) {
	global $config, $g, $debug;
	$params = $raw_params;
	if(zeromq_auth($raw_params) == false)
		return ZEROMQ_AUTH_FAIL;
	filter_configure();
	system_routing_configure();
	setup_gateways_monitor();
	relayd_configure();
	require_once("openvpn.inc");
	openvpn_resync_all();
	services_dhcpd_configure();
	if (isset($config['dnsmasq']['enable']))
		services_dnsmasq_configure();
	elseif (isset($config['unbound']['enable']))
		services_unbound_configure();
	local_sync_accounts();
	return ZEROMQ_FASLE;
}

function interfaces_carp_configure_zeromq($raw_params) {
	global $config, $g, $debug;
	$params = $raw_params;
	if(zeromq_auth($raw_params) == false) 
		return ZEROMQ_AUTH_FAIL;
	interfaces_sync_setup();
	interfaces_vips_configure();
	return ZEROMQ_FASLE;
}

function check_firmware_version_zeromq($raw_params) {
	global $config, $g, $debug;
	$params = $raw_params;
	if(zeromq_auth($raw_params) == false) 
		return ZEROMQ_AUTH_FAIL;
	return serialize(check_firmware_version(false));
}

function reboot_zeromq($raw_params) {
	global $config, $g, $debug;
	$params = $raw_params;
	if(zeromq_auth($raw_params) == false)
		return ZEROMQ_AUTH_FAIL;
	mwexec_bg("/etc/rc.reboot");
	return ZEROMQ_FASLE;
}

function get_notices_zeromq($raw_params) {
	global $config, $g, $debug;
	$params = $raw_params;
	if(zeromq_auth($raw_params) == false)
		return ZEROMQ_AUTH_FAIL;
	if(!function_exists("get_notices"))
		require("notices.inc");
	if(!$params) {
		$toreturn = get_notices();
	} else {
		$toreturn = get_notices($params);
	}
	return serialize($toreturn);
}

?>
OpenPOWER on IntegriCloud