|
31 | 31 | #include "lwip/sys.h"
|
32 | 32 | #include <lwip/netdb.h>
|
33 | 33 |
|
| 34 | +#include <inet/UDPEndPoint.h> |
| 35 | +#include <inet/InetError.h> |
| 36 | +#include <inet/InetLayer.h> |
| 37 | +#include <inet/IPAddress.h> |
| 38 | +#include <system/SystemPacketBuffer.h> |
| 39 | +#include <support/ErrorStr.h> |
| 40 | +#include <platform/CHIPDeviceLayer.h> |
| 41 | + |
34 | 42 | #define PORT CONFIG_ECHO_PORT
|
35 |
| -#define RX_LEN 128 |
36 |
| -#define ADDR_LEN 128 |
37 | 43 |
|
38 |
| -static const char * TAG = "echo server"; |
| 44 | +static const char * TAG = "echo_server"; |
| 45 | + |
| 46 | +using namespace ::chip; |
| 47 | +using namespace ::chip::Inet; |
39 | 48 |
|
40 |
| -static void udp_server_task(void * pvParameters) |
| 49 | +// UDP Endpoint Callbacks |
| 50 | +static void echo(IPEndPointBasis * endpoint, System::PacketBuffer * buffer, const IPPacketInfo * packet_info) |
41 | 51 | {
|
42 |
| - char rx_buffer[RX_LEN]; |
43 |
| - char addr_str[ADDR_LEN]; |
44 |
| - int addr_family = (int) pvParameters; |
45 |
| - int ip_protocol = 0; |
46 |
| - struct sockaddr_in6 dest_addr; |
| 52 | + bool status = endpoint != NULL && buffer != NULL && packet_info != NULL; |
47 | 53 |
|
48 |
| - while (1) |
| 54 | + if (status) |
49 | 55 | {
|
| 56 | + char src_addr[INET_ADDRSTRLEN]; |
| 57 | + char dest_addr[INET_ADDRSTRLEN]; |
50 | 58 |
|
51 |
| - if (addr_family == AF_INET) |
52 |
| - { |
53 |
| - struct sockaddr_in * dest_addr_ip4 = (struct sockaddr_in *) &dest_addr; |
54 |
| - dest_addr_ip4->sin_addr.s_addr = htonl(INADDR_ANY); |
55 |
| - dest_addr_ip4->sin_family = AF_INET; |
56 |
| - dest_addr_ip4->sin_port = htons(PORT); |
57 |
| - ip_protocol = IPPROTO_IP; |
58 |
| - } |
59 |
| - else if (addr_family == AF_INET6) |
60 |
| - { |
61 |
| - bzero(&dest_addr.sin6_addr.un, sizeof(dest_addr.sin6_addr.un)); |
62 |
| - dest_addr.sin6_family = AF_INET6; |
63 |
| - dest_addr.sin6_port = htons(PORT); |
64 |
| - ip_protocol = IPPROTO_IPV6; |
65 |
| - } |
| 59 | + packet_info->SrcAddress.ToString(src_addr, sizeof(src_addr)); |
| 60 | + packet_info->DestAddress.ToString(dest_addr, sizeof(dest_addr)); |
66 | 61 |
|
67 |
| - int sock = socket(addr_family, SOCK_DGRAM, ip_protocol); |
68 |
| - if (sock < 0) |
69 |
| - { |
70 |
| - ESP_LOGE(TAG, "Unable to create socket: errno %d", errno); |
71 |
| - break; |
72 |
| - } |
73 |
| - ESP_LOGI(TAG, "Socket created"); |
| 62 | + ESP_LOGI(TAG, "UDP packet received from %s:%u to %s:%u (%zu bytes)", src_addr, packet_info->SrcPort, dest_addr, |
| 63 | + packet_info->DestPort, static_cast<size_t>(buffer->DataLength())); |
74 | 64 |
|
75 |
| -#if defined(CONFIG_ECHO_IPV4) && defined(CONFIG_ECHO_IPV6) |
76 |
| - if (addr_family == AF_INET6) |
77 |
| - { |
78 |
| - // Note that by default IPV6 binds to both protocols, it is must be disabled |
79 |
| - // if both protocols used at the same time (used in CI) |
80 |
| - int opt = 1; |
81 |
| - setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt)); |
82 |
| - setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, &opt, sizeof(opt)); |
83 |
| - } |
84 |
| -#endif |
| 65 | + // attempt to print the incoming message |
| 66 | + char msg_buffer[buffer->DataLength() + 1]; |
| 67 | + msg_buffer[buffer->DataLength()] = 0; // Null-terminate whatever we received and treat like a string... |
| 68 | + memcpy(msg_buffer, buffer->Start(), buffer->DataLength()); |
| 69 | + ESP_LOGI(TAG, "Client sent: \"%s\"", msg_buffer); |
85 | 70 |
|
86 |
| - int err = bind(sock, (struct sockaddr *) &dest_addr, sizeof(dest_addr)); |
87 |
| - if (err < 0) |
| 71 | + // Attempt to echo back |
| 72 | + UDPEndPoint * udp_endpoint = static_cast<UDPEndPoint *>(endpoint); |
| 73 | + INET_ERROR err = udp_endpoint->SendTo(packet_info->SrcAddress, packet_info->SrcPort, buffer); |
| 74 | + if (err != INET_NO_ERROR) |
88 | 75 | {
|
89 |
| - ESP_LOGE(TAG, "Socket unable to bind: errno %d", errno); |
90 |
| - // Avoid looping hard if binding fails continuously |
91 |
| - vTaskDelay(50 / portTICK_PERIOD_MS); |
92 |
| - continue; |
| 76 | + ESP_LOGE(TAG, "Unable to echo back to client: %s", ErrorStr(err)); |
| 77 | + // Note the failure status |
| 78 | + status = !status; |
93 | 79 | }
|
94 |
| - ESP_LOGI(TAG, "Socket bound, port %d", PORT); |
95 |
| - |
96 |
| - while (1) |
| 80 | + else |
97 | 81 | {
|
98 |
| - |
99 |
| - ESP_LOGI(TAG, "Waiting for data"); |
100 |
| - struct sockaddr_in6 source_addr; // Large enough for both IPv4 or IPv6 |
101 |
| - socklen_t socklen = sizeof(source_addr); |
102 |
| - int len = recvfrom(sock, rx_buffer, sizeof(rx_buffer) - 1, 0, (struct sockaddr *) &source_addr, &socklen); |
103 |
| - |
104 |
| - // Error occurred during receiving |
105 |
| - if (len < 0) |
106 |
| - { |
107 |
| - ESP_LOGE(TAG, "recvfrom failed: errno %d", errno); |
108 |
| - break; |
109 |
| - } |
110 |
| - // Data received |
111 |
| - else |
112 |
| - { |
113 |
| - // Get the sender's ip address as string |
114 |
| - if (source_addr.sin6_family == PF_INET) |
115 |
| - { |
116 |
| - inet_ntoa_r(((struct sockaddr_in *) &source_addr)->sin_addr.s_addr, addr_str, sizeof(addr_str) - 1); |
117 |
| - } |
118 |
| - else if (source_addr.sin6_family == PF_INET6) |
119 |
| - { |
120 |
| - inet6_ntoa_r(source_addr.sin6_addr, addr_str, sizeof(addr_str) - 1); |
121 |
| - } |
122 |
| - |
123 |
| - rx_buffer[len] = 0; // Null-terminate whatever we received and treat like a string... |
124 |
| - ESP_LOGI(TAG, "Received %d bytes from %s:", len, addr_str); |
125 |
| - ESP_LOGI(TAG, "%s", rx_buffer); |
126 |
| - |
127 |
| - int err = sendto(sock, rx_buffer, len, 0, (struct sockaddr *) &source_addr, sizeof(source_addr)); |
128 |
| - if (err < 0) |
129 |
| - { |
130 |
| - ESP_LOGE(TAG, "Error occurred during sending: errno %d", errno); |
131 |
| - break; |
132 |
| - } |
133 |
| - } |
| 82 | + ESP_LOGI(TAG, "Echo sent"); |
134 | 83 | }
|
| 84 | + } |
135 | 85 |
|
136 |
| - if (sock != -1) |
| 86 | + if (!status) |
| 87 | + { |
| 88 | + ESP_LOGE(TAG, "Received data but couldn't process it..."); |
| 89 | + |
| 90 | + // SendTo calls Free on the buffer without an AddRef, if SendTo was not called, free the buffer. |
| 91 | + if (buffer != NULL) |
137 | 92 | {
|
138 |
| - ESP_LOGE(TAG, "Shutting down socket and restarting..."); |
139 |
| - shutdown(sock, 0); |
140 |
| - close(sock); |
| 93 | + System::PacketBuffer::Free(buffer); |
141 | 94 | }
|
142 | 95 | }
|
143 |
| - vTaskDelete(NULL); |
| 96 | +} |
| 97 | + |
| 98 | +static void error(IPEndPointBasis * ep, INET_ERROR error, const IPPacketInfo * pi) |
| 99 | +{ |
| 100 | + ESP_LOGE(TAG, "ERROR: %s\n Got UDP error", ErrorStr(error)); |
144 | 101 | }
|
145 | 102 |
|
146 | 103 | // The echo server assumes the platform's networking has been setup already
|
147 |
| -void startServer(void) |
| 104 | +void startServer(UDPEndPoint * endpoint) |
148 | 105 | {
|
149 |
| -#ifdef CONFIG_ECHO_IPV4 |
150 |
| - xTaskCreate(udp_server_task, "udp_server", 4096, (void *) AF_INET, 5, NULL); |
151 |
| -#endif |
152 |
| -#ifdef CONFIG_ECHO_IPV6 |
153 |
| - xTaskCreate(udp_server_task, "udp_server", 4096, (void *) AF_INET6, 5, NULL); |
154 |
| -#endif |
| 106 | + ESP_LOGI(TAG, "Trying to get Inet"); |
| 107 | + INET_ERROR err = DeviceLayer::InetLayer.NewUDPEndPoint(&endpoint); |
| 108 | + if (err != INET_NO_ERROR) |
| 109 | + { |
| 110 | + ESP_LOGE(TAG, "ERROR: %s\n Couldn't create UDP Endpoint, server will not start.", ErrorStr(err)); |
| 111 | + return; |
| 112 | + } |
| 113 | + |
| 114 | + endpoint->OnMessageReceived = echo; |
| 115 | + endpoint->OnReceiveError = error; |
| 116 | + |
| 117 | + err = endpoint->Bind(kIPAddressType_IPv4, IPAddress::Any, PORT); |
| 118 | + if (err != INET_NO_ERROR) |
| 119 | + { |
| 120 | + ESP_LOGE(TAG, "Socket unable to bind: Error %s", ErrorStr(err)); |
| 121 | + return; |
| 122 | + } |
| 123 | + |
| 124 | + err = endpoint->Listen(); |
| 125 | + if (err != INET_NO_ERROR) |
| 126 | + { |
| 127 | + ESP_LOGE(TAG, "Socket unable to Listen: Error %s", ErrorStr(err)); |
| 128 | + return; |
| 129 | + } |
| 130 | + ESP_LOGI(TAG, "Echo Server Listening on PORT:%d...", PORT); |
155 | 131 | }
|
0 commit comments