2011-03-19 22:04:13 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* netutils/webserver/httpd.c
|
|
|
|
* httpd Web server
|
|
|
|
*
|
2012-02-18 19:13:30 +01:00
|
|
|
* Copyright (C) 2007-2009, 2011-2012 Gregory Nutt. All rights reserved.
|
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
2011-03-19 22:04:13 +01:00
|
|
|
*
|
|
|
|
* This is a leverage of similar logic from uIP:
|
|
|
|
*
|
|
|
|
* Author: Adam Dunkels <adam@sics.se>
|
|
|
|
* Copyright (c) 2004, Adam Dunkels.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* The uIP web server is a very simplistic implementation of an HTTP
|
|
|
|
* server. It can serve web pages and files from a read-only ROM
|
|
|
|
* filesystem, and provides a very small scripting language.
|
|
|
|
*
|
|
|
|
* 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 Institute nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``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 INSTITUTE 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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <debug.h>
|
|
|
|
|
2012-09-18 01:02:58 +02:00
|
|
|
#ifndef CONFIG_NETUTILS_HTTPD_SINGLECONNECT
|
2012-09-17 21:44:53 +02:00
|
|
|
# include <pthread.h>
|
|
|
|
#endif
|
|
|
|
|
2012-03-04 00:18:34 +01:00
|
|
|
#include <nuttx/net/uip/uip.h>
|
2011-03-19 22:04:13 +01:00
|
|
|
#include <apps/netutils/uiplib.h>
|
|
|
|
#include <apps/netutils/httpd.h>
|
|
|
|
|
|
|
|
#include "httpd.h"
|
|
|
|
#include "httpd_cgi.h"
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
|
2012-09-11 15:19:59 +02:00
|
|
|
#if !defined(CONFIG_NETUTILS_HTTPD_SCRIPT_DISABLE) && defined(CONFIG_NETUTILS_HTTPD_SENDFILE)
|
|
|
|
# error "Script support and CONFIG_NETUTILS_HTTPD_SENDFILE are mutually exclusive"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(CONFIG_NETUTILS_HTTPD_SENDFILE) && defined(CONFIG_NETUTILS_HTTPD_MMAP)
|
|
|
|
# error "CONFIG_NETUTILS_HTTPD_SENDFILE and CONFIG_NETUTILS_HTTPD_MMAP are mutually exclusive"
|
|
|
|
#endif
|
|
|
|
|
2011-03-19 22:04:13 +01:00
|
|
|
#define ISO_nl 0x0a
|
|
|
|
#define ISO_space 0x20
|
|
|
|
#define ISO_bang 0x21
|
|
|
|
#define ISO_percent 0x25
|
|
|
|
#define ISO_period 0x2e
|
|
|
|
#define ISO_slash 0x2f
|
|
|
|
#define ISO_colon 0x3a
|
|
|
|
|
2012-09-04 18:59:24 +02:00
|
|
|
#ifndef CONFIG_NETUTILS_HTTPD_PATH
|
|
|
|
# define CONFIG_NETUTILS_HTTPD_PATH "/mnt"
|
|
|
|
#endif
|
|
|
|
|
2012-09-18 14:34:43 +02:00
|
|
|
#ifndef CONFIG_NETUTILS_HTTPD_ERRPATH
|
|
|
|
# define CONFIG_NETUTILS_HTTPD_ERRPATH ""
|
|
|
|
#endif
|
|
|
|
|
2012-09-18 01:02:58 +02:00
|
|
|
/* The correct way to disable receive timeout errors is by setting the
|
|
|
|
* timeout to zero.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CONFIG_NETUTILS_HTTPD_TIMEOUT
|
|
|
|
# define CONFIG_NETUTILS_HTTPD_TIMEOUT 0
|
|
|
|
#endif
|
|
|
|
|
2011-03-19 22:04:13 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Private Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
2012-09-04 18:59:24 +02:00
|
|
|
#ifndef CONFIG_NETUTILS_HTTPD_SCRIPT_DISABLE
|
2012-09-01 01:05:51 +02:00
|
|
|
static const char g_httpindexpath[] = "/index.shtml";
|
2012-09-04 18:59:24 +02:00
|
|
|
#else
|
|
|
|
static const char g_httpindexpath[] = "/index.html";
|
|
|
|
#endif
|
2011-03-19 22:04:13 +01:00
|
|
|
|
|
|
|
static const char g_httpcmdget[] = "GET ";
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
2012-09-04 18:59:24 +02:00
|
|
|
static int httpd_open(const char *name, struct httpd_fs_file *file)
|
|
|
|
{
|
2012-09-11 15:19:59 +02:00
|
|
|
#if defined(CONFIG_NETUTILS_HTTPD_SENDFILE)
|
|
|
|
return httpd_sendfile_open(name, file);
|
|
|
|
#elif defined(CONFIG_NETUTILS_HTTPD_MMAP)
|
2012-09-04 18:59:24 +02:00
|
|
|
return httpd_mmap_open(name, file);
|
|
|
|
#else
|
|
|
|
return httpd_fs_open(name, file);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static int httpd_close(struct httpd_fs_file *file)
|
|
|
|
{
|
2012-09-11 15:19:59 +02:00
|
|
|
#if defined(CONFIG_NETUTILS_HTTPD_SENDFILE)
|
|
|
|
return httpd_sendfile_close(file);
|
|
|
|
#elif defined(CONFIG_NETUTILS_HTTPD_MMAP)
|
2012-09-04 18:59:24 +02:00
|
|
|
return httpd_mmap_close(file);
|
|
|
|
#else
|
|
|
|
return OK;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2011-03-19 22:04:13 +01:00
|
|
|
#ifdef CONFIG_NETUTILS_HTTPD_DUMPBUFFER
|
|
|
|
static void httpd_dumpbuffer(FAR const char *msg, FAR const char *buffer, unsigned int nbytes)
|
|
|
|
{
|
|
|
|
/* CONFIG_DEBUG, CONFIG_DEBUG_VERBOSE, and CONFIG_DEBUG_NET have to be
|
|
|
|
* defined or the following does nothing.
|
|
|
|
*/
|
|
|
|
|
|
|
|
nvdbgdumpbuffer(msg, (FAR const uint8_t*)buffer, nbytes);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
# define httpd_dumpbuffer(msg,buffer,nbytes)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_NETUTILS_HTTPD_DUMPPSTATE
|
|
|
|
static void httpd_dumppstate(struct httpd_state *pstate, const char *msg)
|
|
|
|
{
|
|
|
|
#if defined(CONFIG_DEBUG) && defined(CONFIG_DEBUG_VERBOSE) && defined(CONFIG_DEBUG_NET)
|
|
|
|
nvdbg("[%d] pstate(%p): [%s]\n", pstate->ht_sockfd, pstate, msg);
|
|
|
|
nvdbg(" filename: [%s]\n", pstate->ht_filename);
|
|
|
|
nvdbg(" htfile len: %d\n", pstate->ht_file.len);
|
|
|
|
nvdbg(" sockfd: %d\n", pstate->ht_sockfd);
|
|
|
|
nvdbg(" scriptptr: %p\n", pstate->ht_scriptptr);
|
|
|
|
nvdbg(" scriptlen: %d\n", pstate->ht_scriptlen);
|
|
|
|
nvdbg(" sndlen: %d\n", pstate->ht_sndlen);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
# define httpd_dumppstate(pstate, msg)
|
|
|
|
#endif
|
|
|
|
|
2012-09-04 18:59:24 +02:00
|
|
|
#ifndef CONFIG_NETUTILS_HTTPD_SCRIPT_DISABLE
|
2011-03-19 22:04:13 +01:00
|
|
|
static void next_scriptstate(struct httpd_state *pstate)
|
|
|
|
{
|
|
|
|
char *p;
|
|
|
|
p = strchr(pstate->ht_scriptptr, ISO_nl) + 1;
|
|
|
|
pstate->ht_scriptlen -= (unsigned short)(p - pstate->ht_scriptptr);
|
|
|
|
pstate->ht_scriptptr = p;
|
|
|
|
}
|
2012-09-04 18:59:24 +02:00
|
|
|
#endif
|
2011-03-19 22:04:13 +01:00
|
|
|
|
2012-09-04 18:59:24 +02:00
|
|
|
#ifndef CONFIG_NETUTILS_HTTPD_SCRIPT_DISABLE
|
2011-03-19 22:04:13 +01:00
|
|
|
static int handle_script(struct httpd_state *pstate)
|
|
|
|
{
|
|
|
|
int len;
|
|
|
|
char *ptr;
|
|
|
|
|
|
|
|
while (pstate->ht_file.len > 0)
|
|
|
|
{
|
|
|
|
/* Check if we should start executing a script */
|
|
|
|
|
|
|
|
if (*pstate->ht_file.data == ISO_percent && *(pstate->ht_file.data + 1) == ISO_bang)
|
|
|
|
{
|
|
|
|
pstate->ht_scriptptr = pstate->ht_file.data + 3;
|
|
|
|
pstate->ht_scriptlen = pstate->ht_file.len - 3;
|
|
|
|
if (*(pstate->ht_scriptptr - 1) == ISO_colon)
|
|
|
|
{
|
2012-09-04 18:59:24 +02:00
|
|
|
if (httpd_open(pstate->ht_scriptptr + 1, &pstate->ht_file) != OK)
|
|
|
|
{
|
|
|
|
return ERROR;
|
|
|
|
}
|
|
|
|
|
2011-03-19 22:04:13 +01:00
|
|
|
send(pstate->ht_sockfd, pstate->ht_file.data, pstate->ht_file.len, 0);
|
2012-09-04 18:59:24 +02:00
|
|
|
|
|
|
|
httpd_close(&pstate->ht_file);
|
2011-03-19 22:04:13 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-09-05 20:03:37 +02:00
|
|
|
httpd_cgifunction f;
|
|
|
|
|
|
|
|
f = httpd_cgi(pstate->ht_scriptptr);
|
|
|
|
if (f != NULL)
|
|
|
|
{
|
|
|
|
f(pstate, pstate->ht_scriptptr);
|
|
|
|
}
|
2011-03-19 22:04:13 +01:00
|
|
|
}
|
2012-09-18 14:34:43 +02:00
|
|
|
|
2011-03-19 22:04:13 +01:00
|
|
|
next_scriptstate(pstate);
|
|
|
|
|
|
|
|
/* The script is over, so we reset the pointers and continue
|
|
|
|
* sending the rest of the file
|
|
|
|
*/
|
|
|
|
|
|
|
|
pstate->ht_file.data = pstate->ht_scriptptr;
|
|
|
|
pstate->ht_file.len = pstate->ht_scriptlen;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* See if we find the start of script marker in the block of HTML
|
|
|
|
* to be sent
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (pstate->ht_file.len > HTTPD_IOBUFFER_SIZE)
|
|
|
|
{
|
|
|
|
len = HTTPD_IOBUFFER_SIZE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
len = pstate->ht_file.len;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*pstate->ht_file.data == ISO_percent)
|
|
|
|
{
|
|
|
|
ptr = strchr(pstate->ht_file.data + 1, ISO_percent);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ptr = strchr(pstate->ht_file.data, ISO_percent);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ptr != NULL && ptr != pstate->ht_file.data)
|
|
|
|
{
|
|
|
|
len = (int)(ptr - pstate->ht_file.data);
|
|
|
|
if (len >= HTTPD_IOBUFFER_SIZE)
|
|
|
|
{
|
|
|
|
len = HTTPD_IOBUFFER_SIZE;
|
|
|
|
}
|
|
|
|
}
|
2012-09-18 14:34:43 +02:00
|
|
|
|
2011-03-19 22:04:13 +01:00
|
|
|
send(pstate->ht_sockfd, pstate->ht_file.data, len, 0);
|
|
|
|
pstate->ht_file.data += len;
|
|
|
|
pstate->ht_file.len -= len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return OK;
|
|
|
|
}
|
2012-09-04 18:59:24 +02:00
|
|
|
#endif
|
2011-03-19 22:04:13 +01:00
|
|
|
|
2012-09-18 14:34:43 +02:00
|
|
|
static int send_chunk(struct httpd_state *pstate, const char *buf, int len)
|
2011-03-19 22:04:13 +01:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
2012-09-18 14:34:43 +02:00
|
|
|
httpd_dumpbuffer("Outgoing chunk", buf, len);
|
|
|
|
ret = send(pstate->ht_sockfd, buf, len, 0);
|
|
|
|
if (ret < 0)
|
2011-03-19 22:04:13 +01:00
|
|
|
{
|
2012-09-18 14:34:43 +02:00
|
|
|
return ERROR;
|
2011-03-19 22:04:13 +01:00
|
|
|
}
|
|
|
|
|
2012-09-18 14:34:43 +02:00
|
|
|
buf += ret;
|
|
|
|
len -= ret;
|
2011-03-19 22:04:13 +01:00
|
|
|
}
|
|
|
|
while (len > 0);
|
2012-09-04 18:59:24 +02:00
|
|
|
|
2011-03-19 22:04:13 +01:00
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
2012-09-18 14:34:43 +02:00
|
|
|
static int send_headers(struct httpd_state *pstate, int status)
|
2012-09-01 01:05:51 +02:00
|
|
|
{
|
2012-09-18 14:34:43 +02:00
|
|
|
const char *mime;
|
|
|
|
const char *ptr;
|
|
|
|
char s[128];
|
|
|
|
int i;
|
2012-09-01 01:05:51 +02:00
|
|
|
|
2012-09-18 14:34:43 +02:00
|
|
|
static const struct
|
|
|
|
{
|
|
|
|
const char *ext;
|
|
|
|
const char *mime;
|
|
|
|
} a[] =
|
|
|
|
{
|
|
|
|
#ifndef CONFIG_NETUTILS_HTTPD_SCRIPT_DISABLE
|
|
|
|
{ "shtml", "text/html" },
|
|
|
|
#endif
|
|
|
|
{ "html", "text/html" },
|
|
|
|
{ "css", "text/css" },
|
|
|
|
{ "txt", "text/plain" },
|
|
|
|
{ "js", "text/javascript" },
|
|
|
|
|
|
|
|
{ "png", "image/png" },
|
|
|
|
{ "gif", "image/gif" },
|
|
|
|
{ "jpeg", "image/jpeg" },
|
|
|
|
{ "jpg", "image/jpeg" }
|
|
|
|
};
|
|
|
|
|
|
|
|
ptr = strrchr(pstate->ht_filename, ISO_period);
|
|
|
|
if (ptr == NULL)
|
|
|
|
{
|
|
|
|
mime = "application/octet-stream";
|
|
|
|
}
|
|
|
|
else
|
2012-09-01 01:05:51 +02:00
|
|
|
{
|
2012-09-18 14:34:43 +02:00
|
|
|
mime = "text/plain";
|
|
|
|
|
|
|
|
for (i = 0; i < sizeof a / sizeof *a; i++)
|
2012-09-04 18:59:24 +02:00
|
|
|
{
|
2012-09-18 14:34:43 +02:00
|
|
|
if (strncmp(a[i].ext, ptr + 1, strlen(a[i].ext)) == 0)
|
|
|
|
{
|
|
|
|
mime = a[i].mime;
|
|
|
|
break;
|
|
|
|
}
|
2012-09-04 18:59:24 +02:00
|
|
|
}
|
2012-09-01 01:05:51 +02:00
|
|
|
}
|
2012-09-18 14:34:43 +02:00
|
|
|
|
|
|
|
i = snprintf(s, sizeof s,
|
|
|
|
"HTTP/1.0 %d %s\r\n"
|
|
|
|
#ifndef CONFIG_NETUTILS_HTTPD_SERVERHEADER_DISABLE
|
|
|
|
"Server: uIP/NuttX http://nuttx.org/\r\n"
|
|
|
|
#endif
|
|
|
|
"Connection: close\r\n"
|
|
|
|
"Content-type: %s\r\n"
|
|
|
|
"\r\n",
|
|
|
|
status,
|
|
|
|
status >= 400 ? "Error" : "OK",
|
|
|
|
mime);
|
|
|
|
|
|
|
|
return send_chunk(pstate, s, i);
|
2012-09-01 01:05:51 +02:00
|
|
|
}
|
|
|
|
|
2012-09-18 14:34:43 +02:00
|
|
|
static int httpd_senderror(struct httpd_state *pstate, int status)
|
2011-03-19 22:04:13 +01:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2012-09-18 14:34:43 +02:00
|
|
|
nvdbg("[%d] sending error '%d'\n", pstate->ht_sockfd, status);
|
|
|
|
|
|
|
|
if (status < 400 || status >= 600)
|
2011-03-19 22:04:13 +01:00
|
|
|
{
|
2012-09-18 14:34:43 +02:00
|
|
|
status = 500;
|
2011-03-19 22:04:13 +01:00
|
|
|
}
|
2012-09-18 14:34:43 +02:00
|
|
|
|
|
|
|
(void) snprintf(pstate->ht_filename, sizeof pstate->ht_filename,
|
|
|
|
"%s/%d.html",
|
|
|
|
CONFIG_NETUTILS_HTTPD_ERRPATH, status);
|
|
|
|
|
|
|
|
if (send_headers(pstate, status) != OK)
|
2011-03-19 22:04:13 +01:00
|
|
|
{
|
2012-09-18 14:34:43 +02:00
|
|
|
return ERROR;
|
2011-03-19 22:04:13 +01:00
|
|
|
}
|
2012-09-18 14:34:43 +02:00
|
|
|
|
|
|
|
if (httpd_open(pstate->ht_filename, &pstate->ht_file) != OK)
|
2012-09-17 20:18:44 +02:00
|
|
|
{
|
2012-09-18 14:34:43 +02:00
|
|
|
char s[10 + 1];
|
|
|
|
|
|
|
|
(void) snprintf(s, sizeof s, "Error %d\n", status);
|
|
|
|
|
|
|
|
ret = send_chunk(pstate, s, sizeof s - 1);
|
2012-09-17 20:18:44 +02:00
|
|
|
}
|
2011-03-19 22:04:13 +01:00
|
|
|
else
|
|
|
|
{
|
2012-09-18 14:34:43 +02:00
|
|
|
#ifdef CONFIG_NETUTILS_HTTPD_SENDFILE
|
|
|
|
ret = httpd_sendfile_send(pstate->ht_sockfd, &pstate->ht_file);
|
|
|
|
#else
|
|
|
|
ret = send_chunk(pstate, pstate->ht_file.data, pstate->ht_file.len);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
(void) httpd_close(&pstate->ht_file);
|
2011-03-19 22:04:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int httpd_sendfile(struct httpd_state *pstate)
|
|
|
|
{
|
2012-09-04 18:59:24 +02:00
|
|
|
#ifndef CONFIG_NETUTILS_HTTPD_SCRIPT_DISABLE
|
2011-03-19 22:04:13 +01:00
|
|
|
char *ptr;
|
2012-09-04 18:59:24 +02:00
|
|
|
#endif
|
2011-03-19 22:04:13 +01:00
|
|
|
int ret = ERROR;
|
|
|
|
|
|
|
|
pstate->ht_sndlen = 0;
|
|
|
|
|
|
|
|
nvdbg("[%d] sending file '%s'\n", pstate->ht_sockfd, pstate->ht_filename);
|
2012-09-04 18:59:24 +02:00
|
|
|
|
2012-09-05 20:03:37 +02:00
|
|
|
#ifdef CONFIG_NETUTILS_HTTPD_CGIPATH
|
|
|
|
{
|
|
|
|
httpd_cgifunction f;
|
|
|
|
|
|
|
|
f = httpd_cgi(pstate->ht_filename);
|
|
|
|
if (f != NULL)
|
|
|
|
{
|
|
|
|
f(pstate, pstate->ht_filename);
|
|
|
|
|
2012-09-18 14:34:43 +02:00
|
|
|
return OK;
|
2012-09-05 20:03:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-09-04 18:59:24 +02:00
|
|
|
if (httpd_open(pstate->ht_filename, &pstate->ht_file) != OK)
|
2011-03-19 22:04:13 +01:00
|
|
|
{
|
|
|
|
ndbg("[%d] '%s' not found\n", pstate->ht_sockfd, pstate->ht_filename);
|
2012-09-18 14:34:43 +02:00
|
|
|
return httpd_senderror(pstate, 404);
|
2011-03-19 22:04:13 +01:00
|
|
|
}
|
2012-09-18 14:34:43 +02:00
|
|
|
|
|
|
|
if (send_headers(pstate, 200) == OK)
|
2011-03-19 22:04:13 +01:00
|
|
|
{
|
2012-09-04 18:59:24 +02:00
|
|
|
#ifndef CONFIG_NETUTILS_HTTPD_SCRIPT_DISABLE
|
2012-09-18 14:34:43 +02:00
|
|
|
ptr = strchr(pstate->ht_filename, ISO_period);
|
|
|
|
if (ptr != NULL &&
|
|
|
|
strncmp(ptr, g_httpextensionshtml, strlen(g_httpextensionshtml)) == 0)
|
|
|
|
{
|
|
|
|
ret = handle_script(pstate);
|
|
|
|
}
|
|
|
|
else
|
2012-09-04 18:59:24 +02:00
|
|
|
#endif
|
2012-09-18 14:34:43 +02:00
|
|
|
{
|
2012-09-11 15:19:59 +02:00
|
|
|
#ifdef CONFIG_NETUTILS_HTTPD_SENDFILE
|
2012-09-18 14:34:43 +02:00
|
|
|
ret = httpd_sendfile_send(pstate->ht_sockfd, &pstate->ht_file);
|
2012-09-11 15:19:59 +02:00
|
|
|
#else
|
2012-09-18 14:34:43 +02:00
|
|
|
ret = send_chunk(pstate, pstate->ht_file.data, pstate->ht_file.len);
|
2012-09-11 15:19:59 +02:00
|
|
|
#endif
|
2011-03-19 22:04:13 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-04 18:59:24 +02:00
|
|
|
(void)httpd_close(&pstate->ht_file);
|
|
|
|
|
2011-03-19 22:04:13 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int httpd_cmd(struct httpd_state *pstate)
|
|
|
|
{
|
|
|
|
ssize_t recvlen;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* Get the next HTTP command. We will handle only GET */
|
|
|
|
|
|
|
|
recvlen = recv(pstate->ht_sockfd, pstate->ht_buffer, HTTPD_IOBUFFER_SIZE, 0);
|
2012-09-18 01:02:58 +02:00
|
|
|
#if CONFIG_NETUTILS_HTTPD_TIMEOUT > 0
|
|
|
|
if (recvlen < 0 && errno == EWOULDBLOCK)
|
|
|
|
{
|
|
|
|
ndbg("[%d] recv timeout\n");
|
2012-09-18 14:34:43 +02:00
|
|
|
return httpd_senderror(pstate, 408);
|
2012-09-18 01:02:58 +02:00
|
|
|
}
|
2012-09-18 14:34:43 +02:00
|
|
|
else
|
2012-09-18 01:02:58 +02:00
|
|
|
#endif
|
2011-03-19 22:04:13 +01:00
|
|
|
if (recvlen < 0)
|
|
|
|
{
|
|
|
|
ndbg("[%d] recv failed: %d\n", pstate->ht_sockfd, errno);
|
2012-09-18 14:34:43 +02:00
|
|
|
return httpd_senderror(pstate, 400);
|
2011-03-19 22:04:13 +01:00
|
|
|
}
|
2012-08-31 18:03:17 +02:00
|
|
|
else if (recvlen == 0)
|
2012-02-18 19:13:30 +01:00
|
|
|
{
|
|
|
|
ndbg("[%d] connection lost\n", pstate->ht_sockfd);
|
2012-09-18 14:34:43 +02:00
|
|
|
return httpd_senderror(pstate, 400);
|
2012-02-18 19:13:30 +01:00
|
|
|
}
|
2012-09-18 14:34:43 +02:00
|
|
|
|
2011-03-19 22:04:13 +01:00
|
|
|
httpd_dumpbuffer("Incoming buffer", pstate->ht_buffer, recvlen);
|
|
|
|
|
|
|
|
/* We will handle only GET */
|
|
|
|
|
|
|
|
if (strncmp(pstate->ht_buffer, g_httpcmdget, strlen(g_httpcmdget)) != 0)
|
|
|
|
{
|
|
|
|
ndbg("[%d] Unsupported command\n", pstate->ht_sockfd);
|
2012-09-18 14:34:43 +02:00
|
|
|
return httpd_senderror(pstate, 405);
|
2011-03-19 22:04:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the name of the file to provide */
|
|
|
|
|
|
|
|
if (pstate->ht_buffer[4] != ISO_slash)
|
|
|
|
{
|
|
|
|
ndbg("[%d] Missing path\n", pstate->ht_sockfd);
|
2012-09-18 14:34:43 +02:00
|
|
|
return httpd_senderror(pstate, 400);
|
2011-03-19 22:04:13 +01:00
|
|
|
}
|
|
|
|
else if (pstate->ht_buffer[5] == ISO_space)
|
|
|
|
{
|
|
|
|
strncpy(pstate->ht_filename, g_httpindexpath, strlen(g_httpindexpath));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (i = 0;
|
|
|
|
i < (HTTPD_MAX_FILENAME-1) && pstate->ht_buffer[i+4] != ISO_space;
|
|
|
|
i++)
|
|
|
|
{
|
|
|
|
pstate->ht_filename[i] = pstate->ht_buffer[i+4];
|
|
|
|
}
|
2012-09-18 14:34:43 +02:00
|
|
|
|
|
|
|
pstate->ht_filename[i]='\0';
|
2011-03-19 22:04:13 +01:00
|
|
|
}
|
2012-09-18 14:34:43 +02:00
|
|
|
|
2011-03-19 22:04:13 +01:00
|
|
|
nvdbg("[%d] Filename: %s\n", pstate->ht_sockfd, pstate->ht_filename);
|
|
|
|
|
|
|
|
/* Then send the file */
|
|
|
|
|
|
|
|
return httpd_sendfile(pstate);
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: httpd_handler
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Each time a new connection to port 80 is made, a new thread is created
|
|
|
|
* that begins at this entry point. There should be exactly one argument
|
|
|
|
* and it should be the socket descriptor (+1).
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void *httpd_handler(void *arg)
|
|
|
|
{
|
|
|
|
struct httpd_state *pstate = (struct httpd_state *)malloc(sizeof(struct httpd_state));
|
|
|
|
int sockfd = (int)arg;
|
|
|
|
int ret = ERROR;
|
|
|
|
|
|
|
|
nvdbg("[%d] Started\n", sockfd);
|
|
|
|
|
|
|
|
/* Verify that the state structure was successfully allocated */
|
|
|
|
|
|
|
|
if (pstate)
|
|
|
|
{
|
|
|
|
/* Re-initialize the thread state structure */
|
|
|
|
|
|
|
|
memset(pstate, 0, sizeof(struct httpd_state));
|
|
|
|
pstate->ht_sockfd = sockfd;
|
|
|
|
|
|
|
|
/* Then handle the next httpd command */
|
|
|
|
|
|
|
|
ret = httpd_cmd(pstate);
|
|
|
|
|
|
|
|
/* End of command processing -- Clean up and exit */
|
|
|
|
|
|
|
|
free(pstate);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Exit the task */
|
|
|
|
|
|
|
|
nvdbg("[%d] Exitting\n", sockfd);
|
|
|
|
close(sockfd);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-09-18 01:02:58 +02:00
|
|
|
#ifdef CONFIG_NETUTILS_HTTPD_SINGLECONNECT
|
2012-09-17 21:44:53 +02:00
|
|
|
static void single_server(uint16_t portno, pthread_startroutine_t handler, int stacksize)
|
|
|
|
{
|
|
|
|
struct sockaddr_in myaddr;
|
|
|
|
socklen_t addrlen;
|
|
|
|
int listensd;
|
|
|
|
int acceptsd;
|
|
|
|
#ifdef CONFIG_NET_HAVE_SOLINGER
|
|
|
|
struct linger ling;
|
|
|
|
#endif
|
2012-09-18 01:02:58 +02:00
|
|
|
#if CONFIG_NETUTILS_HTTPD_TIMEOUT > 0
|
|
|
|
struct timeval tv;
|
|
|
|
#endif
|
2012-09-17 21:44:53 +02:00
|
|
|
|
|
|
|
listensd = uip_listenon(portno);
|
|
|
|
if (listensd < 0)
|
|
|
|
{
|
2012-09-18 01:02:58 +02:00
|
|
|
return;
|
2012-09-17 21:44:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Begin serving connections */
|
|
|
|
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
addrlen = sizeof(struct sockaddr_in);
|
|
|
|
acceptsd = accept(listensd, (struct sockaddr*)&myaddr, &addrlen);
|
|
|
|
|
|
|
|
if (acceptsd < 0)
|
|
|
|
{
|
|
|
|
ndbg("accept failure: %d\n", errno);
|
|
|
|
break;;
|
|
|
|
}
|
|
|
|
|
|
|
|
nvdbg("Connection accepted -- serving sd=%d\n", acceptsd);
|
|
|
|
|
|
|
|
/* Configure to "linger" until all data is sent when the socket is closed */
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_HAVE_SOLINGER
|
|
|
|
ling.l_onoff = 1;
|
|
|
|
ling.l_linger = 30; /* timeout is seconds */
|
|
|
|
if (setsockopt(acceptsd, SOL_SOCKET, SO_LINGER, &ling, sizeof(struct linger)) < 0)
|
|
|
|
{
|
|
|
|
close(acceptsd);
|
|
|
|
ndbg("setsockopt SO_LINGER failure: %d\n", errno);
|
|
|
|
break;;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-09-18 01:02:58 +02:00
|
|
|
#if CONFIG_NETUTILS_HTTPD_TIMEOUT > 0
|
|
|
|
/* Set up a receive timeout */
|
|
|
|
|
|
|
|
tv.tv_sec = CONFIG_NETUTILS_HTTPD_TIMEOUT;
|
|
|
|
tv.tv_usec = 0;
|
|
|
|
if (setsockopt(acceptsd, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(struct timeval)) < 0)
|
|
|
|
{
|
|
|
|
close(acceptsd);
|
|
|
|
ndbg("setsockopt SO_RCVTIMEO failure: %d\n", errno);
|
|
|
|
break;;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-09-17 21:44:53 +02:00
|
|
|
/* Handle the request. This blocks until complete. */
|
|
|
|
|
|
|
|
(void) httpd_handler((void*)acceptsd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-03-19 22:04:13 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: httpd_listen
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* This is the main processing thread for the webserver. It never returns
|
|
|
|
* unless an error occurs
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int httpd_listen(void)
|
|
|
|
{
|
|
|
|
/* Execute httpd_handler on each connection to port 80 */
|
|
|
|
|
2012-09-18 01:02:58 +02:00
|
|
|
#ifdef CONFIG_NETUTILS_HTTPD_SINGLECONNECT
|
2012-09-17 21:44:53 +02:00
|
|
|
single_server(HTONS(80), httpd_handler, CONFIG_NETUTILS_HTTPDSTACKSIZE);
|
|
|
|
#else
|
2011-03-19 22:04:13 +01:00
|
|
|
uip_server(HTONS(80), httpd_handler, CONFIG_NETUTILS_HTTPDSTACKSIZE);
|
2012-09-17 21:44:53 +02:00
|
|
|
#endif
|
2011-03-19 22:04:13 +01:00
|
|
|
|
2012-09-17 21:44:53 +02:00
|
|
|
/* the server accept loop only returns on errors */
|
2011-03-19 22:04:13 +01:00
|
|
|
|
|
|
|
return ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: httpd_init
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* This function initializes the web server and should be called at system
|
|
|
|
* boot-up.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
void httpd_init(void)
|
|
|
|
{
|
2012-09-11 15:19:59 +02:00
|
|
|
#if !defined(CONFIG_NETUTILS_HTTPD_MMAP) && !defined(CONFIG_NETUTILS_HTTPD_SENDFILE)
|
2012-09-01 01:05:51 +02:00
|
|
|
httpd_fs_init();
|
2012-09-04 18:59:24 +02:00
|
|
|
#endif
|
2011-03-19 22:04:13 +01:00
|
|
|
}
|