diag_backup.php 32.8 KB
Newer Older
Ad Schellevis's avatar
Ad Schellevis committed
1
<?php
2

Ad Schellevis's avatar
Ad Schellevis committed
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
    Copyright (C) 2014 Deciso B.V.
    Copyright (C) 2004-2009 Scott Ullrich
    Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>
    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.
Ad Schellevis's avatar
Ad Schellevis committed
29 30 31 32 33 34 35 36 37
*/

/* Allow additional execution time 0 = no limit. */
ini_set('max_execution_time', '0');
ini_set('max_input_time', '0');

/* omit no-cache headers because it confuses IE with file downloads */
$omit_nocacheheaders = true;
$nocsrf = true;
38 39

require_once("guiconfig.inc");
40
require_once("interfaces.inc");
41
require_once("filter.inc");
Ad Schellevis's avatar
Ad Schellevis committed
42
require_once("services.inc");
43
require_once("rrd.inc");
44
require_once("system.inc");
45
require_once("pfsense-utils.inc");
Ad Schellevis's avatar
Ad Schellevis committed
46

47 48 49 50
/**
 * check if cron exists
 */
function cron_job_exists($command) {
51 52 53 54 55 56 57
    global $config;
    foreach($config['cron']['item'] as $item) {
        if(strstr($item['command'], $command)) {
            return true;
        }
    }
    return false;
58 59
}

Ad Schellevis's avatar
Ad Schellevis committed
60 61

function rrd_data_xml() {
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
    $rrddbpath = '/var/db/rrd';

    $result = "\t<rrddata>\n";
    $rrd_files = glob("{$rrddbpath}/*.rrd");
    $xml_files = array();
    foreach ($rrd_files as $rrd_file) {
        $basename = basename($rrd_file);
        $xml_file = preg_replace('/\.rrd$/', ".xml", $rrd_file);
        exec("/usr/local/bin/rrdtool dump '{$rrd_file}' '{$xml_file}'");
        $xml_data = @file_get_contents($xml_file);
        @unlink($xml_file);
        if ($xml_data !== false) {
            $result .= "\t\t<rrddatafile>\n";
            $result .= "\t\t\t<filename>{$basename}</filename>\n";
            $result .= "\t\t\t<xmldata>" . base64_encode(gzdeflate($xml_data)) . "</xmldata>\n";
            $result .= "\t\t</rrddatafile>\n";
        }
    }
    $result .= "\t</rrddata>\n";
    return $result;
Ad Schellevis's avatar
Ad Schellevis committed
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
function restore_rrddata() {
    global $config;
    foreach($config['rrddata']['rrddatafile'] as $rrd) {
        if (!empty($rrd['xmldata'])) {
            $rrd_file = "/var/db/rrd/{$rrd['filename']}";
            $xml_file = preg_replace('/\.rrd$/', ".xml", $rrd_file);
            if (file_put_contents($xml_file, gzinflate(base64_decode($rrd['xmldata']))) === false) {
                log_error("Cannot write $xml_file");
                continue;
            }
            $output = array();
            $status = null;
            exec("/usr/local/bin/rrdtool restore -f '{$xml_file}' '{$rrd_file}'", $output, $status);
            if ($status) {
                log_error("rrdtool restore -f '{$xml_file}' '{$rrd_file}' failed returning {$status}.");
                continue;
            }
            unlink($xml_file);
        } elseif (!empty($rrd['data'])) {
            // pfSense 2.0 rrd backup format
            $rrd_file = "/var/db/rrd/{$rrd['filename']}";
            $rrd_fd = fopen($rrd_file, "w");
            if (!$rrd_fd) {
                log_error("Cannot write $rrd_file");
                continue;
            }
            $data = base64_decode($rrd['data']);
            /* Try to decompress the data. */
            $dcomp = @gzinflate($data);
            if ($dcomp) {
                /* If the decompression worked, write the decompressed data */
                if (fwrite($rrd_fd, $dcomp) === false) {
                    log_error("fwrite $rrd_file failed");
                    continue;
                }
            } elseif (fwrite($rrd_fd, $data) === false) {
                  /* If the decompression failed, it wasn't compressed, so write raw data */
                  log_error("fwrite $rrd_file failed");
                  continue;
            }
            if (fclose($rrd_fd) === false) {
                log_error("fclose $rrd_file failed");
                continue;
            }
        }
    }
Ad Schellevis's avatar
Ad Schellevis committed
131 132
}

133 134 135 136 137 138 139 140 141 142 143 144 145
$areas = array(
    'OPNsense' => gettext('OPNsense Additions'),	/* XXX need specifics */
    'aliases' => gettext('Aliases'),
    'bridges' => gettext('Bridge Devices'),
    'ca' => gettext('SSL Certificate Authorities'),
    'cert' => gettext('SSL Certificates'),
    'cron' => gettext('Scheduled Tasks'),
    'dhcpd' => gettext('DHCP Server'),
    'dhcpdv6' => gettext('DHCPv6 Server'),
    'dhcrelay' => gettext('DHCP Relay'),
    'dhcrelay6' => gettext('DHCPv6 Relay'),
    'dnsmasq' => gettext('DNS Forwarder'),
    'dyndnses' => gettext('Dynamic DNS'),
146
    'dnsupdates' => gettext('RFC 2136'),
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
    'filter' => gettext('Firewall Rules'),
    'gateways' => gettext('Gateways'),
    'gifs' => gettext('GIF Devices'),
    'igmpproxy' => gettext('IGMP Proxy'),
    'installedpackages' => gettext('Universal Plug and Play'),	/* XXX only one, reduce depth! */
    'interfaces' => gettext('Interfaces'),
    'ipsec' => gettext('IPSEC'),
    'laggs' => gettext('LAGG Devices'),
    'load_balancer' => gettext('Load Balancer'),
    'nat' => gettext('Network Address Translation'),
    'notifications' => gettext('System Notifications'),
    'ntpd' => gettext('Network Time'),
    'opendns' => gettext('DNS Filter'),
    'openvpn' => gettext('OpenVPN'),
    'ppps' => gettext('Point-to-Point Devices'),
    'pptpd' => gettext('PPTP Server'),
    'proxyarp' => gettext('Proxy ARP'),
    'rrddata' => gettext('RRD Data'),
    'snmpd' => gettext('SNMP Server'),
    'staticroutes' => gettext('Static routes'),
    'sysctl' => gettext('System tunables'),
    'syslog' => gettext('Syslog'),
    'system' => gettext('System'),
    'unbound' => gettext('DNS Resolver'),
    'vlans' => gettext('VLAN Devices'),
    'widgets' => gettext('Dashboard Widgets'),
    'wireless' => gettext('Wireless Devices'),
    'wol' => gettext('Wake on LAN'),
);
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 454 455 456 457 458 459 460 461 462 463 464 465

if ($_SERVER['REQUEST_METHOD'] === 'GET') {
    $pconfig = array();
    $pconfig['GDriveEnabled'] = isset($config['system']['remotebackup']['GDriveEnabled']) ? $config['system']['remotebackup']['GDriveEnabled'] : null;
    $pconfig['GDriveEmail'] = isset($config['system']['remotebackup']['GDriveEmail']) ? $config['system']['remotebackup']['GDriveEmail'] : null;
    $pconfig['GDriveP12key'] = isset($config['system']['remotebackup']['GDriveP12key']) ? $config['system']['remotebackup']['GDriveP12key'] : null;
    $pconfig['GDriveFolderID'] = isset($config['system']['remotebackup']['GDriveFolderID']) ? $config['system']['remotebackup']['GDriveFolderID'] : null;
    $pconfig['GDriveBackupCount'] = isset($config['system']['remotebackup']['GDriveBackupCount']) ? $config['system']['remotebackup']['GDriveBackupCount'] : null;
    $pconfig['GDrivePassword'] = isset($config['system']['remotebackup']['GDrivePassword']) ? $config['system']['remotebackup']['GDrivePassword'] : null;
} elseif ($_SERVER['REQUEST_METHOD'] === 'POST') {
    $input_errors = array();
    $pconfig = $_POST;

    if (!empty($_POST['restore'])) {
        $mode = "restore";
    } elseif (!empty($_POST['download'])) {
        $mode = "download";
    } elseif (!empty($_POST['setup_gdrive'])) {
        $mode = "setup_gdrive";
    } else {
        $mode = false;
    }

    if ($mode == "download") {
        if (!empty($_POST['encrypt']) && (empty($_POST['encrypt_password']) || empty($_POST['encrypt_passconf']))) {
            $input_errors[] = gettext("You must supply and confirm the password for encryption.");
        } elseif (!empty($_POST['encrypt']) && $_POST['encrypt_password'] != $_POST['encrypt_passconf']) {
            $input_errors[] = gettext("The supplied 'Password' and 'Confirm' field values must match.");
        }
        if (count($input_errors) == 0) {
            $host = "{$config['system']['hostname']}.{$config['system']['domain']}";
            $name = "config-{$host}-".date("YmdHis").".xml";
            $data = "";

            if(empty($_POST['backuparea'])) {
                /* backup entire configuration */
                $data = file_get_contents('/conf/config.xml');
            } elseif ($_POST['backuparea'] === "rrddata") {
                $data = rrd_data_xml();
                $name = "{$_POST['backuparea']}-{$name}";
            } else {
                /* backup specific area of configuration */
                $data = backup_config_section($_POST['backuparea']);
                $name = "{$_POST['backuparea']}-{$name}";
            }

            /*
             *  Backup RRD Data
             */
            if ($_POST['backuparea'] !== "rrddata" && empty($_POST['donotbackuprrd'])) {
                $rrd_data_xml = rrd_data_xml();
                $closing_tag = "</opnsense>";
                $data = str_replace($closing_tag, $rrd_data_xml . $closing_tag, $data);
            }

            if (!empty($_POST['encrypt'])) {
                $data = encrypt_data($data, $_POST['encrypt_password']);
                tagfile_reformat($data, $data, "config.xml");
            }

            $size = strlen($data);
            header("Content-Type: application/octet-stream");
            header("Content-Disposition: attachment; filename={$name}");
            header("Content-Length: $size");
            if (isset($_SERVER['HTTPS'])) {
                header('Pragma: ');
                header('Cache-Control: ');
            } else {
                header("Pragma: private");
                header("Cache-Control: private, must-revalidate");
            }
            echo $data;
            exit;
        }
    } elseif ($mode == "restore") {
        // unpack data and perform validation
        $data = null;
        if (!empty($_POST['decrypt']) && (empty($_POST['decrypt_password']) || empty($_POST['decrypt_passconf']))) {
            $input_errors[] = gettext("You must supply and confirm the password for decryption.");
        } elseif (!empty($_POST['decrypt']) && $_POST['decrypt_password'] != $_POST['decrypt_passconf']) {
            $input_errors[] = gettext("The supplied 'Password' and 'Confirm' field values must match.");
        }
        /* read the file contents */
        if (is_uploaded_file($_FILES['conffile']['tmp_name'])) {
            $data = file_get_contents($_FILES['conffile']['tmp_name']);
            if(empty($data)) {
                log_error(sprintf(gettext("Warning, could not read file %s"), $_FILES['conffile']['tmp_name']));
                $input_errors[] = sprintf(gettext("Warning, could not read file %s"), $_FILES['conffile']['tmp_name']);
            }
        } else {
            $input_errors[] = gettext("The configuration could not be restored (file upload error).");
        }

        if (!empty($_POST['decrypt'])) {
            if (!tagfile_deformat($data, $data, "config.xml")) {
                $input_errors[] = gettext("The uploaded file does not appear to contain an encrypted OPNsense configuration.");
            }
            $data = decrypt_data($data, $_POST['decrypt_password']);
        }

        if(!empty($_POST['restorearea']) && !stristr($data, "<" . $_POST['restorearea'] . ">")) {
            /* restore a specific area of the configuration */
            $input_errors[] = gettext("You have selected to restore an area but we could not locate the correct xml tag.");
        }

        if (count($input_errors) == 0) {
            if(stristr($data, "<m0n0wall>")) {
                log_error(gettext("Upgrading m0n0wall configuration to OPNsense."));
                /* m0n0wall was found in config.  convert it. */
                $data = str_replace("m0n0wall", "pfsense", $data);
                $m0n0wall_upgrade = true;
            }
            if (!empty($_POST['restorearea'])) {
                if (!restore_config_section($_POST['restorearea'], $data)) {
                    $input_errors[] = gettext("You have selected to restore an area but we could not locate the correct xml tag.");
                } else {
                    if (!empty($config['rrddata'])) {
                        restore_rrddata();
                        unset($config['rrddata']);
                        write_config();
                        convert_config();
                    }
                    filter_configure();
                    $savemsg = gettext("The configuration area has been restored.  You may need to reboot the firewall.");
                }
            } else {
                /* restore the entire configuration */
                $filename = $_FILES['conffile']['tmp_name'];
                file_put_contents($filename, $data);
                $cnf = OPNsense\Core\Config::getInstance();
                if ($cnf->restoreBackup($filename)) {
                    /* this will be picked up by /index.php */
                    mark_subsystem_dirty("restore");
                    $config = parse_config();
                    /* extract out rrd items, unset from $config when done */
                    if($config['rrddata']) {
                        restore_rrddata();
                        unset($config['rrddata']);
                        write_config();
                        convert_config();
                    }
                    if($m0n0wall_upgrade) {
                        if(!empty($config['system']['gateway'])) {
                            $config['interfaces']['wan']['gateway'] = $config['system']['gateway'];
                        }
                        /* optional if list */
                        $ifdescrs = get_configured_interface_list(true, true);
                        /* remove special characters from interface descriptions */
                        if(is_array($ifdescrs)) {
                            foreach($ifdescrs as $iface) {
                                $config['interfaces'][$iface]['descr'] = preg_replace('/[^a-z_0-9]/i','',$config['interfaces'][$iface]['descr']);
                            }
                            /* check for interface names with an alias */
                            foreach($ifdescrs as $iface) {
                                if(is_alias($config['interfaces'][$iface]['descr'])) {
                                    // Firewall rules
                                    $origname = $config['interfaces'][$iface]['descr'];
                                    $newname  = $config['interfaces'][$iface]['descr'] . "Alias";
                                    update_alias_names_upon_change(array('filter', 'rule'), array('source', 'address'), $newname, $origname);
                                    update_alias_names_upon_change(array('filter', 'rule'), array('destination', 'address'), $newname, $origname);
                                    // NAT Rules
                                    update_alias_names_upon_change(array('nat', 'rule'), array('source', 'address'), $newname, $origname);
                                    update_alias_names_upon_change(array('nat', 'rule'), array('destination', 'address'), $newname, $origname);
                                    update_alias_names_upon_change(array('nat', 'rule'), array('target'), $newname, $origname);
                                    // Alias in an alias
                                    update_alias_names_upon_change(array('aliases', 'alias'), array('address'), $newname, $origname);
                                }
                            }
                        }
                        // Reset configuration version to something low
                        // in order to force the config upgrade code to
                        // run through with all steps that are required.
                        $config['system']['version'] = "1.0";
                        // Deal with descriptions longer than 63 characters
                        for ($i = 0; isset($config["filter"]["rule"][$i]); $i++) {
                            if(count($config['filter']['rule'][$i]['descr']) > 63) {
                                $config['filter']['rule'][$i]['descr'] = substr($config['filter']['rule'][$i]['descr'], 0, 63);
                            }
                        }
                        // Move interface from ipsec to enc0
                        for ($i = 0; isset($config["filter"]["rule"][$i]); $i++) {
                            if($config['filter']['rule'][$i]['interface'] == "ipsec") {
                                $config['filter']['rule'][$i]['interface'] = "enc0";
                            }
                        }
                        // Convert icmp types
                        // http://www.openbsd.org/cgi-bin/man.cgi?query=icmp&sektion=4&arch=i386&apropos=0&manpath=OpenBSD+Current
                        for ($i = 0; isset($config["filter"]["rule"][$i]); $i++) {
                            if($config["filter"]["rule"][$i]['icmptype']) {
                                switch($config["filter"]["rule"][$i]['icmptype']) {
                                    case "echo":
                                        $config["filter"]["rule"][$i]['icmptype'] = "echoreq";
                                        break;
                                    case "unreach":
                                        $config["filter"]["rule"][$i]['icmptype'] = "unreach";
                                        break;
                                    case "echorep":
                                        $config["filter"]["rule"][$i]['icmptype'] = "echorep";
                                        break;
                                    case "squench":
                                        $config["filter"]["rule"][$i]['icmptype'] = "squench";
                                        break;
                                    case "redir":
                                        $config["filter"]["rule"][$i]['icmptype'] = "redir";
                                        break;
                                    case "timex":
                                        $config["filter"]["rule"][$i]['icmptype'] = "timex";
                                        break;
                                    case "paramprob":
                                        $config["filter"]["rule"][$i]['icmptype'] = "paramprob";
                                        break;
                                    case "timest":
                                        $config["filter"]["rule"][$i]['icmptype'] = "timereq";
                                        break;
                                    case "timestrep":
                                        $config["filter"]["rule"][$i]['icmptype'] = "timerep";
                                        break;
                                    case "inforeq":
                                        $config["filter"]["rule"][$i]['icmptype'] = "inforeq";
                                        break;
                                    case "inforep":
                                        $config["filter"]["rule"][$i]['icmptype'] = "inforep";
                                        break;
                                    case "maskreq":
                                        $config["filter"]["rule"][$i]['icmptype'] = "maskreq";
                                        break;
                                    case "maskrep":
                                        $config["filter"]["rule"][$i]['icmptype'] = "maskrep";
                                        break;
                                }
                            }
                        }
                        write_config();
                        convert_config();
                        $savemsg = gettext("The m0n0wall configuration has been restored and upgraded to OPNsense.");
                    }
                    setup_serial_port();
                } else {
                    $input_errors[] = gettext("The configuration could not be restored.");
                }
            }
        }
    } elseif ( $mode == "setup_gdrive" ){
        if (!isset($config['system']['remotebackup'])) {
            $config['system']['remotebackup'] = array() ;
        }
        $config['system']['remotebackup']['GDriveEnabled'] = $_POST['GDriveEnabled'];
        $config['system']['remotebackup']['GDriveEmail'] =   $_POST['GDriveEmail'] ;
        $config['system']['remotebackup']['GDriveFolderID'] = $_POST['GDriveFolderID'];
        $config['system']['remotebackup']['GDrivePassword'] = $_POST['GDrivePassword'];
        if (is_numeric($_POST['GDriveBackupCount'])) {
            $config['system']['remotebackup']['GDriveBackupCount'] = $_POST['GDriveBackupCount'];
        } else {
            $config['system']['remotebackup']['GDriveBackupCount'] = 30;
        }

        if ( $_POST['GDrivePasswordConfirm'] != $_POST['GDrivePassword'] ) {
            // log error, but continue
            $input_errors[] = gettext("The supplied 'Password' and 'Confirm' field values must match.");
        }

        if (is_uploaded_file($_FILES['GDriveP12file']['tmp_name'])) {
            $data = file_get_contents($_FILES['GDriveP12file']['tmp_name']);
            $config['system']['remotebackup']['GDriveP12key'] = base64_encode($data);
        } elseif ($config['system']['remotebackup']['GDriveEnabled'] != "on") {
            unset($config['system']['remotebackup']['GDriveP12key']);
        }

        write_config();
        // test / perform backup
        try {
            $filesInBackup = backup_to_google_drive() ;
            $cron_job = "/usr/local/opnsense/scripts/remote_backup.php";
            if (!cron_job_exists($cron_job)) {
                // initial cron job install
                install_cron_job($cron_job,true,0,1);
            }
        } catch (Exception $e) {
            $filesInBackup = array() ;
        }

        if (count($filesInBackup) == 0) {
             $input_errors[] = gettext("Google Drive communication failure");
        } else {
             $input_messages = gettext("Backup succesfull, current filelist:");
            foreach ($filesInBackup as $filename => $file) {
                 $input_messages = $input_messages . "<br>" . $filename ;
            }
        }
    }
Ad Schellevis's avatar
Ad Schellevis committed
466 467 468 469 470
}

include("head.inc");
?>

471
<body>
Ad Schellevis's avatar
Ad Schellevis committed
472
<?php include("fbegin.inc"); ?>
473

Ad Schellevis's avatar
Ad Schellevis committed
474 475
<script type="text/javascript">
//<![CDATA[
476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505
$( document ).ready(function() {
    // show encryption password
    $("#encryptconf").change(function(event){
        event.preventDefault();
        if ($("#encryptconf").prop('checked')) {
            $("#encrypt_opts").removeClass("hidden");
        } else {
            $("#encrypt_opts").addClass("hidden");
        }
    });

    // show decryption password
    $("#decryptconf").change(function(event){
        event.preventDefault();
        if ($("#decryptconf").prop('checked')) {
            $("#decrypt_opts").removeClass("hidden");
        } else {
            $("#decrypt_opts").addClass("hidden");
        }
    });

    $("#backuparea").change(function(event){
        if ($("#backuparea").val() == "rrddata") {
            $("#dotnotbackuprrd").prop('disabled', true);
        } else {
            $("#dotnotbackuprrd").prop('disabled', false);
        }
    });

});
Ad Schellevis's avatar
Ad Schellevis committed
506 507 508
//]]>
</script>

509 510 511 512 513 514
<section class="page-content-main">
  <div class="container-fluid">
    <div class="row">
      <?php if (isset($savemsg)) print_info_box($savemsg); ?>
      <?php if (is_subsystem_dirty('restore')): ?><br/>
      <form action="reboot.php" method="post">
515 516
        <input name="Submit" type="hidden" value="Yes" />
        <?php print_info_box(gettext("The firewall configuration has been changed.") . "<br />" . gettext("The firewall is now rebooting."));?><br />
517 518 519 520 521
      </form>
      <?php endif; ?>
      <?php if ($input_messages) print_info_box($input_messages); ?>
      <?php if (isset($input_errors) && count($input_errors) > 0) print_input_errors($input_errors); ?>
      <form action="diag_backup.php" method="post" enctype="multipart/form-data">
522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586
        <section class="col-xs-12">
          <section class="__mb">
            <div class="content-box">
              <header class="content-box-head container-fluid">
                <h3><?=gettext('Download')?></h3>
              </header>
              <div class="content-box-main">
                <div class="table-responsive">
                  <table class="table table-striped">
                    <tbody>
                      <tr>
                        <td>
                          <?=gettext("Click this button to download the system configuration in XML format."); ?><br /><br />
                          <?=gettext("Backup area:");?>
                          <select name="backuparea" id="backuparea">
                            <option value=""><?=gettext("ALL");?></option>
<?php
                          foreach($areas as $area => $areaname):
                              if($area !== "rrddata" && (!isset($config[$area]) || !is_array($config[$area]))) {
                                  continue;
                              };?>
                            <option value="<?=$area;?>"><?=$areaname;?></option>
<?php
                          endforeach;?>
                          </select>
                      </tr>
                      <tr>
                        <td>
                          <input name="encrypt" type="checkbox" id="encryptconf" />
                          <?=gettext("Encrypt this configuration file."); ?><br/>
                          <input name="donotbackuprrd" type="checkbox" id="dotnotbackuprrd" checked="checked" />
                          <?=gettext("Do not backup RRD data (NOTE: RRD Data can consume 4+ megabytes of config.xml space!)"); ?>
                          <div class="hidden table-responsive" id="encrypt_opts">
                            <table class="table table-condensed">
                                <tr>
                                  <td><?=gettext("Password:"); ?></td>
                                  <td><input name="encrypt_password" type="password" value="" /></td>
                                </tr>
                                <tr>
                                  <td><?=gettext("confirm:"); ?></td>
                                  <td><input name="encrypt_passconf" type="password" value="" /> </td>
                                </tr>
                            </table>
                          </div>
                          <hr/>
                          <input name="download" type="submit" class="btn btn-primary __mt" value="<?=gettext("Download configuration"); ?>" />
                        </td>
                      </tr>
                    </tbody>
                  </table>
                </div>
              </div>
            </div>
          </section>
          <section class="__mb">
            <div class="content-box">
              <header class="content-box-head container-fluid">
                <h3><?=gettext("Restore"); ?></h3>
              </header>
              <div class="content-box-main ">
                <div class="table-responsive">
                  <table class="table table-striped">
                    <tbody>
                      <tr>
                        <td>
587
                          <?=gettext("Open a configuration XML file and click the button below to restore the configuration."); ?>
588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628
                          <br /><br />
                          <?=gettext("Restore area:"); ?>
                          <select name="restorearea" id="restorearea">
                            <option value=""><?=gettext("ALL");?></option>
<?php
                          foreach($areas as $area => $areaname):?>
                            <option value="<?=$area;?>"><?=$areaname;?></option>
<?php
                          endforeach;?>
                          </select>
                        </td>
                      </tr>
                      <tr>
                        <td>
                          <input name="conffile" type="file" id="conffile" />
                          <input name="decrypt" type="checkbox" id="decryptconf"/>
                          <?=gettext("Configuration file is encrypted."); ?>
                          <div class="hidden table-responsive" id="decrypt_opts">
                            <table class="table table-condensed">
                                <tr>
                                  <td><?=gettext("Password:"); ?></td>
                                  <td><input name="decrypt_password" type="password" value="" /></td>
                                </tr>
                                <tr>
                                  <td><?=gettext("confirm:"); ?></td>
                                  <td><input name="decrypt_passconf" type="password" value="" /> </td>
                                </tr>
                            </table>
                          </div>
                          <hr/>
                          <input name="restore" type="submit" class="btn btn-primary" id="restore" value="<?=gettext("Restore configuration"); ?>" />
                          <hr/>
                          <p><strong><span class="text-danger"><?=gettext("Note:"); ?> <?=gettext("The firewall will reboot after restoring the configuration."); ?></span></strong></p>
                        </td>
                      </tr>
                    </tbody>
                  </table>
                </div>
              </div>
            </div>
          </section>
629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697
          <section class="__mb">
            <div class="content-box">
              <header class="content-box-head container-fluid">
                <h3><?=gettext("Google Drive"); ?></h3>
              </header>
              <div class="content-box-main ">
                <div class="table-responsive">
                  <table class="table table-striped ">
                    <thead>
                      <tr>
                        <th class="col-sm-1"></th>
                        <th class="col-sm-3"></th>
                      </tr>
                    </thead>
                    <tbody>
                     <tr>
                       <td><?=gettext("Enable"); ?> </td>
                       <td>
                         <input name="GDriveEnabled" type="checkbox" <?=!empty($pconfig['GDriveEnabled']) ? "checked" : "";?> >
                       </td>
                     </tr>
                     <tr>
                       <td><?=gettext("Email Address"); ?> </td>
                       <td>
                         <input name="GDriveEmail" value="<?=$pconfig['GDriveEmail'];?>" type="text">
                       </td>
                     </tr>
                     <tr>
                       <td><?=gettext("P12 key"); ?> <?=!empty($pconfig['GDriveP12key']) ? gettext("(replace)") : gettext("(not loaded)"); ?> </td>
                       <td>
                         <input name="GDriveP12file" type="file">
                       </td>
                     </tr>
                     <tr>
                       <td><?=gettext("Folder ID"); ?> </td>
                       <td>
                         <input name="GDriveFolderID" value="<?=$pconfig['GDriveFolderID'];?>" type="text">
                       </td>
                     </tr>
                     <tr>
                       <td><?=gettext("Backup Count"); ?> </td>
                       <td>
                         <input name="GDriveBackupCount" value="<?=$pconfig['GDriveBackupCount'];?>"  type="text">
                       </td>
                     </tr>
                     <tr>
                       <td colspan=2><?=gettext("Password protect your data"); ?> :</td>
                     </tr>
                     <tr>
                       <td><?=gettext("Password :"); ?></td>
                       <td>
                         <input name="GDrivePassword" type="password" value="<?=$pconfig['GDrivePassword'];?>" />
                       </td>
                     </tr>
                     <tr>
                       <td><?=gettext("Confirm :"); ?></td>
                       <td>
                         <input name="GDrivePasswordConfirm" type="password" value="<?=$pconfig['GDrivePassword'];?>" />
                       </td>
                     </tr>
                     <tr>
                       <td>
                         <input name="setup_gdrive" class="btn btn-primary" id="Gdrive" value="<?=gettext("Setup/Test Google Drive");?>" type="submit">
                       </td>
                       <td></td>
                     </tr>
                    </tbody>
                  </table>
                </div>
698 699
              </div>
            </div>
700
          </section>
701
        </section>
702 703
      </form>
    </div>
704 705
  </div>
</section>
Ad Schellevis's avatar
Ad Schellevis committed
706

707 708
<?php include("foot.inc"); ?>

Ad Schellevis's avatar
Ad Schellevis committed
709
<?php
710
if (is_subsystem_dirty('restore')) {
711
  system_reboot();
712
}