2016-09-27 12:59:51 +08:00
|
|
|
#ifdef MG_MODULE_LINES
|
|
|
|
#line 1 "mongoose/src/common.h"
|
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
/*
|
2015-09-21 22:16:16 +08:00
|
|
|
* Copyright (c) 2004-2013 Sergey Lyubka
|
2016-03-30 00:27:55 +08:00
|
|
|
* Copyright (c) 2013-2015 Cesanta Software Limited
|
|
|
|
* All rights reserved
|
|
|
|
*
|
|
|
|
* This software is dual-licensed: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation. For the terms of this
|
|
|
|
* license, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* You are free to use this software under the terms of the GNU General
|
|
|
|
* Public License, but WITHOUT ANY WARRANTY; without even the implied
|
|
|
|
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
* See the GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* Alternatively, you can license this software under a commercial
|
|
|
|
* license, as set out in <https://www.cesanta.com/license>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CS_MONGOOSE_SRC_COMMON_H_
|
|
|
|
#define CS_MONGOOSE_SRC_COMMON_H_
|
|
|
|
|
2016-10-12 17:45:44 +08:00
|
|
|
#define MG_VERSION "6.6"
|
2016-03-30 00:27:55 +08:00
|
|
|
|
|
|
|
/* Local tweaks, applied before any of Mongoose's own headers. */
|
|
|
|
#ifdef MG_LOCALS
|
|
|
|
#include <mg_locals.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* CS_MONGOOSE_SRC_COMMON_H_ */
|
2016-09-27 12:59:51 +08:00
|
|
|
#ifdef MG_MODULE_LINES
|
|
|
|
#line 1 "common/platform.h"
|
|
|
|
#endif
|
2016-03-30 00:27:55 +08:00
|
|
|
#ifndef CS_COMMON_PLATFORM_H_
|
|
|
|
#define CS_COMMON_PLATFORM_H_
|
|
|
|
|
|
|
|
/*
|
|
|
|
* For the "custom" platform, includes and dependencies can be
|
|
|
|
* provided through mg_locals.h.
|
|
|
|
*/
|
|
|
|
#define CS_P_CUSTOM 0
|
|
|
|
#define CS_P_UNIX 1
|
|
|
|
#define CS_P_WINDOWS 2
|
2016-10-18 20:30:58 +08:00
|
|
|
#define CS_P_ESP8266 3
|
2016-03-30 00:27:55 +08:00
|
|
|
#define CS_P_CC3200 4
|
2016-04-09 00:15:50 +08:00
|
|
|
#define CS_P_MSP432 5
|
2016-09-05 22:57:56 +08:00
|
|
|
#define CS_P_CC3100 6
|
2016-10-11 18:09:32 +08:00
|
|
|
#define CS_P_MBED 7
|
2016-10-14 21:31:02 +08:00
|
|
|
#define CS_P_WINCE 8
|
2016-10-18 20:30:58 +08:00
|
|
|
#define CS_P_NXP_KINETIS 9
|
2016-10-20 03:12:12 +08:00
|
|
|
#define CS_P_NRF52 10
|
2016-03-30 00:27:55 +08:00
|
|
|
|
|
|
|
/* If not specified explicitly, we guess platform by defines. */
|
|
|
|
#ifndef CS_PLATFORM
|
|
|
|
|
2016-04-09 00:15:50 +08:00
|
|
|
#if defined(TARGET_IS_MSP432P4XX) || defined(__MSP432P401R__)
|
|
|
|
|
|
|
|
#define CS_PLATFORM CS_P_MSP432
|
|
|
|
#elif defined(cc3200)
|
2016-03-30 00:27:55 +08:00
|
|
|
#define CS_PLATFORM CS_P_CC3200
|
|
|
|
#elif defined(__unix__) || defined(__APPLE__)
|
|
|
|
#define CS_PLATFORM CS_P_UNIX
|
2016-10-14 21:31:02 +08:00
|
|
|
#elif defined(WINCE)
|
|
|
|
#define CS_PLATFORM CS_P_WINCE
|
2016-03-30 00:27:55 +08:00
|
|
|
#elif defined(_WIN32)
|
|
|
|
#define CS_PLATFORM CS_P_WINDOWS
|
2016-10-11 18:09:32 +08:00
|
|
|
#elif defined(__MBED__)
|
|
|
|
#define CS_PLATFORM CS_P_MBED
|
2016-10-18 20:30:58 +08:00
|
|
|
#elif defined(FRDM_K64F) || defined(FREEDOM)
|
|
|
|
#define CS_PLATFORM CS_P_NXP_KINETIS
|
2016-03-30 00:27:55 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef CS_PLATFORM
|
|
|
|
#error "CS_PLATFORM is not specified and we couldn't guess it."
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* !defined(CS_PLATFORM) */
|
|
|
|
|
2016-10-18 02:13:21 +08:00
|
|
|
#define MG_NET_IF_SOCKET 1
|
|
|
|
#define MG_NET_IF_SIMPLELINK 2
|
|
|
|
#define MG_NET_IF_LWIP_LOW_LEVEL 3
|
|
|
|
|
2016-09-27 12:59:51 +08:00
|
|
|
/* Amalgamated: #include "common/platforms/platform_unix.h" */
|
|
|
|
/* Amalgamated: #include "common/platforms/platform_windows.h" */
|
2016-10-18 20:30:58 +08:00
|
|
|
/* Amalgamated: #include "common/platforms/platform_esp8266.h" */
|
2016-09-27 12:59:51 +08:00
|
|
|
/* Amalgamated: #include "common/platforms/platform_cc3200.h" */
|
|
|
|
/* Amalgamated: #include "common/platforms/platform_cc3100.h" */
|
2016-10-11 18:09:32 +08:00
|
|
|
/* Amalgamated: #include "common/platforms/platform_mbed.h" */
|
2016-10-20 03:12:12 +08:00
|
|
|
/* Amalgamated: #include "common/platforms/platform_nrf52.h" */
|
2016-10-14 21:31:02 +08:00
|
|
|
/* Amalgamated: #include "common/platforms/platform_wince.h" */
|
2016-10-18 20:30:58 +08:00
|
|
|
/* Amalgamated: #include "common/platforms/platform_nxp_kinetis.h" */
|
2016-03-30 00:27:55 +08:00
|
|
|
|
|
|
|
/* Common stuff */
|
|
|
|
|
|
|
|
#ifdef __GNUC__
|
|
|
|
#define NORETURN __attribute__((noreturn))
|
|
|
|
#define NOINLINE __attribute__((noinline))
|
|
|
|
#define WARN_UNUSED_RESULT __attribute__((warn_unused_result))
|
2016-05-18 20:52:23 +08:00
|
|
|
#define NOINSTR __attribute__((no_instrument_function))
|
2016-03-30 00:27:55 +08:00
|
|
|
#else
|
|
|
|
#define NORETURN
|
|
|
|
#define NOINLINE
|
|
|
|
#define WARN_UNUSED_RESULT
|
2016-05-18 20:52:23 +08:00
|
|
|
#define NOINSTR
|
2016-03-30 00:27:55 +08:00
|
|
|
#endif /* __GNUC__ */
|
|
|
|
|
|
|
|
#ifndef ARRAY_SIZE
|
|
|
|
#define ARRAY_SIZE(array) (sizeof(array) / sizeof(array[0]))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* CS_COMMON_PLATFORM_H_ */
|
2016-09-27 12:59:51 +08:00
|
|
|
#ifdef MG_MODULE_LINES
|
|
|
|
#line 1 "common/platforms/platform_windows.h"
|
|
|
|
#endif
|
2016-03-30 00:27:55 +08:00
|
|
|
#ifndef CS_COMMON_PLATFORMS_PLATFORM_WINDOWS_H_
|
|
|
|
#define CS_COMMON_PLATFORMS_PLATFORM_WINDOWS_H_
|
|
|
|
#if CS_PLATFORM == CS_P_WINDOWS
|
|
|
|
|
|
|
|
/*
|
|
|
|
* MSVC++ 14.0 _MSC_VER == 1900 (Visual Studio 2015)
|
|
|
|
* MSVC++ 12.0 _MSC_VER == 1800 (Visual Studio 2013)
|
|
|
|
* MSVC++ 11.0 _MSC_VER == 1700 (Visual Studio 2012)
|
|
|
|
* MSVC++ 10.0 _MSC_VER == 1600 (Visual Studio 2010)
|
|
|
|
* MSVC++ 9.0 _MSC_VER == 1500 (Visual Studio 2008)
|
|
|
|
* MSVC++ 8.0 _MSC_VER == 1400 (Visual Studio 2005)
|
|
|
|
* MSVC++ 7.1 _MSC_VER == 1310 (Visual Studio 2003)
|
|
|
|
* MSVC++ 7.0 _MSC_VER == 1300
|
|
|
|
* MSVC++ 6.0 _MSC_VER == 1200
|
|
|
|
* MSVC++ 5.0 _MSC_VER == 1100
|
|
|
|
*/
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(disable : 4127) /* FD_SET() emits warning, disable it */
|
|
|
|
#pragma warning(disable : 4204) /* missing c99 support */
|
|
|
|
#endif
|
|
|
|
|
2016-10-17 17:03:59 +08:00
|
|
|
#ifndef _WINSOCK_DEPRECATED_NO_WARNINGS
|
2016-09-13 16:34:34 +08:00
|
|
|
#define _WINSOCK_DEPRECATED_NO_WARNINGS 1
|
2016-10-17 17:03:59 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _CRT_SECURE_NO_WARNINGS
|
2016-09-15 20:08:36 +08:00
|
|
|
#define _CRT_SECURE_NO_WARNINGS
|
2016-10-17 17:03:59 +08:00
|
|
|
#endif
|
2016-09-13 16:34:34 +08:00
|
|
|
|
2016-03-30 00:27:55 +08:00
|
|
|
#include <assert.h>
|
|
|
|
#include <direct.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <io.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma comment(lib, "ws2_32.lib") /* Linking with winsock library */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <winsock2.h>
|
|
|
|
#include <ws2tcpip.h>
|
|
|
|
#include <windows.h>
|
|
|
|
#include <process.h>
|
|
|
|
|
2016-09-15 20:08:36 +08:00
|
|
|
#if defined(_MSC_VER) && _MSC_VER >= 1800
|
|
|
|
#define strdup _strdup
|
|
|
|
#endif
|
|
|
|
|
2016-03-30 00:27:55 +08:00
|
|
|
#ifndef EINPROGRESS
|
|
|
|
#define EINPROGRESS WSAEINPROGRESS
|
|
|
|
#endif
|
|
|
|
#ifndef EWOULDBLOCK
|
|
|
|
#define EWOULDBLOCK WSAEWOULDBLOCK
|
|
|
|
#endif
|
|
|
|
#ifndef __func__
|
|
|
|
#define STRX(x) #x
|
|
|
|
#define STR(x) STRX(x)
|
|
|
|
#define __func__ __FILE__ ":" STR(__LINE__)
|
|
|
|
#endif
|
|
|
|
#define snprintf _snprintf
|
|
|
|
#define fileno _fileno
|
|
|
|
#define vsnprintf _vsnprintf
|
|
|
|
#define sleep(x) Sleep((x) *1000)
|
|
|
|
#define to64(x) _atoi64(x)
|
2016-04-15 22:39:45 +08:00
|
|
|
#if !defined(__MINGW32__) && !defined(__MINGW64__)
|
2016-03-30 00:27:55 +08:00
|
|
|
#define popen(x, y) _popen((x), (y))
|
|
|
|
#define pclose(x) _pclose(x)
|
2016-04-15 22:39:45 +08:00
|
|
|
#endif
|
2016-03-30 00:27:55 +08:00
|
|
|
#define rmdir _rmdir
|
|
|
|
#if defined(_MSC_VER) && _MSC_VER >= 1400
|
|
|
|
#define fseeko(x, y, z) _fseeki64((x), (y), (z))
|
|
|
|
#else
|
|
|
|
#define fseeko(x, y, z) fseek((x), (y), (z))
|
|
|
|
#endif
|
2016-08-19 16:52:40 +08:00
|
|
|
#if defined(_MSC_VER) && _MSC_VER <= 1200
|
|
|
|
typedef unsigned long uintptr_t;
|
2016-09-12 22:09:35 +08:00
|
|
|
typedef long intptr_t;
|
2016-08-19 16:52:40 +08:00
|
|
|
#endif
|
2016-03-30 00:27:55 +08:00
|
|
|
typedef int socklen_t;
|
2016-05-12 01:28:12 +08:00
|
|
|
#if _MSC_VER >= 1700
|
|
|
|
#include <stdint.h>
|
|
|
|
#else
|
2016-03-30 00:27:55 +08:00
|
|
|
typedef signed char int8_t;
|
|
|
|
typedef unsigned char uint8_t;
|
|
|
|
typedef int int32_t;
|
|
|
|
typedef unsigned int uint32_t;
|
|
|
|
typedef short int16_t;
|
|
|
|
typedef unsigned short uint16_t;
|
|
|
|
typedef __int64 int64_t;
|
|
|
|
typedef unsigned __int64 uint64_t;
|
2016-05-12 01:28:12 +08:00
|
|
|
#endif
|
2016-03-30 00:27:55 +08:00
|
|
|
typedef SOCKET sock_t;
|
|
|
|
typedef uint32_t in_addr_t;
|
|
|
|
#ifndef UINT16_MAX
|
|
|
|
#define UINT16_MAX 65535
|
|
|
|
#endif
|
|
|
|
#ifndef UINT32_MAX
|
|
|
|
#define UINT32_MAX 4294967295
|
|
|
|
#endif
|
|
|
|
#ifndef pid_t
|
|
|
|
#define pid_t HANDLE
|
|
|
|
#endif
|
|
|
|
#define INT64_FMT "I64d"
|
|
|
|
#define INT64_X_FMT "I64x"
|
|
|
|
#define SIZE_T_FMT "Iu"
|
2016-04-13 19:19:35 +08:00
|
|
|
#if defined(__MINGW32__) && !defined(__MINGW64_VERSION_MAJOR)
|
2016-03-30 00:27:55 +08:00
|
|
|
typedef struct stat cs_stat_t;
|
|
|
|
#else
|
|
|
|
typedef struct _stati64 cs_stat_t;
|
|
|
|
#endif
|
|
|
|
#ifndef S_ISDIR
|
|
|
|
#define S_ISDIR(x) (((x) &_S_IFMT) == _S_IFDIR)
|
|
|
|
#endif
|
|
|
|
#ifndef S_ISREG
|
|
|
|
#define S_ISREG(x) (((x) &_S_IFMT) == _S_IFREG)
|
|
|
|
#endif
|
|
|
|
#define DIRSEP '\\'
|
|
|
|
|
|
|
|
#ifndef va_copy
|
|
|
|
#ifdef __va_copy
|
|
|
|
#define va_copy __va_copy
|
|
|
|
#else
|
|
|
|
#define va_copy(x, y) (x) = (y)
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2016-04-01 22:01:36 +08:00
|
|
|
#ifndef MG_MAX_HTTP_REQUEST_SIZE
|
|
|
|
#define MG_MAX_HTTP_REQUEST_SIZE 8192
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MG_MAX_HTTP_SEND_MBUF
|
|
|
|
#define MG_MAX_HTTP_SEND_MBUF 4096
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MG_MAX_HTTP_HEADERS
|
|
|
|
#define MG_MAX_HTTP_HEADERS 40
|
|
|
|
#endif
|
|
|
|
|
2016-10-14 18:15:11 +08:00
|
|
|
#ifndef CS_ENABLE_STDIO
|
|
|
|
#define CS_ENABLE_STDIO 1
|
|
|
|
#endif
|
|
|
|
|
2016-10-17 12:02:29 +08:00
|
|
|
#ifndef MG_ENABLE_BROADCAST
|
|
|
|
#define MG_ENABLE_BROADCAST 1
|
|
|
|
#endif
|
|
|
|
|
2016-10-14 20:24:02 +08:00
|
|
|
#ifndef MG_ENABLE_DIRECTORY_LISTING
|
|
|
|
#define MG_ENABLE_DIRECTORY_LISTING 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MG_ENABLE_FILESYSTEM
|
|
|
|
#define MG_ENABLE_FILESYSTEM 1
|
|
|
|
#endif
|
|
|
|
|
2016-10-17 12:02:29 +08:00
|
|
|
#ifndef MG_ENABLE_HTTP_CGI
|
|
|
|
#define MG_ENABLE_HTTP_CGI 1
|
|
|
|
#endif
|
|
|
|
|
2016-10-18 02:13:21 +08:00
|
|
|
#ifndef MG_NET_IF
|
|
|
|
#define MG_NET_IF MG_NET_IF_SOCKET
|
|
|
|
#endif
|
|
|
|
|
2016-03-30 00:27:55 +08:00
|
|
|
#endif /* CS_PLATFORM == CS_P_WINDOWS */
|
|
|
|
#endif /* CS_COMMON_PLATFORMS_PLATFORM_WINDOWS_H_ */
|
2016-09-27 12:59:51 +08:00
|
|
|
#ifdef MG_MODULE_LINES
|
|
|
|
#line 1 "common/platforms/platform_unix.h"
|
|
|
|
#endif
|
2016-03-30 00:27:55 +08:00
|
|
|
#ifndef CS_COMMON_PLATFORMS_PLATFORM_UNIX_H_
|
|
|
|
#define CS_COMMON_PLATFORMS_PLATFORM_UNIX_H_
|
|
|
|
#if CS_PLATFORM == CS_P_UNIX
|
|
|
|
|
|
|
|
#ifndef _XOPEN_SOURCE
|
|
|
|
#define _XOPEN_SOURCE 600
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* <inttypes.h> wants this for C++ */
|
|
|
|
#ifndef __STDC_FORMAT_MACROS
|
|
|
|
#define __STDC_FORMAT_MACROS
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* C++ wants that for INT64_MAX */
|
|
|
|
#ifndef __STDC_LIMIT_MACROS
|
|
|
|
#define __STDC_LIMIT_MACROS
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Enable fseeko() and ftello() functions */
|
|
|
|
#ifndef _LARGEFILE_SOURCE
|
|
|
|
#define _LARGEFILE_SOURCE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Enable 64-bit file offsets */
|
|
|
|
#ifndef _FILE_OFFSET_BITS
|
|
|
|
#define _FILE_OFFSET_BITS 64
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <inttypes.h>
|
2016-09-12 22:09:35 +08:00
|
|
|
#include <stdint.h>
|
2016-03-30 00:27:55 +08:00
|
|
|
#include <limits.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <netdb.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/select.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* osx correctly avoids defining strtoll when compiling in strict ansi mode.
|
2016-10-22 22:17:42 +08:00
|
|
|
* c++ 11 standard defines strtoll as well.
|
2016-03-30 00:27:55 +08:00
|
|
|
* We require strtoll, and if your embedded pre-c99 compiler lacks one, please
|
|
|
|
* implement a shim.
|
|
|
|
*/
|
2016-10-22 22:17:42 +08:00
|
|
|
#if !(defined(__cplusplus) && __cplusplus >= 201103L) && !(defined(__DARWIN_C_LEVEL) && __DARWIN_C_LEVEL >= 200809L)
|
2016-03-30 00:27:55 +08:00
|
|
|
long long strtoll(const char *, char **, int);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef int sock_t;
|
|
|
|
#define INVALID_SOCKET (-1)
|
|
|
|
#define SIZE_T_FMT "zu"
|
|
|
|
typedef struct stat cs_stat_t;
|
|
|
|
#define DIRSEP '/'
|
|
|
|
#define to64(x) strtoll(x, NULL, 10)
|
|
|
|
#define INT64_FMT PRId64
|
|
|
|
#define INT64_X_FMT PRIx64
|
2016-04-28 00:47:44 +08:00
|
|
|
|
|
|
|
#ifndef __cdecl
|
2016-03-30 00:27:55 +08:00
|
|
|
#define __cdecl
|
2016-04-28 00:47:44 +08:00
|
|
|
#endif
|
2016-03-30 00:27:55 +08:00
|
|
|
|
|
|
|
#ifndef va_copy
|
|
|
|
#ifdef __va_copy
|
|
|
|
#define va_copy __va_copy
|
|
|
|
#else
|
|
|
|
#define va_copy(x, y) (x) = (y)
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define closesocket(x) close(x)
|
|
|
|
|
2016-04-01 22:01:36 +08:00
|
|
|
#ifndef MG_MAX_HTTP_REQUEST_SIZE
|
|
|
|
#define MG_MAX_HTTP_REQUEST_SIZE 8192
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MG_MAX_HTTP_SEND_MBUF
|
|
|
|
#define MG_MAX_HTTP_SEND_MBUF 4096
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MG_MAX_HTTP_HEADERS
|
|
|
|
#define MG_MAX_HTTP_HEADERS 40
|
|
|
|
#endif
|
|
|
|
|
2016-10-14 18:15:11 +08:00
|
|
|
#ifndef CS_ENABLE_STDIO
|
|
|
|
#define CS_ENABLE_STDIO 1
|
|
|
|
#endif
|
|
|
|
|
2016-10-17 12:02:29 +08:00
|
|
|
#ifndef MG_ENABLE_BROADCAST
|
|
|
|
#define MG_ENABLE_BROADCAST 1
|
|
|
|
#endif
|
|
|
|
|
2016-10-14 20:24:02 +08:00
|
|
|
#ifndef MG_ENABLE_DIRECTORY_LISTING
|
|
|
|
#define MG_ENABLE_DIRECTORY_LISTING 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MG_ENABLE_FILESYSTEM
|
|
|
|
#define MG_ENABLE_FILESYSTEM 1
|
|
|
|
#endif
|
|
|
|
|
2016-10-17 12:02:29 +08:00
|
|
|
#ifndef MG_ENABLE_HTTP_CGI
|
|
|
|
#define MG_ENABLE_HTTP_CGI 1
|
|
|
|
#endif
|
|
|
|
|
2016-10-18 02:13:21 +08:00
|
|
|
#ifndef MG_NET_IF
|
|
|
|
#define MG_NET_IF MG_NET_IF_SOCKET
|
|
|
|
#endif
|
|
|
|
|
2016-03-30 00:27:55 +08:00
|
|
|
#endif /* CS_PLATFORM == CS_P_UNIX */
|
|
|
|
#endif /* CS_COMMON_PLATFORMS_PLATFORM_UNIX_H_ */
|
2016-09-27 12:59:51 +08:00
|
|
|
#ifdef MG_MODULE_LINES
|
2016-10-18 20:30:58 +08:00
|
|
|
#line 1 "common/platforms/platform_esp8266.h"
|
2016-09-27 12:59:51 +08:00
|
|
|
#endif
|
2016-10-18 20:30:58 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014-2016 Cesanta Software Limited
|
|
|
|
* All rights reserved
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CS_COMMON_PLATFORMS_PLATFORM_ESP8266_H_
|
|
|
|
#define CS_COMMON_PLATFORMS_PLATFORM_ESP8266_H_
|
|
|
|
#if CS_PLATFORM == CS_P_ESP8266
|
2016-03-30 00:27:55 +08:00
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <inttypes.h>
|
2016-10-18 20:30:58 +08:00
|
|
|
#include <machine/endian.h>
|
2016-03-30 00:27:55 +08:00
|
|
|
#include <string.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
|
|
|
|
#define SIZE_T_FMT "u"
|
|
|
|
typedef struct stat cs_stat_t;
|
|
|
|
#define DIRSEP '/'
|
|
|
|
#define to64(x) strtoll(x, NULL, 10)
|
|
|
|
#define INT64_FMT PRId64
|
|
|
|
#define INT64_X_FMT PRIx64
|
|
|
|
#define __cdecl
|
Change from using #ifdef to #if for features tests
"#if FOO" still works with simple -DFOO, but gives more flexibility.
Specifically, if user expressed no preference (FOO is not defined),
we can apply reasonable defaults (this is the legitimate use of ifdef).
In short, from now on, please use
#if MG_ENABLE_FOO
instead of
#ifdef MG_ENABLE_FOO
Since we are all used to #ifdef, this change also adds a precommit check
to police this. Specifically, in *.h and *.c files that are Copyright Cesanta,
"ifdef" and "if defined()" are not allowed to be used with macros that contain
ENABLE or DISABLE, unless the like also contains "ifdef-ok".
Hence, if you are sure you want to use ifdef, use this:
#ifdef MG_ENABLE_FOO /* ifdef-ok */
PUBLISHED_FROM=9be829448f53cff575d6cae8b9945fb12531c15a
2016-10-14 01:55:08 +08:00
|
|
|
#define _FILE_OFFSET_BITS 32
|
2016-03-30 00:27:55 +08:00
|
|
|
|
2016-10-18 20:30:58 +08:00
|
|
|
#define MG_LWIP 1
|
2016-03-30 00:27:55 +08:00
|
|
|
|
2016-10-18 20:30:58 +08:00
|
|
|
#ifdef RTOS_SDK
|
|
|
|
# define MG_NET_IF MG_NET_IF_SOCKET
|
2016-10-18 02:13:21 +08:00
|
|
|
#else
|
2016-10-18 20:30:58 +08:00
|
|
|
# define MG_NET_IF MG_NET_IF_LWIP_LOW_LEVEL
|
2016-10-12 02:20:28 +08:00
|
|
|
#endif
|
|
|
|
|
2016-10-18 20:30:58 +08:00
|
|
|
/* struct timeval is defined in sys/time.h. */
|
|
|
|
#define LWIP_TIMEVAL_PRIVATE 0
|
|
|
|
|
2016-10-14 18:15:11 +08:00
|
|
|
#ifndef CS_ENABLE_STDIO
|
|
|
|
#define CS_ENABLE_STDIO 1
|
|
|
|
#endif
|
|
|
|
|
2016-10-18 20:30:58 +08:00
|
|
|
#endif /* CS_PLATFORM == CS_P_ESP8266 */
|
|
|
|
#endif /* CS_COMMON_PLATFORMS_PLATFORM_ESP8266_H_ */
|
2016-09-27 12:59:51 +08:00
|
|
|
#ifdef MG_MODULE_LINES
|
|
|
|
#line 1 "common/platforms/platform_cc3100.h"
|
|
|
|
#endif
|
2016-03-30 00:27:55 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014-2016 Cesanta Software Limited
|
|
|
|
* All rights reserved
|
|
|
|
*/
|
|
|
|
|
2016-09-05 22:57:56 +08:00
|
|
|
#ifndef CS_COMMON_PLATFORMS_PLATFORM_CC3100_H_
|
|
|
|
#define CS_COMMON_PLATFORMS_PLATFORM_CC3100_H_
|
|
|
|
#if CS_PLATFORM == CS_P_CC3100
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
2016-10-18 02:13:21 +08:00
|
|
|
#define MG_NET_IF MG_NET_IF_SIMPLELINK
|
2016-09-05 22:57:56 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* CC3100 SDK and STM32 SDK include headers w/out path, just like
|
|
|
|
* #include "simplelink.h". As result, we have to add all required directories
|
|
|
|
* into Makefile IPATH and do the same thing (include w/out path)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <simplelink.h>
|
|
|
|
#include <netapp.h>
|
2016-09-30 20:30:45 +08:00
|
|
|
#undef timeval
|
2016-09-05 22:57:56 +08:00
|
|
|
|
|
|
|
typedef int sock_t;
|
|
|
|
#define INVALID_SOCKET (-1)
|
|
|
|
|
|
|
|
#define to64(x) strtoll(x, NULL, 10)
|
|
|
|
#define INT64_FMT PRId64
|
|
|
|
#define INT64_X_FMT PRIx64
|
|
|
|
#define SIZE_T_FMT "u"
|
|
|
|
|
|
|
|
#define SOMAXCONN 8
|
|
|
|
|
|
|
|
const char *inet_ntop(int af, const void *src, char *dst, socklen_t size);
|
|
|
|
char *inet_ntoa(struct in_addr in);
|
|
|
|
int inet_pton(int af, const char *src, void *dst);
|
|
|
|
|
|
|
|
#endif /* CS_PLATFORM == CS_P_CC3100 */
|
|
|
|
#endif /* CS_COMMON_PLATFORMS_PLATFORM_CC3100_H_ */
|
2016-09-27 12:59:51 +08:00
|
|
|
#ifdef MG_MODULE_LINES
|
|
|
|
#line 1 "common/platforms/platform_cc3200.h"
|
|
|
|
#endif
|
2016-09-05 22:57:56 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014-2016 Cesanta Software Limited
|
|
|
|
* All rights reserved
|
|
|
|
*/
|
|
|
|
|
2016-03-30 00:27:55 +08:00
|
|
|
#ifndef CS_COMMON_PLATFORMS_PLATFORM_CC3200_H_
|
|
|
|
#define CS_COMMON_PLATFORMS_PLATFORM_CC3200_H_
|
|
|
|
#if CS_PLATFORM == CS_P_CC3200
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <stdint.h>
|
2016-04-08 01:20:11 +08:00
|
|
|
#include <string.h>
|
2016-03-30 00:27:55 +08:00
|
|
|
#include <time.h>
|
|
|
|
|
2016-04-01 09:11:12 +08:00
|
|
|
#ifndef __TI_COMPILER_VERSION__
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#endif
|
|
|
|
|
2016-10-18 02:13:21 +08:00
|
|
|
#define MG_NET_IF MG_NET_IF_SIMPLELINK
|
2016-10-14 20:24:02 +08:00
|
|
|
|
2016-04-01 22:01:36 +08:00
|
|
|
/* Only SPIFFS supports directories, SLFS does not. */
|
2016-10-14 20:24:02 +08:00
|
|
|
#if defined(CC3200_FS_SPIFFS) && !defined(MG_ENABLE_DIRECTORY_LISTING)
|
|
|
|
#define MG_ENABLE_DIRECTORY_LISTING 1
|
2016-04-01 22:01:36 +08:00
|
|
|
#endif
|
2016-03-30 00:27:55 +08:00
|
|
|
|
2016-09-27 12:59:51 +08:00
|
|
|
/* Amalgamated: #include "common/platforms/simplelink/cs_simplelink.h" */
|
2016-04-09 00:15:50 +08:00
|
|
|
|
|
|
|
typedef int sock_t;
|
|
|
|
#define INVALID_SOCKET (-1)
|
|
|
|
#define SIZE_T_FMT "u"
|
|
|
|
typedef struct stat cs_stat_t;
|
|
|
|
#define DIRSEP '/'
|
|
|
|
#define to64(x) strtoll(x, NULL, 10)
|
|
|
|
#define INT64_FMT PRId64
|
|
|
|
#define INT64_X_FMT PRIx64
|
|
|
|
#define __cdecl
|
|
|
|
|
|
|
|
#define fileno(x) -1
|
|
|
|
|
|
|
|
/* Some functions we implement for Mongoose. */
|
|
|
|
|
2016-04-28 17:58:26 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2016-04-09 00:15:50 +08:00
|
|
|
#ifdef __TI_COMPILER_VERSION__
|
|
|
|
struct SlTimeval_t;
|
|
|
|
#define timeval SlTimeval_t
|
|
|
|
int gettimeofday(struct timeval *t, void *tz);
|
2016-05-02 23:16:27 +08:00
|
|
|
|
|
|
|
int asprintf(char **strp, const char *fmt, ...);
|
|
|
|
|
2016-04-09 00:15:50 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* TI's libc does not have stat & friends, add them. */
|
|
|
|
#ifdef __TI_COMPILER_VERSION__
|
|
|
|
|
|
|
|
#include <file.h>
|
|
|
|
|
|
|
|
typedef unsigned int mode_t;
|
|
|
|
typedef size_t _off_t;
|
|
|
|
typedef long ssize_t;
|
|
|
|
|
|
|
|
struct stat {
|
|
|
|
int st_ino;
|
|
|
|
mode_t st_mode;
|
|
|
|
int st_nlink;
|
|
|
|
time_t st_mtime;
|
|
|
|
off_t st_size;
|
|
|
|
};
|
|
|
|
|
|
|
|
int _stat(const char *pathname, struct stat *st);
|
|
|
|
#define stat(a, b) _stat(a, b)
|
|
|
|
|
|
|
|
#define __S_IFMT 0170000
|
|
|
|
|
|
|
|
#define __S_IFDIR 0040000
|
|
|
|
#define __S_IFCHR 0020000
|
|
|
|
#define __S_IFREG 0100000
|
|
|
|
|
|
|
|
#define __S_ISTYPE(mode, mask) (((mode) &__S_IFMT) == (mask))
|
|
|
|
|
|
|
|
#define S_IFDIR __S_IFDIR
|
|
|
|
#define S_IFCHR __S_IFCHR
|
|
|
|
#define S_IFREG __S_IFREG
|
|
|
|
#define S_ISDIR(mode) __S_ISTYPE((mode), __S_IFDIR)
|
|
|
|
#define S_ISREG(mode) __S_ISTYPE((mode), __S_IFREG)
|
|
|
|
|
|
|
|
/* As of 5.2.7, TI compiler does not support va_copy() yet. */
|
|
|
|
#define va_copy(apc, ap) ((apc) = (ap))
|
|
|
|
|
|
|
|
#endif /* __TI_COMPILER_VERSION__ */
|
|
|
|
|
|
|
|
#ifdef CC3200_FS_SPIFFS
|
|
|
|
#include <common/spiffs/spiffs.h>
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
spiffs_DIR dh;
|
|
|
|
struct spiffs_dirent de;
|
|
|
|
} DIR;
|
|
|
|
|
|
|
|
#define d_name name
|
|
|
|
#define dirent spiffs_dirent
|
|
|
|
|
|
|
|
DIR *opendir(const char *dir_name);
|
|
|
|
int closedir(DIR *dir);
|
|
|
|
struct dirent *readdir(DIR *dir);
|
|
|
|
#endif /* CC3200_FS_SPIFFS */
|
|
|
|
|
|
|
|
#ifdef CC3200_FS_SLFS
|
|
|
|
#define MG_FS_SLFS
|
|
|
|
#endif
|
|
|
|
|
2016-10-14 20:24:02 +08:00
|
|
|
#if (defined(CC3200_FS_SPIFFS) || defined(CC3200_FS_SLFS)) && !defined(MG_ENABLE_FILESYSTEM)
|
|
|
|
#define MG_ENABLE_FILESYSTEM 1
|
|
|
|
#endif
|
|
|
|
|
2016-10-14 18:15:11 +08:00
|
|
|
#ifndef CS_ENABLE_STDIO
|
|
|
|
#define CS_ENABLE_STDIO 1
|
|
|
|
#endif
|
|
|
|
|
2016-04-28 17:58:26 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-04-09 00:15:50 +08:00
|
|
|
#endif /* CS_PLATFORM == CS_P_CC3200 */
|
|
|
|
#endif /* CS_COMMON_PLATFORMS_PLATFORM_CC3200_H_ */
|
2016-09-27 12:59:51 +08:00
|
|
|
#ifdef MG_MODULE_LINES
|
|
|
|
#line 1 "common/platforms/platform_msp432.h"
|
|
|
|
#endif
|
2016-04-09 00:15:50 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014-2016 Cesanta Software Limited
|
|
|
|
* All rights reserved
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CS_COMMON_PLATFORMS_PLATFORM_MSP432_H_
|
|
|
|
#define CS_COMMON_PLATFORMS_PLATFORM_MSP432_H_
|
|
|
|
#if CS_PLATFORM == CS_P_MSP432
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
#ifndef __TI_COMPILER_VERSION__
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#endif
|
|
|
|
|
2016-10-18 02:13:21 +08:00
|
|
|
#define MG_NET_IF MG_NET_IF_SIMPLELINK
|
2016-04-09 00:15:50 +08:00
|
|
|
|
2016-09-27 12:59:51 +08:00
|
|
|
/* Amalgamated: #include "common/platforms/simplelink/cs_simplelink.h" */
|
2016-04-09 00:15:50 +08:00
|
|
|
|
|
|
|
typedef int sock_t;
|
|
|
|
#define INVALID_SOCKET (-1)
|
|
|
|
#define SIZE_T_FMT "u"
|
|
|
|
typedef struct stat cs_stat_t;
|
|
|
|
#define DIRSEP '/'
|
|
|
|
#define to64(x) strtoll(x, NULL, 10)
|
|
|
|
#define INT64_FMT PRId64
|
|
|
|
#define INT64_X_FMT PRIx64
|
|
|
|
#define __cdecl
|
|
|
|
|
|
|
|
#define fileno(x) -1
|
|
|
|
|
|
|
|
/* Some functions we implement for Mongoose. */
|
|
|
|
|
2016-04-28 17:58:26 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2016-04-09 00:15:50 +08:00
|
|
|
#ifdef __TI_COMPILER_VERSION__
|
|
|
|
struct SlTimeval_t;
|
|
|
|
#define timeval SlTimeval_t
|
|
|
|
int gettimeofday(struct timeval *t, void *tz);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* TI's libc does not have stat & friends, add them. */
|
|
|
|
#ifdef __TI_COMPILER_VERSION__
|
|
|
|
|
|
|
|
#include <file.h>
|
|
|
|
|
|
|
|
typedef unsigned int mode_t;
|
|
|
|
typedef size_t _off_t;
|
|
|
|
typedef long ssize_t;
|
|
|
|
|
|
|
|
struct stat {
|
|
|
|
int st_ino;
|
|
|
|
mode_t st_mode;
|
|
|
|
int st_nlink;
|
|
|
|
time_t st_mtime;
|
|
|
|
off_t st_size;
|
|
|
|
};
|
|
|
|
|
|
|
|
int _stat(const char *pathname, struct stat *st);
|
|
|
|
#define stat(a, b) _stat(a, b)
|
|
|
|
|
|
|
|
#define __S_IFMT 0170000
|
|
|
|
|
|
|
|
#define __S_IFDIR 0040000
|
|
|
|
#define __S_IFCHR 0020000
|
|
|
|
#define __S_IFREG 0100000
|
|
|
|
|
|
|
|
#define __S_ISTYPE(mode, mask) (((mode) &__S_IFMT) == (mask))
|
|
|
|
|
|
|
|
#define S_IFDIR __S_IFDIR
|
|
|
|
#define S_IFCHR __S_IFCHR
|
|
|
|
#define S_IFREG __S_IFREG
|
|
|
|
#define S_ISDIR(mode) __S_ISTYPE((mode), __S_IFDIR)
|
|
|
|
#define S_ISREG(mode) __S_ISTYPE((mode), __S_IFREG)
|
|
|
|
|
|
|
|
/* As of 5.2.7, TI compiler does not support va_copy() yet. */
|
|
|
|
#define va_copy(apc, ap) ((apc) = (ap))
|
|
|
|
|
|
|
|
#endif /* __TI_COMPILER_VERSION__ */
|
|
|
|
|
2016-10-14 18:15:11 +08:00
|
|
|
#ifndef CS_ENABLE_STDIO
|
|
|
|
#define CS_ENABLE_STDIO 1
|
|
|
|
#endif
|
|
|
|
|
2016-10-14 20:24:02 +08:00
|
|
|
#if (defined(CC3200_FS_SPIFFS) || defined(CC3200_FS_SLFS)) && !defined(MG_ENABLE_FILESYSTEM)
|
|
|
|
#define MG_ENABLE_FILESYSTEM 1
|
|
|
|
#endif
|
|
|
|
|
2016-04-28 17:58:26 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-04-09 00:15:50 +08:00
|
|
|
#endif /* CS_PLATFORM == CS_P_MSP432 */
|
|
|
|
#endif /* CS_COMMON_PLATFORMS_PLATFORM_MSP432_H_ */
|
2016-09-27 12:59:51 +08:00
|
|
|
#ifdef MG_MODULE_LINES
|
2016-10-11 18:09:32 +08:00
|
|
|
#line 1 "common/platforms/platform_mbed.h"
|
|
|
|
#endif
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2014-2016 Cesanta Software Limited
|
|
|
|
* All rights reserved
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CS_COMMON_PLATFORMS_PLATFORM_MBED_H_
|
|
|
|
#define CS_COMMON_PLATFORMS_PLATFORM_MBED_H_
|
|
|
|
#if CS_PLATFORM == CS_P_MBED
|
|
|
|
|
|
|
|
/* Amalgamated: #include "mbed.h" */
|
|
|
|
|
2016-10-21 06:22:52 +08:00
|
|
|
#include <assert.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
2016-10-14 18:15:11 +08:00
|
|
|
#ifndef CS_ENABLE_STDIO
|
|
|
|
#define CS_ENABLE_STDIO 1
|
|
|
|
#endif
|
|
|
|
|
2016-10-21 06:22:52 +08:00
|
|
|
/*
|
|
|
|
* mbed can be compiled with the ARM compiler which
|
|
|
|
* just doesn't come with a gettimeofday shim
|
|
|
|
* because it's a BSD API and ARM targets embedded
|
|
|
|
* non-unix platforms.
|
|
|
|
*/
|
|
|
|
#if defined(__ARMCC_VERSION) || defined(__ICCARM__)
|
|
|
|
#define _TIMEVAL_DEFINED
|
|
|
|
#define gettimeofday _gettimeofday
|
|
|
|
|
|
|
|
/* copied from GCC on ARM; for some reason useconds are signed */
|
|
|
|
typedef long suseconds_t; /* microseconds (signed) */
|
|
|
|
struct timeval {
|
|
|
|
time_t tv_sec; /* seconds */
|
|
|
|
suseconds_t tv_usec; /* and microseconds */
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if MG_NET_IF == MG_NET_IF_SIMPLELINK
|
|
|
|
|
2016-10-21 17:56:23 +08:00
|
|
|
#define MG_SIMPLELINK_NO_OSI 1
|
|
|
|
|
|
|
|
#include <simplelink.h>
|
|
|
|
|
2016-10-21 06:22:52 +08:00
|
|
|
typedef int sock_t;
|
|
|
|
#define INVALID_SOCKET (-1)
|
|
|
|
|
|
|
|
#define to64(x) strtoll(x, NULL, 10)
|
|
|
|
#define INT64_FMT PRId64
|
|
|
|
#define INT64_X_FMT PRIx64
|
|
|
|
#define SIZE_T_FMT "u"
|
|
|
|
|
|
|
|
#define SOMAXCONN 8
|
|
|
|
|
|
|
|
const char *inet_ntop(int af, const void *src, char *dst, socklen_t size);
|
|
|
|
char *inet_ntoa(struct in_addr in);
|
|
|
|
int inet_pton(int af, const char *src, void *dst);
|
|
|
|
|
|
|
|
#endif /* MG_NET_IF == MG_NET_IF_SIMPLELINK */
|
|
|
|
|
2016-10-11 18:09:32 +08:00
|
|
|
#endif /* CS_PLATFORM == CS_P_MBED */
|
|
|
|
#endif /* CS_COMMON_PLATFORMS_PLATFORM_MBED_H_ */
|
|
|
|
#ifdef MG_MODULE_LINES
|
2016-10-20 03:12:12 +08:00
|
|
|
#line 1 "common/platforms/platform_nrf52.h"
|
|
|
|
#endif
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2014-2016 Cesanta Software Limited
|
|
|
|
* All rights reserved
|
|
|
|
*/
|
|
|
|
#ifndef CS_COMMON_PLATFORMS_PLATFORM_NRF52_H_
|
|
|
|
#define CS_COMMON_PLATFORMS_PLATFORM_NRF52_H_
|
|
|
|
#if CS_PLATFORM == CS_P_NRF52
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
#define MG_NET_IF MG_NET_IF_LWIP_LOW_LEVEL
|
|
|
|
#define LWIP_TIMEVAL_PRIVATE 0
|
|
|
|
#define LWIP_PROVIDE_ERRNO 1
|
|
|
|
#define MG_LWIP 1
|
|
|
|
#define MG_ENABLE_IPV6 1
|
|
|
|
|
|
|
|
#define INT64_FMT PRId64
|
|
|
|
#define SIZE_T_FMT "u"
|
|
|
|
|
|
|
|
#endif /* CS_PLATFORM == CS_P_NRF52 */
|
|
|
|
#endif /* CS_COMMON_PLATFORMS_PLATFORM_NRF52_H_ */
|
|
|
|
#ifdef MG_MODULE_LINES
|
2016-09-27 12:59:51 +08:00
|
|
|
#line 1 "common/platforms/simplelink/cs_simplelink.h"
|
|
|
|
#endif
|
2016-04-09 00:15:50 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014-2016 Cesanta Software Limited
|
|
|
|
* All rights reserved
|
|
|
|
*/
|
|
|
|
|
2016-04-12 01:46:31 +08:00
|
|
|
#ifndef CS_COMMON_PLATFORMS_SIMPLELINK_CS_SIMPLELINK_H_
|
|
|
|
#define CS_COMMON_PLATFORMS_SIMPLELINK_CS_SIMPLELINK_H_
|
2016-04-09 00:15:50 +08:00
|
|
|
|
2016-04-08 01:20:11 +08:00
|
|
|
/* If simplelink.h is already included, all bets are off. */
|
2016-10-18 02:13:21 +08:00
|
|
|
#if MG_NET_IF == MG_NET_IF_SIMPLELINK && !defined(__SIMPLELINK_H__)
|
2016-04-08 01:20:11 +08:00
|
|
|
|
2016-04-12 01:46:31 +08:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2016-04-06 15:22:45 +08:00
|
|
|
#ifndef __TI_COMPILER_VERSION__
|
|
|
|
#undef __CONCAT
|
|
|
|
#undef FD_CLR
|
|
|
|
#undef FD_ISSET
|
|
|
|
#undef FD_SET
|
|
|
|
#undef FD_SETSIZE
|
|
|
|
#undef FD_ZERO
|
|
|
|
#undef fd_set
|
2016-04-01 09:11:12 +08:00
|
|
|
#endif
|
2016-04-06 15:22:45 +08:00
|
|
|
|
2016-04-08 01:20:11 +08:00
|
|
|
/* We want to disable SL_INC_STD_BSD_API_NAMING, so we include user.h ourselves
|
|
|
|
* and undef it. */
|
|
|
|
#define PROVISIONING_API_H_
|
|
|
|
#include <simplelink/user.h>
|
|
|
|
#undef PROVISIONING_API_H_
|
|
|
|
#undef SL_INC_STD_BSD_API_NAMING
|
|
|
|
|
2016-04-06 15:22:45 +08:00
|
|
|
#include <simplelink/include/simplelink.h>
|
2016-09-05 22:57:56 +08:00
|
|
|
#include <simplelink/include/netapp.h>
|
2016-04-06 15:22:45 +08:00
|
|
|
|
2016-04-08 01:20:11 +08:00
|
|
|
/* Now define only the subset of the BSD API that we use.
|
|
|
|
* Notably, close(), read() and write() are not defined. */
|
|
|
|
#define AF_INET SL_AF_INET
|
|
|
|
|
|
|
|
#define socklen_t SlSocklen_t
|
|
|
|
#define sockaddr SlSockAddr_t
|
|
|
|
#define sockaddr_in SlSockAddrIn_t
|
|
|
|
#define in_addr SlInAddr_t
|
|
|
|
|
|
|
|
#define SOCK_STREAM SL_SOCK_STREAM
|
|
|
|
#define SOCK_DGRAM SL_SOCK_DGRAM
|
|
|
|
|
|
|
|
#define htonl sl_Htonl
|
|
|
|
#define ntohl sl_Ntohl
|
|
|
|
#define htons sl_Htons
|
|
|
|
#define ntohs sl_Ntohs
|
|
|
|
|
|
|
|
#ifndef EACCES
|
|
|
|
#define EACCES SL_EACCES
|
|
|
|
#endif
|
|
|
|
#ifndef EAFNOSUPPORT
|
|
|
|
#define EAFNOSUPPORT SL_EAFNOSUPPORT
|
|
|
|
#endif
|
|
|
|
#ifndef EAGAIN
|
|
|
|
#define EAGAIN SL_EAGAIN
|
|
|
|
#endif
|
|
|
|
#ifndef EBADF
|
|
|
|
#define EBADF SL_EBADF
|
|
|
|
#endif
|
|
|
|
#ifndef EINVAL
|
|
|
|
#define EINVAL SL_EINVAL
|
|
|
|
#endif
|
|
|
|
#ifndef ENOMEM
|
|
|
|
#define ENOMEM SL_ENOMEM
|
|
|
|
#endif
|
|
|
|
#ifndef EWOULDBLOCK
|
|
|
|
#define EWOULDBLOCK SL_EWOULDBLOCK
|
|
|
|
#endif
|
|
|
|
|
2016-04-06 15:22:45 +08:00
|
|
|
#define SOMAXCONN 8
|
|
|
|
|
2016-04-28 18:08:37 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2016-03-30 00:27:55 +08:00
|
|
|
const char *inet_ntop(int af, const void *src, char *dst, socklen_t size);
|
|
|
|
char *inet_ntoa(struct in_addr in);
|
|
|
|
int inet_pton(int af, const char *src, void *dst);
|
2016-02-13 17:31:34 +08:00
|
|
|
|
2016-04-12 01:46:31 +08:00
|
|
|
struct mg_mgr;
|
2016-06-09 19:00:14 +08:00
|
|
|
struct mg_connection;
|
2016-04-12 01:46:31 +08:00
|
|
|
|
|
|
|
typedef void (*mg_init_cb)(struct mg_mgr *mgr);
|
|
|
|
bool mg_start_task(int priority, int stack_size, mg_init_cb mg_init);
|
|
|
|
|
|
|
|
void mg_run_in_task(void (*cb)(struct mg_mgr *mgr, void *arg), void *cb_arg);
|
|
|
|
|
2016-09-05 23:37:01 +08:00
|
|
|
int sl_fs_init(void);
|
2016-04-12 01:46:31 +08:00
|
|
|
|
2016-07-06 20:55:00 +08:00
|
|
|
void sl_restart_cb(struct mg_mgr *mgr);
|
|
|
|
|
2016-06-09 19:00:14 +08:00
|
|
|
int sl_set_ssl_opts(struct mg_connection *nc);
|
|
|
|
|
2016-04-28 18:08:37 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-10-18 02:13:21 +08:00
|
|
|
#endif /* MG_NET_IF == MG_NET_IF_SIMPLELINK && !defined(__SIMPLELINK_H__) */
|
2016-03-29 02:58:12 +08:00
|
|
|
|
2016-04-12 01:46:31 +08:00
|
|
|
#endif /* CS_COMMON_PLATFORMS_SIMPLELINK_CS_SIMPLELINK_H_ */
|
2016-09-27 12:59:51 +08:00
|
|
|
#ifdef MG_MODULE_LINES
|
2016-10-14 21:31:02 +08:00
|
|
|
#line 1 "common/platforms/platform_wince.h"
|
|
|
|
#endif
|
|
|
|
#ifndef CS_COMMON_PLATFORMS_PLATFORM_WINCE_H_
|
|
|
|
#define CS_COMMON_PLATFORMS_PLATFORM_WINCE_H_
|
|
|
|
|
|
|
|
#if CS_PLATFORM == CS_P_WINCE
|
|
|
|
|
|
|
|
/*
|
|
|
|
* MSVC++ 14.0 _MSC_VER == 1900 (Visual Studio 2015)
|
|
|
|
* MSVC++ 12.0 _MSC_VER == 1800 (Visual Studio 2013)
|
|
|
|
* MSVC++ 11.0 _MSC_VER == 1700 (Visual Studio 2012)
|
|
|
|
* MSVC++ 10.0 _MSC_VER == 1600 (Visual Studio 2010)
|
|
|
|
* MSVC++ 9.0 _MSC_VER == 1500 (Visual Studio 2008)
|
|
|
|
* MSVC++ 8.0 _MSC_VER == 1400 (Visual Studio 2005)
|
|
|
|
* MSVC++ 7.1 _MSC_VER == 1310 (Visual Studio 2003)
|
|
|
|
* MSVC++ 7.0 _MSC_VER == 1300
|
|
|
|
* MSVC++ 6.0 _MSC_VER == 1200
|
|
|
|
* MSVC++ 5.0 _MSC_VER == 1100
|
|
|
|
*/
|
|
|
|
#pragma warning(disable : 4127) /* FD_SET() emits warning, disable it */
|
|
|
|
#pragma warning(disable : 4204) /* missing c99 support */
|
|
|
|
|
|
|
|
#ifndef _WINSOCK_DEPRECATED_NO_WARNINGS
|
|
|
|
#define _WINSOCK_DEPRECATED_NO_WARNINGS 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _CRT_SECURE_NO_WARNINGS
|
|
|
|
#define _CRT_SECURE_NO_WARNINGS
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
#pragma comment(lib, "ws2.lib") /* Linking with WinCE winsock library */
|
|
|
|
|
|
|
|
#include <winsock2.h>
|
|
|
|
#include <ws2tcpip.h>
|
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
#define strdup _strdup
|
|
|
|
|
|
|
|
#ifndef EINPROGRESS
|
|
|
|
#define EINPROGRESS WSAEINPROGRESS
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef EWOULDBLOCK
|
|
|
|
#define EWOULDBLOCK WSAEWOULDBLOCK
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __func__
|
|
|
|
#define STRX(x) #x
|
|
|
|
#define STR(x) STRX(x)
|
|
|
|
#define __func__ __FILE__ ":" STR(__LINE__)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define snprintf _snprintf
|
|
|
|
#define fileno _fileno
|
|
|
|
#define vsnprintf _vsnprintf
|
|
|
|
#define sleep(x) Sleep((x) *1000)
|
|
|
|
#define to64(x) _atoi64(x)
|
|
|
|
#define rmdir _rmdir
|
|
|
|
|
|
|
|
#if defined(_MSC_VER) && _MSC_VER >= 1400
|
|
|
|
#define fseeko(x, y, z) _fseeki64((x), (y), (z))
|
|
|
|
#else
|
|
|
|
#define fseeko(x, y, z) fseek((x), (y), (z))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef int socklen_t;
|
|
|
|
|
|
|
|
#if _MSC_VER >= 1700
|
|
|
|
#include <stdint.h>
|
|
|
|
#else
|
|
|
|
typedef signed char int8_t;
|
|
|
|
typedef unsigned char uint8_t;
|
|
|
|
typedef int int32_t;
|
|
|
|
typedef unsigned int uint32_t;
|
|
|
|
typedef short int16_t;
|
|
|
|
typedef unsigned short uint16_t;
|
|
|
|
typedef __int64 int64_t;
|
|
|
|
typedef unsigned __int64 uint64_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef SOCKET sock_t;
|
|
|
|
typedef uint32_t in_addr_t;
|
|
|
|
|
|
|
|
#ifndef UINT16_MAX
|
|
|
|
#define UINT16_MAX 65535
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef UINT32_MAX
|
|
|
|
#define UINT32_MAX 4294967295
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef pid_t
|
|
|
|
#define pid_t HANDLE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define INT64_FMT "I64d"
|
|
|
|
#define INT64_X_FMT "I64x"
|
|
|
|
/* TODO(alashkin): check if this is correct */
|
|
|
|
#define SIZE_T_FMT "u"
|
|
|
|
|
|
|
|
#define DIRSEP '\\'
|
|
|
|
|
|
|
|
#ifndef va_copy
|
|
|
|
#ifdef __va_copy
|
|
|
|
#define va_copy __va_copy
|
|
|
|
#else
|
|
|
|
#define va_copy(x, y) (x) = (y)
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MG_MAX_HTTP_REQUEST_SIZE
|
|
|
|
#define MG_MAX_HTTP_REQUEST_SIZE 8192
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MG_MAX_HTTP_SEND_MBUF
|
|
|
|
#define MG_MAX_HTTP_SEND_MBUF 4096
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MG_MAX_HTTP_HEADERS
|
|
|
|
#define MG_MAX_HTTP_HEADERS 40
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef CS_ENABLE_STDIO
|
|
|
|
#define CS_ENABLE_STDIO 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef unsigned int* uintptr_t;
|
|
|
|
#define abort() DebugBreak();
|
|
|
|
|
|
|
|
#ifndef BUFSIZ
|
|
|
|
#define BUFSIZ 4096
|
|
|
|
#define ENOMEM ERROR_NOT_ENOUGH_MEMORY
|
|
|
|
#endif
|
2016-10-17 17:03:59 +08:00
|
|
|
/*
|
|
|
|
* Explicitly disabling MG_ENABLE_THREADS for WinCE
|
|
|
|
* because they are enabled for _WIN32 by default
|
|
|
|
*/
|
|
|
|
#ifndef MG_ENABLE_THREADS
|
|
|
|
#define MG_ENABLE_THREADS 0
|
|
|
|
#endif
|
2016-10-14 21:31:02 +08:00
|
|
|
|
2016-10-17 17:03:59 +08:00
|
|
|
#ifndef MG_ENABLE_FILESYSTEM
|
|
|
|
#define MG_ENABLE_FILESYSTEM 1
|
|
|
|
#endif
|
2016-10-14 21:31:02 +08:00
|
|
|
|
2016-10-18 02:13:21 +08:00
|
|
|
#ifndef MG_NET_IF
|
|
|
|
#define MG_NET_IF MG_NET_IF_SOCKET
|
|
|
|
#endif
|
|
|
|
|
2016-10-17 17:03:59 +08:00
|
|
|
typedef struct _stati64 {
|
|
|
|
uint32_t st_mtime;
|
|
|
|
uint32_t st_size;
|
|
|
|
uint32_t st_mode;
|
|
|
|
} cs_stat_t;
|
2016-10-14 21:31:02 +08:00
|
|
|
|
2016-10-17 17:03:59 +08:00
|
|
|
#define ENOENT ERROR_PATH_NOT_FOUND
|
|
|
|
#define EACCES ERROR_ACCESS_DENIED
|
|
|
|
|
|
|
|
#define _S_IFREG 2
|
|
|
|
#define _S_IFDIR 4
|
|
|
|
|
|
|
|
#ifndef S_ISDIR
|
|
|
|
#define S_ISDIR(x) (((x) & _S_IFDIR) != 0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef S_ISREG
|
|
|
|
#define S_ISREG(x) (((x) & _S_IFREG) != 0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int open(const char *filename, int oflag, int pmode);
|
|
|
|
int _wstati64(const wchar_t *path, cs_stat_t *st);
|
|
|
|
const char *strerror();
|
2016-10-14 21:31:02 +08:00
|
|
|
|
|
|
|
#endif /* CS_PLATFORM == CS_P_WINCE */
|
|
|
|
#endif /* CS_COMMON_PLATFORMS_PLATFORM_WINCE_H_ */
|
|
|
|
#ifdef MG_MODULE_LINES
|
2016-10-18 20:30:58 +08:00
|
|
|
#line 1 "common/platforms/platform_nxp_kinetis.h"
|
|
|
|
#endif
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2014-2016 Cesanta Software Limited
|
|
|
|
* All rights reserved
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CS_COMMON_PLATFORMS_PLATFORM_NXP_KINETIS_H_
|
|
|
|
#define CS_COMMON_PLATFORMS_PLATFORM_NXP_KINETIS_H_
|
|
|
|
|
|
|
|
#if CS_PLATFORM == CS_P_NXP_KINETIS
|
|
|
|
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
|
|
|
|
#define SIZE_T_FMT "u"
|
|
|
|
typedef struct stat cs_stat_t;
|
|
|
|
#define to64(x) strtoll(x, NULL, 10)
|
|
|
|
#define INT64_FMT "lld"
|
|
|
|
#define INT64_X_FMT "llx"
|
|
|
|
#define __cdecl
|
|
|
|
|
|
|
|
#define MG_LWIP 1
|
|
|
|
|
|
|
|
#define MG_NET_IF MG_NET_IF_LWIP_LOW_LEVEL
|
|
|
|
|
|
|
|
/* struct timeval is defined in sys/time.h. */
|
|
|
|
#define LWIP_TIMEVAL_PRIVATE 0
|
|
|
|
|
|
|
|
#endif /* CS_PLATFORM == CS_P_NXP_KINETIS */
|
|
|
|
#endif /* CS_COMMON_PLATFORMS_PLATFORM_NXP_KINETIS_H_ */
|
|
|
|
#ifdef MG_MODULE_LINES
|
|
|
|
#line 1 "common/platforms/lwip/mg_lwip.h"
|
|
|
|
#endif
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2014-2016 Cesanta Software Limited
|
|
|
|
* All rights reserved
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CS_COMMON_PLATFORMS_LWIP_MG_LWIP_H_
|
|
|
|
#define CS_COMMON_PLATFORMS_LWIP_MG_LWIP_H_
|
|
|
|
|
|
|
|
#ifndef MG_LWIP
|
|
|
|
#define MG_LWIP 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if MG_LWIP
|
|
|
|
|
|
|
|
#include <lwip/opt.h>
|
|
|
|
#include <lwip/err.h>
|
|
|
|
#include <lwip/ip_addr.h>
|
|
|
|
#include <lwip/inet.h>
|
|
|
|
#include <lwip/netdb.h>
|
|
|
|
#include <lwip/dns.h>
|
|
|
|
|
|
|
|
#ifndef LWIP_PROVIDE_ERRNO
|
|
|
|
#include <errno.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if LWIP_SOCKET
|
|
|
|
# include <lwip/sockets.h>
|
|
|
|
#else
|
|
|
|
/* We really need the definitions from sockets.h. */
|
|
|
|
# undef LWIP_SOCKET
|
|
|
|
# define LWIP_SOCKET 1
|
|
|
|
# include <lwip/sockets.h>
|
|
|
|
# undef LWIP_SOCKET
|
|
|
|
# define LWIP_SOCKET 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define INVALID_SOCKET (-1)
|
|
|
|
#define SOMAXCONN 10
|
|
|
|
typedef int sock_t;
|
|
|
|
|
|
|
|
#if MG_NET_IF == MG_NET_IF_LWIP_LOW_LEVEL
|
|
|
|
struct mg_mgr;
|
|
|
|
struct mg_connection;
|
|
|
|
uint32_t mg_lwip_get_poll_delay_ms(struct mg_mgr *mgr);
|
|
|
|
void mg_lwip_set_keepalive_params(struct mg_connection *nc, int idle,
|
|
|
|
int interval, int count);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* MG_LWIP */
|
|
|
|
|
|
|
|
#endif /* CS_COMMON_PLATFORMS_LWIP_MG_LWIP_H_ */
|
|
|
|
#ifdef MG_MODULE_LINES
|
2016-09-27 12:59:51 +08:00
|
|
|
#line 1 "common/cs_time.h"
|
|
|
|
#endif
|
2016-01-28 01:47:32 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014-2016 Cesanta Software Limited
|
|
|
|
* All rights reserved
|
|
|
|
*/
|
|
|
|
|
2016-03-15 00:40:48 +08:00
|
|
|
#ifndef CS_COMMON_CS_TIME_H_
|
|
|
|
#define CS_COMMON_CS_TIME_H_
|
2015-12-16 08:52:37 +08:00
|
|
|
|
2016-04-18 23:04:45 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
2015-12-16 08:52:37 +08:00
|
|
|
/* Sub-second granularity time(). */
|
2016-09-05 23:37:01 +08:00
|
|
|
double cs_time(void);
|
2015-12-16 08:52:37 +08:00
|
|
|
|
2016-04-18 23:04:45 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
2016-03-15 00:40:48 +08:00
|
|
|
#endif /* CS_COMMON_CS_TIME_H_ */
|
2016-09-27 12:59:51 +08:00
|
|
|
#ifdef MG_MODULE_LINES
|
|
|
|
#line 1 "common/mg_str.h"
|
|
|
|
#endif
|
2016-07-07 07:47:03 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014-2016 Cesanta Software Limited
|
|
|
|
* All rights reserved
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CS_COMMON_MG_STR_H_
|
|
|
|
#define CS_COMMON_MG_STR_H_
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
/* Describes chunk of memory */
|
|
|
|
struct mg_str {
|
|
|
|
const char *p; /* Memory chunk pointer */
|
|
|
|
size_t len; /* Memory chunk length */
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
2016-07-13 04:37:07 +08:00
|
|
|
* Helper functions for creating mg_str struct from plain C string.
|
2016-07-07 07:47:03 +08:00
|
|
|
* `NULL` is allowed and becomes `{NULL, 0}`.
|
|
|
|
*/
|
|
|
|
struct mg_str mg_mk_str(const char *s);
|
2016-07-13 04:37:07 +08:00
|
|
|
struct mg_str mg_mk_str_n(const char *s, size_t len);
|
2016-07-07 07:47:03 +08:00
|
|
|
|
|
|
|
/* Macro for initializing mg_str. */
|
|
|
|
#define MG_MK_STR(str_literal) \
|
|
|
|
{ str_literal, sizeof(str_literal) - 1 }
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Cross-platform version of `strcmp()` where where first string is
|
|
|
|
* specified by `struct mg_str`.
|
|
|
|
*/
|
|
|
|
int mg_vcmp(const struct mg_str *str2, const char *str1);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Cross-platform version of `strncasecmp()` where first string is
|
|
|
|
* specified by `struct mg_str`.
|
|
|
|
*/
|
|
|
|
int mg_vcasecmp(const struct mg_str *str2, const char *str1);
|
|
|
|
|
2016-08-29 19:10:52 +08:00
|
|
|
struct mg_str mg_strdup(const struct mg_str s);
|
|
|
|
int mg_strcmp(const struct mg_str str1, const struct mg_str str2);
|
|
|
|
|
2016-07-07 07:47:03 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
#endif /* CS_COMMON_MG_STR_H_ */
|
2016-09-27 12:59:51 +08:00
|
|
|
#ifdef MG_MODULE_LINES
|
|
|
|
#line 1 "common/mbuf.h"
|
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2015 Cesanta Software Limited
|
|
|
|
* All rights reserved
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* === Memory Buffers
|
|
|
|
*
|
|
|
|
* Mbufs are mutable/growing memory buffers, like C++ strings.
|
2016-07-21 22:58:31 +08:00
|
|
|
* Mbuf can append data to the end of a buffer or insert data into arbitrary
|
2015-09-08 19:49:03 +08:00
|
|
|
* position in the middle of a buffer. The buffer grows automatically when
|
|
|
|
* needed.
|
|
|
|
*/
|
|
|
|
|
2016-03-15 00:40:48 +08:00
|
|
|
#ifndef CS_COMMON_MBUF_H_
|
|
|
|
#define CS_COMMON_MBUF_H_
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
#if defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#ifndef MBUF_SIZE_MULTIPLIER
|
|
|
|
#define MBUF_SIZE_MULTIPLIER 1.5
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Memory buffer descriptor */
|
|
|
|
struct mbuf {
|
|
|
|
char *buf; /* Buffer pointer */
|
|
|
|
size_t len; /* Data length. Data is located between offset 0 and len. */
|
|
|
|
size_t size; /* Buffer size allocated by realloc(1). Must be >= len */
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
2016-07-21 22:58:31 +08:00
|
|
|
* Initialises an Mbuf.
|
2015-09-08 19:49:03 +08:00
|
|
|
* `initial_capacity` specifies the initial capacity of the mbuf.
|
|
|
|
*/
|
|
|
|
void mbuf_init(struct mbuf *, size_t initial_capacity);
|
|
|
|
|
2016-07-21 22:58:31 +08:00
|
|
|
/* Frees the space allocated for the mbuffer and resets the mbuf structure. */
|
2015-09-08 19:49:03 +08:00
|
|
|
void mbuf_free(struct mbuf *);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Appends data to the Mbuf.
|
|
|
|
*
|
2016-07-21 22:58:31 +08:00
|
|
|
* Returns the number of bytes appended or 0 if out of memory.
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
|
|
|
size_t mbuf_append(struct mbuf *, const void *data, size_t data_size);
|
|
|
|
|
|
|
|
/*
|
2016-07-21 22:58:31 +08:00
|
|
|
* Inserts data at a specified offset in the Mbuf.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
|
|
|
* Existing data will be shifted forwards and the buffer will
|
|
|
|
* be grown if necessary.
|
2016-07-21 22:58:31 +08:00
|
|
|
* Returns the number of bytes inserted.
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
|
|
|
size_t mbuf_insert(struct mbuf *, size_t, const void *, size_t);
|
|
|
|
|
2016-07-21 22:58:31 +08:00
|
|
|
/* Removes `data_size` bytes from the beginning of the buffer. */
|
2015-09-08 19:49:03 +08:00
|
|
|
void mbuf_remove(struct mbuf *, size_t data_size);
|
|
|
|
|
|
|
|
/*
|
2016-07-21 22:58:31 +08:00
|
|
|
* Resizes an Mbuf.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
|
|
|
* If `new_size` is smaller than buffer's `len`, the
|
|
|
|
* resize is not performed.
|
|
|
|
*/
|
|
|
|
void mbuf_resize(struct mbuf *, size_t new_size);
|
|
|
|
|
2016-07-21 22:58:31 +08:00
|
|
|
/* Shrinks an Mbuf by resizing its `size` to `len`. */
|
2015-09-08 19:49:03 +08:00
|
|
|
void mbuf_trim(struct mbuf *);
|
|
|
|
|
|
|
|
#if defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
2016-03-15 00:40:48 +08:00
|
|
|
#endif /* CS_COMMON_MBUF_H_ */
|
2016-09-27 12:59:51 +08:00
|
|
|
#ifdef MG_MODULE_LINES
|
|
|
|
#line 1 "common/sha1.h"
|
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014 Cesanta Software Limited
|
|
|
|
* All rights reserved
|
|
|
|
*/
|
|
|
|
|
2016-03-15 00:40:48 +08:00
|
|
|
#ifndef CS_COMMON_SHA1_H_
|
|
|
|
#define CS_COMMON_SHA1_H_
|
|
|
|
|
|
|
|
#ifndef DISABLE_SHA1
|
Change from using #ifdef to #if for features tests
"#if FOO" still works with simple -DFOO, but gives more flexibility.
Specifically, if user expressed no preference (FOO is not defined),
we can apply reasonable defaults (this is the legitimate use of ifdef).
In short, from now on, please use
#if MG_ENABLE_FOO
instead of
#ifdef MG_ENABLE_FOO
Since we are all used to #ifdef, this change also adds a precommit check
to police this. Specifically, in *.h and *.c files that are Copyright Cesanta,
"ifdef" and "if defined()" are not allowed to be used with macros that contain
ENABLE or DISABLE, unless the like also contains "ifdef-ok".
Hence, if you are sure you want to use ifdef, use this:
#ifdef MG_ENABLE_FOO /* ifdef-ok */
PUBLISHED_FROM=9be829448f53cff575d6cae8b9945fb12531c15a
2016-10-14 01:55:08 +08:00
|
|
|
#define DISABLE_SHA1 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !DISABLE_SHA1
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2016-09-27 12:59:51 +08:00
|
|
|
/* Amalgamated: #include "common/platform.h" */
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
uint32_t state[5];
|
|
|
|
uint32_t count[2];
|
|
|
|
unsigned char buffer[64];
|
|
|
|
} cs_sha1_ctx;
|
|
|
|
|
|
|
|
void cs_sha1_init(cs_sha1_ctx *);
|
|
|
|
void cs_sha1_update(cs_sha1_ctx *, const unsigned char *data, uint32_t len);
|
|
|
|
void cs_sha1_final(unsigned char digest[20], cs_sha1_ctx *);
|
2015-09-18 21:56:18 +08:00
|
|
|
void cs_hmac_sha1(const unsigned char *key, size_t key_len,
|
|
|
|
const unsigned char *text, size_t text_len,
|
|
|
|
unsigned char out[20]);
|
2015-09-08 19:49:03 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
2016-03-15 00:40:48 +08:00
|
|
|
|
|
|
|
#endif /* DISABLE_SHA1 */
|
|
|
|
|
|
|
|
#endif /* CS_COMMON_SHA1_H_ */
|
2016-09-27 12:59:51 +08:00
|
|
|
#ifdef MG_MODULE_LINES
|
|
|
|
#line 1 "common/md5.h"
|
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014 Cesanta Software Limited
|
|
|
|
* All rights reserved
|
|
|
|
*/
|
|
|
|
|
2016-03-15 00:40:48 +08:00
|
|
|
#ifndef CS_COMMON_MD5_H_
|
|
|
|
#define CS_COMMON_MD5_H_
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2016-09-27 12:59:51 +08:00
|
|
|
/* Amalgamated: #include "common/platform.h" */
|
2015-09-08 19:49:03 +08:00
|
|
|
|
Change from using #ifdef to #if for features tests
"#if FOO" still works with simple -DFOO, but gives more flexibility.
Specifically, if user expressed no preference (FOO is not defined),
we can apply reasonable defaults (this is the legitimate use of ifdef).
In short, from now on, please use
#if MG_ENABLE_FOO
instead of
#ifdef MG_ENABLE_FOO
Since we are all used to #ifdef, this change also adds a precommit check
to police this. Specifically, in *.h and *.c files that are Copyright Cesanta,
"ifdef" and "if defined()" are not allowed to be used with macros that contain
ENABLE or DISABLE, unless the like also contains "ifdef-ok".
Hence, if you are sure you want to use ifdef, use this:
#ifdef MG_ENABLE_FOO /* ifdef-ok */
PUBLISHED_FROM=9be829448f53cff575d6cae8b9945fb12531c15a
2016-10-14 01:55:08 +08:00
|
|
|
#ifndef DISABLE_MD5
|
|
|
|
#define DISABLE_MD5 0
|
|
|
|
#endif
|
|
|
|
|
2015-09-08 19:49:03 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
typedef struct MD5Context {
|
|
|
|
uint32_t buf[4];
|
|
|
|
uint32_t bits[2];
|
|
|
|
unsigned char in[64];
|
|
|
|
} MD5_CTX;
|
|
|
|
|
|
|
|
void MD5_Init(MD5_CTX *c);
|
|
|
|
void MD5_Update(MD5_CTX *c, const unsigned char *data, size_t len);
|
|
|
|
void MD5_Final(unsigned char *md, MD5_CTX *c);
|
|
|
|
|
2015-10-20 17:31:23 +08:00
|
|
|
/*
|
2016-05-03 20:13:52 +08:00
|
|
|
* Return stringified MD5 hash for NULL terminated list of pointer/length pairs.
|
|
|
|
* A length should be specified as size_t variable.
|
2015-10-20 17:31:23 +08:00
|
|
|
* Example:
|
|
|
|
*
|
|
|
|
* char buf[33];
|
2016-05-03 20:13:52 +08:00
|
|
|
* cs_md5(buf, "foo", (size_t) 3, "bar", (size_t) 3, NULL);
|
2015-10-20 17:31:23 +08:00
|
|
|
*/
|
|
|
|
char *cs_md5(char buf[33], ...);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Stringify binary data. Output buffer size must be 2 * size_of_input + 1
|
|
|
|
* because each byte of input takes 2 bytes in string representation
|
|
|
|
* plus 1 byte for the terminating \0 character.
|
|
|
|
*/
|
|
|
|
void cs_to_hex(char *to, const unsigned char *p, size_t len);
|
|
|
|
|
2015-09-08 19:49:03 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
2016-03-15 00:40:48 +08:00
|
|
|
#endif /* CS_COMMON_MD5_H_ */
|
2016-09-27 12:59:51 +08:00
|
|
|
#ifdef MG_MODULE_LINES
|
|
|
|
#line 1 "common/base64.h"
|
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014 Cesanta Software Limited
|
|
|
|
* All rights reserved
|
|
|
|
*/
|
|
|
|
|
2016-03-15 00:40:48 +08:00
|
|
|
#ifndef CS_COMMON_BASE64_H_
|
|
|
|
#define CS_COMMON_BASE64_H_
|
|
|
|
|
|
|
|
#ifndef DISABLE_BASE64
|
Change from using #ifdef to #if for features tests
"#if FOO" still works with simple -DFOO, but gives more flexibility.
Specifically, if user expressed no preference (FOO is not defined),
we can apply reasonable defaults (this is the legitimate use of ifdef).
In short, from now on, please use
#if MG_ENABLE_FOO
instead of
#ifdef MG_ENABLE_FOO
Since we are all used to #ifdef, this change also adds a precommit check
to police this. Specifically, in *.h and *.c files that are Copyright Cesanta,
"ifdef" and "if defined()" are not allowed to be used with macros that contain
ENABLE or DISABLE, unless the like also contains "ifdef-ok".
Hence, if you are sure you want to use ifdef, use this:
#ifdef MG_ENABLE_FOO /* ifdef-ok */
PUBLISHED_FROM=9be829448f53cff575d6cae8b9945fb12531c15a
2016-10-14 01:55:08 +08:00
|
|
|
#define DISABLE_BASE64 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !DISABLE_BASE64
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2015-09-08 23:46:54 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2015-09-08 19:49:03 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-09-12 23:58:45 +08:00
|
|
|
typedef void (*cs_base64_putc_t)(char, void *);
|
|
|
|
|
|
|
|
struct cs_base64_ctx {
|
|
|
|
/* cannot call it putc because it's a macro on some environments */
|
|
|
|
cs_base64_putc_t b64_putc;
|
|
|
|
unsigned char chunk[3];
|
|
|
|
int chunk_size;
|
|
|
|
void *user_data;
|
|
|
|
};
|
|
|
|
|
|
|
|
void cs_base64_init(struct cs_base64_ctx *ctx, cs_base64_putc_t putc,
|
|
|
|
void *user_data);
|
|
|
|
void cs_base64_update(struct cs_base64_ctx *ctx, const char *str, size_t len);
|
|
|
|
void cs_base64_finish(struct cs_base64_ctx *ctx);
|
2015-09-08 23:46:54 +08:00
|
|
|
|
2015-09-08 19:49:03 +08:00
|
|
|
void cs_base64_encode(const unsigned char *src, int src_len, char *dst);
|
2015-09-08 23:46:54 +08:00
|
|
|
void cs_fprint_base64(FILE *f, const unsigned char *src, int src_len);
|
2015-09-08 19:49:03 +08:00
|
|
|
int cs_base64_decode(const unsigned char *s, int len, char *dst);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2016-03-15 00:40:48 +08:00
|
|
|
|
|
|
|
#endif /* DISABLE_BASE64 */
|
|
|
|
|
|
|
|
#endif /* CS_COMMON_BASE64_H_ */
|
2016-09-27 12:59:51 +08:00
|
|
|
#ifdef MG_MODULE_LINES
|
|
|
|
#line 1 "common/str_util.h"
|
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2015 Cesanta Software Limited
|
|
|
|
* All rights reserved
|
|
|
|
*/
|
|
|
|
|
2016-03-15 00:40:48 +08:00
|
|
|
#ifndef CS_COMMON_STR_UTIL_H_
|
|
|
|
#define CS_COMMON_STR_UTIL_H_
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2016-03-19 18:02:09 +08:00
|
|
|
size_t c_strnlen(const char *s, size_t maxlen);
|
2015-09-08 19:49:03 +08:00
|
|
|
int c_snprintf(char *buf, size_t buf_size, const char *format, ...);
|
|
|
|
int c_vsnprintf(char *buf, size_t buf_size, const char *format, va_list ap);
|
2016-02-26 08:12:32 +08:00
|
|
|
/*
|
|
|
|
* Find the first occurrence of find in s, where the search is limited to the
|
|
|
|
* first slen characters of s.
|
|
|
|
*/
|
|
|
|
const char *c_strnstr(const char *s, const char *find, size_t slen);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2016-02-26 08:12:32 +08:00
|
|
|
|
2016-03-15 00:40:48 +08:00
|
|
|
#endif /* CS_COMMON_STR_UTIL_H_ */
|
2016-09-27 12:59:51 +08:00
|
|
|
#ifdef MG_MODULE_LINES
|
Change from using #ifdef to #if for features tests
"#if FOO" still works with simple -DFOO, but gives more flexibility.
Specifically, if user expressed no preference (FOO is not defined),
we can apply reasonable defaults (this is the legitimate use of ifdef).
In short, from now on, please use
#if MG_ENABLE_FOO
instead of
#ifdef MG_ENABLE_FOO
Since we are all used to #ifdef, this change also adds a precommit check
to police this. Specifically, in *.h and *.c files that are Copyright Cesanta,
"ifdef" and "if defined()" are not allowed to be used with macros that contain
ENABLE or DISABLE, unless the like also contains "ifdef-ok".
Hence, if you are sure you want to use ifdef, use this:
#ifdef MG_ENABLE_FOO /* ifdef-ok */
PUBLISHED_FROM=9be829448f53cff575d6cae8b9945fb12531c15a
2016-10-14 01:55:08 +08:00
|
|
|
#line 1 "mongoose/src/features.h"
|
|
|
|
#endif
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2014-2016 Cesanta Software Limited
|
|
|
|
* All rights reserved
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CS_MONGOOSE_SRC_FEATURES_H_
|
|
|
|
#define CS_MONGOOSE_SRC_FEATURES_H_
|
|
|
|
|
|
|
|
#ifndef MG_DISABLE_HTTP_DIGEST_AUTH
|
|
|
|
#define MG_DISABLE_HTTP_DIGEST_AUTH 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MG_DISABLE_HTTP_KEEP_ALIVE
|
|
|
|
#define MG_DISABLE_HTTP_KEEP_ALIVE 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MG_DISABLE_PFS
|
|
|
|
#define MG_DISABLE_PFS 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MG_DISABLE_WS_RANDOM_MASK
|
|
|
|
#define MG_DISABLE_WS_RANDOM_MASK 0
|
|
|
|
#endif
|
|
|
|
|
2016-10-18 03:08:11 +08:00
|
|
|
#ifndef MG_ENABLE_ASYNC_RESOLVER
|
|
|
|
#define MG_ENABLE_ASYNC_RESOLVER 1
|
|
|
|
#endif
|
|
|
|
|
2016-10-17 12:02:29 +08:00
|
|
|
#ifndef MG_ENABLE_BROADCAST
|
|
|
|
#define MG_ENABLE_BROADCAST 0
|
2016-10-14 03:17:59 +08:00
|
|
|
#endif
|
|
|
|
|
Change from using #ifdef to #if for features tests
"#if FOO" still works with simple -DFOO, but gives more flexibility.
Specifically, if user expressed no preference (FOO is not defined),
we can apply reasonable defaults (this is the legitimate use of ifdef).
In short, from now on, please use
#if MG_ENABLE_FOO
instead of
#ifdef MG_ENABLE_FOO
Since we are all used to #ifdef, this change also adds a precommit check
to police this. Specifically, in *.h and *.c files that are Copyright Cesanta,
"ifdef" and "if defined()" are not allowed to be used with macros that contain
ENABLE or DISABLE, unless the like also contains "ifdef-ok".
Hence, if you are sure you want to use ifdef, use this:
#ifdef MG_ENABLE_FOO /* ifdef-ok */
PUBLISHED_FROM=9be829448f53cff575d6cae8b9945fb12531c15a
2016-10-14 01:55:08 +08:00
|
|
|
#ifndef MG_ENABLE_COAP
|
|
|
|
#define MG_ENABLE_COAP 0
|
|
|
|
#endif
|
|
|
|
|
2016-10-14 18:15:11 +08:00
|
|
|
#ifndef MG_ENABLE_DEBUG
|
|
|
|
#define MG_ENABLE_DEBUG 0
|
|
|
|
#endif
|
|
|
|
|
2016-10-14 20:24:02 +08:00
|
|
|
#ifndef MG_ENABLE_DIRECTORY_LISTING
|
|
|
|
#define MG_ENABLE_DIRECTORY_LISTING 0
|
|
|
|
#endif
|
|
|
|
|
2016-10-18 03:08:11 +08:00
|
|
|
#ifndef MG_ENABLE_DNS
|
|
|
|
#define MG_ENABLE_DNS 1
|
|
|
|
#endif
|
|
|
|
|
Change from using #ifdef to #if for features tests
"#if FOO" still works with simple -DFOO, but gives more flexibility.
Specifically, if user expressed no preference (FOO is not defined),
we can apply reasonable defaults (this is the legitimate use of ifdef).
In short, from now on, please use
#if MG_ENABLE_FOO
instead of
#ifdef MG_ENABLE_FOO
Since we are all used to #ifdef, this change also adds a precommit check
to police this. Specifically, in *.h and *.c files that are Copyright Cesanta,
"ifdef" and "if defined()" are not allowed to be used with macros that contain
ENABLE or DISABLE, unless the like also contains "ifdef-ok".
Hence, if you are sure you want to use ifdef, use this:
#ifdef MG_ENABLE_FOO /* ifdef-ok */
PUBLISHED_FROM=9be829448f53cff575d6cae8b9945fb12531c15a
2016-10-14 01:55:08 +08:00
|
|
|
#ifndef MG_ENABLE_DNS_SERVER
|
|
|
|
#define MG_ENABLE_DNS_SERVER 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MG_ENABLE_FAKE_DAVLOCK
|
|
|
|
#define MG_ENABLE_FAKE_DAVLOCK 0
|
|
|
|
#endif
|
|
|
|
|
2016-10-14 20:24:02 +08:00
|
|
|
#ifndef MG_ENABLE_FILESYSTEM
|
|
|
|
#define MG_ENABLE_FILESYSTEM 0
|
|
|
|
#endif
|
|
|
|
|
Change from using #ifdef to #if for features tests
"#if FOO" still works with simple -DFOO, but gives more flexibility.
Specifically, if user expressed no preference (FOO is not defined),
we can apply reasonable defaults (this is the legitimate use of ifdef).
In short, from now on, please use
#if MG_ENABLE_FOO
instead of
#ifdef MG_ENABLE_FOO
Since we are all used to #ifdef, this change also adds a precommit check
to police this. Specifically, in *.h and *.c files that are Copyright Cesanta,
"ifdef" and "if defined()" are not allowed to be used with macros that contain
ENABLE or DISABLE, unless the like also contains "ifdef-ok".
Hence, if you are sure you want to use ifdef, use this:
#ifdef MG_ENABLE_FOO /* ifdef-ok */
PUBLISHED_FROM=9be829448f53cff575d6cae8b9945fb12531c15a
2016-10-14 01:55:08 +08:00
|
|
|
#ifndef MG_ENABLE_GETADDRINFO
|
|
|
|
#define MG_ENABLE_GETADDRINFO 0
|
|
|
|
#endif
|
|
|
|
|
2016-10-14 18:15:11 +08:00
|
|
|
#ifndef MG_ENABLE_HEXDUMP
|
|
|
|
#define MG_ENABLE_HEXDUMP CS_ENABLE_STDIO
|
|
|
|
#endif
|
|
|
|
|
2016-10-17 12:02:29 +08:00
|
|
|
#ifndef MG_ENABLE_HTTP
|
|
|
|
#define MG_ENABLE_HTTP 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MG_ENABLE_HTTP_CGI
|
|
|
|
#define MG_ENABLE_HTTP_CGI 0
|
|
|
|
#endif
|
|
|
|
|
2016-10-15 00:58:14 +08:00
|
|
|
#ifndef MG_ENABLE_HTTP_SSI
|
|
|
|
#define MG_ENABLE_HTTP_SSI MG_ENABLE_FILESYSTEM
|
|
|
|
#endif
|
|
|
|
|
2016-10-17 07:08:51 +08:00
|
|
|
#ifndef MG_ENABLE_HTTP_SSI_EXEC
|
|
|
|
#define MG_ENABLE_HTTP_SSI_EXEC 0
|
|
|
|
#endif
|
|
|
|
|
Change from using #ifdef to #if for features tests
"#if FOO" still works with simple -DFOO, but gives more flexibility.
Specifically, if user expressed no preference (FOO is not defined),
we can apply reasonable defaults (this is the legitimate use of ifdef).
In short, from now on, please use
#if MG_ENABLE_FOO
instead of
#ifdef MG_ENABLE_FOO
Since we are all used to #ifdef, this change also adds a precommit check
to police this. Specifically, in *.h and *.c files that are Copyright Cesanta,
"ifdef" and "if defined()" are not allowed to be used with macros that contain
ENABLE or DISABLE, unless the like also contains "ifdef-ok".
Hence, if you are sure you want to use ifdef, use this:
#ifdef MG_ENABLE_FOO /* ifdef-ok */
PUBLISHED_FROM=9be829448f53cff575d6cae8b9945fb12531c15a
2016-10-14 01:55:08 +08:00
|
|
|
#ifndef MG_ENABLE_HTTP_STREAMING_MULTIPART
|
|
|
|
#define MG_ENABLE_HTTP_STREAMING_MULTIPART 0
|
|
|
|
#endif
|
|
|
|
|
2016-10-14 14:50:00 +08:00
|
|
|
#ifndef MG_ENABLE_HTTP_WEBDAV
|
|
|
|
#define MG_ENABLE_HTTP_WEBDAV 0
|
|
|
|
#endif
|
|
|
|
|
2016-10-15 00:58:14 +08:00
|
|
|
#ifndef MG_ENABLE_HTTP_WEBSOCKET
|
|
|
|
#define MG_ENABLE_HTTP_WEBSOCKET 1
|
|
|
|
#endif
|
|
|
|
|
Change from using #ifdef to #if for features tests
"#if FOO" still works with simple -DFOO, but gives more flexibility.
Specifically, if user expressed no preference (FOO is not defined),
we can apply reasonable defaults (this is the legitimate use of ifdef).
In short, from now on, please use
#if MG_ENABLE_FOO
instead of
#ifdef MG_ENABLE_FOO
Since we are all used to #ifdef, this change also adds a precommit check
to police this. Specifically, in *.h and *.c files that are Copyright Cesanta,
"ifdef" and "if defined()" are not allowed to be used with macros that contain
ENABLE or DISABLE, unless the like also contains "ifdef-ok".
Hence, if you are sure you want to use ifdef, use this:
#ifdef MG_ENABLE_FOO /* ifdef-ok */
PUBLISHED_FROM=9be829448f53cff575d6cae8b9945fb12531c15a
2016-10-14 01:55:08 +08:00
|
|
|
#ifndef MG_ENABLE_IPV6
|
|
|
|
#define MG_ENABLE_IPV6 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MG_ENABLE_JAVASCRIPT
|
|
|
|
#define MG_ENABLE_JAVASCRIPT 0
|
|
|
|
#endif
|
|
|
|
|
2016-10-14 04:48:45 +08:00
|
|
|
#ifndef MG_ENABLE_MQTT
|
2016-10-18 23:45:02 +08:00
|
|
|
#define MG_ENABLE_MQTT 1
|
2016-10-14 04:48:45 +08:00
|
|
|
#endif
|
|
|
|
|
Change from using #ifdef to #if for features tests
"#if FOO" still works with simple -DFOO, but gives more flexibility.
Specifically, if user expressed no preference (FOO is not defined),
we can apply reasonable defaults (this is the legitimate use of ifdef).
In short, from now on, please use
#if MG_ENABLE_FOO
instead of
#ifdef MG_ENABLE_FOO
Since we are all used to #ifdef, this change also adds a precommit check
to police this. Specifically, in *.h and *.c files that are Copyright Cesanta,
"ifdef" and "if defined()" are not allowed to be used with macros that contain
ENABLE or DISABLE, unless the like also contains "ifdef-ok".
Hence, if you are sure you want to use ifdef, use this:
#ifdef MG_ENABLE_FOO /* ifdef-ok */
PUBLISHED_FROM=9be829448f53cff575d6cae8b9945fb12531c15a
2016-10-14 01:55:08 +08:00
|
|
|
#ifndef MG_ENABLE_MQTT_BROKER
|
|
|
|
#define MG_ENABLE_MQTT_BROKER 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MG_ENABLE_SSL
|
|
|
|
#define MG_ENABLE_SSL 0
|
|
|
|
#endif
|
|
|
|
|
2016-10-18 03:08:11 +08:00
|
|
|
#ifndef MG_ENABLE_SYNC_RESOLVER
|
|
|
|
#define MG_ENABLE_SYNC_RESOLVER 0
|
|
|
|
#endif
|
|
|
|
|
2016-10-14 18:15:11 +08:00
|
|
|
#ifndef MG_ENABLE_STDIO
|
|
|
|
#define MG_ENABLE_STDIO CS_ENABLE_STDIO
|
|
|
|
#endif
|
|
|
|
|
2016-10-18 02:13:21 +08:00
|
|
|
#ifndef MG_NET_IF
|
|
|
|
#define MG_NET_IF MG_NET_IF_SOCKET
|
|
|
|
#endif
|
|
|
|
|
Change from using #ifdef to #if for features tests
"#if FOO" still works with simple -DFOO, but gives more flexibility.
Specifically, if user expressed no preference (FOO is not defined),
we can apply reasonable defaults (this is the legitimate use of ifdef).
In short, from now on, please use
#if MG_ENABLE_FOO
instead of
#ifdef MG_ENABLE_FOO
Since we are all used to #ifdef, this change also adds a precommit check
to police this. Specifically, in *.h and *.c files that are Copyright Cesanta,
"ifdef" and "if defined()" are not allowed to be used with macros that contain
ENABLE or DISABLE, unless the like also contains "ifdef-ok".
Hence, if you are sure you want to use ifdef, use this:
#ifdef MG_ENABLE_FOO /* ifdef-ok */
PUBLISHED_FROM=9be829448f53cff575d6cae8b9945fb12531c15a
2016-10-14 01:55:08 +08:00
|
|
|
#ifndef MG_ENABLE_THREADS /* ifdef-ok */
|
|
|
|
#ifdef _WIN32
|
|
|
|
#define MG_ENABLE_THREADS 1
|
|
|
|
#else
|
|
|
|
#define MG_ENABLE_THREADS 0
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2016-10-14 18:15:11 +08:00
|
|
|
#if MG_ENABLE_DEBUG && !defined(CS_ENABLE_DEBUG)
|
|
|
|
#define CS_ENABLE_DEBUG 1
|
|
|
|
#endif
|
|
|
|
|
2016-10-14 04:48:45 +08:00
|
|
|
/* MQTT broker requires MQTT */
|
|
|
|
#if MG_ENABLE_MQTT_BROKER && !MG_ENABLE_MQTT
|
|
|
|
#undef MG_ENABLE_MQTT
|
|
|
|
#define MG_ENABLE_MQTT 1
|
|
|
|
#endif
|
|
|
|
|
Change from using #ifdef to #if for features tests
"#if FOO" still works with simple -DFOO, but gives more flexibility.
Specifically, if user expressed no preference (FOO is not defined),
we can apply reasonable defaults (this is the legitimate use of ifdef).
In short, from now on, please use
#if MG_ENABLE_FOO
instead of
#ifdef MG_ENABLE_FOO
Since we are all used to #ifdef, this change also adds a precommit check
to police this. Specifically, in *.h and *.c files that are Copyright Cesanta,
"ifdef" and "if defined()" are not allowed to be used with macros that contain
ENABLE or DISABLE, unless the like also contains "ifdef-ok".
Hence, if you are sure you want to use ifdef, use this:
#ifdef MG_ENABLE_FOO /* ifdef-ok */
PUBLISHED_FROM=9be829448f53cff575d6cae8b9945fb12531c15a
2016-10-14 01:55:08 +08:00
|
|
|
#endif /* CS_MONGOOSE_SRC_FEATURES_H_ */
|
|
|
|
#ifdef MG_MODULE_LINES
|
2016-09-27 12:59:51 +08:00
|
|
|
#line 1 "mongoose/src/net.h"
|
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014 Cesanta Software Limited
|
|
|
|
* All rights reserved
|
|
|
|
* This software is dual-licensed: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation. For the terms of this
|
|
|
|
* license, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* You are free to use this software under the terms of the GNU General
|
|
|
|
* Public License, but WITHOUT ANY WARRANTY; without even the implied
|
|
|
|
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
* See the GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* Alternatively, you can license this software under a commercial
|
|
|
|
* license, as set out in <https://www.cesanta.com/license>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2016-09-01 22:19:01 +08:00
|
|
|
* === Core API: TCP/UDP/SSL
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
|
|
|
* NOTE: Mongoose manager is single threaded. It does not protect
|
|
|
|
* its data structures by mutexes, therefore all functions that are dealing
|
2016-07-22 00:24:10 +08:00
|
|
|
* with a particular event manager should be called from the same thread,
|
|
|
|
* with exception of the `mg_broadcast()` function. It is fine to have different
|
2015-09-08 19:49:03 +08:00
|
|
|
* event managers handled by different threads.
|
|
|
|
*/
|
|
|
|
|
2016-03-15 00:40:48 +08:00
|
|
|
#ifndef CS_MONGOOSE_SRC_NET_H_
|
|
|
|
#define CS_MONGOOSE_SRC_NET_H_
|
2015-09-08 19:49:03 +08:00
|
|
|
|
Change from using #ifdef to #if for features tests
"#if FOO" still works with simple -DFOO, but gives more flexibility.
Specifically, if user expressed no preference (FOO is not defined),
we can apply reasonable defaults (this is the legitimate use of ifdef).
In short, from now on, please use
#if MG_ENABLE_FOO
instead of
#ifdef MG_ENABLE_FOO
Since we are all used to #ifdef, this change also adds a precommit check
to police this. Specifically, in *.h and *.c files that are Copyright Cesanta,
"ifdef" and "if defined()" are not allowed to be used with macros that contain
ENABLE or DISABLE, unless the like also contains "ifdef-ok".
Hence, if you are sure you want to use ifdef, use this:
#ifdef MG_ENABLE_FOO /* ifdef-ok */
PUBLISHED_FROM=9be829448f53cff575d6cae8b9945fb12531c15a
2016-10-14 01:55:08 +08:00
|
|
|
#if MG_ENABLE_JAVASCRIPT
|
2015-09-22 00:58:45 +08:00
|
|
|
#define EXCLUDE_COMMON
|
|
|
|
#include <v7.h>
|
|
|
|
#endif
|
|
|
|
|
2016-09-27 12:59:51 +08:00
|
|
|
/* Amalgamated: #include "mongoose/src/common.h" */
|
|
|
|
/* Amalgamated: #include "common/mbuf.h" */
|
2015-09-08 19:49:03 +08:00
|
|
|
|
Change from using #ifdef to #if for features tests
"#if FOO" still works with simple -DFOO, but gives more flexibility.
Specifically, if user expressed no preference (FOO is not defined),
we can apply reasonable defaults (this is the legitimate use of ifdef).
In short, from now on, please use
#if MG_ENABLE_FOO
instead of
#ifdef MG_ENABLE_FOO
Since we are all used to #ifdef, this change also adds a precommit check
to police this. Specifically, in *.h and *.c files that are Copyright Cesanta,
"ifdef" and "if defined()" are not allowed to be used with macros that contain
ENABLE or DISABLE, unless the like also contains "ifdef-ok".
Hence, if you are sure you want to use ifdef, use this:
#ifdef MG_ENABLE_FOO /* ifdef-ok */
PUBLISHED_FROM=9be829448f53cff575d6cae8b9945fb12531c15a
2016-10-14 01:55:08 +08:00
|
|
|
#if MG_ENABLE_SSL
|
2015-09-08 19:49:03 +08:00
|
|
|
#ifdef __APPLE__
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
#endif
|
2016-10-18 02:13:21 +08:00
|
|
|
#if MG_NET_IF != MG_NET_IF_SIMPLELINK
|
2015-09-08 19:49:03 +08:00
|
|
|
#include <openssl/ssl.h>
|
|
|
|
#endif
|
2016-06-09 19:00:14 +08:00
|
|
|
#endif /* MG_ENABLE_SSL */
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2015-12-06 00:46:53 +08:00
|
|
|
#ifndef MG_VPRINTF_BUFFER_SIZE
|
|
|
|
#define MG_VPRINTF_BUFFER_SIZE 100
|
|
|
|
#endif
|
|
|
|
|
2015-09-19 19:38:46 +08:00
|
|
|
#ifdef MG_USE_READ_WRITE
|
2015-10-22 00:33:49 +08:00
|
|
|
#define MG_RECV_FUNC(s, b, l, f) read(s, b, l)
|
|
|
|
#define MG_SEND_FUNC(s, b, l, f) write(s, b, l)
|
2015-09-08 19:49:03 +08:00
|
|
|
#else
|
2015-10-22 00:33:49 +08:00
|
|
|
#define MG_RECV_FUNC(s, b, l, f) recv(s, b, l, f)
|
|
|
|
#define MG_SEND_FUNC(s, b, l, f) send(s, b, l, f)
|
2015-09-08 19:49:03 +08:00
|
|
|
#endif
|
2014-09-02 04:02:16 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
2015-09-08 19:49:03 +08:00
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
union socket_address {
|
|
|
|
struct sockaddr sa;
|
|
|
|
struct sockaddr_in sin;
|
Change from using #ifdef to #if for features tests
"#if FOO" still works with simple -DFOO, but gives more flexibility.
Specifically, if user expressed no preference (FOO is not defined),
we can apply reasonable defaults (this is the legitimate use of ifdef).
In short, from now on, please use
#if MG_ENABLE_FOO
instead of
#ifdef MG_ENABLE_FOO
Since we are all used to #ifdef, this change also adds a precommit check
to police this. Specifically, in *.h and *.c files that are Copyright Cesanta,
"ifdef" and "if defined()" are not allowed to be used with macros that contain
ENABLE or DISABLE, unless the like also contains "ifdef-ok".
Hence, if you are sure you want to use ifdef, use this:
#ifdef MG_ENABLE_FOO /* ifdef-ok */
PUBLISHED_FROM=9be829448f53cff575d6cae8b9945fb12531c15a
2016-10-14 01:55:08 +08:00
|
|
|
#if MG_ENABLE_IPV6
|
2015-09-08 19:49:03 +08:00
|
|
|
struct sockaddr_in6 sin6;
|
|
|
|
#else
|
|
|
|
struct sockaddr sin6;
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
2016-03-19 17:48:50 +08:00
|
|
|
struct mg_connection;
|
|
|
|
|
2015-09-08 19:49:03 +08:00
|
|
|
/*
|
2016-07-22 00:24:10 +08:00
|
|
|
* Callback function (event handler) prototype. Must be defined by the user.
|
2016-07-26 22:53:33 +08:00
|
|
|
* Mongoose calls the event handler, passing the events defined below.
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
|
|
|
typedef void (*mg_event_handler_t)(struct mg_connection *, int ev, void *);
|
|
|
|
|
|
|
|
/* Events. Meaning of event parameter (evp) is given in the comment. */
|
2015-09-19 19:38:46 +08:00
|
|
|
#define MG_EV_POLL 0 /* Sent to each connection on each mg_mgr_poll() call */
|
|
|
|
#define MG_EV_ACCEPT 1 /* New connection accepted. union socket_address * */
|
|
|
|
#define MG_EV_CONNECT 2 /* connect() succeeded or failed. int * */
|
|
|
|
#define MG_EV_RECV 3 /* Data has benn received. int *num_bytes */
|
|
|
|
#define MG_EV_SEND 4 /* Data has been written to a socket. int *num_bytes */
|
|
|
|
#define MG_EV_CLOSE 5 /* Connection is closed. NULL */
|
2015-12-08 01:55:28 +08:00
|
|
|
#define MG_EV_TIMER 6 /* now >= conn->ev_timer_time. double * */
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Mongoose event manager.
|
|
|
|
*/
|
|
|
|
struct mg_mgr {
|
|
|
|
struct mg_connection *active_connections;
|
2016-10-14 18:15:11 +08:00
|
|
|
#if MG_ENABLE_HEXDUMP
|
2015-09-08 19:49:03 +08:00
|
|
|
const char *hexdump_file; /* Debug hexdump file path */
|
2016-10-14 18:15:11 +08:00
|
|
|
#endif
|
2016-10-17 12:02:29 +08:00
|
|
|
#if MG_ENABLE_BROADCAST
|
2016-09-13 19:27:14 +08:00
|
|
|
sock_t ctl[2]; /* Socketpair for mg_broadcast() */
|
2015-12-08 20:13:03 +08:00
|
|
|
#endif
|
|
|
|
void *user_data; /* User data */
|
|
|
|
void *mgr_data; /* Implementation-specific event manager's data. */
|
Change from using #ifdef to #if for features tests
"#if FOO" still works with simple -DFOO, but gives more flexibility.
Specifically, if user expressed no preference (FOO is not defined),
we can apply reasonable defaults (this is the legitimate use of ifdef).
In short, from now on, please use
#if MG_ENABLE_FOO
instead of
#ifdef MG_ENABLE_FOO
Since we are all used to #ifdef, this change also adds a precommit check
to police this. Specifically, in *.h and *.c files that are Copyright Cesanta,
"ifdef" and "if defined()" are not allowed to be used with macros that contain
ENABLE or DISABLE, unless the like also contains "ifdef-ok".
Hence, if you are sure you want to use ifdef, use this:
#ifdef MG_ENABLE_FOO /* ifdef-ok */
PUBLISHED_FROM=9be829448f53cff575d6cae8b9945fb12531c15a
2016-10-14 01:55:08 +08:00
|
|
|
#if MG_ENABLE_JAVASCRIPT
|
2015-09-22 00:58:45 +08:00
|
|
|
struct v7 *v7;
|
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Mongoose connection.
|
|
|
|
*/
|
2014-09-02 04:02:16 +08:00
|
|
|
struct mg_connection {
|
2015-09-08 19:49:03 +08:00
|
|
|
struct mg_connection *next, *prev; /* mg_mgr::active_connections linkage */
|
|
|
|
struct mg_connection *listener; /* Set only for accept()-ed connections */
|
|
|
|
struct mg_mgr *mgr; /* Pointer to containing manager */
|
|
|
|
|
2015-10-22 20:04:35 +08:00
|
|
|
sock_t sock; /* Socket to the remote peer */
|
|
|
|
int err;
|
2015-09-08 19:49:03 +08:00
|
|
|
union socket_address sa; /* Remote peer address */
|
|
|
|
size_t recv_mbuf_limit; /* Max size of recv buffer */
|
|
|
|
struct mbuf recv_mbuf; /* Received data */
|
|
|
|
struct mbuf send_mbuf; /* Data scheduled for sending */
|
Change from using #ifdef to #if for features tests
"#if FOO" still works with simple -DFOO, but gives more flexibility.
Specifically, if user expressed no preference (FOO is not defined),
we can apply reasonable defaults (this is the legitimate use of ifdef).
In short, from now on, please use
#if MG_ENABLE_FOO
instead of
#ifdef MG_ENABLE_FOO
Since we are all used to #ifdef, this change also adds a precommit check
to police this. Specifically, in *.h and *.c files that are Copyright Cesanta,
"ifdef" and "if defined()" are not allowed to be used with macros that contain
ENABLE or DISABLE, unless the like also contains "ifdef-ok".
Hence, if you are sure you want to use ifdef, use this:
#ifdef MG_ENABLE_FOO /* ifdef-ok */
PUBLISHED_FROM=9be829448f53cff575d6cae8b9945fb12531c15a
2016-10-14 01:55:08 +08:00
|
|
|
#if MG_ENABLE_SSL
|
2016-10-18 02:13:21 +08:00
|
|
|
#if MG_NET_IF != MG_NET_IF_SIMPLELINK
|
2015-09-08 19:49:03 +08:00
|
|
|
SSL *ssl;
|
|
|
|
SSL_CTX *ssl_ctx;
|
2016-06-09 19:00:14 +08:00
|
|
|
#else
|
|
|
|
char *ssl_cert;
|
|
|
|
char *ssl_key;
|
|
|
|
char *ssl_ca_cert;
|
|
|
|
char *ssl_server_name;
|
|
|
|
#endif
|
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
time_t last_io_time; /* Timestamp of the last socket IO */
|
2015-12-08 01:55:28 +08:00
|
|
|
double ev_timer_time; /* Timestamp of the future MG_EV_TIMER */
|
2015-09-08 19:49:03 +08:00
|
|
|
mg_event_handler_t proto_handler; /* Protocol-specific event handler */
|
|
|
|
void *proto_data; /* Protocol-specific data */
|
2016-03-04 17:36:40 +08:00
|
|
|
void (*proto_data_destructor)(void *proto_data);
|
|
|
|
mg_event_handler_t handler; /* Event handler function */
|
|
|
|
void *user_data; /* User-specific data */
|
2016-03-03 22:49:01 +08:00
|
|
|
union {
|
|
|
|
void *v;
|
|
|
|
/*
|
|
|
|
* the C standard is fussy about fitting function pointers into
|
|
|
|
* void pointers, since some archs might have fat pointers for functions.
|
|
|
|
*/
|
|
|
|
mg_event_handler_t f;
|
2016-03-07 23:54:32 +08:00
|
|
|
} priv_1; /* Used by mg_enable_multithreading() */
|
|
|
|
void *priv_2; /* Used by mg_enable_multithreading() */
|
|
|
|
void *mgr_data; /* Implementation-specific event manager's data. */
|
2015-09-08 19:49:03 +08:00
|
|
|
unsigned long flags;
|
|
|
|
/* Flags set by Mongoose */
|
2015-09-19 19:38:46 +08:00
|
|
|
#define MG_F_LISTENING (1 << 0) /* This connection is listening */
|
|
|
|
#define MG_F_UDP (1 << 1) /* This connection is UDP */
|
|
|
|
#define MG_F_RESOLVING (1 << 2) /* Waiting for async resolver */
|
|
|
|
#define MG_F_CONNECTING (1 << 3) /* connect() call in progress */
|
2016-06-10 01:33:22 +08:00
|
|
|
#define MG_F_SSL (1 << 4) /* SSL is enabled on the connection */
|
|
|
|
#define MG_F_SSL_HANDSHAKE_DONE (1 << 5) /* SSL hanshake has completed */
|
|
|
|
#define MG_F_WANT_READ (1 << 6) /* SSL specific */
|
|
|
|
#define MG_F_WANT_WRITE (1 << 7) /* SSL specific */
|
|
|
|
#define MG_F_IS_WEBSOCKET (1 << 8) /* Websocket specific */
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
/* Flags that are settable by user */
|
2015-09-19 19:38:46 +08:00
|
|
|
#define MG_F_SEND_AND_CLOSE (1 << 10) /* Push remaining data and close */
|
2015-11-16 04:34:40 +08:00
|
|
|
#define MG_F_CLOSE_IMMEDIATELY (1 << 11) /* Disconnect */
|
|
|
|
#define MG_F_WEBSOCKET_NO_DEFRAG (1 << 12) /* Websocket specific */
|
|
|
|
#define MG_F_DELETE_CHUNK (1 << 13) /* HTTP specific */
|
2016-09-12 20:21:34 +08:00
|
|
|
#define MG_F_ENABLE_BROADCAST (1 << 14) /* Allow broadcast address usage */
|
2015-09-19 19:38:46 +08:00
|
|
|
|
|
|
|
#define MG_F_USER_1 (1 << 20) /* Flags left for application */
|
|
|
|
#define MG_F_USER_2 (1 << 21)
|
|
|
|
#define MG_F_USER_3 (1 << 22)
|
|
|
|
#define MG_F_USER_4 (1 << 23)
|
|
|
|
#define MG_F_USER_5 (1 << 24)
|
|
|
|
#define MG_F_USER_6 (1 << 25)
|
2015-09-08 19:49:03 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Initialise Mongoose manager. Side effect: ignores SIGPIPE signal.
|
|
|
|
* `mgr->user_data` field will be initialised with a `user_data` parameter.
|
|
|
|
* That is an arbitrary pointer, where the user code can associate some data
|
2015-09-08 19:49:03 +08:00
|
|
|
* with the particular Mongoose manager. For example, a C++ wrapper class
|
2016-07-26 22:53:33 +08:00
|
|
|
* could be written in which case `user_data` can hold a pointer to the
|
2015-09-08 19:49:03 +08:00
|
|
|
* class instance.
|
|
|
|
*/
|
|
|
|
void mg_mgr_init(struct mg_mgr *mgr, void *user_data);
|
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* De-initialises Mongoose manager.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Closes and deallocates all active connections.
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
|
|
|
void mg_mgr_free(struct mg_mgr *);
|
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* This function performs the actual IO and must be called in a loop
|
|
|
|
* (an event loop). It returns the current timestamp.
|
2015-09-08 19:49:03 +08:00
|
|
|
* `milli` is the maximum number of milliseconds to sleep.
|
2016-07-26 22:53:33 +08:00
|
|
|
* `mg_mgr_poll()` checks all connections for IO readiness. If at least one
|
|
|
|
* of the connections is IO-ready, `mg_mgr_poll()` triggers the respective
|
2015-09-08 19:49:03 +08:00
|
|
|
* event handlers and returns.
|
|
|
|
*/
|
|
|
|
time_t mg_mgr_poll(struct mg_mgr *, int milli);
|
|
|
|
|
2016-10-17 12:02:29 +08:00
|
|
|
#if MG_ENABLE_BROADCAST
|
2015-09-08 19:49:03 +08:00
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Passes a message of a given length to all connections.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
|
|
|
* Must be called from a thread that does NOT call `mg_mgr_poll()`.
|
|
|
|
* Note that `mg_broadcast()` is the only function
|
|
|
|
* that can be, and must be, called from a different (non-IO) thread.
|
|
|
|
*
|
|
|
|
* `func` callback function will be called by the IO thread for each
|
2016-07-26 22:53:33 +08:00
|
|
|
* connection. When called, the event will be `MG_EV_POLL`, and a message will
|
|
|
|
* be passed as the `ev_data` pointer. Maximum message size is capped
|
2015-09-19 19:38:46 +08:00
|
|
|
* by `MG_CTL_MSG_MESSAGE_SIZE` which is set to 8192 bytes.
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
|
|
|
void mg_broadcast(struct mg_mgr *, mg_event_handler_t func, void *, size_t);
|
2015-10-24 07:05:05 +08:00
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Iterates over all active connections.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Returns the next connection from the list
|
|
|
|
* of active connections or `NULL` if there are no more connections. Below
|
2015-09-08 19:49:03 +08:00
|
|
|
* is the iteration idiom:
|
|
|
|
*
|
2016-03-19 17:48:50 +08:00
|
|
|
* ```c
|
2015-09-08 19:49:03 +08:00
|
|
|
* for (c = mg_next(srv, NULL); c != NULL; c = mg_next(srv, c)) {
|
|
|
|
* // Do something with connection `c`
|
|
|
|
* }
|
2016-03-19 17:48:50 +08:00
|
|
|
* ```
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
|
|
|
struct mg_connection *mg_next(struct mg_mgr *, struct mg_connection *);
|
|
|
|
|
|
|
|
/*
|
2016-03-19 17:48:50 +08:00
|
|
|
* Optional parameters to `mg_add_sock_opt()`.
|
|
|
|
*
|
2015-09-08 19:49:03 +08:00
|
|
|
* `flags` is an initial `struct mg_connection::flags` bitmask to set,
|
2015-09-19 19:38:46 +08:00
|
|
|
* see `MG_F_*` flags definitions.
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
|
|
|
struct mg_add_sock_opts {
|
|
|
|
void *user_data; /* Initial value for connection's user_data */
|
|
|
|
unsigned int flags; /* Initial connection flags */
|
|
|
|
const char **error_string; /* Placeholder for the error string */
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Creates a connection, associates it with the given socket and event handler
|
|
|
|
* and adds it to the manager.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
|
|
|
* For more options see the `mg_add_sock_opt` variant.
|
|
|
|
*/
|
|
|
|
struct mg_connection *mg_add_sock(struct mg_mgr *, sock_t, mg_event_handler_t);
|
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Creates a connection, associates it with the given socket and event handler
|
|
|
|
* and adds to the manager.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
|
|
|
* See the `mg_add_sock_opts` structure for a description of the options.
|
|
|
|
*/
|
|
|
|
struct mg_connection *mg_add_sock_opt(struct mg_mgr *, sock_t,
|
|
|
|
mg_event_handler_t,
|
|
|
|
struct mg_add_sock_opts);
|
|
|
|
|
|
|
|
/*
|
2016-03-19 17:48:50 +08:00
|
|
|
* Optional parameters to `mg_bind_opt()`.
|
|
|
|
*
|
2015-09-08 19:49:03 +08:00
|
|
|
* `flags` is an initial `struct mg_connection::flags` bitmask to set,
|
2015-09-19 19:38:46 +08:00
|
|
|
* see `MG_F_*` flags definitions.
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
|
|
|
struct mg_bind_opts {
|
|
|
|
void *user_data; /* Initial value for connection's user_data */
|
|
|
|
unsigned int flags; /* Extra connection flags */
|
|
|
|
const char **error_string; /* Placeholder for the error string */
|
Change from using #ifdef to #if for features tests
"#if FOO" still works with simple -DFOO, but gives more flexibility.
Specifically, if user expressed no preference (FOO is not defined),
we can apply reasonable defaults (this is the legitimate use of ifdef).
In short, from now on, please use
#if MG_ENABLE_FOO
instead of
#ifdef MG_ENABLE_FOO
Since we are all used to #ifdef, this change also adds a precommit check
to police this. Specifically, in *.h and *.c files that are Copyright Cesanta,
"ifdef" and "if defined()" are not allowed to be used with macros that contain
ENABLE or DISABLE, unless the like also contains "ifdef-ok".
Hence, if you are sure you want to use ifdef, use this:
#ifdef MG_ENABLE_FOO /* ifdef-ok */
PUBLISHED_FROM=9be829448f53cff575d6cae8b9945fb12531c15a
2016-10-14 01:55:08 +08:00
|
|
|
#if MG_ENABLE_SSL
|
2016-02-24 21:14:07 +08:00
|
|
|
/* SSL settings. */
|
|
|
|
const char *ssl_cert; /* Server certificate to present to clients */
|
2016-06-09 19:00:14 +08:00
|
|
|
const char *ssl_key; /* Private key corresponding to the certificate.
|
|
|
|
If ssl_cert is set but ssl_key is not, ssl_cert
|
|
|
|
is used. */
|
2016-02-24 21:14:07 +08:00
|
|
|
const char *ssl_ca_cert; /* Verify client certificates with this CA bundle */
|
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Creates a listening connection.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
|
|
|
* See `mg_bind_opt` for full documentation.
|
|
|
|
*/
|
|
|
|
struct mg_connection *mg_bind(struct mg_mgr *, const char *,
|
|
|
|
mg_event_handler_t);
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Creates a listening connection.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
2016-07-26 22:53:33 +08:00
|
|
|
* The `address` parameter specifies which address to bind to. It's format is
|
|
|
|
* the same as for the `mg_connect()` call, where `HOST` part is optional.
|
|
|
|
* `address` can be just a port number, e.g. `:8000`. To bind to a specific
|
|
|
|
* interface, an IP address can be specified, e.g. `1.2.3.4:8000`. By default,
|
|
|
|
* a TCP connection is created. To create UDP connection, prepend `udp://`
|
|
|
|
* prefix, e.g. `udp://:8000`. To summarize, `address` paramer has following
|
|
|
|
* format: `[PROTO://][IP_ADDRESS]:PORT`, where `PROTO` could be `tcp` or
|
|
|
|
* `udp`.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
|
|
|
* See the `mg_bind_opts` structure for a description of the optional
|
|
|
|
* parameters.
|
|
|
|
*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Returns a new listening connection or `NULL` on error.
|
|
|
|
* NOTE: The connection remains owned by the manager, do not free().
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
2016-02-24 21:14:07 +08:00
|
|
|
struct mg_connection *mg_bind_opt(struct mg_mgr *mgr, const char *address,
|
|
|
|
mg_event_handler_t handler,
|
|
|
|
struct mg_bind_opts opts);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2016-03-19 17:48:50 +08:00
|
|
|
/* Optional parameters to `mg_connect_opt()` */
|
2015-09-08 19:49:03 +08:00
|
|
|
struct mg_connect_opts {
|
|
|
|
void *user_data; /* Initial value for connection's user_data */
|
|
|
|
unsigned int flags; /* Extra connection flags */
|
|
|
|
const char **error_string; /* Placeholder for the error string */
|
Change from using #ifdef to #if for features tests
"#if FOO" still works with simple -DFOO, but gives more flexibility.
Specifically, if user expressed no preference (FOO is not defined),
we can apply reasonable defaults (this is the legitimate use of ifdef).
In short, from now on, please use
#if MG_ENABLE_FOO
instead of
#ifdef MG_ENABLE_FOO
Since we are all used to #ifdef, this change also adds a precommit check
to police this. Specifically, in *.h and *.c files that are Copyright Cesanta,
"ifdef" and "if defined()" are not allowed to be used with macros that contain
ENABLE or DISABLE, unless the like also contains "ifdef-ok".
Hence, if you are sure you want to use ifdef, use this:
#ifdef MG_ENABLE_FOO /* ifdef-ok */
PUBLISHED_FROM=9be829448f53cff575d6cae8b9945fb12531c15a
2016-10-14 01:55:08 +08:00
|
|
|
#if MG_ENABLE_SSL
|
2016-02-24 21:14:07 +08:00
|
|
|
/* SSL settings. */
|
|
|
|
const char *ssl_cert; /* Client certificate to present to the server */
|
2016-06-09 19:00:14 +08:00
|
|
|
const char *ssl_key; /* Private key corresponding to the certificate.
|
|
|
|
If ssl_cert is set but ssl_key is not, ssl_cert
|
|
|
|
is used. */
|
2016-07-14 21:17:45 +08:00
|
|
|
const char *ssl_ca_cert; /* Verify server certificate using this CA bundle.
|
|
|
|
If set to "*", then SSL is enabled but no cert
|
|
|
|
verification is performed. */
|
2016-02-24 21:14:07 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Server name verification. If ssl_ca_cert is set and the certificate has
|
|
|
|
* passed verification, its subject will be verified against this string.
|
|
|
|
* By default (if ssl_server_name is NULL) hostname part of the address will
|
|
|
|
* be used. Wildcard matching is supported. A special value of "*" disables
|
|
|
|
* name verification.
|
|
|
|
*/
|
|
|
|
const char *ssl_server_name;
|
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Connects to a remote host.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
|
|
|
* See `mg_connect_opt()` for full documentation.
|
|
|
|
*/
|
2016-02-24 21:14:07 +08:00
|
|
|
struct mg_connection *mg_connect(struct mg_mgr *mgr, const char *address,
|
|
|
|
mg_event_handler_t handler);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Connects to a remote host.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
2016-07-26 22:53:33 +08:00
|
|
|
* The `address` format is `[PROTO://]HOST:PORT`. `PROTO` could be `tcp` or
|
|
|
|
* `udp`. `HOST` could be an IP address,
|
|
|
|
* IPv6 address (if Mongoose is compiled with `-DMG_ENABLE_IPV6`) or a host
|
2015-09-08 19:49:03 +08:00
|
|
|
* name. If `HOST` is a name, Mongoose will resolve it asynchronously. Examples
|
|
|
|
* of valid addresses: `google.com:80`, `udp://1.2.3.4:53`, `10.0.0.1:443`,
|
|
|
|
* `[::1]:80`
|
|
|
|
*
|
|
|
|
* See the `mg_connect_opts` structure for a description of the optional
|
|
|
|
* parameters.
|
|
|
|
*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Returns a new outbound connection or `NULL` on error.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
2016-07-26 22:53:33 +08:00
|
|
|
* NOTE: The connection remains owned by the manager, do not free().
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
2016-07-26 22:53:33 +08:00
|
|
|
* NOTE: To enable IPv6 addresses `-DMG_ENABLE_IPV6` should be specified
|
2015-09-08 19:49:03 +08:00
|
|
|
* in the compilation flags.
|
|
|
|
*
|
2016-07-26 22:53:33 +08:00
|
|
|
* NOTE: The new connection will receive `MG_EV_CONNECT` as its first event
|
|
|
|
* which will report the connect success status.
|
|
|
|
* If the asynchronous resolution fails or the `connect()` syscall fails for
|
|
|
|
* whatever reason (e.g. with `ECONNREFUSED` or `ENETUNREACH`), then
|
|
|
|
* `MG_EV_CONNECT` event will report failure. Code example below:
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
2016-03-19 17:48:50 +08:00
|
|
|
* ```c
|
2015-09-08 19:49:03 +08:00
|
|
|
* static void ev_handler(struct mg_connection *nc, int ev, void *ev_data) {
|
|
|
|
* int connect_status;
|
|
|
|
*
|
|
|
|
* switch (ev) {
|
2015-09-19 19:38:46 +08:00
|
|
|
* case MG_EV_CONNECT:
|
2015-09-08 19:49:03 +08:00
|
|
|
* connect_status = * (int *) ev_data;
|
|
|
|
* if (connect_status == 0) {
|
|
|
|
* // Success
|
|
|
|
* } else {
|
|
|
|
* // Error
|
|
|
|
* printf("connect() error: %s\n", strerror(connect_status));
|
|
|
|
* }
|
|
|
|
* break;
|
|
|
|
* ...
|
|
|
|
* }
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* ...
|
|
|
|
* mg_connect(mgr, "my_site.com:80", ev_handler);
|
2016-03-19 17:48:50 +08:00
|
|
|
* ```
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
2016-02-24 21:14:07 +08:00
|
|
|
struct mg_connection *mg_connect_opt(struct mg_mgr *mgr, const char *address,
|
|
|
|
mg_event_handler_t handler,
|
|
|
|
struct mg_connect_opts opts);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2016-10-18 02:13:21 +08:00
|
|
|
#if MG_ENABLE_SSL && MG_NET_IF != MG_NET_IF_SIMPLELINK
|
2015-09-08 19:49:03 +08:00
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Note: This function is deprecated. Please, use SSL options in
|
|
|
|
* mg_connect_opt.
|
2016-06-09 19:00:14 +08:00
|
|
|
*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Enables SSL for a given connection.
|
|
|
|
* `cert` is a server certificate file name for a listening connection
|
2015-09-08 19:49:03 +08:00
|
|
|
* or a client certificate file name for an outgoing connection.
|
2016-07-26 22:53:33 +08:00
|
|
|
* The certificate files must be in PEM format. The server certificate file
|
2015-09-08 19:49:03 +08:00
|
|
|
* must contain a certificate, concatenated with a private key, optionally
|
2016-06-09 19:00:14 +08:00
|
|
|
* concatenated with DH parameters.
|
2016-07-26 22:53:33 +08:00
|
|
|
* `ca_cert` is a CA certificate or NULL if peer verification is not
|
2015-09-08 19:49:03 +08:00
|
|
|
* required.
|
2016-07-26 22:53:33 +08:00
|
|
|
* Return: NULL on success or error message on error.
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
|
|
|
const char *mg_set_ssl(struct mg_connection *nc, const char *cert,
|
|
|
|
const char *ca_cert);
|
2016-06-09 19:00:14 +08:00
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Sends data to the connection.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
2015-10-22 20:04:35 +08:00
|
|
|
* Note that sending functions do not actually push data to the socket.
|
|
|
|
* They just append data to the output buffer. MG_EV_SEND will be delivered when
|
|
|
|
* the data has actually been pushed out.
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
2015-10-22 20:04:35 +08:00
|
|
|
void mg_send(struct mg_connection *, const void *buf, int len);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2015-09-24 01:33:25 +08:00
|
|
|
/* Enables format string warnings for mg_printf */
|
|
|
|
#if defined(__GNUC__)
|
|
|
|
__attribute__((format(printf, 2, 3)))
|
|
|
|
#endif
|
|
|
|
/* don't separate from mg_printf declaration */
|
|
|
|
|
2015-09-08 19:49:03 +08:00
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Sends `printf`-style formatted data to the connection.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
|
|
|
* See `mg_send` for more details on send semantics.
|
|
|
|
*/
|
|
|
|
int mg_printf(struct mg_connection *, const char *fmt, ...);
|
|
|
|
|
|
|
|
/* Same as `mg_printf()`, but takes `va_list ap` as an argument. */
|
|
|
|
int mg_vprintf(struct mg_connection *, const char *fmt, va_list ap);
|
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Creates a socket pair.
|
2015-09-08 19:49:03 +08:00
|
|
|
* `sock_type` can be either `SOCK_STREAM` or `SOCK_DGRAM`.
|
2016-07-26 22:53:33 +08:00
|
|
|
* Returns 0 on failure and 1 on success.
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
|
|
|
int mg_socketpair(sock_t[2], int sock_type);
|
|
|
|
|
2016-10-18 03:08:11 +08:00
|
|
|
#if MG_ENABLE_SYNC_RESOLVER
|
2015-09-08 19:49:03 +08:00
|
|
|
/*
|
|
|
|
* Convert domain name into IP address.
|
|
|
|
*
|
|
|
|
* This is a utility function. If compilation flags have
|
2015-09-19 19:38:46 +08:00
|
|
|
* `-DMG_ENABLE_GETADDRINFO`, then `getaddrinfo()` call is used for name
|
2015-09-08 19:49:03 +08:00
|
|
|
* resolution. Otherwise, `gethostbyname()` is used.
|
|
|
|
*
|
|
|
|
* CAUTION: this function can block.
|
|
|
|
* Return 1 on success, 0 on failure.
|
|
|
|
*/
|
|
|
|
int mg_resolve(const char *domain_name, char *ip_addr_buf, size_t buf_len);
|
2015-10-24 07:05:05 +08:00
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Verify given IP address against the ACL.
|
|
|
|
*
|
|
|
|
* `remote_ip` - an IPv4 address to check, in host byte order
|
|
|
|
* `acl` - a comma separated list of IP subnets: `x.x.x.x/x` or `x.x.x.x`.
|
|
|
|
* Each subnet is
|
|
|
|
* prepended by either a - or a + sign. A plus sign means allow, where a
|
|
|
|
* minus sign means deny. If a subnet mask is omitted, such as `-1.2.3.4`,
|
2016-07-26 22:53:33 +08:00
|
|
|
* it means that only that single IP address is denied.
|
2015-09-08 19:49:03 +08:00
|
|
|
* Subnet masks may vary from 0 to 32, inclusive. The default setting
|
2016-07-26 22:53:33 +08:00
|
|
|
* is to allow all access. On each request the full list is traversed,
|
2015-09-08 19:49:03 +08:00
|
|
|
* and the last match wins. Example:
|
|
|
|
*
|
|
|
|
* `-0.0.0.0/0,+192.168/16` - deny all acccesses, only allow 192.168/16 subnet
|
|
|
|
*
|
2016-07-26 22:53:33 +08:00
|
|
|
* To learn more about subnet masks, see this
|
|
|
|
* link:https://en.wikipedia.org/wiki/Subnetwork[Wikipedia page on Subnetwork].
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Returns -1 if ACL is malformed, 0 if address is disallowed, 1 if allowed.
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
|
|
|
int mg_check_ip_acl(const char *acl, uint32_t remote_ip);
|
|
|
|
|
2016-09-12 22:09:35 +08:00
|
|
|
/*
|
|
|
|
* Optional parameters for mg_enable_multithreading_opt()
|
|
|
|
*/
|
|
|
|
struct mg_multithreading_opts {
|
|
|
|
int poll_timeout; /* Polling interval */
|
|
|
|
};
|
|
|
|
|
2015-09-08 19:49:03 +08:00
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Enables multi-threaded handling for the given listening connection `nc`.
|
2015-09-08 19:49:03 +08:00
|
|
|
* For each accepted connection, Mongoose will create a separate thread
|
2016-07-26 22:53:33 +08:00
|
|
|
* and run an event handler in that thread. Thus, if an event handler is doing
|
|
|
|
* a blocking call or some long computation, it will not slow down
|
2015-09-08 19:49:03 +08:00
|
|
|
* other connections.
|
|
|
|
*/
|
|
|
|
void mg_enable_multithreading(struct mg_connection *nc);
|
2016-09-12 22:09:35 +08:00
|
|
|
void mg_enable_multithreading_opt(struct mg_connection *nc,
|
|
|
|
struct mg_multithreading_opts opts);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
Change from using #ifdef to #if for features tests
"#if FOO" still works with simple -DFOO, but gives more flexibility.
Specifically, if user expressed no preference (FOO is not defined),
we can apply reasonable defaults (this is the legitimate use of ifdef).
In short, from now on, please use
#if MG_ENABLE_FOO
instead of
#ifdef MG_ENABLE_FOO
Since we are all used to #ifdef, this change also adds a precommit check
to police this. Specifically, in *.h and *.c files that are Copyright Cesanta,
"ifdef" and "if defined()" are not allowed to be used with macros that contain
ENABLE or DISABLE, unless the like also contains "ifdef-ok".
Hence, if you are sure you want to use ifdef, use this:
#ifdef MG_ENABLE_FOO /* ifdef-ok */
PUBLISHED_FROM=9be829448f53cff575d6cae8b9945fb12531c15a
2016-10-14 01:55:08 +08:00
|
|
|
#if MG_ENABLE_JAVASCRIPT
|
2015-09-22 00:58:45 +08:00
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Enables server-side JavaScript scripting.
|
|
|
|
* Requires a `-DMG_ENABLE_JAVASCRIPT` compilation flag and V7 engine sources.
|
|
|
|
* V7 instance must not be destroyed during manager's lifetime.
|
|
|
|
* Returns a V7 error.
|
2015-09-22 00:58:45 +08:00
|
|
|
*/
|
|
|
|
enum v7_err mg_enable_javascript(struct mg_mgr *m, struct v7 *v7,
|
|
|
|
const char *init_js_file_name);
|
|
|
|
#endif
|
|
|
|
|
2015-12-08 20:25:44 +08:00
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Schedules an MG_EV_TIMER event to be delivered at `timestamp` time.
|
|
|
|
* `timestamp` is UNIX time (the number of seconds since Epoch). It is
|
2015-12-08 20:25:44 +08:00
|
|
|
* `double` instead of `time_t` to allow for sub-second precision.
|
2016-07-26 22:53:33 +08:00
|
|
|
* Returns the old timer value.
|
2015-12-08 20:25:44 +08:00
|
|
|
*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Example: set the connect timeout to 1.5 seconds:
|
2015-12-08 20:25:44 +08:00
|
|
|
*
|
|
|
|
* ```
|
|
|
|
* c = mg_connect(&mgr, "cesanta.com", ev_handler);
|
2016-01-08 21:14:55 +08:00
|
|
|
* mg_set_timer(c, mg_time() + 1.5);
|
2015-12-08 20:25:44 +08:00
|
|
|
* ...
|
|
|
|
*
|
|
|
|
* void ev_handler(struct mg_connection *c, int ev, void *ev_data) {
|
|
|
|
* switch (ev) {
|
|
|
|
* case MG_EV_CONNECT:
|
|
|
|
* mg_set_timer(c, 0); // Clear connect timer
|
|
|
|
* break;
|
|
|
|
* case MG_EV_TIMER:
|
|
|
|
* log("Connect timeout");
|
|
|
|
* c->flags |= MG_F_CLOSE_IMMEDIATELY;
|
|
|
|
* break;
|
2016-01-13 19:00:29 +08:00
|
|
|
* ```
|
2015-12-08 20:25:44 +08:00
|
|
|
*/
|
|
|
|
double mg_set_timer(struct mg_connection *c, double timestamp);
|
|
|
|
|
2016-01-08 21:14:55 +08:00
|
|
|
/*
|
|
|
|
* A sub-second precision version of time().
|
|
|
|
*/
|
2016-09-05 23:37:01 +08:00
|
|
|
double mg_time(void);
|
2016-01-08 21:14:55 +08:00
|
|
|
|
2015-09-08 19:49:03 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
2016-03-15 00:40:48 +08:00
|
|
|
#endif /* CS_MONGOOSE_SRC_NET_H_ */
|
2016-09-27 12:59:51 +08:00
|
|
|
#ifdef MG_MODULE_LINES
|
|
|
|
#line 1 "mongoose/src/net_if.h"
|
|
|
|
#endif
|
2016-01-28 01:47:32 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014-2016 Cesanta Software Limited
|
|
|
|
* All rights reserved
|
|
|
|
*/
|
|
|
|
|
2016-03-15 00:40:48 +08:00
|
|
|
#ifndef CS_MONGOOSE_SRC_NET_IF_H_
|
|
|
|
#define CS_MONGOOSE_SRC_NET_IF_H_
|
2015-10-22 20:04:35 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Internal async networking core interface.
|
|
|
|
* Consists of calls made by the core, which should not block,
|
|
|
|
* and callbacks back into the core ("..._cb").
|
|
|
|
* Callbacks may (will) cause methods to be invoked from within,
|
|
|
|
* but methods are not allowed to invoke callbacks inline.
|
|
|
|
*
|
|
|
|
* Implementation must ensure that only one callback is invoked at any time.
|
|
|
|
*/
|
|
|
|
|
2016-05-16 01:36:52 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
2015-10-22 20:04:35 +08:00
|
|
|
/* Request that a TCP connection is made to the specified address. */
|
|
|
|
void mg_if_connect_tcp(struct mg_connection *nc,
|
|
|
|
const union socket_address *sa);
|
|
|
|
/* Open a UDP socket. Doesn't actually connect anything. */
|
|
|
|
void mg_if_connect_udp(struct mg_connection *nc);
|
|
|
|
/* Callback invoked by connect methods. err = 0 -> ok, != 0 -> error. */
|
|
|
|
void mg_if_connect_cb(struct mg_connection *nc, int err);
|
|
|
|
|
|
|
|
/* Set up a listening TCP socket on a given address. rv = 0 -> ok. */
|
|
|
|
int mg_if_listen_tcp(struct mg_connection *nc, union socket_address *sa);
|
2016-02-23 19:43:13 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Deliver a new TCP connection. Returns NULL in case on error (unable to
|
|
|
|
* create connection, in which case interface state should be discarded.
|
|
|
|
* This is phase 1 of the two-phase process - MG_EV_ACCEPT will be delivered
|
|
|
|
* when mg_if_accept_tcp_cb is invoked.
|
|
|
|
*/
|
|
|
|
struct mg_connection *mg_if_accept_new_conn(struct mg_connection *lc);
|
|
|
|
void mg_if_accept_tcp_cb(struct mg_connection *nc, union socket_address *sa,
|
|
|
|
size_t sa_len);
|
2015-10-22 20:04:35 +08:00
|
|
|
|
|
|
|
/* Request that a "listening" UDP socket be created. */
|
|
|
|
int mg_if_listen_udp(struct mg_connection *nc, union socket_address *sa);
|
|
|
|
|
|
|
|
/* Send functions for TCP and UDP. Sent data is copied before return. */
|
|
|
|
void mg_if_tcp_send(struct mg_connection *nc, const void *buf, size_t len);
|
|
|
|
void mg_if_udp_send(struct mg_connection *nc, const void *buf, size_t len);
|
|
|
|
/* Callback that reports that data has been put on the wire. */
|
|
|
|
void mg_if_sent_cb(struct mg_connection *nc, int num_sent);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Receive callback.
|
|
|
|
* buf must be heap-allocated and ownership is transferred to the core.
|
|
|
|
* Core will acknowledge consumption by calling mg_if_recved.
|
|
|
|
*/
|
|
|
|
void mg_if_recv_tcp_cb(struct mg_connection *nc, void *buf, int len);
|
|
|
|
void mg_if_recv_udp_cb(struct mg_connection *nc, void *buf, int len,
|
|
|
|
union socket_address *sa, size_t sa_len);
|
|
|
|
void mg_if_recved(struct mg_connection *nc, size_t len);
|
|
|
|
|
2015-10-26 16:15:58 +08:00
|
|
|
/* Deliver a POLL event to the connection. */
|
|
|
|
void mg_if_poll(struct mg_connection *nc, time_t now);
|
|
|
|
|
2015-12-08 01:55:28 +08:00
|
|
|
/* Deliver a TIMER event to the connection. */
|
2015-12-16 08:52:37 +08:00
|
|
|
void mg_if_timer(struct mg_connection *c, double now);
|
2015-12-08 01:55:28 +08:00
|
|
|
|
2015-12-09 17:43:41 +08:00
|
|
|
/* Perform interface-related connection initialization. Return 1 on success. */
|
|
|
|
int mg_if_create_conn(struct mg_connection *nc);
|
|
|
|
|
2015-10-22 20:04:35 +08:00
|
|
|
/* Perform interface-related cleanup on connection before destruction. */
|
|
|
|
void mg_if_destroy_conn(struct mg_connection *nc);
|
|
|
|
|
2015-10-24 07:05:05 +08:00
|
|
|
void mg_close_conn(struct mg_connection *nc);
|
|
|
|
|
2015-11-27 18:32:36 +08:00
|
|
|
/* Put connection's address into *sa, local (remote = 0) or remote. */
|
|
|
|
void mg_if_get_conn_addr(struct mg_connection *nc, int remote,
|
|
|
|
union socket_address *sa);
|
|
|
|
|
2016-03-17 14:11:54 +08:00
|
|
|
/* Associate a socket to a connection. */
|
|
|
|
void mg_sock_set(struct mg_connection *nc, sock_t sock);
|
|
|
|
|
2016-05-16 01:36:52 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
2016-03-15 00:40:48 +08:00
|
|
|
#endif /* CS_MONGOOSE_SRC_NET_IF_H_ */
|
2016-09-27 12:59:51 +08:00
|
|
|
#ifdef MG_MODULE_LINES
|
|
|
|
#line 1 "mongoose/src/uri.h"
|
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014 Cesanta Software Limited
|
|
|
|
* All rights reserved
|
|
|
|
*/
|
|
|
|
|
2016-01-13 22:25:05 +08:00
|
|
|
/*
|
|
|
|
* === URI
|
|
|
|
*/
|
|
|
|
|
2016-03-15 00:40:48 +08:00
|
|
|
#ifndef CS_MONGOOSE_SRC_URI_H_
|
|
|
|
#define CS_MONGOOSE_SRC_URI_H_
|
2016-01-13 22:25:05 +08:00
|
|
|
|
2016-09-27 12:59:51 +08:00
|
|
|
/* Amalgamated: #include "mongoose/src/net.h" */
|
2016-01-13 22:25:05 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Parses an URI and fills string chunks with locations of the respective
|
|
|
|
* uri components within the input uri string. NULL pointers will be
|
|
|
|
* ignored.
|
|
|
|
*
|
|
|
|
* General syntax:
|
|
|
|
*
|
|
|
|
* [scheme://[user_info@]]host[:port][/path][?query][#fragment]
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
*
|
|
|
|
* foo.com:80
|
|
|
|
* tcp://foo.com:1234
|
|
|
|
* http://foo.com:80/bar?baz=1
|
|
|
|
* https://user:pw@foo.com:443/blah
|
|
|
|
*
|
|
|
|
* `path` will include the leading slash. `query` won't include the leading `?`.
|
|
|
|
* `host` can contain embedded colons if surrounded by square brackets in order
|
|
|
|
* to support IPv6 literal addresses.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Returns 0 on success, -1 on error.
|
|
|
|
*/
|
|
|
|
int mg_parse_uri(struct mg_str uri, struct mg_str *scheme,
|
|
|
|
struct mg_str *user_info, struct mg_str *host,
|
|
|
|
unsigned int *port, struct mg_str *path, struct mg_str *query,
|
|
|
|
struct mg_str *fragment);
|
|
|
|
|
2016-02-12 18:50:02 +08:00
|
|
|
int mg_normalize_uri_path(const struct mg_str *in, struct mg_str *out);
|
|
|
|
|
2016-01-13 22:25:05 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
2016-03-15 00:40:48 +08:00
|
|
|
#endif /* CS_MONGOOSE_SRC_URI_H_ */
|
2016-09-27 12:59:51 +08:00
|
|
|
#ifdef MG_MODULE_LINES
|
|
|
|
#line 1 "mongoose/src/util.h"
|
|
|
|
#endif
|
2016-01-13 22:25:05 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014 Cesanta Software Limited
|
|
|
|
* All rights reserved
|
|
|
|
*/
|
|
|
|
|
2015-09-08 19:49:03 +08:00
|
|
|
/*
|
2016-09-01 22:19:01 +08:00
|
|
|
* === Utility API
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
|
|
|
|
2016-03-15 00:40:48 +08:00
|
|
|
#ifndef CS_MONGOOSE_SRC_UTIL_H_
|
|
|
|
#define CS_MONGOOSE_SRC_UTIL_H_
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2016-09-27 12:59:51 +08:00
|
|
|
/* Amalgamated: #include "mongoose/src/common.h" */
|
|
|
|
/* Amalgamated: #include "mongoose/src/net_if.h" */
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
#ifndef MAX_PATH_SIZE
|
|
|
|
#define MAX_PATH_SIZE 500
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Fetches substring from input string `s`, `end` into `v`.
|
2015-09-08 19:49:03 +08:00
|
|
|
* Skips initial delimiter characters. Records first non-delimiter character
|
2016-07-26 22:53:33 +08:00
|
|
|
* at the beginning of substring `v`. Then scans the rest of the string
|
2015-09-08 19:49:03 +08:00
|
|
|
* until a delimiter character or end-of-string is found.
|
|
|
|
* `delimiters` is a 0-terminated string containing delimiter characters.
|
|
|
|
* Either one of `delimiters` or `end_string` terminates the search.
|
2016-07-26 22:53:33 +08:00
|
|
|
* Returns an `s` pointer, advanced forward where parsing has stopped.
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
|
|
|
const char *mg_skip(const char *s, const char *end_string,
|
|
|
|
const char *delimiters, struct mg_str *v);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Cross-platform version of `strncasecmp()`.
|
|
|
|
*/
|
|
|
|
int mg_ncasecmp(const char *s1, const char *s2, size_t len);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Cross-platform version of `strcasecmp()`.
|
|
|
|
*/
|
|
|
|
int mg_casecmp(const char *s1, const char *s2);
|
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Decodes base64-encoded string `s`, `len` into the destination `dst`.
|
|
|
|
* The destination has to have enough space to hold the decoded buffer.
|
|
|
|
* Decoding stops either when all strings have been decoded or invalid an
|
2015-09-08 19:49:03 +08:00
|
|
|
* character appeared.
|
|
|
|
* Destination is '\0'-terminated.
|
2016-07-26 22:53:33 +08:00
|
|
|
* Returns the number of decoded characters. On success, that should be equal
|
|
|
|
* to `len`. On error (invalid character) the return value is smaller then
|
|
|
|
* `len`.
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
|
|
|
int mg_base64_decode(const unsigned char *s, int len, char *dst);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Base64-encode chunk of memory `src`, `src_len` into the destination `dst`.
|
|
|
|
* Destination has to have enough space to hold encoded buffer.
|
|
|
|
* Destination is '\0'-terminated.
|
|
|
|
*/
|
|
|
|
void mg_base64_encode(const unsigned char *src, int src_len, char *dst);
|
|
|
|
|
2016-10-14 20:24:02 +08:00
|
|
|
#if MG_ENABLE_FILESYSTEM
|
2015-09-08 19:49:03 +08:00
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Performs a 64-bit `stat()` call against a given file.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
|
|
|
* `path` should be UTF8 encoded.
|
|
|
|
*
|
|
|
|
* Return value is the same as for `stat()` syscall.
|
|
|
|
*/
|
|
|
|
int mg_stat(const char *path, cs_stat_t *st);
|
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Opens the given file and returns a file stream.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
|
|
|
* `path` and `mode` should be UTF8 encoded.
|
|
|
|
*
|
|
|
|
* Return value is the same as for the `fopen()` call.
|
|
|
|
*/
|
|
|
|
FILE *mg_fopen(const char *path, const char *mode);
|
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Opens the given file and returns a file stream.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
|
|
|
* `path` should be UTF8 encoded.
|
|
|
|
*
|
|
|
|
* Return value is the same as for the `open()` syscall.
|
|
|
|
*/
|
|
|
|
int mg_open(const char *path, int flag, int mode);
|
2016-10-14 20:24:02 +08:00
|
|
|
#endif /* MG_ENABLE_FILESYSTEM */
|
2015-09-08 19:49:03 +08:00
|
|
|
|
Change from using #ifdef to #if for features tests
"#if FOO" still works with simple -DFOO, but gives more flexibility.
Specifically, if user expressed no preference (FOO is not defined),
we can apply reasonable defaults (this is the legitimate use of ifdef).
In short, from now on, please use
#if MG_ENABLE_FOO
instead of
#ifdef MG_ENABLE_FOO
Since we are all used to #ifdef, this change also adds a precommit check
to police this. Specifically, in *.h and *.c files that are Copyright Cesanta,
"ifdef" and "if defined()" are not allowed to be used with macros that contain
ENABLE or DISABLE, unless the like also contains "ifdef-ok".
Hence, if you are sure you want to use ifdef, use this:
#ifdef MG_ENABLE_FOO /* ifdef-ok */
PUBLISHED_FROM=9be829448f53cff575d6cae8b9945fb12531c15a
2016-10-14 01:55:08 +08:00
|
|
|
#if MG_ENABLE_THREADS
|
2015-09-08 19:49:03 +08:00
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Starts a new detached thread.
|
|
|
|
* Arguments and semantics are the same as pthead's `pthread_create()`.
|
2015-09-08 19:49:03 +08:00
|
|
|
* `thread_func` is a thread function, `thread_func_param` is a parameter
|
|
|
|
* that is passed to the thread function.
|
|
|
|
*/
|
|
|
|
void *mg_start_thread(void *(*thread_func)(void *), void *thread_func_param);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void mg_set_close_on_exec(sock_t);
|
|
|
|
|
2015-09-19 19:38:46 +08:00
|
|
|
#define MG_SOCK_STRINGIFY_IP 1
|
|
|
|
#define MG_SOCK_STRINGIFY_PORT 2
|
|
|
|
#define MG_SOCK_STRINGIFY_REMOTE 4
|
2015-09-08 19:49:03 +08:00
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Converts a connection's local or remote address into string.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
2016-07-26 22:53:33 +08:00
|
|
|
* The `flags` parameter is a bit mask that controls the behaviour,
|
2015-09-19 19:38:46 +08:00
|
|
|
* see `MG_SOCK_STRINGIFY_*` definitions.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
2015-09-19 19:38:46 +08:00
|
|
|
* - MG_SOCK_STRINGIFY_IP - print IP address
|
|
|
|
* - MG_SOCK_STRINGIFY_PORT - print port number
|
|
|
|
* - MG_SOCK_STRINGIFY_REMOTE - print remote peer's IP/port, not local address
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
|
|
|
* If both port number and IP address are printed, they are separated by `:`.
|
2015-09-19 19:38:46 +08:00
|
|
|
* If compiled with `-DMG_ENABLE_IPV6`, IPv6 addresses are supported.
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
2015-11-27 18:32:36 +08:00
|
|
|
void mg_conn_addr_to_str(struct mg_connection *nc, char *buf, size_t len,
|
|
|
|
int flags);
|
2016-10-18 02:13:21 +08:00
|
|
|
#if MG_NET_IF == MG_NET_IF_SOCKET
|
|
|
|
/* Legacy interface. */
|
2015-09-08 19:49:03 +08:00
|
|
|
void mg_sock_to_str(sock_t sock, char *buf, size_t len, int flags);
|
2015-11-27 18:32:36 +08:00
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Convert the socket's address into string.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
2015-09-19 19:38:46 +08:00
|
|
|
* `flags` is MG_SOCK_STRINGIFY_IP and/or MG_SOCK_STRINGIFY_PORT.
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
|
|
|
void mg_sock_addr_to_str(const union socket_address *sa, char *buf, size_t len,
|
|
|
|
int flags);
|
|
|
|
|
2016-10-14 18:15:11 +08:00
|
|
|
#if MG_ENABLE_HEXDUMP
|
2015-09-08 19:49:03 +08:00
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Generates a human-readable hexdump of memory chunk.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
|
|
|
* Takes a memory buffer `buf` of length `len` and creates a hex dump of that
|
2016-07-26 22:53:33 +08:00
|
|
|
* buffer in `dst`. The generated output is a-la hexdump(1).
|
|
|
|
* Returns the length of generated string, excluding terminating `\0`. If
|
|
|
|
* returned length is bigger than `dst_len`, the overflow bytes are discarded.
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
|
|
|
int mg_hexdump(const void *buf, int len, char *dst, int dst_len);
|
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Generates human-readable hexdump of the data sent or received by the
|
|
|
|
* connection. `path` is a file name where hexdump should be written.
|
|
|
|
* `num_bytes` is a number of bytes sent/received. `ev` is one of the `MG_*`
|
|
|
|
* events sent to an event handler. This function is supposed to be called from
|
|
|
|
* the event handler.
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
|
|
|
void mg_hexdump_connection(struct mg_connection *nc, const char *path,
|
2015-11-27 18:32:36 +08:00
|
|
|
const void *buf, int num_bytes, int ev);
|
2016-10-14 18:15:11 +08:00
|
|
|
#endif
|
2016-09-30 19:16:08 +08:00
|
|
|
|
2015-09-08 19:49:03 +08:00
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Prints message to the buffer. If the buffer is large enough to hold the
|
|
|
|
* message, it returns buffer. If buffer is to small, it allocates a large
|
|
|
|
* enough buffer on heap and returns allocated buffer.
|
2015-09-08 19:49:03 +08:00
|
|
|
* This is a supposed use case:
|
|
|
|
*
|
|
|
|
* char buf[5], *p = buf;
|
2016-09-30 19:16:08 +08:00
|
|
|
* mg_avprintf(&p, sizeof(buf), "%s", "hi there");
|
2015-09-08 19:49:03 +08:00
|
|
|
* use_p_somehow(p);
|
|
|
|
* if (p != buf) {
|
|
|
|
* free(p);
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* The purpose of this is to avoid malloc-ing if generated strings are small.
|
|
|
|
*/
|
2016-09-30 19:16:08 +08:00
|
|
|
int mg_asprintf(char **buf, size_t size, const char *fmt, ...);
|
|
|
|
|
|
|
|
/* Same as mg_asprintf, but takes varargs list. */
|
2015-09-08 19:49:03 +08:00
|
|
|
int mg_avprintf(char **buf, size_t size, const char *fmt, va_list ap);
|
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Returns true if target platform is big endian.
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
|
|
|
int mg_is_big_endian(void);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A helper function for traversing a comma separated list of values.
|
2016-07-26 22:53:33 +08:00
|
|
|
* It returns a list pointer shifted to the next value or NULL if the end
|
2015-09-08 19:49:03 +08:00
|
|
|
* of the list found.
|
2016-07-26 22:53:33 +08:00
|
|
|
* The value is stored in a val vector. If the value has a form "x=y", then
|
|
|
|
* eq_val vector is initialised to point to the "y" part, and val vector length
|
2015-09-08 19:49:03 +08:00
|
|
|
* is adjusted to point only to "x".
|
2016-07-26 22:53:33 +08:00
|
|
|
* If the list is just a comma separated list of entries, like "aa,bb,cc" then
|
2015-09-08 19:49:03 +08:00
|
|
|
* `eq_val` will contain zero-length string.
|
|
|
|
*
|
|
|
|
* The purpose of this function is to parse comma separated string without
|
|
|
|
* any copying/memory allocation.
|
|
|
|
*/
|
|
|
|
const char *mg_next_comma_list_entry(const char *list, struct mg_str *val,
|
|
|
|
struct mg_str *eq_val);
|
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Matches 0-terminated string (mg_match_prefix) or string with given length
|
2016-02-17 14:02:17 +08:00
|
|
|
* mg_match_prefix_n against a glob pattern.
|
2016-07-26 22:53:33 +08:00
|
|
|
*
|
|
|
|
* Match is case-insensitive. Returns number of bytes matched, or -1 if no
|
|
|
|
* match.
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
|
|
|
int mg_match_prefix(const char *pattern, int pattern_len, const char *str);
|
2016-03-31 19:30:42 +08:00
|
|
|
int mg_match_prefix_n(const struct mg_str pattern, const struct mg_str str);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
2016-03-15 00:40:48 +08:00
|
|
|
#endif /* CS_MONGOOSE_SRC_UTIL_H_ */
|
2016-09-27 12:59:51 +08:00
|
|
|
#ifdef MG_MODULE_LINES
|
|
|
|
#line 1 "mongoose/src/http.h"
|
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014 Cesanta Software Limited
|
|
|
|
* All rights reserved
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2016-09-01 22:19:01 +08:00
|
|
|
* === Common API reference
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
|
|
|
|
2016-03-15 00:40:48 +08:00
|
|
|
#ifndef CS_MONGOOSE_SRC_HTTP_H_
|
|
|
|
#define CS_MONGOOSE_SRC_HTTP_H_
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2016-10-15 00:58:14 +08:00
|
|
|
#if MG_ENABLE_HTTP
|
|
|
|
|
2016-09-27 12:59:51 +08:00
|
|
|
/* Amalgamated: #include "mongoose/src/net.h" */
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
2015-09-19 19:38:46 +08:00
|
|
|
#ifndef MG_MAX_HTTP_HEADERS
|
2016-04-01 22:01:36 +08:00
|
|
|
#define MG_MAX_HTTP_HEADERS 20
|
2015-09-08 19:49:03 +08:00
|
|
|
#endif
|
|
|
|
|
2015-09-19 19:38:46 +08:00
|
|
|
#ifndef MG_MAX_HTTP_REQUEST_SIZE
|
2016-04-01 22:01:36 +08:00
|
|
|
#define MG_MAX_HTTP_REQUEST_SIZE 1024
|
2015-09-08 19:49:03 +08:00
|
|
|
#endif
|
|
|
|
|
2015-09-19 19:38:46 +08:00
|
|
|
#ifndef MG_MAX_PATH
|
2015-11-20 00:20:45 +08:00
|
|
|
#ifdef PATH_MAX
|
|
|
|
#define MG_MAX_PATH PATH_MAX
|
|
|
|
#else
|
2016-04-01 22:01:36 +08:00
|
|
|
#define MG_MAX_PATH 256
|
2015-09-08 19:49:03 +08:00
|
|
|
#endif
|
2015-11-20 00:20:45 +08:00
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2016-03-01 17:14:46 +08:00
|
|
|
#ifndef MG_MAX_HTTP_SEND_MBUF
|
2016-04-01 22:01:36 +08:00
|
|
|
#define MG_MAX_HTTP_SEND_MBUF 1024
|
2015-09-08 19:49:03 +08:00
|
|
|
#endif
|
|
|
|
|
2015-09-19 19:38:46 +08:00
|
|
|
#ifndef MG_CGI_ENVIRONMENT_SIZE
|
|
|
|
#define MG_CGI_ENVIRONMENT_SIZE 8192
|
2015-09-08 19:49:03 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* HTTP message */
|
|
|
|
struct http_message {
|
|
|
|
struct mg_str message; /* Whole message: request line + headers + body */
|
|
|
|
|
|
|
|
/* HTTP Request line (or HTTP response line) */
|
|
|
|
struct mg_str method; /* "GET" */
|
|
|
|
struct mg_str uri; /* "/my_file.html" */
|
2015-10-20 17:31:23 +08:00
|
|
|
struct mg_str proto; /* "HTTP/1.1" -- for both request and response */
|
|
|
|
|
2015-09-08 19:49:03 +08:00
|
|
|
/* For responses, code and response status message are set */
|
|
|
|
int resp_code;
|
|
|
|
struct mg_str resp_status_msg;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Query-string part of the URI. For example, for HTTP request
|
|
|
|
* GET /foo/bar?param1=val1¶m2=val2
|
|
|
|
* | uri | query_string |
|
|
|
|
*
|
|
|
|
* Note that question mark character doesn't belong neither to the uri,
|
|
|
|
* nor to the query_string
|
|
|
|
*/
|
|
|
|
struct mg_str query_string;
|
|
|
|
|
|
|
|
/* Headers */
|
2015-09-19 19:38:46 +08:00
|
|
|
struct mg_str header_names[MG_MAX_HTTP_HEADERS];
|
|
|
|
struct mg_str header_values[MG_MAX_HTTP_HEADERS];
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
/* Message body */
|
|
|
|
struct mg_str body; /* Zero-length for requests with no body */
|
|
|
|
};
|
|
|
|
|
2016-10-15 00:58:14 +08:00
|
|
|
#if MG_ENABLE_HTTP_WEBSOCKET
|
2016-03-19 17:48:50 +08:00
|
|
|
/* WebSocket message */
|
2015-09-08 19:49:03 +08:00
|
|
|
struct websocket_message {
|
|
|
|
unsigned char *data;
|
|
|
|
size_t size;
|
|
|
|
unsigned char flags;
|
|
|
|
};
|
2016-10-15 00:58:14 +08:00
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2016-03-19 17:48:50 +08:00
|
|
|
/* HTTP multipart part */
|
2016-02-26 08:12:32 +08:00
|
|
|
struct mg_http_multipart_part {
|
|
|
|
const char *file_name;
|
|
|
|
const char *var_name;
|
|
|
|
struct mg_str data;
|
2016-03-07 23:54:32 +08:00
|
|
|
int status; /* <0 on error */
|
2016-03-31 23:02:05 +08:00
|
|
|
void *user_data;
|
2016-02-26 08:12:32 +08:00
|
|
|
};
|
|
|
|
|
2016-10-05 07:38:27 +08:00
|
|
|
/* SSI call context */
|
|
|
|
struct mg_ssi_call_ctx {
|
|
|
|
struct http_message *req; /* The request being processed. */
|
|
|
|
struct mg_str file; /* Filesystem path of the file being processed. */
|
|
|
|
struct mg_str arg; /* The argument passed to the tag: <!-- call arg -->. */
|
|
|
|
};
|
|
|
|
|
2015-09-08 19:49:03 +08:00
|
|
|
/* HTTP and websocket events. void *ev_data is described in a comment. */
|
2015-09-19 19:38:46 +08:00
|
|
|
#define MG_EV_HTTP_REQUEST 100 /* struct http_message * */
|
|
|
|
#define MG_EV_HTTP_REPLY 101 /* struct http_message * */
|
|
|
|
#define MG_EV_HTTP_CHUNK 102 /* struct http_message * */
|
|
|
|
#define MG_EV_SSI_CALL 105 /* char * */
|
2016-10-05 07:38:27 +08:00
|
|
|
#define MG_EV_SSI_CALL_CTX 106 /* struct mg_ssi_call_ctx * */
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2016-10-15 00:58:14 +08:00
|
|
|
#if MG_ENABLE_HTTP_WEBSOCKET
|
2015-09-19 19:38:46 +08:00
|
|
|
#define MG_EV_WEBSOCKET_HANDSHAKE_REQUEST 111 /* NULL */
|
|
|
|
#define MG_EV_WEBSOCKET_HANDSHAKE_DONE 112 /* NULL */
|
|
|
|
#define MG_EV_WEBSOCKET_FRAME 113 /* struct websocket_message * */
|
|
|
|
#define MG_EV_WEBSOCKET_CONTROL_FRAME 114 /* struct websocket_message * */
|
2016-06-07 19:02:36 +08:00
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
|
Change from using #ifdef to #if for features tests
"#if FOO" still works with simple -DFOO, but gives more flexibility.
Specifically, if user expressed no preference (FOO is not defined),
we can apply reasonable defaults (this is the legitimate use of ifdef).
In short, from now on, please use
#if MG_ENABLE_FOO
instead of
#ifdef MG_ENABLE_FOO
Since we are all used to #ifdef, this change also adds a precommit check
to police this. Specifically, in *.h and *.c files that are Copyright Cesanta,
"ifdef" and "if defined()" are not allowed to be used with macros that contain
ENABLE or DISABLE, unless the like also contains "ifdef-ok".
Hence, if you are sure you want to use ifdef, use this:
#ifdef MG_ENABLE_FOO /* ifdef-ok */
PUBLISHED_FROM=9be829448f53cff575d6cae8b9945fb12531c15a
2016-10-14 01:55:08 +08:00
|
|
|
#if MG_ENABLE_HTTP_STREAMING_MULTIPART
|
2016-02-26 08:12:32 +08:00
|
|
|
#define MG_EV_HTTP_MULTIPART_REQUEST 121 /* struct http_message */
|
|
|
|
#define MG_EV_HTTP_PART_BEGIN 122 /* struct mg_http_multipart_part */
|
|
|
|
#define MG_EV_HTTP_PART_DATA 123 /* struct mg_http_multipart_part */
|
|
|
|
#define MG_EV_HTTP_PART_END 124 /* struct mg_http_multipart_part */
|
|
|
|
#endif
|
|
|
|
|
2015-09-08 19:49:03 +08:00
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Attaches a built-in HTTP event handler to the given connection.
|
|
|
|
* The user-defined event handler will receive following extra events:
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
2016-02-26 08:12:32 +08:00
|
|
|
* - MG_EV_HTTP_REQUEST: HTTP request has arrived. Parsed HTTP request
|
|
|
|
* is passed as
|
2015-09-08 19:49:03 +08:00
|
|
|
* `struct http_message` through the handler's `void *ev_data` pointer.
|
2016-02-26 08:12:32 +08:00
|
|
|
* - MG_EV_HTTP_MULTIPART_REQUEST: A multipart POST request has received.
|
2016-07-26 22:53:33 +08:00
|
|
|
* This event is sent before body is parsed. After this, the user
|
2016-02-26 08:12:32 +08:00
|
|
|
* should expect a sequence of MG_EV_HTTP_PART_BEGIN/DATA/END requests.
|
|
|
|
* This is also the last time when headers and other request fields are
|
|
|
|
* accessible.
|
2016-07-26 22:53:33 +08:00
|
|
|
* - MG_EV_HTTP_REPLY: The HTTP reply has arrived. The parsed HTTP reply is
|
|
|
|
* passed as `struct http_message` through the handler's `void *ev_data`
|
|
|
|
* pointer.
|
|
|
|
* - MG_EV_HTTP_CHUNK: The HTTP chunked-encoding chunk has arrived.
|
|
|
|
* The parsed HTTP reply is passed as `struct http_message` through the
|
2015-09-08 19:49:03 +08:00
|
|
|
* handler's `void *ev_data` pointer. `http_message::body` would contain
|
|
|
|
* incomplete, reassembled HTTP body.
|
2016-07-26 22:53:33 +08:00
|
|
|
* It will grow with every new chunk that arrives, and it can
|
|
|
|
* potentially consume a lot of memory. An event handler may process
|
2015-09-08 19:49:03 +08:00
|
|
|
* the body as chunks are coming, and signal Mongoose to delete processed
|
2015-09-19 19:38:46 +08:00
|
|
|
* body by setting `MG_F_DELETE_CHUNK` in `mg_connection::flags`. When
|
|
|
|
* the last zero chunk is received,
|
|
|
|
* Mongoose sends `MG_EV_HTTP_REPLY` event with
|
2015-09-08 19:49:03 +08:00
|
|
|
* full reassembled body (if handler did not signal to delete chunks) or
|
|
|
|
* with empty body (if handler did signal to delete chunks).
|
2016-07-26 22:53:33 +08:00
|
|
|
* - MG_EV_WEBSOCKET_HANDSHAKE_REQUEST: server has received the WebSocket
|
|
|
|
* handshake request. `ev_data` contains parsed HTTP request.
|
|
|
|
* - MG_EV_WEBSOCKET_HANDSHAKE_DONE: server has completed the WebSocket
|
|
|
|
* handshake. `ev_data` is `NULL`.
|
|
|
|
* - MG_EV_WEBSOCKET_FRAME: new WebSocket frame has arrived. `ev_data` is
|
2015-09-08 19:49:03 +08:00
|
|
|
* `struct websocket_message *`
|
2016-02-26 08:12:32 +08:00
|
|
|
* - MG_EV_HTTP_PART_BEGIN: new part of multipart message is started,
|
|
|
|
* extra parameters are passed in mg_http_multipart_part
|
2016-07-26 22:53:33 +08:00
|
|
|
* - MG_EV_HTTP_PART_DATA: new portion of data from the multiparted message
|
2016-02-26 08:12:32 +08:00
|
|
|
* no additional headers are available, only data and data size
|
|
|
|
* - MG_EV_HTTP_PART_END: final boundary received, analogue to maybe used to
|
|
|
|
* find the end of packet
|
|
|
|
* Note: Mongoose should be compiled with MG_ENABLE_HTTP_STREAMING_MULTIPART
|
|
|
|
* to enable MG_EV_HTTP_MULTIPART_REQUEST, MG_EV_HTTP_REQUEST_END,
|
|
|
|
* MG_EV_HTTP_REQUEST_CANCEL, MG_EV_HTTP_PART_BEGIN, MG_EV_HTTP_PART_DATA,
|
|
|
|
* MG_EV_HTTP_PART_END constants
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
|
|
|
void mg_set_protocol_http_websocket(struct mg_connection *nc);
|
|
|
|
|
2016-10-15 00:58:14 +08:00
|
|
|
#if MG_ENABLE_HTTP_WEBSOCKET
|
2015-09-08 19:49:03 +08:00
|
|
|
/*
|
|
|
|
* Send websocket handshake to the server.
|
|
|
|
*
|
|
|
|
* `nc` must be a valid connection, connected to a server. `uri` is an URI
|
|
|
|
* to fetch, extra_headers` is extra HTTP headers to send or `NULL`.
|
|
|
|
*
|
|
|
|
* This function is intended to be used by websocket client.
|
2016-03-07 22:22:02 +08:00
|
|
|
*
|
|
|
|
* Note that the Host header is mandatory in HTTP/1.1 and must be
|
|
|
|
* included in `extra_headers`. `mg_send_websocket_handshake2` offers
|
|
|
|
* a better API for that.
|
|
|
|
*
|
|
|
|
* Deprecated in favour of `mg_send_websocket_handshake2`
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
|
|
|
void mg_send_websocket_handshake(struct mg_connection *nc, const char *uri,
|
|
|
|
const char *extra_headers);
|
|
|
|
|
2016-03-07 22:22:02 +08:00
|
|
|
/*
|
|
|
|
* Send websocket handshake to the server.
|
|
|
|
*
|
|
|
|
* `nc` must be a valid connection, connected to a server. `uri` is an URI
|
|
|
|
* to fetch, `host` goes into the `Host` header, `protocol` goes into the
|
|
|
|
* `Sec-WebSocket-Proto` header (NULL to omit), extra_headers` is extra HTTP
|
|
|
|
* headers to send or `NULL`.
|
|
|
|
*
|
|
|
|
* This function is intended to be used by websocket client.
|
|
|
|
*/
|
|
|
|
void mg_send_websocket_handshake2(struct mg_connection *nc, const char *path,
|
|
|
|
const char *host, const char *protocol,
|
|
|
|
const char *extra_headers);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Helper function that creates an outbound WebSocket connection.
|
|
|
|
*
|
|
|
|
* `url` is a URL to connect to. It must be properly URL-encoded, e.g. have
|
|
|
|
* no spaces, etc. By default, `mg_connect_ws()` sends Connection and
|
2016-07-26 22:53:33 +08:00
|
|
|
* Host headers. `extra_headers` is an extra HTTP header to send, e.g.
|
2016-03-07 22:22:02 +08:00
|
|
|
* `"User-Agent: my-app\r\n"`.
|
|
|
|
* If `protocol` is not NULL, then a `Sec-WebSocket-Protocol` header is sent.
|
|
|
|
*
|
|
|
|
* Examples:
|
|
|
|
*
|
2016-03-19 17:48:50 +08:00
|
|
|
* ```c
|
2016-03-07 22:22:02 +08:00
|
|
|
* nc1 = mg_connect_ws(mgr, ev_handler_1, "ws://echo.websocket.org", NULL,
|
|
|
|
* NULL);
|
|
|
|
* nc2 = mg_connect_ws(mgr, ev_handler_1, "wss://echo.websocket.org", NULL,
|
|
|
|
* NULL);
|
|
|
|
* nc3 = mg_connect_ws(mgr, ev_handler_1, "ws://api.cesanta.com",
|
|
|
|
* "clubby.cesanta.com", NULL);
|
2016-03-19 17:48:50 +08:00
|
|
|
* ```
|
2016-03-07 22:22:02 +08:00
|
|
|
*/
|
|
|
|
struct mg_connection *mg_connect_ws(struct mg_mgr *mgr,
|
|
|
|
mg_event_handler_t event_handler,
|
|
|
|
const char *url, const char *protocol,
|
|
|
|
const char *extra_headers);
|
|
|
|
|
2016-04-05 00:30:10 +08:00
|
|
|
/*
|
|
|
|
* Helper function that creates an outbound WebSocket connection
|
|
|
|
*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Mostly identical to `mg_connect_ws`, but allows to provide extra parameters
|
|
|
|
* (for example, SSL parameters)
|
2016-04-05 00:30:10 +08:00
|
|
|
*/
|
|
|
|
struct mg_connection *mg_connect_ws_opt(struct mg_mgr *mgr,
|
|
|
|
mg_event_handler_t ev_handler,
|
|
|
|
struct mg_connect_opts opts,
|
|
|
|
const char *url, const char *protocol,
|
|
|
|
const char *extra_headers);
|
|
|
|
|
2015-09-08 19:49:03 +08:00
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Send WebSocket frame to the remote end.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
2016-07-26 22:53:33 +08:00
|
|
|
* `op_and_flags` specifies the frame's type. It's one of:
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
|
|
|
* - WEBSOCKET_OP_CONTINUE
|
|
|
|
* - WEBSOCKET_OP_TEXT
|
|
|
|
* - WEBSOCKET_OP_BINARY
|
|
|
|
* - WEBSOCKET_OP_CLOSE
|
|
|
|
* - WEBSOCKET_OP_PING
|
|
|
|
* - WEBSOCKET_OP_PONG
|
2015-09-14 19:58:08 +08:00
|
|
|
*
|
|
|
|
* Orred with one of the flags:
|
|
|
|
*
|
|
|
|
* - WEBSOCKET_DONT_FIN: Don't set the FIN flag on the frame to be sent.
|
|
|
|
*
|
2015-09-08 19:49:03 +08:00
|
|
|
* `data` and `data_len` contain frame data.
|
|
|
|
*/
|
2015-09-14 19:58:08 +08:00
|
|
|
void mg_send_websocket_frame(struct mg_connection *nc, int op_and_flags,
|
|
|
|
const void *data, size_t data_len);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Sends multiple websocket frames.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
|
|
|
* Like `mg_send_websocket_frame()`, but composes a frame from multiple buffers.
|
|
|
|
*/
|
2015-09-14 19:58:08 +08:00
|
|
|
void mg_send_websocket_framev(struct mg_connection *nc, int op_and_flags,
|
2015-09-08 19:49:03 +08:00
|
|
|
const struct mg_str *strings, int num_strings);
|
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Sends WebSocket frame to the remote end.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Like `mg_send_websocket_frame()`, but allows to create formatted messages
|
2015-09-08 19:49:03 +08:00
|
|
|
* with `printf()`-like semantics.
|
|
|
|
*/
|
2015-09-14 19:58:08 +08:00
|
|
|
void mg_printf_websocket_frame(struct mg_connection *nc, int op_and_flags,
|
2015-09-08 19:49:03 +08:00
|
|
|
const char *fmt, ...);
|
|
|
|
|
|
|
|
/* Websocket opcodes, from http://tools.ietf.org/html/rfc6455 */
|
|
|
|
#define WEBSOCKET_OP_CONTINUE 0
|
|
|
|
#define WEBSOCKET_OP_TEXT 1
|
|
|
|
#define WEBSOCKET_OP_BINARY 2
|
|
|
|
#define WEBSOCKET_OP_CLOSE 8
|
|
|
|
#define WEBSOCKET_OP_PING 9
|
|
|
|
#define WEBSOCKET_OP_PONG 10
|
|
|
|
|
2015-09-14 19:58:08 +08:00
|
|
|
/*
|
|
|
|
* If set causes the FIN flag to not be set on outbound
|
|
|
|
* frames. This enables sending multiple fragments of a single
|
|
|
|
* logical message.
|
|
|
|
*
|
|
|
|
* The WebSocket protocol mandates that if the FIN flag of a data
|
|
|
|
* frame is not set, the next frame must be a WEBSOCKET_OP_CONTINUE.
|
|
|
|
* The last frame must have the FIN bit set.
|
|
|
|
*
|
|
|
|
* Note that mongoose will automatically defragment incoming messages,
|
|
|
|
* so this flag is used only on outbound messages.
|
|
|
|
*/
|
|
|
|
#define WEBSOCKET_DONT_FIN 0x100
|
|
|
|
|
2016-10-15 00:58:14 +08:00
|
|
|
#endif /* MG_ENABLE_HTTP_WEBSOCKET */
|
|
|
|
|
2016-09-01 22:19:01 +08:00
|
|
|
/*
|
|
|
|
* Decodes a URL-encoded string.
|
|
|
|
*
|
|
|
|
* Source string is specified by (`src`, `src_len`), and destination is
|
|
|
|
* (`dst`, `dst_len`). If `is_form_url_encoded` is non-zero, then
|
|
|
|
* `+` character is decoded as a blank space character. This function
|
|
|
|
* guarantees to NUL-terminate the destination. If destination is too small,
|
|
|
|
* then the source string is partially decoded and `-1` is returned. Otherwise,
|
|
|
|
* a length of the decoded string is returned, not counting final NUL.
|
|
|
|
*/
|
|
|
|
int mg_url_decode(const char *src, int src_len, char *dst, int dst_len,
|
|
|
|
int is_form_url_encoded);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
2016-10-15 00:58:14 +08:00
|
|
|
|
|
|
|
#endif /* MG_ENABLE_HTTP */
|
|
|
|
|
2016-09-01 22:19:01 +08:00
|
|
|
#endif /* CS_MONGOOSE_SRC_HTTP_H_ */
|
2016-09-27 12:59:51 +08:00
|
|
|
#ifdef MG_MODULE_LINES
|
|
|
|
#line 1 "mongoose/src/http_server.h"
|
|
|
|
#endif
|
2016-09-01 22:19:01 +08:00
|
|
|
/*
|
|
|
|
* === Server API reference
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CS_MONGOOSE_SRC_HTTP_SERVER_H_
|
|
|
|
#define CS_MONGOOSE_SRC_HTTP_SERVER_H_
|
|
|
|
|
2016-10-15 00:58:14 +08:00
|
|
|
#if MG_ENABLE_HTTP
|
|
|
|
|
2016-09-01 22:19:01 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
2015-09-08 19:49:03 +08:00
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Parses a HTTP message.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
2016-07-26 22:53:33 +08:00
|
|
|
* `is_req` should be set to 1 if parsing a request, 0 if reply.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Returns the number of bytes parsed. If HTTP message is
|
|
|
|
* incomplete `0` is returned. On parse error, a negative number is returned.
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
|
|
|
int mg_parse_http(const char *s, int n, struct http_message *hm, int is_req);
|
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Searches and returns the header `name` in parsed HTTP message `hm`.
|
2015-09-08 19:49:03 +08:00
|
|
|
* If header is not found, NULL is returned. Example:
|
|
|
|
*
|
|
|
|
* struct mg_str *host_hdr = mg_get_http_header(hm, "Host");
|
|
|
|
*/
|
|
|
|
struct mg_str *mg_get_http_header(struct http_message *hm, const char *name);
|
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Parses the HTTP header `hdr`. Finds variable `var_name` and stores its value
|
|
|
|
* in the buffer `buf`, `buf_size`. Returns 0 if variable not found, non-zero
|
2015-09-08 19:49:03 +08:00
|
|
|
* otherwise.
|
|
|
|
*
|
2016-07-26 22:53:33 +08:00
|
|
|
* This function is supposed to parse cookies, authentication headers, etc.
|
|
|
|
* Example (error handling omitted):
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
|
|
|
* char user[20];
|
|
|
|
* struct mg_str *hdr = mg_get_http_header(hm, "Authorization");
|
|
|
|
* mg_http_parse_header(hdr, "username", user, sizeof(user));
|
|
|
|
*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Returns the length of the variable's value. If buffer is not large enough,
|
2015-09-08 19:49:03 +08:00
|
|
|
* or variable not found, 0 is returned.
|
|
|
|
*/
|
|
|
|
int mg_http_parse_header(struct mg_str *hdr, const char *var_name, char *buf,
|
|
|
|
size_t buf_size);
|
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Parses the buffer `buf`, `buf_len` that contains multipart form data chunks.
|
|
|
|
* Stores the chunk name in a `var_name`, `var_name_len` buffer.
|
2015-09-08 19:49:03 +08:00
|
|
|
* If a chunk is an uploaded file, then `file_name`, `file_name_len` is
|
|
|
|
* filled with an uploaded file name. `chunk`, `chunk_len`
|
|
|
|
* points to the chunk data.
|
|
|
|
*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Return: number of bytes to skip to the next chunk or 0 if there are
|
2015-09-08 19:49:03 +08:00
|
|
|
* no more chunks.
|
|
|
|
*
|
|
|
|
* Usage example:
|
|
|
|
*
|
2016-03-19 17:48:50 +08:00
|
|
|
* ```c
|
2015-09-08 19:49:03 +08:00
|
|
|
* static void ev_handler(struct mg_connection *nc, int ev, void *ev_data) {
|
|
|
|
* switch(ev) {
|
2015-09-19 19:38:46 +08:00
|
|
|
* case MG_EV_HTTP_REQUEST: {
|
2015-09-08 19:49:03 +08:00
|
|
|
* struct http_message *hm = (struct http_message *) ev_data;
|
|
|
|
* char var_name[100], file_name[100];
|
|
|
|
* const char *chunk;
|
|
|
|
* size_t chunk_len, n1, n2;
|
|
|
|
*
|
|
|
|
* n1 = n2 = 0;
|
|
|
|
* while ((n2 = mg_parse_multipart(hm->body.p + n1,
|
|
|
|
* hm->body.len - n1,
|
|
|
|
* var_name, sizeof(var_name),
|
|
|
|
* file_name, sizeof(file_name),
|
|
|
|
* &chunk, &chunk_len)) > 0) {
|
|
|
|
* printf("var: %s, file_name: %s, size: %d, chunk: [%.*s]\n",
|
|
|
|
* var_name, file_name, (int) chunk_len,
|
|
|
|
* (int) chunk_len, chunk);
|
|
|
|
* n1 += n2;
|
|
|
|
* }
|
|
|
|
* }
|
|
|
|
* break;
|
2016-03-19 17:48:50 +08:00
|
|
|
* ```
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
|
|
|
size_t mg_parse_multipart(const char *buf, size_t buf_len, char *var_name,
|
|
|
|
size_t var_name_len, char *file_name,
|
|
|
|
size_t file_name_len, const char **chunk,
|
|
|
|
size_t *chunk_len);
|
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Fetches a HTTP form variable.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Fetches a variable `name` from a `buf` into a buffer specified by `dst`,
|
|
|
|
* `dst_len`. The destination is always zero-terminated. Returns the length of
|
|
|
|
* a fetched variable. If not found, 0 is returned. `buf` must be valid
|
|
|
|
* url-encoded buffer. If destination is too small, `-1` is returned.
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
2015-12-22 15:30:04 +08:00
|
|
|
int mg_get_http_var(const struct mg_str *buf, const char *name, char *dst,
|
|
|
|
size_t dst_len);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2016-10-14 20:24:02 +08:00
|
|
|
#if MG_ENABLE_FILESYSTEM
|
2015-09-08 19:49:03 +08:00
|
|
|
/*
|
|
|
|
* This structure defines how `mg_serve_http()` works.
|
|
|
|
* Best practice is to set only required settings, and leave the rest as NULL.
|
|
|
|
*/
|
|
|
|
struct mg_serve_http_opts {
|
|
|
|
/* Path to web root directory */
|
|
|
|
const char *document_root;
|
|
|
|
|
|
|
|
/* List of index files. Default is "" */
|
|
|
|
const char *index_files;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Leave as NULL to disable authentication.
|
|
|
|
* To enable directory protection with authentication, set this to ".htpasswd"
|
|
|
|
* Then, creating ".htpasswd" file in any directory automatically protects
|
|
|
|
* it with digest authentication.
|
|
|
|
* Use `mongoose` web server binary, or `htdigest` Apache utility to
|
|
|
|
* create/manipulate passwords file.
|
|
|
|
* Make sure `auth_domain` is set to a valid domain name.
|
|
|
|
*/
|
|
|
|
const char *per_directory_auth_file;
|
|
|
|
|
|
|
|
/* Authorization domain (domain name of this web server) */
|
|
|
|
const char *auth_domain;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Leave as NULL to disable authentication.
|
|
|
|
* Normally, only selected directories in the document root are protected.
|
|
|
|
* If absolutely every access to the web server needs to be authenticated,
|
|
|
|
* regardless of the URI, set this option to the path to the passwords file.
|
|
|
|
* Format of that file is the same as ".htpasswd" file. Make sure that file
|
|
|
|
* is located outside document root to prevent people fetching it.
|
|
|
|
*/
|
|
|
|
const char *global_auth_file;
|
|
|
|
|
|
|
|
/* Set to "no" to disable directory listing. Enabled by default. */
|
|
|
|
const char *enable_directory_listing;
|
|
|
|
|
2016-07-20 18:59:54 +08:00
|
|
|
/*
|
|
|
|
* SSI files pattern. If not set, "**.shtml$|**.shtm$" is used.
|
|
|
|
*
|
|
|
|
* All files that match ssi_pattern are treated as SSI.
|
|
|
|
*
|
|
|
|
* Server Side Includes (SSI) is a simple interpreted server-side scripting
|
|
|
|
* language which is most commonly used to include the contents of a file
|
|
|
|
* into a web page. It can be useful when it is desirable to include a common
|
|
|
|
* piece of code throughout a website, for example, headers and footers.
|
|
|
|
*
|
|
|
|
* In order for a webpage to recognize an SSI-enabled HTML file, the
|
|
|
|
* filename should end with a special extension, by default the extension
|
|
|
|
* should be either .shtml or .shtm
|
|
|
|
*
|
|
|
|
* Unknown SSI directives are silently ignored by Mongoose. Currently,
|
|
|
|
* the following SSI directives are supported:
|
|
|
|
* <!--#include FILE_TO_INCLUDE -->
|
|
|
|
* <!--#exec "COMMAND_TO_EXECUTE" -->
|
|
|
|
* <!--#call COMMAND -->
|
|
|
|
*
|
|
|
|
* Note that <!--#include ...> directive supports three path
|
|
|
|
*specifications:
|
|
|
|
*
|
|
|
|
* <!--#include virtual="path" --> Path is relative to web server root
|
|
|
|
* <!--#include abspath="path" --> Path is absolute or relative to the
|
|
|
|
* web server working dir
|
|
|
|
* <!--#include file="path" -->, Path is relative to current document
|
|
|
|
* <!--#include "path" -->
|
|
|
|
*
|
|
|
|
* The include directive may be used to include the contents of a file or
|
|
|
|
* the result of running a CGI script.
|
|
|
|
*
|
|
|
|
* The exec directive is used to execute
|
|
|
|
* a command on a server, and show command's output. Example:
|
|
|
|
*
|
|
|
|
* <!--#exec "ls -l" -->
|
|
|
|
*
|
|
|
|
* The call directive is a way to invoke a C handler from the HTML page.
|
|
|
|
* On each occurence of <!--#call COMMAND OPTIONAL_PARAMS> directive,
|
|
|
|
* Mongoose calls a registered event handler with MG_EV_SSI_CALL event,
|
|
|
|
* and event parameter will point to the COMMAND OPTIONAL_PARAMS string.
|
|
|
|
* An event handler can output any text, for example by calling
|
|
|
|
* `mg_printf()`. This is a flexible way of generating a web page on
|
|
|
|
* server side by calling a C event handler. Example:
|
|
|
|
*
|
|
|
|
* <!--#call foo --> ... <!--#call bar -->
|
|
|
|
*
|
|
|
|
* In the event handler:
|
|
|
|
* case MG_EV_SSI_CALL: {
|
|
|
|
* const char *param = (const char *) ev_data;
|
|
|
|
* if (strcmp(param, "foo") == 0) {
|
|
|
|
* mg_printf(c, "hello from foo");
|
|
|
|
* } else if (strcmp(param, "bar") == 0) {
|
|
|
|
* mg_printf(c, "hello from bar");
|
|
|
|
* }
|
|
|
|
* break;
|
|
|
|
* }
|
|
|
|
*/
|
2015-09-08 19:49:03 +08:00
|
|
|
const char *ssi_pattern;
|
|
|
|
|
|
|
|
/* IP ACL. By default, NULL, meaning all IPs are allowed to connect */
|
|
|
|
const char *ip_acl;
|
|
|
|
|
|
|
|
/* URL rewrites.
|
|
|
|
*
|
|
|
|
* Comma-separated list of `uri_pattern=file_or_directory_path` rewrites.
|
|
|
|
* When HTTP request is received, Mongoose constructs a file name from the
|
|
|
|
* requested URI by combining `document_root` and the URI. However, if the
|
|
|
|
* rewrite option is used and `uri_pattern` matches requested URI, then
|
|
|
|
* `document_root` is ignored. Instead, `file_or_directory_path` is used,
|
|
|
|
* which should be a full path name or a path relative to the web server's
|
|
|
|
* current working directory. Note that `uri_pattern`, as all Mongoose
|
|
|
|
* patterns, is a prefix pattern.
|
|
|
|
*
|
|
|
|
* If uri_pattern starts with `@` symbol, then Mongoose compares it with the
|
|
|
|
* HOST header of the request. If they are equal, Mongoose sets document root
|
|
|
|
* to `file_or_directory_path`, implementing virtual hosts support.
|
2015-11-27 05:37:20 +08:00
|
|
|
* Example: `@foo.com=/document/root/for/foo.com`
|
|
|
|
*
|
|
|
|
* If `uri_pattern` starts with `%` symbol, then Mongoose compares it with
|
|
|
|
* the listening port. If they match, then Mongoose issues a 301 redirect.
|
|
|
|
* For example, to redirect all HTTP requests to the
|
|
|
|
* HTTPS port, do `%80=https://my.site.com`. Note that the request URI is
|
|
|
|
* automatically appended to the redirect location.
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
|
|
|
const char *url_rewrites;
|
|
|
|
|
|
|
|
/* DAV document root. If NULL, DAV requests are going to fail. */
|
|
|
|
const char *dav_document_root;
|
|
|
|
|
2015-12-11 14:25:07 +08:00
|
|
|
/*
|
|
|
|
* DAV passwords file. If NULL, DAV requests are going to fail.
|
|
|
|
* If passwords file is set to "-", then DAV auth is disabled.
|
|
|
|
*/
|
2015-10-20 17:31:23 +08:00
|
|
|
const char *dav_auth_file;
|
|
|
|
|
2015-09-08 19:49:03 +08:00
|
|
|
/* Glob pattern for the files to hide. */
|
|
|
|
const char *hidden_file_pattern;
|
|
|
|
|
|
|
|
/* Set to non-NULL to enable CGI, e.g. **.cgi$|**.php$" */
|
|
|
|
const char *cgi_file_pattern;
|
|
|
|
|
|
|
|
/* If not NULL, ignore CGI script hashbang and use this interpreter */
|
|
|
|
const char *cgi_interpreter;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Comma-separated list of Content-Type overrides for path suffixes, e.g.
|
|
|
|
* ".txt=text/plain; charset=utf-8,.c=text/plain"
|
|
|
|
*/
|
|
|
|
const char *custom_mime_types;
|
2015-11-18 15:39:51 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Extra HTTP headers to add to each server response.
|
|
|
|
* Example: to enable CORS, set this to "Access-Control-Allow-Origin: *".
|
|
|
|
*/
|
|
|
|
const char *extra_headers;
|
2015-09-08 19:49:03 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Serves given HTTP request according to the `options`.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
|
|
|
* Example code snippet:
|
|
|
|
*
|
2016-03-19 17:48:50 +08:00
|
|
|
* ```c
|
2015-09-08 19:49:03 +08:00
|
|
|
* static void ev_handler(struct mg_connection *nc, int ev, void *ev_data) {
|
|
|
|
* struct http_message *hm = (struct http_message *) ev_data;
|
|
|
|
* struct mg_serve_http_opts opts = { .document_root = "/var/www" }; // C99
|
|
|
|
*
|
|
|
|
* switch (ev) {
|
2015-09-19 19:38:46 +08:00
|
|
|
* case MG_EV_HTTP_REQUEST:
|
2015-09-08 19:49:03 +08:00
|
|
|
* mg_serve_http(nc, hm, opts);
|
|
|
|
* break;
|
|
|
|
* default:
|
|
|
|
* break;
|
|
|
|
* }
|
|
|
|
* }
|
2016-03-19 17:48:50 +08:00
|
|
|
* ```
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
2015-12-22 15:30:04 +08:00
|
|
|
void mg_serve_http(struct mg_connection *nc, struct http_message *hm,
|
|
|
|
struct mg_serve_http_opts opts);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2016-08-09 18:34:34 +08:00
|
|
|
/*
|
|
|
|
* Serves a specific file with a given MIME type and optional extra headers.
|
|
|
|
*
|
|
|
|
* Example code snippet:
|
|
|
|
*
|
|
|
|
* ```c
|
|
|
|
* static void ev_handler(struct mg_connection *nc, int ev, void *ev_data) {
|
|
|
|
* switch (ev) {
|
|
|
|
* case MG_EV_HTTP_REQUEST: {
|
|
|
|
* struct http_message *hm = (struct http_message *) ev_data;
|
|
|
|
* mg_http_serve_file(nc, hm, "file.txt",
|
|
|
|
* mg_mk_str("text/plain"), mg_mk_str(""));
|
|
|
|
* break;
|
|
|
|
* }
|
|
|
|
* ...
|
|
|
|
* }
|
|
|
|
* }
|
|
|
|
* ```
|
|
|
|
*/
|
|
|
|
void mg_http_serve_file(struct mg_connection *nc, struct http_message *hm,
|
|
|
|
const char *path, const struct mg_str mime_type,
|
|
|
|
const struct mg_str extra_headers);
|
2016-10-14 20:24:02 +08:00
|
|
|
#endif /* MG_ENABLE_FILESYSTEM */
|
2016-08-09 18:34:34 +08:00
|
|
|
|
2016-02-17 14:02:17 +08:00
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Registers a callback for a specified http endpoint
|
|
|
|
* Note: if callback is registered it is called instead of the
|
2016-02-17 14:02:17 +08:00
|
|
|
* callback provided in mg_bind
|
|
|
|
*
|
|
|
|
* Example code snippet:
|
|
|
|
*
|
2016-03-19 17:48:50 +08:00
|
|
|
* ```c
|
2016-02-17 14:02:17 +08:00
|
|
|
* static void handle_hello1(struct mg_connection *nc, int ev, void *ev_data) {
|
|
|
|
* (void) ev; (void) ev_data;
|
|
|
|
* mg_printf(nc, "HTTP/1.0 200 OK\r\n\r\n[I am Hello1]");
|
|
|
|
* nc->flags |= MG_F_SEND_AND_CLOSE;
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* static void handle_hello1(struct mg_connection *nc, int ev, void *ev_data) {
|
|
|
|
* (void) ev; (void) ev_data;
|
|
|
|
* mg_printf(nc, "HTTP/1.0 200 OK\r\n\r\n[I am Hello2]");
|
|
|
|
* nc->flags |= MG_F_SEND_AND_CLOSE;
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* void init() {
|
|
|
|
* nc = mg_bind(&mgr, local_addr, cb1);
|
|
|
|
* mg_register_http_endpoint(nc, "/hello1", handle_hello1);
|
|
|
|
* mg_register_http_endpoint(nc, "/hello1/hello2", handle_hello2);
|
|
|
|
* }
|
2016-03-19 17:48:50 +08:00
|
|
|
* ```
|
2016-02-17 14:02:17 +08:00
|
|
|
*/
|
|
|
|
void mg_register_http_endpoint(struct mg_connection *nc, const char *uri_path,
|
|
|
|
mg_event_handler_t handler);
|
2016-03-31 23:02:05 +08:00
|
|
|
|
Change from using #ifdef to #if for features tests
"#if FOO" still works with simple -DFOO, but gives more flexibility.
Specifically, if user expressed no preference (FOO is not defined),
we can apply reasonable defaults (this is the legitimate use of ifdef).
In short, from now on, please use
#if MG_ENABLE_FOO
instead of
#ifdef MG_ENABLE_FOO
Since we are all used to #ifdef, this change also adds a precommit check
to police this. Specifically, in *.h and *.c files that are Copyright Cesanta,
"ifdef" and "if defined()" are not allowed to be used with macros that contain
ENABLE or DISABLE, unless the like also contains "ifdef-ok".
Hence, if you are sure you want to use ifdef, use this:
#ifdef MG_ENABLE_FOO /* ifdef-ok */
PUBLISHED_FROM=9be829448f53cff575d6cae8b9945fb12531c15a
2016-10-14 01:55:08 +08:00
|
|
|
#if MG_ENABLE_HTTP_STREAMING_MULTIPART
|
2016-04-11 17:40:19 +08:00
|
|
|
|
|
|
|
/* Callback prototype for `mg_file_upload_handler()`. */
|
|
|
|
typedef struct mg_str (*mg_fu_fname_fn)(struct mg_connection *nc,
|
|
|
|
struct mg_str fname);
|
|
|
|
|
2016-03-31 23:02:05 +08:00
|
|
|
/*
|
|
|
|
* File upload handler.
|
|
|
|
* This handler can be used to implement file uploads with minimum code.
|
|
|
|
* This handler will process MG_EV_HTTP_PART_* events and store file data into
|
|
|
|
* a local file.
|
|
|
|
* `local_name_fn` will be invoked with whatever name was provided by the client
|
2016-07-26 22:53:33 +08:00
|
|
|
* and will expect the name of the local file to open. A return value of NULL
|
|
|
|
* will abort file upload (client will get a "403 Forbidden" response). If
|
|
|
|
* non-null, the returned string must be heap-allocated and will be freed by
|
|
|
|
* the caller.
|
2016-03-31 23:02:05 +08:00
|
|
|
* Exception: it is ok to return the same string verbatim.
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
*
|
|
|
|
* ```c
|
|
|
|
* struct mg_str upload_fname(struct mg_connection *nc, struct mg_str fname) {
|
|
|
|
* // Just return the same filename. Do not actually do this except in test!
|
|
|
|
* // fname is user-controlled and needs to be sanitized.
|
|
|
|
* return fname;
|
|
|
|
* }
|
|
|
|
* void ev_handler(struct mg_connection *nc, int ev, void *ev_data) {
|
|
|
|
* switch (ev) {
|
|
|
|
* ...
|
|
|
|
* case MG_EV_HTTP_PART_BEGIN:
|
|
|
|
* case MG_EV_HTTP_PART_DATA:
|
|
|
|
* case MG_EV_HTTP_PART_END:
|
|
|
|
* mg_file_upload_handler(nc, ev, ev_data, upload_fname);
|
|
|
|
* break;
|
|
|
|
* }
|
|
|
|
* }
|
|
|
|
* ```
|
|
|
|
*/
|
|
|
|
void mg_file_upload_handler(struct mg_connection *nc, int ev, void *ev_data,
|
|
|
|
mg_fu_fname_fn local_name_fn);
|
|
|
|
#endif /* MG_ENABLE_HTTP_STREAMING_MULTIPART */
|
|
|
|
|
2016-05-16 16:48:58 +08:00
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Authenticates a HTTP request against an opened password file.
|
2016-05-16 16:48:58 +08:00
|
|
|
* Returns 1 if authenticated, 0 otherwise.
|
|
|
|
*/
|
|
|
|
int mg_http_check_digest_auth(struct http_message *hm, const char *auth_domain,
|
|
|
|
FILE *fp);
|
|
|
|
|
2016-09-01 22:19:01 +08:00
|
|
|
/*
|
|
|
|
* Sends buffer `buf` of size `len` to the client using chunked HTTP encoding.
|
|
|
|
* This function sends the buffer size as hex number + newline first, then
|
|
|
|
* the buffer itself, then the newline. For example,
|
|
|
|
* `mg_send_http_chunk(nc, "foo", 3)` whill append the `3\r\nfoo\r\n` string
|
|
|
|
* to the `nc->send_mbuf` output IO buffer.
|
|
|
|
*
|
|
|
|
* NOTE: The HTTP header "Transfer-Encoding: chunked" should be sent prior to
|
|
|
|
* using this function.
|
|
|
|
*
|
|
|
|
* NOTE: do not forget to send an empty chunk at the end of the response,
|
|
|
|
* to tell the client that everything was sent. Example:
|
|
|
|
*
|
|
|
|
* ```
|
|
|
|
* mg_printf_http_chunk(nc, "%s", "my response!");
|
|
|
|
* mg_send_http_chunk(nc, "", 0); // Tell the client we're finished
|
|
|
|
* ```
|
|
|
|
*/
|
|
|
|
void mg_send_http_chunk(struct mg_connection *nc, const char *buf, size_t len);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Sends a printf-formatted HTTP chunk.
|
|
|
|
* Functionality is similar to `mg_send_http_chunk()`.
|
|
|
|
*/
|
|
|
|
void mg_printf_http_chunk(struct mg_connection *nc, const char *fmt, ...);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Sends the response status line.
|
|
|
|
* If `extra_headers` is not NULL, then `extra_headers` are also sent
|
|
|
|
* after the reponse line. `extra_headers` must NOT end end with new line.
|
|
|
|
* Example:
|
|
|
|
*
|
|
|
|
* mg_send_response_line(nc, 200, "Access-Control-Allow-Origin: *");
|
|
|
|
*
|
|
|
|
* Will result in:
|
|
|
|
*
|
|
|
|
* HTTP/1.1 200 OK\r\n
|
|
|
|
* Access-Control-Allow-Origin: *\r\n
|
|
|
|
*/
|
2016-09-30 19:16:08 +08:00
|
|
|
void mg_send_response_line(struct mg_connection *nc, int status_code,
|
2016-09-01 22:19:01 +08:00
|
|
|
const char *extra_headers);
|
|
|
|
|
2016-09-30 19:16:08 +08:00
|
|
|
/*
|
|
|
|
* Sends a redirect response.
|
|
|
|
* `status_code` should be either 301 or 302 and `location` point to the
|
|
|
|
* new location.
|
|
|
|
* If `extra_headers` is not empty, then `extra_headers` are also sent
|
|
|
|
* after the reponse line. `extra_headers` must NOT end end with new line.
|
|
|
|
*
|
2016-09-30 20:49:27 +08:00
|
|
|
* Example:
|
2016-09-30 19:16:08 +08:00
|
|
|
*
|
2016-09-30 20:49:27 +08:00
|
|
|
* mg_http_send_redirect(nc, 302, mg_mk_str("/login"), mg_mk_str(NULL));
|
2016-09-30 19:16:08 +08:00
|
|
|
*/
|
|
|
|
void mg_http_send_redirect(struct mg_connection *nc, int status_code,
|
|
|
|
const struct mg_str location,
|
|
|
|
const struct mg_str extra_headers);
|
|
|
|
|
2016-09-01 22:19:01 +08:00
|
|
|
/*
|
|
|
|
* Sends the response line and headers.
|
|
|
|
* This function sends the response line with the `status_code`, and
|
|
|
|
* automatically
|
|
|
|
* sends one header: either "Content-Length" or "Transfer-Encoding".
|
|
|
|
* If `content_length` is negative, then "Transfer-Encoding: chunked" header
|
|
|
|
* is sent, otherwise, "Content-Length" header is sent.
|
|
|
|
*
|
|
|
|
* NOTE: If `Transfer-Encoding` is `chunked`, then message body must be sent
|
|
|
|
* using `mg_send_http_chunk()` or `mg_printf_http_chunk()` functions.
|
|
|
|
* Otherwise, `mg_send()` or `mg_printf()` must be used.
|
|
|
|
* Extra headers could be set through `extra_headers`. Note `extra_headers`
|
|
|
|
* must NOT be terminated by a new line.
|
|
|
|
*/
|
|
|
|
void mg_send_head(struct mg_connection *n, int status_code,
|
|
|
|
int64_t content_length, const char *extra_headers);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Sends a printf-formatted HTTP chunk, escaping HTML tags.
|
|
|
|
*/
|
|
|
|
void mg_printf_html_escape(struct mg_connection *nc, const char *fmt, ...);
|
|
|
|
|
2015-09-08 19:49:03 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
2016-10-15 00:58:14 +08:00
|
|
|
|
|
|
|
#endif /* MG_ENABLE_HTTP */
|
|
|
|
|
2016-09-01 22:19:01 +08:00
|
|
|
#endif /* CS_MONGOOSE_SRC_HTTP_SERVER_H_ */
|
2016-09-27 12:59:51 +08:00
|
|
|
#ifdef MG_MODULE_LINES
|
|
|
|
#line 1 "mongoose/src/http_client.h"
|
|
|
|
#endif
|
2016-09-01 22:19:01 +08:00
|
|
|
/*
|
|
|
|
* === Client API reference
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CS_MONGOOSE_SRC_HTTP_CLIENT_H_
|
|
|
|
#define CS_MONGOOSE_SRC_HTTP_CLIENT_H_
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Helper function that creates an outbound HTTP connection.
|
|
|
|
*
|
|
|
|
* `url` is the URL to fetch. It must be properly URL-encoded, e.g. have
|
|
|
|
* no spaces, etc. By default, `mg_connect_http()` sends the Connection and
|
|
|
|
* Host headers. `extra_headers` is an extra HTTP header to send, e.g.
|
|
|
|
* `"User-Agent: my-app\r\n"`.
|
|
|
|
* If `post_data` is NULL, then a GET request is created. Otherwise, a POST
|
|
|
|
* request is created with the specified POST data. Note that if the data being
|
|
|
|
* posted is a form submission, the `Content-Type` header should be set
|
|
|
|
* accordingly (see example below).
|
|
|
|
*
|
|
|
|
* Examples:
|
|
|
|
*
|
|
|
|
* ```c
|
|
|
|
* nc1 = mg_connect_http(mgr, ev_handler_1, "http://www.google.com", NULL,
|
|
|
|
* NULL);
|
|
|
|
* nc2 = mg_connect_http(mgr, ev_handler_1, "https://github.com", NULL, NULL);
|
|
|
|
* nc3 = mg_connect_http(
|
|
|
|
* mgr, ev_handler_1, "my_server:8000/form_submit/",
|
|
|
|
* "Content-Type: application/x-www-form-urlencoded\r\n",
|
|
|
|
* "var_1=value_1&var_2=value_2");
|
|
|
|
* ```
|
|
|
|
*/
|
|
|
|
struct mg_connection *mg_connect_http(struct mg_mgr *mgr,
|
|
|
|
mg_event_handler_t event_handler,
|
|
|
|
const char *url,
|
|
|
|
const char *extra_headers,
|
|
|
|
const char *post_data);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Helper function that creates an outbound HTTP connection.
|
|
|
|
*
|
|
|
|
* Mostly identical to mg_connect_http, but allows you to provide extra
|
|
|
|
*parameters
|
|
|
|
* (for example, SSL parameters)
|
|
|
|
*/
|
|
|
|
struct mg_connection *mg_connect_http_opt(struct mg_mgr *mgr,
|
|
|
|
mg_event_handler_t ev_handler,
|
|
|
|
struct mg_connect_opts opts,
|
|
|
|
const char *url,
|
|
|
|
const char *extra_headers,
|
|
|
|
const char *post_data);
|
|
|
|
|
|
|
|
/* Creates digest authentication header for a client request. */
|
|
|
|
int mg_http_create_digest_auth_header(char *buf, size_t buf_len,
|
|
|
|
const char *method, const char *uri,
|
|
|
|
const char *auth_domain, const char *user,
|
|
|
|
const char *passwd);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* CS_MONGOOSE_SRC_HTTP_CLIENT_H_ */
|
2016-09-27 12:59:51 +08:00
|
|
|
#ifdef MG_MODULE_LINES
|
|
|
|
#line 1 "mongoose/src/mqtt.h"
|
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014 Cesanta Software Limited
|
|
|
|
* All rights reserved
|
|
|
|
* This software is dual-licensed: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation. For the terms of this
|
|
|
|
* license, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* You are free to use this software under the terms of the GNU General
|
|
|
|
* Public License, but WITHOUT ANY WARRANTY; without even the implied
|
|
|
|
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
* See the GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* Alternatively, you can license this software under a commercial
|
|
|
|
* license, as set out in <https://www.cesanta.com/license>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2016-09-01 22:19:01 +08:00
|
|
|
* === MQTT API reference
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
|
|
|
|
2016-03-15 00:40:48 +08:00
|
|
|
#ifndef CS_MONGOOSE_SRC_MQTT_H_
|
|
|
|
#define CS_MONGOOSE_SRC_MQTT_H_
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2016-09-27 12:59:51 +08:00
|
|
|
/* Amalgamated: #include "mongoose/src/net.h" */
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
struct mg_mqtt_message {
|
|
|
|
int cmd;
|
|
|
|
struct mg_str payload;
|
|
|
|
int qos;
|
|
|
|
uint8_t connack_ret_code; /* connack */
|
|
|
|
uint16_t message_id; /* puback */
|
|
|
|
char *topic;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct mg_mqtt_topic_expression {
|
|
|
|
const char *topic;
|
|
|
|
uint8_t qos;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct mg_send_mqtt_handshake_opts {
|
|
|
|
unsigned char flags; /* connection flags */
|
|
|
|
uint16_t keep_alive;
|
|
|
|
const char *will_topic;
|
|
|
|
const char *will_message;
|
|
|
|
const char *user_name;
|
|
|
|
const char *password;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Message types */
|
2015-09-19 19:38:46 +08:00
|
|
|
#define MG_MQTT_CMD_CONNECT 1
|
|
|
|
#define MG_MQTT_CMD_CONNACK 2
|
|
|
|
#define MG_MQTT_CMD_PUBLISH 3
|
|
|
|
#define MG_MQTT_CMD_PUBACK 4
|
|
|
|
#define MG_MQTT_CMD_PUBREC 5
|
|
|
|
#define MG_MQTT_CMD_PUBREL 6
|
|
|
|
#define MG_MQTT_CMD_PUBCOMP 7
|
|
|
|
#define MG_MQTT_CMD_SUBSCRIBE 8
|
|
|
|
#define MG_MQTT_CMD_SUBACK 9
|
|
|
|
#define MG_MQTT_CMD_UNSUBSCRIBE 10
|
|
|
|
#define MG_MQTT_CMD_UNSUBACK 11
|
|
|
|
#define MG_MQTT_CMD_PINGREQ 12
|
|
|
|
#define MG_MQTT_CMD_PINGRESP 13
|
|
|
|
#define MG_MQTT_CMD_DISCONNECT 14
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
/* MQTT event types */
|
2015-09-19 19:38:46 +08:00
|
|
|
#define MG_MQTT_EVENT_BASE 200
|
|
|
|
#define MG_EV_MQTT_CONNECT (MG_MQTT_EVENT_BASE + MG_MQTT_CMD_CONNECT)
|
|
|
|
#define MG_EV_MQTT_CONNACK (MG_MQTT_EVENT_BASE + MG_MQTT_CMD_CONNACK)
|
|
|
|
#define MG_EV_MQTT_PUBLISH (MG_MQTT_EVENT_BASE + MG_MQTT_CMD_PUBLISH)
|
|
|
|
#define MG_EV_MQTT_PUBACK (MG_MQTT_EVENT_BASE + MG_MQTT_CMD_PUBACK)
|
|
|
|
#define MG_EV_MQTT_PUBREC (MG_MQTT_EVENT_BASE + MG_MQTT_CMD_PUBREC)
|
|
|
|
#define MG_EV_MQTT_PUBREL (MG_MQTT_EVENT_BASE + MG_MQTT_CMD_PUBREL)
|
|
|
|
#define MG_EV_MQTT_PUBCOMP (MG_MQTT_EVENT_BASE + MG_MQTT_CMD_PUBCOMP)
|
|
|
|
#define MG_EV_MQTT_SUBSCRIBE (MG_MQTT_EVENT_BASE + MG_MQTT_CMD_SUBSCRIBE)
|
|
|
|
#define MG_EV_MQTT_SUBACK (MG_MQTT_EVENT_BASE + MG_MQTT_CMD_SUBACK)
|
|
|
|
#define MG_EV_MQTT_UNSUBSCRIBE (MG_MQTT_EVENT_BASE + MG_MQTT_CMD_UNSUBSCRIBE)
|
|
|
|
#define MG_EV_MQTT_UNSUBACK (MG_MQTT_EVENT_BASE + MG_MQTT_CMD_UNSUBACK)
|
|
|
|
#define MG_EV_MQTT_PINGREQ (MG_MQTT_EVENT_BASE + MG_MQTT_CMD_PINGREQ)
|
|
|
|
#define MG_EV_MQTT_PINGRESP (MG_MQTT_EVENT_BASE + MG_MQTT_CMD_PINGRESP)
|
|
|
|
#define MG_EV_MQTT_DISCONNECT (MG_MQTT_EVENT_BASE + MG_MQTT_CMD_DISCONNECT)
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
/* Message flags */
|
2015-09-19 19:38:46 +08:00
|
|
|
#define MG_MQTT_RETAIN 0x1
|
|
|
|
#define MG_MQTT_DUP 0x4
|
|
|
|
#define MG_MQTT_QOS(qos) ((qos) << 1)
|
|
|
|
#define MG_MQTT_GET_QOS(flags) (((flags) &0x6) >> 1)
|
|
|
|
#define MG_MQTT_SET_QOS(flags, qos) (flags) = ((flags) & ~0x6) | ((qos) << 1)
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
/* Connection flags */
|
2015-09-19 19:38:46 +08:00
|
|
|
#define MG_MQTT_CLEAN_SESSION 0x02
|
|
|
|
#define MG_MQTT_HAS_WILL 0x04
|
|
|
|
#define MG_MQTT_WILL_RETAIN 0x20
|
|
|
|
#define MG_MQTT_HAS_PASSWORD 0x40
|
|
|
|
#define MG_MQTT_HAS_USER_NAME 0x80
|
|
|
|
#define MG_MQTT_GET_WILL_QOS(flags) (((flags) &0x18) >> 3)
|
|
|
|
#define MG_MQTT_SET_WILL_QOS(flags, qos) \
|
2015-09-08 19:49:03 +08:00
|
|
|
(flags) = ((flags) & ~0x18) | ((qos) << 3)
|
|
|
|
|
|
|
|
/* CONNACK return codes */
|
2015-09-19 19:38:46 +08:00
|
|
|
#define MG_EV_MQTT_CONNACK_ACCEPTED 0
|
|
|
|
#define MG_EV_MQTT_CONNACK_UNACCEPTABLE_VERSION 1
|
|
|
|
#define MG_EV_MQTT_CONNACK_IDENTIFIER_REJECTED 2
|
|
|
|
#define MG_EV_MQTT_CONNACK_SERVER_UNAVAILABLE 3
|
|
|
|
#define MG_EV_MQTT_CONNACK_BAD_AUTH 4
|
|
|
|
#define MG_EV_MQTT_CONNACK_NOT_AUTHORIZED 5
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Attaches a built-in MQTT event handler to the given connection.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
|
|
|
* The user-defined event handler will receive following extra events:
|
|
|
|
*
|
2015-09-19 19:38:46 +08:00
|
|
|
* - MG_EV_MQTT_CONNACK
|
|
|
|
* - MG_EV_MQTT_PUBLISH
|
|
|
|
* - MG_EV_MQTT_PUBACK
|
|
|
|
* - MG_EV_MQTT_PUBREC
|
|
|
|
* - MG_EV_MQTT_PUBREL
|
|
|
|
* - MG_EV_MQTT_PUBCOMP
|
|
|
|
* - MG_EV_MQTT_SUBACK
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
2015-12-22 15:30:04 +08:00
|
|
|
void mg_set_protocol_mqtt(struct mg_connection *nc);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2016-07-26 22:53:33 +08:00
|
|
|
/* Sends an MQTT handshake. */
|
2015-09-08 19:49:03 +08:00
|
|
|
void mg_send_mqtt_handshake(struct mg_connection *nc, const char *client_id);
|
|
|
|
|
2016-07-26 22:53:33 +08:00
|
|
|
/* Sends an MQTT handshake with optional parameters. */
|
2015-12-22 15:30:04 +08:00
|
|
|
void mg_send_mqtt_handshake_opt(struct mg_connection *nc, const char *client_id,
|
2015-09-08 19:49:03 +08:00
|
|
|
struct mg_send_mqtt_handshake_opts);
|
|
|
|
|
2016-07-26 22:53:33 +08:00
|
|
|
/* Publishes a message to a given topic. */
|
2015-09-08 19:49:03 +08:00
|
|
|
void mg_mqtt_publish(struct mg_connection *nc, const char *topic,
|
|
|
|
uint16_t message_id, int flags, const void *data,
|
|
|
|
size_t len);
|
|
|
|
|
2016-07-26 22:53:33 +08:00
|
|
|
/* Subscribes to a bunch of topics. */
|
2015-09-08 19:49:03 +08:00
|
|
|
void mg_mqtt_subscribe(struct mg_connection *nc,
|
|
|
|
const struct mg_mqtt_topic_expression *topics,
|
|
|
|
size_t topics_len, uint16_t message_id);
|
|
|
|
|
2016-07-26 22:53:33 +08:00
|
|
|
/* Unsubscribes from a bunch of topics. */
|
2015-09-08 19:49:03 +08:00
|
|
|
void mg_mqtt_unsubscribe(struct mg_connection *nc, char **topics,
|
|
|
|
size_t topics_len, uint16_t message_id);
|
|
|
|
|
2016-07-26 22:53:33 +08:00
|
|
|
/* Sends a DISCONNECT command. */
|
2015-09-08 19:49:03 +08:00
|
|
|
void mg_mqtt_disconnect(struct mg_connection *nc);
|
|
|
|
|
2016-07-26 22:53:33 +08:00
|
|
|
/* Sends a CONNACK command with a given `return_code`. */
|
2015-12-22 15:30:04 +08:00
|
|
|
void mg_mqtt_connack(struct mg_connection *nc, uint8_t return_code);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2016-07-26 22:53:33 +08:00
|
|
|
/* Sends a PUBACK command with a given `message_id`. */
|
2015-12-22 15:30:04 +08:00
|
|
|
void mg_mqtt_puback(struct mg_connection *nc, uint16_t message_id);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2016-07-26 22:53:33 +08:00
|
|
|
/* Sends a PUBREC command with a given `message_id`. */
|
2015-12-22 15:30:04 +08:00
|
|
|
void mg_mqtt_pubrec(struct mg_connection *nc, uint16_t message_id);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2016-07-26 22:53:33 +08:00
|
|
|
/* Sends a PUBREL command with a given `message_id`. */
|
2015-12-22 15:30:04 +08:00
|
|
|
void mg_mqtt_pubrel(struct mg_connection *nc, uint16_t message_id);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2016-07-26 22:53:33 +08:00
|
|
|
/* Sends a PUBCOMP command with a given `message_id`. */
|
2015-12-22 15:30:04 +08:00
|
|
|
void mg_mqtt_pubcomp(struct mg_connection *nc, uint16_t message_id);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Sends a SUBACK command with a given `message_id`
|
2015-09-08 19:49:03 +08:00
|
|
|
* and a sequence of granted QoSs.
|
|
|
|
*/
|
2015-12-22 15:30:04 +08:00
|
|
|
void mg_mqtt_suback(struct mg_connection *nc, uint8_t *qoss, size_t qoss_len,
|
|
|
|
uint16_t message_id);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2016-07-26 22:53:33 +08:00
|
|
|
/* Sends a UNSUBACK command with a given `message_id`. */
|
2015-12-22 15:30:04 +08:00
|
|
|
void mg_mqtt_unsuback(struct mg_connection *nc, uint16_t message_id);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2016-07-26 22:53:33 +08:00
|
|
|
/* Sends a PINGREQ command. */
|
2015-12-22 15:30:04 +08:00
|
|
|
void mg_mqtt_ping(struct mg_connection *nc);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2016-07-26 22:53:33 +08:00
|
|
|
/* Sends a PINGRESP command. */
|
2015-12-22 15:30:04 +08:00
|
|
|
void mg_mqtt_pong(struct mg_connection *nc);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Extracts the next topic expression from a SUBSCRIBE command payload.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
2016-07-26 22:53:33 +08:00
|
|
|
* The topic expression name will point to a string in the payload buffer.
|
|
|
|
* Returns the pos of the next topic expression or -1 when the list
|
2015-09-08 19:49:03 +08:00
|
|
|
* of topics is exhausted.
|
|
|
|
*/
|
2015-12-22 15:30:04 +08:00
|
|
|
int mg_mqtt_next_subscribe_topic(struct mg_mqtt_message *msg,
|
|
|
|
struct mg_str *topic, uint8_t *qos, int pos);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
2016-03-15 00:40:48 +08:00
|
|
|
#endif /* CS_MONGOOSE_SRC_MQTT_H_ */
|
2016-09-27 12:59:51 +08:00
|
|
|
#ifdef MG_MODULE_LINES
|
|
|
|
#line 1 "mongoose/src/mqtt_server.h"
|
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014 Cesanta Software Limited
|
|
|
|
* All rights reserved
|
|
|
|
* This software is dual-licensed: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation. For the terms of this
|
|
|
|
* license, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* You are free to use this software under the terms of the GNU General
|
|
|
|
* Public License, but WITHOUT ANY WARRANTY; without even the implied
|
|
|
|
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
* See the GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* Alternatively, you can license this software under a commercial
|
|
|
|
* license, as set out in <https://www.cesanta.com/license>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2016-09-01 22:19:01 +08:00
|
|
|
* === MQTT Server API reference
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
|
|
|
|
2016-03-15 00:40:48 +08:00
|
|
|
#ifndef CS_MONGOOSE_SRC_MQTT_BROKER_H_
|
|
|
|
#define CS_MONGOOSE_SRC_MQTT_BROKER_H_
|
2015-09-08 19:49:03 +08:00
|
|
|
|
Change from using #ifdef to #if for features tests
"#if FOO" still works with simple -DFOO, but gives more flexibility.
Specifically, if user expressed no preference (FOO is not defined),
we can apply reasonable defaults (this is the legitimate use of ifdef).
In short, from now on, please use
#if MG_ENABLE_FOO
instead of
#ifdef MG_ENABLE_FOO
Since we are all used to #ifdef, this change also adds a precommit check
to police this. Specifically, in *.h and *.c files that are Copyright Cesanta,
"ifdef" and "if defined()" are not allowed to be used with macros that contain
ENABLE or DISABLE, unless the like also contains "ifdef-ok".
Hence, if you are sure you want to use ifdef, use this:
#ifdef MG_ENABLE_FOO /* ifdef-ok */
PUBLISHED_FROM=9be829448f53cff575d6cae8b9945fb12531c15a
2016-10-14 01:55:08 +08:00
|
|
|
#if MG_ENABLE_MQTT_BROKER
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2016-09-27 12:59:51 +08:00
|
|
|
/* Amalgamated: #include "mongoose/src/mqtt.h" */
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
2015-09-19 19:38:46 +08:00
|
|
|
#define MG_MQTT_MAX_SESSION_SUBSCRIPTIONS 512;
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
struct mg_mqtt_broker;
|
|
|
|
|
|
|
|
/* MQTT session (Broker side). */
|
|
|
|
struct mg_mqtt_session {
|
|
|
|
struct mg_mqtt_broker *brk; /* Broker */
|
|
|
|
struct mg_mqtt_session *next, *prev; /* mg_mqtt_broker::sessions linkage */
|
|
|
|
struct mg_connection *nc; /* Connection with the client */
|
|
|
|
size_t num_subscriptions; /* Size of `subscriptions` array */
|
|
|
|
struct mg_mqtt_topic_expression *subscriptions;
|
|
|
|
void *user_data; /* User data */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* MQTT broker. */
|
|
|
|
struct mg_mqtt_broker {
|
|
|
|
struct mg_mqtt_session *sessions; /* Session list */
|
|
|
|
void *user_data; /* User data */
|
|
|
|
};
|
|
|
|
|
2016-07-26 22:53:33 +08:00
|
|
|
/* Initialises a MQTT broker. */
|
2015-12-22 15:30:04 +08:00
|
|
|
void mg_mqtt_broker_init(struct mg_mqtt_broker *brk, void *user_data);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Processes a MQTT broker message.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
2016-07-26 22:53:33 +08:00
|
|
|
* The listening connection expects a pointer to an initialised
|
|
|
|
* `mg_mqtt_broker` structure in the `user_data` field.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
|
|
|
* Basic usage:
|
|
|
|
*
|
2016-03-19 17:48:50 +08:00
|
|
|
* ```c
|
2015-09-08 19:49:03 +08:00
|
|
|
* mg_mqtt_broker_init(&brk, NULL);
|
|
|
|
*
|
|
|
|
* if ((nc = mg_bind(&mgr, address, mg_mqtt_broker)) == NULL) {
|
|
|
|
* // fail;
|
|
|
|
* }
|
|
|
|
* nc->user_data = &brk;
|
2016-03-19 17:48:50 +08:00
|
|
|
* ```
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
|
|
|
* New incoming connections will receive a `mg_mqtt_session` structure
|
|
|
|
* in the connection `user_data`. The original `user_data` will be stored
|
|
|
|
* in the `user_data` field of the session structure. This allows the user
|
|
|
|
* handler to store user data before `mg_mqtt_broker` creates the session.
|
|
|
|
*
|
2015-09-19 19:38:46 +08:00
|
|
|
* Since only the MG_EV_ACCEPT message is processed by the listening socket,
|
2015-09-08 19:49:03 +08:00
|
|
|
* for most events the `user_data` will thus point to a `mg_mqtt_session`.
|
|
|
|
*/
|
2015-12-22 15:30:04 +08:00
|
|
|
void mg_mqtt_broker(struct mg_connection *brk, int ev, void *data);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Iterates over all MQTT session connections. Example:
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
2016-03-19 17:48:50 +08:00
|
|
|
* ```c
|
|
|
|
* struct mg_mqtt_session *s;
|
|
|
|
* for (s = mg_mqtt_next(brk, NULL); s != NULL; s = mg_mqtt_next(brk, s)) {
|
|
|
|
* // Do something
|
|
|
|
* }
|
|
|
|
* ```
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
2015-12-22 15:30:04 +08:00
|
|
|
struct mg_mqtt_session *mg_mqtt_next(struct mg_mqtt_broker *brk,
|
|
|
|
struct mg_mqtt_session *s);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
2015-09-19 19:38:46 +08:00
|
|
|
#endif /* MG_ENABLE_MQTT_BROKER */
|
2016-03-15 00:40:48 +08:00
|
|
|
#endif /* CS_MONGOOSE_SRC_MQTT_BROKER_H_ */
|
2016-09-27 12:59:51 +08:00
|
|
|
#ifdef MG_MODULE_LINES
|
|
|
|
#line 1 "mongoose/src/dns.h"
|
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014 Cesanta Software Limited
|
|
|
|
* All rights reserved
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2016-09-01 22:19:01 +08:00
|
|
|
* === DNS API reference
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
|
|
|
|
2016-03-15 00:40:48 +08:00
|
|
|
#ifndef CS_MONGOOSE_SRC_DNS_H_
|
|
|
|
#define CS_MONGOOSE_SRC_DNS_H_
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2016-09-27 12:59:51 +08:00
|
|
|
/* Amalgamated: #include "mongoose/src/net.h" */
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
2015-09-19 19:38:46 +08:00
|
|
|
#define MG_DNS_A_RECORD 0x01 /* Lookup IP address */
|
|
|
|
#define MG_DNS_CNAME_RECORD 0x05 /* Lookup CNAME */
|
2016-09-28 16:42:38 +08:00
|
|
|
#define MG_DNS_PTR_RECORD 0x0c /* Lookup PTR */
|
|
|
|
#define MG_DNS_TXT_RECORD 0x10 /* Lookup TXT */
|
2015-09-19 19:38:46 +08:00
|
|
|
#define MG_DNS_AAAA_RECORD 0x1c /* Lookup IPv6 address */
|
2016-09-28 16:42:38 +08:00
|
|
|
#define MG_DNS_SRV_RECORD 0x21 /* Lookup SRV */
|
2015-09-19 19:38:46 +08:00
|
|
|
#define MG_DNS_MX_RECORD 0x0f /* Lookup mail server for domain */
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2015-09-19 19:38:46 +08:00
|
|
|
#define MG_MAX_DNS_QUESTIONS 32
|
|
|
|
#define MG_MAX_DNS_ANSWERS 32
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2015-09-19 19:38:46 +08:00
|
|
|
#define MG_DNS_MESSAGE 100 /* High-level DNS message event */
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2015-10-21 21:15:16 +08:00
|
|
|
enum mg_dns_resource_record_kind {
|
2015-09-19 19:38:46 +08:00
|
|
|
MG_DNS_INVALID_RECORD = 0,
|
|
|
|
MG_DNS_QUESTION,
|
|
|
|
MG_DNS_ANSWER
|
2015-09-08 19:49:03 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/* DNS resource record. */
|
2015-10-21 21:15:16 +08:00
|
|
|
struct mg_dns_resource_record {
|
2015-09-08 19:49:03 +08:00
|
|
|
struct mg_str name; /* buffer with compressed name */
|
|
|
|
int rtype;
|
|
|
|
int rclass;
|
|
|
|
int ttl;
|
2015-10-21 21:15:16 +08:00
|
|
|
enum mg_dns_resource_record_kind kind;
|
2015-09-08 19:49:03 +08:00
|
|
|
struct mg_str rdata; /* protocol data (can be a compressed name) */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* DNS message (request and response). */
|
2015-10-21 21:15:16 +08:00
|
|
|
struct mg_dns_message {
|
2015-09-08 19:49:03 +08:00
|
|
|
struct mg_str pkt; /* packet body */
|
|
|
|
uint16_t flags;
|
|
|
|
uint16_t transaction_id;
|
|
|
|
int num_questions;
|
|
|
|
int num_answers;
|
2015-10-21 21:15:16 +08:00
|
|
|
struct mg_dns_resource_record questions[MG_MAX_DNS_QUESTIONS];
|
|
|
|
struct mg_dns_resource_record answers[MG_MAX_DNS_ANSWERS];
|
2015-09-08 19:49:03 +08:00
|
|
|
};
|
|
|
|
|
2015-10-21 21:15:16 +08:00
|
|
|
struct mg_dns_resource_record *mg_dns_next_record(
|
2015-12-22 15:30:04 +08:00
|
|
|
struct mg_dns_message *msg, int query, struct mg_dns_resource_record *prev);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Parses the record data from a DNS resource record.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
|
|
|
* - A: struct in_addr *ina
|
|
|
|
* - AAAA: struct in6_addr *ina
|
|
|
|
* - CNAME: char buffer
|
|
|
|
*
|
|
|
|
* Returns -1 on error.
|
|
|
|
*
|
|
|
|
* TODO(mkm): MX
|
|
|
|
*/
|
2015-12-22 15:30:04 +08:00
|
|
|
int mg_dns_parse_record_data(struct mg_dns_message *msg,
|
|
|
|
struct mg_dns_resource_record *rr, void *data,
|
|
|
|
size_t data_len);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Sends a DNS query to the remote end.
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
2015-12-22 15:30:04 +08:00
|
|
|
void mg_send_dns_query(struct mg_connection *nc, const char *name,
|
|
|
|
int query_type);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Inserts a DNS header to an IO buffer.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Returns the number of bytes inserted.
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
2015-12-22 15:30:04 +08:00
|
|
|
int mg_dns_insert_header(struct mbuf *io, size_t pos,
|
|
|
|
struct mg_dns_message *msg);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Appends already encoded questions from an existing message.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
|
|
|
* This is useful when generating a DNS reply message which includes
|
|
|
|
* all question records.
|
|
|
|
*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Returns the number of appended bytes.
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
2016-04-19 05:51:31 +08:00
|
|
|
int mg_dns_copy_questions(struct mbuf *io, struct mg_dns_message *msg);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Encodes and appends a DNS resource record to an IO buffer.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
|
|
|
* The record metadata is taken from the `rr` parameter, while the name and data
|
|
|
|
* are taken from the parameters, encoded in the appropriate format depending on
|
2016-07-26 22:53:33 +08:00
|
|
|
* record type and stored in the IO buffer. The encoded values might contain
|
2015-09-08 19:49:03 +08:00
|
|
|
* offsets within the IO buffer. It's thus important that the IO buffer doesn't
|
|
|
|
* get trimmed while a sequence of records are encoded while preparing a DNS
|
2016-09-28 16:42:38 +08:00
|
|
|
* reply.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
|
|
|
* This function doesn't update the `name` and `rdata` pointers in the `rr`
|
2016-09-28 16:42:38 +08:00
|
|
|
* struct because they might be invalidated as soon as the IO buffer grows
|
|
|
|
* again.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Returns the number of bytes appened or -1 in case of error.
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
2015-12-22 15:30:04 +08:00
|
|
|
int mg_dns_encode_record(struct mbuf *io, struct mg_dns_resource_record *rr,
|
|
|
|
const char *name, size_t nlen, const void *rdata,
|
|
|
|
size_t rlen);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2016-09-28 16:42:38 +08:00
|
|
|
/*
|
|
|
|
* Encodes a DNS name.
|
|
|
|
*/
|
|
|
|
int mg_dns_encode_name(struct mbuf *io, const char *name, size_t len);
|
|
|
|
|
2015-09-08 19:49:03 +08:00
|
|
|
/* Low-level: parses a DNS response. */
|
2015-12-22 15:30:04 +08:00
|
|
|
int mg_parse_dns(const char *buf, int len, struct mg_dns_message *msg);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Uncompresses a DNS compressed name.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
2016-07-26 22:53:33 +08:00
|
|
|
* The containing DNS message is required because of the compressed encoding
|
2015-09-08 19:49:03 +08:00
|
|
|
* and reference suffixes present elsewhere in the packet.
|
|
|
|
*
|
2016-07-26 22:53:33 +08:00
|
|
|
* If the name is less than `dst_len` characters long, the remainder
|
|
|
|
* of `dst` is terminated with `\0` characters. Otherwise, `dst` is not
|
|
|
|
* terminated.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
|
|
|
* If `dst_len` is 0 `dst` can be NULL.
|
2016-07-26 22:53:33 +08:00
|
|
|
* Returns the uncompressed name length.
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
2015-12-22 15:30:04 +08:00
|
|
|
size_t mg_dns_uncompress_name(struct mg_dns_message *msg, struct mg_str *name,
|
|
|
|
char *dst, int dst_len);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Attaches a built-in DNS event handler to the given listening connection.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
2016-07-26 22:53:33 +08:00
|
|
|
* The DNS event handler parses the incoming UDP packets, treating them as DNS
|
|
|
|
* requests. If an incoming packet gets successfully parsed by the DNS event
|
|
|
|
* handler, a user event handler will receive an `MG_DNS_REQUEST` event, with
|
2015-10-21 21:15:16 +08:00
|
|
|
* `ev_data` pointing to the parsed `struct mg_dns_message`.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
|
|
|
* See
|
2016-03-19 17:48:50 +08:00
|
|
|
* [captive_dns_server](https://github.com/cesanta/mongoose/tree/master/examples/captive_dns_server)
|
2015-09-08 19:49:03 +08:00
|
|
|
* example on how to handle DNS request and send DNS reply.
|
|
|
|
*/
|
2015-12-22 15:30:04 +08:00
|
|
|
void mg_set_protocol_dns(struct mg_connection *nc);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
2016-03-15 00:40:48 +08:00
|
|
|
#endif /* CS_MONGOOSE_SRC_DNS_H_ */
|
2016-09-27 12:59:51 +08:00
|
|
|
#ifdef MG_MODULE_LINES
|
|
|
|
#line 1 "mongoose/src/dns_server.h"
|
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014 Cesanta Software Limited
|
|
|
|
* All rights reserved
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2016-09-01 22:19:01 +08:00
|
|
|
* === DNS server API reference
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
2015-09-19 19:38:46 +08:00
|
|
|
* Disabled by default; enable with `-DMG_ENABLE_DNS_SERVER`.
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
|
|
|
|
2016-03-15 00:40:48 +08:00
|
|
|
#ifndef CS_MONGOOSE_SRC_DNS_SERVER_H_
|
|
|
|
#define CS_MONGOOSE_SRC_DNS_SERVER_H_
|
2015-09-08 19:49:03 +08:00
|
|
|
|
Change from using #ifdef to #if for features tests
"#if FOO" still works with simple -DFOO, but gives more flexibility.
Specifically, if user expressed no preference (FOO is not defined),
we can apply reasonable defaults (this is the legitimate use of ifdef).
In short, from now on, please use
#if MG_ENABLE_FOO
instead of
#ifdef MG_ENABLE_FOO
Since we are all used to #ifdef, this change also adds a precommit check
to police this. Specifically, in *.h and *.c files that are Copyright Cesanta,
"ifdef" and "if defined()" are not allowed to be used with macros that contain
ENABLE or DISABLE, unless the like also contains "ifdef-ok".
Hence, if you are sure you want to use ifdef, use this:
#ifdef MG_ENABLE_FOO /* ifdef-ok */
PUBLISHED_FROM=9be829448f53cff575d6cae8b9945fb12531c15a
2016-10-14 01:55:08 +08:00
|
|
|
#if MG_ENABLE_DNS_SERVER
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2016-09-27 12:59:51 +08:00
|
|
|
/* Amalgamated: #include "mongoose/src/dns.h" */
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
2015-09-19 19:38:46 +08:00
|
|
|
#define MG_DNS_SERVER_DEFAULT_TTL 3600
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2015-10-21 21:15:16 +08:00
|
|
|
struct mg_dns_reply {
|
|
|
|
struct mg_dns_message *msg;
|
2015-09-08 19:49:03 +08:00
|
|
|
struct mbuf *io;
|
|
|
|
size_t start;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Creates a DNS reply.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
|
|
|
* The reply will be based on an existing query message `msg`.
|
|
|
|
* The query body will be appended to the output buffer.
|
2016-07-26 22:53:33 +08:00
|
|
|
* "reply + recursion allowed" will be added to the message flags and the
|
2015-09-08 19:49:03 +08:00
|
|
|
* message's num_answers will be set to 0.
|
|
|
|
*
|
2015-10-21 21:15:16 +08:00
|
|
|
* Answer records can be appended with `mg_dns_send_reply` or by lower
|
2015-09-08 19:49:03 +08:00
|
|
|
* level function defined in the DNS API.
|
|
|
|
*
|
2016-07-26 22:53:33 +08:00
|
|
|
* In order to send a reply use `mg_dns_send_reply`.
|
|
|
|
* It's possible to use a connection's send buffer as reply buffer,
|
2015-09-08 19:49:03 +08:00
|
|
|
* and it will work for both UDP and TCP connections.
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
*
|
2016-03-19 17:48:50 +08:00
|
|
|
* ```c
|
2015-10-21 21:15:16 +08:00
|
|
|
* reply = mg_dns_create_reply(&nc->send_mbuf, msg);
|
2015-09-08 19:49:03 +08:00
|
|
|
* for (i = 0; i < msg->num_questions; i++) {
|
|
|
|
* rr = &msg->questions[i];
|
2015-09-19 19:38:46 +08:00
|
|
|
* if (rr->rtype == MG_DNS_A_RECORD) {
|
2015-10-21 21:15:16 +08:00
|
|
|
* mg_dns_reply_record(&reply, rr, 3600, &dummy_ip_addr, 4);
|
2015-09-08 19:49:03 +08:00
|
|
|
* }
|
|
|
|
* }
|
2015-10-21 21:15:16 +08:00
|
|
|
* mg_dns_send_reply(nc, &reply);
|
2016-03-19 17:48:50 +08:00
|
|
|
* ```
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
2015-12-22 15:30:04 +08:00
|
|
|
struct mg_dns_reply mg_dns_create_reply(struct mbuf *io,
|
|
|
|
struct mg_dns_message *msg);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Appends a DNS reply record to the IO buffer and to the DNS message.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
2016-07-26 22:53:33 +08:00
|
|
|
* The message's num_answers field will be incremented. It's the caller's duty
|
|
|
|
* to ensure num_answers is properly initialised.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
|
|
|
* Returns -1 on error.
|
|
|
|
*/
|
2015-12-22 15:30:04 +08:00
|
|
|
int mg_dns_reply_record(struct mg_dns_reply *reply,
|
|
|
|
struct mg_dns_resource_record *question,
|
|
|
|
const char *name, int rtype, int ttl, const void *rdata,
|
|
|
|
size_t rdata_len);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Sends a DNS reply through a connection.
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
|
|
|
* The DNS data is stored in an IO buffer pointed by reply structure in `r`.
|
|
|
|
* This function mutates the content of that buffer in order to ensure that
|
2016-07-26 22:53:33 +08:00
|
|
|
* the DNS header reflects the size and flags of the message, that might have
|
|
|
|
* been updated either with `mg_dns_reply_record` or by direct manipulation of
|
2015-09-08 19:49:03 +08:00
|
|
|
* `r->message`.
|
|
|
|
*
|
|
|
|
* Once sent, the IO buffer will be trimmed unless the reply IO buffer
|
|
|
|
* is the connection's send buffer and the connection is not in UDP mode.
|
|
|
|
*/
|
2015-12-22 15:30:04 +08:00
|
|
|
void mg_dns_send_reply(struct mg_connection *nc, struct mg_dns_reply *r);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
2015-09-19 19:38:46 +08:00
|
|
|
#endif /* MG_ENABLE_DNS_SERVER */
|
2016-03-15 00:40:48 +08:00
|
|
|
#endif /* CS_MONGOOSE_SRC_DNS_SERVER_H_ */
|
2016-09-27 12:59:51 +08:00
|
|
|
#ifdef MG_MODULE_LINES
|
|
|
|
#line 1 "mongoose/src/resolv.h"
|
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014 Cesanta Software Limited
|
|
|
|
* All rights reserved
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2016-09-01 22:19:01 +08:00
|
|
|
* === API reference
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
|
|
|
|
2016-03-15 00:40:48 +08:00
|
|
|
#ifndef CS_MONGOOSE_SRC_RESOLV_H_
|
|
|
|
#define CS_MONGOOSE_SRC_RESOLV_H_
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2016-09-27 12:59:51 +08:00
|
|
|
/* Amalgamated: #include "mongoose/src/dns.h" */
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
2015-12-08 20:25:44 +08:00
|
|
|
enum mg_resolve_err {
|
|
|
|
MG_RESOLVE_OK = 0,
|
|
|
|
MG_RESOLVE_NO_ANSWERS = 1,
|
|
|
|
MG_RESOLVE_EXCEEDED_RETRY_COUNT = 2,
|
|
|
|
MG_RESOLVE_TIMEOUT = 3
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef void (*mg_resolve_callback_t)(struct mg_dns_message *dns_message,
|
|
|
|
void *user_data, enum mg_resolve_err);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
/* Options for `mg_resolve_async_opt`. */
|
|
|
|
struct mg_resolve_async_opts {
|
|
|
|
const char *nameserver_url;
|
|
|
|
int max_retries; /* defaults to 2 if zero */
|
|
|
|
int timeout; /* in seconds; defaults to 5 if zero */
|
|
|
|
int accept_literal; /* pseudo-resolve literal ipv4 and ipv6 addrs */
|
|
|
|
int only_literal; /* only resolves literal addrs; sync cb invocation */
|
2015-12-08 20:25:44 +08:00
|
|
|
struct mg_connection **dns_conn; /* return DNS connection */
|
2015-09-08 19:49:03 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/* See `mg_resolve_async_opt()` */
|
2015-12-22 15:30:04 +08:00
|
|
|
int mg_resolve_async(struct mg_mgr *mgr, const char *name, int query,
|
|
|
|
mg_resolve_callback_t cb, void *data);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Resolved a DNS name asynchronously.
|
|
|
|
*
|
|
|
|
* Upon successful resolution, the user callback will be invoked
|
|
|
|
* with the full DNS response message and a pointer to the user's
|
|
|
|
* context `data`.
|
|
|
|
*
|
|
|
|
* In case of timeout while performing the resolution the callback
|
|
|
|
* will receive a NULL `msg`.
|
|
|
|
*
|
|
|
|
* The DNS answers can be extracted with `mg_next_record` and
|
2015-10-21 21:15:16 +08:00
|
|
|
* `mg_dns_parse_record_data`:
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
|
|
|
* [source,c]
|
|
|
|
* ----
|
|
|
|
* struct in_addr ina;
|
2015-10-21 21:15:16 +08:00
|
|
|
* struct mg_dns_resource_record *rr = mg_next_record(msg, MG_DNS_A_RECORD,
|
2015-09-08 19:49:03 +08:00
|
|
|
* NULL);
|
2015-10-21 21:15:16 +08:00
|
|
|
* mg_dns_parse_record_data(msg, rr, &ina, sizeof(ina));
|
2015-09-08 19:49:03 +08:00
|
|
|
* ----
|
|
|
|
*/
|
2015-12-22 15:30:04 +08:00
|
|
|
int mg_resolve_async_opt(struct mg_mgr *mgr, const char *name, int query,
|
|
|
|
mg_resolve_callback_t cb, void *data,
|
2015-09-08 19:49:03 +08:00
|
|
|
struct mg_resolve_async_opts opts);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Resolve a name from `/etc/hosts`.
|
|
|
|
*
|
|
|
|
* Returns 0 on success, -1 on failure.
|
|
|
|
*/
|
|
|
|
int mg_resolve_from_hosts_file(const char *host, union socket_address *usa);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
2016-03-15 00:40:48 +08:00
|
|
|
#endif /* CS_MONGOOSE_SRC_RESOLV_H_ */
|
2016-09-27 12:59:51 +08:00
|
|
|
#ifdef MG_MODULE_LINES
|
|
|
|
#line 1 "mongoose/src/coap.h"
|
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2015 Cesanta Software Limited
|
|
|
|
* All rights reserved
|
|
|
|
* This software is dual-licensed: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation. For the terms of this
|
|
|
|
* license, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* You are free to use this software under the terms of the GNU General
|
|
|
|
* Public License, but WITHOUT ANY WARRANTY; without even the implied
|
|
|
|
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
* See the GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* Alternatively, you can license this software under a commercial
|
|
|
|
* license, as set out in <https://www.cesanta.com/license>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2016-09-01 22:19:01 +08:00
|
|
|
* === CoAP API reference
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
|
|
|
* CoAP message format:
|
|
|
|
*
|
2016-03-19 17:48:50 +08:00
|
|
|
* ```
|
|
|
|
* +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
|
|
|
|
* |Ver| T | TKL | Code | Message ID | Token (if any, TKL bytes) ...
|
|
|
|
* +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
|
|
|
|
* | Options (if any) ... |1 1 1 1 1 1 1 1| Payload (if any) ...
|
|
|
|
* +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
|
|
|
|
* ```
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
|
|
|
|
2016-03-15 00:40:48 +08:00
|
|
|
#ifndef CS_MONGOOSE_SRC_COAP_H_
|
|
|
|
#define CS_MONGOOSE_SRC_COAP_H_
|
2015-09-08 19:49:03 +08:00
|
|
|
|
Change from using #ifdef to #if for features tests
"#if FOO" still works with simple -DFOO, but gives more flexibility.
Specifically, if user expressed no preference (FOO is not defined),
we can apply reasonable defaults (this is the legitimate use of ifdef).
In short, from now on, please use
#if MG_ENABLE_FOO
instead of
#ifdef MG_ENABLE_FOO
Since we are all used to #ifdef, this change also adds a precommit check
to police this. Specifically, in *.h and *.c files that are Copyright Cesanta,
"ifdef" and "if defined()" are not allowed to be used with macros that contain
ENABLE or DISABLE, unless the like also contains "ifdef-ok".
Hence, if you are sure you want to use ifdef, use this:
#ifdef MG_ENABLE_FOO /* ifdef-ok */
PUBLISHED_FROM=9be829448f53cff575d6cae8b9945fb12531c15a
2016-10-14 01:55:08 +08:00
|
|
|
#if MG_ENABLE_COAP
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2015-09-19 19:38:46 +08:00
|
|
|
#define MG_COAP_MSG_TYPE_FIELD 0x2
|
|
|
|
#define MG_COAP_CODE_CLASS_FIELD 0x4
|
|
|
|
#define MG_COAP_CODE_DETAIL_FIELD 0x8
|
|
|
|
#define MG_COAP_MSG_ID_FIELD 0x10
|
|
|
|
#define MG_COAP_TOKEN_FIELD 0x20
|
|
|
|
#define MG_COAP_OPTIOMG_FIELD 0x40
|
|
|
|
#define MG_COAP_PAYLOAD_FIELD 0x80
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2015-09-19 19:38:46 +08:00
|
|
|
#define MG_COAP_ERROR 0x10000
|
|
|
|
#define MG_COAP_FORMAT_ERROR (MG_COAP_ERROR | 0x20000)
|
|
|
|
#define MG_COAP_IGNORE (MG_COAP_ERROR | 0x40000)
|
|
|
|
#define MG_COAP_NOT_ENOUGH_DATA (MG_COAP_ERROR | 0x80000)
|
|
|
|
#define MG_COAP_NETWORK_ERROR (MG_COAP_ERROR | 0x100000)
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2015-09-19 19:38:46 +08:00
|
|
|
#define MG_COAP_MSG_CON 0
|
|
|
|
#define MG_COAP_MSG_NOC 1
|
|
|
|
#define MG_COAP_MSG_ACK 2
|
|
|
|
#define MG_COAP_MSG_RST 3
|
|
|
|
#define MG_COAP_MSG_MAX 3
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2015-09-19 19:38:46 +08:00
|
|
|
#define MG_COAP_CODECLASS_REQUEST 0
|
|
|
|
#define MG_COAP_CODECLASS_RESP_OK 2
|
|
|
|
#define MG_COAP_CODECLASS_CLIENT_ERR 4
|
|
|
|
#define MG_COAP_CODECLASS_SRV_ERR 5
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2015-09-19 19:38:46 +08:00
|
|
|
#define MG_COAP_EVENT_BASE 300
|
|
|
|
#define MG_EV_COAP_CON (MG_COAP_EVENT_BASE + MG_COAP_MSG_CON)
|
|
|
|
#define MG_EV_COAP_NOC (MG_COAP_EVENT_BASE + MG_COAP_MSG_NOC)
|
|
|
|
#define MG_EV_COAP_ACK (MG_COAP_EVENT_BASE + MG_COAP_MSG_ACK)
|
|
|
|
#define MG_EV_COAP_RST (MG_COAP_EVENT_BASE + MG_COAP_MSG_RST)
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* CoAP options.
|
|
|
|
* Use mg_coap_add_option and mg_coap_free_options
|
|
|
|
* for creation and destruction.
|
|
|
|
*/
|
|
|
|
struct mg_coap_option {
|
|
|
|
struct mg_coap_option *next;
|
|
|
|
uint32_t number;
|
|
|
|
struct mg_str value;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* CoAP message. See RFC 7252 for details. */
|
|
|
|
struct mg_coap_message {
|
|
|
|
uint32_t flags;
|
|
|
|
uint8_t msg_type;
|
|
|
|
uint8_t code_class;
|
|
|
|
uint8_t code_detail;
|
|
|
|
uint16_t msg_id;
|
|
|
|
struct mg_str token;
|
|
|
|
struct mg_coap_option *options;
|
|
|
|
struct mg_str payload;
|
|
|
|
struct mg_coap_option *optiomg_tail;
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
2016-07-26 22:53:33 +08:00
|
|
|
/* Sets CoAP protocol handler - triggers CoAP specific events. */
|
2015-09-08 19:49:03 +08:00
|
|
|
int mg_set_protocol_coap(struct mg_connection *nc);
|
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Adds a new option to mg_coap_message structure.
|
2015-09-08 19:49:03 +08:00
|
|
|
* Returns pointer to the newly created option.
|
|
|
|
*/
|
|
|
|
struct mg_coap_option *mg_coap_add_option(struct mg_coap_message *cm,
|
|
|
|
uint32_t number, char *value,
|
|
|
|
size_t len);
|
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Frees the memory allocated for options.
|
|
|
|
* If the cm paramater doesn't contain any option it does nothing.
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
|
|
|
void mg_coap_free_options(struct mg_coap_message *cm);
|
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Composes a CoAP message from `mg_coap_message`
|
|
|
|
* and sends it into `nc` connection.
|
|
|
|
* Returns 0 on success. On error, it is a bitmask:
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
2016-03-19 17:48:50 +08:00
|
|
|
* - `#define MG_COAP_ERROR 0x10000`
|
|
|
|
* - `#define MG_COAP_FORMAT_ERROR (MG_COAP_ERROR | 0x20000)`
|
|
|
|
* - `#define MG_COAP_IGNORE (MG_COAP_ERROR | 0x40000)`
|
|
|
|
* - `#define MG_COAP_NOT_ENOUGH_DATA (MG_COAP_ERROR | 0x80000)`
|
|
|
|
* - `#define MG_COAP_NETWORK_ERROR (MG_COAP_ERROR | 0x100000)`
|
2015-09-08 19:49:03 +08:00
|
|
|
*/
|
|
|
|
uint32_t mg_coap_send_message(struct mg_connection *nc,
|
|
|
|
struct mg_coap_message *cm);
|
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Composes CoAP acknowledgement from `mg_coap_message`
|
|
|
|
* and sends it into `nc` connection.
|
2015-09-08 19:49:03 +08:00
|
|
|
* Return value: see `mg_coap_send_message()`
|
|
|
|
*/
|
|
|
|
uint32_t mg_coap_send_ack(struct mg_connection *nc, uint16_t msg_id);
|
|
|
|
|
|
|
|
/*
|
2016-07-26 22:53:33 +08:00
|
|
|
* Parses CoAP message and fills mg_coap_message and returns cm->flags.
|
2015-09-08 19:49:03 +08:00
|
|
|
* This is a helper function.
|
|
|
|
*
|
2016-07-26 22:53:33 +08:00
|
|
|
* NOTE: usually CoAP works over UDP, so lack of data means format error.
|
|
|
|
* But, in theory, it is possible to use CoAP over TCP (according to RFC)
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
2016-07-26 22:53:33 +08:00
|
|
|
* The caller has to check results and treat COAP_NOT_ENOUGH_DATA according to
|
2015-09-08 19:49:03 +08:00
|
|
|
* underlying protocol:
|
|
|
|
*
|
|
|
|
* - in case of UDP COAP_NOT_ENOUGH_DATA means COAP_FORMAT_ERROR,
|
2015-09-09 04:23:36 +08:00
|
|
|
* - in case of TCP client can try to receive more data
|
2015-09-08 19:49:03 +08:00
|
|
|
*
|
|
|
|
* Return value: see `mg_coap_send_message()`
|
|
|
|
*/
|
|
|
|
uint32_t mg_coap_parse(struct mbuf *io, struct mg_coap_message *cm);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Composes CoAP message from mg_coap_message structure.
|
|
|
|
* This is a helper function.
|
|
|
|
* Return value: see `mg_coap_send_message()`
|
|
|
|
*/
|
|
|
|
uint32_t mg_coap_compose(struct mg_coap_message *cm, struct mbuf *io);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
2015-09-19 19:38:46 +08:00
|
|
|
#endif /* MG_ENABLE_COAP */
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2016-03-15 00:40:48 +08:00
|
|
|
#endif /* CS_MONGOOSE_SRC_COAP_H_ */
|