summaryrefslogtreecommitdiffstats
path: root/usr/local/www/diag_nanobsd.php
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2009-07-05 21:00:04 -0400
committerScott Ullrich <sullrich@pfsense.org>2009-07-05 21:00:04 -0400
commit104c11c6952f75b0080684275ee9aff43f8e38b0 (patch)
treebfa3f0f5c5fedddf94b0c3e226ca593acb47d0f3 /usr/local/www/diag_nanobsd.php
parent585fafb26e4819f0a6c4ebaff2650d0937bf9d43 (diff)
downloadpfsense-104c11c6952f75b0080684275ee9aff43f8e38b0.zip
pfsense-104c11c6952f75b0080684275ee9aff43f8e38b0.tar.gz
First stab at diagnostics -> nanobsd page.
Diffstat (limited to 'usr/local/www/diag_nanobsd.php')
-rwxr-xr-xusr/local/www/diag_nanobsd.php180
1 files changed, 180 insertions, 0 deletions
diff --git a/usr/local/www/diag_nanobsd.php b/usr/local/www/diag_nanobsd.php
new file mode 100755
index 0000000..c4be36b
--- /dev/null
+++ b/usr/local/www/diag_nanobsd.php
@@ -0,0 +1,180 @@
+<?php
+/*
+ diag_nanobsd.php
+ Copyright (C) 2009 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.
+*/
+
+##|+PRIV
+##|*IDENT=page-diagnostics-nanobsd
+##|*NAME=Diagnostics: NanoBSD
+##|*DESCR=Allow access to the 'Diagnostics: NanoBSD' page.
+##|*MATCH=diag_nanobsd.php*
+##|-PRIV
+
+
+require_once("guiconfig.inc");
+
+$pgtitle = array("Diagnostics","NanoBSD");
+include("head.inc");
+
+$BOOT_DEVICE=trim(`/sbin/mount | /usr/bin/grep pfsense | /usr/bin/cut -d'/' -f4 | /usr/bin/cut -d' ' -f1`);
+$REAL_BOOT_DEVICE=trim(`/sbin/glabel list | /usr/bin/grep -B2 ufs/{$BOOT_DEVICE} | /usr/bin/head -n 1 | /usr/bin/cut -f3 -d' '`);
+$BOOT_DRIVE=trim(`/sbin/glabel list | /usr/bin/grep -B2 ufs/pfsense | /usr/bin/head -n 1 | /usr/bin/cut -f3 -d' ' | /usr/bin/cut -d's' -f1`);
+
+if(strstr($REAL_BOOT_DEVICE, "s1")) {
+ $SLICE="2";
+ $OLDSLICE="1";
+ $TOFLASH="{$BOOT_DRIVE}s{$SLICE}";
+ $COMPLETE_PATH="{$BOOT_DRIVE}s{$SLICE}a";
+ $GLABEL_SLICE="pfsense1";
+ $UFS_ID="1";
+ $OLD_UFS_ID="0";
+ $BOOTFLASH="{$BOOT_DRIVE}s{$OLDSLICE}";
+} else {
+ $SLICE="1";
+ $OLDSLICE="2";
+ $TOFLASH="{$BOOT_DRIVE}s{$SLICE}";
+ $COMPLETE_PATH="{$BOOT_DRIVE}s{$SLICE}a";
+ $GLABEL_SLICE="pfsense0";
+ $UFS_ID="0";
+ $OLD_UFS_ID="1";
+ $BOOTFLASH="{$BOOT_DRIVE}s{$OLDSLICE}";
+}
+
+if($_POST['bootslice']) {
+ exec("gpart set -a active -i {$SLICE} {$BOOT_DRIVE}");
+ exec("/usr/sbin/boot0cfg -s {$SLICE} -v /dev/{$BOOT_DRIVE}");
+ exec("mkdir /tmp/{$GLABEL_SLICE}");
+ exec("mount /dev/ufs/{$GLABEL_SLICE} /tmp/{$GLABEL_SLICE}");
+ exec("cp /etc/fstab /tmp/{$GLABEL_SLICE}/etc/fstab");
+ $status = exec("sed -i \"\" \"s/pfsense{$OLD_UFS_ID}/pfsense{$UFS_ID}/g\" /tmp/{$GLABEL_SLICE}/etc/fstab");
+ if($status) {
+ file_notice("UpgradeFailure","Something went wrong when trying to update the fstab entry. Aborting upgrade.");
+ exec("umount /tmp/$GLABEL_SLICE");
+ }
+ exec("umount /tmp/$GLABEL_SLICE");
+ $savemsg = "The boot slice has been set to {$BOOT_DRIVE} {$SLICE}";
+}
+
+if($_POST['destslice']) {
+ exec("dd if=/dev/zero of=/dev/{$TOFLASH} bs=1m count=1");
+ exec("/bin/dd if=/dev/{$BOOTFLASH} of=/dev/{$TOFLASH} obs=64k");
+ exec("gpart set -a active -i {$SLICE} {$BOOT_DRIVE}");
+ exec("mkdir /tmp/{$GLABEL_SLICE}");
+ exec("mount /dev/ufs/{$GLABEL_SLICE} /tmp/{$GLABEL_SLICE}");
+ exec("cp /etc/fstab /tmp/{$GLABEL_SLICE}/etc/fstab");
+ $status = exec("sed -i \"\" \"s/pfsense{$OLD_UFS_ID}/pfsense{$UFS_ID}/g\" /tmp/{$GLABEL_SLICE}/etc/fstab");
+ if($status) {
+ file_notice("UpgradeFailure","Something went wrong when trying to update the fstab entry. Aborting upgrade.");
+ exec("umount /tmp/$GLABEL_SLICE");
+ }
+ exec("umount /tmp/$GLABEL_SLICE");
+ exec("/usr/sbin/boot0cfg -s {$SLICE} -v /dev/{$BOOT_DRIVE}");
+}
+
+?>
+
+<body link="#0000CC" vlink="#0000CC" alink="#0000CC" onload="<?=$jsevents["body"]["onload"];?>">
+<script src="/javascript/sorttable.js" type="text/javascript"></script>
+<?php include("fbegin.inc"); ?>
+<?php
+if ($savemsg)
+ print_info_box($savemsg)
+?>
+<table width="100%" border="0" cellpadding="0" cellspacing="0">
+ <tr>
+ <td>
+ <!-- tabs here if you want them -->
+ </td>
+ </tr>
+ <tr>
+ <td id="mainarea">
+ <div class="tabcont">
+ <span class="vexpl">
+ <span class="red">
+ <strong>NOTE:&nbsp</strong>
+ </span>
+ The options on this page are intended for use by advanced users only.
+ <br/>
+ </span>
+ <br/>
+ <table width="100%" border="0" cellpadding="6" cellspacing="0">
+ <tr>
+ <td colspan="2" valign="top" class="listtopic">Bootup information</td>
+ </tr>
+ <tr>
+ <td width="22%" valign="top" class="vncell">Bootup</td>
+ <td width="78%" class="vtable">
+ <form action="diag_nanobsd.php" method="post" name="iform">
+ Bootup slice:
+ <select name='bootslice'>
+ <option value='<?php echo $BOOTFLASH; ?>'>
+ <?php echo $BOOTFLASH; ?>
+ </option>
+ <option value='<?php echo $TOFLASH; ?>'>
+ <?php echo $TOFLASH; ?>
+ </option>
+ </select>
+ <br/>
+ This will set the bootup slice.
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" class="">&nbsp;</td><td><br/><input type='submit' value='Set'></form></td>
+ </tr>
+ <tr>
+ <td colspan="2" valign="top" class="">&nbsp;</td>
+ </tr>
+ <tr>
+ <td colspan="2" valign="top" class="listtopic">Duplicate bootup slice to alternate</td>
+ </tr>
+ <tr>
+ <td width="22%" valign="top" class="vncell">Duplicate bootup slice</td>
+ <td width="78%" class="vtable">
+ <form action="diag_nanobsd.php" method="post" name="iform">
+ Destination slice:
+ <select name='destslice'>
+ <option value='<?php echo $COMPLETE_PATH; ?>'>
+ <?php echo $COMPLETE_PATH; ?>
+ </option>
+ </select>
+ <br/>
+ This will duplicate the bootup slice to the alternate slice. Use this if you would like to duplicate the known good working boot partition to the alternate.
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" class="">&nbsp;</td><td><br/><input type='submit' value='Duplicate'></form></td>
+ </tr>
+ <tr>
+ <td colspan="2" valign="top" class="">&nbsp;</td>
+ </tr>
+ </table>
+ </div>
+ </td>
+ </tr>
+</table>
+<?php require("fend.inc"); ?>
+</body>
+</html>
OpenPOWER on IntegriCloud