1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-19 23:22:16 +03:00

Update OTA HTTP Server Header Information (#7633)

The headers sent when an OTA update is requested of an HTTP server have changed in the code. This change is to update the documentation accordingly. PHP sample code was changed but not tested.
This commit is contained in:
Kevin Sidwar 2020-10-06 04:49:27 -06:00 committed by GitHub
parent 01cfc54ccb
commit 7ba31010be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -571,15 +571,16 @@ Example header data:
:: ::
[HTTP_USER_AGENT] => ESP8266-http-Update [User-Agent] => ESP8266-http-Update
[HTTP_X_ESP8266_STA_MAC] => 18:FE:AA:AA:AA:AA [x-ESP8266-STA-MAC] => 18:FE:AA:AA:AA:AA
[HTTP_X_ESP8266_AP_MAC] => 1A:FE:AA:AA:AA:AA [x-ESP8266-AP-MAC] => 1A:FE:AA:AA:AA:AA
[HTTP_X_ESP8266_FREE_SPACE] => 671744 [x-ESP8266-free-space] => 671744
[HTTP_X_ESP8266_SKETCH_SIZE] => 373940 [x-ESP8266-sketch-size] => 373940
[HTTP_X_ESP8266_SKETCH_MD5] => a56f8ef78a0bebd812f62067daf1408a [x-ESP8266-sketch-md5] => a56f8ef78a0bebd812f62067daf1408a
[HTTP_X_ESP8266_CHIP_SIZE] => 4194304 [x-ESP8266-chip-size] => 4194304
[HTTP_X_ESP8266_SDK_VERSION] => 1.3.0 [x-ESP8266-sdk-version] => 1.3.0
[HTTP_X_ESP8266_VERSION] => DOOR-7-g14f53a19 [x-ESP8266-version] => DOOR-7-g14f53a19
[x-ESP8266-mode] => sketch
With this information the script now can check if an update is needed. It is also possible to deliver different binaries based on the MAC address, as in the following example: With this information the script now can check if an update is needed. It is also possible to deliver different binaries based on the MAC address, as in the following example:
@ -608,20 +609,20 @@ With this information the script now can check if an update is needed. It is als
readfile($path); readfile($path);
} }
if(!check_header('HTTP_USER_AGENT', 'ESP8266-http-Update')) { if(!check_header('User-Agent', 'ESP8266-http-Update')) {
header($_SERVER["SERVER_PROTOCOL"].' 403 Forbidden', true, 403); header($_SERVER["SERVER_PROTOCOL"].' 403 Forbidden', true, 403);
echo "only for ESP8266 updater!\n"; echo "only for ESP8266 updater!\n";
exit(); exit();
} }
if( if(
!check_header('HTTP_X_ESP8266_STA_MAC') || !check_header('x-ESP8266-STA-MAC') ||
!check_header('HTTP_X_ESP8266_AP_MAC') || !check_header('x-ESP8266-AP-MAC') ||
!check_header('HTTP_X_ESP8266_FREE_SPACE') || !check_header('x-ESP8266-free-space') ||
!check_header('HTTP_X_ESP8266_SKETCH_SIZE') || !check_header('x-ESP8266-sketch-size') ||
!check_header('HTTP_X_ESP8266_SKETCH_MD5') || !check_header('x-ESP8266-sketch-md5') ||
!check_header('HTTP_X_ESP8266_CHIP_SIZE') || !check_header('x-ESP8266-chip-size') ||
!check_header('HTTP_X_ESP8266_SDK_VERSION') !check_header('x-ESP8266-sdk-version')
) { ) {
header($_SERVER["SERVER_PROTOCOL"].' 403 Forbidden', true, 403); header($_SERVER["SERVER_PROTOCOL"].' 403 Forbidden', true, 403);
echo "only for ESP8266 updater! (header)\n"; echo "only for ESP8266 updater! (header)\n";
@ -633,17 +634,17 @@ With this information the script now can check if an update is needed. It is als
"18:FE:AA:AA:AA:BB" => "TEMP-1.0.0" "18:FE:AA:AA:AA:BB" => "TEMP-1.0.0"
); );
if(!isset($db[$_SERVER['HTTP_X_ESP8266_STA_MAC']])) { if(!isset($db[$_SERVER['x-ESP8266-STA-MAC']])) {
header($_SERVER["SERVER_PROTOCOL"].' 500 ESP MAC not configured for updates', true, 500); header($_SERVER["SERVER_PROTOCOL"].' 500 ESP MAC not configured for updates', true, 500);
} }
$localBinary = "./bin/".$db[$_SERVER['HTTP_X_ESP8266_STA_MAC']].".bin"; $localBinary = "./bin/".$db[$_SERVER['x-ESP8266-STA-MAC']].".bin";
// Check if version has been set and does not match, if not, check if // Check if version has been set and does not match, if not, check if
// MD5 hash between local binary and ESP8266 binary do not match if not. // MD5 hash between local binary and ESP8266 binary do not match if not.
// then no update has been found. // then no update has been found.
if((!check_header('HTTP_X_ESP8266_SDK_VERSION') && $db[$_SERVER['HTTP_X_ESP8266_STA_MAC']] != $_SERVER['HTTP_X_ESP8266_VERSION']) if((!check_header('x-ESP8266-sdk-version') && $db[$_SERVER['x-ESP8266-STA-MAC']] != $_SERVER['x-ESP8266-version'])
|| $_SERVER["HTTP_X_ESP8266_SKETCH_MD5"] != md5_file($localBinary)) { || $_SERVER["x-ESP8266-sketch-md5"] != md5_file($localBinary)) {
sendFile($localBinary); sendFile($localBinary);
} else { } else {
header($_SERVER["SERVER_PROTOCOL"].' 304 Not Modified', true, 304); header($_SERVER["SERVER_PROTOCOL"].' 304 Not Modified', true, 304);