Subversion Repositories ALCASAR

Rev

Rev 1707 | Rev 2134 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log

Rev Author Line No. Line
838 richard 1
<?php
2
/* written by steweb57 & Rexy */ 
3
# Choice of language
4
$Language = 'en';
5
if(isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])){
6
	$Langue		= explode(",",$_SERVER['HTTP_ACCEPT_LANGUAGE']);
7
	$Language	= strtolower(substr(chop($Langue[0]),0,2)); }
8
if($Language == 'fr'){
9
	$l_services_title	= "Configuration des services";
1157 stephane 10
	$l_main_services	= "Services principaux";
1476 richard 11
	$l_filter_services	= "Services de filtrage";
1157 stephane 12
	$l_opt_services		= "Services optionnels";
838 richard 13
	$l_service_title 	= "Nom du service";
14
	$l_service_start 	= "D&eacute;marrer";
15
	$l_service_stop 	= "Arr&ecirc;ter";
16
	$l_service_restart 	= "Red&eacute;marrer";
17
	$l_service_status 	= "Status";
1006 richard 18
	$l_service_status_img_ok= "Démarré";
19
	$l_service_status_img_ko= "Arrété";
838 richard 20
	$l_service_action 	= "Actions";
21
	$l_radiusd		= "Serveur d'authentification et d'autorisation";
22
	$l_chilli		= "Passerelle d'interception";
23
	$l_dansguardian		= "Filtre d'URL et de contenu WEB";
1476 richard 24
	$l_mysqld		= "Serveur de la base des usagers";
25
	$l_httpd		= "Serveur WEB (Alcasar Control Center)";
26
	$l_sshd			= "Accès sécurisée distant";
838 richard 27
	$l_freshclam		= "Mise à jour de l'antivirus toutes les 2 heures";
28
	$l_ntpd			= "Service de mise à l'heure réseau";
1396 richard 29
	$l_havp			= "Proxy Antivirus 1";
1508 richard 30
	$l_tinyproxy		= "Proxy HTTP léger";
1476 richard 31
	$l_dnsmasq		= "Serveur DNS et DHCP";
32
	$l_dnsmasq_blacklist	= "Serveur DNS pour la Blacklist";
33
	$l_dnsmasq_whitelist	= "Serveur DNS pour la Whitelist";
34
	$l_dnsmasq_blackhole	= "Serveur DNS 'trou noir'";
1484 richard 35
	$l_ulogd_ssh		= "journalisation des accès par SSH";
1476 richard 36
	$l_ulogd_ext_access	= "journalisation des tentatives d'accès externes";
37
	$l_ulogd_traceability	= "journalisation des connexions WEB filtrés";
1574 richard 38
	$l_execute		= "Exécuter";
39
	$l_stop_restart		= "Arret et redémarrage du système";
40
	$l_halt			= "Arréter le système";
41
	$l_reboot		= "Relancer le système";
838 richard 42
} else {
43
	$l_services_title	= "Services configuration";
1157 stephane 44
	$l_main_services	= "Main services";
1476 richard 45
	$l_filter_services	= "Filtering services";
1157 stephane 46
	$l_opt_services		= "Optional services";
838 richard 47
	$l_service_title 	= "Service name";
48
	$l_service_start 	= "Start";
49
	$l_service_stop 	= "Stop";
50
	$l_service_restart 	= "Restart";
51
	$l_service_status 	= "Status";
1006 richard 52
	$l_service_status_img_ok= "Running";
53
	$l_service_status_img_ko= "Stopped";
838 richard 54
	$l_service_action 	= "Actions";
1572 richard 55
	$l_radiusd		= "Authentication and authorisation server";
838 richard 56
	$l_chilli		= "Interception gateway";
57
	$l_dansguardian		= "URL and WEB content filter";
58
	$l_mysqld		= "User database server";
59
	$l_httpd		= "WEB server (ALCASAR Control Center)";
60
	$l_sshd			= "Secure remote access";
1572 richard 61
	$l_freshclam		= "Antivirus update process (every 2 hours)";
62
	$l_ntpd			= "Network time server";
63
	$l_havp			= "Antivirus Proxy";
1508 richard 64
	$l_tinyproxy		= "Light HTTP Proxy";
1476 richard 65
	$l_dnsmasq		= "DNS and DHCP server";
66
	$l_dnsmasq_blacklist	= "DNS server for the Blacklist";
67
	$l_dnsmasq_whitelist	= "DNS server for the Whitelist";
68
	$l_dnsmasq_blackhole	= "DNS server (blackhole)";
69
	$l_ulogd_ssh		= "SSH access logging process";
1572 richard 70
	$l_ulogd_ext_access	= "Extern access attempts logging process";
1476 richard 71
	$l_ulogd_traceability	= "Filtering WEB access logging process";
1574 richard 72
	$l_execute		= "Execute";
73
	$l_stop_restart		= "Halt and restart the system";
74
	$l_halt			= "Halt le system";
75
	$l_reboot		= "Restart the system";
838 richard 76
}
77
 
78
/****************************************************************
79
*	CONSTANTES AVEC CHEMINS DES FICHIERS DE CONFIGURATION	*
80
*****************************************************************/
81
define ("CONF_FILE", "/usr/local/etc/alcasar.conf");
82
 
83
/********************************************************
84
*	TEST DU FICHIERS DE CONFIGURATION		*
85
*********************************************************/
86
//Test de présence et des droits en lecture des fichiers de configuration.
87
if (!file_exists(CONF_FILE)){
88
	exit("Fichier de configuration ".CONF_FILE." non présent");
89
}
90
if (!is_readable(CONF_FILE)){
91
	exit("Vous n'avez pas les droits de lecture sur le fichier ".CONF_FILE);
92
}
93
 
94
//fonction pour faire une action (start,stop,restart) sur un service
95
function serviceExec($service, $action){
96
	if (($action == "start")||($action == "stop")||($action == "restart")){
1574 richard 97
		exec("sudo /usr/bin/systemctl $action $service",$retval, $retstatus);
838 richard 98
		if ($service == "sshd"){
99
			if ($action == "start"){ 
1574 richard 100
				exec("sudo /usr/bin/systemctl enable $service");
838 richard 101
				file_put_contents(CONF_FILE, str_replace('SSH=off', 'SSH=on', file_get_contents(CONF_FILE)));
102
				exec ("sudo /usr/local/bin/alcasar-iptables.sh");
103
				}
104
			if ($action == "stop"){
1574 richard 105
			       	exec("sudo /usr/bin/systemctl disable $service");
838 richard 106
				file_put_contents(CONF_FILE, str_replace('SSH=on', 'SSH=off', file_get_contents(CONF_FILE)));
107
				exec ("sudo /usr/local/bin/alcasar-iptables.sh");
108
				}
109
			}
110
		return $retstatus;
111
	} else {
112
		return false;
113
	}
114
}
115
//fonction définissant le status d'un service 
116
//(en fonction de la présence d'un mot clé dans la valeur de status)
1006 richard 117
function checkServiceStatus($service){
838 richard 118
	$response = false;
1707 richard 119
	exec("sudo /usr/bin/systemctl is-active $service.service",$retval);
838 richard 120
	foreach( $retval as $val ) {
1006 richard 121
		if ($val == "active"){
838 richard 122
			$response = true;
123
			break;
124
		}
125
	}
126
	return $response;
127
}
128
 
129
//-------------------------------
1574 richard 130
// Actions on services
838 richard 131
//-------------------------------
132
//sécurité sur les actions à réaliser
1508 richard 133
$autorizeService = array("radiusd","chilli","dansguardian","mysqld","httpd","sshd","freshclam","ntpd","havp","tinyproxy","dnsmasq","dnsmasq-blacklist","dnsmasq-whitelist","dnsmasq-blackhole");
838 richard 134
$autorizeAction = array("start","stop","restart");
135
 
136
if (isset($_GET['service'])&&(in_array($_GET['service'], $autorizeService))) {
137
    if (isset($_GET['action'])&&(in_array($_GET['action'], $autorizeAction))) {
138
    	$execStatus = serviceExec($_GET['service'], $_GET['action']);
139
		// execStatus non exploité
140
	}
141
}
142
//-------------------------------
1574 richard 143
// Actions on system
144
//-------------------------------
145
if (isset($_POST['choix'])){
146
	switch ($_POST['choix']){
147
		case 'reboot' :
1827 raphael.pi 148
			exec ("sudo /usr/local/bin/alcasar-logout.sh all");
1599 richard 149
			exec ("sudo /usr/sbin/shutdown -r now");
1574 richard 150
		break;
151
		case 'halt' :
1827 raphael.pi 152
			exec ("sudo /usr/local/bin/alcasar-logout.sh all");
1599 richard 153
			exec ("sudo /usr/sbin/shutdown -h now");
1574 richard 154
		break;
155
	}
156
}
157
 
158
 
159
//-------------------------------
838 richard 160
//recherche du status des services
161
//-------------------------------
162
$MainServiceStatus = array();
1006 richard 163
$MainServiceStatus['radiusd'] = checkServiceStatus("radiusd");
164
$MainServiceStatus['chilli'] = checkServiceStatus("chilli");
165
$MainServiceStatus['mysqld'] = checkServiceStatus("mysqld");
166
$MainServiceStatus['httpd'] = checkServiceStatus("httpd");
1396 richard 167
$MainServiceStatus['dnsmasq'] = checkServiceStatus("dnsmasq");
1478 richard 168
$MainServiceStatus['ulogd_ssh'] = checkServiceStatus("ulogd-ssh");
169
$MainServiceStatus['ulogd_ext_access'] = checkServiceStatus("ulogd-ext-access");
170
$MainServiceStatus['ulogd_traceability'] = checkServiceStatus("ulogd-traceability");
838 richard 171
 
1476 richard 172
$FilterServiceStatus = array();
173
$FilterServiceStatus['dnsmasq_blacklist'] = checkServiceStatus("dnsmasq-blacklist");
174
$FilterServiceStatus['dnsmasq_whitelist'] = checkServiceStatus("dnsmasq-whitelist");
175
$FilterServiceStatus['dnsmasq_blackhole'] = checkServiceStatus("dnsmasq-blackhole");
176
$filterServiceStatus['dansguardian'] = checkServiceStatus("dansguardian");
177
$FilterServiceStatus['havp'] = checkServiceStatus("havp");
1508 richard 178
$FilterServiceStatus['tinyproxy'] = checkServiceStatus("tinyproxy");
1476 richard 179
$FilterServiceStatus['freshclam'] = checkServiceStatus("freshclam");
180
 
181
 
838 richard 182
$OptServiceStatus = array();
1006 richard 183
$OptServiceStatus['sshd'] = checkServiceStatus("sshd");
184
$OptServiceStatus['ntpd'] = checkServiceStatus("ntpd");
838 richard 185
 
186
/****************
187
*	MAIN	*
188
*****************/
189
 
190
?><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
191
<html><!-- written by steweb57 / rexy -->
192
<head>
193
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
194
<title><?php echo $l_services_title; ?></title>
195
<link rel="stylesheet" href="/css/style.css" type="text/css">
196
</head>
197
<body>
198
<table width="100%" border="0" cellspacing="0" cellpadding="0">
199
	<tr><th><?php echo $l_main_services; ?></th></tr>
200
	<tr bgcolor="#FFCC66"><td><img src="/images/pix.gif" width="1" height="2"></td></tr>
201
</table>
202
<TABLE width="100%" border=1 cellspacing=0 cellpadding=0>
203
	<tr align="center"><td><?php echo $l_service_status;?></td><td colspan="2"><?php echo $l_service_title;?></td><td colspan="3"><?php echo $l_service_action;?></td></tr>
204
	<TR align="center">
205
<?php foreach( $MainServiceStatus as $serviceName => $statusOK ) { ?>
206
<tr>
207
	<?php if ($statusOK) { ?>
208
    <td align="center"><img src="/images/state_ok.gif" width="15" height="15" alt="<?php echo $l_service_status_img_ok; ?>"></td>
209
	<td align="center"><?php $comment="l_$serviceName"; echo "<b>$serviceName</b></td><td>${$comment}" ;?> </td>
210
    <td width="80" align="center">---</td>
1574 richard 211
    <td width="80" align="center"><?php if ($serviceName != "chilli") { echo "<a href=\"".$_SERVER['PHP_SELF']."?action=stop&service=$serviceName\"> $l_service_stop</a>"; } else echo "---";?></td>
838 richard 212
    <td width="80" align="center"><a href="<?php echo $_SERVER['PHP_SELF']."?action=restart&service=$serviceName\"> $l_service_restart";?></a></td>
213
	<?php } else { ?>
214
    <td align="center"><img src="/images/state_error.gif" width="15" height="15" alt="<?php echo $l_service_status_img_ko ?>"></td>
215
    <td align="center"><?php $comment="l_$serviceName"; echo "<b>$serviceName</b></td><td>${$comment}" ;?> </td>
216
    <td width="80" align="center"><a href="<?php echo $_SERVER['PHP_SELF']."?action=start&service=$serviceName\"> $l_service_start";?></a></td>
217
    <td width="80" align="center">---</td>
218
    <td width="80" align="center">---</td>
219
    <?php } ?>
220
</tr>
221
<?php } ?>
222
</td></tr>
223
</table>
224
<table width="100%" border="0" cellspacing="0" cellpadding="0">
1476 richard 225
	<tr><th><?php echo $l_filter_services; ?></th></tr>
226
	<tr bgcolor="#FFCC66"><td><img src="/images/pix.gif" width="1" height="2"></td></tr>
227
</table>
228
<TABLE width="100%" border=1 cellspacing=0 cellpadding=0>
229
	<tr align="center"><td><?php echo $l_service_status;?></td><td colspan="2"><?php echo $l_service_title;?></td><td colspan="3"><?php echo $l_service_action;?></td></tr>
230
	<TR align="center">
231
<?php foreach( $FilterServiceStatus as $serviceName => $statusOK ) { ?>
232
<tr>
233
	<?php if ($statusOK) { ?>
234
    <td align="center"><img src="/images/state_ok.gif" width="15" height="15" alt="<?php echo $l_service_status_img_ok; ?>"></td>
235
	<td align="center"><?php $comment="l_$serviceName"; echo "<b>$serviceName</b></td><td>${$comment}" ;?> </td>
236
    <td width="80" align="center">---</td>
237
    <td width="80" align="center"><a href="<?php echo $_SERVER['PHP_SELF']."?action=stop&service=$serviceName\"> $l_service_stop";?></a></td>
238
    <td width="80" align="center"><a href="<?php echo $_SERVER['PHP_SELF']."?action=restart&service=$serviceName\"> $l_service_restart";?></a></td>
239
	<?php } else { ?>
240
    <td align="center"><img src="/images/state_error.gif" width="15" height="15" alt="<?php echo $l_service_status_img_ko ?>"></td>
241
    <td align="center"><?php $comment="l_$serviceName"; echo "<b>$serviceName</b></td><td>${$comment}" ;?> </td>
242
    <td width="80" align="center"><a href="<?php echo $_SERVER['PHP_SELF']."?action=start&service=$serviceName\"> $l_service_start";?></a></td>
243
    <td width="80" align="center">---</td>
244
    <td width="80" align="center">---</td>
245
    <?php } ?>
246
</tr>
247
<?php } ?>
248
</td></tr>
249
</table>
250
<table width="100%" border="0" cellspacing="0" cellpadding="0">
838 richard 251
	<tr><th><?php echo $l_opt_services; ?></th></tr>
252
	<tr bgcolor="#FFCC66"><td><img src="/images/pix.gif" width="1" height="2"></td></tr>
253
</table>
254
<TABLE width="100%" border=1 cellspacing=0 cellpadding=0>
255
	<tr align="center"><td><?php echo $l_service_status;?></td><td colspan="2"><?php echo $l_service_title;?></td><td colspan="3"><?php echo $l_service_action;?></td></tr>
256
	<TR align="center">
257
<?php foreach( $OptServiceStatus as $serviceName => $statusOK ) { ?>
258
<tr>
259
	<?php if ($statusOK) { ?>
260
    <td align="center"><img src="/images/state_ok.gif" width="15" height="15" alt="<?php echo $l_service_status_img_ok; ?>"></td>
261
	<td align="center"><?php $comment="l_$serviceName"; echo "<b>$serviceName</b></td><td>${$comment}" ;?> </td>
262
    <td width="80" align="center">---</td>
263
    <td width="80" align="center"><a href="<?php echo $_SERVER['PHP_SELF']."?action=stop&service=$serviceName\"> $l_service_stop";?></a></td>
264
    <td width="80" align="center"><a href="<?php echo $_SERVER['PHP_SELF']."?action=restart&service=$serviceName\"> $l_service_restart";?></a></td>
265
	<?php } else { ?>
266
    <td align="center"><img src="/images/state_error.gif" width="15" height="15" alt="<?php echo $l_service_status_img_ko ?>"></td>
267
    <td align="center"><?php $comment="l_$serviceName"; echo "<b>$serviceName</b></td><td>${$comment}" ;?> </td>
268
    <td width="80" align="center"><a href="<?php echo $_SERVER['PHP_SELF']."?action=start&service=$serviceName\"> $l_service_start";?></a></td>
269
    <td width="80" align="center">---</td>
270
    <td width="80" align="center">---</td>
271
    <?php } ?>
272
</tr>
273
<?php } ?>
274
</td></tr>
1574 richard 275
<TABLE width="100%" border="0" cellspacing="0" cellpadding="0">
276
	<tr><th><? echo $l_stop_restart;?></th></tr>
277
	<tr bgcolor="#FFCC66"><td><img src="/images/pix.gif" width="1" height="2"></td></tr>
278
</TABLE>
279
<TABLE width="100%" border=1 cellspacing=0 cellpadding=1>
280
	<tr><td valign="middle" align="left">
281
	<FORM action="services.php" method=POST><b>
282
		<select name='choix'></b>
283
			<option selected value="reboot"><?echo "$l_reboot";?>
284
			<option value="halt"><?echo "$l_halt";?>
285
		</select>
286
		<input type=submit value="<?echo "$l_execute";?>">
287
	</FORM>
288
	</td></tr>
289
</TABLE>
838 richard 290
</body>
291
</html>