Raw TX Packet Transmission Issues with nRF WiFi

I'm trying to use raw packet transmission (IN combination with wifi promiscous mode and raw sockets eventually) with my nRF WiFi device. I have both the sample raw_tx_packet application and my modified version which attempts to send UDP packets over WiFi, but neither seems to be working correctly. The packets appear to be sent according to my application logs, but I can't see any traffic in Wireshark when monitoring in promiscuous mode, except for the initial ARP requests.

Unmodified Sample Issues

The unmodified sample gives me the following errors:

[00:00:13.243,591] <wrn> net_conn: pkt cloning failed, pkt 0x200682f8 dropped
[00:00:23.688,385] <err> wifi_nrf: hal_rpu_event_get: Unable to alloc HAL msg for event
[00:00:23.688,690] <err> wifi_nrf: hal_rpu_event_get: Unable to alloc HAL msg for event
[00:00:23.688,964] <err> wifi_nrf: hal_rpu_event_get: Unable to alloc HAL msg for event


Modified Sample Issues

My modified sample appears to successfully construct and send UDP packets (with logs showing successful transmission and returning proper byte counts), but no packets are visible in Wireshark monitoring.

#
# Copyright (c) 2023 Nordic Semiconductor ASA
#
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#
CONFIG_WIFI=y
CONFIG_WIFI_NRF700X=y
CONFIG_NRF_WIFI_LOW_POWER=n
CONFIG_NRF700X_RAW_DATA_TX=y
CONFIG_RAW_TX_PKT_SAMPLE_INTER_FRAME_DELAY_MS=100
# WPA supplicant
CONFIG_WPA_SUPP=y

CONFIG_WIFI_MGMT_EXT=y
CONFIG_WIFI_CREDENTIALS=y
CONFIG_WIFI_CREDENTIALS_STATIC=y
CONFIG_WIFI_CREDENTIALS_STATIC_SSID="xxxxxxxx"
CONFIG_WIFI_CREDENTIALS_STATIC_PASSWORD="xxxxxxx"
CONFIG_RAW_TX_PKT_SAMPLE_CONNECTION_MODE=y
# Networking
CONFIG_NETWORKING=y
CONFIG_NET_SOCKETS=y
CONFIG_NET_LOG=y
CONFIG_NET_IPV4=y
CONFIG_NET_UDP=y
CONFIG_NET_TCP=y
CONFIG_NET_DHCPV4=y

CONFIG_NET_PKT_RX_COUNT=8
CONFIG_NET_PKT_TX_COUNT=8

# Below section is the primary contributor to SRAM and is currently
# tuned for performance, but this will be revisited in the future.
CONFIG_NET_BUF_RX_COUNT=16
CONFIG_NET_BUF_TX_COUNT=16
CONFIG_NET_BUF_DATA_SIZE=1500
CONFIG_HEAP_MEM_POOL_SIZE=200000
CONFIG_NET_TC_TX_COUNT=1

CONFIG_NET_IF_UNICAST_IPV4_ADDR_COUNT=1
CONFIG_NET_MAX_CONTEXTS=5
CONFIG_NET_CONTEXT_SYNC_RECV=y

CONFIG_INIT_STACKS=y

CONFIG_NET_L2_ETHERNET=y

CONFIG_NET_CONFIG_SETTINGS=y
CONFIG_NET_CONFIG_INIT_TIMEOUT=0

CONFIG_NET_SOCKETS_POLL_MAX=10

# Memories
CONFIG_MAIN_STACK_SIZE=4096
CONFIG_NET_TX_STACK_SIZE=4096
CONFIG_NET_RX_STACK_SIZE=4096

# Debugging
CONFIG_STACK_SENTINEL=y
CONFIG_DEBUG_COREDUMP=y
CONFIG_DEBUG_COREDUMP_BACKEND_LOGGING=y
CONFIG_DEBUG_COREDUMP_MEMORY_DUMP_MIN=y
CONFIG_SHELL_CMDS_RESIZE=n

CONFIG_RAW_TX_PKT_SAMPLE_RATE_VALUE=1
CONFIG_RAW_TX_PKT_SAMPLE_RATE_FLAGS=0
CONFIG_RAW_TX_PKT_SAMPLE_QUEUE_NUM=0
# Kernel options
CONFIG_ENTROPY_GENERATOR=y

# Logging
CONFIG_LOG=y
CONFIG_LOG_BUFFER_SIZE=2048
CONFIG_POSIX_CLOCK=y
CONFIG_POSIX_API=y

CONFIG_NET_CONFIG_MY_IPV4_ADDR="192.168.1.99"
CONFIG_NET_CONFIG_MY_IPV4_NETMASK="255.255.255.0"
CONFIG_NET_CONFIG_MY_IPV4_GW="192.168.1.1"

# printing of scan results puts pressure on queues in new locking
# design in net_mgmt. So, use a higher timeout for a crowded
# environment.
CONFIG_NET_MGMT_EVENT_QUEUE_TIMEOUT=5000




  • How can I verify that the generic sample is actually sending packets? Are there any debug logs or hardware indicators I should be looking for or any errors from the nrf7000 i can read back?
  • Can anyone recreate this issue with the standard raw TX sample? It would help to know if others can successfully see the packets in Wireshark or if this is a widespread issue.

  • So this is something you see on your project, using NCS 2.7 right? Are you seeing these issues with the sample in 2.9 as well? this happens on all versions

    here are the main errors
    [00:00:32.360,137] <err> wifi_nrf: hal_rpu_event_get: Unable to alloc HAL msg for event (49 bytes)
    [00:00:32.360,443] <err> wifi_nrf: hal_rpu_event_get: Unable to alloc HAL msg for event (49 bytes)
    [00:00:32.360,717] <err> wifi_nrf: hal_rpu_event_get: Unable to alloc HAL msg for event (49 bytes)
    [00:00:32.361,022] <err> wifi_nrf: hal_rpu_event_get: Unable to alloc HAL msg for event (49 bytes)
    [00:00:32.361,297] <err> wifi_nrf: hal_rpu_event_get: Unable to alloc HAL msg for event (49 bytes)
    [00:00:37.803,924] <err> wifi_nrf: hal_rpu_event_get: Unable to alloc HAL msg for event (49 bytes)
    [00:00:41.330,261] <err> wifi_nrf: hal_rpu_event_get: Unable to alloc HAL msg for event (100 bytes)
    [00:01:25.567,352] <err> wifi_nrf: hal_rpu_event_get: Unable to alloc HAL msg for event (100 bytes)
    [00:02:37.127,563] <err> wifi_nrf: hal_rpu_event_get: Unable to alloc HAL msg for event (117 bytes)

    "If it is fully formed on Wireshark, that sounds like an error on the recieving side - not an nRF issue. How are you setting up the listener socket?"

    i use a socket test tool that tests udp and tcp sockets 
    it works when i use the sockets in tcp/udp mode however it doesnt work with raw sockets

  • drfhaust said:
    it works when i use the sockets in tcp/udp mode however it doesnt work with raw sockets

    Have you checked that this socket also works with other sources than the nRF?

    drfhaust said:
    [00:02:37.127,563] <err> wifi_nrf: hal_rpu_event_get: Unable to alloc HAL msg for event (117 bytes)

    Could you try either increasing the memory (ie. CONFIG_HEAP_MEM_POOL_SIZE, net buffer and stack size) or try to send fewer messages just to see if that helps?

    Regards,

    Elfving

  • The socket tester app works with other sources, i have an app on my Phone that sends udp packets, i also have one on my pc as well. The socket tester app also works when i use the udp socket mode on the nrf

    i have done that i also tried using a variable buffer and allocating an rx and tx buffer pool
    here is one extreme example

    I get the same issues in 2.7 and 2.9

    CONFIG_NETWORKING=y
    CONFIG_NET_SOCKETS=y
    CONFIG_NET_LOG=y
    CONFIG_NET_IPV4=y
    CONFIG_NET_UDP=y
    CONFIG_NET_TCP=y
    CONFIG_NET_DHCPV4=y
    
    CONFIG_NET_PKT_RX_COUNT=64
    CONFIG_NET_PKT_TX_COUNT=64
    CONFIG_NET_BUF_RX_COUNT=64
    CONFIG_NET_BUF_TX_COUNT=64
    CONFIG_RAW_TX_PKT_SAMPLE_QUEUE_NUM=4
    CONFIG_NET_BUF_VARIABLE_DATA_SIZE=y
    CONFIG_NET_PKT_BUF_RX_DATA_POOL_SIZE=60000
    CONFIG_NET_PKT_BUF_TX_DATA_POOL_SIZE=60000
    CONFIG_HEAP_MEM_POOL_SIZE=200000
    CONFIG_NET_TC_TX_COUNT=1

  • Thank you again for the patience with this case,

    drfhaust said:
    i use a socket test tool that tests udp and tcp sockets 

    Could you expand a bit further on what it is and how it is set up? 

    drfhaust said:
    it works when i use the sockets in tcp/udp mode however it doesnt work with raw sockets
    drfhaust said:
    The socket tester app also works when i use the udp socket mode on the nrf

    And I am not sure if I understood this. The setup works with udp from several sources, though have you tried this with raw sockets from any other source, and gotten it working?

    Regards,

    Elfving

Related