summaryrefslogtreecommitdiffstats
path: root/usr/local/www/diag_smart.php
blob: 1cc916143e60322aabf3de92c48073f767bc8266 (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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
<?php
/*
	diag_smart.php
	Part of pfSense

	Copyright (C) 2013-2015 Electric Sheep Fencing, LP
	All rights reserved

	Some modifications:
	Copyright (C) 2010 - Jim Pingle

	Copyright (C) 2006, Eric Friesen
	All rights reserved

*/

require("guiconfig.inc");

$pgtitle = array(gettext("Diagnostics"), gettext("S.M.A.R.T. Monitor Tools"));
$smartctl = "/usr/local/sbin/smartctl";
$smartd = "/usr/local/sbin/smartd";
$start_script = "/usr/local/etc/rc.d/smartd.sh";

$valid_test_types = array("offline", "short", "long", "conveyance");
$valid_info_types = array("i", "H", "c", "A", "a");
$valid_log_types = array("error", "selftest");

$closehead = false;
include("head.inc");
?>

<style type="text/css">
/*<![CDATA[*/

input {
	font-family: courier new, courier;
	font-weight: normal;
	font-size: 9pt;
}

pre {
	border: 2px solid #435370;
	background: #F0F0F0;
	padding: 1em;
	font-family: courier new, courier;
	white-space: pre;
	line-height: 10pt;
	font-size: 10pt;
}

.label {
	font-family: tahoma, verdana, arial, helvetica;
	font-size: 11px;
	font-weight: bold;
}

.button {
	font-family: tahoma, verdana, arial, helvetica;
	font-weight: bold;
	font-size: 11px;
}

/*]]>*/
</style>
</head>
<body link="#0000CC" vlink="#0000CC" alink="#0000CC">

<?php
include("fbegin.inc");

// Highlights the words "PASSED", "FAILED", and "WARNING".
function add_colors($string) {
	// To add words keep arrays matched by numbers
	$patterns[0] = '/PASSED/';
	$patterns[1] = '/FAILED/';
	$patterns[2] = '/Warning/';
	$replacements[0] = '<b><font color="#00ff00">' . gettext("PASSED") . '</font></b>';
	$replacements[1] = '<b><font color="#ff0000">' . gettext("FAILED") . '</font></b>';
	$replacements[2] = '<font color="#ff0000">' . gettext("Warning") . '</font>';
	ksort($patterns);
	ksort($replacements);
	return preg_replace($patterns, $replacements, $string);
}

// Edits smartd.conf file, adds or removes email for failed disk reporting
function update_email($email) {
	// Did they pass an email?
	if (!empty($email)) {
		// Put it in the smartd.conf file
		shell_exec("/usr/bin/sed -i old 's/^DEVICESCAN.*/DEVICESCAN -H -m " . escapeshellarg($email) . "/' /usr/local/etc/smartd.conf");
	} else {
		// Remove email flags in smartd.conf
		shell_exec("/usr/bin/sed -i old 's/^DEVICESCAN.*/DEVICESCAN/' /usr/local/etc/smartd.conf");
	}
}

function smartmonctl($action) {
	global $start_script;
	shell_exec($start_script . escapeshellarg($action));
}

// What page, aka. action is being wanted
// If they "get" a page but don't pass all arguments, smartctl will throw an error
$action = (isset($_POST['action']) ? $_POST['action'] : $_GET['action']);
$targetdev = basename($_POST['device']);
if (!file_exists('/dev/' . $targetdev)) {
	echo "Device does not exist, bailing.";
	return;
}
switch ($action) {
	// Testing devices
	case 'test':
	{
		$test = $_POST['testType'];
		if (!in_array($test, $valid_test_types)) {
			echo "Invalid test type, bailing.";
			return;
		}
		$output = add_colors(shell_exec($smartctl . " -t " . escapeshellarg($test) . " /dev/" . escapeshellarg($targetdev)));
		echo '<pre>' . $output . '
		<form action="diag_smart.php" method="post" name="abort">
		<input type="hidden" name="device" value="' . $targetdev . '" />
		<input type="hidden" name="action" value="abort" />
		<input type="submit" name="submit" value="' . gettext("Abort") . '" />
		</form>
		</pre>';
		break;
	}

	// Info on devices
	case 'info':
	{
		$type = $_POST['type'];
		if (!in_array($type, $valid_info_types)) {
			echo "Invalid info type, bailing.";
			return;
		}
		$output = add_colors(shell_exec($smartctl . " -" . escapeshellarg($type) . " /dev/" . escapeshellarg($targetdev)));
		echo "<pre>$output</pre>";
		break;
	}

	// View logs
	case 'logs':
	{
		$type = $_POST['type'];
		if (!in_array($type, $valid_log_types)) {
			echo "Invalid log type, bailing.";
			return;
		}
		$output = add_colors(shell_exec($smartctl . " -l " . escapeshellarg($type) . " /dev/" . escapeshellarg($targetdev)));
		echo "<pre>$output</pre>";
		break;
	}

	// Abort tests
	case 'abort':
	{
		$output = shell_exec($smartctl . " -X /dev/" . escapeshellarg($targetdev));
		echo "<pre>$output</pre>";
		break;
	}

	// Config changes, users email in xml config and write changes to smartd.conf
	case 'config':
	{
		if (isset($_POST['submit'])) {
			// DOES NOT WORK YET...
			if ($_POST['testemail']) {
// FIXME				shell_exec($smartd . " -M test -m " . $config['system']['smartmonemail']);
				$savemsg = sprintf(gettext("Email sent to %s"), $config['system']['smartmonemail']);
				smartmonctl("stop");
				smartmonctl("start");
			} else {
				$config['system']['smartmonemail'] = $_POST['smartmonemail'];
				write_config();

				// Don't know what all this means, but it adds the config changed header when config is saved
				$retval = 0;
				config_lock();
				if (stristr($retval, "error") <> true) {
					$savemsg = get_std_save_message($retval);
				} else {
					$savemsg = $retval;
				}
				config_unlock();

				if ($_POST['email']) {
					// Write the changes to the smartd.conf file
					update_email($_POST['smartmonemail']);
				}

				// Send sig HUP to smartd, rereads the config file
				shell_exec("/usr/bin/killall -HUP smartd");
			}
		}
		// Was the config changed? if so , print the message
		if ($savemsg) {
			print_info_box($savemsg);
		}
		// Get users email from the xml file
		$pconfig['smartmonemail'] = $config['system']['smartmonemail'];

		?>
		<!-- Print the tabs across the top -->
		<table width="100%" border="0" cellpadding="0" cellspacing="0" summary="tabs">
			<tr>
				<td>
					<?php
					$tab_array = array();
					$tab_array[0] = array(gettext("Information/Tests"), false, $_SERVER['PHP_SELF'] . "?action=default");
					$tab_array[1] = array(gettext("Config"), true, $_SERVER['PHP_SELF'] . "?action=config");
					display_top_tabs($tab_array);
					?>
				</td>
			</tr>
		</table>
<!-- user email address -->
		<form action="<?= $_SERVER['PHP_SELF']?>" method="post" name="config">
		<table width="100%" border="0" cellpadding="6" cellspacing="0" summary="e-mail">
			<tbody>
				<tr>
					<td colspan="2" valign="top" class="listtopic"><?=gettext("Config"); ?></td>
				</tr>
				<tr>
					<td width="22%" valign="top" class="vncell"><?=gettext("Email Address"); ?></td>
					<td width="78%" class="vtable">
						<input type="text" name="smartmonemail" value="<?=htmlspecialchars($pconfig['smartmonemail'])?>"/>
					</td>
				</tr>
				<tr>
					<td width="22%" valign="top">&nbsp;</td>
					<td width="78%">
						<input type="hidden" name="action" value="config" />
						<input type="hidden" name="email" value="true" />
						<input type="submit" name="submit" value="<?=gettext("Save"); ?>" class="formbtn" />
					</td>
				</tr>
			</tbody>
		</table>
		</form>

<!-- test email -->
		<form action="<?= $_SERVER['PHP_SELF']?>" method="post" name="config">
		<table width="100%" border="0" cellpadding="6" cellspacing="0" summary="test e-mail">
			<tbody>
				<tr>
					<td colspan="2" valign="top" class="listtopic"><?=gettext("Test email"); ?></td>
				</tr>
				<tr>
					<td width="22%" valign="top" class="vncell">&nbsp;</td>
					<td width="78%" class="vtable">
						<?php printf(gettext("Send test email to %s"), $config['system']['smartmonemail']); ?>
					</td>
				</tr>
				<tr>
					<td width="22%" valign="top">&nbsp;</td>
					<td width="78%">
						<input type="hidden" name="action" value="config" />
						<input type="hidden" name="testemail" value="true" />
						<input type="submit" name="submit" value="<?=gettext("Send"); ?>" class="formbtn" />
					</td>
				</tr>
			</tbody>
		</table>
		</form>

		<?php
		break;
	}

	// Default page, prints the forms to view info, test, etc...
	default:
	{
		$devs = get_smart_drive_list();
		?>
		<table width="100%" border="0" cellpadding="0" cellspacing="0" summary="default page">
			<tr>
				<td>
					<?php
					$tab_array = array();
					$tab_array[0] = array(gettext("Information/Tests"), true, $_SERVER['PHP_SELF']);
					//$tab_array[1] = array("Config", false, $_SERVER['PHP_SELF'] . "?action=config");
					display_top_tabs($tab_array);
					?>
				</td>
			</tr>
		</table>
<!--INFO-->
		<form action="<?= $_SERVER['PHP_SELF']?>" method="post" name="info">
		<table width="100%" border="0" cellpadding="6" cellspacing="0" summary="info">
			<tbody>
				<tr>
					<td colspan="2" valign="top" class="listtopic"><?=gettext("Info"); ?></td>
				</tr>
				<tr>
					<td width="22%" valign="top" class="vncell"><?=gettext("Info type"); ?></td>
					<td width="78%" class="vtable">
						<input type="radio" name="type" value="i" /><?=gettext("Info"); ?><br />
						<input type="radio" name="type" value="H" checked="checked" /><?=gettext("Health"); ?><br />
						<input type="radio" name="type" value="c" /><?=gettext("SMART Capabilities"); ?><br />
						<input type="radio" name="type" value="A" /><?=gettext("Attributes"); ?><br />
						<input type="radio" name="type" value="a" /><?=gettext("All"); ?><br />
					</td>
				</tr>
				<tr>
					<td width="22%" valign="top" class="vncell"><?=gettext("Device: /dev/"); ?></td>
					<td width="78%" class="vtable">
						<select name="device">
						<?php
						foreach ($devs as $dev) {
							echo "<option value=\"" . $dev . "\">" . $dev . "</option>";
						}
						?>
						</select>
					</td>
				</tr>
				<tr>
					<td width="22%" valign="top">&nbsp;</td>
					<td width="78%">
						<input type="hidden" name="action" value="info" />
						<input type="submit" name="submit" value="<?=gettext("View"); ?>" class="formbtn" />
					</td>
				</tr>
			</tbody>
		</table>
		</form>
<!--TESTS-->
		<form action="<?= $_SERVER['PHP_SELF']?>" method="post" name="tests">
		<table width="100%" border="0" cellpadding="6" cellspacing="0" summary="tests">
			<tbody>
				<tr>
					<td colspan="2" valign="top" class="listtopic"><?=gettext("Perform Self-tests"); ?></td>
				</tr>
				<tr>
					<td width="22%" valign="top" class="vncell"><?=gettext("Test type"); ?></td>
					<td width="78%" class="vtable">
						<input type="radio" name="testType" value="offline" /><?=gettext("Offline"); ?><br />
						<input type="radio" name="testType" value="short" checked="checked" /><?=gettext("Short"); ?><br />
						<input type="radio" name="testType" value="long" /><?=gettext("Long"); ?><br />
						<input type="radio" name="testType" value="conveyance" /><?=gettext("Conveyance (ATA Disks Only)"); ?><br />
					</td>
				</tr>
				<tr>
					<td width="22%" valign="top" class="vncell"><?=gettext("Device: /dev/"); ?></td>
					<td width="78%" class="vtable">
						<select name="device">
						<?php
						foreach ($devs as $dev) {
							echo "<option value=\"" . $dev . "\">" . $dev . "</option>";
						}
						?>
						</select>
					</td>
				</tr>
				<tr>
					<td width="22%" valign="top">&nbsp;</td>
					<td width="78%">
						<input type="hidden" name="action" value="test" />
						<input type="submit" name="submit" value="<?=gettext("Test"); ?>" class="formbtn" />
					</td>
				</tr>
			</tbody>
		</table>
		</form>
<!--LOGS-->
		<form action="<?= $_SERVER['PHP_SELF']?>" method="post" name="logs">
		<table width="100%" border="0" cellpadding="6" cellspacing="0" summary="logs">
			<tbody>
				<tr>
					<td colspan="2" valign="top" class="listtopic"><?=gettext("View Logs"); ?></td>
				</tr>
				<tr>
					<td width="22%" valign="top" class="vncell"><?=gettext("Log type"); ?></td>
					<td width="78%" class="vtable">
						<input type="radio" name="type" value="error" checked="checked" /><?=gettext("Error"); ?><br />
						<input type="radio" name="type" value="selftest" /><?=gettext("Self-test"); ?><br />
					</td>
				</tr>
				<tr>
					<td width="22%" valign="top" class="vncell"><?=gettext("Device: /dev/"); ?></td>
					<td width="78%" class="vtable">
						<select name="device">
						<?php
						foreach ($devs as $dev) {
							echo "<option value=\"" . $dev . "\">" . $dev . "</option>";
						}
						?>
						</select>
					</td>
				</tr>
				<tr>
					<td width="22%" valign="top">&nbsp;</td>
					<td width="78%">
						<input type="hidden" name="action" value="logs" />
						<input type="submit" name="submit" value="<?=gettext("View"); ?>" class="formbtn" />
					</td>
				</tr>
			</tbody>
		</table>
		</form>
<!--ABORT-->
		<form action="<?= $_SERVER['PHP_SELF']?>" method="post" name="abort">
		<table width="100%" border="0" cellpadding="6" cellspacing="0" summary="abort">
			<tbody>
				<tr>
					<td colspan="2" valign="top" class="listtopic"><?=gettext("Abort tests"); ?></td>
				</tr>
				<tr>
					<td width="22%" valign="top" class="vncell"><?=gettext("Device: /dev/"); ?></td>
					<td width="78%" class="vtable">
						<select name="device">
						<?php
						foreach ($devs as $dev) {
							echo "<option value=\"" . $dev . "\">" . $dev . "</option>";
						}
						?>
						</select>
					</td>
				</tr>
				<tr>
					<td width="22%" valign="top">&nbsp;</td>
					<td width="78%">
						<input type="hidden" name="action" value="abort" />
						<input type="submit" name="submit" value="<?=gettext("Abort"); ?>" class="formbtn" onclick="return confirm('<?=gettext("Do you really want to abort the test?"); ?>')" />
					</td>
				</tr>
			</tbody>
		</table>
		</form>

		<?php
		break;
	}
}

// print back button on pages
if (isset($_POST['submit']) && $_POST['submit'] != "Save") {
?>
	<input type="button" class="formbtn" value="<?=gettext("Back");?>" onclick="window.location.href='<?=$_SERVER['PHP_SELF'];?>'" />
<?php
}
?>
<br />
<?php
if ($ulmsg) {
	echo "<p><strong>" . $ulmsg . "</strong></p>\n";
}
?>

<?php include("fend.inc"); ?>
</body>
</html>
OpenPOWER on IntegriCloud