/*************************************************************************** * Copyright (c) 2024 Microsoft Corporation * Copyright (c) 2025-present Eclipse ThreadX Contributors * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. * * SPDX-License-Identifier: MIT **************************************************************************/ /**************************************************************************/ /**************************************************************************/ /** */ /** NetX Component */ /** */ /** User Datagram Protocol (UDP) */ /** */ /**************************************************************************/ /**************************************************************************/ #define NX_SOURCE_CODE /* Include necessary system files. */ #include "nx_api.h" #include "nx_ip.h" #include "nx_udp.h" #include "nx_packet.h" /* Bring in externs for caller checking code. */ NX_CALLER_CHECKING_EXTERNS /**************************************************************************/ /* */ /* FUNCTION RELEASE */ /* */ /* _nxe_udp_socket_source_send PORTABLE C */ /* 6.4.3 */ /* AUTHOR */ /* */ /* Yuxin Zhou, Microsoft Corporation */ /* */ /* DESCRIPTION */ /* */ /* This function checks for errors in the UDP socket source send */ /* function call. */ /* */ /* INPUT */ /* */ /* socket_ptr Pointer to UDP socket */ /* packet_ptr Pointer to UDP packet */ /* ip_address IP address */ /* port 16-bit UDP port number */ /* address_index Index of IPv4 address to */ /* use as the source address */ /* */ /* OUTPUT */ /* */ /* status Completion status */ /* */ /* CALLS */ /* */ /* _nx_udp_socket_source_send Actual UDP socket send */ /* function */ /* */ /* CALLED BY */ /* */ /* Application Code */ /* */ /**************************************************************************/ UINT _nxe_udp_socket_source_send(NX_UDP_SOCKET *socket_ptr, NX_PACKET **packet_ptr_ptr, ULONG ip_address, UINT port, UINT address_index) { #ifndef NX_DISABLE_IPV4 NX_PACKET *packet_ptr; UINT status; NX_IP *ip_ptr; /* Setup packet pointer. */ packet_ptr = *packet_ptr_ptr; /* Check for invalid input pointers. */ if ((socket_ptr == NX_NULL) || (packet_ptr == NX_NULL)) { return(NX_PTR_ERROR); } /*lint -e{923} suppress cast of ULONG to pointer. */ if ((socket_ptr -> nx_udp_socket_id != NX_UDP_ID) || (packet_ptr -> nx_packet_union_next.nx_packet_tcp_queue_next != ((NX_PACKET *)NX_PACKET_ALLOCATED))) { return(NX_PTR_ERROR); } /* Check for invalid IP address. */ if (!ip_address) { return(NX_IP_ADDRESS_ERROR); } /* Check for an invalid port. */ if (((ULONG)port) > (ULONG)NX_MAX_PORT) { return(NX_INVALID_PORT); } /* Validate the IP instance. */ ip_ptr = socket_ptr -> nx_udp_socket_ip_ptr; if (ip_ptr == NX_NULL) { return(NX_PTR_ERROR); } /* Check to see if UDP is enabled. */ if (!ip_ptr -> nx_ip_udp_packet_receive) { return(NX_NOT_ENABLED); } if (ip_ptr -> nx_ip_id != NX_IP_ID) { return(NX_PTR_ERROR); } /* Validate the interface index. */ if (address_index >= NX_MAX_IP_INTERFACES) { return(NX_INVALID_INTERFACE); } if (!(ip_ptr -> nx_ip_interface[address_index].nx_interface_valid)) { return(NX_INVALID_INTERFACE); } /* Check for an invalid packet prepend pointer. */ /*lint -e{946} suppress pointer subtraction, since it is necessary. */ /*lint -e{947} suppress pointer subtraction, since it is necessary. */ if ((INT)(packet_ptr -> nx_packet_prepend_ptr - packet_ptr -> nx_packet_data_start) < (INT)(sizeof(NX_IPV4_HEADER) + sizeof(NX_UDP_HEADER))) { #ifndef NX_DISABLE_UDP_INFO /* Increment the total UDP invalid packet count. */ (socket_ptr -> nx_udp_socket_ip_ptr) -> nx_ip_udp_invalid_packets++; /* Increment the total UDP invalid packet count for this socket. */ socket_ptr -> nx_udp_socket_invalid_packets++; #endif /* Return error code. */ return(NX_UNDERFLOW); } /* Check for an invalid packet append pointer. */ /*lint -e{946} suppress pointer subtraction, since it is necessary. */ if (packet_ptr -> nx_packet_append_ptr > packet_ptr -> nx_packet_data_end) { #ifndef NX_DISABLE_UDP_INFO /* Increment the total UDP invalid packet count. */ (socket_ptr -> nx_udp_socket_ip_ptr) -> nx_ip_udp_invalid_packets++; /* Increment the total UDP invalid packet count for this socket. */ socket_ptr -> nx_udp_socket_invalid_packets++; #endif /* Return error code. */ return(NX_OVERFLOW); } /* Check for appropriate caller. */ NX_THREADS_ONLY_CALLER_CHECKING /* Call actual UDP socket send function. */ status = _nx_udp_socket_source_send(socket_ptr, packet_ptr, ip_address, port, address_index); /* Determine if the packet send was successful. */ if (status == NX_SUCCESS) { /* Yes, now clear the application's packet pointer so it can't be accidentally used again by the application. This is only done when error checking is enabled. */ *packet_ptr_ptr = NX_NULL; } /* Return completion status. */ return(status); #else NX_PARAMETER_NOT_USED(socket_ptr); NX_PARAMETER_NOT_USED(packet_ptr_ptr); NX_PARAMETER_NOT_USED(ip_address); NX_PARAMETER_NOT_USED(port); NX_PARAMETER_NOT_USED(address_index); return(NX_NOT_SUPPORTED); #endif /* !NX_DISABLE_IPV4 */ }