1 |
25682561
|
Scott Ullrich
|
<?php
|
2 |
|
|
/* $Id$ */
|
3 |
|
|
/*
|
4 |
|
|
system_firmware_auto.php
|
5 |
1cecfbf7
|
Scott Ullrich
|
Copyright (C) 2008 Scott Ullrich <sullrich@gmail.com>
|
6 |
da55e467
|
Scott Ullrich
|
Copyright (C) 2005 Scott Ullrich
|
7 |
5c59c339
|
Scott Ullrich
|
|
8 |
4b805dbc
|
Renato Botelho
|
Based originally on system_firmware.php
|
9 |
|
|
(C)2003-2004 Manuel Kasper
|
10 |
25682561
|
Scott Ullrich
|
All rights reserved.
|
11 |
|
|
|
12 |
|
|
Redistribution and use in source and binary forms, with or without
|
13 |
|
|
modification, are permitted provided that the following conditions are met:
|
14 |
|
|
|
15 |
|
|
1. Redistributions of source code must retain the above copyright notice,
|
16 |
|
|
this list of conditions and the following disclaimer.
|
17 |
|
|
|
18 |
|
|
2. Redistributions in binary form must reproduce the above copyright
|
19 |
|
|
notice, this list of conditions and the following disclaimer in the
|
20 |
|
|
documentation and/or other materials provided with the distribution.
|
21 |
|
|
|
22 |
|
|
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
23 |
|
|
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
|
24 |
|
|
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
25 |
|
|
AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
|
26 |
|
|
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
27 |
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
28 |
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
29 |
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
30 |
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
31 |
|
|
POSSIBILITY OF SUCH DAMAGE.
|
32 |
|
|
*/
|
33 |
1d333258
|
Scott Ullrich
|
/*
|
34 |
|
|
pfSense_BUILDER_BINARIES: /usr/bin/tar /usr/bin/nohup /bin/cat /sbin/sha256
|
35 |
|
|
pfSense_MODULE: firmware
|
36 |
|
|
*/
|
37 |
25682561
|
Scott Ullrich
|
|
38 |
6b07c15a
|
Matthew Grooms
|
##|+PRIV
|
39 |
|
|
##|*IDENT=page-system-firmware-checkforupdate
|
40 |
|
|
##|*NAME=System: Firmware: Check For Update page
|
41 |
|
|
##|*DESCR=Allow access to the 'System: Firmware: Check For Update' page.
|
42 |
|
|
##|*MATCH=system_firmware_auto.php*
|
43 |
|
|
##|-PRIV
|
44 |
|
|
|
45 |
7385a6b4
|
Scott Ullrich
|
$nocsrf = true;
|
46 |
|
|
|
47 |
da55e467
|
Scott Ullrich
|
require("guiconfig.inc");
|
48 |
4e6593de
|
jim-p
|
require_once("pfsense-utils.inc");
|
49 |
da55e467
|
Scott Ullrich
|
|
50 |
|
|
$curcfg = $config['system']['firmware'];
|
51 |
9b7d7aa9
|
Scott Ullrich
|
|
52 |
ef794b01
|
Scott Ullrich
|
if(isset($curcfg['alturl']['enable']))
|
53 |
da55e467
|
Scott Ullrich
|
$updater_url = "{$config['system']['firmware']['alturl']['firmwareurl']}";
|
54 |
ef794b01
|
Scott Ullrich
|
else
|
55 |
|
|
$updater_url = $g['update_url'];
|
56 |
a30afe0e
|
Scott Ullrich
|
|
57 |
4b805dbc
|
Renato Botelho
|
if($_POST['backupbeforeupgrade'])
|
58 |
a30afe0e
|
Scott Ullrich
|
touch("/tmp/perform_full_backup.txt");
|
59 |
4b805dbc
|
Renato Botelho
|
|
60 |
a18b04d8
|
Colin Fleming
|
$closehead = false;
|
61 |
499fea07
|
Carlos Eduardo Ramos
|
$pgtitle = array(gettext("Diagnostics"),gettext("Firmware"),gettext("Auto Update"));
|
62 |
52380979
|
Scott Ullrich
|
include("head.inc");
|
63 |
|
|
|
64 |
25682561
|
Scott Ullrich
|
?>
|
65 |
|
|
|
66 |
c3ab82a9
|
technical50
|
<meta http-equiv="Content-Type" content="text/html; charset=<?=system_get_language_codeset();?>" />
|
67 |
a18b04d8
|
Colin Fleming
|
<link href="gui.css" rel="stylesheet" type="text/css" />
|
68 |
da55e467
|
Scott Ullrich
|
</head>
|
69 |
|
|
|
70 |
25682561
|
Scott Ullrich
|
<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
|
71 |
da55e467
|
Scott Ullrich
|
|
72 |
25682561
|
Scott Ullrich
|
<?php include("fbegin.inc"); ?>
|
73 |
|
|
|
74 |
|
|
<form action="system_firmware_auto.php" method="post">
|
75 |
a18b04d8
|
Colin Fleming
|
<table width="100%" border="0" cellpadding="6" cellspacing="0" summary="firmware auto-check">
|
76 |
da55e467
|
Scott Ullrich
|
<tr>
|
77 |
|
|
<td>
|
78 |
4b805dbc
|
Renato Botelho
|
<?php
|
79 |
|
|
$tab_array = array();
|
80 |
|
|
$tab_array[] = array(gettext("Manual Update"), false, "system_firmware.php");
|
81 |
|
|
$tab_array[] = array(gettext("Auto Update"), true, "system_firmware_check.php");
|
82 |
|
|
$tab_array[] = array(gettext("Updater Settings"), false, "system_firmware_settings.php");
|
83 |
|
|
if($g['hidedownloadbackup'] == false)
|
84 |
|
|
$tab_array[] = array(gettext("Restore Full Backup"), false, "system_firmware_restorefullbackup.php");
|
85 |
|
|
display_top_tabs($tab_array);
|
86 |
|
|
?>
|
87 |
da55e467
|
Scott Ullrich
|
</td>
|
88 |
|
|
</tr>
|
89 |
25682561
|
Scott Ullrich
|
<tr>
|
90 |
4b805dbc
|
Renato Botelho
|
<td class="tabcont">
|
91 |
a18b04d8
|
Colin Fleming
|
<table width="100%" border="0" cellpadding="6" cellspacing="0" summary="outer">
|
92 |
4b805dbc
|
Renato Botelho
|
<tr>
|
93 |
|
|
<td class="tabcont">
|
94 |
a18b04d8
|
Colin Fleming
|
<table width="100%" border="0" cellpadding="6" cellspacing="0" summary="inner">
|
95 |
4b805dbc
|
Renato Botelho
|
<tr>
|
96 |
a18b04d8
|
Colin Fleming
|
<td align="center">
|
97 |
|
|
<table style="height:15;colspacing:0" width="420" border="0" cellpadding="0" cellspacing="0" summary="images">
|
98 |
4b805dbc
|
Renato Botelho
|
|
99 |
|
|
<tr>
|
100 |
7bc1b968
|
Renato Botelho
|
<td style="background:url('./themes/<?=$g['theme'];?>/images/misc/bar_left.gif')" height="15" width="5"> </td>
|
101 |
4b805dbc
|
Renato Botelho
|
<td>
|
102 |
a18b04d8
|
Colin Fleming
|
<table id="progholder" style="height:15;colspacing:0" width="410" border="0" cellpadding="0" cellspacing="0" summary="">
|
103 |
7bc1b968
|
Renato Botelho
|
<tr><td style="background:url('./themes/<?=$g['theme'];?>/images/misc/bar_gray.gif')" valign="top" align="left">
|
104 |
|
|
<img src="./themes/<?=$g['theme'];?>/images/misc/bar_blue.gif" width="0" height="15" name="progressbar" id="progressbar" alt="" />
|
105 |
a18b04d8
|
Colin Fleming
|
</td></tr>
|
106 |
4b805dbc
|
Renato Botelho
|
</table>
|
107 |
|
|
</td>
|
108 |
7bc1b968
|
Renato Botelho
|
<td style="background:url('./themes/<?=$g['theme'];?>/images/misc/bar_right.gif')" height="15" width="5"></td>
|
109 |
4b805dbc
|
Renato Botelho
|
</tr>
|
110 |
da55e467
|
Scott Ullrich
|
</table>
|
111 |
a18b04d8
|
Colin Fleming
|
<br />
|
112 |
4b805dbc
|
Renato Botelho
|
<!-- status box -->
|
113 |
|
|
<textarea cols="90" rows="1" name="status" id="status" wrap="hard"><?=gettext("Beginning firmware upgrade"); ?>.</textarea>
|
114 |
|
|
<!-- command output box -->
|
115 |
|
|
<textarea cols="90" rows="25" name="output" id="output" wrap="hard"></textarea>
|
116 |
da55e467
|
Scott Ullrich
|
</td>
|
117 |
|
|
</tr>
|
118 |
|
|
</table>
|
119 |
|
|
</td>
|
120 |
|
|
</tr>
|
121 |
4b805dbc
|
Renato Botelho
|
</table>
|
122 |
|
|
</td>
|
123 |
25682561
|
Scott Ullrich
|
</tr>
|
124 |
1c0e3b99
|
Scott Ullrich
|
</table>
|
125 |
25682561
|
Scott Ullrich
|
</form>
|
126 |
a18b04d8
|
Colin Fleming
|
|
127 |
25682561
|
Scott Ullrich
|
<?php include("fend.inc"); ?>
|
128 |
|
|
|
129 |
|
|
<?php
|
130 |
|
|
|
131 |
89f0ac4c
|
Renato Botelho
|
update_status(gettext("Downloading current version information") . "...");
|
132 |
414053da
|
jim-p
|
$nanosize = "";
|
133 |
|
|
if ($g['platform'] == "nanobsd") {
|
134 |
0d7715eb
|
Renato Botelho
|
if (file_exists("/etc/nano_use_vga.txt"))
|
135 |
|
|
$nanosize = "-nanobsd-vga-";
|
136 |
|
|
else
|
137 |
|
|
$nanosize = "-nanobsd-";
|
138 |
|
|
|
139 |
|
|
$nanosize .= strtolower(trim(file_get_contents("/etc/nanosize.txt")));
|
140 |
414053da
|
jim-p
|
}
|
141 |
|
|
|
142 |
bd2b98c9
|
Ermal
|
@unlink("/tmp/{$g['product_name']}_version");
|
143 |
414053da
|
jim-p
|
download_file_with_progress_bar("{$updater_url}/version{$nanosize}", "/tmp/{$g['product_name']}_version");
|
144 |
773c99bc
|
Ermal
|
$latest_version = str_replace("\n", "", @file_get_contents("/tmp/{$g['product_name']}_version"));
|
145 |
|
|
if(!$latest_version) {
|
146 |
89f0ac4c
|
Renato Botelho
|
update_output_window(gettext("Unable to check for updates."));
|
147 |
773c99bc
|
Ermal
|
require("fend.inc");
|
148 |
|
|
exit;
|
149 |
|
|
} else {
|
150 |
4e6593de
|
jim-p
|
$current_installed_buildtime = trim(file_get_contents("/etc/version.buildtime"));
|
151 |
|
|
$current_installed_version = trim(file_get_contents("/etc/version"));
|
152 |
|
|
$latest_version = trim(@file_get_contents("/tmp/{$g['product_name']}_version"));
|
153 |
773c99bc
|
Ermal
|
$latest_version_pfsense = strtotime($latest_version);
|
154 |
|
|
if(!$latest_version) {
|
155 |
89f0ac4c
|
Renato Botelho
|
update_output_window(gettext("Unable to check for updates."));
|
156 |
773c99bc
|
Ermal
|
require("fend.inc");
|
157 |
|
|
exit;
|
158 |
|
|
} else {
|
159 |
4e6593de
|
jim-p
|
if (pfs_version_compare($current_installed_buildtime, $current_installed_version, $latest_version) == -1) {
|
160 |
89f0ac4c
|
Renato Botelho
|
update_status(gettext("Downloading updates") . "...");
|
161 |
773c99bc
|
Ermal
|
conf_mount_rw();
|
162 |
087d875c
|
jim-p
|
if ($g['platform'] == "nanobsd") {
|
163 |
|
|
$update_filename = "latest{$nanosize}.img.gz";
|
164 |
|
|
} else {
|
165 |
|
|
$update_filename = "latest.tgz";
|
166 |
|
|
}
|
167 |
4b805dbc
|
Renato Botelho
|
$status = download_file_with_progress_bar("{$updater_url}/{$update_filename}", "{$g['upload_path']}/latest.tgz", "read_body_firmware");
|
168 |
087d875c
|
jim-p
|
$status = download_file_with_progress_bar("{$updater_url}/{$update_filename}.sha256", "{$g['upload_path']}/latest.tgz.sha256");
|
169 |
773c99bc
|
Ermal
|
conf_mount_ro();
|
170 |
b7596b80
|
Carlos Eduardo Ramos
|
update_output_window("{$g['product_name']} " . gettext("download complete."));
|
171 |
773c99bc
|
Ermal
|
} else {
|
172 |
89f0ac4c
|
Renato Botelho
|
update_output_window(gettext("You are on the latest version."));
|
173 |
773c99bc
|
Ermal
|
require("fend.inc");
|
174 |
|
|
exit;
|
175 |
|
|
}
|
176 |
|
|
}
|
177 |
da55e467
|
Scott Ullrich
|
}
|
178 |
|
|
|
179 |
|
|
/* launch external upgrade helper */
|
180 |
61ffe8b8
|
Renato Botelho
|
$external_upgrade_helper_text = "/etc/rc.firmware ";
|
181 |
|
|
|
182 |
|
|
if($g['platform'] == "nanobsd")
|
183 |
|
|
$external_upgrade_helper_text .= "pfSenseNanoBSDupgrade ";
|
184 |
|
|
else
|
185 |
|
|
$external_upgrade_helper_text .= "pfSenseupgrade ";
|
186 |
|
|
|
187 |
4e6593de
|
jim-p
|
$external_upgrade_helper_text .= "{$g['upload_path']}/latest.tgz";
|
188 |
da55e467
|
Scott Ullrich
|
|
189 |
1d333258
|
Scott Ullrich
|
$downloaded_latest_tgz_sha256 = str_replace("\n", "", `/sbin/sha256 -q {$g['upload_path']}/latest.tgz`);
|
190 |
|
|
$upgrade_latest_tgz_sha256 = str_replace("\n", "", `/bin/cat {$g['upload_path']}/latest.tgz.sha256 | awk '{ print $4 }'`);
|
191 |
da55e467
|
Scott Ullrich
|
|
192 |
563f5b51
|
Scott Ullrich
|
$sigchk = 0;
|
193 |
|
|
|
194 |
|
|
if(!isset($curcfg['alturl']['enable']))
|
195 |
0ba45a79
|
Renato Botelho
|
$sigchk = verify_digital_signature("{$g['upload_path']}/latest.tgz");
|
196 |
563f5b51
|
Scott Ullrich
|
|
197 |
4b798102
|
Ermal
|
$exitstatus = 0;
|
198 |
|
|
if ($sigchk == 1) {
|
199 |
89f0ac4c
|
Renato Botelho
|
$sig_warning = gettext("The digital signature on this image is invalid.");
|
200 |
4b798102
|
Ermal
|
$exitstatus = 1;
|
201 |
|
|
} else if ($sigchk == 2) {
|
202 |
89f0ac4c
|
Renato Botelho
|
$sig_warning = gettext("This image is not digitally signed.");
|
203 |
4b798102
|
Ermal
|
if (!isset($config['system']['firmware']['allowinvalidsig']))
|
204 |
|
|
$exitstatus = 1;
|
205 |
|
|
} else if (($sigchk >= 3)) {
|
206 |
89f0ac4c
|
Renato Botelho
|
$sig_warning = gettext("There has been an error verifying the signature on this image.");
|
207 |
4b798102
|
Ermal
|
$exitstatus = 1;
|
208 |
|
|
}
|
209 |
|
|
|
210 |
|
|
if ($exitstatus) {
|
211 |
4b805dbc
|
Renato Botelho
|
update_status($sig_warning);
|
212 |
|
|
update_output_window(gettext("Update cannot continue. You can disable this check on the Updater Settings tab."));
|
213 |
|
|
require("fend.inc");
|
214 |
|
|
exit;
|
215 |
2646434b
|
Scott Ullrich
|
} else if ($sigchk == 2) {
|
216 |
4b805dbc
|
Renato Botelho
|
update_status("Upgrade in progress...");
|
217 |
|
|
update_output_window("\n" . gettext("Upgrade Image does not contain a signature but the system has been configured to allow unsigned images. One moment please...") . "\n");
|
218 |
2646434b
|
Scott Ullrich
|
}
|
219 |
563f5b51
|
Scott Ullrich
|
|
220 |
0ba45a79
|
Renato Botelho
|
if (!verify_gzip_file("{$g['upload_path']}/latest.tgz")) {
|
221 |
89f0ac4c
|
Renato Botelho
|
update_status(gettext("The image file is corrupt."));
|
222 |
|
|
update_output_window(gettext("Update cannot continue"));
|
223 |
0ba45a79
|
Renato Botelho
|
if (file_exists("{$g['upload_path']}/latest.tgz")) {
|
224 |
|
|
conf_mount_rw();
|
225 |
7dde365c
|
Renato Botelho
|
unlink("{$g['upload_path']}/latest.tgz");
|
226 |
0ba45a79
|
Renato Botelho
|
conf_mount_ro();
|
227 |
|
|
}
|
228 |
563f5b51
|
Scott Ullrich
|
require("fend.inc");
|
229 |
|
|
exit;
|
230 |
|
|
}
|
231 |
|
|
|
232 |
da55e467
|
Scott Ullrich
|
if($downloaded_latest_tgz_sha256 <> $upgrade_latest_tgz_sha256) {
|
233 |
89f0ac4c
|
Renato Botelho
|
update_status(gettext("Downloading complete but sha256 does not match."));
|
234 |
|
|
update_output_window(gettext("Auto upgrade aborted.") . " \n\n" . gettext("Downloaded SHA256") . ": " . $downloaded_latest_tgz_sha256 . "\n\n" . gettext("Needed SHA256") . ": " . $upgrade_latest_tgz_sha256);
|
235 |
d40b3c36
|
Colin Smith
|
} else {
|
236 |
89f0ac4c
|
Renato Botelho
|
update_output_window($g['product_name'] . " " . gettext("is now upgrading.") . "\\n\\n" . gettext("The firewall will reboot once the operation is completed."));
|
237 |
a18b04d8
|
Colin Fleming
|
echo "\n<script type=\"text/javascript\">";
|
238 |
|
|
echo "\n//<![CDATA[";
|
239 |
|
|
echo "\ndocument.progressbar.style.visibility='hidden';";
|
240 |
|
|
echo "\n//]]>";
|
241 |
|
|
echo "\n</script>";
|
242 |
22ef0a3d
|
Ermal
|
mwexec_bg($external_upgrade_helper_text);
|
243 |
d40b3c36
|
Colin Smith
|
}
|
244 |
cdb0117c
|
Scott Ullrich
|
|
245 |
da55e467
|
Scott Ullrich
|
/*
|
246 |
|
|
Helper functions
|
247 |
|
|
*/
|
248 |
d40b3c36
|
Colin Smith
|
|
249 |
9140757d
|
Bill Marquette
|
function read_body_firmware($ch, $string) {
|
250 |
4e6593de
|
jim-p
|
global $fout, $file_size, $downloaded, $counter, $version, $latest_version, $current_installed_version;
|
251 |
da55e467
|
Scott Ullrich
|
$length = strlen($string);
|
252 |
|
|
$downloaded += intval($length);
|
253 |
|
|
$downloadProgress = round(100 * (1 - $downloaded / $file_size), 0);
|
254 |
|
|
$downloadProgress = 100 - $downloadProgress;
|
255 |
|
|
$a = $file_size;
|
256 |
|
|
$b = $downloaded;
|
257 |
|
|
$c = $downloadProgress;
|
258 |
89f0ac4c
|
Renato Botelho
|
$text = " " . gettext("Auto Update Download Status") . "\\n";
|
259 |
5924fa0f
|
Scott Ullrich
|
$text .= "----------------------------------------------------\\n";
|
260 |
4e6593de
|
jim-p
|
$text .= " " . gettext("Current Version") . " : {$current_installed_version}\\n";
|
261 |
89f0ac4c
|
Renato Botelho
|
$text .= " " . gettext("Latest Version") . " : {$latest_version}\\n";
|
262 |
|
|
$text .= " " . gettext("File size") . " : {$a}\\n";
|
263 |
|
|
$text .= " " . gettext("Downloaded") . " : {$b}\\n";
|
264 |
|
|
$text .= " " . gettext("Percent") . " : {$c}%\\n";
|
265 |
5924fa0f
|
Scott Ullrich
|
$text .= "----------------------------------------------------\\n";
|
266 |
da55e467
|
Scott Ullrich
|
$counter++;
|
267 |
|
|
if($counter > 150) {
|
268 |
|
|
update_output_window($text);
|
269 |
|
|
update_progress_bar($downloadProgress);
|
270 |
|
|
$counter = 0;
|
271 |
|
|
}
|
272 |
|
|
fwrite($fout, $string);
|
273 |
|
|
return $length;
|
274 |
ebe916cf
|
Colin Smith
|
}
|
275 |
853167d2
|
Colin Smith
|
|
276 |
773c99bc
|
Ermal
|
?>
|
277 |
a18b04d8
|
Colin Fleming
|
|
278 |
|
|
</body>
|
279 |
|
|
</html>
|