2020-12-05 19:26:32 +08:00
|
|
|
// Copyright (c) 2004-2013 Sergey Lyubka
|
|
|
|
// Copyright (c) 2013-2020 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>.
|
|
|
|
|
|
|
|
#pragma once
|
2021-01-27 00:30:44 +08:00
|
|
|
#define MG_VERSION "7.2"
|
2020-12-05 19:26:32 +08:00
|
|
|
|
|
|
|
|
|
|
|
#define MG_ARCH_CUSTOM 0
|
|
|
|
#define MG_ARCH_UNIX 1
|
|
|
|
#define MG_ARCH_WIN32 2
|
|
|
|
#define MG_ARCH_ESP32 3
|
|
|
|
#define MG_ARCH_ESP8266 4
|
|
|
|
#define MG_ARCH_CC3100 5
|
|
|
|
#define MG_ARCH_CC3200 6
|
|
|
|
#define MG_ARCH_CC3220 7
|
|
|
|
#define MG_ARCH_MSP432 8
|
|
|
|
#define MG_ARCH_TM4C129 9
|
|
|
|
#define MG_ARCH_MBED 10
|
|
|
|
#define MG_ARCH_WINCE 11
|
|
|
|
#define MG_ARCH_NXP_LPC 12
|
|
|
|
#define MG_ARCH_NXP_KINETIS 13
|
|
|
|
#define MG_ARCH_NRF51 14
|
|
|
|
#define MG_ARCH_NRF52 15
|
|
|
|
#define MG_ARCH_PIC32 16
|
|
|
|
#define MG_ARCH_RS14100 17
|
|
|
|
#define MG_ARCH_STM32 18
|
|
|
|
#define MG_ARCH_FREERTOS 19
|
|
|
|
|
|
|
|
#if !defined(MG_ARCH)
|
2016-04-09 00:15:50 +08:00
|
|
|
#if defined(TARGET_IS_MSP432P4XX) || defined(__MSP432P401R__)
|
2020-12-05 19:26:32 +08:00
|
|
|
#define MG_ARCH MG_ARCH_MSP432
|
2017-08-27 01:02:08 +08:00
|
|
|
#elif defined(cc3200) || defined(TARGET_IS_CC3200)
|
2020-12-05 19:26:32 +08:00
|
|
|
#define MG_ARCH MG_ARCH_CC3200
|
2017-08-27 01:02:08 +08:00
|
|
|
#elif defined(cc3220) || defined(TARGET_IS_CC3220)
|
2020-12-05 19:26:32 +08:00
|
|
|
#define MG_ARCH MG_ARCH_CC3220
|
2016-03-30 00:27:55 +08:00
|
|
|
#elif defined(__unix__) || defined(__APPLE__)
|
2020-12-05 19:26:32 +08:00
|
|
|
#define MG_ARCH MG_ARCH_UNIX
|
2016-10-14 21:31:02 +08:00
|
|
|
#elif defined(WINCE)
|
2020-12-05 19:26:32 +08:00
|
|
|
#define MG_ARCH MG_ARCH_WINCE
|
2016-03-30 00:27:55 +08:00
|
|
|
#elif defined(_WIN32)
|
2020-12-05 19:26:32 +08:00
|
|
|
#define MG_ARCH MG_ARCH_WIN32
|
2016-10-11 18:09:32 +08:00
|
|
|
#elif defined(__MBED__)
|
2020-12-05 19:26:32 +08:00
|
|
|
#define MG_ARCH MG_ARCH_MBED
|
2016-10-29 01:54:56 +08:00
|
|
|
#elif defined(__USE_LPCOPEN)
|
2020-12-05 19:26:32 +08:00
|
|
|
#define MG_ARCH MG_ARCH_NXP_LPC
|
2016-10-18 20:30:58 +08:00
|
|
|
#elif defined(FRDM_K64F) || defined(FREEDOM)
|
2020-12-05 19:26:32 +08:00
|
|
|
#define MG_ARCH MG_ARCH_NXP_KINETIS
|
2016-10-26 19:38:15 +08:00
|
|
|
#elif defined(PIC32)
|
2020-12-05 19:26:32 +08:00
|
|
|
#define MG_ARCH MG_ARCH_PIC32
|
|
|
|
#elif defined(ICACHE_FLASH) || defined(ICACHE_RAM_ATTR)
|
|
|
|
#define MG_ARCH MG_ARCH_ESP8266
|
2020-12-27 09:29:42 +08:00
|
|
|
#elif defined(ESP_PLATFORM)
|
|
|
|
#define MG_ARCH MG_ARCH_ESP32
|
2016-11-03 02:44:37 +08:00
|
|
|
#elif defined(TARGET_IS_TM4C129_RA0) || defined(TARGET_IS_TM4C129_RA1) || \
|
|
|
|
defined(TARGET_IS_TM4C129_RA2)
|
2020-12-05 19:26:32 +08:00
|
|
|
#define MG_ARCH MG_ARCH_TM4C129
|
2019-04-25 02:34:25 +08:00
|
|
|
#elif defined(RS14100)
|
2020-12-05 19:26:32 +08:00
|
|
|
#define MG_ARCH MG_ARCH_RS14100
|
2017-01-09 00:05:06 +08:00
|
|
|
#elif defined(STM32)
|
2020-12-05 19:26:32 +08:00
|
|
|
#define MG_ARCH MG_ARCH_STM32
|
2016-03-30 00:27:55 +08:00
|
|
|
#endif
|
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#if !defined(MG_ARCH)
|
|
|
|
#error "MG_ARCH is not specified and we couldn't guess it."
|
2016-10-17 17:03:59 +08:00
|
|
|
#endif
|
2020-12-05 19:26:32 +08:00
|
|
|
#endif // !defined(MG_ARCH)
|
2016-10-17 17:03:59 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#define WIN32_LEAN_AND_MEAN
|
2016-09-15 20:08:36 +08:00
|
|
|
#define _CRT_SECURE_NO_WARNINGS
|
2020-12-05 19:26:32 +08:00
|
|
|
#define _WINSOCK_DEPRECATED_NO_WARNINGS
|
2016-03-30 00:27:55 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
// Standard C headers
|
2016-03-30 00:27:55 +08:00
|
|
|
#include <ctype.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <stdarg.h>
|
2020-12-05 19:26:32 +08:00
|
|
|
#include <stddef.h>
|
2016-03-30 00:27:55 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#if MG_ARCH == MG_ARCH_CUSTOM
|
|
|
|
#include <mongoose_custom.h>
|
2017-10-17 03:00:16 +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
|
|
|
|
|
|
|
|
2016-10-18 03:08:11 +08:00
|
|
|
|
2016-10-14 18:15:11 +08:00
|
|
|
|
2016-10-18 02:13:21 +08:00
|
|
|
|
2016-11-14 05:20:15 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#if !defined(PRINTF_LIKE)
|
|
|
|
#if defined(__GNUC__) || defined(__clang__) || defined(__TI_COMPILER_VERSION__)
|
|
|
|
#define PRINTF_LIKE(f, a) __attribute__((format(printf, f, a)))
|
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
|
|
|
#else
|
2020-12-05 19:26:32 +08:00
|
|
|
#define PRINTF_LIKE(f, a)
|
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
|
|
|
|
#endif
|
|
|
|
|
2016-10-14 18:15:11 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#if MG_ARCH == MG_ARCH_ESP32
|
2016-10-14 04:48:45 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#include <dirent.h>
|
|
|
|
#include <netdb.h>
|
2021-02-03 10:13:05 +08:00
|
|
|
#include <sys/stat.h>
|
2020-12-05 19:26:32 +08:00
|
|
|
#define MG_DIRSEP '/'
|
2021-01-27 01:43:31 +08:00
|
|
|
#define MG_INT64_FMT "%lld"
|
2021-02-03 10:13:05 +08:00
|
|
|
#ifndef MG_PATH_MAX
|
|
|
|
#define MG_PATH_MAX 128
|
|
|
|
#endif
|
2016-10-26 22:41:54 +08:00
|
|
|
|
2016-11-24 17:46:40 +08:00
|
|
|
#endif
|
|
|
|
|
2016-11-29 19:17:57 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#if MG_ARCH == MG_ARCH_ESP8266
|
|
|
|
|
|
|
|
#include <dirent.h>
|
2020-12-27 09:29:42 +08:00
|
|
|
#include <esp_system.h>
|
|
|
|
#include <netdb.h>
|
2020-12-05 19:26:32 +08:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#define MG_DIRSEP '/'
|
2021-01-27 01:43:31 +08:00
|
|
|
#define MG_INT64_FMT "%lld"
|
2017-03-15 08:37:45 +08:00
|
|
|
|
2016-11-09 06:29:07 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#if MG_ARCH == MG_ARCH_FREERTOS
|
|
|
|
#include <FreeRTOS.h>
|
2016-11-09 06:29:07 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#include <task.h>
|
2016-11-09 06:29:07 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#include <FreeRTOS_IP.h>
|
|
|
|
#include <FreeRTOS_Sockets.h>
|
|
|
|
#include <stdbool.h>
|
2016-11-09 06:29:07 +08:00
|
|
|
|
2021-01-27 01:43:31 +08:00
|
|
|
#define MG_INT64_FMT "%lld"
|
2020-12-05 19:26:32 +08:00
|
|
|
#define MG_DIRSEP '/'
|
|
|
|
#define IPPROTO_TCP FREERTOS_IPPROTO_TCP
|
|
|
|
#define IPPROTO_UDP FREERTOS_IPPROTO_UDP
|
|
|
|
#define AF_INET FREERTOS_AF_INET
|
|
|
|
#define SOCK_STREAM FREERTOS_SOCK_STREAM
|
|
|
|
#define SOCK_DGRAM FREERTOS_SOCK_DGRAM
|
|
|
|
#define SO_BROADCAST 0
|
|
|
|
#define SO_ERROR 0
|
|
|
|
#define SOL_SOCKET 0
|
|
|
|
#define SO_REUSEADDR 0
|
|
|
|
#define sockaddr_in freertos_sockaddr
|
|
|
|
struct sockaddr {
|
|
|
|
uint8_t sa_len, sa_family;
|
|
|
|
};
|
|
|
|
#define accept(a, b, c) FreeRTOS_accept((a), (b), (c))
|
|
|
|
#define connect(a, b, c) FreeRTOS_connect((a), (b), (c))
|
|
|
|
#define bind(a, b, c) FreeRTOS_bind((a), (b), (c))
|
|
|
|
#define listen(a, b) FreeRTOS_listen((a), (b))
|
|
|
|
#define socket(a, b, c) FreeRTOS_socket((a), (b), (c))
|
|
|
|
#define send(a, b, c, d) FreeRTOS_send((a), (b), (c), (d))
|
|
|
|
#define recv(a, b, c, d) FreeRTOS_recv((a), (b), (c), (d))
|
|
|
|
#define setsockopt(a, b, c, d, e) FreeRTOS_setsockopt((a), (b), (c), (d), (e))
|
|
|
|
#define sendto(a, b, c, d, e, f) FreeRTOS_sendto((a), (b), (c), (d), (e), (f))
|
|
|
|
#define recvfrom(a, b, c, d, e, f) \
|
|
|
|
FreeRTOS_recvfrom((a), (b), (c), (d), (e), (f))
|
|
|
|
#define closesocket(x) FreeRTOS_closesocket(x)
|
|
|
|
#define gethostbyname(x) FreeRTOS_gethostbyname(x)
|
|
|
|
|
|
|
|
#include <ff_stdio.h>
|
|
|
|
|
|
|
|
#undef FILE
|
|
|
|
#define FILE FF_FILE
|
|
|
|
//#define SEEK_SET FF_SEEK_SET
|
|
|
|
//#define SEEK_END FF_SEEK_END
|
|
|
|
#define stat(a, b) ff_stat((a), (b))
|
|
|
|
#define fopen(a, b) ff_fopen((a), (b))
|
|
|
|
#define fclose(a) ff_fclose(a)
|
|
|
|
#define fread(a, b, c, d) ff_fread((a), (b), (c), (d))
|
|
|
|
#define fwrite(a, b, c, d) ff_fwrite((a), (b), (c), (d))
|
|
|
|
#define vfprintf ff_vfprintf
|
|
|
|
#define fprintf ff_fprintf
|
|
|
|
#define remove(a) ff_remove(a)
|
|
|
|
#define rename(a, b) ff_rename((a), (b), 1)
|
|
|
|
|
|
|
|
static inline int ff_vfprintf(FF_FILE *fp, const char *fmt, va_list ap) {
|
|
|
|
char *buf = NULL;
|
|
|
|
int n = mg_vasprintf(&buf, 0, fmt, ap);
|
|
|
|
if (buf != NULL) ff_fwrite(buf, 1, n, fp), free(buf);
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#if MG_ARCH == MG_ARCH_UNIX
|
|
|
|
|
|
|
|
#define _DARWIN_UNLIMITED_SELECT 1
|
2016-11-09 06:29:07 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <dirent.h>
|
2021-01-27 01:43:31 +08:00
|
|
|
#include <inttypes.h>
|
2020-12-05 19:26:32 +08:00
|
|
|
#include <netdb.h>
|
|
|
|
#include <netinet/tcp.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <sys/select.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#define MG_DIRSEP '/'
|
|
|
|
#define MG_ENABLE_POSIX 1
|
2021-01-27 01:43:31 +08:00
|
|
|
#define MG_INT64_FMT "%" PRId64
|
2016-11-09 06:29:07 +08:00
|
|
|
|
2016-11-12 04:34:00 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#if MG_ARCH == MG_ARCH_WIN32
|
2016-11-12 04:34:00 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#if defined(_MSC_VER) && _MSC_VER < 1700
|
|
|
|
#define __func__ ""
|
|
|
|
typedef __int64 int64_t;
|
|
|
|
typedef unsigned __int64 uint64_t;
|
|
|
|
typedef unsigned char uint8_t;
|
2021-01-25 18:08:15 +08:00
|
|
|
typedef char int8_t;
|
2020-12-05 19:26:32 +08:00
|
|
|
typedef unsigned short uint16_t;
|
2021-01-25 18:08:15 +08:00
|
|
|
typedef short int16_t;
|
2020-12-05 19:26:32 +08:00
|
|
|
typedef unsigned int uint32_t;
|
2021-01-25 18:08:15 +08:00
|
|
|
typedef int int32_t;
|
2021-01-26 20:16:58 +08:00
|
|
|
typedef enum { false = 0, true = 1 } bool;
|
2020-12-05 19:26:32 +08:00
|
|
|
#else
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
2020-12-22 17:44:59 +08:00
|
|
|
#include <ws2tcpip.h>
|
2020-12-05 19:26:32 +08:00
|
|
|
#endif
|
2016-11-12 04:34:00 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#include <winsock2.h>
|
2020-12-24 05:05:46 +08:00
|
|
|
|
2020-12-24 05:20:48 +08:00
|
|
|
// Protect from calls like std::snprintf in app code
|
2020-12-24 05:05:46 +08:00
|
|
|
// See https://github.com/cesanta/mongoose/issues/1047
|
|
|
|
#ifndef __cplusplus
|
2020-12-05 19:26:32 +08:00
|
|
|
#define snprintf _snprintf
|
|
|
|
#define vsnprintf _vsnprintf
|
|
|
|
#define strdup(x) _strdup(x)
|
2020-12-24 05:05:46 +08:00
|
|
|
#endif
|
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
typedef int socklen_t;
|
|
|
|
#define MG_DIRSEP '\\'
|
2020-12-24 15:26:50 +08:00
|
|
|
#ifndef PATH_MAX
|
|
|
|
#define PATH_MAX MAX_PATH
|
|
|
|
#endif
|
2020-12-05 19:26:32 +08:00
|
|
|
#ifndef EINPROGRESS
|
|
|
|
#define EINPROGRESS WSAEINPROGRESS
|
2016-09-27 12:59:51 +08:00
|
|
|
#endif
|
2020-12-05 19:26:32 +08:00
|
|
|
#ifndef EWOULDBLOCK
|
|
|
|
#define EWOULDBLOCK WSAEWOULDBLOCK
|
2015-12-06 00:46:53 +08:00
|
|
|
#endif
|
2021-02-11 23:03:22 +08:00
|
|
|
#define realpath(a, b) _fullpath((b), (a), MG_PATH_MAX)
|
2020-12-05 19:26:32 +08:00
|
|
|
#ifndef va_copy
|
|
|
|
#ifdef __va_copy
|
|
|
|
#define va_copy __va_copy
|
2015-09-08 19:49:03 +08:00
|
|
|
#else
|
2020-12-05 19:26:32 +08:00
|
|
|
#define va_copy(x, y) (x) = (y)
|
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
#endif
|
2020-12-05 19:26:32 +08:00
|
|
|
#ifndef S_ISDIR
|
|
|
|
#define S_ISDIR(x) (((x) &_S_IFMT) == _S_IFDIR)
|
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2021-01-27 01:43:31 +08:00
|
|
|
#define MG_INT64_FMT "%I64d"
|
|
|
|
|
2015-09-08 19:49:03 +08:00
|
|
|
#endif
|
|
|
|
|
2016-03-19 17:48:50 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#ifndef MG_ENABLE_LWIP
|
|
|
|
#define MG_ENABLE_LWIP 0
|
2016-10-14 18:15:11 +08:00
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#if MG_ENABLE_LWIP
|
|
|
|
#define MG_ENABLE_SOCKET 0
|
2021-01-20 19:10:02 +08:00
|
|
|
#elif !defined(MG_ENABLE_SOCKET)
|
2020-12-05 19:26:32 +08:00
|
|
|
#define MG_ENABLE_SOCKET 1
|
2020-01-31 07:47:48 +08:00
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#ifndef MG_ENABLE_MBEDTLS
|
|
|
|
#define MG_ENABLE_MBEDTLS 0
|
2015-10-24 07:05:05 +08:00
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#ifndef MG_ENABLE_OPENSSL
|
|
|
|
#define MG_ENABLE_OPENSSL 0
|
2016-02-24 21:14:07 +08:00
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#ifndef MG_ENABLE_FS
|
|
|
|
#define MG_ENABLE_FS 1
|
2016-02-24 21:14:07 +08:00
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2021-01-03 01:57:51 +08:00
|
|
|
#ifndef MG_ENABLE_SSI
|
|
|
|
#define MG_ENABLE_SSI 0
|
|
|
|
#endif
|
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#ifndef MG_ENABLE_IPV6
|
|
|
|
#define MG_ENABLE_IPV6 0
|
2016-06-09 19:00:14 +08:00
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#ifndef MG_ENABLE_LOG
|
|
|
|
#define MG_ENABLE_LOG 1
|
2015-09-24 01:33:25 +08:00
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#ifndef MG_ENABLE_MGOS
|
|
|
|
#define MG_ENABLE_MGOS 0
|
2015-10-24 07:05:05 +08:00
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#ifndef MG_ENABLE_MD5
|
|
|
|
#define MG_ENABLE_MD5 0
|
2016-09-27 12:59:51 +08:00
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#ifndef MG_ENABLE_DIRECTORY_LISTING
|
|
|
|
#define MG_ENABLE_DIRECTORY_LISTING 0
|
2015-09-08 19:49:03 +08:00
|
|
|
#endif
|
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#ifndef MG_ENABLE_SOCKETPAIR
|
|
|
|
#define MG_ENABLE_SOCKETPAIR 0
|
2015-11-27 18:32:36 +08:00
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
// Granularity of the send/recv IO buffer growth
|
|
|
|
#ifndef MG_IO_SIZE
|
|
|
|
#define MG_IO_SIZE 512
|
2016-10-14 18:15:11 +08:00
|
|
|
#endif
|
2016-09-30 19:16:08 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
// Maximum size of the recv IO buffer
|
|
|
|
#ifndef MG_MAX_RECV_BUF_SIZE
|
|
|
|
#define MG_MAX_RECV_BUF_SIZE (3 * 1024 * 1024)
|
2016-09-27 12:59:51 +08:00
|
|
|
#endif
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2015-09-19 19:38:46 +08:00
|
|
|
#ifndef MG_MAX_HTTP_HEADERS
|
2020-12-05 19:26:32 +08:00
|
|
|
#define MG_MAX_HTTP_HEADERS 40
|
2015-09-08 19:49:03 +08:00
|
|
|
#endif
|
|
|
|
|
2021-02-03 10:13:05 +08:00
|
|
|
#ifndef MG_PATH_MAX
|
|
|
|
#define MG_PATH_MAX PATH_MAX
|
|
|
|
#endif
|
|
|
|
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#include <ctype.h>
|
|
|
|
#include <string.h>
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
struct mg_str {
|
|
|
|
const char *ptr;
|
|
|
|
size_t len;
|
2015-09-08 19:49:03 +08:00
|
|
|
};
|
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#define MG_NULL_STR \
|
|
|
|
{ NULL, 0 }
|
2020-05-25 00:32:33 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
struct mg_str mg_str(const char *s);
|
2020-12-07 11:47:37 +08:00
|
|
|
struct mg_str mg_str_n(const char *s, size_t n);
|
2020-12-05 19:26:32 +08:00
|
|
|
int mg_lower(const char *s);
|
|
|
|
int mg_ncasecmp(const char *s1, const char *s2, size_t len);
|
|
|
|
int mg_casecmp(const char *s1, const char *s2);
|
|
|
|
int mg_vcmp(const struct mg_str *s1, const char *s2);
|
|
|
|
int mg_vcasecmp(const struct mg_str *str1, const char *str2);
|
|
|
|
int mg_strcmp(const struct mg_str str1, const struct mg_str str2);
|
|
|
|
struct mg_str mg_strstrip(struct mg_str s);
|
|
|
|
struct mg_str mg_strdup(const struct mg_str s);
|
|
|
|
const char *mg_strstr(const struct mg_str haystack, const struct mg_str needle);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2016-02-26 08:12:32 +08:00
|
|
|
|
2016-10-05 07:38:27 +08:00
|
|
|
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
|
|
|
|
#if MG_ENABLE_MGOS
|
|
|
|
#include <common/cs_dbg.h>
|
|
|
|
#else
|
|
|
|
#if MG_ENABLE_LOG
|
|
|
|
#define LOG(level, args) \
|
|
|
|
do { \
|
|
|
|
if (mg_log_prefix((level), __FILE__, __LINE__, __func__)) mg_log args; \
|
|
|
|
} while (0)
|
|
|
|
enum { LL_NONE, LL_ERROR, LL_INFO, LL_DEBUG, LL_VERBOSE_DEBUG };
|
|
|
|
bool mg_log_prefix(int ll, const char *file, int line, const char *fname);
|
|
|
|
void mg_log(const char *fmt, ...) PRINTF_LIKE(1, 2);
|
|
|
|
void mg_log_set(const char *spec);
|
|
|
|
void mg_log_set_callback(void (*fn)(const void *, int, void *), void *param);
|
|
|
|
#else
|
|
|
|
#define LOG(level, args)
|
|
|
|
#endif
|
2016-02-26 08:12:32 +08:00
|
|
|
#endif
|
|
|
|
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
struct mg_timer {
|
|
|
|
int period_ms; // Timer period in milliseconds
|
|
|
|
int flags; // Possible flags values below
|
|
|
|
#define MG_TIMER_REPEAT 1 // Call function periodically, otherwise run once
|
|
|
|
#define MG_TIMER_RUN_NOW 2 // Call immediately when timer is set
|
|
|
|
void (*fn)(void *); // Function to call
|
|
|
|
void *arg; // Function agrument
|
|
|
|
unsigned long expire; // Expiration timestamp in milliseconds
|
|
|
|
struct mg_timer *next; // Linkage in g_timers list
|
|
|
|
};
|
2016-10-15 00:58:14 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
extern struct mg_timer *g_timers; // Global list of timers
|
2016-10-15 00:58:14 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
void mg_timer_init(struct mg_timer *, int ms, int, void (*fn)(void *), void *);
|
|
|
|
void mg_timer_free(struct mg_timer *);
|
|
|
|
void mg_timer_poll(unsigned long uptime_ms);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
|
2015-10-20 17:31:23 +08:00
|
|
|
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
char *mg_file_read(const char *path);
|
2021-02-08 06:43:49 +08:00
|
|
|
int64_t mg_file_size(const char *path);
|
2021-01-27 00:30:44 +08:00
|
|
|
bool mg_file_write(const char *path, const void *buf, size_t len);
|
|
|
|
bool mg_file_printf(const char *path, const char *fmt, ...);
|
2020-12-05 19:26:32 +08:00
|
|
|
void mg_random(void *buf, size_t len);
|
|
|
|
bool mg_globmatch(const char *pattern, int plen, const char *s, int n);
|
|
|
|
bool mg_next_comma_entry(struct mg_str *s, struct mg_str *k, struct mg_str *v);
|
|
|
|
uint16_t mg_ntohs(uint16_t net);
|
|
|
|
uint32_t mg_ntohl(uint32_t net);
|
2021-03-08 23:41:16 +08:00
|
|
|
uint32_t mg_crc32(uint32_t crc, const char *buf, size_t len);
|
2020-12-22 17:44:59 +08:00
|
|
|
char *mg_hexdump(const void *buf, size_t len);
|
2020-12-05 19:26:32 +08:00
|
|
|
char *mg_hex(const void *buf, int len, char *dst);
|
|
|
|
void mg_unhex(const char *buf, int len, unsigned char *to);
|
|
|
|
unsigned long mg_unhexn(const char *s, int len);
|
|
|
|
int mg_asprintf(char **buf, size_t size, const char *fmt, ...);
|
|
|
|
int mg_vasprintf(char **buf, size_t size, const char *fmt, va_list ap);
|
2020-12-23 19:58:08 +08:00
|
|
|
int64_t mg_to64(struct mg_str str);
|
2020-12-05 19:26:32 +08:00
|
|
|
double mg_time(void);
|
|
|
|
unsigned long mg_millis(void);
|
|
|
|
void mg_usleep(unsigned long usecs);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2021-01-27 01:43:31 +08:00
|
|
|
#if MG_ENABLE_FS
|
|
|
|
#ifdef _WIN32
|
|
|
|
typedef struct _stati64 mg_stat_t;
|
|
|
|
#else
|
|
|
|
typedef struct stat mg_stat_t;
|
|
|
|
#endif
|
2021-02-08 06:43:49 +08:00
|
|
|
int mg_stat(const char *path, mg_stat_t *);
|
|
|
|
FILE *mg_fopen(const char *fp, const char *mode);
|
2021-01-27 01:43:31 +08:00
|
|
|
#endif
|
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#define mg_htons(x) mg_ntohs(x)
|
|
|
|
#define mg_htonl(x) mg_ntohl(x)
|
2015-11-18 15:39:51 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#define MG_SWAP16(x) ((((x) >> 8) & 255) | ((x & 255) << 8))
|
|
|
|
#define MG_SWAP32(x) \
|
|
|
|
(((x) >> 24) | (((x) &0xff0000) >> 8) | (((x) &0xff00) << 8) | ((x) << 24))
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#if !defined(WEAK)
|
|
|
|
#if (defined(__GNUC__) || defined(__clang__) || \
|
|
|
|
defined(__TI_COMPILER_VERSION__)) && \
|
2021-03-04 22:25:50 +08:00
|
|
|
!defined(_WIN32) && !defined(__CYGWIN__)
|
2020-12-05 19:26:32 +08:00
|
|
|
#define WEAK __attribute__((weak))
|
|
|
|
#else
|
|
|
|
#define WEAK
|
|
|
|
#endif
|
|
|
|
#endif
|
2017-04-11 18:32:19 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
// Expands to a string representation of its argument: e.g.
|
|
|
|
// MG_STRINGIFY_LITERAL(5) expands to "5"
|
|
|
|
#if !defined(_MSC_VER) || _MSC_VER >= 1900
|
|
|
|
#define MG_STRINGIFY_LITERAL(...) #__VA_ARGS__
|
|
|
|
#else
|
|
|
|
#define MG_STRINGIFY_LITERAL(x) #x
|
2016-10-27 20:01:47 +08:00
|
|
|
#endif
|
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#define LIST_ADD_HEAD(type_, head_, elem_) \
|
|
|
|
do { \
|
|
|
|
(elem_)->next = (*head_); \
|
|
|
|
*(head_) = (elem_); \
|
|
|
|
} while (0)
|
2016-10-15 00:58:14 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#define LIST_ADD_TAIL(type_, head_, elem_) \
|
|
|
|
do { \
|
|
|
|
type_ **h = head_; \
|
|
|
|
while (*h != NULL) h = &(*h)->next; \
|
|
|
|
*h = (elem_); \
|
|
|
|
} while (0)
|
2016-10-15 00:58:14 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#define LIST_DELETE(type_, head_, elem_) \
|
|
|
|
do { \
|
|
|
|
type_ **h = head_; \
|
|
|
|
while (*h != (elem_)) h = &(*h)->next; \
|
|
|
|
*h = (elem_)->next; \
|
|
|
|
} while (0)
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
// Expands to a string representation of its argument, which can be a macro:
|
|
|
|
// #define FOO 123
|
|
|
|
// MG_STRINGIFY_MACRO(FOO) // Expands to 123
|
|
|
|
#define MG_STRINGIFY_MACRO(x) MG_STRINGIFY_LITERAL(x)
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
|
2016-10-28 01:43:56 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
unsigned short mg_url_port(const char *url);
|
|
|
|
int mg_url_is_ssl(const char *url);
|
|
|
|
struct mg_str mg_url_host(const char *url);
|
|
|
|
struct mg_str mg_url_user(const char *url);
|
|
|
|
struct mg_str mg_url_pass(const char *url);
|
|
|
|
const char *mg_url_uri(const char *url);
|
2016-10-28 01:43:56 +08:00
|
|
|
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#include <stddef.h>
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
struct mg_iobuf {
|
|
|
|
unsigned char *buf;
|
|
|
|
size_t size, len;
|
2015-09-08 19:49:03 +08:00
|
|
|
};
|
|
|
|
|
2021-01-29 20:32:34 +08:00
|
|
|
int mg_iobuf_init(struct mg_iobuf *, size_t);
|
|
|
|
int mg_iobuf_resize(struct mg_iobuf *, size_t);
|
2020-12-05 19:26:32 +08:00
|
|
|
void mg_iobuf_free(struct mg_iobuf *);
|
|
|
|
size_t mg_iobuf_append(struct mg_iobuf *, const void *, size_t, size_t);
|
|
|
|
size_t mg_iobuf_delete(struct mg_iobuf *, size_t);
|
2016-11-09 17:52:59 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
int mg_base64_update(unsigned char p, char *to, int len);
|
|
|
|
int mg_base64_final(char *to, int len);
|
|
|
|
int mg_base64_encode(const unsigned char *p, int n, char *to);
|
|
|
|
int mg_base64_decode(const char *src, int n, char *dst);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
typedef struct {
|
|
|
|
uint32_t buf[4];
|
|
|
|
uint32_t bits[2];
|
|
|
|
unsigned char in[64];
|
|
|
|
} mg_md5_ctx;
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
void mg_md5_init(mg_md5_ctx *c);
|
|
|
|
void mg_md5_update(mg_md5_ctx *c, const unsigned char *data, size_t len);
|
|
|
|
void mg_md5_final(mg_md5_ctx *c, unsigned char[16]);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
typedef struct {
|
|
|
|
uint32_t state[5];
|
|
|
|
uint32_t count[2];
|
|
|
|
unsigned char buffer[64];
|
|
|
|
} mg_sha1_ctx;
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
void mg_sha1_init(mg_sha1_ctx *);
|
|
|
|
void mg_sha1_update(mg_sha1_ctx *, const unsigned char *data, size_t len);
|
|
|
|
void mg_sha1_final(unsigned char digest[20], mg_sha1_ctx *);
|
|
|
|
void mg_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
|
|
|
|
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
struct mg_connection;
|
|
|
|
typedef void (*mg_event_handler_t)(struct mg_connection *, int ev,
|
|
|
|
void *ev_data, void *fn_data);
|
|
|
|
void mg_call(struct mg_connection *c, int ev, void *ev_data);
|
|
|
|
void mg_error(struct mg_connection *c, const char *fmt, ...);
|
|
|
|
|
|
|
|
enum {
|
2021-03-08 23:41:16 +08:00
|
|
|
MG_EV_ERROR, // Error char *error_message
|
|
|
|
MG_EV_POLL, // mg_mgr_poll iteration unsigned long *millis
|
|
|
|
MG_EV_RESOLVE, // Host name is resolved NULL
|
|
|
|
MG_EV_CONNECT, // Connection established NULL
|
|
|
|
MG_EV_ACCEPT, // Connection accepted NULL
|
|
|
|
MG_EV_READ, // Data received from socket struct mg_str *
|
|
|
|
MG_EV_WRITE, // Data written to socket int *num_bytes_written
|
|
|
|
MG_EV_CLOSE, // Connection closed NULL
|
|
|
|
MG_EV_HTTP_MSG, // HTTP request/response struct mg_http_message *
|
|
|
|
MG_EV_HTTP_CHUNK, // HTTP chunk (partial msg) struct mg_http_message *
|
|
|
|
MG_EV_WS_OPEN, // Websocket handshake done struct mg_http_message *
|
|
|
|
MG_EV_WS_MSG, // Websocket msg, text or bin struct mg_ws_message *
|
|
|
|
MG_EV_WS_CTL, // Websocket control msg struct mg_ws_message *
|
|
|
|
MG_EV_MQTT_CMD, // MQTT low-level command struct mg_mqtt_message *
|
|
|
|
MG_EV_MQTT_MSG, // MQTT PUBLISH received struct mg_mqtt_message *
|
|
|
|
MG_EV_MQTT_OPEN, // MQTT CONNACK received int *connack_status_code
|
|
|
|
MG_EV_SNTP_TIME, // SNTP time received struct timeval *
|
|
|
|
MG_EV_USER, // Starting ID for user events
|
2015-09-08 19:49:03 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-12-23 18:15:09 +08:00
|
|
|
|
2020-12-22 17:44:59 +08:00
|
|
|
struct mg_dns {
|
|
|
|
const char *url; // DNS server URL
|
|
|
|
struct mg_connection *c; // DNS server connection
|
2015-09-08 19:49:03 +08:00
|
|
|
};
|
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
struct mg_addr {
|
2020-12-21 00:55:33 +08:00
|
|
|
uint16_t port; // TCP or UDP port in network byte order
|
|
|
|
uint32_t ip; // IP address in network byte order
|
|
|
|
uint8_t ip6[16]; // IPv6 address
|
|
|
|
bool is_ip6; // True when address is IPv6 address
|
2020-12-05 19:26:32 +08:00
|
|
|
};
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2020-12-22 17:44:59 +08:00
|
|
|
struct mg_mgr {
|
|
|
|
struct mg_connection *conns; // List of active connections
|
|
|
|
struct mg_dns dns4; // DNS for IPv4
|
|
|
|
struct mg_dns dns6; // DNS for IPv6
|
|
|
|
int dnstimeout; // DNS resolve timeout in milliseconds
|
|
|
|
unsigned long nextid; // Next connection ID
|
2021-03-01 00:40:27 +08:00
|
|
|
void *userdata; // Arbitrary user data pointer
|
2020-12-22 17:44:59 +08:00
|
|
|
#if MG_ARCH == MG_ARCH_FREERTOS
|
|
|
|
SocketSet_t ss; // NOTE(lsm): referenced from socket struct
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
struct mg_connection {
|
|
|
|
struct mg_connection *next; // Linkage in struct mg_mgr :: connections
|
|
|
|
struct mg_mgr *mgr; // Our container
|
|
|
|
struct mg_addr peer; // Remote peer address
|
|
|
|
void *fd; // Connected socket, or LWIP data
|
2020-12-21 20:26:44 +08:00
|
|
|
unsigned long id; // Auto-incrementing unique connection ID
|
2020-12-05 19:26:32 +08:00
|
|
|
struct mg_iobuf recv; // Incoming data
|
|
|
|
struct mg_iobuf send; // Outgoing data
|
|
|
|
mg_event_handler_t fn; // User-specified event handler function
|
|
|
|
void *fn_data; // User-speficied function parameter
|
|
|
|
mg_event_handler_t pfn; // Protocol-specific handler function
|
|
|
|
void *pfn_data; // Protocol-specific function parameter
|
2021-02-10 19:09:13 +08:00
|
|
|
char label[50]; // Arbitrary label
|
2020-12-05 19:26:32 +08:00
|
|
|
void *tls; // TLS specific data
|
|
|
|
unsigned is_listening : 1; // Listening connection
|
|
|
|
unsigned is_client : 1; // Outbound (client) connection
|
|
|
|
unsigned is_accepted : 1; // Accepted (server) connection
|
|
|
|
unsigned is_resolving : 1; // Non-blocking DNS resolv is in progress
|
|
|
|
unsigned is_connecting : 1; // Non-blocking connect is in progress
|
|
|
|
unsigned is_tls : 1; // TLS-enabled connection
|
|
|
|
unsigned is_tls_hs : 1; // TLS handshake is in progress
|
|
|
|
unsigned is_udp : 1; // UDP connection
|
|
|
|
unsigned is_websocket : 1; // WebSocket connection
|
|
|
|
unsigned is_hexdumping : 1; // Hexdump in/out traffic
|
2020-12-07 05:12:05 +08:00
|
|
|
unsigned is_draining : 1; // Send remaining data, then close and free
|
|
|
|
unsigned is_closing : 1; // Close and free the connection immediately
|
2020-12-05 19:26:32 +08:00
|
|
|
unsigned is_readable : 1; // Connection is ready to read
|
|
|
|
unsigned is_writable : 1; // Connection is ready to write
|
|
|
|
};
|
|
|
|
|
|
|
|
void mg_mgr_poll(struct mg_mgr *, int ms);
|
|
|
|
void mg_mgr_init(struct mg_mgr *);
|
|
|
|
void mg_mgr_free(struct mg_mgr *);
|
|
|
|
|
|
|
|
struct mg_connection *mg_listen(struct mg_mgr *, const char *url,
|
|
|
|
mg_event_handler_t fn, void *fn_data);
|
|
|
|
struct mg_connection *mg_connect(struct mg_mgr *, const char *url,
|
|
|
|
mg_event_handler_t fn, void *fn_data);
|
|
|
|
int mg_send(struct mg_connection *, const void *, size_t);
|
|
|
|
int mg_printf(struct mg_connection *, const char *fmt, ...);
|
|
|
|
int mg_vprintf(struct mg_connection *, const char *fmt, va_list ap);
|
|
|
|
char *mg_straddr(struct mg_connection *, char *, size_t);
|
|
|
|
bool mg_socketpair(int *s1, int *s2);
|
2020-12-21 00:55:33 +08:00
|
|
|
bool mg_aton(struct mg_str str, struct mg_addr *addr);
|
|
|
|
char *mg_ntoa(const struct mg_addr *addr, char *buf, size_t len);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-12-08 20:25:44 +08:00
|
|
|
|
2015-09-08 19:49:03 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
struct mg_http_header {
|
|
|
|
struct mg_str name;
|
2015-09-08 19:49:03 +08:00
|
|
|
struct mg_str value;
|
|
|
|
};
|
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
struct mg_http_message {
|
|
|
|
// GET /foo/bar/baz?aa=b&cc=ddd HTTP/1.1
|
|
|
|
// method |-| |----uri---| |--query--| |proto-|
|
|
|
|
|
2020-12-25 23:04:43 +08:00
|
|
|
struct mg_str method, uri, query, proto; // Request/response line
|
2020-12-05 19:26:32 +08:00
|
|
|
struct mg_http_header headers[MG_MAX_HTTP_HEADERS]; // Headers
|
2020-12-25 23:04:43 +08:00
|
|
|
struct mg_str body; // Body
|
2021-02-09 21:27:17 +08:00
|
|
|
struct mg_str head; // Request + headers
|
2021-03-07 19:56:20 +08:00
|
|
|
struct mg_str chunk; // Chunk for chunked encoding, or partial body
|
2021-02-09 21:27:17 +08:00
|
|
|
struct mg_str message; // Request + headers + body
|
2020-12-05 19:26:32 +08:00
|
|
|
};
|
|
|
|
|
2021-01-02 20:30:09 +08:00
|
|
|
// Parameter for mg_http_serve_dir()
|
|
|
|
struct mg_http_serve_opts {
|
2021-01-03 01:57:51 +08:00
|
|
|
const char *root_dir; // Web root directory, must be non-NULL
|
|
|
|
const char *ssi_pattern; // SSI filename pattern, e.g. #.shtml
|
2021-01-02 20:30:09 +08:00
|
|
|
};
|
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
int mg_http_parse(const char *s, size_t len, struct mg_http_message *);
|
|
|
|
int mg_http_get_request_len(const unsigned char *buf, size_t buf_len);
|
|
|
|
void mg_http_printf_chunk(struct mg_connection *cnn, const char *fmt, ...);
|
|
|
|
void mg_http_write_chunk(struct mg_connection *c, const char *buf, size_t len);
|
2021-03-08 23:41:16 +08:00
|
|
|
void mg_http_delete_chunk(struct mg_connection *c, struct mg_http_message *hm);
|
2020-12-05 19:26:32 +08:00
|
|
|
struct mg_connection *mg_http_listen(struct mg_mgr *, const char *url,
|
|
|
|
mg_event_handler_t fn, void *fn_data);
|
|
|
|
struct mg_connection *mg_http_connect(struct mg_mgr *, const char *url,
|
|
|
|
mg_event_handler_t fn, void *fn_data);
|
|
|
|
void mg_http_serve_dir(struct mg_connection *, struct mg_http_message *hm,
|
2021-01-03 01:57:51 +08:00
|
|
|
struct mg_http_serve_opts *);
|
2020-12-05 19:26:32 +08:00
|
|
|
void mg_http_serve_file(struct mg_connection *, struct mg_http_message *,
|
2021-01-07 20:48:20 +08:00
|
|
|
const char *, const char *mime, const char *headers);
|
2020-12-18 06:45:22 +08:00
|
|
|
void mg_http_reply(struct mg_connection *, int status_code, const char *headers,
|
|
|
|
const char *body_fmt, ...);
|
2020-12-05 19:26:32 +08:00
|
|
|
struct mg_str *mg_http_get_header(struct mg_http_message *, const char *name);
|
|
|
|
void mg_http_event_handler(struct mg_connection *c, int ev);
|
|
|
|
int mg_http_get_var(const struct mg_str *, const char *name, char *, int);
|
|
|
|
int mg_url_decode(const char *s, size_t n, char *to, size_t to_len, int form);
|
2021-02-15 22:42:55 +08:00
|
|
|
int mg_url_encode(const char *s, size_t n, char *buf, size_t len);
|
2020-12-05 19:26:32 +08:00
|
|
|
void mg_http_creds(struct mg_http_message *, char *user, int, char *pass, int);
|
|
|
|
bool mg_http_match_uri(const struct mg_http_message *, const char *glob);
|
|
|
|
int mg_http_upload(struct mg_connection *, struct mg_http_message *hm,
|
|
|
|
const char *dir);
|
|
|
|
void mg_http_bauth(struct mg_connection *, const char *user, const char *pass);
|
|
|
|
|
|
|
|
|
2021-01-03 01:57:51 +08:00
|
|
|
void mg_http_serve_ssi(struct mg_connection *c, const char *root,
|
|
|
|
const char *fullpath);
|
|
|
|
|
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
|
|
|
|
struct mg_tls_opts {
|
2021-01-30 21:03:11 +08:00
|
|
|
const char *ca; // CA certificate file. For both listeners and clients
|
|
|
|
const char *cert; // Certificate
|
|
|
|
const char *certkey; // Certificate key
|
|
|
|
const char *ciphers; // Cipher list
|
|
|
|
struct mg_str srvname; // If not empty, enables server name verification
|
2020-12-05 19:26:32 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
int mg_tls_init(struct mg_connection *, struct mg_tls_opts *);
|
|
|
|
int mg_tls_free(struct mg_connection *);
|
|
|
|
int mg_tls_send(struct mg_connection *, const void *buf, size_t len, int *fail);
|
|
|
|
int mg_tls_recv(struct mg_connection *, void *buf, size_t len, int *fail);
|
|
|
|
int mg_tls_handshake(struct mg_connection *);
|
2015-09-08 19:49:03 +08:00
|
|
|
|
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#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-08 19:49:03 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
#define WEBSOCKET_FLAGS_MASK_FIN 128
|
|
|
|
#define WEBSOCKET_FLAGS_MASK_OP 15
|
2016-11-24 17:46:40 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
struct mg_ws_message {
|
|
|
|
struct mg_str data;
|
|
|
|
uint8_t flags; // Websocket message flags
|
|
|
|
};
|
2016-11-24 17:46:40 +08:00
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
struct mg_connection *mg_ws_connect(struct mg_mgr *, const char *url,
|
|
|
|
mg_event_handler_t fn, void *fn_data,
|
|
|
|
const char *fmt, ...);
|
2021-01-17 06:48:43 +08:00
|
|
|
void mg_ws_upgrade(struct mg_connection *, struct mg_http_message *,
|
|
|
|
const char *fmt, ...);
|
2020-12-05 19:26:32 +08:00
|
|
|
size_t mg_ws_send(struct mg_connection *, const char *buf, size_t len, int op);
|
2016-11-24 17:46:40 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
struct mg_connection *mg_sntp_connect(struct mg_mgr *mgr, const char *url,
|
|
|
|
mg_event_handler_t fn, void *fn_data);
|
|
|
|
void mg_sntp_send(struct mg_connection *c, unsigned long utc);
|
|
|
|
int mg_sntp_parse(const unsigned char *buf, size_t len, struct timeval *tv);
|
2016-11-24 17:46:40 +08:00
|
|
|
|
2017-10-17 03:00:16 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
2017-10-19 15:38:33 +08:00
|
|
|
|
2020-12-16 04:29:47 +08:00
|
|
|
#define MQTT_CMD_CONNECT 1
|
|
|
|
#define MQTT_CMD_CONNACK 2
|
|
|
|
#define MQTT_CMD_PUBLISH 3
|
|
|
|
#define MQTT_CMD_PUBACK 4
|
|
|
|
#define MQTT_CMD_PUBREC 5
|
|
|
|
#define MQTT_CMD_PUBREL 6
|
|
|
|
#define MQTT_CMD_PUBCOMP 7
|
|
|
|
#define MQTT_CMD_SUBSCRIBE 8
|
|
|
|
#define MQTT_CMD_SUBACK 9
|
|
|
|
#define MQTT_CMD_UNSUBSCRIBE 10
|
|
|
|
#define MQTT_CMD_UNSUBACK 11
|
|
|
|
#define MQTT_CMD_PINGREQ 12
|
|
|
|
#define MQTT_CMD_PINGRESP 13
|
|
|
|
#define MQTT_CMD_DISCONNECT 14
|
|
|
|
|
|
|
|
#define MQTT_QOS(qos) ((qos) << 1)
|
|
|
|
#define MQTT_GET_QOS(flags) (((flags) &0x6) >> 1)
|
|
|
|
#define MQTT_SET_QOS(flags, qos) (flags) = ((flags) & ~0x6) | ((qos) << 1)
|
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
struct mg_mqtt_opts {
|
|
|
|
struct mg_str client_id;
|
|
|
|
struct mg_str will_topic;
|
|
|
|
struct mg_str will_message;
|
|
|
|
uint8_t qos; // Quality of service
|
|
|
|
bool will_retain; // Retain last will
|
|
|
|
bool clean; // Use clean session, 0 or 1
|
|
|
|
uint16_t keepalive; // Keep-alive timer in seconds
|
2017-10-17 03:00:16 +08:00
|
|
|
};
|
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
struct mg_mqtt_message {
|
2020-12-16 04:29:47 +08:00
|
|
|
struct mg_str topic; // Parsed topic
|
|
|
|
struct mg_str data; // Parsed message
|
|
|
|
struct mg_str dgram; // Whole MQTT datagram, including headers
|
|
|
|
uint16_t id; // Set for PUBACK, PUBREC, PUBREL, PUBCOMP, SUBACK, PUBLISH
|
|
|
|
uint8_t cmd; // MQTT command, one of MQTT_CMD_*
|
|
|
|
uint8_t qos; // Quality of service
|
|
|
|
uint8_t ack; // Connack return code. 0 - success
|
2017-10-17 03:00:16 +08:00
|
|
|
};
|
|
|
|
|
2020-12-05 19:26:32 +08:00
|
|
|
struct mg_connection *mg_mqtt_connect(struct mg_mgr *, const char *url,
|
|
|
|
struct mg_mqtt_opts *opts,
|
|
|
|
mg_event_handler_t fn, void *fn_data);
|
2020-12-16 04:29:47 +08:00
|
|
|
struct mg_connection *mg_mqtt_listen(struct mg_mgr *mgr, const char *url,
|
|
|
|
mg_event_handler_t fn, void *fn_data);
|
2020-12-05 19:26:32 +08:00
|
|
|
void mg_mqtt_pub(struct mg_connection *, struct mg_str *topic,
|
|
|
|
struct mg_str *data);
|
|
|
|
void mg_mqtt_sub(struct mg_connection *, struct mg_str *topic);
|
2020-12-16 18:14:00 +08:00
|
|
|
int mg_mqtt_parse(const uint8_t *buf, size_t len, struct mg_mqtt_message *m);
|
2020-12-16 04:29:47 +08:00
|
|
|
void mg_mqtt_send_header(struct mg_connection *, uint8_t cmd, uint8_t flags,
|
|
|
|
uint32_t len);
|
|
|
|
int mg_mqtt_next_sub(struct mg_mqtt_message *msg, struct mg_str *topic,
|
|
|
|
uint8_t *qos, int pos);
|
2021-03-07 20:21:59 +08:00
|
|
|
void mg_mqtt_ping(struct mg_connection *);
|
|
|
|
void mg_mqtt_pong(struct mg_connection *);
|
|
|
|
void mg_mqtt_disconnect(struct mg_connection *);
|
2017-10-17 03:00:16 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-12-22 17:44:59 +08:00
|
|
|
// Mongoose sends DNS queries that contain only one question:
|
|
|
|
// either A (IPv4) or AAAA (IPv6) address lookup.
|
|
|
|
// Therefore, we expect zero or one answer.
|
|
|
|
// If `resolved` is true, then `addr` contains resolved IPv4 or IPV6 address.
|
2020-12-05 19:26:32 +08:00
|
|
|
struct mg_dns_message {
|
2020-12-22 17:44:59 +08:00
|
|
|
uint16_t txnid; // Transaction ID
|
|
|
|
bool resolved; // Resolve successful, addr is set
|
|
|
|
struct mg_addr addr; // Resolved address
|
|
|
|
char name[256]; // Host name
|
2020-12-05 19:26:32 +08:00
|
|
|
};
|
2017-10-17 03:00:16 +08:00
|
|
|
|
2020-12-28 13:25:29 +08:00
|
|
|
struct mg_dns_header {
|
|
|
|
uint16_t txnid; // Transaction ID
|
|
|
|
uint16_t flags;
|
|
|
|
uint16_t num_questions;
|
|
|
|
uint16_t num_answers;
|
|
|
|
uint16_t num_authority_prs;
|
|
|
|
uint16_t num_other_prs;
|
|
|
|
};
|
|
|
|
|
|
|
|
// DNS resource record
|
|
|
|
struct mg_dns_rr {
|
|
|
|
uint16_t nlen; // Name or pointer length
|
|
|
|
uint16_t atype; // Address type
|
|
|
|
uint16_t aclass; // Address class
|
|
|
|
uint16_t alen; // Address length
|
|
|
|
};
|
|
|
|
|
2020-12-22 17:44:59 +08:00
|
|
|
void mg_resolve(struct mg_connection *, struct mg_str *, int);
|
|
|
|
void mg_resolve_cancel(struct mg_connection *);
|
2020-12-21 00:55:33 +08:00
|
|
|
bool mg_dns_parse(const uint8_t *buf, size_t len, struct mg_dns_message *);
|
2020-12-28 13:25:29 +08:00
|
|
|
size_t mg_dns_parse_rr(const uint8_t *buf, size_t len, size_t ofs,
|
|
|
|
bool is_question, struct mg_dns_rr *);
|
|
|
|
size_t mg_dns_decode_name(const uint8_t *, size_t, size_t, char *, size_t);
|