. XigmaNAS® is a registered trademark of Michael Zoon (zoon01@xigmanas.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. 3. Neither the name of the developer nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE DEVELOPER ``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 DEVELOPER OR CONTRIBUTORS 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. */ require_once 'auth.inc'; require_once 'guiconfig.inc'; require_once("bastille_manager-lib.inc"); if(isset($_GET['uuid'])): $uuid = $_GET['uuid']; endif; if(isset($_POST['uuid'])): $uuid = $_POST['uuid']; endif; $pgtitle = [gtext("Extensions"), gtext('Bastille'),gtext('Utilities')]; if(isset($_GET['jailname'])): $container = $_GET['jailname']; endif; if(isset($_POST['jailname'])): $container = $_POST['jailname']; endif; $cnid = FALSE; if(isset($container) && !empty($container)): $pconfig['uuid'] = uuid(); $pconfig['jailname'] = $container; if(preg_match('/^([^\/\@]+)(\/([^\@]+))?\@(.*)$/', $pconfig['jailname'], $m)): $pconfig['name'] = $m['']; else: $pconfig['name'] = 'unknown'; endif; else: // not supported $pconfig = []; endif; if($_POST): global $configfile; global $backup_path; global $rootfolder; unset($input_errors); $pconfig = $_POST; if(isset($_POST['Cancel']) && $_POST['Cancel']): header('Location: bastille_manager_gui.php'); exit; endif; if(isset($_POST['action'])): $action = $_POST['action']; endif; if(empty($action)): $input_errors[] = sprintf(gtext("The attribute '%s' is required."), gtext("Action")); else: switch($action): case 'advanced': // Input validation not required if(empty($input_errors)): $container = []; $container['uuid'] = $_POST['uuid']; $container['jailname'] = $_POST['jailname']; $confirm_name = $pconfig['confirmname']; $item = $container['jailname']; $_SESSION['item'] = $item; if ($_POST['advanced']): header('Location: bastille_manager_editor.php'); exit; else: $input_errors[] = gtext("Failed to open editor, confirmation is required."); endif; endif; break; case 'backup': // Input validation not required if(empty($input_errors)): $container = []; $container['uuid'] = $_POST['uuid']; $container['jailname'] = $_POST['jailname']; $confirm_name = $pconfig['confirmname']; $item = $container['jailname']; $cmd = ("/usr/local/bin/bastille export '{$item}'"); unset($output,$retval);mwexec2($cmd,$output,$retval); if($retval == 0): $savemsg .= gtext("Container backup process completed successfully."); exec("echo '{$date}: {$application}: Container backup process completed successfully for {$item}' >> {$logfile}"); //header('Location: bastille_manager_gui.php'); //exit; else: $input_errors[] = gtext("Failed to backup container."); exec("echo '{$date}: {$application}: Failed to backup container {$item}' >> {$logfile}"); endif; endif; break; case 'update': // Input validation not required if(empty($input_errors)): $container = []; $container['uuid'] = $_POST['uuid']; $container['jailname'] = $_POST['jailname']; $confirm_name = $pconfig['confirmname']; $item = $container['jailname']; $current_release = exec("/usr/bin/grep '\-RELEASE' {$jail_dir}/{$item}/fstab | awk '{print $1}' | grep -o '[^/]*$'"); if ($_POST['update_base']): $cmd = ("/usr/local/sbin/bastille-init update '{$current_release}'"); else: $cmd = ("/usr/local/sbin/bastille-init update '{$item}'"); endif; unset($output,$retval);mwexec2($cmd,$output,$retval); if($retval == 0): $update_release = exec("/usr/sbin/jexec -l {$item} freebsd-version"); $savemsg .= sprintf(gtext("Container release updated to %s successfully."),$update_release); exec("echo '{$date}: {$application}: Container release updated to {$update_release} successfully for {$item}' >> {$logfile}"); //header('Location: bastille_manager_gui.php'); //exit; else: $input_errors[] = sprintf(gtext("Failed to update container %s."),$item); #$input_errors[] = gtext("Failed to update container, either is not running or is highly secured (check securelevel/allow.chflags)."); exec("echo '{$date}: {$application}: Failed to update container {$item}' >> {$logfile}"); endif; endif; break; case 'base': // Input validation not required if(empty($input_errors)): $container = []; $container['uuid'] = $_POST['uuid']; $container['jailname'] = $_POST['jailname']; $item = $container['jailname']; $current_release = exec("/usr/bin/grep '\-RELEASE' {$jail_dir}/{$item}/fstab | awk '{print $1}' | grep -o '[^/]*$'"); $new_release = $pconfig['release']; if(!$current_release): $savemsg .= gtext("Base release change disabled for thick containers."); else: $cmd = ("/usr/local/sbin/bastille-init --upgrade {$item} {$current_release} {$new_release}"); unset($output,$retval);mwexec2($cmd,$output,$retval); if($retval == 0): $savemsg .= sprintf(gtext("Container base release changed to %s successfully."),$new_release); exec("echo '{$date}: {$application}: Container base release changed to {$new_release} on {$item} successfully' >> {$logfile}"); //header('Location: bastille_manager_gui.php'); //exit; else: $input_errors[] = sprintf(gtext("Failed to change container base release to %s, either it is running or is not a thin container."),$new_release); exec("echo '{$date}: {$application}: Failed to change container base release to {$new_release} on {$item}' >> {$logfile}"); endif; endif; endif; break; case 'autoboot': // Input validation not required if(empty($input_errors)): $container = []; $container['uuid'] = $_POST['uuid']; $container['jailname'] = $_POST['jailname']; $confirm_name = $pconfig['confirmname']; $item = $container['jailname']; $cmd = ("/usr/sbin/sysrc -f {$configfile} {$item}_AUTO_START=\"YES\""); unset($output,$retval);mwexec2($cmd,$output,$retval); if($retval == 0): header('Location: bastille_manager_gui.php'); exit; else: $input_errors[] = gtext("Failed to set auto-boot."); endif; endif; break; case 'noauto': // Input validation not required if(empty($input_errors)): $container = []; $container['uuid'] = $_POST['uuid']; $container['jailname'] = $_POST['jailname']; $confirm_name = $pconfig['confirmname']; $item = $container['jailname']; $cmd = ("/usr/sbin/sysrc -f {$configfile} {$item}_AUTO_START=\"NO\""); unset($output,$retval);mwexec2($cmd,$output,$retval); if($retval == 0): header('Location: bastille_manager_gui.php'); exit; else: $input_errors[] = gtext("Failed to set no-auto."); endif; endif; break; case 'fstab': // Input validation not required if(empty($input_errors)): $container = []; $container['uuid'] = $_POST['uuid']; $container['jailname'] = $_POST['jailname']; $confirm_name = $pconfig['confirmname']; $item = $container['jailname']; $sourcedir = $pconfig['source_path']; $targetdir = $pconfig['target_path']; $is_running = exec("/usr/sbin/jls | /usr/bin/grep -w '{$item}'"); $paths_exist = exec("/bin/cat {$rootfolder}/jails/{$item}/fstab | /usr/bin/grep -w '{$sourcedir} {$targetdir}'"); if ($_POST['readonly']): $dir_mode = "ro"; else: $dir_mode = "rw"; endif; if ((!$sourcedir) || (!$targetdir)): $input_errors[] = gtext("Soure/Target directory can't be left blank."); else: if (!isset($_POST['path_check']) && (!preg_match( '/\/mnt\/(.*\S)/', $sourcedir))): $input_errors[] = gtext("The Source directory MUST be set to a directory below '/mnt/'."); elseif (!isset($_POST['path_check']) && (!preg_match( '/\/(.*\S)\/mnt\/(.*\S)/', $targetdir))): $input_errors[] = sprintf(gtext("The Target directory MUST be set to a directory below '/mnt/'."),$targetdir); else: if (!is_dir("{$sourcedir}")): $input_errors[] = sprintf(gtext("Soure directory: %s does not exist."),$sourcedir); else: if (!$paths_exist): $cmd = ("/bin/echo \"{$sourcedir} {$targetdir} nullfs {$dir_mode} 0 0\" >> {$rootfolder}/jails/{$item}/fstab"); unset($output,$retval);mwexec2($cmd,$output,$retval); if($retval == 0): if ($_POST['createdir']): if (!is_dir("{$targetdir}")): mkdir("$targetdir"); endif; if ($_POST['automount']): if ($is_running): exec("/sbin/mount_nullfs -o {$dir_mode} {$sourcedir} {$targetdir}"); endif; endif; endif; $savemsg .= gtext("Edited the fstab successfully."); else: $input_errors[] = gtext("Failed to edit the fstab."); endif; else: $savemsg .= gtext("Directories already exist in the fstab."); endif; endif; endif; endif; endif; break; case 'delete': // Delete a contained if(empty($input_errors)): $container = []; $container['uuid'] = $_POST['uuid']; $container['jailname'] = $_POST['jailname']; $confirm_name = $pconfig['confirmname']; $item = $container['jailname']; $plugin_icon = "{$image_dir}/{$item}_icon.png"; if(strcmp($confirm_name, $item) !== 0): $input_errors[] = gtext("Failed to destroy container, name confirmation is required."); break; else: if ($_POST['nowstop']): $cmd = ("/usr/local/bin/bastille destroy -f {$item}"); else: $cmd = ("/usr/local/bin/bastille destroy {$item}"); endif; unset($output,$retval);mwexec2($cmd,$output,$retval); if($retval == 0): exec("/usr/sbin/sysrc -f {$configfile} -qx {$item}_AUTO_START"); if(file_exists($plugin_icon)): unlink($plugin_icon); endif; header('Location: bastille_manager_gui.php'); exit; else: $input_errors[] = gtext("Failed to destroy container, make sure this container is stopped."); endif; endif; endif; break; default: $input_errors[] = sprintf(gtext("The attribute '%s' is invalid."), 'action'); break; endswitch; endif; endif; include 'fbegin.inc'; ?> add_area_tabnav()-> push()-> add_tabnav_upper()-> ins_tabnav_record('bastille_manager_gui.php',gettext('Containers'),gettext('Reload page'),true)-> ins_tabnav_record('bastille_manager_info.php',gettext('Information'),gettext('Reload page'),true)-> ins_tabnav_record('bastille_manager_maintenance.php',gettext('Maintenance'),gettext('Reload page'),true); $document->render(); ?>