|
|
@ -22,6 +22,7 @@ flash as a binary. Also handles the hit counter on the main page. |
|
|
|
#include "io.h" |
|
|
|
#include "io.h" |
|
|
|
#include <ip_addr.h> |
|
|
|
#include <ip_addr.h> |
|
|
|
#include "espmissingincludes.h" |
|
|
|
#include "espmissingincludes.h" |
|
|
|
|
|
|
|
#include "../include/httpdconfig.h" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//cause I can't be bothered to write an ioGetLed()
|
|
|
|
//cause I can't be bothered to write an ioGetLed()
|
|
|
@ -104,139 +105,50 @@ int ICACHE_FLASH_ATTR cgiReadFlash(HttpdConnData *connData) { |
|
|
|
if (*pos>=0x40200000+(512*1024)) return HTTPD_CGI_DONE; else return HTTPD_CGI_MORE; |
|
|
|
if (*pos>=0x40200000+(512*1024)) return HTTPD_CGI_DONE; else return HTTPD_CGI_MORE; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#define LOOKING_FOR_SECTION 1 |
|
|
|
uint32_t postCounter = 0; |
|
|
|
#define CHECKING_HEADERS 2 |
|
|
|
|
|
|
|
#define IN_DATA 3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct updateState_t { |
|
|
|
int ICACHE_FLASH_ATTR cgiUploadEspfs(HttpdConnData *connData) { |
|
|
|
char delimiter[61]; |
|
|
|
|
|
|
|
int step; |
|
|
|
|
|
|
|
} updateState_t; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
char* bin_strstr(char *haystack, char *needle, int haystackLen, int needleLen){ |
|
|
|
|
|
|
|
if(needleLen < 0){ |
|
|
|
|
|
|
|
needleLen = strlen(needle); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
char * end = haystack + haystackLen; |
|
|
|
|
|
|
|
for(; haystack < end; haystack++){ |
|
|
|
|
|
|
|
if(*haystack == *needle){ |
|
|
|
|
|
|
|
int match = true; |
|
|
|
|
|
|
|
for(int i = 1; i< needleLen; i++){ |
|
|
|
|
|
|
|
if(*(needle + i) != *(haystack + i)){ |
|
|
|
|
|
|
|
match = false; |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if(match){ |
|
|
|
|
|
|
|
return haystack; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return NULL; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//Cgi to allow user to upload a new espfs image
|
|
|
|
|
|
|
|
int ICACHE_FLASH_ATTR updateWeb(HttpdConnData *connData) { |
|
|
|
|
|
|
|
os_printf("data size : %d\r\n", connData->postBuffLen); |
|
|
|
|
|
|
|
updateState_t *state; |
|
|
|
|
|
|
|
if (connData->conn==NULL) { |
|
|
|
if (connData->conn==NULL) { |
|
|
|
//Connection aborted. Clean up.
|
|
|
|
//Connection aborted. Clean up.
|
|
|
|
return HTTPD_CGI_DONE; |
|
|
|
return HTTPD_CGI_DONE; |
|
|
|
} |
|
|
|
} |
|
|
|
if(connData->requestType == GET){ |
|
|
|
SpiFlashOpResult ret; |
|
|
|
httpdStartResponse(connData, 200); |
|
|
|
int x; |
|
|
|
httpdHeader(connData, "Content-Length", "135"); |
|
|
|
uint32_t flashOff = ESPFS_POS; |
|
|
|
httpdEndHeaders(connData); |
|
|
|
uint32_t flashSize = ESPFS_SIZE; |
|
|
|
httpdSend(connData, "<html><body><form method=\"POST\" enctype=\"multipart/form-data\"><input type=\"file\" name=\"file\"><input type=\"submit\"></form></body></html>", 135); |
|
|
|
|
|
|
|
}else if(connData->requestType == POST){ |
|
|
|
|
|
|
|
if(connData->postReceived == connData->postBuffLen){ |
|
|
|
|
|
|
|
//it's the first time this handler has been called for this request
|
|
|
|
|
|
|
|
connData->cgiPrivData = (int*)os_malloc(sizeof(updateState_t)); |
|
|
|
|
|
|
|
state = connData->cgiPrivData; |
|
|
|
|
|
|
|
state->step = LOOKING_FOR_SECTION; |
|
|
|
|
|
|
|
}else{ |
|
|
|
|
|
|
|
state = connData->cgiPrivData; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
char *b; |
|
|
|
//If this is the first time, erase the flash sector
|
|
|
|
char *p; |
|
|
|
if (postCounter == 0){ |
|
|
|
char * end = connData->postBuff + connData->postBuffLen; |
|
|
|
os_printf("Erasing flash at 0x%x...\n", flashOff); |
|
|
|
for(b = connData->postBuff; b < end; b++){ |
|
|
|
// Which segment are we flashing?
|
|
|
|
if(state->step == LOOKING_FOR_SECTION){ |
|
|
|
for (x=0; x<flashSize; x+=4096){ |
|
|
|
if((p = bin_strstr(b, connData->multipartBoundary, connData->postBuffLen - (b - connData->postBuff), -1)) != NULL){ |
|
|
|
spi_flash_erase_sector((flashOff+x)/0x1000); |
|
|
|
os_printf("Found section\r\n"); |
|
|
|
|
|
|
|
// We've found one of the sections, now make sure it's the file
|
|
|
|
|
|
|
|
b = p + strlen(connData->multipartBoundary) + 2; |
|
|
|
|
|
|
|
state->step = CHECKING_HEADERS; |
|
|
|
|
|
|
|
}else{ |
|
|
|
|
|
|
|
os_printf("Not Found section\r\n"); |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
os_printf("Done erasing.\n"); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if(state->step == CHECKING_HEADERS){ |
|
|
|
// Because we get sent 1k chunks until the end, if data is less than 1k, we pad it as it must be the end...right???
|
|
|
|
//os_printf("next data: %s\n", b);
|
|
|
|
if (connData->postBuffSize==1024){ |
|
|
|
if(!os_strncmp(b, "Content-Disposition: form-data", 30)){ |
|
|
|
ret=spi_flash_write((flashOff + postCounter), (uint32 *)connData->postBuff, 1024); |
|
|
|
os_printf("Correct header\r\n"); |
|
|
|
os_printf("Flash return %d\n", ret); |
|
|
|
// It's the Content-Disposition header
|
|
|
|
} else { |
|
|
|
// Find the end of the line
|
|
|
|
// Think we can probably use postReceived to check if it's the last chunk and then pad the original postBuff to avoid allocating another 1k of memory
|
|
|
|
p = os_strstr(b, "\r\n"); |
|
|
|
char *postBuff = (char*)os_zalloc(1024); |
|
|
|
// turn the end of the line into a string end so we can search within the line
|
|
|
|
os_printf("Mallocced buffer of 1024 bytes of last chunk.\n"); |
|
|
|
*p = 0; |
|
|
|
os_memcpy(postBuff, connData->postBuff, connData->postBuffSize); |
|
|
|
if(os_strstr(b, "name=\"file\"") != NULL){ |
|
|
|
ret=spi_flash_write((flashOff + postCounter), (uint32 *)postBuff, 1024); |
|
|
|
os_printf("Correct file\r\n"); |
|
|
|
os_printf("Flash return %d\n", ret); |
|
|
|
b = p + 2; |
|
|
|
|
|
|
|
// it's the correct section, skip to the data
|
|
|
|
|
|
|
|
if((p = os_strstr(b, "\r\n\r\n")) != NULL){ |
|
|
|
|
|
|
|
os_printf("Skipping to data\r\n"); |
|
|
|
|
|
|
|
b = p + 4; |
|
|
|
|
|
|
|
state->step = IN_DATA; |
|
|
|
|
|
|
|
}else{ |
|
|
|
|
|
|
|
os_printf("Couldn't find line endings\r\n"); |
|
|
|
|
|
|
|
os_printf("data: %s\n", b); |
|
|
|
|
|
|
|
return HTTPD_CGI_DONE; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}else{ |
|
|
|
|
|
|
|
// it's the wrong section, skip to the next boundary
|
|
|
|
|
|
|
|
b = p + 1; |
|
|
|
|
|
|
|
state->step = LOOKING_FOR_SECTION; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}else{ |
|
|
|
|
|
|
|
// Skip to the next header
|
|
|
|
|
|
|
|
p = os_strstr(b, "\r\n"); |
|
|
|
|
|
|
|
b = p + 2; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if(state->step == IN_DATA){ |
|
|
|
// Count bytes for data
|
|
|
|
//os_printf("In data\r\n");
|
|
|
|
postCounter = postCounter + connData->postBuffSize;//connData->postBuff);
|
|
|
|
// Make sure it doesn't contain the boundary, but we can't rely on there being no zeroes so can't use strstr
|
|
|
|
os_printf("Wrote %d bytes (%dB of %d)\n", connData->postBuffSize, postCounter, connData->postLen);//&connData->postBuff));
|
|
|
|
if((p = bin_strstr(b, connData->multipartBoundary, connData->postBuffLen - (b - connData->postBuff), -1)) == NULL){ |
|
|
|
|
|
|
|
// all of the data is file data
|
|
|
|
if (postCounter == connData->postLen){ |
|
|
|
}else{ |
|
|
|
httpdSend(connData, "Finished uploading", -1); |
|
|
|
if(b < (p - 2)){ // -2 bytes for the \r\n
|
|
|
|
postCounter=0; |
|
|
|
// This is a byte that's part of the file
|
|
|
|
|
|
|
|
os_printf("%c", *b); |
|
|
|
|
|
|
|
}else{ |
|
|
|
|
|
|
|
os_printf("\r\nComplete\r\n"); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
os_printf("postReceived: %d\r\n", connData->postReceived); |
|
|
|
|
|
|
|
os_printf("postLen : %d\r\n", connData->postLen); |
|
|
|
|
|
|
|
os_printf("data size : %d\r\n", connData->postBuffLen); |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
if(connData->postReceived >= connData->postLen){ |
|
|
|
|
|
|
|
httpdStartResponse(connData, 204); |
|
|
|
|
|
|
|
if (connData->cgiPrivData!=NULL) os_free(connData->cgiPrivData); |
|
|
|
|
|
|
|
return HTTPD_CGI_DONE; |
|
|
|
return HTTPD_CGI_DONE; |
|
|
|
}else{ |
|
|
|
} else { |
|
|
|
return HTTPD_CGI_MORE; |
|
|
|
return HTTPD_CGI_MORE; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
return HTTPD_CGI_DONE; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|