Root cause (verified against our exact IDF tree, not the community guess): the "258" in "sdio_write_task: Failed to send data: 258" is NOT a timeout (that is 263). 258 = 0x102 = ESP_ERR_INVALID_ARG. On the ESP32-P4, block- mode CMD53 writes require the SOURCE buffer to be 64-byte (cache-line) aligned; the IDF sdmmc driver rejects a misaligned source with INVALID_ARG BEFORE any bus activity. esp_hosts write loop then declares "Unrecoverable host sdio state" and reboots the whole P4. The audio TX payload is not 64-aligned, so streaming mic audio wedged on the very FIRST frame (which is exactly what we saw: listening -> instant Failed to send -> reboot). This also explains why buffer/queue/clock/retry tuning all did nothing: the write never reached the bus. And why our symptom was instant, not after ~100 writes (the community block-mode-desync theory) — it is the first misaligned buffer, every time. Fix: vendored esp_hosted 2.12.11 as an editable local component (overrides the registry copy) and bounce a misaligned TX payload through one aligned DMA scratch buffer in hosted_sdio_write_block (port_esp_hosted_host_sdio.c). TX is serialized by the bus lock so a single static bounce buffer is safe; freed in hosted_sdio_deinit. Host-only change — no C6 reflash. VERIFIED ON HARDWARE (autonomous self-test): 40s of continuous mic-audio upstream streaming — the traffic that previously wedged on the first frame — ran clean, zero timeouts, zero reboots. A guarded SDIO_TX_SELFTEST harness is kept (compiled out) for future SDIO stress testing. Credit: root cause + patch designed via multi-agent investigation; the precise 258=INVALID_ARG decode (correcting the upstream community timeout assumption) came from checking our actual esp_err.h. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
528 lines
16 KiB
C
528 lines
16 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 2025 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
/* LWIP packet filtering implementation */
|
|
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <ctype.h>
|
|
|
|
#include "esp_log.h"
|
|
#include "esp_timer.h"
|
|
#include "host_power_save.h"
|
|
#include "nw_split_router.h"
|
|
|
|
#if defined(CONFIG_ESP_HOSTED_NETWORK_SPLIT_ENABLED) && defined(CONFIG_LWIP_ENABLE)
|
|
#include "lwip/opt.h"
|
|
#include "lwip/err.h"
|
|
#include "lwip/sys.h"
|
|
#include "lwip/etharp.h"
|
|
#include "lwip/prot/iana.h"
|
|
#include "lwip/prot/ip.h"
|
|
#include "lwip/prot/tcp.h"
|
|
#include "lwip/prot/udp.h"
|
|
#include "lwip/prot/icmp.h"
|
|
#include "lwip/tcp.h"
|
|
#include "lwip/udp.h"
|
|
#include "lwip/priv/tcp_priv.h"
|
|
|
|
|
|
|
|
static const char *TAG = "nw_split_router";
|
|
|
|
#define MQTT_PORT 1883
|
|
#define WAKEUP_HOST_STRING "wakeup-host"
|
|
#define DEFAULT_IPERF_PORT 5001
|
|
|
|
/* Use LWIP's port range macros instead of redefining */
|
|
/* #define IS_REMOTE_TCP_PORT(port) ((port) != MQTT_PORT) */
|
|
/* #define IS_REMOTE_UDP_PORT(port) (1) */
|
|
|
|
/* TODO: This should be done using the filter functions */
|
|
#define DHCP_LWIP_BRIDGE BOTH_LWIP_BRIDGE
|
|
|
|
#if defined(CONFIG_ESP_DEFAULT_LWIP_SLAVE)
|
|
#define DEFAULT_LWIP_TO_SEND SLAVE_LWIP_BRIDGE
|
|
#elif defined(CONFIG_ESP_DEFAULT_LWIP_HOST)
|
|
#define DEFAULT_LWIP_TO_SEND HOST_LWIP_BRIDGE
|
|
#elif defined(CONFIG_ESP_DEFAULT_LWIP_BOTH)
|
|
#define DEFAULT_LWIP_TO_SEND BOTH_LWIP_BRIDGE
|
|
#else
|
|
#error "Select one of the LWIP to forward"
|
|
#endif
|
|
|
|
/* Cache for TCP port checks */
|
|
static struct {
|
|
uint64_t last_check_time;
|
|
int last_result;
|
|
uint16_t last_port;
|
|
} tcp_cache = {0};
|
|
|
|
/* Cache for UDP port checks */
|
|
static struct {
|
|
uint64_t last_check_time;
|
|
int last_result;
|
|
uint16_t last_port;
|
|
} udp_cache = {0};
|
|
|
|
#define MAX_ALLOWED_TCP_SRC_PORTS 10
|
|
#define MAX_ALLOWED_UDP_SRC_PORTS 10
|
|
#define MAX_ALLOWED_TCP_DST_PORTS 10
|
|
#define MAX_ALLOWED_UDP_DST_PORTS 10
|
|
|
|
/* In the file-scope variables section */
|
|
static uint16_t allowed_tcp_src_ports[MAX_ALLOWED_TCP_SRC_PORTS] = {0};
|
|
static uint16_t allowed_udp_src_ports[MAX_ALLOWED_UDP_SRC_PORTS] = {0};
|
|
static uint16_t allowed_tcp_dst_ports[MAX_ALLOWED_TCP_DST_PORTS] = {0};
|
|
static uint16_t allowed_udp_dst_ports[MAX_ALLOWED_UDP_DST_PORTS] = {0};
|
|
static int allowed_tcp_src_ports_count = 0;
|
|
static int allowed_udp_src_ports_count = 0;
|
|
static int allowed_tcp_dst_ports_count = 0;
|
|
static int allowed_udp_dst_ports_count = 0;
|
|
|
|
/* Parse a comma-separated list of ports into an array */
|
|
static int init_allowed_ports(const char *ports_str, int *ports_count, uint16_t *ports_array, int max_ports, const char *port_type) {
|
|
/* Only initialize once */
|
|
static bool tcp_src_initialized = false;
|
|
static bool tcp_dst_initialized = false;
|
|
static bool udp_src_initialized = false;
|
|
static bool udp_dst_initialized = false;
|
|
|
|
/* Check if already initialized for this port type */
|
|
if ((strcmp(port_type, "tcp_src") == 0 && tcp_src_initialized) ||
|
|
(strcmp(port_type, "tcp_dst") == 0 && tcp_dst_initialized) ||
|
|
(strcmp(port_type, "udp_src") == 0 && udp_src_initialized) ||
|
|
(strcmp(port_type, "udp_dst") == 0 && udp_dst_initialized)) {
|
|
return 0;
|
|
}
|
|
|
|
/* Reset counter */
|
|
*ports_count = 0;
|
|
|
|
/* If no ports string provided, return */
|
|
if (!ports_str || !ports_str[0]) {
|
|
ESP_LOGI(TAG, "No %s ports configured", port_type);
|
|
return 0;
|
|
}
|
|
|
|
char port_buf[6]; /* Max 5 digits for a port + null terminator */
|
|
int port_buf_idx = 0;
|
|
|
|
for (int i = 0; ports_str[i] != '\0' && *ports_count < max_ports; i++) {
|
|
if (isdigit((unsigned char)ports_str[i])) { /* Fix: cast to unsigned char */
|
|
port_buf[port_buf_idx++] = ports_str[i];
|
|
if (port_buf_idx >= sizeof(port_buf) - 1) {
|
|
port_buf_idx = sizeof(port_buf) - 2; /* Prevent overflow */
|
|
}
|
|
} else if (ports_str[i] == ',') {
|
|
if (port_buf_idx > 0) {
|
|
port_buf[port_buf_idx] = '\0';
|
|
ports_array[(*ports_count)++] = atoi(port_buf);
|
|
port_buf_idx = 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Process the last port if there's no trailing comma */
|
|
if (port_buf_idx > 0) {
|
|
port_buf[port_buf_idx] = '\0';
|
|
ports_array[(*ports_count)++] = atoi(port_buf);
|
|
}
|
|
|
|
/* Log the results */
|
|
ESP_LOGI(TAG, "Initialized %d allowed %s ports:", *ports_count, port_type);
|
|
for (int i = 0; i < *ports_count; i++) {
|
|
ESP_LOGI(TAG, " - Port %d", ports_array[i]);
|
|
}
|
|
|
|
/* Mark as initialized */
|
|
if (strcmp(port_type, "tcp_src") == 0) {
|
|
tcp_src_initialized = true;
|
|
} else if (strcmp(port_type, "tcp_dst") == 0) {
|
|
tcp_dst_initialized = true;
|
|
} else if (strcmp(port_type, "udp_src") == 0) {
|
|
udp_src_initialized = true;
|
|
} else if (strcmp(port_type, "udp_dst") == 0) {
|
|
udp_dst_initialized = true;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
static int init_allowed_tcp_ports(const char *ports_str_src, const char *ports_str_dst) {
|
|
int ret1 = 0, ret2 = 0;
|
|
|
|
if (ports_str_src && strlen(ports_str_src) > 0) {
|
|
ESP_LOGI(TAG, "Host reserved TCP src ports: %s", ports_str_src);
|
|
ret1 = init_allowed_ports(ports_str_src, &allowed_tcp_src_ports_count,
|
|
allowed_tcp_src_ports, MAX_ALLOWED_TCP_SRC_PORTS, "tcp_src");
|
|
}
|
|
|
|
if (ports_str_dst && strlen(ports_str_dst) > 0) {
|
|
ESP_LOGI(TAG, "Host reserved TCP dst ports: %s", ports_str_dst);
|
|
ret2 = init_allowed_ports(ports_str_dst, &allowed_tcp_dst_ports_count,
|
|
allowed_tcp_dst_ports, MAX_ALLOWED_TCP_DST_PORTS, "tcp_dst");
|
|
}
|
|
|
|
if (ret1) {
|
|
ESP_LOGE(TAG, "Failed to initialize allowed TCP src ports");
|
|
return ret1;
|
|
}
|
|
if (ret2) {
|
|
ESP_LOGE(TAG, "Failed to initialize allowed TCP dst ports");
|
|
return ret2;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static int init_allowed_udp_ports(const char *ports_str_src, const char *ports_str_dst) {
|
|
int ret1=0, ret2=0;
|
|
if (ports_str_src && strlen(ports_str_src) > 0) {
|
|
ESP_LOGI(TAG, "host reserved udp src ports: %s", ports_str_src);
|
|
ret1 = init_allowed_ports(ports_str_src, &allowed_udp_src_ports_count, allowed_udp_src_ports, MAX_ALLOWED_UDP_SRC_PORTS, "udp_src");
|
|
}
|
|
if (ports_str_dst && strlen(ports_str_dst) > 0) {
|
|
ESP_LOGI(TAG, "host reserved udp dst ports: %s", ports_str_dst);
|
|
ret2 = init_allowed_ports(ports_str_dst, &allowed_udp_dst_ports_count, allowed_udp_dst_ports, MAX_ALLOWED_UDP_DST_PORTS, "udp_dst");
|
|
}
|
|
|
|
if (ret1) {
|
|
ESP_LOGE(TAG, "Failed to initialize allowed udp src ports");
|
|
return ret1;
|
|
}
|
|
if (ret2) {
|
|
ESP_LOGE(TAG, "Failed to initialize allowed udp dst ports");
|
|
return ret2;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static int punch_hole_for_host_ports_from_config(const char *ports_str_tcp_src,
|
|
const char *ports_str_tcp_dst,
|
|
const char *ports_str_udp_src,
|
|
const char *ports_str_udp_dst) {
|
|
int ret1 = 0, ret2 = 0;
|
|
|
|
ESP_LOGI(TAG, "Host reserved TCP src ports: %s",
|
|
ports_str_tcp_src && strlen(ports_str_tcp_src) > 0 ? ports_str_tcp_src : "none");
|
|
ESP_LOGI(TAG, "Host reserved TCP dst ports: %s",
|
|
ports_str_tcp_dst && strlen(ports_str_tcp_dst) > 0 ? ports_str_tcp_dst : "none");
|
|
ret1 = init_allowed_tcp_ports(ports_str_tcp_src, ports_str_tcp_dst);
|
|
|
|
ESP_LOGI(TAG, "Host reserved UDP src ports: %s",
|
|
ports_str_udp_src && strlen(ports_str_udp_src) > 0 ? ports_str_udp_src : "none");
|
|
ESP_LOGI(TAG, "Host reserved UDP dst ports: %s",
|
|
ports_str_udp_dst && strlen(ports_str_udp_dst) > 0 ? ports_str_udp_dst : "none");
|
|
ret2 = init_allowed_udp_ports(ports_str_udp_src, ports_str_udp_dst);
|
|
|
|
if (ret1) {
|
|
ESP_LOGE(TAG, "Failed to initialize allowed TCP ports");
|
|
return ret1;
|
|
}
|
|
if (ret2) {
|
|
ESP_LOGE(TAG, "Failed to initialize allowed UDP ports");
|
|
return ret2;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
/* Port filtering functions */
|
|
static inline bool is_tcp_src_port_allowed(uint16_t port) {
|
|
for (int i = 0; i < allowed_tcp_src_ports_count; i++) {
|
|
if (port == allowed_tcp_src_ports[i]) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
static inline bool is_tcp_dst_port_allowed(uint16_t port) {
|
|
for (int i = 0; i < allowed_tcp_dst_ports_count; i++) {
|
|
if (port == allowed_tcp_dst_ports[i]) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
static inline bool is_udp_src_port_allowed(uint16_t port) {
|
|
for (int i = 0; i < allowed_udp_src_ports_count; i++) {
|
|
if (port == allowed_udp_src_ports[i]) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
static inline bool is_udp_dst_port_allowed(uint16_t port) {
|
|
for (int i = 0; i < allowed_udp_dst_ports_count; i++) {
|
|
if (port == allowed_udp_dst_ports[i]) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
static bool host_mqtt_wakeup_triggered(const void *payload, uint16_t payload_length)
|
|
{
|
|
/* Check if payload contains "wakeup-host" string */
|
|
if (payload_length >= strlen(WAKEUP_HOST_STRING) &&
|
|
memcmp(payload, WAKEUP_HOST_STRING, strlen(WAKEUP_HOST_STRING)) == 0) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
static int is_local_tcp_port_open(uint16_t port)
|
|
{
|
|
uint64_t current_time = esp_timer_get_time() >> 10; /* Approx ms */
|
|
|
|
/* Return cached result if within 1 sec window */
|
|
if (tcp_cache.last_port == port &&
|
|
(current_time - tcp_cache.last_check_time) < 1000) {
|
|
tcp_cache.last_check_time = current_time;
|
|
return tcp_cache.last_result;
|
|
}
|
|
|
|
/* Use LWIP protection for thread safety */
|
|
SYS_ARCH_DECL_PROTECT(old_level);
|
|
SYS_ARCH_PROTECT(old_level);
|
|
|
|
int found = 0;
|
|
struct tcp_pcb *pcb;
|
|
for(pcb = tcp_listen_pcbs.pcbs; pcb != NULL; pcb = pcb->next) {
|
|
if (pcb->local_port == port) {
|
|
found = 1;
|
|
break;
|
|
}
|
|
}
|
|
|
|
SYS_ARCH_UNPROTECT(old_level);
|
|
|
|
/* Cache the result */
|
|
tcp_cache.last_check_time = current_time;
|
|
tcp_cache.last_result = found;
|
|
tcp_cache.last_port = port;
|
|
|
|
ESP_LOGI(TAG, "is_local_tcp_port (%u) open: %d", port, found);
|
|
return found;
|
|
}
|
|
|
|
static int is_local_udp_port_open(uint16_t port)
|
|
{
|
|
uint64_t current_time = esp_timer_get_time() >> 10; /* Approx ms */
|
|
|
|
/* Return cached result if within 1 sec window */
|
|
if (udp_cache.last_port == port &&
|
|
(current_time - udp_cache.last_check_time) < 1000) {
|
|
udp_cache.last_check_time = current_time;
|
|
return udp_cache.last_result;
|
|
}
|
|
|
|
/* Use LWIP protection for thread safety */
|
|
SYS_ARCH_DECL_PROTECT(old_level);
|
|
SYS_ARCH_PROTECT(old_level);
|
|
|
|
int found = 0;
|
|
struct udp_pcb *pcb;
|
|
for(pcb = udp_pcbs; pcb != NULL; pcb = pcb->next) {
|
|
if (pcb->local_port == port) {
|
|
found = 1;
|
|
break;
|
|
}
|
|
}
|
|
|
|
SYS_ARCH_UNPROTECT(old_level);
|
|
|
|
/* Cache the result */
|
|
udp_cache.last_check_time = current_time;
|
|
udp_cache.last_result = found;
|
|
udp_cache.last_port = port;
|
|
|
|
ESP_LOGI(TAG, "is_local_udp_port (%u) open: %d", port, found);
|
|
return found;
|
|
}
|
|
|
|
hosted_l2_bridge nw_split_filter_and_route_packet(void *frame_data, uint16_t frame_length)
|
|
{
|
|
hosted_l2_bridge result = DEFAULT_LWIP_TO_SEND;
|
|
|
|
struct eth_hdr *ethhdr = (struct eth_hdr *)frame_data;
|
|
struct ip_hdr *iphdr;
|
|
u8_t proto;
|
|
u16_t dst_port = 0;
|
|
u16_t src_port = 0;
|
|
|
|
/* Check if the frame is a MAC broadcast */
|
|
if (ethhdr->dest.addr[0] & 0x01) {
|
|
result = SLAVE_LWIP_BRIDGE;
|
|
return result;
|
|
}
|
|
|
|
/* Check if the frame contains an IP packet */
|
|
if (lwip_ntohs(ethhdr->type) == ETHTYPE_IP) {
|
|
ESP_LOGV(TAG, "new ip packet");
|
|
|
|
/* Get the IP header */
|
|
iphdr = (struct ip_hdr *)((u8_t *)frame_data + SIZEOF_ETH_HDR);
|
|
/* Get the protocol from the IP header */
|
|
proto = IPH_PROTO(iphdr);
|
|
|
|
if (proto == IP_PROTO_TCP) {
|
|
struct tcp_hdr *tcphdr = (struct tcp_hdr *)((u8_t *)iphdr + IPH_HL(iphdr) * 4);
|
|
dst_port = lwip_ntohs(tcphdr->dest);
|
|
src_port = lwip_ntohs(tcphdr->src);
|
|
|
|
ESP_LOGV(TAG, "dst_port: %u, src_port: %u", dst_port, src_port);
|
|
|
|
/* Check for allowed ports (SSH, RTSP, etc.) */
|
|
if (is_tcp_src_port_allowed(src_port) || is_tcp_dst_port_allowed(dst_port)) {
|
|
ESP_LOGV(TAG, "Priority tcp port traffic detected, forwarding to host");
|
|
result = HOST_LWIP_BRIDGE;
|
|
return result;
|
|
}
|
|
|
|
/* Check for iperf port */
|
|
if (dst_port == DEFAULT_IPERF_PORT) {
|
|
ESP_LOGV(TAG, "iperf pkt %u", DEFAULT_IPERF_PORT);
|
|
if (is_local_tcp_port_open(dst_port)) {
|
|
result = SLAVE_LWIP_BRIDGE;
|
|
return result;
|
|
} else if (!is_host_power_saving()) {
|
|
result = HOST_LWIP_BRIDGE;
|
|
return result;
|
|
}
|
|
}
|
|
|
|
if (IS_REMOTE_TCP_PORT(dst_port)) {
|
|
if (is_host_power_saving()) {
|
|
/* filter host destined mqtt packet says 'wake-up-host' */
|
|
if (src_port == MQTT_PORT) {
|
|
#define TCP_HDR_LEN(tcphdr) ((TCPH_FLAGS(tcphdr) >> 12) * 4)
|
|
|
|
u16_t tcp_hdr_len = TCP_HDR_LEN(tcphdr);
|
|
u16_t mqtt_payload_length = lwip_ntohs(tcphdr->wnd);
|
|
u8_t *mqtt_payload = (u8_t *)tcphdr + tcp_hdr_len;
|
|
|
|
if (host_mqtt_wakeup_triggered(mqtt_payload, mqtt_payload_length)) {
|
|
ESP_LOGV(TAG, "Wakeup host: MQTT wakeup pkt");
|
|
result = HOST_LWIP_BRIDGE;
|
|
return result;
|
|
} else {
|
|
/* drop any other host destined mqtt packet */
|
|
result = INVALID_BRIDGE;
|
|
ESP_LOGW(TAG, "mqtt pkt DROPPED dst %u src %u => lwip %u", dst_port, src_port, result);
|
|
return result;
|
|
}
|
|
} else {
|
|
ESP_LOGV(TAG, "Wakeup host: TCP pkt");
|
|
result = INVALID_BRIDGE;
|
|
ESP_LOGW(TAG, "host pkt dropped in power save (dst %u src %u)", dst_port, src_port);
|
|
return result;
|
|
}
|
|
} else {
|
|
/* As host is not sleeping, send packets freely */
|
|
result = HOST_LWIP_BRIDGE;
|
|
return result;
|
|
}
|
|
} else if (IS_LOCAL_TCP_PORT(dst_port)) {
|
|
result = SLAVE_LWIP_BRIDGE;
|
|
return result;
|
|
}
|
|
|
|
} else if (proto == IP_PROTO_UDP) {
|
|
ESP_LOGV(TAG, "new udp packet");
|
|
struct udp_hdr *udphdr = (struct udp_hdr *)((u8_t *)iphdr + IPH_HL(iphdr) * 4);
|
|
dst_port = lwip_ntohs(udphdr->dest);
|
|
src_port = lwip_ntohs(udphdr->src);
|
|
|
|
ESP_LOGV(TAG, "UDP dst_port: %u, src_port: %u", dst_port, src_port);
|
|
|
|
/* Check for allowed ports */
|
|
if (is_udp_src_port_allowed(src_port) || is_udp_dst_port_allowed(dst_port)) {
|
|
ESP_LOGV(TAG, "Priority udp port traffic detected, forwarding to host");
|
|
result = HOST_LWIP_BRIDGE;
|
|
return result;
|
|
}
|
|
|
|
/* Check for iperf UDP port */
|
|
if (dst_port == DEFAULT_IPERF_PORT) {
|
|
ESP_LOGV(TAG, "Detected iperf UDP packet on port %u", DEFAULT_IPERF_PORT);
|
|
if (is_local_udp_port_open(dst_port)) {
|
|
result = SLAVE_LWIP_BRIDGE;
|
|
return result;
|
|
} else if (!is_host_power_saving()) {
|
|
result = HOST_LWIP_BRIDGE;
|
|
return result;
|
|
}
|
|
}
|
|
|
|
if (dst_port == LWIP_IANA_PORT_DHCP_CLIENT) {
|
|
result = DHCP_LWIP_BRIDGE;
|
|
return result;
|
|
}
|
|
|
|
if (IS_REMOTE_UDP_PORT(dst_port)) {
|
|
if (is_host_power_saving()) {
|
|
ESP_LOGW(TAG, "host pkt dropped in power save (dst %u src %u)", dst_port, src_port);
|
|
result = INVALID_BRIDGE;
|
|
return result;
|
|
} else {
|
|
result = HOST_LWIP_BRIDGE;
|
|
return result;
|
|
}
|
|
} else if (IS_LOCAL_UDP_PORT(dst_port)) {
|
|
result = SLAVE_LWIP_BRIDGE;
|
|
return result;
|
|
}
|
|
|
|
} else if (proto == IP_PROTO_ICMP) {
|
|
ESP_LOGV(TAG, "new icmp packet");
|
|
struct icmp_echo_hdr *icmphdr = (struct icmp_echo_hdr *)((u8_t *)iphdr + IPH_HL(iphdr) * 4);
|
|
if (icmphdr->type == ICMP_ECHO) {
|
|
/* ping request */
|
|
result = SLAVE_LWIP_BRIDGE;
|
|
return result;
|
|
} else if (icmphdr->type == ICMP_ER) {
|
|
if (is_host_power_saving()) {
|
|
result = SLAVE_LWIP_BRIDGE;
|
|
return result;
|
|
} else {
|
|
/* ping response */
|
|
ESP_HEXLOGV("icmp_er", frame_data, frame_length, 64);
|
|
result = BOTH_LWIP_BRIDGE;
|
|
return result;
|
|
}
|
|
}
|
|
}
|
|
|
|
} else if (lwip_ntohs(ethhdr->type) == ETHTYPE_ARP) {
|
|
ESP_LOGV(TAG, "new arp packet");
|
|
struct etharp_hdr *arphdr = (struct etharp_hdr *)((u8_t *)frame_data + SIZEOF_ETH_HDR);
|
|
|
|
if (arphdr->opcode == lwip_htons(ARP_REQUEST)) {
|
|
result = SLAVE_LWIP_BRIDGE;
|
|
return result;
|
|
} else {
|
|
if (is_host_power_saving()) {
|
|
result = SLAVE_LWIP_BRIDGE;
|
|
return result;
|
|
} else {
|
|
ESP_HEXLOGV("arp_reply", frame_data, frame_length, 64);
|
|
result = BOTH_LWIP_BRIDGE;
|
|
return result;
|
|
}
|
|
}
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
int nw_split_config_host_static_port_fwd_rules(const char *ports_str_tcp_src, const char *ports_str_tcp_dst, const char *ports_str_udp_src, const char *ports_str_udp_dst) {
|
|
return punch_hole_for_host_ports_from_config(ports_str_tcp_src, ports_str_tcp_dst, ports_str_udp_src, ports_str_udp_dst);
|
|
}
|
|
#endif
|